Overview

Request 2879 (accepted)

No description set
Submit package home:awissu:branches:Multimedia / sview to package Multimedia / sview

sview.changes Changed
x
 
1
@@ -1,4 +1,16 @@
2
 -------------------------------------------------------------------
3
+Wed Sep  7 05:11:05 UTC 2016 - avvissu@yandex.by
4
+
5
+- Update to 16.06:
6
+  * update FFmpeg to 3.1.1
7
+  * implement GPU-accelerated conversion of NV12 and XYZ12 formats
8
+  * image Viewer - put original filename into save file dialog
9
+  * fix saving playback time of recent file
10
+  * fix tracking playback state for keeping screen on
11
+  * improve language change without application restart
12
+  * prevent creation of multiple modal dialogs
13
+
14
+-------------------------------------------------------------------
15
 Tue Dec  8 20:59:51 UTC 2015 - avvissu@yandex.ru
16
 
17
 - Fix build errors with ffmpeg: define ffmpeg_includedir
18
sview.spec Changed
40
 
1
@@ -16,11 +16,11 @@
2
 #
3
 
4
 
5
-%define src_ver 15_11
6
+%define src_ver 16_06
7
 %define src_name sView
8
 %define ffmpeg_includedir %(pkg-config --variable=includedir libavcodec)
9
 Name:           sview
10
-Version:        15.11
11
+Version:        16.06
12
 Release:        0
13
 Summary:        Stereoscopic media player
14
 License:        GPL-3.0+ and LGPL-3.0+
15
@@ -37,11 +37,11 @@
16
 BuildRequires:  pkgconfig(gl)
17
 BuildRequires:  pkgconfig(gtk+-2.0)
18
 BuildRequires:  pkgconfig(freetype2)
19
-BuildRequires:  pkgconfig(libavcodec) = 56.60.100
20
-BuildRequires:  pkgconfig(libavformat) = 56.40.101
21
-BuildRequires:  pkgconfig(libavutil) = 54.31.100
22
+BuildRequires:  pkgconfig(libavcodec)
23
+BuildRequires:  pkgconfig(libavformat)
24
+BuildRequires:  pkgconfig(libavutil)
25
 BuildRequires:  pkgconfig(libconfig++)
26
-BuildRequires:  pkgconfig(libswscale) = 3.1.101
27
+BuildRequires:  pkgconfig(libswscale)
28
 BuildRequires:  pkgconfig(openal)
29
 BuildRequires:  pkgconfig(xpm)
30
 BuildRequires:  pkgconfig(xrandr)
31
@@ -101,7 +101,7 @@
32
 %{_libdir}/%{src_name}/
33
 %{_datadir}/applications/%{src_name}IV.desktop
34
 %{_datadir}/applications/%{src_name}MP.desktop
35
-%{_datadir}/icons/hicolor/scalable/apps/%{name}.svg
36
+%{_datadir}/icons/hicolor/*/apps/%{name}.??g
37
 %{_datadir}/pixmaps/%{name}.xpm
38
 %{_datadir}/%{src_name}/
39
 
40
sview-15_11.tar.gz/StCADViewer/StCADModel.cpp Deleted
269
 
1
@@ -1,267 +0,0 @@
2
-/**
3
- * This source is a part of sView program.
4
- *
5
- * Copyright © Kirill Gavrilov, 2011-2013
6
- */
7
-
8
-#ifdef ST_HAVE_STCONFIG
9
-    #include <stconfig.conf>
10
-#endif
11
-
12
-#ifdef ST_HAVE_OCCT
13
-
14
-#include <BRep_Tool.hxx>
15
-#include <BRepAdaptor_Surface.hxx>
16
-#include <Bnd_Box.hxx>
17
-#include <BRepBndLib.hxx>
18
-#include <BRepTools.hxx>
19
-#include <BRepLProp_SLProps.hxx>
20
-#include <BRepMesh_IncrementalMesh.hxx>
21
-#include <Poly_Array1OfTriangle.hxx>
22
-#include <Poly_Triangulation.hxx>
23
-#include <Precision.hxx>
24
-#include <TopoDS.hxx>
25
-#include <TopExp_Explorer.hxx>
26
-#include <TColgp_Array1OfPnt.hxx>
27
-#include <TColgp_Array1OfPnt2d.hxx>
28
-#include <gp_Trsf.hxx>
29
-#include <gp_Pln.hxx>
30
-#include <gp_Sphere.hxx>
31
-#include <Geom_Surface.hxx>
32
-#include <GeomLProp_SLProps.hxx>
33
-
34
-#include <StGLCore/StGLCore20.h>
35
-#include "StCADModel.h"
36
-#include <StGLMesh/StBndBox.h>
37
-#include <StThreads/StTimer.h>
38
-
39
-/**
40
- * Compute boundary box approximation.
41
- * If triangulation is available - it will be based on it.
42
- */
43
-StBndBox getApproxBndBox(const TopoDS_Shape& theShape) {
44
-    if(theShape.IsNull()) {
45
-        return StBndBox();
46
-    }
47
-
48
-    Bnd_Box aBndBox;
49
-    BRepBndLib::Add(theShape, aBndBox);
50
-    if(aBndBox.IsVoid()) {
51
-        return StBndBox();
52
-    }
53
-
54
-    Standard_Real aXmin, aYmin, aZmin, aXmax, aYmax, aZmax;
55
-    aBndBox.Get(aXmin, aYmin, aZmin, aXmax, aYmax, aZmax);
56
-    return StBndBox(StGLVec3(GLfloat(aXmin), GLfloat(aYmin), GLfloat(aZmin)),
57
-                    StGLVec3(GLfloat(aXmax), GLfloat(aYmax), GLfloat(aZmax)));
58
-}
59
-
60
-StCADModel::StCADModel(const TopoDS_Shape& theShape)
61
-: StGLMesh(GL_TRIANGLES),
62
-  myShape(theShape),
63
-  myDeflection(0.004),
64
-  myApproxDiag(0.0) {
65
-    // compute deflection relative to the model dimensions
66
-    StBndBox anApproxBndBox = getApproxBndBox(theShape);
67
-    Standard_Real aDeflRelative = 0.004;
68
-    myApproxDiag = (Standard_Real )(anApproxBndBox.getMax() - anApproxBndBox.getMin()).modulus();
69
-    if(myApproxDiag > gp::Resolution()) {
70
-        myDeflection = myApproxDiag * aDeflRelative;
71
-    }
72
-}
73
-
74
-StCADModel::~StCADModel() {
75
-    //
76
-}
77
-
78
-bool StCADModel::computeNormals(const TopoDS_Face& theFace, const TColgp_Array1OfPnt2d& theUVNodes) {
79
-    bool isReversed = theFace.Orientation() == TopAbs_REVERSED;
80
-    // notice that TopoDS_Face contains 2 locations!
81
-    // BRep_Tool give us result location = TopDS_Shape::Location() * BRep_TFace.Location()
82
-    // this redundant annoying location will be probably removed in next version
83
-    // but now we should care about this difference with another TopoDS_Shape inheritances
84
-    TopLoc_Location aLoc;
85
-    Handle(Geom_Surface) aSurf = BRep_Tool::Surface(theFace, aLoc);
86
-    gp_Trsf aTrsf(aLoc);
87
-    GeomAdaptor_Surface aSurfAdaptor(aSurf);
88
-    switch(aSurfAdaptor.GetType()) {
89
-        case GeomAbs_Plane: {
90
-            // compute just one normal and duplicated it
91
-            gp_Pnt aPnt; gp_Vec aD1U, aD1V;
92
-            aSurf->D1(0.0, 0.0, aPnt, aD1U, aD1V);
93
-            gp_Dir aDir = (aD1U.Crossed(aD1V)).XYZ();
94
-            aDir.Transform(aTrsf);
95
-
96
-            if(isReversed) {
97
-                aDir.Reverse();
98
-            }
99
-            StGLVec3 aNormal(GLfloat(aDir.X()), GLfloat(aDir.Y()), GLfloat(aDir.Z()));
100
-            for(Standard_Integer aNodeId = theUVNodes.Lower(); aNodeId <= theUVNodes.Upper(); ++aNodeId) {
101
-                myNormals.add(aNormal);
102
-            }
103
-            return true;
104
-        }
105
-        case GeomAbs_Sphere: {
106
-            // sphere has peculiar properties on its poles
107
-            const gp_Pnt aLoc = aSurfAdaptor.Sphere().Location().Transformed(aTrsf);
108
-            GLfloat aRadInv = 1.0f / GLfloat(aSurfAdaptor.Sphere().Radius());
109
-            if(isReversed) {
110
-                aRadInv = -aRadInv;
111
-            }
112
-            gp_Pnt aPnt;
113
-            for(Standard_Integer aNodeId = theUVNodes.Lower(); aNodeId <= theUVNodes.Upper(); ++aNodeId) {
114
-                gp_Pnt2d aUVPnt = theUVNodes(aNodeId);
115
-                aSurf->D0(aUVPnt.X(), aUVPnt.Y(), aPnt);
116
-                aPnt = aPnt.Transformed(aTrsf);
117
-                myNormals.add(StGLVec3(GLfloat(aPnt.X() - aLoc.X()) * aRadInv,
118
-                                       GLfloat(aPnt.Y() - aLoc.Y()) * aRadInv,
119
-                                       GLfloat(aPnt.Z() - aLoc.Z()) * aRadInv));
120
-            }
121
-            return true;
122
-        }
123
-        default: {
124
-            // general case, use special tool
125
-            gp_Dir aNormal;
126
-            GeomLProp_SLProps aProps(aSurf,
127
-                                     1, // needed to get normal
128
-                                     1e-12);
129
-            for(Standard_Integer aNodeId = theUVNodes.Lower(); aNodeId <= theUVNodes.Upper(); ++aNodeId) {
130
-                gp_Pnt2d aUVPnt = theUVNodes(aNodeId);
131
-                aProps.SetParameters(aUVPnt.X(), aUVPnt.Y());
132
-                if(!aProps.IsNormalDefined()) {
133
-                    ST_DEBUG_LOG("GeomLProp_SLProps failer!");
134
-                    myNormals.add(StGLVec3::DZ());
135
-                    continue;
136
-                }
137
-                aNormal = aProps.Normal().Transformed(aTrsf);
138
-                if(isReversed) {
139
-                    aNormal.Reverse();
140
-                }
141
-                myNormals.add(StGLVec3(GLfloat(aNormal.X()),
142
-                                       GLfloat(aNormal.Y()),
143
-                                       GLfloat(aNormal.Z())));
144
-            }
145
-            return true;
146
-        }
147
-    }
148
-}
149
-
150
-bool StCADModel::computeMesh() {
151
-    // reset current mesh
152
-    clearRAM();
153
-    if(myShape.IsNull()) {
154
-        return false;
155
-    }
156
-
157
-    TopLoc_Location aLoc;
158
-    size_t aFacesCount = 0;
159
-    size_t aVertCount = 0; // a nodes number
160
-    size_t anIndCount = 0; // an indices number
161
-    const Standard_Real anEps2 = Precision::Confusion() * Precision::Confusion();
162
-
163
-    Standard_Real aDeflection = myDeflection;
164
-    // 12.0 * Standard_PI / 180.0;
165
-    // 20.0 * Standard_PI / 180.0;
166
-    Standard_Real anAngular = 20.0 * M_PI / 180.0;
167
-    const bool toComputeMesh = !BRepTools::Triangulation(myShape, myDeflection);
168
-    StTimer aTimer(true);
169
-    if(toComputeMesh) {
170
-        // perform incremental mesh
171
-        BRepMesh_IncrementalMesh aMesher(myShape, aDeflection, Standard_False, anAngular);
172
-    }
173
-
174
-    // If computed triangulation has greater tolerance - get the maximal value
175
-    // to prevent unnecessary and useless recomputation of triangulation next time
176
-    for(TopExp_Explorer aFaceExp(myShape, TopAbs_FACE); aFaceExp.More(); aFaceExp.Next()) {
177
-        const TopoDS_Face& aFace = TopoDS::Face(aFaceExp.Current());
178
-        const Handle(Poly_Triangulation)& aTri = BRep_Tool::Triangulation(aFace, aLoc);
179
-        if(aTri.IsNull() || !aTri->HasUVNodes()) {
180
-            continue;
181
-        }
182
-        aDeflection = stMax(aTri->Deflection(), aDeflection); // find deflection maximum
183
-
184
-        // collect information
185
-        anIndCount += 3 * size_t(aTri->Triangles().Length());
186
-        aVertCount += size_t(aTri->Nodes().Length());
187
-    }
188
-    myDeflection = aDeflection;
189
-
190
-    if(toComputeMesh) {
191
-        ST_DEBUG_LOG("Triangulation computed in "
192
-                   + aTimer.getElapsedTimeInMilliSec() + " msec\n"
193
-                   + " with deflection " + aDeflection + " (requested " + myDeflection + ") "
194
-                   + " and angle " + (anAngular * 180.0 / M_PI) + " degrees "
195
-                   + "; Indices= " + anIndCount + "; Vertices= " + aVertCount); ///
196
-    } else {
197
-        ST_DEBUG_LOG("Triangulation reused\n"
198
-                   + " with deflection " + aDeflection + " (requested " + myDeflection + ") "
199
-                   + " and angle " + (anAngular * 180.0 / M_PI) + " degrees "
200
-                   + "; Indices= " + anIndCount + "; Vertices= " + aVertCount); ///
201
-    }
202
-
203
-    // initialize the whole memory block at once
204
-    myIndices.initList(anIndCount);
205
-    myVertices.initList(aVertCount);
206
-    myNormals.initList(aVertCount);
207
-
208
-    Standard_Integer aV1, aV2, aV3;
209
-    gp_Trsf aTrsf;
210
-    // iterate over all faces
211
-    for(TopExp_Explorer aFaceExp(myShape, TopAbs_FACE); aFaceExp.More(); aFaceExp.Next(), ++aFacesCount) {
212
-        const TopoDS_Face& aFace = TopoDS::Face(aFaceExp.Current());
213
-        const bool isReversed = (aFace.Orientation() == TopAbs_REVERSED);
214
-        const Handle(Poly_Triangulation)& aTri = BRep_Tool::Triangulation(aFace, aLoc);
215
-        aTrsf = gp_Trsf(aLoc);
216
-        if(aTri.IsNull() || !aTri->HasUVNodes()) {
217
-            continue;
218
-        }
219
-
220
-        const Poly_Array1OfTriangle& aTriangles = aTri->Triangles();
221
-        const TColgp_Array1OfPnt&    aNodes     = aTri->Nodes();
222
-        const TColgp_Array1OfPnt2d&  aUVNodes   = aTri->UVNodes();
223
-
224
-        // collect indices
225
-        Standard_Integer aNodesNbBefore = Standard_Integer(myVertices.size());
226
-        for(Standard_Integer aTriangleId = aTriangles.Lower(); aTriangleId <= aTriangles.Upper(); ++aTriangleId) {
227
-            aTriangles.Value(aTriangleId).Get(aV1, aV2, aV3);
228
-            // check that triangle is not degenerative
229
-            if(((aNodes(aV3).XYZ() -
230
-                 aNodes(aV1).XYZ()) ^
231
-                (aNodes(aV2).XYZ() -
232
-                 aNodes(aV1).XYZ())).SquareModulus() > anEps2) {
233
-                aV1 += (aNodesNbBefore - aNodes.Lower());
234
-                aV2 += (aNodesNbBefore - aNodes.Lower());
235
-                aV3 += (aNodesNbBefore - aNodes.Lower());
236
-                myIndices.add(GLuint(aV1));
237
-                if(isReversed) {
238
-                    // this is significant only if front/back face materials are different
239
-                    myIndices.add(GLuint(aV3));
240
-                    myIndices.add(GLuint(aV2));
241
-                } else {
242
-                    myIndices.add(GLuint(aV2));
243
-                    myIndices.add(GLuint(aV3));
244
-                }
245
-            }
246
-        }
247
-
248
-        // collect nodes
249
-        for(Standard_Integer aNodeId = aNodes.Lower(); aNodeId <= aNodes.Upper(); ++aNodeId) {
250
-            const gp_Pnt aNode = aNodes.Value(aNodeId).Transformed(aTrsf);
251
-            myVertices.add(StGLVec3(GLfloat(aNode.X()), GLfloat(aNode.Y()), GLfloat(aNode.Z())));
252
-        }
253
-
254
-        // collect surface normals
255
-        computeNormals(aFace, aUVNodes);
256
-    }
257
-
258
-    ST_DEBUG_LOG("Mesh info: nodes= " + myVertices.size()
259
-               + "; normals= " + myNormals.size()
260
-               + "; triangles= " + (myIndices.size() / 3)
261
-               + "; faces= " + aFacesCount);
262
-
263
-    // compute bounding sphere
264
-    myBndSphere.enlarge(myVertices);
265
-    return myVertices.size() >= 3;
266
-}
267
-
268
-#endif // ST_HAVE_OCCT
269
sview-15_11.tar.gz/StCADViewer/StCADModel.h Deleted
49
 
1
@@ -1,47 +0,0 @@
2
-/**
3
- * This source is a part of sView program.
4
- *
5
- * Copyright © Kirill Gavrilov, 2011-2013
6
- */
7
-
8
-#ifndef __StCADModel_h_
9
-#define __StCADModel_h_
10
-
11
-#ifdef ST_HAVE_STCONFIG
12
-    #include <stconfig.conf>
13
-#endif
14
-
15
-#ifdef ST_HAVE_OCCT
16
-
17
-// OCCT stuff
18
-#include <TopoDS_Shape.hxx>
19
-
20
-#include <StGLMesh/StGLMesh.h>
21
-#include <StGLMesh/StBndSphere.h>
22
-
23
-class TopoDS_Face;
24
-class TColgp_Array1OfPnt2d;
25
-
26
-class ST_LOCAL StCADModel : public StGLMesh {
27
-
28
-        private:
29
-
30
-    TopoDS_Shape  myShape;      //!< original shape
31
-    Standard_Real myDeflection; //!< deflection for triangulation
32
-    Standard_Real myApproxDiag; //!< boundary box approximation diagonal
33
-
34
-        private:
35
-
36
-    bool computeNormals(const TopoDS_Face& theFace, const TColgp_Array1OfPnt2d& theUVNodes);
37
-
38
-        public:
39
-
40
-    StCADModel(const TopoDS_Shape& theShape);
41
-    virtual ~StCADModel();
42
-
43
-    virtual bool computeMesh();
44
-
45
-};
46
-
47
-#endif // ST_HAVE_OCCT
48
-#endif // __StCADModel_h_
49
sview-15_11.tar.gz/StCADViewer/StMeshFileOBJ.cpp Deleted
213
 
1
@@ -1,211 +0,0 @@
2
-/**
3
- * This source is a part of sView program.
4
- *
5
- * Copyright © Kirill Gavrilov, 2011-2013
6
- */
7
-
8
-#include "StMeshFileOBJ.h"
9
-
10
-#include <StStrings/StStringStream.h>
11
-#include <StFile/StRawFile.h>
12
-#include <StGLCore/StGLCore20.h>
13
-
14
-StMeshFileOBJ::StMeshFileOBJ()
15
-: myMesh() {
16
-    //
17
-}
18
-
19
-static char* nextLine(char* theBuffer) {
20
-    if(theBuffer == NULL) {
21
-        return NULL;
22
-    }
23
-    char* aPtr = theBuffer;
24
-    while(*aPtr != '\0' && *aPtr != '\n') {
25
-        ++aPtr;
26
-    }
27
-    if(*aPtr == '\0') {
28
-        return NULL;
29
-    }
30
-    return ++aPtr;
31
-}
32
-
33
-bool StMeshFileOBJ::load(const StString& theFilePath) {
34
-    myMesh.nullify();
35
-
36
-    // read the file into RAM
37
-    StRawFile aFile(theFilePath);
38
-    if(!aFile.readFile()) {
39
-        // no file - no mesh
40
-        return false;
41
-    }
42
-
43
-    // determine arrays lengths
44
-    char* aBuffer = (char* )aFile.getBuffer();
45
-    size_t aLen = aFile.getSize();
46
-    size_t aVertNb  = 0;
47
-    size_t aNormNb  = 0;
48
-    size_t aFacesNb = 0;
49
-    for(char* aLine = aBuffer; aLine != NULL; aLine = nextLine(aLine)) {
50
-        if(aLine[0] == 'v' && aLine[1] == ' ') {
51
-            // vertex
52
-            ++aVertNb;
53
-            aLine += 2;
54
-        } else if(aLine[0] == 'v' && aLine[1] == 'n' && aLine[2] == ' ') {
55
-            // normal
56
-            ++aNormNb;
57
-            aLine += 3;
58
-        } else if(aLine[0] == 'f' && aLine[1] == ' ') {
59
-            // face
60
-            ++aFacesNb;
61
-            aLine += 2;
62
-        }
63
-    }
64
-
65
-ST_DEBUG_LOG("aVertNb= " + aVertNb + "; aFacesNb= " + aFacesNb + "; aNormNb= " + aNormNb);
66
-    if(aVertNb == 0 || aFacesNb == 0) {
67
-        // invalid or unsupported data
68
-        return false;
69
-    }
70
-
71
-    // allocate arrays
72
-    myMesh = new StGLMesh(GL_TRIANGLES);
73
-    StArrayList<StGLVec3>& aVertices = myMesh->changeVertices();
74
-    StArrayList<StGLVec3>& aNormals  = myMesh->changeNormals();
75
-    StArrayList<GLuint>&   anIndices = myMesh->changeIndices();
76
-    aVertices.initList(aVertNb);
77
-    anIndices.initList(aFacesNb * 6); // OBJ files often contains quads, reserve additional memory for quads -> triangles splitting
78
-
79
-    // temporary arrays
80
-    StArrayList<StGLVec3> aNormalsTmp;
81
-    StArrayList<GLuint> aNormalIndices;
82
-    aNormalsTmp.initList(aNormNb);
83
-    aNormalIndices.initList(anIndices.size());
84
-
85
-    // temporary variables
86
-    StGLVec3 aVert, aNorm;
87
-    GLuint aVertIndex = 0;
88
-    GLuint aNormIndex = 0;
89
-    GLuint aTmpIndex1 = 0;
90
-    GLuint aTmpIndex2 = 0;
91
-    size_t anIndexSet = 0;
92
-    size_t anIndexIter = 0;
93
-    bool isTermination = false;
94
-
95
-    // make sure floats are read using C locale
96
-    StStringStream aStream;
97
-    aStream.setCLocale();
98
-
99
-    // fill arrays
100
-    for(char* aLine = aBuffer; aLine != NULL; aLine = nextLine(aLine)) {
101
-        if(aLine[0] == 'v' && aLine[1] == ' ') {
102
-            // vertex
103
-            aLine += 2;
104
-            aStream.setInputBuffer(aLine, aLen - size_t(aLine - aBuffer));
105
-            aStream >> aVert.x(); aStream >> aVert.y(); aStream >> aVert.z();
106
-            aVertices.add(aVert);
107
-        } else if(aLine[0] == 'v' && aLine[1] == 'n' && aLine[2] == ' ') {
108
-            // normal
109
-            aLine += 3;
110
-            aStream.setInputBuffer(aLine, aLen - size_t(aLine - aBuffer));
111
-            aStream >> aNorm.x(); aStream >> aNorm.y(); aStream >> aNorm.z();
112
-            aNormalsTmp.add(aNorm);
113
-        } else if(aLine[0] == 'f' && aLine[1] == ' ') {
114
-            // face indices
115
-            aLine += 2;
116
-            char* anEnd = aLine;
117
-            anIndexIter = 0;
118
-            anIndexSet = 0;
119
-            aVertIndex = 0;
120
-            aNormIndex = 0;
121
-            for(;; ++anEnd) {
122
-                isTermination = *anEnd == '\0' || *anEnd == '\n';
123
-                if(*anEnd != '/' && *anEnd != ' ' && !isTermination) {
124
-                    continue;
125
-                }
126
-                ++anIndexIter;
127
-                if(aLine != anEnd) {
128
-                    aStream.setInputBuffer(aLine, size_t(anEnd - aLine));
129
-                    switch(anIndexIter) {
130
-                        case 1: {
131
-                            // vertex index
132
-                            aStream >> aVertIndex;
133
-                            ++anIndexSet;
134
-                            break;
135
-                        }
136
-                        case 2: {
137
-                            // texture coordinates index
138
-                            //anIndices.add(anIndex - 1);
139
-                            break;
140
-                        }
141
-                        case 3: {
142
-                            // normal index
143
-                            aStream >> aNormIndex;
144
-                            break;
145
-                        }
146
-                        default: break;
147
-                    }
148
-                    if(*anEnd != '/') {
149
-                        if(aVertIndex == 0 || aVertIndex > aVertNb) {
150
-                            // index out of bounds - ignore line
151
-                            break;
152
-                        }
153
-
154
-                        // indices set ends
155
-                        if(anIndexSet <= 3) {
156
-                            // got triangle
157
-                            anIndices.add(aVertIndex - 1); // in OBJ indices starts from 1
158
-                            if(aNormIndex > 0 && aNormIndex <= aNormNb) {
159
-                                aNormalIndices.add(aNormIndex - 1); // in OBJ indices starts from 1
160
-                            }
161
-                        } else if(anIndices.size() >= 3) {
162
-                            // got polygon, split it to triangles
163
-                            aTmpIndex1 = anIndices.getValue(anIndices.size() - 3);
164
-                            aTmpIndex2 = anIndices.getLast();
165
-                            anIndices.add(aTmpIndex1);
166
-                            anIndices.add(aTmpIndex2);
167
-                            anIndices.add(aVertIndex - 1); // in OBJ indices starts from 1
168
-                            if(aNormIndex > 0 && aNormIndex <= aNormNb
169
-                            && aNormalIndices.size() >= 3) {
170
-                                aTmpIndex1 = aNormalIndices.getValue(aNormalIndices.size() - 3);
171
-                                aTmpIndex2 = aNormalIndices.getLast();
172
-                                aNormalIndices.add(aTmpIndex1);
173
-                                aNormalIndices.add(aTmpIndex2);
174
-                                aNormalIndices.add(aNormIndex - 1); // in OBJ indices starts from 1
175
-                            }
176
-                        }
177
-                        anIndexIter = 0;
178
-                    }
179
-                }
180
-                if(isTermination) {
181
-                    break;
182
-                }
183
-                aLine = anEnd + 1;
184
-            }
185
-        }
186
-    }
187
-
188
-    if(aNormalIndices.size() == anIndices.size() && !aNormalsTmp.isEmpty()) {
189
-        // move collected normals to the mesh
190
-        StArray<bool> anIndMap(aVertices.size());
191
-        stMemSet(&anIndMap.changeFirst(), false, sizeof(bool) * aVertices.size());
192
-        aNormals.initArray(aVertices.size());
193
-        size_t aNormIndex = 0;
194
-        size_t aVertIndex = 0;
195
-        for(size_t anIndexId = 0; anIndexId < aNormalIndices.size(); ++anIndexId) {
196
-            aVertIndex = anIndices[anIndexId];
197
-            if(!anIndMap[aVertIndex]) {
198
-                aNormIndex = aNormalIndices[anIndexId];
199
-                aNormals.changeValue(aVertIndex) = aNormalsTmp[aNormIndex];
200
-                anIndMap[aVertIndex] = true;
201
-            }
202
-        }
203
-    } else {
204
-        // compute coarse normals
205
-        myMesh->computeNormals();
206
-    }
207
-
208
-    // compute bounding sphere
209
-    myMesh->computeMesh();
210
-
211
-    return true;
212
-}
213
sview-15_11.tar.gz/StCADViewer/StMeshFileOBJ.h Deleted
42
 
1
@@ -1,40 +0,0 @@
2
-/**
3
- * This source is a part of sView program.
4
- *
5
- * Copyright © Kirill Gavrilov, 2011-2013
6
- */
7
-
8
-#ifndef __StMeshFileOBJ_h_
9
-#define __StMeshFileOBJ_h_
10
-
11
-#include <StTemplates/StHandle.h>
12
-#include <StGLMesh/StGLMesh.h>
13
-
14
-class ST_LOCAL StMeshFileOBJ {
15
-
16
-        private:
17
-
18
-    StHandle<StGLMesh> myMesh;
19
-
20
-        public:
21
-
22
-    /**
23
-     * Empty constructor.
24
-     */
25
-    StMeshFileOBJ();
26
-
27
-    /**
28
-     * Read the mesh from OBJ file.
29
-     */
30
-    bool load(const StString& theFilePath);
31
-
32
-    /**
33
-     * Return imported mesh.
34
-     */
35
-    const StHandle<StGLMesh>& getResult() const {
36
-        return myMesh;
37
-    }
38
-
39
-};
40
-
41
-#endif //__StMeshFileOBJ_h_
42
sview-15_11.tar.gz/StMoviePlayer/StSeekBar.cpp Deleted
280
 
1
@@ -1,278 +0,0 @@
2
-/**
3
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
4
- *
5
- * StMoviePlayer program is free software: you can redistribute it and/or modify
6
- * it under the terms of the GNU General Public License as published by
7
- * the Free Software Foundation, either version 3 of the License, or
8
- * (at your option) any later version.
9
- *
10
- * StMoviePlayer program is distributed in the hope that it will be useful,
11
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
- * See the GNU General Public License for more details.
14
- *
15
- * You should have received a copy of the GNU General Public
16
- * License along with this program.
17
- * If not, see <http://www.gnu.org/licenses/>.
18
- */
19
-
20
-#include "StSeekBar.h"
21
-
22
-#include <StGL/StGLProgram.h>
23
-#include <StGL/StGLContext.h>
24
-#include <StGLCore/StGLCore20.h>
25
-#include <StGLWidgets/StGLRootWidget.h>
26
-
27
-class StSeekBar::StProgramSB : public StGLProgram {
28
-
29
-        public:
30
-
31
-    StProgramSB() : StGLProgram("StSeekBar") {}
32
-
33
-    StGLVarLocation getVVertexLoc() const { return StGLVarLocation(0); }
34
-    StGLVarLocation getVColorLoc()  const { return StGLVarLocation(1); }
35
-
36
-    void setProjMat(StGLContext&      theCtx,
37
-                    const StGLMatrix& theProjMat) {
38
-        theCtx.core20fwd->glUniformMatrix4fv(uniProjMatLoc, 1, GL_FALSE, theProjMat);
39
-    }
40
-
41
-    using StGLProgram::use;
42
-    void use(StGLContext& theCtx) {
43
-        StGLProgram::use(theCtx);
44
-    }
45
-
46
-    void use(StGLContext&  theCtx,
47
-             const GLfloat theOpacityValue,
48
-             const GLfloat theDispX) {
49
-        StGLProgram::use(theCtx);
50
-        theCtx.core20fwd->glUniform1f(uniOpacityLoc, theOpacityValue);
51
-        if(!stAreEqual(myDispX, theDispX, 0.0001f)) {
52
-            myDispX = theDispX;
53
-            theCtx.core20fwd->glUniform4fv(uniDispLoc,  1, StGLVec4(theDispX, 0.0f, 0.0f, 0.0f));
54
-        }
55
-    }
56
-
57
-    virtual bool init(StGLContext& theCtx) {
58
-        const char VERTEX_SHADER[] =
59
-           "uniform mat4  uProjMatrix;\n"
60
-           "uniform vec4  uDisp;\n"
61
-           "uniform float uOpacity;\n"
62
-           "attribute vec4 vVertex;\n"
63
-           "attribute vec4 vColor;\n"
64
-           "varying vec4 fColor;\n"
65
-           "void main(void) {\n"
66
-           "    fColor = vec4(vColor.rgb, vColor.a * uOpacity);\n"
67
-           "    gl_Position = uProjMatrix * (vVertex + uDisp);\n"
68
-           "}\n";
69
-
70
-        const char FRAGMENT_SHADER[] =
71
-           "varying vec4 fColor;\n"
72
-           "void main(void) {\n"
73
-           "    gl_FragColor = fColor;\n"
74
-           "}\n";
75
-
76
-        StGLVertexShader aVertexShader(StGLProgram::getTitle());
77
-        StGLAutoRelease aTmp1(theCtx, aVertexShader);
78
-        aVertexShader.init(theCtx, VERTEX_SHADER);
79
-
80
-        StGLFragmentShader aFragmentShader(StGLProgram::getTitle());
81
-        StGLAutoRelease aTmp2(theCtx, aFragmentShader);
82
-        aFragmentShader.init(theCtx, FRAGMENT_SHADER);
83
-        if(!StGLProgram::create(theCtx)
84
-           .attachShader(theCtx, aVertexShader)
85
-           .attachShader(theCtx, aFragmentShader)
86
-           .bindAttribLocation(theCtx, "vVertex", getVVertexLoc())
87
-           .bindAttribLocation(theCtx, "vColor",  getVColorLoc())
88
-           .link(theCtx)) {
89
-            return false;
90
-        }
91
-
92
-        uniProjMatLoc = StGLProgram::getUniformLocation(theCtx, "uProjMatrix");
93
-        uniDispLoc    = StGLProgram::getUniformLocation(theCtx, "uDisp");
94
-        uniOpacityLoc = StGLProgram::getUniformLocation(theCtx, "uOpacity");
95
-        return uniProjMatLoc.isValid() && uniOpacityLoc.isValid();
96
-    }
97
-
98
-        private:
99
-
100
-    GLfloat         myDispX;
101
-    StGLVarLocation uniProjMatLoc;
102
-    StGLVarLocation uniDispLoc;
103
-    StGLVarLocation uniOpacityLoc;
104
-
105
-};
106
-
107
-StSeekBar::StSeekBar(StGLWidget* theParent,
108
-                     const int   theTop,
109
-                     const int   theMargin)
110
-: StGLWidget(theParent, 0, theTop, StGLCorner(ST_VCORNER_TOP, ST_HCORNER_LEFT),
111
-             theParent->getRoot()->scale(512),
112
-             theParent->getRoot()->scale(12) + theMargin * 2),
113
-  myProgram(new StProgramSB()),
114
-  myProgress(0.0f),
115
-  myProgressPx(0),
116
-  myClickPos(-1),
117
-  myMoveTolerPx(myRoot->scale(myRoot->isMobile() ? 16 : 8)) {
118
-    StGLWidget::signals.onMouseClick  .connect(this, &StSeekBar::doMouseClick);
119
-    StGLWidget::signals.onMouseUnclick.connect(this, &StSeekBar::doMouseUnclick);
120
-    myMargins.top    = theMargin;
121
-    myMargins.bottom = theMargin;
122
-}
123
-
124
-StSeekBar::~StSeekBar() {
125
-    StGLContext& aCtx = getContext();
126
-    if(!myProgram.isNull()) {
127
-        myProgram->release(aCtx);
128
-    }
129
-    myVertices.release(aCtx);
130
-    myColors.release(aCtx);
131
-}
132
-
133
-void StSeekBar::stglResize() {
134
-    StGLWidget::stglResize();
135
-    StGLContext& aCtx = getContext();
136
-
137
-    stglUpdateVertices();
138
-
139
-    // update projection matrix
140
-    if(!myProgram.isNull()) {
141
-        myProgram->use(aCtx);
142
-        myProgram->setProjMat(aCtx, getRoot()->getScreenProjection());
143
-        myProgram->unuse(aCtx);
144
-    }
145
-}
146
-
147
-void StSeekBar::stglUpdateVertices() {
148
-    StArray<StGLVec2> aVertices(12);
149
-
150
-    // black border quad
151
-    StRectI_t aRectPx(getRectPxAbsolute());
152
-    aRectPx.top()    += myMargins.top;
153
-    aRectPx.bottom() -= myMargins.bottom;
154
-    aRectPx.left()   += myMargins.left;
155
-    aRectPx.right()  -= myMargins.right;
156
-
157
-    myRoot->getRectGl(aRectPx, aVertices, 0);
158
-
159
-    // inner empty quad
160
-    aRectPx.top()    += 1;
161
-    aRectPx.bottom() -= 1;
162
-    aRectPx.left()   += 1;
163
-    aRectPx.right()  -= 1;
164
-    myRoot->getRectGl(aRectPx, aVertices, 4);
165
-
166
-    // inner filled quad
167
-    myProgressPx = int(myProgress * GLfloat(aRectPx.width()));
168
-    myProgressPx = stClamp(myProgressPx, 0, aRectPx.width());
169
-    aRectPx.right() = aRectPx.left() + myProgressPx;
170
-    myRoot->getRectGl(aRectPx, aVertices, 8);
171
-
172
-    myVertices.init(getContext(), aVertices);
173
-    myIsResized = false;
174
-}
175
-
176
-bool StSeekBar::stglInit() {
177
-    StGLContext& aCtx = getContext();
178
-    const GLfloat COLORS[4 * 12] = {
179
-        // black border colors
180
-        0.0f, 0.0f, 0.0f, 1.0f, // quad's top-right
181
-        0.0f, 0.0f, 0.0f, 1.0f, // quad's bottom-right
182
-        0.0f, 0.0f, 0.0f, 1.0f, // quad's top-left
183
-        0.0f, 0.0f, 0.0f, 1.0f, // quad's bottom-left
184
-        // empty color
185
-        0.3f, 0.3f, 0.3f, 1.0f, // quad's top-right
186
-        0.3f, 0.3f, 0.3f, 1.0f, // quad's bottom-right
187
-        0.3f, 0.3f, 0.3f, 1.0f, // quad's top-left
188
-        0.3f, 0.3f, 0.3f, 1.0f, // quad's bottom-left
189
-        // fill color
190
-        0.13f, 0.35f, 0.49f, 1.0f, // quad's top-right
191
-        0.13f, 0.35f, 0.49f, 1.0f, // quad's bottom-right
192
-        0.13f, 0.35f, 0.49f, 1.0f, // quad's top-left
193
-        0.13f, 0.35f, 0.49f, 1.0f  // quad's bottom-left
194
-    };
195
-
196
-    myVertices.init(aCtx); // just generate buffer
197
-    myColors.init(aCtx, 4, 12, COLORS);
198
-
199
-    stglUpdateVertices();
200
-
201
-    return myProgram->init(aCtx)
202
-        && StGLWidget::stglInit();
203
-}
204
-
205
-void StSeekBar::stglDraw(unsigned int theView) {
206
-    StGLContext& aCtx = getContext();
207
-
208
-    // need to update vertices buffer?
209
-    if(myIsResized
210
-    || myProgressPx != int(myProgress * GLfloat((getRectPx().width() - myMargins.left - myMargins.right - 2)))) {
211
-        stglUpdateVertices();
212
-    }
213
-
214
-    aCtx.core20fwd->glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
215
-    aCtx.core20fwd->glEnable(GL_BLEND);
216
-    myProgram->use(aCtx, myOpacity, myRoot->getScreenDispX());
217
-
218
-    myVertices.bindVertexAttrib(aCtx, myProgram->getVVertexLoc());
219
-    myColors  .bindVertexAttrib(aCtx, myProgram->getVColorLoc());
220
-
221
-    aCtx.core20fwd->glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
222
-    aCtx.core20fwd->glDrawArrays(GL_TRIANGLE_STRIP, 4, 4);
223
-
224
-    if(myProgressPx >= 1) {
225
-        aCtx.core20fwd->glDrawArrays(GL_TRIANGLE_STRIP, 8, 4);
226
-    }
227
-
228
-    myColors  .unBindVertexAttrib(aCtx, myProgram->getVColorLoc());
229
-    myVertices.unBindVertexAttrib(aCtx, myProgram->getVVertexLoc());
230
-
231
-    myProgram->unuse(aCtx);
232
-    aCtx.core20fwd->glDisable(GL_BLEND);
233
-
234
-    StGLWidget::stglDraw(theView);
235
-}
236
-
237
-void StSeekBar::stglUpdate(const StPointD_t& theCursor) {
238
-    StGLWidget::stglUpdate(theCursor);
239
-    if(!isClicked(ST_MOUSE_LEFT)) {
240
-        return;
241
-    }
242
-
243
-    const double aPos   = stMin(stMax(getPointInEx(theCursor), 0.0), 1.0);
244
-    const int    aPosPx = int(aPos * double(getRectPx().width()));
245
-    if(myClickPos >= 0
246
-    && std::abs(aPosPx - myClickPos) < myMoveTolerPx) {
247
-        return;
248
-    }
249
-
250
-    myClickPos = aPosPx;
251
-    signals.onSeekClick(ST_MOUSE_LEFT, aPos);
252
-}
253
-
254
-double StSeekBar::getPointInEx(const StPointD_t& thePointZo) const {
255
-    StRectI_t aRectPx = getRectPxAbsolute();
256
-    aRectPx.left()  += myMargins.left;
257
-    aRectPx.right() -= myMargins.right;
258
-    const StRectD_t  aRectGl  = myRoot->getRectGl(aRectPx);;
259
-    const StPointD_t aPointGl = getPointGl(thePointZo);
260
-    return (aPointGl.x() - aRectGl.left()) / (aRectGl.right() - aRectGl.left());
261
-}
262
-
263
-void StSeekBar::doMouseClick(const int ) {
264
-    //
265
-}
266
-
267
-void StSeekBar::doMouseUnclick(const int mouseBtn) {
268
-    const double aPos       = stMin(stMax(getPointInEx(myRoot->getCursorZo()), 0.0), 1.0);
269
-    const int    aTolerance = myRoot->scale(1);
270
-    const int    aPosPx     = int(aPos * double(getRectPx().width()));
271
-    if(myClickPos >= 0
272
-    && std::abs(aPosPx - myClickPos) < aTolerance) {
273
-        myClickPos = -1;
274
-        return;
275
-    }
276
-
277
-    myClickPos = -1;
278
-    signals.onSeekClick(mouseBtn, aPos);
279
-}
280
sview-15_11.tar.gz/StMoviePlayer/StSeekBar.h Deleted
97
 
1
@@ -1,95 +0,0 @@
2
-/**
3
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
4
- *
5
- * StMoviePlayer program is free software: you can redistribute it and/or modify
6
- * it under the terms of the GNU General Public License as published by
7
- * the Free Software Foundation, either version 3 of the License, or
8
- * (at your option) any later version.
9
- *
10
- * StMoviePlayer program is distributed in the hope that it will be useful,
11
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
- * See the GNU General Public License for more details.
14
- *
15
- * You should have received a copy of the GNU General Public
16
- * License along with this program.
17
- * If not, see <http://www.gnu.org/licenses/>.
18
- */
19
-
20
-#ifndef __StSeekBar_h_
21
-#define __StSeekBar_h_
22
-
23
-#include <StGLWidgets/StGLWidget.h>
24
-#include <StGL/StGLVertexBuffer.h>
25
-
26
-/**
27
- * Simple seeking bar widget.
28
- */
29
-class ST_LOCAL StSeekBar : public StGLWidget {
30
-
31
-        public: //! @name public methods
32
-
33
-    /**
34
-     * Default constructor.
35
-     */
36
-    StSeekBar(StGLWidget* theParent,
37
-              const int   theTop,
38
-              const int   theMargin);
39
-
40
-    /**
41
-     * Destructor.
42
-     */
43
-    virtual ~StSeekBar();
44
-
45
-    /**
46
-     * @param theProgress - current progress from 0.0f to 1.0f;
47
-     */
48
-    void setProgress(const GLfloat theProgress) {
49
-        myProgress = theProgress;
50
-    }
51
-
52
-    void setMoveTolerance(const int theTolerPx) {
53
-        myMoveTolerPx = theTolerPx;
54
-    }
55
-
56
-    virtual void stglResize();
57
-    virtual bool stglInit();
58
-    virtual void stglUpdate(const StPointD_t& theCursor);
59
-    virtual void stglDraw(unsigned int view);
60
-
61
-        public:  //!< Signals
62
-
63
-    struct {
64
-        /**
65
-         * Emit callback Slot on mouse click.
66
-         * @param theMouseBtnId (const int ) - mouse button id;
67
-         * @param theProgress (const double ) - current progress value.
68
-         */
69
-        StSignal<void (const int , const double )> onSeekClick;
70
-    } signals;
71
-
72
-        private: //! @name callback Slots (private overriders)
73
-
74
-    void doMouseClick  (const int );
75
-    void doMouseUnclick(const int );
76
-
77
-        private: //! @name private methods
78
-
79
-    void stglUpdateVertices();
80
-    double getPointInEx(const StPointD_t& thePointZo) const;
81
-
82
-        private:
83
-
84
-    class StProgramSB;
85
-    StHandle<StProgramSB> myProgram;    //!< GLSL program
86
-
87
-    StGLVertexBuffer      myVertices;   //!< vertices VBO
88
-    StGLVertexBuffer      myColors;     //!< colors   VBO
89
-    GLfloat               myProgress;   //!< current progress 0..1
90
-    int                   myProgressPx; //!< current progress - width in pixels
91
-    int                   myClickPos;
92
-    int                   myMoveTolerPx;
93
-
94
-};
95
-
96
-#endif //__StSeekBar_h_
97
sview-15_11.tar.gz/StShared/StFileNode2.mm Deleted
119
 
1
@@ -1,117 +0,0 @@
2
-/**
3
- * Copyright © 2011 Kirill Gavrilov <kirill@sview.ru>
4
- *
5
- * Distributed under the Boost Software License, Version 1.0.
6
- * See accompanying file license-boost.txt or copy at
7
- * http://www.boost.org/LICENSE_1_0.txt
8
- */
9
-
10
-#if (defined(__APPLE__))
11
-
12
-#include <StFile/StFileNode.h>
13
-#include <StFile/StMIMEList.h>
14
-
15
-#include <StCocoa/StCocoaLocalPool.h>
16
-
17
-#import <Cocoa/Cocoa.h>
18
-
19
-@interface StOpenFileInfo : NSObject
20
-    {
21
-        NSMutableArray* myFilter;
22
-        NSString*       myTitle;
23
-        NSString*       myFolder;
24
-        @public
25
-        StString        myResult;
26
-        bool            myToSave;
27
-        @public
28
-        bool            myIsFileSelected;
29
-    }
30
-
31
-    - (id ) init: (NSMutableArray* ) theFilter
32
-       withTitle: (NSString* )       theTitle
33
-      withFolder: (NSString* )       theFolder
34
-          toSave: (bool )            theToSave;
35
-
36
-    - (void ) doDialog: (id ) theSender;
37
-@end
38
-
39
-@implementation StOpenFileInfo
40
-
41
-    - (id ) init: (NSMutableArray* ) theFilter
42
-       withTitle: (NSString* )       theTitle
43
-      withFolder: (NSString* )       theFolder
44
-          toSave: (bool )            theToSave {
45
-        self = [super init];
46
-        if(self == NULL) {
47
-            return NULL;
48
-        }
49
-        myFilter = theFilter;
50
-        myTitle  = theTitle;
51
-        myFolder = theFolder;
52
-        myToSave = theToSave;
53
-        myIsFileSelected = false;
54
-        return self;
55
-    }
56
-
57
-    - (void ) doDialog: (id ) theSender {
58
-        StCocoaLocalPool aLocalPool;
59
-        NSSavePanel* aFilePanel = myToSave ? [NSSavePanel savePanel] : [NSOpenPanel openPanel];
60
-        [aFilePanel setTitle: myTitle];
61
-        [aFilePanel setDirectoryURL: [NSURL fileURLWithPath: myFolder]];
62
-
63
-        if(myFilter != NULL) {
64
-            [aFilePanel setAllowedFileTypes: myFilter];
65
-        }
66
-
67
-        if([aFilePanel runModal] == NSOKButton) {
68
-            myIsFileSelected = true;
69
-            // automatically convert filenames from decomposed form used by Mac OS X file systems
70
-            NSString* aFileName = [[aFilePanel filename] precomposedStringWithCanonicalMapping];
71
-            myResult = [aFileName UTF8String];
72
-        }
73
-    }
74
-
75
-@end
76
-
77
-bool StFileNode::openFileDialog(const StString& theFolder,
78
-                                const StString& theTitle,
79
-                                const StMIMEList& theFilter,
80
-                                StString& theFilePath,
81
-                                bool toSave) {
82
-    if(NSApp == nil) {
83
-        return false;
84
-    }
85
-
86
-    StCocoaLocalPool aLocalPool;
87
-    NSString* aTitle  = [NSString stringWithUTF8String: theTitle.toCString()];
88
-    NSString* aFolder = [NSString stringWithUTF8String: theFolder.toCString()];
89
-    NSMutableArray* aFilter = NULL;
90
-    if(!theFilter.isEmpty()) {
91
-        aFilter = [NSMutableArray arrayWithCapacity: theFilter.size()];
92
-        for(size_t aMimeId = 0; aMimeId < theFilter.size(); ++aMimeId) {
93
-            const StMIME& aMime = theFilter[aMimeId];
94
-            [aFilter addObject: [NSString stringWithUTF8String: aMime.getExtension().toCString()]];
95
-        }
96
-    }
97
-
98
-    StOpenFileInfo* anOpenFile = [[StOpenFileInfo alloc] init: aFilter
99
-                                                    withTitle: aTitle
100
-                                                   withFolder: aFolder
101
-                                                       toSave: toSave];
102
-    if([NSThread isMainThread]) {
103
-        [anOpenFile doDialog: NULL];
104
-    } else {
105
-        // create open file dialog in main thread due to Cocoa stupidity
106
-        [anOpenFile performSelectorOnMainThread: @selector(doDialog:)
107
-                                     withObject: NULL
108
-                                  waitUntilDone: YES];
109
-    }
110
-
111
-    bool isFileSelected = anOpenFile->myIsFileSelected;
112
-    theFilePath = anOpenFile->myResult;
113
-    [anOpenFile release];
114
-
115
-    return isFileSelected;
116
-}
117
-
118
-#endif // __APPLE__
119
sview-15_11.tar.gz/.gitattributes -> sview-16_06.tar.gz/.gitattributes Changed
9
 
1
@@ -10,6 +10,7 @@
2
 *.sh        eol=lf
3
 *.workspace eol=lf
4
 *.cbp       eol=lf
5
+*.yml       eol=lf
6
 *.vcxproj*  eol=crlf
7
 *.filters   eol=crlf
8
 *.sln       eol=crlf
9
sview-15_11.tar.gz/.gitignore -> sview-16_06.tar.gz/.gitignore Changed
33
 
1
@@ -19,6 +19,12 @@
2
 *.so
3
 *.zip
4
 *.7z
5
+*.gz
6
+*.bz2
7
+*.xz
8
+*.dmg
9
+custom.bat
10
+custom.sh
11
 Doxygen/
12
 distribution/repository/
13
 distribution/temp/
14
@@ -31,6 +37,8 @@
15
 3rdparty/include/freetype
16
 3rdparty/include/lib*
17
 3rdparty/include/ft2build.h
18
+3rdparty/include/OVR*
19
+3rdparty/include/Extras/OVR*
20
 build/
21
 bin/
22
 lib/
23
@@ -48,6 +56,9 @@
24
 StMoviePlayer/obj/
25
 StDiagnostics/obj/
26
 StCADViewer/obj/
27
+StCADViewer/gen/
28
+StCADViewer/.settings/
29
+StCADViewer/assets/
30
 StBrowserPlugin/obj/
31
 sview/obj/
32
 sview/gen/
33
sview-16_06.tar.gz/.travis.yml Added
56
 
1
@@ -0,0 +1,54 @@
2
+language: cpp
3
+compiler:
4
+  - gcc
5
+  #- clang
6
+
7
+os:
8
+  - linux
9
+  - osx
10
+
11
+env:
12
+  - MY_TARGET=linux
13
+  - MY_TARGET=android
14
+  - MY_TARGET=osx
15
+
16
+matrix:
17
+  exclude:
18
+    - os: osx
19
+      env: MY_TARGET=linux
20
+    - os: osx
21
+      env: MY_TARGET=android
22
+    - os: linux
23
+      env: MY_TARGET=osx
24
+
25
+# require Ubuntu 14.04 Trusty Tahr
26
+sudo: required
27
+dist: trusty
28
+
29
+addons:
30
+  apt:
31
+    packages:
32
+      - g++
33
+      - libgtk2.0-dev
34
+      - libopenal-dev
35
+      - libgl1-mesa-dev
36
+      - libwebp-dev
37
+      - libconfig++-dev
38
+      - libconfig-dev
39
+      - libxpm-dev
40
+      - libavcodec-dev
41
+      - libavdevice-dev
42
+      - libavformat-dev
43
+      - libavutil-dev
44
+      - libswscale-dev
45
+
46
+before_install:
47
+  - if [[ "$MY_TARGET" == "osx" ]]; then brew update; fi
48
+  - if [[ "$MY_TARGET" == "osx" ]]; then brew install freetype ffmpeg; fi
49
+
50
+install: true
51
+
52
+script:
53
+  - if [[ "$MY_TARGET" == "linux"   ]]; then ./contentiousIntegration/build_sview_linux.sh;   else echo "Skipping step for current target..."; fi
54
+  - if [[ "$MY_TARGET" == "android" ]]; then ./contentiousIntegration/build_sview_android.sh; else echo "Skipping step for current target..."; fi
55
+  - if [[ "$MY_TARGET" == "osx"     ]]; then ./contentiousIntegration/build_sview_osx.sh;     else echo "Skipping step for current target..."; fi
56
sview-15_11.tar.gz/3rdparty/FFmpeg/rebuild.sh -> sview-16_06.tar.gz/3rdparty/FFmpeg/rebuild.sh Changed
225
 
1
@@ -9,7 +9,8 @@
2
 rebuildDebug="false"
3
 rebuildAndroid="false"
4
 compilerPrefix=""
5
-androidNdkRoot="~/develop/android-ndk-r10"
6
+androidTarget=""
7
+androidNdkRoot="$HOME/develop/android-ndk-r12b"
8
 aSystem=`uname -s`
9
 aPwdBack=$PWD
10
 
11
@@ -32,6 +33,13 @@
12
   fi
13
 done
14
 
15
+if [ "$rebuildAndroid" == "true" ]; then
16
+  if [ "$androidTarget" == "" ]; then
17
+    androidTarget="arm"
18
+    #androidTarget="arm64"
19
+  fi
20
+fi
21
+
22
 # cross-compilers prefixes
23
 GCC_MACHINE_MINGW_32="i686-w64-mingw32"
24
 GCC_MACHINE_MINGW_32_1="i686-mingw32"
25
@@ -41,7 +49,16 @@
26
 GCC_MACHINE_LINUX_64="x86_64-linux-gnu"
27
 
28
 if [ "$rebuildAndroid" == "true" ]; then
29
-  compilerPrefix="${androidNdkRoot}/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64/arm-linux-androideabi/bin/"
30
+  if [ "$androidTarget" == "arm64" ]; then
31
+    aPrefixShort="aarch64-linux-android"
32
+  else
33
+    aPrefixShort="arm-linux-androideabi"
34
+  fi
35
+
36
+  compilerPrefix="${androidNdkRoot}/toolchains/${aPrefixShort}-4.8/prebuilt/linux-x86_64/bin/${aPrefixShort}-"
37
+  if [ -x "${androidNdkRoot}/toolchains/${aPrefixShort}-4.9" ]; then
38
+    compilerPrefix="${androidNdkRoot}/toolchains/${aPrefixShort}-4.9/prebuilt/linux-x86_64/bin/${aPrefixShort}-"
39
+  fi
40
 fi
41
 
42
 if [ "$compilerPrefix" != "" ]; then
43
@@ -79,6 +96,12 @@
44
   OUTPUT_FOLDER_BIN="$OUTPUT_FOLDER/MacOS"
45
   OUTPUT_FOLDER_LIB="$OUTPUT_FOLDER/Frameworks"
46
 fi
47
+if [ "$androidTarget" == "arm64" ]; then
48
+  OUTPUT_FOLDER_LIB="$OUTPUT_FOLDER/libs/arm64-v8a"
49
+elif [ "$androidTarget" == "arm" ]; then
50
+  OUTPUT_FOLDER_LIB="$OUTPUT_FOLDER/libs/armeabi-v7a"
51
+fi
52
+
53
 rm -f -r $OUTPUT_FOLDER
54
 mkdir -p $OUTPUT_FOLDER
55
 mkdir -p $OUTPUT_FOLDER_BIN
56
@@ -120,6 +143,7 @@
57
  --enable-runtime-cpudetect"
58
 
59
 if [ "$aSystem" == "Darwin" ]; then
60
+  configArguments="$configArguments --disable-audiotoolbox --disable-hwaccel=xvmc"
61
   configArguments="$configArguments --enable-vda --libdir=@executable_path/../Frameworks"
62
 fi
63
 
64
@@ -130,6 +154,9 @@
65
   # you should use with --enable-pthreads instead to enable full multithreading support!
66
   #configArguments="$configArguments --enable-w32threads"
67
   configArguments="$configArguments --enable-avisynth"
68
+
69
+  # avoid dynamic linkage with libgcc_s_sjlj-1.dll
70
+  configArguments="$configArguments --extra-ldflags=-static-libgcc"
71
 fi
72
 
73
 # cross-compiling options
74
@@ -140,9 +167,16 @@
75
   targetFlags="--cross-prefix=$compilerPrefix --arch=x86_64 --extra-cflags=-Dstrtod=__strtod"
76
   configArguments="$configArguments --enable-cross-compile --target-os=mingw32 $targetFlags"
77
 elif [ "$rebuildAndroid" == "true" ]; then
78
-  targetFlags="--cross-prefix=$compilerPrefix --sysroot=${androidNdkRoot}/platforms/android-15/arch-arm --arch=arm"
79
-  configArguments="$configArguments --target-os=linux $targetFlags"
80
+  if [ "$androidTarget" == "arm64" ]; then
81
+    targetFlags="--cross-prefix=$compilerPrefix --sysroot=${androidNdkRoot}/platforms/android-21/arch-arm64 --arch=aarch64"
82
+  else
83
+    targetFlags="--cross-prefix=$compilerPrefix --sysroot=${androidNdkRoot}/platforms/android-15/arch-arm --arch=arm"
84
+  fi
85
+
86
+  configArguments="$configArguments --enable-cross-compile --target-os=linux $targetFlags"
87
   #configArguments="$configArguments --extra-cflags='-fno-builtin-sin -fno-builtin-sinf'"
88
+
89
+  configArguments="$configArguments --enable-jni --enable-mediacodec"
90
 fi
91
 
92
 # More options
93
@@ -169,31 +203,37 @@
94
   #configArguments="$configArguments --enable-postproc"
95
 fi
96
 
97
+# redirect error state from tee
98
+set -i pipefail
99
+
100
+aNbJobs="$(getconf _NPROCESSORS_ONLN)"
101
+
102
 echo
103
 echo "  ./configure $configArguments"
104
 echo
105
 if [ "$rebuildAndroid" == "true" ]; then
106
-  ./configure $configArguments --disable-symver --extra-cflags='-march=armv7-a -mfloat-abi=softfp -fno-builtin-sin -fno-builtin-sinf' >$OUTPUT_FOLDER/config.log 2>&1
107
+  if [ "$androidTarget" == "arm64" ]; then
108
+    ./configure $configArguments --disable-symver --extra-cflags='-march=armv8-a' 2>&1 | tee $OUTPUT_FOLDER/config.log
109
+  else
110
+    ./configure $configArguments --disable-symver --extra-cflags='-march=armv7-a -mfloat-abi=softfp -fno-builtin-sin -fno-builtin-sinf' 2>&1 | tee $OUTPUT_FOLDER/config.log
111
+  fi
112
 else
113
-  ./configure $configArguments >$OUTPUT_FOLDER/config.log 2>&1
114
+  ./configure $configArguments 2>&1 | tee -a $OUTPUT_FOLDER/config.log
115
 fi
116
+aResult=$?; if [[ $aResult != 0 ]]; then exit $aResult; fi
117
 
118
-
119
-cat $OUTPUT_FOLDER/config.log
120
-echo
121
-
122
-make -j8 2>$OUTPUT_FOLDER/make.log
123
-cat $OUTPUT_FOLDER/make.log | grep -i -w 'ошибка'
124
-echo
125
+make -j $aNbJobs 2>&1 | tee -a $OUTPUT_FOLDER/make.log
126
+aResult=$?; if [[ $aResult != 0 ]]; then exit $aResult; fi
127
 
128
 # Now copy result files
129
+echo
130
 echo "  Now copy result files into $OUTPUT_FOLDER"
131
 
132
 "$compilerPrefix"gcc --version > $OUTPUT_FOLDER/gccInfo.log
133
 
134
 if [ -f libavcodec/avcodec.dll ]; then
135
-  cp -f libavcodec/*.dll $OUTPUT_FOLDER
136
-  cp -f libavcodec/*.lib $OUTPUT_FOLDER &>/dev/null
137
+  cp -f libavcodec/*.dll $OUTPUT_FOLDER_BIN
138
+  cp -f libavcodec/*.lib $OUTPUT_FOLDER_LIB &>/dev/null
139
 elif [ -f libavcodec/libavcodec.dylib ]; then
140
   cp -f -p -R libavcodec/*.dylib* $OUTPUT_FOLDER_LIB
141
 else
142
@@ -201,8 +241,8 @@
143
 fi
144
 
145
 if [ -f libavdevice/avdevice.dll ]; then
146
-  cp -f libavdevice/*.dll $OUTPUT_FOLDER
147
-  cp -f libavdevice/*.lib $OUTPUT_FOLDER &>/dev/null
148
+  cp -f libavdevice/*.dll $OUTPUT_FOLDER_BIN
149
+  cp -f libavdevice/*.lib $OUTPUT_FOLDER_LIB &>/dev/null
150
 elif [ -f libavdevice/libavdevice.dylib ]; then
151
   cp -f -p -R libavdevice/*.dylib* $OUTPUT_FOLDER_LIB
152
 else
153
@@ -210,8 +250,8 @@
154
 fi
155
 
156
 if [ -f libavfilter/avfilter.dll ]; then
157
-  cp -f libavfilter/*.dll $OUTPUT_FOLDER
158
-  cp -f libavfilter/*.lib $OUTPUT_FOLDER &>/dev/null
159
+  cp -f libavfilter/*.dll $OUTPUT_FOLDER_BIN
160
+  cp -f libavfilter/*.lib $OUTPUT_FOLDER_LIB &>/dev/null
161
 elif [ -f libavfilter/libavfilter.dylib ]; then
162
   cp -f -p -R libavfilter/*.dylib* $OUTPUT_FOLDER_LIB
163
 else
164
@@ -219,8 +259,8 @@
165
 fi
166
 
167
 if [ -f libavformat/avformat.dll ]; then
168
-  cp -f libavformat/*.dll $OUTPUT_FOLDER
169
-  cp -f libavformat/*.lib $OUTPUT_FOLDER &>/dev/null
170
+  cp -f libavformat/*.dll $OUTPUT_FOLDER_BIN
171
+  cp -f libavformat/*.lib $OUTPUT_FOLDER_LIB &>/dev/null
172
 elif [ -f libavformat/libavformat.dylib ]; then
173
   cp -f -p -R libavformat/*.dylib* $OUTPUT_FOLDER_LIB
174
 else
175
@@ -228,8 +268,8 @@
176
 fi
177
 
178
 if [ -f libavutil/avutil.dll ]; then
179
-  cp -f libavutil/*.dll $OUTPUT_FOLDER
180
-  cp -f libavutil/*.lib $OUTPUT_FOLDER &>/dev/null
181
+  cp -f libavutil/*.dll $OUTPUT_FOLDER_BIN
182
+  cp -f libavutil/*.lib $OUTPUT_FOLDER_LIB &>/dev/null
183
 elif [ -f libavutil/libavutil.dylib ]; then
184
   cp -f -p -R libavutil/*.dylib* $OUTPUT_FOLDER_LIB
185
 else
186
@@ -237,8 +277,8 @@
187
 fi
188
 
189
 if [ -f libswscale/swscale.dll ]; then
190
-  cp -f libswscale/*.dll $OUTPUT_FOLDER
191
-  cp -f libswscale/*.lib $OUTPUT_FOLDER &>/dev/null
192
+  cp -f libswscale/*.dll $OUTPUT_FOLDER_BIN
193
+  cp -f libswscale/*.lib $OUTPUT_FOLDER_LIB &>/dev/null
194
 elif [ -f libswscale/libswscale.dylib ]; then
195
   cp -f -p -R libswscale/*.dylib* $OUTPUT_FOLDER_LIB
196
 else
197
@@ -246,15 +286,15 @@
198
 fi
199
 
200
 if [ -f libswresample/swresample.dll ]; then
201
-  cp -f libswresample/*.dll $OUTPUT_FOLDER
202
-  cp -f libswresample/*.lib $OUTPUT_FOLDER &>/dev/null
203
+  cp -f libswresample/*.dll $OUTPUT_FOLDER_BIN
204
+  cp -f libswresample/*.lib $OUTPUT_FOLDER_LIB &>/dev/null
205
 elif [ -f libswresample/libswresample.dylib ]; then
206
   cp -f -p -R libswresample/*.dylib* $OUTPUT_FOLDER_LIB
207
 else
208
   cp -f -d libswresample/*.so* $OUTPUT_FOLDER_LIB
209
 fi
210
 
211
-cp -f *.exe      $OUTPUT_FOLDER &>/dev/null
212
+cp -f *.exe      $OUTPUT_FOLDER_BIN &>/dev/null
213
 cp -f ffmpeg     $OUTPUT_FOLDER_BIN &>/dev/null
214
 cp -f ffmpeg_g   $OUTPUT_FOLDER_BIN &>/dev/null
215
 cp -f ffprobe    $OUTPUT_FOLDER_BIN &>/dev/null
216
@@ -272,7 +312,7 @@
217
 cp -f libswresample/*.h $OUTPUT_FOLDER_INC/libswresample &>/dev/null
218
 
219
 # remove duplicates (only Windows)
220
-rm $OUTPUT_FOLDER/avcodec.dll $OUTPUT_FOLDER/swresample.dll $OUTPUT_FOLDER/avdevice.dll $OUTPUT_FOLDER/avfilter.dll $OUTPUT_FOLDER/avformat.dll $OUTPUT_FOLDER/avutil.dll $OUTPUT_FOLDER/swscale.dll &>/dev/null
221
+rm $OUTPUT_FOLDER_BIN/avcodec.dll $OUTPUT_FOLDER_BIN/swresample.dll $OUTPUT_FOLDER_BIN/avdevice.dll $OUTPUT_FOLDER_BIN/avfilter.dll $OUTPUT_FOLDER_BIN/avformat.dll $OUTPUT_FOLDER_BIN/avutil.dll $OUTPUT_FOLDER_BIN/swscale.dll &>/dev/null
222
 
223
 # create binaries archive
224
 if [ "$aSystem" == "Darwin" ]; then
225
sview-15_11.tar.gz/3rdparty/libconfig/rebuild.sh -> sview-16_06.tar.gz/3rdparty/libconfig/rebuild.sh Changed
11
 
1
@@ -8,6 +8,9 @@
2
 #wget http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
3
 #wget http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
4
 
5
+#$HOME/develop/android-ndk-r12b/build/tools/make-standalone-toolchain.sh --platform=android-15 --install-dir=$HOME/develop/android15-armv7a --ndk-dir=$HOME/develop/android-ndk-r12b --toolchain=arm-linux-androideabi-4.9
6
+#export PATH=$HOME/develop/android15-armv7a/bin:$PATH
7
+
8
 export CC=arm-linux-androideabi-gcc
9
 export CXX=arm-linux-androideabi-g++
10
 export "CFLAGS=-march=armv7-a -mfloat-abi=softfp"
11
sview-16_06.tar.gz/3rdparty/openal-soft Added
2
 
1
+(directory)
2
sview-16_06.tar.gz/3rdparty/openal-soft/openal-android.sh Added
64
 
1
@@ -0,0 +1,62 @@
2
+#!/bin/bash
3
+
4
+# go to the script directory
5
+anOpenAlSrc=${BASH_SOURCE%/*}
6
+if [ -d "$anOpenAlSrc" ]; then cd "$anOpenAlSrc"; fi
7
+anOpenAlSrc="$PWD"
8
+
9
+#$HOME/develop/android-ndk-r12b/build/tools/make-standalone-toolchain.sh --platform=android-15 --install-dir=$HOME/develop/android15-armv7a --ndk-dir=$HOME/develop/android-ndk-r12b --toolchain=arm-linux-androideabi-4.9
10
+
11
+aToolchain=$HOME/develop/android-cmake/android.toolchain.cmake
12
+
13
+anApi="15"
14
+anAbi="armeabi-v7a"
15
+aPlatformAndCompiler=android-$anAbi
16
+aWorkDir=build/${aPlatformAndCompiler}-make
17
+aLogFile=$anOpenAlSrc/build-${aPlatformAndCompiler}.log
18
+
19
+aNbJobs=1
20
+
21
+mkdir -p $aWorkDir
22
+rm    -f $aLogFile
23
+
24
+pushd $aWorkDir
25
+
26
+set -o pipefail
27
+
28
+echo Configuring OpenAL-soft for Android...
29
+cmake -G "Unix Makefiles" \
30
+ -D CMAKE_TOOLCHAIN_FILE:FILEPATH="$aToolchain" \
31
+ -D ANDROID_STANDALONE_TOOLCHAIN:FILEPATH="$HOME/develop/android15-armv7a" \
32
+ -D CMAKE_BUILD_TYPE:STRING="Release" \
33
+ -D BUILD_LIBRARY_TYPE:STRING="Shared" \
34
+ -D ALSOFT_BACKEND_OPENSL:BOOL="ON" \
35
+ -D ALSOFT_REQUIRE_OPENSL:BOOL="ON" \
36
+ -D ALSOFT_BACKEND_WAVE:BOOL="OFF" \
37
+ -D ALSOFT_EXAMPLES:BOOL="OFF" \
38
+ -D ALSOFT_TESTS:BOOL="OFF" \
39
+ -D ALSOFT_UTILS:BOOL="OFF" \
40
+ -D ALSOFT_NO_CONFIG_UTIL:BOOL="ON" \
41
+ -D ANDROID_ABI:STRING="$anAbi" \
42
+ -D ANDROID_NATIVE_API_LEVEL:STRING="$anApi" \
43
+ -D ANDROID_STL:STRING="gnustl_shared" \
44
+ -D CMAKE_INSTALL_PREFIX:PATH="$anOpenAlSrc/build/$aPlatformAndCompiler" \
45
+ "$anOpenAlSrc" | tee -a $aLogFile
46
+
47
+#-D ANDROID_NDK:FILEPATH="$HOME/develop/android-ndk-r12b"
48
+
49
+aResult=$?; if [[ $aResult != 0 ]]; then exit $aResult; fi
50
+
51
+# make clean build
52
+make clean
53
+
54
+echo Building OpenAL-soft...
55
+make -j $aNbJobs | tee -a $aLogFile
56
+aResult=$?; if [[ $aResult != 0 ]]; then exit $aResult; fi
57
+
58
+echo Installing OCCT into $anOpenAlSrc/work/$aPlatformAndCompiler...
59
+make install | tee -a $aLogFile
60
+
61
+#$HOME/develop/android-ndk-r12b/ndk-depends $anOpenAlSrc/build/$aPlatformAndCompiler/libopenal.so
62
+
63
+popd
64
sview-15_11.tar.gz/Makefile -> sview-16_06.tar.gz/Makefile Changed
725
 
1
@@ -1,24 +1,92 @@
2
 # Makefile for sView project
3
 
4
-WORKDIR = `pwd`
5
+WORKDIR = $(shell pwd)
6
+SRCDIR = $(WORKDIR)
7
+
8
+$(info SRCDIR=$(SRCDIR))
9
 
10
 LBITS := $(shell getconf LONG_BIT)
11
-#WITH_OCCT := yes
12
 HAVE_MONGOOSE := -DST_HAVE_MONGOOSE
13
 
14
+# The following lines are required because standard make does not recognize the Objective-C++ .mm suffix
15
+.SUFFIXES: .o .mm
16
+.mm.o:
17
+   $(CXX) -c $(CXXFLAGS) $< -o $@
18
+
19
+TARGET_OS = linux
20
+
21
 #ANDROID_NDK = /home/kirill/develop/android-ndk-r10
22
+ifeq ($(OS),Windows_NT)
23
+TARGET_OS = wnt
24
+else
25
+UNAME_S := $(shell uname -s)
26
+ifeq ($(UNAME_S),Linux)
27
+TARGET_OS = linux
28
+endif
29
+ifeq ($(UNAME_S),Darwin)
30
+TARGET_OS = osx
31
+endif
32
+endif
33
+
34
+ifdef ANDROID_NDK
35
+TARGET_OS = android
36
+endif
37
+
38
+BUILD_ROOT_BUNDLE = build
39
 BUILD_ROOT = build
40
+USR_LIB = lib
41
+ifeq ($(TARGET_OS),osx)
42
+BUILD_ROOT_BUNDLE = build/sView.app
43
+BUILD_ROOT = $(BUILD_ROOT_BUNDLE)/Contents/MacOS
44
+endif
45
+
46
+# folder containing OCCT resources ($CASROOT/src)
47
+OCCT_RES =
48
+FFMPEG_ROOT =
49
+FREETYPE_ROOT =
50
+OPENAL_ROOT =
51
+LIBCONFIG_ROOT =
52
+LIBSUBFOLDER = lib
53
+LIBSUFFIX = so
54
+
55
+# function defining library install_name to @executable_path on OS X
56
+libinstname =
57
+ifeq ($(TARGET_OS),osx)
58
+libinstname = -Wl,-install_name,@executable_path/$(1)
59
+endif
60
 
61
+LIB_PTHREAD =
62
+LIB_GLX =
63
+LIB_GTK =
64
+LIB_OCCT  = -lTKMeshVS -lTKXDESTEP -lTKSTEP -lTKSTEPAttr -lTKSTEP209 -lTKSTEPBase -lTKXDEIGES -lTKIGES -lTKXSBase -lTKOpenGl -lTKXCAF -lTKVCAF -lTKCAF -lTKV3d -lTKHLR -lTKMesh -lTKService -lTKOffset -lTKFillet -lTKShHealing
65
+LIB_OCCT += -lTKBool -lTKBO -lTKPrim -lTKTopAlgo -lTKGeomAlgo -lTKBRep -lTKGeomBase -lTKG3d -lTKG2d -lTKMath -lTKLCAF -lTKCDF -lTKernel
66
+LIB_XLIB =
67
+LIB_CONFIG =
68
+LIB_ANDROID =
69
+LIB_IOKIT =
70
+LIB_OPENAL = -lopenal
71
+LIB_OUTPUTS = -lStOutAnaglyph -lStOutDual -lStOutInterlace -lStOutPageFlip -lStOutIZ3D -lStOutDistorted
72
+TOOLCHAIN =
73
+
74
+# Linux libraries
75
+ifeq ($(TARGET_OS),linux)
76
 LIB_PTHREAD = -lpthread
77
 LIB_GLX = -lGL -lX11 -lXext
78
 LIB_GTK = `pkg-config gtk+-2.0 --libs` -lgthread-2.0 -ldl
79
-LIB_OCCT = -lTKBRep -lTKIGES -lTKSTEP -lTKSTEP209 -lTKSTEPAttr -lTKSTEPBase -lTKMesh -lTKMath -lTKG3d -lTKTopAlgo -lTKShHealing -lTKXSBase -lTKBO -lTKBool -lTKPrim -lTKGeomBase -lTKGeomAlgo -lTKG2d -lTKG3d -lTKernel
80
 LIB_XLIB = -lXrandr -lXpm
81
 LIB_CONFIG = -lconfig++
82
-LIB_ANDROID =
83
-LIB_OUTPUTS = -lStOutAnaglyph -lStOutDual -lStOutInterlace -lStOutPageFlip -lStOutIZ3D -lStOutDistorted
84
+endif
85
 
86
-TOOLCHAIN =
87
+# OS X libraries
88
+ifeq ($(TARGET_OS),osx)
89
+LIBSUFFIX = dylib
90
+LIB_PTHREAD = -lobjc
91
+LIB_GLX = -framework OpenGL -framework Appkit
92
+LIB_IOKIT = -framework IOKit
93
+LIB_OPENAL = -framework OpenAL
94
+endif
95
+
96
+# Android libraries
97
 ifdef ANDROID_NDK
98
 TOOLCHAIN = $(ANDROID_NDK)/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64/arm-linux-androideabi/bin/
99
 HAVE_MONGOOSE =
100
@@ -26,6 +94,7 @@
101
 LIB_GLX = -lEGL -lGLESv2
102
 LIB_GTK = -llog
103
 LIB_XLIB =
104
+LIB_CONFIG = -lconfig++
105
 LIB_ANDROID = -landroid
106
 LIB_OUTPUTS = -lStOutAnaglyph -lStOutInterlace -lStOutDistorted
107
 endif
108
@@ -35,56 +104,101 @@
109
 AR  = $(TOOLCHAIN)ar
110
 LD  = $(TOOLCHAIN)g++
111
 
112
-LDSTRIP = -s -z defs
113
+LDSTRIP = -s
114
+LDZDEF = -z defs
115
 EXTRA_CFLAGS   =
116
 EXTRA_CXXFLAGS =
117
 EXTRA_LDFLAGS  =
118
+ifeq ($(TARGET_OS),osx)
119
+LDZDEF =
120
+endif
121
 
122
 # to activate debug build
123
 #EXTRA_CXXFLAGS = -DST_DEBUG_LOG_TO_FILE=\"/sdcard/Android/data/com.sview/files/sview.log\" -DST_DEBUG
124
+#EXTRA_CXXFLAGS += -DST_DEBUG_FFMPEG_VERBOSE
125
+#EXTRA_CXXFLAGS += -DST_DEBUG_SYSLOG
126
+#EXTRA_CXXFLAGS += -DST_DEBUG_THREADID
127
 #LDSTRIP =
128
 
129
 ifdef ANDROID_NDK
130
+ANDROID_EABI = armeabi-v7a
131
+LIBSUBFOLDER = libs/$(ANDROID_EABI)
132
 EXTRA_CFLAGS   += --sysroot=$(ANDROID_NDK)/platforms/android-15/arch-arm -march=armv7-a -mfloat-abi=softfp
133
-EXTRA_CXXFLAGS += --sysroot=$(ANDROID_NDK)/platforms/android-15/arch-arm -march=armv7-a -mfloat-abi=softfp -I$(ANDROID_NDK)/sources/cxx-stl/gnu-libstdc++/4.8/include -I$(ANDROID_NDK)/sources/cxx-stl/gnu-libstdc++/4.8/libs/armeabi-v7a/include -DST_HAVE_EGL -DST_NO_UPDATES_CHECK
134
-EXTRA_LDFLAGS  += --sysroot=$(ANDROID_NDK)/platforms/android-15/arch-arm -L$(ANDROID_NDK)/sources/cxx-stl/gnu-libstdc++/4.8/libs/armeabi-v7a -lstdc++ -lgnustl_shared
135
+EXTRA_CXXFLAGS += --sysroot=$(ANDROID_NDK)/platforms/android-15/arch-arm -march=armv7-a -mfloat-abi=softfp -I$(ANDROID_NDK)/sources/cxx-stl/gnu-libstdc++/4.8/include -I$(ANDROID_NDK)/sources/cxx-stl/gnu-libstdc++/4.8/libs/$(ANDROID_EABI)/include -DST_HAVE_EGL -DST_NO_UPDATES_CHECK
136
+EXTRA_LDFLAGS  += --sysroot=$(ANDROID_NDK)/platforms/android-15/arch-arm -L$(ANDROID_NDK)/sources/cxx-stl/gnu-libstdc++/4.8/libs/$(ANDROID_EABI) -lstdc++ -lgnustl_shared
137
 else
138
 EXTRA_CFLAGS   += -mmmx -msse
139
-EXTRA_CXXFLAGS += -mmmx -msse `pkg-config gtk+-2.0 --cflags`
140
+EXTRA_CXXFLAGS += -mmmx -msse
141
+endif
142
+
143
+ifeq ($(TARGET_OS),osx)
144
+# todo
145
+LDSTRIP =
146
+
147
+# workaround homebrew
148
+HAS_PKGCONF := $(shell command -v pkg-config 2> /dev/null)
149
+ifdef HAS_PKGCONF
150
+EXTRA_CXXFLAGS += $(shell pkg-config --silence-errors freetype2 --cflags)
151
 endif
152
 
153
-INC =  -I3rdparty/include -Iinclude
154
+endif
155
+
156
+ifneq ($(FREETYPE_ROOT),)
157
+EXTRA_CXXFLAGS += -I$(FREETYPE_ROOT)/include
158
+EXTRA_LDFLAGS  += -L$(FREETYPE_ROOT)/$(LIBSUBFOLDER)
159
+endif
160
+
161
+ifneq ($(FFMPEG_ROOT),)
162
+EXTRA_CXXFLAGS += -I$(FFMPEG_ROOT)/include
163
+EXTRA_LDFLAGS  += -L$(FFMPEG_ROOT)/$(LIBSUBFOLDER)
164
+endif
165
+
166
+ifneq ($(OPENAL_ROOT),)
167
+EXTRA_CXXFLAGS += -I$(OPENAL_ROOT)/include
168
+EXTRA_LDFLAGS  += -L$(OPENAL_ROOT)/$(LIBSUBFOLDER)
169
+endif
170
+
171
+ifneq ($(LIBCONFIG_ROOT),)
172
+EXTRA_CXXFLAGS += -I$(LIBCONFIG_ROOT)/include
173
+EXTRA_LDFLAGS  += -L$(LIBCONFIG_ROOT)/$(LIBSUBFOLDER)
174
+endif
175
+
176
+ifeq ($(TARGET_OS),linux)
177
+EXTRA_CXXFLAGS += `pkg-config gtk+-2.0 --cflags`
178
+endif
179
+
180
+INC =  -I$(SRCDIR)/3rdparty/include -I$(SRCDIR)/include
181
 CFLAGS   = -fPIC $(HAVE_MONGOOSE) $(INC) $(EXTRA_CFLAGS)
182
 CXXFLAGS = -O3 -std=c++0x -Wall -fPIC $(HAVE_MONGOOSE) $(INC) $(EXTRA_CXXFLAGS)
183
-ifdef WITH_OCCT
184
-CXXFLAGS += -DST_HAVE_OCCT
185
-endif
186
 LIBDIR = -L$(BUILD_ROOT)
187
 LIB =
188
-LDFLAGS = $(LDSTRIP) -z defs $(EXTRA_LDFLAGS)
189
-BUILD_ROOT = build
190
-USR_LIB = lib
191
-
192
-aStShared       := libStShared.so
193
-aStGLWidgets    := libStGLWidgets.so
194
-aStCore         := libStCore.so
195
-aStOutAnaglyph  := libStOutAnaglyph.so
196
-aStOutDual      := libStOutDual.so
197
-aStOutInterlace := libStOutInterlace.so
198
-aStOutPageFlip  := libStOutPageFlip.so
199
-aStOutIZ3D      := libStOutIZ3D.so
200
-aStOutDistorted := libStOutDistorted.so
201
-aStImageViewer  := libStImageViewer.so
202
-aStMoviePlayer  := libStMoviePlayer.so
203
-aStDiagnostics  := libStDiagnostics.so
204
-aStCADViewer    := libStCADViewer.so
205
+LDFLAGS = $(LDSTRIP) $(LDZDEF) $(EXTRA_LDFLAGS)
206
+
207
+aStShared       := libStShared.$(LIBSUFFIX)
208
+aStGLWidgets    := libStGLWidgets.$(LIBSUFFIX)
209
+aStCore         := libStCore.$(LIBSUFFIX)
210
+aStOutAnaglyph  := libStOutAnaglyph.$(LIBSUFFIX)
211
+aStOutDual      := libStOutDual.$(LIBSUFFIX)
212
+aStOutInterlace := libStOutInterlace.$(LIBSUFFIX)
213
+aStOutPageFlip  := libStOutPageFlip.$(LIBSUFFIX)
214
+aStOutIZ3D      := libStOutIZ3D.$(LIBSUFFIX)
215
+aStOutDistorted := libStOutDistorted.$(LIBSUFFIX)
216
+aStImageViewer  := libStImageViewer.$(LIBSUFFIX)
217
+aStMoviePlayer  := libStMoviePlayer.$(LIBSUFFIX)
218
+aStDiagnostics  := libStDiagnostics.$(LIBSUFFIX)
219
+aStCADViewer    := libStCADViewer.$(LIBSUFFIX)
220
+sViewAndroidCad := libsviewcad.$(LIBSUFFIX)
221
 sView           := sView
222
-sViewAndroid    := libsview.so
223
+sViewAndroid    := libsview.$(LIBSUFFIX)
224
+
225
+aDestAndroid    := sview
226
 
227
-all:       pre_all $(aStShared) $(aStGLWidgets) $(aStCore) $(aStOutAnaglyph) $(aStOutDual) $(aStOutInterlace) $(aStOutPageFlip) $(aStOutIZ3D) $(aStOutDistorted) $(aStImageViewer) $(aStMoviePlayer) $(aStDiagnostics) $(aStCADViewer) $(sView)
228
-android:   pre_all $(aStShared) $(aStGLWidgets) $(aStCore) $(aStOutAnaglyph) $(aStOutInterlace) $(aStOutDistorted) $(aStImageViewer) $(aStMoviePlayer) $(sViewAndroid) install_android
229
-clean:     clean_StShared clean_StGLWidgets clean_StCore clean_sView clean_StOutAnaglyph clean_StOutDual clean_StOutInterlace clean_StOutPageFlip clean_StOutIZ3D clean_StOutDistorted clean_StImageViewer clean_StMoviePlayer clean_StDiagnostics clean_StCADViewer clean_sViewAndroid
230
-distclean: clean
231
+all:         pre_all $(aStShared) $(aStGLWidgets) $(aStCore) $(aStOutAnaglyph) $(aStOutDual) $(aStOutInterlace) $(aStOutPageFlip) $(aStOutIZ3D) $(aStOutDistorted) $(aStImageViewer) $(aStMoviePlayer) $(aStDiagnostics) $(sView)
232
+android_cad: aDestAndroid = StCADViewer
233
+android_cad: pre_all $(aStShared) $(aStGLWidgets) $(aStCore) $(aStOutAnaglyph) $(aStOutInterlace) $(aStOutDistorted) $(aStImageViewer) $(aStMoviePlayer) $(sViewAndroidCad) install_android install_android_cad_libs
234
+android:     pre_all $(aStShared) $(aStGLWidgets) $(aStCore) $(aStOutAnaglyph) $(aStOutInterlace) $(aStOutDistorted) $(aStImageViewer) $(aStMoviePlayer) $(sViewAndroid)    install_android install_android_libs
235
+clean:       clean_StShared clean_StGLWidgets clean_StCore clean_sView clean_StOutAnaglyph clean_StOutDual clean_StOutInterlace clean_StOutPageFlip clean_StOutIZ3D clean_StOutDistorted clean_StImageViewer clean_StMoviePlayer clean_StDiagnostics clean_StCADViewer clean_sViewAndroid
236
+distclean:   clean
237
 
238
 ifdef ANDROID_NDK
239
 outputs_all: $(aStOutAnaglyph) $(aStOutInterlace) $(aStOutDistorted)
240
@@ -109,38 +223,84 @@
241
    cp -f -r $(BUILD_ROOT)/textures/*    $(DESTDIR)/usr/share/sView/textures/
242
    cp -f -r $(BUILD_ROOT)/web/*         $(DESTDIR)/usr/share/sView/web/
243
    cp -f    license-gpl-3.0.txt         $(DESTDIR)/usr/share/sView/info/license.txt
244
-   cp -f -r $(BUILD_ROOT)/*.so          $(DESTDIR)/usr/$(USR_LIB)/
245
+   cp -f -r $(BUILD_ROOT)/*.$(LIBSUFFIX) $(DESTDIR)/usr/$(USR_LIB)/
246
    cp -f    $(BUILD_ROOT)/sView         $(DESTDIR)/usr/$(USR_LIB)/sView/sView
247
    ln --force --symbolic ../$(USR_LIB)/sView/sView       $(DESTDIR)/usr/bin/sView
248
    ln --force --symbolic ../../share/sView/demo/demo.jps $(DESTDIR)/usr/$(USR_LIB)/sView/demo.jps
249
    rm -f    $(DESTDIR)/usr/$(USR_LIB)/sView/*.a
250
 
251
 install_android:
252
-   mkdir -p sview/assets/info
253
-   mkdir -p sview/assets/lang/German
254
-   mkdir -p sview/assets/lang/French
255
-   mkdir -p sview/assets/lang/English
256
-   mkdir -p sview/assets/lang/Russian
257
-   mkdir -p sview/assets/lang/Czech
258
-   mkdir -p sview/assets/shaders
259
-   mkdir -p sview/assets/textures
260
-   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStShared)       sview/libs/armeabi-v7a/$(aStShared)
261
-   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStGLWidgets)    sview/libs/armeabi-v7a/$(aStGLWidgets)
262
-   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStCore)         sview/libs/armeabi-v7a/$(aStCore)
263
-   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStOutAnaglyph)  sview/libs/armeabi-v7a/$(aStOutAnaglyph)
264
-   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStOutInterlace) sview/libs/armeabi-v7a/$(aStOutInterlace)
265
-   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStOutDistorted) sview/libs/armeabi-v7a/$(aStOutDistorted)
266
-   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStImageViewer)  sview/libs/armeabi-v7a/$(aStImageViewer)
267
-   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStMoviePlayer)  sview/libs/armeabi-v7a/$(aStMoviePlayer)
268
-   ln --force --symbolic ../../../$(BUILD_ROOT)/$(sViewAndroid)    sview/libs/armeabi-v7a/$(sViewAndroid)
269
-   cp -f -r $(BUILD_ROOT)/lang/Deutsch/*  sview/assets/lang/German/
270
-   cp -f -r $(BUILD_ROOT)/lang/français/* sview/assets/lang/French/
271
-   cp -f -r $(BUILD_ROOT)/lang/English/*  sview/assets/lang/English/
272
-   cp -f -r $(BUILD_ROOT)/lang/русский/*  sview/assets/lang/Russian/
273
-   cp -f -r $(BUILD_ROOT)/lang/Czech/*    sview/assets/lang/Czech/
274
-   cp -f -r $(BUILD_ROOT)/shaders/*       sview/assets/shaders/
275
-   cp -f -r $(BUILD_ROOT)/textures/*      sview/assets/textures/
276
-   cp -f    license-gpl-3.0.txt           sview/assets/info/license.txt
277
+   mkdir -p $(aDestAndroid)/assets/info
278
+   mkdir -p $(aDestAndroid)/assets/lang/German
279
+   mkdir -p $(aDestAndroid)/assets/lang/French
280
+   mkdir -p $(aDestAndroid)/assets/lang/English
281
+   mkdir -p $(aDestAndroid)/assets/lang/Russian
282
+   mkdir -p $(aDestAndroid)/assets/lang/Czech
283
+   mkdir -p $(aDestAndroid)/assets/lang/ChineseS
284
+   mkdir -p $(aDestAndroid)/assets/lang/Korean
285
+   mkdir -p $(aDestAndroid)/assets/shaders
286
+   mkdir -p $(aDestAndroid)/assets/textures
287
+   cp -f -r $(BUILD_ROOT)/lang/Deutsch/*  $(aDestAndroid)/assets/lang/German/
288
+   cp -f -r $(BUILD_ROOT)/lang/français/* $(aDestAndroid)/assets/lang/French/
289
+   cp -f -r $(BUILD_ROOT)/lang/English/*  $(aDestAndroid)/assets/lang/English/
290
+   cp -f -r $(BUILD_ROOT)/lang/русский/*  $(aDestAndroid)/assets/lang/Russian/
291
+   cp -f -r $(BUILD_ROOT)/lang/Czech/*    $(aDestAndroid)/assets/lang/Czech/
292
+   cp -f -r $(BUILD_ROOT)/lang/ChineseS/* $(aDestAndroid)/assets/lang/ChineseS/
293
+   cp -f -r $(BUILD_ROOT)/lang/Korean/*   $(aDestAndroid)/assets/lang/Korean/
294
+   cp -f -r $(BUILD_ROOT)/shaders/*       $(aDestAndroid)/assets/shaders/
295
+   cp -f -r $(BUILD_ROOT)/textures/*      $(aDestAndroid)/assets/textures/
296
+   cp -f    license-gpl-3.0.txt           $(aDestAndroid)/assets/info/license.txt
297
+
298
+install_android_libs:
299
+   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStShared)       $(aDestAndroid)/libs/$(ANDROID_EABI)/$(aStShared)
300
+   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStGLWidgets)    $(aDestAndroid)/libs/$(ANDROID_EABI)/$(aStGLWidgets)
301
+   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStCore)         $(aDestAndroid)/libs/$(ANDROID_EABI)/$(aStCore)
302
+   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStOutAnaglyph)  $(aDestAndroid)/libs/$(ANDROID_EABI)/$(aStOutAnaglyph)
303
+   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStOutInterlace) $(aDestAndroid)/libs/$(ANDROID_EABI)/$(aStOutInterlace)
304
+   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStOutDistorted) $(aDestAndroid)/libs/$(ANDROID_EABI)/$(aStOutDistorted)
305
+   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStImageViewer)  $(aDestAndroid)/libs/$(ANDROID_EABI)/$(aStImageViewer)
306
+   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStMoviePlayer)  $(aDestAndroid)/libs/$(ANDROID_EABI)/$(aStMoviePlayer)
307
+   ln --force --symbolic ../../../$(BUILD_ROOT)/$(sViewAndroid)    $(aDestAndroid)/libs/$(ANDROID_EABI)/$(sViewAndroid)
308
+   cp -f $(FREETYPE_ROOT)/libs/$(ANDROID_EABI)/libfreetype.so      $(aDestAndroid)/libs/$(ANDROID_EABI)/
309
+   cp -f $(OPENAL_ROOT)/libs/$(ANDROID_EABI)/libopenal.so          $(aDestAndroid)/libs/$(ANDROID_EABI)/
310
+   cp -f $(FFMPEG_ROOT)/libs/$(ANDROID_EABI)/libavcodec-*.so       $(aDestAndroid)/libs/$(ANDROID_EABI)/
311
+   cp -f $(FFMPEG_ROOT)/libs/$(ANDROID_EABI)/libavdevice-*.so      $(aDestAndroid)/libs/$(ANDROID_EABI)/
312
+   cp -f $(FFMPEG_ROOT)/libs/$(ANDROID_EABI)/libavformat-*.so      $(aDestAndroid)/libs/$(ANDROID_EABI)/
313
+   cp -f $(FFMPEG_ROOT)/libs/$(ANDROID_EABI)/libavutil-*.so        $(aDestAndroid)/libs/$(ANDROID_EABI)/
314
+   cp -f $(FFMPEG_ROOT)/libs/$(ANDROID_EABI)/libswresample-*.so    $(aDestAndroid)/libs/$(ANDROID_EABI)/
315
+   cp -f $(FFMPEG_ROOT)/libs/$(ANDROID_EABI)/libswscale-*.so       $(aDestAndroid)/libs/$(ANDROID_EABI)/
316
+
317
+install_android_cad_libs:
318
+   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStShared)       $(aDestAndroid)/libs/$(ANDROID_EABI)/$(aStShared)
319
+   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStGLWidgets)    $(aDestAndroid)/libs/$(ANDROID_EABI)/$(aStGLWidgets)
320
+   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStCore)         $(aDestAndroid)/libs/$(ANDROID_EABI)/$(aStCore)
321
+   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStOutAnaglyph)  $(aDestAndroid)/libs/$(ANDROID_EABI)/$(aStOutAnaglyph)
322
+   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStOutInterlace) $(aDestAndroid)/libs/$(ANDROID_EABI)/$(aStOutInterlace)
323
+   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStOutDistorted) $(aDestAndroid)/libs/$(ANDROID_EABI)/$(aStOutDistorted)
324
+   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStImageViewer)  $(aDestAndroid)/libs/$(ANDROID_EABI)/$(aStImageViewer)
325
+   ln --force --symbolic ../../../$(BUILD_ROOT)/$(aStMoviePlayer)  $(aDestAndroid)/libs/$(ANDROID_EABI)/$(aStMoviePlayer)
326
+   ln --force --symbolic ../../../$(BUILD_ROOT)/$(sViewAndroidCad) $(aDestAndroid)/libs/$(ANDROID_EABI)/$(sViewAndroid)
327
+   cp -f $(FREETYPE_ROOT)/libs/$(ANDROID_EABI)/libfreetype.so      $(aDestAndroid)/libs/$(ANDROID_EABI)/
328
+   cp -f $(OPENAL_ROOT)/libs/$(ANDROID_EABI)/libopenal.so          $(aDestAndroid)/libs/$(ANDROID_EABI)/
329
+   cp -f $(FFMPEG_ROOT)/libs/$(ANDROID_EABI)/libavcodec-*.so       $(aDestAndroid)/libs/$(ANDROID_EABI)/
330
+   cp -f $(FFMPEG_ROOT)/libs/$(ANDROID_EABI)/libavdevice-*.so      $(aDestAndroid)/libs/$(ANDROID_EABI)/
331
+   cp -f $(FFMPEG_ROOT)/libs/$(ANDROID_EABI)/libavformat-*.so      $(aDestAndroid)/libs/$(ANDROID_EABI)/
332
+   cp -f $(FFMPEG_ROOT)/libs/$(ANDROID_EABI)/libavutil-*.so        $(aDestAndroid)/libs/$(ANDROID_EABI)/
333
+   cp -f $(FFMPEG_ROOT)/libs/$(ANDROID_EABI)/libswresample-*.so    $(aDestAndroid)/libs/$(ANDROID_EABI)/
334
+   cp -f $(FFMPEG_ROOT)/libs/$(ANDROID_EABI)/libswscale-*.so       $(aDestAndroid)/libs/$(ANDROID_EABI)/
335
+   mkdir -p $(aDestAndroid)/assets/shaders
336
+   mkdir -p $(aDestAndroid)/assets/shaders/occt
337
+   mkdir -p $(aDestAndroid)/assets/res
338
+   mkdir -p $(aDestAndroid)/assets/lang
339
+   cp -f $(OCCT_RES)/Shaders/Declarations.glsl     $(aDestAndroid)/assets/shaders/occt/
340
+   cp -f $(OCCT_RES)/Shaders/DeclarationsImpl.glsl $(aDestAndroid)/assets/shaders/occt/
341
+   cp -f $(OCCT_RES)/UnitsAPI/Lexi_Expr.dat        $(aDestAndroid)/assets/res/
342
+   cp -f $(OCCT_RES)/UnitsAPI/Units.dat            $(aDestAndroid)/assets/res/
343
+   cp -f $(OCCT_RES)/SHMessage/*.*                 $(aDestAndroid)/assets/lang/
344
+   cp -f $(OCCT_RES)/XSMessage/*.*                 $(aDestAndroid)/assets/lang/
345
+   cp -f $(OCCT_RES)/TObj/*.msg                    $(aDestAndroid)/assets/lang/
346
+   cp -f $(OCCT_RES)/StdResource/*                 $(aDestAndroid)/assets/res/
347
+   cp -f $(OCCT_RES)/XSTEPResource/*               $(aDestAndroid)/assets/res/
348
 
349
 pre_all:
350
    mkdir -p $(BUILD_ROOT)/lang/English
351
@@ -148,27 +308,36 @@
352
    mkdir -p $(BUILD_ROOT)/lang/français
353
    mkdir -p $(BUILD_ROOT)/lang/Deutsch
354
    mkdir -p $(BUILD_ROOT)/lang/Czech
355
+   mkdir -p $(BUILD_ROOT)/lang/ChineseS
356
+   mkdir -p $(BUILD_ROOT)/lang/Korean
357
    mkdir -p $(BUILD_ROOT)/textures
358
    mkdir -p $(BUILD_ROOT)/web
359
-   mkdir -p sview/libs/armeabi-v7a
360
+   mkdir -p sview/libs/$(ANDROID_EABI)
361
+   mkdir -p StCADViewer/libs/$(ANDROID_EABI)
362
    cp -f -r textures/* $(BUILD_ROOT)/textures/
363
 
364
-# StShared static shared library
365
-aStShared_SRCS := $(wildcard StShared/*.cpp)
366
-aStShared_OBJS := ${aStShared_SRCS:.cpp=.o}
367
+# StShared shared library
368
+aStShared_SRCS1 := $(wildcard $(SRCDIR)/StShared/*.cpp)
369
+aStShared_OBJS1 := ${aStShared_SRCS1:.cpp=.o}
370
+aStShared_SRCS2 :=
371
+aStShared_OBJS2 :=
372
+ifeq ($(TARGET_OS),osx)
373
+aStShared_SRCS2 := $(wildcard $(SRCDIR)/StShared/*.mm)
374
+aStShared_OBJS2 := ${aStShared_SRCS2:.mm=.o}
375
+endif
376
 aStShared_LIB  := $(LIB) $(LIB_GLX) $(LIB_GTK) $(LIB_ANDROID) -lavutil -lavformat -lavcodec -lswscale -lfreetype $(LIB_CONFIG) $(LIB_PTHREAD)
377
-$(aStShared) : $(aStShared_OBJS)
378
-   $(LD) -shared $(LDFLAGS) $(LIBDIR) $(aStShared_OBJS) $(aStShared_LIB) -o $(BUILD_ROOT)/$(aStShared)
379
+$(aStShared) : $(aStShared_OBJS1) $(aStShared_OBJS2)
380
+   $(LD) -shared $(call libinstname,$@) $(LDFLAGS) $(LIBDIR) $(aStShared_OBJS1) $(aStShared_OBJS2) $(aStShared_LIB) -o $(BUILD_ROOT)/$@
381
 clean_StShared:
382
    rm -f $(BUILD_ROOT)/$(aStShared)
383
    rm -rf StShared/*.o
384
 
385
-# StGLWidgets static shared library
386
-aStGLWidgets_SRCS := $(wildcard StGLWidgets/*.cpp)
387
+# StGLWidgets shared library
388
+aStGLWidgets_SRCS := $(wildcard $(SRCDIR)/StGLWidgets/*.cpp)
389
 aStGLWidgets_OBJS := ${aStGLWidgets_SRCS:.cpp=.o}
390
 aStGLWidgets_LIB  := $(LIB) -lStShared $(LIB_GLX)
391
 $(aStGLWidgets) : pre_StGLWidgets $(aStShared) $(aStGLWidgets_OBJS)
392
-   $(LD) -shared $(LDFLAGS) $(LIBDIR) $(aStGLWidgets_OBJS) $(aStGLWidgets_LIB) -o $(BUILD_ROOT)/$(aStGLWidgets)
393
+   $(LD) -shared $(call libinstname,$@) $(LDFLAGS) $(LIBDIR) $(aStGLWidgets_OBJS) $(aStGLWidgets_LIB) -o $(BUILD_ROOT)/$@
394
 pre_StGLWidgets:
395
 
396
 clean_StGLWidgets:
397
@@ -176,21 +345,27 @@
398
    rm -rf StGLWidgets/*.o
399
 
400
 # StCore library
401
-aStCore_SRCS := $(wildcard StCore/*.cpp)
402
-aStCore_OBJS := ${aStCore_SRCS:.cpp=.o}
403
-aStCore_LIB  := $(LIB) -lStShared $(LIB_GLX) $(LIB_GTK) $(LIB_PTHREAD) $(LIB_XLIB) $(LIB_ANDROID)
404
-$(aStCore) : $(aStShared) $(aStCore_OBJS)
405
-   $(LD) -shared $(LDFLAGS) $(LIBDIR) $(aStCore_OBJS) $(aStCore_LIB) -o $(BUILD_ROOT)/$(aStCore)
406
+aStCore_SRCS1 := $(wildcard $(SRCDIR)/StCore/*.cpp)
407
+aStCore_OBJS1 := ${aStCore_SRCS1:.cpp=.o}
408
+aStCore_SRCS2 :=
409
+aStCore_OBJS2 :=
410
+ifeq ($(TARGET_OS),osx)
411
+aStCore_SRCS2 := $(wildcard $(SRCDIR)/StCore/*.mm)
412
+aStCore_OBJS2 := ${aStCore_SRCS2:.mm=.o}
413
+endif
414
+aStCore_LIB  := $(LIB) -lStShared $(LIB_GLX) $(LIB_GTK) $(LIB_PTHREAD) $(LIB_XLIB) $(LIB_ANDROID) $(LIB_IOKIT)
415
+$(aStCore) : $(aStShared) $(aStCore_OBJS1) $(aStCore_OBJS2)
416
+   $(LD) -shared $(call libinstname,$@) $(LDFLAGS) $(LIBDIR) $(aStCore_OBJS1) $(aStCore_OBJS2) $(aStCore_LIB) -o $(BUILD_ROOT)/$@
417
 clean_StCore:
418
    rm -f $(BUILD_ROOT)/$(aStCore)
419
    rm -rf StCore/*.o
420
 
421
 # StOutAnaglyph library (Anaglyph output)
422
-aStOutAnaglyph_SRCS := $(wildcard StOutAnaglyph/*.cpp)
423
+aStOutAnaglyph_SRCS := $(wildcard $(SRCDIR)/StOutAnaglyph/*.cpp)
424
 aStOutAnaglyph_OBJS := ${aStOutAnaglyph_SRCS:.cpp=.o}
425
 aStOutAnaglyph_LIB  := $(LIB) -lStShared -lStCore $(LIB_GLX) $(LIB_GTK) $(LIB_PTHREAD)
426
 $(aStOutAnaglyph) : pre_StOutAnaglyph $(aStCore) $(aStOutAnaglyph_OBJS)
427
-   $(LD) -shared $(LDFLAGS) $(LIBDIR) $(aStOutAnaglyph_OBJS) $(aStOutAnaglyph_LIB) -o $(BUILD_ROOT)/$(aStOutAnaglyph)
428
+   $(LD) -shared $(call libinstname,$@) $(LDFLAGS) $(LIBDIR) $(aStOutAnaglyph_OBJS) $(aStOutAnaglyph_LIB) -o $(BUILD_ROOT)/$@
429
 pre_StOutAnaglyph:
430
    mkdir -p $(BUILD_ROOT)/shaders/StOutAnaglyph/
431
    cp -f -r StOutAnaglyph/shaders/*      $(BUILD_ROOT)/shaders/StOutAnaglyph/
432
@@ -199,6 +374,8 @@
433
    cp -f -r StOutAnaglyph/lang/french/*  $(BUILD_ROOT)/lang/français/
434
    cp -f -r StOutAnaglyph/lang/german/*  $(BUILD_ROOT)/lang/Deutsch/
435
    cp -f -r StOutAnaglyph/lang/czech/*   $(BUILD_ROOT)/lang/Czech/
436
+   cp -f -r StOutAnaglyph/lang/chinese/* $(BUILD_ROOT)/lang/ChineseS/
437
+   cp -f -r StOutAnaglyph/lang/korean/*  $(BUILD_ROOT)/lang/Korean/
438
 clean_StOutAnaglyph:
439
    rm -f $(BUILD_ROOT)/$(aStOutAnaglyph)
440
    rm -rf StOutAnaglyph/*.o
441
@@ -206,28 +383,30 @@
442
    rm -rf $(BUILD_ROOT)/lang/*/StOutAnaglyph.lng
443
 
444
 # StOutDual library (Dual output)
445
-aStOutDual_SRCS := $(wildcard StOutDual/*.cpp)
446
+aStOutDual_SRCS := $(wildcard $(SRCDIR)/StOutDual/*.cpp)
447
 aStOutDual_OBJS := ${aStOutDual_SRCS:.cpp=.o}
448
 aStOutDual_LIB  := $(LIB) -lStShared -lStCore $(LIB_GLX) $(LIB_GTK) $(LIB_PTHREAD)
449
 $(aStOutDual) : pre_StOutDual $(aStCore) $(aStOutDual_OBJS)
450
-   $(LD) -shared $(LDFLAGS) $(LIBDIR) $(aStOutDual_OBJS) $(aStOutDual_LIB) -o $(BUILD_ROOT)/$(aStOutDual)
451
+   $(LD) -shared $(call libinstname,$@) $(LDFLAGS) $(LIBDIR) $(aStOutDual_OBJS) $(aStOutDual_LIB) -o $(BUILD_ROOT)/$@
452
 pre_StOutDual:
453
    cp -f -r StOutDual/lang/english/* $(BUILD_ROOT)/lang/English/
454
    cp -f -r StOutDual/lang/russian/* $(BUILD_ROOT)/lang/русский/
455
    cp -f -r StOutDual/lang/french/*  $(BUILD_ROOT)/lang/français/
456
    cp -f -r StOutDual/lang/german/*  $(BUILD_ROOT)/lang/Deutsch/
457
    cp -f -r StOutDual/lang/czech/*   $(BUILD_ROOT)/lang/Czech/
458
+   cp -f -r StOutDual/lang/chinese/* $(BUILD_ROOT)/lang/ChineseS/
459
+   cp -f -r StOutDual/lang/korean/*  $(BUILD_ROOT)/lang/Korean/
460
 clean_StOutDual:
461
    rm -f $(BUILD_ROOT)/$(aStOutDual)
462
    rm -rf StOutDual/*.o
463
    rm -rf $(BUILD_ROOT)/lang/*/StOutDual.lng
464
 
465
 # StOutIZ3D library (iZ3D monitor)
466
-aStOutIZ3D_SRCS := $(wildcard StOutIZ3D/*.cpp)
467
+aStOutIZ3D_SRCS := $(wildcard $(SRCDIR)/StOutIZ3D/*.cpp)
468
 aStOutIZ3D_OBJS := ${aStOutIZ3D_SRCS:.cpp=.o}
469
 aStOutIZ3D_LIB  := $(LIB) -lStShared -lStCore $(LIB_GLX) $(LIB_GTK) $(LIB_PTHREAD)
470
 $(aStOutIZ3D) : pre_StOutIZ3D $(aStCore) $(aStOutIZ3D_OBJS)
471
-   $(LD) -shared $(LDFLAGS) $(LIBDIR) $(aStOutIZ3D_OBJS) $(aStOutIZ3D_LIB) -o $(BUILD_ROOT)/$(aStOutIZ3D)
472
+   $(LD) -shared $(call libinstname,$@) $(LDFLAGS) $(LIBDIR) $(aStOutIZ3D_OBJS) $(aStOutIZ3D_LIB) -o $(BUILD_ROOT)/$@
473
 pre_StOutIZ3D:
474
    mkdir -p $(BUILD_ROOT)/shaders/StOutIZ3D/
475
    cp -f -r StOutIZ3D/shaders/*      $(BUILD_ROOT)/shaders/StOutIZ3D/
476
@@ -236,6 +415,8 @@
477
    cp -f -r StOutIZ3D/lang/french/*  $(BUILD_ROOT)/lang/français/
478
    cp -f -r StOutIZ3D/lang/german/*  $(BUILD_ROOT)/lang/Deutsch/
479
    cp -f -r StOutIZ3D/lang/czech/*   $(BUILD_ROOT)/lang/Czech/
480
+   cp -f -r StOutIZ3D/lang/chinese/* $(BUILD_ROOT)/lang/ChineseS/
481
+   cp -f -r StOutIZ3D/lang/korean/*  $(BUILD_ROOT)/lang/Korean/
482
 clean_StOutIZ3D:
483
    rm -f $(BUILD_ROOT)/$(aStOutIZ3D)
484
    rm -rf StOutIZ3D/*.o
485
@@ -243,11 +424,11 @@
486
    rm -rf $(BUILD_ROOT)/lang/*/StOutIZ3D.lng
487
 
488
 # StOutInterlace library (Interlaced output)
489
-aStOutInterlace_SRCS := $(wildcard StOutInterlace/*.cpp)
490
+aStOutInterlace_SRCS := $(wildcard $(SRCDIR)/StOutInterlace/*.cpp)
491
 aStOutInterlace_OBJS := ${aStOutInterlace_SRCS:.cpp=.o}
492
 aStOutInterlace_LIB  := $(LIB) -lStShared -lStCore $(LIB_GLX) $(LIB_GTK) $(LIB_PTHREAD)
493
 $(aStOutInterlace) : pre_StOutInterlace $(aStCore) $(aStOutInterlace_OBJS)
494
-   $(LD) -shared $(LDFLAGS) $(LIBDIR) $(aStOutInterlace_OBJS) $(aStOutInterlace_LIB) -o $(BUILD_ROOT)/$(aStOutInterlace)
495
+   $(LD) -shared $(call libinstname,$@) $(LDFLAGS) $(LIBDIR) $(aStOutInterlace_OBJS) $(aStOutInterlace_LIB) -o $(BUILD_ROOT)/$@
496
 pre_StOutInterlace:
497
    mkdir -p $(BUILD_ROOT)/shaders/StOutInterlace/
498
    cp -f -r StOutInterlace/shaders/*      $(BUILD_ROOT)/shaders/StOutInterlace/
499
@@ -256,6 +437,8 @@
500
    cp -f -r StOutInterlace/lang/french/*  $(BUILD_ROOT)/lang/français/
501
    cp -f -r StOutInterlace/lang/german/*  $(BUILD_ROOT)/lang/Deutsch/
502
    cp -f -r StOutInterlace/lang/czech/*   $(BUILD_ROOT)/lang/Czech/
503
+   cp -f -r StOutInterlace/lang/chinese/* $(BUILD_ROOT)/lang/ChineseS/
504
+   cp -f -r StOutInterlace/lang/korean/*  $(BUILD_ROOT)/lang/Korean/
505
 clean_StOutInterlace:
506
    rm -f $(BUILD_ROOT)/$(aStOutInterlace)
507
    rm -rf StOutInterlace/*.o
508
@@ -263,72 +446,86 @@
509
    rm -rf $(BUILD_ROOT)/lang/*/StOutInterlace.lng
510
 
511
 # StOutPageFlip library (Shutter glasses output)
512
-aStOutPageFlip_SRCS := $(wildcard StOutPageFlip/*.cpp)
513
-aStOutPageFlip_OBJS := ${aStOutPageFlip_SRCS:.cpp=.o}
514
+aStOutPageFlip_SRCS1 := $(wildcard $(SRCDIR)/StOutPageFlip/*.cpp)
515
+aStOutPageFlip_OBJS1 := ${aStOutPageFlip_SRCS1:.cpp=.o}
516
+aStOutPageFlip_SRCS2 :=
517
+aStOutPageFlip_OBJS2 :=
518
+ifeq ($(TARGET_OS),osx)
519
+aStOutPageFlip_SRCS2 := $(wildcard $(SRCDIR)/StOutPageFlip/*.mm)
520
+aStOutPageFlip_OBJS2 := ${aStOutPageFlip_SRCS2:.mm=.o}
521
+endif
522
 aStOutPageFlip_LIB  := $(LIB) -lStShared -lStCore $(LIB_GLX) $(LIB_GTK) $(LIB_PTHREAD)
523
-$(aStOutPageFlip) : pre_StOutPageFlip $(aStCore) $(aStOutPageFlip_OBJS)
524
-   $(LD) -shared $(LDFLAGS) $(LIBDIR) $(aStOutPageFlip_OBJS) $(aStOutPageFlip_LIB) -o $(BUILD_ROOT)/$(aStOutPageFlip)
525
+$(aStOutPageFlip) : pre_StOutPageFlip $(aStCore) $(aStOutPageFlip_OBJS1) $(aStOutPageFlip_OBJS2)
526
+   $(LD) -shared $(call libinstname,$@) $(LDFLAGS) $(LIBDIR) $(aStOutPageFlip_OBJS1) $(aStOutPageFlip_OBJS2) $(aStOutPageFlip_LIB) -o $(BUILD_ROOT)/$@
527
 pre_StOutPageFlip:
528
    cp -f -r StOutPageFlip/lang/english/* $(BUILD_ROOT)/lang/English/
529
    cp -f -r StOutPageFlip/lang/russian/* $(BUILD_ROOT)/lang/русский/
530
    cp -f -r StOutPageFlip/lang/french/*  $(BUILD_ROOT)/lang/français/
531
    cp -f -r StOutPageFlip/lang/german/*  $(BUILD_ROOT)/lang/Deutsch/
532
    cp -f -r StOutPageFlip/lang/czech/*   $(BUILD_ROOT)/lang/Czech/
533
+   cp -f -r StOutPageFlip/lang/chinese/* $(BUILD_ROOT)/lang/ChineseS/
534
+   cp -f -r StOutPageFlip/lang/korean/*  $(BUILD_ROOT)/lang/Korean/
535
 clean_StOutPageFlip:
536
    rm -f $(BUILD_ROOT)/$(aStOutPageFlip)
537
    rm -rf StOutPageFlip/*.o
538
    rm -rf $(BUILD_ROOT)/lang/*/StOutPageFlip.lng
539
 
540
 # StOutDistorted library
541
-aStOutDistorted_SRCS := $(wildcard StOutDistorted/*.cpp)
542
+aStOutDistorted_SRCS := $(wildcard $(SRCDIR)/StOutDistorted/*.cpp)
543
 aStOutDistorted_OBJS := ${aStOutDistorted_SRCS:.cpp=.o}
544
 aStOutDistorted_LIB  := $(LIB) -lStShared -lStCore $(LIB_GLX) $(LIB_GTK) $(LIB_PTHREAD)
545
 $(aStOutDistorted) : pre_StOutDistorted $(aStCore) $(aStOutDistorted_OBJS)
546
-   $(LD) -shared $(LDFLAGS) $(LIBDIR) $(aStOutDistorted_OBJS) $(aStOutDistorted_LIB) -o $(BUILD_ROOT)/$(aStOutDistorted)
547
+   $(LD) -shared $(call libinstname,$@) $(LDFLAGS) $(LIBDIR) $(aStOutDistorted_OBJS) $(aStOutDistorted_LIB) -o $(BUILD_ROOT)/$@
548
 pre_StOutDistorted:
549
    cp -f -r StOutDistorted/lang/english/* $(BUILD_ROOT)/lang/English/
550
    cp -f -r StOutDistorted/lang/russian/* $(BUILD_ROOT)/lang/русский/
551
    cp -f -r StOutDistorted/lang/french/*  $(BUILD_ROOT)/lang/français/
552
    cp -f -r StOutDistorted/lang/german/*  $(BUILD_ROOT)/lang/Deutsch/
553
    cp -f -r StOutDistorted/lang/czech/*   $(BUILD_ROOT)/lang/Czech/
554
+   cp -f -r StOutDistorted/lang/chinese/* $(BUILD_ROOT)/lang/ChineseS/
555
+   cp -f -r StOutDistorted/lang/korean/*  $(BUILD_ROOT)/lang/Korean/
556
 clean_StOutDistorted:
557
    rm -f $(BUILD_ROOT)/$(aStOutDistorted)
558
    rm -rf StOutDistorted/*.o
559
    rm -rf $(BUILD_ROOT)/lang/*/StOutDistorted.lng
560
 
561
 # StImageViewer library (Image Viewer)
562
-aStImageViewer_SRCS := $(wildcard StImageViewer/*.cpp)
563
+aStImageViewer_SRCS := $(wildcard $(SRCDIR)/StImageViewer/*.cpp)
564
 aStImageViewer_OBJS := ${aStImageViewer_SRCS:.cpp=.o}
565
 aStImageViewer_LIB  := $(LIB) -lStGLWidgets -lStShared -lStCore $(LIB_OUTPUTS) $(LIB_GLX) $(LIB_GTK) $(LIB_PTHREAD)
566
 $(aStImageViewer) : pre_StImageViewer $(aStGLWidgets) outputs_all $(aStImageViewer_OBJS)
567
-   $(LD) -shared $(LDFLAGS) $(LIBDIR) $(aStImageViewer_OBJS) $(aStImageViewer_LIB) -o $(BUILD_ROOT)/$(aStImageViewer)
568
+   $(LD) -shared $(call libinstname,$@) $(LDFLAGS) $(LIBDIR) $(aStImageViewer_OBJS) $(aStImageViewer_LIB) -o $(BUILD_ROOT)/$@
569
 pre_StImageViewer:
570
    cp -f -r StImageViewer/lang/english/* $(BUILD_ROOT)/lang/English/
571
    cp -f -r StImageViewer/lang/russian/* $(BUILD_ROOT)/lang/русский/
572
    cp -f -r StImageViewer/lang/french/*  $(BUILD_ROOT)/lang/français/
573
    cp -f -r StImageViewer/lang/german/*  $(BUILD_ROOT)/lang/Deutsch/
574
    cp -f -r StImageViewer/lang/czech/*   $(BUILD_ROOT)/lang/Czech/
575
+   cp -f -r StImageViewer/lang/chinese/* $(BUILD_ROOT)/lang/ChineseS/
576
+   cp -f -r StImageViewer/lang/korean/*  $(BUILD_ROOT)/lang/Korean/
577
 clean_StImageViewer:
578
    rm -f $(BUILD_ROOT)/$(aStImageViewer)
579
    rm -rf StImageViewer/*.o
580
    rm -rf $(BUILD_ROOT)/lang/*/StImageViewer.lng
581
 
582
 # StMoviePlayer library (Image Viewer)
583
-aStMoviePlayer_SRCS1 := $(wildcard StMoviePlayer/*.cpp)
584
+aStMoviePlayer_SRCS1 := $(wildcard $(SRCDIR)/StMoviePlayer/*.cpp)
585
 aStMoviePlayer_OBJS1 := ${aStMoviePlayer_SRCS1:.cpp=.o}
586
-aStMoviePlayer_SRCS2 := $(wildcard StMoviePlayer/StVideo/*.cpp)
587
+aStMoviePlayer_SRCS2 := $(wildcard $(SRCDIR)/StMoviePlayer/StVideo/*.cpp)
588
 aStMoviePlayer_OBJS2 := ${aStMoviePlayer_SRCS2:.cpp=.o}
589
-aStMoviePlayer_SRCS3 := $(wildcard StMoviePlayer/*.c)
590
+aStMoviePlayer_SRCS3 := $(wildcard $(SRCDIR)/StMoviePlayer/*.c)
591
 aStMoviePlayer_OBJS3 := ${aStMoviePlayer_SRCS3:.c=.o}
592
-aStMoviePlayer_LIB   := $(LIB) -lStGLWidgets -lStShared -lStCore $(LIB_OUTPUTS) $(LIB_GLX) $(LIB_GTK) -lavutil -lavformat -lavcodec -lswscale -lopenal $(LIB_PTHREAD)
593
+aStMoviePlayer_LIB   := $(LIB) -lStGLWidgets -lStShared -lStCore $(LIB_OUTPUTS) $(LIB_GLX) $(LIB_GTK) -lavutil -lavformat -lavcodec -lswscale $(LIB_OPENAL) $(LIB_PTHREAD)
594
 $(aStMoviePlayer) : pre_StMoviePlayer $(aStGLWidgets) outputs_all $(aStMoviePlayer_OBJS1) $(aStMoviePlayer_OBJS2) $(aStMoviePlayer_OBJS3)
595
-   $(LD) -shared $(LDFLAGS) $(LIBDIR) $(aStMoviePlayer_OBJS1) $(aStMoviePlayer_OBJS2) $(aStMoviePlayer_OBJS3) $(aStMoviePlayer_LIB) -o $(BUILD_ROOT)/$(aStMoviePlayer)
596
+   $(LD) -shared $(call libinstname,$@) $(LDFLAGS) $(LIBDIR) $(aStMoviePlayer_OBJS1) $(aStMoviePlayer_OBJS2) $(aStMoviePlayer_OBJS3) $(aStMoviePlayer_LIB) -o $(BUILD_ROOT)/$@
597
 pre_StMoviePlayer:
598
    cp -f -r StMoviePlayer/lang/english/* $(BUILD_ROOT)/lang/English/
599
    cp -f -r StMoviePlayer/lang/russian/* $(BUILD_ROOT)/lang/русский/
600
    cp -f -r StMoviePlayer/lang/french/*  $(BUILD_ROOT)/lang/français/
601
    cp -f -r StMoviePlayer/lang/german/*  $(BUILD_ROOT)/lang/Deutsch/
602
    cp -f -r StMoviePlayer/lang/czech/*   $(BUILD_ROOT)/lang/Czech/
603
+   cp -f -r StMoviePlayer/lang/chinese/* $(BUILD_ROOT)/lang/ChineseS/
604
+   cp -f -r StMoviePlayer/lang/korean/*  $(BUILD_ROOT)/lang/Korean/
605
    cp -f -r StMoviePlayer/web/*          $(BUILD_ROOT)/web/
606
 clean_StMoviePlayer:
607
    rm -f $(BUILD_ROOT)/$(aStMoviePlayer)
608
@@ -338,44 +535,57 @@
609
    rm -rf $(BUILD_ROOT)/web/*
610
 
611
 # StDiagnostics library
612
-aStDiagnostics_SRCS := $(wildcard StDiagnostics/*.cpp)
613
+aStDiagnostics_SRCS := $(wildcard $(SRCDIR)/StDiagnostics/*.cpp)
614
 aStDiagnostics_OBJS := ${aStDiagnostics_SRCS:.cpp=.o}
615
 aStDiagnostics_LIB  := $(LIB) -lStGLWidgets -lStShared -lStCore $(LIB_OUTPUTS) $(LIB_GLX) $(LIB_GTK) $(LIB_PTHREAD)
616
 $(aStDiagnostics) : pre_StDiagnostics $(aStGLWidgets) outputs_all $(aStDiagnostics_OBJS)
617
-   $(LD) -shared $(LDFLAGS) $(LIBDIR) $(aStDiagnostics_OBJS) $(aStDiagnostics_LIB) -o $(BUILD_ROOT)/$(aStDiagnostics)
618
+   $(LD) -shared $(call libinstname,$@) $(LDFLAGS) $(LIBDIR) $(aStDiagnostics_OBJS) $(aStDiagnostics_LIB) -o $(BUILD_ROOT)/$@
619
 pre_StDiagnostics:
620
    cp -f -r StDiagnostics/lang/english/* $(BUILD_ROOT)/lang/English/
621
    cp -f -r StDiagnostics/lang/russian/* $(BUILD_ROOT)/lang/русский/
622
    cp -f -r StDiagnostics/lang/french/*  $(BUILD_ROOT)/lang/français/
623
    cp -f -r StDiagnostics/lang/german/*  $(BUILD_ROOT)/lang/Deutsch/
624
    cp -f -r StDiagnostics/lang/czech/*   $(BUILD_ROOT)/lang/Czech/
625
+   cp -f -r StDiagnostics/lang/chinese/* $(BUILD_ROOT)/lang/ChineseS/
626
+   cp -f -r StDiagnostics/lang/korean/*  $(BUILD_ROOT)/lang/Korean/
627
 clean_StDiagnostics:
628
    rm -f $(BUILD_ROOT)/$(aStDiagnostics)
629
    rm -rf StDiagnostics/*.o
630
    rm -rf $(BUILD_ROOT)/lang/*/StDiagnostics.lng
631
 
632
+# sView CAD Android JNI executable
633
+sViewAndroidCad_SRCS := $(wildcard $(SRCDIR)/StCADViewer/*.cpp)
634
+sViewAndroidCad_OBJS := ${sViewAndroidCad_SRCS:.cpp=.o}
635
+sViewAndroidCad_LIB  := $(LIB) -lStGLWidgets -lStShared -lStCore $(LIB_OUTPUTS) $(LIB_OCCT) -lfreetype -llog -landroid -lEGL -lGLESv2 -lc
636
+$(sViewAndroidCad) : pre_StCADViewer $(aStGLWidgets) outputs_all $(sViewAndroidCad_OBJS)
637
+   $(LD) -shared $(LDFLAGS) $(LIBDIR) $(sViewAndroidCad_OBJS) $(sViewAndroidCad_LIB) -o $(BUILD_ROOT)/$(sViewAndroidCad)
638
+clean_sViewAndroidCad:
639
+   rm -f $(BUILD_ROOT)/$(sViewAndroidCad)
640
+   rm -rf StCADViewer/*.o
641
+   rm -rf $(BUILD_ROOT)/lang/*/StCADViewer.lng
642
+
643
 # StCADViewer library
644
-aStCADViewer_SRCS := $(wildcard StCADViewer/*.cpp)
645
+aStCADViewer_SRCS := $(wildcard $(SRCDIR)/StCADViewer/*.cpp)
646
 aStCADViewer_OBJS := ${aStCADViewer_SRCS:.cpp=.o}
647
 aStCADViewer_LIB  := $(LIB) -lStGLWidgets -lStShared -lStCore $(LIB_OUTPUTS) $(LIB_GLX) $(LIB_GTK) $(LIB_PTHREAD)
648
-ifdef WITH_OCCT
649
 aStCADViewer_LIB  += $(LIB_OCCT)
650
-endif
651
 $(aStCADViewer) : pre_StCADViewer $(aStGLWidgets) outputs_all $(aStCADViewer_OBJS)
652
-   $(LD) -shared $(LDFLAGS) $(LIBDIR) $(aStCADViewer_OBJS) $(aStCADViewer_LIB) -o $(BUILD_ROOT)/$(aStCADViewer)
653
+   $(LD) -shared $(call libinstname,$@) $(LDFLAGS) $(LIBDIR) $(aStCADViewer_OBJS) $(aStCADViewer_LIB) -o $(BUILD_ROOT)/$@
654
 pre_StCADViewer:
655
    cp -f -r StCADViewer/lang/english/* $(BUILD_ROOT)/lang/English/
656
    cp -f -r StCADViewer/lang/russian/* $(BUILD_ROOT)/lang/русский/
657
    cp -f -r StCADViewer/lang/french/*  $(BUILD_ROOT)/lang/français/
658
    cp -f -r StCADViewer/lang/german/*  $(BUILD_ROOT)/lang/Deutsch/
659
    cp -f -r StCADViewer/lang/czech/*   $(BUILD_ROOT)/lang/Czech/
660
+   cp -f -r StCADViewer/lang/chinese/* $(BUILD_ROOT)/lang/ChineseS/
661
+   cp -f -r StCADViewer/lang/korean/*  $(BUILD_ROOT)/lang/Korean/
662
 clean_StCADViewer:
663
    rm -f $(BUILD_ROOT)/$(aStCADViewer)
664
    rm -rf StCADViewer/*.o
665
    rm -rf $(BUILD_ROOT)/lang/*/StCADViewer.lng
666
 
667
 # sView Android JNI executable
668
-sViewAndroid_SRCS := $(wildcard sview/jni/*.cpp)
669
+sViewAndroid_SRCS := $(wildcard $(SRCDIR)/sview/jni/*.cpp)
670
 sViewAndroid_OBJS := ${sViewAndroid_SRCS:.cpp=.o}
671
 sViewAndroid_LIB  := $(LIB) -lStShared -lStCore -lStImageViewer -lStMoviePlayer -llog -landroid -lEGL -lGLESv2 -lc
672
 $(sViewAndroid) : $(aStImageViewer) $(aStMoviePlayer) $(sViewAndroid_OBJS)
673
@@ -385,14 +595,44 @@
674
    rm -rf sview/jni/*.o
675
 
676
 # sView executable
677
-sView_SRCS := $(wildcard sview/*.cpp)
678
-sView_OBJS := ${sView_SRCS:.cpp=.o}
679
-sView_LIB  := $(LIB) -lStGLWidgets -lStShared -lStCore -lStImageViewer -lStMoviePlayer -lStDiagnostics $(LIB_OUTPUTS) $(LIB_GTK) -lX11 -ldl -lgthread-2.0 $(LIB_PTHREAD)
680
-ifdef WITH_OCCT
681
-sView_LIB += $(LIB_OCCT)
682
+sView_SRCS1 := $(wildcard $(SRCDIR)/sview/*.cpp)
683
+sView_OBJS1 := ${sView_SRCS1:.cpp=.o}
684
+sView_SRCS2 :=
685
+sView_OBJS2 :=
686
+sView_LIB_DEPS = -lX11 -ldl -lgthread-2.0
687
+ifeq ($(TARGET_OS),osx)
688
+sView_SRCS2 := $(wildcard $(SRCDIR)/sview/*.mm)
689
+sView_OBJS2 := ${sView_SRCS2:.mm=.o}
690
+sView_LIB_DEPS = -framework Appkit
691
+endif
692
+sView_LIB  := $(LIB) -lStGLWidgets -lStShared -lStCore -lStImageViewer -lStMoviePlayer -lStDiagnostics $(LIB_OUTPUTS) $(LIB_GTK) $(sView_LIB_DEPS) $(LIB_PTHREAD)
693
+$(sView) : $(aStImageViewer) $(aStMoviePlayer) $(aStDiagnostics) $(sView_OBJS1) $(sView_OBJS2)
694
+   $(LD) $(LDFLAGS) $(LIBDIR) $(sView_OBJS1) $(sView_OBJS2) $(sView_LIB) -o $(BUILD_ROOT)/$(sView)
695
+ifeq ($(TARGET_OS),osx)
696
+   mkdir -p $(BUILD_ROOT_BUNDLE)/Contents/Frameworks/
697
+   mkdir -p $(BUILD_ROOT_BUNDLE)/Contents/Resources/English.lproj/
698
+   cp -f -r sview/Contents/*                 $(BUILD_ROOT_BUNDLE)/Contents/
699
+   cp -f    sview/Resources/sView.icns       $(BUILD_ROOT_BUNDLE)/Contents/Resources/
700
+   cp -f    sview/Resources/sView_Media.icns $(BUILD_ROOT_BUNDLE)/Contents/Resources/
701
+   ibtool --compile $(BUILD_ROOT_BUNDLE)/Contents/Resources/English.lproj/MainMenu.nib sview/Resources/English.lproj/MainMenu.xib
702
+ifneq ($(FREETYPE_ROOT),)
703
+   cp -R -f $(FREETYPE_ROOT)/$(LIBSUBFOLDER)/libfreetype*.dylib $(BUILD_ROOT_BUNDLE)/Contents/Frameworks
704
+endif
705
+ifneq ($(FFMPEG_ROOT),)
706
+   cp -R -f $(FFMPEG_ROOT)/$(LIBSUBFOLDER)/libavcodec*.dylib    $(BUILD_ROOT_BUNDLE)/Contents/Frameworks
707
+   cp -R -f $(FFMPEG_ROOT)/$(LIBSUBFOLDER)/libavdevice*.dylib   $(BUILD_ROOT_BUNDLE)/Contents/Frameworks
708
+   cp -R -f $(FFMPEG_ROOT)/$(LIBSUBFOLDER)/libavformat*.dylib   $(BUILD_ROOT_BUNDLE)/Contents/Frameworks
709
+   cp -R -f $(FFMPEG_ROOT)/$(LIBSUBFOLDER)/libavutil*.dylib     $(BUILD_ROOT_BUNDLE)/Contents/Frameworks
710
+   cp -R -f $(FFMPEG_ROOT)/$(LIBSUBFOLDER)/libswresample*.dylib $(BUILD_ROOT_BUNDLE)/Contents/Frameworks
711
+   cp -R -f $(FFMPEG_ROOT)/$(LIBSUBFOLDER)/libswscale*.dylib    $(BUILD_ROOT_BUNDLE)/Contents/Frameworks
712
+endif
713
+ifneq ($(OPENAL_ROOT),)
714
+   cp -R -f $(OPENAL_ROOT)/$(LIBSUBFOLDER)/libopenal*.dylib     $(BUILD_ROOT_BUNDLE)/Contents/Frameworks
715
 endif
716
-$(sView) : $(aStImageViewer) $(aStMoviePlayer) $(aStDiagnostics) $(sView_OBJS)
717
-   $(LD) $(LDFLAGS) $(LIBDIR) $(sView_OBJS) $(sView_LIB) -o $(BUILD_ROOT)/$(sView)
718
+endif
719
+   @echo sView building is DONE
720
+
721
+
722
 clean_sView:
723
    rm -f $(BUILD_ROOT)/$(sView)
724
    rm -rf sview/*.o
725
sview-15_11.tar.gz/README.md -> sview-16_06.tar.gz/README.md Changed
12
 
1
@@ -37,3 +37,10 @@
2
 ## Build and Install
3
 
4
 See the [docs/INSTALL](docs/INSTALL.md) file.
5
+
6
+## Contentious Integration
7
+
8
+Building state of master branch (of this git repository https://github.com/gkv311/sview.git).
9
+
10
+Linux/Android [![Build status from Travis CI](https://travis-ci.org/gkv311/sview.svg?branch=master)](https://travis-ci.org/gkv311/sview)
11
+Windows       [![Build status from AppVeyor](https://ci.appveyor.com/api/projects/status/github/gkv311/sview)](https://ci.appveyor.com/project/gkv311/sview/build/messages)
12
sview-15_11.tar.gz/StBrowserPlugin/StBrowserPlugin.cbp -> sview-16_06.tar.gz/StBrowserPlugin/StBrowserPlugin.cbp Changed
18
 
1
@@ -185,7 +185,7 @@
2
                    <Add option="-DST_HAVE_STCONFIG" />
3
                </Compiler>
4
                <Linker>
5
-                   <Add option="-s" />
6
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
7
                    <Add option="-framework Appkit" />
8
                    <Add library="objc" />
9
                </Linker>
10
@@ -205,6 +205,7 @@
11
                    <Add option="-DST_HAVE_STCONFIG" />
12
                </Compiler>
13
                <Linker>
14
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
15
                    <Add option="-framework Appkit" />
16
                    <Add library="objc" />
17
                </Linker>
18
sview-15_11.tar.gz/StBrowserPlugin/StBrowserPlugin.rc -> sview-16_06.tar.gz/StBrowserPlugin/StBrowserPlugin.rc Changed
10
 
1
@@ -21,7 +21,7 @@
2
       VALUE "FileOpenName",     ST_NPAPI_MIME_DESC
3
       VALUE "FileVersion",      SVIEW_SDK_VER_STRING "\000"
4
       VALUE "InternalName",     "StBrowserPlugin\000"
5
-      VALUE "LegalCopyright",   "\251 2009-2015 Kirill Gavrilov\000"
6
+      VALUE "LegalCopyright",   "\251 2009-2016 Kirill Gavrilov\000"
7
       VALUE "LegalTrademarks",  "\000"
8
       VALUE "MIMEType",         ST_NPAPI_MIME_LIST
9
       VALUE "OriginalFilename", "npStBrowserPlugin.dll\000"
10
sview-16_06.tar.gz/StCADViewer.sln Added
246
 
1
@@ -0,0 +1,244 @@
2
+Microsoft Visual Studio Solution File, Format Version 11.00
3
+# Visual Studio 2010
4
+Project("{EB63D5DC-8A11-4948-BE6D-13169C023E29}") = "StShared", "StShared\StShared.vcxproj", "{138D17EB-8A50-437A-BD55-8114A92BCF19}"
5
+EndProject
6
+Project("{EB63D5DC-8A11-4948-BE6D-13169C023E29}") = "StGLWidgets", "StGLWidgets\StGLWidgets.vcxproj", "{F28AE856-40EB-4C12-AD99-AE253B144419}"
7
+   ProjectSection(ProjectDependencies) = postProject
8
+       {138D17EB-8A50-437A-BD55-8114A92BCF19} = {138D17EB-8A50-437A-BD55-8114A92BCF19}
9
+   EndProjectSection
10
+EndProject
11
+Project("{EB63D5DC-8A11-4948-BE6D-13169C023E29}") = "StCore", "StCore\StCore.vcxproj", "{4CFDA18A-0A2E-48DC-BDCB-639C75918B56}"
12
+   ProjectSection(ProjectDependencies) = postProject
13
+       {138D17EB-8A50-437A-BD55-8114A92BCF19} = {138D17EB-8A50-437A-BD55-8114A92BCF19}
14
+   EndProjectSection
15
+EndProject
16
+Project("{EB63D5DC-8A11-4948-BE6D-13169C023E29}") = "StOutAnaglyph", "StOutAnaglyph\StOutAnaglyph.vcxproj", "{31E2A141-77B9-403B-BAAC-43D7EE2A6EA6}"
17
+   ProjectSection(ProjectDependencies) = postProject
18
+       {138D17EB-8A50-437A-BD55-8114A92BCF19} = {138D17EB-8A50-437A-BD55-8114A92BCF19}
19
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56} = {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}
20
+   EndProjectSection
21
+EndProject
22
+Project("{EB63D5DC-8A11-4948-BE6D-13169C023E29}") = "StOutDistorted", "StOutDistorted\StOutDistorted.vcxproj", "{9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A}"
23
+   ProjectSection(ProjectDependencies) = postProject
24
+       {138D17EB-8A50-437A-BD55-8114A92BCF19} = {138D17EB-8A50-437A-BD55-8114A92BCF19}
25
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56} = {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}
26
+   EndProjectSection
27
+EndProject
28
+Project("{EB63D5DC-8A11-4948-BE6D-13169C023E29}") = "StOutDual", "StOutDual\StOutDual.vcxproj", "{1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F}"
29
+   ProjectSection(ProjectDependencies) = postProject
30
+       {138D17EB-8A50-437A-BD55-8114A92BCF19} = {138D17EB-8A50-437A-BD55-8114A92BCF19}
31
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56} = {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}
32
+   EndProjectSection
33
+EndProject
34
+Project("{EB63D5DC-8A11-4948-BE6D-13169C023E29}") = "StOutInterlace", "StOutInterlace\StOutInterlace.vcxproj", "{D7A2C3D4-2A3C-447C-B008-D62F8A42C078}"
35
+   ProjectSection(ProjectDependencies) = postProject
36
+       {138D17EB-8A50-437A-BD55-8114A92BCF19} = {138D17EB-8A50-437A-BD55-8114A92BCF19}
37
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56} = {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}
38
+   EndProjectSection
39
+EndProject
40
+Project("{EB63D5DC-8A11-4948-BE6D-13169C023E29}") = "StOutIZ3D", "StOutIZ3D\StOutIZ3D.vcxproj", "{D04F44B7-0B73-47F0-A14F-D317C39A5DFB}"
41
+   ProjectSection(ProjectDependencies) = postProject
42
+       {138D17EB-8A50-437A-BD55-8114A92BCF19} = {138D17EB-8A50-437A-BD55-8114A92BCF19}
43
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56} = {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}
44
+   EndProjectSection
45
+EndProject
46
+Project("{EB63D5DC-8A11-4948-BE6D-13169C023E29}") = "StOutPageFlip", "StOutPageFlip\StOutPageFlip.vcxproj", "{7567623C-94E0-478D-B4C8-C5C1B020B5B5}"
47
+   ProjectSection(ProjectDependencies) = postProject
48
+       {138D17EB-8A50-437A-BD55-8114A92BCF19} = {138D17EB-8A50-437A-BD55-8114A92BCF19}
49
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56} = {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}
50
+   EndProjectSection
51
+EndProject
52
+Project("{EB63D5DC-8A11-4948-BE6D-13169C023E29}") = "StImageViewer", "StImageViewer\StImageViewer.vcxproj", "{6B5C42D6-F103-4511-8F3C-48F320B16043}"
53
+   ProjectSection(ProjectDependencies) = postProject
54
+       {138D17EB-8A50-437A-BD55-8114A92BCF19} = {138D17EB-8A50-437A-BD55-8114A92BCF19}
55
+       {F28AE856-40EB-4C12-AD99-AE253B144419} = {F28AE856-40EB-4C12-AD99-AE253B144419}
56
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56} = {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}
57
+       {31E2A141-77B9-403B-BAAC-43D7EE2A6EA6} = {31E2A141-77B9-403B-BAAC-43D7EE2A6EA6}
58
+       {9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A} = {9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A}
59
+       {1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F} = {1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F}
60
+       {D7A2C3D4-2A3C-447C-B008-D62F8A42C078} = {D7A2C3D4-2A3C-447C-B008-D62F8A42C078}
61
+       {D04F44B7-0B73-47F0-A14F-D317C39A5DFB} = {D04F44B7-0B73-47F0-A14F-D317C39A5DFB}
62
+       {7567623C-94E0-478D-B4C8-C5C1B020B5B5} = {7567623C-94E0-478D-B4C8-C5C1B020B5B5}
63
+   EndProjectSection
64
+EndProject
65
+Project("{EB63D5DC-8A11-4948-BE6D-13169C023E29}") = "StMoviePlayer", "StMoviePlayer\StMoviePlayer.vcxproj", "{3985832B-709C-4B38-B5A9-8792E09DF17B}"
66
+   ProjectSection(ProjectDependencies) = postProject
67
+       {138D17EB-8A50-437A-BD55-8114A92BCF19} = {138D17EB-8A50-437A-BD55-8114A92BCF19}
68
+       {F28AE856-40EB-4C12-AD99-AE253B144419} = {F28AE856-40EB-4C12-AD99-AE253B144419}
69
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56} = {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}
70
+       {31E2A141-77B9-403B-BAAC-43D7EE2A6EA6} = {31E2A141-77B9-403B-BAAC-43D7EE2A6EA6}
71
+       {9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A} = {9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A}
72
+       {1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F} = {1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F}
73
+       {D7A2C3D4-2A3C-447C-B008-D62F8A42C078} = {D7A2C3D4-2A3C-447C-B008-D62F8A42C078}
74
+       {D04F44B7-0B73-47F0-A14F-D317C39A5DFB} = {D04F44B7-0B73-47F0-A14F-D317C39A5DFB}
75
+       {7567623C-94E0-478D-B4C8-C5C1B020B5B5} = {7567623C-94E0-478D-B4C8-C5C1B020B5B5}
76
+   EndProjectSection
77
+EndProject
78
+Project("{EB63D5DC-8A11-4948-BE6D-13169C023E29}") = "StDiagnostics", "StDiagnostics\StDiagnostics.vcxproj", "{BA6A36ED-50D1-4ED8-80EE-8C74A824F75B}"
79
+   ProjectSection(ProjectDependencies) = postProject
80
+       {138D17EB-8A50-437A-BD55-8114A92BCF19} = {138D17EB-8A50-437A-BD55-8114A92BCF19}
81
+       {F28AE856-40EB-4C12-AD99-AE253B144419} = {F28AE856-40EB-4C12-AD99-AE253B144419}
82
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56} = {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}
83
+       {31E2A141-77B9-403B-BAAC-43D7EE2A6EA6} = {31E2A141-77B9-403B-BAAC-43D7EE2A6EA6}
84
+       {9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A} = {9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A}
85
+       {1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F} = {1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F}
86
+       {D7A2C3D4-2A3C-447C-B008-D62F8A42C078} = {D7A2C3D4-2A3C-447C-B008-D62F8A42C078}
87
+       {D04F44B7-0B73-47F0-A14F-D317C39A5DFB} = {D04F44B7-0B73-47F0-A14F-D317C39A5DFB}
88
+       {7567623C-94E0-478D-B4C8-C5C1B020B5B5} = {7567623C-94E0-478D-B4C8-C5C1B020B5B5}
89
+   EndProjectSection
90
+EndProject
91
+Project("{EB63D5DC-8A11-4948-BE6D-13169C023E29}") = "StCADViewer", "StCADViewer\StCADViewer.vcxproj", "{B97C511B-8A26-4551-8A11-B562E07DFF49}"
92
+   ProjectSection(ProjectDependencies) = postProject
93
+       {138D17EB-8A50-437A-BD55-8114A92BCF19} = {138D17EB-8A50-437A-BD55-8114A92BCF19}
94
+       {F28AE856-40EB-4C12-AD99-AE253B144419} = {F28AE856-40EB-4C12-AD99-AE253B144419}
95
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56} = {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}
96
+       {31E2A141-77B9-403B-BAAC-43D7EE2A6EA6} = {31E2A141-77B9-403B-BAAC-43D7EE2A6EA6}
97
+       {9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A} = {9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A}
98
+       {1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F} = {1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F}
99
+       {D7A2C3D4-2A3C-447C-B008-D62F8A42C078} = {D7A2C3D4-2A3C-447C-B008-D62F8A42C078}
100
+       {D04F44B7-0B73-47F0-A14F-D317C39A5DFB} = {D04F44B7-0B73-47F0-A14F-D317C39A5DFB}
101
+       {7567623C-94E0-478D-B4C8-C5C1B020B5B5} = {7567623C-94E0-478D-B4C8-C5C1B020B5B5}
102
+   EndProjectSection
103
+EndProject
104
+Project("{EB63D5DC-8A11-4948-BE6D-13169C023E29}") = "sview", "sview\sview.vcxproj", "{F5F3BCE6-B5AE-4A6F-9C86-33E212980905}"
105
+   ProjectSection(ProjectDependencies) = postProject
106
+       {138D17EB-8A50-437A-BD55-8114A92BCF19} = {138D17EB-8A50-437A-BD55-8114A92BCF19}
107
+       {F28AE856-40EB-4C12-AD99-AE253B144419} = {F28AE856-40EB-4C12-AD99-AE253B144419}
108
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56} = {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}
109
+       {31E2A141-77B9-403B-BAAC-43D7EE2A6EA6} = {31E2A141-77B9-403B-BAAC-43D7EE2A6EA6}
110
+       {9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A} = {9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A}
111
+       {1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F} = {1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F}
112
+       {D7A2C3D4-2A3C-447C-B008-D62F8A42C078} = {D7A2C3D4-2A3C-447C-B008-D62F8A42C078}
113
+       {D04F44B7-0B73-47F0-A14F-D317C39A5DFB} = {D04F44B7-0B73-47F0-A14F-D317C39A5DFB}
114
+       {7567623C-94E0-478D-B4C8-C5C1B020B5B5} = {7567623C-94E0-478D-B4C8-C5C1B020B5B5}
115
+       {6B5C42D6-F103-4511-8F3C-48F320B16043} = {6B5C42D6-F103-4511-8F3C-48F320B16043}
116
+       {3985832B-709C-4B38-B5A9-8792E09DF17B} = {3985832B-709C-4B38-B5A9-8792E09DF17B}
117
+       {B97C511B-8A26-4551-8A11-B562E07DFF49} = {B97C511B-8A26-4551-8A11-B562E07DFF49}
118
+       {BA6A36ED-50D1-4ED8-80EE-8C74A824F75B} = {BA6A36ED-50D1-4ED8-80EE-8C74A824F75B}
119
+   EndProjectSection
120
+EndProject
121
+Global
122
+   GlobalSection(SolutionConfigurationPlatforms) = preSolution
123
+       Debug|Win32 = Debug|Win32
124
+       Release|Win32 = Release|Win32
125
+       Debug|x64 = Debug|x64
126
+       Release|x64 = Release|x64
127
+   EndGlobalSection
128
+   GlobalSection(ProjectConfigurationPlatforms) = postSolution
129
+       {138D17EB-8A50-437A-BD55-8114A92BCF19}.Debug|Win32.ActiveCfg = Debug|Win32
130
+       {138D17EB-8A50-437A-BD55-8114A92BCF19}.Debug|Win32.Build.0 = Debug|Win32
131
+       {138D17EB-8A50-437A-BD55-8114A92BCF19}.Release|Win32.ActiveCfg = Release|Win32
132
+       {138D17EB-8A50-437A-BD55-8114A92BCF19}.Release|Win32.Build.0 = Release|Win32
133
+       {138D17EB-8A50-437A-BD55-8114A92BCF19}.Debug|x64.ActiveCfg = Debug|x64
134
+       {138D17EB-8A50-437A-BD55-8114A92BCF19}.Debug|x64.Build.0 = Debug|x64
135
+       {138D17EB-8A50-437A-BD55-8114A92BCF19}.Release|x64.ActiveCfg = Release|x64
136
+       {138D17EB-8A50-437A-BD55-8114A92BCF19}.Release|x64.Build.0 = Release|x64
137
+       {F28AE856-40EB-4C12-AD99-AE253B144419}.Debug|Win32.ActiveCfg = Debug|Win32
138
+       {F28AE856-40EB-4C12-AD99-AE253B144419}.Debug|Win32.Build.0 = Debug|Win32
139
+       {F28AE856-40EB-4C12-AD99-AE253B144419}.Release|Win32.ActiveCfg = Release|Win32
140
+       {F28AE856-40EB-4C12-AD99-AE253B144419}.Release|Win32.Build.0 = Release|Win32
141
+       {F28AE856-40EB-4C12-AD99-AE253B144419}.Debug|x64.ActiveCfg = Debug|x64
142
+       {F28AE856-40EB-4C12-AD99-AE253B144419}.Debug|x64.Build.0 = Debug|x64
143
+       {F28AE856-40EB-4C12-AD99-AE253B144419}.Release|x64.ActiveCfg = Release|x64
144
+       {F28AE856-40EB-4C12-AD99-AE253B144419}.Release|x64.Build.0 = Release|x64
145
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}.Debug|Win32.ActiveCfg = Debug|Win32
146
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}.Debug|Win32.Build.0 = Debug|Win32
147
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}.Release|Win32.ActiveCfg = Release|Win32
148
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}.Release|Win32.Build.0 = Release|Win32
149
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}.Debug|x64.ActiveCfg = Debug|x64
150
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}.Debug|x64.Build.0 = Debug|x64
151
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}.Release|x64.ActiveCfg = Release|x64
152
+       {4CFDA18A-0A2E-48DC-BDCB-639C75918B56}.Release|x64.Build.0 = Release|x64
153
+       {31E2A141-77B9-403B-BAAC-43D7EE2A6EA6}.Debug|Win32.ActiveCfg = Debug|Win32
154
+       {31E2A141-77B9-403B-BAAC-43D7EE2A6EA6}.Debug|Win32.Build.0 = Debug|Win32
155
+       {31E2A141-77B9-403B-BAAC-43D7EE2A6EA6}.Release|Win32.ActiveCfg = Release|Win32
156
+       {31E2A141-77B9-403B-BAAC-43D7EE2A6EA6}.Release|Win32.Build.0 = Release|Win32
157
+       {31E2A141-77B9-403B-BAAC-43D7EE2A6EA6}.Debug|x64.ActiveCfg = Debug|x64
158
+       {31E2A141-77B9-403B-BAAC-43D7EE2A6EA6}.Debug|x64.Build.0 = Debug|x64
159
+       {31E2A141-77B9-403B-BAAC-43D7EE2A6EA6}.Release|x64.ActiveCfg = Release|x64
160
+       {31E2A141-77B9-403B-BAAC-43D7EE2A6EA6}.Release|x64.Build.0 = Release|x64
161
+       {9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A}.Debug|Win32.ActiveCfg = Debug|Win32
162
+       {9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A}.Debug|Win32.Build.0 = Debug|Win32
163
+       {9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A}.Release|Win32.ActiveCfg = Release|Win32
164
+       {9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A}.Release|Win32.Build.0 = Release|Win32
165
+       {9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A}.Debug|x64.ActiveCfg = Debug|x64
166
+       {9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A}.Debug|x64.Build.0 = Debug|x64
167
+       {9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A}.Release|x64.ActiveCfg = Release|x64
168
+       {9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A}.Release|x64.Build.0 = Release|x64
169
+       {1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F}.Debug|Win32.ActiveCfg = Debug|Win32
170
+       {1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F}.Debug|Win32.Build.0 = Debug|Win32
171
+       {1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F}.Release|Win32.ActiveCfg = Release|Win32
172
+       {1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F}.Release|Win32.Build.0 = Release|Win32
173
+       {1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F}.Debug|x64.ActiveCfg = Debug|x64
174
+       {1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F}.Debug|x64.Build.0 = Debug|x64
175
+       {1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F}.Release|x64.ActiveCfg = Release|x64
176
+       {1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F}.Release|x64.Build.0 = Release|x64
177
+       {D7A2C3D4-2A3C-447C-B008-D62F8A42C078}.Debug|Win32.ActiveCfg = Debug|Win32
178
+       {D7A2C3D4-2A3C-447C-B008-D62F8A42C078}.Debug|Win32.Build.0 = Debug|Win32
179
+       {D7A2C3D4-2A3C-447C-B008-D62F8A42C078}.Release|Win32.ActiveCfg = Release|Win32
180
+       {D7A2C3D4-2A3C-447C-B008-D62F8A42C078}.Release|Win32.Build.0 = Release|Win32
181
+       {D7A2C3D4-2A3C-447C-B008-D62F8A42C078}.Debug|x64.ActiveCfg = Debug|x64
182
+       {D7A2C3D4-2A3C-447C-B008-D62F8A42C078}.Debug|x64.Build.0 = Debug|x64
183
+       {D7A2C3D4-2A3C-447C-B008-D62F8A42C078}.Release|x64.ActiveCfg = Release|x64
184
+       {D7A2C3D4-2A3C-447C-B008-D62F8A42C078}.Release|x64.Build.0 = Release|x64
185
+       {D04F44B7-0B73-47F0-A14F-D317C39A5DFB}.Debug|Win32.ActiveCfg = Debug|Win32
186
+       {D04F44B7-0B73-47F0-A14F-D317C39A5DFB}.Debug|Win32.Build.0 = Debug|Win32
187
+       {D04F44B7-0B73-47F0-A14F-D317C39A5DFB}.Release|Win32.ActiveCfg = Release|Win32
188
+       {D04F44B7-0B73-47F0-A14F-D317C39A5DFB}.Release|Win32.Build.0 = Release|Win32
189
+       {D04F44B7-0B73-47F0-A14F-D317C39A5DFB}.Debug|x64.ActiveCfg = Debug|x64
190
+       {D04F44B7-0B73-47F0-A14F-D317C39A5DFB}.Debug|x64.Build.0 = Debug|x64
191
+       {D04F44B7-0B73-47F0-A14F-D317C39A5DFB}.Release|x64.ActiveCfg = Release|x64
192
+       {D04F44B7-0B73-47F0-A14F-D317C39A5DFB}.Release|x64.Build.0 = Release|x64
193
+       {7567623C-94E0-478D-B4C8-C5C1B020B5B5}.Debug|Win32.ActiveCfg = Debug|Win32
194
+       {7567623C-94E0-478D-B4C8-C5C1B020B5B5}.Debug|Win32.Build.0 = Debug|Win32
195
+       {7567623C-94E0-478D-B4C8-C5C1B020B5B5}.Release|Win32.ActiveCfg = Release|Win32
196
+       {7567623C-94E0-478D-B4C8-C5C1B020B5B5}.Release|Win32.Build.0 = Release|Win32
197
+       {7567623C-94E0-478D-B4C8-C5C1B020B5B5}.Debug|x64.ActiveCfg = Debug|x64
198
+       {7567623C-94E0-478D-B4C8-C5C1B020B5B5}.Debug|x64.Build.0 = Debug|x64
199
+       {7567623C-94E0-478D-B4C8-C5C1B020B5B5}.Release|x64.ActiveCfg = Release|x64
200
+       {7567623C-94E0-478D-B4C8-C5C1B020B5B5}.Release|x64.Build.0 = Release|x64
201
+       {6B5C42D6-F103-4511-8F3C-48F320B16043}.Debug|Win32.ActiveCfg = Debug|Win32
202
+       {6B5C42D6-F103-4511-8F3C-48F320B16043}.Debug|Win32.Build.0 = Debug|Win32
203
+       {6B5C42D6-F103-4511-8F3C-48F320B16043}.Release|Win32.ActiveCfg = Release|Win32
204
+       {6B5C42D6-F103-4511-8F3C-48F320B16043}.Release|Win32.Build.0 = Release|Win32
205
+       {6B5C42D6-F103-4511-8F3C-48F320B16043}.Debug|x64.ActiveCfg = Debug|x64
206
+       {6B5C42D6-F103-4511-8F3C-48F320B16043}.Debug|x64.Build.0 = Debug|x64
207
+       {6B5C42D6-F103-4511-8F3C-48F320B16043}.Release|x64.ActiveCfg = Release|x64
208
+       {6B5C42D6-F103-4511-8F3C-48F320B16043}.Release|x64.Build.0 = Release|x64
209
+       {3985832B-709C-4B38-B5A9-8792E09DF17B}.Debug|Win32.ActiveCfg = Debug|Win32
210
+       {3985832B-709C-4B38-B5A9-8792E09DF17B}.Debug|Win32.Build.0 = Debug|Win32
211
+       {3985832B-709C-4B38-B5A9-8792E09DF17B}.Release|Win32.ActiveCfg = Release|Win32
212
+       {3985832B-709C-4B38-B5A9-8792E09DF17B}.Release|Win32.Build.0 = Release|Win32
213
+       {3985832B-709C-4B38-B5A9-8792E09DF17B}.Debug|x64.ActiveCfg = Debug|x64
214
+       {3985832B-709C-4B38-B5A9-8792E09DF17B}.Debug|x64.Build.0 = Debug|x64
215
+       {3985832B-709C-4B38-B5A9-8792E09DF17B}.Release|x64.ActiveCfg = Release|x64
216
+       {3985832B-709C-4B38-B5A9-8792E09DF17B}.Release|x64.Build.0 = Release|x64
217
+       {BA6A36ED-50D1-4ED8-80EE-8C74A824F75B}.Debug|Win32.ActiveCfg = Debug|Win32
218
+       {BA6A36ED-50D1-4ED8-80EE-8C74A824F75B}.Debug|Win32.Build.0 = Debug|Win32
219
+       {BA6A36ED-50D1-4ED8-80EE-8C74A824F75B}.Release|Win32.ActiveCfg = Release|Win32
220
+       {BA6A36ED-50D1-4ED8-80EE-8C74A824F75B}.Release|Win32.Build.0 = Release|Win32
221
+       {BA6A36ED-50D1-4ED8-80EE-8C74A824F75B}.Debug|x64.ActiveCfg = Debug|x64
222
+       {BA6A36ED-50D1-4ED8-80EE-8C74A824F75B}.Debug|x64.Build.0 = Debug|x64
223
+       {BA6A36ED-50D1-4ED8-80EE-8C74A824F75B}.Release|x64.ActiveCfg = Release|x64
224
+       {BA6A36ED-50D1-4ED8-80EE-8C74A824F75B}.Release|x64.Build.0 = Release|x64
225
+       {B97C511B-8A26-4551-8A11-B562E07DFF49}.Debug|Win32.ActiveCfg = Debug|Win32
226
+       {B97C511B-8A26-4551-8A11-B562E07DFF49}.Debug|Win32.Build.0 = Debug|Win32
227
+       {B97C511B-8A26-4551-8A11-B562E07DFF49}.Release|Win32.ActiveCfg = Release|Win32
228
+       {B97C511B-8A26-4551-8A11-B562E07DFF49}.Release|Win32.Build.0 = Release|Win32
229
+       {B97C511B-8A26-4551-8A11-B562E07DFF49}.Debug|x64.ActiveCfg = Debug|x64
230
+       {B97C511B-8A26-4551-8A11-B562E07DFF49}.Debug|x64.Build.0 = Debug|x64
231
+       {B97C511B-8A26-4551-8A11-B562E07DFF49}.Release|x64.ActiveCfg = Release|x64
232
+       {B97C511B-8A26-4551-8A11-B562E07DFF49}.Release|x64.Build.0 = Release|x64
233
+       {F5F3BCE6-B5AE-4A6F-9C86-33E212980905}.Debug|Win32.ActiveCfg = Debug|Win32
234
+       {F5F3BCE6-B5AE-4A6F-9C86-33E212980905}.Debug|Win32.Build.0 = Debug|Win32
235
+       {F5F3BCE6-B5AE-4A6F-9C86-33E212980905}.Release|Win32.ActiveCfg = Release|Win32
236
+       {F5F3BCE6-B5AE-4A6F-9C86-33E212980905}.Release|Win32.Build.0 = Release|Win32
237
+       {F5F3BCE6-B5AE-4A6F-9C86-33E212980905}.Debug|x64.ActiveCfg = Debug|x64
238
+       {F5F3BCE6-B5AE-4A6F-9C86-33E212980905}.Debug|x64.Build.0 = Debug|x64
239
+       {F5F3BCE6-B5AE-4A6F-9C86-33E212980905}.Release|x64.ActiveCfg = Release|x64
240
+       {F5F3BCE6-B5AE-4A6F-9C86-33E212980905}.Release|x64.Build.0 = Release|x64
241
+   EndGlobalSection
242
+   GlobalSection(SolutionProperties) = preSolution
243
+       HideSolutionNode = FALSE
244
+   EndGlobalSection
245
+EndGlobal
246
sview-16_06.tar.gz/StCADViewer.workspace Added
100
 
1
@@ -0,0 +1,98 @@
2
+<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
3
+<CodeBlocks_workspace_file>
4
+   <Workspace title="sView Workspace">
5
+       <Project filename="StShared/StShared.cbp" />
6
+       <Project filename="StGLWidgets/StGLWidgets.cbp">
7
+           <Depends filename="StShared/StShared.cbp" />
8
+       </Project>
9
+       <Project filename="StCore/StCore.cbp">
10
+           <Depends filename="StShared/StShared.cbp" />
11
+       </Project>
12
+       <Project filename="StOutAnaglyph/StOutAnaglyph.cbp">
13
+           <Depends filename="StShared/StShared.cbp" />
14
+           <Depends filename="StCore/StCore.cbp" />
15
+       </Project>
16
+       <Project filename="StOutDual/StOutDual.cbp">
17
+           <Depends filename="StShared/StShared.cbp" />
18
+           <Depends filename="StCore/StCore.cbp" />
19
+       </Project>
20
+       <Project filename="StOutInterlace/StOutInterlace.cbp">
21
+           <Depends filename="StShared/StShared.cbp" />
22
+           <Depends filename="StCore/StCore.cbp" />
23
+       </Project>
24
+       <Project filename="StOutIZ3D/StOutIZ3D.cbp">
25
+           <Depends filename="StShared/StShared.cbp" />
26
+           <Depends filename="StCore/StCore.cbp" />
27
+       </Project>
28
+       <Project filename="StOutPageFlip/StOutPageFlip.cbp">
29
+           <Depends filename="StShared/StShared.cbp" />
30
+           <Depends filename="StCore/StCore.cbp" />
31
+       </Project>
32
+       <Project filename="StOutDistorted/StOutDistorted.cbp">
33
+           <Depends filename="StShared/StShared.cbp" />
34
+           <Depends filename="StCore/StCore.cbp" />
35
+       </Project>
36
+       <Project filename="StImageViewer/StImageViewer.cbp">
37
+           <Depends filename="StShared/StShared.cbp" />
38
+           <Depends filename="StGLWidgets/StGLWidgets.cbp" />
39
+           <Depends filename="StCore/StCore.cbp" />
40
+           <Depends filename="StOutAnaglyph/StOutAnaglyph.cbp" />
41
+           <Depends filename="StOutDual/StOutDual.cbp" />
42
+           <Depends filename="StOutInterlace/StOutInterlace.cbp" />
43
+           <Depends filename="StOutIZ3D/StOutIZ3D.cbp" />
44
+           <Depends filename="StOutPageFlip/StOutPageFlip.cbp" />
45
+           <Depends filename="StOutDistorted/StOutDistorted.cbp" />
46
+       </Project>
47
+       <Project filename="StMoviePlayer/StMoviePlayer.cbp">
48
+           <Depends filename="StShared/StShared.cbp" />
49
+           <Depends filename="StGLWidgets/StGLWidgets.cbp" />
50
+           <Depends filename="StCore/StCore.cbp" />
51
+           <Depends filename="StOutAnaglyph/StOutAnaglyph.cbp" />
52
+           <Depends filename="StOutDual/StOutDual.cbp" />
53
+           <Depends filename="StOutInterlace/StOutInterlace.cbp" />
54
+           <Depends filename="StOutIZ3D/StOutIZ3D.cbp" />
55
+           <Depends filename="StOutPageFlip/StOutPageFlip.cbp" />
56
+           <Depends filename="StOutDistorted/StOutDistorted.cbp" />
57
+       </Project>
58
+       <Project filename="StDiagnostics/StDiagnostics.cbp">
59
+           <Depends filename="StShared/StShared.cbp" />
60
+           <Depends filename="StGLWidgets/StGLWidgets.cbp" />
61
+           <Depends filename="StCore/StCore.cbp" />
62
+           <Depends filename="StOutAnaglyph/StOutAnaglyph.cbp" />
63
+           <Depends filename="StOutDual/StOutDual.cbp" />
64
+           <Depends filename="StOutInterlace/StOutInterlace.cbp" />
65
+           <Depends filename="StOutIZ3D/StOutIZ3D.cbp" />
66
+           <Depends filename="StOutPageFlip/StOutPageFlip.cbp" />
67
+           <Depends filename="StOutDistorted/StOutDistorted.cbp" />
68
+       </Project>
69
+       <Project filename="StCADViewer/StCADViewer.cbp" >
70
+           <Depends filename="StShared/StShared.cbp" />
71
+           <Depends filename="StGLWidgets/StGLWidgets.cbp" />
72
+           <Depends filename="StCore/StCore.cbp" />
73
+           <Depends filename="StOutAnaglyph/StOutAnaglyph.cbp" />
74
+           <Depends filename="StOutDual/StOutDual.cbp" />
75
+           <Depends filename="StOutInterlace/StOutInterlace.cbp" />
76
+           <Depends filename="StOutIZ3D/StOutIZ3D.cbp" />
77
+           <Depends filename="StOutPageFlip/StOutPageFlip.cbp" />
78
+           <Depends filename="StOutDistorted/StOutDistorted.cbp" />
79
+       </Project>
80
+       <Project filename="StMonitorsDump/StMonitorsDump.cbp">
81
+           <Depends filename="StShared/StShared.cbp" />
82
+       </Project>
83
+       <Project filename="StBrowserPlugin/StBrowserPlugin.cbp">
84
+           <Depends filename="StShared/StShared.cbp" />
85
+           <Depends filename="StCore/StCore.cbp" />
86
+       </Project>
87
+       <Project filename="StTests/StTests.cbp">
88
+           <Depends filename="StShared/StShared.cbp" />
89
+           <Depends filename="StGLWidgets/StGLWidgets.cbp" />
90
+           <Depends filename="StCore/StCore.cbp" />
91
+       </Project>
92
+       <Project filename="sview/sview.cbp" active="1">
93
+           <Depends filename="StShared/StShared.cbp" />
94
+           <Depends filename="StImageViewer/StImageViewer.cbp" />
95
+           <Depends filename="StMoviePlayer/StMoviePlayer.cbp" />
96
+       </Project>
97
+       <Project filename="sview/sViewMake.cbp">
98
+   </Workspace>
99
+</CodeBlocks_workspace_file>
100
sview-16_06.tar.gz/StCADViewer/.classpath Added
11
 
1
@@ -0,0 +1,9 @@
2
+<?xml version="1.0" encoding="UTF-8"?>
3
+<classpath>
4
+   <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
5
+   <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
6
+   <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
7
+   <classpathentry kind="src" path="src"/>
8
+   <classpathentry kind="src" path="gen"/>
9
+   <classpathentry kind="output" path="bin/classes"/>
10
+</classpath>
11
sview-16_06.tar.gz/StCADViewer/.project Added
52
 
1
@@ -0,0 +1,50 @@
2
+<?xml version="1.0" encoding="UTF-8"?>
3
+<projectDescription>
4
+   <name>sView - CAD Viewer</name>
5
+   <comment></comment>
6
+   <projects>
7
+   </projects>
8
+   <buildSpec>
9
+       <buildCommand>
10
+           <name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
11
+           <arguments>
12
+           </arguments>
13
+       </buildCommand>
14
+       <buildCommand>
15
+           <name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
16
+           <arguments>
17
+           </arguments>
18
+       </buildCommand>
19
+       <buildCommand>
20
+           <name>org.eclipse.jdt.core.javabuilder</name>
21
+           <arguments>
22
+           </arguments>
23
+       </buildCommand>
24
+       <buildCommand>
25
+           <name>com.android.ide.eclipse.adt.ApkBuilder</name>
26
+           <arguments>
27
+           </arguments>
28
+       </buildCommand>
29
+   </buildSpec>
30
+   <natures>
31
+       <nature>com.android.ide.eclipse.adt.AndroidNature</nature>
32
+       <nature>org.eclipse.jdt.core.javanature</nature>
33
+   </natures>
34
+   <linkedResources>
35
+       <link>
36
+           <name>src/com/sview/MainActivity.java</name>
37
+           <type>1</type>
38
+           <location>${PARENT-1-PROJECT_LOC}/sview/src/com/sview/MainActivity.java</location>
39
+       </link>
40
+       <link>
41
+           <name>src/com/sview/StActivity.java</name>
42
+           <type>1</type>
43
+           <location>${PARENT-1-PROJECT_LOC}/sview/src/com/sview/StActivity.java</location>
44
+       </link>
45
+       <link>
46
+           <name>src/com/sview/StS3dvSurface.java</name>
47
+           <type>1</type>
48
+           <location>${PARENT-1-PROJECT_LOC}/sview/src/com/sview/StS3dvSurface.java</location>
49
+       </link>
50
+   </linkedResources>
51
+</projectDescription>
52
sview-16_06.tar.gz/StCADViewer/AndroidManifest.xml Added
133
 
1
@@ -0,0 +1,131 @@
2
+<?xml version="1.0" encoding="utf-8"?>
3
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
4
+          package="com.sview.cadviewer"
5
+          android:versionCode="1"
6
+          android:versionName="16.03">
7
+    <application android:label="@string/app_name"
8
+                 android:hasCode="true"
9
+                 android:icon="@drawable/ic_launcher">
10
+        <uses-library android:name="com.s3dv.s3dvsurface" android:required="false" />
11
+        <!-- CAD Viewer -->
12
+        <activity android:name="com.sview.cadviewer.StCADActivity"
13
+                  android:label="@string/app_cad_name"
14
+                  android:launchMode="singleTask"
15
+                  android:configChanges="orientation|keyboardHidden|screenSize"
16
+                  android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
17
+            <!-- Tell NativeActivity the name of or .so -->
18
+            <meta-data android:name="android.app.lib_name" android:value="sview" />
19
+            <intent-filter>
20
+                <action android:name="android.intent.action.MAIN" />
21
+                <category android:name="android.intent.category.LAUNCHER" />
22
+            </intent-filter>
23
+            <intent-filter>
24
+                <action android:name="android.intent.action.VIEW"/>
25
+                <category android:name="android.intent.category.DEFAULT"/>
26
+                <category android:name="android.intent.category.BROWSABLE"/>
27
+
28
+                <data android:mimeType="model/iges"/>
29
+                <data android:mimeType="model/step"/>
30
+
31
+                <data android:mimeType="application/iges"/>
32
+                <data android:mimeType="application/step"/>
33
+            </intent-filter>
34
+            <intent-filter>
35
+                <action android:name="android.intent.action.VIEW" />
36
+                <category android:name="android.intent.category.DEFAULT" />
37
+                <category android:name="android.intent.category.BROWSABLE" />
38
+
39
+                <data android:scheme="" />
40
+                <data android:scheme="file" />
41
+                <data android:scheme="ftp" />
42
+                <data android:scheme="content" />
43
+                <data android:scheme="http" />
44
+                <data android:scheme="https" />
45
+                <data android:host="*" />
46
+
47
+                <data android:pathPattern=".*\\.brep"/>
48
+                <data android:pathPattern=".*\\.BREP"/>
49
+                <data android:pathPattern=".*\\..*\\.brep"/>
50
+                <data android:pathPattern=".*\\..*\\.BREP"/>
51
+                <data android:pathPattern=".*\\..*\\..*\\.brep"/>
52
+                <data android:pathPattern=".*\\..*\\..*\\.BREP"/>
53
+                <data android:pathPattern=".*\\..*\\..*\\..*\\.brep"/>
54
+                <data android:pathPattern=".*\\..*\\..*\\..*\\.BREP"/>
55
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.brep"/>
56
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.BREP"/>
57
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.brep"/>
58
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.BREP"/>
59
+
60
+                <data android:pathPattern=".*\\.rle"/>
61
+                <data android:pathPattern=".*\\.RLE"/>
62
+                <data android:pathPattern=".*\\..*\\.rle"/>
63
+                <data android:pathPattern=".*\\..*\\.RLE"/>
64
+                <data android:pathPattern=".*\\..*\\..*\\.rle"/>
65
+                <data android:pathPattern=".*\\..*\\..*\\.RLE"/>
66
+                <data android:pathPattern=".*\\..*\\..*\\..*\\.rle"/>
67
+                <data android:pathPattern=".*\\..*\\..*\\..*\\.RLE"/>
68
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.rle"/>
69
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.RLE"/>
70
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.rle"/>
71
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.RLE"/>
72
+
73
+                <data android:pathPattern=".*\\.stp"/>
74
+                <data android:pathPattern=".*\\.STP"/>
75
+                <data android:pathPattern=".*\\..*\\.stp"/>
76
+                <data android:pathPattern=".*\\..*\\.STP"/>
77
+                <data android:pathPattern=".*\\..*\\..*\\.stp"/>
78
+                <data android:pathPattern=".*\\..*\\..*\\.STP"/>
79
+                <data android:pathPattern=".*\\..*\\..*\\..*\\.stp"/>
80
+                <data android:pathPattern=".*\\..*\\..*\\..*\\.STP"/>
81
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.stp"/>
82
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.STP"/>
83
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.stp"/>
84
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.STP"/>
85
+
86
+                <data android:pathPattern=".*\\.step"/>
87
+                <data android:pathPattern=".*\\.STEP"/>
88
+                <data android:pathPattern=".*\\..*\\.step"/>
89
+                <data android:pathPattern=".*\\..*\\.STEP"/>
90
+                <data android:pathPattern=".*\\..*\\..*\\.step"/>
91
+                <data android:pathPattern=".*\\..*\\..*\\.STEP"/>
92
+                <data android:pathPattern=".*\\..*\\..*\\..*\\.step"/>
93
+                <data android:pathPattern=".*\\..*\\..*\\..*\\.STEP"/>
94
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.step"/>
95
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.STEP"/>
96
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.step"/>
97
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.STEP"/>
98
+
99
+                <data android:pathPattern=".*\\.igs"/>
100
+                <data android:pathPattern=".*\\.IGS"/>
101
+                <data android:pathPattern=".*\\..*\\.igs"/>
102
+                <data android:pathPattern=".*\\..*\\.IGS"/>
103
+                <data android:pathPattern=".*\\..*\\..*\\.igs"/>
104
+                <data android:pathPattern=".*\\..*\\..*\\.IGS"/>
105
+                <data android:pathPattern=".*\\..*\\..*\\..*\\.igs"/>
106
+                <data android:pathPattern=".*\\..*\\..*\\..*\\.IGS"/>
107
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.igs"/>
108
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.IGS"/>
109
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.igs"/>
110
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.IGS"/>
111
+
112
+                <data android:pathPattern=".*\\.iges"/>
113
+                <data android:pathPattern=".*\\.IGES"/>
114
+                <data android:pathPattern=".*\\..*\\.iges"/>
115
+                <data android:pathPattern=".*\\..*\\.IGES"/>
116
+                <data android:pathPattern=".*\\..*\\..*\\.iges"/>
117
+                <data android:pathPattern=".*\\..*\\..*\\.IGES"/>
118
+                <data android:pathPattern=".*\\..*\\..*\\..*\\.iges"/>
119
+                <data android:pathPattern=".*\\..*\\..*\\..*\\.IGES"/>
120
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.iges"/>
121
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.IGES"/>
122
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.iges"/>
123
+                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.IGES"/>
124
+            </intent-filter>
125
+        </activity>
126
+    </application>
127
+
128
+    <uses-sdk android:minSdkVersion="15" />
129
+    <uses-feature android:glEsVersion="0x00020000"/>
130
+    <uses-permission android:name="android.permission.INTERNET" />
131
+    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
132
+</manifest> 
133
sview-16_06.tar.gz/StCADViewer/StCADFrameBuffer.cpp Added
55
 
1
@@ -0,0 +1,53 @@
2
+/**
3
+ * This source is a part of sView program.
4
+ *
5
+ * Copyright © Kirill Gavrilov, 2016
6
+ */
7
+
8
+#include "StCADFrameBuffer.h"
9
+
10
+#include <OpenGl_ArbFBO.hxx>
11
+
12
+StCADFrameBuffer::StCADFrameBuffer()
13
+: myVPortX(0),
14
+  myVPortY(0),
15
+  myIsFakeFboId(false) {}
16
+
17
+StCADFrameBuffer::~StCADFrameBuffer() {}
18
+
19
+void StCADFrameBuffer::BindBuffer(const Handle(OpenGl_Context)& theGlCtx) {
20
+    GLuint anFboId = myIsFakeFboId ? NO_FRAMEBUFFER : myGlFBufferId;
21
+    theGlCtx->arbFBO->glBindFramebuffer(GL_FRAMEBUFFER, anFboId);
22
+    glViewport(myVPortX, myVPortY, myVPSizeX, myVPSizeY);
23
+}
24
+
25
+void StCADFrameBuffer::BindDrawBuffer(const Handle(OpenGl_Context)& theGlCtx) {
26
+    GLuint anFboId = myIsFakeFboId ? NO_FRAMEBUFFER : myGlFBufferId;
27
+    theGlCtx->arbFBO->glBindFramebuffer(GL_DRAW_FRAMEBUFFER, anFboId);
28
+    glViewport(myVPortX, myVPortY, myVPSizeX, myVPSizeY);
29
+}
30
+
31
+void StCADFrameBuffer::BindReadBuffer(const Handle(OpenGl_Context)& theGlCtx) {
32
+    GLuint anFboId = myIsFakeFboId ? NO_FRAMEBUFFER : myGlFBufferId;
33
+    theGlCtx->arbFBO->glBindFramebuffer(GL_READ_FRAMEBUFFER, anFboId);
34
+}
35
+
36
+/*StCADFrameBuffer::SetupViewport(const Handle(OpenGl_Context)& theGlCtx) {
37
+    glViewport(myVPortX, myVPortY, myVPSizeX, myVPSizeY);
38
+}*/
39
+
40
+void StCADFrameBuffer::wrapFbo(const StGLContext& theStCtx) {
41
+    myNbSamples   = 0;
42
+    myVPortX      = theStCtx.stglViewport().x();
43
+    myVPortY      = theStCtx.stglViewport().y();
44
+    myVPSizeX     = theStCtx.stglViewport().width();
45
+    myVPSizeY     = theStCtx.stglViewport().height();
46
+    myGlFBufferId = theStCtx.stglFramebufferDraw();
47
+    if(myGlFBufferId == NO_FRAMEBUFFER) {
48
+        myIsFakeFboId = true;
49
+        myGlFBufferId = GLuint(-1);
50
+    } else {
51
+        myIsFakeFboId = false;
52
+    }
53
+    myIsOwnBuffer = false;
54
+}
55
sview-16_06.tar.gz/StCADViewer/StCADFrameBuffer.h Added
71
 
1
@@ -0,0 +1,69 @@
2
+/**
3
+ * This source is a part of sView program.
4
+ *
5
+ * Copyright © Kirill Gavrilov, 2016
6
+ */
7
+
8
+#ifndef __StCADFrameBuffer_h_
9
+#define __StCADFrameBuffer_h_
10
+
11
+#include <OpenGl_FrameBuffer.hxx>
12
+#include <StGL/StGLContext.h>
13
+
14
+/**
15
+ * Bridge FBO for rendering into sView.
16
+ */
17
+class StCADFrameBuffer : public OpenGl_FrameBuffer {
18
+
19
+        public:
20
+
21
+    /**
22
+     * Empty constructor.
23
+     */
24
+    ST_LOCAL StCADFrameBuffer();
25
+
26
+    /**
27
+     * Destructor, should be called after Release().
28
+     */
29
+    ST_LOCAL ~StCADFrameBuffer();
30
+
31
+    /**
32
+     * Bind for rendering into this FBO.
33
+     */
34
+    ST_LOCAL virtual void BindBuffer(const Handle(OpenGl_Context)& theGlCtx) Standard_OVERRIDE;
35
+
36
+    /**
37
+     * Bind frame buffer for drawing GL_DRAW_FRAMEBUFFER (to render into the texture).
38
+     */
39
+    ST_LOCAL virtual void BindDrawBuffer(const Handle(OpenGl_Context)& theGlCtx);
40
+
41
+    /**
42
+     * Bind frame buffer for reading GL_READ_FRAMEBUFFER
43
+     */
44
+    ST_LOCAL virtual void BindReadBuffer(const Handle(OpenGl_Context)& theGlCtx);
45
+
46
+    /**
47
+     * Setup viewport to render into FBO
48
+     */
49
+    //ST_LOCAL void SetupViewport(const Handle(OpenGl_Context)& theGlCtx);
50
+
51
+    /**
52
+     * Main initializer.
53
+     */
54
+    ST_LOCAL void wrapFbo(const StGLContext& theStCtx);
55
+
56
+        protected:
57
+
58
+    int  myVPortX;
59
+    int  myVPortY;
60
+    bool myIsFakeFboId;
61
+
62
+        public:
63
+
64
+    DEFINE_STANDARD_RTTI_INLINE(StCADFrameBuffer, OpenGl_FrameBuffer)
65
+
66
+};
67
+
68
+DEFINE_STANDARD_HANDLE(StCADFrameBuffer, OpenGl_FrameBuffer)
69
+
70
+#endif // __StCADFrameBuffer_h_
71
sview-15_11.tar.gz/StCADViewer/StCADLoader.cpp -> sview-16_06.tar.gz/StCADViewer/StCADLoader.cpp Changed
252
 
1
@@ -1,59 +1,78 @@
2
 /**
3
  * This source is a part of sView program.
4
  *
5
- * Copyright © Kirill Gavrilov, 2011-2013
6
+ * Copyright © Kirill Gavrilov, 2011-2016
7
  */
8
 
9
 #ifdef ST_HAVE_STCONFIG
10
     #include <stconfig.conf>
11
 #endif
12
 
13
-#ifdef ST_HAVE_OCCT
14
-    #include <BRep_Tool.hxx>
15
-    #include <BRep_Builder.hxx>
16
-    #include <BRepTools.hxx>          // BREP reader
17
-    #include <BRepBuilderAPI_Sewing.hxx>
18
-    #include <BRepMesh.hxx>
19
-    #include <BRepLProp_SLProps.hxx>
20
-    #include <IGESControl_Reader.hxx> // IGES reader
21
-    #include <STEPControl_Reader.hxx> // STEP reader
22
-    #include <XSControl_WorkSession.hxx>
23
-    #include <ShapeFix_Shape.hxx>
24
-    #include <TopoDS.hxx>
25
-    #include <TopoDS_Shape.hxx>
26
-    #include <TopExp_Explorer.hxx>
27
-#endif
28
-
29
 #include "StCADLoader.h"
30
 #include "StCADPluginInfo.h"
31
-#include "StCADModel.h"
32
-#include "StMeshFileOBJ.h" // OBJ reader
33
 
34
 #include <StStrings/StLangMap.h>
35
-#include <StThreads/StThread.h>
36
+
37
+#include <AIS_Shape.hxx>
38
+#include <BRep_Tool.hxx>
39
+#include <BRep_Builder.hxx>
40
+#include <BRepTools.hxx>
41
+#include <BRepBuilderAPI_Sewing.hxx>
42
+#include <BRepMesh_IncrementalMesh.hxx>
43
+#include <BRepMesh.hxx>
44
+#include <BRepLProp_SLProps.hxx>
45
+#include <IGESControl_Reader.hxx>
46
+#include <STEPControl_Reader.hxx>
47
+#include <XSControl_WorkSession.hxx>
48
+#include <ShapeFix_Shape.hxx>
49
+
50
+#include <Prs3d.hxx>
51
+#include <TopoDS.hxx>
52
+#include <TopoDS_Shape.hxx>
53
+#include <TopExp_Explorer.hxx>
54
 
55
 const StString StCADLoader::ST_CAD_MIME_STRING(ST_CAD_PLUGIN_MIME_CHAR);
56
 const StMIMEList StCADLoader::ST_CAD_MIME_LIST(StCADLoader::ST_CAD_MIME_STRING);
57
 const StArrayList<StString> StCADLoader::ST_CAD_EXTENSIONS_LIST(StCADLoader::ST_CAD_MIME_LIST.getExtensionsList());
58
 
59
-static SV_THREAD_FUNCTION threadFunction(void* theLoader) {
60
-    StCADLoader* aCADLoader = (StCADLoader* )theLoader;
61
-    aCADLoader->mainLoop();
62
-    return SV_THREAD_RETURN 0;
63
+StCADDocument::StCADDocument()
64
+: myXCAFApp(XCAFApp_Application::GetApplication()) {
65
+    reset();
66
 }
67
 
68
-StCADLoader::StCADLoader(const StHandle<StLangMap>& theLangMap)
69
+void StCADDocument::reset() {
70
+    // close old document
71
+    if(!myXCAFDoc.IsNull()) {
72
+        if(myXCAFDoc->HasOpenCommand()) {
73
+            myXCAFDoc->AbortCommand();
74
+        }
75
+
76
+        myXCAFDoc->Main().Root().ForgetAllAttributes(Standard_True);
77
+        myXCAFApp->Close(myXCAFDoc);
78
+        myXCAFDoc.Nullify();
79
+    }
80
+
81
+    // create new document
82
+    myXCAFApp->NewDocument(TCollection_ExtendedString("BinXCAF"), myXCAFDoc);
83
+    if(!myXCAFDoc.IsNull()) {
84
+        // Set the maximum number of available "undo" actions
85
+        myXCAFDoc->SetUndoLimit(10);
86
+    }
87
+}
88
+
89
+StCADLoader::StCADLoader(const StHandle<StLangMap>&  theLangMap,
90
+                         const StHandle<StPlayList>& thePlayList,
91
+                         const bool                  theToStartThread)
92
 : myLangMap(theLangMap),
93
-  myPlayList(1),
94
+  myPlayList(thePlayList),
95
   myEvLoadNext(false),
96
+  myDefaultMat(Graphic3d_NOM_SILVER),
97
   myIsLoaded(false),
98
   myToQuit(false) {
99
-    myPlayList.setExtensions(ST_CAD_EXTENSIONS_LIST);
100
-    /// force thread-safe OCCT memory management
101
-#ifdef ST_HAVE_OCCT
102
-    Standard::SetReentrant(Standard_True);
103
-#endif
104
-    myThread = new StThread(threadFunction, (void* )this);
105
+    myPlayList->setExtensions(ST_CAD_EXTENSIONS_LIST);
106
+    if(theToStartThread) {
107
+        myThread = new StThread(threadFunction, (void* )this);
108
+    }
109
 }
110
 
111
 StCADLoader::~StCADLoader() {
112
@@ -72,7 +91,6 @@
113
     return StString("Can not load CAD model from file\n\"") + aFileName + "\"\n" + theLibDescr;
114
 }
115
 
116
-#ifdef ST_HAVE_OCCT
117
 TopoDS_Shape StCADLoader::loadIGES(const StString& theFileToLoadPath) {
118
     TopoDS_Shape aShape;
119
     IGESControl_Reader aReader;
120
@@ -154,17 +172,6 @@
121
     aReader.TransferRoots();
122
     return aReader.OneShape();
123
 }
124
-#endif
125
-
126
-StHandle<StGLMesh> StCADLoader::loadOBJ(const StString& theFileToLoadPath) {
127
-    StMeshFileOBJ anOBJReader;
128
-    if(!anOBJReader.load(theFileToLoadPath)) {
129
-        /// description?
130
-        return StHandle<StGLMesh>();
131
-    }
132
-    StHandle<StGLMesh> aMesh = anOBJReader.getResult();
133
-    return aMesh;
134
-}
135
 
136
 bool StCADLoader::loadModel(const StHandle<StFileNode>& theSource) {
137
     const StMIME stMIMEType = theSource->getMIME();
138
@@ -172,7 +179,6 @@
139
     const StString anExt = !stMIMEType.isEmpty() ? stMIMEType.getExtension() : StFileNode::getExtension(aFileToLoadPath);
140
 
141
     StHandle<StGLMesh> aMesh;
142
-#ifdef ST_HAVE_OCCT
143
     TopoDS_Shape aShape;
144
     if(anExt.isEqualsIgnoreCase(stCString(ST_IGS_EXT)) || anExt.isEqualsIgnoreCase(stCString(ST_IGES_EXT))) {
145
         aShape = loadIGES(aFileToLoadPath);
146
@@ -186,60 +192,57 @@
147
         } else if(aShape.IsNull()) {
148
             signals.onError(formatError(aFileToLoadPath, "No shapes found in the BREP file"));
149
         }
150
-    } else
151
-#endif
152
-    if(anExt.isEqualsIgnoreCase(stCString(ST_OBJ_EXT))) {
153
-        ///signals.onError(formatError(aFileToLoadPath, "OBJ import not yet implemented!"));
154
-        aMesh = StCADLoader::loadOBJ(aFileToLoadPath);
155
     } else {
156
         signals.onError(formatError(aFileToLoadPath, "Format doesn't supported"));
157
     }
158
-#ifdef ST_HAVE_OCCT
159
+
160
     bool hasShape = !aShape.IsNull();
161
-#endif
162
+    computeMesh(aShape);
163
+    Handle(AIS_Shape) aShapePrs = new AIS_Shape(aShape);
164
 
165
     // setup new output shape
166
-    myShapeLock.lock();
167
-    #ifdef ST_HAVE_OCCT
168
-        if(!aShape.IsNull()) {
169
-            myMesh = new StCADModel(aShape);
170
-            computeMesh();
171
-            aShape.Nullify();
172
-        } else {
173
-            myMesh = aMesh;
174
-        }
175
-    #else
176
-        myMesh = aMesh;
177
-    #endif
178
+    myResultLock.lock();
179
+        myPrsList.Append(aShapePrs);
180
+        aShape.Nullify();
181
         myIsLoaded = true;
182
-    myShapeLock.unlock();
183
-
184
-#ifdef ST_HAVE_OCCT
185
+    myResultLock.unlock();
186
     return hasShape;
187
-#else
188
-    return false;
189
-#endif
190
 }
191
 
192
-bool StCADLoader::computeMesh() {
193
-    /// TODO (Kirill Gavrilov#9)
194
-    if(!myMesh.isNull()) {
195
-        return myMesh->computeMesh();
196
+bool StCADLoader::computeMesh(const TopoDS_Shape& theShape) {
197
+    if(theShape.IsNull()) {
198
+        return false;
199
+    }
200
+
201
+    Handle(Prs3d_Drawer) aDrawer = new Prs3d_Drawer();
202
+    Standard_Real aDeflection = Prs3d::GetDeflection(theShape, aDrawer);
203
+    if(!BRepTools::Triangulation(theShape, aDeflection)) {
204
+        BRepMesh_IncrementalMesh anAlgo;
205
+        anAlgo.ChangeParameters().Deflection = aDeflection;
206
+        anAlgo.ChangeParameters().Angle      = aDrawer->HLRAngle();
207
+        anAlgo.ChangeParameters().InParallel = Standard_True;
208
+        anAlgo.SetShape(theShape);
209
+        anAlgo.Perform();
210
     }
211
-    return false;
212
+    return true;
213
 }
214
 
215
-bool StCADLoader::getNextShape(StHandle<StGLMesh>& theMesh) {
216
+bool StCADLoader::getNextDoc(NCollection_Sequence<Handle(AIS_InteractiveObject)>& thePrsList,
217
+                             StHandle<StCADDocument>& theDoc) {
218
+    if(!myResultLock.tryLock()) {
219
+        return false;
220
+    }
221
+
222
     bool hasNewShape = false;
223
-    if(myShapeLock.tryLock()) {
224
-        if(myIsLoaded) {
225
-            theMesh = myMesh;
226
-            myMesh.nullify();
227
-            hasNewShape = true;
228
-            myIsLoaded = false;
229
-        }
230
-        myShapeLock.unlock();
231
+    if(myIsLoaded) {
232
+        thePrsList.Append(myPrsList);
233
+        theDoc = myDoc;
234
+        myPrsList.Clear();
235
+        myDoc.nullify();
236
+        hasNewShape = true;
237
+        myIsLoaded = false;
238
     }
239
+    myResultLock.unlock();
240
     return hasNewShape;
241
 }
242
 
243
@@ -254,7 +257,7 @@
244
         } else {
245
             // load next model (set as current in playlist)
246
             myEvLoadNext.reset();
247
-            if(myPlayList.getCurrentFile(aFileToLoad, aFileParams)) {
248
+            if(myPlayList->getCurrentFile(aFileToLoad, aFileParams)) {
249
                 loadModel(aFileToLoad);
250
             }
251
         }
252
sview-15_11.tar.gz/StCADViewer/StCADLoader.h -> sview-16_06.tar.gz/StCADViewer/StCADLoader.h Changed
130
 
1
@@ -1,21 +1,50 @@
2
 /**
3
  * This source is a part of sView program.
4
  *
5
- * Copyright © Kirill Gavrilov, 2011-2013
6
+ * Copyright © Kirill Gavrilov, 2011-2016
7
  */
8
 
9
 #ifndef __StCADLoader_h_
10
 #define __StCADLoader_h_
11
 
12
+#if defined(_WIN32)
13
+    #include <windows.h>
14
+#endif
15
+
16
+#include <AIS_InteractiveObject.hxx>
17
+#include <NCollection_Sequence.hxx>
18
+#include <TopoDS_Shape.hxx>
19
+#include <TDocStd_Document.hxx>
20
+#include <XCAFApp_Application.hxx>
21
+
22
 #include <StStrings/StString.h>
23
 #include <StFile/StMIMEList.h>
24
 #include <StGL/StPlayList.h>
25
 #include <StGLMesh/StGLMesh.h>
26
 #include <StSlots/StSignal.h>
27
+#include <StThreads/StThread.h>
28
 
29
 class StLangMap;
30
 class StThread;
31
 
32
+class StCADDocument {
33
+
34
+        public:
35
+
36
+    ST_LOCAL StCADDocument();
37
+    ST_LOCAL void reset();
38
+
39
+    const Handle(XCAFApp_Application)& getXCAFApp() const { return myXCAFApp; }
40
+    const Handle(TDocStd_Document)&    getXCAFDoc() const { return myXCAFDoc; }
41
+    Handle(TDocStd_Document)&          changeXCAFDoc()    { return myXCAFDoc; }
42
+
43
+        protected:
44
+
45
+    Handle(XCAFApp_Application) myXCAFApp;
46
+    Handle(TDocStd_Document)    myXCAFDoc;
47
+
48
+};
49
+
50
 class StCADLoader {
51
 
52
         public:
53
@@ -24,8 +53,10 @@
54
     static const StMIMEList ST_CAD_MIME_LIST;
55
     static const StArrayList<StString> ST_CAD_EXTENSIONS_LIST;
56
 
57
-    ST_LOCAL StCADLoader(const StHandle<StLangMap>& theLangMap);
58
-    ST_LOCAL ~StCADLoader();
59
+    ST_LOCAL StCADLoader(const StHandle<StLangMap>&  theLangMap,
60
+                         const StHandle<StPlayList>& thePlayList,
61
+                         const bool                  theToStartThread = true);
62
+    ST_LOCAL virtual ~StCADLoader();
63
 
64
     ST_LOCAL void mainLoop();
65
 
66
@@ -33,11 +64,8 @@
67
         myEvLoadNext.set();
68
     }
69
 
70
-    ST_LOCAL bool getNextShape(StHandle<StGLMesh>& theMesh);
71
-
72
-    ST_LOCAL StPlayList& getPlayList() {
73
-        return myPlayList;
74
-    }
75
+    ST_LOCAL virtual bool getNextDoc(NCollection_Sequence<Handle(AIS_InteractiveObject)>& thePrsList,
76
+                                     StHandle<StCADDocument>& theDoc);
77
 
78
         public:  //!< Signals
79
 
80
@@ -49,26 +77,32 @@
81
         StSignal<void (const StCString& )> onError;
82
     } signals;
83
 
84
-        private:
85
+        protected:
86
 
87
-#ifdef ST_HAVE_OCCT
88
     ST_LOCAL TopoDS_Shape loadIGES(const StString& theFileToLoadPath);
89
     ST_LOCAL TopoDS_Shape loadSTEP(const StString& theFileToLoadPath);
90
-#endif
91
-    ST_LOCAL StHandle<StGLMesh> loadOBJ(const StString& theFileToLoadPath);
92
-    ST_LOCAL bool loadModel(const StHandle<StFileNode>& theSource);
93
-    ST_LOCAL bool computeMesh();
94
-
95
-        private:
96
-
97
-    StHandle<StThread>  myThread;
98
-    StHandle<StLangMap> myLangMap;
99
-    StPlayList          myPlayList;
100
-    StCondition         myEvLoadNext;
101
-    StHandle<StGLMesh>  myMesh;
102
-    StMutex             myShapeLock;
103
-    volatile bool       myIsLoaded;
104
-    volatile bool       myToQuit;
105
+
106
+    ST_LOCAL virtual bool loadModel(const StHandle<StFileNode>& theSource);
107
+    ST_LOCAL virtual bool computeMesh(const TopoDS_Shape& theShape);
108
+
109
+    static SV_THREAD_FUNCTION threadFunction(void* theLoader) {
110
+        StCADLoader* aCADLoader = (StCADLoader* )theLoader;
111
+        aCADLoader->mainLoop();
112
+        return SV_THREAD_RETURN 0;
113
+    }
114
+
115
+        protected:
116
+
117
+    StHandle<StThread>   myThread;
118
+    StHandle<StLangMap>  myLangMap;
119
+    StHandle<StPlayList> myPlayList;
120
+    StCondition          myEvLoadNext;
121
+    StHandle<StCADDocument>  myDoc;
122
+    NCollection_Sequence<Handle(AIS_InteractiveObject)> myPrsList;
123
+    Graphic3d_MaterialAspect myDefaultMat;
124
+    StMutex              myResultLock;
125
+    volatile bool        myIsLoaded;
126
+    volatile bool        myToQuit;
127
 
128
 };
129
 
130
sview-16_06.tar.gz/StCADViewer/StCADMsgPrinter.cpp Added
59
 
1
@@ -0,0 +1,57 @@
2
+/**
3
+ * This source is a part of sView program.
4
+ *
5
+ * Copyright © Kirill Gavrilov, 2016
6
+ */
7
+
8
+#include "StCADMsgPrinter.h"
9
+
10
+#include <TCollection_AsciiString.hxx>
11
+#include <TCollection_ExtendedString.hxx>
12
+
13
+StCADMsgPrinter::StCADMsgPrinter(const StHandle<StMsgQueue> theMsgQueue)
14
+: myMsgQueue(theMsgQueue) {}
15
+
16
+void StCADMsgPrinter::Send(const TCollection_ExtendedString& theString,
17
+                           const Message_Gravity             theGravity,
18
+                           const Standard_Boolean            theToPutEndl) const {
19
+    send(StString((const stUtf16_t* )theString.ToExtString()), theGravity, theToPutEndl);
20
+}
21
+
22
+void StCADMsgPrinter::Send(const Standard_CString theString,
23
+                           const Message_Gravity  theGravity,
24
+                           const Standard_Boolean theToPutEndl) const {
25
+    send(StString(theString), theGravity, theToPutEndl);
26
+}
27
+
28
+void StCADMsgPrinter::Send(const TCollection_AsciiString& theString,
29
+                           const Message_Gravity          theGravity,
30
+                           const Standard_Boolean         theToPutEndl) const {
31
+    send(StString(theString.ToCString()), theGravity, theToPutEndl);
32
+}
33
+
34
+void StCADMsgPrinter::send(const StString&        theString,
35
+                           const Message_Gravity  theGravity,
36
+                           const Standard_Boolean /*theToPutEndl*/) const {
37
+    if(theGravity < myTraceLevel) {
38
+        ST_DEBUG_LOG(theString);
39
+        return;
40
+    }
41
+
42
+    switch(theGravity) {
43
+        case Message_Trace:
44
+        case Message_Info: {
45
+            ST_DEBUG_LOG(theString);
46
+            break;
47
+        }
48
+        case Message_Warning: {
49
+            myMsgQueue->pushInfo(theString);
50
+            break;
51
+        }
52
+        case Message_Alarm:
53
+        case Message_Fail: {
54
+            myMsgQueue->pushError(theString);
55
+            break;
56
+        }
57
+    }
58
+}
59
sview-16_06.tar.gz/StCADViewer/StCADMsgPrinter.h Added
67
 
1
@@ -0,0 +1,65 @@
2
+/**
3
+ * This source is a part of sView program.
4
+ *
5
+ * Copyright © Kirill Gavrilov, 2016
6
+ */
7
+
8
+#ifndef __StCADMsgPrinter_h_
9
+#define __StCADMsgPrinter_h_
10
+
11
+#include <Message_Printer.hxx>
12
+#include <StStrings/StMsgQueue.h>
13
+
14
+/**
15
+ * Printer redirecting OCCT messages to GUI.
16
+ */
17
+class StCADMsgPrinter : public Message_Printer {
18
+
19
+        public:
20
+
21
+    /**
22
+     * Main constructor.
23
+     */
24
+    ST_LOCAL StCADMsgPrinter(const StHandle<StMsgQueue> theMsgQueue);
25
+
26
+    /**
27
+     * Send specified message - redirector.
28
+     */
29
+    ST_LOCAL virtual void Send(const TCollection_ExtendedString& theString,
30
+                               const Message_Gravity             theGravity,
31
+                               const Standard_Boolean            theToPutEndl) const Standard_OVERRIDE;
32
+
33
+    /**
34
+     * Send specified message - redirector.
35
+     */
36
+    ST_LOCAL virtual void Send(const Standard_CString theString,
37
+                               const Message_Gravity  theGravity,
38
+                               const Standard_Boolean theToPutEndl) const Standard_OVERRIDE;
39
+
40
+    /**
41
+     * Send specified message - redirector.
42
+     */
43
+    ST_LOCAL virtual void Send(const TCollection_AsciiString& theString,
44
+                               const Message_Gravity          theGravity,
45
+                               const Standard_Boolean         theToPutEndl) const Standard_OVERRIDE;
46
+
47
+    /**
48
+     * Send specified message - main implementation.
49
+     */
50
+    ST_LOCAL void send(const StString&        theString,
51
+                       const Message_Gravity  theGravity,
52
+                       const Standard_Boolean theToPutEndl) const;
53
+
54
+        private:
55
+
56
+    StHandle<StMsgQueue> myMsgQueue;
57
+
58
+        public:
59
+
60
+    DEFINE_STANDARD_RTTI_INLINE(StCADMsgPrinter, Message_Printer)
61
+
62
+};
63
+
64
+DEFINE_STANDARD_HANDLE(StCADMsgPrinter, Message_Printer)
65
+
66
+#endif // __StCADMsgPrinter_h_
67
sview-16_06.tar.gz/StCADViewer/StCADPixMap.h Added
94
 
1
@@ -0,0 +1,92 @@
2
+/**
3
+ * This source is a part of sView program.
4
+ *
5
+ * Copyright © Kirill Gavrilov, 2016
6
+ */
7
+
8
+#ifndef __StCADPixMap_h_
9
+#define __StCADPixMap_h_
10
+
11
+#include <Image_PixMap.hxx>
12
+
13
+#include <StImage/StImageFile.h>
14
+
15
+/**
16
+ * StImage wrapper.
17
+ */
18
+class StCADPixMap : public Image_PixMap {
19
+
20
+        public:
21
+
22
+    /**
23
+     * Empty constructor.
24
+     */
25
+    ST_LOCAL StCADPixMap() {}
26
+
27
+    /**
28
+     * Destructor
29
+     */
30
+    ST_LOCAL virtual ~StCADPixMap() {}
31
+
32
+    /**
33
+     * Clear the image.
34
+     */
35
+    ST_LOCAL virtual void Clear() Standard_OVERRIDE {
36
+        Image_PixMap::Clear();
37
+        myStImage.nullify();
38
+    }
39
+
40
+    /**
41
+     * Load image from file.
42
+     */
43
+    ST_LOCAL bool Load(const TCollection_AsciiString& theFileName) {
44
+        Clear();
45
+        StHandle<StAVImage> anImg = new StAVImage();
46
+        if(!anImg->loadExtra(theFileName.ToCString(), StImageFile::ST_TYPE_NONE, NULL, 0, true)) {
47
+            Clear();
48
+            return false;
49
+        }
50
+
51
+        Image_PixMap::ImgFormat anImgFormat = Image_PixMap::ImgRGBA;
52
+        switch(anImg->getPlane().getFormat()) {
53
+            case StImagePlane::ImgUNKNOWN: return false;
54
+            case StImagePlane::ImgGray:    anImgFormat = ImgGray; break;
55
+            case StImagePlane::ImgGray16:  return false;
56
+            case StImagePlane::ImgRGB:     anImgFormat = ImgRGB; break;
57
+            case StImagePlane::ImgBGR:     anImgFormat = ImgBGR; break;
58
+            case StImagePlane::ImgRGB32:   anImgFormat = ImgRGB32; break;
59
+            case StImagePlane::ImgBGR32:   anImgFormat = ImgBGR32; break;
60
+            case StImagePlane::ImgRGB48:   return false;
61
+            case StImagePlane::ImgRGBA:    anImgFormat = ImgRGBA; break;
62
+            case StImagePlane::ImgBGRA:    anImgFormat = ImgBGRA; break;
63
+            case StImagePlane::ImgRGBA64:  return false;
64
+            case StImagePlane::ImgGrayF:   anImgFormat = ImgGrayF; break;
65
+            case StImagePlane::ImgRGBF:    anImgFormat = ImgRGBF; break;
66
+            case StImagePlane::ImgBGRF:    anImgFormat = ImgBGRF; break;
67
+            case StImagePlane::ImgRGBAF:   anImgFormat = ImgRGBAF; break;
68
+            case StImagePlane::ImgBGRAF:   anImgFormat = ImgBGRAF; break;
69
+        }
70
+
71
+        ///SetTopDown (anImg->getPlane().isTopDown());
72
+        Image_PixMap::InitWrapper (anImgFormat,
73
+                                   anImg->changePlane().changeData(),
74
+                                   anImg->changePlane().getSizeX(),
75
+                                   anImg->changePlane().getSizeY(),
76
+                                   anImg->changePlane().getSizeRowBytes());
77
+        myStImage = anImg;
78
+        return true;
79
+    }
80
+
81
+        private:
82
+
83
+    StHandle<StImageFile> myStImage;
84
+
85
+        public:
86
+
87
+    DEFINE_STANDARD_RTTI_INLINE(StCADPixMap, Image_PixMap)
88
+
89
+};
90
+
91
+DEFINE_STANDARD_HANDLE(StCADPixMap, Image_PixMap)
92
+
93
+#endif // __StCADPixMap_h_
94
sview-15_11.tar.gz/StCADViewer/StCADPluginInfo.h -> sview-16_06.tar.gz/StCADViewer/StCADPluginInfo.h Changed
22
 
1
@@ -43,10 +43,10 @@
2
 /**
3
  *.obj - simplest triangulation exchange format
4
  */
5
-#define ST_OBJ_MIME "model/obj"
6
+/*#define ST_OBJ_MIME "model/obj"
7
 #define ST_OBJ_EXT  "obj"
8
 #define ST_OBJ_DESC "OBJ - triangulation exchange format"
9
-#define ST_OBJ_MIME_STRING ST_OBJ_MIME ":" ST_OBJ_EXT  ":" ST_OBJ_DESC
10
+#define ST_OBJ_MIME_STRING ST_OBJ_MIME ":" ST_OBJ_EXT  ":" ST_OBJ_DESC*/
11
 
12
 /**
13
  *.ply - triangulation file
14
@@ -70,7 +70,6 @@
15
 #define ST_CAD_PLUGIN_MIME_CHAR ST_IGS_MIME_STRING ";" ST_IGES_MIME_STRING ";" \
16
 ST_STP_MIME_STRING  ";" ST_STEP_MIME_STRING ";" \
17
 ST_BREP_MIME_STRING ";" ST_RLE_MIME_STRING  ";" \
18
-ST_OBJ_MIME_STRING \
19
 "\000"
20
 
21
 #endif //__StCADPluginInfo_h_
22
sview-15_11.tar.gz/StCADViewer/StCADViewer.cbp -> sview-16_06.tar.gz/StCADViewer/StCADViewer.cbp Changed
61
 
1
@@ -195,15 +195,14 @@
2
                    <Add directory="/usr/include/opencascade" />
3
                </Compiler>
4
                <Linker>
5
-                   <Add option="-s" />
6
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
7
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
8
                    <Add option="-framework Appkit" />
9
                    <Add option="-framework OpenGL" />
10
                    <Add library="objc" />
11
                </Linker>
12
                <ExtraCommands>
13
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
14
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
15
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
16
                </ExtraCommands>
17
            </Target>
18
            <Target title="MAC_gcc_DEBUG">
19
@@ -224,14 +223,14 @@
20
                    <Add directory="/usr/include/opencascade" />
21
                </Compiler>
22
                <Linker>
23
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
24
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
25
                    <Add option="-framework Appkit" />
26
                    <Add option="-framework OpenGL" />
27
                    <Add library="objc" />
28
                </Linker>
29
                <ExtraCommands>
30
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
31
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
32
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
33
                </ExtraCommands>
34
            </Target>
35
        </Build>
36
@@ -262,10 +261,11 @@
37
            <Add directory="../lib/$(TARGET_NAME)" />
38
            <Add directory="../bin/$(TARGET_NAME)" />
39
        </Linker>
40
+       <Unit filename="main.cpp" />
41
        <Unit filename="StCADLoader.cpp" />
42
        <Unit filename="StCADLoader.h" />
43
-       <Unit filename="StCADModel.cpp" />
44
-       <Unit filename="StCADModel.h" />
45
+       <Unit filename="StCADMsgPrinter.cpp" />
46
+       <Unit filename="StCADMsgPrinter.h" />
47
        <Unit filename="StCADPluginInfo.h" />
48
        <Unit filename="StCADViewer.cpp" />
49
        <Unit filename="StCADViewer.h" />
50
@@ -277,9 +277,8 @@
51
        </Unit>
52
        <Unit filename="StCADViewerGUI.cpp" />
53
        <Unit filename="StCADViewerGUI.h" />
54
+       <Unit filename="StCADViewerStrings.cpp" />
55
        <Unit filename="StCADViewerStrings.h" />
56
-       <Unit filename="StMeshFileOBJ.cpp" />
57
-       <Unit filename="StMeshFileOBJ.h" />
58
        <Unit filename="lang/english/StCADViewer.lng">
59
            <Option target="&lt;{~None~}&gt;" />
60
        </Unit>
61
sview-15_11.tar.gz/StCADViewer/StCADViewer.cpp -> sview-16_06.tar.gz/StCADViewer/StCADViewer.cpp Changed
1515
 
1
@@ -1,18 +1,25 @@
2
 /**
3
  * This source is a part of sView program.
4
  *
5
- * Copyright © Kirill Gavrilov, 2011-2013
6
+ * Copyright © Kirill Gavrilov, 2011-2016
7
  */
8
 
9
-#include "StCADModel.h"
10
 #include "StCADViewer.h"
11
+
12
 #include "StCADViewerGUI.h"
13
+#include "StCADViewerStrings.h"
14
 #include "StCADLoader.h"
15
-
16
-#include <StGLMesh/StGLMesh.h>
17
-#include <StGLMesh/StGLPrism.h>
18
-#include <StGLMesh/StGLUVSphere.h>
19
-#include <StGLMesh/StBndCameraBox.h>
20
+#include "StCADWindow.h"
21
+#include "StCADFrameBuffer.h"
22
+#include "StCADMsgPrinter.h"
23
+
24
+#include <AIS_ConnectedInteractive.hxx>
25
+#include <AIS_Shape.hxx>
26
+#include <Message_Messenger.hxx>
27
+#include <Message_PrinterOStream.hxx>
28
+#include <OpenGl_GraphicDriver.hxx>
29
+#include <V3d_DirectionalLight.hxx>
30
+#include <V3d_AmbientLight.hxx>
31
 
32
 #include <StGLCore/StGLCore20.h>
33
 #include <StGLWidgets/StGLMsgStack.h>
34
@@ -26,223 +33,141 @@
35
 #include "../StOutPageFlip/StOutPageFlipExt.h"
36
 #include "../StOutDistorted/StOutDistorted.h"
37
 
38
+#ifdef __ANDROID__
39
+    #include <EGL/egl.h>
40
+#endif
41
+
42
 namespace {
43
+    static const char ST_SETTING_LAST_FOLDER[] = "lastFolder";
44
     static const char ST_SETTING_FPSTARGET[] = "fpsTarget";
45
-    static const char ST_SETTING_SHOW_FPS[]  = "toShowFps";
46
-    static const StString ST_PARAM_NORMALS   = "showNormals";
47
-    static const StString ST_PARAM_TRIHEDRON = "showTrihedron";
48
-    static const StString ST_PARAM_PROJMODE  = "projMode";
49
-    static const StString ST_PARAM_FILLMODE  = "fillMode";
50
 }
51
 
52
-class ST_LOCAL StGLCamera {
53
-
54
-        private:
55
-
56
-    StGLVec3   myEye;        //!< eye position
57
-    StGLVec3   myCenter;     //!< look to center
58
-    StGLDir3   myUp;         //!< camera up direction
59
-    StGLMatrix myViewMatrix; //!< model view matrix
60
-
61
-        public:
62
-
63
-    StGLCamera()
64
-    : ///myEye(StGLVec3::DZ()),
65
-      myEye(0.0f, 0.0f, 10.0f),
66
-      myCenter(0.0f, 0.0f, 0.0f),
67
-      myUp(StGLVec3::DY()),
68
-      myViewMatrix() {
69
-        updateMatrix();
70
-    }
71
-
72
-    ~StGLCamera() {}
73
-
74
-    const StGLVec3& getEye() const {
75
-        return myEye;
76
-    }
77
-
78
-    void setEye(const StGLVec3& theEye) {
79
-        myEye = theEye;
80
-        updateMatrix();
81
-    }
82
-
83
-    const StGLVec3& getCenter() const {
84
-        return myCenter;
85
-    }
86
-
87
-    void setCenter(const StGLVec3& theCenter) {
88
-        myCenter = theCenter;
89
-        updateMatrix();
90
-    }
91
-
92
-    const StGLVec3& getUp() const {
93
-        return myUp;
94
-    }
95
-
96
-    void setUp(const StGLVec3& theUp) {
97
-        myUp = theUp;
98
-        updateMatrix();
99
-    }
100
-
101
-    StGLDir3 getForward() const {
102
-        return myCenter - myEye;
103
-    }
104
-
105
-    StGLDir3 getSide() const {
106
-        // side = forward x up
107
-        return StGLVec3::cross(getForward(), myUp);
108
-    }
109
-
110
-    void updateMatrix() {
111
-        // recompute up as: up = side x forward
112
-        //myUp = StGLVec3::cross(getSide(), getForward());
113
-        myViewMatrix.initIdentity();
114
-        myViewMatrix.lookAt(myEye, myCenter, myUp);
115
-    }
116
-
117
-    void rotateX(GLfloat theAngleDegrees) {
118
-        StGLMatrix aRotMat;
119
-        aRotMat.translate(myCenter);
120
-        aRotMat.rotate(theAngleDegrees, myUp);
121
-        aRotMat.translate(-myCenter);
122
-        StGLVec4 aVec = aRotMat * StGLVec4(myEye, 1.0f);
123
-        myEye = aVec.xyz();
124
-        updateMatrix();
125
-    }
126
-
127
-    void rotateY(GLfloat theAngleDegrees) {
128
-        StGLMatrix aRotMat;
129
-        StGLVec3 anEyeDir = myCenter - myEye;
130
-        GLfloat anEyeMagnitude = anEyeDir.modulus();
131
-        anEyeDir.normalize();
132
-
133
-        StGLVec3 aRotVec = StGLVec3::cross(myUp, anEyeDir);
134
-        aRotVec.normalize();
135
-
136
-        aRotMat.rotate(theAngleDegrees, aRotVec);
137
-        StGLVec4 aVec = aRotMat * StGLVec4(myUp, 1.0f);
138
-        myUp = aVec.xyz();
139
-        aVec = aRotMat * StGLVec4(anEyeDir, 1.0f);
140
-        myEye = aVec.xyz();
141
-        myEye *= anEyeMagnitude;
142
-        myEye = myCenter - myEye;
143
-        updateMatrix();
144
-    }
145
-
146
-    void rotateZ(GLfloat theAngleDegrees) {
147
-        StGLMatrix aRotMat;
148
-        StGLVec3 aFrontVec = myEye - myCenter;
149
-        aFrontVec.normalize();
150
-        aRotMat.rotate(theAngleDegrees, aFrontVec);
151
-        StGLVec4 aVec = aRotMat * StGLVec4(myUp, 1.0f);
152
-        myUp = aVec.xyz();
153
-        updateMatrix();
154
-    }
155
-
156
-    operator const StGLMatrix&() const { return myViewMatrix; }
157
-    operator const GLfloat*() const { return myViewMatrix; }
158
-
159
-};
160
-
161
-
162
-/**
163
- * Special class to render the normals arrays.
164
- */
165
-class ST_LOCAL StGLNormalsMesh : public StGLMesh {
166
-
167
-        public:
168
-
169
-    StGLNormalsMesh()
170
-    : StGLMesh(GL_LINES) {}
171
-
172
-    virtual ~StGLNormalsMesh() {}
173
-
174
-    /**
175
-     * Will extract vertices and normals from the mesh.
176
-     */
177
-    bool init(StGLContext&    theCtx,
178
-              const StGLMesh& theMesh) {
179
-        // reset current state
180
-        clearRAM();
181
-        clearVRAM(theCtx);
182
-
183
-        // verify input mesh
184
-        const StArrayList<StGLVec3>& aVertices = theMesh.getVertices();
185
-        const StArrayList<StGLVec3>& aNormals  = theMesh.getNormals();
186
-        if(aVertices.isEmpty() || aVertices.size() != aNormals.size()) {
187
-            return false;
188
-        }
189
-
190
-        // compute normals scale factor (length)
191
-        GLfloat aScaleFactor = 1.0f;
192
-        StBndBox aBndBox;
193
-        aBndBox.enlarge(aVertices);
194
-        aScaleFactor = (aBndBox.getDX()+ aBndBox.getDY() + aBndBox.getDZ()) * 0.333f * 0.01f;
195
-
196
-        myVertices.initList(aVertices.size() * 2);
197
-        for(size_t aVertId = 0; aVertId < aVertices.size(); ++aVertId) {
198
-            const StGLVec3& aNode   = aVertices.getValue(aVertId);
199
-            const StGLVec3& aNormal = aNormals.getValue(aVertId);
200
-            myVertices.add(aNode);
201
-            myVertices.add(aNode + aNormal * aScaleFactor);
202
-        }
203
-        myVertexBuf.init(theCtx, myVertices);
204
-
205
-        // no need to store this list in RAM
206
-        //clearRAM();
207
-        return true;
208
-    }
209
-
210
-};
211
-
212
-static StGLCamera myCam; /// TODO move to...
213
-static StGLPrism myPrism; /// debug bnd box
214
-static StGLNormalsMesh* myNormalsMesh = NULL; /// TODO move to...
215
-
216
 const StString StCADViewer::ST_DRAWER_PLUGIN_NAME = "StCADViewer";
217
 
218
+void StCADViewer::updateStrings() {
219
+    using namespace StCADViewerStrings;
220
+    params.IsFullscreen->setName(tr(MENU_VIEW_FULLSCREEN));
221
+    params.ToShowPlayList->setName(stCString("Show Playlist"));
222
+    params.ToShowFps->setName(tr(MENU_SHOW_FPS));
223
+    params.ToShowTrihedron->setName(tr(MENU_VIEW_TRIHEDRON));
224
+    params.ProjectMode->setName(tr(MENU_VIEW_PROJECTION));
225
+    params.ProjectMode->defineOption(ST_PROJ_ORTHO,  tr(MENU_VIEW_PROJ_ORTHO));
226
+    params.ProjectMode->defineOption(ST_PROJ_PERSP,  tr(MENU_VIEW_PROJ_PERSP));
227
+    params.ProjectMode->defineOption(ST_PROJ_STEREO, tr(MENU_VIEW_PROJ_STEREO));
228
+    myLangMap->params.language->setName(tr(MENU_HELP_LANGS));
229
+}
230
+
231
 StCADViewer::StCADViewer(const StHandle<StResourceManager>& theResMgr,
232
                          const StNativeWin_t                theParentWin,
233
                          const StHandle<StOpenInfo>&        theOpenInfo)
234
 : StApplication(theResMgr, theParentWin, theOpenInfo),
235
+  myPlayList(new StPlayList(1, false)),
236
   myIsLeftHold(false),
237
   myIsRightHold(false),
238
   myIsMiddleHold(false),
239
-  myIsCtrlPressed(false),
240
-  myIsCamIterative(false) {
241
+  myIsCtrlPressed(false) {
242
     mySettings = new StSettings(myResMgr, ST_DRAWER_PLUGIN_NAME);
243
+    myLangMap  = new StTranslations(myResMgr, ST_DRAWER_PLUGIN_NAME);
244
+    StCADViewerStrings::loadDefaults(*myLangMap);
245
+    myLangMap->params.language->signals.onChanged += stSlot(this, &StCADViewer::doChangeLanguage);
246
 
247
     myTitle = "sView - CAD Viewer";
248
     //
249
-    params.isFullscreen = new StBoolParam(false);
250
-    params.isFullscreen->signals.onChanged.connect(this, &StCADViewer::doFullscreen);
251
-    params.ToShowFps = new StBoolParam(false);
252
-    params.toShowNormals = new StBoolParam(false);
253
-    params.toShowNormals->signals.onChanged.connect(this, &StCADViewer::doShowNormals);
254
-    params.toShowTrihedron = new StBoolParam(true);
255
-    params.isLightTwoSides = new StBoolParam(true);
256
-    params.projectMode = new StInt32Param(ST_PROJ_STEREO);
257
-    params.projectMode->signals.onChanged.connect(this, &StCADViewer::doChangeProjection);
258
-    params.fillMode = new StInt32Param(ST_FILL_MESH);
259
-    params.TargetFps = 0;
260
+    params.IsFullscreen    = new StBoolParamNamed(false, stCString("isFullscreen"));
261
+    params.IsFullscreen->signals.onChanged.connect(this, &StCADViewer::doFullscreen);
262
+    params.ToShowPlayList  = new StBoolParamNamed(false, stCString("showPlaylist"));
263
+    params.ToShowFps       = new StBoolParamNamed(false, stCString("toShowFps"));
264
+    params.ToShowTrihedron = new StBoolParamNamed(true,  stCString("showTrihedron"));
265
+    params.ProjectMode = new StEnumParam(ST_PROJ_STEREO, stCString("projMode"));
266
+    params.ProjectMode->signals.onChanged.connect(this, &StCADViewer::doChangeProjection);
267
+
268
+    params.ZFocus = new StFloat32Param(1.0f,       // current value
269
+                                       0.2f, 2.0f, // min/max
270
+                                       1.0f,       // default
271
+                                       0.025f,     // step
272
+                                       0.001f);
273
+    params.StereoIOD = new StFloat32Param(0.05f,       // current value
274
+                                          0.01f, 0.3f, // min/max
275
+                                          0.05f,       // default
276
+                                          0.005f,      // step
277
+                                          0.0001f);
278
 
279
-    mySettings->loadInt32 (ST_SETTING_FPSTARGET, params.TargetFps);
280
-    mySettings->loadParam (ST_SETTING_SHOW_FPS,  params.ToShowFps);
281
+    params.TargetFps = 0;
282
+    updateStrings();
283
 
284
-    myGUI = new StCADViewerGUI(this);
285
+    mySettings->loadString(ST_SETTING_LAST_FOLDER, params.LastFolder);
286
+    mySettings->loadInt32 (ST_SETTING_FPSTARGET,   params.TargetFps);
287
+    mySettings->loadParam (params.ToShowFps);
288
+    mySettings->loadParam (params.ToShowPlayList);
289
 
290
+    // workaround current limitations of OCCT - no support of viewport with offset
291
+    const bool toForceFboUsage = true;
292
 #if defined(__ANDROID__)
293
     addRenderer(new StOutInterlace  (myResMgr, theParentWin));
294
     addRenderer(new StOutAnaglyph   (myResMgr, theParentWin));
295
-    addRenderer(new StOutDistorted  (myResMgr, theParentWin));
296
+    StOutDistorted* aDistOut = new StOutDistorted  (myResMgr, theParentWin);
297
+    aDistOut->setForcedFboUsage(toForceFboUsage);
298
+    addRenderer(aDistOut);
299
 #else
300
     addRenderer(new StOutAnaglyph   (myResMgr, theParentWin));
301
     addRenderer(new StOutDual       (myResMgr, theParentWin));
302
     addRenderer(new StOutIZ3D       (myResMgr, theParentWin));
303
     addRenderer(new StOutInterlace  (myResMgr, theParentWin));
304
-    addRenderer(new StOutDistorted  (myResMgr, theParentWin));
305
+    StOutDistorted* aDistOut = new StOutDistorted  (myResMgr, theParentWin);
306
+    aDistOut->setForcedFboUsage(toForceFboUsage);
307
+    addRenderer(aDistOut);
308
     addRenderer(new StOutPageFlipExt(myResMgr, theParentWin));
309
 #endif
310
+
311
+    // create actions
312
+    StHandle<StAction> anAction;
313
+    anAction = new StActionBool(stCString("DoFullscreen"), params.IsFullscreen);
314
+    addAction(Action_Fullscreen, anAction, ST_VK_RETURN);
315
+
316
+    anAction = new StActionBool(stCString("DoShowFPS"), params.ToShowFps);
317
+    addAction(Action_ShowFps, anAction, ST_VK_F12);
318
+
319
+    anAction = new StActionIntSlot(stCString("DoListFirst"), stSlot(this, &StCADViewer::doListFirst), 0);
320
+    addAction(Action_ListFirst, anAction, ST_VK_HOME);
321
+
322
+    anAction = new StActionIntSlot(stCString("DoListLast"), stSlot(this, &StCADViewer::doListLast), 0);
323
+    addAction(Action_ListLast, anAction, ST_VK_END);
324
+
325
+    anAction = new StActionIntSlot(stCString("DoListPrev"), stSlot(this, &StCADViewer::doListPrev), 0);
326
+    addAction(Action_ListPrev, anAction, ST_VK_PRIOR);
327
+
328
+    anAction = new StActionIntSlot(stCString("DoListNext"), stSlot(this, &StCADViewer::doListNext), 0);
329
+    addAction(Action_ListNext, anAction, ST_VK_NEXT);
330
+
331
+    anAction = new StActionIntSlot(stCString("DoFitAll"), stSlot(this, &StCADViewer::doFitAll), 0);
332
+    addAction(Action_FitAll, anAction, ST_VK_F);
333
+
334
+    anAction = new StActionIntValue(stCString("DoProjOrthogonal"),  params.ProjectMode, ST_PROJ_ORTHO);
335
+    addAction(Action_ProjOrthogonal, anAction, ST_VK_O);
336
+
337
+    anAction = new StActionIntValue(stCString("DoProjPerspective"), params.ProjectMode, ST_PROJ_PERSP);
338
+    addAction(Action_ProjPerspective, anAction, ST_VK_M, ST_VK_P);
339
+
340
+    anAction = new StActionIntValue(stCString("DoProjStereo"),      params.ProjectMode, ST_PROJ_STEREO);
341
+    addAction(Action_ProjStereo, anAction, ST_VK_S);
342
+
343
+    anAction = new StActionHoldSlot(stCString("DoZoomIn"),  stSlot(this, &StCADViewer::doZoomIn));
344
+    addAction(Action_ZoomIn,  anAction, ST_VK_OEM_PLUS,  ST_VK_ADD);
345
+
346
+    anAction = new StActionHoldSlot(stCString("DoZoomOut"), stSlot(this, &StCADViewer::doZoomOut));
347
+    addAction(Action_ZoomOut, anAction, ST_VK_OEM_MINUS, ST_VK_SUBTRACT);
348
+
349
+    anAction = new StActionHoldSlot(stCString("DoStereoZFocusCloser"),  stSlot(this, &StCADViewer::doStereoZFocusCloser));
350
+    addAction(Action_StereoZFocusCloser, anAction, ST_VK_DIVIDE | ST_VF_CONTROL);
351
+
352
+    anAction = new StActionHoldSlot(stCString("DoStereoZFocusFarther"), stSlot(this, &StCADViewer::doStereoZFocusFarther));
353
+    addAction(Action_StereoZFocusFarther, anAction, ST_VK_MULTIPLY | ST_VF_CONTROL);
354
+
355
+    anAction = new StActionHoldSlot(stCString("DoStereoIODDec"),  stSlot(this, &StCADViewer::doStereoIODDec));
356
+    addAction(Action_StereoIODDec, anAction, ST_VK_DIVIDE);
357
+
358
+    anAction = new StActionHoldSlot(stCString("DoStereoIODInc"), stSlot(this, &StCADViewer::doStereoIODInc));
359
+    addAction(Action_StereoIODInc, anAction, ST_VK_MULTIPLY);
360
 }
361
 
362
 bool StCADViewer::resetDevice() {
363
@@ -260,35 +185,41 @@
364
     return open();
365
 }
366
 
367
+void StCADViewer::saveGuiParams() {
368
+    if(myGUI.isNull()) {
369
+        return;
370
+    }
371
+
372
+    mySettings->saveString(ST_SETTING_LAST_FOLDER, params.LastFolder);
373
+    mySettings->saveParam(params.ToShowTrihedron);
374
+    mySettings->saveParam(params.ProjectMode);
375
+    mySettings->saveInt32(ST_SETTING_FPSTARGET, params.TargetFps);
376
+    mySettings->saveParam(params.ToShowFps);
377
+    mySettings->saveParam(params.ToShowPlayList);
378
+}
379
+
380
 void StCADViewer::saveAllParams() {
381
+    saveGuiParams();
382
     if(!myGUI.isNull()) {
383
-        mySettings->saveParam(ST_PARAM_NORMALS,     params.toShowNormals);
384
-        mySettings->saveParam(ST_PARAM_TRIHEDRON,   params.toShowTrihedron);
385
-        mySettings->saveParam(ST_PARAM_PROJMODE,    params.projectMode);
386
-        mySettings->saveParam(ST_PARAM_FILLMODE,    params.fillMode);
387
-        mySettings->saveInt32(ST_SETTING_FPSTARGET, params.TargetFps);
388
-        mySettings->saveParam(ST_SETTING_SHOW_FPS,  params.ToShowFps);
389
+        // store hot-keys
390
+        for(std::map< int, StHandle<StAction> >::iterator anIter = myActions.begin();
391
+            anIter != myActions.end(); ++anIter) {
392
+            mySettings->saveHotKey(anIter->second);
393
+        }
394
     }
395
+
396
     mySettings->flush();
397
 }
398
 
399
 void StCADViewer::releaseDevice() {
400
     saveAllParams();
401
-    if(!myContext.isNull()) {
402
-        if(myNormalsMesh != NULL) {
403
-            myNormalsMesh->release(*myContext);
404
-            delete myNormalsMesh;
405
-            myNormalsMesh = NULL;
406
-        }
407
-        if(!myModel.isNull()) {
408
-            myModel->release(*myContext);
409
-        }
410
-        myPrism.release(*myContext);
411
-    }
412
 
413
     // release GUI data and GL resources before closing the window
414
     myGUI.nullify();
415
     myContext.nullify();
416
+    myAisContext.Nullify();
417
+    myView.Nullify();
418
+    myViewer.Nullify();
419
 }
420
 
421
 StCADViewer::~StCADViewer() {
422
@@ -297,6 +228,161 @@
423
     myCADLoader.nullify();
424
 }
425
 
426
+bool StCADViewer::initOcctViewer() {
427
+    Message::DefaultMessenger()->RemovePrinters(STANDARD_TYPE(StCADMsgPrinter));
428
+    Message::DefaultMessenger()->RemovePrinters(STANDARD_TYPE(Message_PrinterOStream));
429
+    Handle(StCADMsgPrinter) aPrinter = new StCADMsgPrinter(myMsgQueue);
430
+    Message::DefaultMessenger()->AddPrinter(aPrinter);
431
+
432
+#ifdef __ANDROID__
433
+    int aWidth = 2, aHeight = 2;
434
+    EGLint aCfgId = 0;
435
+    EGLDisplay anEglDisplay = eglGetCurrentDisplay();
436
+    EGLContext anEglContext = eglGetCurrentContext();
437
+    EGLSurface anEglSurf    = eglGetCurrentSurface(EGL_DRAW);
438
+    if(anEglDisplay == EGL_NO_DISPLAY
439
+    || anEglContext == EGL_NO_CONTEXT
440
+    || anEglSurf    == EGL_NO_SURFACE) {
441
+        myMsgQueue->pushError(stCString("Critical error:\nNo active EGL context!"));
442
+        return false;
443
+    }
444
+
445
+    eglQuerySurface(anEglDisplay, anEglSurf, EGL_WIDTH,     &aWidth);
446
+    eglQuerySurface(anEglDisplay, anEglSurf, EGL_HEIGHT,    &aHeight);
447
+    eglQuerySurface(anEglDisplay, anEglSurf, EGL_CONFIG_ID, &aCfgId);
448
+
449
+    const EGLint aConfigAttribs[] = { EGL_CONFIG_ID, aCfgId, EGL_NONE };
450
+    EGLint       aNbConfigs = 0;
451
+    void*        anEglConfig = NULL;
452
+
453
+    if(eglChooseConfig(anEglDisplay, aConfigAttribs, &anEglConfig, 1, &aNbConfigs) != EGL_TRUE) {
454
+        myMsgQueue->pushError(stCString("Critical error:\nEGL does not provide compatible configurations!"));
455
+        return false;
456
+    }
457
+
458
+    if(!myViewer.IsNull()) {
459
+        Handle(OpenGl_GraphicDriver) aDriver = Handle(OpenGl_GraphicDriver)::DownCast(myViewer->Driver());
460
+        Handle(StCADWindow)          aWindow = Handle(StCADWindow)::DownCast(myView->Window());
461
+        if(!aDriver->InitEglContext(anEglDisplay, anEglContext, anEglConfig)) {
462
+            myMsgQueue->pushError(stCString("Critical error:\nOpenGl_GraphicDriver can not be initialized!"));
463
+            return false;
464
+        }
465
+
466
+        aWindow->SetSize(aWidth, aHeight);
467
+        myView->SetWindow(aWindow, (Aspect_RenderingContext )anEglContext);
468
+        return true;
469
+    }
470
+
471
+#elif defined(_WIN32)
472
+    HWND  aWinHandle = (HWND  )myWindow->getNativeOglWin();
473
+    HDC   aWindowDC  = (HDC   )myWindow->getNativeOglDC();
474
+    HGLRC aRendCtx   = (HGLRC )myWindow->getNativeOglRC();
475
+    if(aWinHandle == NULL
476
+    || aWindowDC  == NULL
477
+    || aRendCtx   == NULL) {
478
+        myMsgQueue->pushError(stCString("Critical error:\nNo active WGL context!"));
479
+        return false;
480
+    }
481
+
482
+    if(!myViewer.IsNull()) {
483
+        Handle(StCADWindow) aWindow = new StCADWindow(aWinHandle);
484
+        myView->SetWindow(aWindow, (Aspect_RenderingContext )aRendCtx);
485
+        return true;
486
+    }
487
+#endif
488
+
489
+    Handle(OpenGl_GraphicDriver) aDriver = new OpenGl_GraphicDriver(NULL, Standard_False);
490
+    aDriver->ChangeOptions().ffpEnable     = Standard_False;
491
+    aDriver->ChangeOptions().buffersNoSwap = Standard_True;
492
+#ifdef ST_DEBUG_GL
493
+    aDriver->ChangeOptions().contextDebug  = Standard_True;
494
+#else
495
+    aDriver->ChangeOptions().contextDebug  = Standard_False;
496
+#endif
497
+#ifdef ST_DEBUG_SHADERS
498
+    aDriver->ChangeOptions().glslWarnings  = Standard_True;
499
+#else
500
+    aDriver->ChangeOptions().glslWarnings  = Standard_False;
501
+#endif
502
+
503
+#ifdef __ANDROID__
504
+    if(!aDriver->InitEglContext(anEglDisplay, anEglContext, anEglConfig)) {
505
+        myMsgQueue->pushError(stCString("Critical error:\nOpenGl_GraphicDriver can not be initialized!!"));
506
+        return false;
507
+    }
508
+#endif
509
+
510
+    myViewer = new V3d_Viewer(aDriver, TCollection_ExtendedString("Viewer").ToExtString(), "", 1000.0,
511
+                              V3d_XposYnegZpos, Quantity_NOC_BLACK, V3d_ZBUFFER, V3d_GOURAUD, V3d_WAIT,
512
+                              Standard_True, Standard_False);
513
+    Handle(V3d_DirectionalLight) aLightDir = new V3d_DirectionalLight(myViewer, V3d_Zneg, Quantity_NOC_WHITE, Standard_True);
514
+    Handle(V3d_AmbientLight)     aLightAmb = new V3d_AmbientLight(myViewer);
515
+    aLightDir->SetDirection ( 1.0, -2.0, -10.0);
516
+    myViewer->SetLightOn (aLightDir);
517
+    myViewer->SetLightOn (aLightAmb);
518
+
519
+    myAisContext = new AIS_InteractiveContext(myViewer);
520
+    myAisContext->SetDisplayMode(AIS_Shaded);
521
+    myAisContext->SetAutoActivateSelection(Standard_False);
522
+    myAisContext->SetHilightColor(Quantity_NOC_CYAN1);
523
+    myAisContext->SelectionColor (Quantity_NOC_WHITE);
524
+    const Handle(Prs3d_Drawer)& aDrawer = myAisContext->DefaultDrawer();
525
+    aDrawer->SetAutoTriangulation (Standard_False);
526
+#ifdef __ANDROID__
527
+    Handle(StCADWindow) aWindow = new StCADWindow();
528
+    aWindow->SetSize(aWidth, aHeight);
529
+#elif defined(_WIN32)
530
+    Handle(StCADWindow) aWindow = new StCADWindow(aWinHandle);
531
+#endif
532
+
533
+    myView = myViewer->CreateView();
534
+    myView->Camera()->SetProjectionType(myProjection.isPerspective()
535
+                                      ? Graphic3d_Camera::Projection_Perspective
536
+                                      : Graphic3d_Camera::Projection_Orthographic);
537
+    myView->SetImmediateUpdate(Standard_False);
538
+    //
539
+    myView->View()->SetImmediateModeDrawToFront(Standard_False);
540
+
541
+#ifdef __ANDROID__
542
+    myView->SetWindow(aWindow, (Aspect_RenderingContext )anEglContext);
543
+#else
544
+    myView->SetWindow(aWindow, (Aspect_RenderingContext )aRendCtx);
545
+#endif
546
+
547
+    myView->SetSurfaceDetail(V3d_TEX_ALL);
548
+    return true;
549
+}
550
+
551
+bool StCADViewer::createGui() {
552
+    if(!myGUI.isNull()) {
553
+        saveGuiParams();
554
+        myGUI.nullify();
555
+        myKeyActions.clear();
556
+    }
557
+
558
+    // create the GUI with default values
559
+    //params.ScaleHiDPI->setValue(myWindow->getScaleFactor());
560
+    myGUI = new StCADViewerGUI(this, myLangMap.access(), myPlayList);
561
+    myGUI->setContext(myContext);
562
+
563
+    // load settings
564
+    myWindow->setTargetFps(double(params.TargetFps));
565
+    mySettings->loadParam(params.ToShowTrihedron);
566
+    mySettings->loadParam(params.ProjectMode);
567
+
568
+    myGUI->stglInit();
569
+    myGUI->stglResize(myWindow->stglViewport(ST_WIN_MASTER));
570
+
571
+    registerHotKeys();
572
+    return true;
573
+}
574
+
575
+void StCADViewer::doChangeLanguage(const int32_t theNewLang) {
576
+    StApplication::doChangeLanguage(theNewLang);
577
+    StCADViewerStrings::loadDefaults(*myLangMap);
578
+    updateStrings();
579
+}
580
+
581
 bool StCADViewer::init() {
582
     const bool isReset = !myCADLoader.isNull();
583
     if(!myContext.isNull()
584
@@ -314,28 +400,42 @@
585
     }
586
 
587
     myWindow->setTargetFps(double(params.TargetFps));
588
-    myWindow->setStereoOutput(params.projectMode->getValue() == ST_PROJ_STEREO);
589
+    myWindow->setStereoOutput(params.ProjectMode->getValue() == ST_PROJ_STEREO);
590
 
591
-    myGUI->setContext(myContext);
592
-    if(!myGUI->stglInit()) {
593
+    if(!initOcctViewer()) {
594
+        //
595
+    }
596
+
597
+    // load hot-keys
598
+    if(!isReset) {
599
+        for(std::map< int, StHandle<StAction> >::iterator anIter = myActions.begin();
600
+            anIter != myActions.end(); ++anIter) {
601
+            mySettings->loadHotKey(anIter->second);
602
+        }
603
+    }
604
+
605
+    // create the GUI with default values
606
+    if(!createGui()) {
607
         myMsgQueue->pushError(stCString("CAD Viewer - GUI initialization failed!"));
608
         myMsgQueue->popAll();
609
         myGUI.nullify();
610
         return false;
611
     }
612
+
613
     myGUI->stglResize(myWindow->stglViewport(ST_WIN_MASTER));
614
 
615
     // create working threads
616
     if(!isReset) {
617
-        myCADLoader = new StCADLoader(StHandle<StLangMap>::downcast(myGUI->myLangMap));
618
+        myCADLoader = new StCADLoader(myLangMap, myPlayList);
619
         myCADLoader->signals.onError = stSlot(myMsgQueue.access(), &StMsgQueue::doPushError);
620
     }
621
 
622
-    // load settings
623
-    mySettings->loadParam(ST_PARAM_NORMALS,   params.toShowNormals);
624
-    mySettings->loadParam(ST_PARAM_TRIHEDRON, params.toShowTrihedron);
625
-    mySettings->loadParam(ST_PARAM_PROJMODE,  params.projectMode);
626
-    mySettings->loadParam(ST_PARAM_FILLMODE,  params.fillMode);
627
+    if(isReset) {
628
+        if(params.IsFullscreen->getValue()) {
629
+            myWindow->setFullScreen(true);
630
+        }
631
+    }
632
+
633
     return true;
634
 }
635
 
636
@@ -360,17 +460,17 @@
637
     }
638
 
639
     // clear playlist first
640
-    myCADLoader->getPlayList().clear();
641
+    myPlayList->clear();
642
 
643
     if(!anOpenMIME.isEmpty()) {
644
         // create just one-file playlist
645
-        myCADLoader->getPlayList().addOneFile(myOpenFileInfo->getPath(), anOpenMIME);
646
+        myPlayList->addOneFile(myOpenFileInfo->getPath(), anOpenMIME);
647
     } else {
648
         // create playlist from file's folder
649
-        myCADLoader->getPlayList().open(myOpenFileInfo->getPath());
650
+        myPlayList->open(myOpenFileInfo->getPath());
651
     }
652
 
653
-    if(!myCADLoader->getPlayList().isEmpty()) {
654
+    if(!myPlayList->isEmpty()) {
655
         doUpdateStateLoading();
656
         myCADLoader->doLoadNext();
657
     }
658
@@ -398,18 +498,32 @@
659
         return;
660
     }
661
 
662
-    myGUI->tryClick(StPointD_t(theEvent.PointX, theEvent.PointY), theEvent.Button);
663
+    bool isItemClicked = false;
664
+    myGUI->tryClick(theEvent, isItemClicked);
665
+    if(isItemClicked) {
666
+        return;
667
+    }
668
 
669
     if(theEvent.Button == ST_MOUSE_LEFT) {
670
-        myIsLeftHold = true; ///
671
+        myIsLeftHold = true;
672
         myPrevMouse.x() = theEvent.PointX;
673
         myPrevMouse.y() = theEvent.PointY;
674
+        if(!myIsCtrlPressed && !myView.IsNull()) {
675
+            StRectI_t aWinRect = myWindow->getPlacement();
676
+            myView->StartRotation(int(double(aWinRect.width())  * theEvent.PointX),
677
+                                  int(double(aWinRect.height()) * theEvent.PointY));
678
+        }
679
     } else if(theEvent.Button == ST_MOUSE_RIGHT) {
680
-        myIsRightHold = true; ///
681
+        myIsRightHold = true;
682
         myPrevMouse.x() = theEvent.PointX;
683
         myPrevMouse.y() = theEvent.PointY;
684
+        if(myIsCtrlPressed && !myView.IsNull()) {
685
+            StRectI_t aWinRect = myWindow->getPlacement();
686
+            myView->StartRotation(int(double(aWinRect.width())  * theEvent.PointX),
687
+                                  int(double(aWinRect.height()) * theEvent.PointY));
688
+        }
689
     } else if(theEvent.Button == ST_MOUSE_MIDDLE) {
690
-        myIsMiddleHold = true; ///
691
+        myIsMiddleHold = true;
692
         myPrevMouse.x() = theEvent.PointX;
693
         myPrevMouse.y() = theEvent.PointY;
694
     }
695
@@ -420,50 +534,102 @@
696
         return;
697
     }
698
 
699
+    bool isItemUnclicked = false;
700
+    myGUI->tryUnClick(theEvent, isItemUnclicked);
701
     switch(theEvent.Button) {
702
         case ST_MOUSE_LEFT: {
703
             myIsLeftHold = false;
704
             break;
705
         }
706
         case ST_MOUSE_RIGHT: {
707
-            if(myIsRightHold && myIsCtrlPressed) {
708
-                // rotate
709
-                StPointD_t aPt = myWindow->getMousePos();
710
-                StGLVec2 aFlatMove( 2.0f * GLfloat(aPt.x() - myPrevMouse.x()),
711
-                                   -2.0f * GLfloat(aPt.y() - myPrevMouse.y()));
712
-
713
-                myCam.rotateX(-aFlatMove.x() * 90.0f);
714
-                myCam.rotateY(-aFlatMove.y() * 90.0f);
715
-            }
716
             myIsRightHold = false;
717
             break;
718
         }
719
         case ST_MOUSE_MIDDLE: {
720
-            if(!myIsCtrlPressed) {
721
-                params.isFullscreen->reverse();
722
+            if(!myIsCtrlPressed && !isItemUnclicked) {
723
+                params.IsFullscreen->reverse();
724
             }
725
             myIsMiddleHold = false;
726
             break;
727
         }
728
-        case ST_MOUSE_SCROLL_V_UP: {
729
-            if(myIsCtrlPressed) {
730
-                myProjection.setZScreen(myProjection.getZScreen() + 1.1f);
731
-            } else {
732
-                myProjection.setZoom(myProjection.getZoom() * 0.9f);
733
+        default: break;
734
+    }
735
+}
736
+
737
+void StCADViewer::doGesture(const StGestureEvent& theEvent) {
738
+    if(!myGUI.isNull()
739
+    &&  myGUI->getFocus() != NULL) {
740
+        return;
741
+    }
742
+
743
+    StRectI_t aWinRect = myWindow->getPlacement();
744
+    switch(theEvent.Type) {
745
+        case stEvent_GestureCancel: {
746
+            return;
747
+        }
748
+        case stEvent_Gesture1DoubleTap: {
749
+            doFitAll();
750
+            return;
751
+        }
752
+        case stEvent_Gesture2Rotate: {
753
+            return;
754
+        }
755
+        case stEvent_Gesture2Move: {
756
+            if(!theEvent.OnScreen) {
757
+                // this gesture conflicts with scrolling on OS X
758
+                return;
759
             }
760
-            break;
761
+            StPointD_t aPntFrom(theEvent.Point1X, theEvent.Point1Y);
762
+            StPointD_t aPntTo  (theEvent.Point2X, theEvent.Point2Y);
763
+            int aDeltaX =  int(double(aWinRect.width())  * (theEvent.Point2X - theEvent.Point1X));
764
+            int aDeltaY = -int(double(aWinRect.height()) * (theEvent.Point2Y - theEvent.Point1Y));
765
+            if(!myView.IsNull()) {
766
+                myView->Pan(aDeltaX, aDeltaY);
767
+            }
768
+            return;
769
         }
770
-        case ST_MOUSE_SCROLL_V_DOWN: {
771
-            if(myIsCtrlPressed) {
772
-                myProjection.setZScreen(myProjection.getZScreen() - 1.1f);
773
-            } else {
774
-                myProjection.setZoom(myProjection.getZoom() * 1.1f);
775
+        case stEvent_Gesture2Pinch: {
776
+            StPointD_t aCursor((theEvent.Point1X + theEvent.Point2X) * 0.5,
777
+                               (theEvent.Point1Y + theEvent.Point2Y) * 0.5);
778
+            if(!theEvent.OnScreen) {
779
+                aCursor = myGUI->getCursorZo();
780
             }
781
-            break;
782
+            if(!myView.IsNull()) {
783
+                int aDeltaX = int(theEvent.Value);
784
+                //myView->StartZoomAtPoint(int(aCursor.x() * double(aWinRect.width())),
785
+                //                         int(aCursor.y() * double(aWinRect.height())));
786
+                //myView->ZoomAtPoint(0, 0, aDeltaX, aDeltaX);
787
+                myView->Zoom(0, 0, aDeltaX, aDeltaX);
788
+            }
789
+            return;
790
+        }
791
+        default: {
792
+            return;
793
+        }
794
+    }
795
+}
796
+
797
+void StCADViewer::doScroll(const StScrollEvent& theEvent) {
798
+    if(myGUI.isNull()) {
799
+        return;
800
+    }
801
+    if(myGUI->doScroll(theEvent)) {
802
+        return;
803
+    }
804
+
805
+    if(theEvent.StepsY >= 1) {
806
+        if(myIsCtrlPressed) {
807
+            doStereoZFocusCloser(0.05);
808
+        } else {
809
+            doZoomIn(0.1);
810
+        }
811
+    } else if(theEvent.StepsY <= -1) {
812
+        if(myIsCtrlPressed) {
813
+            doStereoZFocusFarther(0.05);
814
+        } else {
815
+            doZoomOut(0.1);
816
         }
817
-        default: break;
818
     }
819
-    myGUI->tryUnClick(StPointD_t(theEvent.PointX, theEvent.PointY), theEvent.Button);
820
 }
821
 
822
 void StCADViewer::doKeyDown(const StKeyEvent& theEvent) {
823
@@ -476,97 +642,29 @@
824
         return;
825
     }
826
 
827
+    StApplication::doKeyDown(theEvent);
828
     switch(theEvent.VKey) {
829
         case ST_VK_ESCAPE:
830
             StApplication::exit(0);
831
             return;
832
-        case ST_VK_RETURN:
833
-            params.isFullscreen->reverse();
834
-            return;
835
-
836
-        // switch projection matrix
837
-        case ST_VK_M:
838
-            params.projectMode->setValue(ST_PROJ_PERSP);
839
-            return;
840
-        case ST_VK_S:
841
-            params.projectMode->setValue(ST_PROJ_STEREO);
842
-            return;
843
-        case ST_VK_O:
844
-            params.projectMode->setValue(ST_PROJ_ORTHO);
845
-            return;
846
-
847
-        // separation
848
-        case ST_VK_MULTIPLY: {
849
-            if(theEvent.Flags == ST_VF_NONE) {
850
-                myProjection.setIOD(myProjection.getIOD() + 0.1f);
851
-                ST_DEBUG_LOG("Sep. inc, " + myProjection.toString());
852
-            }
853
-            return;
854
-        }
855
-        case ST_VK_DIVIDE:
856
-            if(theEvent.Flags == ST_VF_NONE) {
857
-                myProjection.setIOD(myProjection.getIOD() - 0.1f);
858
-                ST_DEBUG_LOG("Sep. dec, " + myProjection.toString());
859
-            }
860
-            return;
861
-
862
-        case ST_VK_C:
863
-            myIsCamIterative = !myIsCamIterative;
864
-            ST_DEBUG_LOG("Iterative camera " + (myIsCamIterative ? "ON" : "OFF"));
865
-            return;
866
 
867
         case ST_VK_LEFT:
868
-            myCam.rotateX(-1.0f);
869
+            ///myCam.rotateX(-1.0f);
870
             return;
871
         case ST_VK_RIGHT:
872
-            myCam.rotateX(1.0f);
873
+            ///myCam.rotateX(1.0f);
874
             return;
875
         case ST_VK_UP:
876
-            myCam.rotateY(-1.0f);
877
+            ///myCam.rotateY(-1.0f);
878
             return;
879
         case ST_VK_DOWN:
880
-            myCam.rotateY(1.0f);
881
+            ///myCam.rotateY(1.0f);
882
             return;
883
         case ST_VK_Q:
884
-            myCam.rotateZ(-1.0f);
885
+            ///myCam.rotateZ(-1.0f);
886
             return;
887
         case ST_VK_W:
888
-            myCam.rotateZ(1.0f);
889
-            return;
890
-
891
-        // call fit all
892
-        case ST_VK_F:
893
-            doFitALL();
894
-            return;
895
-
896
-        // show normals
897
-        case ST_VK_N:
898
-            params.toShowNormals->reverse();
899
-            return;
900
-
901
-        // playlist navigation
902
-        case ST_VK_PRIOR:
903
-            doListPrev();
904
-            return;
905
-        case ST_VK_NEXT:
906
-            doListNext();
907
-            return;
908
-        case ST_VK_HOME:
909
-            doListFirst();
910
-            return;
911
-        case ST_VK_END:
912
-            doListLast();
913
-            return;
914
-
915
-        // shading mode
916
-        case ST_VK_1:
917
-            params.fillMode->setValue(ST_FILL_MESH);
918
-            return;
919
-        case ST_VK_2:
920
-            params.fillMode->setValue(ST_FILL_SHADING);
921
-            return;
922
-        case ST_VK_3:
923
-            params.fillMode->setValue(ST_FILL_SHADED_MESH);
924
+            ///myCam.rotateZ(1.0f);
925
             return;
926
 
927
         default:
928
@@ -575,9 +673,14 @@
929
 }
930
 
931
 void StCADViewer::doKeyHold(const StKeyEvent& theEvent) {
932
-    if(!myGUI.isNull()
933
-    && myGUI->getFocus() != NULL) {
934
+    if(myGUI.isNull()) {
935
+        return;
936
+    }
937
+
938
+    if(myGUI->getFocus() != NULL) {
939
         myGUI->doKeyHold(theEvent);
940
+    } else {
941
+        StApplication::doKeyHold(theEvent);
942
     }
943
 }
944
 
945
@@ -588,14 +691,31 @@
946
     }
947
 }
948
 
949
+void StCADViewer::doOpen1FileFromGui(StHandle<StString> thePath) {
950
+    if(thePath.isNull()) {
951
+        return;
952
+    }
953
+
954
+    StDNDropEvent anEvent;
955
+    anEvent.Type = stEvent_FileDrop;
956
+    anEvent.Time = 0.0;
957
+    const char* aFiles[1] = { thePath->toCString() };
958
+    anEvent.NbFiles = 1;
959
+    anEvent.Files   = aFiles;
960
+    doFileDrop(anEvent);
961
+
962
+    StString aDummy;
963
+    StFileNode::getFolderAndFile(*thePath, params.LastFolder, aDummy);
964
+}
965
+
966
 void StCADViewer::doFileDrop(const StDNDropEvent& theEvent) {
967
     if(theEvent.NbFiles == 0) {
968
         return;
969
     }
970
 
971
     const StString aFilePath = theEvent.Files[0];
972
-    if(myCADLoader->getPlayList().checkExtension(aFilePath)) {
973
-        myCADLoader->getPlayList().open(aFilePath);
974
+    if(myPlayList->checkExtension(aFilePath)) {
975
+        myPlayList->open(aFilePath);
976
         doUpdateStateLoading();
977
         myCADLoader->doLoadNext();
978
     }
979
@@ -615,219 +735,145 @@
980
     }
981
 
982
     myIsCtrlPressed = myWindow->getKeysState().isKeyDown(ST_VK_CONTROL);
983
-    if(myIsMiddleHold && myIsCtrlPressed) {
984
+    Handle(Graphic3d_Camera) aCam = !myView.IsNull()
985
+                                  ?  myView->Camera()
986
+                                  : Handle(Graphic3d_Camera)();
987
+    if(myIsMiddleHold && myIsCtrlPressed && !aCam.IsNull()) {
988
         // move
989
         StPointD_t aPt = myWindow->getMousePos();
990
-        StGLVec2 aFlatMove( 2.0f * GLfloat(aPt.x() - myPrevMouse.x()),
991
-                           -2.0f * GLfloat(aPt.y() - myPrevMouse.y()));
992
+        gp_Vec2d aFlatMove( 2.0 * (aPt.x() - myPrevMouse.x()),
993
+                           -2.0 * (aPt.y() - myPrevMouse.y()));
994
 
995
-        StRectD_t aSect;
996
-        myProjection.getZParams(aSect);
997
+        const gp_Dir aSide    = aCam->Direction().Crossed(aCam->Up());
998
+        const gp_Pnt aViewDim = aCam->ViewDimensions();
999
+        const gp_Vec aMoveSide = gp_Vec(aSide)      * 0.5 * aFlatMove.X() * aViewDim.X();
1000
+        const gp_Vec aMoveUp   = gp_Vec(aCam->Up()) * 0.5 * aFlatMove.Y() * aViewDim.Y();
1001
 
1002
-        StGLVec3 aCenter   = myCam.getCenter();
1003
-        StGLVec3 anEye     = myCam.getEye();
1004
-        StGLVec3 aMoveSide = StGLVec3(myCam.getSide()) * 1.0f * aFlatMove.x() * GLfloat(aSect.right());
1005
-        StGLVec3 aMoveUp   = myCam.getUp() * 1.0f * aFlatMove.y() * GLfloat(aSect.top());
1006
+        gp_Pnt aCenter = aCam->Center();
1007
+        gp_Pnt anEye   = aCam->Eye();
1008
+        aCenter.Translate(-aMoveSide);
1009
+        anEye  .Translate(-aMoveSide);
1010
+        aCenter.Translate(-aMoveUp);
1011
+        anEye  .Translate(-aMoveUp);
1012
 
1013
-        aCenter -= aMoveSide;
1014
-        anEye   -= aMoveSide;
1015
-        aCenter -= aMoveUp;
1016
-        anEye   -= aMoveUp;
1017
-
1018
-        myCam.setCenter(aCenter);
1019
-        myCam.setEye(anEye);
1020
+        aCam->SetCenter(aCenter);
1021
+        aCam->SetEye(anEye);
1022
 
1023
         myPrevMouse = aPt;
1024
     }
1025
+    if((myIsRightHold &&  myIsCtrlPressed)
1026
+    || (myIsLeftHold  && !myIsCtrlPressed)) {
1027
+        const StPointD_t aPt = myWindow->getMousePos();
1028
+        StRectI_t aWinRect = myWindow->getPlacement();
1029
+        myView->Rotation(int(double(aWinRect.width())  * aPt.x()),
1030
+                         int(double(aWinRect.height()) * aPt.y()));
1031
+    }
1032
 
1033
-    StHandle<StGLMesh> aNewMesh;
1034
-    if(myCADLoader->getNextShape(aNewMesh)) {
1035
-        if(!aNewMesh.isNull()) {
1036
-            if(!myModel.isNull()) {
1037
-                myModel->release(*myContext);
1038
-            }
1039
-            myModel = aNewMesh;
1040
-
1041
-            ST_DEBUG_LOG(myContext->stglFullInfo()); ///
1042
-            myModel->initVBOs(*myContext);
1043
-            ST_DEBUG_LOG(myContext->stglFullInfo()); ///
1044
-
1045
-            // update normals representation
1046
-            if(params.toShowNormals->getValue()) {
1047
-                if(myNormalsMesh == NULL) {
1048
-                    myNormalsMesh = new StGLNormalsMesh();
1049
+    if(!myAisContext.IsNull()) {
1050
+        NCollection_Sequence<Handle(AIS_InteractiveObject)> aNewPrsList;
1051
+        if(myCADLoader->getNextDoc(aNewPrsList, myDoc)) {
1052
+            myAisContext->RemoveAll(Standard_False);
1053
+            for(NCollection_Sequence<Handle(AIS_InteractiveObject)>::Iterator aPrsIter(aNewPrsList); aPrsIter.More(); aPrsIter.Next()) {
1054
+                Handle(AIS_Shape)                aShapePrs     = Handle(AIS_Shape)::DownCast (aPrsIter.Value());
1055
+                Handle(AIS_ConnectedInteractive) aConnectedPrs = Handle(AIS_ConnectedInteractive)::DownCast (aPrsIter.Value());
1056
+                if(!aConnectedPrs.IsNull()) {
1057
+                    aShapePrs = Handle(AIS_Shape)::DownCast (aConnectedPrs->ConnectedTo());
1058
+                }
1059
+                if(!aShapePrs.IsNull()) {
1060
+                    aShapePrs->SetDisplayMode(1);
1061
+                    if(!aConnectedPrs.IsNull()) {
1062
+                        aConnectedPrs->SetDisplayMode(1);
1063
+                    }
1064
                 }
1065
-                myNormalsMesh->init(*myContext, *myModel);
1066
+                myAisContext->Display(aPrsIter.Value(), aPrsIter.Value()->DisplayMode(), 0, Standard_False);
1067
             }
1068
-            // call fit all
1069
-            doFitALL();
1070
+
1071
+            doFitAll();
1072
+            doUpdateStateLoaded(!aNewPrsList.IsEmpty());
1073
         }
1074
-        doUpdateStateLoaded(!aNewMesh.isNull());
1075
     }
1076
 
1077
     myGUI->setVisibility(myWindow->getMousePos(), true);
1078
-}
1079
+    myGUI->stglUpdate(myWindow->getMousePos());
1080
 
1081
-void StCADViewer::stglDraw(unsigned int theView) {
1082
-    if(!myContext.isNull()
1083
-    && myContext->core20fwd != NULL) {
1084
-        // clear the screen and the depth buffer
1085
-        myContext->core11fwd->glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
1086
+    // recreate menu event
1087
+    if(myToRecreateMenu) {
1088
+        createGui();
1089
+        myToRecreateMenu = false;
1090
     }
1091
+}
1092
 
1093
+void StCADViewer::stglDraw(unsigned int theView) {
1094
     if(myGUI.isNull()) {
1095
         return;
1096
     }
1097
 
1098
-    myGUI->getCamera()->setView(theView);
1099
-    myProjection.setView(theView);
1100
-    if(theView == ST_DRAW_LEFT
1101
-    || theView == ST_DRAW_MONO) {
1102
-        myGUI->stglUpdate(myWindow->getMousePos());
1103
-    }
1104
-
1105
-/// setup the projection matrix
1106
-    myProjection.updateFrustum(); ///
1107
-    myProjection.setupFixed(*myContext);
1108
-
1109
-/// draw tunnel
1110
-    /*glMatrixMode(GL_MODELVIEW);
1111
-    glLoadIdentity();
1112
-
1113
-    glColor3f(1.0f, 1.0f, 1.0f);
1114
-    StGLPrism stTunnel;
1115
-    stTunnel.setWireframe(0, 0, 10);
1116
-    stTunnel.setVisibilityZ(false, false);
1117
-    const GLfloat aPrecision = 0.001f;
1118
-    GLfloat aZDelta =  myProjection.getZFar() - myProjection.getZNear() - aPrecision;
1119
-    GLfloat aZ0  = -myProjection.getZNear();
1120
-    GLfloat aZ1  =  aZ0 - aZDelta;
1121
-    GLfloat aX0 = myProjection.getMonoFrustrum()->xLeft;
1122
-    GLfloat aX1 = myProjection.getMonoFrustrum()->xRight - aPrecision;
1123
-    GLfloat aY0 = myProjection.getMonoFrustrum()->yTop   - aPrecision;
1124
-    GLfloat aY1 = myProjection.getMonoFrustrum()->yBottom;
1125
-    stTunnel.init(StGLVec3(aX0, aY0, aZ0), // rectangle in near Z plane
1126
-                  StGLVec3(aX1, aY0, aZ0),
1127
-                  StGLVec3(aX1, aY1, aZ0),
1128
-                  StGLVec3(aX0, aY1, aZ0),
1129
-                  StGLVec3(aX0, aY0, aZ1), // rectangle in far Z plane
1130
-                  StGLVec3(aX1, aY0, aZ1),
1131
-                  StGLVec3(aX1, aY1, aZ1),
1132
-                  StGLVec3(aX0, aY1, aZ1));
1133
-    stTunnel.drawFixed();*/
1134
-///
1135
-
1136
-    /// setup the camera
1137
-    StGLCamera aCam = myCam;
1138
-    if(myIsRightHold && myIsCtrlPressed) {
1139
-        // rotation preview
1140
-        const StPointD_t aPt = myWindow->getMousePos();
1141
-        StGLVec2 aFlatMove( 2.0f * GLfloat(aPt.x() - myPrevMouse.x()),
1142
-                           -2.0f * GLfloat(aPt.y() - myPrevMouse.y()));
1143
-
1144
-        aCam.rotateX(-aFlatMove.x() * 90.0f);
1145
-        aCam.rotateY(-aFlatMove.y() * 90.0f);
1146
+    if(!myView.IsNull()) {
1147
+        Graphic3d_Camera::Projection aProj = Graphic3d_Camera::Projection_Orthographic;
1148
+        if(myProjection.isPerspective()) {
1149
+            switch(theView) {
1150
+                case ST_DRAW_LEFT:  aProj = Graphic3d_Camera::Projection_MonoLeftEye;  break;
1151
+                case ST_DRAW_RIGHT: aProj = Graphic3d_Camera::Projection_MonoRightEye; break;
1152
+                case ST_DRAW_MONO:  aProj = Graphic3d_Camera::Projection_Perspective;  break;
1153
+            }
1154
+        }
1155
 
1156
-        if(myIsCamIterative) {
1157
-            myCam = aCam;
1158
-            myPrevMouse = aPt;
1159
+        if(params.ToShowTrihedron->getValue()) {
1160
+          myView->TriedronDisplay(Aspect_TOTP_RIGHT_LOWER, Quantity_NOC_WHITE, 0.08, V3d_ZBUFFER);
1161
+        } else {
1162
+          myView->TriedronErase();
1163
         }
1164
-    }
1165
 
1166
-#if !defined(GL_ES_VERSION_2_0)
1167
-    myContext->core11->glMatrixMode(GL_MODELVIEW);
1168
-    myContext->core11->glLoadIdentity();
1169
-    myContext->core11->glMultMatrixf(aCam);
1170
-
1171
-    /// draw boxes
1172
-    /*StGLPrism aBox111, aBox011, aBox211, aBox001, aBox112, aBox110;
1173
-    aBox011.init(StGLVec3(-2.0f,  0.0f,  0.0f), 1.0f, 1.0f, 1.0f); aBox011.drawFixed();
1174
-    aBox211.init(StGLVec3( 2.0f,  0.0f,  0.0f), 1.0f, 1.0f, 1.0f); aBox211.drawFixed();
1175
-    aBox112.init(StGLVec3( 0.0f,  0.0f,  2.0f), 1.0f, 1.0f, 1.0f); aBox112.drawFixed();
1176
-    aBox110.init(StGLVec3( 0.0f,  0.0f, -2.0f), 1.0f, 1.0f, 1.0f); aBox110.drawFixed();*/
1177
-
1178
-    /// draw the model
1179
-    if(!myModel.isNull()) {
1180
-        GLfloat mat_shininess[] = { 50.0 };
1181
-        glMaterialfv(GL_FRONT, GL_SPECULAR, StGLVec4(1.0f, 1.0f, 1.0f, 1.0f));
1182
-        glMaterialfv(GL_FRONT, GL_SHININESS, mat_shininess);
1183
-        StGLVec4 aLightPos = StGLVec4(aCam.getEye(), 1.0f);
1184
-        glLightfv(GL_LIGHT0, GL_POSITION, aLightPos);
1185
-        glEnable(GL_LIGHTING);
1186
-        glEnable(GL_LIGHT0);
1187
-        GLint aLModel = params.isLightTwoSides->getValue() ? 1 : 0; glLightModeliv(GL_LIGHT_MODEL_TWO_SIDE, &aLModel); // light both sides
1188
-        glColorMaterial(GL_FRONT_AND_BACK, GL_AMBIENT_AND_DIFFUSE);
1189
-        glEnable(GL_COLOR_MATERIAL);
1190
-
1191
-        glEnable(GL_DEPTH_TEST);
1192
-
1193
-        glColor3f(1.0f, 0.84314f, 0.0f); // golden
1194
-        if(params.fillMode->getValue() == ST_FILL_SHADING
1195
-        || params.fillMode->getValue() == ST_FILL_SHADED_MESH) {
1196
-            glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
1197
-            myModel->drawFixed(*myContext);
1198
+        // Do the magic:
1199
+        // - define default FBO for OCCT from StGLContext
1200
+        // - resize virtual window without OCCT viewer redraw
1201
+        // - copy viewport restore it back
1202
+        // What does not handled:
1203
+        // - Dual Output, OCCT makes OpenGL context always on master window
1204
+        // - scissor test is likely incorrectly applied
1205
+        // - MSAA blitting might use incorrect viewport
1206
+        Handle(OpenGl_GraphicDriver) aDriver = Handle(OpenGl_GraphicDriver)::DownCast(myViewer->Driver());
1207
+        Handle(OpenGl_Context) aCtx = aDriver->GetSharedContext();
1208
+        Handle(StCADFrameBuffer) anFboWrapper = Handle(StCADFrameBuffer)::DownCast(aCtx->DefaultFrameBuffer());
1209
+        if(anFboWrapper.IsNull()) {
1210
+            anFboWrapper = new StCADFrameBuffer();
1211
         }
1212
-        if(params.fillMode->getValue() == ST_FILL_MESH
1213
-        || params.fillMode->getValue() == ST_FILL_WIREFRAME) {
1214
-            glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
1215
-            myModel->drawFixed(*myContext);
1216
+        anFboWrapper->wrapFbo(*myContext);
1217
+        aCtx->SetDefaultFrameBuffer(anFboWrapper);
1218
+        myContext->stglBindFramebuffer(0);
1219
+
1220
+        Handle(StCADWindow) aWindow = Handle(StCADWindow)::DownCast(myView->Window());
1221
+        if(anFboWrapper->GetVPSizeX() > 0
1222
+        && anFboWrapper->GetVPSizeY() > 0
1223
+        && aWindow->SetSize(anFboWrapper->GetVPSizeX(), anFboWrapper->GetVPSizeY())) {
1224
+            StRectI_t aWinRect = myWindow->getPlacement();
1225
+            Standard_Real aRatio = double(aWinRect.width()) / double(aWinRect.height());
1226
+            myView->Camera()->SetAspect(aRatio);
1227
+            myView->View()->Resized();
1228
         }
1229
-        glDisable(GL_LIGHT0);
1230
-        glDisable(GL_LIGHTING);
1231
 
1232
-        if(params.fillMode->getValue() == ST_FILL_SHADED_MESH) {
1233
-            glColor3f(1.0f, 1.0f, 1.0f); // white
1234
-            glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
1235
-            myModel->drawFixed(*myContext);
1236
-        }
1237
-        glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
1238
+        StGLBoxPx aVPort = myContext->stglViewport();
1239
+        StGLBoxPx aScissRect;
1240
+        bool toSetScissorRect = myContext->stglScissorRect(aScissRect);
1241
 
1242
-        if(myNormalsMesh != NULL) {
1243
-            glColor3f(1.0f, 1.0f, 1.0f); // white
1244
-            myNormalsMesh->drawFixed(*myContext);
1245
-        }
1246
+        myView->Camera()->SetProjectionType(aProj);
1247
+        myView->Camera()->SetZFocus(Graphic3d_Camera::FocusType_Relative, params.ZFocus->getValue());
1248
+        myView->Camera()->SetIOD   (Graphic3d_Camera::IODType_Relative,   params.StereoIOD->getValue());
1249
 
1250
-/// draw bnd box+
1251
-/*        glColor3f(1.0f, 0.0f, 1.0f);
1252
-        StGLPrism aBndBox;
1253
-        aBndBox.init(myModel->myBndBox);
1254
-        aBndBox.drawFixed();*/
1255
-/// draw bnd box2
1256
-/*        glColor3f(0.0f, 1.0f, 1.0f);
1257
-        myPrism.drawFixed();*/
1258
-/// draw bnd sphere
1259
-/*        glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
1260
-            StGLUVSphere sBndSphere;
1261
-            sBndSphere.init(myModel->myBndSphere, 20);
1262
-            sBndSphere.drawFixed();
1263
-        glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);*/
1264
-///
1265
-    }
1266
-
1267
-    /// draw trihedron
1268
-    myContext->core11fwd->glDisable(GL_DEPTH_TEST);
1269
-    if(params.toShowTrihedron->getValue()) {
1270
-        StRectD_t aCurrSect; myProjection.getZParams(myProjection.getZScreen(), aCurrSect);
1271
-        GLfloat aLineLen = GLfloat(std::abs(aCurrSect.top()) * 0.2);
1272
-        StGLVec3 aTrihCenter = aCam.getCenter();
1273
-        aTrihCenter -= aCam.getSide() * ((GLfloat )std::abs(aCurrSect.left()) * 1.0f - aLineLen); // move to left
1274
-        aTrihCenter -= aCam.getUp()   * ((GLfloat )std::abs(aCurrSect.top())  * 1.0f - aLineLen); // move to bottom
1275
-        glBegin(GL_LINES);
1276
-            // DX
1277
-            glColor3f(1.0f, 0.0f, 0.0f);
1278
-            glVertex3fv(aTrihCenter);
1279
-            glVertex3fv(aTrihCenter + StGLVec3::DX() * aLineLen);
1280
-            // DY
1281
-            glColor3f(0.0f, 1.0f, 0.0f);
1282
-            glVertex3fv(aTrihCenter);
1283
-            glVertex3fv(aTrihCenter + StGLVec3::DY() * aLineLen);
1284
-            // DZ
1285
-            glColor3f(0.0f, 0.0f, 1.0f);
1286
-            glVertex3fv(aTrihCenter);
1287
-            glVertex3fv(aTrihCenter + StGLVec3::DZ() * aLineLen);
1288
-        glEnd();
1289
+        myView->Redraw();
1290
+
1291
+        myContext->stglResizeViewport(aVPort);
1292
+        if(toSetScissorRect) {
1293
+            myContext->stglSetScissorRect(aScissRect, false);
1294
+        }
1295
+    } else if(!myContext.isNull()
1296
+            && myContext->core20fwd != NULL) {
1297
+        // clear the screen and the depth buffer
1298
+        myContext->core11fwd->glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
1299
     }
1300
-#endif
1301
+
1302
+    myGUI->getCamera()->setView(theView);
1303
+    myProjection.setView(theView);
1304
 
1305
     // draw GUI
1306
     myContext->core11fwd->glDisable(GL_DEPTH_TEST);
1307
@@ -835,7 +881,7 @@
1308
 }
1309
 
1310
 void StCADViewer::doUpdateStateLoading() {
1311
-    const StString aFileToLoad = myCADLoader->getPlayList().getCurrentTitle();
1312
+    const StString aFileToLoad = myPlayList->getCurrentTitle();
1313
     if(aFileToLoad.isEmpty()) {
1314
         myWindow->setTitle("sView - CAD Viewer");
1315
     } else {
1316
@@ -844,7 +890,7 @@
1317
 }
1318
 
1319
 void StCADViewer::doUpdateStateLoaded(bool isSuccess) {
1320
-    const StString aFileLoaded = myCADLoader->getPlayList().getCurrentTitle();
1321
+    const StString aFileLoaded = myPlayList->getCurrentTitle();
1322
     if(aFileLoaded.isEmpty()) {
1323
         myWindow->setTitle("sView - CAD Viewer");
1324
     } else {
1325
@@ -859,93 +905,45 @@
1326
 }
1327
 
1328
 void StCADViewer::doListFirst(const size_t ) {
1329
-    if(myCADLoader->getPlayList().walkToFirst()) {
1330
+    if(myPlayList->walkToFirst()) {
1331
         myCADLoader->doLoadNext();
1332
         doUpdateStateLoading();
1333
     }
1334
 }
1335
 
1336
 void StCADViewer::doListPrev(const size_t ) {
1337
-    if(myCADLoader->getPlayList().walkToPrev()) {
1338
+    if(myPlayList->walkToPrev()) {
1339
         myCADLoader->doLoadNext();
1340
         doUpdateStateLoading();
1341
     }
1342
 }
1343
 
1344
 void StCADViewer::doListNext(const size_t ) {
1345
-    if(myCADLoader->getPlayList().walkToNext()) {
1346
+    if(myPlayList->walkToNext()) {
1347
         myCADLoader->doLoadNext();
1348
         doUpdateStateLoading();
1349
     }
1350
 }
1351
 
1352
 void StCADViewer::doListLast(const size_t ) {
1353
-    if(myCADLoader->getPlayList().walkToLast()) {
1354
+    if(myPlayList->walkToLast()) {
1355
         myCADLoader->doLoadNext();
1356
         doUpdateStateLoading();
1357
     }
1358
 }
1359
 
1360
-void StCADViewer::doFitALL(const size_t ) {
1361
-    if(myModel.isNull() || myModel->getBndSphere().isVoid()) {
1362
+void StCADViewer::doFileNext() {
1363
+    if(myCADLoader.isNull()) {
1364
         return;
1365
     }
1366
 
1367
-    // remember current camera direction
1368
-    StGLVec3 anEyeDir = myCam.getCenter() - myCam.getEye();
1369
-    anEyeDir.normalize();
1370
-
1371
-    // got the boundary sphere for first fit all approximation
1372
-    StGLVec3 aFitCenter = myModel->getBndSphere().getCenter();
1373
-    GLfloat aFitRadius  = myModel->getBndSphere().getRadius();
1374
-
1375
-    // aim the camera to the boundary sphere center
1376
-    myCam.setCenter(aFitCenter);
1377
-    // move camera out to avoid clipping by nearest Z-clipping plane
1378
-    anEyeDir *= 2.0f * aFitRadius;
1379
-    StGLVec3 anEye = myCam.getCenter() - anEyeDir;
1380
-    myCam.setEye(anEye);
1381
-
1382
-    // setup the save far Z-clipping plane
1383
-    myProjection.setZScreen(2.0f * aFitRadius);
1384
-    myProjection.setZFar(4.0f * aFitRadius); // limit important for orthogonal projection!
1385
-    myProjection.updateFrustum();
1386
-
1387
-    StBndCameraBox aCamBox(myCam);
1388
-    aCamBox.enlarge(myModel->getVertices());
1389
-    aCamBox.getPrism(*myContext, myPrism);
1390
-
1391
-    GLdouble aZScr = anEyeDir.modulus() - aCamBox.getDZ() * 0.5f;
1392
-    StRectD_t aCurrSect; myProjection.getZParams(aZScr, aCurrSect);
1393
-    GLfloat aCurrDY = 2.0f * GLfloat(aCurrSect.top()) / myProjection.getZoom();
1394
-
1395
-    // enlarge the rectangle to fit sphere
1396
-    GLfloat anAspect = myProjection.getAspect();
1397
-    GLfloat aNewDX = aCamBox.getDX();
1398
-    GLfloat aNewDY = aCamBox.getDY();
1399
-    // apply camera aspect ratio
1400
-    if(anAspect * aNewDY > aNewDX) {
1401
-        aNewDX = anAspect * aNewDY;
1402
-    } else {
1403
-        aNewDY = aNewDX / anAspect;
1404
-    }
1405
-    // compute linear scale factor
1406
-    myProjection.setZoom(aNewDY / aCurrDY);
1407
-    // move camera center to the boundary box center
1408
-    myCam.setCenter(aCamBox.getCenterGlobal());
1409
-    // move camera out from the boundary sphere center to avoid clipping by nearest Z-clipping plane
1410
-    anEye = myCam.getCenter() - anEyeDir;
1411
-    myCam.setEye(anEye);
1412
+    myCADLoader->doLoadNext();
1413
+    doUpdateStateLoading();
1414
 }
1415
 
1416
-void StCADViewer::doShowNormals(const bool toShow) {
1417
-    if(toShow && myNormalsMesh == NULL && !myModel.isNull()) {
1418
-        myNormalsMesh = new StGLNormalsMesh();
1419
-        myNormalsMesh->init(*myContext, *myModel);
1420
-    } else if(!toShow && myNormalsMesh != NULL) {
1421
-        myNormalsMesh->release(*myContext);
1422
-        delete myNormalsMesh;
1423
-        myNormalsMesh = NULL;
1424
+void StCADViewer::doFitAll(const size_t ) {
1425
+    if(!myView.IsNull()) {
1426
+        myView->FitAll(0.01, Standard_False);
1427
     }
1428
 }
1429
 
1430
@@ -958,17 +956,84 @@
1431
         case ST_PROJ_ORTHO: {
1432
             myWindow->setStereoOutput(false);
1433
             myProjection.setPerspective(false);
1434
+            if(!myView.IsNull()) {
1435
+                myView->Camera()->SetProjectionType(Graphic3d_Camera::Projection_Orthographic);
1436
+            }
1437
             break;
1438
         }
1439
         case ST_PROJ_PERSP: {
1440
             myWindow->setStereoOutput(false);
1441
             myProjection.setPerspective(true);
1442
+            if(!myView.IsNull()) {
1443
+                myView->Camera()->SetProjectionType(Graphic3d_Camera::Projection_Perspective);
1444
+            }
1445
             break;
1446
         }
1447
         case ST_PROJ_STEREO: {
1448
             myWindow->setStereoOutput(true);
1449
             myProjection.setPerspective(true);
1450
+            if(!myView.IsNull()) {
1451
+                myView->Camera()->SetProjectionType(Graphic3d_Camera::Projection_Perspective);
1452
+            }
1453
             break;
1454
         }
1455
     }
1456
 }
1457
+
1458
+void StCADViewer::doZoomIn(const double theValue) {
1459
+    if(myView.IsNull()) {
1460
+        return;
1461
+    }
1462
+
1463
+    myView->SetZoom(1.0 + theValue, Standard_True);
1464
+    //myProjection.setZoom(myProjection.getZoom() * 1.1f);
1465
+}
1466
+
1467
+void StCADViewer::doZoomOut(const double theValue) {
1468
+    if(myView.IsNull()) {
1469
+        return;
1470
+    }
1471
+
1472
+    myView->SetZoom(1.0 - theValue, Standard_True);
1473
+    //myProjection.setZoom(myProjection.getZoom() * 0.9f);
1474
+}
1475
+
1476
+void StCADViewer::doStereoZFocusCloser(const double theValue) {
1477
+    if(myView.IsNull()
1478
+    || params.ProjectMode->getValue() != ST_PROJ_STEREO) {
1479
+        return;
1480
+    }
1481
+
1482
+    float aFocus = params.ZFocus->getValue() - float(theValue * 0.5);
1483
+    params.ZFocus->setValue(aFocus);
1484
+}
1485
+
1486
+void StCADViewer::doStereoZFocusFarther(const double theValue) {
1487
+    if(myView.IsNull()
1488
+    || params.ProjectMode->getValue() != ST_PROJ_STEREO) {
1489
+        return;
1490
+    }
1491
+
1492
+    float aFocus = params.ZFocus->getValue() + float(theValue * 0.5);
1493
+    params.ZFocus->setValue(aFocus);
1494
+}
1495
+
1496
+void StCADViewer::doStereoIODDec(const double theValue) {
1497
+    if(myView.IsNull()
1498
+    || params.ProjectMode->getValue() != ST_PROJ_STEREO) {
1499
+        return;
1500
+    }
1501
+
1502
+    float aDist = params.StereoIOD->getValue() - float(theValue * 0.1);
1503
+    params.StereoIOD->setValue(aDist);
1504
+}
1505
+
1506
+void StCADViewer::doStereoIODInc(const double theValue) {
1507
+    if(myView.IsNull()
1508
+    || params.ProjectMode->getValue() != ST_PROJ_STEREO) {
1509
+        return;
1510
+    }
1511
+
1512
+    float aDist = params.StereoIOD->getValue() + float(theValue * 0.1);
1513
+    params.StereoIOD->setValue(aDist);
1514
+}
1515
sview-15_11.tar.gz/StCADViewer/StCADViewer.h -> sview-16_06.tar.gz/StCADViewer/StCADViewer.h Changed
225
 
1
@@ -1,16 +1,32 @@
2
 /**
3
  * This source is a part of sView program.
4
  *
5
- * Copyright © Kirill Gavrilov, 2011-2013
6
+ * Copyright © Kirill Gavrilov, 2011-2016
7
  */
8
 
9
 #ifndef __StCADViewer_h_
10
 #define __StCADViewer_h_
11
 
12
+#if defined(_WIN32)
13
+    #include <windows.h>
14
+    #ifdef AddPrinter
15
+        #undef AddPrinter
16
+    #endif
17
+#endif
18
+
19
+#include <AIS_InteractiveContext.hxx>
20
+#include <AIS_InteractiveObject.hxx>
21
+#include <V3d_View.hxx>
22
+#include <XCAFApp_Application.hxx>
23
+#include <TDocStd_Document.hxx>
24
+
25
 #include <StCore/StApplication.h>
26
+#include <StGL/StPlayList.h>
27
 #include <StGLMesh/StGLMesh.h>
28
 #include <StGLStereo/StGLProjCamera.h>
29
-#include <StSettings/StParam.h>
30
+#include <StSettings/StFloat32Param.h>
31
+
32
+//#include "StCADViewerGUI.h"
33
 
34
 enum {
35
     ST_PROJ_ORTHO,  //!< orthogonal projection matrix
36
@@ -22,6 +38,7 @@
37
 class StSettings;
38
 class StCADViewerGUI;
39
 class StCADLoader;
40
+class StCADDocument;
41
 
42
 /**
43
  * CAD Viewer application.
44
@@ -49,34 +66,36 @@
45
     /**
46
      * Open application.
47
      */
48
-    ST_CPPEXPORT virtual bool open();
49
+    ST_CPPEXPORT virtual bool open() ST_ATTR_OVERRIDE;
50
 
51
     /**
52
      * Process callback.
53
      */
54
-    ST_CPPEXPORT virtual void beforeDraw();
55
+    ST_CPPEXPORT virtual void beforeDraw() ST_ATTR_OVERRIDE;
56
 
57
     /**
58
      * Draw frame for requested view.
59
      */
60
-    ST_CPPEXPORT virtual void stglDraw(unsigned int theView);
61
+    ST_CPPEXPORT virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
62
 
63
     /**
64
      * Reset device - release GL resources in old window and re-create them in new window.
65
      */
66
-    ST_CPPEXPORT virtual bool resetDevice();
67
+    ST_CPPEXPORT virtual bool resetDevice() ST_ATTR_OVERRIDE;
68
 
69
         private: //! @name window events slots
70
 
71
-    ST_LOCAL virtual void doPause    (const StPauseEvent&  theEvent);
72
-    ST_LOCAL virtual void doResize   (const StSizeEvent&   theEvent);
73
-    ST_LOCAL virtual void doKeyDown  (const StKeyEvent&    theEvent);
74
-    ST_LOCAL virtual void doKeyHold  (const StKeyEvent&    theEvent);
75
-    ST_LOCAL virtual void doKeyUp    (const StKeyEvent&    theEvent);
76
-    ST_LOCAL virtual void doMouseDown(const StClickEvent&  theEvent);
77
-    ST_LOCAL virtual void doMouseUp  (const StClickEvent&  theEvent);
78
-    ST_LOCAL virtual void doFileDrop (const StDNDropEvent& theEvent);
79
-    ST_LOCAL virtual void doNavigate (const StNavigEvent&  theEvent);
80
+    ST_LOCAL virtual void doPause    (const StPauseEvent&  theEvent) ST_ATTR_OVERRIDE;
81
+    ST_LOCAL virtual void doResize   (const StSizeEvent&   theEvent) ST_ATTR_OVERRIDE;
82
+    ST_LOCAL virtual void doKeyDown  (const StKeyEvent&    theEvent) ST_ATTR_OVERRIDE;
83
+    ST_LOCAL virtual void doKeyHold  (const StKeyEvent&    theEvent) ST_ATTR_OVERRIDE;
84
+    ST_LOCAL virtual void doKeyUp    (const StKeyEvent&    theEvent) ST_ATTR_OVERRIDE;
85
+    ST_LOCAL virtual void doMouseDown(const StClickEvent&  theEvent) ST_ATTR_OVERRIDE;
86
+    ST_LOCAL virtual void doMouseUp  (const StClickEvent&  theEvent) ST_ATTR_OVERRIDE;
87
+    ST_LOCAL virtual void doGesture  (const StGestureEvent& theEvent) ST_ATTR_OVERRIDE;
88
+    ST_LOCAL virtual void doScroll   (const StScrollEvent& theEvent) ST_ATTR_OVERRIDE;
89
+    ST_LOCAL virtual void doFileDrop (const StDNDropEvent& theEvent) ST_ATTR_OVERRIDE;
90
+    ST_LOCAL virtual void doNavigate (const StNavigEvent&  theEvent) ST_ATTR_OVERRIDE;
91
 
92
         public: //!< callback Slots
93
 
94
@@ -111,55 +130,118 @@
95
     ST_LOCAL void doListLast(const size_t dummy = 0);
96
 
97
     /**
98
+     * load next file in the playlist.
99
+     */
100
+    ST_LOCAL void doFileNext();
101
+
102
+    /**
103
      * Fit ALL.
104
      */
105
-    ST_LOCAL void doFitALL(const size_t dummy = 0);
106
+    ST_LOCAL void doFitAll(const size_t dummy = 0);
107
 
108
         public: //!< Properties
109
 
110
     struct {
111
 
112
-        StHandle<StBoolParam>  isFullscreen;    //!< fullscreen state
113
-        StHandle<StBoolParam>  ToShowFps;       //!< display FPS meter
114
-        StHandle<StBoolParam>  toShowNormals;   //!< show normals flag
115
-        StHandle<StBoolParam>  toShowTrihedron; //!< show trihedron flag
116
-        StHandle<StBoolParam>  isLightTwoSides; //!< if on both sides of the triangle will be enlighted
117
-        StHandle<StInt32Param> projectMode;     //!< projection mode
118
-        StHandle<StInt32Param> fillMode;        //!< fill mode
119
-        int                    TargetFps;       //!< limit or not rendering FPS
120
+        StHandle<StBoolParamNamed>    IsFullscreen;    //!< fullscreen state
121
+        StHandle<StBoolParamNamed>    ToShowPlayList;  //!< display playlist
122
+        StHandle<StBoolParamNamed>    ToShowFps;       //!< display FPS meter
123
+        StHandle<StBoolParamNamed>    ToShowTrihedron; //!< show trihedron flag
124
+        StHandle<StEnumParam>         ProjectMode;     //!< projection mode
125
+        StHandle<StFloat32Param>      ZFocus;          //!< stereoscopic ZFocus value
126
+        StHandle<StFloat32Param>      StereoIOD;       //!< stereoscopic IOD value
127
+        StString                      LastFolder;      //!< laster folder used to open / save file
128
+        int                           TargetFps;       //!< limit or not rendering FPS
129
 
130
     } params;
131
 
132
         private:
133
 
134
+    /**
135
+     * Update strings.
136
+     */
137
+    ST_LOCAL void updateStrings();
138
+
139
+    /**
140
+     * Initialize GUI.
141
+     */
142
+    ST_LOCAL bool createGui();
143
+
144
+    /**
145
+     * Initialize the OCCT viewer.
146
+     */
147
+    ST_LOCAL bool initOcctViewer();
148
+
149
+    /**
150
+     * Perform initialization.
151
+     */
152
     ST_LOCAL bool init();
153
 
154
     /**
155
      * Release GL resources.
156
      */
157
     ST_LOCAL void releaseDevice();
158
+    ST_LOCAL void saveGuiParams();
159
     ST_LOCAL void saveAllParams();
160
 
161
         private: //!< private callback Slots
162
 
163
+    ST_LOCAL virtual void doChangeLanguage(const int32_t theNewLang) ST_ATTR_OVERRIDE;
164
     ST_LOCAL void doFullscreen(const bool theIsFullscreen);
165
-    ST_LOCAL void doShowNormals(const bool toShow);
166
     ST_LOCAL void doChangeProjection(const int32_t theProj);
167
+    ST_LOCAL void doZoomIn (const double theValue);
168
+    ST_LOCAL void doZoomOut(const double theValue);
169
+    ST_LOCAL void doStereoZFocusCloser(const double theValue);
170
+    ST_LOCAL void doStereoZFocusFarther(const double theValue);
171
+    ST_LOCAL void doStereoIODDec(const double theValue);
172
+    ST_LOCAL void doStereoIODInc(const double theValue);
173
+    ST_LOCAL void doOpen1FileFromGui(StHandle<StString> thePath);
174
+
175
+        public:
176
+
177
+    /**
178
+     * Actions identifiers.
179
+     */
180
+    enum ActionId {
181
+        Action_Fullscreen,
182
+        Action_ShowFps,
183
+        Action_FileInfo,
184
+        Action_ListFirst,
185
+        Action_ListLast,
186
+        Action_ListPrev,
187
+        Action_ListNext,
188
+        //Action_DeleteFile,
189
+        Action_FitAll,
190
+        Action_ProjOrthogonal,
191
+        Action_ProjPerspective,
192
+        Action_ProjStereo,
193
+        Action_ZoomIn,
194
+        Action_ZoomOut,
195
+        Action_StereoZFocusCloser,
196
+        Action_StereoZFocusFarther,
197
+        Action_StereoIODDec,
198
+        Action_StereoIODInc,
199
+    };
200
 
201
         private:
202
 
203
     StHandle<StGLContext>    myContext;
204
     StHandle<StSettings>     mySettings;      //!< current plugin local settings
205
+    StHandle<StPlayList>     myPlayList;      //!< play list
206
     StHandle<StCADViewerGUI> myGUI;           //!< GUI elements
207
     StHandle<StCADLoader>    myCADLoader;     //!< dedicated threaded class for load/save operations
208
-    StHandle<StGLMesh>       myModel;         //!< current drawn CAD model
209
     StGLProjCamera           myProjection;    //!< projection setup
210
     StPointD_t               myPrevMouse;     //!< previous mouse click
211
     bool                     myIsLeftHold;
212
     bool                     myIsRightHold;
213
     bool                     myIsMiddleHold;
214
     bool                     myIsCtrlPressed;
215
-    bool                     myIsCamIterative;
216
+
217
+    Handle(V3d_Viewer)             myViewer;     //!< main viewer
218
+    Handle(V3d_View)               myView;       //!< main view
219
+    Handle(AIS_InteractiveContext) myAisContext; //!< interactive context containing displayed objects
220
+
221
+    StHandle<StCADDocument>        myDoc;
222
 
223
         private:
224
 
225
sview-15_11.tar.gz/StCADViewer/StCADViewer.rc -> sview-16_06.tar.gz/StCADViewer/StCADViewer.rc Changed
10
 
1
@@ -15,7 +15,7 @@
2
     BEGIN
3
       VALUE "FileDescription", "Stereoscopic CAD Viewer\000"
4
       VALUE "FileVersion",     SVIEW_SDK_VER_STRING "\000"
5
-      VALUE "LegalCopyright",  "\251 2011-2014 Kirill Gavrilov\000"
6
+      VALUE "LegalCopyright",  "\251 2011-2016 Kirill Gavrilov\000"
7
       VALUE "ProductName",     "StCADViewer\000"
8
       VALUE "ProductVersion",  SVIEW_SDK_VER_STRING "\000"
9
       VALUE "OfficialSite",    "www.sview.ru\000"
10
sview-16_06.tar.gz/StCADViewer/StCADViewer.vcxproj Added
318
 
1
@@ -0,0 +1,315 @@
2
+<?xml version="1.0" encoding="utf-8"?>
3
+<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
+  <ItemGroup Label="ProjectConfigurations">
5
+    <ProjectConfiguration Include="Debug|Win32">
6
+      <Configuration>Debug</Configuration>
7
+      <Platform>Win32</Platform>
8
+    </ProjectConfiguration>
9
+    <ProjectConfiguration Include="Release|Win32">
10
+      <Configuration>Release</Configuration>
11
+      <Platform>Win32</Platform>
12
+    </ProjectConfiguration>
13
+    <ProjectConfiguration Include="Debug|x64">
14
+      <Configuration>Debug</Configuration>
15
+      <Platform>x64</Platform>
16
+    </ProjectConfiguration>
17
+    <ProjectConfiguration Include="Release|x64">
18
+      <Configuration>Release</Configuration>
19
+      <Platform>x64</Platform>
20
+    </ProjectConfiguration>
21
+  </ItemGroup>
22
+  <PropertyGroup Label="Globals">
23
+    <ProjectGuid>{B97C511B-8A26-4551-8A11-B562E07DFF49}</ProjectGuid>
24
+  </PropertyGroup>
25
+  <Import Project="$(SolutionDir)sView.Cpp.Default.props" />
26
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
27
+    <ConfigurationType>Application</ConfigurationType>
28
+    <CharacterSet>Unicode</CharacterSet>
29
+    <LocalDebuggerEnvironment>PATH=$(StOcctBin32d);$(PATH)</LocalDebuggerEnvironment>
30
+  </PropertyGroup>
31
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
32
+    <ConfigurationType>Application</ConfigurationType>
33
+    <CharacterSet>Unicode</CharacterSet>
34
+    <LocalDebuggerEnvironment>PATH=$(StOcctBin32);$(PATH)</LocalDebuggerEnvironment>
35
+  </PropertyGroup>
36
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
37
+    <ConfigurationType>Application</ConfigurationType>
38
+    <CharacterSet>Unicode</CharacterSet>
39
+    <LocalDebuggerEnvironment>PATH=$(StOcctBin64d);$(PATH)</LocalDebuggerEnvironment>
40
+  </PropertyGroup>
41
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
42
+    <ConfigurationType>Application</ConfigurationType>
43
+    <CharacterSet>Unicode</CharacterSet>
44
+    <LocalDebuggerEnvironment>PATH=$(StOcctBin64);$(PATH)</LocalDebuggerEnvironment>
45
+  </PropertyGroup>
46
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
47
+  <ImportGroup Label="ExtensionSettings">
48
+  </ImportGroup>
49
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
50
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
51
+  </ImportGroup>
52
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
53
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
54
+  </ImportGroup>
55
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
56
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
57
+  </ImportGroup>
58
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
59
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
60
+  </ImportGroup>
61
+  <PropertyGroup Label="UserMacros" />
62
+  <PropertyGroup>
63
+    <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
64
+    <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\..\bin\WIN_vc_x86\</OutDir>
65
+    <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">.\obj\WIN_vc_x86\</IntDir>
66
+    <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
67
+    <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">.\..\bin\WIN_vc_x86_DEBUG\</OutDir>
68
+    <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">.\obj\WIN_vc_x86_DEBUG\</IntDir>
69
+    <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</LinkIncremental>
70
+    <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">.\..\bin\WIN_vc_AMD64\</OutDir>
71
+    <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">.\obj\WIN_vc_AMD64\</IntDir>
72
+    <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
73
+    <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">.\..\bin\WIN_vc_AMD64_DEBUG\</OutDir>
74
+    <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">.\obj\WIN_vc_AMD64_DEBUG\</IntDir>
75
+    <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkIncremental>
76
+  </PropertyGroup>
77
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
78
+    <Midl>
79
+      <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
80
+      <MkTypLibCompatible>true</MkTypLibCompatible>
81
+      <SuppressStartupBanner>true</SuppressStartupBanner>
82
+      <TargetEnvironment>Win32</TargetEnvironment>
83
+      <TypeLibraryName>$(OutDir)\$(TargetName).tlb</TypeLibraryName>
84
+      <HeaderFileName>
85
+      </HeaderFileName>
86
+    </Midl>
87
+    <ClCompile>
88
+      <AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
89
+      <AdditionalIncludeDirectories>..\include;..\3rdparty\include;$(StOcctInc);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
90
+      <MultiProcessorCompilation>true</MultiProcessorCompilation>
91
+      <Optimization>MaxSpeed</Optimization>
92
+      <PreprocessorDefinitions>ST_HAVE_STCONFIG;_CRT_SECURE_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
93
+      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
94
+      <FunctionLevelLinking>true</FunctionLevelLinking>
95
+      <WarningLevel>Level4</WarningLevel>
96
+      <SuppressStartupBanner>true</SuppressStartupBanner>
97
+      <FloatingPointModel>Precise</FloatingPointModel>
98
+    </ClCompile>
99
+    <ResourceCompile>
100
+      <AdditionalIncludeDirectories>..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
101
+      <PreprocessorDefinitions>ST_HAVE_STCONFIG;_CRT_SECURE_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
102
+    </ResourceCompile>
103
+    <Link>
104
+      <AdditionalDependencies>opengl32.lib;user32.lib;gdi32.lib;Advapi32.lib;Comdlg32.lib;Shell32.lib;avutil.lib;avformat.lib;avcodec.lib;swscale.lib;freetype.lib;StGLWidgets.lib;StShared.lib;StCore.lib;StOutAnaglyph.lib;StOutDual.lib;StOutIZ3D.lib;StOutInterlace.lib;StOutPageFlip.lib;StOutDistorted.lib;TKMeshVS.lib;TKXDESTEP.lib;TKSTEP.lib;TKSTEPAttr.lib;TKSTEP209.lib;TKSTEPBase.lib;TKXDEIGES.lib;TKIGES.lib;TKXSBase.lib;TKOpenGl.lib;TKXCAF.lib;TKCAF.lib;TKV3d.lib;TKHLR.lib;TKMesh.lib;TKService.lib;TKOffset.lib;TKFillet.lib;TKShHealing.lib;TKBool.lib;TKBO.lib;TKPrim.lib;TKTopAlgo.lib;TKGeomAlgo.lib;TKBRep.lib;TKGeomBase.lib;TKG3d.lib;TKG2d.lib;TKMath.lib;TKLCAF.lib;TKCDF.lib;TKernel.lib;%(AdditionalDependencies)</AdditionalDependencies>
105
+      <SuppressStartupBanner>true</SuppressStartupBanner>
106
+      <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_x86;..\lib\WIN_vc_x86;$(StOcctLib32);$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
107
+      <SubSystem>Windows</SubSystem>
108
+    </Link>
109
+    <Manifest>
110
+      <EnableDpiAwareness>false</EnableDpiAwareness>
111
+    </Manifest>
112
+    <PostBuildEvent>
113
+      <Command>xcopy /Y "$(StOcctRes)\UnitsAPI\Lexi_Expr.dat" "$(TargetDir)\res\"
114
+xcopy /Y "$(StOcctRes)\UnitsAPI\Units.dat" "$(TargetDir)\res\"
115
+xcopy /Y "$(StOcctRes)\SHMessage\*.*" "$(TargetDir)\lang\"
116
+xcopy /Y "$(StOcctRes)\XSMessage\*.*" "$(TargetDir)\lang\"
117
+xcopy /Y "$(StOcctRes)\Shaders\*.*" "$(TargetDir)\shaders\StCADViewer\"
118
+xcopy /Y "$(StOcctRes)\TObj\*.msg" "$(TargetDir)\lang\"
119
+xcopy /Y "$(StOcctRes)\StdResource\*" "$(TargetDir)\res\"
120
+xcopy /Y "$(StOcctRes)\XSTEPResource\*" "$(TargetDir)\res\"
121
+xcopy /Y "$(StOcctRes)\XmlOcafResource\*.*" "$(TargetDir)\res\"
122
+cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)
123
+</Command>
124
+    </PostBuildEvent>
125
+  </ItemDefinitionGroup>
126
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
127
+    <Midl>
128
+      <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
129
+      <MkTypLibCompatible>true</MkTypLibCompatible>
130
+      <SuppressStartupBanner>true</SuppressStartupBanner>
131
+      <TargetEnvironment>Win32</TargetEnvironment>
132
+      <TypeLibraryName>$(OutDir)\$(TargetName).tlb</TypeLibraryName>
133
+      <HeaderFileName>
134
+      </HeaderFileName>
135
+    </Midl>
136
+    <ClCompile>
137
+      <AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
138
+      <AdditionalIncludeDirectories>..\include;..\3rdparty\include;$(StOcctInc);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
139
+      <MultiProcessorCompilation>true</MultiProcessorCompilation>
140
+      <Optimization>Disabled</Optimization>
141
+      <PreprocessorDefinitions>ST_HAVE_STCONFIG;_CRT_SECURE_NO_WARNINGS;_DEBUG;ST_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
142
+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
143
+      <WarningLevel>Level4</WarningLevel>
144
+      <SuppressStartupBanner>true</SuppressStartupBanner>
145
+      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
146
+      <CompileAs>Default</CompileAs>
147
+      <FloatingPointModel>Precise</FloatingPointModel>
148
+    </ClCompile>
149
+    <ResourceCompile>
150
+      <AdditionalIncludeDirectories>..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
151
+      <PreprocessorDefinitions>ST_HAVE_STCONFIG;_CRT_SECURE_NO_WARNINGS;_DEBUG;ST_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
152
+    </ResourceCompile>
153
+    <Link>
154
+      <AdditionalDependencies>opengl32.lib;user32.lib;gdi32.lib;Advapi32.lib;Comdlg32.lib;Shell32.lib;avutil.lib;avformat.lib;avcodec.lib;swscale.lib;freetype.lib;StGLWidgets.lib;StShared.lib;StCore.lib;StOutAnaglyph.lib;StOutDual.lib;StOutIZ3D.lib;StOutInterlace.lib;StOutPageFlip.lib;StOutDistorted.lib;TKMeshVS.lib;TKXDESTEP.lib;TKSTEP.lib;TKSTEPAttr.lib;TKSTEP209.lib;TKSTEPBase.lib;TKXDEIGES.lib;TKIGES.lib;TKXSBase.lib;TKOpenGl.lib;TKXCAF.lib;TKCAF.lib;TKV3d.lib;TKHLR.lib;TKMesh.lib;TKService.lib;TKOffset.lib;TKFillet.lib;TKShHealing.lib;TKBool.lib;TKBO.lib;TKPrim.lib;TKTopAlgo.lib;TKGeomAlgo.lib;TKBRep.lib;TKGeomBase.lib;TKG3d.lib;TKG2d.lib;TKMath.lib;TKLCAF.lib;TKCDF.lib;TKernel.lib;%(AdditionalDependencies)</AdditionalDependencies>
155
+      <SuppressStartupBanner>true</SuppressStartupBanner>
156
+      <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_x86_DEBUG;..\lib\WIN_vc_x86_DEBUG;$(StOcctLib32d);$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
157
+      <GenerateDebugInformation>true</GenerateDebugInformation>
158
+      <SubSystem>Console</SubSystem>
159
+    </Link>
160
+    <Manifest>
161
+      <EnableDpiAwareness>false</EnableDpiAwareness>
162
+    </Manifest>
163
+    <PostBuildEvent>
164
+      <Command>xcopy /Y "$(StOcctRes)\UnitsAPI\Lexi_Expr.dat" "$(TargetDir)\res\"
165
+xcopy /Y "$(StOcctRes)\UnitsAPI\Units.dat" "$(TargetDir)\res\"
166
+xcopy /Y "$(StOcctRes)\SHMessage\*.*" "$(TargetDir)\lang\"
167
+xcopy /Y "$(StOcctRes)\XSMessage\*.*" "$(TargetDir)\lang\"
168
+xcopy /Y "$(StOcctRes)\Shaders\*.*" "$(TargetDir)\shaders\StCADViewer\"
169
+xcopy /Y "$(StOcctRes)\TObj\*.msg" "$(TargetDir)\lang\"
170
+xcopy /Y "$(StOcctRes)\StdResource\*" "$(TargetDir)\res\"
171
+xcopy /Y "$(StOcctRes)\XSTEPResource\*" "$(TargetDir)\res\"
172
+xcopy /Y "$(StOcctRes)\XmlOcafResource\*.*" "$(TargetDir)\res\"
173
+cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)
174
+</Command>
175
+    </PostBuildEvent>
176
+  </ItemDefinitionGroup>
177
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
178
+    <Midl>
179
+      <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
180
+      <MkTypLibCompatible>true</MkTypLibCompatible>
181
+      <SuppressStartupBanner>true</SuppressStartupBanner>
182
+      <TargetEnvironment>x64</TargetEnvironment>
183
+      <TypeLibraryName>$(OutDir)\$(TargetName).tlb</TypeLibraryName>
184
+      <HeaderFileName>
185
+      </HeaderFileName>
186
+    </Midl>
187
+    <ClCompile>
188
+      <AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
189
+      <AdditionalIncludeDirectories>..\include;..\3rdparty\include;$(StOcctInc);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
190
+      <MultiProcessorCompilation>true</MultiProcessorCompilation>
191
+      <Optimization>MaxSpeed</Optimization>
192
+      <PreprocessorDefinitions>ST_HAVE_STCONFIG;_CRT_SECURE_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
193
+      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
194
+      <FunctionLevelLinking>true</FunctionLevelLinking>
195
+      <WarningLevel>Level4</WarningLevel>
196
+      <SuppressStartupBanner>true</SuppressStartupBanner>
197
+      <FloatingPointModel>Precise</FloatingPointModel>
198
+    </ClCompile>
199
+    <ResourceCompile>
200
+      <AdditionalIncludeDirectories>..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
201
+      <PreprocessorDefinitions>ST_HAVE_STCONFIG;_CRT_SECURE_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
202
+    </ResourceCompile>
203
+    <Link>
204
+      <AdditionalDependencies>opengl32.lib;user32.lib;gdi32.lib;Advapi32.lib;Comdlg32.lib;Shell32.lib;avutil.lib;avformat.lib;avcodec.lib;swscale.lib;freetype.lib;StGLWidgets.lib;StShared.lib;StCore.lib;StOutAnaglyph.lib;StOutDual.lib;StOutIZ3D.lib;StOutInterlace.lib;StOutPageFlip.lib;StOutDistorted.lib;TKMeshVS.lib;TKXDESTEP.lib;TKSTEP.lib;TKSTEPAttr.lib;TKSTEP209.lib;TKSTEPBase.lib;TKXDEIGES.lib;TKIGES.lib;TKXSBase.lib;TKOpenGl.lib;TKXCAF.lib;TKCAF.lib;TKV3d.lib;TKHLR.lib;TKMesh.lib;TKService.lib;TKOffset.lib;TKFillet.lib;TKShHealing.lib;TKBool.lib;TKBO.lib;TKPrim.lib;TKTopAlgo.lib;TKGeomAlgo.lib;TKBRep.lib;TKGeomBase.lib;TKG3d.lib;TKG2d.lib;TKMath.lib;TKLCAF.lib;TKCDF.lib;TKernel.lib;%(AdditionalDependencies)</AdditionalDependencies>
205
+      <SuppressStartupBanner>true</SuppressStartupBanner>
206
+      <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_AMD64;..\lib\WIN_vc_AMD64;$(StOcctLib64);$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
207
+      <SubSystem>Windows</SubSystem>
208
+    </Link>
209
+    <Manifest>
210
+      <EnableDpiAwareness>false</EnableDpiAwareness>
211
+    </Manifest>
212
+    <PostBuildEvent>
213
+      <Command>xcopy /Y "$(StOcctRes)\UnitsAPI\Lexi_Expr.dat" "$(TargetDir)\res\"
214
+xcopy /Y "$(StOcctRes)\UnitsAPI\Units.dat" "$(TargetDir)\res\"
215
+xcopy /Y "$(StOcctRes)\SHMessage\*.*" "$(TargetDir)\lang\"
216
+xcopy /Y "$(StOcctRes)\XSMessage\*.*" "$(TargetDir)\lang\"
217
+xcopy /Y "$(StOcctRes)\Shaders\*.*" "$(TargetDir)\shaders\StCADViewer\"
218
+xcopy /Y "$(StOcctRes)\TObj\*.msg" "$(TargetDir)\lang\"
219
+xcopy /Y "$(StOcctRes)\StdResource\*" "$(TargetDir)\res\"
220
+xcopy /Y "$(StOcctRes)\XSTEPResource\*" "$(TargetDir)\res\"
221
+xcopy /Y "$(StOcctRes)\XmlOcafResource\*.*" "$(TargetDir)\res\"
222
+cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)
223
+</Command>
224
+    </PostBuildEvent>
225
+  </ItemDefinitionGroup>
226
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
227
+    <Midl>
228
+      <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
229
+      <MkTypLibCompatible>true</MkTypLibCompatible>
230
+      <SuppressStartupBanner>true</SuppressStartupBanner>
231
+      <TargetEnvironment>x64</TargetEnvironment>
232
+      <TypeLibraryName>$(OutDir)\$(TargetName).tlb</TypeLibraryName>
233
+      <HeaderFileName>
234
+      </HeaderFileName>
235
+    </Midl>
236
+    <ClCompile>
237
+      <AdditionalOptions>%(AdditionalOptions)</AdditionalOptions>
238
+      <AdditionalIncludeDirectories>..\include;..\3rdparty\include;$(StOcctInc);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
239
+      <MultiProcessorCompilation>true</MultiProcessorCompilation>
240
+      <Optimization>Disabled</Optimization>
241
+      <PreprocessorDefinitions>ST_HAVE_STCONFIG;_CRT_SECURE_NO_WARNINGS;_DEBUG;ST_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
242
+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
243
+      <WarningLevel>Level4</WarningLevel>
244
+      <SuppressStartupBanner>true</SuppressStartupBanner>
245
+      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
246
+      <CompileAs>Default</CompileAs>
247
+      <FloatingPointModel>Precise</FloatingPointModel>
248
+    </ClCompile>
249
+    <ResourceCompile>
250
+      <AdditionalIncludeDirectories>..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
251
+      <PreprocessorDefinitions>ST_HAVE_STCONFIG;_CRT_SECURE_NO_WARNINGS;_DEBUG;ST_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
252
+    </ResourceCompile>
253
+    <Link>
254
+      <AdditionalDependencies>opengl32.lib;user32.lib;gdi32.lib;Advapi32.lib;Comdlg32.lib;Shell32.lib;avutil.lib;avformat.lib;avcodec.lib;swscale.lib;freetype.lib;StGLWidgets.lib;StShared.lib;StCore.lib;StOutAnaglyph.lib;StOutDual.lib;StOutIZ3D.lib;StOutInterlace.lib;StOutPageFlip.lib;StOutDistorted.lib;TKMeshVS.lib;TKXDESTEP.lib;TKSTEP.lib;TKSTEPAttr.lib;TKSTEP209.lib;TKSTEPBase.lib;TKXDEIGES.lib;TKIGES.lib;TKXSBase.lib;TKOpenGl.lib;TKXCAF.lib;TKCAF.lib;TKV3d.lib;TKHLR.lib;TKMesh.lib;TKService.lib;TKOffset.lib;TKFillet.lib;TKShHealing.lib;TKBool.lib;TKBO.lib;TKPrim.lib;TKTopAlgo.lib;TKGeomAlgo.lib;TKBRep.lib;TKGeomBase.lib;TKG3d.lib;TKG2d.lib;TKMath.lib;TKLCAF.lib;TKCDF.lib;TKernel.lib;%(AdditionalDependencies)</AdditionalDependencies>
255
+      <SuppressStartupBanner>true</SuppressStartupBanner>
256
+      <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_AMD64_DEBUG;..\lib\WIN_vc_AMD64_DEBUG;$(StOcctLib64d);$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
257
+      <GenerateDebugInformation>true</GenerateDebugInformation>
258
+      <SubSystem>Console</SubSystem>
259
+    </Link>
260
+    <Manifest>
261
+      <EnableDpiAwareness>false</EnableDpiAwareness>
262
+    </Manifest>
263
+    <PostBuildEvent>
264
+      <Command>xcopy /Y "$(StOcctRes)\UnitsAPI\Lexi_Expr.dat" "$(TargetDir)\res\"
265
+xcopy /Y "$(StOcctRes)\UnitsAPI\Units.dat" "$(TargetDir)\res\"
266
+xcopy /Y "$(StOcctRes)\SHMessage\*.*" "$(TargetDir)\lang\"
267
+xcopy /Y "$(StOcctRes)\XSMessage\*.*" "$(TargetDir)\lang\"
268
+xcopy /Y "$(StOcctRes)\Shaders\*.*" "$(TargetDir)\shaders\StCADViewer\"
269
+xcopy /Y "$(StOcctRes)\TObj\*.msg" "$(TargetDir)\lang\"
270
+xcopy /Y "$(StOcctRes)\StdResource\*" "$(TargetDir)\res\"
271
+xcopy /Y "$(StOcctRes)\XSTEPResource\*" "$(TargetDir)\res\"
272
+xcopy /Y "$(StOcctRes)\XmlOcafResource\*.*" "$(TargetDir)\res\"
273
+cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)
274
+</Command>
275
+    </PostBuildEvent>
276
+  </ItemDefinitionGroup>
277
+  <ItemGroup>
278
+    <ClCompile Include="main.cpp" />
279
+    <ClCompile Include="StCADFrameBuffer.cpp" />
280
+    <ClCompile Include="StCADLoader.cpp" />
281
+    <ClCompile Include="StCADMsgPrinter.cpp" />
282
+    <ClCompile Include="StCADViewer.cpp" />
283
+    <ClCompile Include="StCADViewerGUI.cpp" />
284
+    <ClCompile Include="StCADViewerStrings.cpp" />
285
+  </ItemGroup>
286
+  <ItemGroup>
287
+    <ClInclude Include="StCADFrameBuffer.h" />
288
+    <ClInclude Include="StCADLoader.h" />
289
+    <ClInclude Include="StCADMsgPrinter.h" />
290
+    <ClInclude Include="StCADPluginInfo.h" />
291
+    <ClInclude Include="StCADViewer.h" />
292
+    <ClInclude Include="StCADViewerGUI.h" />
293
+    <ClInclude Include="StCADViewerStrings.h" />
294
+    <ClInclude Include="StCADWindow.h" />
295
+  </ItemGroup>
296
+  <ItemGroup>
297
+    <ResourceCompile Include="StCADViewer.rc" />
298
+  </ItemGroup>
299
+  <ItemGroup>
300
+    <Manifest Include="..\dpiAware.manifest" />
301
+  </ItemGroup>
302
+  <ItemGroup>
303
+    <None Include="lang\chinese\language.lng" />
304
+    <None Include="lang\chinese\StCADViewer.lng" />
305
+    <None Include="lang\czech\language.lng" />
306
+    <None Include="lang\czech\StCADViewer.lng" />
307
+    <None Include="lang\english\StCADViewer.lng" />
308
+    <None Include="lang\french\StCADViewer.lng" />
309
+    <None Include="lang\german\StCADViewer.lng" />
310
+    <None Include="lang\korean\StCADViewer.lng" />
311
+    <None Include="lang\russian\StCADViewer.lng" />
312
+  </ItemGroup>
313
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
314
+  <ImportGroup Label="ExtensionTargets">
315
+  </ImportGroup>
316
+</Project>
317
\ No newline at end of file
318
sview-16_06.tar.gz/StCADViewer/StCADViewer.vcxproj.filters Added
26
 
1
@@ -0,0 +1,23 @@
2
+<?xml version="1.0" encoding="utf-8"?>
3
+<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
+  <ItemGroup>
5
+    <Filter Include="Source Files">
6
+      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
7
+      <Extensions>cpp;c;cc;cxx;m;mm;def;odl;idl;hpj;bat;asm;asmx</Extensions>
8
+    </Filter>
9
+    <Filter Include="Header Files">
10
+      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
11
+      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
12
+    </Filter>
13
+    <Filter Include="Translation Files">
14
+      <UniqueIdentifier>{51ccb8c8-e9c1-4b2b-b6d3-117ff8928d17}</UniqueIdentifier>
15
+      <Extensions>lng</Extensions>
16
+    </Filter>
17
+  </ItemGroup>
18
+  <ItemGroup>
19
+    <ResourceCompile Include="StCADViewer.rc" />
20
+  </ItemGroup>
21
+  <ItemGroup>
22
+    <Manifest Include="..\dpiAware.manifest" />
23
+  </ItemGroup>
24
+</Project>
25
\ No newline at end of file
26
sview-15_11.tar.gz/StCADViewer/StCADViewerGUI.cpp -> sview-16_06.tar.gz/StCADViewer/StCADViewerGUI.cpp Changed
548
 
1
@@ -1,25 +1,124 @@
2
 /**
3
  * This source is a part of sView program.
4
  *
5
- * Copyright © Kirill Gavrilov, 2011-2013
6
+ * Copyright © Kirill Gavrilov, 2011-2016
7
  */
8
 
9
 #include "StCADViewerGUI.h"
10
+
11
 #include "StCADViewer.h"
12
+#include "StCADLoader.h"
13
 
14
+#include <StGLWidgets/StGLCheckboxTextured.h>
15
 #include <StGLWidgets/StGLDescription.h>
16
 #include <StGLWidgets/StGLFpsLabel.h>
17
 #include <StGLWidgets/StGLMenu.h>
18
 #include <StGLWidgets/StGLMenuItem.h>
19
 #include <StGLWidgets/StGLMessageBox.h>
20
-#include <StGLWidgets/StGLTextureButton.h>
21
 #include <StGLWidgets/StGLMsgStack.h>
22
+#include <StGLWidgets/StGLOpenFile.h>
23
+#include <StGLWidgets/StGLPlayList.h>
24
+#include <StGLWidgets/StGLSeekBar.h>
25
+#include <StGLWidgets/StGLScrollArea.h>
26
+#include <StGLWidgets/StGLTable.h>
27
+#include <StGLWidgets/StGLTextureButton.h>
28
 
29
 #include <StVersion.h>
30
 
31
 #include "StCADViewerStrings.h"
32
 using namespace StCADViewerStrings;
33
 
34
+// auxiliary pre-processor definition
35
+#define stCTexture(theString) getTexturePath(stCString(theString))
36
+#define stCMenuIcon(theString) iconTexture(stCString(theString), myMenuIconSize)
37
+
38
+StInfoDialog::~StInfoDialog() {
39
+    //myPlugin->doSaveImageInfo(0);
40
+}
41
+
42
+void StCADViewerGUI::createToolbarOnTop() {
43
+    StMarginsI aButtonMargins;
44
+    const IconSize anIconSize = scaleIcon(32, aButtonMargins);
45
+    const int      anIconStep = scale(56);
46
+    aButtonMargins.extend(scale(12));
47
+
48
+    const StMarginsI& aRootMargins = getRootMargins();
49
+    myPanelUpper = new StGLContainer(this, aRootMargins.left, aRootMargins.top, StGLCorner(ST_VCORNER_TOP, ST_HCORNER_LEFT), scale(4096), scale(56));
50
+
51
+    // left side
52
+    {
53
+        int aBtnIter = 0;
54
+        StGLTextureButton* aBtnOpen = new StGLTextureButton(myPanelUpper, (aBtnIter++) * anIconStep, 0);
55
+        aBtnOpen->signals.onBtnClick.connect(this, &StCADViewerGUI::doOpenFile);
56
+        aBtnOpen->setTexturePath(iconTexture(stCString("actionOpen"), anIconSize));
57
+        aBtnOpen->setDrawShadow(true);
58
+        aBtnOpen->changeMargins() = aButtonMargins;
59
+     }
60
+
61
+    // right side
62
+    {
63
+        int aBtnIter = 0;
64
+        StGLTextureButton* aBtnEx = new StGLTextureButton(myPanelUpper, (aBtnIter--) * (-anIconStep), 0,
65
+                                                          StGLCorner(ST_VCORNER_TOP, ST_HCORNER_RIGHT));
66
+        aBtnEx->changeMargins() = aButtonMargins;
67
+        aBtnEx->setTexturePath(iconTexture(stCString("actionOverflow"), anIconSize));
68
+        aBtnEx->setDrawShadow(true);
69
+        aBtnEx->signals.onBtnClick += stSlot(this, &StCADViewerGUI::doShowMobileExMenu);
70
+    }
71
+}
72
+
73
+void StCADViewerGUI::createToolbarOnBottom() {
74
+    StMarginsI aButtonMargins;
75
+    const IconSize anIconSize = scaleIcon(32, aButtonMargins);
76
+    const int      anIconStep = scale(56);
77
+    aButtonMargins.extend(scale(12));
78
+
79
+    const StMarginsI& aRootMargins = getRootMargins();
80
+    myPanelBottom = new StGLContainer(this, aRootMargins.left, -aRootMargins.bottom, StGLCorner(ST_VCORNER_BOTTOM, ST_HCORNER_LEFT), scale(4096), scale(56));
81
+
82
+    // left side
83
+    {
84
+      //int aBtnIter = 0;
85
+      //myBtnPrev = new StGLTextureButton(myPanelBottom, (aBtnIter++) * anIconStep, 0);
86
+    }
87
+
88
+    // right side
89
+    {
90
+      int aBtnIter = 0;
91
+      StGLTextureButton* aBtnZoomIn = new StGLTextureButton(myPanelBottom, (aBtnIter++) * (-anIconStep), 0,
92
+                                                            StGLCorner(ST_VCORNER_TOP, ST_HCORNER_RIGHT));
93
+      aBtnZoomIn->changeMargins() = aButtonMargins;
94
+      aBtnZoomIn->setTexturePath(iconTexture(stCString("actionZoomIn"), anIconSize));
95
+      aBtnZoomIn->setDrawShadow(true);
96
+      aBtnZoomIn->setUserData(StCADViewer::Action_ZoomIn);
97
+      aBtnZoomIn->signals.onBtnHold += stSlot(this, &StCADViewerGUI::doAction);
98
+
99
+      StGLTextureButton* aBtnZoomOut = new StGLTextureButton(myPanelBottom, (aBtnIter++) * (-anIconStep), 0,
100
+          StGLCorner(ST_VCORNER_TOP, ST_HCORNER_RIGHT));
101
+      aBtnZoomOut->changeMargins() = aButtonMargins;
102
+      aBtnZoomOut->setTexturePath(iconTexture(stCString("actionZoomOut"), anIconSize));
103
+      aBtnZoomOut->setDrawShadow(true);
104
+      aBtnZoomOut->setUserData(StCADViewer::Action_ZoomOut);
105
+      aBtnZoomOut->signals.onBtnHold += stSlot(this, &StCADViewerGUI::doAction);
106
+
107
+      StGLTextureButton* aBtnFitAll = new StGLTextureButton(myPanelBottom, (aBtnIter++) * (-anIconStep), 0,
108
+          StGLCorner(ST_VCORNER_TOP, ST_HCORNER_RIGHT));
109
+      aBtnFitAll->changeMargins() = aButtonMargins;
110
+      aBtnFitAll->setTexturePath(iconTexture(stCString("actionFitAll"), anIconSize));
111
+      aBtnFitAll->setDrawShadow(true);
112
+      aBtnFitAll->setUserData(StCADViewer::Action_FitAll);
113
+      aBtnFitAll->signals.onBtnHold += stSlot(this, &StCADViewerGUI::doAction);
114
+
115
+      StGLCheckboxTextured* aBtnList = new StGLCheckboxTextured(myPanelBottom, myPlugin->params.ToShowPlayList,
116
+                                           iconTexture(stCString("actionVideoPlaylistOff"), anIconSize),
117
+                                           iconTexture(stCString("actionVideoPlaylist"),    anIconSize),
118
+                                           (aBtnIter++) * (-anIconStep), 0,
119
+                                           StGLCorner(ST_VCORNER_TOP, ST_HCORNER_RIGHT));
120
+      aBtnList->setDrawShadow(true);
121
+      aBtnList->changeMargins() = aButtonMargins;
122
+    }
123
+}
124
+
125
 /**
126
  * Main menu
127
  */
128
@@ -30,10 +129,8 @@
129
     StGLMenu* aMenuHelp = createHelpMenu(); // Root -> Help menu
130
 
131
     // Attach sub menus to root
132
-    myMenu0Root->addItem(myLangMap->changeValueId(MENU_VIEW,
133
-                         "View"), aMenuView);
134
-    myMenu0Root->addItem(myLangMap->changeValueId(MENU_HELP,
135
-                         "Help"), aMenuHelp);
136
+    myMenu0Root->addItem(tr(MENU_VIEW), aMenuView);
137
+    myMenu0Root->addItem(tr(MENU_HELP), aMenuHelp);
138
 }
139
 
140
 /**
141
@@ -43,22 +140,13 @@
142
     StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
143
 
144
     StGLMenu* aMenuProj = createProjMenu(); // Root -> View menu -> Projection
145
-    StGLMenu* aMenuFill = createFillMenu(); // Root -> View menu -> Fill Mode
146
 
147
 #if !defined(__ANDROID__)
148
-    aMenu->addItem(myLangMap->changeValueId(MENU_VIEW_FULLSCREEN, "Fullscreen"),
149
-                   myPlugin->params.isFullscreen);
150
+    aMenu->addItem(myPlugin->params.IsFullscreen);
151
 #endif
152
-    aMenu->addItem(myLangMap->changeValueId(MENU_VIEW_NORMALS,    "Show Normals"),
153
-                   myPlugin->params.toShowNormals);
154
-    aMenu->addItem(myLangMap->changeValueId(MENU_VIEW_TRIHEDRON,  "Show Trihedron"),
155
-                   myPlugin->params.toShowTrihedron);
156
-    aMenu->addItem(myLangMap->changeValueId(MENU_VIEW_TWOSIDES,   "Two sides lighting"),
157
-                   myPlugin->params.isLightTwoSides);
158
-    aMenu->addItem(myLangMap->changeValueId(MENU_VIEW_PROJECTION, "Projection"), aMenuProj);
159
-    aMenu->addItem(myLangMap->changeValueId(MENU_VIEW_FILLMODE,   "Fill Mode"),  aMenuFill);
160
-    aMenu->addItem(myLangMap->changeValueId(MENU_VIEW_FITALL,     "Fit ALL"))
161
-              ->signals.onItemClick.connect(myPlugin, &StCADViewer::doFitALL);
162
+    aMenu->addItem(myPlugin->params.ToShowTrihedron);
163
+    aMenu->addItem(tr(MENU_VIEW_PROJECTION), aMenuProj);
164
+    aMenu->addItem(tr(MENU_VIEW_FITALL), myPlugin->getAction(StCADViewer::Action_FitAll));
165
     return aMenu;
166
 }
167
 
168
@@ -67,26 +155,9 @@
169
  */
170
 StGLMenu* StCADViewerGUI::createProjMenu() {
171
     StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
172
-    aMenu->addItem(myLangMap->changeValueId(MENU_VIEW_PROJ_ORTHO,  "Orthogonal"),
173
-                   myPlugin->params.projectMode, ST_PROJ_ORTHO);
174
-    aMenu->addItem(myLangMap->changeValueId(MENU_VIEW_PROJ_PERSP,  "Perspective"),
175
-                   myPlugin->params.projectMode, ST_PROJ_PERSP);
176
-    aMenu->addItem(myLangMap->changeValueId(MENU_VIEW_PROJ_STEREO, "Stereo"),
177
-                   myPlugin->params.projectMode, ST_PROJ_STEREO);
178
-    return aMenu;
179
-}
180
-
181
-/**
182
- * Root -> View menu -> Fill Mode
183
- */
184
-StGLMenu* StCADViewerGUI::createFillMenu() {
185
-    StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
186
-    aMenu->addItem(myLangMap->changeValueId(MENU_VIEW_FILL_MESH,        "Mesh"),
187
-                   myPlugin->params.fillMode, ST_FILL_MESH);
188
-    aMenu->addItem(myLangMap->changeValueId(MENU_VIEW_FILL_SHADED,      "Shaded"),
189
-                   myPlugin->params.fillMode, ST_FILL_SHADING);
190
-    aMenu->addItem(myLangMap->changeValueId(MENU_VIEW_FILL_SHADED_MESH, "Shaded + Mesh"),
191
-                   myPlugin->params.fillMode, ST_FILL_SHADED_MESH);
192
+    aMenu->addItem(myPlugin->params.ProjectMode, ST_PROJ_ORTHO);
193
+    aMenu->addItem(myPlugin->params.ProjectMode, ST_PROJ_PERSP);
194
+    aMenu->addItem(myPlugin->params.ProjectMode, ST_PROJ_STEREO);
195
     return aMenu;
196
 }
197
 
198
@@ -97,15 +168,15 @@
199
     StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
200
     StGLMenu* aLangMenu = createLanguageMenu(); // Root -> Help -> Language menu
201
 
202
-    aMenu->addItem(myLangMap->changeValueId(MENU_HELP_ABOUT,   "About..."))
203
+    aMenu->addItem(tr(MENU_HELP_ABOUT))
204
          ->signals.onItemClick.connect(this, &StCADViewerGUI::doAboutProgram);
205
 
206
-    aMenu->addItem(myLangMap->changeValueId(MENU_HELP_LICENSE, "License text"))
207
+    aMenu->addItem(tr(MENU_HELP_LICENSE))
208
          ->signals.onItemClick.connect(this, &StCADViewerGUI::doOpenLicense);
209
 
210
-    aMenu->addItem("Show FPS", myPlugin->params.ToShowFps);
211
+    aMenu->addItem(myPlugin->params.ToShowFps);
212
 
213
-    aMenu->addItem(myLangMap->changeValueId(MENU_HELP_LANGS,   "Language"), aLangMenu);
214
+    aMenu->addItem(tr(MENU_HELP_LANGS), aLangMenu);
215
     return aMenu;
216
 }
217
 
218
@@ -120,21 +191,161 @@
219
     return aMenu;
220
 }
221
 
222
-StCADViewerGUI::StCADViewerGUI(StCADViewer* thePlugin)
223
+void StCADViewerGUI::doMobileSettings(const size_t ) {
224
+    const StHandle<StWindow>& aRend = myPlugin->getMainWindow();
225
+    StParamsList aParams;
226
+    aParams.add(myPlugin->StApplication::params.ActiveDevice);
227
+    aRend->getOptions(aParams);
228
+    aParams.add(myPlugin->params.ToShowFps);
229
+    aParams.add(myLangMap->params.language);
230
+    //aParams.add(myPlugin->params.IsMobileUI);
231
+    aParams.add(myPlugin->params.ToShowTrihedron);
232
+    aParams.add(myPlugin->params.ProjectMode);
233
+
234
+    StInfoDialog* aDialog = new StInfoDialog(myPlugin, this, tr(MENU_HELP_SETTINGS), scale(512), scale(300));
235
+
236
+    const int aWidthMax  = aDialog->getContent()->getRectPx().width();
237
+    int       aRowLast   = (int )aParams.size();
238
+    const int aNbRowsMax = aRowLast + 2;
239
+
240
+    StGLTable* aTable = new StGLTable(aDialog->getContent(), 0, 0, StGLCorner(ST_VCORNER_TOP, ST_HCORNER_CENTER));
241
+    aTable->changeItemMargins().top    = scale(4);
242
+    aTable->changeItemMargins().bottom = scale(4);
243
+    aTable->setupTable(aNbRowsMax, 2);
244
+    aTable->fillFromParams(aParams, StGLVec3(1.0f, 1.0f, 1.0f), aWidthMax);
245
+
246
+    aDialog->addButton(tr(BUTTON_CLOSE), true);
247
+    aDialog->stglInit();
248
+}
249
+
250
+void StCADViewerGUI::doOpenFile(const size_t ) {
251
+    StGLOpenFile* aDialog = new StGLOpenFile(this, tr(DIALOG_OPEN_FILE), tr(BUTTON_CLOSE));
252
+    aDialog->setMimeList(StCADLoader::ST_CAD_MIME_LIST);
253
+#if defined(_WIN32)
254
+    //
255
+#else
256
+    aDialog->addHotItem("/", "Root");
257
+#endif
258
+    aDialog->addHotItem(getResourceManager()->getFolder(StResourceManager::FolderId_SdCard));
259
+    aDialog->addHotItem(getResourceManager()->getFolder(StResourceManager::FolderId_Downloads));
260
+    aDialog->addHotItem(getResourceManager()->getFolder(StResourceManager::FolderId_Pictures));
261
+    aDialog->addHotItem(getResourceManager()->getFolder(StResourceManager::FolderId_Photos));
262
+    aDialog->signals.onFileSelected = stSlot(myPlugin, &StCADViewer::doOpen1FileFromGui);
263
+
264
+    if(myPlugin->params.LastFolder.isEmpty()) {
265
+        StHandle<StFileNode> aCurrFile = myPlugin->myPlayList->getCurrentFile();
266
+        if(!aCurrFile.isNull()) {
267
+            myPlugin->params.LastFolder = aCurrFile->isEmpty() ? aCurrFile->getFolderPath() : aCurrFile->getValue(0)->getFolderPath();
268
+        }
269
+    }
270
+    aDialog->openFolder(myPlugin->params.LastFolder);
271
+    setModalDialog(aDialog);
272
+}
273
+
274
+void StCADViewerGUI::doShowMobileExMenu(const size_t ) {
275
+    const int aTop = scale(56);
276
+
277
+    StGLMenu*     aMenu  = new StGLMenu(this, 0, aTop, StGLMenu::MENU_VERTICAL_COMPACT, true);
278
+    StGLMenuItem* anItem = NULL;
279
+    aMenu->setCorner(StGLCorner(ST_VCORNER_TOP, ST_HCORNER_RIGHT));
280
+    aMenu->setContextual(true);
281
+
282
+    anItem = aMenu->addItem(tr(MENU_HELP_ABOUT));
283
+    anItem->setIcon(stCMenuIcon("actionHelp"));
284
+    anItem->signals.onItemClick += stSlot(this, &StCADViewerGUI::doAboutProgram);
285
+    //anItem = aMenu->addItem(myPlugin->StApplication::params.ActiveDevice->getActiveValue());
286
+    anItem = aMenu->addItem(tr(MENU_HELP_SETTINGS));
287
+    anItem->setIcon(stCMenuIcon("actionSettings"));
288
+    anItem->signals.onItemClick += stSlot(this, &StCADViewerGUI::doMobileSettings);
289
+    aMenu->stglInit();
290
+    setFocus(aMenu);
291
+}
292
+
293
+StCADViewerGUI::StCADViewerGUI(StCADViewer*    thePlugin,
294
+                               StTranslations* theLangMap,
295
+                               const StHandle<StPlayList>& thePlayList)
296
 : StGLRootWidget(thePlugin->myResMgr),
297
   myPlugin(thePlugin),
298
-  myLangMap(new StTranslations(thePlugin->myResMgr, StCADViewer::ST_DRAWER_PLUGIN_NAME)),
299
+  myLangMap(theLangMap),
300
   myMouseDescr(NULL),
301
   myMsgStack(NULL),
302
+  myPlayList(NULL),
303
   myMenu0Root(NULL),
304
+  myPanelUpper(NULL),
305
+  myPanelBottom(NULL),
306
+  myStereoIODBar(NULL),
307
+  myStereoIODLab(NULL),
308
+  myZFocusBar(NULL),
309
+  myZFocusLab(NULL),
310
   myFpsWidget(NULL),
311
   myIsGUIVisible(true) {
312
+    //const GLfloat aScale = myPlugin->params.ScaleHiDPI2X->getValue() ? 2.0f : myPlugin->params.ScaleHiDPI ->getValue();
313
+    //setScale(aScale, (StGLRootWidget::ScaleAdjust )myPlugin->params.ScaleAdjust->getValue());
314
+    //setMobile(myPlugin->params.IsMobileUI->getValue());
315
+    const GLfloat aScale = myPlugin->myWindow->getScaleFactor();
316
+    setScale(aScale, StGLRootWidget::ScaleAdjust_Normal);
317
+    setMobile(StWindow::isMobile());
318
+    changeRootMargins() = myPlugin->myWindow->getMargins();
319
+
320
     myPlugin->params.ToShowFps->signals.onChanged.connect(this, &StCADViewerGUI::doShowFPS);
321
 
322
     myMouseDescr = new StGLDescription(this);
323
 
324
     // create Main menu
325
-    createMainMenu();
326
+    //createMainMenu();
327
+
328
+    createToolbarOnTop();
329
+    createToolbarOnBottom();
330
+
331
+    StMarginsI aButtonMargins;
332
+    const int  anIconStep = scale(56);
333
+    aButtonMargins.extend(scale(12));
334
+
335
+    myZFocusBar = new StGLSeekBar(this, 0, scale(18));
336
+    myZFocusBar->changeRectPx().left()  = scale(8);
337
+    myZFocusBar->changeRectPx().right() = myZFocusBar->getRectPx().left() + 4 * anIconStep + scale(8);
338
+    myZFocusBar->changeRectPx().moveTopTo(-(anIconStep - myZFocusBar->getRectPx().height()) / 2);
339
+    myZFocusBar->setCorner(StGLCorner(ST_VCORNER_BOTTOM, ST_HCORNER_LEFT));
340
+    myZFocusBar->signals.onSeekClick  = stSlot(this, &StCADViewerGUI::doZFocusSet);
341
+    myZFocusBar->signals.onSeekScroll = stSlot(this, &StCADViewerGUI::doZFocusScroll);
342
+    myZFocusBar->setMoveTolerance(1);
343
+    myZFocusBar->changeMargins().left  = scale(8);
344
+    myZFocusBar->changeMargins().right = scale(8);
345
+
346
+    myZFocusLab = new StGLTextArea(myZFocusBar, 0, 0, StGLCorner(ST_VCORNER_TOP, ST_HCORNER_LEFT),
347
+                                   myZFocusBar->getRectPx().width(), myZFocusBar->getRectPx().height(), StGLTextArea::SIZE_NORMAL);
348
+    myZFocusLab->setBorder(false);
349
+    myZFocusLab->setTextColor(StGLVec3(1.0f, 1.0f, 1.0f));
350
+    myZFocusLab->setupAlignment(StGLTextFormatter::ST_ALIGN_X_CENTER,
351
+                                StGLTextFormatter::ST_ALIGN_Y_CENTER);
352
+    myZFocusLab->setDrawShadow(true);
353
+
354
+    myStereoIODBar = new StGLSeekBar(this, 0, scale(4));
355
+    myStereoIODBar->changeRectPx().left()  = scale(8);
356
+    myStereoIODBar->changeRectPx().right() = myStereoIODBar->getRectPx().left() + 4 * anIconStep + scale(8);
357
+    myStereoIODBar->changeRectPx().moveTopTo(-(anIconStep * 2 - myStereoIODBar->getRectPx().height()) / 2);
358
+    myStereoIODBar->setCorner(StGLCorner(ST_VCORNER_BOTTOM, ST_HCORNER_LEFT));
359
+    myStereoIODBar->signals.onSeekClick  = stSlot(this, &StCADViewerGUI::doStereoIODSet);
360
+    myStereoIODBar->signals.onSeekScroll = stSlot(this, &StCADViewerGUI::doStereoIODScroll);
361
+    myStereoIODBar->setMoveTolerance(1);
362
+    myStereoIODBar->changeMargins().left  = scale(8);
363
+    myStereoIODBar->changeMargins().right = scale(8);
364
+
365
+    myStereoIODLab = new StGLTextArea(myStereoIODBar, 0, 0, StGLCorner(ST_VCORNER_TOP, ST_HCORNER_LEFT),
366
+                                      myStereoIODBar->getRectPx().width(), myStereoIODBar->getRectPx().height(), StGLTextArea::SIZE_NORMAL);
367
+    myStereoIODLab->setBorder(false);
368
+    myStereoIODLab->setTextColor(StGLVec3(1.0f, 1.0f, 1.0f));
369
+    myStereoIODLab->setupAlignment(StGLTextFormatter::ST_ALIGN_X_CENTER,
370
+                                   StGLTextFormatter::ST_ALIGN_Y_CENTER);
371
+    myStereoIODLab->setDrawShadow(true);
372
+
373
+    myPlayList = new StGLPlayList(this, thePlayList);
374
+    myPlayList->setCorner(StGLCorner(ST_VCORNER_TOP, ST_HCORNER_RIGHT));
375
+    myPlayList->changeFitMargins().top    = scale(56);
376
+    myPlayList->changeFitMargins().bottom = scale(100);
377
+    //myPlayList->changeMargins().bottom    = scale(56);
378
+    myPlayList->setOpacity(myPlugin->params.ToShowPlayList->getValue() ? 1.0f : 0.0f, false);
379
+    myPlayList->signals.onOpenItem = stSlot(myPlugin, &StCADViewer::doFileNext);
380
 
381
     myMsgStack = new StGLMsgStack(this, myPlugin->getMessagesQueue());
382
     if(myPlugin->params.ToShowFps->getValue()) {
383
@@ -147,8 +358,21 @@
384
 }
385
 
386
 void StCADViewerGUI::setVisibility(const StPointD_t& , bool ) {
387
+    const bool toShowPlayList = myPlugin->params.ToShowPlayList->getValue();
388
+    //const float anOpacity = (float )myVisLerp.perform(toShowAll, toForceHide);
389
+    const float anOpacity = myIsGUIVisible ? 1.0f : 0.0f;
390
+
391
     if(myMenu0Root != NULL) {
392
-        myMenu0Root->setOpacity(myIsGUIVisible ? 1.0f : 0.0f, false);
393
+        myMenu0Root->setOpacity(anOpacity, false);
394
+    }
395
+    if(myPanelUpper != NULL) {
396
+        myPanelUpper->setOpacity(anOpacity, true);
397
+    }
398
+    if(myPanelBottom != NULL) {
399
+        myPanelBottom->setOpacity(anOpacity, true);
400
+    }
401
+    if(myPlayList != NULL) {
402
+        myPlayList->setOpacity(toShowPlayList ? anOpacity : 0.0f, true);
403
     }
404
 
405
     if(myMouseDescr != NULL) {
406
@@ -161,22 +385,45 @@
407
     if(myMouseDescr != NULL) {
408
         myMouseDescr->setPoint(theCursorZo);
409
     }
410
-    if(myLangMap->wasReloaded()) {
411
-        StGLMenu::DeleteWithSubMenus(myMenu0Root); myMenu0Root = NULL;
412
-        createMainMenu();
413
-        myMenu0Root->stglUpdateSubmenuLayout();
414
-        myLangMap->resetReloaded();
415
+    if(myZFocusBar != NULL) {
416
+        char aBuff[128];
417
+        stsprintf(aBuff, 128, "ZFocus: %3.0f%%", 100.0f * myPlugin->params.ZFocus->getNormalizedValue());
418
+        myZFocusBar->setProgress(myPlugin->params.ZFocus->getNormalizedValue());
419
+        myZFocusLab->setText(aBuff);
420
+        myZFocusBar->setOpacity(myPlugin->params.ProjectMode->getValue() == ST_PROJ_STEREO ? 1.0f : 0.0f, false);
421
+    }
422
+    if(myStereoIODBar != NULL) {
423
+        char aBuff[128];
424
+        stsprintf(aBuff, 128, "IOD: %3.0f%%", 100.0f * myPlugin->params.StereoIOD->getNormalizedValue());
425
+        myStereoIODBar->setProgress(myPlugin->params.StereoIOD->getNormalizedValue());
426
+        myStereoIODLab->setText(aBuff);
427
+        myStereoIODBar->setOpacity(myPlugin->params.ProjectMode->getValue() == ST_PROJ_STEREO ? 1.0f : 0.0f, false);
428
     }
429
 }
430
 
431
 void StCADViewerGUI::stglResize(const StGLBoxPx& theRectPx) {
432
+    const int aSizeX = theRectPx.width();
433
     const StMarginsI& aMargins = myPlugin->getMainWindow()->getMargins();
434
     const bool areNewMargins = aMargins != getRootMargins();
435
     if(areNewMargins) {
436
         changeRootMargins() = aMargins;
437
     }
438
 
439
+    if(myPanelUpper != NULL) {
440
+        myPanelUpper->changeRectPx().right() = aSizeX;
441
+    }
442
+    if(myPanelBottom != NULL) {
443
+        myPanelBottom->changeRectPx().right() = aSizeX;
444
+    }
445
     if(areNewMargins) {
446
+        if(myPanelUpper != NULL) {
447
+            myPanelUpper->changeRectPx().left() = aMargins.left;
448
+            myPanelUpper->changeRectPx().top()  = aMargins.top;
449
+        }
450
+        if(myPanelBottom != NULL) {
451
+            myPanelBottom->changeRectPx().left() = aMargins.left;
452
+            myPanelBottom->changeRectPx().top()  = aMargins.top;
453
+        }
454
         if(myMenu0Root != NULL) {
455
             myMenu0Root->changeRectPx().left() = aMargins.left;
456
             myMenu0Root->changeRectPx().top()  = aMargins.top;
457
@@ -199,22 +446,46 @@
458
 }
459
 
460
 void StCADViewerGUI::doAboutProgram(const size_t ) {
461
-    const StString& aTitle     = myLangMap->changeValueId(ABOUT_DPLUGIN_NAME, "sView - Tiny CAD Viewer");
462
-    const StString& aVerString = myLangMap->changeValueId(ABOUT_VERSION,      "version");
463
-    const StString& aDescr     = myLangMap->changeValueId(ABOUT_DESCRIPTION,
464
-        "CAD viewer allows you to view CAD files in formats IGES, STEP, BREP using OCCT.\n"
465
-        "(C) 2011-2015 Kirill Gavrilov (kirill@sview.ru).\nOfficial site: www.sview.ru");
466
-    StGLMessageBox* anAboutDialog = new StGLMessageBox(this, "", aTitle + '\n'
467
-        + aVerString + " " + StVersionInfo::getSDKVersionString() + "\n \n" + aDescr,
468
-        512, 300);
469
-    anAboutDialog->addButton("Close");
470
-    anAboutDialog->stglInit();
471
+    const StGLVec3 THE_WHITE(1.0f, 1.0f, 1.0f);
472
+    const StString anAbout = tr(ABOUT_DPLUGIN_NAME) + '\n'
473
+                           + tr(ABOUT_VERSION) + " " + StVersionInfo::getSDKVersionString()
474
+                           + "\n \n" + tr(ABOUT_DESCRIPTION).format("2011-2016", "kirill@sview.ru", "www.sview.ru");
475
+
476
+    StArgumentsMap anInfo;
477
+    anInfo.add(StDictEntry("CPU cores", StString(StThread::countLogicalProcessors()) + StString(" logical processor(s)")));
478
+    getContext().stglFullInfo(anInfo);
479
+
480
+    StGLMessageBox* aDialog = new StGLMessageBox(this, tr(MENU_HELP_ABOUT), "", scale(512), scale(300));
481
+    StGLTable* aTable = new StGLTable(aDialog->getContent(), 0, 0, StGLCorner(ST_VCORNER_TOP, ST_HCORNER_CENTER));
482
+    aTable->setupTable((int )anInfo.size() + 1, 2);
483
+
484
+    const int aTextMaxWidth = aDialog->getContent()->getRectPx().width() - 2 * (aTable->getItemMargins().left + aTable->getItemMargins().right);
485
+    StGLTableItem& anAboutItem = aTable->changeElement(0, 0); anAboutItem.setColSpan(2);
486
+    StGLTextArea*  anAboutLab  = new StGLTextArea(&anAboutItem, 0, 0, StGLCorner(ST_VCORNER_CENTER, ST_HCORNER_CENTER));
487
+    anAboutLab->setupAlignment(StGLTextFormatter::ST_ALIGN_X_CENTER,
488
+                               StGLTextFormatter::ST_ALIGN_Y_TOP);
489
+    anAboutLab->setText(anAbout + "\n\n<b><i>" + tr(ABOUT_SYSTEM) + "</i></b>\n");
490
+    anAboutLab->setTextColor(THE_WHITE);
491
+    anAboutLab->stglInitAutoHeightWidth(aTextMaxWidth);
492
+
493
+    aTable->fillFromMap(anInfo, THE_WHITE,
494
+                        aDialog->getContent()->getRectPx().width(),
495
+                        aDialog->getContent()->getRectPx().width() / 2, 1);
496
+
497
+    aDialog->addButton(tr(BUTTON_CLOSE));
498
+    aDialog->stglInit();
499
+    setModalDialog(aDialog);
500
 }
501
 
502
 void StCADViewerGUI::doOpenLicense(const size_t ) {
503
     StProcess::openURL(StProcess::getStShareFolder() + "info" + SYS_FS_SPLITTER + "license.txt");
504
 }
505
 
506
+void StCADViewerGUI::doAction(const size_t theActionId,
507
+                              const double theDuration) {
508
+    myPlugin->invokeAction((int )theActionId, theDuration);
509
+}
510
+
511
 void StCADViewerGUI::doShowFPS(const bool ) {
512
     if(myFpsWidget != NULL) {
513
         delete myFpsWidget;
514
@@ -225,3 +496,33 @@
515
     myFpsWidget = new StGLFpsLabel(this);
516
     myFpsWidget->stglInit();
517
 }
518
+
519
+void StCADViewerGUI::doZFocusSet(const int    theMouseBtn,
520
+                                 const double theValue) {
521
+    if(theMouseBtn == ST_MOUSE_LEFT) {
522
+        myPlugin->params.ZFocus->setNormalizedValue((float )theValue);
523
+    }
524
+}
525
+
526
+void StCADViewerGUI::doZFocusScroll(const double theDelta) {
527
+    if(theDelta > 0.001) {
528
+        myPlugin->params.ZFocus->increment();
529
+    } else if(theDelta < -0.001) {
530
+        myPlugin->params.ZFocus->decrement();
531
+    }
532
+}
533
+
534
+void StCADViewerGUI::doStereoIODSet(const int    theMouseBtn,
535
+                                    const double theValue) {
536
+    if(theMouseBtn == ST_MOUSE_LEFT) {
537
+        myPlugin->params.StereoIOD->setNormalizedValue((float )theValue);
538
+    }
539
+}
540
+
541
+void StCADViewerGUI::doStereoIODScroll(const double theDelta) {
542
+    if(theDelta > 0.001) {
543
+        myPlugin->params.StereoIOD->increment();
544
+    } else if(theDelta < -0.001) {
545
+        myPlugin->params.StereoIOD->decrement();
546
+    }
547
+}
548
sview-15_11.tar.gz/StCADViewer/StCADViewerGUI.h -> sview-16_06.tar.gz/StCADViewer/StCADViewerGUI.h Changed
198
 
1
@@ -1,13 +1,14 @@
2
 /**
3
  * This source is a part of sView program.
4
  *
5
- * Copyright © Kirill Gavrilov, 2011-2013
6
+ * Copyright © Kirill Gavrilov, 2011-2016
7
  */
8
 
9
 #ifndef __StCADViewerGUI_h_
10
 #define __StCADViewerGUI_h_
11
 
12
-#include <StGLWidgets/StGLWidget.h>
13
+#include <StGL/StPlayList.h>
14
+#include <StGLWidgets/StGLMessageBox.h>
15
 #include <StGLWidgets/StGLRootWidget.h>
16
 #include <StSettings/StTranslations.h>
17
 
18
@@ -16,48 +17,160 @@
19
 class StGLFpsLabel;
20
 class StGLMenu;
21
 class StGLMenuItem;
22
+class StGLPlayList;
23
+class StGLSeekBar;
24
 class StGLTextureButton;
25
 class StGLMsgStack;
26
 
27
-class StCADViewerGUI : public StGLRootWidget {
28
+/**
29
+ * Customized message box.
30
+ */
31
+class ST_LOCAL StInfoDialog : public StGLMessageBox {
32
 
33
         public:
34
 
35
-    StCADViewer*              myPlugin; //!< link to the main class
36
-    StHandle<StTranslations> myLangMap; //!< translated strings map
37
+    ST_LOCAL StInfoDialog(StCADViewer*    thePlugin,
38
+                          StGLWidget*     theParent,
39
+                          const StString& theTitle,
40
+                          const int       theWidth,
41
+                          const int       theHeight)
42
+    : StGLMessageBox(theParent, theTitle, "", theWidth, theHeight), myPlugin(thePlugin) {}
43
+    ST_LOCAL virtual ~StInfoDialog();
44
 
45
-    StGLDescription*      myMouseDescr; //!< description shown near mouse cursor
46
-    StGLMsgStack*           myMsgStack; //!< messages stack
47
-    StGLMenu*              myMenu0Root; //!< main menu
48
-    StGLFpsLabel*          myFpsWidget; //!< FPS meter
49
+        private:
50
 
51
-    bool                myIsGUIVisible;
52
+    StCADViewer* myPlugin;
53
 
54
-        private: //!< menus creation routines
55
+};
56
 
57
-    ST_LOCAL void      createMainMenu();         //!< Root (Main menu)
58
-    ST_LOCAL StGLMenu* createViewMenu();         //!< Root -> View menu
59
-    ST_LOCAL StGLMenu* createProjMenu();         //!< Root -> View menu -> Projection
60
-    ST_LOCAL StGLMenu* createFillMenu();         //!< Root -> View menu -> Fill Mode
61
-    ST_LOCAL StGLMenu* createHelpMenu();         //!< Root -> Help menu
62
-    ST_LOCAL StGLMenu* createLanguageMenu();     //!< Root -> Help -> Language menu
63
+/**
64
+ * Root GUI widget for Tiny CAD Viewer application.
65
+ */
66
+class StCADViewerGUI : public StGLRootWidget {
67
 
68
         public: //!< StGLWidget overrides
69
 
70
-    ST_LOCAL StCADViewerGUI(StCADViewer* thePlugin);
71
+    ST_LOCAL StCADViewerGUI(StCADViewer*    thePlugin,
72
+                            StTranslations* theLangMap,
73
+                            const StHandle<StPlayList>& thePlayList);
74
     ST_LOCAL virtual ~StCADViewerGUI();
75
-    ST_LOCAL virtual void stglUpdate(const StPointD_t& theCursorZo);
76
-    ST_LOCAL virtual void stglResize(const StGLBoxPx&  theRectPx);
77
-    ST_LOCAL virtual void stglDraw(unsigned int theView);
78
+    ST_LOCAL virtual void stglUpdate(const StPointD_t& theCursorZo) ST_ATTR_OVERRIDE;
79
+    ST_LOCAL virtual void stglResize(const StGLBoxPx&  theRectPx) ST_ATTR_OVERRIDE;
80
+    ST_LOCAL virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
81
 
82
     ST_LOCAL void setVisibility(const StPointD_t& theCursorZo, bool );
83
 
84
+    /**
85
+     * @return relative path to the texture
86
+     */
87
+    ST_LOCAL StString getTexturePath(const StCString& theTextureName) const {
88
+        return StString("textures" ST_FILE_SPLITTER) + theTextureName;
89
+    }
90
+
91
+    /**
92
+     * @return relative path to the texture
93
+     */
94
+    ST_LOCAL StString iconTexture(const StCString& theName,
95
+                                  const IconSize   theSize) const {
96
+        return StGLRootWidget::iconTexture(StString("textures" ST_FILE_SPLITTER) + theName, theSize);
97
+    }
98
+
99
+    /**
100
+     * @return translation for the string with specified id
101
+     */
102
+    ST_LOCAL const StString& tr(const size_t theId) const {
103
+        return myLangMap->getValue(theId);
104
+    }
105
+
106
+    /**
107
+     * @return translation for the string with specified id
108
+     */
109
+    ST_LOCAL const StString& tr(const StString& theId) const {
110
+        return myLangMap->getValue(theId);
111
+    }
112
+
113
         public: //!< callback Slots
114
 
115
     ST_LOCAL void doAboutProgram(const size_t );
116
     ST_LOCAL void doOpenLicense(const size_t );
117
+    ST_LOCAL void doAction(const size_t theActionId,
118
+                           const double theDuration);
119
     ST_LOCAL void doShowFPS(const bool );
120
 
121
+    /**
122
+     * Show settings dialog.
123
+     */
124
+    ST_LOCAL void doMobileSettings(const size_t );
125
+
126
+    /**
127
+     * Show open file dialog.
128
+     */
129
+    ST_LOCAL void doOpenFile(const size_t );
130
+
131
+    /**
132
+     * Show context menu.
133
+     */
134
+    ST_LOCAL void doShowMobileExMenu(const size_t );
135
+
136
+    /**
137
+     * Change ZFocus on mouse click.
138
+     */
139
+    ST_LOCAL void doZFocusSet(const int    theMouseBtn,
140
+                              const double theValue);
141
+
142
+    /**
143
+     * Change ZFocus on mouse scroll.
144
+     */
145
+    ST_LOCAL void doZFocusScroll(const double theDelta);
146
+
147
+    /**
148
+     * Change IOD on mouse click.
149
+     */
150
+    ST_LOCAL void doStereoIODSet(const int    theMouseBtn,
151
+                                 const double theValue);
152
+
153
+    /**
154
+     * Change IOD on mouse scroll.
155
+     */
156
+    ST_LOCAL void doStereoIODScroll(const double theDelta);
157
+
158
+        private: //!< menus creation routines
159
+
160
+    ST_LOCAL void      createMainMenu();         //!< Root (Main menu)
161
+    ST_LOCAL StGLMenu* createViewMenu();         //!< Root -> View menu
162
+    ST_LOCAL StGLMenu* createProjMenu();         //!< Root -> View menu -> Projection
163
+    ST_LOCAL StGLMenu* createHelpMenu();         //!< Root -> Help menu
164
+    ST_LOCAL StGLMenu* createLanguageMenu();     //!< Root -> Help -> Language menu
165
+
166
+    /**
167
+     * Define content of the top toolbar.
168
+     */
169
+    ST_LOCAL void createToolbarOnTop();
170
+
171
+    /**
172
+     * Define content of the bottom toolbar.
173
+     */
174
+    ST_LOCAL void createToolbarOnBottom();
175
+
176
+        private:
177
+
178
+    StCADViewer*      myPlugin;       //!< link to the main class
179
+    StTranslations*   myLangMap;      //!< translated strings map
180
+
181
+    StGLDescription*  myMouseDescr;   //!< description shown near mouse cursor
182
+    StGLMsgStack*     myMsgStack;     //!< messages stack
183
+    StGLPlayList*     myPlayList;     //!< playlist widget
184
+    StGLMenu*         myMenu0Root;    //!< main menu
185
+    StGLWidget*       myPanelUpper;   //!< upper  toolbar
186
+    StGLWidget*       myPanelBottom;  //!< bottom toolbar
187
+    StGLSeekBar*      myStereoIODBar; //!< stereo IOD control
188
+    StGLTextArea*     myStereoIODLab; //!< stereo IOD value label
189
+    StGLSeekBar*      myZFocusBar;    //!< stereo ZFocus control
190
+    StGLTextArea*     myZFocusLab;    //!< stereo ZFocus value label
191
+    StGLFpsLabel*     myFpsWidget;    //!< FPS meter
192
+
193
+    bool              myIsGUIVisible;
194
+
195
 };
196
 
197
 #endif //__StCADViewerGUI_h_
198
sview-16_06.tar.gz/StCADViewer/StCADViewerStrings.cpp Added
114
 
1
@@ -0,0 +1,112 @@
2
+/**
3
+ * This source is a part of sView program.
4
+ *
5
+ * Copyright © Kirill Gavrilov, 2011-2016
6
+ */
7
+
8
+#include "StCADViewerStrings.h"
9
+
10
+#include "StCADViewer.h"
11
+#include <StStrings/StLangMap.h>
12
+
13
+namespace StCADViewerStrings {
14
+
15
+inline void addAction(StLangMap&              theStrings,
16
+                      const int               theAction,
17
+                      const StString&         theAlias,
18
+                      const char*             theDefValue) {
19
+    theStrings(ACTIONS_FROM + theAction, theDefValue);
20
+    theStrings.addAlias(theAlias, ACTIONS_FROM + theAction);
21
+}
22
+
23
+void loadDefaults(StLangMap& theStrings) {
24
+    theStrings(BUTTON_CLOSE,
25
+               "Close");
26
+    theStrings(BUTTON_CANCEL,
27
+               "Cancel");
28
+    theStrings(BUTTON_DELETE,
29
+               "Delete");
30
+    theStrings(BUTTON_DEFAULT,
31
+               "Default");
32
+    theStrings(BUTTON_DEFAULTS,
33
+               "Defaults");
34
+    theStrings(BUTTON_ASSIGN,
35
+               "Assign");
36
+
37
+    theStrings(MENU_VIEW,
38
+               "View");
39
+    theStrings(MENU_HELP,
40
+               "Help");
41
+    
42
+    theStrings(MENU_VIEW_FULLSCREEN,
43
+               "Fullscreen");
44
+    theStrings(MENU_VIEW_TRIHEDRON,
45
+               "Show trihedron");
46
+    theStrings(MENU_VIEW_PROJECTION,
47
+               "Projection");
48
+    theStrings(MENU_VIEW_FITALL,
49
+               "Fit ALL");
50
+
51
+    theStrings(MENU_VIEW_PROJ_ORTHO,
52
+               "Orthogonal");
53
+    theStrings(MENU_VIEW_PROJ_PERSP,
54
+               "Perspective");
55
+    theStrings(MENU_VIEW_PROJ_STEREO,
56
+               "Stereo");
57
+
58
+    theStrings(MENU_SHOW_FPS,
59
+               "Show FPS");
60
+
61
+    theStrings(MENU_HELP_ABOUT,
62
+               "About...");
63
+    theStrings(MENU_HELP_LICENSE,
64
+               "License text");
65
+    theStrings(MENU_HELP_LANGS,
66
+               "Language");
67
+    theStrings(MENU_HELP_HOTKEYS,
68
+               "Hotkeys");
69
+    theStrings(MENU_HELP_SETTINGS,
70
+               "Settings");
71
+
72
+    theStrings(DIALOG_OPEN_FILE,
73
+               "Choose the CAD file to open");
74
+
75
+    theStrings(ABOUT_DPLUGIN_NAME,
76
+               "sView - Tiny CAD Viewer");
77
+    theStrings(ABOUT_VERSION,
78
+               "version");
79
+    theStrings(ABOUT_DESCRIPTION,
80
+               "Tiny CAD viewer allows you to view CAD files in formats IGES, STEP, BREP using OpenCASCADE Technology.\n"
81
+               "(C) 2011-2016 Kirill Gavrilov <kirill@sview.ru>\n"
82
+               "Official site: www.sview.ru\n"
83
+               "\n"
84
+               "This program is distributed under GPL3.0");
85
+    theStrings(ABOUT_SYSTEM,
86
+               "System Info");
87
+
88
+    // define actions
89
+    addAction(theStrings, StCADViewer::Action_Fullscreen,
90
+              "DoFullscreen",
91
+              "Switch fullscreen/windowed");
92
+    addAction(theStrings, StCADViewer::Action_ShowFps,
93
+              "DoShowFPS",
94
+              "Show/hide FPS meter");
95
+    addAction(theStrings, StCADViewer::Action_FileInfo,
96
+              "DoFileInfo",
97
+              "Show file info");
98
+    addAction(theStrings, StCADViewer::Action_ListFirst,
99
+              "DoListFirst",
100
+              "Playlist - Go to the first item");
101
+    addAction(theStrings, StCADViewer::Action_ListLast,
102
+              "DoListLast",
103
+              "Playlist - Go to the last item");
104
+    addAction(theStrings, StCADViewer::Action_ListPrev,
105
+              "DoListPrev",
106
+              "Playlist - Go to the previous item");
107
+    addAction(theStrings, StCADViewer::Action_ListNext,
108
+              "DoListNext",
109
+              "Playlist - Go to the next item");
110
+
111
+}
112
+
113
+};
114
sview-15_11.tar.gz/StCADViewer/StCADViewerStrings.h -> sview-16_06.tar.gz/StCADViewer/StCADViewerStrings.h Changed
80
 
1
@@ -1,25 +1,25 @@
2
 /**
3
  * This source is a part of sView program.
4
  *
5
- * Copyright © Kirill Gavrilov, 2011
6
+ * Copyright © Kirill Gavrilov, 2011-2016
7
  */
8
 
9
 #ifndef __StCADViewerStrings_h_
10
 #define __StCADViewerStrings_h_
11
 
12
+#include <stTypes.h>
13
+
14
+class StLangMap;
15
+
16
 namespace StCADViewerStrings {
17
 
18
     // strings' ids in the language dictionary
19
     enum {
20
         // Root -> View menu
21
         MENU_VIEW = 1200,
22
-        MENU_VIEW_DISPLAY_MODE = 1201,
23
         MENU_VIEW_FULLSCREEN   = 1202,
24
-        MENU_VIEW_NORMALS      = 1203,
25
         MENU_VIEW_TRIHEDRON    = 1204,
26
-        MENU_VIEW_TWOSIDES     = 1205,
27
         MENU_VIEW_PROJECTION   = 1206,
28
-        MENU_VIEW_FILLMODE     = 1207,
29
         MENU_VIEW_FITALL       = 1208,
30
 
31
         // Root -> View menu -> Projection
32
@@ -27,24 +27,43 @@
33
         MENU_VIEW_PROJ_PERSP   = 1241,
34
         MENU_VIEW_PROJ_STEREO  = 1242,
35
 
36
-        // Root -> View menu -> Fill Mode
37
-        MENU_VIEW_FILL_MESH        = 1250,
38
-        MENU_VIEW_FILL_SHADED      = 1251,
39
-        MENU_VIEW_FILL_SHADED_MESH = 1252,
40
+        // Root -> Output -> Change Device menu
41
+        MENU_SHOW_FPS       = 1402,
42
 
43
         // Root -> Help menu
44
         MENU_HELP         = 1500,
45
         MENU_HELP_ABOUT   = 1501,
46
         MENU_HELP_LICENSE = 1503,
47
         MENU_HELP_LANGS   = 1504,
48
+        MENU_HELP_HOTKEYS = 1510,
49
+        MENU_HELP_SETTINGS= 1511,
50
+
51
+        // Open/Save dialogs
52
+        DIALOG_OPEN_FILE       = 2000,
53
 
54
         // About dialog
55
         ABOUT_DPLUGIN_NAME     = 3000,
56
         ABOUT_VERSION          = 3001,
57
         ABOUT_DESCRIPTION      = 3002,
58
+        ABOUT_SYSTEM           = 3004,
59
+
60
+        BUTTON_CLOSE           = 4000,
61
+        BUTTON_CANCEL          = 4001,
62
+        BUTTON_DELETE          = 4007,
63
+        BUTTON_DEFAULT         = 4008,
64
+        BUTTON_DEFAULTS        = 4009,
65
+        BUTTON_ASSIGN          = 4010,
66
+
67
+        // keys reserved for actions (see StCADViewer::ActionId)
68
+        ACTIONS_FROM           = 6000,
69
 
70
     };
71
 
72
+    /**
73
+     * Load default strings for entries not found in language file.
74
+     */
75
+    ST_LOCAL void loadDefaults(StLangMap& theStrings);
76
+
77
 };
78
 
79
 #endif //__StCADViewerStrings_h_
80
sview-16_06.tar.gz/StCADViewer/StCADWindow.h Added
120
 
1
@@ -0,0 +1,118 @@
2
+/**
3
+ * This source is a part of sView program.
4
+ *
5
+ * Copyright © Kirill Gavrilov, 2016
6
+ */
7
+
8
+#ifndef __StCADWindow_h_
9
+#define __StCADWindow_h_
10
+
11
+#if defined(_WIN32)
12
+    #include <WNT_Window.hxx>
13
+#endif
14
+#include <Aspect_Window.hxx>
15
+
16
+#include <stTypes.h>
17
+
18
+/**
19
+ * Dummy window.
20
+ */
21
+#if defined(_WIN32)
22
+class StCADWindow : public WNT_Window {
23
+#else
24
+class StCADWindow : public Aspect_Window {
25
+#endif
26
+
27
+        public:
28
+
29
+    /**
30
+     * Empty constructor.
31
+     */
32
+#if defined(_WIN32)
33
+    ST_LOCAL StCADWindow(const Aspect_Handle theHandle) : WNT_Window(theHandle),
34
+#else
35
+    ST_LOCAL StCADWindow() :
36
+#endif
37
+      myX1(0), myX2(0), myY1(0), myY2(0) {
38
+    #if defined(_WIN32)
39
+        myX1 = aXLeft;
40
+        myX2 = aXRight;
41
+        myY1 = aYTop;
42
+        myY2 = aYBottom;
43
+    #endif
44
+    }
45
+
46
+#if !defined(_WIN32)
47
+    ST_LOCAL virtual Aspect_Drawable NativeHandle()       const Standard_OVERRIDE { return 0; }
48
+    ST_LOCAL virtual Aspect_Drawable NativeParentHandle() const Standard_OVERRIDE { return 0; }
49
+    ST_LOCAL virtual Aspect_FBConfig NativeFBConfig()     const Standard_OVERRIDE { return 0; }
50
+#endif
51
+    ST_LOCAL virtual void Map()   const Standard_OVERRIDE {}
52
+    ST_LOCAL virtual void Unmap() const Standard_OVERRIDE {}
53
+    ST_LOCAL virtual Aspect_TypeOfResize DoResize()  const Standard_OVERRIDE { return Aspect_TOR_UNKNOWN; }
54
+    ST_LOCAL virtual Standard_Boolean    DoMapping() const Standard_OVERRIDE { return Standard_True; }
55
+    ST_LOCAL virtual Standard_Boolean    IsMapped()  const Standard_OVERRIDE { return Standard_True; }
56
+    ST_LOCAL virtual Quantity_Ratio      Ratio()     const Standard_OVERRIDE { return 1.0; }
57
+
58
+    /**
59
+     * Return position.
60
+     */
61
+    ST_LOCAL virtual void Position (Standard_Integer& X1, Standard_Integer& Y1,
62
+                                    Standard_Integer& X2, Standard_Integer& Y2) const Standard_OVERRIDE {
63
+        X1 = myX1;
64
+        X2 = myX2;
65
+        Y1 = myY1;
66
+        Y2 = myY2;
67
+    }
68
+
69
+    /**
70
+     * Set position.
71
+     */
72
+    ST_LOCAL void SetPosition(const int X1, const int Y1,
73
+                              const int X2, const int Y2) {
74
+        myX1 = X1;
75
+        myX2 = X2;
76
+        myY1 = Y1;
77
+        myY2 = Y2;
78
+    }
79
+
80
+    /**
81
+     * Return size.
82
+     */
83
+    ST_LOCAL virtual void Size(Standard_Integer& theWidth, Standard_Integer& theHeight) const Standard_OVERRIDE {
84
+        theWidth  = myX2 - myX1;
85
+        theHeight = myY2 - myY1;
86
+    }
87
+
88
+    /**
89
+     * Set new size.
90
+     * @return true if size has been changed
91
+     */
92
+    ST_LOCAL bool SetSize(const int theWidth, const int theHeight) {
93
+        int aNewX2 = myX1 + theWidth;
94
+        int aNewY2 = myY1 + theHeight;
95
+        if(aNewX2 == myX2
96
+        && aNewY2 == myY2) {
97
+            return false;
98
+        }
99
+        myX2 = aNewX2;
100
+        myY2 = aNewY2;
101
+        return true;
102
+    }
103
+
104
+        private:
105
+
106
+    int myX1;
107
+    int myX2;
108
+    int myY1;
109
+    int myY2;
110
+
111
+        public:
112
+
113
+    DEFINE_STANDARD_RTTI_INLINE(StCADWindow, Aspect_Window)
114
+
115
+};
116
+
117
+DEFINE_STANDARD_HANDLE(StCADWindow, Aspect_Window)
118
+
119
+#endif // __StCADWindow_h_
120
sview-15_11.tar.gz/StCADViewer/lang/english/StCADViewer.lng -> sview-16_06.tar.gz/StCADViewer/lang/english/StCADViewer.lng Changed
37
 
1
@@ -2,24 +2,27 @@
2
 # @author Kirill Gavrilov
3
 --------
4
 1200=View
5
-1201=Projection type
6
 1202=Fullscreen
7
-1203=Show normals
8
 1204=Show trihedron
9
-1205=Two sides lighting
10
 1206=Projection
11
-1207=Fill Mode
12
 1208=Fit ALL
13
 1240=Orthogonal
14
 1241=Perspective
15
 1242=Stereo
16
-1250=Mesh
17
-1251=Shaded
18
-1252=Shaded + Mesh
19
+1402=Show FPS
20
 1500=Help
21
 1501=About...
22
 1503=License text
23
 1504=Language
24
+1511=Settings
25
 3000=sView - Tiny CAD Viewer
26
 3001=version
27
-3002=CAD viewer allows you to view CAD files in formats IGES, STEP, BREP using OpenCASCADE Technology.\n © 2011-2014 Kirill Gavrilov (kirill@sview.ru).\nOfficial site: www.sview.ru
28
+3002=CAD viewer allows you to view CAD files in formats IGES, STEP, BREP using OpenCASCADE Technology.\n © {0} Kirill Gavrilov <{1}>\nOfficial site: {2}\n\nThis program is distributed under GPL3.0
29
+3004=System Info
30
+4000=Close
31
+4001=Cancel
32
+4006=Save
33
+4007=Delete
34
+4008=Default
35
+4009=Defaults
36
+4010=Assign
37
sview-16_06.tar.gz/StCADViewer/main.cpp Added
217
 
1
@@ -0,0 +1,215 @@
2
+/**
3
+ * This source is a part of sView program.
4
+ *
5
+ * Copyright © Kirill Gavrilov, 2016
6
+ */
7
+
8
+#if defined(__APPLE__)
9
+    //
10
+#elif defined(__ANDROID__)
11
+
12
+#include <jni.h>
13
+#include <StCore/StAndroidGlue.h>
14
+#include <StFile/StRawFile.h>
15
+#include "../StCADViewer/StCADViewer.h"
16
+
17
+/**
18
+ * Viewer glue.
19
+ */
20
+class StCADViewerGlue : public StAndroidGlue {
21
+
22
+        public:
23
+
24
+    /**
25
+     * Main constructor.
26
+     */
27
+    ST_LOCAL StCADViewerGlue(ANativeActivity* theActivity,
28
+                             void*            theSavedState,
29
+                             size_t           theSavedStateSize)
30
+    : StAndroidGlue(theActivity, theSavedState, theSavedStateSize) {}
31
+
32
+    /**
33
+     * Copy OCCT resource file.
34
+     */
35
+    ST_LOCAL bool copyResource(const StHandle<StResourceManager>& theResMgr,
36
+                               const StString& theResFolder,
37
+                               const StString& theDestFolder,
38
+                               const StString& theFileName) {
39
+        StString aFileResPath = theResFolder + SYS_FS_SPLITTER + theFileName;
40
+        StHandle<StResource> aRes = theResMgr->getResource(aFileResPath);
41
+        if( aRes.isNull()
42
+        || !aRes->read()) {
43
+            ST_ERROR_LOG(StString("Can not read resource file ") + aFileResPath);
44
+            return false;
45
+        }
46
+
47
+        StRawFile aFileOut;
48
+        StString  aFileOutPath = theDestFolder + SYS_FS_SPLITTER + theFileName;
49
+        if(!aFileOut.openFile(StRawFile::WRITE, aFileOutPath)) {
50
+            ST_ERROR_LOG(StString("Can not create resource file ") + aFileOutPath);
51
+            return false;
52
+        }
53
+        if(!aFileOut.write((const char* )aRes->getData(), aRes->getSize()) != aRes->getSize()) {
54
+            ST_ERROR_LOG(StString("Can not write resource file ") + aFileOutPath);
55
+            return false;
56
+        }
57
+        return true;
58
+    }
59
+
60
+    /**
61
+     * Instantiate StApplication.
62
+     */
63
+    ST_LOCAL virtual void createApplication() override {
64
+        StMutexAuto aLock(myFetchLock);
65
+        const StString aFileExtension = StFileNode::getExtension(myCreatePath);
66
+
67
+        StHandle<StOpenInfo> anInfo = new StOpenInfo();
68
+        anInfo->setPath(myDndPath);
69
+        myDndPath.clear();
70
+
71
+        StHandle<StResourceManager> aResMgr = new StResourceManager(myActivity->assetManager);
72
+        //StHandle<StResourceManager> aResMgr = new StResourceManager(myActivity->assetManager"com.sview.cad");
73
+        aResMgr->setFolder(StResourceManager::FolderId_SdCard,
74
+                           getStoragePath(myThJniEnv, "sdcard"));
75
+        aResMgr->setFolder(StResourceManager::FolderId_Downloads,
76
+                           getStoragePath(myThJniEnv, "Download"));
77
+        aResMgr->setFolder(StResourceManager::FolderId_Pictures,
78
+                           getStoragePath(myThJniEnv, "Pictures"));
79
+        aResMgr->setFolder(StResourceManager::FolderId_Photos,
80
+                           getStoragePath(myThJniEnv, "DCIM"));
81
+
82
+        StString anOcctResFolder = aResMgr->getUserDataFolder();
83
+        copyResource(aResMgr, "lang", anOcctResFolder, "IGES.us");
84
+        copyResource(aResMgr, "lang", anOcctResFolder, "IGES.fr");
85
+        copyResource(aResMgr, "lang", anOcctResFolder, "SHAPE.us");
86
+        copyResource(aResMgr, "lang", anOcctResFolder, "SHAPE.fr");
87
+        copyResource(aResMgr, "lang", anOcctResFolder, "XSTEP.us");
88
+        copyResource(aResMgr, "lang", anOcctResFolder, "XSTEP.fr");
89
+        copyResource(aResMgr, "lang", anOcctResFolder, "TObj.msg");
90
+
91
+        copyResource(aResMgr, "res",  anOcctResFolder, "Units.dat");
92
+        copyResource(aResMgr, "res",  anOcctResFolder, "Lexi_Expr.dat");
93
+        copyResource(aResMgr, "res",  anOcctResFolder, "IGES");
94
+        copyResource(aResMgr, "res",  anOcctResFolder, "STEP");
95
+        //copyResource(aResMgr, "res",  anOcctResFolder, "TObj");
96
+        //copyResource(aResMgr, "res",  anOcctResFolder, "XCAF");
97
+        //copyResource(aResMgr, "res",  anOcctResFolder, "Plugin");
98
+        //copyResource(aResMgr, "res",  anOcctResFolder, "Standard");
99
+        //copyResource(aResMgr, "res",  anOcctResFolder, "StandardLite");
100
+
101
+        copyResource(aResMgr, "shaders/occt", anOcctResFolder, "Declarations.glsl");
102
+        copyResource(aResMgr, "shaders/occt", anOcctResFolder, "DeclarationsImpl.glsl");
103
+
104
+        StProcess::setEnv("CSF_UnitsLexicon",     anOcctResFolder + "/Lexi_Expr.dat");
105
+        StProcess::setEnv("CSF_UnitsDefinition",  anOcctResFolder + "/Units.dat");
106
+        StProcess::setEnv("CSF_ShadersDirectory", anOcctResFolder);
107
+        StProcess::setEnv("CSF_SHMessage",        anOcctResFolder);
108
+
109
+        if(myStAppClass.isEmpty()) {
110
+            myStAppClass = "cad";
111
+        }
112
+
113
+        if(anInfo->isEmpty()) {
114
+            // open recent file by default
115
+            StArgumentsMap anArgs = anInfo->getArgumentsMap();
116
+            anArgs.set(StDictEntry("last", "true"));
117
+            anArgs.set(StDictEntry("toSaveRecent","true"));
118
+            anInfo->setArgumentsMap(anArgs);
119
+        }
120
+
121
+        myApp = new StCADViewer(aResMgr, this, anInfo);
122
+    }
123
+
124
+};
125
+
126
+/**
127
+ * Main entry point - called from Java on creation.
128
+ * This function defines JNI callbacks and creates dedicated thread for main application code.
129
+ */
130
+ST_CEXPORT void ANativeActivity_onCreate(ANativeActivity* theActivity,
131
+                                         void*            theSavedState,
132
+                                         size_t           theSavedStateSize) {
133
+    StCADViewerGlue* anApp = new StCADViewerGlue(theActivity, theSavedState, theSavedStateSize);
134
+    anApp->start();
135
+}
136
+
137
+#else
138
+
139
+#include <StVersion.h>
140
+#include <StFile/StFolder.h>
141
+#include <StStrings/stConsole.h>
142
+
143
+#include "../StOutPageFlip/StOutPageFlip.h"
144
+#include "../StCADViewer/StCADViewer.h"
145
+
146
+static StString getAbout() {
147
+    StString anAboutString =
148
+        StString("StCADViewer ") + StVersionInfo::getSDKVersionString() + '\n'
149
+        + "Copyright (C) 2007-2016 Kirill Gavrilov (kirill@sview.ru).\n"
150
+        + "Usage: StCADViewer [options] - file\n";
151
+    return anAboutString;
152
+}
153
+
154
+#ifdef _WIN32
155
+#ifdef ST_DEBUG
156
+int main(int , char** ) { // force console output
157
+#else
158
+int WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int) { // prevent console output
159
+#endif
160
+    setlocale(LC_ALL, ".OCP"); // we set default locale for console output (useful only for debug)
161
+#else
162
+int main(int , char** ) {
163
+#endif
164
+    StOutPageFlip::initGlobalsAsync();
165
+    if(!StVersionInfo::checkTimeBomb("sView")) {
166
+        return 1;
167
+    }
168
+
169
+    // setup environment variables
170
+    const StString ST_ENV_NAME_STCORE_PATH =
171
+    #if defined(_WIN64) || defined(_LP64) || defined(__LP64__)
172
+        "StCore64";
173
+    #else
174
+        "StCore32";
175
+    #endif
176
+    const StString aProcessPath = StProcess::getProcessFolder();
177
+    StString aProcessUpPath = StFileNode::getFolderUp(aProcessPath);
178
+    if(!aProcessUpPath.isEmpty()) {
179
+        aProcessUpPath += SYS_FS_SPLITTER;
180
+    }
181
+    StProcess::setEnv(ST_ENV_NAME_STCORE_PATH, aProcessPath);
182
+    if(StFolder::isFolder(aProcessPath + "textures")) {
183
+        StProcess::setEnv("StShare", aProcessPath);
184
+    } else if(StFolder::isFolder(aProcessUpPath + "textures")) {
185
+        StProcess::setEnv("StShare", aProcessUpPath);
186
+    }
187
+
188
+    StString aResDir = StProcess::getStShareFolder();
189
+    StProcess::setEnv("CSF_UnitsLexicon",          aResDir + "UnitsAPI" ST_FILE_SPLITTER "Lexi_Expr.dat");
190
+    StProcess::setEnv("CSF_UnitsDefinition",       aResDir + "UnitsAPI" ST_FILE_SPLITTER "Units.dat");
191
+    StProcess::setEnv("CSF_ShadersDirectory",      aResDir + "shaders" ST_FILE_SPLITTER "StCADViewer");
192
+    StProcess::setEnv("CSF_SHMessage",             aResDir + "lang");
193
+    StProcess::setEnv("CSF_MDTVTexturesDirectory", aResDir + "textures");
194
+
195
+    StHandle<StOpenInfo> anInfo;
196
+    if(anInfo.isNull()
197
+    || (!anInfo->hasPath() && !anInfo->hasArgs())) {
198
+        anInfo = StApplication::parseProcessArguments();
199
+    }
200
+    if(anInfo.isNull()) {
201
+        // show help
202
+        StString aShowHelpString = getAbout();
203
+        st::cout << aShowHelpString;
204
+        stInfo(aShowHelpString);
205
+        return 0;
206
+    }
207
+
208
+    StHandle<StResourceManager> aResMgr = new StResourceManager();
209
+    StHandle<StCADViewer> anApp  = new StCADViewer(aResMgr, NULL, anInfo);
210
+    if(!anApp->open()) {
211
+        return 1;
212
+    }
213
+    return anApp->exec();
214
+}
215
+
216
+#endif // __APPLE__
217
sview-16_06.tar.gz/StCADViewer/res Added
2
 
1
+(directory)
2
sview-16_06.tar.gz/StCADViewer/res/drawable-hdpi Added
2
 
1
+(directory)
2
sview-16_06.tar.gz/StCADViewer/res/drawable-hdpi/ic_launcher.png Added
sview-16_06.tar.gz/StCADViewer/res/drawable-mdpi Added
2
 
1
+(directory)
2
sview-16_06.tar.gz/StCADViewer/res/drawable-mdpi/ic_launcher.png Added
sview-16_06.tar.gz/StCADViewer/res/drawable-xhdpi Added
2
 
1
+(directory)
2
sview-16_06.tar.gz/StCADViewer/res/drawable-xhdpi/ic_launcher.png Added
sview-16_06.tar.gz/StCADViewer/res/drawable-xxhdpi Added
2
 
1
+(directory)
2
sview-16_06.tar.gz/StCADViewer/res/drawable-xxhdpi/ic_launcher.png Added
sview-16_06.tar.gz/StCADViewer/res/values Added
2
 
1
+(directory)
2
sview-16_06.tar.gz/StCADViewer/res/values/strings.xml Added
7
 
1
@@ -0,0 +1,5 @@
2
+<?xml version="1.0" encoding="utf-8"?>
3
+<resources>
4
+    <string name="app_name">sView - CAD Viewer</string>
5
+    <string name="app_cad_name">sView - CAD Viewer</string>
6
+</resources>
7
sview-16_06.tar.gz/StCADViewer/src Added
2
 
1
+(directory)
2
sview-16_06.tar.gz/StCADViewer/src/com Added
2
 
1
+(directory)
2
sview-16_06.tar.gz/StCADViewer/src/com/sview Added
2
 
1
+(directory)
2
sview-16_06.tar.gz/StCADViewer/src/com/sview/cadviewer Added
2
 
1
+(directory)
2
sview-16_06.tar.gz/StCADViewer/src/com/sview/cadviewer/StCADActivity.java Added
33
 
1
@@ -0,0 +1,31 @@
2
+/**
3
+ * This is source code for sView
4
+ *
5
+ * Copyright © Kirill Gavrilov, 2016
6
+ */
7
+package com.sview.cadviewer;
8
+
9
+import android.os.Bundle;
10
+
11
+/**
12
+ * Customize StActivity
13
+ */
14
+public class StCADActivity extends com.sview.StActivity {
15
+
16
+    /**
17
+     * Virtual method defining StApplication class.
18
+     */
19
+    @Override
20
+    public String getStAppClass() {
21
+        return "cad";
22
+    }
23
+
24
+    /**
25
+     * Create activity.
26
+     */
27
+    @Override
28
+    public void onCreate(Bundle theSavedInstanceState) {
29
+        super.onCreate(theSavedInstanceState);
30
+    }
31
+
32
+}
33
sview-15_11.tar.gz/StCore/StAndroidGlue.cpp -> sview-16_06.tar.gz/StCore/StAndroidGlue.cpp Changed
392
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StCore, window system independent C++ toolkit for writing OpenGL applications.
4
- * Copyright © 2014-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2014-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -10,6 +10,7 @@
10
 #if defined(__ANDROID__)
11
 
12
 #include <StCore/StAndroidGlue.h>
13
+#include <StCore/StAndroidResourceManager.h>
14
 
15
 #include <StCore/StApplication.h>
16
 #include <StCore/StSearchMonitors.h>
17
@@ -17,9 +18,77 @@
18
 #include <StThreads/StThread.h>
19
 #include <StStrings/StLogger.h>
20
 
21
-#include <jni.h>
22
+#include <StAV/stAV.h>
23
+
24
+#include <android/window.h>
25
+
26
 #define jexp extern "C" JNIEXPORT
27
 
28
+StJNIEnv::StJNIEnv(JavaVM* theJavaVM)
29
+: myJavaVM(theJavaVM),
30
+  myJniEnv(NULL),
31
+  myToDetach(false) {
32
+    if(myJavaVM == NULL) {
33
+        return;
34
+    }
35
+
36
+    void* aJniEnv = NULL;
37
+    switch(myJavaVM->GetEnv(&aJniEnv, JNI_VERSION_1_6)) {
38
+        case JNI_EDETACHED: {
39
+            if(myJavaVM->AttachCurrentThread(&myJniEnv, NULL) < 0) {
40
+                myJniEnv = NULL;
41
+                ST_ERROR_LOG("Failed to attach working thread to Java VM");
42
+                return;
43
+            }
44
+            myToDetach = true;
45
+            break;
46
+        }
47
+        case JNI_OK: {
48
+            myJniEnv   = (JNIEnv* )aJniEnv;
49
+            myToDetach = false;
50
+            break;
51
+        }
52
+        case JNI_EVERSION: {
53
+            ST_ERROR_LOG("Failed to attach working thread to Java VM - JNI version is not supported");
54
+            break;
55
+        }
56
+        default: {
57
+            ST_ERROR_LOG("Failed to attach working thread to Java VM");
58
+            break;
59
+        }
60
+    }
61
+}
62
+
63
+StJNIEnv::~StJNIEnv() {
64
+    detach();
65
+}
66
+
67
+void StJNIEnv::detach() {
68
+    if(myJavaVM != NULL
69
+    && myJniEnv != NULL
70
+    && myToDetach) {
71
+        myJavaVM->DetachCurrentThread();
72
+    }
73
+
74
+    myJniEnv   = NULL;
75
+    myToDetach = false;
76
+}
77
+
78
+StAndroidResourceManager::StAndroidResourceManager(StAndroidGlue*  theGlueApp,
79
+                                                   const StString& theAppName)
80
+: StResourceManager(theGlueApp->getActivity()->assetManager, theAppName),
81
+  myGlueApp(theGlueApp) {
82
+    //
83
+}
84
+
85
+StAndroidResourceManager::~StAndroidResourceManager() {
86
+    //
87
+}
88
+
89
+int StAndroidResourceManager::openFileDescriptor(const StString& thePath) const {
90
+    return myGlueApp->openFileDescriptor(thePath);
91
+}
92
+
93
 StCString StAndroidGlue::getCommandIdName(StAndroidGlue::CommandId theCmd) {
94
     switch(theCmd) {
95
         case StAndroidGlue::CommandId_InputChanged:  return stCString("InputChanged");
96
@@ -38,6 +107,7 @@
97
         case StAndroidGlue::CommandId_Stop:          return stCString("Stop");
98
         case StAndroidGlue::CommandId_Destroy:       return stCString("Destroy");
99
         case StAndroidGlue::CommandId_BackPressed:   return stCString("BackPressed");
100
+        case StAndroidGlue::CommandId_WindowChanged: return stCString("WindowChanged");
101
     }
102
     return stCString("UNKNOWN");
103
 }
104
@@ -100,6 +170,8 @@
105
   myInputQueuePending(NULL),
106
   myWindow(NULL),
107
   myWindowPending(NULL),
108
+  myIsChangingSurface(false),
109
+  myWindowFlags(0),
110
   myActivityState(0),
111
   myMemoryClassMiB(0),
112
   mySavedState(NULL),
113
@@ -108,6 +180,7 @@
114
   myThJniEnv(NULL),
115
   myMsgRead(0),
116
   myMsgWrite(0),
117
+  myToEnableStereoHW(false),
118
   myHasOrientSensor(false),
119
   myIsPoorOrient(false),
120
   myToTrackOrient(false),
121
@@ -117,6 +190,9 @@
122
     theActivity->instance = this;
123
     theActivity->env->GetJavaVM(&myJavaVM);
124
 
125
+    // allow FFmpeg to use JNI calls
126
+    stAV::setJavaVM(myJavaVM);
127
+
128
     JNIEnv* aJniEnv = myActivity->env;
129
 
130
     jclass    aJClass_Activity       = aJniEnv->GetObjectClass(myActivity->clazz);
131
@@ -134,6 +210,13 @@
132
     jmethodID aJMet_getStAppClass = aJniEnv->GetMethodID(aJClass_Activity, "getStAppClass", "()Ljava/lang/String;");
133
     myStAppClass = stStringFromJava(aJniEnv, (jstring )aJniEnv->CallObjectMethod(myActivity->clazz, aJMet_getStAppClass));
134
 
135
+    jmethodID aJMet_getStereoApiInfo = aJniEnv->GetMethodID(aJClass_Activity, "getStereoApiInfo", "()Ljava/lang/String;");
136
+    myStereoApiId = stStringFromJava(aJniEnv, (jstring )aJniEnv->CallObjectMethod(myActivity->clazz, aJMet_getStereoApiInfo));
137
+
138
+    // workaround NativeActivity design issues - notify Java StActivity class about C++ pointer to StAndroidGlue instance
139
+    jmethodID aJMet_setCppInstance = aJniEnv->GetMethodID(aJClass_Activity, "setCppInstance", "(J)V");
140
+    aJniEnv->CallVoidMethod(myActivity->clazz, aJMet_setCppInstance, (jlong )this);
141
+
142
     readOpenPath();
143
 
144
     myCmdPollSource.id        = LooperId_MAIN;
145
@@ -176,45 +259,34 @@
146
 }
147
 
148
 void StAndroidGlue::readOpenPath() {
149
-    JNIEnv* aJniEnv = myActivity->env;
150
-
151
-    jclass      aJClassActivity = aJniEnv->GetObjectClass(myActivity->clazz);
152
-    jmethodID   aJMet_getIntent = aJniEnv->GetMethodID(aJClassActivity, "getIntent", "()Landroid/content/Intent;");
153
-    jmethodID   aJMet_setIntent = aJniEnv->GetMethodID(aJClassActivity, "setIntent", "(Landroid/content/Intent;)V");
154
-    jobject     aJIntent        = aJniEnv->CallObjectMethod(myActivity->clazz, aJMet_getIntent);
155
-    if(aJIntent == NULL) {
156
-        return;
157
-    }
158
-
159
-    jclass      aJClassIntent       = aJniEnv->GetObjectClass(aJIntent);
160
-    jmethodID   aJMet_getDataString = aJniEnv->GetMethodID(aJClassIntent, "getDataString", "()Ljava/lang/String;");
161
-    jmethodID   aJMet_getType       = aJniEnv->GetMethodID(aJClassIntent, "getType",       "()Ljava/lang/String;");
162
-    jmethodID   aJMet_getFlags      = aJniEnv->GetMethodID(aJClassIntent, "getFlags",      "()I");
163
-
164
-    // retrieve data path
165
-    StString aDataPath = stStringFromJava(aJniEnv, (jstring )aJniEnv->CallObjectMethod(aJIntent, aJMet_getDataString));
166
-    // retrieve data type
167
-    int aFlags = aJniEnv->CallIntMethod(aJIntent, aJMet_getFlags);
168
-    const StString aDataType = stStringFromJava(aJniEnv, (jstring )aJniEnv->CallObjectMethod(aJIntent, aJMet_getType));
169
+    JNIEnv*   aJniEnv = myActivity->env;
170
+    jclass    aJClass_Activity   = aJniEnv->GetObjectClass(myActivity->clazz);
171
+    jmethodID aJMet_readOpenPath = aJniEnv->GetMethodID(aJClass_Activity, "readOpenPath", "()V");
172
+    aJniEnv->CallVoidMethod(myActivity->clazz, aJMet_readOpenPath);
173
+}
174
 
175
-    // reset intent in Activity
176
-    aJniEnv->CallVoidMethod(myActivity->clazz, aJMet_setIntent, NULL);
177
+void StAndroidGlue::setOpenPath(const jstring  theOpenPath,
178
+                                const jstring  theMimeType,
179
+                                const jboolean theIsLaunchedFromHistory) {
180
+    JNIEnv* aJniEnv = myActivity->env;
181
+    StString anOpenPath = stStringFromJava(aJniEnv, theOpenPath);
182
+    StString aMimeType  = stStringFromJava(aJniEnv, theMimeType);
183
 
184
     const StString ST_FILE_PROTOCOL("file://");
185
-    if(aDataPath.isStartsWith(ST_FILE_PROTOCOL)) {
186
+    if(anOpenPath.isStartsWith(ST_FILE_PROTOCOL)) {
187
         const size_t   aCutFrom = ST_FILE_PROTOCOL.getLength();
188
-        const StString aPath    = aDataPath.subString(aCutFrom, (size_t )-1);
189
-        aDataPath.fromUrl(aPath);
190
+        const StString aPath    = anOpenPath.subString(aCutFrom, (size_t )-1);
191
+        anOpenPath.fromUrl(aPath);
192
     }
193
 
194
     StMutexAuto aLock(myFetchLock);
195
     if(myCreatePath.isEmpty()) {
196
-        myCreatePath = aDataPath;
197
+        myCreatePath = anOpenPath;
198
     }
199
-    // FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY
200
+
201
     // ignore outdated intent from history list - use C++ recent list instead
202
-    if((aFlags & 0x00100000) == 0) {
203
-        myDndPath = aDataPath;
204
+    if(!theIsLaunchedFromHistory) {
205
+        myDndPath = anOpenPath;
206
     }
207
 }
208
 
209
@@ -228,13 +300,31 @@
210
     }
211
 }
212
 
213
-void StAndroidGlue::start() {
214
-    // workaround NativeActivity design issues - notify Java StActivity class about C++ pointer to StAndroidGlue instance
215
-    JNIEnv* aJniEnv = myActivity->env;
216
-    jclass    aJClassActivity   = aJniEnv->GetObjectClass(myActivity->clazz);
217
-    jmethodID aJMet_setInstance = aJniEnv->GetMethodID(aJClassActivity, "setCppInstance", "(J)V");
218
-    aJniEnv->CallVoidMethod(myActivity->clazz, aJMet_setInstance, (jlong )this);
219
+int StAndroidGlue::openFileDescriptor(const StString& thePath) {
220
+    if(myJavaVM == NULL) {
221
+        return -1;
222
+    }
223
+
224
+    StJNIEnv aJniEnv(myJavaVM);
225
+    if(aJniEnv.isNull()) {
226
+        return -1;
227
+    }
228
+
229
+    jclass    aJClass_Activity = aJniEnv->GetObjectClass(myActivity->clazz);
230
+    jmethodID aJMet_openFileDescriptor = aJniEnv->GetMethodID(aJClass_Activity, "openFileDescriptor", "(Ljava/lang/String;)I");
231
+    if(aJMet_openFileDescriptor == NULL) {
232
+        ST_ERROR_LOG("StAndroidGlue::openFileDescriptor() - method is unavailable!");
233
+        return -1;
234
+    }
235
+
236
+    jstring aJStr = aJniEnv->NewStringUTF(thePath.toCString());
237
+    int aFileDesc = aJniEnv->CallIntMethod(myActivity->clazz, aJMet_openFileDescriptor, aJStr);
238
+    aJniEnv->DeleteLocalRef(aJStr);
239
+
240
+    return aFileDesc;
241
+}
242
 
243
+void StAndroidGlue::start() {
244
     myThread = new StThread(threadEntryWrapper, this, "StAndroidGlue");
245
 
246
     // Wait for thread to start
247
@@ -281,6 +371,9 @@
248
 
249
     StMonitor aMon;
250
     aMon.setId(0);
251
+    if(myStereoApiId == "S3DV") {
252
+        aMon.setPnPId("ST@S3DV");
253
+    }
254
     aMon.changeVRect().top()    = 0;
255
     aMon.changeVRect().left()   = 0;
256
     aMon.changeVRect().right()  = (int )(0.5 + double(aWidthDp ) * (double(aDpi) / 160.0));
257
@@ -552,6 +645,7 @@
258
             pthread_mutex_unlock(&myMutex);
259
             break;
260
         }
261
+        case CommandId_WindowChanged:
262
         case CommandId_WindowInit: {
263
             pthread_mutex_lock(&myMutex);
264
             myWindow = myWindowPending;
265
@@ -596,6 +690,13 @@
266
             pthread_mutex_unlock(&myMutex);
267
             break;
268
         }
269
+        case CommandId_WindowChanged: {
270
+            pthread_mutex_lock(&myMutex);
271
+            myWindowPending = NULL;
272
+            pthread_cond_broadcast(&myCond);
273
+            pthread_mutex_unlock(&myMutex);
274
+            break;
275
+        }
276
         case CommandId_SaveState: {
277
             pthread_mutex_lock(&myMutex);
278
             myIsStateSaved = true;
279
@@ -620,9 +721,31 @@
280
     pthread_mutex_unlock(&myMutex);
281
 }
282
 
283
+void StAndroidGlue::setChangingSurface(bool theIsChanging) {
284
+    pthread_mutex_lock(&myMutex);
285
+    myIsChangingSurface = theIsChanging;
286
+    pthread_mutex_unlock(&myMutex);
287
+}
288
+
289
 void StAndroidGlue::setWindow(ANativeWindow* theWindow) {
290
     pthread_mutex_lock(&myMutex);
291
-    if(myWindowPending != NULL) {
292
+    if(myIsChangingSurface) {
293
+        if(theWindow == NULL) {
294
+            pthread_mutex_unlock(&myMutex);
295
+            return;
296
+        }
297
+
298
+        myWindowPending = theWindow;
299
+        writeCommand(CommandId_WindowChanged);
300
+        while(myWindowPending != NULL) {
301
+            pthread_cond_wait(&myCond, &myMutex);
302
+        }
303
+        myIsChangingSurface = false;
304
+        pthread_mutex_unlock(&myMutex);
305
+        return;
306
+    }
307
+
308
+    if(myWindow != NULL) {
309
         writeCommand(CommandId_WindowTerm);
310
     }
311
     myWindowPending = theWindow;
312
@@ -632,6 +755,8 @@
313
     while(myWindow != myWindowPending) {
314
         pthread_cond_wait(&myCond, &myMutex);
315
     }
316
+    myWindowPending = NULL;
317
+    myIsChangingSurface = false;
318
     pthread_mutex_unlock(&myMutex);
319
 }
320
 
321
@@ -673,6 +798,50 @@
322
     return aSavedState;
323
 }
324
 
325
+inline void addOrRemoveFlag(int& theFlagsToAdd,
326
+                            int& theFlagsToRemove,
327
+                            int  theFlagsOld,
328
+                            int  theFlagsNew,
329
+                            int  theFlag) {
330
+    if((theFlagsNew & theFlag) != 0) {
331
+        if((theFlagsOld & theFlag) == 0) {
332
+            theFlagsToAdd    |= theFlag;
333
+        }
334
+    } else {
335
+        if((theFlagsOld & theFlag) != 0) {
336
+            theFlagsToRemove |= theFlag;
337
+        }
338
+    }
339
+}
340
+
341
+void StAndroidGlue::setWindowFlags(const int theFlags) {
342
+    if(myWindowFlags == theFlags) {
343
+        return;
344
+    }
345
+
346
+    int aFlagsToAdd    = 0;
347
+    int aFlagsToRemove = 0;
348
+    addOrRemoveFlag(aFlagsToAdd, aFlagsToRemove,
349
+                    myWindowFlags, theFlags,
350
+                    AWINDOW_FLAG_KEEP_SCREEN_ON);
351
+    myWindowFlags = theFlags;
352
+
353
+    ANativeActivity_setWindowFlags(myActivity, aFlagsToAdd, aFlagsToRemove);
354
+}
355
+
356
+void StAndroidGlue::setHardwareStereoOn(const bool theToEnable) {
357
+    if(myToEnableStereoHW == theToEnable
358
+    || myStereoApiId.isEmpty()
359
+    || myThJniEnv == NULL) {
360
+        return;
361
+    }
362
+
363
+    jclass    aJClassActivity = myThJniEnv->GetObjectClass(myActivity->clazz);
364
+    jmethodID aJMet           = myThJniEnv->GetMethodID(aJClassActivity, "setHardwareStereoOn", "(Z)V");
365
+    myThJniEnv->CallVoidMethod(myActivity->clazz, aJMet, (jboolean )(theToEnable ? JNI_TRUE : JNI_FALSE));
366
+    myToEnableStereoHW = theToEnable;
367
+}
368
+
369
 void StAndroidGlue::setTrackOrientation(const bool theToTrack) {
370
     if(myToTrackOrient == theToTrack
371
     || myActivity == NULL
372
@@ -709,10 +878,19 @@
373
     myQuaternion = anOri;
374
 }
375
 
376
+jexp void JNICALL Java_com_sview_StActivity_cppSetOpenPath(JNIEnv* theEnv, jobject theObj, jlong theCppPtr,
377
+                                                           jstring theOpenPath, jstring theMimeType, jboolean theIsLaunchedFromHistory) {
378
+    ((StAndroidGlue* )theCppPtr)->setOpenPath(theOpenPath, theMimeType, theIsLaunchedFromHistory);
379
+}
380
+
381
 jexp void JNICALL Java_com_sview_StActivity_cppOnBackPressed(JNIEnv* theEnv, jobject theObj, jlong theCppPtr) {
382
     ((StAndroidGlue* )theCppPtr)->writeCommand(StAndroidGlue::CommandId_BackPressed);
383
 }
384
 
385
+jexp void JNICALL Java_com_sview_StActivity_cppOnBeforeSurfaceChanged(JNIEnv* theEnv, jobject theObj, jlong theCppPtr, jboolean theIsBefore) {
386
+    ((StAndroidGlue* )theCppPtr)->setChangingSurface(theIsBefore == JNI_TRUE);
387
+}
388
+
389
 jexp void JNICALL Java_com_sview_StActivity_cppDefineOrientationSensor(JNIEnv* theEnv, jobject theObj, jlong theCppPtr,
390
                                                                        jboolean theHasOri, jboolean theIsPoorOri) {
391
     ((StAndroidGlue* )theCppPtr)->defineOrientationSensor(theHasOri == JNI_TRUE, theIsPoorOri == JNI_TRUE);
392
sview-15_11.tar.gz/StCore/StApplication.cpp -> sview-16_06.tar.gz/StCore/StApplication.cpp Changed
106
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StCore, window system independent C++ toolkit for writing OpenGL applications.
4
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -58,7 +58,8 @@
10
   myExitCode(0),
11
   myGlDebug(false),
12
   myIsOpened(false),
13
-  myToQuit(false) {
14
+  myToQuit(false),
15
+  myToRecreateMenu(false) {
16
     stApplicationInit(theOpenInfo);
17
 }
18
 
19
@@ -70,10 +71,10 @@
20
     myGlDebug = true;
21
 #endif
22
     StSettings aGlobalSettings(myResMgr, "sview");
23
-    params.ActiveDevice = new StEnumParam(0, "Change device");
24
+    params.ActiveDevice = new StEnumParam(0, stCString("activeDevice"), stCString("Change device"));
25
     params.ActiveDevice->signals.onChanged.connect(this, &StApplication::doChangeDevice);
26
 
27
-    params.VSyncMode = new StEnumParam(0, "VSync mode");
28
+    params.VSyncMode = new StEnumParam(0, stCString("vsyncMode"), stCString("VSync mode"));
29
     params.VSyncMode->changeValues().add("Off");
30
     params.VSyncMode->changeValues().add("On");
31
     params.VSyncMode->changeValues().add("Mixed");
32
@@ -228,6 +229,9 @@
33
         myWindow->signals.onKeyHold   = stSlot(this, &StApplication::doKeyHold);
34
         myWindow->signals.onMouseDown = stSlot(this, &StApplication::doMouseDown);
35
         myWindow->signals.onMouseUp   = stSlot(this, &StApplication::doMouseUp);
36
+        myWindow->signals.onTouch     = stSlot(this, &StApplication::doTouch);
37
+        myWindow->signals.onGesture   = stSlot(this, &StApplication::doGesture);
38
+        myWindow->signals.onScroll    = stSlot(this, &StApplication::doScroll);
39
         myWindow->signals.onFileDrop  = stSlot(this, &StApplication::doFileDrop);
40
         myWindow->signals.onNavigate  = stSlot(this, &StApplication::doNavigate);
41
     }
42
@@ -417,6 +421,9 @@
43
 void StApplication::doResize   (const StSizeEvent&   ) {}
44
 void StApplication::doMouseDown(const StClickEvent&  ) {}
45
 void StApplication::doMouseUp  (const StClickEvent&  ) {}
46
+void StApplication::doTouch    (const StTouchEvent&  ) {}
47
+void StApplication::doGesture  (const StGestureEvent&) {}
48
+void StApplication::doScroll   (const StScrollEvent& ) {}
49
 void StApplication::doFileDrop (const StDNDropEvent& ) {}
50
 void StApplication::doNavigate (const StNavigEvent&  ) {}
51
 
52
@@ -542,3 +549,53 @@
53
     anInfo->setArgumentsMap(anOpenFileArgs);
54
     return anInfo;
55
 }
56
+
57
+void StApplication::doChangeLanguage(const int32_t ) {
58
+    myToRecreateMenu = true;
59
+    myLangMap->resetReloaded();
60
+
61
+    for(size_t aRendIter = 0; aRendIter < myRenderers.size(); ++aRendIter) {
62
+        StHandle<StWindow>& aRend = myRenderers[aRendIter];
63
+        aRend->doChangeLanguage();
64
+    }
65
+
66
+    for(size_t aDevIter = 0; aDevIter < myDevices.size(); ++aDevIter) {
67
+        params.ActiveDevice->defineOption((int32_t )aDevIter, myDevices[aDevIter]->Name);
68
+    }
69
+}
70
+
71
+bool StApplication::doExitOnEscape(StApplication::ActionOnEscape theAction) {
72
+    const bool isFullscreen = myWindow->hasFullscreenMode()
73
+                           && myWindow->isFullScreen();
74
+    switch(theAction) {
75
+        case ActionOnEscape_Nothing: {
76
+            return false;
77
+        }
78
+        case ActionOnEscape_ExitOneClick: {
79
+            StApplication::exit(0);
80
+            return true;
81
+        }
82
+        case ActionOnEscape_ExitDoubleClick: {
83
+            if(isFullscreen) {
84
+                return false;
85
+            }
86
+
87
+            const double aTimeSec = myExitTimer.getElapsedTimeInSec();
88
+            if(myExitTimer.isOn()
89
+            && aTimeSec < 0.5) {
90
+                StApplication::exit(0);
91
+                return true;
92
+            }
93
+            myExitTimer.restart();
94
+            return false;
95
+        }
96
+        case ActionOnEscape_ExitOneClickWindowed: {
97
+            if(isFullscreen) {
98
+                return false;
99
+            }
100
+            StApplication::exit(0);
101
+            return true;
102
+        }
103
+    }
104
+    return false;
105
+}
106
sview-15_11.tar.gz/StCore/StCocoaView.h -> sview-16_06.tar.gz/StCore/StCocoaView.h Changed
9
 
1
@@ -31,6 +31,7 @@
2
         bool          myIsFullscreen; //!< cached fullscreen state
3
         @public
4
         bool          myToHideCursor;
5
+        bool          myIsLionOS;
6
     }
7
 
8
         /**
9
sview-15_11.tar.gz/StCore/StCocoaView.mm -> sview-16_06.tar.gz/StCore/StCocoaView.mm Changed
236
 
1
@@ -24,6 +24,25 @@
2
 @interface NSOpenGLView (LionAPI)
3
     - (void )setWantsBestResolutionOpenGLSurface: (BOOL )theFlag;
4
 @end
5
+
6
+enum {
7
+    NSEventPhaseNone        = 0,
8
+    NSEventPhaseBegan       = 0x1 << 0,
9
+    NSEventPhaseStationary  = 0x1 << 1,
10
+    NSEventPhaseChanged     = 0x1 << 2,
11
+    NSEventPhaseEnded       = 0x1 << 3,
12
+    NSEventPhaseCancelled   = 0x1 << 4,
13
+    NSEventPhaseMayBegin    = 0x1 << 5
14
+};
15
+typedef NSUInteger NSEventPhase;
16
+
17
+@interface NSEvent (LionAPI)
18
+    @property(readonly) BOOL    hasPreciseScrollingDeltas;
19
+    @property(readonly) CGFloat scrollingDeltaX;
20
+    @property(readonly) CGFloat scrollingDeltaY;
21
+    @property(readonly) NSEventPhase phase;
22
+    @property(readonly) NSEventPhase momentumPhase;
23
+@end
24
 #endif
25
 
26
 @implementation StCocoaView
27
@@ -39,9 +58,10 @@
28
         myStWin        = theStWin;
29
         myWinStyle     = 0;
30
         myIsFullscreen = false;
31
+        myIsLionOS     = [self respondsToSelector: @selector(setWantsBestResolutionOpenGLSurface:)];
32
 
33
         // enable HiDPI mode
34
-        if([self respondsToSelector: @selector(setWantsBestResolutionOpenGLSurface:)]) {
35
+        if(myIsLionOS) {
36
             [self setWantsBestResolutionOpenGLSurface: YES];
37
         }
38
 
39
@@ -73,6 +93,8 @@
40
 
41
         // make view as first responder in winow to capture all useful events
42
         [theNsWin makeFirstResponder: self];
43
+
44
+        [self setAcceptsTouchEvents: YES];
45
         return self;
46
     }
47
 
48
@@ -203,38 +225,147 @@
49
     }
50
 
51
     /**
52
+     * Initialize touches list.
53
+     */
54
+    - (void ) fillStTouches: (NSEvent* ) theEvent {
55
+
56
+        const StRectI_t  aWinRect  = myStWin->attribs.IsFullScreen ? myStWin->myRectFull : myStWin->myRectNorm;
57
+        const StMonitor& aMon      = myStWin->myMonMasterFull == -1
58
+                                   ? myStWin->myMonitors[myStWin->myRectNorm.center()]
59
+                                   : myStWin->myMonitors[myStWin->myMonMasterFull];
60
+        const StRectI_t  aMonRect  = aMon.getVRect();
61
+        const float      aMonSizeX = aMonRect.width();
62
+        const float      aMonSizeY = aMonRect.height();
63
+        const float      aWinSizeX = aWinRect.width();
64
+        const float      aWinSizeY = aWinRect.height();
65
+
66
+        NSSet*     aTouchSet = [theEvent touchesMatchingPhase: NSTouchPhaseTouching inView: self];
67
+        NSArray*   aTouches  = [aTouchSet allObjects];
68
+        for(size_t aTouchIter = 0; aTouchIter < ST_MAX_TOUCHES; ++aTouchIter) {
69
+            StTouch& aTouch = myStEvent.Touch.Touches[aTouchIter];
70
+            aTouch = StTouch::Empty();
71
+            if(aTouchIter >= aTouchSet.count) {
72
+                continue;
73
+            }
74
+
75
+            NSTouch* aTouchNs = [aTouches objectAtIndex: aTouchIter];
76
+            aTouch.Id       = (size_t )aTouchNs.identity;
77
+            aTouch.DeviceId = (size_t )aTouchNs.device;
78
+            aTouch.OnScreen = false;
79
+
80
+            // map from touchpad to the window
81
+            aTouch.PointX   = (        aTouchNs.normalizedPosition.x  * aMonSizeX - float(aWinRect.left())) / aWinSizeX;
82
+            aTouch.PointY   = ((1.0f - aTouchNs.normalizedPosition.y) * aMonSizeY - float(aWinRect.top()))  / aWinSizeY;
83
+
84
+            //aTouch.DevSizeX = aTouchNs.deviceSize.width;
85
+            //aTouch.DevSizeY = aTouchNs.deviceSize.height;
86
+        }
87
+        myStEvent.Touch.NbTouches = aTouchSet.count < ST_MAX_TOUCHES ? aTouchSet.count : ST_MAX_TOUCHES;
88
+    }
89
+
90
+    /**
91
+     * Handle new touches.
92
+     */
93
+    - (void ) touchesBeganWithEvent: (NSEvent* ) theEvent {
94
+        myStEvent.Type       = stEvent_TouchDown;
95
+        myStEvent.Touch.Time = [theEvent timestamp];
96
+        [self fillStTouches: theEvent];
97
+
98
+        if(myStWin->myEventsThreaded) {
99
+            myStWin->myEventsBuffer.append(myStEvent);
100
+        } else {
101
+            myStWin->doTouch(myStEvent.Touch);
102
+        }
103
+    }
104
+
105
+    /**
106
+     * Handle touches moves.
107
+     */
108
+    - (void ) touchesMovedWithEvent: (NSEvent* ) theEvent {
109
+        myStEvent.Type       = stEvent_TouchMove;
110
+        myStEvent.Touch.Time = [theEvent timestamp];
111
+        [self fillStTouches: theEvent];
112
+
113
+        if(myStWin->myEventsThreaded) {
114
+            myStWin->myEventsBuffer.append(myStEvent);
115
+        } else {
116
+            myStWin->doTouch(myStEvent.Touch);
117
+        }
118
+    }
119
+
120
+    /**
121
+     * Handle released touches.
122
+     */
123
+    - (void ) touchesEndedWithEvent: (NSEvent* ) theEvent {
124
+        myStEvent.Type       = stEvent_TouchUp;
125
+        myStEvent.Touch.Time = [theEvent timestamp];
126
+        [self fillStTouches: theEvent];
127
+
128
+        if(myStWin->myEventsThreaded) {
129
+            myStWin->myEventsBuffer.append(myStEvent);
130
+        } else {
131
+            myStWin->doTouch(myStEvent.Touch);
132
+        }
133
+    }
134
+
135
+    /**
136
+     * Handle cancelled touches.
137
+     */
138
+    - (void ) touchesCancelledWithEvent: (NSEvent* )theEvent {
139
+        myStEvent.Type       = stEvent_TouchCancel;
140
+        myStEvent.Touch.Time = [theEvent timestamp];
141
+        [self fillStTouches: theEvent];
142
+
143
+        if(myStWin->myEventsThreaded) {
144
+            myStWin->myEventsBuffer.append(myStEvent);
145
+        } else {
146
+            myStWin->doTouch(myStEvent.Touch);
147
+        }
148
+    }
149
+
150
+    /**
151
      * Mouse scroll.
152
      */
153
     - (void ) scrollWheel: (NSEvent* ) theEvent {
154
-        const CGFloat    aDeltaY = [theEvent deltaY];
155
-        const CGFloat    aDeltaX = [theEvent deltaX];
156
+        // NSMouseEventSubtype comes only from PC mouse
157
+        // NSTabletPointEventSubtype comes from touchpad and from Apple mouse (even without multitouch!)
158
+        // NSTabletProximityEventSubtype and NSTouchEventSubtype - unknown
159
+
160
         const StPointD_t aPnt    = myStWin->getMousePos();
161
-        StVirtButton aBtnId = ST_NOMOUSE;
162
-        if(stAreEqual(aDeltaX, 0.0, 0.01)) {
163
-            if(stAreEqual(aDeltaY, 0.0, 0.01)) {
164
-                // a lot of values near zero can be generated by touchpad
165
-                return;
166
-            }
167
-            aBtnId = (aDeltaY > 0.0) ? ST_MOUSE_SCROLL_V_UP : ST_MOUSE_SCROLL_V_DOWN;
168
-        } else {
169
-            aBtnId = (aDeltaX > 0.0) ? ST_MOUSE_SCROLL_LEFT : ST_MOUSE_SCROLL_RIGHT;
170
+        myStEvent.Type           = stEvent_Scroll;
171
+        myStEvent.Scroll.Time    = [theEvent timestamp];
172
+        myStEvent.Scroll.PointX  = aPnt.x();
173
+        myStEvent.Scroll.PointY  = aPnt.y();
174
+        myStEvent.Scroll.StepsX  = 0;
175
+        myStEvent.Scroll.StepsY  = 0;
176
+        myStEvent.Scroll.DeltaX  = 0.0f;
177
+        myStEvent.Scroll.DeltaY  = 0.0f;
178
+        myStEvent.Scroll.IsFromMultiTouch = !myIsLionOS
179
+                                         || [theEvent momentumPhase] != NSEventPhaseNone
180
+                                         || [theEvent phase]         != NSEventPhaseNone;
181
+
182
+        CGFloat aDeltaX = [theEvent deltaX];
183
+        CGFloat aDeltaY = [theEvent deltaY];
184
+        if(!stAreEqual(aDeltaX, 0.0f, 0.01f)) {
185
+            myStEvent.Scroll.StepsX = aDeltaX > 0.0f ? -1 :  1;
186
+            myStEvent.Scroll.DeltaX = 10.0f * myStEvent.Scroll.StepsX;
187
+        }
188
+        if(!stAreEqual(aDeltaY, 0.0f, 0.01f)) {
189
+            myStEvent.Scroll.StepsY = aDeltaY > 0.0f ?  1 : -1;
190
+            myStEvent.Scroll.DeltaY = 10.0f * myStEvent.Scroll.StepsY;
191
+        }
192
+
193
+        if(myIsLionOS
194
+        && [theEvent hasPreciseScrollingDeltas]) {
195
+            myStEvent.Scroll.DeltaX = [theEvent scrollingDeltaX];
196
+            myStEvent.Scroll.DeltaY = [theEvent scrollingDeltaY];
197
         }
198
 
199
         //if([theEvent subtype] == NSMouseEventSubtype) {
200
-        myStEvent.Type           = stEvent_MouseDown;
201
-        myStEvent.Button.Time    = [theEvent timestamp];
202
-        myStEvent.Button.Button  = aBtnId;
203
-        myStEvent.Button.Buttons = 0;
204
-        myStEvent.Button.PointX  = aPnt.x();
205
-        myStEvent.Button.PointY  = aPnt.y();
206
         if(myStWin->myEventsThreaded) {
207
             myStWin->myEventsBuffer.append(myStEvent);
208
-            myStEvent.Type = stEvent_MouseUp;
209
-            myStWin->myEventsBuffer.append(myStEvent);
210
         } else {
211
-            myStWin->signals.onMouseDown->emit(myStEvent.Button);
212
-            myStEvent.Type = stEvent_MouseUp;
213
-            myStWin->signals.onMouseUp  ->emit(myStEvent.Button);
214
+            myStWin->signals.onScroll->emit(myStEvent.Scroll);
215
         }
216
         //}
217
     }
218
@@ -242,7 +373,7 @@
219
     /**
220
      * 3-fingers swipe.
221
      */
222
-    - (void ) swipeWithEvent: (NSEvent* ) theEvent {
223
+    /*- (void ) swipeWithEvent: (NSEvent* ) theEvent {
224
         const CGFloat aDeltaX = [theEvent deltaX];
225
         const CGFloat aDeltaY = [theEvent deltaY];
226
         myStEvent.Type = stEvent_Navigate;
227
@@ -268,7 +399,7 @@
228
                 myStWin->signals.onNavigate->emit(myStEvent.Navigate);
229
             }
230
         }
231
-    }
232
+    }*/
233
 
234
     /**
235
      * Keyboard shortcuts event.
236
sview-15_11.tar.gz/StCore/StCore.cbp -> sview-16_06.tar.gz/StCore/StCore.cbp Changed
38
 
1
@@ -183,16 +183,13 @@
2
                    <Add option="-DST_HAVE_STCONFIG" />
3
                </Compiler>
4
                <Linker>
5
-                   <Add option="-s" />
6
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
7
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
8
                    <Add option="-framework Appkit" />
9
                    <Add option="-framework OpenGL" />
10
                    <Add option="-framework IOKit" />
11
                    <Add library="objc" />
12
                </Linker>
13
-               <ExtraCommands>
14
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
15
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
16
-               </ExtraCommands>
17
            </Target>
18
            <Target title="MAC_gcc_DEBUG">
19
                <Option output="../bin/$(TARGET_NAME)/sView.app/Contents/MacOS/libStCore" prefix_auto="1" extension_auto="1" />
20
@@ -209,15 +206,13 @@
21
                    <Add option="-DST_HAVE_STCONFIG" />
22
                </Compiler>
23
                <Linker>
24
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
25
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
26
                    <Add option="-framework Appkit" />
27
                    <Add option="-framework OpenGL" />
28
                    <Add option="-framework IOKit" />
29
                    <Add library="objc" />
30
                </Linker>
31
-               <ExtraCommands>
32
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
33
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
34
-               </ExtraCommands>
35
            </Target>
36
        </Build>
37
        <Compiler>
38
sview-15_11.tar.gz/StCore/StCore.rc -> sview-16_06.tar.gz/StCore/StCore.rc Changed
10
 
1
@@ -15,7 +15,7 @@
2
     BEGIN
3
       VALUE "FileDescription", "sView core library\000"
4
       VALUE "FileVersion",     SVIEW_SDK_VER_STRING "\000"
5
-      VALUE "LegalCopyright",  "\251 2007-2015 Kirill Gavrilov\000"
6
+      VALUE "LegalCopyright",  "\251 2007-2016 Kirill Gavrilov\000"
7
       VALUE "ProductName",     "StCore\000"
8
       VALUE "ProductVersion",  SVIEW_SDK_VER_STRING "\000"
9
       VALUE "OfficialSite",    "www.sview.ru\000"
10
sview-15_11.tar.gz/StCore/StCore.vcxproj -> sview-16_06.tar.gz/StCore/StCore.vcxproj Changed
41
 
1
@@ -21,7 +21,7 @@
2
   <PropertyGroup Label="Globals">
3
     <ProjectGuid>{4CFDA18A-0A2E-48DC-BDCB-639C75918B56}</ProjectGuid>
4
   </PropertyGroup>
5
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
6
+  <Import Project="$(SolutionDir)sView.Cpp.Default.props" />
7
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
8
     <ConfigurationType>DynamicLibrary</ConfigurationType>
9
     <CharacterSet>Unicode</CharacterSet>
10
@@ -220,6 +220,30 @@
11
     <ClCompile Include="StXDisplay.cpp" />
12
   </ItemGroup>
13
   <ItemGroup>
14
+    <ClInclude Include="..\include\StCore\StAndroidGlue.h" />
15
+    <ClInclude Include="..\include\StCore\StApplication.h" />
16
+    <ClInclude Include="..\include\StCore\StEDIDParser.h" />
17
+    <ClInclude Include="..\include\StCore\StEvent.h" />
18
+    <ClInclude Include="..\include\StCore\StKeysState.h" />
19
+    <ClInclude Include="..\include\StCore\StMonitor.h" />
20
+    <ClInclude Include="..\include\StCore\StNativeWin_t.h" />
21
+    <ClInclude Include="..\include\StCore\StOpenInfo.h" />
22
+    <ClInclude Include="..\include\StCore\StSearchMonitors.h" />
23
+    <ClInclude Include="..\include\StCore\StVirtualKeys.h" />
24
+    <ClInclude Include="..\include\StCore\StWindow.h" />
25
+    <ClInclude Include="..\include\StCore\StWinErrorCodes.h" />
26
+    <ClInclude Include="StADLsdk.h" />
27
+    <ClInclude Include="StCocoaView.h" />
28
+    <ClInclude Include="StCocoaWin.h" />
29
+    <ClInclude Include="StEventsBuffer.h" />
30
+    <ClInclude Include="stvkeysandroid.h" />
31
+    <ClInclude Include="stvkeyscarbon.h" />
32
+    <ClInclude Include="stvkeysxarray.h" />
33
+    <ClInclude Include="StWindowImpl.h" />
34
+    <ClInclude Include="StWinHandles.h" />
35
+    <ClInclude Include="StXDisplay.h" />
36
+  </ItemGroup>
37
+  <ItemGroup>
38
     <ResourceCompile Include="StCore.rc" />
39
   </ItemGroup>
40
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
41
sview-15_11.tar.gz/StCore/StCore.vcxproj.filters -> sview-16_06.tar.gz/StCore/StCore.vcxproj.filters Changed
56
 
1
@@ -1,47 +1,14 @@
2
 <?xml version="1.0" encoding="utf-8"?>
3
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
   <ItemGroup>
5
-    <Filter Include="Source files">
6
-      <UniqueIdentifier>{CACACF6C-18DA-13DF-148A-3C969CC3F588}</UniqueIdentifier>
7
+    <Filter Include="Source Files">
8
+      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
9
+      <Extensions>cpp;c;cc;cxx;m;mm;def;odl;idl;hpj;bat;asm;asmx</Extensions>
10
+    </Filter>
11
+    <Filter Include="Header Files">
12
+      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
13
+      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
14
     </Filter>
15
-  </ItemGroup>
16
-  <ItemGroup>
17
-    <ClCompile Include="StADLsdk.cpp">
18
-      <Filter>Source files</Filter>
19
-    </ClCompile>
20
-    <ClCompile Include="StAndroidGlue.cpp">
21
-      <Filter>Source files</Filter>
22
-    </ClCompile>
23
-    <ClCompile Include="StApplication.cpp">
24
-      <Filter>Source files</Filter>
25
-    </ClCompile>
26
-    <ClCompile Include="StKeysState.cpp">
27
-      <Filter>Source files</Filter>
28
-    </ClCompile>
29
-    <ClCompile Include="StSearchMonitors.cpp">
30
-      <Filter>Source files</Filter>
31
-    </ClCompile>
32
-    <ClCompile Include="StWindow.cpp">
33
-      <Filter>Source files</Filter>
34
-    </ClCompile>
35
-    <ClCompile Include="StWindowImpl.cpp">
36
-      <Filter>Source files</Filter>
37
-    </ClCompile>
38
-    <ClCompile Include="StWindowImplAnd.cpp">
39
-      <Filter>Source files</Filter>
40
-    </ClCompile>
41
-    <ClCompile Include="StWindowImplLin.cpp">
42
-      <Filter>Source files</Filter>
43
-    </ClCompile>
44
-    <ClCompile Include="StWindowImplWin.cpp">
45
-      <Filter>Source files</Filter>
46
-    </ClCompile>
47
-    <ClCompile Include="StWinHandles.cpp">
48
-      <Filter>Source files</Filter>
49
-    </ClCompile>
50
-    <ClCompile Include="StXDisplay.cpp">
51
-      <Filter>Source files</Filter>
52
-    </ClCompile>
53
   </ItemGroup>
54
   <ItemGroup>
55
     <ResourceCompile Include="StCore.rc" />
56
sview-15_11.tar.gz/StCore/StWinHandles.cpp -> sview-16_06.tar.gz/StCore/StWinHandles.cpp Changed
19
 
1
@@ -159,8 +159,15 @@
2
 }
3
 
4
 bool StWinGlrc::makeCurrent(EGLSurface theSurface) {
5
-    return myRC != EGL_NO_CONTEXT
6
-        && eglMakeCurrent(myDisplay, theSurface, theSurface, myRC) == EGL_TRUE;
7
+    if(myRC == EGL_NO_CONTEXT) {
8
+        return false;
9
+    }
10
+
11
+    // some drivers crash when trying to make current EGL_NO_SURFACE within proper EGLContext
12
+    EGLContext aCtx = theSurface != EGL_NO_SURFACE
13
+                    ? myRC
14
+                    : EGL_NO_CONTEXT;
15
+    return eglMakeCurrent(myDisplay, theSurface, theSurface, aCtx) == EGL_TRUE;
16
 }
17
 
18
 #elif defined(_WIN32)
19
sview-15_11.tar.gz/StCore/StWinHandles.h -> sview-16_06.tar.gz/StCore/StWinHandles.h Changed
23
 
1
@@ -90,6 +90,21 @@
2
      * EGL configuration
3
      */
4
     ST_LOCAL EGLConfig  getConfig()  const { return myConfig;  }
5
+
6
+    /**
7
+     * EGL rendering context.
8
+     */
9
+    ST_LOCAL EGLContext getRenderContext() const { return myRC; }
10
+#elif defined(_WIN32)
11
+    /**
12
+     * WinAPI Rendering Context handle.
13
+     */
14
+    ST_LOCAL HGLRC getRenderContext() const { return myRC; }
15
+#else
16
+    /**
17
+     * X-GLX rendering context.
18
+     */
19
+    ST_LOCAL GLXContext getRenderContext() const { return myRC; }
20
 #endif
21
 
22
         private:
23
sview-15_11.tar.gz/StCore/StWindow.cpp -> sview-16_06.tar.gz/StCore/StWindow.cpp Changed
57
 
1
@@ -13,7 +13,7 @@
2
 #include "StWindowImpl.h"
3
 
4
 void StWindow::copySignals() {
5
-    params.VSyncMode = new StEnumParam(0, "VSync mode");
6
+    params.VSyncMode = new StEnumParam(0, stCString("vsyncMode"), stCString("VSync mode"));
7
     params.VSyncMode->changeValues().add("Off");
8
     params.VSyncMode->changeValues().add("On");
9
     params.VSyncMode->changeValues().add("Mixed");
10
@@ -27,6 +27,9 @@
11
     myWin->signals.onKeyHold   = &signals.onKeyHold;
12
     myWin->signals.onMouseUp   = &signals.onMouseUp;
13
     myWin->signals.onMouseDown = &signals.onMouseDown;
14
+    myWin->signals.onTouch     = &signals.onTouch;
15
+    myWin->signals.onGesture   = &signals.onGesture;
16
+    myWin->signals.onScroll    = &signals.onScroll;
17
     myWin->signals.onFileDrop  = &signals.onFileDrop;
18
     myWin->signals.onNavigate  = &signals.onNavigate;
19
     myWin->signals.onAction    = &signals.onAction;
20
@@ -137,6 +140,10 @@
21
     myTargetFps = theFPS;
22
 }
23
 
24
+void StWindow::doChangeLanguage() {
25
+    //
26
+}
27
+
28
 void StWindow::show() {
29
     myWin->show(ST_WIN_ALL);
30
 }
31
@@ -354,10 +361,25 @@
32
 #endif
33
 }
34
 
35
+void* StWindow::getNativeOglRC() const {
36
+#ifdef _WIN32
37
+    if(myWin->myMaster.hRC.isNull()) {
38
+        return NULL;
39
+    }
40
+    return (void* )myWin->myMaster.hRC->getRenderContext();
41
+#else
42
+    return NULL;
43
+#endif
44
+}
45
+
46
 const StString& StWindow::getStatistics() const {
47
     return myWin->myStatistics;
48
 }
49
 
50
+void StWindow::setHardwareStereoOn(const bool theToEnable) {
51
+    myWin->myToEnableStereoHW = theToEnable;
52
+}
53
+
54
 bool StWindow::hasOrientationSensor() const {
55
     return myWin->myHasOrientSensor;
56
 }
57
sview-15_11.tar.gz/StCore/StWindowImpl.cpp -> sview-16_06.tar.gz/StCore/StWindowImpl.cpp Changed
467
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StCore, window system independent C++ toolkit for writing OpenGL applications.
4
- * Copyright © 2007-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -47,10 +47,12 @@
10
   myParentWin(theParentWindow),
11
   myWindowTitle(WINDOW_TITLE_DEFAULT),
12
   myInitState(STWIN_INITNOTSTART),
13
+  myToEnableStereoHW(false),
14
   myHasOrientSensor(false),
15
   myIsPoorOrient(false),
16
   myToTrackOrient(false),
17
   myMousePt(0.5, 0.5),
18
+  myNbTouchesMax(0),
19
   myRectNorm(128, 512, 128, 512),
20
   myRectFull(128, 512, 128, 512),
21
   myRectNormPrev(0, 1, 0, 1),
22
@@ -60,6 +62,12 @@
23
   myWinMonScaleId(0),
24
   myTiledCfg(TiledCfg_Separate),
25
 #ifdef _WIN32
26
+  myRegisterTouchWindow(NULL),
27
+  myUnregisterTouchWindow(NULL),
28
+  myGetTouchInputInfo(NULL),
29
+  myCloseTouchInputHandle(NULL),
30
+  myTmpTouches(NULL),
31
+  myNbTmpTouches(0),
32
   myEventInitWin(false),
33
   myEventInitGl(false),
34
   myEventQuit(false),
35
@@ -102,6 +110,14 @@
36
     attribs.Split      = StWinSlave_splitOff;
37
     attribs.ToAlignEven = false;
38
 
39
+    myTouches.Type = stEvent_TouchCancel;
40
+    myTouches.Time = 0.0;
41
+    myTouches.clearTouches();
42
+
43
+    myTap1Touch.Type = stEvent_TouchCancel;
44
+    myTap1Touch.Time = 0.0;
45
+    myTap1Touch.clearTouches();
46
+
47
     myMonSlave.idMaster = 0;
48
     myMonSlave.idSlave  = 1; // second by default
49
     myMonSlave.xAdd = 1;
50
@@ -110,7 +126,16 @@
51
     myMonSlave.ySub = 0;
52
 
53
 #ifdef _WIN32
54
-    myEventsThreaded  = true; // events loop is always performed in dedicated thread
55
+    myEventsThreaded = true; // events loop is always performed in dedicated thread
56
+
57
+    HMODULE aUser32Module = GetModuleHandleW(L"User32");
58
+    if(aUser32Module != NULL) {
59
+        // User32 should be already loaded
60
+        myRegisterTouchWindow   = (RegisterTouchWindow_t   )GetProcAddress(aUser32Module, "RegisterTouchWindow");
61
+        myUnregisterTouchWindow = (UnregisterTouchWindow_t )GetProcAddress(aUser32Module, "UnregisterTouchWindow");
62
+        myGetTouchInputInfo     = (GetTouchInputInfo_t     )GetProcAddress(aUser32Module, "GetTouchInputInfo");
63
+        myCloseTouchInputHandle = (CloseTouchInputHandle_t )GetProcAddress(aUser32Module, "CloseTouchInputHandle");
64
+    }
65
 
66
     // Adjust system timer
67
     // By default Windows2K+ timer has ugly precision
68
@@ -217,6 +242,8 @@
69
     } else {
70
         timeEndPeriod(1);
71
     }
72
+    stMemFree(myTmpTouches);
73
+    myTmpTouches = NULL;
74
 #endif
75
 
76
 #ifdef __APPLE__
77
@@ -557,33 +584,15 @@
78
         myBlockSleep = BlockSleep_OFF;
79
     }
80
 #elif defined(__ANDROID__)
81
-    int aFlagsToAdd    = 0;
82
-    int aFlagsToRemove = 0;
83
-    if(attribs.ToBlockSleepDisplay
84
-    //|| attribs.ToBlockSleepSystem
85
-    ) {
86
-        if(myBlockSleep == BlockSleep_DISPLAY) {
87
-            return;
88
-        }
89
-
90
-        aFlagsToAdd  = AWINDOW_FLAG_KEEP_SCREEN_ON;
91
+    int aFlags = 0;
92
+    if(attribs.ToBlockSleepDisplay) {
93
+        aFlags |= AWINDOW_FLAG_KEEP_SCREEN_ON;
94
         myBlockSleep = BlockSleep_DISPLAY;
95
-    } else if(myBlockSleep != BlockSleep_OFF) {
96
-        aFlagsToRemove = AWINDOW_FLAG_KEEP_SCREEN_ON;
97
-        myBlockSleep   = BlockSleep_OFF;
98
-    }
99
-
100
-    if(aFlagsToAdd    == 0
101
-    && aFlagsToRemove == 0) {
102
-        return;
103
-    } else if(myParentWin == NULL) {
104
-        return;
105
+    } else {
106
+        myBlockSleep = BlockSleep_OFF;
107
     }
108
-
109
-    ANativeActivity_setWindowFlags(myParentWin->getActivity(), aFlagsToAdd, aFlagsToRemove);
110
-    if(aFlagsToAdd != 0) {
111
-        // workaround font corruption on Nexus 7
112
-        StThread::sleep(100);
113
+    if(myParentWin != NULL) {
114
+        myParentWin->setWindowFlags(aFlags);
115
     }
116
 #elif defined(__linux__)
117
     if(attribs.ToBlockSleepDisplay) { // || attribs.ToBlockSleepSystem
118
@@ -1041,6 +1050,328 @@
119
     }
120
 }
121
 
122
+/**
123
+ * Gesture threshold.
124
+ */
125
+struct StGestThreshold {
126
+    float FromIdle;   //!< threshold to start gesture
127
+    float Update;     //!< threshold to update this gesture
128
+    float BreakOther; //!< threshold to start gesture breaking another
129
+};
130
+
131
+namespace {
132
+    static const StGestThreshold THE_THRESHOLD_TAP = {
133
+        20.0f,
134
+        20.0f,
135
+        20.0f
136
+    };
137
+    static const StGestThreshold THE_THRESHOLD_PAN = {
138
+         4.0f,
139
+         1.0f,
140
+        20.0f
141
+    };
142
+    static const StGestThreshold THE_THRESHOLD_ZROT = {
143
+        float( 2.0 * M_PI / 180.0),
144
+        float( 2.0 * M_PI / 180.0),
145
+        float(20.0 * M_PI / 180.0)
146
+    };
147
+    static const StGestThreshold THE_THRESHOLD_ZOOM = {
148
+         6.0f,
149
+         1.0f,
150
+        20.0f
151
+    };
152
+    static const StGestThreshold THE_THRESHOLD_SWIPE = {
153
+        150.0f,
154
+        150.0f,
155
+        150.0f
156
+    };
157
+}
158
+
159
+/**
160
+ * Auxiliary method to start new gesture.
161
+ */
162
+inline bool startGesture(const StTouchEvent&    theTouches,
163
+                         const StEventType      theGesture,
164
+                         const StGestThreshold& theThreshold,
165
+                         const float            theValue) {
166
+    if(theTouches.Type == stEvent_TouchCancel) {
167
+        return theValue >= theThreshold.FromIdle;
168
+    } else if(theTouches.Type == theGesture) {
169
+        return theValue >= theThreshold.Update;
170
+    }
171
+    return theValue >= theThreshold.BreakOther;
172
+}
173
+
174
+void StWindowImpl::doTouch(const StTouchEvent& theTouches) {
175
+    const double aTime = theTouches.Time;
176
+    signals.onTouch->emit(theTouches);
177
+
178
+    // scale factor for conversion into dp (dencity-independent pixels) units
179
+    const StRectI_t  aWinRect = attribs.IsFullScreen ? myRectFull : myRectNorm;
180
+    const StMonitor& aMon     = myMonitors[aWinRect.center()];
181
+    StGLVec2 aScale((float )aWinRect.width() / aMon.getScale(), (float )aWinRect.height() / aMon.getScale());
182
+
183
+    switch(theTouches.Type) {
184
+        case stEvent_TouchDown: {
185
+            myTouches.Type = stEvent_TouchCancel;
186
+            myTouches.clearTouches();
187
+            for(int aTouchIter = 0; aTouchIter < theTouches.NbTouches; ++aTouchIter) {
188
+                myTouches.addTouch(theTouches.Touches[aTouchIter]);
189
+            }
190
+            if(myNbTouchesMax == 0) {
191
+                myTouches.Time = aTime;
192
+            }
193
+            myNbTouchesMax = stMax(myNbTouchesMax, theTouches.NbTouches);
194
+
195
+            myStEvent2.Type = stEvent_GestureCancel;
196
+            myStEvent2.Gesture.clearGesture();
197
+            myStEvent2.Gesture.Time = aTime;
198
+            signals.onGesture->emit(myStEvent2.Gesture);
199
+            break;
200
+        }
201
+        case stEvent_TouchUp: {
202
+            StTouchEvent aCopy = myTouches;
203
+            myTouches.Type = stEvent_TouchCancel;
204
+            myTouches.clearTouches();
205
+            for(int aTouchIter = 0; aTouchIter < aCopy.NbTouches; ++aTouchIter) {
206
+                if(theTouches.findTouchById(aCopy.Touches[aTouchIter].Id).isDefined()) {
207
+                    myTouches.addTouch(aCopy.Touches[aTouchIter]);
208
+                }
209
+            }
210
+
211
+            myStEvent2.Type = stEvent_GestureCancel;
212
+            myStEvent2.Gesture.clearGesture();
213
+            myStEvent2.Gesture.Time = aTime;
214
+            signals.onGesture->emit(myStEvent2.Gesture);
215
+
216
+            if(theTouches.NbTouches == 0) {
217
+                if(myNbTouchesMax == 1) {
218
+                    if(myTap1Touch.Type != stEvent_TouchCancel
219
+                    && (aTime - myTap1Touch.Time) < 0.5) {
220
+                        StGLVec2 aDelta(myTap1Touch.Touches[0].PointX - aCopy.Touches[0].PointX,
221
+                                        myTap1Touch.Touches[0].PointY - aCopy.Touches[0].PointY);
222
+                        aDelta *= aScale;
223
+                        if(aDelta.modulus() <= THE_THRESHOLD_TAP.FromIdle) {
224
+                            myStEvent2.Type = stEvent_Gesture1DoubleTap;
225
+                            myStEvent2.Gesture.clearGesture();
226
+                            myStEvent2.Gesture.Time = aTime;
227
+                            myStEvent2.Gesture.Point1X = aCopy.Touches[0].PointX;
228
+                            myStEvent2.Gesture.Point1Y = aCopy.Touches[0].PointY;
229
+                            signals.onGesture->emit(myStEvent2.Gesture);
230
+                        }
231
+                        myTap1Touch.Type = stEvent_TouchCancel;
232
+                    } else if(aTime - aCopy.Time < 0.5) {
233
+                        myTap1Touch = aCopy;
234
+                        myTap1Touch.Type = stEvent_TouchUp;
235
+                        myTap1Touch.Time = aTime;
236
+                    }
237
+                } else {
238
+                    myTap1Touch.Type = stEvent_TouchCancel;
239
+                }
240
+                myNbTouchesMax = 0;
241
+            }
242
+            break;
243
+        }
244
+        case stEvent_TouchCancel: {
245
+            myTouches.Type = stEvent_TouchCancel;
246
+            myTouches.clearTouches();
247
+
248
+            myNbTouchesMax = 0;
249
+            myStEvent2.Type = stEvent_GestureCancel;
250
+            myStEvent2.Gesture.clearGesture();
251
+            myStEvent2.Gesture.Time = aTime;
252
+            signals.onGesture->emit(myStEvent2.Gesture);
253
+            break;
254
+        }
255
+        case stEvent_TouchMove: {
256
+            break;
257
+        }
258
+        default:
259
+            break;
260
+    }
261
+
262
+    if(theTouches.Type != stEvent_TouchMove) {
263
+        return;
264
+    }
265
+
266
+    bool toUpdate = false;
267
+    if(myTouches .NbTouches == 2
268
+    && theTouches.NbTouches == 2) {
269
+        StTouch aTFrom[2] = {
270
+            myTouches.Touches[0],
271
+            myTouches.Touches[1]
272
+        };
273
+        StTouch aTTo[2] = {
274
+            theTouches.findTouchById(aTFrom[0].Id),
275
+            theTouches.findTouchById(aTFrom[1].Id)
276
+        };
277
+
278
+        if(!aTTo[0].isDefined()
279
+        || !aTTo[1].isDefined()) {
280
+            return;
281
+        }
282
+
283
+        StGLVec2 aFrom[2] = {
284
+            StGLVec2(aTFrom[0].PointX, aTFrom[0].PointY) * aScale,
285
+            StGLVec2(aTFrom[1].PointX, aTFrom[1].PointY) * aScale
286
+        };
287
+        StGLVec2 aTo[2] = {
288
+            StGLVec2(aTTo[0].PointX, aTTo[0].PointY) * aScale,
289
+            StGLVec2(aTTo[1].PointX, aTTo[1].PointY) * aScale
290
+        };
291
+
292
+        float aDistFrom  = (aFrom[1] - aFrom[0]).modulus();
293
+        float aDistTo    = (aTo  [1] - aTo  [0]).modulus();
294
+        float aDistDelta = aDistTo - aDistFrom;
295
+        float aRotAngle  = 0.0f;
296
+        if(std::abs(aDistFrom) > 50.0f) {
297
+            const float A1 = aFrom[0].y() - aFrom[1].y();
298
+            const float B1 = aFrom[1].x() - aFrom[0].x();
299
+
300
+            const float A2 =   aTo[0].y() - aTo[1].y();
301
+            const float B2 =   aTo[1].x() - aTo[0].x();
302
+
303
+            const float aDenom = A1 * A2 + B1 * B2;
304
+            if(aDenom >= 0.00001f) {
305
+                const float aNumerator = A1 * B2 - A2 * B1;
306
+                aRotAngle = std::atan(aNumerator / aDenom);
307
+            }
308
+        }
309
+
310
+        StGLVec2 aCenterFrom  = (aFrom[0] + aFrom[1]) * 0.5;
311
+        StGLVec2 aCenterTo    = (  aTo[0] +   aTo[1]) * 0.5;
312
+        StGLVec2 aCenterDelta = aCenterTo - aCenterFrom;
313
+
314
+        // take minimum delta between fingers
315
+        StGLVec2 aDeltas[2] = {
316
+            aTo[0] - aFrom[0],
317
+            aTo[1] - aFrom[1]
318
+        };
319
+        StGLVec2 aMoveDelta = aDeltas[0];
320
+        if(aDeltas[1].squareModulus()   < aMoveDelta.squareModulus()) {
321
+            aMoveDelta = aDeltas[1];
322
+        }
323
+        if(aCenterDelta.squareModulus() < aMoveDelta.squareModulus()) {
324
+            aMoveDelta = aCenterDelta;
325
+        }
326
+
327
+        myStEvent.Type = stEvent_None;
328
+        myStEvent.Gesture.clearGesture();
329
+        myStEvent.Gesture.Time = aTime;
330
+        myStEvent.Gesture.OnScreen = aTTo[0].OnScreen;
331
+        myStEvent.Gesture.Point1X  = (aTFrom[0].PointX + aTFrom[1].PointX) * 0.5f;
332
+        myStEvent.Gesture.Point1Y  = (aTFrom[0].PointY + aTFrom[1].PointY) * 0.5f;
333
+        myStEvent.Gesture.Point2X  = (  aTTo[0].PointX +   aTTo[1].PointX) * 0.5f;
334
+        myStEvent.Gesture.Point2Y  = (  aTTo[0].PointY +   aTTo[1].PointY) * 0.5f;
335
+
336
+        if(startGesture(myTouches, stEvent_Gesture2Rotate,
337
+                        THE_THRESHOLD_ZROT, std::abs(aRotAngle))) {
338
+            if(myTouches.Type != stEvent_GestureCancel
339
+            && myTouches.Type != stEvent_Gesture2Rotate) {
340
+                myStEvent2.Type = stEvent_GestureCancel;
341
+                myStEvent2.Gesture.clearGesture();
342
+                myStEvent2.Gesture.Time = aTime;
343
+                signals.onGesture->emit(myStEvent2.Gesture);
344
+            }
345
+            myTouches.Type = stEvent_Gesture2Rotate;
346
+            myStEvent.Type = stEvent_Gesture2Rotate;
347
+            myStEvent.Gesture.Value = aRotAngle;
348
+            signals.onGesture->emit(myStEvent.Gesture);
349
+            toUpdate = true;
350
+        } else if(//std::abs(aRotAngle) < 5.0f * M_PI / 180.0f &&
351
+                  startGesture(myTouches, stEvent_Gesture2Pinch,
352
+                               THE_THRESHOLD_ZOOM, std::abs(aDistDelta))) {
353
+            if(myTouches.Type != stEvent_GestureCancel
354
+            && myTouches.Type != stEvent_Gesture2Pinch) {
355
+                myStEvent2.Type = stEvent_GestureCancel;
356
+                myStEvent2.Gesture.clearGesture();
357
+                myStEvent2.Gesture.Time = aTime;
358
+                signals.onGesture->emit(myStEvent2.Gesture);
359
+            }
360
+            myTouches.Type = stEvent_Gesture2Pinch;
361
+            myStEvent.Type = stEvent_Gesture2Pinch;
362
+            myStEvent.Gesture.Value = aDistDelta;
363
+            signals.onGesture->emit(myStEvent.Gesture);
364
+            toUpdate = true;
365
+        } else if(startGesture(myTouches, stEvent_Gesture2Move,
366
+                               THE_THRESHOLD_PAN, aMoveDelta.modulus())) {
367
+            if(myTouches.Type != stEvent_GestureCancel
368
+            && myTouches.Type != stEvent_Gesture2Move) {
369
+                myStEvent2.Type = stEvent_GestureCancel;
370
+                myStEvent2.Gesture.clearGesture();
371
+                myStEvent2.Gesture.Time = aTime;
372
+                signals.onGesture->emit(myStEvent2.Gesture);
373
+            }
374
+            myTouches.Type = stEvent_Gesture2Move;
375
+            myStEvent.Type = stEvent_Gesture2Move;
376
+            signals.onGesture->emit(myStEvent.Gesture);
377
+            toUpdate = true;
378
+        }
379
+
380
+        if(toUpdate) {
381
+            myTouches.Touches[0] = aTTo[0];
382
+            myTouches.Touches[1] = aTTo[1];
383
+        }
384
+    } else if(myTouches .NbTouches == 3
385
+           && theTouches.NbTouches == 3) {
386
+        StTouch aTFrom[3] = {
387
+            myTouches.Touches[0],
388
+            myTouches.Touches[1],
389
+            myTouches.Touches[2]
390
+        };
391
+        StTouch aTTo[3] = {
392
+            theTouches.findTouchById(aTFrom[0].Id),
393
+            theTouches.findTouchById(aTFrom[1].Id),
394
+            theTouches.findTouchById(aTFrom[2].Id)
395
+        };
396
+
397
+        if(!aTTo[0].isDefined()
398
+        || !aTTo[1].isDefined()
399
+        || !aTTo[2].isDefined()) {
400
+            return;
401
+        }
402
+
403
+        StGLVec2 aFrom[3] = {
404
+            StGLVec2(aTFrom[0].PointX, aTFrom[0].PointY) * aScale,
405
+            StGLVec2(aTFrom[1].PointX, aTFrom[1].PointY) * aScale,
406
+            StGLVec2(aTFrom[2].PointX, aTFrom[2].PointY) * aScale
407
+        };
408
+        StGLVec2 aTo[3] = {
409
+            StGLVec2(aTTo[0].PointX, aTTo[0].PointY) * aScale,
410
+            StGLVec2(aTTo[1].PointX, aTTo[1].PointY) * aScale,
411
+            StGLVec2(aTTo[2].PointX, aTTo[2].PointY) * aScale
412
+        };
413
+        StGLVec2 aCenterFrom  = (aFrom[0] + aFrom[1] + aFrom[2]) * (1.0f / 3.0f);
414
+        StGLVec2 aCenterTo    = (  aTo[0] +   aTo[1] +   aTo[2]) * (1.0f / 3.0f);
415
+        StGLVec2 aCenterDelta = aCenterTo - aCenterFrom;
416
+        if(aCenterDelta.y() < 50.0f
417
+        && std::abs(aCenterDelta.x()) >= THE_THRESHOLD_SWIPE.FromIdle) {
418
+            myStEvent.Type = stEvent_Navigate;
419
+            myStEvent.Navigate.Time = aTime;
420
+            myStEvent.Navigate.Target = aCenterDelta.x() < 0.0
421
+                                      ? stNavigate_Backward
422
+                                      : stNavigate_Forward;
423
+            signals.onNavigate->emit(myStEvent.Navigate);
424
+            toUpdate = true;
425
+        } else if(aCenterDelta.x() < 50.0f
426
+               && std::abs(aCenterDelta.y()) >= THE_THRESHOLD_SWIPE.FromIdle) {
427
+            myStEvent.Type = stEvent_Navigate;
428
+            myStEvent.Navigate.Time = aTime;
429
+            myStEvent.Navigate.Target = aCenterDelta.y() < 0.0
430
+                                      ? stNavigate_Top
431
+                                      : stNavigate_Bottom;
432
+            signals.onNavigate->emit(myStEvent.Navigate);
433
+            toUpdate = true;
434
+        }
435
+
436
+        if(toUpdate) {
437
+            myTouches.Touches[0] = aTTo[0];
438
+            myTouches.Touches[1] = aTTo[1];
439
+            myTouches.Touches[2] = aTTo[2];
440
+        }
441
+    }
442
+}
443
+
444
 void StWindowImpl::swapEventsBuffers() {
445
     myEventsBuffer.swapBuffers();
446
     for(size_t anEventIter = 0; anEventIter < myEventsBuffer.getSize(); ++anEventIter) {
447
@@ -1077,8 +1408,17 @@
448
                 signals.onMouseDown->emit(anEvent.Button);
449
                 break;
450
             case stEvent_MouseUp:
451
-               signals.onMouseUp->emit(anEvent.Button);
452
-               break;
453
+                signals.onMouseUp->emit(anEvent.Button);
454
+                break;
455
+            case stEvent_TouchDown:
456
+            case stEvent_TouchUp:
457
+            case stEvent_TouchMove:
458
+            case stEvent_TouchCancel:
459
+                doTouch(anEvent.Touch);
460
+                break;
461
+            case stEvent_Scroll:
462
+                signals.onScroll->emit(anEvent.Scroll);
463
+                break;
464
             case stEvent_FileDrop:
465
                 signals.onFileDrop->emit(anEvent.DNDrop);
466
                 break;
467
sview-15_11.tar.gz/StCore/StWindowImpl.h -> sview-16_06.tar.gz/StCore/StWindowImpl.h Changed
74
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StCore, window system independent C++ toolkit for writing OpenGL applications.
4
- * Copyright © 2007-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -108,6 +108,7 @@
10
     ST_LOCAL void updateWindowPos();
11
     ST_LOCAL void updateActiveState();
12
     ST_LOCAL void updateBlockSleep();
13
+    ST_LOCAL void doTouch(const StTouchEvent& theEvent);
14
 #if defined(__ANDROID__)
15
     ST_LOCAL void onAndroidInput(const AInputEvent* theEvent, bool& theIsProcessed);
16
     ST_LOCAL void onAndroidCommand(int32_t theCommand);
17
@@ -271,12 +272,16 @@
18
     StString           myWindowTitle;     //!< window caption
19
     int                myInitState;       //!< initialization error code
20
     StString           myStatistics;      //!< extra statistics
21
+    bool               myToEnableStereoHW;//!< hardware stereo enable state
22
     StQuaternion<double> myQuaternion;    //!< device orientation
23
     bool               myHasOrientSensor; //!< flag indicating that device has orientation sensors
24
     bool               myIsPoorOrient;    //!< flag indicating that available orientation sensor provides imprecise values
25
     bool               myToTrackOrient;   //!< track device orientation
26
 
27
     StPointD_t         myMousePt;         //!< mouse coordinates to track activity
28
+    StTouchEvent       myTouches;         //!< current state of touch screen
29
+    StTouchEvent       myTap1Touch;       //!< previous tap touch
30
+    int                myNbTouchesMax;    //!< maximum touches within current sequence
31
     StRectI_t          myRectNorm;        //!< master window coordinates in normal     state
32
     StRectI_t          myRectFull;        //!< master window coordinates in fullscreen state
33
     StRectI_t          myRectNormPrev;    //!< window rectangle to track changes
34
@@ -291,6 +296,21 @@
35
     TiledCfg           myTiledCfg;        //!< tiles configuration (multiple viewports within the same window)
36
 
37
 #ifdef _WIN32
38
+    // available since Win7 (not in Vista!)
39
+    typedef BOOL (WINAPI *RegisterTouchWindow_t)(HWND hwnd, ULONG ulFlags);
40
+    typedef BOOL (WINAPI *UnregisterTouchWindow_t)(HWND hwnd);
41
+    typedef BOOL (WINAPI *GetTouchInputInfo_t)(HTOUCHINPUT hTouchInput,
42
+                                               UINT cInputs,
43
+                                               PTOUCHINPUT pInputs,
44
+                                               int         cbSize);
45
+    typedef BOOL (WINAPI *CloseTouchInputHandle_t)(HTOUCHINPUT hTouchInput);
46
+    RegisterTouchWindow_t   myRegisterTouchWindow;
47
+    UnregisterTouchWindow_t myUnregisterTouchWindow;
48
+    GetTouchInputInfo_t     myGetTouchInputInfo;
49
+    CloseTouchInputHandle_t myCloseTouchInputHandle;
50
+    TOUCHINPUT*             myTmpTouches;
51
+    int                     myNbTmpTouches;
52
+
53
     StSearchMonitors   myMsgMonitors;     //!< available monitors, accessed from message thread
54
     POINT              myPointTest;       //!< temporary point object to verify cached window position
55
     StHandle<StThread> myMsgThread;       //!< dedicated thread for window message loop
56
@@ -353,6 +373,9 @@
57
         StSignal<void (const StKeyEvent&    )>* onKeyHold;
58
         StSignal<void (const StClickEvent&  )>* onMouseUp;
59
         StSignal<void (const StClickEvent&  )>* onMouseDown;
60
+        StSignal<void (const StTouchEvent&  )>* onTouch;
61
+        StSignal<void (const StGestureEvent&)>* onGesture;
62
+        StSignal<void (const StScrollEvent& )>* onScroll;
63
         StSignal<void (const StDNDropEvent& )>* onFileDrop;
64
         StSignal<void (const StNavigEvent&  )>* onNavigate;
65
         StSignal<void (const StActionEvent& )>* onAction;
66
@@ -450,6 +473,7 @@
67
     StSyncTimer    myEventsTimer;
68
     StEventsBuffer myEventsBuffer;     //!< window events double buffer
69
     StEvent        myStEvent;          //!< temporary event object (to be used in message loop thread)
70
+    StEvent        myStEvent2;         //!< temporary event object (to be used in message loop thread)
71
     StEvent        myStEventAux;       //!< extra temporary event object (to be used in StWindow creation thread)
72
     double         myLastEventsTime;   //!< time when processEvents() was last called
73
     bool           myEventsThreaded;
74
sview-15_11.tar.gz/StCore/StWindowImplAnd.cpp -> sview-16_06.tar.gz/StCore/StWindowImplAnd.cpp Changed
201
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StCore, window system independent C++ toolkit for writing OpenGL applications.
4
- * Copyright © 2014-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2014-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -164,33 +164,128 @@
10
         case AINPUT_EVENT_TYPE_MOTION: {
11
             theIsProcessed = true;
12
 
13
-            //int32_t AInputEvent_getSource(theEvent);
14
-            //AINPUT_SOURCE_TOUCHSCREEN
15
-            //AINPUT_SOURCE_TRACKBALL
16
-
17
-            float aPosX = AMotionEvent_getX(theEvent, 0);
18
-            float aPosY = AMotionEvent_getY(theEvent, 0);
19
+            const int32_t aSource          = AInputEvent_getSource(theEvent);
20
+            const int32_t anActionPak      = AMotionEvent_getAction(theEvent);
21
+            const int32_t anAction         = anActionPak & AMOTION_EVENT_ACTION_MASK;
22
+            const size_t  anActionPntIndex = anActionPak & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK;
23
+
24
+            //const StRectI_t& aWinRect = attribs.IsFullScreen ? myRectFull : myRectNorm;
25
+            const StRectI_t& aWinRect  = myRectNorm;
26
+            const float      aWinSizeX = aWinRect.width();
27
+            const float      aWinSizeY = aWinRect.height();
28
+
29
+            // at least single point is defined
30
+            StPointD_t aPos0(double(AMotionEvent_getX(theEvent, 0)) / double(aWinSizeX),
31
+                             double(AMotionEvent_getY(theEvent, 0)) / double(aWinSizeY));
32
+
33
+            myStEvent.Type      = stEvent_None;
34
+            myStEvent.Base.Time = getEventTime(); /// int64_t AMotionEvent_getEventTime(theEvent);
35
+            switch(aSource) {
36
+                case AINPUT_SOURCE_TOUCHSCREEN:
37
+                case AINPUT_SOURCE_TOUCHPAD: {
38
+                    const size_t aNbTouches = AMotionEvent_getPointerCount(theEvent);
39
+                    myStEvent.Touch.NbTouches = std::min(aNbTouches, (size_t )ST_MAX_TOUCHES);
40
+                    bool isUp = anAction == AMOTION_EVENT_ACTION_UP
41
+                             || anAction == AMOTION_EVENT_ACTION_POINTER_UP;
42
+                    if(isUp) {
43
+                        myStEvent.Touch.NbTouches = std::max(myStEvent.Touch.NbTouches - 1, 0);
44
+                    }
45
+                    for(size_t aTouchIter = 0; aTouchIter < ST_MAX_TOUCHES; ++aTouchIter) {
46
+                        StTouch& aTouch = myStEvent.Touch.Touches[aTouchIter];
47
+                        aTouch = StTouch::Empty();
48
+                        if(aTouchIter == anActionPntIndex
49
+                        && isUp) {
50
+                            continue;
51
+                        }
52
+                        if(aTouchIter >= aNbTouches) {
53
+                            continue;
54
+                        }
55
+
56
+                        aTouch.Id       = AMotionEvent_getPointerId(theEvent, aTouchIter);
57
+                        aTouch.DeviceId = AInputEvent_getDeviceId(theEvent);
58
+                        aTouch.OnScreen = aSource == AINPUT_SOURCE_TOUCHSCREEN;
59
+
60
+                        const float aPosX = AMotionEvent_getX(theEvent, aTouchIter);
61
+                        const float aPosY = AMotionEvent_getY(theEvent, aTouchIter);
62
+                        aTouch.PointX = (aPosX - float(aWinRect.left())) / aWinSizeX;
63
+                        aTouch.PointY = (aPosY - float(aWinRect.top()))  / aWinSizeY;
64
+                    }
65
+
66
+                    switch(anAction) {
67
+                        case AMOTION_EVENT_ACTION_DOWN:
68
+                        case AMOTION_EVENT_ACTION_POINTER_DOWN: {
69
+                            myStEvent.Type = stEvent_TouchDown;
70
+                            doTouch(myStEvent.Touch);
71
+                            if(aNbTouches == 1) {
72
+                                // simulate mouse click
73
+                                myMousePt = aPos0;
74
+                                myStEvent.Type = stEvent_MouseDown;
75
+                                myStEvent.Button.Button  = ST_MOUSE_LEFT;
76
+                                myStEvent.Button.Buttons = 0;
77
+                                myStEvent.Button.PointX  = myMousePt.x();
78
+                                myStEvent.Button.PointY  = myMousePt.y();
79
+                                signals.onMouseDown->emit(myStEvent.Button);
80
+                            } else if(aNbTouches == 2) {
81
+                                // emit special event to cancel previously simulated click
82
+                                myStEvent.Type = stEvent_MouseCancel;
83
+                                myStEvent.Button.Button  = ST_MOUSE_LEFT;
84
+                                myStEvent.Button.Buttons = 0;
85
+                                myStEvent.Button.PointX  = myMousePt.x();
86
+                                myStEvent.Button.PointY  = myMousePt.y();
87
+                                signals.onMouseUp->emit(myStEvent.Button);
88
+                            }
89
+                            break;
90
+                        }
91
+                        case AMOTION_EVENT_ACTION_MOVE: {
92
+                            myStEvent.Type = stEvent_TouchMove;
93
+                            if(aNbTouches == 1) {
94
+                                // simulate mouse move
95
+                                myMousePt = aPos0;
96
+                            }
97
+                            doTouch(myStEvent.Touch);
98
+                            break;
99
+                        }
100
+                        case AMOTION_EVENT_ACTION_UP:
101
+                        case AMOTION_EVENT_ACTION_POINTER_UP: {
102
+                            myStEvent.Type = stEvent_TouchUp;
103
+                            doTouch(myStEvent.Touch);
104
+                            if(aNbTouches == 1) {
105
+                                // simulate mouse unclick
106
+                                myMousePt = aPos0;
107
+                                myStEvent.Type = stEvent_MouseUp;
108
+                                myStEvent.Button.Button  = ST_MOUSE_LEFT;
109
+                                myStEvent.Button.Buttons = 0;
110
+                                myStEvent.Button.PointX  = myMousePt.x();
111
+                                myStEvent.Button.PointY  = myMousePt.y();
112
+                                signals.onMouseUp->emit(myStEvent.Button);
113
+                            }
114
+                            break;
115
+                        }
116
+                        case AMOTION_EVENT_ACTION_CANCEL: {
117
+                            myStEvent.Type = stEvent_TouchCancel;
118
+                            doTouch(myStEvent.Touch);
119
+                            break;
120
+                        }
121
+                    }
122
+                    return;
123
+                }
124
+            }
125
 
126
-            const StRectI_t& aRect = myRectNorm;
127
-            myMousePt.x() = double(aPosX) / double(aRect.width());
128
-            myMousePt.y() = double(aPosY) / double(aRect.height());
129
+            myMousePt = aPos0;
130
 
131
             StVirtButton aMouseBtn = ST_MOUSE_LEFT;
132
-            myStEvent.Button.Time    = getEventTime(); /// int64_t AMotionEvent_getEventTime(theEvent);
133
             myStEvent.Button.Button  = aMouseBtn;
134
             myStEvent.Button.Buttons = 0;
135
             myStEvent.Button.PointX  = myMousePt.x();
136
             myStEvent.Button.PointY  = myMousePt.y();
137
 
138
-            int32_t anAction = AMotionEvent_getAction(theEvent);
139
-            if((anAction & AMOTION_EVENT_ACTION_MASK) == AMOTION_EVENT_ACTION_DOWN) {
140
+            if(anAction == AMOTION_EVENT_ACTION_DOWN) {
141
                 myStEvent.Type = stEvent_MouseDown;
142
                 signals.onMouseDown->emit(myStEvent.Button);
143
-            } else if((anAction & AMOTION_EVENT_ACTION_MASK) == AMOTION_EVENT_ACTION_UP) {
144
+            } else if(anAction == AMOTION_EVENT_ACTION_UP) {
145
                 myStEvent.Type = stEvent_MouseUp;
146
                 signals.onMouseUp->emit(myStEvent.Button);
147
             }
148
-
149
             return;
150
         }
151
     }
152
@@ -231,6 +326,8 @@
153
         const EGLint aWidth  = ANativeWindow_getWidth (myMaster.hWindowGl);
154
         const EGLint aHeight = ANativeWindow_getHeight(myMaster.hWindowGl);
155
 
156
+        const bool isResized = myRectNorm.width()  != aWidth
157
+                            || myRectNorm.height() != aHeight;
158
         myRectNorm.left()   = 0;
159
         myRectNorm.top()    = 0;
160
         myRectNorm.right()  = myRectNorm.left() + aWidth;
161
@@ -238,6 +335,13 @@
162
         myRectFull = myRectNorm;
163
 
164
         myInitState = STWIN_INIT_SUCCESS;
165
+        if(isResized) {
166
+            myStEvent.Type       = stEvent_Size;
167
+            myStEvent.Size.Time  = getEventTime();
168
+            myStEvent.Size.SizeX = myRectNorm.width();
169
+            myStEvent.Size.SizeY = myRectNorm.height();
170
+            signals.onResize->emit(myStEvent.Size);
171
+        }
172
         return true;
173
     }
174
 
175
@@ -323,6 +427,7 @@
176
             }
177
             break;
178
         }
179
+        case StAndroidGlue::CommandId_WindowChanged:
180
         case StAndroidGlue::CommandId_WindowTerm: {
181
             if(!myMaster.hRC.isNull()) {
182
                 myMaster.hRC->makeCurrent(EGL_NO_SURFACE);
183
@@ -332,6 +437,9 @@
184
                 }
185
             }
186
             myMaster.hWindowGl = NULL;
187
+            if(theCommand == StAndroidGlue::CommandId_WindowChanged) {
188
+                onAndroidInitWindow();
189
+            }
190
             return;
191
         }
192
         case StAndroidGlue::CommandId_FocusGained: {
193
@@ -374,6 +482,7 @@
194
 
195
     // check onNewIntent event
196
     StString aDndFile;
197
+    myParentWin->setHardwareStereoOn(myToEnableStereoHW);
198
     myParentWin->setTrackOrientation(myToTrackOrient);
199
     myParentWin->fetchState(aDndFile, myQuaternion);
200
     if(!aDndFile.isEmpty()) {
201
sview-15_11.tar.gz/StCore/StWindowImplLin.cpp -> sview-16_06.tar.gz/StCore/StWindowImplLin.cpp Changed
27
 
1
@@ -959,6 +959,25 @@
2
                 int aPosY = aBtnEvent->y;
3
                 correctTiledCursor(aPosX, aPosY);
4
                 const StRectI_t& aRect = attribs.IsFullScreen ? myRectFull : myRectNorm;
5
+                if(aBtnEvent->button == 4
6
+                || aBtnEvent->button == 5) {
7
+                    if(myXEvent.type != ButtonPress) {
8
+                        break;
9
+                    }
10
+
11
+                    myStEvent.Type = stEvent_Scroll;
12
+                    myStEvent.Scroll.Time   = getEventTime(aBtnEvent->time);
13
+                    myStEvent.Scroll.PointX = double(aPosX) / double(aRect.width());
14
+                    myStEvent.Scroll.PointY = double(aPosY) / double(aRect.height());
15
+                    myStEvent.Scroll.StepsX = 0;
16
+                    myStEvent.Scroll.StepsY = aBtnEvent->button == 4 ? 1 : -1;
17
+                    myStEvent.Scroll.DeltaX = 0.0;
18
+                    myStEvent.Scroll.DeltaY = 10.0f * myStEvent.Scroll.StepsY;
19
+                    myStEvent.Scroll.IsFromMultiTouch = false;
20
+                    signals.onScroll->emit(myStEvent.Scroll);
21
+                    break;
22
+                }
23
+
24
                 StVirtButton aMouseBtn = ST_NOMOUSE;
25
                 switch(aBtnEvent->button) {
26
                     case 1:  aMouseBtn = ST_MOUSE_LEFT;     break;
27
sview-15_11.tar.gz/StCore/StWindowImplWin.cpp -> sview-16_06.tar.gz/StCore/StWindowImplWin.cpp Changed
198
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StCore, window system independent C++ toolkit for writing OpenGL applications.
4
- * Copyright © 2007-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -162,8 +162,10 @@
10
         mySlave.hWindowGl = CreateWindowExW(WS_EX_TOOLWINDOW | WS_EX_WINDOWEDGE | WS_EX_NOACTIVATE,
11
                                             mySlave.ClassGL.toCString(),
12
                                             L"Slave window",
13
-                                            WS_POPUP | WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_DISABLED, // slave is always disabled (hasn't input focus)!
14
-                                            aRect.left, aRect.top, // initialize slave window at same screen as master to workaround bugs in drivers that may prevent GL context sharing
15
+                                            // slave is always disabled (hasn't input focus)!
16
+                                            WS_POPUP | WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_DISABLED,
17
+                                            // initialize slave window at same screen as master to workaround bugs in drivers that may prevent GL context sharing
18
+                                            myRectNorm.left(),  myRectNorm.top(),
19
                                             myRectNorm.width(), myRectNorm.height(),
20
                                             NULL, NULL, hInstance, NULL);
21
         if(mySlave.hWindowGl == NULL) {
22
@@ -216,6 +218,11 @@
23
         aSessNotifSetProc(myMaster.hWindowGl, NOTIFY_FOR_THIS_SESSION);
24
     }
25
 
26
+    // recieve WM_TOUCH events
27
+    if(myRegisterTouchWindow != NULL) {
28
+        //myRegisterTouchWindow(myMaster.hWindowGl, TWF_FINETOUCH);
29
+    }
30
+
31
     // always wait for message thread exit before quit
32
     myMaster.EventMsgThread.reset();
33
 
34
@@ -665,8 +672,6 @@
35
         // mouse lookup
36
         //case WM_LBUTTONDBLCLK: // left double click
37
         //case WM_MBUTTONDBLCLK: // right double click
38
-        case WM_MOUSEWHEEL:    // vertical wheel
39
-        //case WM_MOUSEHWHEEL:   // horizontal wheel (only Vista+)
40
         case WM_LBUTTONUP:
41
         case WM_RBUTTONUP:
42
         case WM_MBUTTONUP:
43
@@ -678,26 +683,20 @@
44
             int mouseXPx = int(short(LOWORD(lParam)));
45
             int mouseYPx = int(short(HIWORD(lParam)));
46
             const StRectI_t aWinRect = getPlacement();
47
-            if(uMsg == WM_MOUSEWHEEL) {
48
-                // special case - WinAPI give us position relative to screen!
49
-                mouseXPx -= aWinRect.left();
50
-                mouseYPx -= aWinRect.top();
51
-            } else {
52
-                switch(myTiledCfg) {
53
-                    case TiledCfg_SlaveMasterX: {
54
-                        mouseXPx -= aWinRect.width();
55
-                        break;
56
-                    }
57
-                    case TiledCfg_SlaveMasterY: {
58
-                        mouseYPx -= aWinRect.height();
59
-                        break;
60
-                    }
61
-                    case TiledCfg_MasterSlaveX:
62
-                    case TiledCfg_MasterSlaveY:
63
-                    case TiledCfg_Separate:
64
-                    default: {
65
-                        break;
66
-                    }
67
+            switch(myTiledCfg) {
68
+                case TiledCfg_SlaveMasterX: {
69
+                    mouseXPx -= aWinRect.width();
70
+                    break;
71
+                }
72
+                case TiledCfg_SlaveMasterY: {
73
+                    mouseYPx -= aWinRect.height();
74
+                    break;
75
+                }
76
+                case TiledCfg_MasterSlaveX:
77
+                case TiledCfg_MasterSlaveY:
78
+                case TiledCfg_Separate:
79
+                default: {
80
+                    break;
81
                 }
82
             }
83
 
84
@@ -713,12 +712,6 @@
85
                 case WM_MBUTTONDOWN: aBtnId = ST_MOUSE_MIDDLE; break;
86
                 case WM_XBUTTONUP:
87
                 case WM_XBUTTONDOWN: aBtnId = (HIWORD(wParam) == XBUTTON1) ? ST_MOUSE_X1 : ST_MOUSE_X2; break;
88
-                case WM_MOUSEWHEEL: {
89
-                    int zDelta = GET_WHEEL_DELTA_WPARAM(wParam);
90
-                    //if(GET_X_LPARAM(lParam) != 0)
91
-                    aBtnId = (zDelta > 0) ? ST_MOUSE_SCROLL_V_UP : ST_MOUSE_SCROLL_V_DOWN;
92
-                    break;
93
-                }
94
             }
95
 
96
             myStEvent.Button.Time    = getEventTime(myEvent.time);
97
@@ -750,18 +743,92 @@
98
                     myEventsBuffer.append(myStEvent);
99
                     break;
100
                 }
101
-                case WM_MOUSEWHEEL: {
102
-                    // TODO (Kirill Gavrilov#9#) delta ignored
103
-                    //GET_WHEEL_DELTA_WPARAM(wParam) / WHEEL_DELTA;
104
-                    myStEvent.Type = stEvent_MouseDown;
105
-                    myEventsBuffer.append(myStEvent);
106
-                    myStEvent.Type = stEvent_MouseUp;
107
-                    myEventsBuffer.append(myStEvent);
108
-                    break;
109
+            }
110
+            return 0;
111
+        }
112
+        case WM_MOUSEWHEEL:    // vertical wheel
113
+        //case WM_MOUSEHWHEEL:   // horizontal wheel (only Vista+)
114
+        {
115
+            const StRectI_t aWinRect = getPlacement();
116
+            int aMouseXPx = int(short(LOWORD(lParam))) - aWinRect.left();
117
+            int aMouseYPx = int(short(HIWORD(lParam))) - aWinRect.top();
118
+
119
+            int aZDelta = GET_WHEEL_DELTA_WPARAM(wParam); // / WHEEL_DELTA;
120
+            //if(GET_X_LPARAM(lParam) != 0)
121
+
122
+            myStEvent.Type = stEvent_Scroll;
123
+            myStEvent.Scroll.Time   = getEventTime(myEvent.time);
124
+            myStEvent.Scroll.PointX = double(aMouseXPx) / double(aWinRect.width());
125
+            myStEvent.Scroll.PointY = double(aMouseYPx) / double(aWinRect.height());
126
+            myStEvent.Scroll.StepsX = 0;
127
+            myStEvent.Scroll.StepsY = (aZDelta > 0) ? 1 : -1;
128
+            myStEvent.Scroll.DeltaX = 0.0;
129
+            myStEvent.Scroll.DeltaY = 10.0f * myStEvent.Scroll.StepsY;
130
+            myStEvent.Scroll.IsFromMultiTouch = false;
131
+
132
+            myEventsBuffer.append(myStEvent);
133
+            return 0;
134
+        }
135
+        case WM_TOUCH: {
136
+            int aNbTouches = LOWORD(wParam);
137
+            //ST_DEBUG_LOG(" @@ WM_TOUCH " + aNbTouches);
138
+            if(aNbTouches < 1
139
+            || myGetTouchInputInfo == NULL) {
140
+                break;
141
+            }
142
+
143
+            if(aNbTouches > myNbTmpTouches) {
144
+                stMemFree(myTmpTouches);
145
+                myNbTmpTouches = stMax(aNbTouches, 8);
146
+                myTmpTouches   = stMemAlloc<TOUCHINPUT*>(sizeof(TOUCHINPUT) * myNbTmpTouches);
147
+            }
148
+            if(myTmpTouches == NULL) {
149
+                break;
150
+            }
151
+
152
+            if(!myGetTouchInputInfo((HTOUCHINPUT )lParam, aNbTouches, myTmpTouches, sizeof(TOUCHINPUT))) {
153
+                break;
154
+            }
155
+
156
+            const StRectI_t aWinRect  = getPlacement();
157
+            const float     aWinSizeX = float(aWinRect.width());
158
+            const float     aWinSizeY = float(aWinRect.height());
159
+            myStEvent.Touch.NbTouches = 0;
160
+            myStEvent.Type = stEvent_TouchMove;
161
+            for(size_t aTouchIter = 0; aTouchIter < ST_MAX_TOUCHES; ++aTouchIter) {
162
+                StTouch& aTouch = myStEvent.Touch.Touches[aTouchIter];
163
+                aTouch = StTouch::Empty();
164
+                if(aTouchIter >= size_t(aNbTouches)) {
165
+                    continue;
166
+                }
167
+
168
+                const TOUCHINPUT& aTouchSrc = myTmpTouches[aTouchIter];
169
+                if((aTouchSrc.dwFlags & TOUCHEVENTF_UP) == TOUCHEVENTF_UP) {
170
+                    myStEvent.Type = stEvent_TouchUp;
171
+                    continue;
172
+                } else if((aTouchSrc.dwFlags & TOUCHEVENTF_DOWN) == TOUCHEVENTF_DOWN) {
173
+                    myStEvent.Type = stEvent_TouchDown;
174
                 }
175
+
176
+                ++myStEvent.Touch.NbTouches;
177
+                aTouch.Id       = aTouchSrc.dwID;
178
+                aTouch.DeviceId = (size_t )aTouchSrc.hSource;
179
+                aTouch.OnScreen = true; // how to test?
180
+
181
+                const float aPosX = float(aTouchSrc.x) * 0.01f;
182
+                const float aPosY = float(aTouchSrc.y) * 0.01f;
183
+                aTouch.PointX = (aPosX - float(aWinRect.left())) / aWinSizeX;
184
+                aTouch.PointY = (aPosY - float(aWinRect.top()))  / aWinSizeY;
185
             }
186
+
187
+            myCloseTouchInputHandle((HTOUCHINPUT )lParam);
188
+            myEventsBuffer.append(myStEvent);
189
             return 0;
190
         }
191
+        case WM_GESTURE: {
192
+            //ST_DEBUG_LOG("WM_GESTURE");
193
+            break;
194
+        }
195
     }
196
     // Pass All Unhandled Messages To DefWindowProc
197
     return DefWindowProcW(theWin, uMsg, wParam, lParam);
198
sview-15_11.tar.gz/StDiagnostics/StColorProgram.h -> sview-16_06.tar.gz/StDiagnostics/StColorProgram.h Changed
10
 
1
@@ -31,7 +31,7 @@
2
 
3
     ST_LOCAL StColorProgram();
4
 
5
-    ST_LOCAL virtual bool init(StGLContext& theCtx);
6
+    ST_LOCAL virtual bool init(StGLContext& theCtx) ST_ATTR_OVERRIDE;
7
 
8
     ST_LOCAL void setScaleTranslate(StGLContext&    theCtx,
9
                                     const StGLVec4& theScaleVec4,
10
sview-15_11.tar.gz/StDiagnostics/StDiagnostics.cbp -> sview-16_06.tar.gz/StDiagnostics/StDiagnostics.cbp Changed
36
 
1
@@ -174,15 +174,14 @@
2
                    <Add option="-DST_HAVE_STCONFIG" />
3
                </Compiler>
4
                <Linker>
5
-                   <Add option="-s" />
6
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
7
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
8
                    <Add option="-framework Appkit" />
9
                    <Add option="-framework OpenGL" />
10
                    <Add library="objc" />
11
                </Linker>
12
                <ExtraCommands>
13
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
14
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
15
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
16
                </ExtraCommands>
17
            </Target>
18
            <Target title="MAC_gcc_DEBUG">
19
@@ -199,14 +198,14 @@
20
                    <Add option="-DST_HAVE_STCONFIG" />
21
                </Compiler>
22
                <Linker>
23
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
24
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
25
                    <Add option="-framework Appkit" />
26
                    <Add option="-framework OpenGL" />
27
                    <Add library="objc" />
28
                </Linker>
29
                <ExtraCommands>
30
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
31
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
32
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
33
                </ExtraCommands>
34
            </Target>
35
        </Build>
36
sview-15_11.tar.gz/StDiagnostics/StDiagnostics.cpp -> sview-16_06.tar.gz/StDiagnostics/StDiagnostics.cpp Changed
19
 
1
@@ -115,7 +115,7 @@
2
         return;
3
     }
4
 
5
-    myGUI->tryClick(StPointD_t(theEvent.PointX, theEvent.PointY), theEvent.Button);
6
+    myGUI->tryClick(theEvent);
7
 }
8
 
9
 void StDiagnostics::doMouseUp(const StClickEvent& theEvent) {
10
@@ -126,7 +126,7 @@
11
     if(theEvent.Button == ST_MOUSE_MIDDLE) {
12
         params.IsFullscreen->reverse();
13
     }
14
-    myGUI->tryUnClick(StPointD_t(theEvent.PointX, theEvent.PointY), theEvent.Button);
15
+    myGUI->tryUnClick(theEvent);
16
 }
17
 
18
 void StDiagnostics::doKeyDown(const StKeyEvent& theEvent) {
19
sview-15_11.tar.gz/StDiagnostics/StDiagnostics.h -> sview-16_06.tar.gz/StDiagnostics/StDiagnostics.h Changed
29
 
1
@@ -37,18 +37,18 @@
2
                                const StHandle<StOpenInfo>&        theOpenInfo  = NULL);
3
     ST_CPPEXPORT virtual ~StDiagnostics();
4
 
5
-    ST_CPPEXPORT virtual bool open();
6
-    ST_CPPEXPORT virtual void beforeDraw();
7
-    ST_CPPEXPORT virtual void stglDraw(unsigned int view);
8
+    ST_CPPEXPORT virtual bool open() ST_ATTR_OVERRIDE;
9
+    ST_CPPEXPORT virtual void beforeDraw() ST_ATTR_OVERRIDE;
10
+    ST_CPPEXPORT virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
11
 
12
         private: //! @name window events slots
13
 
14
-    ST_LOCAL virtual void doResize   (const StSizeEvent&  theEvent);
15
-    ST_LOCAL virtual void doKeyDown  (const StKeyEvent&   theEvent);
16
-    ST_LOCAL virtual void doKeyHold  (const StKeyEvent&   theEvent);
17
-    ST_LOCAL virtual void doKeyUp    (const StKeyEvent&   theEvent);
18
-    ST_LOCAL virtual void doMouseDown(const StClickEvent& theEvent);
19
-    ST_LOCAL virtual void doMouseUp  (const StClickEvent& theEvent);
20
+    ST_LOCAL virtual void doResize   (const StSizeEvent&  theEvent) ST_ATTR_OVERRIDE;
21
+    ST_LOCAL virtual void doKeyDown  (const StKeyEvent&   theEvent) ST_ATTR_OVERRIDE;
22
+    ST_LOCAL virtual void doKeyHold  (const StKeyEvent&   theEvent) ST_ATTR_OVERRIDE;
23
+    ST_LOCAL virtual void doKeyUp    (const StKeyEvent&   theEvent) ST_ATTR_OVERRIDE;
24
+    ST_LOCAL virtual void doMouseDown(const StClickEvent& theEvent) ST_ATTR_OVERRIDE;
25
+    ST_LOCAL virtual void doMouseUp  (const StClickEvent& theEvent) ST_ATTR_OVERRIDE;
26
 
27
         public: //! @name Properties
28
 
29
sview-15_11.tar.gz/StDiagnostics/StDiagnostics.rc -> sview-16_06.tar.gz/StDiagnostics/StDiagnostics.rc Changed
10
 
1
@@ -15,7 +15,7 @@
2
     BEGIN
3
       VALUE "FileDescription", "Stereoscopic Device Diagnostics\000"
4
       VALUE "FileVersion",     SVIEW_SDK_VER_STRING "\000"
5
-      VALUE "LegalCopyright",  "\251 2010-2015 Kirill Gavrilov\000"
6
+      VALUE "LegalCopyright",  "\251 2010-2016 Kirill Gavrilov\000"
7
       VALUE "ProductName",     "StDiagnostics\000"
8
       VALUE "ProductVersion",  SVIEW_SDK_VER_STRING "\000"
9
       VALUE "OfficialSite",    "www.sview.ru\000"
10
sview-15_11.tar.gz/StDiagnostics/StDiagnostics.vcxproj -> sview-16_06.tar.gz/StDiagnostics/StDiagnostics.vcxproj Changed
50
 
1
@@ -21,7 +21,7 @@
2
   <PropertyGroup Label="Globals">
3
     <ProjectGuid>{BA6A36ED-50D1-4ED8-80EE-8C74A824F75B}</ProjectGuid>
4
   </PropertyGroup>
5
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
6
+  <Import Project="$(SolutionDir)sView.Cpp.Default.props" />
7
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
8
     <ConfigurationType>DynamicLibrary</ConfigurationType>
9
     <CharacterSet>Unicode</CharacterSet>
10
@@ -101,6 +101,9 @@
11
       <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_x86;..\lib\WIN_vc_x86;$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
12
       <SubSystem>Windows</SubSystem>
13
     </Link>
14
+    <PostBuildEvent>
15
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
16
+    </PostBuildEvent>
17
   </ItemDefinitionGroup>
18
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
19
     <Midl>
20
@@ -136,6 +139,9 @@
21
       <GenerateDebugInformation>true</GenerateDebugInformation>
22
       <SubSystem>Windows</SubSystem>
23
     </Link>
24
+    <PostBuildEvent>
25
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
26
+    </PostBuildEvent>
27
   </ItemDefinitionGroup>
28
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
29
     <Midl>
30
@@ -169,6 +175,9 @@
31
       <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_AMD64;..\lib\WIN_vc_AMD64;$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
32
       <SubSystem>Windows</SubSystem>
33
     </Link>
34
+    <PostBuildEvent>
35
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
36
+    </PostBuildEvent>
37
   </ItemDefinitionGroup>
38
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
39
     <Midl>
40
@@ -204,6 +213,9 @@
41
       <GenerateDebugInformation>true</GenerateDebugInformation>
42
       <SubSystem>Windows</SubSystem>
43
     </Link>
44
+    <PostBuildEvent>
45
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
46
+    </PostBuildEvent>
47
   </ItemDefinitionGroup>
48
   <ItemGroup>
49
     <ClCompile Include="StColorProgram.cpp" />
50
sview-15_11.tar.gz/StDiagnostics/StDiagnostics.vcxproj.filters -> sview-16_06.tar.gz/StDiagnostics/StDiagnostics.vcxproj.filters Changed
32
 
1
@@ -1,23 +1,14 @@
2
 <?xml version="1.0" encoding="utf-8"?>
3
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
   <ItemGroup>
5
-    <Filter Include="Source files">
6
-      <UniqueIdentifier>{CACACF6C-18DA-13DF-148A-3C969CC3F588}</UniqueIdentifier>
7
+    <Filter Include="Source Files">
8
+      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
9
+      <Extensions>cpp;c;cc;cxx;m;mm;def;odl;idl;hpj;bat;asm;asmx</Extensions>
10
+    </Filter>
11
+    <Filter Include="Header Files">
12
+      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
13
+      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
14
     </Filter>
15
-  </ItemGroup>
16
-  <ItemGroup>
17
-    <ClCompile Include="StColorProgram.cpp">
18
-      <Filter>Source files</Filter>
19
-    </ClCompile>
20
-    <ClCompile Include="StDiagnostics.cpp">
21
-      <Filter>Source files</Filter>
22
-    </ClCompile>
23
-    <ClCompile Include="StDiagnosticsGUI.cpp">
24
-      <Filter>Source files</Filter>
25
-    </ClCompile>
26
-    <ClCompile Include="StGeometryTest.cpp">
27
-      <Filter>Source files</Filter>
28
-    </ClCompile>
29
   </ItemGroup>
30
   <ItemGroup>
31
     <ResourceCompile Include="StDiagnostics.rc" />
32
sview-15_11.tar.gz/StDiagnostics/StDiagnosticsGUI.h -> sview-16_06.tar.gz/StDiagnostics/StDiagnosticsGUI.h Changed
12
 
1
@@ -49,8 +49,8 @@
2
 
3
     ST_LOCAL StDiagnosticsGUI(StDiagnostics* thePlugin);
4
     ST_LOCAL virtual ~StDiagnosticsGUI();
5
-    ST_LOCAL virtual void stglUpdate(const StPointD_t& thePointZo);
6
-    ST_LOCAL virtual void stglDraw(unsigned int theView);
7
+    ST_LOCAL virtual void stglUpdate(const StPointD_t& thePointZo) ST_ATTR_OVERRIDE;
8
+    ST_LOCAL virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
9
 
10
     ST_LOCAL void setVisibility(const StPointD_t& , bool );
11
 
12
sview-15_11.tar.gz/StDiagnostics/StGeometryTest.h -> sview-16_06.tar.gz/StDiagnostics/StGeometryTest.h Changed
14
 
1
@@ -52,9 +52,9 @@
2
     ST_LOCAL StGeometryTest(StGLWidget* parent);
3
     ST_LOCAL virtual ~StGeometryTest();
4
 
5
-    ST_LOCAL virtual void stglResize();
6
-    ST_LOCAL virtual bool stglInit();
7
-    ST_LOCAL virtual void stglDraw(unsigned int view);
8
+    ST_LOCAL virtual void stglResize() ST_ATTR_OVERRIDE;
9
+    ST_LOCAL virtual bool stglInit() ST_ATTR_OVERRIDE;
10
+    ST_LOCAL virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
11
 
12
 };
13
 
14
sview-15_11.tar.gz/StGLWidgets/StGLButton.cpp -> sview-16_06.tar.gz/StGLWidgets/StGLButton.cpp Changed
30
 
1
@@ -102,26 +102,6 @@
2
     return true;
3
 }
4
 
5
-bool StGLButton::tryClick(const StPointD_t& theCursorZo,
6
-                          const int&        theMouseBtn,
7
-                          bool&             theIsItemClicked) {
8
-    if(theMouseBtn == ST_MOUSE_SCROLL_V_UP
9
-    || theMouseBtn == ST_MOUSE_SCROLL_V_DOWN
10
-    || theMouseBtn == ST_MOUSE_SCROLL_LEFT
11
-    || theMouseBtn == ST_MOUSE_SCROLL_RIGHT) {
12
-        return false;
13
-    }
14
-    return StGLMenu::tryClick(theCursorZo, theMouseBtn, theIsItemClicked);
15
-}
16
-
17
-bool StGLButton::tryUnClick(const StPointD_t& theCursorZo,
18
-                            const int&        theMouseBtn,
19
-                            bool&             theIsItemUnclicked) {
20
-    if(theMouseBtn == ST_MOUSE_SCROLL_V_UP
21
-    || theMouseBtn == ST_MOUSE_SCROLL_V_DOWN
22
-    || theMouseBtn == ST_MOUSE_SCROLL_LEFT
23
-    || theMouseBtn == ST_MOUSE_SCROLL_RIGHT) {
24
-        return false;
25
-    }
26
-    return StGLMenu::tryUnClick(theCursorZo, theMouseBtn, theIsItemUnclicked);
27
+bool StGLButton::doScroll(const StScrollEvent& ) {
28
+    return false; // make transparent to scroll events
29
 }
30
sview-15_11.tar.gz/StGLWidgets/StGLImageProgram.cpp -> sview-16_06.tar.gz/StGLWidgets/StGLImageProgram.cpp Changed
95
 
1
@@ -102,6 +102,21 @@
2
         "}\n\n");
3
 
4
     // color conversion shaders
5
+    registerFragmentShaderPart(FragSection_ToRgb, FragToRgb_FromXyz,
6
+       // XYZ to sRGB matrix
7
+       "mat4 THE_XYZ2RGB_MAT = mat4(3.2404542, -0.9692660,  0.0556434, 0.0,"
8
+       "                           -1.5371385,  1.8760108, -0.2040259, 0.0,"
9
+       "                           -0.4985314,  0.0415560,  1.0572252, 0.0,"
10
+       "                                  0.0,        0.0,        0.0, 1.0);"
11
+       "vec4 THE_GAMMA_XYZ =       vec4(2.6, 2.6, 2.6, 1.0);"
12
+       "vec4 THE_GAMMA_RGB = 1.0 / vec4(2.2, 2.2, 2.2, 1.0);"
13
+       "void convertToRGB(inout vec4 theColor, in vec3 texCoord) {\n"
14
+       "    vec4 aColor = pow(theColor, THE_GAMMA_XYZ);"
15
+       "    aColor = THE_XYZ2RGB_MAT * aColor;\n"
16
+       "    aColor = pow(aColor, THE_GAMMA_RGB);"
17
+       "    theColor = aColor;"
18
+       "}\n\n");
19
+
20
     const char F_SHADER_YUV2RGB_MPEG[] =
21
        "uniform stSampler uTextureU;\n"
22
        "uniform stSampler uTextureV;\n"
23
@@ -130,6 +145,32 @@
24
        "    color.b = colorYUV.x + 1.772 * colorYUV.y;\n"
25
        "}\n\n";
26
 
27
+    const char F_SHADER_YUVNV2RGB_MPEG[] =
28
+       "uniform stSampler uTextureU;\n"
29
+       "void convertToRGB(inout vec4 color, in vec3 texCoordUV) {\n"
30
+       "    vec3 colorYUV = vec3(color.a, stTexture(uTextureU, texCoordUV).r, stTexture(uTextureU, texCoordUV).a);\n"
31
+       "    colorYUV   *= TheRangeBits;\n"
32
+       "    colorYUV.x  = 1.1643 * (colorYUV.x - 0.0625);\n"
33
+       "    colorYUV.y -= 0.5;\n"
34
+       "    colorYUV.z -= 0.5;\n"
35
+       "    color.r = colorYUV.x +  1.5958 * colorYUV.z;\n"
36
+       "    color.g = colorYUV.x - 0.39173 * colorYUV.y - 0.81290 * colorYUV.z;\n"
37
+       "    color.b = colorYUV.x +   2.017 * colorYUV.y;\n"
38
+       "}\n\n";
39
+
40
+    const char F_SHADER_YUVNV2RGB_FULL[] =
41
+       "uniform stSampler uTextureU;\n"
42
+       "void convertToRGB(inout vec4 color, in vec3 texCoordUV) {\n"
43
+       "    vec3 colorYUV = vec3(color.a, stTexture(uTextureU, texCoordUV).r, stTexture(uTextureU, texCoordUV).a);\n"
44
+       "    colorYUV   *= TheRangeBits;\n"
45
+       "    colorYUV.x  = colorYUV.x;\n"
46
+       "    colorYUV.y -= 0.5;\n"
47
+       "    colorYUV.z -= 0.5;\n"
48
+       "    color.r = colorYUV.x + 1.402 * colorYUV.z;\n"
49
+       "    color.g = colorYUV.x - 0.344 * colorYUV.y - 0.714 * colorYUV.z;\n"
50
+       "    color.b = colorYUV.x + 1.772 * colorYUV.y;\n"
51
+       "}\n\n";
52
+
53
     regToRgb(FragToRgb_FromYuvFull, StString()
54
         + "const float TheRangeBits = 1.0;\n"
55
         + F_SHADER_YUV2RGB_FULL);
56
@@ -154,6 +195,14 @@
57
         + "const float TheRangeBits = 65535.0 / 1023.0;\n"
58
         + F_SHADER_YUV2RGB_MPEG);
59
 
60
+    regToRgb(FragToRgb_FromYuvNvFull, StString()
61
+        + "const float TheRangeBits = 1.0;\n"
62
+        + F_SHADER_YUVNV2RGB_FULL);
63
+
64
+    regToRgb(FragToRgb_FromYuvNvMpeg, StString()
65
+        + "const float TheRangeBits = 1.0;\n"
66
+        + F_SHADER_YUVNV2RGB_MPEG);
67
+
68
     params.gamma = new StFloat32Param(   1.0f,         // initial value
69
                                         0.05f, 99.0f, // min, max values
70
                                          1.0f,         // default value
71
@@ -278,6 +327,7 @@
72
         case StImage::ImgColor_RGB:  return StGLImageProgram::FragToRgb_FromRgb;
73
         case StImage::ImgColor_RGBA: return StGLImageProgram::FragToRgb_FromRgba;
74
         case StImage::ImgColor_GRAY: return StGLImageProgram::FragToRgb_FromGray;
75
+        case StImage::ImgColor_XYZ:  return StGLImageProgram::FragToRgb_FromXyz;
76
         case StImage::ImgColor_YUV: {
77
             switch(theColorScale) {
78
                 case StImage::ImgScale_Mpeg9:  return StGLImageProgram::FragToRgb_FromYuv9Mpeg;
79
@@ -286,12 +336,14 @@
80
                 case StImage::ImgScale_Jpeg10: return StGLImageProgram::FragToRgb_FromYuv10Full;
81
                 case StImage::ImgScale_Mpeg:   return StGLImageProgram::FragToRgb_FromYuvMpeg;
82
                 case StImage::ImgScale_Full:   return StGLImageProgram::FragToRgb_FromYuvFull;
83
+                case StImage::ImgScale_NvMpeg: return StGLImageProgram::FragToRgb_FromYuvNvMpeg;
84
+                case StImage::ImgScale_NvFull: return StGLImageProgram::FragToRgb_FromYuvNvFull;
85
             }
86
             return StGLImageProgram::FragToRgb_FromYuvFull;
87
         }
88
         default: {
89
             ST_DEBUG_LOG("No GLSL shader for this color model = " + theColorModel);
90
-            ST_DEBUG_ASSERT(false);
91
+            ST_ASSERT(false, "StGLImageProgram::getColorShader() - unsupported color model!");
92
         }
93
     }
94
     return StGLImageProgram::FragToRgb_FromRgb;
95
sview-15_11.tar.gz/StGLWidgets/StGLImageRegion.cpp -> sview-16_06.tar.gz/StGLWidgets/StGLImageRegion.cpp Changed
780
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StGLWidgets, small C++ toolkit for writing GUI using OpenGL.
4
- * Copyright © 2010-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2010-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -20,63 +20,183 @@
10
 
11
 namespace {
12
 
13
-    class ST_LOCAL StSwapLRParam : public StBoolParam {
14
+    class ST_LOCAL StSwapLRParam : public StBoolParamNamed {
15
 
16
             public:
17
 
18
-        StSwapLRParam() : StBoolParam(false) {}
19
+        StSwapLRParam(StGLImageRegion* theWidget)
20
+        : StBoolParamNamed(false, stCString("swapLR"), stCString("SwapLR")), myWidget(theWidget) {}
21
 
22
-        virtual bool getValue() const {
23
-            return !myTrackedParams.isNull()
24
-                 && myTrackedParams->ToSwapLR;
25
+        void invalidateWidget() {
26
+            myWidget = NULL;
27
         }
28
 
29
-        virtual bool setValue(const bool theValue) {
30
-            if(myTrackedParams.isNull()
31
-            || myTrackedParams->ToSwapLR == theValue) {
32
+        virtual bool getValue() const ST_ATTR_OVERRIDE {
33
+            const StHandle<StStereoParams>& aParams = myWidget->params.stereoFile;
34
+            return !aParams.isNull()
35
+                 && aParams->ToSwapLR;
36
+        }
37
+
38
+        virtual bool setValue(const bool theValue) ST_ATTR_OVERRIDE {
39
+            const StHandle<StStereoParams>& aParams = myWidget->params.stereoFile;
40
+            if(aParams.isNull()
41
+            || aParams->ToSwapLR == theValue) {
42
                 return false;
43
             }
44
-            myTrackedParams->setSwapLR(theValue);
45
+            aParams->setSwapLR(theValue);
46
             return true;
47
         }
48
 
49
-        void setTrackedHandle(const StHandle<StStereoParams>& theTrackedParams) {
50
-            myTrackedParams = theTrackedParams;
51
-        }
52
-
53
             private:
54
 
55
-        StHandle<StStereoParams> myTrackedParams;
56
+        StGLImageRegion* myWidget;  //!< parent widget holding image parameters
57
 
58
     };
59
 
60
-    class ST_LOCAL StViewModeParam : public StInt32Param {
61
+    class ST_LOCAL StViewModeParam : public StInt32ParamNamed {
62
 
63
             public:
64
 
65
-        StViewModeParam() : StInt32Param(0) {}
66
+        StViewModeParam(StGLImageRegion* theWidget)
67
+        : StInt32ParamNamed(0, stCString("viewMode"), stCString("View Mode")), myWidget(theWidget) {}
68
 
69
-        virtual int32_t getValue() const {
70
-            return myTrackedParams.isNull() ? 0 : myTrackedParams->ViewingMode;
71
+        void invalidateWidget() {
72
+            myWidget = NULL;
73
         }
74
 
75
-        virtual bool setValue(const int32_t theValue) {
76
-            if(myTrackedParams.isNull()
77
-            || myTrackedParams->ViewingMode == theValue) {
78
+        virtual int32_t getValue() const ST_ATTR_OVERRIDE {
79
+            const StHandle<StStereoParams>& aParams = myWidget->params.stereoFile;
80
+            return aParams.isNull() ? 0 : aParams->ViewingMode;
81
+        }
82
+
83
+        virtual bool setValue(const int32_t theValue) ST_ATTR_OVERRIDE {
84
+            const StHandle<StStereoParams>& aParams = myWidget->params.stereoFile;
85
+            if(aParams.isNull()
86
+            || aParams->ViewingMode == theValue) {
87
                 return false;
88
             }
89
-            myTrackedParams->ViewingMode = (StStereoParams::ViewMode )theValue;
90
+            aParams->ViewingMode = (StStereoParams::ViewMode )theValue;
91
             signals.onChanged(theValue);
92
             return true;
93
         }
94
 
95
-        void setTrackedHandle(const StHandle<StStereoParams>& theTrackedParams) {
96
-            myTrackedParams = theTrackedParams;
97
+            private:
98
+
99
+        StGLImageRegion* myWidget;  //!< parent widget holding image parameters
100
+
101
+    };
102
+
103
+    /**
104
+     * Parameter interface tracking parameter value within active file.
105
+     */
106
+    class ST_LOCAL StFloat32StereoParam : public StFloat32Param {
107
+
108
+            public:
109
+
110
+        enum StereoParamId {
111
+            StereoParamId_SepDX,
112
+            StereoParamId_SepDY,
113
+            StereoParamId_SepRot,
114
+        };
115
+
116
+            public:
117
+
118
+        /**
119
+         * Main constructor.
120
+         */
121
+        StFloat32StereoParam(StGLImageRegion*    theWidget,
122
+                             const StereoParamId theParamId,
123
+                             const StCString&    theParamKey)
124
+        : StFloat32Param(0.0f, theParamKey), myWidget(theWidget), myParamId(theParamId) {
125
+            const float THE_SEP_STEP_PX = 2.0f;
126
+            switch(myParamId) {
127
+                case StereoParamId_SepDX: {
128
+                    setMinValue(-100.0f);
129
+                    setMaxValue( 100.0f);
130
+                    setStep(THE_SEP_STEP_PX);
131
+                    setTolerance(0.5f);
132
+                    break;
133
+                }
134
+                case StereoParamId_SepDY: {
135
+                    setMinValue(-100.0f);
136
+                    setMaxValue( 100.0f);
137
+                    setStep(THE_SEP_STEP_PX);
138
+                    setTolerance(0.5f);
139
+                    break;
140
+                }
141
+                case StereoParamId_SepRot: {
142
+                    setMinValue(-180.0f);
143
+                    setMaxValue( 180.0f);
144
+                    setStep(0.1f);
145
+                    setTolerance(0.001f);
146
+                    break;
147
+                }
148
+            }
149
+        }
150
+
151
+        void invalidateWidget() {
152
+            myWidget = NULL;
153
+        }
154
+
155
+        virtual float getValue() const ST_ATTR_OVERRIDE {
156
+            const StHandle<StStereoParams>& aParams = myWidget->params.stereoFile;
157
+            if(aParams.isNull()) {
158
+                return 0.0f;
159
+            }
160
+            switch(myParamId) {
161
+                case StereoParamId_SepDX:  return (float )aParams->getSeparationDx();
162
+                case StereoParamId_SepDY:  return (float )aParams->getSeparationDy();
163
+                case StereoParamId_SepRot: return aParams->getSepRotation();
164
+            }
165
+            return 0.0f;
166
+        }
167
+
168
+        virtual bool setValue(const float theValue) ST_ATTR_OVERRIDE {
169
+            const StHandle<StStereoParams>& aParams = myWidget->params.stereoFile;
170
+            if(aParams.isNull()) {
171
+                return false;
172
+            }
173
+
174
+            switch(myParamId) {
175
+                case StereoParamId_SepDX: {
176
+                    int32_t aValue = int32_t(theValue >= 0.0f ? (theValue + 0.5f) : (theValue - 0.5f));
177
+                    if(aParams->getSeparationDx() == aValue) {
178
+                        return false;
179
+                    }
180
+                    aParams->setSeparationDx(aValue);
181
+                    break;
182
+                 }
183
+                case StereoParamId_SepDY: {
184
+                    int32_t aValue = int32_t(theValue >= 0.0f ? (theValue + 0.5f) : (theValue - 0.5f));
185
+                    if(aParams->getSeparationDy() == aValue) {
186
+                        return false;
187
+                    }
188
+                    aParams->setSeparationDy(aValue);
189
+                    break;
190
+                 }
191
+                 case StereoParamId_SepRot: {
192
+                     float aValue = theValue;
193
+                     while(aValue >= 360.0f) {
194
+                        aValue -= 360.0f;
195
+                     }
196
+                     while(aValue <= -360.0f) {
197
+                        aValue += 360.0f;
198
+                     }
199
+                     if(StFloat32Param::areEqual(aParams->getSepRotation(), aValue)) {
200
+                        return false;
201
+                     }
202
+                     aParams->setSepRotation(aValue);
203
+                 }
204
+            }
205
+
206
+            signals.onChanged(theValue);
207
+            return true;
208
         }
209
 
210
             private:
211
 
212
-        StHandle<StStereoParams> myTrackedParams;
213
+        StGLImageRegion* myWidget;  //!< parent widget holding image parameters
214
+        StereoParamId    myParamId; //!< active parameter to be tracked
215
 
216
     };
217
 
218
@@ -96,6 +216,7 @@
219
   myClickPntZo(0.0, 0.0),
220
   myKeyFlags(ST_VF_NONE),
221
   myDragDelayMs(0.0),
222
+  myRotAngle(0.0f),
223
   myIsClickAborted(false),
224
 #ifdef ST_EXTRA_CONTROLS
225
   myToRightRotate(true),
226
@@ -104,21 +225,36 @@
227
 #endif
228
   myIsInitialized(false),
229
   myHasVideoStream(false) {
230
-    params.displayMode = new StEnumParam(MODE_STEREO, "Stereo Output");
231
-    params.displayMode->changeValues().add("Stereo");        // MODE_STEREO
232
-    params.displayMode->changeValues().add("Left View");     // MODE_ONLY_LEFT
233
-    params.displayMode->changeValues().add("Right View");    // MODE_ONLY_RIGHT
234
-    params.displayMode->changeValues().add("Parallel Pair"); // MODE_PARALLEL
235
-    params.displayMode->changeValues().add("Cross-eyed");    // MODE_CROSSYED
236
-
237
-    params.displayRatio  = new StInt32Param(RATIO_AUTO);
238
-    params.ToHealAnamorphicRatio = new StBoolParam(false);
239
-    params.textureFilter = new StInt32Param(StGLImageProgram::FILTER_LINEAR);
240
-    params.gamma      = myProgram.params.gamma;
241
-    params.brightness = myProgram.params.brightness;
242
-    params.saturation = myProgram.params.saturation;
243
-    params.swapLR   = new StSwapLRParam();
244
-    params.ViewMode = new StViewModeParam();
245
+    params.DisplayMode = new StEnumParam(MODE_STEREO, stCString("viewStereoMode"), stCString("Stereo Output"));
246
+    params.DisplayMode->defineOption(MODE_STEREO,     stCString("Stereo"));
247
+    params.DisplayMode->defineOption(MODE_ONLY_LEFT,  stCString("Left View"));
248
+    params.DisplayMode->defineOption(MODE_ONLY_RIGHT, stCString("Right View"));
249
+    params.DisplayMode->defineOption(MODE_PARALLEL,   stCString("Parallel Pair"));
250
+    params.DisplayMode->defineOption(MODE_CROSSYED,   stCString("Cross-eyed"));
251
+
252
+    params.DisplayRatio = new StEnumParam(RATIO_AUTO, stCString("ratio"), stCString("Display Ratio"));
253
+    params.DisplayRatio->defineOption(RATIO_AUTO,  stCString("Auto"));
254
+    params.DisplayRatio->defineOption(RATIO_1_1,   stCString("1:1"));
255
+    params.DisplayRatio->defineOption(RATIO_4_3,   stCString("4:3"));
256
+    params.DisplayRatio->defineOption(RATIO_16_9,  stCString("16:9"));
257
+    params.DisplayRatio->defineOption(RATIO_16_10, stCString("16:10"));
258
+    params.DisplayRatio->defineOption(RATIO_221_1, stCString("2.21:1"));
259
+    params.DisplayRatio->defineOption(RATIO_5_4,   stCString("5:4"));
260
+
261
+    params.ToHealAnamorphicRatio = new StBoolParamNamed(false, stCString("toHealAnamorphic"), stCString("Heal Anamorphic Ratio"));
262
+    params.TextureFilter = new StEnumParam(StGLImageProgram::FILTER_LINEAR, stCString("viewTexFilter"), stCString("Texture Filter"));
263
+    params.TextureFilter->defineOption(StGLImageProgram::FILTER_NEAREST, stCString("Nearest"));
264
+    params.TextureFilter->defineOption(StGLImageProgram::FILTER_LINEAR,  stCString("Linear"));
265
+    params.TextureFilter->defineOption(StGLImageProgram::FILTER_BLEND,   stCString("Blend"));
266
+
267
+    params.Gamma         = myProgram.params.gamma;
268
+    params.Brightness    = myProgram.params.brightness;
269
+    params.Saturation    = myProgram.params.saturation;
270
+    params.SwapLR        = new StSwapLRParam(this);
271
+    params.ViewMode      = new StViewModeParam(this);
272
+    params.SeparationDX  = new StFloat32StereoParam(this, StFloat32StereoParam::StereoParamId_SepDX,  stCString("sepDX"));
273
+    params.SeparationDY  = new StFloat32StereoParam(this, StFloat32StereoParam::StereoParamId_SepDY,  stCString("sepDY"));
274
+    params.SeparationRot = new StFloat32StereoParam(this, StFloat32StereoParam::StereoParamId_SepRot, stCString("sepRot"));
275
 
276
 #ifdef ST_EXTRA_CONTROLS
277
     theUsePanningKeys = false;
278
@@ -130,7 +266,7 @@
279
     anAction->setDefaultHotKey1(ST_VK_BACK);
280
     myActions.add(anAction);
281
 
282
-    anAction = new StActionBool(stCString("DoParamsSwapLR"), params.swapLR);
283
+    anAction = new StActionBool(stCString("DoParamsSwapLR"), params.SwapLR);
284
     anAction->setDefaultHotKey1(ST_VK_W);
285
     myActions.add(anAction);
286
 
287
@@ -259,6 +395,13 @@
288
     myQuad.release(aCtx);
289
     myUVSphere.release(aCtx);
290
     myProgram.release(aCtx);
291
+
292
+    // simplify debugging - nullify pointer to this widget
293
+    ((StSwapLRParam*        )params.SwapLR       .access())->invalidateWidget();
294
+    ((StViewModeParam*      )params.ViewMode     .access())->invalidateWidget();
295
+    ((StFloat32StereoParam* )params.SeparationDX .access())->invalidateWidget();
296
+    ((StFloat32StereoParam* )params.SeparationDY .access())->invalidateWidget();
297
+    ((StFloat32StereoParam* )params.SeparationRot.access())->invalidateWidget();
298
 }
299
 
300
 StHandle<StStereoParams> StGLImageRegion::getSource() {
301
@@ -273,32 +416,35 @@
302
     StGLWidget::stglUpdate(pointZo);
303
     if(myIsInitialized) {
304
         myHasVideoStream = myTextureQueue->stglUpdateStTextures(getContext()) || myTextureQueue->hasConnectedStream();
305
-        params.stereoFile = myTextureQueue->getQTexture().getFront(StGLQuadTexture::LEFT_TEXTURE).getSource();
306
-        ((StSwapLRParam*   )params.swapLR  .access())->setTrackedHandle(params.stereoFile);
307
-        ((StViewModeParam* )params.ViewMode.access())->setTrackedHandle(params.stereoFile);
308
+        StHandle<StStereoParams> aFileParams = myTextureQueue->getQTexture().getFront(StGLQuadTexture::LEFT_TEXTURE).getSource();
309
+        if(params.stereoFile != aFileParams) {
310
+            params.stereoFile = aFileParams;
311
+            onParamsChanged();
312
+        }
313
     }
314
 }
315
 
316
 bool StGLImageRegion::stglInit() {
317
+    bool isInit = StGLWidget::stglInit();
318
     if(myIsInitialized) {
319
-        return true;
320
+        return isInit;
321
     }
322
 
323
     StGLContext& aCtx = getContext();
324
     if(!myProgram.init(aCtx, StImage::ImgColor_RGB, StImage::ImgScale_Full, StGLImageProgram::FragGetColor_Normal)) {
325
         return false;
326
     } else if(!myQuad.initScreen(aCtx)) {
327
-        ST_DEBUG_LOG("Fail to init StGLQuad");
328
+        ST_ERROR_LOG("Fail to init StGLQuad");
329
         return false;
330
     } else if(!myUVSphere.initVBOs(aCtx)) {
331
-        ST_DEBUG_LOG("Fail to init StGLUVSphere");
332
+        ST_ERROR_LOG("Fail to init StGLUVSphere");
333
     }
334
 
335
     // setup texture filter
336
-    myTextureQueue->getQTexture().setMinMagFilter(aCtx, params.textureFilter->getValue() == StGLImageProgram::FILTER_NEAREST ? GL_NEAREST : GL_LINEAR);
337
+    myTextureQueue->getQTexture().setMinMagFilter(aCtx, params.TextureFilter->getValue() == StGLImageProgram::FILTER_NEAREST ? GL_NEAREST : GL_LINEAR);
338
 
339
     myIsInitialized = true;
340
-    return myIsInitialized;
341
+    return myIsInitialized && isInit;
342
 }
343
 
344
 StGLVec2 StGLImageRegion::getMouseMoveFlat(const StPointD_t& theCursorZoFrom,
345
@@ -329,6 +475,7 @@
346
     if(!myIsInitialized || !isVisible() || aParams.isNull()
347
     || !myTextureQueue->getQTexture().getFront(StGLQuadTexture::LEFT_TEXTURE).isValid()
348
     || !myHasVideoStream) {
349
+        StGLWidget::stglDraw(theView);
350
         return;
351
     }
352
 
353
@@ -337,7 +484,7 @@
354
         aParams->setSwapLR(false);
355
     }
356
 
357
-    switch(params.displayMode->getValue()) {
358
+    switch(params.DisplayMode->getValue()) {
359
         case MODE_PARALLEL:
360
         case MODE_CROSSYED:
361
             stglDrawView(ST_DRAW_LEFT);
362
@@ -353,6 +500,7 @@
363
             stglDrawView(theView);
364
             break;
365
     }
366
+    StGLWidget::stglDraw(theView);
367
 }
368
 
369
 void StGLImageRegion::stglDrawView(unsigned int theView) {
370
@@ -376,27 +524,26 @@
371
     // retrieve viewport size for correct scissor rectangle computation
372
     GLfloat aFrustrumL = 1.0f, aFrustrumR = 1.0f, aFrustrumT = 1.0f, aFrustrumB = 1.0f;
373
     StRectI_t aFrameRectPx = getRectPx();
374
-
375
+    float aCameraAspect = getCamera()->getAspect();
376
+    const StGLBoxPx aViewportBack = aCtx.stglViewport();
377
     if(!aParams->isMono()) {
378
-        switch(params.displayMode->getValue()) {
379
+        switch(params.DisplayMode->getValue()) {
380
             case MODE_PARALLEL: {
381
                 if(theView == ST_DRAW_LEFT) {
382
                     aFrameRectPx.right() /= 2;
383
-                    aFrustrumR = 3.0f;
384
                 } else {
385
                     aFrameRectPx.left() += aFrameRectPx.width() / 2;
386
-                    aFrustrumL = 3.0f;
387
                 }
388
+                aCameraAspect *= 0.5f;
389
                 break;
390
             }
391
             case MODE_CROSSYED: {
392
                 if(theView == ST_DRAW_RIGHT) {
393
                     aFrameRectPx.right() /= 2;
394
-                    aFrustrumR = 3.0f;
395
                 } else {
396
                     aFrameRectPx.left() += aFrameRectPx.width() / 2;
397
-                    aFrustrumL = 3.0f;
398
                 }
399
+                aCameraAspect *= 0.5f;
400
                 break;
401
             }
402
         }
403
@@ -407,6 +554,8 @@
404
     const StRectI_t aFrameRectAbs = getAbsolute(aFrameRectPx);
405
     getRoot()->stglScissorRect(aFrameRectAbs, aScissorBox);
406
     aCtx.stglSetScissorRect(aScissorBox, true);
407
+    aCtx.stglResizeViewport(aScissorBox);
408
+    myProjCam.resize(aCameraAspect);
409
 
410
     aCtx.core20fwd->glDisable(GL_BLEND);
411
 
412
@@ -420,7 +569,7 @@
413
     StGLMatrix aModelMat;
414
     // data rectangle in the texture
415
     StGLVec4 aClampVec, aClampUV;
416
-    if(params.textureFilter->getValue() == StGLImageProgram::FILTER_NEAREST) {
417
+    if(params.TextureFilter->getValue() == StGLImageProgram::FILTER_NEAREST) {
418
         myTextureQueue->getQTexture().setMinMagFilter(aCtx, GL_NEAREST);
419
         //
420
         aClampVec.x() = 0.0f;
421
@@ -494,7 +643,7 @@
422
     }
423
 
424
     myProgram.setColorScale(aColorScale); // apply de-anaglyph color filter
425
-    StGLImageProgram::FragGetColor aColorGetter = params.textureFilter->getValue() == StGLImageProgram::FILTER_BLEND
426
+    StGLImageProgram::FragGetColor aColorGetter = params.TextureFilter->getValue() == StGLImageProgram::FILTER_BLEND
427
                                                 ? StGLImageProgram::FragGetColor_Blend
428
                                                 : StGLImageProgram::FragGetColor_Normal;
429
     switch(aViewMode) {
430
@@ -579,7 +728,7 @@
431
 
432
             // check window ratio to fill whole image in normal zoom
433
             GLfloat aDispRatio = 1.0f;
434
-            switch(params.displayRatio->getValue()) {
435
+            switch(params.DisplayRatio->getValue()) {
436
                 case RATIO_1_1:   aDispRatio = 1.0f;  break;
437
                 case RATIO_4_3:   aDispRatio = 1.3333333333f; break;
438
                 case RATIO_16_9:  aDispRatio = 1.7777777778f; break;
439
@@ -689,7 +838,7 @@
440
 
441
             StGLMatrix aMatModelInv, aMatProjInv;
442
             aModelMat.inverted(aMatModelInv);
443
-            getCamera()->getProjMatrixMono().inverted(aMatProjInv);
444
+            myProjCam.getProjMatrixMono().inverted(aMatProjInv);
445
             myProgram.getActiveProgram()->setProjMat (aCtx, StGLMatrix::multiply(aMatModelInv, aMatProjInv));
446
             myProgram.getActiveProgram()->setModelMat(aCtx, aModelMat);
447
 
448
@@ -749,7 +898,7 @@
449
             myProgram.setTextureMainDataSize(aCtx, aClampVec);
450
             myProgram.setTextureUVDataSize  (aCtx, aClampUV);
451
 
452
-            myProgram.getActiveProgram()->setProjMat (aCtx, getCamera()->getProjMatrixMono());
453
+            myProgram.getActiveProgram()->setProjMat (aCtx, myProjCam.getProjMatrixMono());
454
             myProgram.getActiveProgram()->setModelMat(aCtx, aModelMat);
455
 
456
             myUVSphere.draw(aCtx, *myProgram.getActiveProgram());
457
@@ -762,6 +911,7 @@
458
     aTextures.unbind(aCtx);
459
 
460
     aCtx.stglResetScissorRect();
461
+    aCtx.stglResizeViewport(aViewportBack);
462
 }
463
 
464
 void StGLImageRegion::doRightUnclick(const StPointD_t& theCursorZo) {
465
@@ -789,139 +939,209 @@
466
     aParams->setYRotate(anYRotate);
467
 }
468
 
469
-bool StGLImageRegion::tryClick(const StPointD_t& theCursorZo,
470
-                               const int&        theMouseBtn,
471
-                               bool&             isItemClicked) {
472
+bool StGLImageRegion::tryClick(const StClickEvent& theEvent,
473
+                               bool&               theIsItemClicked) {
474
     StHandle<StStereoParams> aParams = getSource();
475
     if(!myIsInitialized || aParams.isNull()) {
476
         return false;
477
     }
478
 
479
-    if(StGLWidget::tryClick(theCursorZo, theMouseBtn, isItemClicked)) {
480
-        if(theMouseBtn == ST_MOUSE_RIGHT
481
+    if(StGLWidget::tryClick(theEvent, theIsItemClicked)) {
482
+        if(theEvent.Button == ST_MOUSE_RIGHT
483
         && (myToRightRotate || (myKeyFlags & ST_VF_CONTROL) == ST_VF_CONTROL)) {
484
-            myClickPntZo = theCursorZo;
485
+            myClickPntZo = StPointD_t(theEvent.PointX, theEvent.PointY);
486
             myIsClickAborted = true;
487
-        } else if(theMouseBtn == ST_MOUSE_LEFT) {
488
-            myClickPntZo = theCursorZo;
489
+        } else if(theEvent.Button == ST_MOUSE_LEFT) {
490
+            myClickPntZo = StPointD_t(theEvent.PointX, theEvent.PointY);
491
             myClickTimer.restart();
492
             myIsClickAborted = false;
493
         }
494
-        isItemClicked = true;
495
+        theIsItemClicked = true;
496
         return true;
497
     }
498
     return false;
499
 }
500
 
501
-bool StGLImageRegion::tryUnClick(const StPointD_t& theCursorZo,
502
-                                 const int&        theMouseBtn,
503
-                                 bool&             isItemUnclicked) {
504
+bool StGLImageRegion::tryUnClick(const StClickEvent& theEvent,
505
+                                 bool&               theIsItemUnclicked) {
506
     StHandle<StStereoParams> aParams = getSource();
507
     if(!myIsInitialized || aParams.isNull()) {
508
-        if(isClicked(theMouseBtn)) {
509
-            isItemUnclicked = true;
510
-            setClicked(theMouseBtn, false);
511
+        if(isClicked(theEvent.Button)) {
512
+            theIsItemUnclicked = true;
513
+            setClicked(theEvent.Button, false);
514
             return true;
515
         }
516
         return false;
517
     }
518
 
519
+    StPointD_t aCursor(theEvent.PointX, theEvent.PointY);
520
     if(isClicked(ST_MOUSE_RIGHT)
521
-    && theMouseBtn == ST_MOUSE_RIGHT
522
+    && theEvent.Button == ST_MOUSE_RIGHT
523
     && (myToRightRotate || (myKeyFlags & ST_VF_CONTROL) == ST_VF_CONTROL)) {
524
-        doRightUnclick(theCursorZo);
525
-    } else if(isClicked(ST_MOUSE_LEFT) && theMouseBtn == ST_MOUSE_LEFT) {
526
+        doRightUnclick(aCursor);
527
+    } else if(isClicked(ST_MOUSE_LEFT) && theEvent.Button == ST_MOUSE_LEFT) {
528
         // ignore out of window
529
         switch(aParams->ViewingMode) {
530
             default:
531
             case StStereoParams::FLAT_IMAGE: {
532
                 if(!myIsClickAborted) {
533
-                    aParams->moveFlat(getMouseMoveFlat(myClickPntZo, theCursorZo), GLfloat(getRectPx().ratio()));
534
+                    aParams->moveFlat(getMouseMoveFlat(myClickPntZo, aCursor), GLfloat(getRectPx().ratio()));
535
                 }
536
                 break;
537
             }
538
             case StStereoParams::PANORAMA_CUBEMAP:
539
             case StStereoParams::PANORAMA_SPHERE: {
540
-                aParams->moveSphere(getMouseMoveSphere(myClickPntZo, theCursorZo));
541
+                aParams->moveSphere(getMouseMoveSphere(myClickPntZo, aCursor));
542
                 break;
543
             }
544
 
545
         }
546
-        isItemUnclicked = true;
547
+        theIsItemUnclicked = true;
548
         setClicked(ST_MOUSE_LEFT, false);
549
         return true;
550
     }
551
-    if(StGLWidget::tryUnClick(theCursorZo, theMouseBtn, isItemUnclicked)) {
552
-        const GLfloat SCALE_STEPS = 0.16f;
553
-        StPointD_t aCenterCursor(0.5, 0.5);
554
-        if(theMouseBtn == ST_MOUSE_SCROLL_V_UP) {
555
-            if((myKeyFlags & ST_VF_CONTROL) == ST_VF_CONTROL) {
556
-                if((myKeyFlags & ST_VF_SHIFT) == ST_VF_SHIFT) {
557
-                    doParamsSepZDec(0.01);
558
-                } else {
559
-                    doParamsSepX(size_t(-1));
560
-                }
561
-                return true;
562
-            } else if((myKeyFlags & ST_VF_SHIFT) == ST_VF_SHIFT) {
563
-                doParamsSepY(size_t(-1));
564
-                return true;
565
-            }
566
-
567
-            switch(aParams->ViewingMode) {
568
-                default:
569
-                case StStereoParams::FLAT_IMAGE: {
570
-                    const StGLVec2 aVec = getMouseMoveFlat(aCenterCursor, theCursorZo) * (-SCALE_STEPS);
571
-                    aParams->scaleIn(SCALE_STEPS);
572
-                    aParams->moveFlat(aVec, GLfloat(getRectPx().ratio()));
573
-                    break;
574
-                }
575
-                case StStereoParams::PANORAMA_CUBEMAP:
576
-                case StStereoParams::PANORAMA_SPHERE: {
577
-                    const StGLVec2 aVec = getMouseMoveSphere(aCenterCursor, theCursorZo) * (-SCALE_STEPS);
578
-                    aParams->scaleIn(SCALE_STEPS);
579
-                    aParams->moveSphere(aVec);
580
-                    break;
581
-                }
582
+    return StGLWidget::tryUnClick(theEvent, theIsItemUnclicked);
583
+}
584
+
585
+bool StGLImageRegion::doScroll(const StScrollEvent& theEvent) {
586
+    StHandle<StStereoParams> aParams = getSource();
587
+    StPointD_t aCursor(theEvent.PointX, theEvent.PointY);
588
+    if(!myIsInitialized
589
+    ||  aParams.isNull()
590
+    ||  theEvent.IsFromMultiTouch) {
591
+        return false;
592
+    }
593
+
594
+    const GLfloat SCALE_STEPS = fabs(theEvent.DeltaY) * 0.01f;
595
+    if(theEvent.DeltaY > 0.001f) {
596
+        if((myKeyFlags & ST_VF_CONTROL) == ST_VF_CONTROL) {
597
+            if((myKeyFlags & ST_VF_SHIFT) == ST_VF_SHIFT) {
598
+                doParamsSepZDec(0.01);
599
+            } else {
600
+                doParamsSepX(size_t(-1));
601
             }
602
-        } else if(theMouseBtn == ST_MOUSE_SCROLL_V_DOWN) {
603
-            if((myKeyFlags & ST_VF_CONTROL) == ST_VF_CONTROL) {
604
-                if((myKeyFlags & ST_VF_SHIFT) == ST_VF_SHIFT) {
605
-                    doParamsSepZInc(0.01);
606
-                } else {
607
-                    doParamsSepX(size_t(1));
608
-                }
609
-                return true;
610
-            } else if((myKeyFlags & ST_VF_SHIFT) == ST_VF_SHIFT) {
611
-                doParamsSepY(size_t(1));
612
-                return true;
613
+            return true;
614
+        } else if((myKeyFlags & ST_VF_SHIFT) == ST_VF_SHIFT) {
615
+            doParamsSepY(size_t(-1));
616
+            return true;
617
+        }
618
+
619
+        scaleAt(aCursor, SCALE_STEPS);
620
+    } else if(theEvent.DeltaY < -0.001f) {
621
+        if((myKeyFlags & ST_VF_CONTROL) == ST_VF_CONTROL) {
622
+            if((myKeyFlags & ST_VF_SHIFT) == ST_VF_SHIFT) {
623
+                doParamsSepZInc(0.01);
624
+            } else {
625
+                doParamsSepX(size_t(1));
626
             }
627
+            return true;
628
+        } else if((myKeyFlags & ST_VF_SHIFT) == ST_VF_SHIFT) {
629
+            doParamsSepY(size_t(1));
630
+            return true;
631
+        }
632
 
633
-            switch(aParams->ViewingMode) {
634
-                default:
635
-                case StStereoParams::FLAT_IMAGE: {
636
-                    if(aParams->ScaleFactor <= 0.05f) {
637
-                        break;
638
-                    }
639
-                    const StGLVec2 aVec = getMouseMoveFlat(aCenterCursor, theCursorZo) * SCALE_STEPS;
640
-                    aParams->moveFlat(aVec, GLfloat(getRectPx().ratio()));
641
-                    aParams->scaleOut(SCALE_STEPS);
642
-                    break;
643
-                }
644
-                case StStereoParams::PANORAMA_CUBEMAP:
645
-                case StStereoParams::PANORAMA_SPHERE: {
646
-                    if(aParams->ScaleFactor <= 0.24f) {
647
-                        break;
648
-                    }
649
-                    const StGLVec2 aVec = getMouseMoveSphere(aCenterCursor, theCursorZo) * SCALE_STEPS;
650
-                    aParams->moveSphere(aVec);
651
-                    aParams->scaleOut(SCALE_STEPS);
652
-                    break;
653
-                }
654
+        scaleAt(aCursor, -SCALE_STEPS);
655
+    }
656
+    return true;
657
+}
658
+
659
+void StGLImageRegion::scaleAt(const StPointD_t& thePoint,
660
+                              const float       theStep) {
661
+    StHandle<StStereoParams> aParams = getSource();
662
+    if(!myIsInitialized
663
+    ||  aParams.isNull()) {
664
+        return;
665
+    }
666
+
667
+    const StPointD_t aCenterCursor(0.5, 0.5);
668
+    switch(aParams->ViewingMode) {
669
+        default:
670
+        case StStereoParams::FLAT_IMAGE: {
671
+            if(theStep < 0.0f
672
+            && aParams->ScaleFactor <= 0.05f) {
673
+                break;
674
+            }
675
+
676
+            const StGLVec2 aVec = getMouseMoveFlat(aCenterCursor, thePoint) * (-theStep);
677
+            if(theStep > 0.0f) {
678
+                aParams->scaleIn(theStep);
679
+            } else {
680
+                aParams->scaleOut(std::abs(theStep));
681
             }
682
+            aParams->moveFlat(aVec, GLfloat(getRectPx().ratio()));
683
+            break;
684
+        }
685
+        case StStereoParams::PANORAMA_CUBEMAP:
686
+        case StStereoParams::PANORAMA_SPHERE: {
687
+            if(theStep < 0.0f
688
+            && aParams->ScaleFactor <= 0.24f) {
689
+                break;
690
+            }
691
+
692
+            const StGLVec2 aVec = getMouseMoveSphere(aCenterCursor, thePoint) * (-theStep);
693
+            if(theStep > 0.0f) {
694
+                aParams->scaleIn(theStep);
695
+            } else {
696
+                aParams->scaleOut(std::abs(theStep));
697
+            }
698
+            aParams->moveSphere(aVec);
699
+            break;
700
+        }
701
+    }
702
+}
703
+
704
+bool StGLImageRegion::doGesture(const StGestureEvent& theEvent) {
705
+    StHandle<StStereoParams> aParams = getSource();
706
+    if(!myIsInitialized || aParams.isNull()) {
707
+        return false;
708
+    }
709
+
710
+    switch(theEvent.Type) {
711
+        case stEvent_GestureCancel: {
712
+            myRotAngle = 0.0f;
713
+            return false;
714
+        }
715
+        case stEvent_Gesture1DoubleTap: {
716
+            doParamsReset(0);
717
+            //aParams->ScaleFactor = 1.0f;
718
+            return true;
719
+        }
720
+        case stEvent_Gesture2Rotate: {
721
+            myRotAngle += theEvent.Value;
722
+            if(myRotAngle >= 0.3f * M_PI) {
723
+                doParamsRotZ90(1);
724
+                myRotAngle -= 0.3f * float(M_PI);
725
+            } else if(myRotAngle <= -0.3f * float(M_PI)) {
726
+                doParamsRotZ90(size_t(-1));
727
+                myRotAngle += 0.3f * float(M_PI);
728
+            }
729
+            return true;
730
+        }
731
+        case stEvent_Gesture2Move: {
732
+            //if(!theEvent.OnScreen) {
733
+                // this gesture conflicts with scrolling on OS X
734
+                //return true;
735
+            //}
736
+            if(aParams->ViewingMode == StStereoParams::FLAT_IMAGE) {
737
+                StPointD_t aPntFrom(theEvent.Point1X, theEvent.Point1Y);
738
+                StPointD_t aPntTo  (theEvent.Point2X, theEvent.Point2Y);
739
+                aParams->moveFlat(getMouseMoveFlat(aPntFrom, aPntTo), GLfloat(getRectPx().ratio()));
740
+            }
741
+            return true;
742
+        }
743
+        case stEvent_Gesture2Pinch: {
744
+            StPointD_t aCursor((theEvent.Point1X + theEvent.Point2X) * 0.5,
745
+                               (theEvent.Point1Y + theEvent.Point2Y) * 0.5);
746
+            if(!theEvent.OnScreen) {
747
+                aCursor = myRoot->getCursorZo();
748
+            }
749
+            scaleAt(aCursor, theEvent.Value * 0.01f);
750
+            return true;
751
+        }
752
+        default: {
753
+            return false;
754
         }
755
-        return true;
756
     }
757
-    return false;
758
 }
759
 
760
 bool StGLImageRegion::doKeyDown(const StKeyEvent& theEvent) {
761
@@ -1008,3 +1228,18 @@
762
     }
763
     params.stereoFile->setXRotate(anXRotate);
764
 }
765
+
766
+void StGLImageRegion::doParamsReset(const size_t ) {
767
+    if(!params.stereoFile.isNull()) {
768
+        params.stereoFile->reset();
769
+        onParamsChanged();
770
+    }
771
+}
772
+
773
+void StGLImageRegion::onParamsChanged() {
774
+    params.SwapLR       ->signals.onChanged(params.SwapLR->getValue());
775
+    params.ViewMode     ->signals.onChanged(params.ViewMode->getValue());
776
+    params.SeparationDX ->signals.onChanged(params.SeparationDX->getValue());
777
+    params.SeparationDY ->signals.onChanged(params.SeparationDY->getValue());
778
+    params.SeparationRot->signals.onChanged(params.SeparationRot->getValue());
779
+}
780
sview-15_11.tar.gz/StGLWidgets/StGLMenu.cpp -> sview-16_06.tar.gz/StGLWidgets/StGLMenu.cpp Changed
101
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StGLWidgets, small C++ toolkit for writing GUI using OpenGL.
4
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -8,6 +8,7 @@
10
  */
11
 
12
 #include <StGLWidgets/StGLMenu.h>
13
+
14
 #include <StGLWidgets/StGLMenuCheckbox.h>
15
 #include <StGLWidgets/StGLMenuItem.h>
16
 #include <StGLWidgets/StGLMenuProgram.h>
17
@@ -18,7 +19,9 @@
18
 #include <StGLCore/StGLCore20.h>
19
 
20
 #include <StCore/StEvent.h>
21
+#include <StSettings/StEnumParam.h>
22
 #include <StSlots/StAction.h>
23
+#include <stAssert.h>
24
 
25
 void StGLMenu::DeleteWithSubMenus(StGLMenu* theMenu) {
26
     if(theMenu == NULL) {
27
@@ -222,12 +225,11 @@
28
     }
29
 }
30
 
31
-bool StGLMenu::tryUnClick(const StPointD_t& theCursorZo,
32
-                          const int&        theMouseBtn,
33
-                          bool&             theIsItemUnclicked) {
34
+bool StGLMenu::tryUnClick(const StClickEvent& theEvent,
35
+                          bool&               theIsItemUnclicked) {
36
     myKeepActive = false;
37
     bool wasSomeClickedBefore = theIsItemUnclicked;
38
-    bool isSelfClicked = StGLWidget::tryUnClick(theCursorZo, theMouseBtn, theIsItemUnclicked);
39
+    bool isSelfClicked = StGLWidget::tryUnClick(theEvent, theIsItemUnclicked);
40
     bool isSelfItemClicked = !wasSomeClickedBefore && theIsItemUnclicked;
41
     if(myKeepActive) {
42
         return isSelfClicked;
43
@@ -254,6 +256,11 @@
44
     return isSelfClicked;
45
 }
46
 
47
+bool StGLMenu::doScroll(const StScrollEvent& theEvent) {
48
+    StGLWidget::doScroll(theEvent);
49
+    return true; // do not pass event further
50
+}
51
+
52
 StGLMenuItem* StGLMenu::addItem(const StString& theLabel,
53
                                 const size_t    theUserData) {
54
     StGLMenuItem* aNewItem = new StGLMenuItem(this, 0, 0);
55
@@ -276,6 +283,12 @@
56
     return aNewItem;
57
 }
58
 
59
+StGLMenuItem* StGLMenu::addItem(const StHandle<StBoolParamNamed>& theTrackedValue) {
60
+    StGLMenuItem* aNewItem = new StGLMenuCheckbox(this, theTrackedValue);
61
+    aNewItem->setText(theTrackedValue->getName());
62
+    return aNewItem;
63
+}
64
+
65
 StGLMenuItem* StGLMenu::addItem(const StString&               theLabel,
66
                                 const StHandle<StInt32Param>& theTrackedValue,
67
                                 const int32_t                 theOnValue) {
68
@@ -284,6 +297,13 @@
69
     return aNewItem;
70
 }
71
 
72
+StGLMenuItem* StGLMenu::addItem(const StHandle<StEnumParam>& theTrackedValue,
73
+                                const int32_t                theOnValue) {
74
+    StGLMenuItem* aNewItem = new StGLMenuRadioButton(this, theTrackedValue, theOnValue);
75
+    aNewItem->setText(theTrackedValue->getOptionLabel(theOnValue));
76
+    return aNewItem;
77
+}
78
+
79
 StGLMenuItem* StGLMenu::addItem(const StString&                 theLabel,
80
                                 const StHandle<StFloat32Param>& theTrackedValue,
81
                                 const float                     theOnValue) {
82
@@ -304,6 +324,7 @@
83
                                 StGLMenu*                 theSubMenu)
84
     : StGLMenuItem(theParent, 0, 0, theSubMenu),
85
       myAction(theAction) {
86
+        ST_ASSERT(!theAction.isNull(), "StGLMenuActionItem - Unexpected empty action makes no sense!");
87
         StGLMenuItem::signals.onItemClick.connect(this, &StGLMenuActionItem::doItemClick);
88
     }
89
 
90
@@ -312,7 +333,9 @@
91
         private:
92
 
93
     ST_LOCAL void doItemClick(const size_t ) {
94
-        myAction->doTrigger(NULL);
95
+        if(!myAction.isNull()) {
96
+            myAction->doTrigger(NULL);
97
+        }
98
     }
99
 
100
         private:
101
sview-15_11.tar.gz/StGLWidgets/StGLMenuItem.cpp -> sview-16_06.tar.gz/StGLWidgets/StGLMenuItem.cpp Changed
45
 
1
@@ -15,6 +15,7 @@
2
 
3
 #include <StGL/StGLContext.h>
4
 #include <StGLCore/StGLCore20.h>
5
+#include <StCore/StEvent.h>
6
 
7
 void StGLMenuItem::DeleteWithSubMenus(StGLMenuItem* theMenuItem) {
8
     if(theMenuItem == NULL) {
9
@@ -269,16 +270,15 @@
10
     myHasFocus = theValue;
11
 }
12
 
13
-bool StGLMenuItem::tryClick(const StPointD_t& theCursorZo,
14
-                            const int&        theMouseBtn,
15
-                            bool&             theIsItemClicked) {
16
+bool StGLMenuItem::tryClick(const StClickEvent& theEvent,
17
+                            bool&               theIsItemClicked) {
18
     const bool wasClicked = theIsItemClicked;
19
-    if(StGLWidget::tryClick(theCursorZo, theMouseBtn, theIsItemClicked)) {
20
+    if(StGLWidget::tryClick(theEvent, theIsItemClicked)) {
21
         theIsItemClicked = true; // always clickable widget
22
         if(getParentMenu()->isRootMenu()) {
23
             getParentMenu()->setActive(true); // activate root menu
24
         }
25
-        if(theMouseBtn == ST_MOUSE_LEFT) {
26
+        if(theEvent.Button == ST_MOUSE_LEFT) {
27
             getRoot()->setMenuPressed(true);
28
         }
29
         return true;
30
@@ -289,11 +289,10 @@
31
     return false;
32
 }
33
 
34
-bool StGLMenuItem::tryUnClick(const StPointD_t& theCursorZo,
35
-                              const int&        theMouseBtn,
36
-                              bool&             theIsItemUnclicked) {
37
+bool StGLMenuItem::tryUnClick(const StClickEvent& theEvent,
38
+                              bool&               theIsItemUnclicked) {
39
     const bool wasUnclicked = theIsItemUnclicked;
40
-    if(StGLWidget::tryUnClick(theCursorZo, theMouseBtn, theIsItemUnclicked)) {
41
+    if(StGLWidget::tryUnClick(theEvent, theIsItemUnclicked)) {
42
         theIsItemUnclicked = true; // always clickable widget
43
         return true;
44
     }
45
sview-15_11.tar.gz/StGLWidgets/StGLMessageBox.cpp -> sview-16_06.tar.gz/StGLWidgets/StGLMessageBox.cpp Changed
153
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StGLWidgets, small C++ toolkit for writing GUI using OpenGL.
4
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru
5
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -8,7 +8,9 @@
10
  */
11
 
12
 #include <StGLWidgets/StGLMessageBox.h>
13
+
14
 #include <StGLWidgets/StGLButton.h>
15
+#include <StGLWidgets/StGLMenuProgram.h>
16
 #include <StGLWidgets/StGLRootWidget.h>
17
 #include <StGLWidgets/StGLScrollArea.h>
18
 
19
@@ -148,9 +150,12 @@
20
 }
21
 
22
 StGLMessageBox::~StGLMessageBox() {
23
+    if(myRoot->getModalDialog() == this) {
24
+        myRoot->setModalDialog(NULL, false);
25
+    }
26
+
27
     StGLContext& aCtx = getContext();
28
     myVertexBuf.release(aCtx);
29
-    myProgram.release(aCtx);
30
 }
31
 
32
 void StGLMessageBox::setTitle(const StString& theTitle) {
33
@@ -304,19 +309,7 @@
34
         return false;
35
     }
36
 
37
-    StGLContext& aCtx = getContext();
38
-    const GLfloat QUAD_VERTICES[4 * 4] = {
39
-         1.0f, -1.0f, 0.0f, 1.0f, // top-right
40
-         1.0f,  1.0f, 0.0f, 1.0f, // bottom-right
41
-        -1.0f, -1.0f, 0.0f, 1.0f, // top-left
42
-        -1.0f,  1.0f, 0.0f, 1.0f  // bottom-left
43
-    };
44
-    myVertexBuf.init(aCtx, 4, 4, QUAD_VERTICES);
45
     stglResize();
46
-
47
-    if(!myProgram.init(aCtx)) {
48
-        return false;
49
-    }
50
     return true;
51
 }
52
 
53
@@ -342,16 +335,10 @@
54
     }
55
 
56
     StGLWidget::stglResize();
57
-    GLfloat toZScreen = -getCamera()->getZScreen();
58
-
59
-    StRectD_t aRectGl = getRectGl();
60
-    const GLfloat aQuadVertices[4 * 4] = {
61
-        GLfloat(aRectGl.right()), GLfloat(aRectGl.top()),    toZScreen, 1.0f, // top-right
62
-        GLfloat(aRectGl.right()), GLfloat(aRectGl.bottom()), toZScreen, 1.0f, // bottom-right
63
-        GLfloat(aRectGl.left()),  GLfloat(aRectGl.top()),    toZScreen, 1.0f, // top-left
64
-        GLfloat(aRectGl.left()),  GLfloat(aRectGl.bottom()), toZScreen, 1.0f  // bottom-left
65
-    };
66
-    myVertexBuf.init(getContext(), 4, 4, aQuadVertices);
67
+
68
+    StArray<StGLVec2> aVertices(4);
69
+    getRectGl(aVertices);
70
+    myVertexBuf.init(getContext(), aVertices);
71
 }
72
 
73
 void StGLMessageBox::stglDraw(unsigned int theView) {
74
@@ -364,20 +351,22 @@
75
         stglResize();
76
     }
77
 
78
-    aCtx.core20fwd->glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
79
-    aCtx.core20fwd->glEnable(GL_BLEND);
80
+    StGLMenuProgram& aProgram = myRoot->getMenuProgram();
81
+    if(aProgram.isValid()) {
82
+        aCtx.core20fwd->glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
83
+        aCtx.core20fwd->glEnable(GL_BLEND);
84
 
85
-    myProgram.use(aCtx, getRoot()->getScreenDispX());
86
-    myProgram.setProjMat(aCtx, getCamera()->getProjMatrix());
87
-    myProgram.setColor(aCtx, getRoot()->getColorForElement(StGLRootWidget::Color_MessageBox), myOpacity * 0.8f);
88
+        aProgram.use(aCtx, getRoot()->getScreenDispX());
89
+        aProgram.setColor(aCtx, getRoot()->getColorForElement(StGLRootWidget::Color_MessageBox), myOpacity * 0.8f);
90
 
91
-        myVertexBuf.bindVertexAttrib(aCtx, myProgram.getVVertexLoc());
92
-        aCtx.core20fwd->glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
93
-        myVertexBuf.unBindVertexAttrib(aCtx, myProgram.getVVertexLoc());
94
+            myVertexBuf.bindVertexAttrib(aCtx, aProgram.getVVertexLoc());
95
+            aCtx.core20fwd->glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
96
+            myVertexBuf.unBindVertexAttrib(aCtx, aProgram.getVVertexLoc());
97
 
98
-    myProgram.unuse(aCtx);
99
+        aProgram.unuse(aCtx);
100
 
101
-    aCtx.core20fwd->glDisable(GL_BLEND);
102
+        aCtx.core20fwd->glDisable(GL_BLEND);
103
+    }
104
 
105
     StGLBoxPx aScissorRect;
106
     stglScissorRect(aScissorRect);
107
@@ -388,23 +377,21 @@
108
     aCtx.stglResetScissorRect();
109
 }
110
 
111
-bool StGLMessageBox::tryClick(const StPointD_t& theCursorZo,
112
-                              const int&        theMouseBtn,
113
-                              bool&             isItemClicked) {
114
-    if(isPointIn(theCursorZo)
115
-    && StGLWidget::tryClick(theCursorZo, theMouseBtn, isItemClicked)) {
116
-        isItemClicked = true;
117
+bool StGLMessageBox::tryClick(const StClickEvent& theEvent,
118
+                              bool&               theIsItemClicked) {
119
+    if(isPointIn(StPointD_t(theEvent.PointX, theEvent.PointY))
120
+    && StGLWidget::tryClick(theEvent, theIsItemClicked)) {
121
+        theIsItemClicked = true;
122
         return true;
123
     }
124
     return false;
125
 }
126
 
127
-bool StGLMessageBox::tryUnClick(const StPointD_t& theCursorZo,
128
-                                const int&        theMouseBtn,
129
-                                bool&             isItemUnclicked) {
130
-    if(//isPointIn(theCursorZo) &&
131
-       StGLWidget::tryUnClick(theCursorZo, theMouseBtn, isItemUnclicked)) {
132
-        isItemUnclicked = true;
133
+bool StGLMessageBox::tryUnClick(const StClickEvent& theEvent,
134
+                                bool&               theIsItemUnclicked) {
135
+    if(//isPointIn(StPointD_t(theEvent.PointX, theEvent.PointY)) &&
136
+       StGLWidget::tryUnClick(theEvent, theIsItemUnclicked)) {
137
+        theIsItemUnclicked = true;
138
 
139
         if(myIsContextual) {
140
             myRoot->destroyWithDelay(this);
141
@@ -418,6 +405,11 @@
142
     return false;
143
 }
144
 
145
+bool StGLMessageBox::doScroll(const StScrollEvent& theEvent) {
146
+    StGLWidget::doScroll(theEvent);
147
+    return true; // do not pass event further
148
+}
149
+
150
 void StGLMessageBox::doKillSelf(const size_t ) {
151
     destroyWithDelay(this);
152
 }
153
sview-15_11.tar.gz/StGLWidgets/StGLMsgStack.cpp -> sview-16_06.tar.gz/StGLWidgets/StGLMsgStack.cpp Changed
42
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StGLWidgets, small C++ toolkit for writing GUI using OpenGL.
4
- * Copyright © 2011-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2011-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -15,7 +15,8 @@
10
                            const StHandle<StMsgQueue>& theMsgQueue)
11
 : StGLContainer(theParent, 0, 0),
12
   myMsgQueue(theMsgQueue) {
13
-    //
14
+    changeRectPx().bottom() = 1;
15
+    changeRectPx().right()  = 1;
16
 }
17
 
18
 StGLMsgStack::~StGLMsgStack() {
19
@@ -23,8 +24,8 @@
20
 }
21
 
22
 void StGLMsgStack::stglResize() {
23
-    changeRectPx().bottom() = myRoot->getRectPx().height();
24
-    changeRectPx().right()  = myRoot->getRectPx().width();
25
+    //changeRectPx().bottom() = myRoot->getRectPx().height();
26
+    //changeRectPx().right()  = myRoot->getRectPx().width();
27
     StGLWidget::stglResize();
28
 }
29
 
30
@@ -33,7 +34,10 @@
31
 
32
     // check messages stack
33
     while(myMsgQueue->pop(myMsgTmp)) {
34
-        StGLMessageBox* aMsgBox = new StGLMessageBox(this, "", *myMsgTmp.Text);
35
+        // always create message boxes in root widget
36
+        // so that StGLRootWidget::setFocus() logic work as expected
37
+        //StGLMessageBox* aMsgBox = new StGLMessageBox(this, "", *myMsgTmp.Text);
38
+        StGLMessageBox* aMsgBox = new StGLMessageBox(myRoot, "", *myMsgTmp.Text);
39
         aMsgBox->addButton("Close");
40
         aMsgBox->stglInit();
41
     }
42
sview-15_11.tar.gz/StGLWidgets/StGLOpenFile.cpp -> sview-16_06.tar.gz/StGLWidgets/StGLOpenFile.cpp Changed
33
 
1
@@ -96,10 +96,9 @@
2
     }
3
 }
4
 
5
-bool StGLOpenFile::tryUnClick(const StPointD_t& theCursorZo,
6
-                              const int&        theMouseBtn,
7
-                              bool&             isItemUnclicked) {
8
-    bool aRes = StGLMessageBox::tryUnClick(theCursorZo, theMouseBtn, isItemUnclicked);
9
+bool StGLOpenFile::tryUnClick(const StClickEvent& theEvent,
10
+                              bool&               theIsItemUnclicked) {
11
+    bool aRes = StGLMessageBox::tryUnClick(theEvent, theIsItemUnclicked);
12
     if(!myItemToLoad.isEmpty()) {
13
         StString aPath = myItemToLoad;
14
         myItemToLoad.clear();
15
@@ -182,7 +181,16 @@
16
     myItemToLoad.clear();
17
     myList->destroyChildren();
18
 
19
-    myFolder = new StFolder(theFolder);
20
+    StString aFolder = theFolder;
21
+    if(aFolder.isEmpty()) {
22
+    #ifdef _WIN32
23
+        aFolder = "C:\\";
24
+    #else
25
+        aFolder = "//";
26
+    #endif
27
+    }
28
+
29
+    myFolder = new StFolder(aFolder);
30
     myFolder->init(myExtensions, 1, true);
31
     StString aPath = myFolder->getPath();
32
     myCurrentPath->setText(StString("<b>Location:*</b>") + aPath + (!aPath.isEmpty() ? ST_FILE_SPLITTER : ""));
33
sview-15_11.tar.gz/StGLWidgets/StGLPlayList.cpp -> sview-16_06.tar.gz/StGLWidgets/StGLPlayList.cpp Changed
57
 
1
@@ -13,6 +13,7 @@
2
 #include <StGLWidgets/StGLMenuProgram.h>
3
 #include <StGLWidgets/StGLRootWidget.h>
4
 
5
+#include <StCore/StEvent.h>
6
 #include <StGL/StGLContext.h>
7
 #include <StGLCore/StGLCore20.h>
8
 
9
@@ -123,30 +124,27 @@
10
 }
11
 
12
 void StGLPlayList::doMouseUnclick(const int theBtnId) {
13
-    switch(theBtnId) {
14
-        case ST_MOUSE_LEFT: {
15
-            myIsLeftClick = false;
16
-            return;
17
+    if(theBtnId == ST_MOUSE_LEFT) {
18
+        myIsLeftClick = false;
19
+    }
20
+}
21
+
22
+bool StGLPlayList::doScroll(const StScrollEvent& theEvent) {
23
+    if(theEvent.StepsY >= 1) {
24
+        if(myFromId == 0) {
25
+            return true;
26
         }
27
-        case ST_MOUSE_SCROLL_V_UP: {
28
-            if(myFromId == 0) {
29
-                return;
30
-            }
31
-            --myFromId;
32
-            updateList();
33
-            return;
34
+        --myFromId;
35
+        updateList();
36
+    } else if(theEvent.StepsY <= -1) {
37
+        if(myFromId + myItemsNb >= myList->getItemsCount()) {
38
+            return true;
39
         }
40
-        case ST_MOUSE_SCROLL_V_DOWN: {
41
-            if(myFromId + myItemsNb >= myList->getItemsCount()) {
42
-                return;
43
-            }
44
-            ++myFromId;
45
+        ++myFromId;
46
 
47
-            updateList();
48
-            return;
49
-        }
50
-        default: return;
51
+        updateList();
52
     }
53
+    return true;
54
 }
55
 
56
 void StGLPlayList::stglResize() {
57
sview-15_11.tar.gz/StGLWidgets/StGLRangeFieldFloat32.cpp -> sview-16_06.tar.gz/StGLWidgets/StGLRangeFieldFloat32.cpp Changed
35
 
1
@@ -8,8 +8,10 @@
2
  */
3
 
4
 #include <StGLWidgets/StGLRangeFieldFloat32.h>
5
+
6
 #include <StGLWidgets/StGLRootWidget.h>
7
 #include <StGLWidgets/StGLButton.h>
8
+#include <StCore/StEvent.h>
9
 
10
 StGLRangeFieldFloat32::StGLRangeFieldFloat32(StGLWidget* theParent,
11
                                              const StHandle<StFloat32Param>& theTrackedValue,
12
@@ -20,7 +22,6 @@
13
   myValueText(NULL),
14
   myFormat(stCString("%+01.3f")) {
15
     myTrackValue->signals.onChanged   += stSlot(this, &StGLRangeFieldFloat32::onValueChange);
16
-    StGLWidget::signals.onMouseUnclick = stSlot(this, &StGLRangeFieldFloat32::doMouseUnclick);
17
 }
18
 
19
 StGLRangeFieldFloat32::~StGLRangeFieldFloat32() {
20
@@ -101,10 +102,11 @@
21
     myTrackValue->increment();
22
 }
23
 
24
-void StGLRangeFieldFloat32::doMouseUnclick(const int theBtnId) {
25
-    if(theBtnId == ST_MOUSE_SCROLL_V_UP) {
26
+bool StGLRangeFieldFloat32::doScroll(const StScrollEvent& theEvent) {
27
+    if(theEvent.StepsY >= 1) {
28
         myTrackValue->increment();
29
-    } else if(theBtnId == ST_MOUSE_SCROLL_V_DOWN) {
30
+    } else if(theEvent.StepsY <= -1) {
31
         myTrackValue->decrement();
32
     }
33
+    return true;
34
 }
35
sview-15_11.tar.gz/StGLWidgets/StGLRootWidget.cpp -> sview-16_06.tar.gz/StGLWidgets/StGLRootWidget.cpp Changed
139
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StGLWidgets, small C++ toolkit for writing GUI using OpenGL.
4
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -10,9 +10,11 @@
10
 #include <StGLWidgets/StGLRootWidget.h>
11
 
12
 #include <StGLWidgets/StGLMenuProgram.h>
13
+#include <StGLWidgets/StGLMessageBox.h>
14
 #include <StGLWidgets/StGLTextProgram.h>
15
 #include <StGLWidgets/StGLTextBorderProgram.h>
16
 
17
+#include <StCore/StEvent.h>
18
 #include <StGL/StGLContext.h>
19
 #include <StGLCore/StGLCore20.h>
20
 #include <StFile/StFileNode.h>
21
@@ -61,6 +63,7 @@
22
   myResolution(72),
23
   cursorZo(0.0, 0.0),
24
   myFocusWidget(NULL),
25
+  myModalDialog(NULL),
26
   myIsMenuPressed(false),
27
   myMenuIconSize(IconSize_16),
28
   myClickThreshold(3) {
29
@@ -168,12 +171,18 @@
30
         return IconSize_24;
31
     } else if(anIconSize < 42) {
32
         return IconSize_32;
33
-    } else if(anIconSize < 60) {
34
+    } else if(anIconSize < 62) {
35
         return IconSize_48;
36
-    } else if(anIconSize < 110) {
37
+    } else if(anIconSize < 70) {
38
         return IconSize_64;
39
-    } else if(anIconSize < 180) {
40
+    } else if(anIconSize < 94) {
41
+        return IconSize_72;
42
+    } else if(anIconSize < 126) {
43
+        return IconSize_96;
44
+    } else if(anIconSize < 140) {
45
         return IconSize_128;
46
+    } else if(anIconSize < 190) {
47
+        return IconSize_144;
48
     } else if(anIconSize < 240) {
49
         return IconSize_192;
50
     } else {
51
@@ -329,7 +338,7 @@
52
     const bool isChanged = getRectPx().right()  != theRectPx.width()
53
                         || getRectPx().bottom() != theRectPx.height();
54
 
55
-    myProjCamera.resize(*myGlCtx, theRectPx.width(), theRectPx.height());
56
+    myProjCamera.resize(theRectPx.width(), theRectPx.height());
57
 
58
     changeRectPx().right()  = theRectPx.width();  // (left, top) forced to zero point (0, 0)
59
     changeRectPx().bottom() = theRectPx.height();
60
@@ -372,29 +381,37 @@
61
     theVertices[theFromId + 3] = StGLVec2(GLfloat(aRectGl.left()),  GLfloat(aRectGl.bottom()));
62
 }
63
 
64
-bool StGLRootWidget::tryClick(const StPointD_t& theCursorZo,
65
-                              const int&        theMouseBtn,
66
-                              bool&             theIsItemClicked) {
67
+bool StGLRootWidget::tryClick(const StClickEvent& theEvent,
68
+                              bool&               theIsItemClicked) {
69
     const StPointD_t aCursorBack = cursorZo;
70
-    cursorZo = theCursorZo;
71
-    if(isPointIn(theCursorZo)) {
72
-        setClicked(theMouseBtn, true);
73
+    cursorZo = StPointD_t(theEvent.PointX, theEvent.PointY);
74
+    if(isPointIn(cursorZo)) {
75
+        setClicked(theEvent.Button, true);
76
     }
77
-    const bool aResult = StGLWidget::tryClick(theCursorZo, theMouseBtn, theIsItemClicked);
78
+    const bool aResult = StGLWidget::tryClick(theEvent, theIsItemClicked);
79
     cursorZo = aCursorBack;
80
     return aResult;
81
 }
82
 
83
-bool StGLRootWidget::tryUnClick(const StPointD_t& theCursorZo,
84
-                                const int&        theMouseBtn,
85
-                                bool&             theIsItemUnclicked) {
86
+bool StGLRootWidget::tryUnClick(const StClickEvent& theEvent,
87
+                                bool&               theIsItemUnclicked) {
88
     const StPointD_t aCursorBack = cursorZo;
89
-    cursorZo = theCursorZo;
90
-    if(isPointIn(theCursorZo)) {
91
-        setClicked(theMouseBtn, false);
92
+    cursorZo = StPointD_t(theEvent.PointX, theEvent.PointY);
93
+    if(isPointIn(cursorZo)) {
94
+        setClicked(theEvent.Button, false);
95
     }
96
 
97
-    const bool aResult = StGLWidget::tryUnClick(theCursorZo, theMouseBtn, theIsItemUnclicked);
98
+    const bool aResult = StGLWidget::tryUnClick(theEvent, theIsItemUnclicked);
99
+    clearDestroyList();
100
+    cursorZo = aCursorBack;
101
+    return aResult;
102
+}
103
+
104
+bool StGLRootWidget::doScroll(const StScrollEvent& theEvent) {
105
+    const StPointD_t aCursorBack = cursorZo;
106
+    cursorZo = StPointD_t(theEvent.PointX, theEvent.PointY);
107
+
108
+    const bool aResult = StGLWidget::doScroll(theEvent);
109
     clearDestroyList();
110
     cursorZo = aCursorBack;
111
     return aResult;
112
@@ -428,6 +445,10 @@
113
 }
114
 
115
 void StGLRootWidget::destroyWithDelay(StGLWidget* theWidget) {
116
+    if(theWidget == NULL) {
117
+        return;
118
+    }
119
+
120
     for(size_t anIter = 0; anIter < myDestroyList.size(); ++anIter) {
121
         if(theWidget == myDestroyList[anIter]) {
122
             return; // already appended
123
@@ -472,3 +493,15 @@
124
     }
125
     return aPrevWidget;
126
 }
127
+
128
+void StGLRootWidget::setModalDialog(StGLMessageBox* theWidget,
129
+                                    const bool      theToReleaseOld) {
130
+    if(myModalDialog == theWidget) {
131
+        return;
132
+    }
133
+
134
+    if(theToReleaseOld && myModalDialog != NULL) {
135
+        destroyWithDelay(myModalDialog);
136
+    }
137
+    myModalDialog = theWidget;
138
+}
139
sview-15_11.tar.gz/StGLWidgets/StGLScrollArea.cpp -> sview-16_06.tar.gz/StGLWidgets/StGLScrollArea.cpp Changed
100
 
1
@@ -13,6 +13,7 @@
2
 #include <StGLWidgets/StGLRootWidget.h>
3
 #include <StGL/StGLContext.h>
4
 #include <StGLCore/StGLCore20.h>
5
+#include <StCore/StEvent.h>
6
 
7
 StGLScrollArea::StGLScrollArea(StGLWidget*      theParent,
8
                                const int        theLeft,  const int theTop,
9
@@ -233,18 +234,18 @@
10
     return true;
11
 }
12
 
13
-bool StGLScrollArea::tryClick(const StPointD_t& theCursorZo,
14
-                              const int&        theMouseBtn,
15
-                              bool&             isItemClicked) {
16
-    if(!isVisible() || !isPointIn(theCursorZo)) {
17
+bool StGLScrollArea::tryClick(const StClickEvent& theEvent,
18
+                              bool&               theIsItemClicked) {
19
+    if(!isVisibleAndPointIn(StPointD_t(theEvent.PointX, theEvent.PointY))) {
20
         return false;
21
     }
22
-    if( theMouseBtn == ST_MOUSE_LEFT
23
-    && !isItemClicked
24
+
25
+    if( theEvent.Button == ST_MOUSE_LEFT
26
+    && !theIsItemClicked
27
     &&  isScrollable()) {
28
         myIsLeftClick = true;
29
         myHasDragged  = false;
30
-        myClickPntZo  = theCursorZo;
31
+        myClickPntZo  = StPointD_t(theEvent.PointX, theEvent.PointY);
32
         myDragYCumul  = 0;
33
 
34
         // abort flinging
35
@@ -254,7 +255,7 @@
36
             const double aSpeed = myFlingYSpeed + anA * aTime;
37
             if(std::abs(aSpeed) > myRoot->scale(300)) {
38
                 setClickedWithChildren(myChildren, ST_MOUSE_LEFT, false);
39
-                isItemClicked = true;
40
+                theIsItemClicked = true;
41
                 return true;
42
             }
43
         }
44
@@ -263,18 +264,17 @@
45
         myHasDragged  = false;
46
     }
47
 
48
-    if(StGLWidget::tryClick(theCursorZo, theMouseBtn, isItemClicked)) {
49
-        isItemClicked = true;
50
+    if(StGLWidget::tryClick(theEvent, theIsItemClicked)) {
51
+        theIsItemClicked = true;
52
         return true;
53
     }
54
     return false;
55
 }
56
 
57
-bool StGLScrollArea::tryUnClick(const StPointD_t& theCursorZo,
58
-                                const int&        theMouseBtn,
59
-                                bool&             isItemUnclicked) {
60
+bool StGLScrollArea::tryUnClick(const StClickEvent& theEvent,
61
+                                bool&               theIsItemUnclicked) {
62
     if(myIsLeftClick
63
-    && theMouseBtn == ST_MOUSE_LEFT) {
64
+    && theEvent.Button == ST_MOUSE_LEFT) {
65
         myIsLeftClick = false;
66
         myHasDragged  = false;
67
         if(myDragTimer.isOn()) {
68
@@ -289,18 +289,19 @@
69
             }
70
         }
71
     }
72
-    if(StGLWidget::tryUnClick(theCursorZo, theMouseBtn, isItemUnclicked)) {
73
-        switch(theMouseBtn) {
74
-            case ST_MOUSE_SCROLL_V_UP: {
75
-                doScroll(myRoot->scale(10));
76
-                break;
77
-            }
78
-            case ST_MOUSE_SCROLL_V_DOWN: {
79
-                doScroll(-myRoot->scale(10));
80
-                break;
81
-            }
82
-        }
83
+    return StGLWidget::tryUnClick(theEvent, theIsItemUnclicked);
84
+}
85
+
86
+bool StGLScrollArea::doScroll(const StScrollEvent& theEvent) {
87
+    if(StGLWidget::doScroll(theEvent)) {
88
         return true;
89
     }
90
-    return false;
91
+
92
+    int aDeltaY = (int )fabs(theEvent.DeltaY * 2.0f);
93
+    if(theEvent.DeltaY > 0.001f) {
94
+        doScroll( myRoot->scale(aDeltaY));
95
+    } else if(theEvent.DeltaY < -0.001f) {
96
+        doScroll(-myRoot->scale(aDeltaY));
97
+    }
98
+    return true;
99
 }
100
sview-16_06.tar.gz/StGLWidgets/StGLSeekBar.cpp Added
281
 
1
@@ -0,0 +1,279 @@
2
+/**
3
+ * StGLWidgets, small C++ toolkit for writing GUI using OpenGL.
4
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
5
+ *
6
+ * Distributed under the Boost Software License, Version 1.0.
7
+ * See accompanying file license-boost.txt or copy at
8
+ * http://www.boost.org/LICENSE_1_0.txt
9
+ */
10
+
11
+#include <StGLWidgets/StGLSeekBar.h>
12
+
13
+#include <StGL/StGLProgram.h>
14
+#include <StGL/StGLContext.h>
15
+#include <StGLCore/StGLCore20.h>
16
+#include <StGLWidgets/StGLRootWidget.h>
17
+#include <StCore/StEvent.h>
18
+
19
+class StGLSeekBar::StProgramSB : public StGLProgram {
20
+
21
+        public:
22
+
23
+    StProgramSB() : StGLProgram("StGLSeekBar") {}
24
+
25
+    StGLVarLocation getVVertexLoc() const { return StGLVarLocation(0); }
26
+    StGLVarLocation getVColorLoc()  const { return StGLVarLocation(1); }
27
+
28
+    void setProjMat(StGLContext&      theCtx,
29
+                    const StGLMatrix& theProjMat) {
30
+        theCtx.core20fwd->glUniformMatrix4fv(uniProjMatLoc, 1, GL_FALSE, theProjMat);
31
+    }
32
+
33
+    using StGLProgram::use;
34
+    void use(StGLContext& theCtx) {
35
+        StGLProgram::use(theCtx);
36
+    }
37
+
38
+    void use(StGLContext&  theCtx,
39
+             const GLfloat theOpacityValue,
40
+             const GLfloat theDispX) {
41
+        StGLProgram::use(theCtx);
42
+        theCtx.core20fwd->glUniform1f(uniOpacityLoc, theOpacityValue);
43
+        if(!stAreEqual(myDispX, theDispX, 0.0001f)) {
44
+            myDispX = theDispX;
45
+            theCtx.core20fwd->glUniform4fv(uniDispLoc,  1, StGLVec4(theDispX, 0.0f, 0.0f, 0.0f));
46
+        }
47
+    }
48
+
49
+    virtual bool init(StGLContext& theCtx) ST_ATTR_OVERRIDE {
50
+        const char VERTEX_SHADER[] =
51
+           "uniform mat4  uProjMatrix;\n"
52
+           "uniform vec4  uDisp;\n"
53
+           "uniform float uOpacity;\n"
54
+           "attribute vec4 vVertex;\n"
55
+           "attribute vec4 vColor;\n"
56
+           "varying vec4 fColor;\n"
57
+           "void main(void) {\n"
58
+           "    fColor = vec4(vColor.rgb, vColor.a * uOpacity);\n"
59
+           "    gl_Position = uProjMatrix * (vVertex + uDisp);\n"
60
+           "}\n";
61
+
62
+        const char FRAGMENT_SHADER[] =
63
+           "varying vec4 fColor;\n"
64
+           "void main(void) {\n"
65
+           "    gl_FragColor = fColor;\n"
66
+           "}\n";
67
+
68
+        StGLVertexShader aVertexShader(StGLProgram::getTitle());
69
+        StGLAutoRelease aTmp1(theCtx, aVertexShader);
70
+        aVertexShader.init(theCtx, VERTEX_SHADER);
71
+
72
+        StGLFragmentShader aFragmentShader(StGLProgram::getTitle());
73
+        StGLAutoRelease aTmp2(theCtx, aFragmentShader);
74
+        aFragmentShader.init(theCtx, FRAGMENT_SHADER);
75
+        if(!StGLProgram::create(theCtx)
76
+           .attachShader(theCtx, aVertexShader)
77
+           .attachShader(theCtx, aFragmentShader)
78
+           .bindAttribLocation(theCtx, "vVertex", getVVertexLoc())
79
+           .bindAttribLocation(theCtx, "vColor",  getVColorLoc())
80
+           .link(theCtx)) {
81
+            return false;
82
+        }
83
+
84
+        uniProjMatLoc = StGLProgram::getUniformLocation(theCtx, "uProjMatrix");
85
+        uniDispLoc    = StGLProgram::getUniformLocation(theCtx, "uDisp");
86
+        uniOpacityLoc = StGLProgram::getUniformLocation(theCtx, "uOpacity");
87
+        return uniProjMatLoc.isValid() && uniOpacityLoc.isValid();
88
+    }
89
+
90
+        private:
91
+
92
+    GLfloat         myDispX;
93
+    StGLVarLocation uniProjMatLoc;
94
+    StGLVarLocation uniDispLoc;
95
+    StGLVarLocation uniOpacityLoc;
96
+
97
+};
98
+
99
+StGLSeekBar::StGLSeekBar(StGLWidget* theParent,
100
+                         const int   theTop,
101
+                         const int   theMargin)
102
+: StGLWidget(theParent, 0, theTop, StGLCorner(ST_VCORNER_TOP, ST_HCORNER_LEFT),
103
+             theParent->getRoot()->scale(512),
104
+             theParent->getRoot()->scale(12) + theMargin * 2),
105
+  myProgram(new StProgramSB()),
106
+  myProgress(0.0f),
107
+  myProgressPx(0),
108
+  myClickPos(-1),
109
+  myMoveTolerPx(myRoot->scale(myRoot->isMobile() ? 16 : 8)) {
110
+    StGLWidget::signals.onMouseClick  .connect(this, &StGLSeekBar::doMouseClick);
111
+    StGLWidget::signals.onMouseUnclick.connect(this, &StGLSeekBar::doMouseUnclick);
112
+    myMargins.top    = theMargin;
113
+    myMargins.bottom = theMargin;
114
+}
115
+
116
+StGLSeekBar::~StGLSeekBar() {
117
+    StGLContext& aCtx = getContext();
118
+    if(!myProgram.isNull()) {
119
+        myProgram->release(aCtx);
120
+    }
121
+    myVertices.release(aCtx);
122
+    myColors.release(aCtx);
123
+}
124
+
125
+void StGLSeekBar::stglResize() {
126
+    StGLWidget::stglResize();
127
+    StGLContext& aCtx = getContext();
128
+
129
+    stglUpdateVertices();
130
+
131
+    // update projection matrix
132
+    if(!myProgram.isNull()) {
133
+        myProgram->use(aCtx);
134
+        myProgram->setProjMat(aCtx, getRoot()->getScreenProjection());
135
+        myProgram->unuse(aCtx);
136
+    }
137
+}
138
+
139
+void StGLSeekBar::stglUpdateVertices() {
140
+    StArray<StGLVec2> aVertices(12);
141
+
142
+    // black border quad
143
+    StRectI_t aRectPx(getRectPxAbsolute());
144
+    aRectPx.top()    += myMargins.top;
145
+    aRectPx.bottom() -= myMargins.bottom;
146
+    aRectPx.left()   += myMargins.left;
147
+    aRectPx.right()  -= myMargins.right;
148
+
149
+    myRoot->getRectGl(aRectPx, aVertices, 0);
150
+
151
+    // inner empty quad
152
+    aRectPx.top()    += 1;
153
+    aRectPx.bottom() -= 1;
154
+    aRectPx.left()   += 1;
155
+    aRectPx.right()  -= 1;
156
+    myRoot->getRectGl(aRectPx, aVertices, 4);
157
+
158
+    // inner filled quad
159
+    myProgressPx = int(myProgress * GLfloat(aRectPx.width()));
160
+    myProgressPx = stClamp(myProgressPx, 0, aRectPx.width());
161
+    aRectPx.right() = aRectPx.left() + myProgressPx;
162
+    myRoot->getRectGl(aRectPx, aVertices, 8);
163
+
164
+    myVertices.init(getContext(), aVertices);
165
+    myIsResized = false;
166
+}
167
+
168
+bool StGLSeekBar::stglInit() {
169
+    StGLContext& aCtx = getContext();
170
+    const GLfloat COLORS[4 * 12] = {
171
+        // black border colors
172
+        0.0f, 0.0f, 0.0f, 1.0f, // quad's top-right
173
+        0.0f, 0.0f, 0.0f, 1.0f, // quad's bottom-right
174
+        0.0f, 0.0f, 0.0f, 1.0f, // quad's top-left
175
+        0.0f, 0.0f, 0.0f, 1.0f, // quad's bottom-left
176
+        // empty color
177
+        0.3f, 0.3f, 0.3f, 1.0f, // quad's top-right
178
+        0.3f, 0.3f, 0.3f, 1.0f, // quad's bottom-right
179
+        0.3f, 0.3f, 0.3f, 1.0f, // quad's top-left
180
+        0.3f, 0.3f, 0.3f, 1.0f, // quad's bottom-left
181
+        // fill color
182
+        0.13f, 0.35f, 0.49f, 1.0f, // quad's top-right
183
+        0.13f, 0.35f, 0.49f, 1.0f, // quad's bottom-right
184
+        0.13f, 0.35f, 0.49f, 1.0f, // quad's top-left
185
+        0.13f, 0.35f, 0.49f, 1.0f  // quad's bottom-left
186
+    };
187
+
188
+    myVertices.init(aCtx); // just generate buffer
189
+    myColors.init(aCtx, 4, 12, COLORS);
190
+
191
+    stglUpdateVertices();
192
+
193
+    return myProgram->init(aCtx)
194
+        && StGLWidget::stglInit();
195
+}
196
+
197
+void StGLSeekBar::stglDraw(unsigned int theView) {
198
+    StGLContext& aCtx = getContext();
199
+
200
+    // need to update vertices buffer?
201
+    if(myIsResized
202
+    || myProgressPx != int(myProgress * GLfloat((getRectPx().width() - myMargins.left - myMargins.right - 2)))) {
203
+        stglUpdateVertices();
204
+    }
205
+
206
+    aCtx.core20fwd->glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
207
+    aCtx.core20fwd->glEnable(GL_BLEND);
208
+    myProgram->use(aCtx, myOpacity, myRoot->getScreenDispX());
209
+
210
+    myVertices.bindVertexAttrib(aCtx, myProgram->getVVertexLoc());
211
+    myColors  .bindVertexAttrib(aCtx, myProgram->getVColorLoc());
212
+
213
+    aCtx.core20fwd->glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
214
+    aCtx.core20fwd->glDrawArrays(GL_TRIANGLE_STRIP, 4, 4);
215
+
216
+    if(myProgressPx >= 1) {
217
+        aCtx.core20fwd->glDrawArrays(GL_TRIANGLE_STRIP, 8, 4);
218
+    }
219
+
220
+    myColors  .unBindVertexAttrib(aCtx, myProgram->getVColorLoc());
221
+    myVertices.unBindVertexAttrib(aCtx, myProgram->getVVertexLoc());
222
+
223
+    myProgram->unuse(aCtx);
224
+    aCtx.core20fwd->glDisable(GL_BLEND);
225
+
226
+    StGLWidget::stglDraw(theView);
227
+}
228
+
229
+void StGLSeekBar::stglUpdate(const StPointD_t& theCursor) {
230
+    StGLWidget::stglUpdate(theCursor);
231
+    if(!isClicked(ST_MOUSE_LEFT)) {
232
+        return;
233
+    }
234
+
235
+    const double aPos   = stMin(stMax(getPointInEx(theCursor), 0.0), 1.0);
236
+    const int    aPosPx = int(aPos * double(getRectPx().width()));
237
+    if(myClickPos >= 0
238
+    && std::abs(aPosPx - myClickPos) < myMoveTolerPx) {
239
+        return;
240
+    }
241
+
242
+    myClickPos = aPosPx;
243
+    signals.onSeekClick(ST_MOUSE_LEFT, aPos);
244
+}
245
+
246
+double StGLSeekBar::getPointInEx(const StPointD_t& thePointZo) const {
247
+    StRectI_t aRectPx = getRectPxAbsolute();
248
+    aRectPx.left()  += myMargins.left;
249
+    aRectPx.right() -= myMargins.right;
250
+    const StRectD_t  aRectGl  = myRoot->getRectGl(aRectPx);;
251
+    const StPointD_t aPointGl = getPointGl(thePointZo);
252
+    return (aPointGl.x() - aRectGl.left()) / (aRectGl.right() - aRectGl.left());
253
+}
254
+
255
+void StGLSeekBar::doMouseClick(const int ) {
256
+    //
257
+}
258
+
259
+void StGLSeekBar::doMouseUnclick(const int mouseBtn) {
260
+    const double aPos       = stMin(stMax(getPointInEx(myRoot->getCursorZo()), 0.0), 1.0);
261
+    const int    aTolerance = myRoot->scale(1);
262
+    const int    aPosPx     = int(aPos * double(getRectPx().width()));
263
+    if(myClickPos >= 0
264
+    && std::abs(aPosPx - myClickPos) < aTolerance) {
265
+        myClickPos = -1;
266
+        return;
267
+    }
268
+
269
+    myClickPos = -1;
270
+    signals.onSeekClick(mouseBtn, aPos);
271
+}
272
+
273
+bool StGLSeekBar::doScroll(const StScrollEvent& theEvent) {
274
+    if(theEvent.StepsY >= 1) {
275
+        signals.onSeekScroll(1.0);
276
+    } else if(theEvent.StepsY <= -1) {
277
+        signals.onSeekScroll(-1.0);
278
+    }
279
+    return true;
280
+}
281
sview-15_11.tar.gz/StGLWidgets/StGLSwitchTextured.cpp -> sview-16_06.tar.gz/StGLWidgets/StGLSwitchTextured.cpp Changed
58
 
1
@@ -8,7 +8,9 @@
2
  */
3
 
4
 #include <StGLWidgets/StGLSwitchTextured.h>
5
+
6
 #include <StGLWidgets/StGLRadioButtonTextured.h>
7
+#include <StCore/StEvent.h>
8
 
9
 StGLSwitchTextured::StGLSwitchTextured(StGLWidget* theParent,
10
                                        const StHandle<StInt32Param>& theTrackedValue,
11
@@ -61,32 +63,36 @@
12
 }
13
 
14
 
15
-bool StGLSwitchTextured::tryClick(const StPointD_t& theCursorZo, const int& theMouseBtn, bool& isItemClicked) {
16
+bool StGLSwitchTextured::tryClick(const StClickEvent& theEvent,
17
+                                  bool&               theIsItemClicked) {
18
     if(!isVisible()) {
19
         return false; // nothing to see - nothing to click...
20
     }
21
-    if(!isItemClicked && isPointIn(theCursorZo)) {
22
-        setClicked(theMouseBtn, true);
23
-        isItemClicked = true;
24
+
25
+    if(!theIsItemClicked && isPointIn(StPointD_t(theEvent.PointX, theEvent.PointY))) {
26
+        setClicked(theEvent.Button, true);
27
+        theIsItemClicked = true;
28
         return true;
29
     }
30
     return false;
31
 }
32
 
33
-bool StGLSwitchTextured::tryUnClick(const StPointD_t& theCursorZo, const int& theMouseBtn, bool& isItemUnclicked) {
34
+bool StGLSwitchTextured::tryUnClick(const StClickEvent& theEvent,
35
+                                    bool&               theIsItemUnclicked) {
36
     if(!isVisible()) {
37
         return false; // nothing to see - nothing to click...
38
     }
39
-    bool isSelfClicked = isClicked(theMouseBtn) && isPointIn(theCursorZo);
40
-    setClicked(theMouseBtn, false);
41
-    if(!isItemUnclicked && isSelfClicked) {
42
-        isItemUnclicked = true;
43
+    bool isSelfClicked = isClicked(theEvent.Button)
44
+                      && isPointIn(StPointD_t(theEvent.PointX, theEvent.PointY));
45
+    setClicked(theEvent.Button, false);
46
+    if(!theIsItemUnclicked && isSelfClicked) {
47
+        theIsItemUnclicked = true;
48
 
49
         int32_t anActiveValue = myTrackValue->getValue();
50
         StGLRadioButtonTextured* aRadioBtn = NULL;
51
         for(StGLWidget* aChild = getChildren()->getStart(); aChild != NULL;) {
52
             /// TODO (Kirill Gavrilov#9) - adding children with another type is not allowed
53
-            ///                            hovewer not protected thus this cast is not thread-safe!
54
+            ///                            however not protected thus this cast is not thread-safe!
55
             aRadioBtn = (StGLRadioButtonTextured* )aChild;
56
             aChild = aChild->getNext();
57
 
58
sview-15_11.tar.gz/StGLWidgets/StGLTextArea.cpp -> sview-16_06.tar.gz/StGLWidgets/StGLTextArea.cpp Changed
54
 
1
@@ -37,7 +37,7 @@
2
   myToShowBorder(false),
3
   myToDrawShadow(false),
4
   myIsInitialized(false) {
5
-    myFont = getRoot()->getFontManager()->findCreate(StFTFont::Typeface_SansSerif, getFontSize());
6
+    myFont = myRoot->getFontManager()->findCreate(StFTFont::Typeface_SansSerif, getFontSize());
7
 }
8
 
9
 StGLTextArea::~StGLTextArea() {
10
@@ -70,14 +70,29 @@
11
     myToRecompute = true;
12
 }
13
 
14
+void StGLTextArea::computeTextWidthFake(const StString& theText,
15
+                                        int&            theWidth,
16
+                                        int&            theHeight) {
17
+    theWidth  = myRoot->scale(int(10 * (theText.getLength() + 2)));
18
+    theHeight = myRoot->scale(16);
19
+}
20
+
21
 void StGLTextArea::computeTextWidth(const StString& theText,
22
                                     const GLfloat   theWidthMax,
23
                                     int&            theWidth,
24
                                     int&            theHeight) {
25
-    StHandle<StFTFont>& aFontGen = myFont->changeFont()->getFont();
26
+    if(myFont.isNull()) {
27
+        computeTextWidthFake(theText, theWidth, theHeight);
28
+        return;
29
+    }
30
+    StHandle<StGLFontEntry>& aFontGenEntry = myFont->changeFont();
31
+    if(aFontGenEntry.isNull()) {
32
+        computeTextWidthFake(theText, theWidth, theHeight);
33
+        return;
34
+    }
35
+    StHandle<StFTFont>& aFontGen = aFontGenEntry->getFont();
36
     if(aFontGen.isNull() || !aFontGen->isValid()) {
37
-        theWidth  = myRoot->scale(int(10 * (theText.getLength() + 2)));
38
-        theHeight = myRoot->scale(16);
39
+        computeTextWidthFake(theText, theWidth, theHeight);
40
         return;
41
     }
42
 
43
@@ -156,7 +171,9 @@
44
     }
45
 
46
     // initialize GL resources for the font
47
-    if(!myFont->wasInitialized()) {
48
+    if(myFont.isNull()) {
49
+        return false; // critical error
50
+    } else if(!myFont->wasInitialized()) {
51
         if( myFont->changeFont().isNull()
52
         ||  myFont->changeFont()->getFont().isNull()
53
         || !myFont->changeFont()->getFont()->isValid()) {
54
sview-15_11.tar.gz/StGLWidgets/StGLTextureButton.cpp -> sview-16_06.tar.gz/StGLWidgets/StGLTextureButton.cpp Changed
70
 
1
@@ -37,7 +37,7 @@
2
         theCtx.core20fwd->glUniformMatrix4fv(uniProjMatLoc, 1, GL_FALSE, theProjMat);
3
     }
4
 
5
-    virtual bool link(StGLContext& theCtx) {
6
+    virtual bool link(StGLContext& theCtx) ST_ATTR_OVERRIDE {
7
         if(!isValid()) {
8
             return false;
9
         }
10
@@ -206,7 +206,7 @@
11
     /**
12
      * Release OpenGL resources.
13
      */
14
-    ST_LOCAL virtual void release(StGLContext& theCtx) {
15
+    ST_LOCAL virtual void release(StGLContext& theCtx) ST_ATTR_OVERRIDE {
16
         StGLProgramMatrix<1, 2, StGLTextureButton::Program>::release(theCtx);
17
         for(int aProgIter = 0; aProgIter < StGLTextureButton::ProgramIndex_NB; ++aProgIter) {
18
             StHandle<StGLTextureButton::Program>& aProgram = myPrograms[aProgIter];
19
@@ -525,17 +525,19 @@
20
     aCtx.core20fwd->glDisable(GL_BLEND);
21
 }
22
 
23
-bool StGLTextureButton::tryClick(const StPointD_t& cursorZo, const int& mouseBtn, bool& isItemClicked) {
24
-    if(StGLWidget::tryClick(cursorZo, mouseBtn, isItemClicked)) {
25
-        isItemClicked = true;
26
+bool StGLTextureButton::tryClick(const StClickEvent& theEvent,
27
+                                 bool&               theIsItemClicked) {
28
+    if(StGLWidget::tryClick(theEvent, theIsItemClicked)) {
29
+        theIsItemClicked = true;
30
         return true;
31
     }
32
     return false;
33
 }
34
 
35
-bool StGLTextureButton::tryUnClick(const StPointD_t& cursorZo, const int& mouseBtn, bool& isItemUnclicked) {
36
-    if(StGLWidget::tryUnClick(cursorZo, mouseBtn, isItemUnclicked)) {
37
-        isItemUnclicked = true;
38
+bool StGLTextureButton::tryUnClick(const StClickEvent& theEvent,
39
+                                   bool&               theIsItemUnclicked) {
40
+    if(StGLWidget::tryUnClick(theEvent, theIsItemUnclicked)) {
41
+        theIsItemUnclicked = true;
42
         return true;
43
     }
44
     return false;
45
@@ -547,6 +549,11 @@
46
     }
47
 }
48
 
49
+bool StGLTextureButton::doScroll(const StScrollEvent& theEvent) {
50
+    StGLWidget::doScroll(theEvent);
51
+    return true; // do not pass event further
52
+}
53
+
54
 StGLIcon::StGLIcon(StGLWidget*      theParent,
55
                    const int        theLeft,
56
                    const int        theTop,
57
@@ -563,10 +570,10 @@
58
     }
59
 }
60
 
61
-bool StGLIcon::tryClick(const StPointD_t& , const int& , bool& ) {
62
+bool StGLIcon::tryClick(const StClickEvent& , bool& ) {
63
     return false;
64
 }
65
 
66
-bool StGLIcon::tryUnClick(const StPointD_t& , const int& , bool& ) {
67
+bool StGLIcon::tryUnClick(const StClickEvent& , bool& ) {
68
     return false;
69
 }
70
sview-15_11.tar.gz/StGLWidgets/StGLWidget.cpp -> sview-16_06.tar.gz/StGLWidgets/StGLWidget.cpp Changed
150
 
1
@@ -13,6 +13,7 @@
2
 #include <StGL/StGLContext.h>
3
 #include <StGLCore/StGLCore20.h>
4
 
5
+#include <StCore/StEvent.h>
6
 #include <StStrings/StLogger.h>
7
 #include <StThreads/StMutex.h>
8
 
9
@@ -179,15 +180,6 @@
10
                       (0.5 - thePointZo.y()) * oglHeight);
11
 }
12
 
13
-bool StGLWidget::isPointIn(const StPointD_t& thePointZo) const {
14
-    const StRectD_t aRectGl = getRectGl();
15
-    StPointD_t aPointGl = getPointGl(thePointZo);
16
-    return aPointGl.x() > aRectGl.left()
17
-        && aPointGl.x() < aRectGl.right()
18
-        && aPointGl.y() > aRectGl.bottom()
19
-        && aPointGl.y() < aRectGl.top();
20
-}
21
-
22
 double StGLAnimationLerp::perform(bool theDirUp, bool theToForce) {
23
     if(theToForce) {
24
         myValue = theDirUp ? 1.0 : 0.0;
25
@@ -276,36 +268,43 @@
26
     mouseClicked[mouseBtn] = isClicked;
27
 }
28
 
29
-bool StGLWidget::tryClick(const StPointD_t& cursorZo, const int& mouseBtn, bool& isItemClicked) {
30
+bool StGLWidget::tryClick(const StClickEvent& theEvent,
31
+                          bool&               theIsItemClicked) {
32
     if(!isVisible()) {
33
-        return false; // nothing to see - nothing to click... (all children too!)
34
+        return false;
35
     }
36
-    for(StGLWidget *child(myChildren.getLast()), *childActive(NULL); child != NULL;) {
37
-        childActive = child;
38
-        child = child->getPrev();
39
-        childActive->tryClick(cursorZo, mouseBtn, isItemClicked);
40
+
41
+    for(StGLWidget *aChildIter(myChildren.getLast()), *aChildActive(NULL); aChildIter != NULL;) {
42
+        aChildActive = aChildIter;
43
+        aChildIter   = aChildIter->getPrev();
44
+        aChildActive->tryClick(theEvent, theIsItemClicked);
45
     }
46
-    if(!isItemClicked && isPointIn(cursorZo)) {
47
-        setClicked(mouseBtn, true);
48
-        isItemClicked = signals.onMouseClick(mouseBtn);
49
+    if(!theIsItemClicked && isPointIn(StPointD_t(theEvent.PointX, theEvent.PointY))) {
50
+        setClicked(theEvent.Button, true);
51
+        theIsItemClicked = signals.onMouseClick(theEvent.Button);
52
         return true;
53
     }
54
     return false;
55
 }
56
 
57
-bool StGLWidget::tryUnClick(const StPointD_t& cursorZo, const int& mouseBtn, bool& isItemUnclicked) {
58
+bool StGLWidget::tryUnClick(const StClickEvent& theEvent,
59
+                            bool&               theIsItemUnclicked) {
60
     if(!isVisible()) {
61
-        return false; // nothing to see - nothing to click... (all children too!)
62
-    }
63
-    for(StGLWidget *child(myChildren.getLast()), *childActive(NULL); child != NULL;) {
64
-        childActive = child;
65
-        child = child->getPrev();
66
-        childActive->tryUnClick(cursorZo, mouseBtn, isItemUnclicked);
67
+        return false;
68
     }
69
-    bool selfClicked = isClicked(mouseBtn) && isPointIn(cursorZo);
70
-    setClicked(mouseBtn, false);
71
-    if(!isItemUnclicked && selfClicked) {
72
-        isItemUnclicked = signals.onMouseUnclick(mouseBtn);
73
+
74
+    for(StGLWidget *aChildIter(myChildren.getLast()), *aChildActive(NULL); aChildIter != NULL;) {
75
+        aChildActive = aChildIter;
76
+        aChildIter   = aChildIter->getPrev();
77
+        aChildActive->tryUnClick(theEvent, theIsItemUnclicked);
78
+    }
79
+    bool selfClicked = isClicked(theEvent.Button)
80
+                    && isPointIn(StPointD_t(theEvent.PointX, theEvent.PointY));
81
+    setClicked(theEvent.Button, false);
82
+    if(!theIsItemUnclicked && selfClicked) {
83
+        if(theEvent.Type != stEvent_MouseCancel) {
84
+            theIsItemUnclicked = signals.onMouseUnclick(theEvent.Button);
85
+        }
86
         return true;
87
     }
88
     return false;
89
@@ -323,6 +322,23 @@
90
     return false;
91
 }
92
 
93
+bool StGLWidget::doScroll(const StScrollEvent& theEvent) {
94
+    if(!isVisible()) {
95
+        return false;
96
+    }
97
+
98
+    StPointD_t aPnt(theEvent.PointX, theEvent.PointY);
99
+    for(StGLWidget *aChildIter(myChildren.getLast()), *aChildActive(NULL); aChildIter != NULL;) {
100
+        aChildActive = aChildIter;
101
+        aChildIter   = aChildIter->getPrev();
102
+        if(aChildActive->isVisibleAndPointIn(aPnt)
103
+        && aChildActive->doScroll(theEvent)) {
104
+            return true;
105
+        }
106
+    }
107
+    return false;
108
+}
109
+
110
 StGLProjCamera* StGLWidget::getCamera() {
111
     return myRoot->StGLRootWidget::getCamera();
112
 }
113
@@ -343,30 +359,28 @@
114
 
115
 StGLContainer::~StGLContainer() {}
116
 
117
-bool StGLContainer::tryClick(const StPointD_t& theCursorZo,
118
-                             const int&        theMouseBtn,
119
-                             bool&             theIsItemClicked) {
120
+bool StGLContainer::tryClick(const StClickEvent& theEvent,
121
+                             bool&               theIsItemClicked) {
122
     if(!isVisible()) {
123
         return false;
124
     }
125
     for(StGLWidget *aChildIter(myChildren.getLast()), *aChildActive(NULL); aChildIter != NULL;) {
126
         aChildActive = aChildIter;
127
         aChildIter   = aChildIter->getPrev();
128
-        aChildActive->tryClick(theCursorZo, theMouseBtn, theIsItemClicked);
129
+        aChildActive->tryClick(theEvent, theIsItemClicked);
130
     }
131
     return false;
132
 }
133
 
134
-bool StGLContainer::tryUnClick(const StPointD_t& theCursorZo,
135
-                               const int&        theMouseBtn,
136
-                               bool&             theIsItemUnclicked) {
137
+bool StGLContainer::tryUnClick(const StClickEvent& theEvent,
138
+                               bool&               theIsItemUnclicked) {
139
     if(!isVisible()) {
140
         return false;
141
     }
142
     for(StGLWidget *aChildIter(myChildren.getLast()), *aChildActive(NULL); aChildIter != NULL;) {
143
         aChildActive = aChildIter;
144
         aChildIter   = aChildIter->getPrev();
145
-        aChildActive->tryUnClick(theCursorZo, theMouseBtn, theIsItemUnclicked);
146
+        aChildActive->tryUnClick(theEvent, theIsItemUnclicked);
147
     }
148
     return false;
149
 }
150
sview-15_11.tar.gz/StGLWidgets/StGLWidgets.cbp -> sview-16_06.tar.gz/StGLWidgets/StGLWidgets.cbp Changed
52
 
1
@@ -136,15 +136,11 @@
2
                    <Add option="-DST_HAVE_STCONFIG" />
3
                </Compiler>
4
                <Linker>
5
-                   <Add option="-s" />
6
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
7
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
8
                    <Add option="-framework OpenGL" />
9
                    <Add library="objc" />
10
                </Linker>
11
-               <ExtraCommands>
12
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
13
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
14
-                   <Mode after="always" />
15
-               </ExtraCommands>
16
            </Target>
17
            <Target title="MAC_gcc_DEBUG">
18
                <Option output="../bin/$(TARGET_NAME)/sView.app/Contents/MacOS/libStGLWidgets" prefix_auto="1" extension_auto="1" />
19
@@ -160,14 +156,11 @@
20
                    <Add option="-DST_HAVE_STCONFIG" />
21
                </Compiler>
22
                <Linker>
23
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
24
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
25
                    <Add option="-framework OpenGL" />
26
                    <Add library="objc" />
27
                </Linker>
28
-               <ExtraCommands>
29
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
30
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
31
-                   <Mode after="always" />
32
-               </ExtraCommands>
33
            </Target>
34
        </Build>
35
        <Compiler>
36
@@ -207,6 +200,7 @@
37
        <Unit filename="StGLRangeFieldFloat32.cpp" />
38
        <Unit filename="StGLRootWidget.cpp" />
39
        <Unit filename="StGLScrollArea.cpp" />
40
+       <Unit filename="StGLSeekBar.cpp" />
41
        <Unit filename="StGLSubtitles.cpp" />
42
        <Unit filename="StGLSwitchTextured.cpp" />
43
        <Unit filename="StGLTable.cpp" />
44
@@ -248,6 +242,7 @@
45
        <Unit filename="../include/StGLWidgets/StGLRangeFieldFloat32.h" />
46
        <Unit filename="../include/StGLWidgets/StGLRootWidget.h" />
47
        <Unit filename="../include/StGLWidgets/StGLScrollArea.h" />
48
+       <Unit filename="../include/StGLWidgets/StGLSeekBar.h" />
49
        <Unit filename="../include/StGLWidgets/StGLShare.h" />
50
        <Unit filename="../include/StGLWidgets/StGLSubtitles.h" />
51
        <Unit filename="../include/StGLWidgets/StGLSwitchTextured.h" />
52
sview-15_11.tar.gz/StGLWidgets/StGLWidgets.rc -> sview-16_06.tar.gz/StGLWidgets/StGLWidgets.rc Changed
10
 
1
@@ -15,7 +15,7 @@
2
     BEGIN
3
       VALUE "FileDescription", "OpenGL Widgets library\000"
4
       VALUE "FileVersion",     SVIEW_SDK_VER_STRING "\000"
5
-      VALUE "LegalCopyright",  "\251 2009-2015 Kirill Gavrilov\000"
6
+      VALUE "LegalCopyright",  "\251 2009-2016 Kirill Gavrilov\000"
7
       VALUE "ProductName",     "StGLWidgets\000"
8
       VALUE "ProductVersion",  SVIEW_SDK_VER_STRING "\000"
9
       VALUE "OfficialSite",    "www.sview.ru\000"
10
sview-15_11.tar.gz/StGLWidgets/StGLWidgets.vcxproj -> sview-16_06.tar.gz/StGLWidgets/StGLWidgets.vcxproj Changed
64
 
1
@@ -21,7 +21,7 @@
2
   <PropertyGroup Label="Globals">
3
     <ProjectGuid>{F28AE856-40EB-4C12-AD99-AE253B144419}</ProjectGuid>
4
   </PropertyGroup>
5
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
6
+  <Import Project="$(SolutionDir)sView.Cpp.Default.props" />
7
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
8
     <ConfigurationType>DynamicLibrary</ConfigurationType>
9
     <CharacterSet>Unicode</CharacterSet>
10
@@ -230,6 +230,7 @@
11
     <ClCompile Include="StGLRangeFieldFloat32.cpp" />
12
     <ClCompile Include="StGLRootWidget.cpp" />
13
     <ClCompile Include="StGLScrollArea.cpp" />
14
+    <ClCompile Include="StGLSeekBar.cpp" />
15
     <ClCompile Include="StGLSubtitles.cpp" />
16
     <ClCompile Include="StGLSwitchTextured.cpp" />
17
     <ClCompile Include="StGLTable.cpp" />
18
@@ -242,6 +243,45 @@
19
     <ClCompile Include="StSubQueue.cpp" />
20
   </ItemGroup>
21
   <ItemGroup>
22
+    <ClInclude Include="../include/StGLWidgets/StGLAssignHotKey.h" />
23
+    <ClInclude Include="../include/StGLWidgets/StGLButton.h" />
24
+    <ClInclude Include="../include/StGLWidgets/StGLCheckbox.h" />
25
+    <ClInclude Include="../include/StGLWidgets/StGLCheckboxTextured.h" />
26
+    <ClInclude Include="../include/StGLWidgets/StGLCombobox.h" />
27
+    <ClInclude Include="../include/StGLWidgets/StGLCorner.h" />
28
+    <ClInclude Include="../include/StGLWidgets/StGLDescription.h" />
29
+    <ClInclude Include="../include/StGLWidgets/StGLFpsLabel.h" />
30
+    <ClInclude Include="../include/StGLWidgets/StGLImageProgram.h" />
31
+    <ClInclude Include="../include/StGLWidgets/StGLImageRegion.h" />
32
+    <ClInclude Include="../include/StGLWidgets/StGLMenu.h" />
33
+    <ClInclude Include="../include/StGLWidgets/StGLMenuCheckbox.h" />
34
+    <ClInclude Include="../include/StGLWidgets/StGLMenuItem.h" />
35
+    <ClInclude Include="../include/StGLWidgets/StGLMenuProgram.h" />
36
+    <ClInclude Include="../include/StGLWidgets/StGLMenuRadioButton.h" />
37
+    <ClInclude Include="../include/StGLWidgets/StGLMessageBox.h" />
38
+    <ClInclude Include="../include/StGLWidgets/StGLMsgStack.h" />
39
+    <ClInclude Include="../include/StGLWidgets/StGLOpenFile.h" />
40
+    <ClInclude Include="../include/StGLWidgets/StGLPlayList.h" />
41
+    <ClInclude Include="../include/StGLWidgets/StGLRadioButton.h" />
42
+    <ClInclude Include="../include/StGLWidgets/StGLRadioButtonFloat32.h" />
43
+    <ClInclude Include="../include/StGLWidgets/StGLRadioButtonTextured.h" />
44
+    <ClInclude Include="../include/StGLWidgets/StGLRangeFieldFloat32.h" />
45
+    <ClInclude Include="../include/StGLWidgets/StGLRootWidget.h" />
46
+    <ClInclude Include="../include/StGLWidgets/StGLScrollArea.h" />
47
+    <ClInclude Include="../include/StGLWidgets/StGLSeekBar.h" />
48
+    <ClInclude Include="../include/StGLWidgets/StGLShare.h" />
49
+    <ClInclude Include="../include/StGLWidgets/StGLSubtitles.h" />
50
+    <ClInclude Include="../include/StGLWidgets/StGLSwitchTextured.h" />
51
+    <ClInclude Include="../include/StGLWidgets/StGLTable.h" />
52
+    <ClInclude Include="../include/StGLWidgets/StGLTextArea.h" />
53
+    <ClInclude Include="../include/StGLWidgets/StGLTextBorderProgram.h" />
54
+    <ClInclude Include="../include/StGLWidgets/StGLTextProgram.h" />
55
+    <ClInclude Include="../include/StGLWidgets/StGLTextureButton.h" />
56
+    <ClInclude Include="../include/StGLWidgets/StGLWidget.h" />
57
+    <ClInclude Include="../include/StGLWidgets/StGLWidgetList.h" />
58
+    <ClInclude Include="../include/StGLWidgets/StSubQueue.h" />
59
+  </ItemGroup>
60
+  <ItemGroup>
61
     <ResourceCompile Include="StGLWidgets.rc" />
62
   </ItemGroup>
63
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
64
sview-15_11.tar.gz/StGLWidgets/StGLWidgets.vcxproj.filters -> sview-16_06.tar.gz/StGLWidgets/StGLWidgets.vcxproj.filters Changed
124
 
1
@@ -1,112 +1,16 @@
2
-<?xml version="1.0" encoding="utf-8"?>
3
+<?xml version="1.0" encoding="utf-8"?>
4
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
5
   <ItemGroup>
6
-    <Filter Include="Source files">
7
-      <UniqueIdentifier>{CACACF6C-18DA-13DF-148A-3C969CC3F588}</UniqueIdentifier>
8
+    <Filter Include="Source Files">
9
+      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
10
+      <Extensions>cpp;c;cc;cxx;m;mm;def;odl;idl;hpj;bat;asm;asmx</Extensions>
11
+    </Filter>
12
+    <Filter Include="Header Files">
13
+      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
14
+      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
15
     </Filter>
16
-  </ItemGroup>
17
-  <ItemGroup>
18
-    <ClCompile Include="StGLAssignHotKey.cpp">
19
-      <Filter>Source files</Filter>
20
-    </ClCompile>
21
-    <ClCompile Include="StGLButton.cpp">
22
-      <Filter>Source files</Filter>
23
-    </ClCompile>
24
-    <ClCompile Include="StGLCheckbox.cpp">
25
-      <Filter>Source files</Filter>
26
-    </ClCompile>
27
-    <ClCompile Include="StGLCheckboxTextured.cpp">
28
-      <Filter>Source files</Filter>
29
-    </ClCompile>
30
-    <ClCompile Include="StGLCombobox.cpp">
31
-      <Filter>Source files</Filter>
32
-    </ClCompile>
33
-    <ClCompile Include="StGLDescription.cpp">
34
-      <Filter>Source files</Filter>
35
-    </ClCompile>
36
-    <ClCompile Include="StGLFpsLabel.cpp">
37
-      <Filter>Source files</Filter>
38
-    </ClCompile>
39
-    <ClCompile Include="StGLImageProgram.cpp">
40
-      <Filter>Source files</Filter>
41
-    </ClCompile>
42
-    <ClCompile Include="StGLImageRegion.cpp">
43
-      <Filter>Source files</Filter>
44
-    </ClCompile>
45
-    <ClCompile Include="StGLMenu.cpp">
46
-      <Filter>Source files</Filter>
47
-    </ClCompile>
48
-    <ClCompile Include="StGLMenuCheckbox.cpp">
49
-      <Filter>Source files</Filter>
50
-    </ClCompile>
51
-    <ClCompile Include="StGLMenuItem.cpp">
52
-      <Filter>Source files</Filter>
53
-    </ClCompile>
54
-    <ClCompile Include="StGLMenuProgram.cpp">
55
-      <Filter>Source files</Filter>
56
-    </ClCompile>
57
-    <ClCompile Include="StGLMenuRadioButton.cpp">
58
-      <Filter>Source files</Filter>
59
-    </ClCompile>
60
-    <ClCompile Include="StGLMessageBox.cpp">
61
-      <Filter>Source files</Filter>
62
-    </ClCompile>
63
-    <ClCompile Include="StGLMsgStack.cpp">
64
-      <Filter>Source files</Filter>
65
-    </ClCompile>
66
-    <ClCompile Include="StGLPlayList.cpp">
67
-      <Filter>Source files</Filter>
68
-    </ClCompile>
69
-    <ClCompile Include="StGLRadioButton.cpp">
70
-      <Filter>Source files</Filter>
71
-    </ClCompile>
72
-    <ClCompile Include="StGLRadioButtonFloat32.cpp">
73
-      <Filter>Source files</Filter>
74
-    </ClCompile>
75
-    <ClCompile Include="StGLRadioButtonTextured.cpp">
76
-      <Filter>Source files</Filter>
77
-    </ClCompile>
78
-    <ClCompile Include="StGLRangeFieldFloat32.cpp">
79
-      <Filter>Source files</Filter>
80
-    </ClCompile>
81
-    <ClCompile Include="StGLRootWidget.cpp">
82
-      <Filter>Source files</Filter>
83
-    </ClCompile>
84
-    <ClCompile Include="StGLScrollArea.cpp">
85
-      <Filter>Source files</Filter>
86
-    </ClCompile>
87
-    <ClCompile Include="StGLSubtitles.cpp">
88
-      <Filter>Source files</Filter>
89
-    </ClCompile>
90
-    <ClCompile Include="StGLSwitchTextured.cpp">
91
-      <Filter>Source files</Filter>
92
-    </ClCompile>
93
-    <ClCompile Include="StGLTable.cpp">
94
-      <Filter>Source files</Filter>
95
-    </ClCompile>
96
-    <ClCompile Include="StGLTextArea.cpp">
97
-      <Filter>Source files</Filter>
98
-    </ClCompile>
99
-    <ClCompile Include="StGLTextBorderProgram.cpp">
100
-      <Filter>Source files</Filter>
101
-    </ClCompile>
102
-    <ClCompile Include="StGLTextProgram.cpp">
103
-      <Filter>Source files</Filter>
104
-    </ClCompile>
105
-    <ClCompile Include="StGLTextureButton.cpp">
106
-      <Filter>Source files</Filter>
107
-    </ClCompile>
108
-    <ClCompile Include="StGLWidget.cpp">
109
-      <Filter>Source files</Filter>
110
-    </ClCompile>
111
-    <ClCompile Include="StGLWidgetList.cpp">
112
-      <Filter>Source files</Filter>
113
-    </ClCompile>
114
-    <ClCompile Include="StSubQueue.cpp">
115
-      <Filter>Source files</Filter>
116
-    </ClCompile>
117
   </ItemGroup>
118
   <ItemGroup>
119
     <ResourceCompile Include="StGLWidgets.rc" />
120
   </ItemGroup>
121
-</Project>
122
+</Project>
123
\ No newline at end of file
124
sview-15_11.tar.gz/StImageViewer/StImageLoader.cpp -> sview-16_06.tar.gz/StImageViewer/StImageLoader.cpp Changed
98
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2007-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * StImageViewer program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU General Public License as published by
8
@@ -46,13 +46,15 @@
9
 
10
 }
11
 
12
-StImageLoader::StImageLoader(const StImageFile::ImageClass     theImageLib,
13
-                             const StHandle<StMsgQueue>&       theMsgQueue,
14
-                             const StHandle<StLangMap>&        theLangMap,
15
-                             const StHandle<StPlayList>&       thePlayList,
16
-                             const StHandle<StGLTextureQueue>& theTextureQueue,
17
-                             const GLint                       theMaxTexDim)
18
+StImageLoader::StImageLoader(const StImageFile::ImageClass      theImageLib,
19
+                             const StHandle<StResourceManager>& theResMgr,
20
+                             const StHandle<StMsgQueue>&        theMsgQueue,
21
+                             const StHandle<StLangMap>&         theLangMap,
22
+                             const StHandle<StPlayList>&        thePlayList,
23
+                             const StHandle<StGLTextureQueue>&  theTextureQueue,
24
+                             const GLint                        theMaxTexDim)
25
 : myMimeList(ST_IMAGES_MIME_STRING),
26
+  myResMgr(theResMgr),
27
   myLangMap(theLangMap),
28
   myPlayList(thePlayList),
29
   myLoadNextEvent(false),
30
@@ -237,10 +239,15 @@
31
     if(anImgType == StImageFile::ST_TYPE_MPO
32
     || anImgType == StImageFile::ST_TYPE_JPEG
33
     || anImgType == StImageFile::ST_TYPE_JPS) {
34
+        int aFileDescriptor = -1;
35
+        if(StFileNode::isContentProtocolPath(aFilePath)) {
36
+            aFileDescriptor = myResMgr->openFileDescriptor(aFilePath);
37
+        }
38
+
39
         // special procedure to divide MPO (Multi Picture Object)
40
         StJpegParser aParser;
41
         double anHParallax = 0.0; // parallax in percents
42
-        const bool isParsed = aParser.readFile(aFilePath);
43
+        const bool isParsed = aParser.readFile(aFilePath, aFileDescriptor);
44
 
45
         StHandle<StJpegParser::Image> anImg1, anImg2;
46
         size_t aMaxSizeX = 0;
47
@@ -341,16 +348,33 @@
48
         const StString aFilePathRight = theSource->getValue(1)->getPath();
49
 
50
         // loading image with format autodetection
51
-        if(!anImageFileL->load(aFilePathLeft)) {
52
+        StRawFile aRawFileL;
53
+        if(StFileNode::isContentProtocolPath(aFilePathLeft)) {
54
+            int aFileDescriptor = myResMgr->openFileDescriptor(aFilePathLeft);
55
+            aRawFileL.readFile(aFilePathLeft, aFileDescriptor);
56
+        }
57
+        if(!anImageFileL->load(aFilePathLeft, anImgType, (uint8_t* )aRawFileL.getBuffer(), (int )aRawFileL.getSize())) {
58
             processLoadFail(formatError(aFilePathLeft, anImageFileL->getState()));
59
             return false;
60
         }
61
-        if(!anImageFileR->load(aFilePathRight)) {
62
+        aRawFileL.freeBuffer();
63
+
64
+        StRawFile aRawFileR;
65
+        if(StFileNode::isContentProtocolPath(aFilePathRight)) {
66
+            int aFileDescriptor = myResMgr->openFileDescriptor(aFilePathRight);
67
+            aRawFileR.readFile(aFilePathRight, aFileDescriptor);
68
+        }
69
+        if(!anImageFileR->load(aFilePathRight, anImgType, (uint8_t* )aRawFileR.getBuffer(), (int )aRawFileR.getSize())) {
70
             processLoadFail(formatError(aFilePathRight, anImageFileR->getState()));
71
             return false;
72
         }
73
     } else {
74
-        if(!anImageFileL->load(aFilePath, anImgType)) {
75
+        StRawFile aRawFile;
76
+        if(StFileNode::isContentProtocolPath(aFilePath)) {
77
+            int aFileDescriptor = myResMgr->openFileDescriptor(aFilePath);
78
+            aRawFile.readFile(aFilePath, aFileDescriptor);
79
+        }
80
+        if(!anImageFileL->load(aFilePath, anImgType, (uint8_t* )aRawFile.getBuffer(), (int )aRawFile.getSize())) {
81
             processLoadFail(formatError(aFilePath, anImageFileL->getState()));
82
             return false;
83
         }
84
@@ -573,8 +597,11 @@
85
         }
86
     }
87
 
88
-    StString aFileToSave;
89
-    if(StFileNode::openFileDialog(theSource->getFolderPath(), aTitle, aFilter, aFileToSave, true)) {
90
+    StString aFileNameSrc, aFolderSrc, aNameSrc, anExtSrc;
91
+    StFileNode::getFolderAndFile(theSource->getPath(), aFolderSrc, aFileNameSrc);
92
+    StFileNode::getNameAndExtension(aFileNameSrc, aNameSrc, anExtSrc);
93
+    StString aFileToSave = (!aFolderSrc.isEmpty() ? aFolderSrc : "") + ST_FILE_SPLITTER + aNameSrc;
94
+    if(StFileNode::openFileDialog(aFolderSrc, aTitle, aFilter, aFileToSave, true)) {
95
         if(StFileNode::getExtension(aFileToSave) != aSaveExt) {
96
             aFileToSave += StString('.') + aSaveExt;
97
         }
98
sview-15_11.tar.gz/StImageViewer/StImageLoader.h -> sview-16_06.tar.gz/StImageViewer/StImageLoader.h Changed
79
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2007-2014 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * StImageViewer program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU General Public License as published by
8
@@ -28,6 +28,7 @@
9
 #include <StSlots/StSignal.h>
10
 #include <StStrings/StLangMap.h>
11
 #include <StThreads/StProcess.h>
12
+#include <StThreads/StResourceManager.h>
13
 
14
 class StThread;
15
 
16
@@ -70,12 +71,13 @@
17
         return myMimeList;
18
     }
19
 
20
-    ST_LOCAL StImageLoader(const StImageFile::ImageClass     theImageLib,
21
-                           const StHandle<StMsgQueue>&       theMsgQueue,
22
-                           const StHandle<StLangMap>&        theLangMap,
23
-                           const StHandle<StPlayList>&       thePlayList,
24
-                           const StHandle<StGLTextureQueue>& theTextureQueue,
25
-                           const GLint                       theMaxTexDim);
26
+    ST_LOCAL StImageLoader(const StImageFile::ImageClass      theImageLib,
27
+                           const StHandle<StResourceManager>& theResMgr,
28
+                           const StHandle<StMsgQueue>&        theMsgQueue,
29
+                           const StHandle<StLangMap>&         theLangMap,
30
+                           const StHandle<StPlayList>&        thePlayList,
31
+                           const StHandle<StGLTextureQueue>&  theTextureQueue,
32
+                           const GLint                        theMaxTexDim);
33
     ST_LOCAL ~StImageLoader();
34
 
35
     ST_LOCAL inline const StHandle<StGLTextureQueue>& getTextureQueue() const {
36
@@ -119,10 +121,6 @@
37
         return (!anInfo.isNull() && anInfo->Id == theParams) ? anInfo : NULL;
38
     }
39
 
40
-    ST_LOCAL StPlayList& getPlayList() {
41
-        return *myPlayList;
42
-    }
43
-
44
     ST_LOCAL void setStereoFormat(const StFormat theSrcFormat) {
45
         myStFormatByUser = theSrcFormat;
46
     }
47
@@ -177,18 +175,19 @@
48
 
49
         private:
50
 
51
-    const StMIMEList           myMimeList;
52
-    StHandle<StThread>         myThread;        //!< main loop thread
53
-    StHandle<StLangMap>        myLangMap;       //!< translations dictionary
54
-    StHandle<StPlayList>       myPlayList;      //!< play list
55
-    mutable StMutex            myLock;          //!< lock to access not thread-safe properties
56
-    StCondition                myLoadNextEvent;
57
-    StFormat                   myStFormatByUser;//!< target source format (auto-detect by default)
58
-    GLint                      myMaxTexDim;     //!< value for GL_MAX_TEXTURE_SIZE
59
-    StHandle<StGLTextureQueue> myTextureQueue;  //!< decoded frames queue
60
-    StHandle<StImageInfo>      myImgInfo;       //!< info about currently loaded image
61
-    StHandle<StImageInfo>      myInfoToSave;    //!< modified info to be saved
62
-    StHandle<StMsgQueue>       myMsgQueue;      //!< messages queue
63
+    const StMIMEList            myMimeList;
64
+    StHandle<StThread>          myThread;        //!< main loop thread
65
+    StHandle<StResourceManager> myResMgr;        //!< resource manager
66
+    StHandle<StLangMap>         myLangMap;       //!< translations dictionary
67
+    StHandle<StPlayList>        myPlayList;      //!< play list
68
+    mutable StMutex             myLock;          //!< lock to access not thread-safe properties
69
+    StCondition                 myLoadNextEvent;
70
+    StFormat                    myStFormatByUser;//!< target source format (auto-detect by default)
71
+    GLint                       myMaxTexDim;     //!< value for GL_MAX_TEXTURE_SIZE
72
+    StHandle<StGLTextureQueue>  myTextureQueue;  //!< decoded frames queue
73
+    StHandle<StImageInfo>       myImgInfo;       //!< info about currently loaded image
74
+    StHandle<StImageInfo>       myInfoToSave;    //!< modified info to be saved
75
+    StHandle<StMsgQueue>        myMsgQueue;      //!< messages queue
76
 
77
     volatile StImageFile::ImageClass myImageLib;
78
     volatile Action            myAction;
79
sview-16_06.tar.gz/StImageViewer/StImageOpenDialog.cpp Added
117
 
1
@@ -0,0 +1,115 @@
2
+/**
3
+ * Copyright © 2016 Kirill Gavrilov <kirill@sview.ru>
4
+ *
5
+ * StImageViewer program is free software: you can redistribute it and/or modify
6
+ * it under the terms of the GNU General Public License as published by
7
+ * the Free Software Foundation, either version 3 of the License, or
8
+ * (at your option) any later version.
9
+ *
10
+ * StImageViewer program is distributed in the hope that it will be useful,
11
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
+ * See the GNU General Public License for more details.
14
+ *
15
+ * You should have received a copy of the GNU General Public
16
+ * License along with this program.
17
+ * If not, see <http://www.gnu.org/licenses/>.
18
+ */
19
+
20
+#include "StImageOpenDialog.h"
21
+
22
+#include "StImageViewer.h"
23
+#include "StImageViewerStrings.h"
24
+
25
+StImageOpenDialog::StImageOpenDialog(StImageViewer* thePlugin)
26
+: myPlugin(thePlugin),
27
+  myState(StImageOpenDialog::Dialog_Inactive) {
28
+    //
29
+}
30
+
31
+StImageOpenDialog::~StImageOpenDialog() {
32
+    if(!myThread.isNull()) {
33
+        myThread->wait();
34
+    }
35
+}
36
+
37
+bool StImageOpenDialog::openDialog(const size_t theNbFiles) {
38
+    StMutexAuto aLock(myMutex);
39
+    if(myState != StImageOpenDialog::Dialog_Inactive) {
40
+        return false;
41
+    }
42
+
43
+    if(myPlugin->params.lastFolder.isEmpty()) {
44
+        StHandle<StFileNode> aCurrFile = myPlugin->myPlayList->getCurrentFile();
45
+        if(!aCurrFile.isNull()) {
46
+            myPlugin->params.lastFolder = aCurrFile->isEmpty() ? aCurrFile->getFolderPath() : aCurrFile->getValue(0)->getFolderPath();
47
+        }
48
+    }
49
+
50
+    myFolder = myPlugin->params.lastFolder;
51
+    myState  = theNbFiles == 2 ? StImageOpenDialog::Dialog_ActiveDouble : StImageOpenDialog::Dialog_ActiveSingle;
52
+    myThread = new StThread(openDialogThread, this);
53
+    return true;
54
+}
55
+
56
+void StImageOpenDialog::resetResults() {
57
+    StMutexAuto aLock(myMutex);
58
+    if(myState != StImageOpenDialog::Dialog_HasFiles) {
59
+        return;
60
+    }
61
+
62
+    if(!myThread.isNull()) {
63
+        myThread->wait();
64
+        myThread.nullify();
65
+    }
66
+
67
+    myState = Dialog_Inactive;
68
+    myPathLeft .clear();
69
+    myPathRight.clear();
70
+}
71
+
72
+void StImageOpenDialog::setPaths(const StString& thePathLeft,
73
+                                 const StString& thePathRight) {
74
+    StMutexAuto aLock(myMutex);
75
+    if(myState != StImageOpenDialog::Dialog_Inactive) {
76
+        return;
77
+    }
78
+
79
+    myPathLeft  = thePathLeft;
80
+    myPathRight = thePathRight;
81
+    if(!myPathLeft.isEmpty()) {
82
+        myState = StImageOpenDialog::Dialog_HasFiles;
83
+    }
84
+}
85
+
86
+SV_THREAD_FUNCTION StImageOpenDialog::openDialogThread(void* theArg) {
87
+    StImageOpenDialog* aHandler = (StImageOpenDialog* )theArg;
88
+    aHandler->dialogLoop();
89
+    return SV_THREAD_RETURN 0;
90
+}
91
+
92
+void StImageOpenDialog::dialogLoop() {
93
+    myPathLeft .clear();
94
+    myPathRight.clear();
95
+    StString aTitle = myPlugin->tr(myState == StImageOpenDialog::Dialog_ActiveDouble
96
+                                 ? StImageViewerStrings::DIALOG_OPEN_LEFT
97
+                                 : StImageViewerStrings::DIALOG_OPEN_FILE);
98
+
99
+    StString aDummy;
100
+    if(!StFileNode::openFileDialog(myFolder, aTitle, myPlugin->myLoader->getMimeList(), myPathLeft, false)) {
101
+        StMutexAuto aLock(myMutex);
102
+        myState = StImageOpenDialog::Dialog_Inactive;
103
+        return;
104
+    } else if(myState == StImageOpenDialog::Dialog_ActiveDouble) {
105
+        aTitle = myPlugin->tr(StImageViewerStrings::DIALOG_OPEN_RIGHT);
106
+        StFileNode::getFolderAndFile(myPathLeft, myFolder, aDummy);
107
+        if(!StFileNode::openFileDialog(myFolder, aTitle, myPlugin->myLoader->getMimeList(), myPathRight, false)) {
108
+            StMutexAuto aLock(myMutex);
109
+            myState = StImageOpenDialog::Dialog_Inactive;
110
+            return;
111
+        }
112
+    }
113
+
114
+    StMutexAuto aLock(myMutex);
115
+    myState = StImageOpenDialog::Dialog_HasFiles;
116
+}
117
sview-16_06.tar.gz/StImageViewer/StImageOpenDialog.h Added
116
 
1
@@ -0,0 +1,114 @@
2
+/**
3
+ * Copyright © 2016 Kirill Gavrilov <kirill@sview.ru>
4
+ *
5
+ * StImageViewer program is free software: you can redistribute it and/or modify
6
+ * it under the terms of the GNU General Public License as published by
7
+ * the Free Software Foundation, either version 3 of the License, or
8
+ * (at your option) any later version.
9
+ *
10
+ * StImageViewer program is distributed in the hope that it will be useful,
11
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
+ * See the GNU General Public License for more details.
14
+ *
15
+ * You should have received a copy of the GNU General Public
16
+ * License along with this program.
17
+ * If not, see <http://www.gnu.org/licenses/>.
18
+ */
19
+
20
+#ifndef __StImageOpenDialog_h_
21
+#define __StImageOpenDialog_h_
22
+
23
+#include <StStrings/StString.h>
24
+#include <StThreads/StThread.h>
25
+#include <StThreads/StMutex.h>
26
+
27
+class StImageViewer;
28
+
29
+/**
30
+ * Auxiliary class to create standard non-blocking open file dialog in dedicated thread.
31
+ */
32
+class StImageOpenDialog {
33
+
34
+        public:
35
+
36
+    enum DialogState {
37
+        Dialog_Inactive,     //!< dialog is not opened
38
+        Dialog_ActiveSingle, //!< dialog is opened and waiting for user input (one file)
39
+        Dialog_ActiveDouble, //!< dialog is opened and waiting for user input (two files)
40
+        Dialog_HasFiles,     //!< dialog has been closed and waiting for processing results
41
+    };
42
+
43
+        public:
44
+
45
+    /**
46
+     * Main constructor.
47
+     */
48
+    ST_LOCAL StImageOpenDialog(StImageViewer* thePlugin);
49
+
50
+    /**
51
+     * Destructor.
52
+     */
53
+    ST_LOCAL ~StImageOpenDialog();
54
+
55
+    /**
56
+     * Create open file dialog.
57
+     */
58
+    ST_LOCAL bool openDialog(const size_t theNbFiles);
59
+
60
+    /**
61
+     * Return true for Dialog_HasFiles state.
62
+     */
63
+    ST_LOCAL bool hasResults() {
64
+        StMutexAuto aLock(myMutex);
65
+        return myState == StImageOpenDialog::Dialog_HasFiles;
66
+    }
67
+
68
+    /**
69
+     * Reset results.
70
+     */
71
+    ST_LOCAL void resetResults();
72
+
73
+    /**
74
+     * Return path to the left file.
75
+     * Should NOT be called within Active state.
76
+     */
77
+    ST_LOCAL const StString& getPathLeft()  const { return myPathLeft; }
78
+
79
+    /**
80
+     * Set paths to open.
81
+     */
82
+    ST_LOCAL void setPaths(const StString& thePathLeft,
83
+                           const StString& thePathRight);
84
+
85
+    /**
86
+     * Return path to the right file.
87
+     * Should NOT be called within Active state.
88
+     */
89
+    ST_LOCAL const StString& getPathRight() const { return myPathRight; }
90
+
91
+        private:
92
+
93
+    /**
94
+     * Thread function wrapper.
95
+     */
96
+    static SV_THREAD_FUNCTION openDialogThread(void* theArg);
97
+
98
+    /**
99
+     * Thread function.
100
+     */
101
+    ST_LOCAL void dialogLoop();
102
+
103
+        private:
104
+
105
+    StImageViewer*     myPlugin;
106
+    StHandle<StThread> myThread;
107
+    StMutex            myMutex;
108
+    StString           myFolder;
109
+    StString           myPathLeft;
110
+    StString           myPathRight;
111
+    DialogState        myState;
112
+
113
+};
114
+
115
+#endif // __StImageOpenDialog_h_
116
sview-15_11.tar.gz/StImageViewer/StImageViewer.cbp -> sview-16_06.tar.gz/StImageViewer/StImageViewer.cbp Changed
45
 
1
@@ -175,15 +175,14 @@
2
                    <Add option="-DST_HAVE_STCONFIG" />
3
                </Compiler>
4
                <Linker>
5
-                   <Add option="-s" />
6
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
7
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
8
                    <Add option="-framework Appkit" />
9
                    <Add option="-framework OpenGL" />
10
                    <Add library="objc" />
11
                </Linker>
12
                <ExtraCommands>
13
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
14
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
15
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
16
                </ExtraCommands>
17
            </Target>
18
            <Target title="MAC_gcc_DEBUG">
19
@@ -201,14 +200,14 @@
20
                    <Add option="-DST_HAVE_STCONFIG" />
21
                </Compiler>
22
                <Linker>
23
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
24
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
25
                    <Add option="-framework Appkit" />
26
                    <Add option="-framework OpenGL" />
27
                    <Add library="objc" />
28
                </Linker>
29
                <ExtraCommands>
30
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
31
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
32
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
33
                </ExtraCommands>
34
            </Target>
35
        </Build>
36
@@ -241,6 +240,8 @@
37
        </Linker>
38
        <Unit filename="StImageLoader.cpp" />
39
        <Unit filename="StImageLoader.h" />
40
+       <Unit filename="StImageOpenDialog.cpp" />
41
+       <Unit filename="StImageOpenDialog.h" />
42
        <Unit filename="StImagePluginInfo.h" />
43
        <Unit filename="StImageViewer.cpp" />
44
        <Unit filename="StImageViewer.h" />
45
sview-15_11.tar.gz/StImageViewer/StImageViewer.cpp -> sview-16_06.tar.gz/StImageViewer/StImageViewer.cpp Changed
966
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2007-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * StImageViewer program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU General Public License as published by
8
@@ -18,6 +18,7 @@
9
 
10
 #include "StImageViewer.h"
11
 
12
+#include "StImageOpenDialog.h"
13
 #include "StImagePluginInfo.h"
14
 #include "StImageViewerStrings.h"
15
 
16
@@ -50,41 +51,22 @@
17
 namespace {
18
 
19
     static const char ST_SETTING_SLIDESHOW_DELAY[] = "slideShowDelay";
20
-    static const char ST_SETTING_FPSTARGET[]   = "fpsTarget";
21
-    static const char ST_SETTING_SRCFORMAT[]   = "srcFormat";
22
     static const char ST_SETTING_LAST_FOLDER[] = "lastFolder";
23
     static const char ST_SETTING_RECENT_L[]    = "recentL";
24
     static const char ST_SETTING_RECENT_R[]    = "recentR";
25
-    static const char ST_SETTING_SAVE_RECENT[] = "toSaveRecent";
26
-    static const char ST_SETTING_SHOW_LIST[]   = "showPlaylist";
27
     static const char ST_SETTING_COMPRESS[]    = "toCompress";
28
     static const char ST_SETTING_ESCAPENOQUIT[]= "escNoQuit";
29
     static const char ST_SETTING_FULLSCREENUI[]= "fullScreenUI";
30
 
31
-    static const char ST_SETTING_SCALE_ADJUST[]  = "scaleAdjust";
32
-    static const char ST_SETTING_SCALE_FORCE2X[] = "scale2X";
33
-    static const char ST_SETTING_FULLSCREEN[]  = "fullscreen";
34
     static const char ST_SETTING_SLIDESHOW[]   = "slideshow";
35
-    static const char ST_SETTING_TRACK_HEAD[]  = "toTrackHead";
36
-    static const char ST_SETTING_SHOW_FPS[]    = "toShowFps";
37
-    static const char ST_SETTING_MOBILE_UI[]   = "isMobileUI";
38
-    static const char ST_SETTING_VSYNC[]       = "vsync";
39
     static const char ST_SETTING_VIEWMODE[]    = "viewMode";
40
-    static const char ST_SETTING_STEREO_MODE[] = "viewStereoMode";
41
-    static const char ST_SETTING_TEXFILTER[]   = "viewTexFilter";
42
     static const char ST_SETTING_GAMMA[]       = "viewGamma";
43
-    static const char ST_SETTING_RATIO[]       = "ratio";
44
-    static const char ST_SETTING_HEAL_ANAMORPHIC[]    = "toHealAnamorphic";
45
-    static const char ST_SETTING_UPDATES_LAST_CHECK[] = "updatesLastCheck";
46
-    static const char ST_SETTING_UPDATES_INTERVAL[]   = "updatesInterval";
47
     static const char ST_SETTING_IMAGELIB[]    = "imageLib";
48
 
49
     static const char ST_ARGUMENT_FILE_LEFT[]  = "left";
50
     static const char ST_ARGUMENT_FILE_RIGHT[] = "right";
51
     static const char ST_ARGUMENT_FILE_LAST[]  = "last";
52
 
53
-    static const char ST_ARGUMENT_SHOW_MENU[]  = "toShowMenu";
54
-    static const char ST_ARGUMENT_SHOW_TOPBAR[]= "toShowTopbar";
55
     static const char ST_ARGUMENT_MONITOR[]    = "monitorId";
56
     static const char ST_ARGUMENT_WINLEFT[]    = "windowLeft";
57
     static const char ST_ARGUMENT_WINTOP[]     = "windowTop";
58
@@ -93,167 +75,41 @@
59
 
60
 }
61
 
62
-/**
63
- * Auxiliary class to create standard non-blocking open file dialog in dedicated thread.
64
- */
65
-class StImageViewer::StOpenImage {
66
-
67
-        public:
68
-
69
-    enum DialogState {
70
-        Dialog_Inactive,     //!< dialog is not opened
71
-        Dialog_ActiveSingle, //!< dialog is opened and waiting for user input (one file)
72
-        Dialog_ActiveDouble, //!< dialog is opened and waiting for user input (two files)
73
-        Dialog_HasFiles,     //!< dialog has been closed and waiting for processing results
74
-    };
75
-
76
-        public:
77
-
78
-    /**
79
-     * Main constructor.
80
-     */
81
-    ST_LOCAL StOpenImage(StImageViewer* thePlugin)
82
-    : myPlugin(thePlugin),
83
-      myState(StOpenImage::Dialog_Inactive) {}
84
-
85
-    /**
86
-     * Destructor.
87
-     */
88
-    ST_LOCAL ~StOpenImage() {
89
-        if(!myThread.isNull()) {
90
-            myThread->wait();
91
-        }
92
-    }
93
-
94
-    /**
95
-     * Create open file dialog.
96
-     */
97
-    bool openDialog(const size_t theNbFiles) {
98
-        StMutexAuto aLock(myMutex);
99
-        if(myState != StOpenImage::Dialog_Inactive) {
100
-            return false;
101
-        }
102
-
103
-        if(myPlugin->params.lastFolder.isEmpty()) {
104
-            StHandle<StFileNode> aCurrFile = myPlugin->myLoader->getPlayList().getCurrentFile();
105
-            if(!aCurrFile.isNull()) {
106
-                myPlugin->params.lastFolder = aCurrFile->isEmpty() ? aCurrFile->getFolderPath() : aCurrFile->getValue(0)->getFolderPath();
107
-            }
108
-        }
109
-
110
-        myFolder = myPlugin->params.lastFolder;
111
-        myState  = theNbFiles == 2 ? StOpenImage::Dialog_ActiveDouble : StOpenImage::Dialog_ActiveSingle;
112
-        myThread = new StThread(openDialogThread, this);
113
-        return true;
114
-    }
115
-
116
-    /**
117
-     * Return true for Dialog_HasFiles state.
118
-     */
119
-    ST_LOCAL bool hasResults() {
120
-        StMutexAuto aLock(myMutex);
121
-        return myState == StOpenImage::Dialog_HasFiles;
122
-    }
123
-
124
-    /**
125
-     * Reset results.
126
-     */
127
-    ST_LOCAL void resetResults() {
128
-        StMutexAuto aLock(myMutex);
129
-        if(myState != StOpenImage::Dialog_HasFiles) {
130
-            return;
131
-        }
132
-
133
-        if(!myThread.isNull()) {
134
-            myThread->wait();
135
-            myThread.nullify();
136
-        }
137
-
138
-        myState = Dialog_Inactive;
139
-        myPathLeft .clear();
140
-        myPathRight.clear();
141
-    }
142
-
143
-    /**
144
-     * Return path to the left file.
145
-     * Should NOT be called within Active state.
146
-     */
147
-    ST_LOCAL const StString& getPathLeft()  const { return myPathLeft; }
148
-
149
-    /**
150
-     * Set paths to open.
151
-     */
152
-    ST_LOCAL void setPaths(const StString& thePathLeft,
153
-                           const StString& thePathRight) {
154
-        StMutexAuto aLock(myMutex);
155
-        if(myState != StOpenImage::Dialog_Inactive) {
156
-            return;
157
-        }
158
-
159
-        myPathLeft  = thePathLeft;
160
-        myPathRight = thePathRight;
161
-        if(!myPathLeft.isEmpty()) {
162
-            myState = StOpenImage::Dialog_HasFiles;
163
-        }
164
-    }
165
-
166
-    /**
167
-     * Return path to the right file.
168
-     * Should NOT be called within Active state.
169
-     */
170
-    ST_LOCAL const StString& getPathRight() const { return myPathRight; }
171
-
172
-        private:
173
-
174
-    /**
175
-     * Thread function wrapper.
176
-     */
177
-    static SV_THREAD_FUNCTION openDialogThread(void* theArg) {
178
-        StOpenImage* aHandler = (StOpenImage* )theArg;
179
-        aHandler->dialogLoop();
180
-        return SV_THREAD_RETURN 0;
181
-    }
182
-
183
-    /**
184
-     * Thread function.
185
-     */
186
-    ST_LOCAL void dialogLoop() {
187
-        myPathLeft .clear();
188
-        myPathRight.clear();
189
-        StString aTitle = myPlugin->myLangMap->getValue(myState == StOpenImage::Dialog_ActiveDouble
190
-                                                      ? StImageViewerStrings::DIALOG_OPEN_LEFT
191
-                                                      : StImageViewerStrings::DIALOG_OPEN_FILE);
192
-
193
-        StString aDummy;
194
-        if(!StFileNode::openFileDialog(myFolder, aTitle, myPlugin->myLoader->getMimeList(), myPathLeft, false)) {
195
-            StMutexAuto aLock(myMutex);
196
-            myState = StOpenImage::Dialog_Inactive;
197
-            return;
198
-        } else if(myState == StOpenImage::Dialog_ActiveDouble) {
199
-            aTitle = myPlugin->myLangMap->getValue(StImageViewerStrings::DIALOG_OPEN_RIGHT);
200
-            StFileNode::getFolderAndFile(myPathLeft, myFolder, aDummy);
201
-            if(!StFileNode::openFileDialog(myFolder, aTitle, myPlugin->myLoader->getMimeList(), myPathRight, false)) {
202
-                StMutexAuto aLock(myMutex);
203
-                myState = StOpenImage::Dialog_Inactive;
204
-                return;
205
-            }
206
-        }
207
-
208
-        StMutexAuto aLock(myMutex);
209
-        myState = StOpenImage::Dialog_HasFiles;
210
-    }
211
-
212
-        private:
213
-
214
-    StImageViewer*     myPlugin;
215
-    StHandle<StThread> myThread;
216
-    StMutex            myMutex;
217
-    StString           myFolder;
218
-    StString           myPathLeft;
219
-    StString           myPathRight;
220
-    DialogState        myState;
221
-
222
-};
223
+void StImageViewer::updateStrings() {
224
+    using namespace StImageViewerStrings;
225
+    params.IsFullscreen->setName(tr(MENU_VIEW_FULLSCREEN));
226
+
227
+    params.ExitOnEscape->setName(tr(OPTION_EXIT_ON_ESCAPE));
228
+    params.ExitOnEscape->defineOption(ActionOnEscape_Nothing,              tr(OPTION_EXIT_ON_ESCAPE_NEVER));
229
+    params.ExitOnEscape->defineOption(ActionOnEscape_ExitOneClick,         tr(OPTION_EXIT_ON_ESCAPE_ONE_CLICK));
230
+    params.ExitOnEscape->defineOption(ActionOnEscape_ExitDoubleClick,      tr(OPTION_EXIT_ON_ESCAPE_DOUBLE_CLICK));
231
+    params.ExitOnEscape->defineOption(ActionOnEscape_ExitOneClickWindowed, tr(OPTION_EXIT_ON_ESCAPE_WINDOWED));
232
+
233
+    params.ToRestoreRatio->setName(tr(MENU_VIEW_RATIO_KEEP_ON_RESTART));
234
+
235
+    params.ScaleAdjust->setName(tr(MENU_HELP_SCALE));
236
+    params.ScaleAdjust->defineOption(StGLRootWidget::ScaleAdjust_Small,  tr(MENU_HELP_SCALE_SMALL));
237
+    params.ScaleAdjust->defineOption(StGLRootWidget::ScaleAdjust_Normal, tr(MENU_HELP_SCALE_NORMAL));
238
+    params.ScaleAdjust->defineOption(StGLRootWidget::ScaleAdjust_Big,    tr(MENU_HELP_SCALE_BIG));
239
+    params.ScaleHiDPI2X->setName(tr(MENU_HELP_SCALE_HIDPI2X));
240
+    params.CheckUpdatesDays->setName(tr(MENU_HELP_UPDATES));
241
+    params.CheckUpdatesDays->defineOption(StCheckUpdates::UpdateInteval_Never,     tr(MENU_HELP_UPDATES_NEVER));
242
+    params.CheckUpdatesDays->defineOption(StCheckUpdates::UpdateInteval_EveryDay,  tr(MENU_HELP_UPDATES_DAY));
243
+    params.CheckUpdatesDays->defineOption(StCheckUpdates::UpdateInteval_EveryWeek, tr(MENU_HELP_UPDATES_WEEK));
244
+    params.CheckUpdatesDays->defineOption(StCheckUpdates::UpdateInteval_EveryYear, tr(MENU_HELP_UPDATES_YEAR));
245
+    params.LastUpdateDay->setName(tr(MENU_HELP_UPDATES));
246
+    params.SrcStereoFormat->setName(tr(MENU_MEDIA_SRC_FORMAT));
247
+    params.ToShowPlayList->setName(tr(PLAYLIST));
248
+    params.ToTrackHead->setName(tr(MENU_VIEW_TRACK_HEAD));
249
+    params.ToShowFps->setName(tr(MENU_SHOW_FPS));
250
+    params.ToShowMenu->setName(stCString("Show main menu"));
251
+    params.ToShowTopbar->setName(stCString("Show top toolbar"));
252
+    params.IsMobileUI->setName(stCString("Mobile UI"));
253
+    params.IsVSyncOn->setName(tr(MENU_VSYNC));
254
+    params.ToSaveRecent->setName(stCString("Remember recent file"));
255
+    params.TargetFps->setName(stCString("FPS Target"));
256
+    myLangMap->params.language->setName(tr(MENU_HELP_LANGS));
257
+}
258
 
259
 StImageViewer::StImageViewer(const StHandle<StResourceManager>& theResMgr,
260
                              const StNativeWin_t                theParentWin,
261
@@ -267,65 +123,67 @@
262
   mySlideShowTimer(false),
263
   mySlideShowDelay(4.0),
264
   //
265
-  myLastUpdateDay(0),
266
   myToCheckUpdates(true),
267
-  myToRecreateMenu(false),
268
   myToSaveSrcFormat(false),
269
   myEscNoQuit(false),
270
   myToHideUIFullScr(false),
271
   myToCheckPoorOrient(true) {
272
     mySettings = new StSettings(myResMgr, myAppName);
273
     myLangMap  = new StTranslations(myResMgr, StImageViewer::ST_DRAWER_PLUGIN_NAME);
274
-    myOpenDialog = new StOpenImage(this);
275
+    myOpenDialog = new StImageOpenDialog(this);
276
     StImageViewerStrings::loadDefaults(*myLangMap);
277
+    myLangMap->params.language->signals.onChanged += stSlot(this, &StImageViewer::doChangeLanguage);
278
 
279
-    myTitle = "sView - Image Viewer";
280
+    myTitle = stCString("sView - Image Viewer");
281
     if(!theAppName.isEmpty()) {
282
         myTitle = theAppName;
283
     }
284
     //
285
-    params.isFullscreen = new StBoolParam(false);
286
-    params.isFullscreen->signals.onChanged.connect(this, &StImageViewer::doFullscreen);
287
-    params.toRestoreRatio   = new StBoolParam(false);
288
-    params.ScaleAdjust      = new StInt32Param(StGLRootWidget::ScaleAdjust_Normal);
289
-    mySettings->loadParam (ST_SETTING_SCALE_ADJUST, params.ScaleAdjust);
290
-    params.ScaleAdjust->signals.onChanged = stSlot(this, &StImageViewer::doScaleGui);
291
-    params.ScaleHiDPI       = new StFloat32Param(1.0f,       // initial value
292
-                                                 0.5f, 3.0f, // min, max values
293
-                                                 1.0f,       // default value
294
-                                                 1.0f,       // incremental step
295
-                                                 0.001f);    // equality tolerance
296
-    params.ScaleHiDPI2X     = new StBoolParam(false);
297
-    mySettings->loadParam (ST_SETTING_SCALE_FORCE2X, params.ScaleHiDPI2X);
298
-    params.ScaleHiDPI2X->signals.onChanged = stSlot(this, &StImageViewer::doScaleHiDPI);
299
-    params.checkUpdatesDays = new StInt32Param(7);
300
-    params.srcFormat        = new StInt32Param(StFormat_AUTO);
301
-    params.srcFormat->signals.onChanged.connect(this, &StImageViewer::doSwitchSrcFormat);
302
-    params.ToShowPlayList   = new StBoolParam(false);
303
+    params.IsFullscreen = new StBoolParamNamed(false, stCString("fullscreen"));
304
+    params.IsFullscreen->signals.onChanged.connect(this, &StImageViewer::doFullscreen);
305
+    params.ExitOnEscape = new StEnumParam(ActionOnEscape_ExitOneClick, stCString("exitOnEscape"));
306
+    params.ToRestoreRatio = new StBoolParamNamed(false, stCString("toRestoreRatio"));
307
+    params.ScaleAdjust = new StEnumParam(StGLRootWidget::ScaleAdjust_Normal, stCString("scaleAdjust"));
308
+    params.ScaleHiDPI       = new StFloat32Param(1.0f, stCString("scaleHiDPI"));
309
+    params.ScaleHiDPI->setMinMaxValues(0.5f, 3.0f);
310
+    params.ScaleHiDPI->setDefValue(1.0f);
311
+    params.ScaleHiDPI->setStep(1.0f);
312
+    params.ScaleHiDPI->setTolerance(0.001f);
313
+    params.ScaleHiDPI2X     = new StBoolParamNamed(false, stCString("scale2X"));
314
+    params.CheckUpdatesDays = new StEnumParam(StCheckUpdates::UpdateInteval_EveryWeek, stCString("updatesIntervalEnum"));
315
+    params.LastUpdateDay    = new StInt32ParamNamed(0, stCString("updatesLastCheck"));
316
+    params.SrcStereoFormat  = new StInt32ParamNamed(StFormat_AUTO, stCString("srcFormat"));
317
+    params.SrcStereoFormat->signals.onChanged.connect(this, &StImageViewer::doSwitchSrcFormat);
318
+    params.ToShowPlayList   = new StBoolParamNamed(false, stCString("showPlaylist"));
319
     params.ToShowPlayList->signals.onChanged = stSlot(this, &StImageViewer::doShowPlayList);
320
-    params.ToTrackHead   = new StBoolParamNamed(true,  tr(StImageViewerStrings::MENU_VIEW_TRACK_HEAD));
321
-    params.ToShowFps     = new StBoolParamNamed(false, tr(StImageViewerStrings::MENU_SHOW_FPS));
322
-    params.ToShowMenu    = new StBoolParamNamed(true, "Show main menu");
323
-    params.ToShowTopbar  = new StBoolParamNamed(true, "Show top toolbar");
324
-    params.IsMobileUI = new StBoolParamNamed(StWindow::isMobile(), "Mobile UI");
325
+    params.ToTrackHead   = new StBoolParamNamed(true,  stCString("toTrackHead"));
326
+    params.ToShowFps     = new StBoolParamNamed(false, stCString("toShowFps"));
327
+    params.ToShowMenu    = new StBoolParamNamed(true,  stCString("toShowMenu"));
328
+    params.ToShowTopbar  = new StBoolParamNamed(true,  stCString("toShowTopbar"));
329
+    params.IsMobileUI    = new StBoolParamNamed(StWindow::isMobile(), stCString("isMobileUI"));
330
     params.IsMobileUI->signals.onChanged = stSlot(this, &StImageViewer::doScaleHiDPI);
331
-    params.IsVSyncOn  = new StBoolParam(true);
332
+    params.IsVSyncOn     = new StBoolParamNamed(true,  stCString("vsync"));
333
     params.IsVSyncOn->signals.onChanged = stSlot(this, &StImageViewer::doSwitchVSync);
334
     StApplication::params.VSyncMode->setValue(StGLContext::VSync_ON);
335
-    params.ToSaveRecent = new StBoolParam(false);
336
-
337
+    params.ToSaveRecent = new StBoolParamNamed(false, stCString("toSaveRecent"));
338
     params.imageLib = StImageFile::ST_LIBAV,
339
-    params.TargetFps = 0;
340
+    params.TargetFps = new StInt32ParamNamed(0, stCString("fpsTarget"));
341
+    updateStrings();
342
 
343
-    mySettings->loadInt32 (ST_SETTING_FPSTARGET,          params.TargetFps);
344
+    mySettings->loadParam(params.ExitOnEscape);
345
+    mySettings->loadParam(params.ScaleAdjust);
346
+    params.ScaleAdjust->signals.onChanged  = stSlot(this, &StImageViewer::doScaleGui);
347
+    mySettings->loadParam (params.ScaleHiDPI2X);
348
+    params.ScaleHiDPI2X->signals.onChanged = stSlot(this, &StImageViewer::doScaleHiDPI);
349
+    mySettings->loadParam (params.TargetFps);
350
     mySettings->loadString(ST_SETTING_LAST_FOLDER,        params.lastFolder);
351
-    mySettings->loadInt32 (ST_SETTING_UPDATES_LAST_CHECK, myLastUpdateDay);
352
-    mySettings->loadParam (ST_SETTING_UPDATES_INTERVAL,   params.checkUpdatesDays);
353
-    myToCheckPoorOrient = !mySettings->loadParam(ST_SETTING_TRACK_HEAD, params.ToTrackHead);
354
-    mySettings->loadParam (ST_SETTING_SHOW_FPS,           params.ToShowFps);
355
-    mySettings->loadParam (ST_SETTING_MOBILE_UI,          params.IsMobileUI);
356
-    mySettings->loadParam (ST_SETTING_VSYNC,              params.IsVSyncOn);
357
-    mySettings->loadParam (ST_SETTING_SHOW_LIST,          params.ToShowPlayList);
358
+    mySettings->loadParam (params.LastUpdateDay);
359
+    mySettings->loadParam (params.CheckUpdatesDays);
360
+    myToCheckPoorOrient = !mySettings->loadParam(params.ToTrackHead);
361
+    mySettings->loadParam (params.ToShowFps);
362
+    mySettings->loadParam (params.IsMobileUI);
363
+    mySettings->loadParam (params.IsVSyncOn);
364
+    mySettings->loadParam (params.ToShowPlayList);
365
 
366
     int32_t aSlideShowDelayInt = int32_t(mySlideShowDelay);
367
     mySettings->loadInt32 (ST_SETTING_SLIDESHOW_DELAY,    aSlideShowDelayInt);
368
@@ -356,22 +214,22 @@
369
 
370
     // create actions
371
     StHandle<StAction> anAction;
372
-    anAction = new StActionBool(stCString("DoFullscreen"), params.isFullscreen);
373
+    anAction = new StActionBool(stCString("DoFullscreen"), params.IsFullscreen);
374
     addAction(Action_Fullscreen, anAction, ST_VK_F, ST_VK_RETURN);
375
 
376
     anAction = new StActionBool(stCString("DoShowFPS"), params.ToShowFps);
377
     addAction(Action_ShowFps, anAction, ST_VK_F12);
378
 
379
-    anAction = new StActionIntValue(stCString("DoSrcAuto"), params.srcFormat, StFormat_AUTO);
380
+    anAction = new StActionIntValue(stCString("DoSrcAuto"), params.SrcStereoFormat, StFormat_AUTO);
381
     addAction(Action_SrcAuto, anAction, ST_VK_A);
382
 
383
-    anAction = new StActionIntValue(stCString("DoSrcMono"), params.srcFormat, StFormat_Mono);
384
+    anAction = new StActionIntValue(stCString("DoSrcMono"), params.SrcStereoFormat, StFormat_Mono);
385
     addAction(Action_SrcMono, anAction, ST_VK_M);
386
 
387
-    anAction = new StActionIntValue(stCString("DoSrcOverUnder"), params.srcFormat, StFormat_TopBottom_LR);
388
+    anAction = new StActionIntValue(stCString("DoSrcOverUnder"), params.SrcStereoFormat, StFormat_TopBottom_LR);
389
     addAction(Action_SrcOverUnderLR, anAction, ST_VK_O);
390
 
391
-    anAction = new StActionIntValue(stCString("DoSrcSideBySide"), params.srcFormat, StFormat_SideBySide_RL);
392
+    anAction = new StActionIntValue(stCString("DoSrcSideBySide"), params.SrcStereoFormat, StFormat_SideBySide_RL);
393
     addAction(Action_SrcSideBySideRL, anAction, ST_VK_S);
394
 
395
     anAction = new StActionIntSlot(stCString("DoFileInfo"), stSlot(this, &StImageViewer::doAboutImage), 0);
396
@@ -435,34 +293,34 @@
397
         return;
398
     }
399
 
400
-    mySettings->saveParam(ST_SETTING_STEREO_MODE, myGUI->myImage->params.displayMode);
401
-    mySettings->saveInt32(ST_SETTING_GAMMA, stRound(100.0f * myGUI->myImage->params.gamma->getValue()));
402
-    mySettings->saveParam(ST_SETTING_HEAL_ANAMORPHIC, myGUI->myImage->params.ToHealAnamorphicRatio);
403
-    if(params.toRestoreRatio->getValue()) {
404
-        mySettings->saveParam(ST_SETTING_RATIO, myGUI->myImage->params.displayRatio);
405
-    } else {
406
-        mySettings->saveInt32(ST_SETTING_RATIO, StGLImageRegion::RATIO_AUTO);
407
-    }
408
-    mySettings->saveParam(ST_SETTING_TEXFILTER, myGUI->myImage->params.textureFilter);
409
+    mySettings->saveParam(myGUI->myImage->params.DisplayMode);
410
+    mySettings->saveInt32(ST_SETTING_GAMMA, stRound(100.0f * myGUI->myImage->params.Gamma->getValue()));
411
+    mySettings->saveParam(myGUI->myImage->params.ToHealAnamorphicRatio);
412
+    mySettings->saveInt32(myGUI->myImage->params.DisplayRatio->getKey(),
413
+                          params.ToRestoreRatio->getValue()
414
+                        ? myGUI->myImage->params.DisplayRatio->getValue()
415
+                        : StGLImageRegion::RATIO_AUTO);
416
+    mySettings->saveParam(myGUI->myImage->params.TextureFilter);
417
 }
418
 
419
 void StImageViewer::saveAllParams() {
420
     saveGuiParams();
421
     if(!myGUI.isNull()) {
422
-        mySettings->saveParam (ST_SETTING_SCALE_ADJUST,  params.ScaleAdjust);
423
-        mySettings->saveParam (ST_SETTING_SCALE_FORCE2X, params.ScaleHiDPI2X);
424
-        mySettings->saveInt32(ST_SETTING_FPSTARGET, params.TargetFps);
425
+        mySettings->saveParam (params.ExitOnEscape);
426
+        mySettings->saveParam (params.ScaleAdjust);
427
+        mySettings->saveParam (params.ScaleHiDPI2X);
428
+        mySettings->saveParam (params.TargetFps);
429
         mySettings->saveInt32(ST_SETTING_SLIDESHOW_DELAY, int(mySlideShowDelay));
430
-        mySettings->saveInt32(ST_SETTING_UPDATES_LAST_CHECK, myLastUpdateDay);
431
-        mySettings->saveParam(ST_SETTING_UPDATES_INTERVAL, params.checkUpdatesDays);
432
+        mySettings->saveParam(params.LastUpdateDay);
433
+        mySettings->saveParam(params.CheckUpdatesDays);
434
         mySettings->saveString(ST_SETTING_IMAGELIB,  StImageFile::imgLibToString(params.imageLib));
435
-        mySettings->saveParam (ST_SETTING_TRACK_HEAD,params.ToTrackHead);
436
-        mySettings->saveParam (ST_SETTING_SHOW_FPS,  params.ToShowFps);
437
-        mySettings->saveParam (ST_SETTING_MOBILE_UI, params.IsMobileUI);
438
-        mySettings->saveParam (ST_SETTING_VSYNC,     params.IsVSyncOn);
439
-        mySettings->saveParam (ST_SETTING_SHOW_LIST, params.ToShowPlayList);
440
+        mySettings->saveParam (params.ToTrackHead);
441
+        mySettings->saveParam (params.ToShowFps);
442
+        mySettings->saveParam (params.IsMobileUI);
443
+        mySettings->saveParam (params.IsVSyncOn);
444
+        mySettings->saveParam (params.ToShowPlayList);
445
         if(myToSaveSrcFormat) {
446
-            mySettings->saveParam(ST_SETTING_SRCFORMAT, params.srcFormat);
447
+            mySettings->saveParam(params.SrcStereoFormat);
448
         }
449
 
450
         // store hot-keys
451
@@ -473,7 +331,7 @@
452
     }
453
 
454
     StString aLastL, aLastR;
455
-    StHandle<StFileNode> aFile = myLoader->getPlayList().getCurrentFile();
456
+    StHandle<StFileNode> aFile = myPlayList->getCurrentFile();
457
     if(params.ToSaveRecent->getValue()
458
     && !aFile.isNull()) {
459
         if(aFile->isEmpty()) {
460
@@ -483,6 +341,15 @@
461
             aLastR = aFile->getValue(1)->getPath();
462
         }
463
     }
464
+
465
+    // skip temporary URLs
466
+    if(StFileNode::isContentProtocolPath(aLastL)) {
467
+        aLastL.clear();
468
+        aLastR.clear();
469
+    } else if(StFileNode::isContentProtocolPath(aLastR)) {
470
+        aLastR.clear();
471
+    }
472
+
473
     mySettings->saveString(ST_SETTING_RECENT_L, aLastL);
474
     mySettings->saveString(ST_SETTING_RECENT_R, aLastR);
475
     mySettings->flush();
476
@@ -516,17 +383,21 @@
477
     myGUI = new StImageViewerGUI(this, myWindow.access(), myLangMap.access(), myPlayList,
478
                                  myLoader.isNull() ? NULL : myLoader->getTextureQueue());
479
     myGUI->setContext(myContext);
480
+    StGLDeviceCaps aDevCaps = myContext->getDeviceCaps();
481
+    // better slow-down GPU memory copy but avoid extra memory usage
482
+    aDevCaps.hasUnpack = true;
483
+    myGUI->myImage->getTextureQueue()->setDeviceCaps(aDevCaps);
484
 
485
     // load settings
486
-    myWindow->setTargetFps(double(params.TargetFps));
487
-    mySettings->loadParam (ST_SETTING_STEREO_MODE,        myGUI->myImage->params.displayMode);
488
-    mySettings->loadParam (ST_SETTING_TEXFILTER,          myGUI->myImage->params.textureFilter);
489
-    mySettings->loadParam (ST_SETTING_RATIO,              myGUI->myImage->params.displayRatio);
490
-    mySettings->loadParam (ST_SETTING_HEAL_ANAMORPHIC,    myGUI->myImage->params.ToHealAnamorphicRatio);
491
-    params.toRestoreRatio->setValue(myGUI->myImage->params.displayRatio->getValue() != StGLImageRegion::RATIO_AUTO);
492
+    myWindow->setTargetFps(double(params.TargetFps->getValue()));
493
+    mySettings->loadParam (myGUI->myImage->params.DisplayMode);
494
+    mySettings->loadParam (myGUI->myImage->params.TextureFilter);
495
+    mySettings->loadParam (myGUI->myImage->params.DisplayRatio);
496
+    mySettings->loadParam (myGUI->myImage->params.ToHealAnamorphicRatio);
497
+    params.ToRestoreRatio->setValue(myGUI->myImage->params.DisplayRatio->getValue() != StGLImageRegion::RATIO_AUTO);
498
     int32_t loadedGamma = 100; // 1.0f
499
         mySettings->loadInt32(ST_SETTING_GAMMA, loadedGamma);
500
-        myGUI->myImage->params.gamma->setValue(0.01f * loadedGamma);
501
+        myGUI->myImage->params.Gamma->setValue(0.01f * loadedGamma);
502
 
503
     // initialize frame region early to show dedicated error description
504
     if(!myGUI->myImage->stglInit()) {
505
@@ -547,6 +418,12 @@
506
     return true;
507
 }
508
 
509
+void StImageViewer::doChangeLanguage(const int32_t theNewLang) {
510
+    StApplication::doChangeLanguage(theNewLang);
511
+    StImageViewerStrings::loadDefaults(*myLangMap);
512
+    updateStrings();
513
+}
514
+
515
 bool StImageViewer::init() {
516
     const bool isReset = !myLoader.isNull();
517
     if(!myContext.isNull()
518
@@ -581,19 +458,22 @@
519
 
520
     // create the image loader thread
521
     if(isReset) {
522
+        if(params.IsFullscreen->getValue()) {
523
+            myWindow->setFullScreen(true);
524
+        }
525
         return true;
526
     }
527
 
528
     StString anImgLibStr;
529
     mySettings->loadString(ST_SETTING_IMAGELIB, anImgLibStr);
530
     params.imageLib = StImageFile::imgLibFromString(anImgLibStr);
531
-    myLoader = new StImageLoader(params.imageLib, myMsgQueue, myLangMap, myPlayList,
532
+    myLoader = new StImageLoader(params.imageLib, myResMgr, myMsgQueue, myLangMap, myPlayList,
533
                                  myGUI->myImage->getTextureQueue(), myContext->getMaxTextureSize());
534
     myLoader->signals.onLoaded.connect(this, &StImageViewer::doLoaded);
535
     myLoader->setCompressMemory(myWindow->isMobile());
536
 
537
     // load this parameter AFTER image thread creation
538
-    mySettings->loadParam(ST_SETTING_SRCFORMAT, params.srcFormat);
539
+    mySettings->loadParam(params.SrcStereoFormat);
540
 
541
 #if !defined(ST_NO_UPDATES_CHECK)
542
     // read the current time
543
@@ -601,12 +481,14 @@
544
     time(&aRawtime);
545
     struct tm* aTimeinfo = localtime(&aRawtime);
546
     int32_t aCurrentDayInYear = aTimeinfo->tm_yday;
547
-    if(params.checkUpdatesDays->getValue() > 0
548
-    && std::abs(aCurrentDayInYear - myLastUpdateDay) > params.checkUpdatesDays->getValue()) {
549
+
550
+    const int aNbDays = StCheckUpdates::getNbDaysFromInterval((StCheckUpdates::UpdateInteval )params.CheckUpdatesDays->getValue());
551
+    if(aNbDays > 0
552
+    && std::abs(aCurrentDayInYear - params.LastUpdateDay->getValue()) > aNbDays) {
553
         myUpdates = new StCheckUpdates();
554
         myUpdates->init();
555
-        myLastUpdateDay = aCurrentDayInYear;
556
-        mySettings->saveInt32(ST_SETTING_UPDATES_LAST_CHECK, myLastUpdateDay);
557
+        params.LastUpdateDay->setValue(aCurrentDayInYear);
558
+        mySettings->saveParam(params.LastUpdateDay);
559
     }
560
 #endif
561
     return true;
562
@@ -615,16 +497,16 @@
563
 void StImageViewer::parseArguments(const StArgumentsMap& theArguments) {
564
     StArgument anArgSlideshow  = theArguments[ST_SETTING_SLIDESHOW];
565
     StArgument anArgViewMode   = theArguments[ST_SETTING_VIEWMODE];
566
-    StArgument anArgSrcFormat  = theArguments[ST_SETTING_SRCFORMAT];
567
+    StArgument anArgSrcFormat  = theArguments[params.SrcStereoFormat->getKey()];
568
     StArgument anArgImgLibrary = theArguments[ST_SETTING_IMAGELIB];
569
     StArgument anArgToCompress = theArguments[ST_SETTING_COMPRESS];
570
     StArgument anArgEscNoQuit  = theArguments[ST_SETTING_ESCAPENOQUIT];
571
     StArgument anArgFullScreenUI = theArguments[ST_SETTING_FULLSCREENUI];
572
-    StArgument anArgShowMenu   = theArguments[ST_ARGUMENT_SHOW_MENU];
573
-    StArgument anArgShowTopbar = theArguments[ST_ARGUMENT_SHOW_TOPBAR];
574
-    StArgument anArgSaveRecent = theArguments[ST_SETTING_SAVE_RECENT];
575
+    StArgument anArgShowMenu   = theArguments[params.ToShowMenu->getKey()];
576
+    StArgument anArgShowTopbar = theArguments[params.ToShowTopbar->getKey()];
577
+    StArgument anArgSaveRecent = theArguments[params.ToSaveRecent->getKey()];
578
 
579
-    StArgument anArgFullscreen = theArguments[ST_SETTING_FULLSCREEN];
580
+    StArgument anArgFullscreen = theArguments[params.IsFullscreen->getKey()];
581
     StArgument anArgMonitor    = theArguments[ST_ARGUMENT_MONITOR];
582
     StArgument anArgWinLeft    = theArguments[ST_ARGUMENT_WINLEFT];
583
     StArgument anArgWinTop     = theArguments[ST_ARGUMENT_WINTOP];
584
@@ -664,7 +546,7 @@
585
         myWindow->setPlacement(aRect, true);
586
     }
587
     if(anArgFullscreen.isValid()) {
588
-        params.isFullscreen->setValue(!anArgFullscreen.isValueOff());
589
+        params.IsFullscreen->setValue(!anArgFullscreen.isValueOff());
590
     }
591
 
592
     if(anArgToCompress.isValid()) {
593
@@ -687,10 +569,10 @@
594
         doSlideShow();
595
     }
596
     if(anArgViewMode.isValid()) {
597
-        myLoader->getPlayList().changeDefParams().ViewingMode = StStereoParams::GET_VIEW_MODE_FROM_STRING(anArgViewMode.getValue());
598
+        myPlayList->changeDefParams().ViewingMode = StStereoParams::GET_VIEW_MODE_FROM_STRING(anArgViewMode.getValue());
599
     }
600
     if(anArgSrcFormat.isValid()) {
601
-        params.srcFormat->setValue(st::formatFromString(anArgSrcFormat.getValue()));
602
+        params.SrcStereoFormat->setValue(st::formatFromString(anArgSrcFormat.getValue()));
603
         myToSaveSrcFormat = false; // this setting is temporary!
604
     }
605
     if(anArgImgLibrary.isValid()) {
606
@@ -732,13 +614,13 @@
607
             mySettings->loadString(ST_SETTING_RECENT_R, aLastR);
608
             if(!aLastL.isEmpty()) {
609
                 if(!aLastR.isEmpty()) {
610
-                    myLoader->getPlayList().clear();
611
-                    myLoader->getPlayList().addOneFile(aLastL, aLastR);
612
+                    myPlayList->clear();
613
+                    myPlayList->addOneFile(aLastL, aLastR);
614
                 } else {
615
-                    myLoader->getPlayList().open(aLastL);
616
+                    myPlayList->open(aLastL);
617
                 }
618
 
619
-                if(!myLoader->getPlayList().isEmpty()) {
620
+                if(!myPlayList->isEmpty()) {
621
                     doUpdateStateLoading();
622
                     myLoader->doLoadNext();
623
                 }
624
@@ -751,7 +633,7 @@
625
     }
626
 
627
     // clear playlist first
628
-    myLoader->getPlayList().clear();
629
+    myPlayList->clear();
630
 
631
     //StArgument argFile1     = myOpenFileInfo->getArgumentsMap()[ST_ARGUMENT_FILE + 1]; // playlist?
632
     StArgument argFileLeft  = myOpenFileInfo->getArgumentsMap()[ST_ARGUMENT_FILE_LEFT];
633
@@ -759,16 +641,16 @@
634
     if(argFileLeft.isValid() && argFileRight.isValid()) {
635
         // meta-file
636
         /// TODO (Kirill Gavrilov#4) we should use MIME type!
637
-        myLoader->getPlayList().addOneFile(argFileLeft.getValue(), argFileRight.getValue());
638
+        myPlayList->addOneFile(argFileLeft.getValue(), argFileRight.getValue());
639
     } else if(!anOpenMIME.isEmpty()) {
640
         // create just one-file playlist
641
-        myLoader->getPlayList().addOneFile(myOpenFileInfo->getPath(), anOpenMIME);
642
+        myPlayList->addOneFile(myOpenFileInfo->getPath(), anOpenMIME);
643
     } else {
644
         // create playlist from file's folder
645
-        myLoader->getPlayList().open(myOpenFileInfo->getPath());
646
+        myPlayList->open(myOpenFileInfo->getPath());
647
     }
648
 
649
-    if(!myLoader->getPlayList().isEmpty()) {
650
+    if(!myPlayList->isEmpty()) {
651
         doUpdateStateLoading();
652
         myLoader->doLoadNext();
653
     }
654
@@ -798,9 +680,9 @@
655
         return;
656
     }
657
 
658
-    myGUI->myImage->params.gamma     ->reset();
659
-    myGUI->myImage->params.brightness->reset();
660
-    myGUI->myImage->params.saturation->reset();
661
+    myGUI->myImage->params.Gamma     ->reset();
662
+    myGUI->myImage->params.Brightness->reset();
663
+    myGUI->myImage->params.Saturation->reset();
664
 }
665
 
666
 void StImageViewer::doSaveImageInfoBegin(const size_t ) {
667
@@ -848,7 +730,7 @@
668
     //    return;
669
     //}
670
 
671
-    myFileToDelete = myLoader->getPlayList().getCurrentFile();
672
+    myFileToDelete = myPlayList->getCurrentFile();
673
     if(myFileToDelete.isNull()
674
     || myFileToDelete->size() != 0) {
675
         myFileToDelete.nullify();
676
@@ -871,8 +753,8 @@
677
         return;
678
     }
679
 
680
-    myLoader->getPlayList().removePhysically(myFileToDelete);
681
-    if(!myLoader->getPlayList().isEmpty()) {
682
+    myPlayList->removePhysically(myFileToDelete);
683
+    if(!myPlayList->isEmpty()) {
684
         doUpdateStateLoading();
685
         myLoader->doLoadNext();
686
     }
687
@@ -893,10 +775,11 @@
688
     StApplication::doKeyDown(theEvent);
689
     switch(theEvent.VKey) {
690
         case ST_VK_ESCAPE: {
691
-            if(!myEscNoQuit) {
692
-                StApplication::exit(0);
693
-            } else if(myWindow->isFullScreen()) {
694
-                params.isFullscreen->setValue(false);
695
+            if(!doExitOnEscape(!myEscNoQuit ? (ActionOnEscape )params.ExitOnEscape->getValue() : ActionOnEscape_Nothing)) {
696
+                if(myWindow->hasFullscreenMode()
697
+                && myWindow->isFullScreen()) {
698
+                    params.IsFullscreen->setValue(false);
699
+                }
700
             }
701
             return;
702
         }
703
@@ -921,18 +804,18 @@
704
         // post process keys
705
         case ST_VK_B: {
706
             if(theEvent.Flags == ST_VF_SHIFT) {
707
-                myGUI->myImage->params.brightness->increment();
708
+                myGUI->myImage->params.Brightness->increment();
709
             } else if(theEvent.Flags == ST_VF_CONTROL) {
710
-                myGUI->myImage->params.brightness->decrement();
711
+                myGUI->myImage->params.Brightness->decrement();
712
             }
713
             return;
714
         }
715
         case ST_VK_T: {
716
             /// TODO (Kirill Gavrilov#9) remove this hot key
717
             if(theEvent.Flags == ST_VF_SHIFT) {
718
-                myGUI->myImage->params.saturation->increment();
719
+                myGUI->myImage->params.Saturation->increment();
720
             } else if(theEvent.Flags == ST_VF_CONTROL) {
721
-                myGUI->myImage->params.saturation->decrement();
722
+                myGUI->myImage->params.Saturation->decrement();
723
             }
724
             return;
725
         }
726
@@ -968,13 +851,7 @@
727
         return;
728
     }
729
 
730
-    if(myEscNoQuit
731
-    && !myWindow->isFullScreen()
732
-    && (theEvent.Button == ST_MOUSE_SCROLL_V_UP || theEvent.Button == ST_MOUSE_SCROLL_V_DOWN)) {
733
-        return; // ignore scrolling
734
-    }
735
-
736
-    myGUI->tryClick(StPointD_t(theEvent.PointX, theEvent.PointY), theEvent.Button);
737
+    myGUI->tryClick(theEvent);
738
 }
739
 
740
 void StImageViewer::doMouseUp(const StClickEvent& theEvent) {
741
@@ -983,13 +860,40 @@
742
     }
743
 
744
     if(theEvent.Button == ST_MOUSE_MIDDLE) {
745
-        params.isFullscreen->reverse();
746
-    } else if(myEscNoQuit
747
-           && !myWindow->isFullScreen()
748
-           && (theEvent.Button == ST_MOUSE_SCROLL_V_UP || theEvent.Button == ST_MOUSE_SCROLL_V_DOWN)) {
749
+        params.IsFullscreen->reverse();
750
+    }
751
+    myGUI->tryUnClick(theEvent);
752
+}
753
+
754
+void StImageViewer::doGesture(const StGestureEvent& theEvent) {
755
+    if(myGUI.isNull()
756
+    || myGUI->myImage == NULL) {
757
+        return;
758
+    }
759
+
760
+    for(StGLWidget *aChildIter(myGUI->getChildren()->getLast()), *aChildActive(NULL); aChildIter != NULL;) {
761
+        aChildActive = aChildIter;
762
+        aChildIter   = aChildIter->getPrev();
763
+        if(aChildActive->isVisibleAndPointIn(myGUI->getCursorZo())) {
764
+            if(aChildActive == myGUI->myImage) {
765
+                myGUI->myImage->doGesture(theEvent);
766
+            }
767
+            break;
768
+        }
769
+    }
770
+}
771
+
772
+void StImageViewer::doScroll(const StScrollEvent& theEvent) {
773
+    if(myGUI.isNull()) {
774
+        return;
775
+    }
776
+
777
+    if(myEscNoQuit
778
+    && !myWindow->isFullScreen()) {
779
         return; // ignore scrolling
780
     }
781
-    myGUI->tryUnClick(StPointD_t(theEvent.PointX, theEvent.PointY), theEvent.Button);
782
+
783
+    myGUI->doScroll(theEvent);
784
 }
785
 
786
 void StImageViewer::doFileDrop(const StDNDropEvent& theEvent) {
787
@@ -998,28 +902,28 @@
788
     }
789
 
790
     const StString aFile1 = theEvent.Files[0];
791
-    if(!myLoader->getPlayList().checkExtension(aFile1)) {
792
+    /*if(!myPlayList->checkExtension(aFile1)) {
793
         return;
794
-    } else if(theEvent.NbFiles == 1) {
795
-        myLoader->getPlayList().open(aFile1);
796
+    } else */if(theEvent.NbFiles == 1) {
797
+        myPlayList->open(aFile1);
798
         doUpdateStateLoading();
799
         myLoader->doLoadNext();
800
         return;
801
     } else if(theEvent.NbFiles == 2
802
           && !StFolder::isFolder(aFile1)
803
           && !StFolder::isFolder(StString(theEvent.Files[1]))) {
804
-        myLoader->getPlayList().clear();
805
-        myLoader->getPlayList().addOneFile(aFile1, StString(theEvent.Files[1]));
806
+        myPlayList->clear();
807
+        myPlayList->addOneFile(aFile1, StString(theEvent.Files[1]));
808
         doUpdateStateLoading();
809
         myLoader->doLoadNext();
810
         return;
811
     }
812
 
813
-    myLoader->getPlayList().clear();
814
+    myPlayList->clear();
815
     for(uint32_t aFileIter = 0; aFileIter < theEvent.NbFiles; ++aFileIter) {
816
         StString aPath(theEvent.Files[aFileIter]);
817
         if(!StFolder::isFolder(aPath)) {
818
-            myLoader->getPlayList().addOneFile(aPath, StMIME());
819
+            myPlayList->addOneFile(aPath, StMIME());
820
         }
821
     }
822
 
823
@@ -1043,10 +947,10 @@
824
     if(myOpenDialog->hasResults()) {
825
         if(!myOpenDialog->getPathRight().isEmpty()) {
826
             // meta-file
827
-            myLoader->getPlayList().clear();
828
-            myLoader->getPlayList().addOneFile(myOpenDialog->getPathLeft(), myOpenDialog->getPathRight());
829
+            myPlayList->clear();
830
+            myPlayList->addOneFile(myOpenDialog->getPathLeft(), myOpenDialog->getPathRight());
831
         } else {
832
-            myLoader->getPlayList().open(myOpenDialog->getPathLeft());
833
+            myPlayList->open(myOpenDialog->getPathLeft());
834
         }
835
 
836
         doUpdateStateLoading();
837
@@ -1084,7 +988,7 @@
838
         myToCheckUpdates = false;
839
     }
840
 
841
-    const bool isFullScreen = params.isFullscreen->getValue();
842
+    const bool isFullScreen = params.IsFullscreen->getValue();
843
     myGUI->setVisibility(myWindow->getMousePos(), myToHideUIFullScr && isFullScreen);
844
     bool toHideCursor = isFullScreen && myGUI->toHideCursor();
845
     myWindow->showCursor(!toHideCursor);
846
@@ -1131,11 +1035,14 @@
847
         myGUI->stglUpdate(myWindow->getMousePos());
848
 
849
         // check for mono state
850
+        bool hasStereoSource = false;
851
         StHandle<StStereoParams> aParams = myGUI->myImage->getSource();
852
         if(!aParams.isNull()) {
853
-            myWindow->setStereoOutput(!aParams->isMono() && myWindow->isActive()
854
-                                   && (myGUI->myImage->params.displayMode->getValue() == StGLImageRegion::MODE_STEREO));
855
+            hasStereoSource =!aParams->isMono()
856
+                           && myGUI->myImage->hasVideoStream()
857
+                           && myGUI->myImage->params.DisplayMode->getValue() == StGLImageRegion::MODE_STEREO;
858
         }
859
+        myWindow->setStereoOutput(hasStereoSource);
860
     }
861
 
862
     // draw GUI
863
@@ -1162,7 +1069,7 @@
864
     }
865
 
866
     myLoader->setStereoFormat(StFormat(theSrcFormat));
867
-    if(!myLoader->getPlayList().isEmpty()) {
868
+    if(!myPlayList->isEmpty()) {
869
         myLoader->doLoadNext();
870
     }
871
     myToSaveSrcFormat = true;
872
@@ -1182,7 +1089,7 @@
873
     }
874
 
875
     if(isChanged
876
-    && !myLoader->getPlayList().isEmpty()) {
877
+    && !myPlayList->isEmpty()) {
878
         myLoader->doLoadNext();
879
     }
880
 }
881
@@ -1226,7 +1133,7 @@
882
 }
883
 
884
 void StImageViewer::doUpdateStateLoading() {
885
-    const StString aFileToLoad = myLoader->getPlayList().getCurrentTitle();
886
+    const StString aFileToLoad = myPlayList->getCurrentTitle();
887
     if(aFileToLoad.isEmpty()) {
888
         myWindow->setTitle(myTitle);
889
     } else {
890
@@ -1235,7 +1142,7 @@
891
 }
892
 
893
 void StImageViewer::doUpdateStateLoaded() {
894
-    const StString aFileToLoad = myLoader->getPlayList().getCurrentTitle();
895
+    const StString aFileToLoad = myPlayList->getCurrentTitle();
896
     if(aFileToLoad.isEmpty()) {
897
         myWindow->setTitle(myTitle);
898
     } else {
899
@@ -1259,21 +1166,21 @@
900
 }
901
 
902
 void StImageViewer::doListFirst(const size_t ) {
903
-    if(myLoader->getPlayList().walkToFirst()) {
904
+    if(myPlayList->walkToFirst()) {
905
         myLoader->doLoadNext();
906
         doUpdateStateLoading();
907
     }
908
 }
909
 
910
 void StImageViewer::doListPrev(const size_t ) {
911
-    if(myLoader->getPlayList().walkToPrev()) {
912
+    if(myPlayList->walkToPrev()) {
913
         myLoader->doLoadNext();
914
         doUpdateStateLoading();
915
     }
916
 }
917
 
918
 void StImageViewer::doListNext(const size_t ) {
919
-    if(myLoader->getPlayList().walkToNext()) {
920
+    if(myPlayList->walkToNext()) {
921
         myLoader->doLoadNext();
922
         doUpdateStateLoading();
923
     }
924
@@ -1282,15 +1189,15 @@
925
 void StImageViewer::doSlideShow(const size_t ) {
926
     if(mySlideShowTimer.getElapsedTimeInSec() > 0.0) {
927
         mySlideShowTimer.stop();
928
-        myLoader->getPlayList().setLoop(false);
929
+        myPlayList->setLoop(false);
930
     } else {
931
         mySlideShowTimer.restart();
932
-        myLoader->getPlayList().setLoop(true);
933
+        myPlayList->setLoop(true);
934
     }
935
 }
936
 
937
 void StImageViewer::doListLast(const size_t ) {
938
-    if(myLoader->getPlayList().walkToLast()) {
939
+    if(myPlayList->walkToLast()) {
940
         myLoader->doLoadNext();
941
         doUpdateStateLoading();
942
     }
943
@@ -1310,13 +1217,6 @@
944
     }
945
 }
946
 
947
-void StImageViewer::doReset(const size_t ) {
948
-    StHandle<StStereoParams> aParams = myGUI->myImage->getSource();
949
-    if(!aParams.isNull()) {
950
-        aParams->reset();
951
-    }
952
-}
953
-
954
 void StImageViewer::doLoaded() {
955
     myEventLoaded.set();
956
 }
957
@@ -1343,7 +1243,7 @@
958
                                    StHandle<StStereoParams>& theParams,
959
                                    StHandle<StImageInfo>&    theInfo) {
960
     theInfo.nullify();
961
-    if(!myLoader->getPlayList().getCurrentFile(theFileNode, theParams)) {
962
+    if(!myPlayList->getCurrentFile(theFileNode, theParams)) {
963
         return false;
964
     }
965
     theInfo = myLoader->getFileInfo(theParams);
966
sview-15_11.tar.gz/StImageViewer/StImageViewer.h -> sview-16_06.tar.gz/StImageViewer/StImageViewer.h Changed
209
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2007-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * StImageViewer program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU General Public License as published by
8
@@ -29,15 +29,13 @@
9
 class StGLContext;
10
 class StCheckUpdates;
11
 class StWindow;
12
+class StImageOpenDialog;
13
 
14
 /**
15
  * Image Viewer application.
16
  */
17
 class StImageViewer : public StApplication {
18
 
19
-    friend class StImageViewGUI;
20
-    class StOpenImage;
21
-
22
         public:
23
 
24
     static const char* ST_DRAWER_PLUGIN_NAME;
25
@@ -60,17 +58,17 @@
26
     /**
27
      * Open application.
28
      */
29
-    ST_CPPEXPORT virtual bool open();
30
+    ST_CPPEXPORT virtual bool open() ST_ATTR_OVERRIDE;
31
 
32
     /**
33
      * Process callback.
34
      */
35
-    ST_CPPEXPORT virtual void beforeDraw();
36
+    ST_CPPEXPORT virtual void beforeDraw() ST_ATTR_OVERRIDE;
37
 
38
     /**
39
      * Draw frame for requested view.
40
      */
41
-    ST_CPPEXPORT virtual void stglDraw(unsigned int theView);
42
+    ST_CPPEXPORT virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
43
 
44
     /**
45
      * Reset device - release GL resources in old window and re-create them in new window.
46
@@ -79,16 +77,18 @@
47
 
48
         private: //! @name window events slots
49
 
50
-    ST_LOCAL virtual void doChangeDevice(const int32_t theValue);
51
-    ST_LOCAL virtual void doPause    (const StPauseEvent&  theEvent);
52
-    ST_LOCAL virtual void doResize   (const StSizeEvent&   theEvent);
53
-    ST_LOCAL virtual void doKeyDown  (const StKeyEvent&    theEvent);
54
-    ST_LOCAL virtual void doKeyHold  (const StKeyEvent&    theEvent);
55
-    ST_LOCAL virtual void doKeyUp    (const StKeyEvent&    theEvent);
56
-    ST_LOCAL virtual void doMouseDown(const StClickEvent&  theEvent);
57
-    ST_LOCAL virtual void doMouseUp  (const StClickEvent&  theEvent);
58
-    ST_LOCAL virtual void doFileDrop (const StDNDropEvent& theEvent);
59
-    ST_LOCAL virtual void doNavigate (const StNavigEvent&  theEvent);
60
+    ST_LOCAL virtual void doChangeDevice(const int32_t theValue)     ST_ATTR_OVERRIDE;
61
+    ST_LOCAL virtual void doPause    (const StPauseEvent&  theEvent) ST_ATTR_OVERRIDE;
62
+    ST_LOCAL virtual void doResize   (const StSizeEvent&   theEvent) ST_ATTR_OVERRIDE;
63
+    ST_LOCAL virtual void doKeyDown  (const StKeyEvent&    theEvent) ST_ATTR_OVERRIDE;
64
+    ST_LOCAL virtual void doKeyHold  (const StKeyEvent&    theEvent) ST_ATTR_OVERRIDE;
65
+    ST_LOCAL virtual void doKeyUp    (const StKeyEvent&    theEvent) ST_ATTR_OVERRIDE;
66
+    ST_LOCAL virtual void doMouseDown(const StClickEvent&  theEvent) ST_ATTR_OVERRIDE;
67
+    ST_LOCAL virtual void doMouseUp  (const StClickEvent&  theEvent) ST_ATTR_OVERRIDE;
68
+    ST_LOCAL virtual void doGesture  (const StGestureEvent& theEvent) ST_ATTR_OVERRIDE;
69
+    ST_LOCAL virtual void doScroll   (const StScrollEvent& theEvent) ST_ATTR_OVERRIDE;
70
+    ST_LOCAL virtual void doFileDrop (const StDNDropEvent& theEvent) ST_ATTR_OVERRIDE;
71
+    ST_LOCAL virtual void doNavigate (const StNavigEvent&  theEvent) ST_ATTR_OVERRIDE;
72
 
73
         public: //! @name callback Slots
74
 
75
@@ -109,7 +109,6 @@
76
     ST_LOCAL void doQuit(const size_t dummy = 0);
77
 
78
     ST_LOCAL void doImageAdjustReset(const size_t dummy = 0);
79
-    ST_LOCAL void doReset(const size_t dummy = 0);
80
 
81
     ST_LOCAL void doUpdateStateLoading();
82
     ST_LOCAL void doUpdateStateLoaded();
83
@@ -123,24 +122,26 @@
84
 
85
     struct {
86
 
87
-        StHandle<StBoolParam>    isFullscreen;     //!< fullscreen state
88
-        StHandle<StBoolParam>    toRestoreRatio;   //!< restore ratio on restart
89
-        StHandle<StInt32Param>   ScaleAdjust;      //!< adjust GUI size, see StGLRootWidget::ScaleAdjust
90
-        StHandle<StFloat32Param> ScaleHiDPI;       //!< adapt  GUI size for HiDPI resolution
91
-        StHandle<StBoolParam>    ScaleHiDPI2X;     //!< option to set HiDPI resolution to 2.0
92
-        StHandle<StInt32Param>   checkUpdatesDays; //!< days count between updates checks
93
-        StHandle<StInt32Param>   srcFormat;        //!< source format
94
-        StHandle<StBoolParam>    ToTrackHead;      //!< enable/disable head-tracking
95
-        StHandle<StBoolParam>    ToShowMenu;       //!< show main menu
96
-        StHandle<StBoolParam>    ToShowTopbar;     //!< show topbar
97
-        StHandle<StBoolParam>    ToShowPlayList;   //!< display playlist
98
-        StHandle<StBoolParam>    ToShowFps;        //!< display FPS meter
99
-        StHandle<StBoolParam>    IsMobileUI;       //!< display mobile interface
100
-        StHandle<StBoolParam>    IsVSyncOn;        //!< flag to use VSync
101
-        StHandle<StBoolParam>    ToSaveRecent;     //!< load/save recent file
102
-        StString                 lastFolder;       //!< laster folder used to open / save file
103
-        StImageFile::ImageClass  imageLib;         //!< preferred image library
104
-        int                      TargetFps;        //!< limit or not rendering FPS
105
+        StHandle<StBoolParamNamed>    IsFullscreen;     //!< fullscreen state
106
+        StHandle<StEnumParam>         ExitOnEscape;     //!< exit action on escape
107
+        StHandle<StBoolParamNamed>    ToRestoreRatio;   //!< restore ratio on restart
108
+        StHandle<StEnumParam>         ScaleAdjust;      //!< adjust GUI size, see StGLRootWidget::ScaleAdjust
109
+        StHandle<StFloat32Param>      ScaleHiDPI;       //!< adapt  GUI size for HiDPI resolution
110
+        StHandle<StBoolParamNamed>    ScaleHiDPI2X;     //!< option to set HiDPI resolution to 2.0
111
+        StHandle<StEnumParam>         CheckUpdatesDays; //!< days count between updates checks
112
+        StHandle<StInt32ParamNamed>   LastUpdateDay;    //!< the last time update has been checked
113
+        StHandle<StInt32ParamNamed>   SrcStereoFormat;  //!< source format
114
+        StHandle<StBoolParamNamed>    ToTrackHead;      //!< enable/disable head-tracking
115
+        StHandle<StBoolParamNamed>    ToShowMenu;       //!< show main menu
116
+        StHandle<StBoolParamNamed>    ToShowTopbar;     //!< show topbar
117
+        StHandle<StBoolParamNamed>    ToShowPlayList;   //!< display playlist
118
+        StHandle<StBoolParamNamed>    ToShowFps;        //!< display FPS meter
119
+        StHandle<StBoolParamNamed>    IsMobileUI;       //!< display mobile interface
120
+        StHandle<StBoolParamNamed>    IsVSyncOn;        //!< flag to use VSync
121
+        StHandle<StBoolParamNamed>    ToSaveRecent;     //!< load/save recent file
122
+        StString                      lastFolder;       //!< laster folder used to open / save file
123
+        StImageFile::ImageClass       imageLib;         //!< preferred image library
124
+        StHandle<StInt32ParamNamed>   TargetFps;        //!< limit or not rendering FPS
125
 
126
     } params;
127
 
128
@@ -153,6 +154,7 @@
129
 
130
         private: //! @name private callback Slots
131
 
132
+    ST_LOCAL virtual void doChangeLanguage(const int32_t ) ST_ATTR_OVERRIDE;
133
     ST_LOCAL void doScaleGui(const int32_t );
134
     ST_LOCAL void doScaleHiDPI(const bool );
135
     ST_LOCAL void doSwitchVSync(const bool theValue);
136
@@ -197,6 +199,7 @@
137
      * Initialization routines.
138
      */
139
     ST_LOCAL bool init();
140
+    ST_LOCAL void updateStrings();
141
     ST_LOCAL bool createGui();
142
     ST_LOCAL void saveGuiParams();
143
     ST_LOCAL void saveAllParams();
144
@@ -211,41 +214,35 @@
145
      */
146
     ST_LOCAL void releaseDevice();
147
 
148
-    ST_LOCAL const StString& tr(const size_t theId) const {
149
-        return myLangMap->getValue(theId);
150
-    }
151
-
152
         private: //! @name private fields
153
 
154
-    StHandle<StGLContext>      myContext;
155
-    StHandle<StSettings>       mySettings;        //!< settings manager for Image Viewer plugin
156
-    StHandle<StTranslations>   myLangMap;         //!< translated strings map
157
-    StHandle<StPlayList>       myPlayList;        //!< play list
158
-    StHandle<StImageViewerGUI> myGUI;             //!< GUI root widget
159
-    StHandle<StImageLoader>    myLoader;          //!< main image loader class
160
-    StHandle<StCheckUpdates>   myUpdates;         //!< check updates utility
161
-    StHandle<StFileNode>       myFileToDelete;    //!< file node for removal
162
-    StHandle<StImageInfo>      myFileInfo;        //!< file info for opened dialog
163
-    StHandle<StOpenImage>      myOpenDialog;      //!< file open dialog
164
-    StString                   myAppName;         //!< name of customized application
165
-
166
-    StCondition                myEventLoaded;     //!< indicate that new file was open
167
-    StTimer                    myInactivityTimer; //!< timer initialized when application goes into paused state
168
-
169
-    StTimer                    mySlideShowTimer;  //!< slideshow stuff
170
-    double                     mySlideShowDelay;
171
-
172
-    int32_t                    myLastUpdateDay;
173
-    bool                       myToCheckUpdates;
174
-    bool                       myToRecreateMenu;
175
-    bool                       myToSaveSrcFormat; //!< indicates that active source format should be saved or not
176
-    bool                       myEscNoQuit;       //!< if true then Escape will not quit application
177
-    bool                       myToHideUIFullScr; //!< if true then GUI will be hidden in full-screen mode
178
-    bool                       myToCheckPoorOrient; //!< switch off orientation sensor with poor quality
179
+    StHandle<StGLContext>       myContext;
180
+    StHandle<StSettings>        mySettings;        //!< settings manager for Image Viewer plugin
181
+    StHandle<StPlayList>        myPlayList;        //!< play list
182
+    StHandle<StImageViewerGUI>  myGUI;             //!< GUI root widget
183
+    StHandle<StImageLoader>     myLoader;          //!< main image loader class
184
+    StHandle<StCheckUpdates>    myUpdates;         //!< check updates utility
185
+    StHandle<StFileNode>        myFileToDelete;    //!< file node for removal
186
+    StHandle<StImageInfo>       myFileInfo;        //!< file info for opened dialog
187
+    StHandle<StImageOpenDialog> myOpenDialog;      //!< file open dialog
188
+    StString                    myAppName;         //!< name of customized application
189
+
190
+    StCondition                 myEventLoaded;     //!< indicate that new file was open
191
+    StTimer                     myInactivityTimer; //!< timer initialized when application goes into paused state
192
+
193
+    StTimer                     mySlideShowTimer;  //!< slideshow stuff
194
+    double                      mySlideShowDelay;
195
+
196
+    bool                        myToCheckUpdates;
197
+    bool                        myToSaveSrcFormat; //!< indicates that active source format should be saved or not
198
+    bool                        myEscNoQuit;       //!< if true then Escape will not quit application
199
+    bool                        myToHideUIFullScr; //!< if true then GUI will be hidden in full-screen mode
200
+    bool                        myToCheckPoorOrient; //!< switch off orientation sensor with poor quality
201
 
202
         private:
203
 
204
     friend class StImageViewerGUI;
205
+    friend class StImageOpenDialog;
206
 
207
 };
208
 
209
sview-15_11.tar.gz/StImageViewer/StImageViewer.rc -> sview-16_06.tar.gz/StImageViewer/StImageViewer.rc Changed
10
 
1
@@ -15,7 +15,7 @@
2
     BEGIN
3
       VALUE "FileDescription", "Stereoscopic Image Viewer\000"
4
       VALUE "FileVersion",     SVIEW_SDK_VER_STRING "\000"
5
-      VALUE "LegalCopyright",  "\251 2007-2015 Kirill Gavrilov\000"
6
+      VALUE "LegalCopyright",  "\251 2007-2016 Kirill Gavrilov\000"
7
       VALUE "ProductName",     "StImageViewer\000"
8
       VALUE "ProductVersion",  SVIEW_SDK_VER_STRING "\000"
9
       VALUE "OfficialSite",    "www.sview.ru\000"
10
sview-15_11.tar.gz/StImageViewer/StImageViewer.vcxproj -> sview-16_06.tar.gz/StImageViewer/StImageViewer.vcxproj Changed
73
 
1
@@ -1,4 +1,4 @@
2
-<?xml version="1.0" encoding="utf-8"?>
3
+<?xml version="1.0" encoding="utf-8"?>
4
 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
5
   <ItemGroup Label="ProjectConfigurations">
6
     <ProjectConfiguration Include="Debug|Win32">
7
@@ -21,7 +21,7 @@
8
   <PropertyGroup Label="Globals">
9
     <ProjectGuid>{6B5C42D6-F103-4511-8F3C-48F320B16043}</ProjectGuid>
10
   </PropertyGroup>
11
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
12
+  <Import Project="$(SolutionDir)sView.Cpp.Default.props" />
13
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
14
     <ConfigurationType>DynamicLibrary</ConfigurationType>
15
     <CharacterSet>Unicode</CharacterSet>
16
@@ -101,6 +101,9 @@
17
       <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_x86;..\lib\WIN_vc_x86;$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
18
       <SubSystem>Windows</SubSystem>
19
     </Link>
20
+    <PostBuildEvent>
21
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
22
+    </PostBuildEvent>
23
   </ItemDefinitionGroup>
24
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
25
     <Midl>
26
@@ -136,6 +139,9 @@
27
       <GenerateDebugInformation>true</GenerateDebugInformation>
28
       <SubSystem>Windows</SubSystem>
29
     </Link>
30
+    <PostBuildEvent>
31
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
32
+    </PostBuildEvent>
33
   </ItemDefinitionGroup>
34
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
35
     <Midl>
36
@@ -169,6 +175,9 @@
37
       <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_AMD64;..\lib\WIN_vc_AMD64;$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
38
       <SubSystem>Windows</SubSystem>
39
     </Link>
40
+    <PostBuildEvent>
41
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
42
+    </PostBuildEvent>
43
   </ItemDefinitionGroup>
44
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
45
     <Midl>
46
@@ -204,14 +213,26 @@
47
       <GenerateDebugInformation>true</GenerateDebugInformation>
48
       <SubSystem>Windows</SubSystem>
49
     </Link>
50
+    <PostBuildEvent>
51
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
52
+    </PostBuildEvent>
53
   </ItemDefinitionGroup>
54
   <ItemGroup>
55
     <ClCompile Include="StImageLoader.cpp" />
56
+    <ClCompile Include="StImageOpenDialog.cpp" />
57
     <ClCompile Include="StImageViewer.cpp" />
58
     <ClCompile Include="StImageViewerGUI.cpp" />
59
     <ClCompile Include="StImageViewerStrings.cpp" />
60
   </ItemGroup>
61
   <ItemGroup>
62
+    <ClInclude Include="StImageLoader.h" />
63
+    <ClInclude Include="StImageOpenDialog.h" />
64
+    <ClInclude Include="StImagePluginInfo.h" />
65
+    <ClInclude Include="StImageViewer.h" />
66
+    <ClInclude Include="StImageViewerGUI.h" />
67
+    <ClInclude Include="StImageViewerStrings.h" />
68
+  </ItemGroup>
69
+  <ItemGroup>
70
     <ResourceCompile Include="StImageViewer.rc" />
71
   </ItemGroup>
72
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
73
sview-15_11.tar.gz/StImageViewer/StImageViewer.vcxproj.filters -> sview-16_06.tar.gz/StImageViewer/StImageViewer.vcxproj.filters Changed
32
 
1
@@ -1,23 +1,14 @@
2
 <?xml version="1.0" encoding="utf-8"?>
3
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
   <ItemGroup>
5
-    <Filter Include="Source files">
6
-      <UniqueIdentifier>{CACACF6C-18DA-13DF-148A-3C969CC3F588}</UniqueIdentifier>
7
+    <Filter Include="Source Files">
8
+      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
9
+      <Extensions>cpp;c;cc;cxx;m;mm;def;odl;idl;hpj;bat;asm;asmx</Extensions>
10
+    </Filter>
11
+    <Filter Include="Header Files">
12
+      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
13
+      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
14
     </Filter>
15
-  </ItemGroup>
16
-  <ItemGroup>
17
-    <ClCompile Include="StImageLoader.cpp">
18
-      <Filter>Source files</Filter>
19
-    </ClCompile>
20
-    <ClCompile Include="StImageViewer.cpp">
21
-      <Filter>Source files</Filter>
22
-    </ClCompile>
23
-    <ClCompile Include="StImageViewerGUI.cpp">
24
-      <Filter>Source files</Filter>
25
-    </ClCompile>
26
-    <ClCompile Include="StImageViewerStrings.cpp">
27
-      <Filter>Source files</Filter>
28
-    </ClCompile>
29
   </ItemGroup>
30
   <ItemGroup>
31
     <ResourceCompile Include="StImageViewer.rc" />
32
sview-16_06.tar.gz/StImageViewer/StImageViewer.vcxproj.user Added
11
 
1
@@ -0,0 +1,8 @@
2
+<?xml version="1.0" encoding="utf-8"?>
3
+<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
+  <PropertyGroup>
5
+    <LocalDebuggerCommand>$(OutDir)\sView.exe</LocalDebuggerCommand>
6
+    <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
7
+    <LocalDebuggerCommandArguments>--in=image ..\share\sView\demo\demo.jps</LocalDebuggerCommandArguments>
8
+  </PropertyGroup>
9
+</Project>
10
\ No newline at end of file
11
sview-15_11.tar.gz/StImageViewer/StImageViewerGUI.cpp -> sview-16_06.tar.gz/StImageViewer/StImageViewerGUI.cpp Changed
523
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * StImageViewer program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU General Public License as published by
8
@@ -55,8 +55,14 @@
9
 using namespace StImageViewerStrings;
10
 
11
 namespace {
12
+
13
     static const int DISPL_Y_REGION_UPPER = 32;
14
     static const int DISPL_X_REGION_UPPER = 32;
15
+
16
+    static const StGLVec3 aBlack (0.0f, 0.0f, 0.0f);
17
+    static const StGLVec3 aGreen (0.0f, 0.6f, 0.4f);
18
+    static const StGLVec3 aRed   (1.0f, 0.0f, 0.0f);
19
+
20
 }
21
 
22
 StInfoDialog::~StInfoDialog() {
23
@@ -80,7 +86,7 @@
24
     const int aRight  = -scale(8);
25
     const int aBottom = -scale(8);
26
     if(myWindow->hasFullscreenMode()) {
27
-        myBtnFull = new StGLCheckboxTextured(myPanelBottom, myPlugin->params.isFullscreen,
28
+        myBtnFull = new StGLCheckboxTextured(myPanelBottom, myPlugin->params.IsFullscreen,
29
                                              iconTexture(stCString("actionVideoFullscreenOff"), anIconSize),
30
                                              iconTexture(stCString("actionVideoFullscreenOn"),  anIconSize),
31
                                              (aBottomBarNbRight++) * (-anIconStep) + aRight, aBottom,
32
@@ -175,7 +181,7 @@
33
     aSrcBtn->setDrawShadow(true);
34
     myBtnSrcFrmt = aSrcBtn;
35
 
36
-    myBtnSwapLR = new StGLCheckboxTextured(myPanelUpper, myImage->params.swapLR,
37
+    myBtnSwapLR = new StGLCheckboxTextured(myPanelUpper, myImage->params.SwapLR,
38
                                            iconTexture(stCString("actionSwapLROff"), anIconSize),
39
                                            iconTexture(stCString("actionSwapLROn"),  anIconSize),
40
                                            aLeft + (aBtnIter++) * anIconStep, aTop,
41
@@ -232,7 +238,7 @@
42
               ->setIcon(stCMenuIcon("actionInfo"), false);
43
 
44
     if(myWindow->isMobile()) {
45
-        aMenuMedia->addItem("Mobile UI", myPlugin->params.IsMobileUI);
46
+        aMenuMedia->addItem(myPlugin->params.IsMobileUI);
47
     }
48
 
49
     aMenuMedia->addItem(tr(MENU_MEDIA_QUIT))
50
@@ -274,25 +280,25 @@
51
 }
52
 
53
 void StImageViewerGUI::fillSrcFormatMenu(StGLMenu* theMenu) {
54
-    theMenu->addItem(tr(MENU_SRC_FORMAT_AUTO),         myPlugin->params.srcFormat, StFormat_AUTO)
55
+    theMenu->addItem(tr(MENU_SRC_FORMAT_AUTO),         myPlugin->params.SrcStereoFormat, StFormat_AUTO)
56
            ->setIcon(stCMenuIcon("menuAuto"));
57
-    theMenu->addItem(tr(MENU_SRC_FORMAT_MONO),         myPlugin->params.srcFormat, StFormat_Mono)
58
+    theMenu->addItem(tr(MENU_SRC_FORMAT_MONO),         myPlugin->params.SrcStereoFormat, StFormat_Mono)
59
            ->setIcon(stCMenuIcon("menuMono"));
60
-    theMenu->addItem(tr(MENU_SRC_FORMAT_PARALLEL),     myPlugin->params.srcFormat, StFormat_SideBySide_LR)
61
+    theMenu->addItem(tr(MENU_SRC_FORMAT_PARALLEL),     myPlugin->params.SrcStereoFormat, StFormat_SideBySide_LR)
62
            ->setIcon(stCMenuIcon("menuSbsLR"));
63
-    theMenu->addItem(tr(MENU_SRC_FORMAT_CROSS_EYED),   myPlugin->params.srcFormat, StFormat_SideBySide_RL)
64
+    theMenu->addItem(tr(MENU_SRC_FORMAT_CROSS_EYED),   myPlugin->params.SrcStereoFormat, StFormat_SideBySide_RL)
65
            ->setIcon(stCMenuIcon("menuSbsRL"));
66
-    theMenu->addItem(tr(MENU_SRC_FORMAT_OVERUNDER_LR), myPlugin->params.srcFormat, StFormat_TopBottom_LR)
67
+    theMenu->addItem(tr(MENU_SRC_FORMAT_OVERUNDER_LR), myPlugin->params.SrcStereoFormat, StFormat_TopBottom_LR)
68
            ->setIcon(stCMenuIcon("menuOverUnderLR"));
69
-    theMenu->addItem(tr(MENU_SRC_FORMAT_OVERUNDER_RL), myPlugin->params.srcFormat, StFormat_TopBottom_RL)
70
+    theMenu->addItem(tr(MENU_SRC_FORMAT_OVERUNDER_RL), myPlugin->params.SrcStereoFormat, StFormat_TopBottom_RL)
71
            ->setIcon(stCMenuIcon("menuOverUnderRL"));
72
-    theMenu->addItem(tr(MENU_SRC_FORMAT_INTERLACED),   myPlugin->params.srcFormat, StFormat_Rows)
73
+    theMenu->addItem(tr(MENU_SRC_FORMAT_INTERLACED),   myPlugin->params.SrcStereoFormat, StFormat_Rows)
74
            ->setIcon(stCMenuIcon("menuRowLR"));
75
-    theMenu->addItem(tr(MENU_SRC_FORMAT_ANA_RC),       myPlugin->params.srcFormat, StFormat_AnaglyphRedCyan)
76
+    theMenu->addItem(tr(MENU_SRC_FORMAT_ANA_RC),       myPlugin->params.SrcStereoFormat, StFormat_AnaglyphRedCyan)
77
            ->setIcon(stCMenuIcon("menuRedCyanLR"));
78
-    theMenu->addItem(tr(MENU_SRC_FORMAT_ANA_RB),       myPlugin->params.srcFormat, StFormat_AnaglyphGreenMagenta)
79
+    theMenu->addItem(tr(MENU_SRC_FORMAT_ANA_RB),       myPlugin->params.SrcStereoFormat, StFormat_AnaglyphGreenMagenta)
80
            ->setIcon(stCMenuIcon("menuGreenMagentaLR"));
81
-    theMenu->addItem(tr(MENU_SRC_FORMAT_ANA_YB),       myPlugin->params.srcFormat, StFormat_AnaglyphYellowBlue)
82
+    theMenu->addItem(tr(MENU_SRC_FORMAT_ANA_YB),       myPlugin->params.SrcStereoFormat, StFormat_AnaglyphYellowBlue)
83
            ->setIcon(stCMenuIcon("menuYellowBlueLR"));
84
 }
85
 
86
@@ -313,15 +319,16 @@
87
     fillPanoramaMenu(aMenuPanorama);
88
     StGLMenu* aMenuTexFilter = createSmoothFilterMenu();
89
     StGLMenu* aMenuImgAdjust = createImageAdjustMenu();
90
+    StGLMenu* aMenu3dAdjust  = create3dAdjustMenu();
91
 
92
     aMenuView->addItem(tr(MENU_VIEW_DISPLAY_MODE),  aMenuDispMode);
93
     if(myWindow->hasFullscreenMode()) {
94
-        aMenuView->addItem(tr(MENU_VIEW_FULLSCREEN),    myPlugin->params.isFullscreen);
95
+        aMenuView->addItem(myPlugin->params.IsFullscreen);
96
     }
97
-    aMenuView->addItem(tr(MENU_VIEW_RESET))
98
-             ->setIcon(stCMenuIcon("actionResetPlacement"), false)
99
-             ->signals.onItemClick.connect(myPlugin, &StImageViewer::doReset);
100
-    aMenuView->addItem(tr(MENU_VIEW_SWAP_LR),       myImage->params.swapLR);
101
+
102
+    aMenuView->addItem(tr(MENU_VIEW_RESET), myImage->getActions()[StGLImageRegion::Action_Reset])
103
+             ->setIcon(stCMenuIcon("actionResetPlacement"), false);
104
+    aMenuView->addItem(tr(MENU_VIEW_SWAP_LR),       myImage->params.SwapLR);
105
     aMenuView->addItem(tr(MENU_VIEW_DISPLAY_RATIO), aMenuDispRatio)
106
              ->setIcon(stCMenuIcon("actionDisplayRatio"), false);
107
     aMenuView->addItem(tr(MENU_VIEW_PANORAMA),      aMenuPanorama)
108
@@ -330,6 +337,8 @@
109
              ->setIcon(stCMenuIcon("actionInterpolation"), false);
110
     aMenuView->addItem(tr(MENU_VIEW_IMAGE_ADJUST),  aMenuImgAdjust)
111
              ->setIcon(stCMenuIcon("actionColorAdjust"), false);
112
+    aMenuView->addItem("3D Stereo",  aMenu3dAdjust)
113
+             ->setIcon(stCMenuIcon("actionStereo3dSettings"), false);
114
     return aMenuView;
115
 }
116
 
117
@@ -338,9 +347,9 @@
118
  */
119
 StGLMenu* StImageViewerGUI::createDisplayModeMenu() {
120
     StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
121
-    const StArrayList<StString>& aValuesList = myImage->params.displayMode->getValues();
122
+    const StArrayList<StString>& aValuesList = myImage->params.DisplayMode->getValues();
123
     for(size_t aValIter = 0; aValIter < aValuesList.size(); ++aValIter) {
124
-        aMenu->addItem(aValuesList[aValIter], myImage->params.displayMode, int32_t(aValIter));
125
+        aMenu->addItem(aValuesList[aValIter], myImage->params.DisplayMode, int32_t(aValIter));
126
     }
127
     return aMenu;
128
 }
129
@@ -350,21 +359,21 @@
130
  */
131
 StGLMenu* StImageViewerGUI::createDisplayRatioMenu() {
132
     StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
133
-    aMenu->addItem(tr(MENU_VIEW_DISPLAY_RATIO_SRC), myImage->params.displayRatio, StGLImageRegion::RATIO_AUTO)
134
+    aMenu->addItem(tr(MENU_VIEW_DISPLAY_RATIO_SRC), myImage->params.DisplayRatio, StGLImageRegion::RATIO_AUTO)
135
          ->setIcon(stCMenuIcon("menuAuto"));
136
-    aMenu->addItem("2.21:1", myImage->params.displayRatio, StGLImageRegion::RATIO_221_1)
137
+    aMenu->addItem("2.21:1", myImage->params.DisplayRatio, StGLImageRegion::RATIO_221_1)
138
          ->setIcon(stCMenuIcon("menuRatio2_1_"));
139
-    aMenu->addItem("16:9",   myImage->params.displayRatio, StGLImageRegion::RATIO_16_9)
140
+    aMenu->addItem("16:9",   myImage->params.DisplayRatio, StGLImageRegion::RATIO_16_9)
141
          ->setIcon(stCMenuIcon("menuRatio16_9_"));
142
-    aMenu->addItem("16:10",  myImage->params.displayRatio, StGLImageRegion::RATIO_16_10)
143
+    aMenu->addItem("16:10",  myImage->params.DisplayRatio, StGLImageRegion::RATIO_16_10)
144
          ->setIcon(stCMenuIcon("menuRatio16_10_"));
145
-    aMenu->addItem("4:3",    myImage->params.displayRatio, StGLImageRegion::RATIO_4_3)
146
+    aMenu->addItem("4:3",    myImage->params.DisplayRatio, StGLImageRegion::RATIO_4_3)
147
          ->setIcon(stCMenuIcon("menuRatio4_3_"));
148
-    aMenu->addItem("5:4",    myImage->params.displayRatio, StGLImageRegion::RATIO_5_4)
149
+    aMenu->addItem("5:4",    myImage->params.DisplayRatio, StGLImageRegion::RATIO_5_4)
150
          ->setIcon(stCMenuIcon("menuRatio5_4_"));
151
-    aMenu->addItem("1:1",    myImage->params.displayRatio, StGLImageRegion::RATIO_1_1)
152
+    aMenu->addItem("1:1",    myImage->params.DisplayRatio, StGLImageRegion::RATIO_1_1)
153
          ->setIcon(stCMenuIcon("menuRatio1_1_"));
154
-    aMenu->addItem(tr(MENU_VIEW_RATIO_KEEP_ON_RESTART), myPlugin->params.toRestoreRatio);
155
+    aMenu->addItem(myPlugin->params.ToRestoreRatio);
156
     aMenu->addItem(tr(MENU_VIEW_RATIO_HEAL_ANAMORPHIC), myImage->params.ToHealAnamorphicRatio);
157
     return aMenu;
158
 }
159
@@ -394,9 +403,9 @@
160
 StGLMenu* StImageViewerGUI::createSmoothFilterMenu() {
161
     StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
162
     aMenu->addItem(tr(MENU_VIEW_TEXFILTER_NEAREST),
163
-                   myImage->params.textureFilter, StGLImageProgram::FILTER_NEAREST);
164
+                   myImage->params.TextureFilter, StGLImageProgram::FILTER_NEAREST);
165
     aMenu->addItem(tr(MENU_VIEW_TEXFILTER_LINEAR),
166
-                   myImage->params.textureFilter, StGLImageProgram::FILTER_LINEAR);
167
+                   myImage->params.TextureFilter, StGLImageProgram::FILTER_LINEAR);
168
     return aMenu;
169
 }
170
 
171
@@ -406,16 +415,12 @@
172
 StGLMenu* StImageViewerGUI::createImageAdjustMenu() {
173
     StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
174
 
175
-    const StGLVec3 aBlack(0.0f, 0.0f, 0.0f);
176
-    const StGLVec3 aGreen(0.0f, 0.6f, 0.4f);
177
-    const StGLVec3 aRed  (1.0f, 0.0f, 0.0f);
178
-
179
     aMenu->addItem(tr(MENU_VIEW_ADJUST_RESET), myPlugin->getAction(StImageViewer::Action_ImageAdjustReset))
180
          ->setIcon(stCMenuIcon("actionColorReset"), false);
181
 
182
     StGLMenuItem* anItem = aMenu->addItem(tr(MENU_VIEW_ADJUST_GAMMA));
183
     anItem->changeMargins().right = scale(100 + 16);
184
-    StGLRangeFieldFloat32* aRange = new StGLRangeFieldFloat32(anItem, myImage->params.gamma,
185
+    StGLRangeFieldFloat32* aRange = new StGLRangeFieldFloat32(anItem, myImage->params.Gamma,
186
                                                               -scale(16), 0, StGLCorner(ST_VCORNER_CENTER, ST_HCORNER_RIGHT));
187
     aRange->setFormat(stCString("%+01.2f"));
188
     aRange->setColor(StGLRangeFieldFloat32::FieldColor_Default,  aBlack);
189
@@ -425,7 +430,7 @@
190
     anItem = aMenu->addItem(tr(MENU_VIEW_ADJUST_BRIGHTNESS));
191
     anItem->setIcon(stCMenuIcon("actionBrightness"), false);
192
     anItem->changeMargins().right = scale(100 + 16);
193
-    aRange = new StGLRangeFieldFloat32(anItem, myImage->params.brightness,
194
+    aRange = new StGLRangeFieldFloat32(anItem, myImage->params.Brightness,
195
                                        -scale(16), 0, StGLCorner(ST_VCORNER_CENTER, ST_HCORNER_RIGHT));
196
     aRange->setFormat(stCString("%+01.2f"));
197
     aRange->setColor(StGLRangeFieldFloat32::FieldColor_Default,  aBlack);
198
@@ -435,7 +440,7 @@
199
     anItem = aMenu->addItem(tr(MENU_VIEW_ADJUST_SATURATION));
200
     anItem->setIcon(stCMenuIcon("actionSaturation"), false);
201
     anItem->changeMargins().right = scale(100 + 16);
202
-    aRange = new StGLRangeFieldFloat32(anItem, myImage->params.saturation,
203
+    aRange = new StGLRangeFieldFloat32(anItem, myImage->params.Saturation,
204
                                        -scale(16), 0, StGLCorner(ST_VCORNER_CENTER, ST_HCORNER_RIGHT));
205
     aRange->changeRectPx().bottom() = aRange->getRectPx().top() + aMenu->getItemHeight();
206
     aRange->setFormat(stCString("%+01.2f"));
207
@@ -446,6 +451,44 @@
208
 }
209
 
210
 /**
211
+ * Root -> View menu -> Stereo 3D Adjust
212
+ */
213
+StGLMenu* StImageViewerGUI::create3dAdjustMenu() {
214
+    StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
215
+
216
+    StGLMenuItem* anItem = NULL;
217
+    StGLRangeFieldFloat32* aRange = NULL;
218
+
219
+    anItem = aMenu->addItem("DX separation");
220
+    anItem->changeMargins().right = scale(100 + 16);
221
+    aRange = new StGLRangeFieldFloat32(anItem, myImage->params.SeparationDX,
222
+                                       -scale(16), 0, StGLCorner(ST_VCORNER_CENTER, ST_HCORNER_RIGHT));
223
+    aRange->setFormat(stCString("%+01.2f"));
224
+    aRange->setColor(StGLRangeFieldFloat32::FieldColor_Default,  aBlack);
225
+    aRange->setColor(StGLRangeFieldFloat32::FieldColor_Positive, aGreen);
226
+    aRange->setColor(StGLRangeFieldFloat32::FieldColor_Negative, aRed);
227
+
228
+    anItem = aMenu->addItem("DY separation");
229
+    anItem->changeMargins().right = scale(100 + 16);
230
+    aRange = new StGLRangeFieldFloat32(anItem, myImage->params.SeparationDY,
231
+                                       -scale(16), 0, StGLCorner(ST_VCORNER_CENTER, ST_HCORNER_RIGHT));
232
+    aRange->setFormat(stCString("%+01.2f"));
233
+    aRange->setColor(StGLRangeFieldFloat32::FieldColor_Default,  aBlack);
234
+    aRange->setColor(StGLRangeFieldFloat32::FieldColor_Positive, aGreen);
235
+    aRange->setColor(StGLRangeFieldFloat32::FieldColor_Negative, aRed);
236
+
237
+    anItem = aMenu->addItem("Angular separation");
238
+    anItem->changeMargins().right = scale(100 + 16);
239
+    aRange = new StGLRangeFieldFloat32(anItem, myImage->params.SeparationRot,
240
+                                       -scale(16), 0, StGLCorner(ST_VCORNER_CENTER, ST_HCORNER_RIGHT));
241
+    aRange->setFormat(stCString("%+01.2f"));
242
+    aRange->setColor(StGLRangeFieldFloat32::FieldColor_Default,  aBlack);
243
+    aRange->setColor(StGLRangeFieldFloat32::FieldColor_Positive, aGreen);
244
+    aRange->setColor(StGLRangeFieldFloat32::FieldColor_Negative, aRed);
245
+    return aMenu;
246
+}
247
+
248
+/**
249
  * Root -> Output menu
250
  */
251
 StGLMenu* StImageViewerGUI::createOutputMenu() {
252
@@ -463,8 +506,8 @@
253
     aMenu->addItem(tr(MENU_ABOUT_RENDERER))
254
          ->setIcon(stCMenuIcon("actionHelp"), false)
255
          ->signals.onItemClick.connect(this, &StImageViewerGUI::doAboutRenderer);
256
-    aMenu->addItem(tr(MENU_SHOW_FPS),      myPlugin->params.ToShowFps);
257
-    aMenu->addItem(tr(MENU_VSYNC),         myPlugin->params.IsVSyncOn);
258
+    aMenu->addItem(myPlugin->params.ToShowFps);
259
+    aMenu->addItem(myPlugin->params.IsVSyncOn);
260
 
261
     const StHandle<StWindow>& aRend = myPlugin->getMainWindow();
262
     StParamsList aParams;
263
@@ -491,7 +534,7 @@
264
     const StGLVec3 THE_WHITE(1.0f, 1.0f, 1.0f);
265
     const StString anAbout = tr(ABOUT_DPLUGIN_NAME) + '\n'
266
                            + tr(ABOUT_VERSION) + " " + StVersionInfo::getSDKVersionString()
267
-                           + "\n \n" + tr(ABOUT_DESCRIPTION).format("2007-2015", "kirill@sview.ru", "www.sview.ru");
268
+                           + "\n \n" + tr(ABOUT_DESCRIPTION).format("2007-2016", "kirill@sview.ru", "www.sview.ru");
269
 
270
     StArgumentsMap anInfo;
271
     anInfo.add(StDictEntry("CPU cores", StString(StThread::countLogicalProcessors()) + StString(" logical processor(s)")));
272
@@ -514,27 +557,29 @@
273
                         aDialog->getContent()->getRectPx().width(),
274
                         aDialog->getContent()->getRectPx().width() / 2, 1);
275
 
276
-    aDialog->addButton(tr(BUTTON_CLOSE));
277
+    aDialog->addButton(stCString("Website"))->signals.onBtnClick += stSlot(this, &StImageViewerGUI::doCheckUpdates);
278
+    aDialog->addButton(tr(BUTTON_CLOSE), true);
279
     aDialog->stglInit();
280
+    setModalDialog(aDialog);
281
 }
282
 
283
 void StImageViewerGUI::doUserTips(const size_t ) {
284
-    StProcess::openURL("http://sview.ru/sview2009/usertips");
285
+    StProcess::openURL("http://sview.ru/sview/usertips");
286
 }
287
 
288
 void StImageViewerGUI::doAboutImage(const size_t ) {
289
     StHandle<StImageInfo>& anExtraInfo = myPlugin->myFileInfo;
290
-    if(!anExtraInfo.isNull()) {
291
-        return; // already opened
292
-    }
293
+    anExtraInfo.nullify();
294
 
295
     StHandle<StFileNode>     aFileNode;
296
     StHandle<StStereoParams> aParams;
297
     if(!myPlugin->getCurrentFile(aFileNode, aParams, anExtraInfo)
298
     ||  anExtraInfo.isNull()) {
299
-        StHandle<StMsgQueue> aQueue = myPlugin->getMessagesQueue();
300
-        aQueue->pushInfo(tr(DIALOG_FILE_NOINFO));
301
         anExtraInfo.nullify();
302
+        StGLMessageBox* aMsgBox = new StGLMessageBox(this, tr(DIALOG_FILE_INFO), tr(DIALOG_FILE_NOINFO));
303
+        aMsgBox->addButton(tr(BUTTON_CLOSE), true);
304
+        aMsgBox->stglInit();
305
+        setModalDialog(aMsgBox);
306
         return;
307
     }
308
 
309
@@ -605,6 +650,7 @@
310
 
311
     aDialog->addButton(tr(BUTTON_CLOSE), true);
312
     aDialog->stglInit();
313
+    setModalDialog(aDialog);
314
 }
315
 
316
 /**
317
@@ -674,12 +720,11 @@
318
     const StHandle<StWindow>& aRend = myPlugin->getMainWindow();
319
     StParamsList aParams;
320
     aParams.add(myPlugin->StApplication::params.ActiveDevice);
321
-    aParams.add(myImage->params.displayMode);
322
+    aParams.add(myImage->params.DisplayMode);
323
     aRend->getOptions(aParams);
324
     aParams.add(myPlugin->params.ToShowFps);
325
     aParams.add(myLangMap->params.language);
326
     aParams.add(myPlugin->params.IsMobileUI);
327
-    myLangMap->params.language->setName(tr(MENU_HELP_LANGS));
328
 
329
     const StString aTitle  = tr(MENU_HELP_HOTKEYS);
330
     StInfoDialog*  aDialog = new StInfoDialog(myPlugin, this, aTitle, scale(650), scale(300));
331
@@ -699,6 +744,7 @@
332
     aDialog->addButton(tr(BUTTON_DEFAULTS), false)->signals.onBtnClick = stSlot(this, &StImageViewerGUI::doResetHotKeys);
333
     aDialog->addButton(tr(BUTTON_CLOSE),    true);
334
     aDialog->stglInit();
335
+    setModalDialog(aDialog);
336
 }
337
 
338
 void StImageViewerGUI::doChangeHotKey1(const size_t theId) {
339
@@ -717,14 +763,17 @@
340
     const StHandle<StWindow>& aRend = myPlugin->getMainWindow();
341
     StParamsList aParams;
342
     aParams.add(myPlugin->StApplication::params.ActiveDevice);
343
-    aParams.add(myImage->params.displayMode);
344
+    aParams.add(myImage->params.DisplayMode);
345
     aRend->getOptions(aParams);
346
     aParams.add(myPlugin->params.ToShowFps);
347
     aParams.add(myLangMap->params.language);
348
     aParams.add(myPlugin->params.IsMobileUI);
349
-    myLangMap->params.language->setName(tr(MENU_HELP_LANGS));
350
+    aParams.add(myPlugin->params.ExitOnEscape);
351
+#if !defined(ST_NO_UPDATES_CHECK)
352
+    aParams.add(myPlugin->params.CheckUpdatesDays);
353
+#endif
354
 
355
-    StInfoDialog* aDialog = new StInfoDialog(myPlugin, this, tr(MENU_HELP_SETTINGS), scale(512), scale(300));
356
+    StInfoDialog* aDialog = new StInfoDialog(myPlugin, this, tr(MENU_HELP_SETTINGS), scale(768), scale(300));
357
 
358
     const int aWidthMax  = aDialog->getContent()->getRectPx().width();
359
     int       aRowLast   = (int )aParams.size();
360
@@ -738,6 +787,7 @@
361
 
362
     aDialog->addButton(tr(BUTTON_CLOSE), true);
363
     aDialog->stglInit();
364
+    setModalDialog(aDialog);
365
 }
366
 
367
 void StImageViewerGUI::doCheckUpdates(const size_t ) {
368
@@ -756,9 +806,6 @@
369
 StGLMenu* StImageViewerGUI::createHelpMenu() {
370
     StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
371
     StGLMenu* aMenuScale        = createScaleMenu();        // Root -> Help -> Scale Interface menu
372
-#if !defined(ST_NO_UPDATES_CHECK)
373
-    StGLMenu* aMenuCheckUpdates = createCheckUpdatesMenu(); // Root -> Help -> Check updates menu
374
-#endif
375
     StGLMenu* aMenuLanguage     = createLanguageMenu();     // Root -> Help -> Language menu
376
 
377
     aMenu->addItem(tr(MENU_HELP_ABOUT))
378
@@ -769,13 +816,13 @@
379
     aMenu->addItem(tr(MENU_HELP_HOTKEYS))
380
          ->setIcon(stCMenuIcon("actionKeyboard"), false)
381
          ->signals.onItemClick.connect(this, &StImageViewerGUI::doListHotKeys);
382
+    aMenu->addItem(tr(MENU_HELP_SETTINGS))
383
+         ->setIcon(stCMenuIcon("actionSettings"), false)
384
+         ->signals.onItemClick.connect(this, &StImageViewerGUI::doMobileSettings);
385
     aMenu->addItem(tr(MENU_HELP_LICENSE))
386
          ->signals.onItemClick.connect(this, &StImageViewerGUI::doOpenLicense);
387
     aMenu->addItem(tr(MENU_HELP_SCALE),   aMenuScale)
388
          ->setIcon(stCMenuIcon("actionFontSize"), false);
389
-#if !defined(ST_NO_UPDATES_CHECK)
390
-    aMenu->addItem(tr(MENU_HELP_UPDATES), aMenuCheckUpdates);
391
-#endif
392
     aMenu->addItem(tr(MENU_HELP_LANGS),   aMenuLanguage)
393
          ->setIcon(stCMenuIcon("actionLanguage"), false);
394
     return aMenu;
395
@@ -786,25 +833,11 @@
396
  */
397
 StGLMenu* StImageViewerGUI::createScaleMenu() {
398
     StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
399
-    aMenu->addItem(tr(MENU_HELP_SCALE_SMALL),   myPlugin->params.ScaleAdjust,  StGLRootWidget::ScaleAdjust_Small);
400
-    aMenu->addItem(tr(MENU_HELP_SCALE_NORMAL),  myPlugin->params.ScaleAdjust,  StGLRootWidget::ScaleAdjust_Normal);
401
-    aMenu->addItem(tr(MENU_HELP_SCALE_BIG),     myPlugin->params.ScaleAdjust,  StGLRootWidget::ScaleAdjust_Big);
402
-    aMenu->addItem(tr(MENU_HELP_SCALE_HIDPI2X), myPlugin->params.ScaleHiDPI2X);
403
-    aMenu->addItem("Mobile UI",                 myPlugin->params.IsMobileUI);
404
-    return aMenu;
405
-}
406
-
407
-/**
408
- * Root -> Help -> Check updates menu
409
- */
410
-StGLMenu* StImageViewerGUI::createCheckUpdatesMenu() {
411
-    StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
412
-    aMenu->addItem(tr(MENU_HELP_UPDATES_NOW))
413
-         ->signals.onItemClick.connect(this, &StImageViewerGUI::doCheckUpdates);
414
-    aMenu->addItem(tr(MENU_HELP_UPDATES_DAY),   myPlugin->params.checkUpdatesDays, 1);
415
-    aMenu->addItem(tr(MENU_HELP_UPDATES_WEEK),  myPlugin->params.checkUpdatesDays, 7);
416
-    aMenu->addItem(tr(MENU_HELP_UPDATES_YEAR),  myPlugin->params.checkUpdatesDays, 355);
417
-    aMenu->addItem(tr(MENU_HELP_UPDATES_NEVER), myPlugin->params.checkUpdatesDays, 0);
418
+    aMenu->addItem(myPlugin->params.ScaleAdjust,  StGLRootWidget::ScaleAdjust_Small);
419
+    aMenu->addItem(myPlugin->params.ScaleAdjust,  StGLRootWidget::ScaleAdjust_Normal);
420
+    aMenu->addItem(myPlugin->params.ScaleAdjust,  StGLRootWidget::ScaleAdjust_Big);
421
+    aMenu->addItem(myPlugin->params.ScaleHiDPI2X);
422
+    aMenu->addItem(myPlugin->params.IsMobileUI);
423
     return aMenu;
424
 }
425
 
426
@@ -879,7 +912,7 @@
427
     aSrcBtn->setDrawShadow(true);
428
     myBtnSrcFrmt = aSrcBtn;
429
 
430
-    myBtnSwapLR = new StGLCheckboxTextured(myPanelUpper, myImage->params.swapLR,
431
+    myBtnSwapLR = new StGLCheckboxTextured(myPanelUpper, myImage->params.SwapLR,
432
                                            iconTexture(stCString("actionSwapLROff"), anIconSize),
433
                                            iconTexture(stCString("actionSwapLROn"),  anIconSize),
434
                                            (aBtnIter++) * anIconStep, 0,
435
@@ -983,12 +1016,13 @@
436
     aDialog->signals.onFileSelected = stSlot(myPlugin, &StImageViewer::doOpen1FileFromGui);
437
 
438
     if(myPlugin->params.lastFolder.isEmpty()) {
439
-        StHandle<StFileNode> aCurrFile = myPlugin->myLoader->getPlayList().getCurrentFile();
440
+        StHandle<StFileNode> aCurrFile = myPlugin->myPlayList->getCurrentFile();
441
         if(!aCurrFile.isNull()) {
442
             myPlugin->params.lastFolder = aCurrFile->isEmpty() ? aCurrFile->getFolderPath() : aCurrFile->getValue(0)->getFolderPath();
443
         }
444
     }
445
     aDialog->openFolder(myPlugin->params.lastFolder);
446
+    setModalDialog(aDialog);
447
 }
448
 
449
 void StImageViewerGUI::doShowMobileExMenu(const size_t ) {
450
@@ -1072,12 +1106,12 @@
451
     }
452
 
453
     myImage = new StGLImageRegion(this, aTextureQueue, true);
454
-    myImage->params.displayMode->setName(tr(MENU_VIEW_DISPLAY_MODE));
455
-    myImage->params.displayMode->changeValues()[StGLImageRegion::MODE_STEREO]     = tr(MENU_VIEW_DISPLAY_MODE_STEREO);
456
-    myImage->params.displayMode->changeValues()[StGLImageRegion::MODE_ONLY_LEFT]  = tr(MENU_VIEW_DISPLAY_MODE_LEFT);
457
-    myImage->params.displayMode->changeValues()[StGLImageRegion::MODE_ONLY_RIGHT] = tr(MENU_VIEW_DISPLAY_MODE_RIGHT);
458
-    myImage->params.displayMode->changeValues()[StGLImageRegion::MODE_PARALLEL]   = tr(MENU_VIEW_DISPLAY_MODE_PARALLEL);
459
-    myImage->params.displayMode->changeValues()[StGLImageRegion::MODE_CROSSYED]   = tr(MENU_VIEW_DISPLAY_MODE_CROSSYED);
460
+    myImage->params.DisplayMode->setName(tr(MENU_VIEW_DISPLAY_MODE));
461
+    myImage->params.DisplayMode->changeValues()[StGLImageRegion::MODE_STEREO]     = tr(MENU_VIEW_DISPLAY_MODE_STEREO);
462
+    myImage->params.DisplayMode->changeValues()[StGLImageRegion::MODE_ONLY_LEFT]  = tr(MENU_VIEW_DISPLAY_MODE_LEFT);
463
+    myImage->params.DisplayMode->changeValues()[StGLImageRegion::MODE_ONLY_RIGHT] = tr(MENU_VIEW_DISPLAY_MODE_RIGHT);
464
+    myImage->params.DisplayMode->changeValues()[StGLImageRegion::MODE_PARALLEL]   = tr(MENU_VIEW_DISPLAY_MODE_PARALLEL);
465
+    myImage->params.DisplayMode->changeValues()[StGLImageRegion::MODE_CROSSYED]   = tr(MENU_VIEW_DISPLAY_MODE_CROSSYED);
466
     myImage->params.ViewMode->signals.onChanged += stSlot(myPlugin, &StImageViewer::doSwitchViewMode);
467
 
468
     if(isMobile()) {
469
@@ -1174,7 +1208,7 @@
470
         myBtnFull->setOpacity(myIsMinimalGUI ? 1.0f : anOpacity, false);
471
     }
472
 
473
-    const StPlayList::CurrentPosition aCurrPos = myPlugin->myLoader->getPlayList().getCurrentPosition();
474
+    const StPlayList::CurrentPosition aCurrPos = myPlugin->myPlayList->getCurrentPosition();
475
     if(myBtnPrev != NULL) {
476
         myBtnPrev->setOpacityScale(aCurrPos == StPlayList::CurrentPosition_Middle
477
                                 || aCurrPos == StPlayList::CurrentPosition_Last ? 1.0f : 0.5f);
478
@@ -1184,13 +1218,13 @@
479
                                 || aCurrPos == StPlayList::CurrentPosition_First ? 1.0f : 0.5f);
480
     }
481
 
482
-    StFormat aSrcFormat = (StFormat )myPlugin->params.srcFormat->getValue();
483
+    StFormat aSrcFormat = (StFormat )myPlugin->params.SrcStereoFormat->getValue();
484
     if(aSrcFormat == StFormat_AUTO
485
     && !aParams.isNull()) {
486
         aSrcFormat = aParams->StereoFormat;
487
     }
488
     if(!aParams.isNull()
489
-     && myImage->params.swapLR->getValue()) {
490
+     && myImage->params.SwapLR->getValue()) {
491
         aSrcFormat = st::formatReversed(aSrcFormat);
492
     }
493
     if(myBtnSrcFrmt != NULL) {
494
@@ -1231,7 +1265,7 @@
495
         } else if(::isPointIn(myBtnInfo, theCursor)) {
496
             myDescr->setText(tr(MENU_MEDIA_FILE_INFO));
497
         } else if(::isPointIn(myBtnSwapLR, theCursor)) {
498
-            size_t aLngId = myImage->params.swapLR->getValue() ? SWAP_LR_ON : SWAP_LR_OFF;
499
+            size_t aLngId = myImage->params.SwapLR->getValue() ? SWAP_LR_ON : SWAP_LR_OFF;
500
             myDescr->setText(tr(aLngId));
501
         } else if(::isPointIn(myBtnList, theCursor)) {
502
             myDescr->setText(tr(PLAYLIST));
503
@@ -1269,11 +1303,6 @@
504
     if(myDescr != NULL) {
505
         myDescr->setPoint(pointZo);
506
     }
507
-    if(myLangMap->wasReloaded()) {
508
-        myPlugin->myToRecreateMenu = true;
509
-        myLangMap->resetReloaded();
510
-        StImageViewerStrings::loadDefaults(*myLangMap);
511
-    }
512
 }
513
 
514
 void StImageViewerGUI::stglResize(const StGLBoxPx& theRectPx) {
515
@@ -1351,6 +1380,7 @@
516
     StGLMessageBox* aDialog = new StGLMessageBox(this, "", anAboutText, scale(512), scale(300));
517
     aDialog->addButton(tr(BUTTON_CLOSE));
518
     aDialog->stglInit();
519
+    setModalDialog(aDialog);
520
 }
521
 
522
 void StImageViewerGUI::showUpdatesNotify() {
523
sview-15_11.tar.gz/StImageViewer/StImageViewerGUI.h -> sview-16_06.tar.gz/StImageViewer/StImageViewerGUI.h Changed
33
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * StImageViewer program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU General Public License as published by
8
@@ -94,9 +94,9 @@
9
                               const StHandle<StPlayList>&       thePlayList,
10
                               const StHandle<StGLTextureQueue>& theTextureQueue);
11
     ST_LOCAL virtual ~StImageViewerGUI();
12
-    ST_LOCAL virtual void stglUpdate(const StPointD_t& pointZo);
13
-    ST_LOCAL virtual void stglResize(const StGLBoxPx& theRectPx);
14
-    ST_LOCAL virtual void stglDraw(unsigned int theView);
15
+    ST_LOCAL virtual void stglUpdate(const StPointD_t& thePointZo) ST_ATTR_OVERRIDE;
16
+    ST_LOCAL virtual void stglResize(const StGLBoxPx& theRectPx) ST_ATTR_OVERRIDE;
17
+    ST_LOCAL virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
18
 
19
     ST_LOCAL void setVisibility(const StPointD_t& theCursor,
20
                                 bool              toForceHide);
21
@@ -150,10 +150,10 @@
22
     ST_LOCAL StGLMenu* createDisplayRatioMenu(); // Root -> View menu -> Display Ratio
23
     ST_LOCAL StGLMenu* createSmoothFilterMenu(); // Root -> View menu -> Smooth Filter
24
     ST_LOCAL StGLMenu* createImageAdjustMenu();  // Root -> View menu -> Image Adjust
25
+    ST_LOCAL StGLMenu* create3dAdjustMenu();     // Root -> View menu -> Stereo 3D Adjust
26
     ST_LOCAL StGLMenu* createOutputMenu();       // Root -> Output menu
27
     ST_LOCAL StGLMenu* createHelpMenu();         // Root -> Help menu
28
     ST_LOCAL StGLMenu* createScaleMenu();        // Root -> Scale Interface menu
29
-    ST_LOCAL StGLMenu* createCheckUpdatesMenu(); // Root -> Help -> Check updates menu
30
     ST_LOCAL StGLMenu* createLanguageMenu();     // Root -> Help -> Language menu
31
 
32
     ST_LOCAL void fillSrcFormatMenu(StGLMenu* theMenu);
33
sview-15_11.tar.gz/StImageViewer/StImageViewerStrings.cpp -> sview-16_06.tar.gz/StImageViewer/StImageViewerStrings.cpp Changed
29
 
1
@@ -158,7 +158,7 @@
2
                "version");
3
     theStrings(ABOUT_DESCRIPTION,
4
                "Image viewer allows you to open stereoscopic images in formats JPEG, PNG, MPO and others.\n"
5
-               "(C) 2007-2015 Kirill Gavrilov <kirill@sview.ru>\n"
6
+               "(C) 2007-2016 Kirill Gavrilov <kirill@sview.ru>\n"
7
                "Official site: www.sview.ru\n"
8
                "\n"
9
                "This program is distributed under GPL3.0");
10
@@ -213,6 +213,18 @@
11
                "fullscreen/windowed");
12
     theStrings(BTN_SRC_FORMAT,
13
                "Source format:");
14
+
15
+    theStrings(OPTION_EXIT_ON_ESCAPE,
16
+               "Exit sView on Escape");
17
+    theStrings(OPTION_EXIT_ON_ESCAPE_NEVER,
18
+               "Never");
19
+    theStrings(OPTION_EXIT_ON_ESCAPE_ONE_CLICK,
20
+               "One click");
21
+    theStrings(OPTION_EXIT_ON_ESCAPE_DOUBLE_CLICK,
22
+               "Double click");
23
+    theStrings(OPTION_EXIT_ON_ESCAPE_WINDOWED,
24
+               "When windowed");
25
+
26
     theStrings(UPDATES_NOTIFY,
27
                "A new version of sView is available on the official site www.sview.ru.\n"
28
                "Please update your program.");
29
sview-15_11.tar.gz/StImageViewer/StImageViewerStrings.h -> sview-16_06.tar.gz/StImageViewer/StImageViewerStrings.h Changed
15
 
1
@@ -127,6 +127,13 @@
2
         MENU_HELP_SCALE_BIG     = 1592,
3
         MENU_HELP_SCALE_HIDPI2X = 1593,
4
 
5
+        // Settings -> Options
6
+        OPTION_EXIT_ON_ESCAPE              = 1701,
7
+        OPTION_EXIT_ON_ESCAPE_NEVER        = 1702,
8
+        OPTION_EXIT_ON_ESCAPE_ONE_CLICK    = 1703,
9
+        OPTION_EXIT_ON_ESCAPE_DOUBLE_CLICK = 1704,
10
+        OPTION_EXIT_ON_ESCAPE_WINDOWED     = 1705,
11
+
12
         // Open/Save dialogs
13
         DIALOG_OPEN_FILE       = 2000,
14
         DIALOG_OPEN_LEFT       = 2001,
15
sview-15_11.tar.gz/StImageViewer/lang/chinese/StImageViewer.lng -> sview-16_06.tar.gz/StImageViewer/lang/chinese/StImageViewer.lng Changed
13
 
1
@@ -80,6 +80,11 @@
2
 1591=正常
3
 1592=大
4
 1593=强制高解析 2X
5
+?1701=Exit sView on escape
6
+?1702=Do not exit
7
+?1703=On one click
8
+?1704=On double click
9
+?1705=On one click windowed mode
10
 2000=选择图片文件打开
11
 2001=选择左画面图片打开
12
 2002=选择右画面图片文件打开
13
sview-15_11.tar.gz/StImageViewer/lang/czech/StImageViewer.lng -> sview-16_06.tar.gz/StImageViewer/lang/czech/StImageViewer.lng Changed
13
 
1
@@ -81,6 +81,11 @@
2
 1591=Normální
3
 1592=Velké
4
 1593=Extravelké HiDPI 2x
5
+?1701=Exit sView on escape
6
+?1702=Do not exit
7
+?1703=On one click
8
+?1704=On double click
9
+?1705=On one click windowed mode
10
 2000=Otevřít
11
 2001=Otevřít LEVÝ
12
 2002=Otevřít PRAVÝ
13
sview-15_11.tar.gz/StImageViewer/lang/english/StImageViewer.lng -> sview-16_06.tar.gz/StImageViewer/lang/english/StImageViewer.lng Changed
13
 
1
@@ -80,6 +80,11 @@
2
 1591=Normal
3
 1592=Big
4
 1593=Force HiDPI 2X
5
+1701=Exit sView on escape
6
+1702=Do not exit
7
+1703=On one click
8
+1704=On double click
9
+1705=On one click windowed mode
10
 2000=Choose the image file to open
11
 2001=Choose LEFT image file to open
12
 2002=Choose RIGHT image file to open
13
sview-15_11.tar.gz/StImageViewer/lang/french/StImageViewer.lng -> sview-16_06.tar.gz/StImageViewer/lang/french/StImageViewer.lng Changed
13
 
1
@@ -80,6 +80,11 @@
2
 1591=Normal
3
 1592=Gros
4
 1593=Force HiDPI 2X
5
+?1701=Exit sView on escape
6
+?1702=Do not exit
7
+?1703=On one click
8
+?1704=On double click
9
+?1705=On one click windowed mode
10
 2000=Choix du fichier image à ouvrir
11
 2001=Choix du fichier image Gauche à ouvrir
12
 2002=Choix du fichier image Droite à ouvrir
13
sview-15_11.tar.gz/StImageViewer/lang/german/StImageViewer.lng -> sview-16_06.tar.gz/StImageViewer/lang/german/StImageViewer.lng Changed
13
 
1
@@ -80,6 +80,11 @@
2
 1591=normal
3
 1592=groß
4
 1593=erzwingen HiDPI 2X
5
+1701=Schließen sView auf Escape-Taste
6
+1702=Nicht
7
+1703=Auf einen Klick
8
+1704=Auf Doppelklick
9
+?1705=Only when windowed
10
 2000=Wählen die Bilddatei zu öffnen
11
 2001=Wählen die linke Bilddatei zu öffnen
12
 2002=Wählen die rechte Bilddatei zu öffnen
13
sview-15_11.tar.gz/StImageViewer/lang/korean/StImageViewer.lng -> sview-16_06.tar.gz/StImageViewer/lang/korean/StImageViewer.lng Changed
13
 
1
@@ -81,6 +81,11 @@
2
 1591=보통Normal
3
 1592=크게 Big
4
 1593=HiDPI 2X로
5
+?1701=Exit sView on escape
6
+?1702=Do not exit
7
+?1703=On one click
8
+?1704=On double click
9
+?1705=On one click windowed mode
10
 2000=열어볼 이미지 파일 선택
11
 2001=왼쪽 이미지 선택
12
 2002=오른쪽 이미지 선택
13
sview-15_11.tar.gz/StImageViewer/lang/russian/StImageViewer.lng -> sview-16_06.tar.gz/StImageViewer/lang/russian/StImageViewer.lng Changed
13
 
1
@@ -80,6 +80,11 @@
2
 1591=Нормально
3
 1592=Крупно
4
 1593=Форсировать HiDPI 2X
5
+1701=Выйти из программы по Escape
6
+1702=Никогда
7
+1703=Одно нажатие
8
+1704=Двойное нажатие
9
+1705=Только в оконном режиме
10
 2000=Выберите картинку
11
 2001=Выберите файл с ЛЕВЫМ ракурсом
12
 2002=Выберите файл с ПРАВЫМ ракурсом
13
sview-15_11.tar.gz/StMonitorsDump/StMonitorsDump.cbp -> sview-16_06.tar.gz/StMonitorsDump/StMonitorsDump.cbp Changed
18
 
1
@@ -169,7 +169,7 @@
2
                    <Add option="-DST_HAVE_STCONFIG" />
3
                </Compiler>
4
                <Linker>
5
-                   <Add option="-s" />
6
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
7
                    <Add option="-framework Appkit" />
8
                    <Add option="-framework IOKit" />
9
                    <Add library="objc" />
10
@@ -188,6 +188,7 @@
11
                    <Add option="-DST_HAVE_STCONFIG" />
12
                </Compiler>
13
                <Linker>
14
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
15
                    <Add option="-framework Appkit" />
16
                    <Add option="-framework IOKit" />
17
                    <Add library="objc" />
18
sview-16_06.tar.gz/StMoviePlayer/StALDeviceParam.cpp Added
128
 
1
@@ -0,0 +1,126 @@
2
+/**
3
+ * Copyright © 2016 Kirill Gavrilov <kirill@sview.ru>
4
+ *
5
+ * StMoviePlayer program is free software: you can redistribute it and/or modify
6
+ * it under the terms of the GNU General Public License as published by
7
+ * the Free Software Foundation, either version 3 of the License, or
8
+ * (at your option) any later version.
9
+ *
10
+ * StMoviePlayer program is distributed in the hope that it will be useful,
11
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
+ * See the GNU General Public License for more details.
14
+ *
15
+ * You should have received a copy of the GNU General Public
16
+ * License along with this program.
17
+ * If not, see <http://www.gnu.org/licenses/>.
18
+ */
19
+
20
+#include "StALDeviceParam.h"
21
+
22
+#include "StVideo/StALContext.h"
23
+
24
+namespace {
25
+
26
+#ifdef _WIN32
27
+    inline void stFromLocaleOrUtf8(StString&   theStrResult,
28
+                                   const char* theStrInput) {
29
+        int aWideSize = MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, theStrInput, -1, NULL, 0);
30
+        if(aWideSize == 0) {
31
+            theStrResult.fromLocale(theStrInput);
32
+            return;
33
+        }
34
+
35
+        wchar_t* aWideBuffer = new wchar_t[aWideSize + 1];
36
+        MultiByteToWideChar(CP_UTF8, 0, theStrInput, -1, aWideBuffer, aWideSize);
37
+        aWideBuffer[aWideSize] = L'\0';
38
+        theStrResult.fromUnicode(aWideBuffer);
39
+        delete[] aWideBuffer;
40
+    }
41
+#endif
42
+
43
+}
44
+
45
+StALDeviceParam::StALDeviceParam()
46
+: StInt32ParamNamed(0, stCString("alDevice"), stCString("OpenAL Device")) {
47
+    initList();
48
+}
49
+
50
+void StALDeviceParam::initList() {
51
+    myValue = 0;
52
+    myDevicesLoc.clear();
53
+    myDevicesUtf.clear();
54
+    StString aName;
55
+    if(alcIsExtensionPresent(NULL, "ALC_ENUMERATE_ALL_EXT") != AL_TRUE) {
56
+        // ancient OpenAL implementations (like from apples) support only single device
57
+        const ALchar* aDefDevice = alcGetString(NULL, ALC_DEFAULT_DEVICE_SPECIFIER);
58
+    #ifdef _WIN32
59
+        stFromLocaleOrUtf8(aName, aDefDevice);
60
+    #else
61
+        aName.fromUnicode(aDefDevice);
62
+    #endif
63
+        myDevicesUtf.add(aName);
64
+        myDevicesLoc.push_back(std::string(aDefDevice));
65
+        return;
66
+    }
67
+
68
+    const StString THE_ALSOFT_SUFFIX(" on OpenAL Soft");
69
+    const ALchar* aDevicesNames = alcGetString(NULL, ALC_ALL_DEVICES_SPECIFIER);
70
+    while(aDevicesNames != NULL
71
+      && *aDevicesNames != '\0') {
72
+        std::string aCName(aDevicesNames);
73
+    #ifdef _WIN32
74
+        stFromLocaleOrUtf8(aName, aDevicesNames);
75
+    #else
76
+        aName.fromUnicode(aDevicesNames);
77
+    #endif
78
+        // cut-off redundant suffixes - the names are too long
79
+        if(aName.isEndsWithIgnoreCase(THE_ALSOFT_SUFFIX)) {
80
+            size_t anEnd = aName.getLength() - THE_ALSOFT_SUFFIX.getLength();
81
+            aName = aName.subString(0, anEnd);
82
+        }
83
+
84
+        myDevicesUtf.add(aName);
85
+        myDevicesLoc.push_back(aCName);
86
+        aDevicesNames += aCName.length() + 1;
87
+    }
88
+    if(myDevicesUtf.isEmpty()) {
89
+        // append dummy device
90
+        myDevicesUtf.add("None");
91
+        myDevicesLoc.push_back("");
92
+    }
93
+}
94
+
95
+StALDeviceParam::~StALDeviceParam() {}
96
+
97
+int32_t StALDeviceParam::getValueFromName(const StString& theName) {
98
+    for(size_t anId = 0; anId < myDevicesUtf.size(); ++anId) {
99
+        if(myDevicesUtf[anId] == theName) {
100
+            return int32_t(anId);
101
+        }
102
+    }
103
+    return -1;
104
+}
105
+
106
+bool StALDeviceParam::init(const StString& theActive) {
107
+    myValue = getValueFromName(theActive);
108
+    return myValue >= 0;
109
+}
110
+
111
+StString StALDeviceParam::getUtfTitle() const {
112
+    if(myDevicesUtf.isEmpty()) {
113
+        return StString();
114
+    }
115
+
116
+    int32_t anActive = getValue();
117
+    return myDevicesUtf[(anActive >= 0 && size_t(anActive) < myDevicesUtf.size()) ? size_t(anActive) : 0];
118
+}
119
+
120
+std::string StALDeviceParam::getCTitle() const {
121
+    if(myDevicesUtf.isEmpty()) {
122
+        return std::string();
123
+    }
124
+
125
+    int32_t anActive = getValue();
126
+    return myDevicesLoc[(anActive >= 0 && size_t(anActive) < myDevicesUtf.size()) ? size_t(anActive) : 0];
127
+}
128
sview-16_06.tar.gz/StMoviePlayer/StALDeviceParam.h Added
72
 
1
@@ -0,0 +1,70 @@
2
+/**
3
+ * Copyright © 2016 Kirill Gavrilov <kirill@sview.ru>
4
+ *
5
+ * StMoviePlayer program is free software: you can redistribute it and/or modify
6
+ * it under the terms of the GNU General Public License as published by
7
+ * the Free Software Foundation, either version 3 of the License, or
8
+ * (at your option) any later version.
9
+ *
10
+ * StMoviePlayer program is distributed in the hope that it will be useful,
11
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
+ * See the GNU General Public License for more details.
14
+ *
15
+ * You should have received a copy of the GNU General Public
16
+ * License along with this program.
17
+ * If not, see <http://www.gnu.org/licenses/>.
18
+ */
19
+
20
+#ifndef __StALDeviceParam_h_
21
+#define __StALDeviceParam_h_
22
+
23
+#include <StSettings/StParam.h>
24
+
25
+#include <vector>
26
+
27
+class StALDeviceParam : public StInt32ParamNamed {
28
+
29
+        public:
30
+
31
+    /**
32
+     * Main constructor.
33
+     */
34
+    ST_LOCAL StALDeviceParam();
35
+
36
+    /**
37
+     * Destructor.
38
+     */
39
+    ST_LOCAL virtual ~StALDeviceParam();
40
+
41
+    ST_LOCAL void initList();
42
+
43
+    ST_LOCAL bool init(const StString& theActive);
44
+
45
+    ST_LOCAL int32_t getValueFromName(const StString& theName);
46
+
47
+    /**
48
+     * Returns title for active AL device.
49
+     */
50
+    ST_LOCAL StString getUtfTitle() const;
51
+
52
+    /**
53
+     * Returns title for active AL device.
54
+     */
55
+    ST_LOCAL std::string getCTitle() const;
56
+
57
+    /**
58
+     * Return list of available translations.
59
+     */
60
+    ST_LOCAL const StArrayList<StString>& getList() const {
61
+        return myDevicesUtf;
62
+    }
63
+
64
+        private:
65
+
66
+    std::vector<std::string> myDevicesLoc;
67
+    StArrayList<StString>    myDevicesUtf;
68
+
69
+};
70
+
71
+#endif // __StALDeviceParam_h_
72
sview-16_06.tar.gz/StMoviePlayer/StMovieOpenDialog.cpp Added
162
 
1
@@ -0,0 +1,160 @@
2
+/**
3
+ * Copyright © 2016 Kirill Gavrilov <kirill@sview.ru>
4
+ *
5
+ * StMoviePlayer program is free software: you can redistribute it and/or modify
6
+ * it under the terms of the GNU General Public License as published by
7
+ * the Free Software Foundation, either version 3 of the License, or
8
+ * (at your option) any later version.
9
+ *
10
+ * StMoviePlayer program is distributed in the hope that it will be useful,
11
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
+ * See the GNU General Public License for more details.
14
+ *
15
+ * You should have received a copy of the GNU General Public
16
+ * License along with this program.
17
+ * If not, see <http://www.gnu.org/licenses/>.
18
+ */
19
+
20
+#include "StMovieOpenDialog.h"
21
+
22
+#include "StMoviePlayer.h"
23
+#include "StMoviePlayerStrings.h"
24
+#include "StVideo/StVideo.h"
25
+
26
+#include <StGL/StPlayList.h>
27
+
28
+StMovieOpenDialog::StMovieOpenDialog(StMoviePlayer* thePlugin)
29
+: myPlugin(thePlugin),
30
+  myState(StMovieOpenDialog::Dialog_Inactive) {
31
+    //
32
+}
33
+
34
+StMovieOpenDialog::~StMovieOpenDialog() {
35
+    if(!myThread.isNull()) {
36
+        myThread->wait();
37
+    }
38
+}
39
+
40
+bool StMovieOpenDialog::openDialog(const StMovieOpenDialog::DialogState theMode) {
41
+    StMutexAuto aLock(myMutex);
42
+    if(myState != StMovieOpenDialog::Dialog_Inactive) {
43
+        return false;
44
+    }
45
+
46
+    if(myPlugin->params.lastFolder.isEmpty()) {
47
+        StHandle<StFileNode> aCurrFile = myPlugin->myPlayList->getCurrentFile();
48
+        if(!aCurrFile.isNull()) {
49
+            myPlugin->params.lastFolder = aCurrFile->isEmpty() ? aCurrFile->getFolderPath() : aCurrFile->getValue(0)->getFolderPath();
50
+        }
51
+    }
52
+
53
+    myFolder = myPlugin->params.lastFolder;
54
+    myState  = theMode;
55
+    myThread = new StThread(openDialogThread, this);
56
+    return true;
57
+}
58
+
59
+void StMovieOpenDialog::resetResults() {
60
+    StMutexAuto aLock(myMutex);
61
+    if(myState != StMovieOpenDialog::Dialog_HasFiles) {
62
+        return;
63
+    }
64
+
65
+    if(!myThread.isNull()) {
66
+        myThread->wait();
67
+        myThread.nullify();
68
+    }
69
+
70
+    myState = Dialog_Inactive;
71
+    myPathVideoL.clear();
72
+    myPathVideoR.clear();
73
+    myPathAudio .clear();
74
+    myPathSubs  .clear();
75
+}
76
+
77
+void StMovieOpenDialog::setPaths(const StString& thePathLeft,
78
+                                 const StString& thePathRight) {
79
+    StMutexAuto aLock(myMutex);
80
+    if(myState != StMovieOpenDialog::Dialog_Inactive) {
81
+        return;
82
+    }
83
+
84
+    myPathVideoL = thePathLeft;
85
+    myPathVideoR = thePathRight;
86
+    myPathAudio.clear();
87
+    myPathSubs .clear();
88
+    if(!myPathVideoL.isEmpty()) {
89
+        myState = StMovieOpenDialog::Dialog_HasFiles;
90
+    }
91
+}
92
+
93
+SV_THREAD_FUNCTION StMovieOpenDialog::openDialogThread(void* theArg) {
94
+    StMovieOpenDialog* aHandler = (StMovieOpenDialog* )theArg;
95
+    aHandler->dialogLoop();
96
+    return SV_THREAD_RETURN 0;
97
+}
98
+
99
+void StMovieOpenDialog::dialogLoop() {
100
+    myPathVideoL.clear();
101
+    myPathVideoR.clear();
102
+    myPathAudio .clear();
103
+    myPathSubs  .clear();
104
+
105
+    StString aTitle;
106
+    const StMIMEList* aMimeList = &myPlugin->myVideo->getMimeListVideo();
107
+    switch(myState) {
108
+        case Dialog_DoubleMovie:
109
+            aTitle = myPlugin->tr(StMoviePlayerStrings::DIALOG_OPEN_LEFT);
110
+            break;
111
+        case Dialog_Audio:
112
+            aTitle    = "Choose audio file to attach";
113
+            aMimeList = &myPlugin->myVideo->getMimeListAudio();
114
+            break;
115
+        case Dialog_Subtitles:
116
+            aTitle    = "Choose subtitles file to attach";
117
+            aMimeList = &myPlugin->myVideo->getMimeListSubtitles();
118
+            break;
119
+        case Dialog_SingleMovie:
120
+        default:
121
+            aTitle = myPlugin->tr(StMoviePlayerStrings::DIALOG_OPEN_FILE);
122
+            break;
123
+    }
124
+
125
+    StString aFilePath, aDummy;
126
+    if(!StFileNode::openFileDialog(myFolder, aTitle, *aMimeList, aFilePath, false)) {
127
+        StMutexAuto aLock(myMutex);
128
+        myState = StMovieOpenDialog::Dialog_Inactive;
129
+        return;
130
+    }
131
+
132
+    switch(myState) {
133
+        case Dialog_DoubleMovie: {
134
+            aTitle =  myPlugin->tr(StMoviePlayerStrings::DIALOG_OPEN_RIGHT);
135
+            StFileNode::getFolderAndFile(aFilePath, myFolder, aDummy);
136
+            myPathVideoL = aFilePath;
137
+            if(!StFileNode::openFileDialog(myFolder, aTitle, *aMimeList, myPathVideoR, false)) {
138
+                StMutexAuto aLock(myMutex);
139
+                myState = StMovieOpenDialog::Dialog_Inactive;
140
+                return;
141
+            }
142
+            break;
143
+        }
144
+        case Dialog_Audio: {
145
+            myPathAudio = aFilePath;
146
+            break;
147
+        }
148
+        case Dialog_Subtitles: {
149
+            myPathSubs = aFilePath;
150
+            break;
151
+        }
152
+        case Dialog_SingleMovie:
153
+        default: {
154
+            myPathVideoL = aFilePath;
155
+            break;
156
+        }
157
+    }
158
+
159
+    StMutexAuto aLock(myMutex);
160
+    myState = StMovieOpenDialog::Dialog_HasFiles;
161
+}
162
sview-16_06.tar.gz/StMoviePlayer/StMovieOpenDialog.h Added
132
 
1
@@ -0,0 +1,130 @@
2
+/**
3
+ * Copyright © 2016 Kirill Gavrilov <kirill@sview.ru>
4
+ *
5
+ * StMoviePlayer program is free software: you can redistribute it and/or modify
6
+ * it under the terms of the GNU General Public License as published by
7
+ * the Free Software Foundation, either version 3 of the License, or
8
+ * (at your option) any later version.
9
+ *
10
+ * StMoviePlayer program is distributed in the hope that it will be useful,
11
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
+ * See the GNU General Public License for more details.
14
+ *
15
+ * You should have received a copy of the GNU General Public
16
+ * License along with this program.
17
+ * If not, see <http://www.gnu.org/licenses/>.
18
+ */
19
+
20
+#ifndef __StMovieOpenDialog_h_
21
+#define __StMovieOpenDialog_h_
22
+
23
+#include <StStrings/StString.h>
24
+#include <StThreads/StThread.h>
25
+#include <StThreads/StMutex.h>
26
+
27
+class StMoviePlayer;
28
+
29
+/**
30
+ * Auxiliary class to create standard non-blocking open file dialog in dedicated thread.
31
+ */
32
+class StMovieOpenDialog {
33
+
34
+        public:
35
+
36
+    enum DialogState {
37
+        Dialog_Inactive,    //!< dialog is not opened
38
+        Dialog_SingleMovie, //!< dialog is opened and waiting for user input (one video file)
39
+        Dialog_DoubleMovie, //!< dialog is opened and waiting for user input (two video files)
40
+        Dialog_Audio,       //!< dialog is opened and waiting for user input (audio file)
41
+        Dialog_Subtitles,   //!< dialog is opened and waiting for user input (subtitles file)
42
+        Dialog_HasFiles,    //!< dialog has been closed and waiting for processing results
43
+    };
44
+
45
+        public:
46
+
47
+    /**
48
+     * Main constructor.
49
+     */
50
+    ST_LOCAL StMovieOpenDialog(StMoviePlayer* thePlugin);
51
+
52
+    /**
53
+     * Destructor.
54
+     */
55
+    ST_LOCAL ~StMovieOpenDialog();
56
+
57
+    /**
58
+     * Create open file dialog.
59
+     */
60
+    ST_LOCAL bool openDialog(const StMovieOpenDialog::DialogState theMode);
61
+
62
+    /**
63
+     * Return true for Dialog_HasFiles state.
64
+     */
65
+    ST_LOCAL bool hasResults() {
66
+        StMutexAuto aLock(myMutex);
67
+        return myState == StMovieOpenDialog::Dialog_HasFiles;
68
+    }
69
+
70
+    /**
71
+     * Reset results.
72
+     */
73
+    ST_LOCAL void resetResults();
74
+
75
+    /**
76
+     * Return path to the left file.
77
+     * Should NOT be called within Active state.
78
+     */
79
+    ST_LOCAL const StString& getPathLeft()  const { return myPathVideoL; }
80
+
81
+    /**
82
+     * Return path to the right file.
83
+     * Should NOT be called within Active state.
84
+     */
85
+    ST_LOCAL const StString& getPathRight() const { return myPathVideoR; }
86
+
87
+    /**
88
+     * Return path to the audio file.
89
+     * Should NOT be called within Active state.
90
+     */
91
+    ST_LOCAL const StString& getPathAudio() const { return myPathAudio; }
92
+
93
+    /**
94
+     * Return path to the subtitles file.
95
+     * Should NOT be called within Active state.
96
+     */
97
+    ST_LOCAL const StString& getPathSubtitles() const { return myPathSubs; }
98
+
99
+    /**
100
+     * Set paths to open.
101
+     */
102
+    ST_LOCAL void setPaths(const StString& thePathLeft,
103
+                           const StString& thePathRight);
104
+
105
+        private:
106
+
107
+    /**
108
+     * Thread function wrapper.
109
+     */
110
+    static SV_THREAD_FUNCTION openDialogThread(void* theArg);
111
+
112
+    /**
113
+     * Thread function.
114
+     */
115
+    ST_LOCAL void dialogLoop();
116
+
117
+        private:
118
+
119
+    StMoviePlayer*     myPlugin;
120
+    StHandle<StThread> myThread;
121
+    StMutex            myMutex;
122
+    StString           myFolder;
123
+    StString           myPathVideoL;
124
+    StString           myPathVideoR;
125
+    StString           myPathAudio;
126
+    StString           myPathSubs;
127
+    DialogState        myState;
128
+
129
+};
130
+
131
+#endif // __StMovieOpenDialog_h_
132
sview-15_11.tar.gz/StMoviePlayer/StMoviePlayer.cbp -> sview-16_06.tar.gz/StMoviePlayer/StMoviePlayer.cbp Changed
58
 
1
@@ -207,7 +207,8 @@
2
                    <Add option="-DST_HAVE_STCONFIG" />
3
                </Compiler>
4
                <Linker>
5
-                   <Add option="-s" />
6
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
7
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
8
                    <Add option="-framework Appkit" />
9
                    <Add option="-framework OpenGL" />
10
                    <Add option="-framework OpenAL" />
11
@@ -215,8 +216,6 @@
12
                </Linker>
13
                <ExtraCommands>
14
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
15
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
16
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
17
                </ExtraCommands>
18
            </Target>
19
            <Target title="MAC_gcc_DEBUG">
20
@@ -236,6 +235,8 @@
21
                    <Add option="-DST_HAVE_STCONFIG" />
22
                </Compiler>
23
                <Linker>
24
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
25
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
26
                    <Add option="-framework Appkit" />
27
                    <Add option="-framework OpenGL" />
28
                    <Add option="-framework OpenAL" />
29
@@ -243,8 +244,6 @@
30
                </Linker>
31
                <ExtraCommands>
32
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
33
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
34
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
35
                </ExtraCommands>
36
            </Target>
37
        </Build>
38
@@ -275,6 +274,10 @@
39
            <Add directory="../lib/$(TARGET_NAME)" />
40
            <Add directory="../bin/$(TARGET_NAME)" />
41
        </Linker>
42
+       <Unit filename="StALDeviceParam.cpp" />
43
+       <Unit filename="StALDeviceParam.h" />
44
+       <Unit filename="StMovieOpenDialog.cpp" />
45
+       <Unit filename="StMovieOpenDialog.h" />
46
        <Unit filename="StMoviePlayer.cpp" />
47
        <Unit filename="StMoviePlayer.h" />
48
        <Unit filename="StMoviePlayer.rc">
49
@@ -288,8 +291,6 @@
50
        <Unit filename="StMoviePlayerInfo.h" />
51
        <Unit filename="StMoviePlayerStrings.cpp" />
52
        <Unit filename="StMoviePlayerStrings.h" />
53
-       <Unit filename="StSeekBar.cpp" />
54
-       <Unit filename="StSeekBar.h" />
55
        <Unit filename="StTimeBox.h" />
56
        <Unit filename="StVideo/StALContext.cpp" />
57
        <Unit filename="StVideo/StALContext.h" />
58
sview-15_11.tar.gz/StMoviePlayer/StMoviePlayer.cpp -> sview-16_06.tar.gz/StMoviePlayer/StMoviePlayer.cpp Changed
1445
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2007-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * StMoviePlayer program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU General Public License as published by
8
@@ -18,10 +18,11 @@
9
 
10
 #include "StMoviePlayer.h"
11
 
12
+#include "StALDeviceParam.h"
13
+#include "StMovieOpenDialog.h"
14
 #include "StMoviePlayerGUI.h"
15
 #include "StMoviePlayerStrings.h"
16
 #include "StVideo/StVideo.h"
17
-#include "StSeekBar.h"
18
 #include "StTimeBox.h"
19
 
20
 #include <StImage/StImageFile.h>
21
@@ -37,6 +38,7 @@
22
 #include <StGLWidgets/StGLMessageBox.h>
23
 #include <StGLWidgets/StGLMsgStack.h>
24
 #include <StGLWidgets/StGLPlayList.h>
25
+#include <StGLWidgets/StGLSeekBar.h>
26
 #include <StGLWidgets/StGLSubtitles.h>
27
 #include <StGLWidgets/StGLTextureButton.h>
28
 
29
@@ -59,46 +61,12 @@
30
 
31
 namespace {
32
 
33
-    static const char ST_SETTING_FPSTARGET[]     = "fpsTarget";
34
-    static const char ST_SETTING_SRCFORMAT[]     = "srcFormat";
35
     static const char ST_SETTING_LAST_FOLDER[]   = "lastFolder";
36
-    static const char ST_SETTING_OPENAL_DEVICE[] = "alDevice";
37
     static const char ST_SETTING_RECENT_FILES[]  = "recent";
38
-    static const char ST_SETTING_SHOW_LIST[]     = "showPlaylist";
39
-    static const char ST_SETTING_TRACK_HEAD[]    = "toTrackHead";
40
-    static const char ST_SETTING_SHOW_FPS[]      = "toShowFps";
41
-    static const char ST_SETTING_MOBILE_UI[]     = "isMobileUI";
42
-    static const char ST_SETTING_LIMIT_FPS[]     = "toLimitFps";
43
-    static const char ST_SETTING_GPU_DECODING[]  = "gpuDecoding";
44
-    static const char ST_SETTING_VSYNC[]         = "vsync";
45
-
46
-    static const char ST_SETTING_SCALE_ADJUST[]  = "scaleAdjust";
47
-    static const char ST_SETTING_SCALE_FORCE2X[] = "scale2X";
48
-    static const char ST_SETTING_SUBTITLES_PLACE[]="subsPlace";
49
-    static const char ST_SETTING_SUBTITLES_TOPDY[]="subsTopDY";
50
-    static const char ST_SETTING_SUBTITLES_BOTTOMDY[]="subsBottomDY";
51
-    static const char ST_SETTING_SUBTITLES_SIZE[]= "subsSize";
52
-    static const char ST_SETTING_SUBTITLES_PARALLAX[] = "subsParallax";
53
-    static const char ST_SETTING_SUBTITLES_PARSER[] = "subsParser";
54
-    static const char ST_SETTING_SEARCH_SUBS[]   = "toSearchSubs";
55
-    static const char ST_SETTING_FULLSCREEN[]    = "fullscreen";
56
+
57
     static const char ST_SETTING_VIEWMODE[]      = "viewMode";
58
-    static const char ST_SETTING_STEREO_MODE[]   = "viewStereoMode";
59
-    static const char ST_SETTING_TEXFILTER[]     = "viewTexFilter";
60
     static const char ST_SETTING_GAMMA[]         = "viewGamma";
61
-    static const char ST_SETTING_SHUFFLE[]       = "shuffle";
62
-    static const char ST_SETTING_LOOP_SINGLE[]   = "loopSingle";
63
-    static const char ST_SETTING_GLOBAL_MKEYS[]  = "globalMediaKeys";
64
-    static const char ST_SETTING_RATIO[]         = "ratio";
65
-    static const char ST_SETTING_HEAL_ANAMORPHIC[] = "toHealAnamorphic";
66
-    static const char ST_SETTING_UPDATES_LAST_CHECK[] = "updatesLastCheck";
67
-    static const char ST_SETTING_UPDATES_INTERVAL[]   = "updatesInterval";
68
-    static const char ST_SETTING_SAVE_IMG_TYPE[] = "snapImgType";
69
-    static const char ST_SETTING_EXPERIMENTAL[]  = "experimental";
70
-
71
-    static const char ST_SETTING_WEBUI_ON[]      = "webuiOn";
72
-    static const char ST_SETTING_WEBUI_PORT[]    = "webuiPort";
73
-    static const char ST_SETTING_WEBUI_ERRORS[]  = "webuiShowErrors";
74
+
75
     static const char ST_SETTING_WEBUI_CMDPORT[] = "webuiCmdPort";
76
 
77
     static const char ST_ARGUMENT_FILE_LEFT[]  = "left";
78
@@ -106,338 +74,14 @@
79
     static const char ST_ARGUMENT_FILE_LAST[]  = "last";
80
     static const char ST_ARGUMENT_FILE_PAUSE[] = "pause";
81
     static const char ST_ARGUMENT_FILE_PAUSED[]= "paused";
82
-    static const char ST_ARGUMENT_BENCHMARK[]  = "benchmark";
83
-    static const char ST_ARGUMENT_SHOW_MENU[]  = "toShowMenu";
84
-    static const char ST_ARGUMENT_SHOW_TOPBAR[]= "toShowTopbar";
85
     static const char ST_ARGUMENT_MONITOR[]    = "monitorId";
86
     static const char ST_ARGUMENT_WINLEFT[]    = "windowLeft";
87
     static const char ST_ARGUMENT_WINTOP[]     = "windowTop";
88
     static const char ST_ARGUMENT_WINWIDTH[]   = "windowWidth";
89
     static const char ST_ARGUMENT_WINHEIGHT[]  = "windowHeight";
90
 
91
-#ifdef _WIN32
92
-    inline void stFromLocaleOrUtf8(StString&   theStrResult,
93
-                                   const char* theStrInput) {
94
-        int aWideSize = MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, theStrInput, -1, NULL, 0);
95
-        if(aWideSize == 0) {
96
-            theStrResult.fromLocale(theStrInput);
97
-            return;
98
-        }
99
-
100
-        wchar_t* aWideBuffer = new wchar_t[aWideSize + 1];
101
-        MultiByteToWideChar(CP_UTF8, 0, theStrInput, -1, aWideBuffer, aWideSize);
102
-        aWideBuffer[aWideSize] = L'\0';
103
-        theStrResult.fromUnicode(aWideBuffer);
104
-        delete[] aWideBuffer;
105
-    }
106
-#endif
107
-
108
-}
109
-
110
-StALDeviceParam::StALDeviceParam()
111
-: StInt32Param(0) {
112
-    initList();
113
-}
114
-
115
-void StALDeviceParam::initList() {
116
-    myValue = 0;
117
-    myDevicesLoc.clear();
118
-    myDevicesUtf.clear();
119
-    StString aName;
120
-    if(alcIsExtensionPresent(NULL, "ALC_ENUMERATE_ALL_EXT") != AL_TRUE) {
121
-        // ancient OpenAL implementations (like from apples) support only single device
122
-        const ALchar* aDefDevice = alcGetString(NULL, ALC_DEFAULT_DEVICE_SPECIFIER);
123
-    #ifdef _WIN32
124
-        stFromLocaleOrUtf8(aName, aDefDevice);
125
-    #else
126
-        aName.fromUnicode(aDefDevice);
127
-    #endif
128
-        myDevicesUtf.add(aName);
129
-        myDevicesLoc.push_back(std::string(aDefDevice));
130
-        return;
131
-    }
132
-
133
-    const StString THE_ALSOFT_SUFFIX(" on OpenAL Soft");
134
-    const ALchar* aDevicesNames = alcGetString(NULL, ALC_ALL_DEVICES_SPECIFIER);
135
-    while(aDevicesNames != NULL
136
-      && *aDevicesNames != '\0') {
137
-        std::string aCName(aDevicesNames);
138
-    #ifdef _WIN32
139
-        stFromLocaleOrUtf8(aName, aDevicesNames);
140
-    #else
141
-        aName.fromUnicode(aDevicesNames);
142
-    #endif
143
-        // cut-off redundant suffixes - the names are too long
144
-        if(aName.isEndsWithIgnoreCase(THE_ALSOFT_SUFFIX)) {
145
-            size_t anEnd = aName.getLength() - THE_ALSOFT_SUFFIX.getLength();
146
-            aName = aName.subString(0, anEnd);
147
-        }
148
-
149
-        myDevicesUtf.add(aName);
150
-        myDevicesLoc.push_back(aCName);
151
-        aDevicesNames += aCName.length() + 1;
152
-    }
153
-    if(myDevicesUtf.isEmpty()) {
154
-        // append dummy device
155
-        myDevicesUtf.add("None");
156
-        myDevicesLoc.push_back("");
157
-    }
158
-}
159
-
160
-StALDeviceParam::~StALDeviceParam() {}
161
-
162
-int32_t StALDeviceParam::getValueFromName(const StString& theName) {
163
-    for(size_t anId = 0; anId < myDevicesUtf.size(); ++anId) {
164
-        if(myDevicesUtf[anId] == theName) {
165
-            return int32_t(anId);
166
-        }
167
-    }
168
-    return -1;
169
-}
170
-
171
-bool StALDeviceParam::init(const StString& theActive) {
172
-    myValue = getValueFromName(theActive);
173
-    return myValue >= 0;
174
-}
175
-
176
-StString StALDeviceParam::getUtfTitle() const {
177
-    if(myDevicesUtf.isEmpty()) {
178
-        return StString();
179
-    }
180
-
181
-    int32_t anActive = getValue();
182
-    return myDevicesUtf[(anActive >= 0 && size_t(anActive) < myDevicesUtf.size()) ? size_t(anActive) : 0];
183
-}
184
-
185
-std::string StALDeviceParam::getCTitle() const {
186
-    if(myDevicesUtf.isEmpty()) {
187
-        return std::string();
188
-    }
189
-
190
-    int32_t anActive = getValue();
191
-    return myDevicesLoc[(anActive >= 0 && size_t(anActive) < myDevicesUtf.size()) ? size_t(anActive) : 0];
192
 }
193
 
194
-/**
195
- * Auxiliary class to create standard non-blocking open file dialog in dedicated thread.
196
- */
197
-class StMoviePlayer::StOpenVideo {
198
-
199
-        public:
200
-
201
-    enum DialogState {
202
-        Dialog_Inactive,    //!< dialog is not opened
203
-        Dialog_SingleMovie, //!< dialog is opened and waiting for user input (one video file)
204
-        Dialog_DoubleMovie, //!< dialog is opened and waiting for user input (two video files)
205
-        Dialog_Audio,       //!< dialog is opened and waiting for user input (audio file)
206
-        Dialog_Subtitles,   //!< dialog is opened and waiting for user input (subtitles file)
207
-        Dialog_HasFiles,    //!< dialog has been closed and waiting for processing results
208
-    };
209
-
210
-        public:
211
-
212
-    /**
213
-     * Main constructor.
214
-     */
215
-    ST_LOCAL StOpenVideo(StMoviePlayer* thePlugin)
216
-    : myPlugin(thePlugin),
217
-      myState(StOpenVideo::Dialog_Inactive) {}
218
-
219
-    /**
220
-     * Destructor.
221
-     */
222
-    ST_LOCAL ~StOpenVideo() {
223
-        if(!myThread.isNull()) {
224
-            myThread->wait();
225
-        }
226
-    }
227
-
228
-    /**
229
-     * Create open file dialog.
230
-     */
231
-    bool openDialog(const StOpenVideo::DialogState theMode) {
232
-        StMutexAuto aLock(myMutex);
233
-        if(myState != StOpenVideo::Dialog_Inactive) {
234
-            return false;
235
-        }
236
-
237
-        if(myPlugin->params.lastFolder.isEmpty()) {
238
-            StHandle<StFileNode> aCurrFile = myPlugin->myVideo->getPlayList().getCurrentFile();
239
-            if(!aCurrFile.isNull()) {
240
-                myPlugin->params.lastFolder = aCurrFile->isEmpty() ? aCurrFile->getFolderPath() : aCurrFile->getValue(0)->getFolderPath();
241
-            }
242
-        }
243
-
244
-        myFolder = myPlugin->params.lastFolder;
245
-        myState  = theMode;
246
-        myThread = new StThread(openDialogThread, this);
247
-        return true;
248
-    }
249
-
250
-    /**
251
-     * Return true for Dialog_HasFiles state.
252
-     */
253
-    ST_LOCAL bool hasResults() {
254
-        StMutexAuto aLock(myMutex);
255
-        return myState == StOpenVideo::Dialog_HasFiles;
256
-    }
257
-
258
-    /**
259
-     * Reset results.
260
-     */
261
-    ST_LOCAL void resetResults() {
262
-        StMutexAuto aLock(myMutex);
263
-        if(myState != StOpenVideo::Dialog_HasFiles) {
264
-            return;
265
-        }
266
-
267
-        if(!myThread.isNull()) {
268
-            myThread->wait();
269
-            myThread.nullify();
270
-        }
271
-
272
-        myState = Dialog_Inactive;
273
-        myPathVideoL.clear();
274
-        myPathVideoR.clear();
275
-        myPathAudio .clear();
276
-        myPathSubs  .clear();
277
-    }
278
-
279
-    /**
280
-     * Return path to the left file.
281
-     * Should NOT be called within Active state.
282
-     */
283
-    ST_LOCAL const StString& getPathLeft()  const { return myPathVideoL; }
284
-
285
-    /**
286
-     * Return path to the right file.
287
-     * Should NOT be called within Active state.
288
-     */
289
-    ST_LOCAL const StString& getPathRight() const { return myPathVideoR; }
290
-
291
-    /**
292
-     * Return path to the audio file.
293
-     * Should NOT be called within Active state.
294
-     */
295
-    ST_LOCAL const StString& getPathAudio() const { return myPathAudio; }
296
-
297
-    /**
298
-     * Return path to the subtitles file.
299
-     * Should NOT be called within Active state.
300
-     */
301
-    ST_LOCAL const StString& getPathSubtitles() const { return myPathSubs; }
302
-
303
-    /**
304
-     * Set paths to open.
305
-     */
306
-    ST_LOCAL void setPaths(const StString& thePathLeft,
307
-                           const StString& thePathRight) {
308
-        StMutexAuto aLock(myMutex);
309
-        if(myState != StOpenVideo::Dialog_Inactive) {
310
-            return;
311
-        }
312
-
313
-        myPathVideoL = thePathLeft;
314
-        myPathVideoR = thePathRight;
315
-        myPathAudio.clear();
316
-        myPathSubs .clear();
317
-        if(!myPathVideoL.isEmpty()) {
318
-            myState = StOpenVideo::Dialog_HasFiles;
319
-        }
320
-    }
321
-
322
-        private:
323
-
324
-    /**
325
-     * Thread function wrapper.
326
-     */
327
-    static SV_THREAD_FUNCTION openDialogThread(void* theArg) {
328
-        StOpenVideo* aHandler = (StOpenVideo* )theArg;
329
-        aHandler->dialogLoop();
330
-        return SV_THREAD_RETURN 0;
331
-    }
332
-
333
-    /**
334
-     * Thread function.
335
-     */
336
-    ST_LOCAL void dialogLoop() {
337
-        myPathVideoL.clear();
338
-        myPathVideoR.clear();
339
-        myPathAudio .clear();
340
-        myPathSubs  .clear();
341
-
342
-        StString aTitle;
343
-        const StMIMEList* aMimeList = &myPlugin->myVideo->getMimeListVideo();
344
-        switch(myState) {
345
-            case Dialog_DoubleMovie:
346
-                aTitle = myPlugin->myLangMap->getValue(DIALOG_OPEN_LEFT);
347
-                break;
348
-            case Dialog_Audio:
349
-                aTitle    = "Choose audio file to attach";
350
-                aMimeList = &myPlugin->myVideo->getMimeListAudio();
351
-                break;
352
-            case Dialog_Subtitles:
353
-                aTitle    = "Choose subtitles file to attach";
354
-                aMimeList = &myPlugin->myVideo->getMimeListSubtitles();
355
-                break;
356
-            case Dialog_SingleMovie:
357
-            default:
358
-                aTitle = myPlugin->myLangMap->getValue(DIALOG_OPEN_FILE);
359
-                break;
360
-        }
361
-
362
-        StString aFilePath, aDummy;
363
-        if(!StFileNode::openFileDialog(myFolder, aTitle, *aMimeList, aFilePath, false)) {
364
-            StMutexAuto aLock(myMutex);
365
-            myState = StOpenVideo::Dialog_Inactive;
366
-            return;
367
-        }
368
-
369
-        switch(myState) {
370
-            case Dialog_DoubleMovie: {
371
-                aTitle =  myPlugin->myLangMap->getValue(DIALOG_OPEN_RIGHT);
372
-                StFileNode::getFolderAndFile(aFilePath, myFolder, aDummy);
373
-                myPathVideoL = aFilePath;
374
-                if(!StFileNode::openFileDialog(myFolder, aTitle, *aMimeList, myPathVideoR, false)) {
375
-                    StMutexAuto aLock(myMutex);
376
-                    myState = StOpenVideo::Dialog_Inactive;
377
-                    return;
378
-                }
379
-                break;
380
-            }
381
-            case Dialog_Audio: {
382
-                myPathAudio = aFilePath;
383
-                break;
384
-            }
385
-            case Dialog_Subtitles: {
386
-                myPathSubs = aFilePath;
387
-                break;
388
-            }
389
-            case Dialog_SingleMovie:
390
-            default: {
391
-                myPathVideoL = aFilePath;
392
-                break;
393
-            }
394
-        }
395
-
396
-        StMutexAuto aLock(myMutex);
397
-        myState = StOpenVideo::Dialog_HasFiles;
398
-    }
399
-
400
-        private:
401
-
402
-    StMoviePlayer*     myPlugin;
403
-    StHandle<StThread> myThread;
404
-    StMutex            myMutex;
405
-    StString           myFolder;
406
-    StString           myPathVideoL;
407
-    StString           myPathVideoR;
408
-    StString           myPathAudio;
409
-    StString           myPathSubs;
410
-    DialogState        myState;
411
-
412
-};
413
-
414
 void StMoviePlayer::doChangeDevice(const int32_t theValue) {
415
     StApplication::doChangeDevice(theValue);
416
     // update menu
417
@@ -446,6 +90,79 @@
418
 void StMoviePlayer::doPause(const StPauseEvent& theEvent) {
419
     StApplication::doPause(theEvent);
420
     saveAllParams();
421
+    if(!myVideo.isNull()) {
422
+        myVideo->pushPlayEvent(ST_PLAYEVENT_PAUSE);
423
+    }
424
+}
425
+
426
+void StMoviePlayer::updateStrings() {
427
+    params.ScaleAdjust->setName(tr(MENU_HELP_SCALE));
428
+    params.ScaleAdjust->defineOption(StGLRootWidget::ScaleAdjust_Small,  tr(MENU_HELP_SCALE_SMALL));
429
+    params.ScaleAdjust->defineOption(StGLRootWidget::ScaleAdjust_Normal, tr(MENU_HELP_SCALE_NORMAL));
430
+    params.ScaleAdjust->defineOption(StGLRootWidget::ScaleAdjust_Big,    tr(MENU_HELP_SCALE_BIG));
431
+    params.ScaleHiDPI2X->setName(tr(MENU_HELP_SCALE_HIDPI2X));
432
+    params.SubtitlesPlace->setName(stCString("Subtitles Placement"));
433
+    params.ToSearchSubs->setName(stCString("Search additional tracks"));
434
+    params.SubtitlesParser->setName(tr(MENU_SUBTITLES_PARSER));
435
+    params.SubtitlesParser->defineOption(0, tr(MENU_SUBTITLES_PLAIN_TEXT));
436
+    params.SubtitlesParser->defineOption(1, tr(MENU_SUBTITLES_LITE_HTML));
437
+    params.AudioMute->setName(stCString("Mute Audio"));
438
+    params.IsFullscreen->setName(tr(MENU_VIEW_FULLSCREEN));
439
+
440
+    params.ExitOnEscape->setName(tr(OPTION_EXIT_ON_ESCAPE));
441
+    params.ExitOnEscape->defineOption(ActionOnEscape_Nothing,              tr(OPTION_EXIT_ON_ESCAPE_NEVER));
442
+    params.ExitOnEscape->defineOption(ActionOnEscape_ExitOneClick,         tr(OPTION_EXIT_ON_ESCAPE_ONE_CLICK));
443
+    params.ExitOnEscape->defineOption(ActionOnEscape_ExitDoubleClick,      tr(OPTION_EXIT_ON_ESCAPE_DOUBLE_CLICK));
444
+    params.ExitOnEscape->defineOption(ActionOnEscape_ExitOneClickWindowed, tr(OPTION_EXIT_ON_ESCAPE_WINDOWED));
445
+
446
+    params.ToRestoreRatio->setName(tr(MENU_VIEW_RATIO_KEEP_ON_RESTART));
447
+    params.IsShuffle->setName(tr(MENU_MEDIA_SHUFFLE));
448
+    params.ToLoopSingle->setName(stCString("Loop single item"));
449
+    params.AreGlobalMKeys->setName(stCString("Use Multimedia Keys"));
450
+    params.CheckUpdatesDays->setName(tr(MENU_HELP_UPDATES));
451
+    params.CheckUpdatesDays->defineOption(StCheckUpdates::UpdateInteval_Never,     tr(MENU_HELP_UPDATES_NEVER));
452
+    params.CheckUpdatesDays->defineOption(StCheckUpdates::UpdateInteval_EveryDay,  tr(MENU_HELP_UPDATES_DAY));
453
+    params.CheckUpdatesDays->defineOption(StCheckUpdates::UpdateInteval_EveryWeek, tr(MENU_HELP_UPDATES_WEEK));
454
+    params.CheckUpdatesDays->defineOption(StCheckUpdates::UpdateInteval_EveryYear, tr(MENU_HELP_UPDATES_YEAR));
455
+    params.LastUpdateDay->setName(tr(MENU_HELP_UPDATES));
456
+    params.SrcStereoFormat->setName(tr(MENU_MEDIA_SRC_FORMAT));
457
+    params.ToShowPlayList->setName(tr(VIDEO_LIST));
458
+    params.ToTrackHead->setName(tr(MENU_VIEW_TRACK_HEAD));
459
+    params.ToShowFps->setName(tr(MENU_FPS_METER));
460
+    params.ToShowMenu->setName(stCString("Show main menu"));
461
+    params.ToShowTopbar->setName(stCString("Show top toolbar"));
462
+    params.IsMobileUI->setName(stCString("Mobile UI"));
463
+    params.IsVSyncOn->setName(tr(MENU_FPS_VSYNC));
464
+    params.ToLimitFps->setName(tr(MENU_FPS_BOUND));
465
+    params.StartWebUI->setName(stCString("Web UI start option"));
466
+    params.StartWebUI->defineOption(WEBUI_OFF,  tr(MENU_MEDIA_WEBUI_OFF));
467
+    params.StartWebUI->defineOption(WEBUI_ONCE, tr(MENU_MEDIA_WEBUI_ONCE));
468
+    params.StartWebUI->defineOption(WEBUI_AUTO, tr(MENU_MEDIA_WEBUI_ON));
469
+    params.ToPrintWebErrors->setName(tr(MENU_MEDIA_WEBUI_SHOW_ERRORS));
470
+    params.IsLocalWebUI->setName(stCString("Local WebUI"));
471
+    params.WebUIPort->setName(stCString("WebUI Port"));
472
+    params.BlockSleeping->setName(tr(MENU_HELP_BLOCKSLP));
473
+    params.BlockSleeping->defineOption(BLOCK_SLEEP_NEVER,      tr(MENU_HELP_BLOCKSLP_NEVER));
474
+    params.BlockSleeping->defineOption(BLOCK_SLEEP_ALWAYS,     tr(MENU_HELP_BLOCKSLP_ALWAYS));
475
+    params.BlockSleeping->defineOption(BLOCK_SLEEP_PLAYBACK,   tr(MENU_HELP_BLOCKSLP_PLAYBACK));
476
+    params.BlockSleeping->defineOption(BLOCK_SLEEP_FULLSCREEN, tr(MENU_HELP_BLOCKSLP_FULLSCR));
477
+    params.ToShowExtra->setName(tr(MENU_HELP_EXPERIMENTAL));
478
+    params.TargetFps->setName(stCString("FPS Target"));
479
+
480
+#if defined(_WIN32)
481
+    const StCString aGpuAcc = stCString(" (DXVA2)");
482
+#elif defined(__APPLE__)
483
+    const StCString aGpuAcc = stCString(" (VDA)");
484
+#elif defined(__ANDROID__)
485
+    const StCString aGpuAcc = stCString(""); //stCString(" (Android Media Codec)");
486
+#else
487
+    const StCString aGpuAcc = stCString("");
488
+#endif
489
+    params.UseGpu->setName(tr(MENU_MEDIA_GPU_DECODING) + aGpuAcc);
490
+    params.UseOpenJpeg->setName(stCString("Use OpenJPEG instead of jpeg2000"));
491
+    params.SnapshotImgType->setName(stCString("Snapshot Image Format"));
492
+    params.Benchmark->setName(stCString("Benchmark"));
493
+    myLangMap->params.language->setName(tr(MENU_HELP_LANGS));
494
 }
495
 
496
 StMoviePlayer::StMoviePlayer(const StHandle<StResourceManager>& theResMgr,
497
@@ -460,56 +177,47 @@
498
   //
499
   myWebCtx(NULL),
500
   //
501
-  myLastUpdateDay(0),
502
-  myToRecreateMenu(false),
503
   myToUpdateALList(false),
504
-  myIsBenchmark(false),
505
   myToCheckUpdates(true),
506
   myToCheckPoorOrient(true) {
507
     mySettings = new StSettings(myResMgr, ST_DRAWER_PLUGIN_NAME);
508
     myLangMap  = new StTranslations(myResMgr, StMoviePlayer::ST_DRAWER_PLUGIN_NAME);
509
-    myOpenDialog = new StOpenVideo(this);
510
+    myOpenDialog = new StMovieOpenDialog(this);
511
     StMoviePlayerStrings::loadDefaults(*myLangMap);
512
-    myTitle = "sView - Movie Player";
513
-
514
-    params.ScaleAdjust      = new StInt32Param(StGLRootWidget::ScaleAdjust_Normal);
515
-    mySettings->loadParam (ST_SETTING_SCALE_ADJUST, params.ScaleAdjust);
516
-    params.ScaleAdjust->signals.onChanged = stSlot(this, &StMoviePlayer::doScaleGui);
517
-    params.ScaleHiDPI       = new StFloat32Param(1.0f,       // initial value
518
-                                                 0.5f, 3.0f, // min, max values
519
-                                                 1.0f,       // default value
520
-                                                 1.0f,       // incremental step
521
-                                                 0.001f);    // equality tolerance
522
-    params.ScaleHiDPI2X     = new StBoolParam(false);
523
-    mySettings->loadParam (ST_SETTING_SCALE_FORCE2X, params.ScaleHiDPI2X);
524
-    params.ScaleHiDPI2X->signals.onChanged = stSlot(this, &StMoviePlayer::doScaleHiDPI);
525
-    params.SubtitlesPlace   = new StInt32Param(ST_VCORNER_BOTTOM);
526
-    params.SubtitlesTopDY   = new StFloat32Param(100.0f,      // initial value
527
-                                                 0.0f, 400.0f,// min, max values
528
-                                                 100.0f,      // default value
529
-                                                 5.0f,        // incremental step
530
-                                                 0.1f);       // equality tolerance
531
-    params.SubtitlesBottomDY= new StFloat32Param(100.0f,      // initial value
532
-                                                 0.0f, 400.0f,// min, max values
533
-                                                 100.0f,      // default value
534
-                                                 5.0f,        // incremental step
535
-                                                 0.1f);       // equality tolerance
536
-    params.SubtitlesSize    = new StFloat32Param(28.0f,       // initial value
537
-                                                 8.0f, 96.0f, // min, max values
538
-                                                 28.0f,       // default value
539
-                                                 1.0f,        // incremental step
540
-                                                 0.1f);       // equality tolerance
541
-    params.SubtitlesParallax= new StFloat32Param(0.0f,        // initial value
542
-                                                -90.0f, 90.0f,// min, max values
543
-                                                 0.0f,        // default value
544
-                                                 1.0f,        // incremental step
545
-                                                 0.1f);       // equality tolerance
546
-    params.ToSearchSubs = new StBoolParam(true);
547
-    params.SubtitlesParser = new StEnumParam(1, tr(MENU_SUBTITLES_PARSER));
548
-    params.SubtitlesParser->changeValues().add(tr(MENU_SUBTITLES_PLAIN_TEXT));
549
-    params.SubtitlesParser->changeValues().add(tr(MENU_SUBTITLES_LITE_HTML));
550
-
551
-    params.alDevice = new StALDeviceParam();
552
+    myLangMap->params.language->signals.onChanged += stSlot(this, &StMoviePlayer::doChangeLanguage);
553
+    myTitle = stCString("sView - Movie Player");
554
+
555
+    params.ScaleAdjust = new StEnumParam(StGLRootWidget::ScaleAdjust_Normal, stCString("scaleAdjust"));
556
+    params.ScaleHiDPI  = new StFloat32Param(1.0f, stCString("scaleHiDPI"));
557
+    params.ScaleHiDPI->setMinMaxValues(0.5f, 3.0f);
558
+    params.ScaleHiDPI->setDefValue(1.0f);
559
+    params.ScaleHiDPI->setStep(1.0f);
560
+    params.ScaleHiDPI->setTolerance(0.001f);
561
+    params.ScaleHiDPI2X     = new StBoolParamNamed(false, stCString("scale2X"));
562
+    params.SubtitlesPlace   = new StInt32ParamNamed(ST_VCORNER_BOTTOM, stCString("subsPlace"));
563
+    params.SubtitlesTopDY   = new StFloat32Param(100.0f, stCString("subsTopDY"));
564
+    params.SubtitlesTopDY->setMinMaxValues(0.0f, 400.0f);
565
+    params.SubtitlesTopDY->setDefValue(100.0f);
566
+    params.SubtitlesTopDY->setStep(5.0f);
567
+    params.SubtitlesTopDY->setTolerance(0.1f);
568
+    params.SubtitlesBottomDY= new StFloat32Param(100.0f, stCString("subsBottomDY"));
569
+    params.SubtitlesBottomDY->setMinMaxValues(0.0f, 400.0f);
570
+    params.SubtitlesBottomDY->setDefValue(100.0f);
571
+    params.SubtitlesBottomDY->setStep(5.0f);
572
+    params.SubtitlesBottomDY->setTolerance(0.1f);
573
+    params.SubtitlesSize    = new StFloat32Param(28.0f, stCString("subsSize"));
574
+    params.SubtitlesSize->setMinMaxValues(8.0f, 96.0f);
575
+    params.SubtitlesSize->setDefValue(28.0f);
576
+    params.SubtitlesSize->setStep(1.0f);
577
+    params.SubtitlesSize->setTolerance(0.1f);
578
+    params.SubtitlesParallax= new StFloat32Param(0.0f, stCString("subsParallax"));
579
+    params.SubtitlesParallax->setMinMaxValues(-90.0f, 90.0f);
580
+    params.SubtitlesParallax->setDefValue(0.0f);
581
+    params.SubtitlesParallax->setStep(1.0f);
582
+    params.SubtitlesParallax->setTolerance(0.1f);
583
+    params.ToSearchSubs = new StBoolParamNamed(true, stCString("toSearchSubs"));
584
+    params.SubtitlesParser = new StEnumParam(1, stCString("subsParser"));
585
+    params.AudioAlDevice = new StALDeviceParam();
586
     params.AudioGain = new StFloat32Param( 0.0f, // sound is unattenuated
587
                                          -50.0f, // almost mute
588
                                           10.0f, // max amplification
589
@@ -517,90 +225,104 @@
590
                                            1.0f, // step
591
                                            0.1f);
592
     params.AudioGain->signals.onChanged = stSlot(this, &StMoviePlayer::doSetAudioVolume);
593
-    params.AudioMute    = new StBoolParam(false);
594
+    params.AudioMute    = new StBoolParamNamed(false, stCString("muteAudio"));
595
     params.AudioMute->signals.onChanged = stSlot(this, &StMoviePlayer::doSetAudioMute);
596
     params.AudioDelay   = new StFloat32Param(0.0f, -5.0f, 5.0f, 0.0f, 0.100f);
597
     params.AudioDelay->signals.onChanged = stSlot(this, &StMoviePlayer::doSetAudioDelay);
598
 
599
-    params.isFullscreen = new StBoolParam(false);
600
-    params.isFullscreen->signals.onChanged = stSlot(this, &StMoviePlayer::doFullscreen);
601
-    params.toRestoreRatio   = new StBoolParam(false);
602
-    params.isShuffle        = new StBoolParam(false);
603
-    params.ToLoopSingle     = new StBoolParam(false);
604
-    params.areGlobalMKeys   = new StBoolParam(true);
605
-    params.checkUpdatesDays = new StInt32Param(7);
606
-    params.srcFormat        = new StInt32Param(StFormat_AUTO);
607
-    params.srcFormat->signals.onChanged = stSlot(this, &StMoviePlayer::doSwitchSrcFormat);
608
-    params.ToShowPlayList   = new StBoolParam(false);
609
+    params.IsFullscreen     = new StBoolParamNamed(false, stCString("fullscreen"));
610
+    params.IsFullscreen->signals.onChanged = stSlot(this, &StMoviePlayer::doFullscreen);
611
+    params.ExitOnEscape     = new StEnumParam(ActionOnEscape_ExitOneClick, stCString("exitOnEscape"));
612
+    params.ToRestoreRatio   = new StBoolParamNamed(false, stCString("toRestoreRatio"));
613
+    params.IsShuffle        = new StBoolParamNamed(false, stCString("shuffle"));
614
+    params.ToLoopSingle     = new StBoolParamNamed(false, stCString("loopSingle"));
615
+    params.AreGlobalMKeys   = new StBoolParamNamed(true,  stCString("globalMediaKeys"));
616
+    params.CheckUpdatesDays = new StEnumParam(StCheckUpdates::UpdateInteval_EveryWeek, stCString("updatesIntervalEnum"));
617
+    params.LastUpdateDay    = new StInt32ParamNamed(0, stCString("updatesLastCheck"));
618
+    params.SrcStereoFormat  = new StInt32ParamNamed(StFormat_AUTO, stCString("srcFormat"));
619
+    params.SrcStereoFormat->signals.onChanged = stSlot(this, &StMoviePlayer::doSwitchSrcFormat);
620
+    params.ToShowPlayList   = new StBoolParamNamed(false, stCString("showPlaylist"));
621
     params.ToShowPlayList->signals.onChanged = stSlot(this, &StMoviePlayer::doShowPlayList);
622
-    params.ToTrackHead = new StBoolParamNamed(true,  tr(MENU_VIEW_TRACK_HEAD));
623
-    params.ToShowFps   = new StBoolParamNamed(false, tr(MENU_FPS_METER));
624
-    params.ToShowMenu  = new StBoolParamNamed(true, "Show main menu");
625
-    params.ToShowTopbar= new StBoolParamNamed(true, "Show top toolbar");
626
-    params.IsMobileUI  = new StBoolParamNamed(StWindow::isMobile(), "Mobile UI");
627
+    params.ToTrackHead = new StBoolParamNamed(true,  stCString("toTrackHead"));
628
+    params.ToShowFps   = new StBoolParamNamed(false, stCString("toShowFps"));
629
+    params.ToShowMenu  = new StBoolParamNamed(true,  stCString("toShowMenu"));
630
+    params.ToShowTopbar= new StBoolParamNamed(true,  stCString("toShowTopbar"));
631
+    params.IsMobileUI  = new StBoolParamNamed(StWindow::isMobile(), stCString("isMobileUI"));
632
     params.IsMobileUI->signals.onChanged = stSlot(this, &StMoviePlayer::doScaleHiDPI);
633
-    params.IsVSyncOn   = new StBoolParam(true);
634
+    params.IsVSyncOn   = new StBoolParamNamed(true, stCString("vsync"));
635
     params.IsVSyncOn->signals.onChanged = stSlot(this, &StMoviePlayer::doSwitchVSync);
636
     StApplication::params.VSyncMode->setValue(StGLContext::VSync_ON);
637
-    params.ToLimitFps       = new StBoolParam(true);
638
-    params.StartWebUI       = new StEnumParam(WEBUI_OFF, "Web UI start option");
639
-    params.StartWebUI->changeValues().add(tr(MENU_MEDIA_WEBUI_OFF));
640
-    params.StartWebUI->changeValues().add(tr(MENU_MEDIA_WEBUI_ONCE));
641
-    params.StartWebUI->changeValues().add(tr(MENU_MEDIA_WEBUI_ON));
642
-    params.ToPrintWebErrors = new StBoolParam(true);
643
-    params.IsLocalWebUI     = new StBoolParam(false);
644
-    params.WebUIPort        = new StInt32Param(8080);
645
-    params.audioStream = new StInt32Param(-1);
646
-    params.audioStream->signals.onChanged = stSlot(this, &StMoviePlayer::doSwitchAudioStream);
647
-    params.subtitlesStream = new StInt32Param(-1);
648
-    params.subtitlesStream->signals.onChanged = stSlot(this, &StMoviePlayer::doSwitchSubtitlesStream);
649
-    params.blockSleeping = new StInt32Param(StMoviePlayer::BLOCK_SLEEP_PLAYBACK);
650
-    params.ToShowExtra   = new StBoolParam(false);
651
-    params.TargetFps = 2; // set rendering FPS as twice as average video FPS
652
-    params.UseGpu = new StBoolParam(false);
653
-    params.SnapshotImgType = new StInt32Param(StImageFile::ST_TYPE_JPEG);
654
+    params.ToLimitFps       = new StBoolParamNamed(true, stCString("toLimitFps"));
655
+    params.StartWebUI       = new StEnumParam(WEBUI_OFF, stCString("webuiOn"));
656
+    params.ToPrintWebErrors = new StBoolParamNamed(true,  stCString("webuiShowErrors"));
657
+    params.IsLocalWebUI     = new StBoolParamNamed(false, stCString("isLocalWebUI"));
658
+    params.WebUIPort        = new StInt32ParamNamed(8080, stCString("webuiPort"));
659
+    params.AudioStream = new StInt32Param(-1);
660
+    params.AudioStream->signals.onChanged = stSlot(this, &StMoviePlayer::doSwitchAudioStream);
661
+    params.SubtitlesStream = new StInt32Param(-1);
662
+    params.SubtitlesStream->signals.onChanged = stSlot(this, &StMoviePlayer::doSwitchSubtitlesStream);
663
+    params.BlockSleeping = new StEnumParam(StMoviePlayer::BLOCK_SLEEP_PLAYBACK, stCString("blockSleep"));
664
+    params.ToShowExtra   = new StBoolParamNamed(false, stCString("experimental"));
665
+    // set rendering FPS as twice as average video FPS
666
+    params.TargetFps = new StInt32ParamNamed(2, stCString("fpsTarget"));
667
+    params.UseGpu = new StBoolParamNamed(false, stCString("gpuDecoding"));
668
+    // OpenJPEG seems to be faster then built-in jpeg2000 decoder
669
+    params.UseOpenJpeg = new StBoolParamNamed(true, stCString("openJpeg"));
670
+    params.SnapshotImgType = new StInt32ParamNamed(StImageFile::ST_TYPE_JPEG, stCString("snapImgType"));
671
+    params.Benchmark = new StBoolParamNamed(false, stCString("benchmark"));
672
+    params.Benchmark->signals.onChanged = stSlot(this, &StMoviePlayer::doSetBenchmark);
673
+
674
+    updateStrings();
675
 
676
     // load settings
677
-    mySettings->loadInt32 (ST_SETTING_FPSTARGET,          params.TargetFps);
678
+    mySettings->loadParam(params.ExitOnEscape);
679
+    mySettings->loadParam(params.ScaleAdjust);
680
+    params.ScaleAdjust->signals.onChanged  = stSlot(this, &StMoviePlayer::doScaleGui);
681
+    mySettings->loadParam(params.ScaleHiDPI2X);
682
+    params.ScaleHiDPI2X->signals.onChanged = stSlot(this, &StMoviePlayer::doScaleHiDPI);
683
+
684
+    mySettings->loadParam (params.TargetFps);
685
     mySettings->loadString(ST_SETTING_LAST_FOLDER,        params.lastFolder);
686
-    mySettings->loadInt32 (ST_SETTING_UPDATES_LAST_CHECK, myLastUpdateDay);
687
-    mySettings->loadParam (ST_SETTING_UPDATES_INTERVAL,   params.checkUpdatesDays);
688
-    mySettings->loadParam (ST_SETTING_SHUFFLE,            params.isShuffle);
689
-    mySettings->loadParam (ST_SETTING_LOOP_SINGLE,        params.ToLoopSingle);
690
-    mySettings->loadParam (ST_SETTING_GLOBAL_MKEYS,       params.areGlobalMKeys);
691
-    mySettings->loadParam (ST_SETTING_SHOW_LIST,          params.ToShowPlayList);
692
-    mySettings->loadParam (ST_SETTING_SUBTITLES_PLACE,    params.SubtitlesPlace);
693
-    mySettings->loadParam (ST_SETTING_SUBTITLES_TOPDY,    params.SubtitlesTopDY);
694
-    mySettings->loadParam (ST_SETTING_SUBTITLES_BOTTOMDY, params.SubtitlesBottomDY);
695
-    mySettings->loadParam (ST_SETTING_SUBTITLES_SIZE,     params.SubtitlesSize);
696
-    mySettings->loadParam (ST_SETTING_SUBTITLES_PARALLAX, params.SubtitlesParallax);
697
-    mySettings->loadParam (ST_SETTING_SUBTITLES_PARSER,   params.SubtitlesParser);
698
-    mySettings->loadParam (ST_SETTING_SEARCH_SUBS,        params.ToSearchSubs);
699
-
700
-    myToCheckPoorOrient = !mySettings->loadParam(ST_SETTING_TRACK_HEAD, params.ToTrackHead);
701
-    mySettings->loadParam (ST_SETTING_SHOW_FPS,           params.ToShowFps);
702
-    mySettings->loadParam (ST_SETTING_MOBILE_UI,          params.IsMobileUI);
703
-    mySettings->loadParam (ST_SETTING_VSYNC,              params.IsVSyncOn);
704
-    mySettings->loadParam (ST_SETTING_LIMIT_FPS,          params.ToLimitFps);
705
-    mySettings->loadParam (ST_SETTING_GPU_DECODING,       params.UseGpu);
706
-
707
-    mySettings->loadParam (ST_SETTING_WEBUI_ON,           params.StartWebUI);
708
-    mySettings->loadParam (ST_SETTING_WEBUI_PORT,         params.WebUIPort);
709
-    mySettings->loadParam (ST_SETTING_WEBUI_ERRORS,       params.ToPrintWebErrors);
710
-    mySettings->loadParam (ST_SETTING_SAVE_IMG_TYPE,      params.SnapshotImgType);
711
-    mySettings->loadParam (ST_SETTING_EXPERIMENTAL,       params.ToShowExtra);
712
+    mySettings->loadParam (params.LastUpdateDay);
713
+    mySettings->loadParam (params.CheckUpdatesDays);
714
+    mySettings->loadParam (params.IsShuffle);
715
+    mySettings->loadParam (params.ToLoopSingle);
716
+    mySettings->loadParam (params.AreGlobalMKeys);
717
+    mySettings->loadParam (params.ToShowPlayList);
718
+    mySettings->loadParam (params.SubtitlesPlace);
719
+    mySettings->loadParam (params.SubtitlesTopDY);
720
+    mySettings->loadParam (params.SubtitlesBottomDY);
721
+    mySettings->loadParam (params.SubtitlesSize);
722
+    mySettings->loadParam (params.SubtitlesParallax);
723
+    mySettings->loadParam (params.SubtitlesParser);
724
+    mySettings->loadParam (params.ToSearchSubs);
725
+
726
+    myToCheckPoorOrient = !mySettings->loadParam(params.ToTrackHead);
727
+    mySettings->loadParam (params.ToShowFps);
728
+    mySettings->loadParam (params.IsMobileUI);
729
+    mySettings->loadParam (params.IsVSyncOn);
730
+    mySettings->loadParam (params.ToLimitFps);
731
+    mySettings->loadParam (params.UseGpu);
732
+    mySettings->loadParam (params.UseOpenJpeg);
733
+
734
+    mySettings->loadParam (params.StartWebUI);
735
+    mySettings->loadParam (params.WebUIPort);
736
+    mySettings->loadParam (params.ToPrintWebErrors);
737
+    mySettings->loadParam (params.SnapshotImgType);
738
+    mySettings->loadParam (params.BlockSleeping);
739
+    mySettings->loadParam (params.ToShowExtra);
740
     if(params.StartWebUI->getValue() == WEBUI_ONCE) {
741
         params.StartWebUI->setValue(WEBUI_OFF);
742
     }
743
     params.StartWebUI->signals.onChanged += stSlot(this, &StMoviePlayer::doSwitchWebUI);
744
 
745
     StString aSavedALDevice;
746
-    mySettings->loadString(ST_SETTING_OPENAL_DEVICE,      aSavedALDevice);
747
-    params.alDevice->init(aSavedALDevice);
748
+    mySettings->loadString(params.AudioAlDevice->getKey(), aSavedALDevice);
749
+    params.AudioAlDevice->init(aSavedALDevice);
750
 
751
-    params.isShuffle   ->signals.onChanged.connect(this, &StMoviePlayer::doSwitchShuffle);
752
-    params.ToLoopSingle->signals.onChanged.connect(this, &StMoviePlayer::doSwitchLoopSingle);
753
-    params.alDevice    ->signals.onChanged.connect(this, &StMoviePlayer::doSwitchAudioDevice);
754
+    params.IsShuffle    ->signals.onChanged.connect(this, &StMoviePlayer::doSwitchShuffle);
755
+    params.ToLoopSingle ->signals.onChanged.connect(this, &StMoviePlayer::doSwitchLoopSingle);
756
+    params.AudioAlDevice->signals.onChanged.connect(this, &StMoviePlayer::doSwitchAudioDevice);
757
 
758
 #if defined(__ANDROID__)
759
     addRenderer(new StOutInterlace  (myResMgr, theParentWin));
760
@@ -629,24 +351,24 @@
761
     StHandle<StAction> anAction;
762
 
763
     anAction = new StActionIntSlot(stCString("DoQuit"), stSlot(this, &StMoviePlayer::doQuit), 0);
764
-    addAction(Action_Quit, anAction, ST_VK_ESCAPE);
765
+    addAction(Action_Quit, anAction, 0);
766
 
767
-    anAction = new StActionBool(stCString("DoFullscreen"), params.isFullscreen);
768
+    anAction = new StActionBool(stCString("DoFullscreen"), params.IsFullscreen);
769
     addAction(Action_Fullscreen, anAction, ST_VK_F, ST_VK_RETURN);
770
 
771
     anAction = new StActionBool(stCString("DoShowFPS"), params.ToShowFps);
772
     addAction(Action_ShowFps, anAction, ST_VK_F12);
773
 
774
-    anAction = new StActionIntValue(stCString("DoSrcAuto"), params.srcFormat, StFormat_AUTO);
775
+    anAction = new StActionIntValue(stCString("DoSrcAuto"), params.SrcStereoFormat, StFormat_AUTO);
776
     addAction(Action_SrcAuto, anAction, ST_VK_A);
777
 
778
-    anAction = new StActionIntValue(stCString("DoSrcMono"), params.srcFormat, StFormat_Mono);
779
+    anAction = new StActionIntValue(stCString("DoSrcMono"), params.SrcStereoFormat, StFormat_Mono);
780
     addAction(Action_SrcMono, anAction, ST_VK_M);
781
 
782
-    anAction = new StActionIntValue(stCString("DoSrcOverUnder"), params.srcFormat, StFormat_TopBottom_LR);
783
+    anAction = new StActionIntValue(stCString("DoSrcOverUnder"), params.SrcStereoFormat, StFormat_TopBottom_LR);
784
     addAction(Action_SrcOverUnderLR, anAction, ST_VK_O);
785
 
786
-    anAction = new StActionIntValue(stCString("DoSrcSideBySide"), params.srcFormat, StFormat_SideBySide_RL);
787
+    anAction = new StActionIntValue(stCString("DoSrcSideBySide"), params.SrcStereoFormat, StFormat_SideBySide_RL);
788
     addAction(Action_SrcSideBySideRL, anAction, ST_VK_S);
789
 
790
     anAction = new StActionIntSlot(stCString("DoFileInfo"), stSlot(this, &StMoviePlayer::doAboutFile), 0);
791
@@ -764,53 +486,55 @@
792
         return;
793
     }
794
 
795
-    mySettings->saveParam (ST_SETTING_STEREO_MODE, myGUI->myImage->params.displayMode);
796
-    mySettings->saveInt32 (ST_SETTING_GAMMA,       stRound(100.0f * myGUI->myImage->params.gamma->getValue()));
797
-    mySettings->saveParam (ST_SETTING_HEAL_ANAMORPHIC, myGUI->myImage->params.ToHealAnamorphicRatio);
798
-    if(params.toRestoreRatio->getValue()) {
799
-        mySettings->saveParam(ST_SETTING_RATIO,    myGUI->myImage->params.displayRatio);
800
-    } else {
801
-        mySettings->saveInt32(ST_SETTING_RATIO,    StGLImageRegion::RATIO_AUTO);
802
-    }
803
-    mySettings->saveParam (ST_SETTING_TEXFILTER,   myGUI->myImage->params.textureFilter);
804
+    mySettings->saveParam (myGUI->myImage->params.DisplayMode);
805
+    mySettings->saveInt32 (ST_SETTING_GAMMA,       stRound(100.0f * myGUI->myImage->params.Gamma->getValue()));
806
+    mySettings->saveParam (myGUI->myImage->params.ToHealAnamorphicRatio);
807
+    mySettings->saveInt32(myGUI->myImage->params.DisplayRatio->getKey(),
808
+                          params.ToRestoreRatio->getValue()
809
+                        ? myGUI->myImage->params.DisplayRatio->getValue()
810
+                        : StGLImageRegion::RATIO_AUTO);
811
+    mySettings->saveParam (myGUI->myImage->params.TextureFilter);
812
 }
813
 
814
 void StMoviePlayer::saveAllParams() {
815
     saveGuiParams();
816
     if(!myGUI.isNull()) {
817
-        mySettings->saveParam (ST_SETTING_SCALE_ADJUST,       params.ScaleAdjust);
818
-        mySettings->saveParam (ST_SETTING_SCALE_FORCE2X,      params.ScaleHiDPI2X);
819
-        mySettings->saveParam (ST_SETTING_SUBTITLES_PLACE,    params.SubtitlesPlace);
820
-        mySettings->saveParam (ST_SETTING_SUBTITLES_TOPDY,    params.SubtitlesTopDY);
821
-        mySettings->saveParam (ST_SETTING_SUBTITLES_BOTTOMDY, params.SubtitlesBottomDY);
822
-        mySettings->saveParam (ST_SETTING_SUBTITLES_SIZE,     params.SubtitlesSize);
823
-        mySettings->saveParam (ST_SETTING_SUBTITLES_PARALLAX, params.SubtitlesParallax);
824
-        mySettings->saveParam (ST_SETTING_SUBTITLES_PARSER,   params.SubtitlesParser);
825
-        mySettings->saveParam (ST_SETTING_SEARCH_SUBS,        params.ToSearchSubs);
826
-        mySettings->saveInt32 (ST_SETTING_FPSTARGET,          params.TargetFps);
827
-        mySettings->saveString(ST_SETTING_OPENAL_DEVICE,      params.alDevice->getUtfTitle());
828
-        mySettings->saveInt32 (ST_SETTING_UPDATES_LAST_CHECK, myLastUpdateDay);
829
-        mySettings->saveParam (ST_SETTING_UPDATES_INTERVAL,   params.checkUpdatesDays);
830
-        mySettings->saveParam (ST_SETTING_SRCFORMAT,          params.srcFormat);
831
-        mySettings->saveParam (ST_SETTING_SHUFFLE,            params.isShuffle);
832
-        mySettings->saveParam (ST_SETTING_LOOP_SINGLE,        params.ToLoopSingle);
833
-        mySettings->saveParam (ST_SETTING_GLOBAL_MKEYS,       params.areGlobalMKeys);
834
-        mySettings->saveParam (ST_SETTING_SHOW_LIST,          params.ToShowPlayList);
835
-
836
-        mySettings->saveParam (ST_SETTING_TRACK_HEAD,         params.ToTrackHead);
837
-        mySettings->saveParam (ST_SETTING_SHOW_FPS,           params.ToShowFps);
838
-        mySettings->saveParam (ST_SETTING_MOBILE_UI,          params.IsMobileUI);
839
-        mySettings->saveParam (ST_SETTING_VSYNC,              params.IsVSyncOn);
840
-        mySettings->saveParam (ST_SETTING_LIMIT_FPS,          params.ToLimitFps);
841
-        mySettings->saveParam (ST_SETTING_GPU_DECODING,       params.UseGpu);
842
-
843
-        mySettings->saveParam (ST_SETTING_WEBUI_ON,           params.StartWebUI);
844
+        mySettings->saveParam (params.ExitOnEscape);
845
+        mySettings->saveParam (params.ScaleAdjust);
846
+        mySettings->saveParam (params.ScaleHiDPI2X);
847
+        mySettings->saveParam (params.SubtitlesPlace);
848
+        mySettings->saveParam (params.SubtitlesTopDY);
849
+        mySettings->saveParam (params.SubtitlesBottomDY);
850
+        mySettings->saveParam (params.SubtitlesSize);
851
+        mySettings->saveParam (params.SubtitlesParallax);
852
+        mySettings->saveParam (params.SubtitlesParser);
853
+        mySettings->saveParam (params.ToSearchSubs);
854
+        mySettings->saveParam (params.TargetFps);
855
+        mySettings->saveString(params.AudioAlDevice->getKey(), params.AudioAlDevice->getUtfTitle());
856
+        mySettings->saveParam (params.LastUpdateDay);
857
+        mySettings->saveParam (params.CheckUpdatesDays);
858
+        mySettings->saveParam (params.SrcStereoFormat);
859
+        mySettings->saveParam (params.IsShuffle);
860
+        mySettings->saveParam (params.ToLoopSingle);
861
+        mySettings->saveParam (params.AreGlobalMKeys);
862
+        mySettings->saveParam (params.ToShowPlayList);
863
+
864
+        mySettings->saveParam (params.ToTrackHead);
865
+        mySettings->saveParam (params.ToShowFps);
866
+        mySettings->saveParam (params.IsMobileUI);
867
+        mySettings->saveParam (params.IsVSyncOn);
868
+        mySettings->saveParam (params.ToLimitFps);
869
+        mySettings->saveParam (params.UseGpu);
870
+        mySettings->saveParam (params.UseOpenJpeg);
871
+
872
+        mySettings->saveParam (params.StartWebUI);
873
         if(!params.IsLocalWebUI->getValue()) {
874
-            mySettings->saveParam (ST_SETTING_WEBUI_PORT,     params.WebUIPort);
875
+            mySettings->saveParam(params.WebUIPort);
876
         }
877
-        mySettings->saveParam (ST_SETTING_WEBUI_ERRORS,       params.ToPrintWebErrors);
878
-        mySettings->saveParam (ST_SETTING_SAVE_IMG_TYPE,      params.SnapshotImgType);
879
-        mySettings->saveParam (ST_SETTING_EXPERIMENTAL,       params.ToShowExtra);
880
+        mySettings->saveParam (params.ToPrintWebErrors);
881
+        mySettings->saveParam (params.SnapshotImgType);
882
+        mySettings->saveParam (params.BlockSleeping);
883
+        mySettings->saveParam (params.ToShowExtra);
884
 
885
         // store hot-keys
886
         for(std::map< int, StHandle<StAction> >::iterator anIter = myActions.begin();
887
@@ -836,6 +560,10 @@
888
     doStopWebUI();
889
 
890
     myUpdates.nullify();
891
+    if(!myVideo.isNull()) {
892
+        myVideo->startDestruction();
893
+    }
894
+
895
     releaseDevice();
896
     // wait video playback thread to quit and release resources
897
     myVideo.nullify();
898
@@ -860,16 +588,17 @@
899
     params.ScaleHiDPI->setValue(myWindow->getScaleFactor());
900
     myGUI = new StMoviePlayerGUI(this, myWindow.access(), myLangMap.access(), myPlayList, theTextureQueue, theSubQueue);
901
     myGUI->setContext(myContext);
902
+    theTextureQueue->setDeviceCaps(myContext->getDeviceCaps());
903
 
904
     // load settings
905
-    mySettings->loadParam (ST_SETTING_STEREO_MODE, myGUI->myImage->params.displayMode);
906
-    mySettings->loadParam (ST_SETTING_TEXFILTER,   myGUI->myImage->params.textureFilter);
907
-    mySettings->loadParam (ST_SETTING_RATIO,       myGUI->myImage->params.displayRatio);
908
-    mySettings->loadParam (ST_SETTING_HEAL_ANAMORPHIC, myGUI->myImage->params.ToHealAnamorphicRatio);
909
-    params.toRestoreRatio->setValue(myGUI->myImage->params.displayRatio->getValue() != StGLImageRegion::RATIO_AUTO);
910
+    mySettings->loadParam (myGUI->myImage->params.DisplayMode);
911
+    mySettings->loadParam (myGUI->myImage->params.TextureFilter);
912
+    mySettings->loadParam (myGUI->myImage->params.DisplayRatio);
913
+    mySettings->loadParam (myGUI->myImage->params.ToHealAnamorphicRatio);
914
+    params.ToRestoreRatio->setValue(myGUI->myImage->params.DisplayRatio->getValue() != StGLImageRegion::RATIO_AUTO);
915
     int32_t loadedGamma = 100; // 1.0f
916
         mySettings->loadInt32(ST_SETTING_GAMMA, loadedGamma);
917
-        myGUI->myImage->params.gamma->setValue(0.01f * loadedGamma);
918
+        myGUI->myImage->params.Gamma->setValue(0.01f * loadedGamma);
919
 
920
     // initialize frame region early to show dedicated error description
921
     if(!myGUI->myImage->stglInit()) {
922
@@ -888,14 +617,20 @@
923
     return true;
924
 }
925
 
926
+void StMoviePlayer::doChangeLanguage(const int32_t theNewLang) {
927
+    StApplication::doChangeLanguage(theNewLang);
928
+    StMoviePlayerStrings::loadDefaults(*myLangMap);
929
+    updateStrings();
930
+}
931
+
932
 void StMoviePlayer::doImageAdjustReset(const size_t ) {
933
     if(myGUI.isNull()) {
934
         return;
935
     }
936
 
937
-    myGUI->myImage->params.gamma     ->reset();
938
-    myGUI->myImage->params.brightness->reset();
939
-    myGUI->myImage->params.saturation->reset();
940
+    myGUI->myImage->params.Gamma     ->reset();
941
+    myGUI->myImage->params.Brightness->reset();
942
+    myGUI->myImage->params.Saturation->reset();
943
 }
944
 
945
 
946
@@ -904,7 +639,7 @@
947
     //    return;
948
     //}
949
 
950
-    myFileToDelete = myVideo->getPlayList().getCurrentFile();
951
+    myFileToDelete = myPlayList->getCurrentFile();
952
     if(myFileToDelete.isNull()
953
     || myFileToDelete->size() != 0) {
954
         myFileToDelete.nullify();
955
@@ -1031,14 +766,15 @@
956
     }
957
 
958
     // capture multimedia keys even without window focus
959
-    myWindow->setAttribute(StWinAttr_GlobalMediaKeys, params.areGlobalMKeys->getValue());
960
+    myWindow->setAttribute(StWinAttr_GlobalMediaKeys, params.AreGlobalMKeys->getValue());
961
 
962
     // create the video playback thread
963
     if(!isReset) {
964
-        myVideo = new StVideo(params.alDevice->getCTitle(), myLangMap, myPlayList, aTextureQueue, aSubQueue);
965
+        myVideo = new StVideo(params.AudioAlDevice->getCTitle(), myResMgr, myLangMap, myPlayList, aTextureQueue, aSubQueue);
966
         myVideo->signals.onError  = stSlot(myMsgQueue.access(), &StMsgQueue::doPushError);
967
         myVideo->signals.onLoaded = stSlot(this,                &StMoviePlayer::doLoaded);
968
         myVideo->params.UseGpu       = params.UseGpu;
969
+        myVideo->params.UseOpenJpeg  = params.UseOpenJpeg;
970
         myVideo->params.ToSearchSubs = params.ToSearchSubs;
971
 
972
     #ifdef ST_HAVE_MONGOOSE
973
@@ -1046,7 +782,7 @@
974
     #endif
975
     }
976
 
977
-    myPlayList->setShuffle   (params.isShuffle   ->getValue());
978
+    myPlayList->setShuffle   (params.IsShuffle   ->getValue());
979
     myPlayList->setLoopSingle(params.ToLoopSingle->getValue());
980
 
981
     StString aRecentList;
982
@@ -1054,11 +790,14 @@
983
     myPlayList->loadRecentList(aRecentList);
984
 
985
     if(isReset) {
986
+        if(params.IsFullscreen->getValue()) {
987
+            myWindow->setFullScreen(true);
988
+        }
989
         return true;
990
     }
991
 
992
     // load this parameter AFTER video thread creation
993
-    mySettings->loadParam(ST_SETTING_SRCFORMAT, params.srcFormat);
994
+    mySettings->loadParam(params.SrcStereoFormat);
995
 
996
 #if !defined(ST_NO_UPDATES_CHECK)
997
     // read the current time
998
@@ -1066,12 +805,13 @@
999
     time(&aRawtime);
1000
     struct tm* aTimeinfo = localtime(&aRawtime);
1001
     int32_t aCurrentDayInYear = aTimeinfo->tm_yday;
1002
-    if(params.checkUpdatesDays->getValue() > 0
1003
-    && std::abs(aCurrentDayInYear - myLastUpdateDay) > params.checkUpdatesDays->getValue()) {
1004
+    const int aNbDays = StCheckUpdates::getNbDaysFromInterval((StCheckUpdates::UpdateInteval )params.CheckUpdatesDays->getValue());
1005
+    if(aNbDays > 0
1006
+    && std::abs(aCurrentDayInYear - params.LastUpdateDay->getValue()) > aNbDays) {
1007
         myUpdates = new StCheckUpdates();
1008
         myUpdates->init();
1009
-        myLastUpdateDay = aCurrentDayInYear;
1010
-        mySettings->saveInt32(ST_SETTING_UPDATES_LAST_CHECK, myLastUpdateDay);
1011
+        params.LastUpdateDay->setValue(aCurrentDayInYear);
1012
+        mySettings->saveParam(params.LastUpdateDay);
1013
     }
1014
 #endif
1015
     return true;
1016
@@ -1079,14 +819,14 @@
1017
 
1018
 void StMoviePlayer::parseArguments(const StArgumentsMap& theArguments) {
1019
     StArgument anArgViewMode   = theArguments[ST_SETTING_VIEWMODE];
1020
-    StArgument anArgSrcFormat  = theArguments[ST_SETTING_SRCFORMAT];
1021
-    StArgument anArgShuffle    = theArguments[ST_SETTING_SHUFFLE];
1022
-    StArgument anArgLoopSingle = theArguments[ST_SETTING_LOOP_SINGLE];
1023
-    StArgument anArgBenchmark  = theArguments[ST_ARGUMENT_BENCHMARK];
1024
-    StArgument anArgShowMenu   = theArguments[ST_ARGUMENT_SHOW_MENU];
1025
-    StArgument anArgShowTopbar = theArguments[ST_ARGUMENT_SHOW_TOPBAR];
1026
-
1027
-    StArgument anArgFullscreen = theArguments[ST_SETTING_FULLSCREEN];
1028
+    StArgument anArgSrcFormat  = theArguments[params.SrcStereoFormat->getKey()];
1029
+    StArgument anArgShuffle    = theArguments[params.IsShuffle->getKey()];
1030
+    StArgument anArgLoopSingle = theArguments[params.ToLoopSingle->getKey()];
1031
+    StArgument anArgBenchmark  = theArguments[params.Benchmark->getKey()];
1032
+    StArgument anArgShowMenu   = theArguments[params.ToShowMenu->getKey()];
1033
+    StArgument anArgShowTopbar = theArguments[params.ToShowTopbar->getKey()];
1034
+
1035
+    StArgument anArgFullscreen = theArguments[params.IsFullscreen->getKey()];
1036
     StArgument anArgMonitor    = theArguments[ST_ARGUMENT_MONITOR];
1037
     StArgument anArgWinLeft    = theArguments[ST_ARGUMENT_WINLEFT];
1038
     StArgument anArgWinTop     = theArguments[ST_ARGUMENT_WINTOP];
1039
@@ -1126,24 +866,23 @@
1040
         myWindow->setPlacement(aRect, true);
1041
     }
1042
     if(anArgFullscreen.isValid()) {
1043
-        params.isFullscreen->setValue(!anArgFullscreen.isValueOff());
1044
+        params.IsFullscreen->setValue(!anArgFullscreen.isValueOff());
1045
     }
1046
 
1047
     if(anArgViewMode.isValid()) {
1048
         myPlayList->changeDefParams().ViewingMode = StStereoParams::GET_VIEW_MODE_FROM_STRING(anArgViewMode.getValue());
1049
     }
1050
     if(anArgSrcFormat.isValid()) {
1051
-        params.srcFormat->setValue(st::formatFromString(anArgSrcFormat.getValue()));
1052
+        params.SrcStereoFormat->setValue(st::formatFromString(anArgSrcFormat.getValue()));
1053
     }
1054
     if(anArgShuffle.isValid()) {
1055
-        params.isShuffle->setValue(!anArgShuffle.isValueOff());
1056
+        params.IsShuffle->setValue(!anArgShuffle.isValueOff());
1057
     }
1058
     if(anArgLoopSingle.isValid()) {
1059
         params.ToLoopSingle->setValue(!anArgLoopSingle.isValueOff());
1060
     }
1061
     if(anArgBenchmark.isValid()) {
1062
-        myIsBenchmark = !anArgBenchmark.isValueOff();
1063
-        myVideo->setBenchmark(myIsBenchmark);
1064
+        params.Benchmark->setValue(!anArgBenchmark.isValueOff());
1065
     }
1066
     if(anArgShowMenu.isValid()) {
1067
         params.ToShowMenu->setValue(!anArgShowMenu.isValueOff());
1068
@@ -1257,17 +996,20 @@
1069
 
1070
     StApplication::doKeyDown(theEvent);
1071
     switch(theEvent.VKey) {
1072
-        // post process keys
1073
+        case ST_VK_ESCAPE: {
1074
+            if(!doExitOnEscape((ActionOnEscape )params.ExitOnEscape->getValue())) {
1075
+                if(myWindow->hasFullscreenMode()
1076
+                && myWindow->isFullScreen()) {
1077
+                    params.IsFullscreen->setValue(false);
1078
+                }
1079
+            }
1080
+            return;
1081
+        }
1082
         case ST_VK_B: {
1083
             if(theEvent.Flags == ST_VF_SHIFT) {
1084
-                myGUI->myImage->params.brightness->increment();
1085
+                myGUI->myImage->params.Brightness->increment();
1086
             } else if(theEvent.Flags == ST_VF_CONTROL) {
1087
-                myGUI->myImage->params.brightness->decrement();
1088
-            } else {
1089
-            #ifdef ST_DEBUG
1090
-                myIsBenchmark = !myIsBenchmark;
1091
-                myVideo->setBenchmark(myIsBenchmark);
1092
-            #endif
1093
+                myGUI->myImage->params.Brightness->decrement();
1094
             }
1095
             return;
1096
         }
1097
@@ -1303,7 +1045,7 @@
1098
         return;
1099
     }
1100
 
1101
-    myGUI->tryClick(StPointD_t(theEvent.PointX, theEvent.PointY), theEvent.Button);
1102
+    myGUI->tryClick(theEvent);
1103
 }
1104
 
1105
 void StMoviePlayer::doMouseUp(const StClickEvent& theEvent) {
1106
@@ -1315,39 +1057,66 @@
1107
     const bool isNeutral = myGUI->getFocus() == NULL
1108
                        || !myGUI->getFocus()->isPointIn(aPnt);
1109
     if(!isNeutral) {
1110
-        myGUI->tryUnClick(aPnt, theEvent.Button);
1111
+        myGUI->tryUnClick(theEvent);
1112
         return;
1113
     }
1114
 
1115
     switch(theEvent.Button) {
1116
         case ST_MOUSE_MIDDLE: {
1117
-            params.isFullscreen->reverse();
1118
+            params.IsFullscreen->reverse();
1119
             break;
1120
         }
1121
-        case ST_MOUSE_SCROLL_LEFT:
1122
-        case ST_MOUSE_SCROLL_RIGHT: {
1123
-            // limit seeking by scroll to lower corner
1124
-            if(theEvent.PointY > 0.75) {
1125
-                if(theEvent.Button == ST_MOUSE_SCROLL_RIGHT) {
1126
-                    doSeekRight();
1127
-                } else {
1128
-                    doSeekLeft();
1129
-                }
1130
-            }
1131
+        default: {
1132
+            myGUI->tryUnClick(theEvent);
1133
+            break;
1134
         }
1135
-        /*case ST_MOUSE_SCROLL_V_UP:
1136
-        case ST_MOUSE_SCROLL_V_DOWN: {
1137
-            if(theEvent.PointY > 0.75) {
1138
-                break;
1139
+    }
1140
+}
1141
+
1142
+void StMoviePlayer::doGesture(const StGestureEvent& theEvent) {
1143
+    if(myGUI.isNull()
1144
+    || myGUI->myImage == NULL) {
1145
+        return;
1146
+    }
1147
+
1148
+    for(StGLWidget *aChildIter(myGUI->getChildren()->getLast()), *aChildActive(NULL); aChildIter != NULL;) {
1149
+        aChildActive = aChildIter;
1150
+        aChildIter   = aChildIter->getPrev();
1151
+        if(aChildActive->isVisibleAndPointIn(myGUI->getCursorZo())) {
1152
+            if(aChildActive == myGUI->myImage) {
1153
+                myGUI->myImage->doGesture(theEvent);
1154
             }
1155
-        }*/
1156
-        default: {
1157
-            myGUI->tryUnClick(aPnt, theEvent.Button);
1158
             break;
1159
         }
1160
     }
1161
 }
1162
 
1163
+void StMoviePlayer::doScroll(const StScrollEvent& theEvent) {
1164
+    if(myGUI.isNull()) {
1165
+        return;
1166
+    }
1167
+
1168
+    const StPointD_t aPnt(theEvent.PointX, theEvent.PointY);
1169
+    const bool isNeutral = myGUI->getFocus() == NULL
1170
+                       || !myGUI->getFocus()->isPointIn(aPnt);
1171
+    if(!isNeutral) {
1172
+        myGUI->doScroll(theEvent);
1173
+        return;
1174
+    }
1175
+
1176
+    // limit seeking by scroll to lower corner
1177
+    if(myGUI->mySeekBar != NULL
1178
+    && myGUI->mySeekBar->isVisibleAndPointIn(aPnt)) {
1179
+        if(theEvent.StepsX >= 1) {
1180
+            doSeekRight();
1181
+        } else if(theEvent.StepsX <= -1) {
1182
+            doSeekLeft();
1183
+        }
1184
+        return;
1185
+    }
1186
+    myGUI->doScroll(theEvent);
1187
+}
1188
+
1189
 void StMoviePlayer::doAudioVolume(size_t theDirection) {
1190
     if(myVideo.isNull()) {
1191
         return;
1192
@@ -1366,7 +1135,7 @@
1193
     }
1194
 
1195
     const int32_t aValue = myVideo->params.activeAudio->nextValue(theDirection == 1 ? 1 : -1);
1196
-    params.audioStream->setValue(aValue);
1197
+    params.AudioStream->setValue(aValue);
1198
 }
1199
 
1200
 void StMoviePlayer::doSubtitlesNext(size_t theDirection) {
1201
@@ -1375,7 +1144,7 @@
1202
     }
1203
 
1204
     const int32_t aValue = myVideo->params.activeSubtitles->nextValue(theDirection == 1 ? 1 : -1);
1205
-    params.subtitlesStream->setValue(aValue);
1206
+    params.SubtitlesStream->setValue(aValue);
1207
 }
1208
 
1209
 void StMoviePlayer::doSubtitlesCopy(size_t ) {
1210
@@ -1464,7 +1233,7 @@
1211
         }
1212
 
1213
         // just open the path
1214
-        if(myPlayList->checkExtension(aFile1)) {
1215
+        //if(myPlayList->checkExtension(aFile1)) {
1216
             const size_t aRecent = myPlayList->findRecent(aFile1);
1217
             if(aRecent != size_t(-1)) {
1218
                 doOpenRecent(aRecent);
1219
@@ -1475,7 +1244,7 @@
1220
             doUpdateStateLoading();
1221
             myVideo->pushPlayEvent(ST_PLAYEVENT_RESUME);
1222
             myVideo->doLoadNext();
1223
-        }
1224
+        //}
1225
         return;
1226
     } else if(theEvent.NbFiles == 2
1227
           && !StFolder::isFolder(aFile2)
1228
@@ -1497,8 +1266,8 @@
1229
         }
1230
 
1231
         if(aNbVideos == 2) {
1232
-            myVideo->getPlayList().clear();
1233
-            myVideo->getPlayList().addOneFile(aFile1, aFile2);
1234
+            myPlayList->clear();
1235
+            myPlayList->addOneFile(aFile1, aFile2);
1236
             doUpdateStateLoading();
1237
             myVideo->pushPlayEvent(ST_PLAYEVENT_RESUME);
1238
             myVideo->doLoadNext();
1239
@@ -1506,12 +1275,12 @@
1240
         }
1241
     }
1242
 
1243
-    myVideo->getPlayList().clear();
1244
+    myPlayList->clear();
1245
     for(uint32_t aFileIter = 0; aFileIter < theEvent.NbFiles; ++aFileIter) {
1246
         StString aPath(theEvent.Files[aFileIter]);
1247
         if(!StFolder::isFolder(aPath)
1248
         && myPlayList->checkExtension(aPath)) {
1249
-            myVideo->getPlayList().addOneFile(aPath, StMIME());
1250
+            myPlayList->addOneFile(aPath, StMIME());
1251
         }
1252
     }
1253
     doUpdateStateLoading();
1254
@@ -1533,15 +1302,15 @@
1255
     }
1256
 
1257
     if(myVideo->isDisconnected() || myToUpdateALList) {
1258
-        const StString aPrevDev = params.alDevice->getUtfTitle();
1259
-        params.alDevice->initList();
1260
+        const StString aPrevDev = params.AudioAlDevice->getUtfTitle();
1261
+        params.AudioAlDevice->initList();
1262
         myGUI->updateOpenALDeviceMenu();
1263
         // switch audio device
1264
-        if(!params.alDevice->init(aPrevDev)) {
1265
+        if(!params.AudioAlDevice->init(aPrevDev)) {
1266
             // select first existing device if any
1267
-            params.alDevice->init(params.alDevice->getUtfTitle());
1268
+            params.AudioAlDevice->init(params.AudioAlDevice->getUtfTitle());
1269
         }
1270
-        myVideo->switchAudioDevice(params.alDevice->getCTitle());
1271
+        myVideo->switchAudioDevice(params.AudioAlDevice->getCTitle());
1272
         myToUpdateALList = false;
1273
     }
1274
     if(myPlayList->isRecentChanged()) {
1275
@@ -1567,11 +1336,11 @@
1276
         } else if(!myOpenDialog->getPathRight().isEmpty()) {
1277
             // meta-file
1278
             aFilePath = myOpenDialog->getPathLeft();
1279
-            myVideo->getPlayList().clear();
1280
-            myVideo->getPlayList().addOneFile(myOpenDialog->getPathLeft(), myOpenDialog->getPathRight());
1281
+            myPlayList->clear();
1282
+            myPlayList->addOneFile(myOpenDialog->getPathLeft(), myOpenDialog->getPathRight());
1283
         } else {
1284
             aFilePath = myOpenDialog->getPathLeft();
1285
-            myVideo->getPlayList().open(myOpenDialog->getPathLeft());
1286
+            myPlayList->open(myOpenDialog->getPathLeft());
1287
         }
1288
 
1289
         doUpdateStateLoading();
1290
@@ -1628,11 +1397,11 @@
1291
     // prevent display going to sleep
1292
     bool toBlockSleepDisplay = false;
1293
     bool toBlockSleepSystem  = false;
1294
-    if(myIsBenchmark) {
1295
+    if(params.Benchmark->getValue()) {
1296
         toBlockSleepDisplay = true;
1297
         toBlockSleepSystem  = true;
1298
     } else {
1299
-        switch(params.blockSleeping->getValue()) {
1300
+        switch(params.BlockSleeping->getValue()) {
1301
             case BLOCK_SLEEP_NEVER: {
1302
                 toBlockSleepDisplay = false;
1303
                 toBlockSleepSystem  = false;
1304
@@ -1665,25 +1434,28 @@
1305
     myWindow->showCursor(!myGUI->toHideCursor());
1306
 
1307
     // check for mono state
1308
+    bool hasStereoSource = false;
1309
     StHandle<StStereoParams> aParams = myGUI->myImage->getSource();
1310
     if(!aParams.isNull()) {
1311
-        myWindow->setStereoOutput(!aParams->isMono()
1312
-                            && (myGUI->myImage->params.displayMode->getValue() == StGLImageRegion::MODE_STEREO));
1313
+        hasStereoSource =!aParams->isMono()
1314
+                       && myGUI->myImage->hasVideoStream()
1315
+                       && myGUI->myImage->params.DisplayMode->getValue() == StGLImageRegion::MODE_STEREO;
1316
     }
1317
+    myWindow->setStereoOutput(hasStereoSource);
1318
 
1319
-    if(myIsBenchmark
1320
+    if(params.Benchmark->getValue()
1321
     || !params.ToLimitFps->getValue()) {
1322
         // do not limit FPS
1323
         myWindow->setTargetFps(-1.0);
1324
-    } else if(params.TargetFps >= 1
1325
-           && params.TargetFps <= 3) {
1326
+    } else if(params.TargetFps->getValue() >= 1
1327
+           && params.TargetFps->getValue() <= 3) {
1328
         // set rendering FPS to 2x averageFPS
1329
         double aTargetFps = myVideo->getAverFps();
1330
         if(aTargetFps < 17.0
1331
         || aTargetFps > 120.0) {
1332
             aTargetFps = 0.0;
1333
         } else if(aTargetFps < 40.0) {
1334
-            aTargetFps *= double(params.TargetFps);
1335
+            aTargetFps *= double(params.TargetFps->getValue());
1336
         }
1337
 
1338
         if(myWindow->toTrackOrientation()) {
1339
@@ -1694,7 +1466,7 @@
1340
         myWindow->setTargetFps(aTargetFps);
1341
     } else {
1342
         // set rendering FPS to set value in settings
1343
-        myWindow->setTargetFps(double(params.TargetFps));
1344
+        myWindow->setTargetFps(double(params.TargetFps->getValue()));
1345
     }
1346
 
1347
 }
1348
@@ -1779,7 +1551,7 @@
1349
 
1350
 void StMoviePlayer::doSwitchAudioDevice(const int32_t /*theDevId*/) {
1351
     if(!myVideo.isNull()) {
1352
-        myVideo->switchAudioDevice(params.alDevice->getCTitle());
1353
+        myVideo->switchAudioDevice(params.AudioAlDevice->getCTitle());
1354
     }
1355
 }
1356
 
1357
@@ -1825,20 +1597,20 @@
1358
     } else {
1359
         myWindow->setTitle(aFileToLoad + " - sView");
1360
     }
1361
-    params.audioStream    ->setValue(myVideo->params.activeAudio->getValue());
1362
-    params.subtitlesStream->setValue(myVideo->params.activeSubtitles->getValue());
1363
+    params.AudioStream    ->setValue(myVideo->params.activeAudio->getValue());
1364
+    params.SubtitlesStream->setValue(myVideo->params.activeSubtitles->getValue());
1365
     if(mySeekOnLoad > 0.0) {
1366
         myVideo->pushPlayEvent(ST_PLAYEVENT_SEEK, mySeekOnLoad);
1367
         mySeekOnLoad = -1.0;
1368
     }
1369
     if(myAudioOnLoad >= 0) {
1370
         myVideo->params.activeAudio->setValue(myAudioOnLoad);
1371
-        params.audioStream->setValue(myAudioOnLoad);
1372
+        params.AudioStream->setValue(myAudioOnLoad);
1373
         myAudioOnLoad = -1;
1374
     }
1375
     if(mySubsOnLoad >= 0) {
1376
         myVideo->params.activeSubtitles->setValue(mySubsOnLoad);
1377
-        params.subtitlesStream->setValue(mySubsOnLoad);
1378
+        params.SubtitlesStream->setValue(mySubsOnLoad);
1379
         mySubsOnLoad = -1;
1380
     }
1381
 }
1382
@@ -1877,12 +1649,14 @@
1383
 
1384
 void StMoviePlayer::doSwitchSrcFormat(const int32_t theSrcFormat) {
1385
     myVideo->setStereoFormat(StFormat(theSrcFormat));
1386
-}
1387
-
1388
-void StMoviePlayer::doReset(const size_t ) {
1389
+    double aDuration = 0.0;
1390
+    double aPts = 0.0;
1391
+    bool   isVideoPlayed = false;
1392
+    bool   isAudioPlayed = false;
1393
+    bool   isPlaying = myVideo->getPlaybackState(aDuration, aPts, isVideoPlayed, isAudioPlayed);
1394
     StHandle<StStereoParams> aParams = myGUI->myImage->getSource();
1395
-    if(!aParams.isNull()) {
1396
-        aParams->reset();
1397
+    if(!isPlaying && !aParams.isNull() && myGUI->myImage->hasVideoStream()) {
1398
+        myVideo->pushPlayEvent(ST_PLAYEVENT_SEEK, aPts - 0.01);
1399
     }
1400
 }
1401
 
1402
@@ -1941,11 +1715,11 @@
1403
 }
1404
 
1405
 void StMoviePlayer::doOpen1File(const size_t ) {
1406
-    myOpenDialog->openDialog(StOpenVideo::Dialog_SingleMovie);
1407
+    myOpenDialog->openDialog(StMovieOpenDialog::Dialog_SingleMovie);
1408
 }
1409
 
1410
 void StMoviePlayer::doOpen2Files(const size_t ) {
1411
-    myOpenDialog->openDialog(StOpenVideo::Dialog_DoubleMovie);
1412
+    myOpenDialog->openDialog(StMovieOpenDialog::Dialog_DoubleMovie);
1413
 }
1414
 
1415
 void StMoviePlayer::doSaveFileInfo(const size_t theToSave) {
1416
@@ -1976,11 +1750,11 @@
1417
 }
1418
 
1419
 void StMoviePlayer::doAddAudioStream(const size_t ) {
1420
-    myOpenDialog->openDialog(StOpenVideo::Dialog_Audio);
1421
+    myOpenDialog->openDialog(StMovieOpenDialog::Dialog_Audio);
1422
 }
1423
 
1424
 void StMoviePlayer::doAddSubtitleStream(const size_t ) {
1425
-    myOpenDialog->openDialog(StOpenVideo::Dialog_Subtitles);
1426
+    myOpenDialog->openDialog(StMovieOpenDialog::Dialog_Subtitles);
1427
 }
1428
 
1429
 void StMoviePlayer::doSeekLeft(const size_t ) {
1430
@@ -2046,6 +1820,14 @@
1431
     myVideo->doSaveSnapshotAs(aType);
1432
 }
1433
 
1434
+void StMoviePlayer::doSetBenchmark(const bool theValue) {
1435
+    if(myVideo.isNull()) {
1436
+        return;
1437
+    }
1438
+
1439
+    myVideo->setBenchmark(theValue);
1440
+}
1441
+
1442
 bool StMoviePlayer::getCurrentFile(StHandle<StFileNode>&     theFileNode,
1443
                                    StHandle<StStereoParams>& theParams,
1444
                                    StHandle<StMovieInfo>&    theInfo) {
1445
sview-15_11.tar.gz/StMoviePlayer/StMoviePlayer.h -> sview-16_06.tar.gz/StMoviePlayer/StMoviePlayer.h Changed
333
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2007-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * StMoviePlayer program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU General Public License as published by
8
@@ -21,7 +21,6 @@
9
 
10
 #include <StCore/StApplication.h>
11
 
12
-#include <StSettings/StTranslations.h>
13
 #include <StSettings/StFloat32Param.h>
14
 #include <StGLStereo/StFormatEnum.h>
15
 #include <StThreads/StCondition.h>
16
@@ -32,9 +31,11 @@
17
 #include <vector>
18
 
19
 // forward declarations
20
+class StALDeviceParam;
21
 class StCheckUpdates;
22
 class StFileNode;
23
 class StGLContext;
24
+class StMovieOpenDialog;
25
 class StMoviePlayerGUI;
26
 class StPlayList;
27
 class StSettings;
28
@@ -48,50 +49,6 @@
29
 struct mg_connection;
30
 struct mg_request_info;
31
 
32
-class StALDeviceParam : public StInt32Param {
33
-
34
-        public:
35
-
36
-    /**
37
-     * Main constructor.
38
-     */
39
-    ST_LOCAL StALDeviceParam();
40
-
41
-    /**
42
-     * Destructor.
43
-     */
44
-    ST_LOCAL virtual ~StALDeviceParam();
45
-
46
-    ST_LOCAL void initList();
47
-
48
-    ST_LOCAL bool init(const StString& theActive);
49
-
50
-    ST_LOCAL int32_t getValueFromName(const StString& theName);
51
-
52
-    /**
53
-     * Returns title for active AL device.
54
-     */
55
-    ST_LOCAL StString getUtfTitle() const;
56
-
57
-    /**
58
-     * Returns title for active AL device.
59
-     */
60
-    ST_LOCAL std::string getCTitle() const;
61
-
62
-    /**
63
-     * Return list of available translations.
64
-     */
65
-    ST_LOCAL const StArrayList<StString>& getList() const {
66
-        return myDevicesUtf;
67
-    }
68
-
69
-        private:
70
-
71
-    std::vector<std::string> myDevicesLoc;
72
-    StArrayList<StString>    myDevicesUtf;
73
-
74
-};
75
-
76
 /**
77
  * Movie Player application.
78
  */
79
@@ -100,7 +57,6 @@
80
         public:
81
 
82
     static const StString ST_DRAWER_PLUGIN_NAME;
83
-    class StOpenVideo;
84
 
85
     enum {
86
         BLOCK_SLEEP_NEVER      = 0,
87
@@ -132,22 +88,22 @@
88
     /**
89
      * Open application.
90
      */
91
-    ST_CPPEXPORT virtual bool open();
92
+    ST_CPPEXPORT virtual bool open() ST_ATTR_OVERRIDE;
93
 
94
     /**
95
      * Process callback.
96
      */
97
-    ST_CPPEXPORT virtual void beforeDraw();
98
+    ST_CPPEXPORT virtual void beforeDraw() ST_ATTR_OVERRIDE;
99
 
100
     /**
101
      * Draw frame for requested view.
102
      */
103
-    ST_CPPEXPORT virtual void stglDraw(unsigned int theView);
104
+    ST_CPPEXPORT virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
105
 
106
     /**
107
      * Reset device - release GL resources in old window and re-create them in new window.
108
      */
109
-    ST_CPPEXPORT virtual bool resetDevice();
110
+    ST_CPPEXPORT virtual bool resetDevice() ST_ATTR_OVERRIDE;
111
 
112
         public: //! @name callback Slots
113
 
114
@@ -186,7 +142,6 @@
115
     ST_LOCAL void doSeek(const int mouseBtn, const double seekX);
116
     ST_LOCAL void doPlayPause(const size_t dummy = 0);
117
     ST_LOCAL void doStop(const size_t dummy = 0);
118
-    ST_LOCAL void doReset(const size_t dummy = 0);
119
 
120
     ST_LOCAL void doSnapshot(const size_t theImgType);
121
     ST_LOCAL void doAboutFile(const size_t dummy = 0);
122
@@ -201,62 +156,68 @@
123
 
124
     struct {
125
 
126
-        StHandle<StInt32Param>    ScaleAdjust;      //!< adjust GUI size, see StGLRootWidget::ScaleAdjust
127
-        StHandle<StFloat32Param>  ScaleHiDPI;       //!< adapt  GUI size for HiDPI resolution
128
-        StHandle<StBoolParam>     ScaleHiDPI2X;     //!< option to set HiDPI resolution to 2.0
129
-        StHandle<StInt32Param>    SubtitlesPlace;   //!< subtitles placement
130
-        StHandle<StFloat32Param>  SubtitlesTopDY;   //!< subtitles vertical displacement
131
-        StHandle<StFloat32Param>  SubtitlesBottomDY;//!< subtitles vertical displacement
132
-        StHandle<StFloat32Param>  SubtitlesSize;    //!< subtitles font size
133
-        StHandle<StFloat32Param>  SubtitlesParallax;//!< subtitles parallax
134
-        StHandle<StBoolParam>     ToSearchSubs;     //!< automatically search for additional subtitles/audio track files nearby video file
135
-        StHandle<StEnumParam>     SubtitlesParser;  //!< subtitles parser
136
-        StHandle<StALDeviceParam> alDevice;         //!< active OpenAL device
137
-        StHandle<StFloat32Param>  AudioGain;        //!< volume factor
138
-        StHandle<StBoolParam>     AudioMute;        //!< volume mute flag
139
-        StHandle<StFloat32Param>  AudioDelay;       //!< audio/video synchronization delay
140
-        StHandle<StBoolParam>     isFullscreen;     //!< fullscreen state
141
-        StHandle<StBoolParam>     toRestoreRatio;   //!< restore ratio on restart
142
-        StHandle<StBoolParam>     isShuffle;        //!< shuffle playback order
143
-        StHandle<StBoolParam>     ToLoopSingle;     //!< play single playlist item in loop
144
-        StHandle<StBoolParam>     areGlobalMKeys;   //!< capture global multimedia keys
145
-        StHandle<StInt32Param>    checkUpdatesDays; //!< days count between updates checks
146
-        StHandle<StInt32Param>    srcFormat;        //!< source format
147
-        StHandle<StBoolParam>     ToTrackHead;      //!< enable/disable head-tracking
148
-        StHandle<StBoolParam>     ToShowPlayList;   //!< display playlist
149
-        StHandle<StBoolParam>     ToShowFps;        //!< display FPS meter
150
-        StHandle<StBoolParam>     ToShowMenu;       //!< show main menu
151
-        StHandle<StBoolParam>     ToShowTopbar;     //!< show topbar
152
-        StHandle<StBoolParam>     IsMobileUI;       //!< display mobile interface
153
-        StHandle<StBoolParam>     ToLimitFps;       //!< limit CPU usage or not
154
-        StHandle<StBoolParam>     IsVSyncOn;        //!< flag to use VSync
155
-        StHandle<StEnumParam>     StartWebUI;       //!< to start Web UI or not
156
-        StHandle<StBoolParam>     ToPrintWebErrors; //!< print Web UI starting errors
157
-        StHandle<StBoolParam>     IsLocalWebUI;     //!< restrict remote access to 127.0.0.0
158
-        StHandle<StInt32Param>    WebUIPort;        //!< port to start Web UI
159
-        StHandle<StInt32Param>    audioStream;      //!< active Audio stream
160
-        StHandle<StInt32Param>    subtitlesStream;  //!< active Subtitles stream
161
-        StHandle<StInt32Param>    blockSleeping;    //!< active Audio stream
162
-        StHandle<StBoolParam>     ToShowExtra;      //!< show experimental menu items
163
-        StHandle<StInt32Param>    SnapshotImgType;  //!< default snapshot image type
164
-        StString                  lastFolder;       //!< laster folder used to open / save file
165
-        int                       TargetFps;        //!< rendering FPS limit (0 - max FPS with less CPU, 1,2,3 - adjust to video FPS)
166
-        StHandle<StBoolParam>     UseGpu;           //!< use video decoding on GPU when available
167
+        StHandle<StEnumParam>         ScaleAdjust;       //!< adjust GUI size, see StGLRootWidget::ScaleAdjust
168
+        StHandle<StFloat32Param>      ScaleHiDPI;        //!< adapt  GUI size for HiDPI resolution
169
+        StHandle<StBoolParamNamed>    ScaleHiDPI2X;      //!< option to set HiDPI resolution to 2.0
170
+        StHandle<StInt32ParamNamed>   SubtitlesPlace;    //!< subtitles placement
171
+        StHandle<StFloat32Param>      SubtitlesTopDY;    //!< subtitles vertical displacement
172
+        StHandle<StFloat32Param>      SubtitlesBottomDY; //!< subtitles vertical displacement
173
+        StHandle<StFloat32Param>      SubtitlesSize;     //!< subtitles font size
174
+        StHandle<StFloat32Param>      SubtitlesParallax; //!< subtitles parallax
175
+        StHandle<StBoolParamNamed>    ToSearchSubs;      //!< automatically search for additional subtitles/audio track files nearby video file
176
+        StHandle<StEnumParam>         SubtitlesParser;   //!< subtitles parser
177
+        StHandle<StALDeviceParam>     AudioAlDevice;     //!< active OpenAL device
178
+        StHandle<StFloat32Param>      AudioGain;         //!< volume factor
179
+        StHandle<StBoolParamNamed>    AudioMute;         //!< volume mute flag
180
+        StHandle<StFloat32Param>      AudioDelay;        //!< audio/video synchronization delay
181
+        StHandle<StBoolParamNamed>    IsFullscreen;      //!< fullscreen state
182
+        StHandle<StEnumParam>         ExitOnEscape;     //!< exit action on escape
183
+        StHandle<StBoolParamNamed>    ToRestoreRatio;    //!< restore ratio on restart
184
+        StHandle<StBoolParamNamed>    IsShuffle;         //!< shuffle playback order
185
+        StHandle<StBoolParamNamed>    ToLoopSingle;      //!< play single playlist item in loop
186
+        StHandle<StBoolParamNamed>    AreGlobalMKeys;    //!< capture global multimedia keys
187
+        StHandle<StEnumParam>         CheckUpdatesDays;  //!< days count between updates checks
188
+        StHandle<StInt32ParamNamed>   LastUpdateDay;     //!< the last time update has been checked
189
+        StHandle<StInt32ParamNamed>   SrcStereoFormat;   //!< source format
190
+        StHandle<StBoolParamNamed>    ToTrackHead;       //!< enable/disable head-tracking
191
+        StHandle<StBoolParamNamed>    ToShowPlayList;    //!< display playlist
192
+        StHandle<StBoolParamNamed>    ToShowFps;         //!< display FPS meter
193
+        StHandle<StBoolParamNamed>    ToShowMenu;        //!< show main menu
194
+        StHandle<StBoolParamNamed>    ToShowTopbar;      //!< show topbar
195
+        StHandle<StBoolParamNamed>    IsMobileUI;        //!< display mobile interface
196
+        StHandle<StBoolParamNamed>    ToLimitFps;        //!< limit CPU usage or not
197
+        StHandle<StBoolParamNamed>    IsVSyncOn;         //!< flag to use VSync
198
+        StHandle<StEnumParam>         StartWebUI;        //!< to start Web UI or not
199
+        StHandle<StBoolParamNamed>    ToPrintWebErrors;  //!< print Web UI starting errors
200
+        StHandle<StBoolParamNamed>    IsLocalWebUI;      //!< restrict remote access to 127.0.0.0
201
+        StHandle<StInt32ParamNamed>   WebUIPort;         //!< port to start Web UI
202
+        StHandle<StInt32Param>        AudioStream;       //!< active Audio stream
203
+        StHandle<StInt32Param>        SubtitlesStream;   //!< active Subtitles stream
204
+        StHandle<StEnumParam>         BlockSleeping;     //!< active Audio stream
205
+        StHandle<StBoolParamNamed>    ToShowExtra;       //!< show experimental menu items
206
+        StHandle<StInt32ParamNamed>   SnapshotImgType;   //!< default snapshot image type
207
+        StString                      lastFolder;        //!< laster folder used to open / save file
208
+        StHandle<StInt32ParamNamed>   TargetFps;         //!< rendering FPS limit (0 - max FPS with less CPU, 1,2,3 - adjust to video FPS)
209
+        StHandle<StBoolParamNamed>    UseGpu;            //!< use video decoding on GPU when available
210
+        StHandle<StBoolParamNamed>    UseOpenJpeg;       //!< use OpenJPEG (libopenjpeg) instead of built-in jpeg2000 decoder
211
+        StHandle<StBoolParamNamed>    Benchmark;         //!< benchmark flag
212
 
213
     } params;
214
 
215
         private: //! @name window events slots
216
 
217
-    ST_LOCAL virtual void doChangeDevice(const int32_t theValue);
218
-    ST_LOCAL virtual void doPause    (const StPauseEvent&  theEvent);
219
-    ST_LOCAL virtual void doResize   (const StSizeEvent&   theEvent);
220
-    ST_LOCAL virtual void doKeyDown  (const StKeyEvent&    theEvent);
221
-    ST_LOCAL virtual void doKeyHold  (const StKeyEvent&    theEvent);
222
-    ST_LOCAL virtual void doKeyUp    (const StKeyEvent&    theEvent);
223
-    ST_LOCAL virtual void doMouseDown(const StClickEvent&  theEvent);
224
-    ST_LOCAL virtual void doMouseUp  (const StClickEvent&  theEvent);
225
-    ST_LOCAL virtual void doFileDrop (const StDNDropEvent& theEvent);
226
-    ST_LOCAL virtual void doNavigate (const StNavigEvent&  theEvent);
227
+    ST_LOCAL virtual void doChangeDevice(const int32_t theValue)     ST_ATTR_OVERRIDE;
228
+    ST_LOCAL virtual void doPause    (const StPauseEvent&  theEvent) ST_ATTR_OVERRIDE;
229
+    ST_LOCAL virtual void doResize   (const StSizeEvent&   theEvent) ST_ATTR_OVERRIDE;
230
+    ST_LOCAL virtual void doKeyDown  (const StKeyEvent&    theEvent) ST_ATTR_OVERRIDE;
231
+    ST_LOCAL virtual void doKeyHold  (const StKeyEvent&    theEvent) ST_ATTR_OVERRIDE;
232
+    ST_LOCAL virtual void doKeyUp    (const StKeyEvent&    theEvent) ST_ATTR_OVERRIDE;
233
+    ST_LOCAL virtual void doMouseDown(const StClickEvent&  theEvent) ST_ATTR_OVERRIDE;
234
+    ST_LOCAL virtual void doMouseUp  (const StClickEvent&  theEvent) ST_ATTR_OVERRIDE;
235
+    ST_LOCAL virtual void doGesture  (const StGestureEvent& theEvent) ST_ATTR_OVERRIDE;
236
+    ST_LOCAL virtual void doScroll   (const StScrollEvent& theEvent) ST_ATTR_OVERRIDE;
237
+    ST_LOCAL virtual void doFileDrop (const StDNDropEvent& theEvent) ST_ATTR_OVERRIDE;
238
+    ST_LOCAL virtual void doNavigate (const StNavigEvent&  theEvent) ST_ATTR_OVERRIDE;
239
 
240
         private:
241
 
242
@@ -264,6 +225,7 @@
243
      * Initialization routines.
244
      */
245
     ST_LOCAL bool init();
246
+    ST_LOCAL void updateStrings();
247
     ST_LOCAL void saveGuiParams();
248
     ST_LOCAL void saveAllParams();
249
     ST_LOCAL bool createGui(StHandle<StGLTextureQueue>& theTextureQueue,
250
@@ -279,10 +241,6 @@
251
      */
252
     ST_LOCAL void releaseDevice();
253
 
254
-    ST_LOCAL const StString& tr(const size_t theId) const {
255
-        return myLangMap->getValue(theId);
256
-    }
257
-
258
     ST_LOCAL static GLfloat gainToVolume(const StHandle<StFloat32Param>& theGain) {
259
         return (theGain->getMinValue() - theGain->getValue()) / theGain->getMinValue();
260
     }
261
@@ -294,6 +252,7 @@
262
 
263
         private: //! @name private callback Slots
264
 
265
+    ST_LOCAL virtual void doChangeLanguage(const int32_t theNewLang) ST_ATTR_OVERRIDE;
266
     ST_LOCAL void doScaleGui(const int32_t );
267
     ST_LOCAL void doScaleHiDPI(const bool );
268
     ST_LOCAL void doSwitchVSync(const bool theValue);
269
@@ -312,6 +271,7 @@
270
     ST_LOCAL void doUpdateStateLoading();
271
     ST_LOCAL void doUpdateStateLoaded();
272
     ST_LOCAL void doImageAdjustReset(const size_t dummy = 0);
273
+    ST_LOCAL void doSetBenchmark(const bool theValue);
274
 
275
         public:
276
 
277
@@ -369,33 +329,30 @@
278
 
279
         private: //! @name private fields
280
 
281
-    StHandle<StGLContext>      myContext;
282
-    StHandle<StSettings>       mySettings;        //!< settings manager for Image Viewer plugin
283
-    StHandle<StTranslations>   myLangMap;         //!< translated strings map
284
-    StHandle<StPlayList>       myPlayList;        //!< play list
285
-    StHandle<StMoviePlayerGUI> myGUI;             //!< GUI root widget
286
-    StHandle<StVideo>          myVideo;           //!< main video playback class
287
-    StHandle<StCheckUpdates>   myUpdates;         //!< check updates utility
288
-    StHandle<StFileNode>       myFileToDelete;    //!< file node for removal
289
-    StHandle<StMovieInfo>      myFileInfo;        //!< file info for opened dialog
290
-    StHandle<StOpenVideo>      myOpenDialog;      //!< file open dialog
291
-
292
-    StCondition                myEventLoaded;     //!< indicate that new file was open
293
-    StTimer                    myInactivityTimer; //!< timer initialized when application goes into paused state
294
-    double                     mySeekOnLoad;      //!< seeking target
295
-    int32_t                    myAudioOnLoad;     //!< audio     track on load
296
-    int32_t                    mySubsOnLoad;      //!< subtitles track on load
297
-
298
-    mg_context*                myWebCtx;          //!< web UI context
299
-
300
-    int32_t                    myLastUpdateDay;
301
-    bool                       myToRecreateMenu;
302
-    bool                       myToUpdateALList;
303
-    bool                       myIsBenchmark;
304
-    bool                       myToCheckUpdates;
305
-    bool                       myToCheckPoorOrient; //!< switch off orientation sensor with poor quality
306
+    StHandle<StGLContext>       myContext;
307
+    StHandle<StSettings>        mySettings;        //!< settings manager for Image Viewer plugin
308
+    StHandle<StPlayList>        myPlayList;        //!< play list
309
+    StHandle<StMoviePlayerGUI>  myGUI;             //!< GUI root widget
310
+    StHandle<StVideo>           myVideo;           //!< main video playback class
311
+    StHandle<StCheckUpdates>    myUpdates;         //!< check updates utility
312
+    StHandle<StFileNode>        myFileToDelete;    //!< file node for removal
313
+    StHandle<StMovieInfo>       myFileInfo;        //!< file info for opened dialog
314
+    StHandle<StMovieOpenDialog> myOpenDialog;      //!< file open dialog
315
+
316
+    StCondition                 myEventLoaded;     //!< indicate that new file was open
317
+    StTimer                     myInactivityTimer; //!< timer initialized when application goes into paused state
318
+    double                      mySeekOnLoad;      //!< seeking target
319
+    int32_t                     myAudioOnLoad;     //!< audio     track on load
320
+    int32_t                     mySubsOnLoad;      //!< subtitles track on load
321
+
322
+    mg_context*                 myWebCtx;          //!< web UI context
323
+
324
+    bool                        myToUpdateALList;
325
+    bool                        myToCheckUpdates;
326
+    bool                        myToCheckPoorOrient; //!< switch off orientation sensor with poor quality
327
 
328
     friend class StMoviePlayerGUI;
329
+    friend class StMovieOpenDialog;
330
 
331
 };
332
 
333
sview-15_11.tar.gz/StMoviePlayer/StMoviePlayer.rc -> sview-16_06.tar.gz/StMoviePlayer/StMoviePlayer.rc Changed
10
 
1
@@ -15,7 +15,7 @@
2
     BEGIN
3
       VALUE "FileDescription", "Stereoscopic Movie Player\000"
4
       VALUE "FileVersion",     SVIEW_SDK_VER_STRING "\000"
5
-      VALUE "LegalCopyright",  "\251 2007-2015 Kirill Gavrilov\000"
6
+      VALUE "LegalCopyright",  "\251 2007-2016 Kirill Gavrilov\000"
7
       VALUE "ProductName",     "StMoviePlayer\000"
8
       VALUE "ProductVersion",  SVIEW_SDK_VER_STRING "\000"
9
       VALUE "OfficialSite",    "www.sview.ru\000"
10
sview-15_11.tar.gz/StMoviePlayer/StMoviePlayer.vcxproj -> sview-16_06.tar.gz/StMoviePlayer/StMoviePlayer.vcxproj Changed
89
 
1
@@ -1,5 +1,5 @@
2
-<?xml version="1.0" encoding="utf-8"?>
3
-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
+<?xml version="1.0" encoding="utf-8"?>
5
+<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
6
   <ItemGroup Label="ProjectConfigurations">
7
     <ProjectConfiguration Include="Debug|Win32">
8
       <Configuration>Debug</Configuration>
9
@@ -21,7 +21,7 @@
10
   <PropertyGroup Label="Globals">
11
     <ProjectGuid>{3985832B-709C-4B38-B5A9-8792E09DF17B}</ProjectGuid>
12
   </PropertyGroup>
13
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
14
+  <Import Project="$(SolutionDir)sView.Cpp.Default.props" />
15
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
16
     <ConfigurationType>DynamicLibrary</ConfigurationType>
17
     <CharacterSet>Unicode</CharacterSet>
18
@@ -101,6 +101,9 @@
19
       <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_x86;..\lib\WIN_vc_x86;$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
20
       <SubSystem>Windows</SubSystem>
21
     </Link>
22
+    <PostBuildEvent>
23
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
24
+    </PostBuildEvent>
25
   </ItemDefinitionGroup>
26
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
27
     <Midl>
28
@@ -136,6 +139,9 @@
29
       <GenerateDebugInformation>true</GenerateDebugInformation>
30
       <SubSystem>Windows</SubSystem>
31
     </Link>
32
+    <PostBuildEvent>
33
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
34
+    </PostBuildEvent>
35
   </ItemDefinitionGroup>
36
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
37
     <Midl>
38
@@ -169,6 +175,9 @@
39
       <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_AMD64;..\lib\WIN_vc_AMD64;$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
40
       <SubSystem>Windows</SubSystem>
41
     </Link>
42
+    <PostBuildEvent>
43
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
44
+    </PostBuildEvent>
45
   </ItemDefinitionGroup>
46
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
47
     <Midl>
48
@@ -204,8 +213,13 @@
49
       <GenerateDebugInformation>true</GenerateDebugInformation>
50
       <SubSystem>Windows</SubSystem>
51
     </Link>
52
+    <PostBuildEvent>
53
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
54
+    </PostBuildEvent>
55
   </ItemDefinitionGroup>
56
   <ItemGroup>
57
+    <ClCompile Include="StALDeviceParam.cpp" />
58
+    <ClCompile Include="StMovieOpenDialog.cpp" />
59
     <ClCompile Include="StVideo\StALContext.cpp" />
60
     <ClCompile Include="StVideo\StAudioQueue.cpp" />
61
     <ClCompile Include="StVideo\StAVPacketQueue.cpp" />
62
@@ -221,7 +235,25 @@
63
     <ClCompile Include="StMoviePlayer.cpp" />
64
     <ClCompile Include="StMoviePlayerGUI.cpp" />
65
     <ClCompile Include="StMoviePlayerStrings.cpp" />
66
-    <ClCompile Include="StSeekBar.cpp" />
67
+  </ItemGroup>
68
+  <ItemGroup>
69
+    <ClInclude Include="StALDeviceParam.h" />
70
+    <ClInclude Include="StMovieOpenDialog.h" />
71
+    <ClInclude Include="StVideo\StALContext.h" />
72
+    <ClInclude Include="StVideo\StAudioQueue.h" />
73
+    <ClInclude Include="StVideo\StAVPacketQueue.h" />
74
+    <ClInclude Include="StVideo\StParamActiveStream.h" />
75
+    <ClInclude Include="StVideo\StPCMBuffer.h" />
76
+    <ClInclude Include="StVideo\StSubtitleQueue.h" />
77
+    <ClInclude Include="StVideo\StSubtitlesASS.h" />
78
+    <ClInclude Include="StVideo\StVideo.h" />
79
+    <ClInclude Include="StVideo\StVideoQueue.h" />
80
+    <ClInclude Include="StVideo\StVideoTimer.h" />
81
+    <ClInclude Include="StMoviePlayer.h" />
82
+    <ClInclude Include="StMoviePlayerGUI.h" />
83
+    <ClInclude Include="StMoviePlayerInfo.h" />
84
+    <ClInclude Include="StMoviePlayerStrings.h" />
85
+    <ClInclude Include="StTimeBox.h" />
86
   </ItemGroup>
87
   <ItemGroup>
88
     <ResourceCompile Include="StMoviePlayer.rc" />
89
sview-15_11.tar.gz/StMoviePlayer/StMoviePlayer.vcxproj.filters -> sview-16_06.tar.gz/StMoviePlayer/StMoviePlayer.vcxproj.filters Changed
68
 
1
@@ -1,59 +1,14 @@
2
 <?xml version="1.0" encoding="utf-8"?>
3
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
   <ItemGroup>
5
-    <Filter Include="Source files">
6
-      <UniqueIdentifier>{CACACF6C-18DA-13DF-148A-3C969CC3F588}</UniqueIdentifier>
7
+    <Filter Include="Source Files">
8
+      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
9
+      <Extensions>cpp;c;cc;cxx;m;mm;def;odl;idl;hpj;bat;asm;asmx</Extensions>
10
+    </Filter>
11
+    <Filter Include="Header Files">
12
+      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
13
+      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
14
     </Filter>
15
-  </ItemGroup>
16
-  <ItemGroup>
17
-    <ClCompile Include="StVideo\StALContext.cpp">
18
-      <Filter>Source files</Filter>
19
-    </ClCompile>
20
-    <ClCompile Include="StVideo\StAudioQueue.cpp">
21
-      <Filter>Source files</Filter>
22
-    </ClCompile>
23
-    <ClCompile Include="StVideo\StAVPacketQueue.cpp">
24
-      <Filter>Source files</Filter>
25
-    </ClCompile>
26
-    <ClCompile Include="StVideo\StParamActiveStream.cpp">
27
-      <Filter>Source files</Filter>
28
-    </ClCompile>
29
-    <ClCompile Include="StVideo\StPCMBuffer.cpp">
30
-      <Filter>Source files</Filter>
31
-    </ClCompile>
32
-    <ClCompile Include="StVideo\StSubtitleQueue.cpp">
33
-      <Filter>Source files</Filter>
34
-    </ClCompile>
35
-    <ClCompile Include="StVideo\StSubtitlesASS.cpp">
36
-      <Filter>Source files</Filter>
37
-    </ClCompile>
38
-    <ClCompile Include="StVideo\StVideo.cpp">
39
-      <Filter>Source files</Filter>
40
-    </ClCompile>
41
-    <ClCompile Include="StVideo\StVideoDxva2.cpp">
42
-      <Filter>Source files</Filter>
43
-    </ClCompile>
44
-    <ClCompile Include="StVideo\StVideoQueue.cpp">
45
-      <Filter>Source files</Filter>
46
-    </ClCompile>
47
-    <ClCompile Include="StVideo\StVideoTimer.cpp">
48
-      <Filter>Source files</Filter>
49
-    </ClCompile>
50
-    <ClCompile Include="stMongoose.c">
51
-      <Filter>Source files</Filter>
52
-    </ClCompile>
53
-    <ClCompile Include="StMoviePlayer.cpp">
54
-      <Filter>Source files</Filter>
55
-    </ClCompile>
56
-    <ClCompile Include="StMoviePlayerGUI.cpp">
57
-      <Filter>Source files</Filter>
58
-    </ClCompile>
59
-    <ClCompile Include="StMoviePlayerStrings.cpp">
60
-      <Filter>Source files</Filter>
61
-    </ClCompile>
62
-    <ClCompile Include="StSeekBar.cpp">
63
-      <Filter>Source files</Filter>
64
-    </ClCompile>
65
   </ItemGroup>
66
   <ItemGroup>
67
     <ResourceCompile Include="StMoviePlayer.rc" />
68
sview-16_06.tar.gz/StMoviePlayer/StMoviePlayer.vcxproj.user Added
11
 
1
@@ -0,0 +1,8 @@
2
+<?xml version="1.0" encoding="utf-8"?>
3
+<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
+  <PropertyGroup>
5
+    <LocalDebuggerCommand>$(OutDir)\sView.exe</LocalDebuggerCommand>
6
+    <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
7
+    <LocalDebuggerCommandArguments>--in=video</LocalDebuggerCommandArguments>
8
+  </PropertyGroup>
9
+</Project>
10
\ No newline at end of file
11
sview-15_11.tar.gz/StMoviePlayer/StMoviePlayerGUI.cpp -> sview-16_06.tar.gz/StMoviePlayer/StMoviePlayerGUI.cpp Changed
823
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * StMoviePlayer program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU General Public License as published by
8
@@ -18,21 +18,14 @@
9
 
10
 #include "StMoviePlayerGUI.h"
11
 
12
-// OpenAL headers
13
-#if defined(__APPLE__)
14
-    #include <OpenAL/al.h>
15
-    #include <OpenAL/alc.h>
16
-#else
17
-    #include <AL/al.h>
18
-    #include <AL/alc.h>
19
-#endif
20
-
21
+#include "StALDeviceParam.h"
22
 #include "StMoviePlayer.h"
23
-#include "StSeekBar.h"
24
 #include "StTimeBox.h"
25
 
26
+#include "StVideo/StALContext.h"
27
 #include "StVideo/StVideo.h"
28
 
29
+#include <StCore/StSearchMonitors.h>
30
 #include <StImage/StImageFile.h>
31
 #include <StSettings/StEnumParam.h>
32
 
33
@@ -50,6 +43,7 @@
34
 #include <StGLWidgets/StGLOpenFile.h>
35
 #include <StGLWidgets/StGLPlayList.h>
36
 #include <StGLWidgets/StGLRangeFieldFloat32.h>
37
+#include <StGLWidgets/StGLSeekBar.h>
38
 #include <StGLWidgets/StGLScrollArea.h>
39
 #include <StGLWidgets/StGLSubtitles.h>
40
 #include <StGLWidgets/StGLSwitchTextured.h>
41
@@ -66,6 +60,7 @@
42
 using namespace StMoviePlayerStrings;
43
 
44
 namespace {
45
+
46
     static const int DISPL_Y_REGION_UPPER  = 32;
47
     static const int DISPL_X_REGION_UPPER  = 32;
48
     static const int DISPL_X_REGION_BOTTOM = 52;
49
@@ -80,7 +75,7 @@
50
     createUpperToolbar();
51
     createBottomToolbar(64, 32);
52
 
53
-    mySeekBar = new StSeekBar(myPanelBottom, 0, scale(18));
54
+    mySeekBar = new StGLSeekBar(myPanelBottom, 0, scale(18));
55
     mySeekBar->signals.onSeekClick.connect(myPlugin, &StMoviePlayer::doSeek);
56
 
57
     myTimeBox = new StTimeBox(myPanelBottom, myBottomBarNbLeft * myIconStep, 0,
58
@@ -102,7 +97,7 @@
59
     StMarginsI aButtonMargins;
60
     const IconSize anIconSize = scaleIcon(32, aButtonMargins);
61
     aButtonMargins.extend(scale(8));
62
-    myBtnShuffle = new StGLCheckboxTextured(myPlayList, myPlugin->params.isShuffle,
63
+    myBtnShuffle = new StGLCheckboxTextured(myPlayList, myPlugin->params.IsShuffle,
64
                                             iconTexture(stCString("actionVideoShuffle"), anIconSize),
65
                                             iconTexture(stCString("actionVideoShuffle"), anIconSize),
66
                                             scale(24), 0,
67
@@ -173,7 +168,7 @@
68
     aSrcBtn->setDrawShadow(true);
69
     myBtnSrcFrmt = aSrcBtn;
70
 
71
-    myBtnSwapLR = new StGLCheckboxTextured(myPanelUpper, myImage->params.swapLR,
72
+    myBtnSwapLR = new StGLCheckboxTextured(myPanelUpper, myImage->params.SwapLR,
73
                                            iconTexture(stCString("actionSwapLROff"), anIconSize),
74
                                            iconTexture(stCString("actionSwapLROn"),  anIconSize),
75
                                            aLeft + (aBtnIter++) * anIconStep, aTop,
76
@@ -245,7 +240,7 @@
77
     myBtnPlay->changeMargins() = aButtonMargins;
78
 
79
     if(myWindow->hasFullscreenMode()) {
80
-        myBtnFullScr = new StGLCheckboxTextured(myPanelBottom, myPlugin->params.isFullscreen,
81
+        myBtnFullScr = new StGLCheckboxTextured(myPanelBottom, myPlugin->params.IsFullscreen,
82
                                                 iconTexture(stCString("actionVideoFullscreenOff"), anIconSize),
83
                                                 iconTexture(stCString("actionVideoFullscreenOn"),  anIconSize),
84
                                                 (myBottomBarNbRight++) * (-anIconStep), 0,
85
@@ -277,12 +272,13 @@
86
     myBtnPrev->setDrawShadow(true);
87
     myBtnPrev->changeMargins() = aButtonMargins;
88
 
89
-    myVolumeBar = new StSeekBar(myPanelBottom, 0, scale(4));
90
+    myVolumeBar = new StGLSeekBar(myPanelBottom, 0, scale(4));
91
     myVolumeBar->changeRectPx().left()  = (myBottomBarNbRight++) * (-anIconStep) - scale(8);
92
     myVolumeBar->changeRectPx().right() = myVolumeBar->getRectPx().left() + 2 * anIconStep + scale(8);
93
     myVolumeBar->changeRectPx().moveTopTo(0 + (anIconStep - myVolumeBar->getRectPx().height()) / 2);
94
     myVolumeBar->setCorner(StGLCorner(ST_VCORNER_TOP, ST_HCORNER_RIGHT));
95
-    myVolumeBar->signals.onSeekClick = stSlot(this, &StMoviePlayerGUI::doAudioGain);
96
+    myVolumeBar->signals.onSeekClick  = stSlot(this, &StMoviePlayerGUI::doAudioGain);
97
+    myVolumeBar->signals.onSeekScroll = stSlot(this, &StMoviePlayerGUI::doAudioGainScroll);
98
     myVolumeBar->setMoveTolerance(1);
99
     myVolumeBar->changeMargins().left  = scale(8);
100
     myVolumeBar->changeMargins().right = scale(8);
101
@@ -351,29 +347,11 @@
102
               ->setIcon(stCMenuIcon("actionSourceFormat"), false);
103
 
104
     if(myWindow->isMobile()) {
105
-        aMenuMedia->addItem("Mobile UI", myPlugin->params.IsMobileUI);
106
+        aMenuMedia->addItem(myPlugin->params.IsMobileUI);
107
     }
108
 
109
     aMenuMedia->addItem(tr(MENU_MEDIA_AL_DEVICE),  myMenuOpenAL);
110
 
111
-#if defined(_WIN32)
112
-    const StCString aGpuAcc = stCString(" (DXVA2)");
113
-#elif defined(__APPLE__)
114
-    const StCString aGpuAcc = stCString(" (VDA)");
115
-#else
116
-    //const StCString aGpuAcc = stCString("");
117
-#endif
118
-
119
-#if defined(_WIN32) || defined(__APPLE__)
120
-#if defined(_WIN32)
121
-    if(myPlugin->params.ToShowExtra->getValue()) {
122
-#endif
123
-        aMenuMedia->addItem(tr(MENU_MEDIA_GPU_DECODING) + aGpuAcc, myPlugin->params.UseGpu);
124
-#if defined(_WIN32)
125
-    }
126
-#endif
127
-#endif
128
-
129
 #ifdef ST_HAVE_MONGOOSE
130
     StString aWebUiItem = tr(MENU_MEDIA_WEBUI) + ":" + myPlugin->params.WebUIPort->getValue();
131
     if(myPlugin->params.IsLocalWebUI->getValue()) {
132
@@ -381,6 +359,11 @@
133
     }
134
     aMenuMedia->addItem(aWebUiItem, aMenuWebUI);
135
 #endif
136
+
137
+    if(myPlugin->params.ToShowExtra->getValue()) {
138
+        aMenuMedia->addItem(myPlugin->params.Benchmark->getName(), myPlugin->params.Benchmark);
139
+    }
140
+
141
     aMenuMedia->addItem(tr(MENU_MEDIA_QUIT), myPlugin->getAction(StMoviePlayer::Action_Quit));
142
     return aMenuMedia;
143
 }
144
@@ -418,29 +401,29 @@
145
 }
146
 
147
 void StMoviePlayerGUI::fillSrcFormatMenu(StGLMenu* theMenu) {
148
-    theMenu->addItem(tr(MENU_SRC_FORMAT_AUTO),         myPlugin->params.srcFormat, StFormat_AUTO)
149
+    theMenu->addItem(tr(MENU_SRC_FORMAT_AUTO),         myPlugin->params.SrcStereoFormat, StFormat_AUTO)
150
            ->setIcon(stCMenuIcon("menuAuto"));
151
-    theMenu->addItem(tr(MENU_SRC_FORMAT_MONO),         myPlugin->params.srcFormat, StFormat_Mono)
152
+    theMenu->addItem(tr(MENU_SRC_FORMAT_MONO),         myPlugin->params.SrcStereoFormat, StFormat_Mono)
153
            ->setIcon(stCMenuIcon("menuMono"));
154
-    theMenu->addItem(tr(MENU_SRC_FORMAT_PARALLEL),     myPlugin->params.srcFormat, StFormat_SideBySide_LR)
155
+    theMenu->addItem(tr(MENU_SRC_FORMAT_PARALLEL),     myPlugin->params.SrcStereoFormat, StFormat_SideBySide_LR)
156
            ->setIcon(stCMenuIcon("menuSbsLR"));
157
-    theMenu->addItem(tr(MENU_SRC_FORMAT_CROSS_EYED),   myPlugin->params.srcFormat, StFormat_SideBySide_RL)
158
+    theMenu->addItem(tr(MENU_SRC_FORMAT_CROSS_EYED),   myPlugin->params.SrcStereoFormat, StFormat_SideBySide_RL)
159
            ->setIcon(stCMenuIcon("menuSbsRL"));
160
-    theMenu->addItem(tr(MENU_SRC_FORMAT_OVERUNDER_LR), myPlugin->params.srcFormat, StFormat_TopBottom_LR)
161
+    theMenu->addItem(tr(MENU_SRC_FORMAT_OVERUNDER_LR), myPlugin->params.SrcStereoFormat, StFormat_TopBottom_LR)
162
            ->setIcon(stCMenuIcon("menuOverUnderLR"));
163
-    theMenu->addItem(tr(MENU_SRC_FORMAT_OVERUNDER_RL), myPlugin->params.srcFormat, StFormat_TopBottom_RL)
164
+    theMenu->addItem(tr(MENU_SRC_FORMAT_OVERUNDER_RL), myPlugin->params.SrcStereoFormat, StFormat_TopBottom_RL)
165
            ->setIcon(stCMenuIcon("menuOverUnderRL"));
166
-    theMenu->addItem(tr(MENU_SRC_FORMAT_INTERLACED),   myPlugin->params.srcFormat, StFormat_Rows)
167
+    theMenu->addItem(tr(MENU_SRC_FORMAT_INTERLACED),   myPlugin->params.SrcStereoFormat, StFormat_Rows)
168
            ->setIcon(stCMenuIcon("menuRowLR"));
169
-    theMenu->addItem(tr(MENU_SRC_FORMAT_ANA_RC),       myPlugin->params.srcFormat, StFormat_AnaglyphRedCyan)
170
+    theMenu->addItem(tr(MENU_SRC_FORMAT_ANA_RC),       myPlugin->params.SrcStereoFormat, StFormat_AnaglyphRedCyan)
171
            ->setIcon(stCMenuIcon("menuRedCyanLR"));
172
-    theMenu->addItem(tr(MENU_SRC_FORMAT_ANA_RB),       myPlugin->params.srcFormat, StFormat_AnaglyphGreenMagenta)
173
+    theMenu->addItem(tr(MENU_SRC_FORMAT_ANA_RB),       myPlugin->params.SrcStereoFormat, StFormat_AnaglyphGreenMagenta)
174
            ->setIcon(stCMenuIcon("menuGreenMagentaLR"));
175
-    theMenu->addItem(tr(MENU_SRC_FORMAT_ANA_YB),       myPlugin->params.srcFormat, StFormat_AnaglyphYellowBlue)
176
+    theMenu->addItem(tr(MENU_SRC_FORMAT_ANA_YB),       myPlugin->params.SrcStereoFormat, StFormat_AnaglyphYellowBlue)
177
            ->setIcon(stCMenuIcon("menuYellowBlueLR"));
178
-    theMenu->addItem(tr(MENU_SRC_FORMAT_PAGEFLIP),     myPlugin->params.srcFormat, StFormat_FrameSequence)
179
+    theMenu->addItem(tr(MENU_SRC_FORMAT_PAGEFLIP),     myPlugin->params.SrcStereoFormat, StFormat_FrameSequence)
180
            ->setIcon(stCMenuIcon("menuFrameSeqLR"));
181
-    theMenu->addItem(tr(MENU_SRC_FORMAT_TILED_4X),     myPlugin->params.srcFormat, StFormat_Tiled4x)
182
+    theMenu->addItem(tr(MENU_SRC_FORMAT_TILED_4X),     myPlugin->params.SrcStereoFormat, StFormat_Tiled4x)
183
            ->setIcon(stCMenuIcon("menuTiledLR"));
184
 }
185
 
186
@@ -460,7 +443,7 @@
187
 }
188
 
189
 void StMoviePlayerGUI::fillOpenALDeviceMenu(StGLMenu* theMenu) {
190
-    const StArrayList<StString>& aDevList = myPlugin->params.alDevice->getList();
191
+    const StArrayList<StString>& aDevList = myPlugin->params.AudioAlDevice->getList();
192
 
193
     theMenu->addItem("Refresh list...")
194
            ->signals.onItemClick.connect(myPlugin, &StMoviePlayer::doUpdateOpenALDeviceList);
195
@@ -473,7 +456,7 @@
196
     aLen += 2;
197
     for(size_t devId = 0; devId < aDevList.size(); ++devId) {
198
         StGLMenuItem* anItem = theMenu->addItem(aDevList[devId],
199
-                                                StHandle<StInt32Param>::downcast(myPlugin->params.alDevice), int32_t(devId));
200
+                                                StHandle<StInt32Param>::downcast(myPlugin->params.AudioAlDevice), int32_t(devId));
201
         anItem->changeRectPx().right() = anItem->getRectPx().left() + scale(10 * int(aLen));
202
     }
203
 }
204
@@ -526,7 +509,7 @@
205
         }
206
         aMenu->addItem(myPlugin->params.StartWebUI->getValues()[anIter], myPlugin->params.StartWebUI, (int32_t )anIter);
207
     }
208
-    aMenu->addItem(tr(MENU_MEDIA_WEBUI_SHOW_ERRORS), myPlugin->params.ToPrintWebErrors);
209
+    aMenu->addItem(myPlugin->params.ToPrintWebErrors);
210
     return aMenu;
211
 }
212
 
213
@@ -556,15 +539,15 @@
214
     fillPanoramaMenu(aMenuPanorama);
215
     StGLMenu* aMenuTexFilter = createSmoothFilterMenu();
216
     StGLMenu* aMenuImgAdjust = createImageAdjustMenu();
217
+    StGLMenu* aMenu3dAdjust  = create3dAdjustMenu();
218
 
219
     aMenuView->addItem(tr(MENU_VIEW_DISPLAY_MODE),  aMenuDispMode);
220
     if(myWindow->hasFullscreenMode()) {
221
-        aMenuView->addItem(tr(MENU_VIEW_FULLSCREEN),    myPlugin->params.isFullscreen);
222
+        aMenuView->addItem(myPlugin->params.IsFullscreen);
223
     }
224
-    aMenuView->addItem(tr(MENU_VIEW_RESET))
225
-             ->setIcon(stCMenuIcon("actionResetPlacement"), false)
226
-             ->signals.onItemClick.connect(myPlugin, &StMoviePlayer::doReset);
227
-    aMenuView->addItem(tr(MENU_VIEW_SWAP_LR),       myImage->params.swapLR);
228
+    aMenuView->addItem(tr(MENU_VIEW_RESET), myImage->getActions()[StGLImageRegion::Action_Reset])
229
+             ->setIcon(stCMenuIcon("actionResetPlacement"), false);
230
+    aMenuView->addItem(tr(MENU_VIEW_SWAP_LR),       myImage->params.SwapLR);
231
     aMenuView->addItem(tr(MENU_VIEW_DISPLAY_RATIO), aMenuDispRatio)
232
              ->setIcon(stCMenuIcon("actionDisplayRatio"), false);
233
     aMenuView->addItem(tr(MENU_VIEW_PANORAMA),      aMenuPanorama)
234
@@ -573,6 +556,8 @@
235
              ->setIcon(stCMenuIcon("actionInterpolation"), false);
236
     aMenuView->addItem(tr(MENU_VIEW_IMAGE_ADJUST),  aMenuImgAdjust)
237
              ->setIcon(stCMenuIcon("actionColorAdjust"), false);
238
+    aMenuView->addItem("3D Stereo",  aMenu3dAdjust)
239
+             ->setIcon(stCMenuIcon("actionStereo3dSettings"), false);
240
     return aMenuView;
241
 }
242
 
243
@@ -581,9 +566,9 @@
244
  */
245
 StGLMenu* StMoviePlayerGUI::createDisplayModeMenu() {
246
     StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
247
-    const StArrayList<StString>& aValuesList = myImage->params.displayMode->getValues();
248
+    const StArrayList<StString>& aValuesList = myImage->params.DisplayMode->getValues();
249
     for(size_t aValIter = 0; aValIter < aValuesList.size(); ++aValIter) {
250
-        aMenu->addItem(aValuesList[aValIter], myImage->params.displayMode, int32_t(aValIter));
251
+        aMenu->addItem(aValuesList[aValIter], myImage->params.DisplayMode, int32_t(aValIter));
252
     }
253
     return aMenu;
254
 }
255
@@ -594,25 +579,25 @@
256
 StGLMenu* StMoviePlayerGUI::createDisplayRatioMenu() {
257
     StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
258
     fillDisplayRatioMenu(aMenu);
259
-    aMenu->addItem(tr(MENU_VIEW_RATIO_KEEP_ON_RESTART), myPlugin->params.toRestoreRatio);
260
+    aMenu->addItem(myPlugin->params.ToRestoreRatio);
261
     aMenu->addItem(tr(MENU_VIEW_RATIO_HEAL_ANAMORPHIC), myImage->params.ToHealAnamorphicRatio);
262
     return aMenu;
263
 }
264
 
265
 void StMoviePlayerGUI::fillDisplayRatioMenu(StGLMenu* theMenu) {
266
-    theMenu->addItem(tr(MENU_VIEW_DISPLAY_RATIO_SRC), myImage->params.displayRatio, StGLImageRegion::RATIO_AUTO)
267
+    theMenu->addItem(tr(MENU_VIEW_DISPLAY_RATIO_SRC), myImage->params.DisplayRatio, StGLImageRegion::RATIO_AUTO)
268
            ->setIcon(stCMenuIcon("menuAuto"));
269
-    theMenu->addItem("2.21:1", myImage->params.displayRatio, StGLImageRegion::RATIO_221_1)
270
+    theMenu->addItem("2.21:1", myImage->params.DisplayRatio, StGLImageRegion::RATIO_221_1)
271
            ->setIcon(stCMenuIcon("menuRatio2_1_"));
272
-    theMenu->addItem("16:9",   myImage->params.displayRatio, StGLImageRegion::RATIO_16_9)
273
+    theMenu->addItem("16:9",   myImage->params.DisplayRatio, StGLImageRegion::RATIO_16_9)
274
            ->setIcon(stCMenuIcon("menuRatio16_9_"));
275
-    theMenu->addItem("16:10",  myImage->params.displayRatio, StGLImageRegion::RATIO_16_10)
276
+    theMenu->addItem("16:10",  myImage->params.DisplayRatio, StGLImageRegion::RATIO_16_10)
277
            ->setIcon(stCMenuIcon("menuRatio16_10_"));
278
-    theMenu->addItem("4:3",    myImage->params.displayRatio, StGLImageRegion::RATIO_4_3)
279
+    theMenu->addItem("4:3",    myImage->params.DisplayRatio, StGLImageRegion::RATIO_4_3)
280
            ->setIcon(stCMenuIcon("menuRatio4_3_"));
281
-    theMenu->addItem("5:4",    myImage->params.displayRatio, StGLImageRegion::RATIO_5_4)
282
+    theMenu->addItem("5:4",    myImage->params.DisplayRatio, StGLImageRegion::RATIO_5_4)
283
            ->setIcon(stCMenuIcon("menuRatio5_4_"));
284
-    theMenu->addItem("1:1",    myImage->params.displayRatio, StGLImageRegion::RATIO_1_1)
285
+    theMenu->addItem("1:1",    myImage->params.DisplayRatio, StGLImageRegion::RATIO_1_1)
286
            ->setIcon(stCMenuIcon("menuRatio1_1_"));
287
 }
288
 
289
@@ -648,11 +633,11 @@
290
 StGLMenu* StMoviePlayerGUI::createSmoothFilterMenu() {
291
     StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
292
     aMenu->addItem(tr(MENU_VIEW_TEXFILTER_NEAREST),
293
-                   myImage->params.textureFilter, StGLImageProgram::FILTER_NEAREST);
294
+                   myImage->params.TextureFilter, StGLImageProgram::FILTER_NEAREST);
295
     aMenu->addItem(tr(MENU_VIEW_TEXFILTER_LINEAR),
296
-                   myImage->params.textureFilter, StGLImageProgram::FILTER_LINEAR);
297
+                   myImage->params.TextureFilter, StGLImageProgram::FILTER_LINEAR);
298
     aMenu->addItem(tr(MENU_VIEW_TEXFILTER_BLEND),
299
-                   myImage->params.textureFilter, StGLImageProgram::FILTER_BLEND);
300
+                   myImage->params.TextureFilter, StGLImageProgram::FILTER_BLEND);
301
     return aMenu;
302
 }
303
 
304
@@ -666,7 +651,7 @@
305
 
306
     StGLMenuItem* anItem = aMenu->addItem(tr(MENU_VIEW_ADJUST_GAMMA));
307
     anItem->changeMargins().right = scale(100 + 16);
308
-    StGLRangeFieldFloat32* aRange = new StGLRangeFieldFloat32(anItem, myImage->params.gamma,
309
+    StGLRangeFieldFloat32* aRange = new StGLRangeFieldFloat32(anItem, myImage->params.Gamma,
310
                                                               -scale(16), 0, StGLCorner(ST_VCORNER_CENTER, ST_HCORNER_RIGHT));
311
     aRange->setFormat(stCString("%+01.2f"));
312
     aRange->setColor(StGLRangeFieldFloat32::FieldColor_Default,  aBlack);
313
@@ -676,7 +661,7 @@
314
     anItem = aMenu->addItem(tr(MENU_VIEW_ADJUST_BRIGHTNESS));
315
     anItem->setIcon(stCMenuIcon("actionBrightness"), false);
316
     anItem->changeMargins().right = scale(100 + 16);
317
-    aRange = new StGLRangeFieldFloat32(anItem, myImage->params.brightness,
318
+    aRange = new StGLRangeFieldFloat32(anItem, myImage->params.Brightness,
319
                                        -scale(16), 0, StGLCorner(ST_VCORNER_CENTER, ST_HCORNER_RIGHT));
320
     aRange->setFormat(stCString("%+01.2f"));
321
     aRange->setColor(StGLRangeFieldFloat32::FieldColor_Default,  aBlack);
322
@@ -686,7 +671,7 @@
323
     anItem = aMenu->addItem(tr(MENU_VIEW_ADJUST_SATURATION));
324
     anItem->setIcon(stCMenuIcon("actionSaturation"), false);
325
     anItem->changeMargins().right = scale(100 + 16);
326
-    aRange = new StGLRangeFieldFloat32(anItem, myImage->params.saturation,
327
+    aRange = new StGLRangeFieldFloat32(anItem, myImage->params.Saturation,
328
                                        -scale(16), 0, StGLCorner(ST_VCORNER_CENTER, ST_HCORNER_RIGHT));
329
     aRange->changeRectPx().bottom() = aRange->getRectPx().top() + aMenu->getItemHeight();
330
     aRange->setFormat(stCString("%+01.2f"));
331
@@ -697,11 +682,49 @@
332
 }
333
 
334
 /**
335
+ * Root -> View -> Stereo 3D Adjust
336
+ */
337
+StGLMenu* StMoviePlayerGUI::create3dAdjustMenu() {
338
+    StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
339
+
340
+    StGLMenuItem* anItem = NULL;
341
+    StGLRangeFieldFloat32* aRange = NULL;
342
+
343
+    anItem = aMenu->addItem("DX separation");
344
+    anItem->changeMargins().right = scale(100 + 16);
345
+    aRange = new StGLRangeFieldFloat32(anItem, myImage->params.SeparationDX,
346
+                                       -scale(16), 0, StGLCorner(ST_VCORNER_CENTER, ST_HCORNER_RIGHT));
347
+    aRange->setFormat(stCString("%+01.2f"));
348
+    aRange->setColor(StGLRangeFieldFloat32::FieldColor_Default,  aBlack);
349
+    aRange->setColor(StGLRangeFieldFloat32::FieldColor_Positive, aGreen);
350
+    aRange->setColor(StGLRangeFieldFloat32::FieldColor_Negative, aRed);
351
+
352
+    anItem = aMenu->addItem("DY separation");
353
+    anItem->changeMargins().right = scale(100 + 16);
354
+    aRange = new StGLRangeFieldFloat32(anItem, myImage->params.SeparationDY,
355
+                                       -scale(16), 0, StGLCorner(ST_VCORNER_CENTER, ST_HCORNER_RIGHT));
356
+    aRange->setFormat(stCString("%+01.2f"));
357
+    aRange->setColor(StGLRangeFieldFloat32::FieldColor_Default,  aBlack);
358
+    aRange->setColor(StGLRangeFieldFloat32::FieldColor_Positive, aGreen);
359
+    aRange->setColor(StGLRangeFieldFloat32::FieldColor_Negative, aRed);
360
+
361
+    anItem = aMenu->addItem("Angular separation");
362
+    anItem->changeMargins().right = scale(100 + 16);
363
+    aRange = new StGLRangeFieldFloat32(anItem, myImage->params.SeparationRot,
364
+                                       -scale(16), 0, StGLCorner(ST_VCORNER_CENTER, ST_HCORNER_RIGHT));
365
+    aRange->setFormat(stCString("%+01.2f"));
366
+    aRange->setColor(StGLRangeFieldFloat32::FieldColor_Default,  aBlack);
367
+    aRange->setColor(StGLRangeFieldFloat32::FieldColor_Positive, aGreen);
368
+    aRange->setColor(StGLRangeFieldFloat32::FieldColor_Negative, aRed);
369
+    return aMenu;
370
+}
371
+
372
+/**
373
  * Root -> Audio menu
374
  */
375
 StGLMenu* StMoviePlayerGUI::createAudioMenu() {
376
     StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
377
-    aMenu->addItem(tr(MENU_AUDIO_NONE), myPlugin->params.audioStream, -1);
378
+    aMenu->addItem(tr(MENU_AUDIO_NONE), myPlugin->params.AudioStream, -1);
379
     return aMenu;
380
 }
381
 
382
@@ -783,28 +806,23 @@
383
 
384
 void StMoviePlayerGUI::doAudioGain(const int    theMouseBtn,
385
                                    const double theVolume) {
386
-    switch(theMouseBtn) {
387
-        case ST_MOUSE_LEFT: {
388
-            myPlugin->params.AudioGain->setValue(myPlugin->volumeToGain(myPlugin->params.AudioGain, GLfloat(theVolume)));
389
-            break;
390
-        }
391
-        case ST_MOUSE_SCROLL_V_UP: {
392
-            myPlugin->params.AudioGain->increment();
393
-            break;
394
-        }
395
-        case ST_MOUSE_SCROLL_V_DOWN: {
396
-            myPlugin->params.AudioGain->decrement();
397
-            break;
398
-        }
399
-        default: {
400
-            return;
401
-        }
402
+    if(theMouseBtn == ST_MOUSE_LEFT) {
403
+        myPlugin->params.AudioGain->setValue(myPlugin->volumeToGain(myPlugin->params.AudioGain, GLfloat(theVolume)));
404
+    }
405
+}
406
+
407
+void StMoviePlayerGUI::doAudioGainScroll(const double theDelta) {
408
+    if(theDelta > 0.001) {
409
+        myPlugin->params.AudioGain->increment();
410
+    } else if(theDelta < -0.001) {
411
+        myPlugin->params.AudioGain->decrement();
412
     }
413
 }
414
 
415
 void StMoviePlayerGUI::doAudioDelay(const size_t ) {
416
     StGLMessageBox* aDialog = new StDelayControl(this, myPlugin->params.AudioDelay);
417
     aDialog->stglInit();
418
+    setModalDialog(aDialog);
419
 }
420
 
421
 /**
422
@@ -812,7 +830,7 @@
423
  */
424
 StGLMenu* StMoviePlayerGUI::createSubtitlesMenu() {
425
     StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
426
-    aMenu->addItem(tr(MENU_SUBTITLES_NONE), myPlugin->params.subtitlesStream, -1);
427
+    aMenu->addItem(tr(MENU_SUBTITLES_NONE), myPlugin->params.SubtitlesStream, -1);
428
     return aMenu;
429
 }
430
 
431
@@ -863,9 +881,9 @@
432
  */
433
 StGLMenu* StMoviePlayerGUI::createFpsMenu() {
434
     StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
435
-    aMenu->addItem(tr(MENU_FPS_VSYNC), myPlugin->params.IsVSyncOn);
436
-    aMenu->addItem(tr(MENU_FPS_METER), myPlugin->params.ToShowFps);
437
-    aMenu->addItem(tr(MENU_FPS_BOUND), myPlugin->params.ToLimitFps);
438
+    aMenu->addItem(myPlugin->params.IsVSyncOn);
439
+    aMenu->addItem(myPlugin->params.ToShowFps);
440
+    aMenu->addItem(myPlugin->params.ToLimitFps);
441
     return aMenu;
442
 }
443
 
444
@@ -873,11 +891,16 @@
445
     const StGLVec3 THE_WHITE(1.0f, 1.0f, 1.0f);
446
     const StString anAbout = tr(ABOUT_DPLUGIN_NAME) + '\n'
447
                            + tr(ABOUT_VERSION) + " " + StVersionInfo::getSDKVersionString()
448
-                           + "\n \n" + tr(ABOUT_DESCRIPTION).format("2007-2015", "kirill@sview.ru", "www.sview.ru");
449
+                           + "\n \n" + tr(ABOUT_DESCRIPTION).format("2007-2016", "kirill@sview.ru", "www.sview.ru")
450
+                           + "\n\n<b><i>Used projects</i></b>"
451
+                           + "\n \nFFmpeg " + stAV::getVersionInfo() + " (" + stAV::getLicenseInfo() + ")\nhttps://ffmpeg.org/"
452
+                           + "\n \nOpenAL Soft (LGPL)\nhttp://kcat.strangesoft.net/openal.html"
453
+                           + "\n \nFreeType \nhttp://freetype.org/";
454
 
455
     StArgumentsMap anInfo;
456
     anInfo.add(StDictEntry("CPU cores", StString(StThread::countLogicalProcessors()) + StString(" logical processor(s)")));
457
     getContext().stglFullInfo(anInfo);
458
+    anInfo.add(StDictEntry("Display Scale", StString(myWindow->getMonitors()[myWindow->getPlacement().center()].getScale()) + "x"));
459
 
460
     StGLMessageBox* aDialog = new StGLMessageBox(this, tr(MENU_HELP_ABOUT), "", scale(512), scale(300));
461
     StGLTable* aTable = new StGLTable(aDialog->getContent(), 0, 0, StGLCorner(ST_VCORNER_TOP, ST_HCORNER_CENTER));
462
@@ -896,12 +919,14 @@
463
                         aDialog->getContent()->getRectPx().width(),
464
                         aDialog->getContent()->getRectPx().width() / 2, 1);
465
 
466
-    aDialog->addButton(tr(BUTTON_CLOSE));
467
+    aDialog->addButton(stCString("Website"))->signals.onBtnClick += stSlot(this, &StMoviePlayerGUI::doCheckUpdates);
468
+    aDialog->addButton(tr(BUTTON_CLOSE), true);
469
     aDialog->stglInit();
470
+    setModalDialog(aDialog);
471
 }
472
 
473
 void StMoviePlayerGUI::doUserTips(const size_t ) {
474
-    StProcess::openURL("http://sview.ru/sview2009/usertips");
475
+    StProcess::openURL("http://sview.ru/sview/usertips");
476
 }
477
 
478
 /**
479
@@ -931,17 +956,17 @@
480
 
481
 void StMoviePlayerGUI::doAboutFile(const size_t ) {
482
     StHandle<StMovieInfo>& anExtraInfo = myPlugin->myFileInfo;
483
-    if(!anExtraInfo.isNull()) {
484
-        return; // already opened
485
-    }
486
+    anExtraInfo.nullify();
487
 
488
     StHandle<StFileNode>     aFileNode;
489
     StHandle<StStereoParams> aParams;
490
     if(!myPlugin->getCurrentFile(aFileNode, aParams, anExtraInfo)
491
     ||  anExtraInfo.isNull()) {
492
-        StHandle<StMsgQueue> aQueue = myPlugin->getMessagesQueue();
493
-        aQueue->pushInfo(tr(DIALOG_FILE_NOINFO));
494
         anExtraInfo.nullify();
495
+        StGLMessageBox* aMsgBox = new StGLMessageBox(this, tr(DIALOG_FILE_INFO), tr(DIALOG_FILE_NOINFO));
496
+        aMsgBox->addButton(tr(BUTTON_CLOSE), true);
497
+        aMsgBox->stglInit();
498
+        setModalDialog(aMsgBox);
499
         return;
500
     }
501
 
502
@@ -1045,6 +1070,7 @@
503
 
504
     aDialog->addButton(tr(BUTTON_CLOSE));
505
     aDialog->stglInit();
506
+    setModalDialog(aDialog);
507
 }
508
 
509
 void StMoviePlayerGUI::doCheckUpdates(const size_t ) {
510
@@ -1063,10 +1089,6 @@
511
 StGLMenu* StMoviePlayerGUI::createHelpMenu() {
512
     StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
513
     StGLMenu* aMenuScale        = createScaleMenu();        // Root -> Help -> Scale Interface menu
514
-    StGLMenu* aMenuBlockSleep   = createBlockSleepMenu();   // Root -> Help -> Block sleeping
515
-#if !defined(ST_NO_UPDATES_CHECK)
516
-    StGLMenu* aMenuCheckUpdates = createCheckUpdatesMenu(); // Root -> Help -> Check updates menu
517
-#endif
518
     StGLMenu* aMenuLanguage     = createLanguageMenu();     // Root -> Help -> Language menu
519
 
520
     aMenu->addItem(tr(MENU_HELP_ABOUT))
521
@@ -1077,16 +1099,13 @@
522
     aMenu->addItem(tr(MENU_HELP_HOTKEYS))
523
          ->setIcon(stCMenuIcon("actionKeyboard"), false)
524
          ->signals.onItemClick.connect(this, &StMoviePlayerGUI::doListHotKeys);
525
+    aMenu->addItem(tr(MENU_HELP_SETTINGS))
526
+         ->setIcon(stCMenuIcon("actionSettings"), false)
527
+         ->signals.onItemClick.connect(this, &StMoviePlayerGUI::doMobileSettings);
528
     aMenu->addItem(tr(MENU_HELP_LICENSE))
529
          ->signals.onItemClick.connect(this, &StMoviePlayerGUI::doOpenLicense);
530
-    aMenu->addItem(tr(MENU_HELP_EXPERIMENTAL), myPlugin->params.ToShowExtra);
531
     aMenu->addItem(tr(MENU_HELP_SCALE),        aMenuScale)
532
          ->setIcon(stCMenuIcon("actionFontSize"), false);
533
-    aMenu->addItem(tr(MENU_HELP_BLOCKSLP),     aMenuBlockSleep)
534
-         ->setIcon(stCMenuIcon("actionPower"), false);
535
-#if !defined(ST_NO_UPDATES_CHECK)
536
-    aMenu->addItem(tr(MENU_HELP_UPDATES),      aMenuCheckUpdates);
537
-#endif
538
     aMenu->addItem(tr(MENU_HELP_LANGS),        aMenuLanguage)
539
          ->setIcon(stCMenuIcon("actionLanguage"), false);
540
     return aMenu;
541
@@ -1097,41 +1116,11 @@
542
  */
543
 StGLMenu* StMoviePlayerGUI::createScaleMenu() {
544
     StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
545
-    aMenu->addItem(tr(MENU_HELP_SCALE_SMALL),   myPlugin->params.ScaleAdjust,  StGLRootWidget::ScaleAdjust_Small);
546
-    aMenu->addItem(tr(MENU_HELP_SCALE_NORMAL),  myPlugin->params.ScaleAdjust,  StGLRootWidget::ScaleAdjust_Normal);
547
-    aMenu->addItem(tr(MENU_HELP_SCALE_BIG),     myPlugin->params.ScaleAdjust,  StGLRootWidget::ScaleAdjust_Big);
548
-    aMenu->addItem(tr(MENU_HELP_SCALE_HIDPI2X), myPlugin->params.ScaleHiDPI2X);
549
-    aMenu->addItem("Mobile UI",                 myPlugin->params.IsMobileUI);
550
-    return aMenu;
551
-}
552
-
553
-/**
554
- * Root -> Help -> Block sleeping
555
- */
556
-StGLMenu* StMoviePlayerGUI::createBlockSleepMenu() {
557
-    StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
558
-    aMenu->addItem(tr(MENU_HELP_BLOCKSLP_NEVER),
559
-                   myPlugin->params.blockSleeping, StMoviePlayer::BLOCK_SLEEP_NEVER);
560
-    aMenu->addItem(tr(MENU_HELP_BLOCKSLP_PLAYBACK),
561
-                   myPlugin->params.blockSleeping, StMoviePlayer::BLOCK_SLEEP_PLAYBACK);
562
-    aMenu->addItem(tr(MENU_HELP_BLOCKSLP_FULLSCR),
563
-                   myPlugin->params.blockSleeping, StMoviePlayer::BLOCK_SLEEP_FULLSCREEN);
564
-    aMenu->addItem(tr(MENU_HELP_BLOCKSLP_ALWAYS),
565
-                   myPlugin->params.blockSleeping, StMoviePlayer::BLOCK_SLEEP_ALWAYS);
566
-    return aMenu;
567
-}
568
-
569
-/**
570
- * Root -> Help -> Check updates menu
571
- */
572
-StGLMenu* StMoviePlayerGUI::createCheckUpdatesMenu() {
573
-    StGLMenu* aMenu = new StGLMenu(this, 0, 0, StGLMenu::MENU_VERTICAL);
574
-    aMenu->addItem(tr(MENU_HELP_UPDATES_NOW))
575
-         ->signals.onItemClick.connect(this, &StMoviePlayerGUI::doCheckUpdates);
576
-    aMenu->addItem(tr(MENU_HELP_UPDATES_DAY),   myPlugin->params.checkUpdatesDays, 1);
577
-    aMenu->addItem(tr(MENU_HELP_UPDATES_WEEK),  myPlugin->params.checkUpdatesDays, 7);
578
-    aMenu->addItem(tr(MENU_HELP_UPDATES_YEAR),  myPlugin->params.checkUpdatesDays, 355);
579
-    aMenu->addItem(tr(MENU_HELP_UPDATES_NEVER), myPlugin->params.checkUpdatesDays, 0);
580
+    aMenu->addItem(myPlugin->params.ScaleAdjust,  StGLRootWidget::ScaleAdjust_Small);
581
+    aMenu->addItem(myPlugin->params.ScaleAdjust,  StGLRootWidget::ScaleAdjust_Normal);
582
+    aMenu->addItem(myPlugin->params.ScaleAdjust,  StGLRootWidget::ScaleAdjust_Big);
583
+    aMenu->addItem(myPlugin->params.ScaleHiDPI2X);
584
+    aMenu->addItem(myPlugin->params.IsMobileUI);
585
     return aMenu;
586
 }
587
 
588
@@ -1161,7 +1150,7 @@
589
     StMarginsI aButtonMargins;
590
     const IconSize anIconSize = scaleIcon(32, aButtonMargins);
591
     aButtonMargins.extend(scale(12));
592
-    StGLCheckboxTextured* aBtnShuffle = new StGLCheckboxTextured(myPlayList, myPlugin->params.isShuffle,
593
+    StGLCheckboxTextured* aBtnShuffle = new StGLCheckboxTextured(myPlayList, myPlugin->params.IsShuffle,
594
                                                                  iconTexture(stCString("actionVideoShuffle"), anIconSize),
595
                                                                  iconTexture(stCString("actionVideoShuffle"), anIconSize),
596
                                                                  scale(28), 0,
597
@@ -1219,7 +1208,7 @@
598
     aSrcBtn->setDrawShadow(true);
599
     myBtnSrcFrmt = aSrcBtn;
600
 
601
-    myBtnSwapLR = new StGLCheckboxTextured(myPanelUpper, myImage->params.swapLR,
602
+    myBtnSwapLR = new StGLCheckboxTextured(myPanelUpper, myImage->params.SwapLR,
603
                                            iconTexture(stCString("actionSwapLROff"), anIconSize),
604
                                            iconTexture(stCString("actionSwapLROn"),  anIconSize),
605
                                            (aBtnIter++) * myIconStep, 0,
606
@@ -1297,7 +1286,7 @@
607
     aBtnInfo->setDrawShadow(true);
608
     aBtnInfo->changeMargins() = aButtonMargins;
609
 
610
-    mySeekBar = new StSeekBar(myPanelBottom, 0, scale(18));
611
+    mySeekBar = new StGLSeekBar(myPanelBottom, 0, scale(18));
612
     mySeekBar->signals.onSeekClick.connect(myPlugin, &StMoviePlayer::doSeek);
613
 
614
     myTimeBox = new StTimeBox(myPanelBottom, myBottomBarNbRight * (-myIconStep), 0, aRightCorner, StGLTextArea::SIZE_SMALL);
615
@@ -1326,12 +1315,13 @@
616
     aDialog->signals.onFileSelected = stSlot(myPlugin, &StMoviePlayer::doOpen1FileFromGui);
617
 
618
     if(myPlugin->params.lastFolder.isEmpty()) {
619
-        StHandle<StFileNode> aCurrFile = myPlugin->myVideo->getPlayList().getCurrentFile();
620
+        StHandle<StFileNode> aCurrFile = myPlugin->myPlayList->getCurrentFile();
621
         if(!aCurrFile.isNull()) {
622
             myPlugin->params.lastFolder = aCurrFile->isEmpty() ? aCurrFile->getFolderPath() : aCurrFile->getValue(0)->getFolderPath();
623
         }
624
     }
625
     aDialog->openFolder(myPlugin->params.lastFolder);
626
+    setModalDialog(aDialog);
627
 }
628
 
629
 void StMoviePlayerGUI::doShowMobileExMenu(const size_t ) {
630
@@ -1451,15 +1441,15 @@
631
 
632
     myImage = new StGLImageRegion(this, theTextureQueue, false);
633
     myImage->setDragDelayMs(500.0);
634
-    myImage->params.displayMode->setName(tr(MENU_VIEW_DISPLAY_MODE));
635
-    myImage->params.displayMode->changeValues()[StGLImageRegion::MODE_STEREO]     = tr(MENU_VIEW_DISPLAY_MODE_STEREO);
636
-    myImage->params.displayMode->changeValues()[StGLImageRegion::MODE_ONLY_LEFT]  = tr(MENU_VIEW_DISPLAY_MODE_LEFT);
637
-    myImage->params.displayMode->changeValues()[StGLImageRegion::MODE_ONLY_RIGHT] = tr(MENU_VIEW_DISPLAY_MODE_RIGHT);
638
-    myImage->params.displayMode->changeValues()[StGLImageRegion::MODE_PARALLEL]   = tr(MENU_VIEW_DISPLAY_MODE_PARALLEL);
639
-    myImage->params.displayMode->changeValues()[StGLImageRegion::MODE_CROSSYED]   = tr(MENU_VIEW_DISPLAY_MODE_CROSSYED);
640
+    myImage->params.DisplayMode->setName(tr(MENU_VIEW_DISPLAY_MODE));
641
+    myImage->params.DisplayMode->changeValues()[StGLImageRegion::MODE_STEREO]     = tr(MENU_VIEW_DISPLAY_MODE_STEREO);
642
+    myImage->params.DisplayMode->changeValues()[StGLImageRegion::MODE_ONLY_LEFT]  = tr(MENU_VIEW_DISPLAY_MODE_LEFT);
643
+    myImage->params.DisplayMode->changeValues()[StGLImageRegion::MODE_ONLY_RIGHT] = tr(MENU_VIEW_DISPLAY_MODE_RIGHT);
644
+    myImage->params.DisplayMode->changeValues()[StGLImageRegion::MODE_PARALLEL]   = tr(MENU_VIEW_DISPLAY_MODE_PARALLEL);
645
+    myImage->params.DisplayMode->changeValues()[StGLImageRegion::MODE_CROSSYED]   = tr(MENU_VIEW_DISPLAY_MODE_CROSSYED);
646
     myImage->params.ToHealAnamorphicRatio->setValue(true);
647
 
648
-    mySubtitles = new StGLSubtitles  (this, theSubQueue,
649
+    mySubtitles = new StGLSubtitles  (myImage, theSubQueue,
650
                                       myPlugin->params.SubtitlesPlace,
651
                                       myPlugin->params.SubtitlesTopDY,
652
                                       myPlugin->params.SubtitlesBottomDY,
653
@@ -1492,10 +1482,10 @@
654
     }
655
 
656
     if(myBtnAudio != NULL) {
657
-        myBtnAudio->getTrackedValue()->setValue(myPlugin->params.audioStream->getValue() != -1);
658
+        myBtnAudio->getTrackedValue()->setValue(myPlugin->params.AudioStream->getValue() != -1);
659
     }
660
     if(myBtnSubs != NULL) {
661
-        myBtnSubs->getTrackedValue()->setValue(myPlugin->params.subtitlesStream->getValue() != -1);
662
+        myBtnSubs->getTrackedValue()->setValue(myPlugin->params.SubtitlesStream->getValue() != -1);
663
     }
664
 
665
     setVisibility(thePointZo);
666
@@ -1510,15 +1500,10 @@
667
         myDescr->setPoint(thePointZo);
668
     }
669
 
670
-    if(myLangMap->wasReloaded()) {
671
-        myPlugin->myToRecreateMenu = true;
672
-        myLangMap->resetReloaded();
673
-        StMoviePlayerStrings::loadDefaults(*myLangMap);
674
-    } else if(myIsExperimental != myPlugin->params.ToShowExtra->getValue()) {
675
+    if(myIsExperimental != myPlugin->params.ToShowExtra->getValue()) {
676
         StGLMenu::DeleteWithSubMenus(myMenuRoot); myMenuRoot = NULL;
677
         createMainMenu();
678
         myMenuRoot->stglUpdateSubmenuLayout();
679
-        myLangMap->resetReloaded();
680
         myIsExperimental = myPlugin->params.ToShowExtra->getValue();
681
         // turn back topmost position
682
         getChildren()->moveToTop(myMsgStack);
683
@@ -1703,7 +1688,7 @@
684
         myPlayList->setOpacity(anOpacity, true);
685
     }
686
 
687
-    const StPlayList::CurrentPosition aCurrPos = myPlugin->myVideo->getPlayList().getCurrentPosition();
688
+    const StPlayList::CurrentPosition aCurrPos = myPlugin->myPlayList->getCurrentPosition();
689
     if(myBtnPrev != NULL) {
690
         myBtnPrev->setOpacityScale(aCurrPos == StPlayList::CurrentPosition_Middle
691
                                 || aCurrPos == StPlayList::CurrentPosition_Last ? 1.0f : 0.5f);
692
@@ -1716,14 +1701,14 @@
693
         myBtnPlay->setOpacityScale(aCurrPos != StPlayList::CurrentPosition_NONE ? 1.0f : 0.5f);
694
     }
695
 
696
-    StFormat aSrcFormat = (StFormat )myPlugin->params.srcFormat->getValue();
697
+    StFormat aSrcFormat = (StFormat )myPlugin->params.SrcStereoFormat->getValue();
698
     if( aSrcFormat == StFormat_AUTO
699
     && !aParams.isNull()
700
     &&  hasVideo) {
701
         aSrcFormat = aParams->StereoFormat;
702
     }
703
     if(!aParams.isNull()
704
-     && myImage->params.swapLR->getValue()
705
+     && myImage->params.SwapLR->getValue()
706
      && hasVideo) {
707
         aSrcFormat = st::formatReversed(aSrcFormat);
708
     }
709
@@ -1736,7 +1721,7 @@
710
         myBtnSrcFrmt->setFaceId(aFaceId);
711
     }
712
     if(myBtnFullScr != NULL) {
713
-        myBtnFullScr->setFaceId(myPlugin->params.isFullscreen->getValue() ? 1 : 0);
714
+        myBtnFullScr->setFaceId(myPlugin->params.IsFullscreen->getValue() ? 1 : 0);
715
     }
716
     if(myBtnSwapLR != NULL) {
717
         const bool hasInput = hasVideo
718
@@ -1773,7 +1758,7 @@
719
         } else if(::isPointIn(myBtnInfo,   theCursor)) {
720
             myDescr->setText(tr(MENU_MEDIA_FILE_INFO));
721
         } else if(::isPointIn(myBtnSwapLR, theCursor)) {
722
-            size_t aLngId = myImage->params.swapLR->getValue() ? SWAP_LR_ON : SWAP_LR_OFF;
723
+            size_t aLngId = myImage->params.SwapLR->getValue() ? SWAP_LR_ON : SWAP_LR_OFF;
724
             myDescr->setText(tr(aLngId));
725
         } else if(::isPointIn(myBtnSrcFrmt, theCursor)) {
726
             myDescr->setText(tr(BTN_SRC_FORMAT) + "\n" + trSrcFormat(aSrcFormat));
727
@@ -1828,11 +1813,11 @@
728
 
729
     StGLCombobox::ListBuilder aBuilder(this);
730
     if(hasVideo || aStreams.isNull() || aStreams->isEmpty()) {
731
-        aBuilder.getMenu()->addItem(tr(MENU_AUDIO_NONE), myPlugin->params.audioStream, -1);
732
+        aBuilder.getMenu()->addItem(tr(MENU_AUDIO_NONE), myPlugin->params.AudioStream, -1);
733
     }
734
     if(!aStreams.isNull()) {
735
         for(size_t aStreamId = 0; aStreamId < aStreams->size(); ++aStreamId) {
736
-            aBuilder.getMenu()->addItem(aStreams->getValue(aStreamId), myPlugin->params.audioStream, int32_t(aStreamId));
737
+            aBuilder.getMenu()->addItem(aStreams->getValue(aStreamId), myPlugin->params.AudioStream, int32_t(aStreamId));
738
         }
739
     }
740
     if(myWindow->isMobile()) {
741
@@ -1879,10 +1864,10 @@
742
         }
743
     }
744
 
745
-    aBuilder.getMenu()->addItem(tr(MENU_SUBTITLES_NONE), myPlugin->params.subtitlesStream, -1);
746
+    aBuilder.getMenu()->addItem(tr(MENU_SUBTITLES_NONE), myPlugin->params.SubtitlesStream, -1);
747
     if(!aStreams.isNull()) {
748
         for(size_t aStreamId = 0; aStreamId < aStreams->size(); ++aStreamId) {
749
-            aBuilder.getMenu()->addItem(aStreams->getValue(aStreamId), myPlugin->params.subtitlesStream, int32_t(aStreamId));
750
+            aBuilder.getMenu()->addItem(aStreams->getValue(aStreamId), myPlugin->params.SubtitlesStream, int32_t(aStreamId));
751
         }
752
     }
753
     if(myWindow->isMobile()) {
754
@@ -1986,6 +1971,7 @@
755
     StGLMessageBox* aDialog = new StGLMessageBox(this, "", anAboutText, scale(512), scale(300));
756
     aDialog->addButton(tr(BUTTON_CLOSE));
757
     aDialog->stglInit();
758
+    setModalDialog(aDialog);
759
 }
760
 
761
 void StMoviePlayerGUI::showUpdatesNotify() {
762
@@ -2061,12 +2047,11 @@
763
     const StHandle<StWindow>& aRend = myPlugin->getMainWindow();
764
     StParamsList aParams;
765
     aParams.add(myPlugin->StApplication::params.ActiveDevice);
766
-    aParams.add(myImage->params.displayMode);
767
+    aParams.add(myImage->params.DisplayMode);
768
     aRend->getOptions(aParams);
769
     aParams.add(myPlugin->params.ToShowFps);
770
     aParams.add(myLangMap->params.language);
771
     aParams.add(myPlugin->params.IsMobileUI);
772
-    myLangMap->params.language->setName(tr(MENU_HELP_LANGS));
773
 
774
     const StString aTitle  = tr(MENU_HELP_HOTKEYS);
775
     StInfoDialog*  aDialog = new StInfoDialog(myPlugin, this, aTitle, scale(650), scale(300));
776
@@ -2086,6 +2071,7 @@
777
     aDialog->addButton(tr(BUTTON_DEFAULTS), false)->signals.onBtnClick = stSlot(this, &StMoviePlayerGUI::doResetHotKeys);
778
     aDialog->addButton(tr(BUTTON_CLOSE), true);
779
     aDialog->stglInit();
780
+    setModalDialog(aDialog);
781
 }
782
 
783
 void StMoviePlayerGUI::doChangeHotKey1(const size_t theId) {
784
@@ -2104,14 +2090,29 @@
785
     const StHandle<StWindow>& aRend = myPlugin->getMainWindow();
786
     StParamsList aParams;
787
     aParams.add(myPlugin->StApplication::params.ActiveDevice);
788
-    aParams.add(myImage->params.displayMode);
789
+    aParams.add(myImage->params.DisplayMode);
790
     aRend->getOptions(aParams);
791
     aParams.add(myPlugin->params.ToShowFps);
792
+    aParams.add(myPlugin->params.UseGpu);
793
+
794
+    if(avcodec_find_decoder_by_name("libopenjpeg") != NULL) {
795
+        aParams.add(myPlugin->params.UseOpenJpeg);
796
+    }
797
+
798
     aParams.add(myLangMap->params.language);
799
     aParams.add(myPlugin->params.IsMobileUI);
800
-    myLangMap->params.language->setName(tr(MENU_HELP_LANGS));
801
+    aParams.add(myPlugin->params.ExitOnEscape);
802
+    if(!isMobile()) {
803
+        aParams.add(myPlugin->params.ToShowExtra);
804
+    }
805
+    if(!isMobile()) {
806
+        aParams.add(myPlugin->params.BlockSleeping);
807
+    }
808
+#if !defined(ST_NO_UPDATES_CHECK)
809
+    aParams.add(myPlugin->params.CheckUpdatesDays);
810
+#endif
811
 
812
-    StInfoDialog* aDialog = new StInfoDialog(myPlugin, this, tr(MENU_HELP_SETTINGS), scale(512), scale(300));
813
+    StInfoDialog* aDialog = new StInfoDialog(myPlugin, this, tr(MENU_HELP_SETTINGS), scale(768), scale(300));
814
 
815
     const int aWidthMax  = aDialog->getContent()->getRectPx().width();
816
     int       aRowLast   = (int )aParams.size();
817
@@ -2125,4 +2126,5 @@
818
 
819
     aDialog->addButton(tr(BUTTON_CLOSE), true);
820
     aDialog->stglInit();
821
+    setModalDialog(aDialog);
822
 }
823
sview-15_11.tar.gz/StMoviePlayer/StMoviePlayerGUI.h -> sview-16_06.tar.gz/StMoviePlayer/StMoviePlayerGUI.h Changed
67
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * StMoviePlayer program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU General Public License as published by
8
@@ -42,7 +42,7 @@
9
 class StGLTextureButton;
10
 class StGLCheckboxTextured;
11
 class StPlayList;
12
-class StSeekBar;
13
+class StGLSeekBar;
14
 class StTimeBox;
15
 class StUtfLangMap;
16
 class StWindow;
17
@@ -107,11 +107,10 @@
18
                               const StHandle<StGLTextureQueue>& theTextureQueue,
19
                               const StHandle<StSubQueue>&       theSubQueue);
20
     ST_LOCAL virtual ~StMoviePlayerGUI();
21
-    ST_LOCAL virtual void stglResize(const StGLBoxPx& theRectPx);
22
-    ST_LOCAL virtual void stglDraw(unsigned int theView);
23
+    ST_LOCAL virtual void stglResize(const StGLBoxPx& theRectPx) ST_ATTR_OVERRIDE;
24
+    ST_LOCAL virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
25
+    ST_LOCAL virtual void stglUpdate(const StPointD_t& thePointZo) ST_ATTR_OVERRIDE;
26
 
27
-    using StGLRootWidget::stglUpdate;
28
-    ST_LOCAL void stglUpdate(const StPointD_t& thePointZo);
29
     ST_LOCAL void setVisibility(const StPointD_t& theCursor);
30
 
31
         public:
32
@@ -150,14 +149,13 @@
33
     ST_LOCAL StGLMenu* createDisplayRatioMenu(); // Root -> View   -> Display Ratio
34
     ST_LOCAL StGLMenu* createSmoothFilterMenu(); // Root -> View   -> Smooth Filter
35
     ST_LOCAL StGLMenu* createImageAdjustMenu();  // Root -> View   -> Image Adjust
36
+    ST_LOCAL StGLMenu* create3dAdjustMenu();     // Root -> View   -> Stereo 3D Adjust
37
     ST_LOCAL StGLMenu* createAudioMenu();        // Root -> Audio menu
38
     ST_LOCAL StGLMenu* createSubtitlesMenu();    // Root -> Subtitles menu
39
     ST_LOCAL StGLMenu* createOutputMenu();       // Root -> Output menu
40
     ST_LOCAL StGLMenu* createFpsMenu();          // Root -> Output -> FPS Control
41
     ST_LOCAL StGLMenu* createHelpMenu();         // Root -> Help menu
42
     ST_LOCAL StGLMenu* createScaleMenu();        // Root -> Scale Interface menu
43
-    ST_LOCAL StGLMenu* createBlockSleepMenu();   // Root -> Help   -> Block sleeping
44
-    ST_LOCAL StGLMenu* createCheckUpdatesMenu(); // Root -> Help   -> Check updates menu
45
     ST_LOCAL StGLMenu* createLanguageMenu();     // Root -> Help   -> Language menu
46
 
47
     ST_LOCAL void fillOpenALDeviceMenu(StGLMenu* theMenu);
48
@@ -185,6 +183,7 @@
49
     ST_LOCAL void doShowFPS(const bool );
50
     ST_LOCAL void doAboutRenderer(const size_t );
51
     ST_LOCAL void doAudioGain    (const int theMouseBtn, const double theVolume);
52
+    ST_LOCAL void doAudioGainScroll(const double theDelta);
53
     ST_LOCAL void doAudioDelay   (const size_t );
54
 
55
     ST_LOCAL void doListHotKeys(const size_t );
56
@@ -230,8 +229,8 @@
57
     StGLCheckboxTextured* myBtnSubs;
58
 
59
     StGLWidget*         myPanelBottom;      //!< bottom toolbar
60
-    StSeekBar*          mySeekBar;
61
-    StSeekBar*          myVolumeBar;
62
+    StGLSeekBar*        mySeekBar;
63
+    StGLSeekBar*        myVolumeBar;
64
     StGLTextArea*       myVolumeLab;
65
     StGLTextureButton*  myBtnPlay;
66
     StTimeBox*          myTimeBox;
67
sview-15_11.tar.gz/StMoviePlayer/StMoviePlayerInfo.h -> sview-16_06.tar.gz/StMoviePlayer/StMoviePlayerInfo.h Changed
52
 
1
@@ -99,7 +99,7 @@
2
 #define ST_WMV_MIME_STRING ST_WMV_MIME ":" ST_WMV_EXT ":" ST_WMV_DESC
3
 
4
 /**
5
- *.mp4;*.m4v;*.m4a;*.mpg;*.mp2;*.m2v;*.mpa;*.mpe;*.mpeg;*.mpv2 - MPEG Video family
6
+ *.mp4;*.m4v;*.mp4v;*.m4a;*.mpg;*.mp2;*.m2v;*.mpa;*.mpe;*.mpeg;*.mpv2 - MPEG Video family
7
  */
8
 #define ST_MPEG_MIME "video/mpeg"
9
 #define ST_MPEG_DESC "MPEG Video"
10
@@ -130,6 +130,10 @@
11
 #define ST_M4V_EXT    "m4v"
12
 #define ST_M4V_MIME_STRING ST_M4V_MIME ":" ST_M4V_EXT ":" ST_MPEG4_DESC
13
 
14
+#define ST_MP4V_MIME   "video/x-mp4v"
15
+#define ST_MP4V_EXT    "mp4v"
16
+#define ST_MP4V_MIME_STRING ST_MP4V_MIME ":" ST_MP4V_EXT ":" ST_MPEG4_DESC
17
+
18
 #define ST_M4A_MIME   "video/x-m4a"
19
 #define ST_M4A_DESC   "MPEG4 Audio"
20
 #define ST_M4A_EXT    "m4a"
21
@@ -189,6 +193,14 @@
22
 #define ST_M2TS_MIME_STRING ST_M2TS_MIME ":" ST_M2TS_EXT ":" ST_M2TS_DESC
23
 
24
 /**
25
+ *.mxf - Material eXchange Format (MXF)
26
+ */
27
+#define ST_MXF_MIME "application/mxf"
28
+#define ST_MXF_EXT  "mxf"
29
+#define ST_MXF_DESC "MXF - Material eXchange Format"
30
+#define ST_MXF_MIME_STRING ST_MXF_MIME ":" ST_MXF_EXT ":" ST_MXF_DESC
31
+
32
+/**
33
  *.bik - BINK video (games)
34
  */
35
 #define ST_BIK_MIME "video/x-bik"
36
@@ -314,6 +326,7 @@
37
 ST_M2V_MIME_STRING ";" \
38
 ST_MP4_MIME_STRING ";" \
39
 ST_M4V_MIME_STRING ";" \
40
+ST_MP4V_MIME_STRING ";" \
41
 ST_M4A_MIME_STRING ";" \
42
 ST_MOV_MIME_STRING ";" \
43
 ST_QT_MIME_STRING ";" \
44
@@ -323,6 +336,7 @@
45
 ST_TS_MIME_STRING ";" \
46
 ST_MTS_MIME_STRING ";" \
47
 ST_M2TS_MIME_STRING ";" \
48
+ST_MXF_MIME_STRING ";" \
49
 ST_BIK_MIME_STRING ";" \
50
 ST_FLAC_MIME_STRING ";" \
51
 ST_APE_MIME_STRING ";" \
52
sview-15_11.tar.gz/StMoviePlayer/StMoviePlayerStrings.cpp -> sview-16_06.tar.gz/StMoviePlayer/StMoviePlayerStrings.cpp Changed
29
 
1
@@ -231,7 +231,7 @@
2
                "version");
3
     theStrings(ABOUT_DESCRIPTION,
4
                "Movie player allows you to play stereoscopic video.\n"
5
-               "(C) 2007-2015 Kirill Gavrilov <kirill@sview.ru>\n"
6
+               "(C) 2007-2016 Kirill Gavrilov <kirill@sview.ru>\n"
7
                "Official site: www.sview.ru\n"
8
                "\n"
9
                "This program is distributed under GPL3.0");
10
@@ -285,6 +285,18 @@
11
                "Hotkeys");
12
     theStrings(MENU_HELP_SETTINGS,
13
                "Settings");
14
+
15
+    theStrings(OPTION_EXIT_ON_ESCAPE,
16
+               "Exit sView on Escape");
17
+    theStrings(OPTION_EXIT_ON_ESCAPE_NEVER,
18
+               "Never");
19
+    theStrings(OPTION_EXIT_ON_ESCAPE_ONE_CLICK,
20
+               "One click");
21
+    theStrings(OPTION_EXIT_ON_ESCAPE_DOUBLE_CLICK,
22
+               "Double click");
23
+    theStrings(OPTION_EXIT_ON_ESCAPE_WINDOWED,
24
+               "When windowed");
25
+
26
     theStrings(FILE_VIDEO_OPEN,
27
                "Open another movie");
28
     theStrings(BTN_SRC_FORMAT,
29
sview-15_11.tar.gz/StMoviePlayer/StMoviePlayerStrings.h -> sview-16_06.tar.gz/StMoviePlayer/StMoviePlayerStrings.h Changed
15
 
1
@@ -184,6 +184,13 @@
2
         MENU_HELP_SCALE_BIG     = 1592,
3
         MENU_HELP_SCALE_HIDPI2X = 1593,
4
 
5
+        // Settings -> Options
6
+        OPTION_EXIT_ON_ESCAPE              = 1701,
7
+        OPTION_EXIT_ON_ESCAPE_NEVER        = 1702,
8
+        OPTION_EXIT_ON_ESCAPE_ONE_CLICK    = 1703,
9
+        OPTION_EXIT_ON_ESCAPE_DOUBLE_CLICK = 1704,
10
+        OPTION_EXIT_ON_ESCAPE_WINDOWED     = 1705,
11
+
12
         // Open/Save dialogs
13
         DIALOG_OPEN_FILE       = 2000,
14
         DIALOG_OPEN_LEFT       = 2001,
15
sview-15_11.tar.gz/StMoviePlayer/StTimeBox.h -> sview-16_06.tar.gz/StMoviePlayer/StTimeBox.h Changed
44
 
1
@@ -67,7 +67,7 @@
2
         return myTextArea;
3
     }
4
 
5
-    virtual bool stglInit() {
6
+    virtual bool stglInit() ST_ATTR_OVERRIDE {
7
         bool isBtnInit = StGLTextureButton::stglInit();
8
         myTextArea->changeRectPx().right()  = getRectPx().width();
9
         myTextArea->changeRectPx().bottom() = getRectPx().height();
10
@@ -76,26 +76,24 @@
11
         return isOk;
12
     }
13
 
14
-    virtual void stglDraw(unsigned int theView) {
15
+    virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE {
16
         StGLTextureButton::stglDraw(theView);
17
         myTextArea->stglDraw(theView);
18
         myIsResized = false;
19
     }
20
 
21
-    virtual bool tryClick(const StPointD_t& theCursor,
22
-                          const int&        theMouseBtn,
23
-                          bool&             theIsItemClicked) {
24
+    virtual bool tryClick(const StClickEvent& theEvent,
25
+                          bool&               theIsItemClicked) ST_ATTR_OVERRIDE {
26
         return myIsOverlay
27
              ? false
28
-             : StGLTextureButton::tryClick(theCursor, theMouseBtn, theIsItemClicked);
29
+             : StGLTextureButton::tryClick(theEvent, theIsItemClicked);
30
     }
31
 
32
-    virtual bool tryUnClick(const StPointD_t& theCursor,
33
-                            const int&        theMouseBtn,
34
-                            bool&             theIsItemUnclicked) {
35
+    virtual bool tryUnClick(const StClickEvent& theEvent,
36
+                            bool&               theIsItemUnclicked) ST_ATTR_OVERRIDE {
37
         return myIsOverlay
38
              ? false
39
-             : StGLTextureButton::tryUnClick(theCursor, theMouseBtn, theIsItemUnclicked);
40
+             : StGLTextureButton::tryUnClick(theEvent, theIsItemUnclicked);
41
     }
42
 
43
     void stglUpdateTime(const double theProgressSec,
44
sview-15_11.tar.gz/StMoviePlayer/StVideo/StAVPacketQueue.cpp -> sview-16_06.tar.gz/StMoviePlayer/StVideo/StAVPacketQueue.cpp Changed
8
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2009-2014 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * StMoviePlayer program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU General Public License as published by
8
sview-15_11.tar.gz/StMoviePlayer/StVideo/StAVPacketQueue.h -> sview-16_06.tar.gz/StMoviePlayer/StVideo/StAVPacketQueue.h Changed
28
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2009-2014 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * StMoviePlayer program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU General Public License as published by
8
@@ -199,7 +199,7 @@
9
      */
10
     ST_LOCAL bool isPlaying() const {
11
         myEventMutex.lock();
12
-            bool aRes = myIsPlaying;
13
+            bool aRes = myIsPlaying && isInitialized();
14
         myEventMutex.unlock();
15
         return aRes;
16
     }
17
@@ -239,8 +239,8 @@
18
     AVCodecContext*  myCodecCtx;       //!< codec context
19
     AVCodec*         myCodec;          //!< codec
20
     AVCodec*         myCodecAuto;      //!< original codec (autodetected - before overriding)
21
-    typedef PixelFormat (*aGetFrmt_t)(AVCodecContext* , const PixelFormat* );
22
-    typedef int         (*aGetBuf2_t)(AVCodecContext* , AVFrame* frame, int );
23
+    typedef AVPixelFormat (*aGetFrmt_t)(AVCodecContext* , const AVPixelFormat* );
24
+    typedef int           (*aGetBuf2_t)(AVCodecContext* , AVFrame* frame, int );
25
     aGetFrmt_t       myGetFrmtInit;
26
     aGetBuf2_t       myGetBuffInit;
27
     double           myPtsStartBase;   //!< starting PTS in context
28
sview-15_11.tar.gz/StMoviePlayer/StVideo/StAudioQueue.h -> sview-16_06.tar.gz/StMoviePlayer/StVideo/StAudioQueue.h Changed
25
 
1
@@ -61,12 +61,12 @@
2
      */
3
     ST_LOCAL virtual bool init(AVFormatContext*   theFormatCtx,
4
                                const unsigned int theStreamId,
5
-                               const StString&    theFileName);
6
+                               const StString&    theFileName) ST_ATTR_OVERRIDE;
7
 
8
     /**
9
      * Clean function.
10
      */
11
-    ST_LOCAL virtual void deinit();
12
+    ST_LOCAL virtual void deinit() ST_ATTR_OVERRIDE;
13
 
14
     /**
15
      * Main decoding and playback loop.
16
@@ -85,7 +85,7 @@
17
         public: //!< @name playback control methods
18
 
19
     ST_LOCAL virtual void pushPlayEvent(const StPlayEvent_t theEventId,
20
-                                        const double        theSeekParam = 0.0);
21
+                                        const double        theSeekParam = 0.0) ST_ATTR_OVERRIDE;
22
 
23
     ST_LOCAL double getPts() const {
24
         myEventMutex.lock();
25
sview-15_11.tar.gz/StMoviePlayer/StVideo/StPCMBuffer.cpp -> sview-16_06.tar.gz/StMoviePlayer/StVideo/StPCMBuffer.cpp Changed
28
 
1
@@ -330,7 +330,7 @@
2
 bool StPCMBuffer::addConvert(const StPCMBuffer& theBuffer) {
3
     if(myPlanesNb > 1 && myPlanesNb != myChMap.count) {
4
         // currently only split into mono sources supported
5
-        ST_DEBUG_ASSERT(false);
6
+        ST_ASSERT(false, "StPCMBuffer::addConvert() - Unsupported configuration");
7
         return false;
8
     } else if(theBuffer.myPlaneSize * theBuffer.myPlanesNb < theBuffer.mySampleSize * myPlanesNb) {
9
         // just ignore
10
@@ -438,7 +438,7 @@
11
         return false;
12
     } else if(myChMap.count != theBuffer.myChMap.count) {
13
         // currently not supported
14
-        ST_DEBUG_ASSERT(false);
15
+        ST_ASSERT(false, "StPCMBuffer::addData() - channels count should be equal");
16
         return false;
17
     }
18
 
19
@@ -499,7 +499,7 @@
20
         myPlaneSize += theBuffer.getPlaneSize();
21
         return true;
22
     } else {
23
-        ST_DEBUG_ASSERT(false);
24
+        ST_ASSERT(false, "StPCMBuffer::addData() - unsupported input");
25
         return false;
26
     }
27
 }
28
sview-15_11.tar.gz/StMoviePlayer/StVideo/StParamActiveStream.h -> sview-16_06.tar.gz/StMoviePlayer/StVideo/StParamActiveStream.h Changed
16
 
1
@@ -54,12 +54,12 @@
2
     /**
3
      * Overridden thread-safe method.
4
      */
5
-    ST_LOCAL virtual int32_t getValue() const;
6
+    ST_LOCAL virtual int32_t getValue() const ST_ATTR_OVERRIDE;
7
 
8
     /**
9
      * Overridden thread-safe method.
10
      */
11
-    ST_LOCAL virtual bool setValue(const int32_t theValue);
12
+    ST_LOCAL virtual bool setValue(const int32_t theValue) ST_ATTR_OVERRIDE;
13
 
14
     /**
15
      * Switch to next value in list.
16
sview-15_11.tar.gz/StMoviePlayer/StVideo/StSubtitleQueue.h -> sview-16_06.tar.gz/StMoviePlayer/StVideo/StSubtitleQueue.h Changed
20
 
1
@@ -56,14 +56,14 @@
2
      * @param streamId     stream id in video format context
3
      * @return true if no error
4
      */
5
-    ST_LOCAL bool init(AVFormatContext*   theFormatCtx,
6
-                       const unsigned int theStreamId,
7
-                       const StString&    theFileName);
8
+    ST_LOCAL virtual bool init(AVFormatContext*   theFormatCtx,
9
+                               const unsigned int theStreamId,
10
+                               const StString&    theFileName) ST_ATTR_OVERRIDE;
11
 
12
     /**
13
      * Clean function.
14
      */
15
-    ST_LOCAL void deinit();
16
+    ST_LOCAL virtual void deinit() ST_ATTR_OVERRIDE;
17
 
18
     /**
19
      * Main decoding loop.
20
sview-15_11.tar.gz/StMoviePlayer/StVideo/StVideo.cpp -> sview-16_06.tar.gz/StMoviePlayer/StVideo/StVideo.cpp Changed
172
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2007-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * StMoviePlayer program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU General Public License as published by
8
@@ -37,14 +37,16 @@
9
 
10
 const char* StVideo::ST_VIDEOS_MIME_STRING = ST_VIDEO_PLUGIN_MIME_CHAR;
11
 
12
-StVideo::StVideo(const std::string&                theALDeviceName,
13
-                 const StHandle<StTranslations>&   theLangMap,
14
-                 const StHandle<StPlayList>&       thePlayList,
15
-                 const StHandle<StGLTextureQueue>& theTextureQueue,
16
-                 const StHandle<StSubQueue>&       theSubtitlesQueue)
17
+StVideo::StVideo(const std::string&                 theALDeviceName,
18
+                 const StHandle<StResourceManager>& theResMgr,
19
+                 const StHandle<StTranslations>&    theLangMap,
20
+                 const StHandle<StPlayList>&        thePlayList,
21
+                 const StHandle<StGLTextureQueue>&  theTextureQueue,
22
+                 const StHandle<StSubQueue>&        theSubtitlesQueue)
23
 : myMimesVideo(ST_VIDEOS_MIME_STRING),
24
   myMimesAudio(ST_AUDIOS_MIME_STRING),
25
   myMimesSubs(ST_SUBTIT_MIME_STRING),
26
+  myResMgr(theResMgr),
27
   myLangMap(theLangMap),
28
   mySlaveCtx(NULL),
29
   mySlaveStream(-1),
30
@@ -59,7 +61,8 @@
31
   myAudioDelayMSec(0),
32
   myIsBenchmark(false),
33
   toSave(StImageFile::ST_TYPE_NONE),
34
-  toQuit(false) {
35
+  toQuit(false),
36
+  myQuitEvent(false) {
37
     // initialize FFmpeg library if not yet performed
38
     stAV::init();
39
 
40
@@ -71,6 +74,7 @@
41
     }
42
 
43
     params.UseGpu          = new StBoolParam(false);
44
+    params.UseOpenJpeg     = new StBoolParam(false);
45
     params.activeAudio     = new StParamActiveStream();
46
     params.activeSubtitles = new StParamActiveStream();
47
 
48
@@ -155,12 +159,21 @@
49
 
50
 };
51
 
52
-StVideo::~StVideo() {
53
-    // stop the thread
54
+void StVideo::startDestruction() {
55
+    if(toQuit) {
56
+        return;
57
+    }
58
+
59
     toQuit = true;
60
     toSave = StImageFile::ST_TYPE_NONE;
61
     pushPlayEvent(ST_PLAYEVENT_NEXT);
62
     myTextureQueue->clear();
63
+    myQuitEvent.wait(1000);
64
+}
65
+
66
+StVideo::~StVideo() {
67
+    // stop the thread
68
+    startDestruction();
69
 
70
     // wait main thread is quit
71
     const char* THE_STATES[] = {
72
@@ -207,6 +220,7 @@
73
     }
74
     myFileList.clear();
75
     myCtxList.clear();
76
+    myFileIOList.clear();
77
     myPlayCtxList.clear();
78
     mySlaveCtx    = NULL;
79
     mySlaveStream = -1;
80
@@ -233,11 +247,24 @@
81
 
82
 bool StVideo::addFile(const StString& theFileToLoad,
83
                       StStreamsInfo&  theInfo) {
84
+    // open video file
85
     StString aFileName, aDummy;
86
     StFileNode::getFolderAndFile(theFileToLoad, aDummy, aFileName);
87
-
88
-    // open video file
89
     AVFormatContext* aFormatCtx = NULL;
90
+
91
+    StHandle<StAVIOContext> anIOContext;
92
+    if(StFileNode::isContentProtocolPath(theFileToLoad)) {
93
+        int aFileDescriptor = myResMgr->openFileDescriptor(theFileToLoad);
94
+        if(aFileDescriptor != -1) {
95
+            StHandle<StAVIOFileContext> aFileCtx = new StAVIOFileContext();
96
+            if(aFileCtx->openFromDescriptor(aFileDescriptor, "rb")) {
97
+                aFormatCtx = avformat_alloc_context();
98
+                aFormatCtx->pb = aFileCtx->getAvioContext();
99
+                anIOContext = aFileCtx;
100
+            }
101
+        }
102
+    }
103
+
104
 #if(LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(53, 2, 0))
105
     int avErrCode = avformat_open_input(&aFormatCtx, theFileToLoad.toCString(), NULL, NULL);
106
 #else
107
@@ -466,6 +493,7 @@
108
         }
109
     }
110
 
111
+    myFileIOList.add(anIOContext);
112
     myCtxList.add(aFormatCtx);
113
     myFileList.add(theFileToLoad);
114
     return true;
115
@@ -477,9 +505,12 @@
116
     // just for safe - close previously opened video
117
     close();
118
 
119
-    const bool toUseGpu = params.UseGpu->getValue();
120
+    const bool toUseGpu      = params.UseGpu->getValue();
121
+    const bool toUseOpenJpeg = params.UseOpenJpeg->getValue();
122
     myVideoMaster->setUseGpu(toUseGpu);
123
     myVideoSlave ->setUseGpu(toUseGpu);
124
+    myVideoMaster->setUseOpenJpeg(toUseOpenJpeg);
125
+    myVideoSlave ->setUseOpenJpeg(toUseOpenJpeg);
126
 
127
     myFileInfoTmp = new StMovieInfo();
128
 
129
@@ -877,6 +908,10 @@
130
                 }
131
 
132
                 myPlayList->updateRecent(myCurrPlsFile.isNull() ? myCurrNode : myCurrPlsFile, myCurrParams);
133
+                if(toQuit) {
134
+                    myQuitEvent.set();
135
+                }
136
+
137
                 doFlush();
138
                 if(myAudio->isInitialized()) {
139
                     myAudio->pushPlayEvent(ST_PLAYEVENT_SEEK, 0.0);
140
@@ -893,6 +928,7 @@
141
                 myAudio->pushEnd();
142
                 while(!myAudio->isEmpty() || !myAudio->isInDowntime()) {
143
                     if(toQuit) {
144
+                        myQuitEvent.set();
145
                         break;
146
                     }
147
                     StThread::sleep(10);
148
@@ -949,6 +985,7 @@
149
                 mySubtitles->pushEnd();
150
                 while(!mySubtitles->isEmpty() || !mySubtitles->isInDowntime()) {
151
                     if(toQuit) {
152
+                        myQuitEvent.set();
153
                         break;
154
                     }
155
                     StThread::sleep(10);
156
@@ -1210,6 +1247,7 @@
157
         // wait for initial message
158
         waitEvent();
159
         if(toQuit) {
160
+            myQuitEvent.set();
161
             return;
162
         }
163
 
164
@@ -1268,6 +1306,7 @@
165
                 myPlayList->walkToNext(false);
166
             }
167
             if(toQuit) {
168
+                myQuitEvent.set();
169
                 return;
170
             }
171
             isOpenSuccess = false;
172
sview-15_11.tar.gz/StMoviePlayer/StVideo/StVideo.h -> sview-16_06.tar.gz/StMoviePlayer/StVideo/StVideo.h Changed
99
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2007-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * StMoviePlayer program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU General Public License as published by
8
@@ -25,6 +25,7 @@
9
 #include "StVideoTimer.h"   // video refresher class
10
 #include "StParamActiveStream.h"
11
 
12
+#include <StAV/StAVIOFileContext.h>
13
 #include <StFile/StMIMEList.h>
14
 #include <StThreads/StProcess.h>
15
 #include <StThreads/StThread.h>
16
@@ -51,6 +52,7 @@
17
 };
18
 
19
 template<> inline void StArray< StHandle<StFileNode> >::sort() {}
20
+template<> inline void StArray< StHandle<StAVIOContext> >::sort() {}
21
 
22
 /**
23
  * Auxiliary structure.
24
@@ -105,13 +107,23 @@
25
     /**
26
      * Main constructor.
27
      */
28
-    ST_LOCAL StVideo(const std::string&                theALDeviceName,
29
-                     const StHandle<StTranslations>&   theLangMap,
30
-                     const StHandle<StPlayList>&       thePlayList,
31
-                     const StHandle<StGLTextureQueue>& theTextureQueue,
32
-                     const StHandle<StSubQueue>&       theSubtitlesQueue);
33
+    ST_LOCAL StVideo(const std::string&                 theALDeviceName,
34
+                     const StHandle<StResourceManager>& theResMgr,
35
+                     const StHandle<StTranslations>&    theLangMap,
36
+                     const StHandle<StPlayList>&        thePlayList,
37
+                     const StHandle<StGLTextureQueue>&  theTextureQueue,
38
+                     const StHandle<StSubQueue>&        theSubtitlesQueue);
39
+
40
+    /**
41
+     * Destructor.
42
+     */
43
     ST_LOCAL ~StVideo();
44
 
45
+    /**
46
+     * Start releasing this class. Should be following by destructor.
47
+     */
48
+    ST_LOCAL void startDestruction();
49
+
50
     ST_LOCAL inline const StHandle<StGLTextureQueue>& getTextureQueue() const {
51
         return myTextureQueue;
52
     }
53
@@ -125,13 +137,6 @@
54
      */
55
     ST_LOCAL void setBenchmark(bool toPerformBenchmark);
56
 
57
-    /**
58
-     * Access to the playlist.
59
-     */
60
-    ST_LOCAL StPlayList& getPlayList() {
61
-        return *myPlayList;
62
-    }
63
-
64
     ST_LOCAL double getAverFps() const {
65
         return myTargetFps;
66
     }
67
@@ -213,6 +218,7 @@
68
     struct {
69
 
70
         StHandle<StBoolParam>         UseGpu;          //!< use video decoding on GPU when available
71
+        StHandle<StBoolParam>         UseOpenJpeg;     //!< use OpenJPEG (libopenjpeg) instead of built-in jpeg2000 decoder
72
         StHandle<StBoolParam>         ToSearchSubs;    //!< automatically search for additional subtitles/audio track files nearby video file
73
         StHandle<StParamActiveStream> activeAudio;     //!< active Audio stream
74
         StHandle<StParamActiveStream> activeSubtitles; //!< active Subtitles stream
75
@@ -382,10 +388,13 @@
76
     StMIMEList                    myMimesAudio;
77
     StMIMEList                    myMimesSubs;
78
     StHandle<StThread>            myThread;      //!< main loop thread
79
+    StHandle<StResourceManager>   myResMgr;      //!< resource manager
80
     StHandle<StTranslations>      myLangMap;     //!< translations dictionary
81
 
82
     StArrayList<StString>         myFileList;    //!< file list
83
     StArrayList<AVFormatContext*> myCtxList;     //!< format context for each file
84
+    StArrayList< StHandle<StAVIOContext> >
85
+                                  myFileIOList;  //!< associated IO context
86
     StArrayList<AVFormatContext*> myPlayCtxList; //!< currently played contexts
87
 
88
     StHandle<StVideoQueue>        myVideoMaster;  //!< Master video decoding thread
89
@@ -418,7 +427,8 @@
90
     volatile int                  myAudioDelayMSec;//!< audio/video sync delay
91
     volatile bool                 myIsBenchmark;
92
     volatile StImageFile::ImageType toSave;
93
-    volatile bool                 toQuit;
94
+    volatile bool                 toQuit;         //!< flag indicating that all working threads should be closed
95
+    StCondition                   myQuitEvent;    //!< condition indicating that working thread has saved playback state to playlist
96
 
97
 };
98
 
99
sview-15_11.tar.gz/StMoviePlayer/StVideo/StVideoDxva2.cpp -> sview-16_06.tar.gz/StMoviePlayer/StVideo/StVideoDxva2.cpp Changed
45
 
1
@@ -121,17 +121,17 @@
2
     /**
3
      * Return true if DXVA2 has been successfully initialized.
4
      */
5
-    virtual bool isValid() const { return myDeviceHandle != INVALID_HANDLE_VALUE; }
6
+    virtual bool isValid() const ST_ATTR_OVERRIDE { return myDeviceHandle != INVALID_HANDLE_VALUE; }
7
 
8
     /**
9
      * Create context.
10
      */
11
-    virtual bool create(StVideoQueue& theVideo);
12
+    virtual bool create(StVideoQueue& theVideo) ST_ATTR_OVERRIDE;
13
 
14
     /**
15
      * Destroy decoder.
16
      */
17
-    virtual void decoderDestroy() {
18
+    virtual void decoderDestroy() ST_ATTR_OVERRIDE {
19
         myPoolsTmp[0].release();
20
         myPoolsTmp[1].release();
21
         myPoolsTmp[2].release();
22
@@ -158,19 +158,19 @@
23
      * Create decoder.
24
      */
25
     virtual bool decoderCreate(StVideoQueue&   theVideo,
26
-                               AVCodecContext* theCodecCtx);
27
+                               AVCodecContext* theCodecCtx) ST_ATTR_OVERRIDE;
28
 
29
     /**
30
      * AVFrame initialization callback.
31
      */
32
     virtual int getFrameBuffer(StVideoQueue& theVideo,
33
-                               AVFrame*      theFrame);
34
+                               AVFrame*      theFrame) ST_ATTR_OVERRIDE;
35
 
36
     /**
37
      * Fetch decoded results into specified frame.
38
      */
39
     virtual bool retrieveFrame(StVideoQueue& theVideo,
40
-                               AVFrame*      theFrame);
41
+                               AVFrame*      theFrame) ST_ATTR_OVERRIDE;
42
 
43
         private:
44
 
45
sview-15_11.tar.gz/StMoviePlayer/StVideo/StVideoQueue.cpp -> sview-16_06.tar.gz/StMoviePlayer/StVideo/StVideoQueue.cpp Changed
135
 
1
@@ -28,7 +28,7 @@
2
 
3
 namespace {
4
 
5
-#ifdef  __APPLE__
6
+#if defined(__APPLE__) || defined(__ANDROID__)
7
     /**
8
      * Override pixel format.
9
      */
10
@@ -44,7 +44,7 @@
11
      */
12
     static void stReleaseFrameBuffer(AVCodecContext* theCodecCtx,
13
                                      AVFrame*        theFrame) {
14
-    #if defined(ST_AV_OLDSYNC) && !ST_USE64PTR
15
+    #if defined(ST_AV_OLDSYNC) && !defined(ST_USE64PTR)
16
         if(theFrame != NULL) {
17
             delete (int64_t* )theFrame->opaque;
18
             theFrame->opaque = NULL;
19
@@ -146,20 +146,25 @@
20
 StVideoQueue::StVideoQueue(const StHandle<StGLTextureQueue>& theTextureQueue,
21
                            const StHandle<StVideoQueue>&     theMaster)
22
 : StAVPacketQueue(512),
23
-  CodecIdH264 (stFindCodecId("h264")),
24
-  CodecIdHEVC (stFindCodecId("hevc")),
25
-  CodecIdMPEG2(stFindCodecId("mpeg2video")),
26
-  CodecIdWMV3 (stFindCodecId("wmv3")),
27
-  CodecIdVC1  (stFindCodecId("vc1")),
28
+  CodecIdH264  (stFindCodecId("h264")),
29
+  CodecIdHEVC  (stFindCodecId("hevc")),
30
+  CodecIdMPEG2 (stFindCodecId("mpeg2video")),
31
+  CodecIdWMV3  (stFindCodecId("wmv3")),
32
+  CodecIdVC1   (stFindCodecId("vc1")),
33
+  CodecIdJpeg2K(stFindCodecId("jpeg2000")),
34
   myDowntimeState(true),
35
   myTextureQueue(theTextureQueue),
36
   myHasDataState(false),
37
   myMaster(theMaster),
38
 #if defined(__APPLE__)
39
-  myCodecVda(avcodec_find_decoder_by_name("h264_vda")),
40
+  myCodecH264HW(avcodec_find_decoder_by_name("h264_vda")),
41
+#elif defined(__ANDROID__)
42
+  myCodecH264HW(avcodec_find_decoder_by_name("h264_mediacodec")),
43
 #endif
44
+  myCodecOpenJpeg(avcodec_find_decoder_by_name("libopenjpeg")),
45
   myUseGpu(false),
46
   myIsGpuFailed(false),
47
+  myUseOpenJpeg(false),
48
   //
49
   myToRgbCtx(NULL),
50
   myToRgbPixFmt(stAV::PIX_FMT::NONE),
51
@@ -325,14 +330,20 @@
52
                  && myCodecCtx->codec_id != CodecIdHEVC;
53
 #endif
54
 
55
-    // open VIDEO codec
56
-#if defined(__APPLE__)
57
     bool isCodecOverridden = false;
58
+    if(myUseOpenJpeg
59
+    && myCodecCtx->codec_id == CodecIdJpeg2K
60
+    && myCodecOpenJpeg != NULL) {
61
+        isCodecOverridden = initCodec(myCodecOpenJpeg, false);
62
+    }
63
+
64
+    // open VIDEO codec
65
+#if defined(__APPLE__) || defined(__ANDROID__)
66
     AVCodec* aCodecGpu = NULL;
67
     if(myUseGpu
68
     && StString(myCodecAuto->name).isEquals(stCString("h264"))
69
     && myCodecCtx->pix_fmt == stAV::PIX_FMT::YUV420P) {
70
-        aCodecGpu = myCodecVda;
71
+        aCodecGpu = myCodecH264HW;
72
     }
73
 
74
     if(aCodecGpu != NULL) {
75
@@ -348,7 +359,7 @@
76
         return false;
77
     }
78
 #else
79
-    if(!initCodec(myCodecAuto, myUseGpu && !myIsGpuFailed)) {
80
+    if(!isCodecOverridden && !initCodec(myCodecAuto, myUseGpu && !myIsGpuFailed)) {
81
         signals.onError(stCString("FFmpeg: Could not open video codec"));
82
         deinit();
83
         return false;
84
@@ -482,13 +493,20 @@
85
 #endif
86
 
87
 void StVideoQueue::prepareFrame(const StFormat theSrcFormat) {
88
-    int          aFrameSizeX = 0;
89
-    int          aFrameSizeY = 0;
90
-    PixelFormat  aPixFmt     = stAV::PIX_FMT::NONE;
91
-    stAV::dimYUV aDimsYUV;
92
+    int           aFrameSizeX = 0;
93
+    int           aFrameSizeY = 0;
94
+    AVPixelFormat aPixFmt     = stAV::PIX_FMT::NONE;
95
+    stAV::dimYUV  aDimsYUV;
96
     myFrame.getImageInfo(myCodecCtx, aFrameSizeX, aFrameSizeY, aPixFmt);
97
     myDataAdp.setBufferCounter(NULL);
98
-    if(aPixFmt == stAV::PIX_FMT::RGB24) {
99
+    if(aPixFmt == stAV::PIX_FMT::XYZ12) {
100
+        myDataAdp.setColorModel(StImage::ImgColor_XYZ);
101
+        myDataAdp.setColorScale(StImage::ImgScale_Full);
102
+        myDataAdp.setPixelRatio(getPixelRatio());
103
+        myDataAdp.changePlane(0).initWrapper(StImagePlane::ImgRGB48, myFrame.getPlane(0),
104
+                                             size_t(aFrameSizeX), size_t(aFrameSizeY),
105
+                                             myFrame.getLineSize(0));
106
+    } else if(aPixFmt == stAV::PIX_FMT::RGB24) {
107
         myDataAdp.setColorModel(StImage::ImgColor_RGB);
108
         myDataAdp.setColorScale(StImage::ImgScale_Full);
109
         myDataAdp.setPixelRatio(getPixelRatio());
110
@@ -544,6 +562,24 @@
111
 
112
         myFrameBufRef->moveReferenceFrom(myFrame.Frame);
113
         myDataAdp.setBufferCounter(myFrameBufRef);
114
+    } else if(aPixFmt == stAV::PIX_FMT::NV12) {
115
+        aDimsYUV.isFullScale = false;
116
+    #if(LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(52, 29, 0))
117
+        if(myCodecCtx->color_range == AVCOL_RANGE_JPEG) {
118
+            // there no color range information in the AVframe (yet)
119
+            aDimsYUV.isFullScale = true;
120
+        }
121
+    #endif
122
+        myDataAdp.setColorScale(aDimsYUV.isFullScale ? StImage::ImgScale_NvFull : StImage::ImgScale_NvMpeg);
123
+        myDataAdp.setColorModel(StImage::ImgColor_YUV);
124
+        myDataAdp.setPixelRatio(getPixelRatio());
125
+        myDataAdp.changePlane(0).initWrapper(StImagePlane::ImgGray, myFrame.getPlane(0),
126
+                                             size_t(aFrameSizeX), size_t(aFrameSizeY), myFrame.getLineSize(0));
127
+        myDataAdp.changePlane(1).initWrapper(StImagePlane::ImgUV, myFrame.getPlane(1),
128
+                                             size_t(aFrameSizeX / 2), size_t(aFrameSizeY / 2), myFrame.getLineSize(1));
129
+
130
+        myFrameBufRef->moveReferenceFrom(myFrame.Frame);
131
+        myDataAdp.setBufferCounter(myFrameBufRef);
132
     } else if(!myToRgbIsBroken) {
133
         if(myToRgbCtx    == NULL
134
         || myToRgbPixFmt != aPixFmt
135
sview-15_11.tar.gz/StMoviePlayer/StVideo/StVideoQueue.h -> sview-16_06.tar.gz/StMoviePlayer/StVideo/StVideoQueue.h Changed
69
 
1
@@ -96,6 +96,7 @@
2
     AVCodecID CodecIdMPEG2;
3
     AVCodecID CodecIdWMV3;
4
     AVCodecID CodecIdVC1;
5
+    AVCodecID CodecIdJpeg2K;
6
 
7
         public:
8
 
9
@@ -122,6 +123,13 @@
10
         myIsGpuFailed = theIsGpuFailed;
11
     }
12
 
13
+    /**
14
+     * Setup OpenJPEG usage. Requires re-initialization to take effect!
15
+     */
16
+    ST_LOCAL void setUseOpenJpeg(const bool theToUseOpenJpeg) {
17
+        myUseOpenJpeg = theToUseOpenJpeg;
18
+    }
19
+
20
     ST_LOCAL bool isInDowntime() {
21
         return myDowntimeState.check();
22
     }
23
@@ -165,7 +173,7 @@
24
     }
25
 
26
     /**
27
-     * @return sterescopic information stored in file
28
+     * @return stereoscopic information stored in file
29
      */
30
     ST_LOCAL StFormat getStereoFormatFromStream() const {
31
         return myStFormatInStream;
32
@@ -201,12 +209,12 @@
33
      */
34
     ST_LOCAL virtual bool init(AVFormatContext*   theFormatCtx,
35
                                const unsigned int theStreamId,
36
-                               const StString&    theFileName);
37
+                               const StString&    theFileName) ST_ATTR_OVERRIDE;
38
 
39
     /**
40
      * Clean function.
41
      */
42
-    ST_LOCAL virtual void deinit();
43
+    ST_LOCAL virtual void deinit() ST_ATTR_OVERRIDE;
44
 
45
 #ifdef ST_AV_OLDSYNC
46
     ST_LOCAL void syncVideo(AVFrame* srcFrame, double* pts);
47
@@ -348,16 +356,18 @@
48
     StHandle<StVideoQueue>     mySlave;           //!< handle to Slave  decoding thread
49
 
50
     StHandle<StHWAccelContext> myHWAccelCtx;
51
-#if defined(__APPLE__)
52
-    AVCodec*                   myCodecVda;        //!< VDA codec (decoding on GPU in OS X)
53
+#if defined(__APPLE__) || defined(__ANDROID__)
54
+    AVCodec*                   myCodecH264HW;     //!< h264 decoder using dedicated hardware (VDA codec on OS X; Android Media Codec)
55
 #endif
56
+    AVCodec*                   myCodecOpenJpeg;   //!< libopenjpeg decoder
57
     bool                       myUseGpu;          //!< activate decoding on GPU when possible
58
     bool                       myIsGpuFailed;     //!< flag indicating that GPU decoder can not handle input data
59
+    bool                       myUseOpenJpeg;     //!< use OpenJPEG (libopenjpeg) instead of built-in jpeg2000 decoder
60
 
61
     StAVFrame                  myFrameRGB;        //!< frame, converted to RGB (soft)
62
     StImagePlane               myDataRGB;         //!< RGB buffer data (for swscale)
63
     SwsContext*                myToRgbCtx;        //!< software scaler context
64
-    PixelFormat                myToRgbPixFmt;     //!< current swscale context - from pixel format
65
+    AVPixelFormat              myToRgbPixFmt;     //!< current swscale context - from pixel format
66
     bool                       myToRgbIsBroken;   //!< indicates broke swscale context - to RGB conversion is impossible
67
 
68
     StAVFrame                  myFrame;           //!< original decoded video frame
69
sview-15_11.tar.gz/StMoviePlayer/lang/chinese/StMoviePlayer.lng -> sview-16_06.tar.gz/StMoviePlayer/lang/chinese/StMoviePlayer.lng Changed
13
 
1
@@ -122,6 +122,11 @@
2
 1591=正常
3
 1592=大
4
 1593=强制高解析 2X
5
+?1701=Exit sView on escape
6
+?1702=Do not exit
7
+?1703=On one click
8
+?1704=On double click
9
+?1705=On one click windowed mode
10
 2000=选择视频文件打开
11
 2001=选择左视频文件打开
12
 2002=选择右视频文件打开
13
sview-15_11.tar.gz/StMoviePlayer/lang/czech/StMoviePlayer.lng -> sview-16_06.tar.gz/StMoviePlayer/lang/czech/StMoviePlayer.lng Changed
13
 
1
@@ -123,6 +123,11 @@
2
 1591=Normální
3
 1592=Velké
4
 1593=Extravelké HiDPI 2x
5
+?1701=Exit sView on escape
6
+?1702=Do not exit
7
+?1703=On one click
8
+?1704=On double click
9
+?1705=On one click windowed mode
10
 2000=Otevřít video
11
 2001=Otevřít video s LEVOU stopou
12
 2002=Otevřít video s PRAVOU stopou
13
sview-15_11.tar.gz/StMoviePlayer/lang/english/StMoviePlayer.lng -> sview-16_06.tar.gz/StMoviePlayer/lang/english/StMoviePlayer.lng Changed
13
 
1
@@ -122,6 +122,11 @@
2
 1591=Normal
3
 1592=Big
4
 1593=Force HiDPI 2X
5
+1701=Exit sView on escape
6
+1702=Do not exit
7
+1703=On one click
8
+1704=On double click
9
+1705=On one click in windowed mode
10
 2000=Choose the video file to open
11
 2001=Choose LEFT video file to open
12
 2002=Choose RIGHT video file to open
13
sview-15_11.tar.gz/StMoviePlayer/lang/french/StMoviePlayer.lng -> sview-16_06.tar.gz/StMoviePlayer/lang/french/StMoviePlayer.lng Changed
13
 
1
@@ -122,6 +122,11 @@
2
 1591=Normal
3
 1592=Gros
4
 1593=Force HiDPI 2X
5
+?1701=Exit sView on escape
6
+?1702=Do not exit
7
+?1703=On one click
8
+?1704=On double click
9
+?1705=On one click windowed mode
10
 2000=Choix du fichier vidéo à ouvrir
11
 2001=Choix du fichier vidéo Gauche à ouvrir
12
 2002=Choix du fichier vidéo Droite à ouvrir
13
sview-15_11.tar.gz/StMoviePlayer/lang/german/StMoviePlayer.lng -> sview-16_06.tar.gz/StMoviePlayer/lang/german/StMoviePlayer.lng Changed
13
 
1
@@ -122,6 +122,11 @@
2
 1591=normal
3
 1592=groß
4
 1593=erzwingen HiDPI 2X
5
+1701=Schließen sView auf Escape-Taste
6
+1702=Nicht
7
+1703=Auf einen Klick
8
+1704=Auf Doppelklick
9
+?1705=Only when windowed
10
 2000=Wählen die Videodatei zu öffnen
11
 2001=Wählen die linke Videodatei zu öffnen
12
 2002=Wählen die rechte Videodatei zu öffnen
13
sview-15_11.tar.gz/StMoviePlayer/lang/korean/StMoviePlayer.lng -> sview-16_06.tar.gz/StMoviePlayer/lang/korean/StMoviePlayer.lng Changed
13
 
1
@@ -123,6 +123,11 @@
2
 1591=보통
3
 1592=크게
4
 1593=HiDPI 2X 로
5
+?1701=Exit sView on escape
6
+?1702=Do not exit
7
+?1703=On one click
8
+?1704=On double click
9
+?1705=On one click windowed mode
10
 2000=재생할 비디오 파일을 선택하시오
11
 2001=좌안 비디오 파일을 선택하시오
12
 2002=우안 비디오 파일을 선택하시오
13
sview-15_11.tar.gz/StMoviePlayer/lang/russian/StMoviePlayer.lng -> sview-16_06.tar.gz/StMoviePlayer/lang/russian/StMoviePlayer.lng Changed
13
 
1
@@ -123,6 +123,11 @@
2
 1591=Нормально
3
 1592=Крупно
4
 1593=Форсировать HiDPI 2X
5
+1701=Выйти из программы по Escape
6
+1702=Никогда
7
+1703=Одно нажатие
8
+1704=Двойное нажатие
9
+1705=Только в оконном режиме
10
 2000=Выберите видеофайл
11
 2001=Выберите видеофайл с ЛЕВЫМ ракурсом
12
 2002=Выберите видеофайл с ПРАВЫМ ракурсом
13
sview-15_11.tar.gz/StOutAnaglyph/StOutAnaglyph.cbp -> sview-16_06.tar.gz/StOutAnaglyph/StOutAnaglyph.cbp Changed
36
 
1
@@ -170,15 +170,14 @@
2
                    <Add option="-DST_HAVE_STCONFIG" />
3
                </Compiler>
4
                <Linker>
5
-                   <Add option="-s" />
6
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
7
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
8
                    <Add option="-framework Appkit" />
9
                    <Add option="-framework OpenGL" />
10
                    <Add library="objc" />
11
                </Linker>
12
                <ExtraCommands>
13
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
14
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
15
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
16
                </ExtraCommands>
17
            </Target>
18
            <Target title="MAC_gcc_DEBUG">
19
@@ -196,14 +195,14 @@
20
                    <Add option="-DST_HAVE_STCONFIG" />
21
                </Compiler>
22
                <Linker>
23
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
24
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
25
                    <Add option="-framework Appkit" />
26
                    <Add option="-framework OpenGL" />
27
                    <Add library="objc" />
28
                </Linker>
29
                <ExtraCommands>
30
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
31
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
32
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
33
                </ExtraCommands>
34
            </Target>
35
        </Build>
36
sview-15_11.tar.gz/StOutAnaglyph/StOutAnaglyph.cpp -> sview-16_06.tar.gz/StOutAnaglyph/StOutAnaglyph.cpp Changed
148
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StOutAnaglyph, class providing stereoscopic output in Anaglyph format using StCore toolkit.
4
- * Copyright © 2007-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -30,9 +30,6 @@
10
 
11
     static const char ST_OUT_PLUGIN_NAME[] = "StOutAnaglyph";
12
 
13
-    static const char ST_SETTING_GLASSES[]   = "glasses";
14
-    static const char ST_SETTING_REDCYAN[]   = "optionRedCyan";
15
-    static const char ST_SETTING_AMBERBLUE[] = "optionAmberBlue";
16
     static const char ST_SETTING_WINDOWPOS[] = "windowPos";
17
 
18
     // translation resources
19
@@ -91,6 +88,36 @@
20
     theList.add(params.AmberBlue);
21
 }
22
 
23
+void StOutAnaglyph::updateStrings() {
24
+    StTranslations aLangMap(getResourceManager(), ST_OUT_PLUGIN_NAME);
25
+
26
+    myDevices[DEVICE_ANAGLYPH]->Name = aLangMap.changeValueId(STTR_ANAGLYPH_NAME, "Anaglyph glasses");
27
+    myDevices[DEVICE_ANAGLYPH]->Desc = aLangMap.changeValueId(STTR_ANAGLYPH_DESC, "Simple glasses with color-filters");
28
+
29
+    params.Glasses->setName(aLangMap.changeValueId(STTR_ANAGLYPH_GLASSES, "Glasses type"));
30
+    params.Glasses->defineOption(GLASSES_TYPE_REDCYAN, aLangMap.changeValueId(STTR_ANAGLYPH_REDCYAN, "Red-cyan"));
31
+    params.Glasses->defineOption(GLASSES_TYPE_YELLOW,  aLangMap.changeValueId(STTR_ANAGLYPH_YELLOW,  "Yellow-Blue"));
32
+    params.Glasses->defineOption(GLASSES_TYPE_GREEN,   aLangMap.changeValueId(STTR_ANAGLYPH_GREEN,   "Green-Magenta"));
33
+
34
+    params.RedCyan->setName(aLangMap.changeValueId(STTR_ANAGLYPH_REDCYAN_MENU, "Red-Cyan filter"));
35
+    params.RedCyan->defineOption(REDCYAN_MODE_SIMPLE, aLangMap.changeValueId(STTR_ANAGLYPH_REDCYAN_SIMPLE, "Simple"));
36
+    params.RedCyan->defineOption(REDCYAN_MODE_OPTIM,  aLangMap.changeValueId(STTR_ANAGLYPH_REDCYAN_OPTIM,  "Optimized"));
37
+    params.RedCyan->defineOption(REDCYAN_MODE_GRAY,   aLangMap.changeValueId(STTR_ANAGLYPH_REDCYAN_GRAY,   "Grayed"));
38
+    params.RedCyan->defineOption(REDCYAN_MODE_DARK,   aLangMap.changeValueId(STTR_ANAGLYPH_REDCYAN_DARK,   "Dark"));
39
+
40
+    params.AmberBlue->setName(aLangMap.changeValueId(STTR_ANAGLYPH_AMBERBLUE_MENU, "Yellow filter"));
41
+    params.AmberBlue->defineOption(AMBERBLUE_MODE_SIMPLE, aLangMap.changeValueId(STTR_ANAGLYPH_AMBERBLUE_SIMPLE, "Simple"));
42
+    params.AmberBlue->defineOption(AMBERBLUE_MODE_DUBOIS, aLangMap.changeValueId(STTR_ANAGLYPH_AMBERBLUE_DUBIOS, "Dubios"));
43
+
44
+    // about string
45
+    StString& aTitle     = aLangMap.changeValueId(STTR_PLUGIN_TITLE,   "sView - Anaglyph Output module");
46
+    StString& aVerString = aLangMap.changeValueId(STTR_VERSION_STRING, "version");
47
+    StString& aDescr     = aLangMap.changeValueId(STTR_PLUGIN_DESCRIPTION,
48
+        "(C) {0} Kirill Gavrilov <{1}>\nOfficial site: {2}\n\nThis library is distributed under LGPL3.0");
49
+    myAbout = aTitle + '\n' + aVerString + " " + StVersionInfo::getSDKVersionString() + "\n \n"
50
+            + aDescr.format("2007-2016", "kirill@sview.ru", "www.sview.ru");
51
+}
52
+
53
 StOutAnaglyph::StOutAnaglyph(const StHandle<StResourceManager>& theResMgr,
54
                              const StNativeWin_t                theParentWindow)
55
 : StWindow(theResMgr, theParentWindow),
56
@@ -106,53 +133,27 @@
57
   myGreenAnaglyph("Anaglyph Green"),
58
   myToCompressMem(myInstancesNb.increment() > 1),
59
   myIsBroken(false) {
60
-    StTranslations aLangMap(getResourceManager(), ST_OUT_PLUGIN_NAME);
61
-
62
     myStereoProgram = &mySimpleAnaglyph;
63
 
64
-    // about string
65
-    StString& aTitle     = aLangMap.changeValueId(STTR_PLUGIN_TITLE,   "sView - Anaglyph Output module");
66
-    StString& aVerString = aLangMap.changeValueId(STTR_VERSION_STRING, "version");
67
-    StString& aDescr     = aLangMap.changeValueId(STTR_PLUGIN_DESCRIPTION,
68
-        "(C) {0} Kirill Gavrilov <{1}>\nOfficial site: {2}\n\nThis library is distributed under LGPL3.0");
69
-    myAbout = aTitle + '\n' + aVerString + " " + StVersionInfo::getSDKVersionString() + "\n \n"
70
-            + aDescr.format("2007-2015", "kirill@sview.ru", "www.sview.ru");
71
-
72
     // devices list
73
     StHandle<StOutDevice> aDevice = new StOutDevice();
74
     aDevice->PluginId = ST_OUT_PLUGIN_NAME;
75
-    aDevice->DeviceId = "Anaglyph";
76
+    aDevice->DeviceId = stCString("Anaglyph");
77
     aDevice->Priority = ST_DEVICE_SUPPORT_LOW; // anaglyph could be run on every display...
78
-    aDevice->Name     = aLangMap.changeValueId(STTR_ANAGLYPH_NAME, "Anaglyph glasses");
79
-    aDevice->Desc     = aLangMap.changeValueId(STTR_ANAGLYPH_DESC, "Simple glasses with color-filters");
80
+    aDevice->Name     = stCString("Anaglyph glasses");
81
     myDevices.add(aDevice);
82
 
83
     // Glasses switch option
84
-    StHandle<StEnumParam> aGlasses = new StEnumParam(GLASSES_TYPE_REDCYAN,
85
-                                                     aLangMap.changeValueId(STTR_ANAGLYPH_GLASSES, "Glasses type"));
86
-    aGlasses->changeValues().add(aLangMap.changeValueId(STTR_ANAGLYPH_REDCYAN, "Red-cyan"));
87
-    aGlasses->changeValues().add(aLangMap.changeValueId(STTR_ANAGLYPH_YELLOW,  "Yellow-Blue"));
88
-    aGlasses->changeValues().add(aLangMap.changeValueId(STTR_ANAGLYPH_GREEN,   "Green-Magenta"));
89
-    aGlasses->signals.onChanged.connect(this, &StOutAnaglyph::doSetShader);
90
-    params.Glasses = aGlasses;
91
+    params.Glasses = new StEnumParam(GLASSES_TYPE_REDCYAN, stCString("glasses"), stCString("glasses"));
92
+    params.Glasses->signals.onChanged.connect(this, &StOutAnaglyph::doSetShader);
93
 
94
     // Red-cyan filter switch option
95
-    StHandle<StEnumParam> aFilterRC = new StEnumParam(REDCYAN_MODE_SIMPLE,
96
-                                                      aLangMap.changeValueId(STTR_ANAGLYPH_REDCYAN_MENU, "Red-Cyan filter"));
97
-    aFilterRC->changeValues().add(aLangMap.changeValueId(STTR_ANAGLYPH_REDCYAN_SIMPLE, "Simple"));
98
-    aFilterRC->changeValues().add(aLangMap.changeValueId(STTR_ANAGLYPH_REDCYAN_OPTIM,  "Optimized"));
99
-    aFilterRC->changeValues().add(aLangMap.changeValueId(STTR_ANAGLYPH_REDCYAN_GRAY,   "Grayed"));
100
-    aFilterRC->changeValues().add(aLangMap.changeValueId(STTR_ANAGLYPH_REDCYAN_DARK,   "Dark"));
101
-    aFilterRC->signals.onChanged.connect(this, &StOutAnaglyph::doSetShader);
102
-    params.RedCyan = aFilterRC;
103
+    params.RedCyan = new StEnumParam(REDCYAN_MODE_SIMPLE, stCString("optionRedCyan"), stCString("optionRedCyan"));
104
+    params.RedCyan->signals.onChanged.connect(this, &StOutAnaglyph::doSetShader);
105
 
106
     // Amber-Blue filter switch option
107
-    StHandle<StEnumParam> aFilterAB = new StEnumParam(AMBERBLUE_MODE_SIMPLE,
108
-                                                      aLangMap.changeValueId(STTR_ANAGLYPH_AMBERBLUE_MENU, "Yellow filter"));
109
-    aFilterAB->changeValues().add(aLangMap.changeValueId(STTR_ANAGLYPH_AMBERBLUE_SIMPLE, "Simple"));
110
-    aFilterAB->changeValues().add(aLangMap.changeValueId(STTR_ANAGLYPH_AMBERBLUE_DUBIOS, "Dubios"));
111
-    aFilterAB->signals.onChanged.connect(this, &StOutAnaglyph::doSetShader);
112
-    params.AmberBlue = aFilterAB;
113
+    params.AmberBlue = new StEnumParam(AMBERBLUE_MODE_SIMPLE, stCString("optionAmberBlue"), stCString("optionAmberBlue"));
114
+    params.AmberBlue->signals.onChanged.connect(this, &StOutAnaglyph::doSetShader);
115
 
116
     // load window position
117
     if(isMovable()) {
118
@@ -162,12 +163,13 @@
119
         }
120
         StWindow::setPlacement(aRect, true);
121
     }
122
+    updateStrings();
123
     StWindow::setTitle("sView - Anaglyph Renderer");
124
 
125
     // load glasses settings
126
-    mySettings->loadParam(ST_SETTING_GLASSES,   params.Glasses);
127
-    mySettings->loadParam(ST_SETTING_REDCYAN,   params.RedCyan);
128
-    mySettings->loadParam(ST_SETTING_AMBERBLUE, params.AmberBlue);
129
+    mySettings->loadParam(params.Glasses);
130
+    mySettings->loadParam(params.RedCyan);
131
+    mySettings->loadParam(params.AmberBlue);
132
 }
133
 
134
 void StOutAnaglyph::releaseResources() {
135
@@ -195,9 +197,9 @@
136
     if(isMovable() && myWasUsed) {
137
         mySettings->saveInt32Rect(ST_SETTING_WINDOWPOS, StWindow::getWindowedPlacement());
138
     }
139
-    mySettings->saveParam(ST_SETTING_GLASSES,   params.Glasses);
140
-    mySettings->saveParam(ST_SETTING_REDCYAN,   params.RedCyan);
141
-    mySettings->saveParam(ST_SETTING_AMBERBLUE, params.AmberBlue);
142
+    mySettings->saveParam(params.Glasses);
143
+    mySettings->saveParam(params.RedCyan);
144
+    mySettings->saveParam(params.AmberBlue);
145
     mySettings->flush();
146
 }
147
 
148
sview-15_11.tar.gz/StOutAnaglyph/StOutAnaglyph.h -> sview-16_06.tar.gz/StOutAnaglyph/StOutAnaglyph.h Changed
105
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StOutAnaglyph, class providing stereoscopic output in Anaglyph format using StCore toolkit.
4
- * Copyright © 2007-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -38,55 +38,60 @@
10
     /**
11
      * Renderer about string.
12
      */
13
-    ST_CPPEXPORT virtual StString getRendererAbout() const;
14
+    ST_CPPEXPORT virtual StString getRendererAbout() const ST_ATTR_OVERRIDE;
15
 
16
     /**
17
      * Renderer id.
18
      */
19
-    ST_CPPEXPORT virtual const char* getRendererId() const;
20
+    ST_CPPEXPORT virtual const char* getRendererId() const ST_ATTR_OVERRIDE;
21
 
22
     /**
23
      * Active Device id.
24
      */
25
-    ST_CPPEXPORT virtual const char* getDeviceId() const;
26
+    ST_CPPEXPORT virtual const char* getDeviceId() const ST_ATTR_OVERRIDE;
27
 
28
     /**
29
      * Devices list.
30
      * This class supports only 1 device type - anaglyph glasses.
31
      * Different glasses filters provided as device options.
32
      */
33
-    ST_CPPEXPORT virtual void getDevices(StOutDevicesList& theList) const;
34
+    ST_CPPEXPORT virtual void getDevices(StOutDevicesList& theList) const ST_ATTR_OVERRIDE;
35
 
36
     /**
37
      * Retrieve options list.
38
      */
39
-    ST_CPPEXPORT virtual void getOptions(StParamsList& theList) const;
40
+    ST_CPPEXPORT virtual void getOptions(StParamsList& theList) const ST_ATTR_OVERRIDE;
41
 
42
     /**
43
      * Create and show window.
44
      * @return false if any critical error appeared
45
      */
46
-    ST_CPPEXPORT virtual bool create();
47
+    ST_CPPEXPORT virtual bool create() ST_ATTR_OVERRIDE;
48
 
49
     /**
50
      * Close the window.
51
      */
52
-    ST_CPPEXPORT virtual void close();
53
+    ST_CPPEXPORT virtual void close() ST_ATTR_OVERRIDE;
54
 
55
     /**
56
      * Extra routines to be processed before window close.
57
      */
58
-    ST_CPPEXPORT virtual void beforeClose();
59
+    ST_CPPEXPORT virtual void beforeClose() ST_ATTR_OVERRIDE;
60
 
61
     /**
62
      * Process callback.
63
      */
64
-    ST_CPPEXPORT virtual void processEvents();
65
+    ST_CPPEXPORT virtual void processEvents() ST_ATTR_OVERRIDE;
66
 
67
     /**
68
      * Stereo renderer.
69
      */
70
-    ST_CPPEXPORT virtual void stglDraw();
71
+    ST_CPPEXPORT virtual void stglDraw() ST_ATTR_OVERRIDE;
72
+
73
+    /**
74
+     * Update strings.
75
+     */
76
+    ST_LOCAL virtual void doChangeLanguage() ST_ATTR_OVERRIDE { updateStrings(); }
77
 
78
         private:
79
 
80
@@ -130,6 +135,11 @@
81
      */
82
     ST_LOCAL void releaseResources();
83
 
84
+    /**
85
+     * Update strings.
86
+     */
87
+    ST_LOCAL void updateStrings();
88
+
89
         private:
90
 
91
     static StAtomic<int32_t> myInstancesNb; //!< shared counter for all instances
92
@@ -138,9 +148,9 @@
93
 
94
     struct {
95
 
96
-        StHandle<StInt32Param> Glasses;   //!< glasses type
97
-        StHandle<StInt32Param> RedCyan;   //!< Red-Cyan   filter
98
-        StHandle<StInt32Param> AmberBlue; //!< Amber-Blue filter
99
+        StHandle<StEnumParam> Glasses;   //!< glasses type
100
+        StHandle<StEnumParam> RedCyan;   //!< Red-Cyan   filter
101
+        StHandle<StEnumParam> AmberBlue; //!< Amber-Blue filter
102
 
103
     } params;
104
 
105
sview-15_11.tar.gz/StOutAnaglyph/StOutAnaglyph.rc -> sview-16_06.tar.gz/StOutAnaglyph/StOutAnaglyph.rc Changed
10
 
1
@@ -15,7 +15,7 @@
2
     BEGIN
3
       VALUE "FileDescription", "Anaglyph Renderer library\000"
4
       VALUE "FileVersion",     SVIEW_SDK_VER_STRING "\000"
5
-      VALUE "LegalCopyright",  "\251 2007-2015 Kirill Gavrilov\000"
6
+      VALUE "LegalCopyright",  "\251 2007-2016 Kirill Gavrilov\000"
7
       VALUE "ProductName",     "StOutAnaglyph\000"
8
       VALUE "ProductVersion",  SVIEW_SDK_VER_STRING "\000"
9
       VALUE "OfficialSite",    "www.sview.ru\000"
10
sview-15_11.tar.gz/StOutAnaglyph/StOutAnaglyph.vcxproj -> sview-16_06.tar.gz/StOutAnaglyph/StOutAnaglyph.vcxproj Changed
58
 
1
@@ -21,7 +21,7 @@
2
   <PropertyGroup Label="Globals">
3
     <ProjectGuid>{31E2A141-77B9-403B-BAAC-43D7EE2A6EA6}</ProjectGuid>
4
   </PropertyGroup>
5
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
6
+  <Import Project="$(SolutionDir)sView.Cpp.Default.props" />
7
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
8
     <ConfigurationType>DynamicLibrary</ConfigurationType>
9
     <CharacterSet>Unicode</CharacterSet>
10
@@ -101,6 +101,9 @@
11
       <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_x86;..\lib\WIN_vc_x86;$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
12
       <SubSystem>Windows</SubSystem>
13
     </Link>
14
+    <PostBuildEvent>
15
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
16
+    </PostBuildEvent>
17
   </ItemDefinitionGroup>
18
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
19
     <Midl>
20
@@ -136,6 +139,9 @@
21
       <GenerateDebugInformation>true</GenerateDebugInformation>
22
       <SubSystem>Windows</SubSystem>
23
     </Link>
24
+    <PostBuildEvent>
25
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
26
+    </PostBuildEvent>
27
   </ItemDefinitionGroup>
28
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
29
     <Midl>
30
@@ -169,6 +175,9 @@
31
       <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_AMD64;..\lib\WIN_vc_AMD64;$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
32
       <SubSystem>Windows</SubSystem>
33
     </Link>
34
+    <PostBuildEvent>
35
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
36
+    </PostBuildEvent>
37
   </ItemDefinitionGroup>
38
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
39
     <Midl>
40
@@ -204,11 +213,17 @@
41
       <GenerateDebugInformation>true</GenerateDebugInformation>
42
       <SubSystem>Windows</SubSystem>
43
     </Link>
44
+    <PostBuildEvent>
45
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
46
+    </PostBuildEvent>
47
   </ItemDefinitionGroup>
48
   <ItemGroup>
49
     <ClCompile Include="StOutAnaglyph.cpp" />
50
   </ItemGroup>
51
   <ItemGroup>
52
+    <ClInclude Include="StOutAnaglyph.h" />
53
+  </ItemGroup>
54
+  <ItemGroup>
55
     <ResourceCompile Include="StOutAnaglyph.rc" />
56
   </ItemGroup>
57
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
58
sview-15_11.tar.gz/StOutAnaglyph/StOutAnaglyph.vcxproj.filters -> sview-16_06.tar.gz/StOutAnaglyph/StOutAnaglyph.vcxproj.filters Changed
23
 
1
@@ -1,14 +1,14 @@
2
 <?xml version="1.0" encoding="utf-8"?>
3
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
   <ItemGroup>
5
-    <Filter Include="Source files">
6
-      <UniqueIdentifier>{CACACF6C-18DA-13DF-148A-3C969CC3F588}</UniqueIdentifier>
7
+    <Filter Include="Source Files">
8
+      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
9
+      <Extensions>cpp;c;cc;cxx;m;mm;def;odl;idl;hpj;bat;asm;asmx</Extensions>
10
+    </Filter>
11
+    <Filter Include="Header Files">
12
+      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
13
+      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
14
     </Filter>
15
-  </ItemGroup>
16
-  <ItemGroup>
17
-    <ClCompile Include="StOutAnaglyph.cpp">
18
-      <Filter>Source files</Filter>
19
-    </ClCompile>
20
   </ItemGroup>
21
   <ItemGroup>
22
     <ResourceCompile Include="StOutAnaglyph.rc" />
23
sview-15_11.tar.gz/StOutDistorted/StOutDistorted.cbp -> sview-16_06.tar.gz/StOutDistorted/StOutDistorted.cbp Changed
47
 
1
@@ -169,15 +169,14 @@
2
                    <Add option="-DST_HAVE_STCONFIG" />
3
                </Compiler>
4
                <Linker>
5
-                   <Add option="-s" />
6
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
7
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
8
                    <Add option="-framework Appkit" />
9
                    <Add option="-framework OpenGL" />
10
                    <Add library="objc" />
11
                </Linker>
12
                <ExtraCommands>
13
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
14
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
15
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
16
                </ExtraCommands>
17
            </Target>
18
            <Target title="MAC_gcc_DEBUG">
19
@@ -194,14 +193,14 @@
20
                    <Add option="-DST_HAVE_STCONFIG" />
21
                </Compiler>
22
                <Linker>
23
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
24
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
25
                    <Add option="-framework Appkit" />
26
                    <Add option="-framework OpenGL" />
27
                    <Add library="objc" />
28
                </Linker>
29
                <ExtraCommands>
30
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
31
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
32
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
33
                </ExtraCommands>
34
            </Target>
35
        </Build>
36
@@ -226,6 +225,10 @@
37
            <Option target="WIN_vc_AMD64_DEBUG" />
38
            <Option target="WIN_vc_AMD64" />
39
        </Unit>
40
+       <Unit filename="StProgramBarrel.cpp" />
41
+       <Unit filename="StProgramBarrel.h" />
42
+       <Unit filename="StProgramFlat.cpp" />
43
+       <Unit filename="StProgramFlat.h" />
44
        <Unit filename="lang/chinese/language.lng">
45
            <Option target="&lt;{~None~}&gt;" />
46
        </Unit>
47
sview-15_11.tar.gz/StOutDistorted/StOutDistorted.cpp -> sview-16_06.tar.gz/StOutDistorted/StOutDistorted.cpp Changed
725
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StOutDistorted, class providing stereoscopic output in anamorph side by side format using StCore toolkit.
4
- * Copyright © 2013-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2013-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -9,6 +9,9 @@
10
 
11
 #include "StOutDistorted.h"
12
 
13
+#include "StProgramBarrel.h"
14
+#include "StProgramFlat.h"
15
+
16
 #include <StGL/StGLContext.h>
17
 #include <StGL/StGLEnums.h>
18
 #include <StGL/StGLProgram.h>
19
@@ -39,8 +42,6 @@
20
 
21
     static const char ST_SETTING_DEVICE_ID[] = "deviceId";
22
     static const char ST_SETTING_WINDOWPOS[] = "windowPos";
23
-    static const char ST_SETTING_LAYOUT[]    = "layout";
24
-    static const char ST_SETTING_MONOCLONE[] = "monoClone";
25
     static const char ST_SETTING_MARGINS[]   = "margins";
26
     static const char ST_SETTING_WARP_COEF[] = "warpCoef";
27
     static const char ST_SETTING_CHROME_AB[] = "chromeAb";
28
@@ -51,6 +52,8 @@
29
         STTR_DISTORTED_DESC     = 1001,
30
         STTR_OCULUS_NAME        = 1002,
31
         STTR_OCULUS_DESC        = 1003,
32
+        STTR_S3DV_NAME          = 1004,
33
+        STTR_S3DV_DESC          = 1005,
34
 
35
         // parameters
36
         STTR_PARAMETER_LAYOUT     = 1110,
37
@@ -68,182 +71,8 @@
38
         STTR_PLUGIN_DESCRIPTION = 2002,
39
     };
40
 
41
-    static const char VERTEX_SHADER[] =
42
-       "attribute vec4 vVertex;"
43
-       "attribute vec2 vTexCoord;"
44
-       "varying vec2 fTexCoord;"
45
-       "void main(void) {"
46
-       "    fTexCoord = vTexCoord;"
47
-       "    gl_Position = vVertex;"
48
-       "}";
49
-
50
 }
51
 
52
-/**
53
- * Flat GLSL program.
54
- */
55
-class StProgramFlat : public StGLProgram {
56
-
57
-        private:
58
-
59
-    StGLVarLocation atrVVertexLoc;
60
-    StGLVarLocation atrVTexCoordLoc;
61
-
62
-        public:
63
-
64
-    ST_LOCAL StProgramFlat() : StGLProgram("StProgramFlat") {}
65
-    ST_LOCAL StGLVarLocation getVVertexLoc()   const { return atrVVertexLoc; }
66
-    ST_LOCAL StGLVarLocation getVTexCoordLoc() const { return atrVTexCoordLoc; }
67
-
68
-    ST_LOCAL virtual bool init(StGLContext& theCtx) {
69
-        const char FRAGMENT_SHADER[] =
70
-           "uniform sampler2D texR, texL;"
71
-           "varying vec2 fTexCoord;"
72
-           "void main(void) {"
73
-           "    gl_FragColor = texture2D(texR, fTexCoord);"
74
-           "}";
75
-
76
-        StGLVertexShader aVertexShader(StGLProgram::getTitle());
77
-        StGLAutoRelease aTmp1(theCtx, aVertexShader);
78
-        aVertexShader.init(theCtx, VERTEX_SHADER);
79
-
80
-        StGLFragmentShader aFragmentShader(StGLProgram::getTitle());
81
-        StGLAutoRelease aTmp2(theCtx, aFragmentShader);
82
-        aFragmentShader.init(theCtx, FRAGMENT_SHADER);
83
-        if(!StGLProgram::create(theCtx)
84
-           .attachShader(theCtx, aVertexShader)
85
-           .attachShader(theCtx, aFragmentShader)
86
-           .link(theCtx)) {
87
-            return false;
88
-        }
89
-
90
-        atrVVertexLoc   = StGLProgram::getAttribLocation(theCtx, "vVertex");
91
-        atrVTexCoordLoc = StGLProgram::getAttribLocation(theCtx, "vTexCoord");
92
-        return atrVVertexLoc.isValid() && atrVTexCoordLoc.isValid();
93
-    }
94
-
95
-};
96
-
97
-/**
98
- * Distortion GLSL program.
99
- */
100
-class StProgramBarrel : public StGLProgram {
101
-
102
-        public:
103
-
104
-    ST_LOCAL StProgramBarrel() : StGLProgram("StProgramBarrel") {}
105
-    ST_LOCAL StGLVarLocation getVVertexLoc()   const { return atrVVertexLoc; }
106
-    ST_LOCAL StGLVarLocation getVTexCoordLoc() const { return atrVTexCoordLoc; }
107
-
108
-    ST_LOCAL virtual bool init(StGLContext& theCtx) {
109
-        const char FRAGMENT_SHADER[] =
110
-           "uniform sampler2D texR, texL;"
111
-           "varying vec2 fTexCoord;"
112
-
113
-           "uniform vec4 uChromAb;"
114
-           "uniform vec4 uWarpCoef;"
115
-           "uniform vec2 uLensCenter;"
116
-           "uniform vec2 uScale;"
117
-           "uniform vec2 uScaleIn;"
118
-
119
-           "void main(void) {"
120
-           "    vec2 aTheta = (fTexCoord - uLensCenter) * uScaleIn;" // scales to [-1, 1]
121
-           "    float rSq = aTheta.x * aTheta.x + aTheta.y * aTheta.y;"
122
-           "    vec2 aTheta1 = aTheta * (uWarpCoef.x + uWarpCoef.y * rSq +"
123
-           "                             uWarpCoef.z * rSq * rSq +"
124
-           "                             uWarpCoef.w * rSq * rSq * rSq);"
125
-           "    vec2 aThetaBlue = aTheta1 * (uChromAb.z + uChromAb.w * rSq);"
126
-           "    vec2 aTCrdsBlue = uLensCenter + uScale * aThetaBlue;"
127
-           "    if(any(bvec2(clamp(aTCrdsBlue, vec2(0.0, 0.0), vec2(1.0, 1.0)) - aTCrdsBlue))) {"
128
-           "        gl_FragColor = vec4(0.0, 0.0, 0.0, 1.0);"
129
-           "        return;"
130
-           "    }"
131
-
132
-           "    vec2 aTCrdsGreen = uLensCenter + uScale * aTheta1;"
133
-           "    vec2 aThetaRed = aTheta1 * (uChromAb.x + uChromAb.y * rSq);"
134
-           "    vec2 aTCrdsRed = uLensCenter + uScale * aThetaRed;"
135
-           "    gl_FragColor = vec4(texture2D(texR, aTCrdsRed  ).r,"
136
-           "                        texture2D(texR, aTCrdsGreen).g,"
137
-           "                        texture2D(texR, aTCrdsBlue ).b, 1.0);"
138
-           "}";
139
-
140
-        StGLVertexShader aVertexShader(StGLProgram::getTitle());
141
-        StGLAutoRelease aTmp1(theCtx, aVertexShader);
142
-        aVertexShader.init(theCtx, VERTEX_SHADER);
143
-
144
-        StGLFragmentShader aFragmentShader(StGLProgram::getTitle());
145
-        StGLAutoRelease aTmp2(theCtx, aFragmentShader);
146
-        aFragmentShader.init(theCtx, FRAGMENT_SHADER);
147
-        if(!StGLProgram::create(theCtx)
148
-           .attachShader(theCtx, aVertexShader)
149
-           .attachShader(theCtx, aFragmentShader)
150
-           .link(theCtx)) {
151
-            return false;
152
-        }
153
-
154
-        atrVVertexLoc    = StGLProgram::getAttribLocation (theCtx, "vVertex");
155
-        atrVTexCoordLoc  = StGLProgram::getAttribLocation (theCtx, "vTexCoord");
156
-        uniChromAbLoc    = StGLProgram::getUniformLocation(theCtx, "uChromAb");
157
-        uniWarpCoeffLoc  = StGLProgram::getUniformLocation(theCtx, "uWarpCoef");
158
-        uniLensCenterLoc = StGLProgram::getUniformLocation(theCtx, "uLensCenter");
159
-        uniScaleLoc      = StGLProgram::getUniformLocation(theCtx, "uScale");
160
-        uniScaleInLoc    = StGLProgram::getUniformLocation(theCtx, "uScaleIn");
161
-        return atrVVertexLoc.isValid() && atrVTexCoordLoc.isValid();
162
-    }
163
-
164
-    /**
165
-     * Setup distortion coefficients.
166
-     */
167
-    ST_LOCAL void setupCoeff(StGLContext&    theCtx,
168
-                             const StGLVec4& theVec) {
169
-        use(theCtx);
170
-        theCtx.core20fwd->glUniform4fv(uniWarpCoeffLoc, 1, theVec);
171
-        unuse(theCtx);
172
-    }
173
-
174
-    /**
175
-     * Setup Chrome coefficients.
176
-     */
177
-    ST_LOCAL void setupChrome(StGLContext&    theCtx,
178
-                              const StGLVec4& theVec) {
179
-        use(theCtx);
180
-        theCtx.core20fwd->glUniform4fv(uniChromAbLoc, 1, theVec);
181
-        unuse(theCtx);
182
-    }
183
-
184
-    ST_LOCAL void setLensCenter(StGLContext&    theCtx,
185
-                                const StGLVec2& theVec) {
186
-        use(theCtx);
187
-        theCtx.core20fwd->glUniform2fv(uniLensCenterLoc, 1, theVec);
188
-        unuse(theCtx);
189
-    }
190
-
191
-    ST_LOCAL void setScale(StGLContext&    theCtx,
192
-                           const StGLVec2& theVec) {
193
-        use(theCtx);
194
-        theCtx.core20fwd->glUniform2fv(uniScaleLoc, 1, theVec);
195
-        unuse(theCtx);
196
-    }
197
-
198
-    ST_LOCAL void setScaleIn(StGLContext&    theCtx,
199
-                             const StGLVec2& theVec) {
200
-        use(theCtx);
201
-        theCtx.core20fwd->glUniform2fv(uniScaleInLoc, 1, theVec);
202
-        unuse(theCtx);
203
-    }
204
-
205
-        private:
206
-
207
-    StGLVarLocation atrVVertexLoc;
208
-    StGLVarLocation atrVTexCoordLoc;
209
-    StGLVarLocation uniChromAbLoc;
210
-    StGLVarLocation uniWarpCoeffLoc;
211
-    StGLVarLocation uniLensCenterLoc;
212
-    StGLVarLocation uniScaleLoc;
213
-    StGLVarLocation uniScaleInLoc;
214
-
215
-};
216
-
217
 StAtomic<int32_t> StOutDistorted::myInstancesNb(0);
218
 
219
 StString StOutDistorted::getRendererAbout() const {
220
@@ -257,6 +86,7 @@
221
 const char* StOutDistorted::getDeviceId() const {
222
     switch(myDevice) {
223
         case DEVICE_OCULUS:    return "Oculus";
224
+        case DEVICE_S3DV:      return "S3DV";
225
         case DEVICE_DISTORTED:
226
         default:               return "Distorted";
227
     }
228
@@ -272,6 +102,11 @@
229
             myToResetDevice = true;
230
         }
231
         myDevice = DEVICE_OCULUS;
232
+    } else if(theDevice == "S3DV") {
233
+        if(myDevice != DEVICE_S3DV) {
234
+            myToResetDevice = true;
235
+        }
236
+        myDevice = DEVICE_S3DV;
237
     } else if(theDevice == "Distorted") {
238
         if(myDevice != DEVICE_DISTORTED) {
239
             myToResetDevice = true;
240
@@ -288,12 +123,42 @@
241
 }
242
 
243
 void StOutDistorted::getOptions(StParamsList& theList) const {
244
-    if(myDevice != DEVICE_OCULUS) {
245
+    if(myDevice != DEVICE_OCULUS
246
+    && myDevice != DEVICE_S3DV) {
247
         theList.add(params.Layout);
248
     }
249
     theList.add(params.MonoClone);
250
 }
251
 
252
+void StOutDistorted::updateStrings() {
253
+    StTranslations aLangMap(getResourceManager(), ST_OUT_PLUGIN_NAME);
254
+
255
+    myDevices[DEVICE_DISTORTED]->Name = aLangMap.changeValueId(STTR_DISTORTED_NAME, "TV (parallel pair)");
256
+    myDevices[DEVICE_DISTORTED]->Desc = aLangMap.changeValueId(STTR_DISTORTED_DESC, "Distorted Output");
257
+    myDevices[DEVICE_OCULUS]   ->Name = aLangMap.changeValueId(STTR_OCULUS_NAME, "Oculus Rift");
258
+    myDevices[DEVICE_OCULUS]   ->Desc = aLangMap.changeValueId(STTR_OCULUS_DESC, "Distorted Output");
259
+    if(myDevices.size() > DEVICE_S3DV) {
260
+        myDevices[DEVICE_S3DV] ->Name = "S3DV";             //aLangMap.changeValueId(STTR_S3DV_NAME, "S3DV");
261
+        myDevices[DEVICE_S3DV] ->Desc = "Distorted Output"; //aLangMap.changeValueId(STTR_S3DV_DESC, "Distorted Output");
262
+    }
263
+
264
+    params.MonoClone->setName(aLangMap.changeValueId(STTR_PARAMETER_MONOCLONE, "Show Mono in Stereo"));
265
+
266
+    params.Layout->setName(aLangMap.changeValueId(STTR_PARAMETER_LAYOUT, "Layout"));
267
+    params.Layout->defineOption(LAYOUT_SIDE_BY_SIDE_ANAMORPH, aLangMap.changeValueId(STTR_PARAMETER_LAYOUT_SBS_ANAMORPH,       "Side-by-Side (Anamorph)"));
268
+    params.Layout->defineOption(LAYOUT_OVER_UNDER_ANAMORPH,   aLangMap.changeValueId(STTR_PARAMETER_LAYOUT_OVERUNDER_ANAMORPH, "Top-and-Bottom (Anamorph)"));
269
+    params.Layout->defineOption(LAYOUT_SIDE_BY_SIDE,          aLangMap.changeValueId(STTR_PARAMETER_LAYOUT_SBS,                "Side-by-Side"));
270
+    params.Layout->defineOption(LAYOUT_OVER_UNDER,            aLangMap.changeValueId(STTR_PARAMETER_LAYOUT_OVERUNDER,          "Top-and-Bottom") + (myCanHdmiPack ? " [HDMI]" : ""));
271
+
272
+    // about string
273
+    StString& aTitle     = aLangMap.changeValueId(STTR_PLUGIN_TITLE,   "sView - Distorted Output module");
274
+    StString& aVerString = aLangMap.changeValueId(STTR_VERSION_STRING, "version");
275
+    StString& aDescr     = aLangMap.changeValueId(STTR_PLUGIN_DESCRIPTION,
276
+        "(C) {0} Kirill Gavrilov <{1}>\nOfficial site: {2}\n\nThis library is distributed under LGPL3.0");
277
+    myAbout = aTitle + '\n' + aVerString + " " + StVersionInfo::getSDKVersionString() + "\n \n"
278
+            + aDescr.format("2013-2016", "kirill@sview.ru", "www.sview.ru");
279
+}
280
+
281
 StOutDistorted::StOutDistorted(const StHandle<StResourceManager>& theResMgr,
282
                                const StNativeWin_t                theParentWindow)
283
 : StWindow(theResMgr, theParentWindow),
284
@@ -321,40 +186,36 @@
285
   myToCompressMem(myInstancesNb.increment() > 1),
286
   myIsBroken(false),
287
   myIsStereoOn(false),
288
-  myIsHdmiPack(false) {
289
+  myCanHdmiPack(false),
290
+  myIsHdmiPack(false),
291
+  myIsForcedFboUsage(false) {
292
 #ifdef ST_HAVE_LIBOVR
293
     myOvrSwapFbo[0] = 0;
294
     myOvrSwapFbo[1] = 0;
295
 #endif
296
     const StSearchMonitors& aMonitors = StWindow::getMonitors();
297
-    StTranslations aLangMap(getResourceManager(), ST_OUT_PLUGIN_NAME);
298
-
299
-    // about string
300
-    StString& aTitle     = aLangMap.changeValueId(STTR_PLUGIN_TITLE,   "sView - Distorted Output module");
301
-    StString& aVerString = aLangMap.changeValueId(STTR_VERSION_STRING, "version");
302
-    StString& aDescr     = aLangMap.changeValueId(STTR_PLUGIN_DESCRIPTION,
303
-        "(C) {0} Kirill Gavrilov <{1}>\nOfficial site: {2}\n\nThis library is distributed under LGPL3.0");
304
-    myAbout = aTitle + '\n' + aVerString + " " + StVersionInfo::getSDKVersionString() + "\n \n"
305
-            + aDescr.format("2013-2015", "kirill@sview.ru", "www.sview.ru");
306
 
307
     // detect connected displays
308
     int aSupportOculus   = ST_DEVICE_SUPPORT_NONE;
309
     int aSupportParallel = ST_DEVICE_SUPPORT_NONE;
310
-    bool isHdmiPack = false;
311
+    int aSupportS3DV     = ST_DEVICE_SUPPORT_NONE;
312
     for(size_t aMonIter = 0; aMonIter < aMonitors.size(); ++aMonIter) {
313
         const StMonitor& aMon = aMonitors[aMonIter];
314
         if(aMon.getPnPId().isStartsWith(stCString("OVR"))) {
315
             // Oculus Rift
316
             aSupportOculus = ST_DEVICE_SUPPORT_HIGHT;
317
             break;
318
+        } else if(aMon.getPnPId().isEquals(stCString("ST@S3DV"))) {
319
+            aSupportS3DV = ST_DEVICE_SUPPORT_PREFER;
320
+            break;
321
         } else if(aMon.getVRect().width()  == 1920
322
                && aMon.getVRect().height() == 2205) {
323
             aSupportParallel = ST_DEVICE_SUPPORT_HIGHT;
324
-            isHdmiPack = true;
325
+            myCanHdmiPack = true;
326
         } else if(aMon.getVRect().width()  == 1280
327
                && aMon.getVRect().height() == 1470) {
328
             aSupportParallel = ST_DEVICE_SUPPORT_HIGHT;
329
-            isHdmiPack = true;
330
+            myCanHdmiPack = true;
331
         }
332
     }
333
 
334
@@ -370,40 +231,40 @@
335
     // devices list
336
     StHandle<StOutDevice> aDevDistorted = new StOutDevice();
337
     aDevDistorted->PluginId = ST_OUT_PLUGIN_NAME;
338
-    aDevDistorted->DeviceId = "Distorted";
339
+    aDevDistorted->DeviceId = stCString("Distorted");
340
     aDevDistorted->Priority = aSupportParallel;
341
-    aDevDistorted->Name     = aLangMap.changeValueId(STTR_DISTORTED_NAME, "TV (parallel pair)");
342
-    aDevDistorted->Desc     = aLangMap.changeValueId(STTR_DISTORTED_DESC, "Distorted Output");
343
+    aDevDistorted->Name     = stCString("TV (parallel pair)");
344
     myDevices.add(aDevDistorted);
345
 
346
     StHandle<StOutDevice> aDevOculus = new StOutDevice();
347
     aDevOculus->PluginId = ST_OUT_PLUGIN_NAME;
348
-    aDevOculus->DeviceId = "Oculus";
349
+    aDevOculus->DeviceId = stCString("Oculus");
350
     aDevOculus->Priority = aSupportOculus;
351
-    aDevOculus->Name     = aLangMap.changeValueId(STTR_OCULUS_NAME, "Oculus Rift");
352
-    aDevOculus->Desc     = aLangMap.changeValueId(STTR_OCULUS_DESC, "Distorted Output");
353
+    aDevOculus->Name     = stCString("Oculus Rift");
354
     myDevices.add(aDevOculus);
355
 
356
+    if(aSupportS3DV != ST_DEVICE_SUPPORT_NONE) {
357
+        StHandle<StOutDevice> aDevS3dv = new StOutDevice();
358
+        aDevS3dv->PluginId = ST_OUT_PLUGIN_NAME;
359
+        aDevS3dv->DeviceId = stCString("S3DV");
360
+        aDevS3dv->Priority = aSupportS3DV;
361
+        aDevS3dv->Name     = stCString("S3DV");
362
+        myDevices.add(aDevS3dv);
363
+    }
364
+
365
     // load device settings
366
     mySettings->loadInt32(ST_SETTING_DEVICE_ID, myDevice);
367
     if(myDevice == DEVICE_AUTO) {
368
         myDevice = DEVICE_DISTORTED;
369
+        if(aSupportS3DV != ST_DEVICE_SUPPORT_NONE) {
370
+            myDevice = DEVICE_S3DV;
371
+        }
372
     }
373
 
374
     // Distortion parameters
375
-    params.MonoClone = new StBoolParamNamed(false, aLangMap.changeValueId(STTR_PARAMETER_MONOCLONE, "Show Mono in Stereo"));
376
-    mySettings->loadParam(ST_SETTING_MONOCLONE, params.MonoClone);
377
-
378
+    params.MonoClone = new StBoolParamNamed(false, stCString("monoClone"), stCString("monoClone"));
379
     // Layout option
380
-    StHandle<StEnumParam> aLayoutParam = new StEnumParam(isHdmiPack ? LAYOUT_OVER_UNDER : LAYOUT_SIDE_BY_SIDE_ANAMORPH,
381
-                                                         aLangMap.changeValueId(STTR_PARAMETER_LAYOUT, "Layout"));
382
-    aLayoutParam->changeValues().add(aLangMap.changeValueId(STTR_PARAMETER_LAYOUT_SBS_ANAMORPH,       "Side-by-Side (Anamorph)"));
383
-    aLayoutParam->changeValues().add(aLangMap.changeValueId(STTR_PARAMETER_LAYOUT_OVERUNDER_ANAMORPH, "Top-and-Bottom (Anamorph)"));
384
-    aLayoutParam->changeValues().add(aLangMap.changeValueId(STTR_PARAMETER_LAYOUT_SBS,                "Side-by-Side"));
385
-    aLayoutParam->changeValues().add(aLangMap.changeValueId(STTR_PARAMETER_LAYOUT_OVERUNDER,          "Top-and-Bottom") + (isHdmiPack ? " [HDMI]" : ""));
386
-    params.Layout = aLayoutParam;
387
-    mySettings->loadParam(ST_SETTING_LAYOUT, params.Layout);
388
-
389
+    params.Layout = new StEnumParam(myCanHdmiPack ? LAYOUT_OVER_UNDER : LAYOUT_SIDE_BY_SIDE_ANAMORPH, stCString("layout"), stCString("layout"));
390
     // load window position
391
     if(isMovable()) {
392
         StRect<int32_t> aRect;
393
@@ -412,7 +273,10 @@
394
         }
395
         StWindow::setPlacement(aRect, true);
396
     }
397
+    mySettings->loadParam(params.MonoClone);
398
+    mySettings->loadParam(params.Layout);
399
     checkHdmiPack();
400
+    updateStrings();
401
     StWindow::setTitle("sView - Distorted Renderer");
402
 
403
     StRectI_t aMargins;
404
@@ -485,8 +349,8 @@
405
     aMargins.top()    = myBarMargins.top;
406
     aMargins.bottom() = myBarMargins.bottom;
407
 
408
-    mySettings->saveParam(ST_SETTING_LAYOUT,     params.Layout);
409
-    mySettings->saveParam(ST_SETTING_MONOCLONE,  params.MonoClone);
410
+    mySettings->saveParam(params.Layout);
411
+    mySettings->saveParam(params.MonoClone);
412
     mySettings->saveInt32Rect(ST_SETTING_MARGINS,   aMargins);
413
     mySettings->saveFloatVec4(ST_SETTING_WARP_COEF, myBarrelCoef);
414
     mySettings->saveFloatVec4(ST_SETTING_CHROME_AB, myChromAb);
415
@@ -639,6 +503,9 @@
416
                                                   ((ovrGLTexture* )&myOvrSwapTexture->Textures[1])->OGL.TexId, 0);
417
         myContext->stglBindFramebufferRead(anFboReadBack);
418
     }
419
+#else
420
+    (void )myOvrSizeX;
421
+    (void )myOvrSizeY;
422
 #endif
423
     return true;
424
 }
425
@@ -649,10 +516,17 @@
426
 
427
 void StOutDistorted::showCursor(const bool theToShow) {
428
     myToShowCursor = theToShow;
429
+    if(myDevice == DEVICE_S3DV) {
430
+        StWindow::showCursor(theToShow);
431
+    }
432
 }
433
 
434
 void StOutDistorted::stglDrawCursor(const StPointD_t&  theCursorPos,
435
                                     const unsigned int theView) {
436
+    if(myDevice == DEVICE_S3DV) {
437
+        return;
438
+    }
439
+
440
     StWindow::showCursor(false);
441
     if(!myToShowCursor
442
     || !myCursor->isValid()) {
443
@@ -665,13 +539,13 @@
444
     StArray<StGLVec4> aVerts(4);
445
     const GLfloat aCurLeft = GLfloat(-1.0 + theCursorPos.x() * 2.0);
446
     const GLfloat aCurTop  = GLfloat( 1.0 - theCursorPos.y() * 2.0);
447
-    const int aVPSizeX = myOvrSizeX != 0 ? myOvrSizeX : myFrBuffer->getVPSizeX();
448
-    const int aVPSizeY = myOvrSizeY != 0 ? myOvrSizeY : myFrBuffer->getVPSizeY();
449
+    const int aVPSizeX = myContext->stglViewport().width();
450
+    const int aVPSizeY = myContext->stglViewport().height();
451
 
452
     GLfloat aCurWidth  = 2.0f * GLfloat(myCursor->getSizeX()) / GLfloat(aVPSizeX);
453
     GLfloat aCurHeight = 2.0f * GLfloat(myCursor->getSizeY()) / GLfloat(aVPSizeY);
454
     if(myDevice != DEVICE_OCULUS) {
455
-        switch(params.Layout->getValue()) {
456
+        switch(getPairLayout()) {
457
             case LAYOUT_SIDE_BY_SIDE_ANAMORPH:
458
                 aCurWidth  *= 0.5;
459
                 break;
460
@@ -775,6 +649,96 @@
461
     }
462
 }
463
 
464
+void StOutDistorted::stglDrawLibOVR() {
465
+#ifdef ST_HAVE_LIBOVR
466
+    const StGLBoxPx  aVPBoth    = StWindow::stglViewport(ST_WIN_ALL);
467
+    const StPointD_t aCursorPos = StWindow::getMousePos();
468
+    if(myOvrHmd == NULL
469
+    || myIsBroken) {
470
+        return;
471
+    }
472
+
473
+    myToReduceGui = true;
474
+    ovrHmdDesc anHmdDesc = ovr_GetHmdDesc(myOvrHmd);
475
+    ovrEyeRenderDesc anEyeRenderDesc[2] = {
476
+        ovr_GetRenderDesc(myOvrHmd, ovrEye_Left,  anHmdDesc.DefaultEyeFov[0]),
477
+        ovr_GetRenderDesc(myOvrHmd, ovrEye_Right, anHmdDesc.DefaultEyeFov[1])
478
+    };
479
+    ovrViewScaleDesc aViewScaleDesc;
480
+    aViewScaleDesc.HmdSpaceToWorldScaleInMeters = 1.0f;
481
+    aViewScaleDesc.HmdToEyeViewOffset[0] = anEyeRenderDesc[0].HmdToEyeViewOffset;
482
+    aViewScaleDesc.HmdToEyeViewOffset[1] = anEyeRenderDesc[1].HmdToEyeViewOffset;
483
+
484
+    const StGLBoxPx aViewPortL = {{ 0, 0,
485
+                                    myOvrSizeX, myOvrSizeY }};
486
+    const StGLBoxPx aViewPortR = {{ myOvrSizeX, 0,
487
+                                    myOvrSizeX, myOvrSizeY }};
488
+
489
+    ovrLayerEyeFov aLayerFov;
490
+    aLayerFov.Header.Type       = ovrLayerType_EyeFov;
491
+    aLayerFov.Header.Flags      = ovrLayerFlag_TextureOriginAtBottomLeft;
492
+    aLayerFov.ColorTexture[0]   = myOvrSwapTexture;
493
+    aLayerFov.ColorTexture[1]   = NULL;
494
+    aLayerFov.Viewport[0].Pos.x = aViewPortL.x();
495
+    aLayerFov.Viewport[0].Pos.y = aViewPortL.y();
496
+    aLayerFov.Viewport[0].Size.w= aViewPortL.width();
497
+    aLayerFov.Viewport[0].Size.h= aViewPortL.height();
498
+    aLayerFov.Viewport[1].Pos.x = aViewPortR.x();
499
+    aLayerFov.Viewport[1].Pos.y = aViewPortR.y();
500
+    aLayerFov.Viewport[1].Size.w= aViewPortR.width();
501
+    aLayerFov.Viewport[1].Size.h= aViewPortR.height();
502
+    aLayerFov.Fov[0]            = anHmdDesc.DefaultEyeFov[0];
503
+    aLayerFov.Fov[1]            = anHmdDesc.DefaultEyeFov[1];
504
+    aLayerFov.SensorSampleTime  = ovr_GetTimeInSeconds();
505
+    const double aPredictedTime = ovr_GetPredictedDisplayTime(myOvrHmd, 0);
506
+    ovrTrackingState anHmdState = ovr_GetTrackingState(myOvrHmd, aPredictedTime, ovrTrue);
507
+    ovr_CalcEyePoses(anHmdState.HeadPose.ThePose, aViewScaleDesc.HmdToEyeViewOffset, aLayerFov.RenderPose);
508
+    myOvrOrient = StQuaternion<double>((double )aLayerFov.RenderPose[0].Orientation.x,
509
+                                       (double )aLayerFov.RenderPose[0].Orientation.y,
510
+                                       (double )aLayerFov.RenderPose[0].Orientation.z,
511
+                                       (double )aLayerFov.RenderPose[0].Orientation.w);
512
+
513
+    // draw Left View into virtual frame buffer
514
+    myContext->stglResizeViewport(aViewPortL);
515
+    myContext->stglSetScissorRect(aViewPortL, false);
516
+    myContext->stglBindFramebuffer(myOvrSwapFbo[myOvrSwapTexture->CurrentIndex]);
517
+    StWindow::signals.onRedraw(ST_DRAW_LEFT);
518
+    stglDrawCursor(aCursorPos, ST_DRAW_LEFT);
519
+
520
+    // draw Right View into virtual frame buffer
521
+    myContext->stglResizeViewport(aViewPortR);
522
+    myContext->stglSetScissorRect(aViewPortR, false);
523
+    StWindow::signals.onRedraw(ST_DRAW_RIGHT);
524
+    stglDrawCursor(aCursorPos, ST_DRAW_RIGHT);
525
+    myContext->stglBindFramebuffer(StGLFrameBuffer::NO_FRAMEBUFFER);
526
+
527
+    ovrLayerHeader* aLayers = &aLayerFov.Header;
528
+    ovrResult anOvrRes = ovr_SubmitFrame(myOvrHmd, 0, &aViewScaleDesc, &aLayers, 1);
529
+    myOvrSwapTexture->CurrentIndex = myOvrSwapTexture->CurrentIndex == 0 ? 1 : 0;
530
+    if(!OVR_SUCCESS(anOvrRes)) {
531
+        myMsgQueue->pushError(stCString("StOutDistorted, Failed to submit swap texture!"));
532
+        myIsBroken = true;
533
+    }
534
+
535
+    myContext->stglResizeViewport(aVPBoth);
536
+    myContext->stglResetScissorRect();
537
+    myContext->core20fwd->glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
538
+
539
+    myContext->stglBindFramebufferRead(myOvrMirrorFbo);
540
+    myContext->stglBindFramebufferDraw(StGLFrameBuffer::NO_FRAMEBUFFER);
541
+    GLint aSrcSizeX = myOvrMirrorTexture->OGL.Header.TextureSize.w;
542
+    GLint aSrcSizeY = myOvrMirrorTexture->OGL.Header.TextureSize.h;
543
+    myContext->arbFbo->glBlitFramebuffer(0, aSrcSizeY, aSrcSizeX, 0,
544
+                                         0, 0, aVPBoth.width(), aVPBoth.height(),
545
+                                         GL_COLOR_BUFFER_BIT, GL_NEAREST);
546
+    myContext->stglBindFramebufferRead(StGLFrameBuffer::NO_FRAMEBUFFER);
547
+
548
+    myFPSControl.sleepToTarget(); // decrease FPS to target by thread sleeps
549
+    StWindow::stglSwap(ST_WIN_ALL);
550
+    ++myFPSControl;
551
+#endif
552
+}
553
+
554
 void StOutDistorted::stglDraw() {
555
     myFPSControl.setTargetFPS(StWindow::getTargetFps());
556
 
557
@@ -801,15 +765,16 @@
558
     }
559
 
560
     StWinSplit aWinSplit = StWinSlave_splitOff;
561
+    const Layout aPairLayout = getPairLayout();
562
     if(myIsStereoOn
563
     && (myDevice == DEVICE_OCULUS
564
-     || params.Layout->getValue() == LAYOUT_SIDE_BY_SIDE
565
-     || params.Layout->getValue() == LAYOUT_OVER_UNDER)) {
566
-        aWinSplit = params.Layout->getValue() == LAYOUT_OVER_UNDER && myDevice != DEVICE_OCULUS
567
+     || aPairLayout == LAYOUT_SIDE_BY_SIDE
568
+     || aPairLayout == LAYOUT_OVER_UNDER)) {
569
+        aWinSplit = aPairLayout == LAYOUT_OVER_UNDER && myDevice != DEVICE_OCULUS
570
                   ? StWinSlave_splitVertical
571
                   : StWinSlave_splitHorizontal;
572
         if(myDevice != DEVICE_OCULUS
573
-        && params.Layout->getValue() == LAYOUT_OVER_UNDER
574
+        && aPairLayout == LAYOUT_OVER_UNDER
575
         && myIsHdmiPack) {
576
             // detect special HDMI 3D modes
577
             const StRectI_t aRect = StWindow::getPlacement();
578
@@ -821,6 +786,9 @@
579
         }
580
     }
581
     StWindow::setAttribute(StWinAttr_SplitCfg, aWinSplit);
582
+    if(myDevice == DEVICE_S3DV) {
583
+        StWindow::setHardwareStereoOn(myIsStereoOn);
584
+    }
585
 
586
     if(!StWindow::stglMakeCurrent(ST_WIN_MASTER)) {
587
         StWindow::signals.onRedraw(ST_DRAW_MONO);
588
@@ -846,99 +814,21 @@
589
         return;
590
     }
591
 
592
-    const StGLBoxPx  aVPSlave   = StWindow::stglViewport(ST_WIN_SLAVE);
593
-    const StGLBoxPx  aVPBoth    = StWindow::stglViewport(ST_WIN_ALL);
594
-    const StPointD_t aCursorPos = StWindow::getMousePos();
595
-
596
 #ifdef ST_HAVE_LIBOVR
597
     if(myOvrHmd != NULL
598
     && !myIsBroken) {
599
-        myToReduceGui = true;
600
-        ovrHmdDesc anHmdDesc = ovr_GetHmdDesc(myOvrHmd);
601
-        ovrEyeRenderDesc anEyeRenderDesc[2] = {
602
-            ovr_GetRenderDesc(myOvrHmd, ovrEye_Left,  anHmdDesc.DefaultEyeFov[0]),
603
-            ovr_GetRenderDesc(myOvrHmd, ovrEye_Right, anHmdDesc.DefaultEyeFov[1])
604
-        };
605
-        ovrViewScaleDesc aViewScaleDesc;
606
-        aViewScaleDesc.HmdSpaceToWorldScaleInMeters = 1.0f;
607
-        aViewScaleDesc.HmdToEyeViewOffset[0] = anEyeRenderDesc[0].HmdToEyeViewOffset;
608
-        aViewScaleDesc.HmdToEyeViewOffset[1] = anEyeRenderDesc[1].HmdToEyeViewOffset;
609
-
610
-        const StGLBoxPx aViewPortL = {{ 0, 0,
611
-                                        myOvrSizeX, myOvrSizeY }};
612
-        const StGLBoxPx aViewPortR = {{ myOvrSizeX, 0,
613
-                                        myOvrSizeX, myOvrSizeY }};
614
-
615
-        ovrLayerEyeFov aLayerFov;
616
-        aLayerFov.Header.Type       = ovrLayerType_EyeFov;
617
-        aLayerFov.Header.Flags      = ovrLayerFlag_TextureOriginAtBottomLeft;
618
-        aLayerFov.ColorTexture[0]   = myOvrSwapTexture;
619
-        aLayerFov.ColorTexture[1]   = NULL;
620
-        aLayerFov.Viewport[0].Pos.x = aViewPortL.x();
621
-        aLayerFov.Viewport[0].Pos.y = aViewPortL.y();
622
-        aLayerFov.Viewport[0].Size.w= aViewPortL.width();
623
-        aLayerFov.Viewport[0].Size.h= aViewPortL.height();
624
-        aLayerFov.Viewport[1].Pos.x = aViewPortR.x();
625
-        aLayerFov.Viewport[1].Pos.y = aViewPortR.y();
626
-        aLayerFov.Viewport[1].Size.w= aViewPortR.width();
627
-        aLayerFov.Viewport[1].Size.h= aViewPortR.height();
628
-        aLayerFov.Fov[0]            = anHmdDesc.DefaultEyeFov[0];
629
-        aLayerFov.Fov[1]            = anHmdDesc.DefaultEyeFov[1];
630
-        aLayerFov.SensorSampleTime  = ovr_GetTimeInSeconds();
631
-        const double aPredictedTime = ovr_GetPredictedDisplayTime(myOvrHmd, 0);
632
-        ovrTrackingState anHmdState = ovr_GetTrackingState(myOvrHmd, aPredictedTime, ovrTrue);
633
-        ovr_CalcEyePoses(anHmdState.HeadPose.ThePose, aViewScaleDesc.HmdToEyeViewOffset, aLayerFov.RenderPose);
634
-        myOvrOrient = StQuaternion<double>((double )aLayerFov.RenderPose[0].Orientation.x,
635
-                                           (double )aLayerFov.RenderPose[0].Orientation.y,
636
-                                           (double )aLayerFov.RenderPose[0].Orientation.z,
637
-                                           (double )aLayerFov.RenderPose[0].Orientation.w);
638
-
639
-        // draw Left View into virtual frame buffer
640
-        myContext->stglResizeViewport(aViewPortL);
641
-        myContext->stglSetScissorRect(aViewPortL, false);
642
-        myContext->stglBindFramebuffer(myOvrSwapFbo[myOvrSwapTexture->CurrentIndex]);
643
-        StWindow::signals.onRedraw(ST_DRAW_LEFT);
644
-        stglDrawCursor(aCursorPos, ST_DRAW_LEFT);
645
-
646
-        // draw Right View into virtual frame buffer
647
-        myContext->stglResizeViewport(aViewPortR);
648
-        myContext->stglSetScissorRect(aViewPortR, false);
649
-        StWindow::signals.onRedraw(ST_DRAW_RIGHT);
650
-        stglDrawCursor(aCursorPos, ST_DRAW_RIGHT);
651
-        myContext->stglBindFramebuffer(StGLFrameBuffer::NO_FRAMEBUFFER);
652
-
653
-        ovrLayerHeader* aLayers = &aLayerFov.Header;
654
-        ovrResult anOvrRes = ovr_SubmitFrame(myOvrHmd, 0, &aViewScaleDesc, &aLayers, 1);
655
-        myOvrSwapTexture->CurrentIndex = myOvrSwapTexture->CurrentIndex == 0 ? 1 : 0;
656
-        if(!OVR_SUCCESS(anOvrRes)) {
657
-            myMsgQueue->pushError(stCString("StOutDistorted, Failed to submit swap texture!"));
658
-            myIsBroken = true;
659
-        }
660
-
661
-        myContext->stglResizeViewport(aVPBoth);
662
-        myContext->stglResetScissorRect();
663
-        myContext->core20fwd->glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
664
-
665
-        myContext->stglBindFramebufferRead(myOvrMirrorFbo);
666
-        myContext->stglBindFramebufferDraw(StGLFrameBuffer::NO_FRAMEBUFFER);
667
-        GLint aSrcSizeX = myOvrMirrorTexture->OGL.Header.TextureSize.w;
668
-        GLint aSrcSizeY = myOvrMirrorTexture->OGL.Header.TextureSize.h;
669
-        myContext->arbFbo->glBlitFramebuffer(0, aSrcSizeY, aSrcSizeX, 0,
670
-                                             0, 0, aVPBoth.width(), aVPBoth.height(),
671
-                                             GL_COLOR_BUFFER_BIT, GL_NEAREST);
672
-        myContext->stglBindFramebufferRead(StGLFrameBuffer::NO_FRAMEBUFFER);
673
-
674
-        myFPSControl.sleepToTarget(); // decrease FPS to target by thread sleeps
675
-        StWindow::stglSwap(ST_WIN_ALL);
676
-        ++myFPSControl;
677
+        stglDrawLibOVR();
678
         return;
679
     }
680
 #endif
681
 
682
+    const StGLBoxPx  aVPSlave   = StWindow::stglViewport(ST_WIN_SLAVE);
683
+    const StGLBoxPx  aVPBoth    = StWindow::stglViewport(ST_WIN_ALL);
684
+    const StPointD_t aCursorPos = StWindow::getMousePos();
685
     StGLBoxPx aViewPortL = aVPMaster;
686
     StGLBoxPx aViewPortR = aVPSlave;
687
     if(myDevice != DEVICE_OCULUS) {
688
-        switch(params.Layout->getValue()) {
689
+        switch(aPairLayout) {
690
             case LAYOUT_OVER_UNDER_ANAMORPH: {
691
                 aViewPortR.height() /= 2;
692
                 aViewPortL.height() = aViewPortR.height();
693
@@ -958,6 +848,31 @@
694
         }
695
     }
696
 
697
+    // simple rendering without FBO
698
+    if(myDevice != DEVICE_OCULUS
699
+    && !myIsForcedFboUsage) {
700
+        myContext->stglResizeViewport(aVPBoth);
701
+        myContext->stglSetScissorRect(aVPBoth, false);
702
+        myContext->core20fwd->glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
703
+
704
+        myContext->stglResizeViewport(aViewPortL);
705
+        myContext->stglSetScissorRect(aViewPortL, false);
706
+        StWindow::signals.onRedraw(ST_DRAW_LEFT);
707
+        stglDrawCursor(aCursorPos, ST_DRAW_LEFT);
708
+        myContext->stglResetScissorRect();
709
+
710
+        myContext->stglResizeViewport(aViewPortR);
711
+        myContext->stglSetScissorRect(aViewPortR, false);
712
+        StWindow::signals.onRedraw(ST_DRAW_RIGHT);
713
+        stglDrawCursor(aCursorPos, ST_DRAW_RIGHT);
714
+        myContext->stglResetScissorRect();
715
+
716
+        myFPSControl.sleepToTarget();
717
+        StWindow::stglSwap(ST_WIN_ALL);
718
+        ++myFPSControl;
719
+        return;
720
+    }
721
+
722
     // resize FBO
723
     GLint aFrSizeX = aViewPortL.width();
724
     GLint aFrSizeY = aViewPortL.height();
725
sview-15_11.tar.gz/StOutDistorted/StOutDistorted.h -> sview-16_06.tar.gz/StOutDistorted/StOutDistorted.h Changed
201
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StOutDistorted, class providing stereoscopic output in anamorph side by side format using StCore toolkit.
4
- * Copyright © 2013-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2013-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -44,71 +44,78 @@
10
     ST_CPPEXPORT virtual ~StOutDistorted();
11
 
12
     /**
13
+     * Use FBO even when rendering can be done by simple viewport adjustment.
14
+     */
15
+    ST_LOCAL void setForcedFboUsage(const bool theIsForcesFboUsage) {
16
+        myIsForcedFboUsage = theIsForcesFboUsage;
17
+    }
18
+
19
+    /**
20
      * Renderer about string.
21
      */
22
-    ST_CPPEXPORT virtual StString getRendererAbout() const;
23
+    ST_CPPEXPORT virtual StString getRendererAbout() const ST_ATTR_OVERRIDE;
24
 
25
     /**
26
      * Renderer id.
27
      */
28
-    ST_CPPEXPORT virtual const char* getRendererId() const;
29
+    ST_CPPEXPORT virtual const char* getRendererId() const ST_ATTR_OVERRIDE;
30
 
31
     /**
32
      * Active Device id.
33
      */
34
-    ST_CPPEXPORT virtual const char* getDeviceId() const;
35
+    ST_CPPEXPORT virtual const char* getDeviceId() const ST_ATTR_OVERRIDE;
36
 
37
     /**
38
      * This methods returns device lost state.
39
      * @return true if rendering device requires reinitialization
40
      */
41
-    ST_CPPEXPORT virtual bool isLostDevice() const;
42
+    ST_CPPEXPORT virtual bool isLostDevice() const ST_ATTR_OVERRIDE;
43
 
44
     /**
45
      * Activate Device.
46
      */
47
-    ST_CPPEXPORT virtual bool setDevice(const StString& theDevice);
48
+    ST_CPPEXPORT virtual bool setDevice(const StString& theDevice) ST_ATTR_OVERRIDE;
49
 
50
     /**
51
      * Devices list.
52
      */
53
-    ST_CPPEXPORT virtual void getDevices(StOutDevicesList& theList) const;
54
+    ST_CPPEXPORT virtual void getDevices(StOutDevicesList& theList) const ST_ATTR_OVERRIDE;
55
 
56
     /**
57
      * Retrieve options list.
58
      */
59
-    ST_CPPEXPORT virtual void getOptions(StParamsList& theList) const;
60
+    ST_CPPEXPORT virtual void getOptions(StParamsList& theList) const ST_ATTR_OVERRIDE;
61
 
62
     /**
63
      * Create and show window.
64
      * @return false if any critical error appeared
65
      */
66
-    ST_CPPEXPORT virtual bool create();
67
+    ST_CPPEXPORT virtual bool create() ST_ATTR_OVERRIDE;
68
 
69
     /**
70
      * Close the window.
71
      */
72
-    ST_CPPEXPORT virtual void close();
73
+    ST_CPPEXPORT virtual void close() ST_ATTR_OVERRIDE;
74
 
75
     /**
76
      * Extra routines to be processed before window close.
77
      */
78
-    ST_CPPEXPORT virtual void beforeClose();
79
+    ST_CPPEXPORT virtual void beforeClose() ST_ATTR_OVERRIDE;
80
 
81
     /**
82
      * Process callback.
83
      */
84
-    ST_CPPEXPORT virtual void processEvents();
85
+    ST_CPPEXPORT virtual void processEvents() ST_ATTR_OVERRIDE;
86
 
87
     /**
88
      * @param theFullScreen fullscreen state
89
      */
90
-    ST_CPPEXPORT virtual void setFullScreen(const bool theFullScreen);
91
+    ST_CPPEXPORT virtual void setFullScreen(const bool theFullScreen) ST_ATTR_OVERRIDE;
92
 
93
     /**
94
      * Stereo renderer.
95
      */
96
-    ST_CPPEXPORT virtual void stglDraw();
97
+    ST_CPPEXPORT virtual void stglDraw() ST_ATTR_OVERRIDE;
98
 
99
     /**
100
      * Show/Hide mouse cursor.
101
@@ -119,19 +126,24 @@
102
     /**
103
      * Return true if device has orientation sensor.
104
      */
105
-    ST_CPPEXPORT virtual bool hasOrientationSensor() const;
106
+    ST_CPPEXPORT virtual bool hasOrientationSensor() const ST_ATTR_OVERRIDE;
107
 
108
     /**
109
      * Get head orientation.
110
      */
111
-    ST_CPPEXPORT virtual StQuaternion<double> getDeviceOrientation() const;
112
+    ST_CPPEXPORT virtual StQuaternion<double> getDeviceOrientation() const ST_ATTR_OVERRIDE;
113
 
114
-    ST_CPPEXPORT virtual GLfloat getLensDist() const;
115
+    ST_CPPEXPORT virtual GLfloat getLensDist() const ST_ATTR_OVERRIDE;
116
 
117
     /**
118
      * Downscale GUI for low-resolution Oculus Rift prototype
119
      */
120
-    ST_CPPEXPORT virtual GLfloat getScaleFactor() const;
121
+    ST_CPPEXPORT virtual GLfloat getScaleFactor() const ST_ATTR_OVERRIDE;
122
+
123
+    /**
124
+     * Update strings.
125
+     */
126
+    ST_LOCAL virtual void doChangeLanguage() ST_ATTR_OVERRIDE { updateStrings(); }
127
 
128
         private:
129
 
130
@@ -146,6 +158,11 @@
131
     ST_LOCAL void releaseResources();
132
 
133
     /**
134
+     * Update strings.
135
+     */
136
+    ST_LOCAL void updateStrings();
137
+
138
+    /**
139
      * On/off VSync callback.
140
      */
141
     ST_LOCAL void doSwitchVSync(const int32_t theValue);
142
@@ -153,6 +170,12 @@
143
     ST_LOCAL void stglDrawCursor(const StPointD_t&  theCursorPos,
144
                                  const unsigned int theView);
145
 
146
+    /**
147
+     * Draw stereo-pair using libOVR.
148
+     * To be called from stglDraw().
149
+     */
150
+    ST_LOCAL void stglDrawLibOVR();
151
+
152
         private:
153
 
154
     static StAtomic<int32_t> myInstancesNb; //!< shared counter for all instances
155
@@ -163,6 +186,7 @@
156
         DEVICE_AUTO         =-1,
157
         DEVICE_DISTORTED    = 0, //!< general output
158
         DEVICE_OCULUS       = 1, //!< Oculus Rift
159
+        DEVICE_S3DV         = 2, //!< S3DV
160
         DEVICE_NB,
161
     };
162
 
163
@@ -173,10 +197,25 @@
164
         LAYOUT_OVER_UNDER            = 3, //!< full-size over under
165
     };
166
 
167
+    /**
168
+     * Return current layout.
169
+     */
170
+    Layout getPairLayout() const {
171
+        switch(myDevice) {
172
+            case DEVICE_OCULUS:
173
+                return LAYOUT_SIDE_BY_SIDE;
174
+            case DEVICE_S3DV:
175
+                return LAYOUT_SIDE_BY_SIDE_ANAMORPH;
176
+            default:
177
+            case DEVICE_DISTORTED:
178
+                return (Layout )params.Layout->getValue();
179
+        }
180
+    }
181
+
182
     struct {
183
 
184
-        StHandle<StInt32Param> Layout;   //!< pair layout
185
-        StHandle<StBoolParam>  MonoClone;//!< display mono in stereo
186
+        StHandle<StEnumParam>      Layout;   //!< pair layout
187
+        StHandle<StBoolParamNamed> MonoClone;//!< display mono in stereo
188
 
189
     } params;
190
 
191
@@ -219,7 +258,9 @@
192
     bool                      myToCompressMem;   //!< reduce memory usage
193
     bool                      myIsBroken;        //!< special flag for broke state - when FBO can not be allocated
194
     bool                      myIsStereoOn;
195
+    bool                      myCanHdmiPack;
196
     bool                      myIsHdmiPack;      //!< "frame packed" mode in HDMI 1.4a
197
+    bool                      myIsForcedFboUsage;//!< use FBO even when rendering can be done by simple viewport adjustment
198
 
199
 };
200
 
201
sview-15_11.tar.gz/StOutDistorted/StOutDistorted.rc -> sview-16_06.tar.gz/StOutDistorted/StOutDistorted.rc Changed
10
 
1
@@ -15,7 +15,7 @@
2
     BEGIN
3
       VALUE "FileDescription", "Stereo Distorted Renderer library\000"
4
       VALUE "FileVersion",     SVIEW_SDK_VER_STRING "\000"
5
-      VALUE "LegalCopyright",  "\251 2013-2014 Kirill Gavrilov\000"
6
+      VALUE "LegalCopyright",  "\251 2013-2016 Kirill Gavrilov\000"
7
       VALUE "ProductName",     "StOutDistorted\000"
8
       VALUE "ProductVersion",  SVIEW_SDK_VER_STRING "\000"
9
       VALUE "OfficialSite",    "www.sview.ru\000"
10
sview-15_11.tar.gz/StOutDistorted/StOutDistorted.vcxproj -> sview-16_06.tar.gz/StOutDistorted/StOutDistorted.vcxproj Changed
60
 
1
@@ -21,7 +21,7 @@
2
   <PropertyGroup Label="Globals">
3
     <ProjectGuid>{9C75F4C5-87F2-4DBA-B5AD-E41C0ADE0E8A}</ProjectGuid>
4
   </PropertyGroup>
5
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
6
+  <Import Project="$(SolutionDir)sView.Cpp.Default.props" />
7
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
8
     <ConfigurationType>DynamicLibrary</ConfigurationType>
9
     <CharacterSet>Unicode</CharacterSet>
10
@@ -101,6 +101,9 @@
11
       <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_x86;..\lib\WIN_vc_x86;$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
12
       <SubSystem>Windows</SubSystem>
13
     </Link>
14
+    <PostBuildEvent>
15
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
16
+    </PostBuildEvent>
17
   </ItemDefinitionGroup>
18
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
19
     <Midl>
20
@@ -136,6 +139,9 @@
21
       <GenerateDebugInformation>true</GenerateDebugInformation>
22
       <SubSystem>Windows</SubSystem>
23
     </Link>
24
+    <PostBuildEvent>
25
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
26
+    </PostBuildEvent>
27
   </ItemDefinitionGroup>
28
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
29
     <Midl>
30
@@ -169,6 +175,9 @@
31
       <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_AMD64;..\lib\WIN_vc_AMD64;$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
32
       <SubSystem>Windows</SubSystem>
33
     </Link>
34
+    <PostBuildEvent>
35
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
36
+    </PostBuildEvent>
37
   </ItemDefinitionGroup>
38
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
39
     <Midl>
40
@@ -204,9 +213,19 @@
41
       <GenerateDebugInformation>true</GenerateDebugInformation>
42
       <SubSystem>Windows</SubSystem>
43
     </Link>
44
+    <PostBuildEvent>
45
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
46
+    </PostBuildEvent>
47
   </ItemDefinitionGroup>
48
   <ItemGroup>
49
     <ClCompile Include="StOutDistorted.cpp" />
50
+    <ClCompile Include="StProgramBarrel.cpp" />
51
+    <ClCompile Include="StProgramFlat.cpp" />
52
+  </ItemGroup>
53
+  <ItemGroup>
54
+    <ClInclude Include="StOutDistorted.h" />
55
+    <ClInclude Include="StProgramBarrel.h" />
56
+    <ClInclude Include="StProgramFlat.h" />
57
   </ItemGroup>
58
   <ItemGroup>
59
     <ResourceCompile Include="StOutDistorted.rc" />
60
sview-15_11.tar.gz/StOutDistorted/StOutDistorted.vcxproj.filters -> sview-16_06.tar.gz/StOutDistorted/StOutDistorted.vcxproj.filters Changed
23
 
1
@@ -1,14 +1,14 @@
2
 <?xml version="1.0" encoding="utf-8"?>
3
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
   <ItemGroup>
5
-    <Filter Include="Source files">
6
-      <UniqueIdentifier>{CACACF6C-18DA-13DF-148A-3C969CC3F588}</UniqueIdentifier>
7
+    <Filter Include="Source Files">
8
+      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
9
+      <Extensions>cpp;c;cc;cxx;m;mm;def;odl;idl;hpj;bat;asm;asmx</Extensions>
10
+    </Filter>
11
+    <Filter Include="Header Files">
12
+      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
13
+      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
14
     </Filter>
15
-  </ItemGroup>
16
-  <ItemGroup>
17
-    <ClCompile Include="StOutDistorted.cpp">
18
-      <Filter>Source files</Filter>
19
-    </ClCompile>
20
   </ItemGroup>
21
   <ItemGroup>
22
     <ResourceCompile Include="StOutDistorted.rc" />
23
sview-16_06.tar.gz/StOutDistorted/StProgramBarrel.cpp Added
118
 
1
@@ -0,0 +1,116 @@
2
+/**
3
+ * StOutDistorted, class providing stereoscopic output in anamorph side by side format using StCore toolkit.
4
+ * Copyright © 2016 Kirill Gavrilov <kirill@sview.ru>
5
+ *
6
+ * Distributed under the Boost Software License, Version 1.0.
7
+ * See accompanying file license-boost.txt or copy at
8
+ * http://www.boost.org/LICENSE_1_0.txt
9
+ */
10
+
11
+#include "StProgramBarrel.h"
12
+
13
+#include <StGLCore/StGLCore20.h>
14
+#include <StGL/StGLContext.h>
15
+
16
+StProgramBarrel::StProgramBarrel()
17
+: StGLProgram("StProgramBarrel") {}
18
+
19
+bool StProgramBarrel::init(StGLContext& theCtx) {
20
+    const char VERTEX_SHADER[] =
21
+       "attribute vec4 vVertex;\n"
22
+       "attribute vec2 vTexCoord;\n"
23
+       "varying vec2 fTexCoord;\n"
24
+       "void main(void) {\n"
25
+       "  fTexCoord = vTexCoord;\n"
26
+       "  gl_Position = vVertex;\n"
27
+       "}\n";
28
+
29
+    const char FRAGMENT_SHADER[] =
30
+       "uniform sampler2D texR, texL;\n"
31
+       "varying vec2 fTexCoord;\n"
32
+       "\n"
33
+       "uniform vec4 uChromAb;\n"
34
+       "uniform vec4 uWarpCoef;\n"
35
+       "uniform vec2 uLensCenter;\n"
36
+       "uniform vec2 uScale;\n"
37
+       "uniform vec2 uScaleIn;\n"
38
+       "\n"
39
+       "void main(void) {\n"
40
+       "  vec2 aTheta = (fTexCoord - uLensCenter) * uScaleIn;\n" // scales to [-1, 1]
41
+       "  float rSq = aTheta.x * aTheta.x + aTheta.y * aTheta.y;\n"
42
+       "  vec2 aTheta1 = aTheta * (uWarpCoef.x + uWarpCoef.y * rSq +\n"
43
+       "                           uWarpCoef.z * rSq * rSq +\n"
44
+       "                           uWarpCoef.w * rSq * rSq * rSq);\n"
45
+       "  vec2 aThetaBlue = aTheta1 * (uChromAb.z + uChromAb.w * rSq);\n"
46
+       "  vec2 aTCrdsBlue = uLensCenter + uScale * aThetaBlue;\n"
47
+       "  if(any(bvec2(clamp(aTCrdsBlue, vec2(0.0, 0.0), vec2(1.0, 1.0)) - aTCrdsBlue))) {\n"
48
+       "    gl_FragColor = vec4(0.0, 0.0, 0.0, 1.0);\n"
49
+       "    return;\n"
50
+       "  }\n"
51
+       "\n"
52
+       "  vec2 aTCrdsGreen = uLensCenter + uScale * aTheta1;\n"
53
+       "  vec2 aThetaRed = aTheta1 * (uChromAb.x + uChromAb.y * rSq);\n"
54
+       "  vec2 aTCrdsRed = uLensCenter + uScale * aThetaRed;\n"
55
+       "  gl_FragColor = vec4(texture2D(texR, aTCrdsRed  ).r,\n"
56
+       "                      texture2D(texR, aTCrdsGreen).g,\n"
57
+       "                      texture2D(texR, aTCrdsBlue ).b, 1.0);\n"
58
+       "}\n";
59
+
60
+    StGLVertexShader aVertexShader(StGLProgram::getTitle());
61
+    StGLAutoRelease aTmp1(theCtx, aVertexShader);
62
+    aVertexShader.init(theCtx, VERTEX_SHADER);
63
+
64
+    StGLFragmentShader aFragmentShader(StGLProgram::getTitle());
65
+    StGLAutoRelease aTmp2(theCtx, aFragmentShader);
66
+    aFragmentShader.init(theCtx, FRAGMENT_SHADER);
67
+    if(!StGLProgram::create(theCtx)
68
+       .attachShader(theCtx, aVertexShader)
69
+       .attachShader(theCtx, aFragmentShader)
70
+       .bindAttribLocation(theCtx, "vVertex",   getVVertexLoc())
71
+       .bindAttribLocation(theCtx, "vTexCoord", getVTexCoordLoc())
72
+       .link(theCtx)) {
73
+        return false;
74
+    }
75
+
76
+    uniChromAbLoc    = StGLProgram::getUniformLocation(theCtx, "uChromAb");
77
+    uniWarpCoeffLoc  = StGLProgram::getUniformLocation(theCtx, "uWarpCoef");
78
+    uniLensCenterLoc = StGLProgram::getUniformLocation(theCtx, "uLensCenter");
79
+    uniScaleLoc      = StGLProgram::getUniformLocation(theCtx, "uScale");
80
+    uniScaleInLoc    = StGLProgram::getUniformLocation(theCtx, "uScaleIn");
81
+    return true;
82
+}
83
+
84
+void StProgramBarrel::setupCoeff(StGLContext&    theCtx,
85
+                                 const StGLVec4& theVec) {
86
+    use(theCtx);
87
+    theCtx.core20fwd->glUniform4fv(uniWarpCoeffLoc, 1, theVec);
88
+    unuse(theCtx);
89
+}
90
+
91
+void StProgramBarrel::setupChrome(StGLContext&    theCtx,
92
+                                  const StGLVec4& theVec) {
93
+    use(theCtx);
94
+    theCtx.core20fwd->glUniform4fv(uniChromAbLoc, 1, theVec);
95
+    unuse(theCtx);
96
+}
97
+
98
+void StProgramBarrel::setLensCenter(StGLContext&    theCtx,
99
+                                    const StGLVec2& theVec) {
100
+    use(theCtx);
101
+    theCtx.core20fwd->glUniform2fv(uniLensCenterLoc, 1, theVec);
102
+    unuse(theCtx);
103
+}
104
+
105
+void StProgramBarrel::setScale(StGLContext&    theCtx,
106
+                               const StGLVec2& theVec) {
107
+    use(theCtx);
108
+    theCtx.core20fwd->glUniform2fv(uniScaleLoc, 1, theVec);
109
+    unuse(theCtx);
110
+}
111
+
112
+void StProgramBarrel::setScaleIn(StGLContext&    theCtx,
113
+                                 const StGLVec2& theVec) {
114
+    use(theCtx);
115
+    theCtx.core20fwd->glUniform2fv(uniScaleInLoc, 1, theVec);
116
+    unuse(theCtx);
117
+}
118
sview-16_06.tar.gz/StOutDistorted/StProgramBarrel.h Added
76
 
1
@@ -0,0 +1,74 @@
2
+/**
3
+ * StOutDistorted, class providing stereoscopic output in anamorph side by side format using StCore toolkit.
4
+ * Copyright © 2016 Kirill Gavrilov <kirill@sview.ru>
5
+ *
6
+ * Distributed under the Boost Software License, Version 1.0.
7
+ * See accompanying file license-boost.txt or copy at
8
+ * http://www.boost.org/LICENSE_1_0.txt
9
+ */
10
+
11
+#ifndef __StProgramBarrel_h_
12
+#define __StProgramBarrel_h_
13
+
14
+#include <StGL/StGLProgram.h>
15
+#include <StGL/StGLVec.h>
16
+
17
+/**
18
+ * Distortion GLSL program.
19
+ */
20
+class StProgramBarrel : public StGLProgram {
21
+
22
+        public:
23
+
24
+    /**
25
+     * Empty constructor.
26
+     */
27
+    ST_LOCAL StProgramBarrel();
28
+
29
+    /**
30
+     * Position vertex attribute location.
31
+     */
32
+    ST_LOCAL StGLVarLocation getVVertexLoc()   const { return StGLVarLocation(0); }
33
+
34
+    /**
35
+     * Texture vertex attribute location.
36
+     */
37
+    ST_LOCAL StGLVarLocation getVTexCoordLoc() const { return StGLVarLocation(1); }
38
+
39
+    /**
40
+     * Initialize the program.
41
+     */
42
+    ST_LOCAL virtual bool init(StGLContext& theCtx) ST_ATTR_OVERRIDE;
43
+
44
+    /**
45
+     * Setup distortion coefficients.
46
+     */
47
+    ST_LOCAL void setupCoeff(StGLContext&    theCtx,
48
+                             const StGLVec4& theVec);
49
+
50
+    /**
51
+     * Setup Chrome coefficients.
52
+     */
53
+    ST_LOCAL void setupChrome(StGLContext&    theCtx,
54
+                              const StGLVec4& theVec);
55
+
56
+    ST_LOCAL void setLensCenter(StGLContext&    theCtx,
57
+                                const StGLVec2& theVec);
58
+
59
+    ST_LOCAL void setScale(StGLContext&    theCtx,
60
+                           const StGLVec2& theVec);
61
+
62
+    ST_LOCAL void setScaleIn(StGLContext&    theCtx,
63
+                             const StGLVec2& theVec);
64
+
65
+        private:
66
+
67
+    StGLVarLocation uniChromAbLoc;
68
+    StGLVarLocation uniWarpCoeffLoc;
69
+    StGLVarLocation uniLensCenterLoc;
70
+    StGLVarLocation uniScaleLoc;
71
+    StGLVarLocation uniScaleInLoc;
72
+
73
+};
74
+
75
+#endif // __StProgramBarrel_h_
76
sview-16_06.tar.gz/StOutDistorted/StProgramFlat.cpp Added
53
 
1
@@ -0,0 +1,51 @@
2
+/**
3
+ * StOutDistorted, class providing stereoscopic output in anamorph side by side format using StCore toolkit.
4
+ * Copyright © 2016 Kirill Gavrilov <kirill@sview.ru>
5
+ *
6
+ * Distributed under the Boost Software License, Version 1.0.
7
+ * See accompanying file license-boost.txt or copy at
8
+ * http://www.boost.org/LICENSE_1_0.txt
9
+ */
10
+
11
+#include "StProgramFlat.h"
12
+
13
+#include <StGLCore/StGLCore20.h>
14
+#include <StGL/StGLContext.h>
15
+
16
+StProgramFlat::StProgramFlat()
17
+: StGLProgram("StProgramFlat") {}
18
+
19
+bool StProgramFlat::init(StGLContext& theCtx) {
20
+    const char VERTEX_SHADER[] =
21
+       "attribute vec4 vVertex;\n"
22
+       "attribute vec2 vTexCoord;\n"
23
+       "varying vec2 fTexCoord;\n"
24
+       "void main(void) {\n"
25
+       "  fTexCoord = vTexCoord;\n"
26
+       "  gl_Position = vVertex;\n"
27
+       "}\n";
28
+
29
+    const char FRAGMENT_SHADER[] =
30
+       "uniform sampler2D texR, texL;\n"
31
+       "varying vec2 fTexCoord;\n"
32
+       "void main(void) {\n"
33
+       "  gl_FragColor = texture2D(texR, fTexCoord);\n"
34
+       "}\n";
35
+
36
+    StGLVertexShader aVertexShader(StGLProgram::getTitle());
37
+    StGLAutoRelease aTmp1(theCtx, aVertexShader);
38
+    aVertexShader.init(theCtx, VERTEX_SHADER);
39
+
40
+    StGLFragmentShader aFragmentShader(StGLProgram::getTitle());
41
+    StGLAutoRelease aTmp2(theCtx, aFragmentShader);
42
+    aFragmentShader.init(theCtx, FRAGMENT_SHADER);
43
+    if(!StGLProgram::create(theCtx)
44
+       .attachShader(theCtx, aVertexShader)
45
+       .attachShader(theCtx, aFragmentShader)
46
+       .bindAttribLocation(theCtx, "vVertex",   getVVertexLoc())
47
+       .bindAttribLocation(theCtx, "vTexCoord", getVTexCoordLoc())
48
+       .link(theCtx)) {
49
+        return false;
50
+    }
51
+    return true;
52
+}
53
sview-16_06.tar.gz/StOutDistorted/StProgramFlat.h Added
43
 
1
@@ -0,0 +1,41 @@
2
+/**
3
+ * StOutDistorted, class providing stereoscopic output in anamorph side by side format using StCore toolkit.
4
+ * Copyright © 2016 Kirill Gavrilov <kirill@sview.ru>
5
+ *
6
+ * Distributed under the Boost Software License, Version 1.0.
7
+ * See accompanying file license-boost.txt or copy at
8
+ * http://www.boost.org/LICENSE_1_0.txt
9
+ */
10
+
11
+#ifndef __StProgramFlat_h_
12
+#define __StProgramFlat_h_
13
+
14
+#include <StGL/StGLProgram.h>
15
+
16
+/**
17
+ * Flat GLSL program.
18
+ */
19
+class StProgramFlat : public StGLProgram {
20
+
21
+        public:
22
+
23
+    ST_LOCAL StProgramFlat();
24
+
25
+    /**
26
+     * Position vertex attribute location.
27
+     */
28
+    ST_LOCAL StGLVarLocation getVVertexLoc()   const { return StGLVarLocation(0); }
29
+
30
+    /**
31
+     * Texture vertex attribute location.
32
+     */
33
+    ST_LOCAL StGLVarLocation getVTexCoordLoc() const { return StGLVarLocation(1); }
34
+
35
+    /**
36
+     * Initialize the program.
37
+     */
38
+    ST_LOCAL virtual bool init(StGLContext& theCtx) ST_ATTR_OVERRIDE;
39
+
40
+};
41
+
42
+#endif // __StProgramFlat_h_
43
sview-15_11.tar.gz/StOutDual/StOutDual.cbp -> sview-16_06.tar.gz/StOutDual/StOutDual.cbp Changed
36
 
1
@@ -169,15 +169,14 @@
2
                    <Add option="-DST_HAVE_STCONFIG" />
3
                </Compiler>
4
                <Linker>
5
-                   <Add option="-s" />
6
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
7
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
8
                    <Add option="-framework Appkit" />
9
                    <Add option="-framework OpenGL" />
10
                    <Add library="objc" />
11
                </Linker>
12
                <ExtraCommands>
13
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
14
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
15
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
16
                </ExtraCommands>
17
            </Target>
18
            <Target title="MAC_gcc_DEBUG">
19
@@ -194,14 +193,14 @@
20
                    <Add option="-DST_HAVE_STCONFIG" />
21
                </Compiler>
22
                <Linker>
23
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
24
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
25
                    <Add option="-framework Appkit" />
26
                    <Add option="-framework OpenGL" />
27
                    <Add library="objc" />
28
                </Linker>
29
                <ExtraCommands>
30
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
31
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
32
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
33
                </ExtraCommands>
34
            </Target>
35
        </Build>
36
sview-15_11.tar.gz/StOutDual/StOutDual.cpp -> sview-16_06.tar.gz/StOutDual/StOutDual.cpp Changed
139
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StOutDual, class providing stereoscopic output for Dual Input hardware using StCore toolkit.
4
- * Copyright © 2007-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -26,8 +26,6 @@
10
 
11
     static const char ST_SETTING_DEVICE_ID[] = "deviceId";
12
     static const char ST_SETTING_WINDOWPOS[] = "windowPos";
13
-    static const char ST_SETTING_SLAVE_ID[]  = "slaveId";
14
-    static const char ST_SETTING_MONOCLONE[] = "monoClone";
15
 
16
     // translation resources
17
     enum {
18
@@ -75,7 +73,7 @@
19
         return atrVTexCoordLoc;
20
     }
21
 
22
-    virtual bool init(StGLContext& theCtx) {
23
+    virtual bool init(StGLContext& theCtx) ST_ATTR_OVERRIDE {
24
         const char VERTEX_SHADER[] =
25
            "attribute vec4 vVertex; \
26
             attribute vec2 vTexCoord; \
27
@@ -169,6 +167,26 @@
28
     theList.add(params.MonoClone);
29
 }
30
 
31
+void StOutDual::updateStrings() {
32
+    StTranslations aLangMap(getResourceManager(), ST_OUT_PLUGIN_NAME);
33
+
34
+    myDevices[DUALMODE_SIMPLE] ->Name = aLangMap.changeValueId(STTR_DUAL_NAME,   "Dual Output");
35
+    myDevices[DUALMODE_SIMPLE] ->Desc = aLangMap.changeValueId(STTR_DUAL_DESC,   "Stereo-device with dual input: some HMD, Mirrored Stereo monitors, Dual-Projectors");
36
+    myDevices[DUALMODE_XMIRROW]->Name = aLangMap.changeValueId(STTR_MIRROR_NAME, "Mirror Output");
37
+    myDevices[DUALMODE_XMIRROW]->Desc = aLangMap.changeValueId(STTR_MIRROR_DESC, "Hand-make Mirrored Stereo monitors (mirror in X-direction)");
38
+
39
+    params.SlaveMonId->setName(aLangMap.changeValueId(STTR_PARAMETER_SLAVE_ID,  "Slave Monitor"));
40
+    params.MonoClone ->setName(aLangMap.changeValueId(STTR_PARAMETER_MONOCLONE, "Show Mono in Stereo"));
41
+
42
+    // about string
43
+    StString& aTitle     = aLangMap.changeValueId(STTR_PLUGIN_TITLE,   "sView - Dual Output module");
44
+    StString& aVerString = aLangMap.changeValueId(STTR_VERSION_STRING, "version");
45
+    StString& aDescr     = aLangMap.changeValueId(STTR_PLUGIN_DESCRIPTION,
46
+        "(C) {0} Kirill Gavrilov <{1}>\nOfficial site: {2}\n\nThis library is distributed under LGPL3.0");
47
+    myAbout = aTitle + '\n' + aVerString + " " + StVersionInfo::getSDKVersionString() + "\n \n"
48
+            + aDescr.format("2007-2016", "kirill@sview.ru", "www.sview.ru");
49
+}
50
+
51
 StOutDual::StOutDual(const StHandle<StResourceManager>& theResMgr,
52
                      const StNativeWin_t                theParentWindow)
53
 : StWindow(theResMgr, theParentWindow),
54
@@ -179,15 +197,6 @@
55
   myToCompressMem(myInstancesNb.increment() > 1),
56
   myIsBroken(false) {
57
     const StSearchMonitors& aMonitors = StWindow::getMonitors();
58
-    StTranslations aLangMap(getResourceManager(), ST_OUT_PLUGIN_NAME);
59
-
60
-    // about string
61
-    StString& aTitle     = aLangMap.changeValueId(STTR_PLUGIN_TITLE,   "sView - Dual Output module");
62
-    StString& aVerString = aLangMap.changeValueId(STTR_VERSION_STRING, "version");
63
-    StString& aDescr     = aLangMap.changeValueId(STTR_PLUGIN_DESCRIPTION,
64
-        "(C) {0} Kirill Gavrilov <{1}>\nOfficial site: {2}\n\nThis library is distributed under LGPL3.0");
65
-    myAbout = aTitle + '\n' + aVerString + " " + StVersionInfo::getSDKVersionString() + "\n \n"
66
-            + aDescr.format("2007-2015", "kirill@sview.ru", "www.sview.ru");
67
 
68
     // detect connected displays
69
     int aSupportLevel = ST_DEVICE_SUPPORT_NONE;
70
@@ -204,24 +213,22 @@
71
     // devices list
72
     StHandle<StOutDevice> aDevDual = new StOutDevice();
73
     aDevDual->PluginId = ST_OUT_PLUGIN_NAME;
74
-    aDevDual->DeviceId = "Dual";
75
+    aDevDual->DeviceId = stCString("Dual");
76
     aDevDual->Priority = aSupportLevel;
77
-    aDevDual->Name     = aLangMap.changeValueId(STTR_DUAL_NAME, "Dual Output");
78
-    aDevDual->Desc     = aLangMap.changeValueId(STTR_DUAL_DESC, "Stereo-device with dual input: some HMD, Mirrored Stereo monitors, Dual-Projectors");
79
+    aDevDual->Name     = stCString("Dual Output");
80
     myDevices.add(aDevDual);
81
 
82
     StHandle<StOutDevice> aDevMirr = new StOutDevice();
83
     aDevMirr->PluginId = ST_OUT_PLUGIN_NAME;
84
-    aDevMirr->DeviceId = "Mirror";
85
+    aDevMirr->DeviceId = stCString("Mirror");
86
     aDevMirr->Priority = aSupportLevel;
87
-    aDevMirr->Name     = aLangMap.changeValueId(STTR_MIRROR_NAME, "Mirror Output");
88
-    aDevMirr->Desc     = aLangMap.changeValueId(STTR_MIRROR_DESC, "Hand-make Mirrored Stereo monitors (mirror in X-direction)");
89
+    aDevMirr->Name     = stCString("Mirror Output");
90
     myDevices.add(aDevMirr);
91
 
92
     // Slave Monitor option
93
-    StHandle<StEnumParam> aSlaveMon = new StEnumParam(1, aLangMap.changeValueId(STTR_PARAMETER_SLAVE_ID, "Slave Monitor"));
94
-    mySettings->loadParam(ST_SETTING_SLAVE_ID, aSlaveMon);
95
-    size_t aMonCount = stMax(aMonitors.size(), size_t(2), size_t(aSlaveMon->getValue() + 1));
96
+    params.SlaveMonId = new StEnumParam(1, stCString("slaveId"), stCString("slaveId"));
97
+    mySettings->loadParam(params.SlaveMonId);
98
+    size_t aMonCount = stMax(aMonitors.size(), size_t(2), size_t(params.SlaveMonId->getValue() + 1));
99
     for(size_t aMonId = 0; aMonId < aMonCount; ++aMonId) {
100
         StString aName = StString("Monitor #") + aMonId;
101
         if(aMonId < aMonitors.size()) {
102
@@ -229,13 +236,12 @@
103
         } else {
104
             aName += " (disconnected)";
105
         }
106
-        aSlaveMon->changeValues().add(aName);
107
+        params.SlaveMonId->changeValues().add(aName);
108
     }
109
-    aSlaveMon->signals.onChanged.connect(this, &StOutDual::doSlaveMon);
110
-    params.SlaveMonId = aSlaveMon;
111
+    params.SlaveMonId->signals.onChanged.connect(this, &StOutDual::doSlaveMon);
112
 
113
-    params.MonoClone = new StBoolParamNamed(false, aLangMap.changeValueId(STTR_PARAMETER_MONOCLONE, "Show Mono in Stereo"));
114
-    mySettings->loadParam(ST_SETTING_MONOCLONE, params.MonoClone);
115
+    params.MonoClone = new StBoolParamNamed(false, stCString("monoClone"), stCString("monoClone"));
116
+    mySettings->loadParam(params.MonoClone);
117
 
118
     // load window position
119
     if(isMovable()) {
120
@@ -245,6 +251,7 @@
121
         }
122
         StWindow::setPlacement(aRect, true);
123
     }
124
+    updateStrings();
125
     StWindow::setTitle("sView - Dual Renderer");
126
 
127
     // load device settings
128
@@ -286,8 +293,8 @@
129
     if(isMovable() && myWasUsed) {
130
         mySettings->saveInt32Rect(ST_SETTING_WINDOWPOS, StWindow::getWindowedPlacement());
131
     }
132
-    mySettings->saveParam(ST_SETTING_SLAVE_ID,  params.SlaveMonId);
133
-    mySettings->saveParam(ST_SETTING_MONOCLONE, params.MonoClone);
134
+    mySettings->saveParam(params.SlaveMonId);
135
+    mySettings->saveParam(params.MonoClone);
136
     mySettings->saveInt32(ST_SETTING_DEVICE_ID, myDevice);
137
     mySettings->flush();
138
 }
139
sview-15_11.tar.gz/StOutDual/StOutDual.h -> sview-16_06.tar.gz/StOutDual/StOutDual.h Changed
107
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StOutDual, class providing stereoscopic output for Dual Input hardware using StCore toolkit.
4
- * Copyright © 2007-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -40,58 +40,63 @@
10
     /**
11
      * Renderer about string.
12
      */
13
-    ST_CPPEXPORT virtual StString getRendererAbout() const;
14
+    ST_CPPEXPORT virtual StString getRendererAbout() const ST_ATTR_OVERRIDE;
15
 
16
     /**
17
      * Renderer id.
18
      */
19
-    ST_CPPEXPORT virtual const char* getRendererId() const;
20
+    ST_CPPEXPORT virtual const char* getRendererId() const ST_ATTR_OVERRIDE;
21
 
22
     /**
23
      * Active Device id.
24
      */
25
-    ST_CPPEXPORT virtual const char* getDeviceId() const;
26
+    ST_CPPEXPORT virtual const char* getDeviceId() const ST_ATTR_OVERRIDE;
27
 
28
     /**
29
      * Activate Device.
30
      */
31
-    ST_CPPEXPORT virtual bool setDevice(const StString& theDevice);
32
+    ST_CPPEXPORT virtual bool setDevice(const StString& theDevice) ST_ATTR_OVERRIDE;
33
 
34
     /**
35
      * Devices list.
36
      */
37
-    ST_CPPEXPORT virtual void getDevices(StOutDevicesList& theList) const;
38
+    ST_CPPEXPORT virtual void getDevices(StOutDevicesList& theList) const ST_ATTR_OVERRIDE;
39
 
40
     /**
41
      * Retrieve options list.
42
      */
43
-    ST_CPPEXPORT virtual void getOptions(StParamsList& theList) const;
44
+    ST_CPPEXPORT virtual void getOptions(StParamsList& theList) const ST_ATTR_OVERRIDE;
45
 
46
     /**
47
      * Create and show window.
48
      * @return false if any critical error appeared
49
      */
50
-    ST_CPPEXPORT virtual bool create();
51
+    ST_CPPEXPORT virtual bool create() ST_ATTR_OVERRIDE;
52
 
53
     /**
54
      * Close the window.
55
      */
56
-    ST_CPPEXPORT virtual void close();
57
+    ST_CPPEXPORT virtual void close() ST_ATTR_OVERRIDE;
58
 
59
     /**
60
      * Extra routines to be processed before window close.
61
      */
62
-    ST_CPPEXPORT virtual void beforeClose();
63
+    ST_CPPEXPORT virtual void beforeClose() ST_ATTR_OVERRIDE;
64
 
65
     /**
66
      * Process callback.
67
      */
68
-    ST_CPPEXPORT virtual void processEvents();
69
+    ST_CPPEXPORT virtual void processEvents() ST_ATTR_OVERRIDE;
70
 
71
     /**
72
      * Stereo renderer.
73
      */
74
-    ST_CPPEXPORT virtual void stglDraw();
75
+    ST_CPPEXPORT virtual void stglDraw() ST_ATTR_OVERRIDE;
76
+
77
+    /**
78
+     * Update strings.
79
+     */
80
+    ST_LOCAL virtual void doChangeLanguage() ST_ATTR_OVERRIDE { updateStrings(); }
81
 
82
         private:
83
 
84
@@ -112,6 +117,11 @@
85
     ST_LOCAL void releaseResources();
86
 
87
     /**
88
+     * Update strings.
89
+     */
90
+    ST_LOCAL void updateStrings();
91
+
92
+    /**
93
      * On/off VSync callback.
94
      */
95
     ST_LOCAL void doSwitchVSync(const int32_t theValue);
96
@@ -129,8 +139,8 @@
97
 
98
     struct {
99
 
100
-        StHandle<StInt32Param> SlaveMonId; //!< slave window position
101
-        StHandle<StBoolParam>  MonoClone;  //!< display mono in stereo
102
+        StHandle<StEnumParam>       SlaveMonId; //!< slave window position
103
+        StHandle<StBoolParamNamed>  MonoClone;  //!< display mono in stereo
104
 
105
     } params;
106
 
107
sview-15_11.tar.gz/StOutDual/StOutDual.rc -> sview-16_06.tar.gz/StOutDual/StOutDual.rc Changed
10
 
1
@@ -15,7 +15,7 @@
2
     BEGIN
3
       VALUE "FileDescription", "Stereo Dual Renderer library\000"
4
       VALUE "FileVersion",     SVIEW_SDK_VER_STRING "\000"
5
-      VALUE "LegalCopyright",  "\251 2007-2015 Kirill Gavrilov\000"
6
+      VALUE "LegalCopyright",  "\251 2007-2016 Kirill Gavrilov\000"
7
       VALUE "ProductName",     "StOutDual\000"
8
       VALUE "ProductVersion",  SVIEW_SDK_VER_STRING "\000"
9
       VALUE "OfficialSite",    "www.sview.ru\000"
10
sview-15_11.tar.gz/StOutDual/StOutDual.vcxproj -> sview-16_06.tar.gz/StOutDual/StOutDual.vcxproj Changed
58
 
1
@@ -21,7 +21,7 @@
2
   <PropertyGroup Label="Globals">
3
     <ProjectGuid>{1C3EB22E-6FD6-40F7-AEBC-C43FD0F9329F}</ProjectGuid>
4
   </PropertyGroup>
5
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
6
+  <Import Project="$(SolutionDir)sView.Cpp.Default.props" />
7
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
8
     <ConfigurationType>DynamicLibrary</ConfigurationType>
9
     <CharacterSet>Unicode</CharacterSet>
10
@@ -101,6 +101,9 @@
11
       <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_x86;..\lib\WIN_vc_x86;$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
12
       <SubSystem>Windows</SubSystem>
13
     </Link>
14
+    <PostBuildEvent>
15
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
16
+    </PostBuildEvent>
17
   </ItemDefinitionGroup>
18
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
19
     <Midl>
20
@@ -136,6 +139,9 @@
21
       <GenerateDebugInformation>true</GenerateDebugInformation>
22
       <SubSystem>Windows</SubSystem>
23
     </Link>
24
+    <PostBuildEvent>
25
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
26
+    </PostBuildEvent>
27
   </ItemDefinitionGroup>
28
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
29
     <Midl>
30
@@ -169,6 +175,9 @@
31
       <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_AMD64;..\lib\WIN_vc_AMD64;$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
32
       <SubSystem>Windows</SubSystem>
33
     </Link>
34
+    <PostBuildEvent>
35
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
36
+    </PostBuildEvent>
37
   </ItemDefinitionGroup>
38
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
39
     <Midl>
40
@@ -204,11 +213,17 @@
41
       <GenerateDebugInformation>true</GenerateDebugInformation>
42
       <SubSystem>Windows</SubSystem>
43
     </Link>
44
+    <PostBuildEvent>
45
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
46
+    </PostBuildEvent>
47
   </ItemDefinitionGroup>
48
   <ItemGroup>
49
     <ClCompile Include="StOutDual.cpp" />
50
   </ItemGroup>
51
   <ItemGroup>
52
+    <ClInclude Include="StOutDual.h" />
53
+  </ItemGroup>
54
+  <ItemGroup>
55
     <ResourceCompile Include="StOutDual.rc" />
56
   </ItemGroup>
57
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
58
sview-15_11.tar.gz/StOutDual/StOutDual.vcxproj.filters -> sview-16_06.tar.gz/StOutDual/StOutDual.vcxproj.filters Changed
23
 
1
@@ -1,14 +1,14 @@
2
 <?xml version="1.0" encoding="utf-8"?>
3
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
   <ItemGroup>
5
-    <Filter Include="Source files">
6
-      <UniqueIdentifier>{CACACF6C-18DA-13DF-148A-3C969CC3F588}</UniqueIdentifier>
7
+    <Filter Include="Source Files">
8
+      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
9
+      <Extensions>cpp;c;cc;cxx;m;mm;def;odl;idl;hpj;bat;asm;asmx</Extensions>
10
+    </Filter>
11
+    <Filter Include="Header Files">
12
+      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
13
+      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
14
     </Filter>
15
-  </ItemGroup>
16
-  <ItemGroup>
17
-    <ClCompile Include="StOutDual.cpp">
18
-      <Filter>Source files</Filter>
19
-    </ClCompile>
20
   </ItemGroup>
21
   <ItemGroup>
22
     <ResourceCompile Include="StOutDual.rc" />
23
sview-15_11.tar.gz/StOutIZ3D/StOutIZ3D.cbp -> sview-16_06.tar.gz/StOutIZ3D/StOutIZ3D.cbp Changed
36
 
1
@@ -169,15 +169,14 @@
2
                    <Add option="-DST_HAVE_STCONFIG" />
3
                </Compiler>
4
                <Linker>
5
-                   <Add option="-s" />
6
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
7
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
8
                    <Add option="-framework Appkit" />
9
                    <Add option="-framework OpenGL" />
10
                    <Add library="objc" />
11
                </Linker>
12
                <ExtraCommands>
13
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
14
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
15
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
16
                </ExtraCommands>
17
            </Target>
18
            <Target title="MAC_gcc_DEBUG">
19
@@ -194,14 +193,14 @@
20
                    <Add option="-DST_HAVE_STCONFIG" />
21
                </Compiler>
22
                <Linker>
23
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
24
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
25
                    <Add option="-framework Appkit" />
26
                    <Add option="-framework OpenGL" />
27
                    <Add library="objc" />
28
                </Linker>
29
                <ExtraCommands>
30
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
31
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
32
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
33
                </ExtraCommands>
34
            </Target>
35
        </Build>
36
sview-15_11.tar.gz/StOutIZ3D/StOutIZ3D.cpp -> sview-16_06.tar.gz/StOutIZ3D/StOutIZ3D.cpp Changed
108
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StOutInterlace, class providing stereoscopic output for iZ3D monitors using StCore toolkit.
4
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -27,7 +27,6 @@
10
 
11
     // settings
12
     static const char ST_SETTING_WINDOWPOS[]      = "windowPos";
13
-    static const char ST_SETTING_TABLE[]          = "tableId";
14
 
15
     // iZ3D monitor's models for autodetect
16
     // old model have not strong back/front separation
17
@@ -101,23 +100,34 @@
18
     theList.add(params.Glasses);
19
 }
20
 
21
-StOutIZ3D::StOutIZ3D(const StHandle<StResourceManager>& theResMgr,
22
-                     const StNativeWin_t                theParentWindow)
23
-: StWindow(theResMgr, theParentWindow),
24
-  mySettings(new StSettings(theResMgr, ST_OUT_PLUGIN_NAME)),
25
-  myFrBuffer(new StGLStereoFrameBuffer()),
26
-  myToCompressMem(myInstancesNb.increment() > 1),
27
-  myIsBroken(false) {
28
-    const StSearchMonitors& aMonitors = StWindow::getMonitors();
29
+void StOutIZ3D::updateStrings() {
30
     StTranslations aLangMap(getResourceManager(), ST_OUT_PLUGIN_NAME);
31
 
32
+    myDevices[0]->Name = aLangMap.changeValueId(STTR_IZ3D_NAME, "IZ3D Display");
33
+    myDevices[0]->Desc = aLangMap.changeValueId(STTR_IZ3D_DESC, "IZ3D Display");
34
+
35
+    params.Glasses->setName(aLangMap.changeValueId(STTR_PARAMETER_GLASSES, "iZ3D glasses"));
36
+    params.Glasses->defineOption(StOutIZ3DShaders::IZ3D_TABLE_OLD, aLangMap.changeValueId(STTR_PARAMETER_GLASSES_CLASSIC,      "Classic"));
37
+    params.Glasses->defineOption(StOutIZ3DShaders::IZ3D_TABLE_NEW, aLangMap.changeValueId(STTR_PARAMETER_GLASSES_MODERN,       "Modern"));
38
+    params.Glasses->defineOption(StOutIZ3DShaders::IZ3D_CLASSIC,   aLangMap.changeValueId(STTR_PARAMETER_GLASSES_CLASSIC_FAST, "Classic (fast)"));
39
+
40
     // about string
41
     StString& aTitle     = aLangMap.changeValueId(STTR_PLUGIN_TITLE,   "sView - iZ3D Output module");
42
     StString& aVerString = aLangMap.changeValueId(STTR_VERSION_STRING, "version");
43
     StString& aDescr     = aLangMap.changeValueId(STTR_PLUGIN_DESCRIPTION,
44
         "(C) {0} Kirill Gavrilov <{1}>\nOfficial site: {2}\n\nThis library is distributed under LGPL3.0");
45
     myAbout = aTitle + '\n' + aVerString + " " + StVersionInfo::getSDKVersionString() + "\n \n"
46
-            + aDescr.format("2009-2015", "kirill@sview.ru", "www.sview.ru");
47
+            + aDescr.format("2009-2016", "kirill@sview.ru", "www.sview.ru");
48
+}
49
+
50
+StOutIZ3D::StOutIZ3D(const StHandle<StResourceManager>& theResMgr,
51
+                     const StNativeWin_t                theParentWindow)
52
+: StWindow(theResMgr, theParentWindow),
53
+  mySettings(new StSettings(theResMgr, ST_OUT_PLUGIN_NAME)),
54
+  myFrBuffer(new StGLStereoFrameBuffer()),
55
+  myToCompressMem(myInstancesNb.increment() > 1),
56
+  myIsBroken(false) {
57
+    const StSearchMonitors& aMonitors = StWindow::getMonitors();
58
 
59
     // detect connected displays
60
     int aSupportLevel = ST_DEVICE_SUPPORT_NONE;
61
@@ -136,20 +146,14 @@
62
     // devices list
63
     StHandle<StOutDevice> aDevice = new StOutDevice();
64
     aDevice->PluginId = ST_OUT_PLUGIN_NAME;
65
-    aDevice->DeviceId = "iZ3D";
66
+    aDevice->DeviceId = stCString("iZ3D");
67
     aDevice->Priority = aSupportLevel;
68
-    aDevice->Name     = aLangMap.changeValueId(STTR_IZ3D_NAME, "IZ3D Display");
69
-    aDevice->Desc     = aLangMap.changeValueId(STTR_IZ3D_DESC, "IZ3D Display");
70
+    aDevice->Name     = stCString("IZ3D Display");
71
     myDevices.add(aDevice);
72
 
73
     // shader switch option
74
-    StHandle<StEnumParam> aGlasses = new StEnumParam(myShaders.getMode(),
75
-                                                     aLangMap.changeValueId(STTR_PARAMETER_GLASSES, "iZ3D glasses"));
76
-    aGlasses->changeValues().add(aLangMap.changeValueId(STTR_PARAMETER_GLASSES_CLASSIC,      "Classic"));
77
-    aGlasses->changeValues().add(aLangMap.changeValueId(STTR_PARAMETER_GLASSES_MODERN,       "Modern"));
78
-    aGlasses->changeValues().add(aLangMap.changeValueId(STTR_PARAMETER_GLASSES_CLASSIC_FAST, "Classic (fast)"));
79
-    aGlasses->signals.onChanged.connect(&myShaders, &StOutIZ3DShaders::doSetMode);
80
-    params.Glasses = aGlasses;
81
+    params.Glasses = new StEnumParam(myShaders.getMode(), stCString("tableId"), stCString("tableId"));
82
+    params.Glasses->signals.onChanged.connect(&myShaders, &StOutIZ3DShaders::doSetMode);
83
 
84
     // load window position
85
     if(isMovable()) {
86
@@ -159,10 +163,11 @@
87
         }
88
         StWindow::setPlacement(aRect, true);
89
     }
90
+    updateStrings();
91
     StWindow::setTitle("sView - iZ3D Renderer");
92
 
93
     // load parameters
94
-    mySettings->loadParam(ST_SETTING_TABLE, params.Glasses);
95
+    mySettings->loadParam(params.Glasses);
96
 
97
     // request slave window
98
     StWindow::setAttribute(StWinAttr_SlaveCfg, StWinSlave_slaveSync);
99
@@ -188,7 +193,7 @@
100
     if(isMovable() && myWasUsed) {
101
         mySettings->saveInt32Rect(ST_SETTING_WINDOWPOS, StWindow::getWindowedPlacement());
102
     }
103
-    mySettings->saveParam(ST_SETTING_TABLE, params.Glasses);
104
+    mySettings->saveParam(params.Glasses);
105
     mySettings->flush();
106
 }
107
 
108
sview-15_11.tar.gz/StOutIZ3D/StOutIZ3D.h -> sview-16_06.tar.gz/StOutIZ3D/StOutIZ3D.h Changed
101
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StOutInterlace, class providing stereoscopic output for iZ3D monitors using StCore toolkit.
4
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -39,55 +39,60 @@
10
     /**
11
      * Renderer about string.
12
      */
13
-    ST_CPPEXPORT virtual StString getRendererAbout() const;
14
+    ST_CPPEXPORT virtual StString getRendererAbout() const ST_ATTR_OVERRIDE;
15
 
16
     /**
17
      * Renderer id.
18
      */
19
-    ST_CPPEXPORT virtual const char* getRendererId() const;
20
+    ST_CPPEXPORT virtual const char* getRendererId() const ST_ATTR_OVERRIDE;
21
 
22
     /**
23
      * Active Device id.
24
      */
25
-    ST_CPPEXPORT virtual const char* getDeviceId() const;
26
+    ST_CPPEXPORT virtual const char* getDeviceId() const ST_ATTR_OVERRIDE;
27
 
28
     /**
29
      * Devices list.
30
      * This class supports only 1 device type - iZ3D monitor.
31
      * Different glasses filters provided as device options.
32
      */
33
-    ST_CPPEXPORT virtual void getDevices(StOutDevicesList& theList) const;
34
+    ST_CPPEXPORT virtual void getDevices(StOutDevicesList& theList) const ST_ATTR_OVERRIDE;
35
 
36
     /**
37
      * Retrieve options list.
38
      */
39
-    ST_CPPEXPORT virtual void getOptions(StParamsList& theList) const;
40
+    ST_CPPEXPORT virtual void getOptions(StParamsList& theList) const ST_ATTR_OVERRIDE;
41
 
42
     /**
43
      * Create and show window.
44
      * @return false if any critical error appeared
45
      */
46
-    ST_CPPEXPORT virtual bool create();
47
+    ST_CPPEXPORT virtual bool create() ST_ATTR_OVERRIDE;
48
 
49
     /**
50
      * Close the window.
51
      */
52
-    ST_CPPEXPORT virtual void close();
53
+    ST_CPPEXPORT virtual void close() ST_ATTR_OVERRIDE;
54
 
55
     /**
56
      * Extra routines to be processed before window close.
57
      */
58
-    ST_CPPEXPORT virtual void beforeClose();
59
+    ST_CPPEXPORT virtual void beforeClose() ST_ATTR_OVERRIDE;
60
 
61
     /**
62
      * Process callback.
63
      */
64
-    ST_CPPEXPORT virtual void processEvents();
65
+    ST_CPPEXPORT virtual void processEvents() ST_ATTR_OVERRIDE;
66
 
67
     /**
68
      * Stereo renderer.
69
      */
70
-    ST_CPPEXPORT virtual void stglDraw();
71
+    ST_CPPEXPORT virtual void stglDraw() ST_ATTR_OVERRIDE;
72
+
73
+    /**
74
+     * Update strings.
75
+     */
76
+    ST_LOCAL virtual void doChangeLanguage() ST_ATTR_OVERRIDE { updateStrings(); }
77
 
78
         private:
79
 
80
@@ -97,6 +102,11 @@
81
     ST_LOCAL void releaseResources();
82
 
83
     /**
84
+     * Update strings.
85
+     */
86
+    ST_LOCAL void updateStrings();
87
+
88
+    /**
89
      * On/off VSync callback.
90
      */
91
     ST_LOCAL void doSwitchVSync(const int32_t theValue);
92
@@ -109,7 +119,7 @@
93
 
94
     struct {
95
 
96
-        StHandle<StInt32Param> Glasses; //!< glasses filter
97
+        StHandle<StEnumParam> Glasses; //!< glasses filter
98
 
99
     } params;
100
 
101
sview-15_11.tar.gz/StOutIZ3D/StOutIZ3D.rc -> sview-16_06.tar.gz/StOutIZ3D/StOutIZ3D.rc Changed
10
 
1
@@ -15,7 +15,7 @@
2
     BEGIN
3
       VALUE "FileDescription", "IZ3D Renderer library\000"
4
       VALUE "FileVersion",     SVIEW_SDK_VER_STRING "\000"
5
-      VALUE "LegalCopyright",  "\251 2009-2015 Kirill Gavrilov. Copyright \251 iZ3D LLC. All rights for codes for iZ3D conversion reserved for iZ3D LLC 2007-2009\000"
6
+      VALUE "LegalCopyright",  "\251 2009-2016 Kirill Gavrilov. Copyright \251 iZ3D LLC. All rights for codes for iZ3D conversion reserved for iZ3D LLC 2007-2009\000"
7
       VALUE "ProductName",     "StOutIZ3D\000"
8
       VALUE "ProductVersion",  SVIEW_SDK_VER_STRING "\000"
9
       VALUE "OfficialSite",    "www.sview.ru\000"
10
sview-15_11.tar.gz/StOutIZ3D/StOutIZ3D.vcxproj -> sview-16_06.tar.gz/StOutIZ3D/StOutIZ3D.vcxproj Changed
60
 
1
@@ -21,7 +21,7 @@
2
   <PropertyGroup Label="Globals">
3
     <ProjectGuid>{D04F44B7-0B73-47F0-A14F-D317C39A5DFB}</ProjectGuid>
4
   </PropertyGroup>
5
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
6
+  <Import Project="$(SolutionDir)sView.Cpp.Default.props" />
7
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
8
     <ConfigurationType>DynamicLibrary</ConfigurationType>
9
     <CharacterSet>Unicode</CharacterSet>
10
@@ -101,6 +101,9 @@
11
       <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_x86;..\lib\WIN_vc_x86;$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
12
       <SubSystem>Windows</SubSystem>
13
     </Link>
14
+    <PostBuildEvent>
15
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
16
+    </PostBuildEvent>
17
   </ItemDefinitionGroup>
18
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
19
     <Midl>
20
@@ -136,6 +139,9 @@
21
       <GenerateDebugInformation>true</GenerateDebugInformation>
22
       <SubSystem>Windows</SubSystem>
23
     </Link>
24
+    <PostBuildEvent>
25
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
26
+    </PostBuildEvent>
27
   </ItemDefinitionGroup>
28
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
29
     <Midl>
30
@@ -169,6 +175,9 @@
31
       <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_AMD64;..\lib\WIN_vc_AMD64;$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
32
       <SubSystem>Windows</SubSystem>
33
     </Link>
34
+    <PostBuildEvent>
35
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
36
+    </PostBuildEvent>
37
   </ItemDefinitionGroup>
38
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
39
     <Midl>
40
@@ -204,12 +213,19 @@
41
       <GenerateDebugInformation>true</GenerateDebugInformation>
42
       <SubSystem>Windows</SubSystem>
43
     </Link>
44
+    <PostBuildEvent>
45
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
46
+    </PostBuildEvent>
47
   </ItemDefinitionGroup>
48
   <ItemGroup>
49
     <ClCompile Include="StOutIZ3D.cpp" />
50
     <ClCompile Include="StOutIZ3DShaders.cpp" />
51
   </ItemGroup>
52
   <ItemGroup>
53
+    <ClInclude Include="StOutIZ3D.h" />
54
+    <ClInclude Include="StOutIZ3DShaders.h" />
55
+  </ItemGroup>
56
+  <ItemGroup>
57
     <ResourceCompile Include="StOutIZ3D.rc" />
58
   </ItemGroup>
59
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
60
sview-15_11.tar.gz/StOutIZ3D/StOutIZ3D.vcxproj.filters -> sview-16_06.tar.gz/StOutIZ3D/StOutIZ3D.vcxproj.filters Changed
26
 
1
@@ -1,17 +1,14 @@
2
 <?xml version="1.0" encoding="utf-8"?>
3
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
   <ItemGroup>
5
-    <Filter Include="Source files">
6
-      <UniqueIdentifier>{CACACF6C-18DA-13DF-148A-3C969CC3F588}</UniqueIdentifier>
7
+    <Filter Include="Source Files">
8
+      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
9
+      <Extensions>cpp;c;cc;cxx;m;mm;def;odl;idl;hpj;bat;asm;asmx</Extensions>
10
+    </Filter>
11
+    <Filter Include="Header Files">
12
+      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
13
+      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
14
     </Filter>
15
-  </ItemGroup>
16
-  <ItemGroup>
17
-    <ClCompile Include="StOutIZ3D.cpp">
18
-      <Filter>Source files</Filter>
19
-    </ClCompile>
20
-    <ClCompile Include="StOutIZ3DShaders.cpp">
21
-      <Filter>Source files</Filter>
22
-    </ClCompile>
23
   </ItemGroup>
24
   <ItemGroup>
25
     <ResourceCompile Include="StOutIZ3D.rc" />
26
sview-15_11.tar.gz/StOutIZ3D/StOutIZ3DShaders.h -> sview-16_06.tar.gz/StOutIZ3D/StOutIZ3DShaders.h Changed
10
 
1
@@ -29,7 +29,7 @@
2
 
3
     ST_LOCAL virtual ~StOutIZ3DShaders();
4
 
5
-    ST_LOCAL virtual void release(StGLContext& theCtx);
6
+    ST_LOCAL virtual void release(StGLContext& theCtx) ST_ATTR_OVERRIDE;
7
 
8
     ST_LOCAL const int getMode() const {
9
         return myMode;
10
sview-15_11.tar.gz/StOutInterlace/StOutInterlace.cbp -> sview-16_06.tar.gz/StOutInterlace/StOutInterlace.cbp Changed
36
 
1
@@ -169,15 +169,14 @@
2
                    <Add option="-DST_HAVE_STCONFIG" />
3
                </Compiler>
4
                <Linker>
5
-                   <Add option="-s" />
6
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
7
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
8
                    <Add option="-framework Appkit" />
9
                    <Add option="-framework OpenGL" />
10
                    <Add library="objc" />
11
                </Linker>
12
                <ExtraCommands>
13
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
14
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
15
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
16
                </ExtraCommands>
17
            </Target>
18
            <Target title="MAC_gcc_DEBUG">
19
@@ -194,14 +193,14 @@
20
                    <Add option="-DST_HAVE_STCONFIG" />
21
                </Compiler>
22
                <Linker>
23
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
24
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
25
                    <Add option="-framework Appkit" />
26
                    <Add option="-framework OpenGL" />
27
                    <Add library="objc" />
28
                </Linker>
29
                <ExtraCommands>
30
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
31
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
32
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
33
                </ExtraCommands>
34
            </Target>
35
        </Build>
36
sview-15_11.tar.gz/StOutInterlace/StOutInterlace.cpp -> sview-16_06.tar.gz/StOutInterlace/StOutInterlace.cpp Changed
328
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StOutInterlace, class providing stereoscopic output in row interlaced format using StCore toolkit.
4
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -30,8 +30,6 @@
10
 
11
     static const char ST_SETTING_DEVICE_ID[]    = "deviceId";
12
     static const char ST_SETTING_WINDOWPOS[]    = "windowPos";
13
-    static const char ST_SETTING_BIND_MONITOR[] = "bindMonitor";
14
-    static const char ST_SETTING_REVERSE[]      = "reverse";
15
 
16
     struct StMonInterlacedInfo_t {
17
         const stUtf8_t* pnpid;
18
@@ -149,23 +147,23 @@
19
 
20
 const char* StOutInterlace::getDeviceId() const {
21
     switch(myDevice) {
22
-        case DEVICE_VINTERLACE:    return "Col";
23
-        case DEVICE_CHESSBOARD:    return "Chess";
24
-        case DEVICE_HINTERLACE_ED: return "RowED";
25
-        case DEVICE_HINTERLACE:
26
-        default:                   return "Row";
27
+        case DEVICE_COL_INTERLACED:    return "Col";
28
+        case DEVICE_CHESSBOARD:        return "Chess";
29
+        case DEVICE_ROW_INTERLACED_ED: return "RowED";
30
+        case DEVICE_ROW_INTERLACED:
31
+        default:                       return "Row";
32
     }
33
 }
34
 
35
 bool StOutInterlace::setDevice(const StString& theDevice) {
36
     if(theDevice == "Row") {
37
-        myDevice = DEVICE_HINTERLACE;
38
+        myDevice = DEVICE_ROW_INTERLACED;
39
     } else if(theDevice == "Col") {
40
-        myDevice = DEVICE_VINTERLACE;
41
+        myDevice = DEVICE_COL_INTERLACED;
42
     } else if(theDevice == "Chess") {
43
         myDevice = DEVICE_CHESSBOARD;
44
     } else if(theDevice == "RowED") {
45
-        myDevice = DEVICE_HINTERLACE_ED;
46
+        myDevice = DEVICE_ROW_INTERLACED_ED;
47
     }
48
     return false;
49
 }
50
@@ -183,6 +181,30 @@
51
 #endif
52
 }
53
 
54
+void StOutInterlace::updateStrings() {
55
+    StTranslations aLangMap(getResourceManager(), ST_OUT_PLUGIN_NAME);
56
+    myDevices[DEVICE_ROW_INTERLACED]   ->Name = aLangMap.changeValueId(STTR_HINTERLACE_NAME,    "Row Interlaced");
57
+    myDevices[DEVICE_ROW_INTERLACED]   ->Desc = aLangMap.changeValueId(STTR_HINTERLACE_DESC,    "Row interlaced displays: Zalman, Hyundai,...");
58
+    myDevices[DEVICE_COL_INTERLACED]   ->Name = aLangMap.changeValueId(STTR_VINTERLACE_NAME,    "Column Interlaced");
59
+    myDevices[DEVICE_COL_INTERLACED]   ->Desc = aLangMap.changeValueId(STTR_VINTERLACE_DESC,    "Column interlaced displays");
60
+#if !defined(__ANDROID__)
61
+    myDevices[DEVICE_CHESSBOARD]       ->Name = aLangMap.changeValueId(STTR_CHESSBOARD_NAME,    "DLP TV (chessboard)");
62
+    myDevices[DEVICE_CHESSBOARD]       ->Desc = aLangMap.changeValueId(STTR_CHESSBOARD_DESC,    "DLP TV (chessboard)");
63
+    myDevices[DEVICE_ROW_INTERLACED_ED]->Name = aLangMap.changeValueId(STTR_HINTERLACE_ED_NAME, "Interlaced ED");
64
+    myDevices[DEVICE_ROW_INTERLACED_ED]->Desc = aLangMap.changeValueId(STTR_HINTERLACE_ED_DESC, "EDimensional in interlaced mode");
65
+#endif
66
+    params.ToReverse->setName(aLangMap.changeValueId(STTR_PARAMETER_REVERSE,  "Reverse Order"));
67
+    params.BindToMon->setName(aLangMap.changeValueId(STTR_PARAMETER_BIND_MON, "Bind To Supported Monitor"));
68
+
69
+    // about string
70
+    StString& aTitle     = aLangMap.changeValueId(STTR_PLUGIN_TITLE,   "sView - Interlaced Output library");
71
+    StString& aVerString = aLangMap.changeValueId(STTR_VERSION_STRING, "version");
72
+    StString& aDescr     = aLangMap.changeValueId(STTR_PLUGIN_DESCRIPTION,
73
+        "(C) {0} Kirill Gavrilov <{1}>\nOfficial site: {2}\n\nThis library is distributed under LGPL3.0");
74
+    myAbout = aTitle + '\n' + aVerString + " " + StVersionInfo::getSDKVersionString() + "\n \n"
75
+            + aDescr.format("2009-2016", "kirill@sview.ru", "www.sview.ru");
76
+}
77
+
78
 StOutInterlace::StOutInterlace(const StHandle<StResourceManager>& theResMgr,
79
                                const StNativeWin_t                theParentWindow)
80
 : StWindow(theResMgr, theParentWindow),
81
@@ -211,58 +233,44 @@
82
     StWindow::signals.onAnotherMonitor = stSlot(this, &StOutInterlace::doNewMonitor);
83
 
84
     const StSearchMonitors& aMonitors = StWindow::getMonitors();
85
-    StTranslations aLangMap(getResourceManager(), ST_OUT_PLUGIN_NAME);
86
-
87
-    myGlPrograms[DEVICE_HINTERLACE] = new StProgramFB("Row Interlace");
88
-    myGlPrograms[DEVICE_VINTERLACE] = new StProgramFB("Column Interlace");
89
-    myGlPrograms[DEVICE_CHESSBOARD] = new StProgramFB("Chessboard");
90
-    myGlPrograms[DEVICE_HINTERLACE_ED] = myGlPrograms[DEVICE_HINTERLACE];
91
+    myGlPrograms[DEVICE_ROW_INTERLACED]       = new StProgramFB("Row Interlace");
92
+    myGlPrograms[DEVICE_COL_INTERLACED]       = new StProgramFB("Column Interlace");
93
+    myGlPrograms[DEVICE_CHESSBOARD]           = new StProgramFB("Chessboard");
94
+    myGlPrograms[DEVICE_ROW_INTERLACED_ED]    = myGlPrograms[DEVICE_ROW_INTERLACED];
95
 
96
-    myGlProgramsRev[DEVICE_HINTERLACE] = new StProgramFB("Row Interlace Inversed");
97
-    myGlProgramsRev[DEVICE_VINTERLACE] = new StProgramFB("Column Interlace Inversed");
98
-    myGlProgramsRev[DEVICE_CHESSBOARD] = new StProgramFB("Chessboard Inversed");
99
-    myGlProgramsRev[DEVICE_HINTERLACE_ED] = myGlProgramsRev[DEVICE_HINTERLACE];
100
-
101
-    // about string
102
-    StString& aTitle     = aLangMap.changeValueId(STTR_PLUGIN_TITLE,   "sView - Interlaced Output library");
103
-    StString& aVerString = aLangMap.changeValueId(STTR_VERSION_STRING, "version");
104
-    StString& aDescr     = aLangMap.changeValueId(STTR_PLUGIN_DESCRIPTION,
105
-        "(C) {0} Kirill Gavrilov <{1}>\nOfficial site: {2}\n\nThis library is distributed under LGPL3.0");
106
-    myAbout = aTitle + '\n' + aVerString + " " + StVersionInfo::getSDKVersionString() + "\n \n"
107
-            + aDescr.format("2009-2015", "kirill@sview.ru", "www.sview.ru");
108
+    myGlProgramsRev[DEVICE_ROW_INTERLACED]    = new StProgramFB("Row Interlace Inversed");
109
+    myGlProgramsRev[DEVICE_COL_INTERLACED]    = new StProgramFB("Column Interlace Inversed");
110
+    myGlProgramsRev[DEVICE_CHESSBOARD]        = new StProgramFB("Chessboard Inversed");
111
+    myGlProgramsRev[DEVICE_ROW_INTERLACED_ED] = myGlProgramsRev[DEVICE_ROW_INTERLACED];
112
 
113
     // devices list
114
     StHandle<StOutDevice> aDevRow = new StOutDevice();
115
     aDevRow->PluginId = ST_OUT_PLUGIN_NAME;
116
-    aDevRow->DeviceId = "Row";
117
+    aDevRow->DeviceId = stCString("Row");
118
     aDevRow->Priority = ST_DEVICE_SUPPORT_NONE;
119
-    aDevRow->Name     = aLangMap.changeValueId(STTR_HINTERLACE_NAME, "Row Interlaced");
120
-    aDevRow->Desc     = aLangMap.changeValueId(STTR_HINTERLACE_DESC, "Row interlaced displays: Zalman, Hyundai,...");
121
+    aDevRow->Name     = stCString("Row Interlaced");
122
     myDevices.add(aDevRow);
123
 
124
     StHandle<StOutDevice> aDevCol = new StOutDevice();
125
     aDevCol->PluginId = ST_OUT_PLUGIN_NAME;
126
-    aDevCol->DeviceId = "Col";
127
+    aDevCol->DeviceId = stCString("Col");
128
     aDevCol->Priority = ST_DEVICE_SUPPORT_NONE;
129
-    aDevCol->Name     = aLangMap.changeValueId(STTR_VINTERLACE_NAME, "Column Interlaced");
130
-    aDevCol->Desc     = aLangMap.changeValueId(STTR_VINTERLACE_DESC, "Column interlaced displays");
131
+    aDevCol->Name     = stCString("Column Interlaced");
132
     myDevices.add(aDevCol);
133
 
134
 #if !defined(__ANDROID__)
135
     StHandle<StOutDevice> aDevChess = new StOutDevice();
136
     aDevChess->PluginId = ST_OUT_PLUGIN_NAME;
137
-    aDevChess->DeviceId = "Chess";
138
+    aDevChess->DeviceId = stCString("Chess");
139
     aDevChess->Priority = ST_DEVICE_SUPPORT_NONE;
140
-    aDevChess->Name     = aLangMap.changeValueId(STTR_CHESSBOARD_NAME, "DLP TV (chessboard)");
141
-    aDevChess->Desc     = aLangMap.changeValueId(STTR_CHESSBOARD_DESC, "DLP TV (chessboard)");
142
+    aDevChess->Name     = stCString("DLP TV (chessboard)");
143
     myDevices.add(aDevChess);
144
 
145
     StHandle<StOutDevice> aDevED = new StOutDevice();
146
     aDevED->PluginId = ST_OUT_PLUGIN_NAME;
147
-    aDevED->DeviceId = "RowED";
148
+    aDevED->DeviceId = stCString("RowED");
149
     aDevED->Priority = ST_DEVICE_SUPPORT_NONE;
150
-    aDevED->Name     = aLangMap.changeValueId(STTR_HINTERLACE_ED_NAME, "Interlaced ED");
151
-    aDevED->Desc     = aLangMap.changeValueId(STTR_HINTERLACE_ED_DESC, "EDimensional in interlaced mode");
152
+    aDevED->Name     = stCString("Interlaced ED");
153
     myDevices.add(aDevED);
154
 #endif
155
 
156
@@ -274,12 +282,13 @@
157
     }
158
 
159
     // options
160
-    params.ToReverse = new StBoolParamNamed(false, aLangMap.changeValueId(STTR_PARAMETER_REVERSE,  "Reverse Order"));
161
-    params.BindToMon = new StBoolParamNamed(true,  aLangMap.changeValueId(STTR_PARAMETER_BIND_MON, "Bind To Supported Monitor"));
162
-    mySettings->loadParam(ST_SETTING_REVERSE,      params.ToReverse);
163
-    mySettings->loadParam(ST_SETTING_BIND_MONITOR, params.BindToMon);
164
+    params.ToReverse = new StBoolParamNamed(false, stCString("reverse"),     stCString("reverse"));
165
+    params.BindToMon = new StBoolParamNamed(true,  stCString("bindMonitor"), stCString("bindMonitor"));
166
+    mySettings->loadParam(params.ToReverse);
167
+    mySettings->loadParam(params.BindToMon);
168
 
169
     params.BindToMon->signals.onChanged.connect(this, &StOutInterlace::doSetBindToMonitor);
170
+    updateStrings();
171
 
172
     // load window position
173
     if(isMovable()) {
174
@@ -321,7 +330,7 @@
175
     // load device settings
176
     mySettings->loadInt32(ST_SETTING_DEVICE_ID, myDevice);
177
     if(myDevice == DEVICE_AUTO) {
178
-        myDevice = DEVICE_HINTERLACE;
179
+        myDevice = DEVICE_ROW_INTERLACED;
180
     }
181
 
182
     // request slave window
183
@@ -371,13 +380,13 @@
184
     if(isMovable() && myWasUsed) {
185
         mySettings->saveInt32Rect(ST_SETTING_WINDOWPOS, StWindow::getWindowedPlacement());
186
     }
187
-    mySettings->saveParam(ST_SETTING_BIND_MONITOR, params.BindToMon);
188
-    mySettings->saveParam(ST_SETTING_REVERSE,      params.ToReverse);
189
+    mySettings->saveParam(params.BindToMon);
190
+    mySettings->saveParam(params.ToReverse);
191
     mySettings->saveInt32(ST_SETTING_DEVICE_ID,    myDevice);
192
     mySettings->flush();
193
 
194
     // process exit from StApplication
195
-    if((myDevice == DEVICE_HINTERLACE_ED) && myIsEDactive) {
196
+    if((myDevice == DEVICE_ROW_INTERLACED_ED) && myIsEDactive) {
197
         // disactivate eDimensional shuttered glasses
198
         myEDTimer.restart();
199
         myIsEDactive = false;
200
@@ -428,8 +437,8 @@
201
     }
202
 
203
     // row interlaced
204
-    StGLFragmentShader aShaderRow(myGlPrograms[DEVICE_HINTERLACE]->getTitle());
205
-    StGLFragmentShader aShaderRowRev(myGlProgramsRev[DEVICE_HINTERLACE]->getTitle());
206
+    StGLFragmentShader aShaderRow(myGlPrograms[DEVICE_ROW_INTERLACED]->getTitle());
207
+    StGLFragmentShader aShaderRowRev(myGlProgramsRev[DEVICE_ROW_INTERLACED]->getTitle());
208
     StGLAutoRelease aTmp2(*myContext, aShaderRow);
209
     StGLAutoRelease aTmp3(*myContext, aShaderRowRev);
210
     if(!aShaderRow.init(*myContext,
211
@@ -449,18 +458,18 @@
212
         myIsBroken = true;
213
         return true;
214
     }
215
-    myGlPrograms   [DEVICE_HINTERLACE]->create(*myContext)
216
+    myGlPrograms[DEVICE_ROW_INTERLACED]->create(*myContext)
217
                                        .attachShader(*myContext, aVertexShader)
218
                                        .attachShader(*myContext, aShaderRow)
219
                                        .link(*myContext);
220
-    myGlProgramsRev[DEVICE_HINTERLACE]->create(*myContext)
221
+    myGlProgramsRev[DEVICE_ROW_INTERLACED]->create(*myContext)
222
                                        .attachShader(*myContext, aVertexShader)
223
                                        .attachShader(*myContext, aShaderRowRev)
224
                                        .link(*myContext);
225
 
226
     // column interlaced
227
-    StGLFragmentShader aShaderCol(myGlPrograms[DEVICE_VINTERLACE]->getTitle());
228
-    StGLFragmentShader aShaderColRev(myGlProgramsRev[DEVICE_VINTERLACE]->getTitle());
229
+    StGLFragmentShader aShaderCol   (myGlPrograms   [DEVICE_COL_INTERLACED]->getTitle());
230
+    StGLFragmentShader aShaderColRev(myGlProgramsRev[DEVICE_COL_INTERLACED]->getTitle());
231
     StGLAutoRelease aTmp4(*myContext, aShaderCol);
232
     StGLAutoRelease aTmp5(*myContext, aShaderColRev);
233
     if(!aShaderCol.init(*myContext,
234
@@ -480,11 +489,11 @@
235
         myIsBroken = true;
236
         return true;
237
     }
238
-    myGlPrograms   [DEVICE_VINTERLACE]->create(*myContext)
239
+    myGlPrograms[DEVICE_COL_INTERLACED]->create(*myContext)
240
                                        .attachShader(*myContext, aVertexShader)
241
                                        .attachShader(*myContext, aShaderCol)
242
                                        .link(*myContext);
243
-    myGlProgramsRev[DEVICE_VINTERLACE]->create(*myContext)
244
+    myGlProgramsRev[DEVICE_COL_INTERLACED]->create(*myContext)
245
                                        .attachShader(*myContext, aVertexShader)
246
                                        .attachShader(*myContext, aShaderColRev)
247
                                        .link(*myContext);
248
@@ -560,7 +569,7 @@
249
     myVpSizeYOnLoc  = myEDIntelaceOn->getUniformLocation(*myContext, "vpSizeY");
250
     myVpSizeYOffLoc = myEDOff       ->getUniformLocation(*myContext, "vpSizeY");
251
 
252
-    if(myDevice == DEVICE_HINTERLACE_ED) {
253
+    if(myDevice == DEVICE_ROW_INTERLACED_ED) {
254
         // could be eDimensional shuttered glasses
255
         myEDTimer.restart(2000000.0);
256
     }
257
@@ -604,13 +613,13 @@
258
 
259
     const StKeysState& aKeys = StWindow::getKeysState();
260
     if(aKeys.isKeyDown(ST_VK_F1)) {
261
-        myDevice = DEVICE_HINTERLACE;
262
+        myDevice = DEVICE_ROW_INTERLACED;
263
     } else if(aKeys.isKeyDown(ST_VK_F2)) {
264
-        myDevice = DEVICE_VINTERLACE;
265
+        myDevice = DEVICE_COL_INTERLACED;
266
     } else if(aKeys.isKeyDown(ST_VK_F3)) {
267
         myDevice = DEVICE_CHESSBOARD;
268
     } else if(aKeys.isKeyDown(ST_VK_F4)) {
269
-        myDevice = DEVICE_HINTERLACE_ED;
270
+        myDevice = DEVICE_ROW_INTERLACED_ED;
271
     }
272
 
273
     // resize ED rectangle
274
@@ -698,7 +707,7 @@
275
             myFrmBuffer->release(*myContext);
276
         }
277
 
278
-        if(myDevice == DEVICE_HINTERLACE_ED) {
279
+        if(myDevice == DEVICE_ROW_INTERLACED_ED) {
280
             // EDimensional deactivation
281
             if(myIsEDCodeFinished) {
282
                 if(myIsStereo) {
283
@@ -742,11 +751,11 @@
284
     // handle portrait orientation
285
     if(myIsMonPortrait) {
286
         switch(myDevice) {
287
-            case DEVICE_HINTERLACE:
288
-                aDevice = DEVICE_VINTERLACE;
289
+            case DEVICE_ROW_INTERLACED:
290
+                aDevice = DEVICE_COL_INTERLACED;
291
                 break;
292
-            case DEVICE_VINTERLACE:
293
-                aDevice = DEVICE_HINTERLACE;
294
+            case DEVICE_COL_INTERLACED:
295
+                aDevice = DEVICE_ROW_INTERLACED;
296
                 break;
297
         }
298
     }
299
@@ -755,8 +764,8 @@
300
     if(!StWindow::isFullScreen() && (aBackStore.y() + aBackStore.height()) % 2 == 1) {
301
         switch(aDevice) {
302
             case DEVICE_CHESSBOARD:
303
-            case DEVICE_HINTERLACE:
304
-            case DEVICE_HINTERLACE_ED:
305
+            case DEVICE_ROW_INTERLACED:
306
+            case DEVICE_ROW_INTERLACED_ED:
307
                 isPixelReverse = !isPixelReverse; break;
308
         }
309
     }
310
@@ -765,7 +774,7 @@
311
     if(!StWindow::isFullScreen() && aBackStore.x() % 2 == 1) {
312
         switch(aDevice) {
313
             case DEVICE_CHESSBOARD:
314
-            case DEVICE_VINTERLACE:
315
+            case DEVICE_COL_INTERLACED:
316
                 isPixelReverse = !isPixelReverse; break;
317
         }
318
     }
319
@@ -813,7 +822,7 @@
320
     aProgram->unuse(*myContext);
321
     myFrmBuffer->unbindTexture(*myContext);
322
 
323
-    if(myDevice == DEVICE_HINTERLACE_ED) {
324
+    if(myDevice == DEVICE_ROW_INTERLACED_ED) {
325
         // EDimensional activation
326
         if(myIsEDCodeFinished) {
327
             if(!myIsStereo) {
328
sview-15_11.tar.gz/StOutInterlace/StOutInterlace.h -> sview-16_06.tar.gz/StOutInterlace/StOutInterlace.h Changed
136
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StOutInterlace, class providing stereoscopic output in row interlaced format using StCore toolkit.
4
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -27,7 +27,7 @@
10
         public:
11
 
12
     ST_LOCAL StProgramFB(const StString& theTitle);
13
-    ST_LOCAL virtual bool link(StGLContext& theCtx);
14
+    ST_LOCAL virtual bool link(StGLContext& theCtx) ST_ATTR_OVERRIDE;
15
 
16
 };
17
 
18
@@ -52,72 +52,77 @@
19
     /**
20
      * Renderer about string.
21
      */
22
-    ST_CPPEXPORT virtual StString getRendererAbout() const;
23
+    ST_CPPEXPORT virtual StString getRendererAbout() const ST_ATTR_OVERRIDE;
24
 
25
     /**
26
      * Renderer id.
27
      */
28
-    ST_CPPEXPORT virtual const char* getRendererId() const;
29
+    ST_CPPEXPORT virtual const char* getRendererId() const ST_ATTR_OVERRIDE;
30
 
31
     /**
32
      * Active Device id.
33
      */
34
-    ST_CPPEXPORT virtual const char* getDeviceId() const;
35
+    ST_CPPEXPORT virtual const char* getDeviceId() const ST_ATTR_OVERRIDE;
36
 
37
     /**
38
      * Activate Device.
39
      */
40
-    ST_CPPEXPORT virtual bool setDevice(const StString& theDevice);
41
+    ST_CPPEXPORT virtual bool setDevice(const StString& theDevice) ST_ATTR_OVERRIDE;
42
 
43
     /**
44
      * Devices list.
45
      */
46
-    ST_CPPEXPORT virtual void getDevices(StOutDevicesList& theList) const;
47
+    ST_CPPEXPORT virtual void getDevices(StOutDevicesList& theList) const ST_ATTR_OVERRIDE;
48
 
49
     /**
50
      * Retrieve options list.
51
      */
52
-    ST_CPPEXPORT virtual void getOptions(StParamsList& theList) const;
53
+    ST_CPPEXPORT virtual void getOptions(StParamsList& theList) const ST_ATTR_OVERRIDE;
54
 
55
     /**
56
      * Create and show window.
57
      * @return false if any critical error appeared
58
      */
59
-    ST_CPPEXPORT virtual bool create();
60
+    ST_CPPEXPORT virtual bool create() ST_ATTR_OVERRIDE;
61
 
62
     /**
63
      * Close the window.
64
      */
65
-    ST_CPPEXPORT virtual void close();
66
+    ST_CPPEXPORT virtual void close() ST_ATTR_OVERRIDE;
67
 
68
     /**
69
      * Extra routines to be processed before window close.
70
      */
71
-    ST_CPPEXPORT virtual void beforeClose();
72
+    ST_CPPEXPORT virtual void beforeClose() ST_ATTR_OVERRIDE;
73
 
74
     /**
75
      * Show up the window.
76
      */
77
-    ST_CPPEXPORT virtual void show();
78
+    ST_CPPEXPORT virtual void show() ST_ATTR_OVERRIDE;
79
 
80
     /**
81
      * Process callback.
82
      */
83
-    ST_CPPEXPORT virtual void processEvents();
84
+    ST_CPPEXPORT virtual void processEvents() ST_ATTR_OVERRIDE;
85
 
86
     /**
87
      * Stereo renderer.
88
      */
89
-    ST_CPPEXPORT virtual void stglDraw();
90
+    ST_CPPEXPORT virtual void stglDraw() ST_ATTR_OVERRIDE;
91
+
92
+    /**
93
+     * Update strings.
94
+     */
95
+    ST_LOCAL virtual void doChangeLanguage() ST_ATTR_OVERRIDE { updateStrings(); }
96
 
97
         private:
98
 
99
     enum {
100
-        DEVICE_AUTO          =-1,
101
-        DEVICE_HINTERLACE    = 0, //!< interlace (horizontal 1xPixel lines, full color from R or L)
102
-        DEVICE_VINTERLACE    = 1, //!< interlace (vertical 1xPixel lines, full color from R or L)
103
-        DEVICE_CHESSBOARD    = 2, //!< 1xPixel chessboard (some DLP devices)
104
-        DEVICE_HINTERLACE_ED = 3, //!< interlace (horizontal 1xPixel lines) + EDimensional onscreen codes
105
+        DEVICE_AUTO              =-1,
106
+        DEVICE_ROW_INTERLACED    = 0, //!< interlace (horizontal 1xPixel lines, full color from R or L)
107
+        DEVICE_COL_INTERLACED    = 1, //!< interlace (vertical 1xPixel lines, full color from R or L)
108
+        DEVICE_CHESSBOARD        = 2, //!< 1xPixel chessboard (some DLP devices)
109
+        DEVICE_ROW_INTERLACED_ED = 3, //!< interlace (horizontal 1xPixel lines) + EDimensional onscreen codes
110
 
111
         DEVICE_NB,
112
     };
113
@@ -135,6 +140,11 @@
114
     ST_LOCAL void releaseResources();
115
 
116
     /**
117
+     * Update strings.
118
+     */
119
+    ST_LOCAL void updateStrings();
120
+
121
+    /**
122
      * On/off VSync callback.
123
      */
124
     ST_LOCAL void doSwitchVSync(const int32_t theValue);
125
@@ -157,8 +167,8 @@
126
 
127
     struct {
128
 
129
-        StHandle<StBoolParam> ToReverse; //!< configurable flag to reverse rows order
130
-        StHandle<StBoolParam> BindToMon; //!< flag to bind to monitor
131
+        StHandle<StBoolParamNamed> ToReverse; //!< configurable flag to reverse rows order
132
+        StHandle<StBoolParamNamed> BindToMon; //!< flag to bind to monitor
133
 
134
     } params;
135
 
136
sview-15_11.tar.gz/StOutInterlace/StOutInterlace.rc -> sview-16_06.tar.gz/StOutInterlace/StOutInterlace.rc Changed
10
 
1
@@ -15,7 +15,7 @@
2
     BEGIN
3
       VALUE "FileDescription", "Interlace Renderer library\000"
4
       VALUE "FileVersion",     SVIEW_SDK_VER_STRING "\000"
5
-      VALUE "LegalCopyright",  "\251 2009-2015 Kirill Gavrilov\000"
6
+      VALUE "LegalCopyright",  "\251 2009-2016 Kirill Gavrilov\000"
7
       VALUE "ProductName",     "StOutInterlace\000"
8
       VALUE "ProductVersion",  SVIEW_SDK_VER_STRING "\000"
9
       VALUE "OfficialSite",    "www.sview.ru\000"
10
sview-15_11.tar.gz/StOutInterlace/StOutInterlace.vcxproj -> sview-16_06.tar.gz/StOutInterlace/StOutInterlace.vcxproj Changed
58
 
1
@@ -21,7 +21,7 @@
2
   <PropertyGroup Label="Globals">
3
     <ProjectGuid>{D7A2C3D4-2A3C-447C-B008-D62F8A42C078}</ProjectGuid>
4
   </PropertyGroup>
5
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
6
+  <Import Project="$(SolutionDir)sView.Cpp.Default.props" />
7
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
8
     <ConfigurationType>DynamicLibrary</ConfigurationType>
9
     <CharacterSet>Unicode</CharacterSet>
10
@@ -101,6 +101,9 @@
11
       <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_x86;..\lib\WIN_vc_x86;$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
12
       <SubSystem>Windows</SubSystem>
13
     </Link>
14
+    <PostBuildEvent>
15
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
16
+    </PostBuildEvent>
17
   </ItemDefinitionGroup>
18
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
19
     <Midl>
20
@@ -136,6 +139,9 @@
21
       <GenerateDebugInformation>true</GenerateDebugInformation>
22
       <SubSystem>Windows</SubSystem>
23
     </Link>
24
+    <PostBuildEvent>
25
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
26
+    </PostBuildEvent>
27
   </ItemDefinitionGroup>
28
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
29
     <Midl>
30
@@ -169,6 +175,9 @@
31
       <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_AMD64;..\lib\WIN_vc_AMD64;$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
32
       <SubSystem>Windows</SubSystem>
33
     </Link>
34
+    <PostBuildEvent>
35
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
36
+    </PostBuildEvent>
37
   </ItemDefinitionGroup>
38
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
39
     <Midl>
40
@@ -204,11 +213,17 @@
41
       <GenerateDebugInformation>true</GenerateDebugInformation>
42
       <SubSystem>Windows</SubSystem>
43
     </Link>
44
+    <PostBuildEvent>
45
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
46
+    </PostBuildEvent>
47
   </ItemDefinitionGroup>
48
   <ItemGroup>
49
     <ClCompile Include="StOutInterlace.cpp" />
50
   </ItemGroup>
51
   <ItemGroup>
52
+    <ClInclude Include="StOutInterlace.h" />
53
+  </ItemGroup>
54
+  <ItemGroup>
55
     <ResourceCompile Include="StOutInterlace.rc" />
56
   </ItemGroup>
57
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
58
sview-15_11.tar.gz/StOutInterlace/StOutInterlace.vcxproj.filters -> sview-16_06.tar.gz/StOutInterlace/StOutInterlace.vcxproj.filters Changed
23
 
1
@@ -1,14 +1,14 @@
2
 <?xml version="1.0" encoding="utf-8"?>
3
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
   <ItemGroup>
5
-    <Filter Include="Source files">
6
-      <UniqueIdentifier>{CACACF6C-18DA-13DF-148A-3C969CC3F588}</UniqueIdentifier>
7
+    <Filter Include="Source Files">
8
+      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
9
+      <Extensions>cpp;c;cc;cxx;m;mm;def;odl;idl;hpj;bat;asm;asmx</Extensions>
10
+    </Filter>
11
+    <Filter Include="Header Files">
12
+      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
13
+      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
14
     </Filter>
15
-  </ItemGroup>
16
-  <ItemGroup>
17
-    <ClCompile Include="StOutInterlace.cpp">
18
-      <Filter>Source files</Filter>
19
-    </ClCompile>
20
   </ItemGroup>
21
   <ItemGroup>
22
     <ResourceCompile Include="StOutInterlace.rc" />
23
sview-15_11.tar.gz/StOutPageFlip/StDXNVWindow.cpp -> sview-16_06.tar.gz/StOutPageFlip/StDXNVWindow.cpp Changed
23
 
1
@@ -114,9 +114,18 @@
2
     if(myStWin->isFullScreen() && myStWin->isStereoOutput()) {
3
         if(theMsg == WM_MOUSEWHEEL) {
4
             int zDelta = GET_WHEEL_DELTA_WPARAM(theParamW);
5
-            int mbtn = (zDelta > 0) ? ST_MOUSE_SCROLL_V_UP : ST_MOUSE_SCROLL_V_DOWN;
6
-            updateMouseBtn(mbtn, true);  // emulate down
7
-            updateMouseBtn(mbtn, false); // emulate up
8
+            const StPointD_t aPnt = myStWin->getMousePos();
9
+            StEvent anEvent;
10
+            anEvent.Type = stEvent_Scroll;
11
+            anEvent.Scroll.Time   = 0.0; //getEventTime(myEvent.time);
12
+            anEvent.Scroll.PointX = aPnt.x();
13
+            anEvent.Scroll.PointY = aPnt.y();
14
+            anEvent.Scroll.StepsX = 0;
15
+            anEvent.Scroll.StepsY = (zDelta > 0) ? 1 : -1;
16
+            anEvent.Scroll.DeltaX = 0.0;
17
+            anEvent.Scroll.DeltaY = 10.0f * anEvent.Scroll.StepsY;
18
+            anEvent.Scroll.IsFromMultiTouch = false;
19
+            myStWin->post(anEvent);
20
         }
21
 
22
         updateMouseBtn(ST_MOUSE_LEFT,   GetAsyncKeyState(GetSystemMetrics(SM_SWAPBUTTON) == 0 ? VK_LBUTTON : VK_RBUTTON) != 0);
23
sview-15_11.tar.gz/StOutPageFlip/StGLColoredLine.h -> sview-16_06.tar.gz/StOutPageFlip/StGLColoredLine.h Changed
31
 
1
@@ -16,11 +16,11 @@
2
 
3
         public:
4
 
5
-    ST_LOCAL virtual int getSizeY() const {
6
+    ST_LOCAL virtual int getSizeY() const ST_ATTR_OVERRIDE {
7
         return 1;
8
     }
9
 
10
-    ST_LOCAL virtual int getSlaveId() const {
11
+    ST_LOCAL virtual int getSlaveId() const ST_ATTR_OVERRIDE {
12
         return SLAVE_HLINE_BOTTOM;
13
     }
14
 
15
@@ -34,12 +34,12 @@
16
 
17
     ST_LOCAL StGLColoredLine();
18
     ST_LOCAL virtual ~StGLColoredLine();
19
-    ST_LOCAL virtual void release(StGLContext& theCtx);
20
-    ST_LOCAL virtual bool stglInit(StGLContext& theCtx);
21
+    ST_LOCAL virtual void release (StGLContext& theCtx) ST_ATTR_OVERRIDE;
22
+    ST_LOCAL virtual bool stglInit(StGLContext& theCtx) ST_ATTR_OVERRIDE;
23
     ST_LOCAL virtual void stglDraw(StGLContext& theCtx,
24
                                    unsigned int theView,
25
                                    const int    theWinWidth,
26
-                                   const int );
27
+                                   const int ) ST_ATTR_OVERRIDE;
28
 
29
         private:
30
 
31
sview-15_11.tar.gz/StOutPageFlip/StGLControlED.cpp -> sview-16_06.tar.gz/StOutPageFlip/StGLControlED.cpp Changed
10
 
1
@@ -39,7 +39,7 @@
2
         return atrVVertexLoc;
3
     }
4
 
5
-    virtual bool link(StGLContext& theCtx) {
6
+    virtual bool link(StGLContext& theCtx) ST_ATTR_OVERRIDE {
7
         if(!StGLProgram::link(theCtx)) {
8
             return false;
9
         }
10
sview-15_11.tar.gz/StOutPageFlip/StGLControlED.h -> sview-16_06.tar.gz/StOutPageFlip/StGLControlED.h Changed
50
 
1
@@ -18,24 +18,24 @@
2
 
3
         public:
4
 
5
-    ST_LOCAL virtual int getSizeY() const {
6
+    ST_LOCAL virtual int getSizeY() const ST_ATTR_OVERRIDE {
7
         return 10;
8
     }
9
 
10
-    ST_LOCAL virtual int getSlaveId() const {
11
+    ST_LOCAL virtual int getSlaveId() const ST_ATTR_OVERRIDE {
12
         return SLAVE_HLINE_TOP;
13
     }
14
 
15
     ST_LOCAL StGLControlED();
16
     ST_LOCAL virtual ~StGLControlED();
17
 
18
-    ST_LOCAL virtual void release(StGLContext& theCtx);
19
+    ST_LOCAL virtual void release(StGLContext& theCtx) ST_ATTR_OVERRIDE;
20
 
21
-    ST_LOCAL virtual bool isActive() const {
22
+    ST_LOCAL virtual bool isActive() const ST_ATTR_OVERRIDE {
23
         return myTimerCode.isOn() || myTimerBlack.isOn();
24
     }
25
 
26
-    ST_LOCAL virtual void setMode(int mode) {
27
+    ST_LOCAL virtual void setMode(int mode) ST_ATTR_OVERRIDE {
28
         if(myTimerCode.isOn() && myTimerCode.getElapsedTimeInMilliSec() > DELAY_MS) {
29
             myTimerCode.stop();
30
             myTimerBlack.restart();
31
@@ -48,15 +48,15 @@
32
         }
33
     }
34
 
35
-    ST_LOCAL virtual double quitMS() {
36
+    ST_LOCAL virtual double quitMS() ST_ATTR_OVERRIDE {
37
         return 4.0 * DELAY_MS;
38
     }
39
 
40
-    ST_LOCAL virtual bool stglInit(StGLContext& theCtx);
41
+    ST_LOCAL virtual bool stglInit(StGLContext& theCtx) ST_ATTR_OVERRIDE;
42
     ST_LOCAL virtual void stglDraw(StGLContext& theCtx,
43
                                    unsigned int theView,
44
                                    const int    theWinWidth,
45
-                                   const int    theWinHeight);
46
+                                   const int    theWinHeight) ST_ATTR_OVERRIDE;
47
 
48
         private:
49
 
50
sview-15_11.tar.gz/StOutPageFlip/StOutPageFlip.cbp -> sview-16_06.tar.gz/StOutPageFlip/StOutPageFlip.cbp Changed
36
 
1
@@ -175,15 +175,14 @@
2
                    <Add option="-DST_HAVE_STCONFIG" />
3
                </Compiler>
4
                <Linker>
5
-                   <Add option="-s" />
6
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
7
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
8
                    <Add option="-framework Appkit" />
9
                    <Add option="-framework OpenGL" />
10
                    <Add library="objc" />
11
                </Linker>
12
                <ExtraCommands>
13
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
14
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
15
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
16
                </ExtraCommands>
17
            </Target>
18
            <Target title="MAC_gcc_DEBUG">
19
@@ -200,14 +199,14 @@
20
                    <Add option="-DST_HAVE_STCONFIG" />
21
                </Compiler>
22
                <Linker>
23
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
24
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
25
                    <Add option="-framework Appkit" />
26
                    <Add option="-framework OpenGL" />
27
                    <Add library="objc" />
28
                </Linker>
29
                <ExtraCommands>
30
                    <Add before='bash ../copy_res.sh $(TARGET_OUTPUT_DIR) $(PROJECT_NAME)' />
31
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
32
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
33
                </ExtraCommands>
34
            </Target>
35
        </Build>
36
sview-15_11.tar.gz/StOutPageFlip/StOutPageFlip.cpp -> sview-16_06.tar.gz/StOutPageFlip/StOutPageFlip.cpp Changed
195
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StOutPageFlip, class providing stereoscopic output for Shutter Glasses displays using StCore toolkit.
4
- * Copyright © 2007-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -30,10 +30,8 @@
10
 
11
     static const char ST_OUT_PLUGIN_NAME[] = "StOutPageFlip";
12
 
13
-    static const char ST_SETTING_ADVANCED[]   = "advanced";
14
     static const char ST_SETTING_WINDOWPOS[]  = "windowPos";
15
     static const char ST_SETTING_DEVICE_ID[]  = "deviceId";
16
-    static const char ST_SETTING_QUADBUFFER[] = "quadBufferType";
17
 }
18
 
19
 StOutPageFlip::StOutDirect3D::StOutDirect3D()
20
@@ -73,7 +71,7 @@
21
     StGLVarLocation getVVertexLoc()   const { return atrVVertexLoc; }
22
     StGLVarLocation getVTexCoordLoc() const { return atrVTexCoordLoc; }
23
 
24
-    virtual bool init(StGLContext& theCtx) {
25
+    virtual bool init(StGLContext& theCtx) ST_ATTR_OVERRIDE {
26
         const char VERTEX_SHADER[] =
27
            "attribute vec4 vVertex; \
28
             attribute vec2 vTexCoord; \
29
@@ -258,7 +256,7 @@
30
         }
31
     }
32
 
33
-    virtual void release(StGLContext& theCtx) {
34
+    void release(StGLContext& theCtx) {
35
         releaseSurfaces(theCtx);
36
         if(myGlFboL != StGLFrameBuffer::NO_FRAMEBUFFER) {
37
             theCtx.extAll->glDeleteFramebuffers(1, &myGlFboL);
38
@@ -416,6 +414,53 @@
39
 #endif
40
 }
41
 
42
+void StOutPageFlip::doChangeLanguage() {
43
+    myLangMap.reload();
44
+    updateStrings();
45
+}
46
+
47
+void StOutPageFlip::updateStrings() {
48
+    StTranslations aLangMap(getResourceManager(), ST_OUT_PLUGIN_NAME);
49
+
50
+    myDevices[DEVICE_SHUTTERS]->Name = myLangMap.changeValueId(STTR_PAGEFLIP_NAME, "Shutter glasses");
51
+    myDevices[DEVICE_SHUTTERS]->Desc = myLangMap.changeValueId(STTR_PAGEFLIP_DESC, "Shutter glasses");
52
+    myDevices[DEVICE_VUZIX]   ->Name = myLangMap.changeValueId(STTR_VUZIX_NAME, "Vuzix HMD");
53
+    myDevices[DEVICE_VUZIX]   ->Desc = myLangMap.changeValueId(STTR_VUZIX_DESC, "Vuzix HMD");
54
+
55
+    params.QuadBuffer->setName(myLangMap.changeValueId(STTR_PARAMETER_QBUFFER_TYPE, "Quad Buffer type"));
56
+    params.QuadBuffer->defineOption(QUADBUFFER_HARD_OPENGL, myLangMap.changeValueId(STTR_PARAMETER_QB_HARDWARE, "OpenGL Hardware"));
57
+#ifdef _WIN32
58
+    StString aDxDesc;
59
+    if(myDxInfo.hasAqbsSupport && myDxInfo.hasNvStereoSupport) {
60
+        aDxDesc = myLangMap.changeValueId(STTR_PARAMETER_QB_D3D_ANY,     "Direct3D (Fullscreen)");
61
+    } else if(myDxInfo.hasAqbsSupport) {
62
+        aDxDesc = myLangMap.changeValueId(STTR_PARAMETER_QB_D3D_AMD,     "Direct3D AMD (Fullscreen)");
63
+    } else if(myDxInfo.hasNvStereoSupport) {
64
+        aDxDesc = myLangMap.changeValueId(STTR_PARAMETER_QB_D3D_NV,      "Direct3D NVIDIA (Fullscreen)");
65
+    } else if(myDxInfo.hasAmdAdapter) {
66
+        aDxDesc = myLangMap.changeValueId(STTR_PARAMETER_QB_D3D_AMD_OFF, "Direct3D AMD (Unavailable)");
67
+    } else if(myDxInfo.hasNvAdapter) {
68
+        aDxDesc = myLangMap.changeValueId(STTR_PARAMETER_QB_D3D_NV_OFF,  "Direct3D NVIDIA (Disabled)");
69
+    } else {
70
+        aDxDesc = myLangMap.changeValueId(STTR_PARAMETER_QB_D3D_OFF,     "Direct3D (Unavailable)");
71
+    }
72
+    params.QuadBuffer->defineOption(QUADBUFFER_HARD_D3D_ANY, aDxDesc);
73
+#endif
74
+    if(params.QuadBuffer->getValues().size() > QUADBUFFER_SOFT) {
75
+        params.QuadBuffer->defineOption(QUADBUFFER_SOFT, myLangMap.changeValueId(STTR_PARAMETER_QB_EMULATED, "OpenGL Emulated"));
76
+    }
77
+
78
+    params.ToShowExtra->setName(stCString("Show Extra Options"));
79
+
80
+    // about string
81
+    StString& aTitle     = myLangMap.changeValueId(STTR_PLUGIN_TITLE,   "sView - PageFlip Output module");
82
+    StString& aVerString = myLangMap.changeValueId(STTR_VERSION_STRING, "version");
83
+    StString& aDescr     = myLangMap.changeValueId(STTR_PLUGIN_DESCRIPTION,
84
+        "(C) {0} Kirill Gavrilov <{1}>\nOfficial site: {2}\n\nThis library is distributed under LGPL3.0");
85
+    myAbout = aTitle + '\n' + aVerString + " " + StVersionInfo::getSDKVersionString() + "\n \n"
86
+            + aDescr.format("2007-2016", "kirill@sview.ru", "www.sview.ru");
87
+}
88
+
89
 StOutPageFlip::StOutPageFlip(const StHandle<StResourceManager>& theResMgr,
90
                              const StNativeWin_t                theParentWindow)
91
 : StWindow(theResMgr, theParentWindow),
92
@@ -430,14 +475,6 @@
93
     StWindow::signals.onAnotherMonitor = stSlot(this, &StOutPageFlip::doNewMonitor);
94
     const StSearchMonitors& aMonitors = StWindow::getMonitors();
95
 
96
-    // about string
97
-    StString& aTitle     = myLangMap.changeValueId(STTR_PLUGIN_TITLE,   "sView - PageFlip Output module");
98
-    StString& aVerString = myLangMap.changeValueId(STTR_VERSION_STRING, "version");
99
-    StString& aDescr     = myLangMap.changeValueId(STTR_PLUGIN_DESCRIPTION,
100
-        "(C) {0} Kirill Gavrilov <{1}>\nOfficial site: {2}\n\nThis library is distributed under LGPL3.0");
101
-    myAbout = aTitle + '\n' + aVerString + " " + StVersionInfo::getSDKVersionString() + "\n \n"
102
-            + aDescr.format("2007-2015", "kirill@sview.ru", "www.sview.ru");
103
-
104
     // detect connected displays
105
     bool hasQuadBufferGl  = false;
106
     bool hasQuadBufferD3D = false;
107
@@ -463,18 +500,16 @@
108
     // devices list
109
     StHandle<StOutDevice> aDevShutters = new StOutDevice();
110
     aDevShutters->PluginId = ST_OUT_PLUGIN_NAME;
111
-    aDevShutters->DeviceId = "Shutters";
112
+    aDevShutters->DeviceId = stCString("Shutters");
113
     aDevShutters->Priority = aSupportLevelShutters;
114
-    aDevShutters->Name     = myLangMap.changeValueId(STTR_PAGEFLIP_NAME, "Shutter glasses");
115
-    aDevShutters->Desc     = myLangMap.changeValueId(STTR_PAGEFLIP_DESC, "Shutter glasses");
116
+    aDevShutters->Name     = stCString("Shutter glasses");
117
     myDevices.add(aDevShutters);
118
 
119
     StHandle<StOutDevice> aDevVuzix = new StOutDevice();
120
     aDevVuzix->PluginId = ST_OUT_PLUGIN_NAME;
121
-    aDevVuzix->DeviceId = "Vuzix";
122
+    aDevVuzix->DeviceId = stCString("Vuzix");
123
     aDevVuzix->Priority = aSupportLevelVuzix;
124
-    aDevVuzix->Name     = myLangMap.changeValueId(STTR_VUZIX_NAME, "Vuzix HMD");
125
-    aDevVuzix->Desc     = myLangMap.changeValueId(STTR_VUZIX_DESC, "Vuzix HMD");
126
+    aDevVuzix->Name     = stCString("Vuzix HMD");
127
     myDevices.add(aDevVuzix);
128
 
129
     // load window position
130
@@ -508,36 +543,22 @@
131
     }
132
 
133
     // Quad Buffer type option
134
-    params.QuadBuffer = new StEnumParam(QUADBUFFER_HARD_OPENGL, myLangMap.changeValueId(STTR_PARAMETER_QBUFFER_TYPE, "Quad Buffer type"));
135
+    params.QuadBuffer = new StEnumParam(QUADBUFFER_HARD_OPENGL, stCString("quadBufferType"), stCString("quadBufferType"));
136
     params.QuadBuffer->signals.onChanged.connect(this, &StOutPageFlip::doSetQuadBuffer);
137
-    params.QuadBuffer->changeValues().add(myLangMap.changeValueId(STTR_PARAMETER_QB_HARDWARE, "OpenGL Hardware"));
138
+    params.QuadBuffer->defineOption(QUADBUFFER_HARD_OPENGL,  stCString("OpenGL Hardware"));
139
 #ifdef _WIN32
140
-    StString aDxDesc;
141
-    if(myDxInfo.hasAqbsSupport && myDxInfo.hasNvStereoSupport) {
142
-        aDxDesc = myLangMap.changeValueId(STTR_PARAMETER_QB_D3D_ANY,     "Direct3D (Fullscreen)");
143
-    } else if(myDxInfo.hasAqbsSupport) {
144
-        aDxDesc = myLangMap.changeValueId(STTR_PARAMETER_QB_D3D_AMD,     "Direct3D AMD (Fullscreen)");
145
-    } else if(myDxInfo.hasNvStereoSupport) {
146
-        aDxDesc = myLangMap.changeValueId(STTR_PARAMETER_QB_D3D_NV,      "Direct3D NVIDIA (Fullscreen)");
147
-    } else if(myDxInfo.hasAmdAdapter) {
148
-        aDxDesc = myLangMap.changeValueId(STTR_PARAMETER_QB_D3D_AMD_OFF, "Direct3D AMD (Unavailable)");
149
-    } else if(myDxInfo.hasNvAdapter) {
150
-        aDxDesc = myLangMap.changeValueId(STTR_PARAMETER_QB_D3D_NV_OFF,  "Direct3D NVIDIA (Disabled)");
151
-    } else {
152
-        aDxDesc = myLangMap.changeValueId(STTR_PARAMETER_QB_D3D_OFF,     "Direct3D (Unavailable)");
153
-    }
154
-    params.QuadBuffer->changeValues().add(aDxDesc);
155
-
156
+    params.QuadBuffer->defineOption(QUADBUFFER_HARD_D3D_ANY, stCString("D3D"));
157
     myOutD3d.Program = new StProgramQuad();
158
 #endif
159
 
160
     // Show Extra option
161
-    params.ToShowExtra = new StBoolParamNamed(false, "Show Extra Options");
162
+    params.ToShowExtra = new StBoolParamNamed(false, stCString("advanced"), stCString("advanced"));
163
     params.ToShowExtra->signals.onChanged.connect(this, &StOutPageFlip::doShowExtra);
164
-    mySettings->loadParam(ST_SETTING_ADVANCED, params.ToShowExtra);
165
+    updateStrings();
166
+    mySettings->loadParam(params.ToShowExtra);
167
 
168
     // load Quad Buffer type
169
-    if(!mySettings->loadParam(ST_SETTING_QUADBUFFER, params.QuadBuffer)) {
170
+    if(!mySettings->loadParam(params.QuadBuffer)) {
171
     #ifdef _WIN32
172
         if(!hasQuadBufferGl
173
          && hasQuadBufferD3D) {
174
@@ -577,9 +598,9 @@
175
         mySettings->saveInt32Rect(ST_SETTING_WINDOWPOS, StWindow::getWindowedPlacement());
176
     }
177
     mySettings->saveInt32(ST_SETTING_DEVICE_ID,  myDevice);
178
-    mySettings->saveParam(ST_SETTING_ADVANCED,   params.ToShowExtra);
179
+    mySettings->saveParam(params.ToShowExtra);
180
     if(myWasUsed) {
181
-        mySettings->saveParam(ST_SETTING_QUADBUFFER, params.QuadBuffer);
182
+        mySettings->saveParam(params.QuadBuffer);
183
     }
184
     mySettings->flush();
185
 }
186
@@ -1258,7 +1279,7 @@
187
 void StOutPageFlip::doShowExtra(const bool theValue) {
188
     myToResetDevice = true;
189
     if(theValue) {
190
-        params.QuadBuffer->changeValues().add(myLangMap.changeValueId(STTR_PARAMETER_QB_EMULATED, "OpenGL Emulated"));
191
+        params.QuadBuffer->defineOption(QUADBUFFER_SOFT, myLangMap.changeValueId(STTR_PARAMETER_QB_EMULATED, "OpenGL Emulated"));
192
     } else {
193
         params.QuadBuffer->changeValues().remove(params.QuadBuffer->getValues().size() - 1);
194
         if(params.QuadBuffer->getValue() == QUADBUFFER_SOFT) {
195
sview-15_11.tar.gz/StOutPageFlip/StOutPageFlip.h -> sview-16_06.tar.gz/StOutPageFlip/StOutPageFlip.h Changed
123
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StOutPageFlip, class providing stereoscopic output for Shutter Glasses displays using StCore toolkit.
4
- * Copyright © 2007-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -58,17 +58,17 @@
10
     /**
11
      * Renderer about string.
12
      */
13
-    ST_CPPEXPORT virtual StString getRendererAbout() const;
14
+    ST_CPPEXPORT virtual StString getRendererAbout() const ST_ATTR_OVERRIDE;
15
 
16
     /**
17
      * Renderer id.
18
      */
19
-    ST_CPPEXPORT virtual const char* getRendererId() const;
20
+    ST_CPPEXPORT virtual const char* getRendererId() const ST_ATTR_OVERRIDE;
21
 
22
     /**
23
      * Active Device id.
24
      */
25
-    ST_CPPEXPORT virtual const char* getDeviceId() const;
26
+    ST_CPPEXPORT virtual const char* getDeviceId() const ST_ATTR_OVERRIDE;
27
 
28
     /**
29
      * This methods returns device lost state.
30
@@ -76,54 +76,59 @@
31
      * when hardware Quad-Buffer is turned on/off.
32
      * @return true if rendering device requires reinitialization
33
      */
34
-    ST_CPPEXPORT virtual bool isLostDevice() const;
35
+    ST_CPPEXPORT virtual bool isLostDevice() const ST_ATTR_OVERRIDE;
36
 
37
     /**
38
      * Activate Device.
39
      */
40
-    ST_CPPEXPORT virtual bool setDevice(const StString& theDevice);
41
+    ST_CPPEXPORT virtual bool setDevice(const StString& theDevice) ST_ATTR_OVERRIDE;
42
 
43
     /**
44
      * Devices list.
45
      */
46
-    ST_CPPEXPORT virtual void getDevices(StOutDevicesList& theList) const;
47
+    ST_CPPEXPORT virtual void getDevices(StOutDevicesList& theList) const ST_ATTR_OVERRIDE;
48
 
49
     /**
50
      * Retrieve options list.
51
      */
52
-    ST_CPPEXPORT virtual void getOptions(StParamsList& theList) const;
53
+    ST_CPPEXPORT virtual void getOptions(StParamsList& theList) const ST_ATTR_OVERRIDE;
54
 
55
     /**
56
      * Create and show window.
57
      * @return false if any critical error appeared
58
      */
59
-    ST_CPPEXPORT virtual bool create();
60
+    ST_CPPEXPORT virtual bool create() ST_ATTR_OVERRIDE;
61
 
62
     /**
63
      * Close the window.
64
      */
65
-    ST_CPPEXPORT virtual void close();
66
+    ST_CPPEXPORT virtual void close() ST_ATTR_OVERRIDE;
67
 
68
     /**
69
      * Extra routines to be processed before window close.
70
      */
71
-    ST_CPPEXPORT virtual void beforeClose();
72
+    ST_CPPEXPORT virtual void beforeClose() ST_ATTR_OVERRIDE;
73
 
74
     /**
75
      * Process callback.
76
      */
77
-    ST_CPPEXPORT virtual void processEvents();
78
+    ST_CPPEXPORT virtual void processEvents() ST_ATTR_OVERRIDE;
79
 
80
     /**
81
      * Stereo renderer.
82
      */
83
-    ST_CPPEXPORT virtual void stglDraw();
84
+    ST_CPPEXPORT virtual void stglDraw() ST_ATTR_OVERRIDE;
85
 
86
     /**
87
      * Show/Hide mouse cursor.
88
      * @param theToShow true to show cursor
89
      */
90
-    ST_CPPEXPORT virtual void showCursor(const bool theToShow);
91
+    ST_CPPEXPORT virtual void showCursor(const bool theToShow) ST_ATTR_OVERRIDE;
92
+
93
+    /**
94
+     * Update strings.
95
+     */
96
+    ST_LOCAL virtual void doChangeLanguage() ST_ATTR_OVERRIDE;
97
 
98
         protected:
99
 
100
@@ -146,6 +151,11 @@
101
     ST_LOCAL virtual void releaseResources();
102
 
103
     /**
104
+     * Update strings.
105
+     */
106
+    ST_LOCAL void updateStrings();
107
+
108
+    /**
109
      * Switch quad buffer callback.
110
      */
111
     ST_LOCAL void doSetQuadBuffer(const int32_t );
112
@@ -188,8 +198,8 @@
113
 
114
     struct {
115
 
116
-        StHandle<StBoolParam> ToShowExtra; //!< show extra options
117
-        StHandle<StEnumParam> QuadBuffer;  //!< quad buffer option
118
+        StHandle<StBoolParamNamed> ToShowExtra; //!< show extra options
119
+        StHandle<StEnumParam>      QuadBuffer;  //!< quad buffer option
120
 
121
     } params;
122
 
123
sview-15_11.tar.gz/StOutPageFlip/StOutPageFlip.rc -> sview-16_06.tar.gz/StOutPageFlip/StOutPageFlip.rc Changed
10
 
1
@@ -15,7 +15,7 @@
2
     BEGIN
3
       VALUE "FileDescription", "PageFlip Renderer library\000"
4
       VALUE "FileVersion",     SVIEW_SDK_VER_STRING "\000"
5
-      VALUE "LegalCopyright",  "\251 2007-2015 Kirill Gavrilov\000"
6
+      VALUE "LegalCopyright",  "\251 2007-2016 Kirill Gavrilov\000"
7
       VALUE "ProductName",     "StOutPageFlip\000"
8
       VALUE "ProductVersion",  SVIEW_SDK_VER_STRING "\000"
9
       VALUE "OfficialSite",    "www.sview.ru\000"
10
sview-15_11.tar.gz/StOutPageFlip/StOutPageFlip.vcxproj -> sview-16_06.tar.gz/StOutPageFlip/StOutPageFlip.vcxproj Changed
72
 
1
@@ -21,7 +21,7 @@
2
   <PropertyGroup Label="Globals">
3
     <ProjectGuid>{7567623C-94E0-478D-B4C8-C5C1B020B5B5}</ProjectGuid>
4
   </PropertyGroup>
5
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
6
+  <Import Project="$(SolutionDir)sView.Cpp.Default.props" />
7
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
8
     <ConfigurationType>DynamicLibrary</ConfigurationType>
9
     <CharacterSet>Unicode</CharacterSet>
10
@@ -101,6 +101,9 @@
11
       <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_x86;..\lib\WIN_vc_x86;$(OutDir);$(DXSDK_DIR)Lib\x86;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
12
       <SubSystem>Windows</SubSystem>
13
     </Link>
14
+    <PostBuildEvent>
15
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
16
+    </PostBuildEvent>
17
   </ItemDefinitionGroup>
18
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
19
     <Midl>
20
@@ -136,6 +139,9 @@
21
       <GenerateDebugInformation>true</GenerateDebugInformation>
22
       <SubSystem>Windows</SubSystem>
23
     </Link>
24
+    <PostBuildEvent>
25
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
26
+    </PostBuildEvent>
27
   </ItemDefinitionGroup>
28
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
29
     <Midl>
30
@@ -169,6 +175,9 @@
31
       <AdditionalLibraryDirectories>..\3rdparty\lib\WIN_vc_AMD64;..\lib\WIN_vc_AMD64;$(OutDir);$(DXSDK_DIR)Lib\x64;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
32
       <SubSystem>Windows</SubSystem>
33
     </Link>
34
+    <PostBuildEvent>
35
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
36
+    </PostBuildEvent>
37
   </ItemDefinitionGroup>
38
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
39
     <Midl>
40
@@ -204,6 +213,9 @@
41
       <GenerateDebugInformation>true</GenerateDebugInformation>
42
       <SubSystem>Windows</SubSystem>
43
     </Link>
44
+    <PostBuildEvent>
45
+      <Command>cmd /c call ..\copy_res.bat $(TargetDir) $(TargetName)</Command>
46
+    </PostBuildEvent>
47
   </ItemDefinitionGroup>
48
   <ItemGroup>
49
     <ClCompile Include="StDXAqbsControl.cpp" />
50
@@ -217,6 +229,21 @@
51
     <ClCompile Include="StQuadBufferCheck.cpp" />
52
   </ItemGroup>
53
   <ItemGroup>
54
+    <ClInclude Include="StDXAqbsControl.h" />
55
+    <ClInclude Include="StDXInfo.h" />
56
+    <ClInclude Include="StDXManager.h" />
57
+    <ClInclude Include="StDXNVSurface.h" />
58
+    <ClInclude Include="StDXNVWindow.h" />
59
+    <ClInclude Include="StGLColoredLine.h" />
60
+    <ClInclude Include="StGLControlED.h" />
61
+    <ClInclude Include="StGLDeviceControl.h" />
62
+    <ClInclude Include="StOutPageFlip.h" />
63
+    <ClInclude Include="StOutPageFlipExt.h" />
64
+    <ClInclude Include="StOutPageFlipStrings.h" />
65
+    <ClInclude Include="StQuadBufferCheck.h" />
66
+    <ClInclude Include="StVuzixSDK.h" />
67
+  </ItemGroup>
68
+  <ItemGroup>
69
     <ResourceCompile Include="StOutPageFlip.rc" />
70
   </ItemGroup>
71
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
72
sview-15_11.tar.gz/StOutPageFlip/StOutPageFlip.vcxproj.filters -> sview-16_06.tar.gz/StOutPageFlip/StOutPageFlip.vcxproj.filters Changed
47
 
1
@@ -1,38 +1,14 @@
2
 <?xml version="1.0" encoding="utf-8"?>
3
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
   <ItemGroup>
5
-    <Filter Include="Source files">
6
-      <UniqueIdentifier>{CACACF6C-18DA-13DF-148A-3C969CC3F588}</UniqueIdentifier>
7
+    <Filter Include="Source Files">
8
+      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
9
+      <Extensions>cpp;c;cc;cxx;m;mm;def;odl;idl;hpj;bat;asm;asmx</Extensions>
10
+    </Filter>
11
+    <Filter Include="Header Files">
12
+      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
13
+      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
14
     </Filter>
15
-  </ItemGroup>
16
-  <ItemGroup>
17
-    <ClCompile Include="StDXAqbsControl.cpp">
18
-      <Filter>Source files</Filter>
19
-    </ClCompile>
20
-    <ClCompile Include="StDXManager.cpp">
21
-      <Filter>Source files</Filter>
22
-    </ClCompile>
23
-    <ClCompile Include="StDXNVSurface.cpp">
24
-      <Filter>Source files</Filter>
25
-    </ClCompile>
26
-    <ClCompile Include="StDXNVWindow.cpp">
27
-      <Filter>Source files</Filter>
28
-    </ClCompile>
29
-    <ClCompile Include="StGLColoredLine.cpp">
30
-      <Filter>Source files</Filter>
31
-    </ClCompile>
32
-    <ClCompile Include="StGLControlED.cpp">
33
-      <Filter>Source files</Filter>
34
-    </ClCompile>
35
-    <ClCompile Include="StOutPageFlip.cpp">
36
-      <Filter>Source files</Filter>
37
-    </ClCompile>
38
-    <ClCompile Include="StOutPageFlipExt.cpp">
39
-      <Filter>Source files</Filter>
40
-    </ClCompile>
41
-    <ClCompile Include="StQuadBufferCheck.cpp">
42
-      <Filter>Source files</Filter>
43
-    </ClCompile>
44
   </ItemGroup>
45
   <ItemGroup>
46
     <ResourceCompile Include="StOutPageFlip.rc" />
47
sview-15_11.tar.gz/StOutPageFlip/StOutPageFlipExt.cpp -> sview-16_06.tar.gz/StOutPageFlip/StOutPageFlipExt.cpp Changed
56
 
1
@@ -20,7 +20,6 @@
2
 #include <StSettings/StTranslations.h>
3
 
4
 namespace {
5
-    static const StString ST_SETTING_DEV_CONTROL = "deviceControl";
6
     static const StString ST_SETTING_ADVANCED    = "advanced";
7
     static const StString ST_OUT_PLUGIN_NAME_EXT = "StOutPageFlip";
8
 }
9
@@ -51,6 +50,14 @@
10
     }
11
 }
12
 
13
+void StOutPageFlipExt::updateStringsExt() {
14
+    params.ControlCode->setName(myLangMap.changeValueId(STTR_PARAMETER_CONTROL_CODE, "Glasses control codes"));
15
+    params.ControlCode->defineOption(DEVICE_CONTROL_NONE,      myLangMap.changeValueId(STTR_PARAMETER_CONTROL_NO,        "No codes"));
16
+    params.ControlCode->defineOption(DEVICE_CONTROL_BLUELINE,  myLangMap.changeValueId(STTR_PARAMETER_CONTROL_BLUELINE,  "Blue line sync"));
17
+    params.ControlCode->defineOption(DEVICE_CONTROL_WHITELINE, myLangMap.changeValueId(STTR_PARAMETER_CONTROL_WHITELINE, "White line sync"));
18
+    params.ControlCode->defineOption(DEVICE_CONTROL_ED_ON_OFF, myLangMap.changeValueId(STTR_PARAMETER_CONTROL_ED,        "eDimensional auto on/off"));
19
+}
20
+
21
 StOutPageFlipExt::StOutPageFlipExt(const StHandle<StResourceManager>& theResMgr,
22
                                    const StNativeWin_t                theParentWindow)
23
 : StOutPageFlip(theResMgr, theParentWindow),
24
@@ -63,15 +70,16 @@
25
     myWinRect.bottom() = 0;
26
 
27
     // Control Code option
28
-    params.ControlCode = new StEnumParam(DEVICE_CONTROL_NONE, myLangMap.changeValueId(STTR_PARAMETER_CONTROL_CODE, "Glasses control codes"));
29
-    params.ControlCode->changeValues().add(myLangMap.changeValueId(STTR_PARAMETER_CONTROL_NO,        "No codes"));
30
-    params.ControlCode->changeValues().add(myLangMap.changeValueId(STTR_PARAMETER_CONTROL_BLUELINE,  "Blue line sync"));
31
-    params.ControlCode->changeValues().add(myLangMap.changeValueId(STTR_PARAMETER_CONTROL_WHITELINE, "White line sync"));
32
-    params.ControlCode->changeValues().add(myLangMap.changeValueId(STTR_PARAMETER_CONTROL_ED,        "eDimensional auto on/off"));
33
+    params.ControlCode = new StEnumParam(DEVICE_CONTROL_NONE, stCString("deviceControl"), stCString("deviceControl"));
34
+    params.ControlCode->defineOption(DEVICE_CONTROL_NONE,      stCString("noCodes"));
35
+    params.ControlCode->defineOption(DEVICE_CONTROL_BLUELINE,  stCString("blueLine"));
36
+    params.ControlCode->defineOption(DEVICE_CONTROL_WHITELINE, stCString("whiteLine"));
37
+    params.ControlCode->defineOption(DEVICE_CONTROL_ED_ON_OFF, stCString("eD"));
38
     params.ControlCode->signals.onChanged.connect(this, &StOutPageFlipExt::doSetDeviceControl);
39
 
40
     // load shutter glasses controller
41
-    mySettings->loadParam(ST_SETTING_DEV_CONTROL, params.ControlCode);
42
+    updateStringsExt();
43
+    mySettings->loadParam(params.ControlCode);
44
     myToResetDevice = false;
45
 }
46
 
47
@@ -89,7 +97,7 @@
48
 
49
 void StOutPageFlipExt::beforeClose() {
50
     StOutPageFlip::beforeClose();
51
-    mySettings->saveParam(ST_SETTING_DEV_CONTROL, params.ControlCode);
52
+    mySettings->saveParam(params.ControlCode);
53
     mySettings->flush();
54
     if(!StOutPageFlip::params.ToShowExtra->getValue()) {
55
         return;
56
sview-15_11.tar.gz/StOutPageFlip/StOutPageFlipExt.h -> sview-16_06.tar.gz/StOutPageFlip/StOutPageFlipExt.h Changed
67
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StOutPageFlip, class providing stereoscopic output for Shutter Glasses displays using StCore toolkit.
4
- * Copyright © 2007-2014 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -40,22 +40,30 @@
10
      * Create and show window.
11
      * @return false if any critical error appeared
12
      */
13
-    ST_CPPEXPORT virtual bool create();
14
+    ST_CPPEXPORT virtual bool create() ST_ATTR_OVERRIDE;
15
 
16
     /**
17
      * Extra routines to be processed before window close.
18
      */
19
-    ST_CPPEXPORT virtual void beforeClose();
20
+    ST_CPPEXPORT virtual void beforeClose() ST_ATTR_OVERRIDE;
21
 
22
     /**
23
      * Callback
24
      */
25
-    ST_CPPEXPORT virtual void processEvents();
26
+    ST_CPPEXPORT virtual void processEvents() ST_ATTR_OVERRIDE;
27
 
28
     /**
29
      * Retrieve options list.
30
      */
31
-    ST_CPPEXPORT virtual void getOptions(StParamsList& theList) const;
32
+    ST_CPPEXPORT virtual void getOptions(StParamsList& theList) const ST_ATTR_OVERRIDE;
33
+
34
+    /**
35
+     * Update strings.
36
+     */
37
+    ST_LOCAL virtual void doChangeLanguage() ST_ATTR_OVERRIDE {
38
+        StOutPageFlip::doChangeLanguage();
39
+        updateStringsExt();
40
+    }
41
 
42
         private:
43
 
44
@@ -69,7 +77,12 @@
45
     /**
46
      * Release GL resources before window closing.
47
      */
48
-    ST_LOCAL virtual void releaseResources();
49
+    ST_LOCAL virtual void releaseResources() ST_ATTR_OVERRIDE;
50
+
51
+    /**
52
+     * Update strings.
53
+     */
54
+    ST_LOCAL void updateStringsExt();
55
 
56
         protected:
57
 
58
@@ -105,7 +118,7 @@
59
     ST_LOCAL void doSetDeviceControl(const int32_t theValue);
60
     ST_LOCAL void setSlavePosition(int thePositionId);
61
 
62
-    ST_LOCAL virtual void stglDrawExtra(unsigned int theView, int theMode);
63
+    ST_LOCAL virtual void stglDrawExtra(unsigned int theView, int theMode) ST_ATTR_OVERRIDE;
64
 
65
 };
66
 
67
sview-15_11.tar.gz/StShared/StAVFrame.cpp -> sview-16_06.tar.gz/StShared/StAVFrame.cpp Changed
20
 
1
@@ -37,14 +37,14 @@
2
 }
3
 
4
 void StAVFrame::getImageInfo(const AVCodecContext* theCodecCtx,
5
-                             int&         theSizeX,
6
-                             int&         theSizeY,
7
-                             PixelFormat& thePixFmt) const {
8
+                             int&           theSizeX,
9
+                             int&           theSizeY,
10
+                             AVPixelFormat& thePixFmt) const {
11
 #if(LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(53, 5, 0))
12
     (void )theCodecCtx;
13
     theSizeX  = Frame->width;
14
     theSizeY  = Frame->height;
15
-    thePixFmt = (PixelFormat )Frame->format;
16
+    thePixFmt = (AVPixelFormat )Frame->format;
17
 #else
18
     theSizeX  = theCodecCtx->width;
19
     theSizeY  = theCodecCtx->height;
20
sview-16_06.tar.gz/StShared/StAVIOContext.cpp Added
61
 
1
@@ -0,0 +1,59 @@
2
+/**
3
+ * Copyright © 2016 Kirill Gavrilov <kirill@sview.ru>
4
+ *
5
+ * Distributed under the Boost Software License, Version 1.0.
6
+ * See accompanying file license-boost.txt or copy at
7
+ * http://www.boost.org/LICENSE_1_0.txt
8
+ */
9
+
10
+#include <StAV/StAVIOContext.h>
11
+
12
+namespace {
13
+
14
+    /**
15
+     * Callback for reading the data.
16
+     */
17
+    static int readCallback(void*    theOpaque,
18
+                            uint8_t* theBuf,
19
+                            int      theBufSize) {
20
+        return theOpaque != NULL
21
+             ? ((StAVIOContext* )theOpaque)->read(theBuf, theBufSize)
22
+             : 0;
23
+    }
24
+
25
+    /**
26
+     * Callback for writing the data.
27
+     */
28
+    static int writeCallback(void*    theOpaque,
29
+                             uint8_t* theBuf,
30
+                             int      theBufSize) {
31
+        return theOpaque != NULL
32
+             ? ((StAVIOContext* )theOpaque)->write(theBuf, theBufSize)
33
+             : 0;
34
+    }
35
+
36
+    /**
37
+     * Callback for seeking to new position.
38
+     */
39
+    static int64_t seekCallback(void*   theOpaque,
40
+                                int64_t theOffset,
41
+                                int     theWhence) {
42
+       return theOpaque != NULL
43
+             ? ((StAVIOContext* )theOpaque)->seek(theOffset, theWhence)
44
+             : -1;
45
+    }
46
+
47
+}
48
+
49
+StAVIOContext::StAVIOContext()
50
+: myAvioCtx(NULL) {
51
+    const int aBufferSize = 32768;
52
+    unsigned char* aBufferIO = (unsigned char* )av_malloc(aBufferSize + FF_INPUT_BUFFER_PADDING_SIZE);
53
+    myAvioCtx = avio_alloc_context(aBufferIO, aBufferSize, 0, this, readCallback, writeCallback, seekCallback);
54
+}
55
+
56
+StAVIOContext::~StAVIOContext() {
57
+    if(myAvioCtx != NULL) {
58
+        av_free(myAvioCtx);
59
+    }
60
+}
61
sview-16_06.tar.gz/StShared/StAVIOFileContext.cpp Added
89
 
1
@@ -0,0 +1,87 @@
2
+/**
3
+ * Copyright © 2016 Kirill Gavrilov <kirill@sview.ru>
4
+ *
5
+ * Distributed under the Boost Software License, Version 1.0.
6
+ * See accompanying file license-boost.txt or copy at
7
+ * http://www.boost.org/LICENSE_1_0.txt
8
+ */
9
+
10
+#include <StAV/StAVIOFileContext.h>
11
+
12
+extern "C" {
13
+    #include <libavutil/error.h>
14
+};
15
+
16
+StAVIOFileContext::StAVIOFileContext()
17
+: myFile(NULL) {
18
+    //
19
+}
20
+
21
+StAVIOFileContext::~StAVIOFileContext() {
22
+    close();
23
+}
24
+
25
+void StAVIOFileContext::close() {
26
+    if(myFile != NULL) {
27
+        fclose(myFile);
28
+        myFile = NULL;
29
+    }
30
+}
31
+
32
+bool StAVIOFileContext::openFromDescriptor(int theFD, const char* theMode) {
33
+    close();
34
+#ifdef _WIN32
35
+    myFile = ::_fdopen(theFD, theMode);
36
+#else
37
+    myFile =  ::fdopen(theFD, theMode);
38
+#endif
39
+    return myFile != NULL;
40
+}
41
+
42
+int StAVIOFileContext::read(uint8_t* theBuf,
43
+                            int      theBufSize) {
44
+
45
+    if(myFile == NULL) {
46
+        return -1;
47
+    }
48
+
49
+    int aNbRead = (int )::fread(theBuf, 1, theBufSize, myFile);
50
+    if(aNbRead == 0
51
+    && feof(myFile) != 0) {
52
+        return AVERROR_EOF;
53
+    }
54
+
55
+    return aNbRead;
56
+}
57
+
58
+int StAVIOFileContext::write(uint8_t* theBuf,
59
+                             int      theBufSize) {
60
+    if(myFile == NULL) {
61
+        return -1;
62
+    }
63
+
64
+    return (int )::fwrite(theBuf, 1, theBufSize, myFile);
65
+}
66
+
67
+int64_t StAVIOFileContext::seek(int64_t theOffset,
68
+                                int     theWhence) {
69
+    if(theWhence == AVSEEK_SIZE
70
+    || myFile == NULL) {
71
+        return -1;
72
+    }
73
+
74
+#ifdef _WIN32
75
+    bool isOk = ::_fseeki64(myFile, theOffset, theWhence) == 0;
76
+#else
77
+    bool isOk =    ::fseeko(myFile, theOffset, theWhence) == 0;
78
+#endif
79
+    if(!isOk) {
80
+        return -1;
81
+    }
82
+
83
+#ifdef _WIN32
84
+    return ::_ftelli64(myFile);
85
+#else
86
+    return ::ftello(myFile);
87
+#endif
88
+}
89
sview-16_06.tar.gz/StShared/StAVIOMemContext.cpp Added
110
 
1
@@ -0,0 +1,108 @@
2
+/**
3
+ * Copyright © 2016 Kirill Gavrilov <kirill@sview.ru>
4
+ *
5
+ * Distributed under the Boost Software License, Version 1.0.
6
+ * See accompanying file license-boost.txt or copy at
7
+ * http://www.boost.org/LICENSE_1_0.txt
8
+ */
9
+
10
+#include <StAV/StAVIOMemContext.h>
11
+#include <StStrings/StLogger.h>
12
+
13
+extern "C" {
14
+    #include <libavutil/error.h>
15
+};
16
+
17
+StAVIOMemContext::StAVIOMemContext()
18
+: mySrcBuffer(NULL),
19
+  mySrcSize(0),
20
+  myPosition(0) {
21
+    //
22
+}
23
+
24
+StAVIOMemContext::~StAVIOMemContext() {
25
+    close();
26
+}
27
+
28
+void StAVIOMemContext::close() {
29
+    mySrcBuffer = NULL;
30
+    mySrcSize   = 0;
31
+    myPosition  = 0;
32
+}
33
+
34
+void StAVIOMemContext::wrapBuffer(uint8_t* theSrcBuffer,
35
+                                  size_t   theSrcSize) {
36
+    close();
37
+    mySrcBuffer = theSrcBuffer;
38
+    mySrcSize   = theSrcSize;
39
+}
40
+
41
+int StAVIOMemContext::read(uint8_t* theBuf,
42
+                           int      theBufSize) {
43
+    if(theBuf == NULL
44
+    || theBufSize <= 0
45
+    || mySrcBuffer == NULL
46
+    || mySrcSize == 0) {
47
+        return -1;
48
+    }
49
+
50
+    int aNbRead = theBufSize;
51
+    if(myPosition + theBufSize > mySrcSize) {
52
+        aNbRead = int(mySrcSize - myPosition);
53
+    }
54
+    if(aNbRead == 0) {
55
+        return AVERROR_EOF;
56
+    }
57
+
58
+    stMemCpy(theBuf, mySrcBuffer + myPosition, aNbRead);
59
+    myPosition += aNbRead;
60
+    return aNbRead;
61
+}
62
+
63
+int StAVIOMemContext::write(uint8_t* theBuf,
64
+                            int      theBufSize) {
65
+    if(theBuf == NULL
66
+    || theBufSize <= 0
67
+    || mySrcBuffer == NULL
68
+    || mySrcSize == 0) {
69
+        return -1;
70
+    }
71
+
72
+    int aNbWritten = theBufSize;
73
+    if(myPosition + theBufSize > mySrcSize) {
74
+        aNbWritten = int(mySrcSize - myPosition);
75
+    }
76
+    if(aNbWritten == 0) {
77
+        return AVERROR_EOF;
78
+    }
79
+
80
+    stMemCpy(mySrcBuffer + myPosition, theBuf, aNbWritten);
81
+    myPosition += aNbWritten;
82
+    return aNbWritten;
83
+}
84
+
85
+int64_t StAVIOMemContext::seek(int64_t theOffset,
86
+                               int     theWhence) {
87
+    if(theWhence == AVSEEK_SIZE) {
88
+        return mySrcSize;
89
+    }
90
+    if(mySrcBuffer == NULL
91
+    || mySrcSize == 0) {
92
+        return -1;
93
+    }
94
+
95
+    if(theWhence == SEEK_SET) {
96
+        myPosition = theOffset;
97
+    } else if(theWhence == SEEK_CUR) {
98
+        myPosition += theOffset;
99
+    } else if(theWhence == SEEK_END) {
100
+        myPosition = mySrcSize + theOffset;
101
+    }
102
+
103
+    if(myPosition < 0) {
104
+        myPosition = 0;
105
+    } else if(myPosition > mySrcSize) {
106
+        myPosition = mySrcSize;
107
+    }
108
+    return myPosition;
109
+}
110
sview-15_11.tar.gz/StShared/StAVImage.cpp -> sview-16_06.tar.gz/StShared/StAVImage.cpp Changed
123
 
1
@@ -13,6 +13,7 @@
2
 #include <StFile/StRawFile.h>
3
 #include <StImage/StJpegParser.h>
4
 #include <StStrings/StLogger.h>
5
+#include <StAV/StAVIOMemContext.h>
6
 
7
 bool StAVImage::init() {
8
     return stAV::init();
9
@@ -48,7 +49,9 @@
10
         case StImage::ImgColor_YUV: {
11
             size_t aDelimX = (theImage.getPlane(1).getSizeX() > 0) ? (aPlane0.getSizeX() / theImage.getPlane(1).getSizeX()) : 1;
12
             size_t aDelimY = (theImage.getPlane(1).getSizeY() > 0) ? (aPlane0.getSizeY() / theImage.getPlane(1).getSizeY()) : 1;
13
-            if(aDelimX == 1 && aDelimY == 1) {
14
+            if(theImage.getPlane(1).getFormat() == StImagePlane::ImgUV) {
15
+                return stAV::PIX_FMT::NV12;
16
+            } else if(aDelimX == 1 && aDelimY == 1) {
17
                 switch(theImage.getColorScale()) {
18
                     case StImage::ImgScale_Mpeg:
19
                         return aPlane0.getFormat() == StImagePlane::ImgGray16
20
@@ -122,8 +125,8 @@
21
  * Convert image from one format to another using swscale.
22
  * Image buffers should be already initialized!
23
  */
24
-static bool convert(const StImage& theImageFrom, PixelFormat theFormatFrom,
25
-                          StImage& theImageTo,   PixelFormat theFormatTo) {
26
+static bool convert(const StImage& theImageFrom, AVPixelFormat theFormatFrom,
27
+                          StImage& theImageTo,   AVPixelFormat theFormatTo) {
28
     ST_DEBUG_LOG("StAVImage, convert from " + stAV::PIX_FMT::getString(theFormatFrom) + " " + theImageFrom.getSizeX() + "x" + theImageFrom.getSizeY()
29
                + " to " + stAV::PIX_FMT::getString(theFormatTo) + " " + theImageTo.getSizeX() + "x" + theImageTo.getSizeY());
30
     SwsContext* aCtxToRgb = sws_getContext((int )theImageFrom.getSizeX(), (int )theImageFrom.getSizeY(), theFormatFrom, // source
31
@@ -160,8 +163,8 @@
32
     }
33
 
34
     StAVImage::init();
35
-    const PixelFormat aFormatFrom = (PixelFormat )StAVImage::getAVPixelFormat(theImageFrom);
36
-    const PixelFormat aFormatTo   = (PixelFormat )StAVImage::getAVPixelFormat(theImageTo);
37
+    const AVPixelFormat aFormatFrom = (AVPixelFormat )StAVImage::getAVPixelFormat(theImageFrom);
38
+    const AVPixelFormat aFormatTo   = (AVPixelFormat )StAVImage::getAVPixelFormat(theImageTo);
39
     return aFormatFrom != stAV::PIX_FMT::NONE
40
         && aFormatTo   != stAV::PIX_FMT::NONE
41
         && convert(theImageFrom, aFormatFrom,
42
@@ -198,6 +201,14 @@
43
                      ImageType       theImageType,
44
                      uint8_t*        theDataPtr,
45
                      int             theDataSize) {
46
+    return loadExtra(theFilePath, theImageType, theDataPtr, theDataSize, false);
47
+}
48
+
49
+bool StAVImage::loadExtra(const StString& theFilePath,
50
+                          ImageType       theImageType,
51
+                          uint8_t*        theDataPtr,
52
+                          int             theDataSize,
53
+                          bool            theIsOnlyRGB) {
54
 
55
     // reset current data
56
     StImage::nullify();
57
@@ -231,8 +242,16 @@
58
         }
59
     }
60
 
61
+    StHandle<StAVIOMemContext> aMemIoCtx;
62
     if(theImageType == ST_TYPE_NONE
63
     || (theDataPtr == NULL && !StFileNode::isFileExists(theFilePath))) {
64
+        if(theDataPtr != NULL) {
65
+            aMemIoCtx = new StAVIOMemContext();
66
+            aMemIoCtx->wrapBuffer(theDataPtr, theDataSize);
67
+            myFormatCtx = avformat_alloc_context();
68
+            myFormatCtx->pb = aMemIoCtx->getAvioContext();
69
+        }
70
+
71
         // open image file and detect its type, its could be non local file!
72
     #if(LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(53, 2, 0))
73
         int avErrCode = avformat_open_input(&myFormatCtx, theFilePath.toCString(), myImageFormat, NULL);
74
@@ -251,6 +270,12 @@
75
             #endif
76
             }
77
 
78
+            if(theDataPtr != NULL) {
79
+                aMemIoCtx = new StAVIOMemContext();
80
+                aMemIoCtx->wrapBuffer(theDataPtr, theDataSize);
81
+                myFormatCtx = avformat_alloc_context();
82
+                myFormatCtx->pb = aMemIoCtx->getAvioContext();
83
+            }
84
         #if(LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(53, 2, 0))
85
             avErrCode = avformat_open_input(&myFormatCtx, theFilePath.toCString(), NULL, NULL);
86
         #else
87
@@ -443,7 +468,7 @@
88
         changePlane(0).initWrapper(StImagePlane::ImgRGBA64, myFrame.getPlane(0),
89
                                    myCodecCtx->width, myCodecCtx->height,
90
                                    myFrame.getLineSize(0));
91
-    } else if(stAV::isFormatYUVPlanar(myCodecCtx, aDimsYUV)) {
92
+    } else if(stAV::isFormatYUVPlanar(myCodecCtx, aDimsYUV) && !theIsOnlyRGB) {
93
     #if(LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(52, 29, 0))
94
         if(myCodecCtx->color_range == AVCOL_RANGE_JPEG) {
95
             aDimsYUV.isFullScale = true;
96
@@ -518,7 +543,7 @@
97
         return false;
98
     }
99
 
100
-    PixelFormat aPFormatAV = (PixelFormat )getAVPixelFormat(*this);
101
+    AVPixelFormat aPFormatAV = (AVPixelFormat )getAVPixelFormat(*this);
102
     StImage anImage;
103
     switch(theImageType) {
104
         case ST_TYPE_PNG:
105
@@ -536,7 +561,7 @@
106
             } else {
107
                 // convert to compatible pixel format
108
                 anImage.changePlane().initTrash(StImagePlane::ImgRGB, getSizeX(), getSizeY(), getAligned(getSizeX() * 3));
109
-                PixelFormat aPFrmtTarget = stAV::PIX_FMT::RGB24;
110
+                AVPixelFormat aPFrmtTarget = stAV::PIX_FMT::RGB24;
111
                 if(!convert(*this,   aPFormatAV,
112
                             anImage, aPFrmtTarget)) {
113
                     setState("SWScale library, failed to create SWScaler context");
114
@@ -576,7 +601,7 @@
115
                 anImage.initWrapper(*this);
116
             } else {
117
                 // convert to compatible pixel format
118
-                PixelFormat aPFrmtTarget = aPFormatAV == stAV::PIX_FMT::YUV420P ? stAV::PIX_FMT::YUVJ420P : stAV::PIX_FMT::YUVJ422P;
119
+                AVPixelFormat aPFrmtTarget = aPFormatAV == stAV::PIX_FMT::YUV420P ? stAV::PIX_FMT::YUVJ420P : stAV::PIX_FMT::YUVJ422P;
120
                 anImage.setColorModel(StImage::ImgColor_YUV);
121
                 anImage.setColorScale(StImage::ImgScale_Mpeg);
122
                 anImage.changePlane(0).initTrash(StImagePlane::ImgGray, getSizeX(), getSizeY(), getAligned(getSizeX()));
123
sview-15_11.tar.gz/StShared/StAVVideoMuxer.cpp -> sview-16_06.tar.gz/StShared/StAVVideoMuxer.cpp Changed
15
 
1
@@ -193,8 +193,12 @@
2
 }
3
 
4
 bool StAVVideoMuxer::addStream(AVFormatContext* theContext,
5
-                               const AVStream*  theStream) {
6
+                               AVStream*        theStream) {
7
+#if(LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(57, 0, 0))
8
     AVStream* aStreamOut = avformat_new_stream(theContext, theStream->codec->codec);
9
+#else
10
+    AVStream* aStreamOut = avformat_new_stream(theContext, (AVCodec* )theStream->codec->codec);
11
+#endif
12
     if(aStreamOut == NULL) {
13
         signals.onError(StString("Failed allocating output stream."));
14
         return false;
15
sview-16_06.tar.gz/StShared/StDejaVuSerif.ttf.h Added
31677
 
1
@@ -0,0 +1,31675 @@
2
+/**
3
+ * DejaVuSerif.ttf
4
+ * DejaVu changes are in public domain.
5
+ *
6
+ * Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc.
7
+ *
8
+ * Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"),
9
+ * to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software,
10
+ * and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions:
11
+ *
12
+ * The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces.
13
+ *
14
+ * The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts,
15
+ * only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera".
16
+ *
17
+ * This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names.
18
+ *
19
+ * The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself.
20
+ *
21
+ * THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY,
22
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT.
23
+ * IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL,
24
+ * OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
25
+ *
26
+ * Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale,
27
+ * use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org.
28
+ */
29
+static const unsigned char THE_DejaVuSerif_ttf_DATA[379740] = {
30
+0x00,0x01,0x00,0x00,0x00,0x14,0x01,0x00,0x00,0x04,0x00,0x40,
31
+0x46,0x46,0x54,0x4d,0x6f,0x39,0x9e,0xb8,0x00,0x00,0x01,0x4c,
32
+0x00,0x00,0x00,0x1c,0x47,0x44,0x45,0x46,0x89,0xcb,0x7c,0x72,
33
+0x00,0x00,0x01,0x68,0x00,0x00,0x00,0xa0,0x47,0x50,0x4f,0x53,
34
+0x89,0x3e,0x0d,0x0d,0x00,0x00,0x02,0x08,0x00,0x00,0x42,0x2c,
35
+0x47,0x53,0x55,0x42,0x3b,0x35,0xdf,0x5c,0x00,0x00,0x44,0x34,
36
+0x00,0x00,0x06,0xa0,0x4d,0x41,0x54,0x48,0x39,0x5e,0xb2,0xe8,
37
+0x00,0x00,0x4a,0xd4,0x00,0x00,0x04,0xde,0x4f,0x53,0x2f,0x32,
38
+0x6d,0xac,0xf0,0xf1,0x00,0x00,0x4f,0xb4,0x00,0x00,0x00,0x56,
39
+0x63,0x6d,0x61,0x70,0xc3,0x3f,0xa5,0xc8,0x00,0x00,0x50,0x0c,
40
+0x00,0x00,0x10,0xb2,0x63,0x76,0x74,0x20,0x8f,0x33,0xab,0xf4,
41
+0x00,0x00,0x60,0xc0,0x00,0x00,0x01,0x94,0x66,0x70,0x67,0x6d,
42
+0xe7,0x80,0xf1,0xc4,0x00,0x00,0x62,0x54,0x00,0x00,0x00,0x8b,
43
+0x67,0x61,0x73,0x70,0x00,0x07,0x00,0x07,0x00,0x00,0x62,0xe0,
44
+0x00,0x00,0x00,0x0c,0x67,0x6c,0x79,0x66,0x99,0x51,0x66,0xb2,
45
+0x00,0x00,0x62,0xec,0x00,0x04,0x2f,0x00,0x68,0x65,0x61,0x64,
46
+0x0c,0xde,0xc2,0x73,0x00,0x04,0x91,0xec,0x00,0x00,0x00,0x36,
47
+0x68,0x68,0x65,0x61,0x12,0x20,0x19,0x70,0x00,0x04,0x92,0x24,
48
+0x00,0x00,0x00,0x24,0x68,0x6d,0x74,0x78,0x2c,0x7b,0x30,0x90,
49
+0x00,0x04,0x92,0x48,0x00,0x00,0x37,0x14,0x6b,0x65,0x72,0x6e,
50
+0x1b,0x00,0x22,0xbf,0x00,0x04,0xc9,0x5c,0x00,0x00,0x20,0x1c,
51
+0x6c,0x6f,0x63,0x61,0x1d,0x7e,0x17,0x04,0x00,0x04,0xe9,0x78,
52
+0x00,0x00,0x37,0x18,0x6d,0x61,0x78,0x70,0x12,0x23,0x05,0x33,
53
+0x00,0x05,0x20,0x90,0x00,0x00,0x00,0x20,0x6e,0x61,0x6d,0x65,
54
+0x7c,0x8e,0x22,0xca,0x00,0x05,0x20,0xb0,0x00,0x00,0x21,0x4e,
55
+0x70,0x6f,0x73,0x74,0xa1,0x79,0x04,0x9b,0x00,0x05,0x42,0x00,
56
+0x00,0x00,0x83,0xfc,0x70,0x72,0x65,0x70,0x75,0x79,0x06,0xf6,
57
+0x00,0x05,0xc5,0xfc,0x00,0x00,0x05,0x5e,0x00,0x00,0x00,0x01,
58
+0x00,0x00,0x00,0x00,0xcc,0x3d,0xa2,0xcf,0x00,0x00,0x00,0x00,
59
+0xd1,0x7d,0xfd,0xf4,0x00,0x00,0x00,0x00,0xd1,0x7d,0xfd,0xf4,
60
+0x00,0x01,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x90,0x00,0x98,
61
+0x00,0x00,0x00,0x02,0x00,0x15,0x00,0x03,0x02,0xac,0x00,0x01,
62
+0x02,0xad,0x02,0xc1,0x00,0x03,0x02,0xc2,0x02,0xc2,0x00,0x01,
63
+0x02,0xc3,0x02,0xc6,0x00,0x03,0x02,0xc7,0x02,0xc8,0x00,0x01,
64
+0x02,0xc9,0x02,0xcd,0x00,0x03,0x02,0xce,0x02,0xcf,0x00,0x01,
65
+0x02,0xd0,0x02,0xd3,0x00,0x03,0x02,0xd4,0x02,0xd5,0x00,0x01,
66
+0x02,0xd6,0x02,0xe0,0x00,0x03,0x02,0xe1,0x02,0xe5,0x00,0x01,
67
+0x02,0xe6,0x02,0xed,0x00,0x03,0x02,0xee,0x05,0x82,0x00,0x01,
68
+0x05,0x83,0x05,0x88,0x00,0x03,0x05,0x89,0x0c,0xec,0x00,0x01,
69
+0x0c,0xed,0x0c,0xed,0x00,0x03,0x0c,0xee,0x0c,0xee,0x00,0x01,
70
+0x0c,0xef,0x0c,0xf5,0x00,0x02,0x0c,0xf6,0x0d,0x77,0x00,0x01,
71
+0x0d,0x78,0x0d,0x82,0x00,0x03,0x0d,0x83,0x0d,0xc4,0x00,0x01,
72
+0x00,0x04,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x01,0x00,0x00,
73
+0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0a,0x00,0xda,
74
+0x01,0x00,0x00,0x05,0x44,0x46,0x4c,0x54,0x00,0x20,0x63,0x79,
75
+0x72,0x6c,0x00,0x30,0x67,0x72,0x65,0x6b,0x00,0x4c,0x6c,0x61,
76
+0x74,0x6e,0x00,0x5c,0x6d,0x61,0x74,0x68,0x00,0xc6,0x00,0x04,
77
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x03,0x00,0x00,0x00,0x01,
78
+0x00,0x02,0x00,0x10,0x00,0x02,0x4d,0x4b,0x44,0x20,0x00,0x10,
79
+0x53,0x52,0x42,0x20,0x00,0x10,0x00,0x00,0xff,0xff,0x00,0x03,
80
+0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x04,0x00,0x00,0x00,0x00,
81
+0xff,0xff,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x5e,
82
+0x00,0x0f,0x41,0x5a,0x45,0x20,0x00,0x5e,0x43,0x52,0x54,0x20,
83
+0x00,0x5e,0x47,0x41,0x47,0x20,0x00,0x5e,0x49,0x53,0x4d,0x20,
84
+0x00,0x5e,0x4b,0x41,0x5a,0x20,0x00,0x5e,0x4b,0x52,0x4b,0x20,
85
+0x00,0x5e,0x4b,0x53,0x4d,0x20,0x00,0x5e,0x4c,0x53,0x4d,0x20,
86
+0x00,0x5e,0x4d,0x4f,0x4c,0x20,0x00,0x5e,0x4e,0x53,0x4d,0x20,
87
+0x00,0x5e,0x52,0x4f,0x4d,0x20,0x00,0x5e,0x53,0x4b,0x53,0x20,
88
+0x00,0x5e,0x53,0x53,0x4d,0x20,0x00,0x5e,0x54,0x41,0x54,0x20,
89
+0x00,0x5e,0x54,0x52,0x4b,0x20,0x00,0x5e,0x00,0x00,0xff,0xff,
90
+0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x04,0x00,0x00,
91
+0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x03,0x6b,0x65,0x72,0x6e,
92
+0x00,0x14,0x6d,0x61,0x72,0x6b,0x00,0x1a,0x6d,0x6b,0x6d,0x6b,
93
+0x00,0x20,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x00,0x00,0x01,
94
+0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x03,0x00,0x08,
95
+0x00,0x10,0x00,0x18,0x00,0x06,0x00,0x00,0x00,0x01,0x00,0x18,
96
+0x00,0x04,0x00,0x00,0x00,0x01,0x03,0x00,0x00,0x02,0x00,0x00,
97
+0x00,0x01,0x27,0x04,0x00,0x01,0x01,0x4a,0x01,0x16,0x00,0x01,
98
+0x01,0x72,0x00,0x0c,0x00,0x21,0x00,0x44,0x00,0x4a,0x00,0x50,
99
+0x00,0x56,0x00,0x5c,0x00,0x62,0x00,0x68,0x00,0x6e,0x00,0x74,
100
+0x00,0x7a,0x00,0x80,0x00,0x86,0x00,0x8c,0x00,0x92,0x00,0x98,
101
+0x00,0x9e,0x00,0xa4,0x00,0xaa,0x00,0xb0,0x00,0xb6,0x00,0xbc,
102
+0x00,0xc2,0x00,0xc8,0x00,0xce,0x00,0xd4,0x00,0xda,0x00,0xe0,
103
+0x00,0xe6,0x00,0xec,0x00,0xf2,0x00,0xf8,0x00,0xfe,0x01,0x04,
104
+0x00,0x01,0xfe,0x00,0x06,0x64,0x00,0x01,0xfe,0x00,0x06,0x66,
105
+0x00,0x01,0xfe,0x00,0x06,0x14,0x00,0x01,0xfe,0x00,0x06,0x14,
106
+0x00,0x01,0xfe,0x00,0x06,0x14,0x00,0x01,0xfe,0x00,0x06,0x47,
107
+0x00,0x01,0xfe,0x00,0x06,0x14,0x00,0x01,0xfe,0x00,0x06,0x14,
108
+0x00,0x01,0xfe,0x00,0x06,0xce,0x00,0x01,0xfe,0x00,0x07,0x06,
109
+0x00,0x01,0xfe,0x00,0x06,0x66,0x00,0x01,0xfe,0x00,0x06,0x66,
110
+0x00,0x01,0xfe,0x00,0x06,0x6c,0x00,0x01,0xfe,0x00,0x06,0x6c,
111
+0x00,0x01,0xfe,0x00,0x06,0x66,0x00,0x01,0xfe,0x00,0x06,0xfe,
112
+0x00,0x01,0xfe,0x00,0x06,0x47,0x00,0x01,0xfe,0x00,0x06,0x53,
113
+0x00,0x01,0xfe,0x00,0x06,0x14,0x00,0x01,0xfe,0x00,0x06,0x66,
114
+0x00,0x01,0xfe,0x00,0x06,0x66,0x00,0x01,0xfe,0x00,0x06,0x66,
115
+0x00,0x01,0xfe,0x00,0x06,0x66,0x00,0x01,0xfe,0x00,0x06,0x66,
116
+0x00,0x01,0xfe,0x00,0x06,0x66,0x00,0x01,0x02,0x00,0x05,0xf6,
117
+0x00,0x01,0xfe,0x00,0x05,0xf6,0x00,0x01,0xfe,0x00,0x05,0xf6,
118
+0x00,0x01,0xfe,0x00,0x05,0xf6,0x00,0x01,0xfe,0x00,0x05,0xf6,
119
+0x00,0x01,0xfe,0x00,0x05,0xf6,0x00,0x01,0xfe,0x00,0x05,0xf6,
120
+0x00,0x01,0xfe,0x00,0x05,0xf6,0x00,0x02,0x00,0x08,0x02,0xae,
121
+0x02,0xbe,0x00,0x00,0x02,0xea,0x02,0xea,0x00,0x11,0x02,0xec,
122
+0x02,0xec,0x00,0x12,0x05,0x83,0x05,0x88,0x00,0x13,0x0c,0xed,
123
+0x0c,0xed,0x00,0x19,0x0d,0x78,0x0d,0x78,0x00,0x1a,0x0d,0x7a,
124
+0x0d,0x7a,0x00,0x1b,0x0d,0x7c,0x0d,0x80,0x00,0x1c,0x00,0x02,
125
+0x00,0x06,0x02,0xad,0x02,0xbe,0x00,0x00,0x02,0xea,0x02,0xea,
126
+0x00,0x12,0x02,0xec,0x02,0xec,0x00,0x13,0x05,0x83,0x05,0x88,
127
+0x00,0x14,0x0c,0xed,0x0c,0xed,0x00,0x1a,0x0d,0x78,0x0d,0x82,
128
+0x00,0x1b,0x00,0x26,0x00,0x00,0x00,0x9a,0x00,0x00,0x00,0xa0,
129
+0x00,0x00,0x00,0xa6,0x00,0x00,0x00,0xac,0x00,0x00,0x00,0xb2,
130
+0x00,0x00,0x00,0xb8,0x00,0x00,0x00,0xbe,0x00,0x00,0x00,0xc4,
131
+0x00,0x00,0x00,0xca,0x00,0x00,0x00,0xd0,0x00,0x00,0x00,0xd6,
132
+0x00,0x00,0x00,0xdc,0x00,0x00,0x00,0xe2,0x00,0x00,0x00,0xe8,
133
+0x00,0x00,0x00,0xee,0x00,0x00,0x00,0xf4,0x00,0x00,0x00,0xfa,
134
+0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x01,0x0c,
135
+0x00,0x00,0x01,0x12,0x00,0x00,0x01,0x18,0x00,0x00,0x01,0x1e,
136
+0x00,0x00,0x01,0x24,0x00,0x00,0x01,0x2a,0x00,0x00,0x01,0x30,
137
+0x00,0x00,0x01,0x36,0x00,0x00,0x01,0x3c,0x00,0x00,0x01,0x42,
138
+0x00,0x00,0x01,0x48,0x00,0x00,0x01,0x4e,0x00,0x00,0x01,0x54,
139
+0x00,0x00,0x01,0x5a,0x00,0x00,0x01,0x60,0x00,0x00,0x01,0x66,
140
+0x00,0x00,0x01,0x6c,0x00,0x00,0x01,0x72,0x00,0x00,0x01,0x78,
141
+0x00,0x01,0xfe,0x00,0x04,0x9c,0x00,0x01,0xfe,0x00,0x04,0x9c,
142
+0x00,0x01,0xfe,0x00,0x04,0x9c,0x00,0x01,0xfe,0x00,0x04,0xd8,
143
+0x00,0x01,0xfe,0x00,0x04,0xd8,0x00,0x01,0xfe,0x00,0x04,0xd8,
144
+0x00,0x01,0xfe,0x00,0x04,0x9c,0x00,0x01,0xfe,0x00,0x04,0xd8,
145
+0x00,0x01,0xfe,0x00,0x04,0xd8,0x00,0x01,0xfe,0x00,0x04,0x9c,
146
+0x00,0x01,0xfe,0x00,0x04,0x9c,0x00,0x01,0xfe,0x00,0x04,0x9c,
147
+0x00,0x01,0xfe,0x00,0x04,0x9c,0x00,0x01,0xfe,0x00,0x04,0x9c,
148
+0x00,0x01,0xfe,0x00,0x04,0x9c,0x00,0x01,0xfe,0x00,0x04,0x9c,
149
+0x00,0x01,0xfe,0x00,0x04,0x9c,0x00,0x01,0xfe,0x00,0x04,0x9c,
150
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0xd8,
151
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x44,
152
+0x00,0x01,0xfe,0x00,0x04,0xd8,0x00,0x01,0xfe,0x00,0x04,0xd8,
153
+0x00,0x01,0xfe,0x00,0x04,0x9c,0x00,0x01,0xfe,0x00,0x04,0x9c,
154
+0x00,0x01,0x02,0x00,0x04,0x9c,0x00,0x01,0xfe,0x00,0x04,0x9c,
155
+0x00,0x01,0xfe,0x00,0x04,0x9c,0x00,0x01,0xfe,0x00,0x04,0x9c,
156
+0x00,0x01,0xfe,0x00,0x04,0x9c,0x00,0x01,0xfe,0x00,0x04,0x9c,
157
+0x00,0x01,0xfe,0x00,0x04,0x9c,0x00,0x01,0xfe,0x00,0x04,0x9c,
158
+0x00,0x01,0xfe,0x00,0x04,0x9c,0x00,0x01,0xfe,0x00,0x04,0x9c,
159
+0x00,0x01,0xfe,0x00,0x04,0x9c,0x00,0x01,0xfe,0x00,0x04,0x9c,
160
+0x00,0x01,0x21,0x0a,0x1e,0x2a,0x00,0x02,0x21,0x44,0x00,0x0c,
161
+0x02,0x08,0x08,0x22,0x08,0x28,0x08,0x2e,0x08,0x34,0x08,0x3a,
162
+0x08,0x40,0x08,0x46,0x08,0x4c,0x08,0x52,0x08,0x58,0x08,0x5e,
163
+0x08,0x64,0x08,0x6a,0x08,0x70,0x08,0x76,0x08,0x7c,0x08,0x82,
164
+0x08,0x88,0x08,0x8e,0x08,0x94,0x08,0x9a,0x08,0xa0,0x08,0xa6,
165
+0x08,0xac,0x08,0xb2,0x08,0xb8,0x08,0xbe,0x08,0xc4,0x08,0xca,
166
+0x08,0xd0,0x08,0xd6,0x08,0xdc,0x08,0xe2,0x08,0xe8,0x08,0xee,
167
+0x08,0xf4,0x08,0xfa,0x09,0x00,0x09,0x06,0x09,0x0c,0x09,0x12,
168
+0x09,0x18,0x09,0x1e,0x09,0x24,0x09,0x2a,0x09,0x30,0x09,0x36,
169
+0x09,0x3c,0x09,0x42,0x09,0x48,0x09,0x4e,0x09,0x54,0x09,0x5a,
170
+0x09,0x60,0x09,0x66,0x09,0x6c,0x09,0x72,0x09,0x78,0x09,0x7e,
171
+0x09,0x84,0x09,0x8a,0x09,0x90,0x09,0x96,0x09,0x9c,0x09,0xa2,
172
+0x09,0xa8,0x09,0xae,0x09,0xb4,0x09,0xba,0x09,0xc0,0x09,0xc6,
173
+0x09,0xcc,0x09,0xd2,0x09,0xd8,0x09,0xde,0x09,0xe4,0x09,0xea,
174
+0x09,0xf0,0x09,0xf6,0x09,0xfc,0x0a,0x02,0x0a,0x08,0x0a,0x0e,
175
+0x0a,0x14,0x0a,0x1a,0x0a,0x20,0x0a,0x26,0x0a,0x2c,0x0a,0x32,
176
+0x0a,0x38,0x0a,0x3e,0x0a,0x44,0x0a,0x4a,0x0a,0x50,0x0a,0x56,
177
+0x0a,0x5c,0x0a,0x62,0x0a,0x68,0x0a,0x6e,0x0a,0x74,0x0a,0x7a,
178
+0x0a,0x80,0x0a,0x86,0x0a,0x8c,0x0a,0x92,0x00,0x00,0x0a,0x98,
179
+0x00,0x00,0x0a,0x9e,0x0a,0xa4,0x0a,0xaa,0x0a,0xb0,0x0a,0xb6,
180
+0x00,0x00,0x0a,0xbc,0x00,0x00,0x0a,0xc2,0x0a,0xc8,0x0a,0xce,
181
+0x00,0x00,0x0a,0xd4,0x0a,0xda,0x0a,0xe0,0x0a,0xe6,0x0a,0xec,
182
+0x0a,0xf2,0x0a,0xf8,0x0a,0xfe,0x0b,0x04,0x00,0x00,0x0b,0x0a,
183
+0x0b,0x10,0x0b,0x16,0x0b,0x1c,0x0b,0x22,0x0b,0x28,0x0b,0x2e,
184
+0x0b,0x34,0x0b,0x3a,0x0b,0x40,0x0b,0x46,0x0b,0x4c,0x0b,0x52,
185
+0x00,0x00,0x0b,0x58,0x00,0x00,0x0b,0x5e,0x00,0x00,0x0b,0x64,
186
+0x00,0x00,0x0b,0x6a,0x00,0x00,0x0b,0x70,0x0b,0x76,0x0b,0x7c,
187
+0x0b,0x82,0x0b,0x88,0x00,0x00,0x0b,0x8e,0x0b,0x94,0x0b,0x9a,
188
+0x0b,0xa0,0x0b,0xa6,0x00,0x00,0x0b,0xac,0x00,0x00,0x0b,0xb2,
189
+0x00,0x00,0x0b,0xb8,0x00,0x00,0x0b,0xbe,0x00,0x00,0x0b,0xc4,
190
+0x00,0x00,0x0b,0xca,0x0b,0xd0,0x0b,0xd6,0x00,0x00,0x0b,0xdc,
191
+0x00,0x00,0x0b,0xe2,0x0b,0xe8,0x0b,0xee,0x0b,0xf4,0x0b,0xfa,
192
+0x0c,0x00,0x0c,0x06,0x0c,0x0c,0x0c,0x12,0x0c,0x18,0x0c,0x1e,
193
+0x0c,0x24,0x0c,0x2a,0x00,0x00,0x0c,0x30,0x0c,0x36,0x0c,0x3c,
194
+0x0c,0x42,0x0c,0x48,0x0c,0x4e,0x0c,0x54,0x0c,0x5a,0x0c,0x60,
195
+0x0c,0x66,0x0c,0x6c,0x0c,0x72,0x0c,0x78,0x0c,0x7e,0x0c,0x84,
196
+0x0c,0x8a,0x0c,0x90,0x0c,0x96,0x0c,0x9c,0x00,0x00,0x0c,0xa2,
197
+0x0c,0xa8,0x0c,0xae,0x0c,0xb4,0x0c,0xba,0x0c,0xc0,0x0c,0xc6,
198
+0x0c,0xcc,0x0c,0xd2,0x0c,0xd8,0x0c,0xde,0x0c,0xe4,0x00,0x00,
199
+0x0c,0xea,0x0c,0xf0,0x0c,0xf6,0x0c,0xfc,0x0d,0x02,0x0d,0x08,
200
+0x0d,0x0e,0x0d,0x14,0x0d,0x1a,0x0d,0x20,0x0d,0x26,0x0d,0x2c,
201
+0x0d,0x32,0x0d,0x38,0x0d,0x3e,0x0d,0x44,0x0d,0x4a,0x0d,0x50,
202
+0x0d,0x56,0x0d,0x5c,0x00,0x00,0x0d,0x62,0x00,0x00,0x0d,0x68,
203
+0x0d,0x6e,0x0d,0x74,0x00,0x00,0x0d,0x7a,0x00,0x00,0x0d,0x80,
204
+0x00,0x00,0x0d,0x86,0x0d,0x8c,0x0d,0x92,0x0d,0x98,0x0d,0x9e,
205
+0x0d,0xa4,0x0d,0xaa,0x0d,0xb0,0x0d,0xb6,0x0d,0xbc,0x0d,0xc2,
206
+0x0d,0xc8,0x0d,0xce,0x0d,0xd4,0x0d,0xda,0x0d,0xe0,0x00,0x00,
207
+0x0d,0xe6,0x0d,0xec,0x00,0x00,0x0d,0xf2,0x0d,0xf8,0x0d,0xfe,
208
+0x0e,0x04,0x0e,0x0a,0x0e,0x10,0x0e,0x16,0x0e,0x1c,0x0e,0x22,
209
+0x0e,0x28,0x0e,0x2e,0x0e,0x34,0x0e,0x3a,0x0e,0x40,0x0e,0x46,
210
+0x0e,0x4c,0x0e,0x52,0x0e,0x58,0x0e,0x5e,0x0e,0x64,0x0e,0x6a,
211
+0x0e,0x70,0x0e,0x76,0x0e,0x7c,0x0e,0x82,0x0e,0x88,0x0e,0x8e,
212
+0x0e,0x94,0x0e,0x9a,0x0e,0xa0,0x0e,0xa6,0x0e,0xac,0x0e,0xb2,
213
+0x0e,0xb8,0x0e,0xbe,0x0e,0xc4,0x0e,0xca,0x0e,0xd0,0x0e,0xd6,
214
+0x0e,0xdc,0x0e,0xe2,0x0e,0xe8,0x0e,0xee,0x00,0x00,0x0e,0xf4,
215
+0x00,0x00,0x0e,0xfa,0x00,0x00,0x0f,0x00,0x00,0x00,0x0f,0x06,
216
+0x00,0x00,0x0f,0x0c,0x00,0x00,0x0f,0x12,0x00,0x00,0x0f,0x18,
217
+0x00,0x00,0x0f,0x1e,0x00,0x00,0x0f,0x24,0x0f,0x2a,0x0f,0x30,
218
+0x00,0x00,0x0f,0x36,0x00,0x00,0x0f,0x3c,0x00,0x00,0x0f,0x42,
219
+0x00,0x00,0x0f,0x48,0x00,0x00,0x0f,0x4e,0x00,0x00,0x0f,0x54,
220
+0x00,0x00,0x0f,0x5a,0x00,0x00,0x0f,0x60,0x00,0x00,0x0f,0x66,
221
+0x00,0x00,0x0f,0x6c,0x00,0x00,0x0f,0x72,0x00,0x00,0x0f,0x78,
222
+0x00,0x00,0x0f,0x7e,0x00,0x00,0x0f,0x84,0x00,0x00,0x0f,0x8a,
223
+0x00,0x00,0x0f,0x90,0x00,0x00,0x0f,0x96,0x00,0x00,0x0f,0x9c,
224
+0x00,0x00,0x0f,0xa2,0x00,0x00,0x0f,0xa8,0x00,0x00,0x0f,0xae,
225
+0x00,0x00,0x0f,0xb4,0x00,0x00,0x0f,0xba,0x00,0x00,0x0f,0xc0,
226
+0x00,0x00,0x0f,0xc6,0x00,0x00,0x0f,0xcc,0x00,0x00,0x0f,0xd2,
227
+0x00,0x00,0x0f,0xd8,0x00,0x00,0x0f,0xde,0x00,0x00,0x0f,0xe4,
228
+0x00,0x00,0x0f,0xea,0x00,0x00,0x0f,0xf0,0x00,0x00,0x0f,0xf6,
229
+0x00,0x00,0x0f,0xfc,0x00,0x00,0x10,0x02,0x00,0x00,0x10,0x08,
230
+0x00,0x00,0x10,0x0e,0x00,0x00,0x10,0x14,0x00,0x00,0x10,0x1a,
231
+0x00,0x00,0x10,0x20,0x00,0x00,0x10,0x26,0x00,0x00,0x10,0x2c,
232
+0x10,0x32,0x10,0x38,0x10,0x3e,0x10,0x44,0x10,0x4a,0x10,0x50,
233
+0x10,0x56,0x10,0x5c,0x00,0x00,0x10,0x62,0x00,0x00,0x10,0x68,
234
+0x00,0x00,0x10,0x6e,0x10,0x74,0x10,0x7a,0x10,0x80,0x10,0x86,
235
+0x10,0x8c,0x10,0x92,0x10,0x98,0x10,0x9e,0x10,0xa4,0x10,0xaa,
236
+0x10,0xb0,0x10,0xb6,0x10,0xbc,0x10,0xc2,0x10,0xc8,0x10,0xce,
237
+0x10,0xd4,0x10,0xda,0x10,0xe0,0x10,0xe6,0x10,0xec,0x10,0xf2,
238
+0x10,0xf8,0x10,0xfe,0x11,0x04,0x11,0x0a,0x11,0x10,0x11,0x16,
239
+0x11,0x1c,0x11,0x22,0x11,0x28,0x11,0x2e,0x11,0x34,0x11,0x3a,
240
+0x11,0x40,0x11,0x46,0x11,0x4c,0x11,0x52,0x11,0x58,0x11,0x5e,
241
+0x11,0x64,0x11,0x6a,0x11,0x70,0x11,0x76,0x11,0x7c,0x11,0x82,
242
+0x11,0x88,0x11,0x8e,0x11,0x94,0x11,0x9a,0x11,0xa0,0x11,0xa6,
243
+0x11,0xac,0x11,0xb2,0x11,0xb8,0x11,0xbe,0x11,0xc4,0x11,0xca,
244
+0x11,0xd0,0x11,0xd6,0x11,0xdc,0x11,0xe2,0x11,0xe8,0x11,0xee,
245
+0x11,0xf4,0x11,0xfa,0x12,0x00,0x12,0x06,0x12,0x0c,0x12,0x12,
246
+0x12,0x18,0x12,0x1e,0x12,0x24,0x12,0x2a,0x12,0x30,0x12,0x36,
247
+0x12,0x3c,0x12,0x42,0x12,0x48,0x12,0x4e,0x12,0x54,0x12,0x5a,
248
+0x12,0x60,0x12,0x66,0x12,0x6c,0x12,0x72,0x12,0x78,0x12,0x7e,
249
+0x12,0x84,0x12,0x8a,0x12,0x90,0x12,0x96,0x12,0x9c,0x12,0xa2,
250
+0x12,0xa8,0x12,0xae,0x12,0xb4,0x12,0xba,0x12,0xc0,0x12,0xc6,
251
+0x12,0xcc,0x12,0xd2,0x12,0xd8,0x12,0xde,0x12,0xe4,0x12,0xea,
252
+0x12,0xf0,0x12,0xf6,0x12,0xfc,0x13,0x02,0x13,0x08,0x13,0x0e,
253
+0x13,0x14,0x13,0x1a,0x13,0x20,0x13,0x26,0x13,0x2c,0x13,0x32,
254
+0x13,0x38,0x13,0x3e,0x13,0x44,0x13,0x4a,0x13,0x50,0x13,0x56,
255
+0x13,0x5c,0x13,0x62,0x13,0x68,0x13,0x6e,0x13,0x74,0x13,0x7a,
256
+0x13,0x80,0x13,0x86,0x13,0x8c,0x13,0x92,0x13,0x98,0x13,0x9e,
257
+0x13,0xa4,0x13,0xaa,0x13,0xb0,0x00,0x00,0x13,0xb6,0x00,0x00,
258
+0x13,0xbc,0x13,0xc2,0x13,0xc8,0x13,0xce,0x13,0xd4,0x13,0xda,
259
+0x13,0xe0,0x13,0xe6,0x13,0xec,0x13,0xf2,0x13,0xf8,0x13,0xfe,
260
+0x14,0x04,0x14,0x0a,0x14,0x10,0x14,0x16,0x14,0x1c,0x14,0x22,
261
+0x14,0x28,0x14,0x2e,0x14,0x34,0x14,0x3a,0x14,0x40,0x14,0x46,
262
+0x14,0x4c,0x14,0x52,0x14,0x58,0x14,0x5e,0x14,0x64,0x14,0x6a,
263
+0x14,0x70,0x14,0x76,0x14,0x7c,0x14,0x82,0x14,0x88,0x14,0x8e,
264
+0x14,0x94,0x14,0x9a,0x14,0xa0,0x14,0xa6,0x14,0xac,0x14,0xb2,
265
+0x14,0xb8,0x14,0xbe,0x14,0xc4,0x14,0xca,0x14,0xd0,0x14,0xd6,
266
+0x14,0xdc,0x14,0xe2,0x14,0xe8,0x14,0xee,0x14,0xf4,0x14,0xfa,
267
+0x15,0x00,0x15,0x06,0x15,0x0c,0x15,0x12,0x15,0x18,0x15,0x1e,
268
+0x15,0x24,0x15,0x2a,0x15,0x30,0x15,0x36,0x15,0x3c,0x15,0x42,
269
+0x15,0x48,0x15,0x4e,0x15,0x54,0x15,0x5a,0x15,0x60,0x15,0x66,
270
+0x15,0x6c,0x15,0x72,0x15,0x78,0x15,0x7e,0x15,0x84,0x15,0x8a,
271
+0x15,0x90,0x15,0x96,0x15,0x9c,0x15,0xa2,0x15,0xa8,0x15,0xae,
272
+0x15,0xb4,0x15,0xba,0x15,0xc0,0x15,0xc6,0x15,0xcc,0x15,0xd2,
273
+0x00,0x00,0x15,0xd8,0x00,0x00,0x15,0xde,0x00,0x00,0x15,0xe4,
274
+0x00,0x00,0x15,0xea,0x00,0x00,0x15,0xf0,0x00,0x00,0x15,0xf6,
275
+0x00,0x00,0x15,0xfc,0x00,0x00,0x16,0x02,0x00,0x00,0x16,0x08,
276
+0x00,0x00,0x16,0x0e,0x16,0x14,0x16,0x1a,0x16,0x20,0x16,0x26,
277
+0x16,0x2c,0x16,0x32,0x16,0x38,0x16,0x3e,0x16,0x44,0x16,0x4a,
278
+0x16,0x50,0x16,0x56,0x16,0x5c,0x16,0x62,0x16,0x68,0x16,0x6e,
279
+0x16,0x74,0x16,0x7a,0x16,0x80,0x16,0x86,0x16,0x8c,0x16,0x92,
280
+0x16,0x98,0x16,0x9e,0x16,0xa4,0x16,0xaa,0x16,0xb0,0x16,0xb6,
281
+0x16,0xbc,0x16,0xc2,0x16,0xc8,0x16,0xce,0x16,0xd4,0x16,0xda,
282
+0x16,0xe0,0x16,0xe6,0x16,0xec,0x16,0xf2,0x16,0xf8,0x16,0xfe,
283
+0x17,0x04,0x17,0x0a,0x17,0x10,0x17,0x16,0x17,0x1c,0x17,0x22,
284
+0x17,0x28,0x17,0x2e,0x17,0x34,0x17,0x3a,0x17,0x40,0x17,0x46,
285
+0x17,0x4c,0x17,0x52,0x17,0x58,0x17,0x5e,0x17,0x64,0x17,0x6a,
286
+0x17,0x70,0x17,0x76,0x17,0x7c,0x17,0x82,0x17,0x88,0x17,0x8e,
287
+0x17,0x94,0x17,0x9a,0x17,0xa0,0x17,0xa6,0x17,0xac,0x17,0xb2,
288
+0x17,0xb8,0x17,0xbe,0x17,0xc4,0x17,0xca,0x17,0xd0,0x17,0xd6,
289
+0x17,0xdc,0x17,0xe2,0x17,0xe8,0x17,0xee,0x17,0xf4,0x17,0xfa,
290
+0x18,0x00,0x18,0x06,0x18,0x0c,0x18,0x12,0x18,0x18,0x18,0x1e,
291
+0x18,0x24,0x18,0x2a,0x18,0x30,0x18,0x36,0x18,0x3c,0x18,0x42,
292
+0x18,0x48,0x18,0x4e,0x18,0x54,0x18,0x5a,0x18,0x60,0x18,0x66,
293
+0x18,0x6c,0x18,0x72,0x18,0x78,0x18,0x7e,0x18,0x84,0x18,0x8a,
294
+0x18,0x90,0x18,0x96,0x18,0x9c,0x18,0xa2,0x18,0xa8,0x18,0xae,
295
+0x18,0xb4,0x18,0xba,0x18,0xc0,0x18,0xc6,0x18,0xcc,0x18,0xd2,
296
+0x18,0xd8,0x18,0xde,0x18,0xe4,0x18,0xea,0x18,0xf0,0x18,0xf6,
297
+0x18,0xfc,0x19,0x02,0x19,0x08,0x19,0x0e,0x19,0x14,0x19,0x1a,
298
+0x19,0x20,0x19,0x26,0x19,0x2c,0x19,0x32,0x19,0x38,0x19,0x3e,
299
+0x19,0x44,0x19,0x4a,0x19,0x50,0x19,0x56,0x19,0x5c,0x19,0x62,
300
+0x19,0x68,0x19,0x6e,0x19,0x74,0x19,0x7a,0x19,0x80,0x19,0x86,
301
+0x19,0x8c,0x19,0x92,0x19,0x98,0x19,0x9e,0x19,0xa4,0x19,0xaa,
302
+0x19,0xb0,0x19,0xb6,0x19,0xbc,0x19,0xc2,0x19,0xc8,0x19,0xce,
303
+0x19,0xd4,0x19,0xda,0x19,0xe0,0x19,0xe6,0x19,0xec,0x19,0xf2,
304
+0x19,0xf8,0x19,0xfe,0x1a,0x04,0x1a,0x0a,0x1a,0x10,0x1a,0x16,
305
+0x1a,0x1c,0x1a,0x22,0x1a,0x28,0x1a,0x2e,0x1a,0x34,0x1a,0x3a,
306
+0x1a,0x40,0x1a,0x46,0x1a,0x4c,0x1a,0x52,0x1a,0x58,0x1a,0x5e,
307
+0x1a,0x64,0x1a,0x6a,0x1a,0x70,0x1a,0x76,0x1a,0x7c,0x1a,0x82,
308
+0x1a,0x88,0x1a,0x8e,0x1a,0x94,0x1a,0x9a,0x1a,0xa0,0x1a,0xa6,
309
+0x1a,0xac,0x1a,0xb2,0x1a,0xb8,0x1a,0xbe,0x1a,0xc4,0x1a,0xca,
310
+0x1a,0xd0,0x1a,0xd6,0x1a,0xdc,0x1a,0xe2,0x1a,0xe8,0x1a,0xee,
311
+0x1a,0xf4,0x1a,0xfa,0x1b,0x00,0x1b,0x06,0x1b,0x0c,0x1b,0x12,
312
+0x1b,0x18,0x1b,0x1e,0x1b,0x24,0x1b,0x2a,0x1b,0x30,0x1b,0x36,
313
+0x1b,0x3c,0x1b,0x42,0x1b,0x48,0x1b,0x4e,0x1b,0x54,0x1b,0x5a,
314
+0x1b,0x60,0x1b,0x66,0x1b,0x6c,0x1b,0x72,0x1b,0x78,0x1b,0x7e,
315
+0x1b,0x84,0x1b,0x8a,0x1b,0x90,0x1b,0x96,0x1b,0x9c,0x1b,0xa2,
316
+0x1b,0xa8,0x1b,0xae,0x1b,0xb4,0x1b,0xba,0x1b,0xc0,0x1b,0xc6,
317
+0x1b,0xcc,0x1b,0xd2,0x1b,0xd8,0x1b,0xde,0x1b,0xe4,0x1b,0xea,
318
+0x1b,0xf0,0x1b,0xf6,0x1b,0xfc,0x1c,0x02,0x1c,0x08,0x1c,0x0e,
319
+0x1c,0x14,0x1c,0x1a,0x1c,0x20,0x1c,0x26,0x1c,0x2c,0x1c,0x32,
320
+0x1c,0x38,0x1c,0x3e,0x1c,0x44,0x1c,0x4a,0x1c,0x50,0x1c,0x56,
321
+0x1c,0x5c,0x1c,0x62,0x1c,0x68,0x1c,0x6e,0x1c,0x74,0x1c,0x7a,
322
+0x1c,0x80,0x1c,0x86,0x1c,0x8c,0x1c,0x92,0x1c,0x98,0x1c,0x9e,
323
+0x1c,0xa4,0x1c,0xaa,0x1c,0xb0,0x1c,0xb6,0x1c,0xbc,0x1c,0xc2,
324
+0x1c,0xc8,0x1c,0xce,0x1c,0xd4,0x1c,0xda,0x1c,0xe0,0x1c,0xe6,
325
+0x1c,0xec,0x1c,0xf2,0x1c,0xf8,0x1c,0xfe,0x1d,0x04,0x1d,0x0a,
326
+0x1d,0x10,0x1d,0x16,0x1d,0x1c,0x1d,0x22,0x1d,0x28,0x1d,0x2e,
327
+0x1d,0x34,0x1d,0x3a,0x00,0x00,0x1d,0x40,0x00,0x00,0x1d,0x46,
328
+0x00,0x00,0x1d,0x4c,0x1d,0x52,0x1d,0x58,0x1d,0x5e,0x1d,0x64,
329
+0x00,0x00,0x1d,0x6a,0x00,0x00,0x1d,0x70,0x00,0x00,0x1d,0x76,
330
+0x1d,0x7c,0x1d,0x82,0x1d,0x88,0x1d,0x8e,0x1d,0x94,0x1d,0x9a,
331
+0x1d,0xa0,0x1d,0xa6,0x1d,0xac,0x1d,0xb2,0x1d,0xb8,0x1d,0xbe,
332
+0x1d,0xc4,0x1d,0xca,0x1d,0xd0,0x1d,0xd6,0x1d,0xdc,0x1d,0xe2,
333
+0x1d,0xe8,0x1d,0xee,0x1d,0xf4,0x1d,0xfa,0x1e,0x00,0x1e,0x06,
334
+0x1e,0x0c,0x1e,0x12,0x1e,0x18,0x00,0x01,0x02,0xe3,0x05,0xb9,
335
+0x00,0x01,0x02,0xe3,0x00,0x00,0x00,0x01,0x02,0xe7,0x05,0xb9,
336
+0x00,0x01,0x02,0xe7,0x00,0x00,0x00,0x01,0x03,0x3d,0x05,0xb9,
337
+0x00,0x01,0x03,0x3d,0x00,0x00,0x00,0x01,0x02,0xe7,0x05,0xb9,
338
+0x00,0x01,0x02,0xe7,0x00,0x00,0x00,0x01,0x02,0xec,0x05,0xb9,
339
+0x00,0x01,0x02,0xec,0x00,0x00,0x00,0x01,0x02,0xf6,0x05,0xb9,
340
+0x00,0x01,0x01,0x94,0x00,0x00,0x00,0x01,0x03,0x58,0x05,0xb9,
341
+0x00,0x01,0x03,0x58,0x00,0x00,0x00,0x01,0x03,0x7d,0x05,0xb9,
342
+0x00,0x01,0x03,0x7d,0x00,0x00,0x00,0x01,0x01,0x96,0x05,0xb9,
343
+0x00,0x01,0x01,0x96,0x00,0x00,0x00,0x01,0x01,0xb3,0x05,0xb9,
344
+0x00,0x01,0x00,0xbb,0xfe,0x52,0x00,0x01,0x03,0x49,0x05,0xb9,
345
+0x00,0x01,0x03,0x49,0x00,0x00,0x00,0x01,0x01,0x96,0x05,0xb9,
346
+0x00,0x01,0x02,0xf8,0x00,0x00,0x00,0x01,0x04,0x18,0x05,0xb9,
347
+0x00,0x01,0x04,0x18,0x00,0x00,0x00,0x01,0x03,0x67,0x05,0xb9,
348
+0x00,0x01,0x03,0x67,0x00,0x00,0x00,0x01,0x03,0x48,0x05,0xb9,
349
+0x00,0x01,0x03,0x48,0x00,0x00,0x00,0x01,0x02,0xe7,0x05,0xb9,
350
+0x00,0x01,0x01,0x96,0x00,0x00,0x00,0x01,0x03,0x48,0x05,0xb9,
351
+0x00,0x01,0x03,0x48,0xfe,0xb6,0x00,0x01,0x02,0xdb,0x05,0xb9,
352
+0x00,0x01,0x02,0xdb,0x00,0x00,0x00,0x01,0x02,0xbe,0x05,0xb9,
353
+0x00,0x01,0x02,0xbe,0x00,0x00,0x00,0x01,0x02,0xa5,0x05,0xb9,
354
+0x00,0x01,0x02,0xa5,0x00,0x00,0x00,0x01,0x03,0x87,0x05,0xb9,
355
+0x00,0x01,0x03,0x87,0x00,0x00,0x00,0x01,0x02,0xe3,0x05,0xb9,
356
+0x00,0x01,0x02,0xe3,0x00,0x00,0x00,0x01,0x04,0x1e,0x05,0xb9,
357
+0x00,0x01,0x04,0x1e,0x00,0x00,0x00,0x01,0x02,0xd9,0x05,0xb9,
358
+0x00,0x01,0x02,0xd9,0x00,0x00,0x00,0x01,0x02,0xa1,0x05,0xb9,
359
+0x00,0x01,0x02,0xa1,0x00,0x00,0x00,0x01,0x02,0xc9,0x05,0xb9,
360
+0x00,0x01,0x02,0xc9,0x00,0x00,0x00,0x01,0x02,0x39,0x04,0x44,
361
+0x00,0x01,0x02,0x39,0x00,0x00,0x00,0x01,0x01,0x48,0x06,0x00,
362
+0x00,0x01,0x02,0xd9,0x00,0x00,0x00,0x01,0x02,0x68,0x04,0x44,
363
+0x00,0x01,0x02,0x68,0x00,0x0a,0x00,0x01,0x03,0xd7,0x06,0x00,
364
+0x00,0x01,0x02,0x39,0x00,0x00,0x00,0x01,0x02,0x5e,0x04,0x44,
365
+0x00,0x01,0x02,0x5e,0x00,0x00,0x00,0x01,0x02,0x35,0x06,0x00,
366
+0x00,0x01,0x01,0x56,0x00,0x00,0x00,0x01,0x02,0x5c,0x04,0x44,
367
+0x00,0x01,0x02,0x5c,0xfe,0x52,0x00,0x01,0x01,0x48,0x06,0x01,
368
+0x00,0x01,0x02,0xa1,0x00,0x00,0x00,0x01,0x01,0x48,0x06,0x00,
369
+0x00,0x01,0x01,0x48,0x00,0x00,0x00,0x01,0x01,0x48,0x06,0x00,
370
+0x00,0x01,0x00,0x76,0xfe,0x52,0x00,0x01,0x01,0x48,0x06,0x00,
371
+0x00,0x01,0x02,0x92,0x00,0x00,0x00,0x01,0x01,0x48,0x06,0x00,
372
+0x00,0x01,0x01,0x48,0x00,0x00,0x00,0x01,0x03,0xd9,0x04,0x44,
373
+0x00,0x01,0x03,0xd9,0x00,0x00,0x00,0x01,0x02,0x52,0x04,0x44,
374
+0x00,0x01,0x02,0xa1,0x00,0x00,0x00,0x01,0x02,0x68,0x04,0x44,
375
+0x00,0x01,0x02,0x68,0x00,0x00,0x00,0x01,0x02,0xc5,0x04,0x44,
376
+0x00,0x01,0x01,0x48,0xfe,0x52,0x00,0x01,0x02,0x39,0x04,0x44,
377
+0x00,0x01,0x03,0xd7,0xfe,0x52,0x00,0x01,0x02,0x28,0x04,0x44,
378
+0x00,0x01,0x01,0x48,0x00,0x00,0x00,0x01,0x02,0x0e,0x04,0x44,
379
+0x00,0x01,0x02,0x0e,0x00,0x00,0x00,0x01,0x01,0x39,0x06,0x00,
380
+0x00,0x01,0x02,0x02,0x00,0x00,0x00,0x01,0x02,0x48,0x04,0x44,
381
+0x00,0x01,0x02,0x52,0x00,0x00,0x00,0x01,0x02,0x42,0x04,0x44,
382
+0x00,0x01,0x02,0x42,0x00,0x00,0x00,0x01,0x03,0x6f,0x04,0x44,
383
+0x00,0x01,0x03,0x6f,0x00,0x00,0x00,0x01,0x02,0x42,0x04,0x44,
384
+0x00,0x01,0x02,0x42,0x00,0x00,0x00,0x01,0x02,0x3c,0x04,0x44,
385
+0x00,0x01,0x02,0x3c,0xfe,0x52,0x00,0x01,0x02,0x11,0x04,0x44,
386
+0x00,0x01,0x02,0x11,0x00,0x00,0x00,0x01,0x02,0xdd,0x07,0x6b,
387
+0x00,0x01,0x02,0xdb,0x07,0x73,0x00,0x01,0x04,0xb1,0x05,0xb9,
388
+0x00,0x01,0x04,0xb1,0x00,0x00,0x00,0x01,0x03,0x3d,0x05,0xb9,
389
+0x00,0x01,0x03,0x3d,0xfe,0x52,0x00,0x01,0x03,0x3f,0x07,0x6b,
390
+0x00,0x01,0x03,0x3f,0x07,0x6b,0x00,0x01,0x03,0x48,0x05,0xb9,
391
+0x00,0x01,0x03,0x48,0x00,0x00,0x00,0x01,0x03,0x85,0x07,0x6b,
392
+0x00,0x01,0x03,0x9e,0x04,0x49,0x00,0x01,0x03,0x9e,0x00,0x05,
393
+0x00,0x01,0x02,0x68,0x04,0x44,0x00,0x01,0x02,0x68,0xfe,0x52,
394
+0x00,0x01,0x03,0x7d,0x05,0xb9,0x00,0x01,0x03,0x7d,0x00,0x00,
395
+0x00,0x01,0x01,0x48,0x04,0x44,0x00,0x01,0x01,0x48,0x00,0x00,
396
+0x00,0x01,0x02,0x52,0x04,0x44,0x00,0x01,0x04,0xdb,0x05,0xb3,
397
+0x00,0x01,0x04,0xdb,0xff,0xfa,0x00,0x01,0x04,0x02,0x04,0x44,
398
+0x00,0x01,0x04,0x02,0x00,0x00,0x00,0x01,0x02,0xa5,0x05,0xb9,
399
+0x00,0x01,0x02,0xa5,0x00,0x00,0x00,0x01,0x01,0x39,0x06,0x00,
400
+0x00,0x01,0x02,0x02,0x00,0x00,0x00,0x01,0x02,0x35,0x06,0x00,
401
+0x00,0x01,0x01,0x56,0x00,0x00,0x00,0x01,0x01,0x48,0x06,0x00,
402
+0x00,0x01,0x02,0xd9,0x00,0x0a,0x00,0x01,0x02,0xdd,0x05,0xb9,
403
+0x00,0x01,0x03,0x3d,0x05,0xb9,0x00,0x01,0x02,0x68,0x04,0x44,
404
+0x00,0x01,0x02,0xe7,0x05,0xb9,0x00,0x01,0x02,0xb8,0x05,0xb9,
405
+0x00,0x01,0x03,0x48,0x05,0xb9,0x00,0x01,0x03,0x48,0x00,0x00,
406
+0x00,0x01,0x02,0x9e,0x05,0xb9,0x00,0x01,0x02,0x9e,0x00,0x00,
407
+0x00,0x01,0x03,0x58,0x05,0xb9,0x00,0x01,0x02,0xd9,0x05,0xb9,
408
+0x00,0x01,0x02,0xd9,0xff,0x1a,0x00,0x01,0x01,0x96,0x05,0xb9,
409
+0x00,0x01,0x01,0x96,0x00,0x00,0x00,0x01,0x03,0x67,0x05,0xc3,
410
+0x00,0x01,0x02,0x52,0x04,0x44,0x00,0x01,0x03,0x48,0x05,0xb9,
411
+0x00,0x01,0x02,0xbe,0x05,0xb9,0x00,0x01,0x02,0x0e,0x04,0x44,
412
+0x00,0x01,0x02,0xa5,0x05,0xb9,0x00,0x01,0x03,0x52,0x05,0xb9,
413
+0x00,0x01,0x03,0x52,0x00,0x00,0x00,0x01,0x02,0xa1,0x05,0xc0,
414
+0x00,0x01,0x02,0x3c,0x04,0x44,0x00,0x01,0x02,0xc9,0x05,0xb9,
415
+0x00,0x01,0x02,0xc9,0x00,0x00,0x00,0x01,0x02,0x11,0x04,0x44,
416
+0x00,0x01,0x02,0x11,0x00,0x00,0x00,0x01,0x02,0x2d,0x05,0xb9,
417
+0x00,0x01,0x02,0x2d,0x00,0x00,0x00,0x01,0x02,0x11,0x04,0x44,
418
+0x00,0x01,0x02,0x43,0xfe,0x52,0x00,0x01,0x03,0x58,0x05,0xb9,
419
+0x00,0x01,0x03,0x58,0x00,0x00,0x00,0x01,0x02,0x5c,0x04,0x44,
420
+0x00,0x01,0x02,0x5c,0xfe,0x52,0x00,0x01,0x03,0x48,0x05,0xb9,
421
+0x00,0x01,0x02,0x49,0x05,0xb9,0x00,0x01,0x02,0x49,0x00,0x00,
422
+0x00,0x01,0x02,0x35,0x06,0x00,0x00,0x01,0x02,0x35,0x00,0x00,
423
+0x00,0x01,0x02,0xec,0x05,0xb9,0x00,0x01,0x02,0xec,0xfe,0x52,
424
+0x00,0x01,0x02,0x5e,0x04,0x44,0x00,0x01,0x02,0x5e,0x00,0x00,
425
+0x00,0x01,0x01,0x48,0x06,0x00,0x00,0x01,0x02,0x74,0x00,0x00,
426
+0x00,0x01,0x02,0x52,0x04,0x44,0x00,0x01,0x02,0xa1,0x00,0x00,
427
+0x00,0x01,0x01,0x39,0x06,0x00,0x00,0x01,0x02,0x65,0x00,0x00,
428
+0x00,0x01,0x01,0x48,0x04,0x44,0x00,0x01,0x00,0x76,0xfe,0x52,
429
+0x00,0x01,0x01,0x96,0x05,0xb9,0x00,0x01,0x02,0xf8,0x00,0x00,
430
+0x00,0x01,0x02,0x11,0x04,0x44,0x00,0x01,0x02,0xe7,0x05,0xb9,
431
+0x00,0x01,0x02,0xe7,0x00,0x00,0x00,0x01,0x03,0x87,0x05,0xb9,
432
+0x00,0x01,0x03,0x87,0x00,0x00,0x00,0x01,0x02,0xe3,0x05,0xb9,
433
+0x00,0x01,0x02,0xe3,0x00,0x00,0x00,0x01,0x02,0xec,0x05,0xb9,
434
+0x00,0x01,0x02,0xec,0x00,0x00,0x00,0x01,0x02,0x5e,0x04,0x44,
435
+0x00,0x01,0x02,0x5e,0x00,0x00,0x00,0x01,0x01,0xb3,0x05,0xb9,
436
+0x00,0x01,0x00,0xbb,0xfe,0x52,0x00,0x01,0x00,0x76,0xfe,0x52,
437
+0x00,0x01,0x02,0xce,0x05,0xb9,0x00,0x01,0x02,0xce,0x00,0x00,
438
+0x00,0x01,0x02,0x39,0x04,0x44,0x00,0x01,0x02,0x39,0x00,0x00,
439
+0x00,0x01,0x02,0xdb,0x05,0xb9,0x00,0x01,0x02,0xdb,0x00,0x00,
440
+0x00,0x01,0x02,0x28,0x04,0x44,0x00,0x01,0x01,0x48,0x00,0x00,
441
+0x00,0x01,0x02,0xa1,0x05,0xb9,0x00,0x01,0x02,0xa1,0x00,0x00,
442
+0x00,0x01,0x02,0x3c,0x04,0x44,0x00,0x01,0x02,0x3c,0xfe,0x52,
443
+0x00,0x01,0x02,0xcf,0x04,0x44,0x00,0x01,0x02,0xcf,0x00,0x00,
444
+0x00,0x01,0x02,0x39,0x04,0x44,0x00,0x01,0x02,0x39,0x00,0x00,
445
+0x00,0x01,0x03,0x15,0x04,0x44,0x00,0x01,0x03,0x15,0x00,0x00,
446
+0x00,0x01,0x02,0x28,0x04,0x44,0x00,0x01,0x02,0x68,0x04,0x44,
447
+0x00,0x01,0x03,0xd7,0x06,0x00,0x00,0x01,0x02,0x39,0x00,0x00,
448
+0x00,0x01,0x02,0x68,0x04,0x44,0x00,0x01,0x02,0x68,0x04,0x44,
449
+0x00,0x01,0x02,0x68,0x04,0x44,0x00,0x01,0x02,0x14,0x04,0x44,
450
+0x00,0x01,0x02,0x14,0x00,0x00,0x00,0x01,0x02,0x2c,0x04,0x44,
451
+0x00,0x01,0x02,0x2c,0x00,0x00,0x00,0x01,0x02,0x2c,0x04,0x44,
452
+0x00,0x01,0x02,0x2c,0x00,0x00,0x00,0x01,0x02,0x8f,0x04,0x44,
453
+0x00,0x01,0x02,0x8f,0x00,0x00,0x00,0x01,0x01,0x48,0x04,0x44,
454
+0x00,0x01,0x00,0x76,0xfe,0x52,0x00,0x01,0x02,0x68,0x04,0x44,
455
+0x00,0x01,0x02,0x68,0x00,0x0a,0x00,0x01,0x02,0x81,0x04,0x44,
456
+0x00,0x01,0x02,0x81,0xfe,0x52,0x00,0x01,0x02,0x48,0x04,0x44,
457
+0x00,0x01,0x02,0x52,0xfe,0x52,0x00,0x01,0x01,0x48,0x00,0x00,
458
+0x00,0x01,0x01,0x56,0x04,0x44,0x00,0x01,0x03,0xc6,0x04,0x44,
459
+0x00,0x01,0x03,0xc6,0x00,0x00,0x00,0x01,0x03,0xc6,0x04,0x44,
460
+0x00,0x01,0x03,0xc6,0xfe,0x52,0x00,0x01,0x02,0xa1,0x04,0x44,
461
+0x00,0x01,0x02,0xa1,0x00,0x00,0x00,0x01,0x03,0x49,0x04,0x44,
462
+0x00,0x01,0x03,0x49,0x00,0x00,0x00,0x01,0x02,0xc4,0x06,0x00,
463
+0x00,0x01,0x02,0xc4,0xfe,0x52,0x00,0x01,0x02,0x3d,0x04,0x44,
464
+0x00,0x01,0x02,0x85,0x00,0x00,0x00,0x01,0x02,0x85,0x04,0x44,
465
+0x00,0x01,0x02,0x3d,0x00,0x00,0x00,0x01,0x02,0x0e,0x04,0x44,
466
+0x00,0x01,0x02,0x0e,0xfe,0x52,0x00,0x01,0x02,0x7b,0x04,0x44,
467
+0x00,0x01,0x02,0x7b,0x00,0x00,0x00,0x01,0x02,0xad,0x04,0x44,
468
+0x00,0x01,0x02,0xad,0x00,0x00,0x00,0x01,0x02,0x11,0x04,0x44,
469
+0x00,0x01,0x02,0x11,0xfe,0x52,0x00,0x01,0x02,0x28,0x06,0x00,
470
+0x00,0x01,0x01,0xf2,0x00,0x00,0x00,0x01,0x03,0x48,0x05,0xb9,
471
+0x00,0x01,0x03,0x48,0x00,0x00,0x00,0x01,0x02,0x58,0x04,0x44,
472
+0x00,0x01,0x02,0x58,0x00,0x00,0x00,0x01,0x02,0xbc,0x06,0x00,
473
+0x00,0x01,0x02,0x68,0x00,0x0a,0x00,0x01,0x01,0x6e,0x04,0x44,
474
+0x00,0x01,0x02,0x3f,0x00,0x00,0x00,0x01,0x01,0x94,0x05,0x00,
475
+0x00,0x01,0x01,0x94,0x01,0xab,0x00,0x01,0x02,0xa5,0x05,0xb9,
476
+0x00,0x01,0x02,0xa5,0x00,0x00,0x00,0x01,0x02,0x39,0x04,0x44,
477
+0x00,0x01,0x02,0x39,0x00,0x00,0x00,0x01,0x03,0xa3,0x05,0xb9,
478
+0x00,0x01,0x03,0xa3,0x00,0x00,0x00,0x01,0x02,0x99,0x04,0x44,
479
+0x00,0x01,0x02,0x99,0x00,0x00,0x00,0x01,0x03,0x3d,0x05,0xb9,
480
+0x00,0x01,0x01,0x96,0x05,0xb9,0x00,0x01,0x01,0x99,0x07,0x18,
481
+0x00,0x01,0x03,0x07,0x05,0xb9,0x00,0x01,0x02,0xdf,0x05,0xb9,
482
+0x00,0x01,0x02,0xec,0x05,0xb9,0x00,0x01,0x04,0x7d,0x05,0xb9,
483
+0x00,0x01,0x03,0x7d,0x05,0xc0,0x00,0x01,0x03,0x49,0x05,0xb9,
484
+0x00,0x01,0x03,0x7d,0x05,0xb9,0x00,0x01,0x03,0x7d,0x00,0x00,
485
+0x00,0x01,0x03,0x48,0x05,0xb9,0x00,0x01,0x02,0xe7,0x05,0xb9,
486
+0x00,0x01,0x02,0xe4,0x05,0xc3,0x00,0x01,0x02,0x8c,0x05,0xb4,
487
+0x00,0x01,0x03,0xf0,0x05,0xb4,0x00,0x01,0x02,0xdd,0x05,0xc0,
488
+0x00,0x01,0x03,0xeb,0x05,0xc0,0x00,0x01,0x03,0x70,0x05,0xc0,
489
+0x00,0x01,0x02,0x39,0x04,0x44,0x00,0x01,0x02,0x49,0x04,0x44,
490
+0x00,0x01,0x02,0x5e,0x04,0x44,0x00,0x01,0x03,0xad,0x04,0x44,
491
+0x00,0x01,0x02,0x99,0x04,0x44,0x00,0x01,0x02,0x88,0x04,0x44,
492
+0x00,0x01,0x02,0x68,0x04,0x44,0x00,0x01,0x02,0xc5,0x04,0x44,
493
+0x00,0x01,0x02,0x68,0x04,0x44,0x00,0x01,0x02,0x5a,0x04,0x44,
494
+0x00,0x01,0x02,0x02,0x04,0x44,0x00,0x01,0x03,0x20,0x04,0x44,
495
+0x00,0x01,0x02,0x28,0x04,0x44,0x00,0x01,0x03,0x1b,0x04,0x44,
496
+0x00,0x01,0x02,0xa0,0x04,0x44,0x00,0x01,0x02,0x68,0x04,0x44,
497
+0x00,0x01,0x01,0x4a,0x06,0x00,0x00,0x01,0x02,0x46,0x05,0xb4,
498
+0x00,0x01,0x03,0x09,0x04,0x44,0x00,0x01,0x03,0xeb,0x05,0xc0,
499
+0x00,0x01,0x03,0x1b,0x04,0x44,0x00,0x01,0x04,0x7d,0x05,0xb9,
500
+0x00,0x01,0x03,0xad,0x04,0x44,0x00,0x01,0x04,0x7d,0x05,0xb9,
501
+0x00,0x01,0x03,0xad,0x04,0x44,0x00,0x01,0x03,0x86,0x05,0xb9,
502
+0x00,0x01,0x03,0x2f,0x06,0x00,0x00,0x01,0x03,0x87,0x05,0xb9,
503
+0x00,0x01,0x02,0xba,0x04,0x44,0x00,0x01,0x01,0xd5,0x05,0xb4,
504
+0x00,0x01,0x01,0x48,0x06,0x01,0x00,0x01,0x04,0x7d,0x05,0xb9,
505
+0x00,0x01,0x03,0xad,0x04,0x44,0x00,0x01,0x03,0x49,0x05,0xb9,
506
+0x00,0x01,0x03,0x49,0x05,0xb9,0x00,0x01,0x03,0x49,0x00,0x00,
507
+0x00,0x01,0x01,0x48,0x06,0x00,0x00,0x01,0x02,0x92,0x00,0x00,
508
+0x00,0x01,0x04,0x40,0x05,0xb9,0x00,0x01,0x04,0x40,0x00,0x00,
509
+0x00,0x01,0x03,0x7d,0x05,0xb9,0x00,0x01,0x03,0x7d,0x00,0x00,
510
+0x00,0x01,0x02,0xa5,0x05,0xb9,0x00,0x01,0x03,0x7d,0x05,0xb9,
511
+0x00,0x01,0x02,0x9e,0x05,0xb9,0x00,0x01,0x02,0x42,0x04,0x44,
512
+0x00,0x01,0x02,0x42,0x00,0x00,0x00,0x01,0x03,0x5a,0x04,0x44,
513
+0x00,0x01,0x03,0x0a,0x00,0x00,0x00,0x01,0x02,0x34,0x04,0x44,
514
+0x00,0x01,0x02,0x3e,0x00,0x00,0x00,0x01,0x02,0x68,0x04,0x44,
515
+0x00,0x01,0x02,0x68,0x00,0x0a,0x00,0x01,0x02,0x30,0x04,0x44,
516
+0x00,0x01,0x02,0x30,0x00,0x00,0x00,0x01,0x02,0x30,0x04,0x44,
517
+0x00,0x01,0x02,0x30,0x00,0x00,0x00,0x01,0x02,0x26,0x04,0x44,
518
+0x00,0x01,0x02,0x26,0x00,0x00,0x00,0x01,0x02,0x7b,0x04,0x44,
519
+0x00,0x01,0x01,0x83,0x00,0x00,0x00,0x01,0x02,0x88,0x04,0x44,
520
+0x00,0x01,0x02,0x88,0x00,0x00,0x00,0x01,0x01,0x6e,0x04,0x44,
521
+0x00,0x01,0x02,0x3f,0x00,0x00,0x00,0x01,0x03,0x1e,0x04,0x44,
522
+0x00,0x01,0x03,0x1e,0x00,0x00,0x00,0x01,0x02,0x99,0x04,0x44,
523
+0x00,0x01,0x02,0x99,0x00,0x00,0x00,0x01,0x02,0x68,0x04,0x44,
524
+0x00,0x01,0x02,0x68,0x00,0x00,0x00,0x01,0x02,0x13,0x04,0x44,
525
+0x00,0x01,0x02,0x13,0x00,0x0a,0x00,0x01,0x02,0x96,0x04,0x44,
526
+0x00,0x01,0x02,0x96,0x00,0x00,0x00,0x01,0x02,0x96,0x04,0x44,
527
+0x00,0x01,0x02,0x96,0x00,0x00,0x00,0x01,0x02,0x96,0x04,0x44,
528
+0x00,0x01,0x02,0x96,0x00,0x00,0x00,0x01,0x02,0x0e,0x04,0x44,
529
+0x00,0x01,0x02,0x0e,0x00,0x00,0x00,0x01,0x02,0x44,0x04,0x44,
530
+0x00,0x01,0x01,0x79,0x00,0x00,0x00,0x01,0x02,0x9e,0x04,0x44,
531
+0x00,0x01,0x02,0x44,0x00,0x00,0x00,0x01,0x02,0x44,0x04,0x44,
532
+0x00,0x01,0x02,0x9e,0x00,0x00,0x00,0x01,0x02,0x39,0x04,0x44,
533
+0x00,0x01,0x02,0x39,0x00,0x00,0x00,0x01,0x02,0x6c,0x04,0x44,
534
+0x00,0x01,0x02,0x6c,0x00,0x00,0x00,0x01,0x02,0x97,0x04,0x44,
535
+0x00,0x01,0x02,0x97,0x00,0x00,0x00,0x01,0x04,0xab,0x04,0x44,
536
+0x00,0x01,0x04,0xab,0x00,0x00,0x00,0x01,0x02,0x9a,0x05,0x49,
537
+0x00,0x01,0x02,0x9a,0xfe,0x97,0x00,0x01,0x02,0x42,0x04,0x44,
538
+0x00,0x01,0x02,0x42,0x00,0x00,0x00,0x01,0x03,0x6f,0x04,0x44,
539
+0x00,0x01,0x03,0x6f,0x00,0x00,0x00,0x01,0x02,0x11,0x04,0x44,
540
+0x00,0x01,0x02,0x11,0x00,0x00,0x00,0x01,0x02,0x11,0x04,0x44,
541
+0x00,0x01,0x02,0x39,0x00,0x00,0x00,0x01,0x02,0x25,0x06,0x00,
542
+0x00,0x01,0x02,0x25,0x00,0x00,0x00,0x01,0x02,0xf9,0x04,0x44,
543
+0x00,0x01,0x02,0xf9,0x00,0x00,0x00,0x01,0x02,0x49,0x04,0x44,
544
+0x00,0x01,0x01,0x48,0x00,0x00,0x00,0x01,0x02,0x42,0x04,0x44,
545
+0x00,0x01,0x02,0x42,0x00,0x00,0x00,0x01,0x02,0xa6,0x04,0x44,
546
+0x00,0x01,0x02,0xa6,0x00,0x00,0x00,0x01,0x02,0x44,0x04,0x44,
547
+0x00,0x01,0x01,0x79,0x00,0x00,0x00,0x01,0x02,0xdc,0x04,0x44,
548
+0x00,0x01,0x02,0xdc,0x00,0x00,0x00,0x01,0x02,0xc6,0x04,0x44,
549
+0x00,0x01,0x02,0xc6,0x00,0x00,0x00,0x01,0x01,0xd1,0x05,0xd0,
550
+0x00,0x01,0x01,0xd1,0x02,0x9c,0x00,0x01,0x02,0xf4,0x05,0xd0,
551
+0x00,0x01,0x02,0xf4,0x02,0x9c,0x00,0x01,0x01,0xd4,0x05,0xd0,
552
+0x00,0x01,0x01,0xd4,0x02,0x9c,0x00,0x01,0x01,0xd4,0x05,0xe0,
553
+0x00,0x01,0x01,0xd4,0x02,0xac,0x00,0x01,0x01,0xd4,0x05,0xd0,
554
+0x00,0x01,0x01,0xd4,0x02,0x9c,0x00,0x01,0x01,0xd7,0x05,0xd0,
555
+0x00,0x01,0x01,0xd7,0x02,0x9c,0x00,0x01,0x01,0xb6,0x05,0xd0,
556
+0x00,0x01,0x01,0xb6,0x02,0x9c,0x00,0x01,0x02,0x1b,0x05,0xd0,
557
+0x00,0x01,0x02,0x1b,0x02,0x9c,0x00,0x01,0x02,0x32,0x05,0xd0,
558
+0x00,0x01,0x02,0x32,0x02,0x9c,0x00,0x01,0x00,0xff,0x05,0xd0,
559
+0x00,0x01,0x00,0xff,0x02,0x9c,0x00,0x01,0x01,0x12,0x05,0xd0,
560
+0x00,0x01,0x00,0x75,0x01,0xab,0x00,0x01,0x02,0x11,0x05,0xd0,
561
+0x00,0x01,0x02,0x11,0x02,0x9c,0x00,0x01,0x00,0xff,0x05,0xd0,
562
+0x00,0x01,0x01,0xde,0x02,0x9c,0x00,0x01,0x02,0x94,0x05,0xd0,
563
+0x00,0x01,0x02,0x94,0x02,0x9c,0x00,0x01,0x02,0x24,0x05,0xd0,
564
+0x00,0x01,0x02,0x24,0x02,0x9c,0x00,0x01,0x02,0x4b,0x05,0xd0,
565
+0x00,0x01,0x02,0x4b,0x02,0x9c,0x00,0x01,0x02,0x11,0x05,0xd0,
566
+0x00,0x01,0x02,0x11,0x02,0x9c,0x00,0x01,0x01,0xd4,0x05,0xd0,
567
+0x00,0x01,0x00,0xff,0x02,0x9c,0x00,0x01,0x01,0xcc,0x05,0xd0,
568
+0x00,0x01,0x01,0xcc,0x02,0x9c,0x00,0x01,0x01,0xaa,0x05,0xd0,
569
+0x00,0x01,0x01,0xaa,0x02,0x9c,0x00,0x01,0x02,0x38,0x05,0xd0,
570
+0x00,0x01,0x02,0x38,0x02,0x9c,0x00,0x01,0x02,0x98,0x05,0xd0,
571
+0x00,0x01,0x02,0x98,0x02,0x9c,0x00,0x01,0x01,0xa2,0x05,0x00,
572
+0x00,0x01,0x01,0xa2,0x02,0x9c,0x00,0x01,0x01,0xdf,0x05,0x10,
573
+0x00,0x01,0x01,0xdf,0x02,0xac,0x00,0x01,0x03,0xe4,0x04,0x49,
574
+0x00,0x01,0x03,0xe4,0x00,0x05,0x00,0x01,0x01,0x56,0x04,0x44,
575
+0x00,0x01,0x01,0x56,0x00,0x00,0x00,0x01,0x01,0x48,0x04,0x44,
576
+0x00,0x01,0x01,0x7a,0x00,0x00,0x00,0x01,0x02,0xc5,0x04,0x44,
577
+0x00,0x01,0x01,0x48,0xfe,0x52,0x00,0x01,0x02,0x6c,0x04,0x44,
578
+0x00,0x01,0x02,0x6c,0x00,0x00,0x00,0x01,0x02,0x7b,0x04,0x44,
579
+0x00,0x01,0x02,0x7b,0x00,0x00,0x00,0x01,0x01,0x4b,0x05,0x00,
580
+0x00,0x01,0x01,0x4b,0x01,0xab,0x00,0x01,0x01,0x87,0x05,0x10,
581
+0x00,0x01,0x01,0x87,0x02,0xac,0x00,0x01,0x01,0x96,0x00,0x00,
582
+0x00,0x01,0x01,0x48,0x00,0x00,0x00,0x01,0x02,0x35,0x06,0x00,
583
+0x00,0x01,0x01,0x56,0x00,0x00,0x00,0x01,0x02,0x35,0x06,0x00,
584
+0x00,0x01,0x01,0x56,0x00,0x00,0x00,0x01,0x02,0xb8,0x05,0xb9,
585
+0x00,0x01,0x04,0x1a,0x00,0x00,0x00,0x01,0x02,0x52,0x06,0x00,
586
+0x00,0x01,0x02,0x52,0x00,0x00,0x00,0x01,0x00,0xce,0x05,0xf8,
587
+0x00,0x01,0x00,0xce,0x02,0x9c,0x00,0x01,0x02,0xe7,0x05,0xb9,
588
+0x00,0x01,0x01,0x96,0x00,0x00,0x00,0x01,0x03,0x79,0x05,0xb9,
589
+0x00,0x01,0x03,0x79,0x00,0x00,0x00,0x01,0x03,0xca,0x05,0xb9,
590
+0x00,0x01,0x03,0xca,0x00,0x00,0x00,0x01,0x01,0xdb,0x06,0x01,
591
+0x00,0x01,0x02,0x09,0x00,0x00,0x00,0x01,0x01,0xdc,0x06,0x01,
592
+0x00,0x01,0x02,0x0a,0x00,0x00,0x00,0x01,0x03,0x97,0x05,0xb9,
593
+0x00,0x01,0x03,0x97,0x00,0x00,0x00,0x01,0x03,0x61,0x05,0xb9,
594
+0x00,0x01,0x01,0xdf,0x00,0x00,0x00,0x01,0x03,0x7d,0x05,0xb9,
595
+0x00,0x01,0x03,0x7d,0xfe,0x8f,0x00,0x01,0x03,0x61,0x05,0xb9,
596
+0x00,0x01,0x03,0x61,0x00,0x00,0x00,0x01,0x02,0xec,0x05,0xb9,
597
+0x00,0x01,0x02,0xec,0x00,0x00,0x00,0x01,0x03,0xf9,0x05,0xb9,
598
+0x00,0x01,0x02,0x97,0x00,0x00,0x00,0x01,0x03,0xec,0x05,0xb9,
599
+0x00,0x01,0x02,0xcf,0x00,0x00,0x00,0x01,0x04,0x5b,0x05,0xb9,
600
+0x00,0x01,0x02,0x14,0x00,0x00,0x00,0x01,0x02,0xf7,0x04,0x44,
601
+0x00,0x01,0x02,0x23,0x00,0x00,0x00,0x01,0x02,0x19,0x06,0x31,
602
+0x00,0x01,0x00,0xe5,0x00,0x00,0x00,0x01,0x02,0x3c,0x06,0x31,
603
+0x00,0x01,0x00,0x1c,0xfe,0x52,0x00,0x01,0x02,0xdf,0x04,0x13,
604
+0x00,0x01,0x02,0x32,0x00,0x00,0x00,0x01,0x01,0x96,0x05,0xb9,
605
+0x00,0x01,0x02,0xf8,0x00,0x00,0x00,0x01,0x01,0x48,0x06,0x00,
606
+0x00,0x01,0x01,0x48,0x00,0x00,0x00,0x01,0x02,0xe7,0x05,0xb9,
607
+0x00,0x01,0x01,0x96,0x00,0x00,0x00,0x01,0x02,0xdb,0x05,0xb9,
608
+0x00,0x01,0x02,0xdb,0xfe,0x52,0x00,0x01,0x03,0x7d,0x05,0xb9,
609
+0x00,0x01,0x03,0x7d,0x00,0x00,0x00,0x01,0x01,0x48,0x06,0x01,
610
+0x00,0x01,0x02,0xa1,0x00,0x00,0x00,0x01,0x03,0x49,0x05,0xb9,
611
+0x00,0x01,0x03,0x49,0x00,0x00,0x00,0x01,0x01,0x48,0x06,0x00,
612
+0x00,0x01,0x02,0x92,0x00,0x00,0x00,0x01,0x02,0xc9,0x05,0xb9,
613
+0x00,0x01,0x02,0xc9,0x00,0x00,0x00,0x01,0x02,0x11,0x04,0x44,
614
+0x00,0x01,0x02,0x11,0x00,0x00,0x00,0x01,0x04,0x18,0x05,0xb9,
615
+0x00,0x01,0x04,0x18,0xfe,0x52,0x00,0x01,0x02,0xe3,0x05,0xb9,
616
+0x00,0x01,0x02,0xe3,0x00,0x00,0x00,0x01,0x02,0x42,0x04,0x44,
617
+0x00,0x01,0x02,0x42,0x00,0x00,0x00,0x01,0x04,0x1e,0x05,0xb9,
618
+0x00,0x01,0x04,0x1e,0x00,0x00,0x00,0x01,0x03,0x6f,0x04,0x44,
619
+0x00,0x01,0x03,0x6f,0x00,0x00,0x00,0x01,0x03,0x7d,0x05,0xb9,
620
+0x00,0x01,0x03,0x7d,0x00,0x00,0x00,0x01,0x01,0xf5,0x00,0x00,
621
+0x00,0x01,0x01,0xf5,0x05,0xf0,0x00,0x01,0x02,0x68,0x04,0x44,
622
+0x00,0x01,0x02,0x68,0x00,0x00,0x00,0x01,0x02,0x47,0x04,0x44,
623
+0x00,0x01,0x02,0x47,0x00,0x00,0x00,0x01,0x01,0xd2,0x05,0xd0,
624
+0x00,0x01,0x01,0xd2,0x02,0x9c,0x00,0x01,0x02,0xbe,0x05,0xb9,
625
+0x00,0x01,0x02,0xbe,0xfe,0x56,0x00,0x01,0x02,0xc9,0x05,0xb9,
626
+0x00,0x01,0x02,0xc9,0x00,0x00,0x00,0x01,0x02,0xbe,0x05,0xb9,
627
+0x00,0x01,0x02,0x0e,0x04,0x44,0x00,0x01,0x01,0x93,0x05,0xc0,
628
+0x00,0x01,0x01,0x59,0x04,0x44,0x00,0x01,0x04,0xe7,0x05,0xb4,
629
+0x00,0x01,0x03,0xdc,0x04,0x44,0x00,0x01,0x05,0xa1,0x05,0xc0,
630
+0x00,0x01,0x03,0xdc,0x04,0x44,0x00,0x01,0x04,0x59,0x05,0xc0,
631
+0x00,0x01,0x03,0x1b,0x04,0x44,0x00,0x01,0x03,0x7d,0x05,0xb9,
632
+0x00,0x01,0x03,0x7d,0xfe,0x52,0x00,0x01,0x01,0x48,0x06,0x01,
633
+0x00,0x01,0x02,0xa1,0xfe,0x52,0x00,0x01,0x02,0xaf,0x05,0xb9,
634
+0x00,0x01,0x04,0x4b,0xfe,0x52,0x00,0x01,0x02,0xfb,0x06,0x00,
635
+0x00,0x01,0x03,0x96,0xfe,0x52,0x00,0x01,0x02,0x63,0x05,0xb9,
636
+0x00,0x01,0x02,0x63,0x00,0x00,0x00,0x01,0x02,0x3b,0x05,0xb9,
637
+0x00,0x01,0x02,0x3b,0x00,0x00,0x00,0x01,0x03,0x0f,0x05,0xb9,
638
+0x00,0x01,0x02,0x15,0xff,0xdf,0x00,0x01,0x03,0x04,0x04,0x44,
639
+0x00,0x01,0x02,0x24,0xfe,0x52,0x00,0x01,0x03,0x0f,0x05,0xb9,
640
+0x00,0x01,0x02,0x15,0xff,0xdf,0x00,0x01,0x03,0x04,0x04,0x44,
641
+0x00,0x01,0x02,0x24,0xfe,0x52,0x00,0x01,0x02,0x3c,0x04,0x13,
642
+0x00,0x01,0x02,0x3c,0x00,0x00,0x00,0x01,0x02,0x0e,0x04,0x44,
643
+0x00,0x01,0x02,0x0e,0x00,0x00,0x00,0x01,0x04,0xc3,0x05,0xb9,
644
+0x00,0x01,0x04,0xc3,0x00,0x00,0x00,0x01,0x03,0x97,0x04,0x44,
645
+0x00,0x01,0x03,0x97,0x00,0x00,0x00,0x01,0x04,0xa5,0x05,0xb9,
646
+0x00,0x01,0x04,0xa5,0x00,0x00,0x00,0x01,0x03,0x9e,0x04,0x49,
647
+0x00,0x01,0x03,0x9e,0x00,0x05,0x00,0x01,0x04,0xb1,0x05,0xb9,
648
+0x00,0x01,0x04,0xb1,0x00,0x00,0x00,0x01,0x03,0x8a,0x04,0x49,
649
+0x00,0x01,0x03,0x9e,0x00,0x05,0x00,0x01,0x04,0x13,0x05,0xb9,
650
+0x00,0x01,0x03,0xab,0x00,0x00,0x00,0x01,0x03,0x8a,0x04,0x49,
651
+0x00,0x01,0x02,0xd6,0x00,0x05,0x00,0x01,0x04,0x13,0x05,0xb9,
652
+0x00,0x01,0x03,0xab,0x00,0x00,0x00,0x01,0x03,0x8a,0x04,0x49,
653
+0x00,0x01,0x02,0xd6,0x00,0x05,0x00,0x01,0x04,0x13,0x05,0xb9,
654
+0x00,0x01,0x03,0xe7,0xfe,0x52,0x00,0x01,0x03,0x8a,0x04,0x49,
655
+0x00,0x01,0x03,0x54,0xfe,0x52,0x00,0x01,0x02,0xda,0x05,0xb9,
656
+0x00,0x01,0x02,0xda,0x00,0x00,0x00,0x01,0x02,0x1b,0x04,0x44,
657
+0x00,0x01,0x02,0x1b,0x00,0x0a,0x00,0x01,0x03,0x49,0x05,0xb9,
658
+0x00,0x01,0x03,0x49,0x00,0x00,0x00,0x01,0x01,0x48,0x06,0x00,
659
+0x00,0x01,0x02,0x92,0x00,0x00,0x00,0x01,0x01,0x96,0x05,0xb9,
660
+0x00,0x01,0x03,0x95,0x00,0x00,0x00,0x01,0x01,0xbd,0x05,0xf0,
661
+0x00,0x01,0x01,0xbd,0x00,0x00,0x00,0x01,0x03,0xba,0x05,0xb9,
662
+0x00,0x01,0x03,0xba,0x00,0x00,0x00,0x01,0x02,0xd8,0x04,0x44,
663
+0x00,0x01,0x02,0xd8,0x00,0x00,0x00,0x01,0x05,0xab,0x05,0xb9,
664
+0x00,0x01,0x05,0xab,0x00,0x00,0x00,0x01,0x03,0xfe,0x04,0x44,
665
+0x00,0x01,0x03,0xfe,0x00,0x00,0x00,0x01,0x02,0xbf,0x05,0xb9,
666
+0x00,0x01,0x01,0x96,0xfe,0x52,0x00,0x01,0x02,0x5d,0x04,0x44,
667
+0x00,0x01,0x01,0x48,0xfe,0x52,0x00,0x01,0x02,0x8b,0x05,0xb9,
668
+0x00,0x01,0x01,0x87,0xfe,0x52,0x00,0x01,0x02,0x28,0x04,0x44,
669
+0x00,0x01,0x01,0x48,0xfe,0x52,0x00,0x01,0x02,0x58,0x05,0xb9,
670
+0x00,0x01,0x03,0xba,0x00,0x00,0x00,0x01,0x01,0x48,0x04,0x44,
671
+0x00,0x01,0x01,0x48,0xfe,0x52,0x00,0x01,0x03,0x3f,0x05,0xb9,
672
+0x00,0x01,0x03,0x85,0xfe,0x52,0x00,0x01,0x02,0x52,0x04,0x44,
673
+0x00,0x01,0x02,0xd3,0xfe,0x52,0x00,0x01,0x02,0x8b,0x05,0xb9,
674
+0x00,0x01,0x01,0x87,0xfe,0x52,0x00,0x01,0x02,0x28,0x04,0x44,
675
+0x00,0x01,0x01,0x48,0xfe,0x52,0x00,0x01,0x03,0x3d,0x05,0xb9,
676
+0x00,0x01,0x03,0x3d,0x00,0x00,0x00,0x01,0x02,0x68,0x04,0x44,
677
+0x00,0x01,0x02,0x68,0x00,0x0a,0x00,0x01,0x03,0x67,0x05,0xb9,
678
+0x00,0x01,0x03,0x67,0x00,0x00,0x00,0x01,0x02,0x52,0x04,0x44,
679
+0x00,0x01,0x02,0xa1,0x00,0x00,0x00,0x01,0x03,0x7d,0x05,0xb9,
680
+0x00,0x01,0x03,0x7d,0x00,0x00,0x00,0x01,0x02,0x33,0x05,0xd0,
681
+0x00,0x01,0x02,0x33,0x02,0x9c,0x00,0x01,0x02,0x86,0x05,0x00,
682
+0x00,0x01,0x02,0x86,0x02,0x9c,0x00,0x01,0x03,0xd4,0x04,0x44,
683
+0x00,0x01,0x03,0xd4,0x00,0x00,0x00,0x01,0x02,0x97,0x05,0xb9,
684
+0x00,0x01,0x03,0xf9,0x00,0x00,0x00,0x01,0x02,0x7b,0x05,0xb9,
685
+0x00,0x01,0x03,0xcc,0x00,0x00,0x00,0x01,0x04,0x18,0x05,0xb9,
686
+0x00,0x01,0x04,0x18,0x00,0x00,0x00,0x01,0x01,0x96,0x07,0x51,
687
+0x00,0x01,0x01,0x96,0x00,0x00,0x00,0x01,0x05,0x80,0x05,0xb9,
688
+0x00,0x01,0x04,0x09,0x00,0x00,0x00,0x01,0x03,0x6e,0x05,0xb9,
689
+0x00,0x01,0x02,0x51,0x00,0x00,0x00,0x01,0x03,0x72,0x05,0xb9,
690
+0x00,0x01,0x02,0x55,0x00,0x00,0x00,0x01,0x03,0xc8,0x05,0xb9,
691
+0x00,0x01,0x02,0xac,0x00,0x00,0x00,0x01,0x03,0x78,0x05,0xb9,
692
+0x00,0x01,0x02,0x55,0x00,0x00,0x00,0x01,0x03,0x77,0x05,0xb9,
693
+0x00,0x01,0x02,0x5a,0x00,0x00,0x00,0x01,0x03,0x81,0x05,0xb9,
694
+0x00,0x01,0x01,0x02,0x00,0x00,0x00,0x01,0x03,0xe9,0x05,0xb9,
695
+0x00,0x01,0x02,0xc7,0x00,0x00,0x00,0x01,0x04,0x08,0x05,0xb9,
696
+0x00,0x01,0x02,0xeb,0x00,0x00,0x00,0x01,0x02,0x27,0x05,0xb9,
697
+0x00,0x01,0x01,0x04,0x00,0x00,0x00,0x01,0x02,0x68,0x05,0xb9,
698
+0x00,0x01,0x00,0x00,0xfe,0x52,0x00,0x01,0x03,0xd4,0x05,0xb9,
699
+0x00,0x01,0x02,0xb7,0x00,0x00,0x00,0x01,0x02,0x21,0x05,0xb9,
700
+0x00,0x01,0x02,0x66,0x00,0x00,0x00,0x01,0x04,0xa3,0x05,0xb9,
701
+0x00,0x01,0x03,0x86,0x00,0x00,0x00,0x01,0x03,0xef,0x05,0xb8,
702
+0x00,0x01,0x02,0xd8,0x00,0x00,0x00,0x01,0x03,0xd3,0x05,0xb9,
703
+0x00,0x01,0x02,0xb7,0x00,0x00,0x00,0x01,0x03,0x72,0x05,0xb9,
704
+0x00,0x01,0x01,0x04,0x00,0x00,0x00,0x01,0x03,0xf0,0x05,0xb9,
705
+0x00,0x01,0x02,0x94,0xfe,0xb6,0x00,0x01,0x03,0x6c,0x05,0xb9,
706
+0x00,0x01,0x02,0x49,0x00,0x00,0x00,0x01,0x03,0x4f,0x05,0xb9,
707
+0x00,0x01,0x02,0x2d,0x00,0x00,0x00,0x01,0x03,0x36,0x05,0xb9,
708
+0x00,0x01,0x02,0x13,0x00,0x00,0x00,0x01,0x04,0x18,0x05,0xb9,
709
+0x00,0x01,0x02,0xf8,0x00,0x00,0x00,0x01,0x03,0x6e,0x05,0xb9,
710
+0x00,0x01,0x02,0x51,0x00,0x00,0x00,0x01,0x04,0x99,0x05,0xb9,
711
+0x00,0x01,0x03,0x8c,0x00,0x00,0x00,0x01,0x03,0x67,0x05,0xb9,
712
+0x00,0x01,0x02,0x47,0x00,0x00,0x00,0x01,0x03,0x1a,0x05,0xb9,
713
+0x00,0x01,0x02,0x0f,0x00,0x00,0x00,0x01,0x03,0x5a,0x05,0xb9,
714
+0x00,0x01,0x02,0x37,0x00,0x00,0x00,0x01,0x02,0xa5,0x04,0x44,
715
+0x00,0x01,0x01,0xd2,0x00,0x00,0x00,0x01,0x01,0xde,0x06,0x00,
716
+0x00,0x01,0x02,0x46,0x00,0x0a,0x00,0x01,0x02,0xd4,0x04,0x44,
717
+0x00,0x01,0x02,0x02,0x00,0x0a,0x00,0x01,0x04,0x6d,0x06,0x00,
718
+0x00,0x01,0x01,0xa4,0x00,0x00,0x00,0x01,0x02,0xca,0x04,0x44,
719
+0x00,0x01,0x01,0xf6,0x00,0x00,0x00,0x01,0x02,0xed,0x06,0x00,
720
+0x00,0x01,0x00,0x28,0xfe,0x52,0x00,0x01,0x02,0xc8,0x04,0x44,
721
+0x00,0x01,0x01,0xca,0xfe,0x52,0x00,0x01,0x01,0xdd,0x05,0xf4,
722
+0x00,0x01,0x00,0xb5,0x00,0x00,0x00,0x01,0x02,0x19,0x05,0xf4,
723
+0x00,0x01,0xff,0xbd,0xfe,0x52,0x00,0x01,0x01,0xdb,0x06,0x00,
724
+0x00,0x01,0x01,0xfa,0x00,0x00,0x00,0x01,0x01,0xdb,0x06,0x00,
725
+0x00,0x01,0x00,0xb0,0x00,0x00,0x00,0x01,0x04,0x43,0x04,0x44,
726
+0x00,0x01,0x03,0x6e,0x00,0x00,0x00,0x01,0x02,0xca,0x04,0x44,
727
+0x00,0x01,0x02,0x36,0x00,0x00,0x00,0x01,0x02,0xd4,0x04,0x44,
728
+0x00,0x01,0x02,0x00,0x00,0x00,0x00,0x01,0x03,0x58,0x04,0x44,
729
+0x00,0x01,0x00,0xb3,0xfe,0x52,0x00,0x01,0x02,0xcc,0x04,0x44,
730
+0x00,0x01,0x03,0x42,0xfe,0x52,0x00,0x01,0x02,0xa0,0x04,0x44,
731
+0x00,0x01,0x00,0xdd,0x00,0x00,0x00,0x01,0x02,0x7a,0x04,0x44,
732
+0x00,0x01,0x01,0xa6,0x00,0x00,0x00,0x01,0x01,0xdf,0x06,0x00,
733
+0x00,0x01,0x01,0x7d,0x00,0x00,0x00,0x01,0x02,0xb4,0x04,0x44,
734
+0x00,0x01,0x01,0xed,0x00,0x00,0x00,0x01,0x02,0xae,0x04,0x44,
735
+0x00,0x01,0x01,0xda,0x00,0x00,0x00,0x01,0x03,0xdb,0x04,0x44,
736
+0x00,0x01,0x03,0x07,0x00,0x00,0x00,0x01,0x02,0xae,0x04,0x44,
737
+0x00,0x01,0x01,0xda,0x00,0x00,0x00,0x01,0x02,0x9f,0x04,0x44,
738
+0x00,0x01,0x01,0xad,0xfe,0x52,0x00,0x01,0x02,0x7d,0x04,0x44,
739
+0x00,0x01,0x01,0xa9,0x00,0x00,0x00,0x01,0x03,0x04,0x05,0xb9,
740
+0x00,0x01,0x03,0x04,0x00,0x00,0x00,0x01,0x03,0x61,0x05,0xb9,
741
+0x00,0x01,0x03,0x61,0x00,0x00,0x00,0x01,0x03,0x61,0x05,0xb9,
742
+0x00,0x01,0x03,0x61,0x00,0x00,0x00,0x01,0x03,0x2f,0x05,0xb9,
743
+0x00,0x01,0x03,0x2f,0x00,0x00,0x00,0x01,0x03,0x25,0x05,0xb9,
744
+0x00,0x01,0x01,0xdf,0x00,0x00,0x00,0x01,0x03,0x8d,0x05,0xb9,
745
+0x00,0x01,0x03,0x8d,0x00,0x00,0x00,0x01,0x01,0xdf,0x05,0xb9,
746
+0x00,0x01,0x01,0xdf,0x00,0x00,0x00,0x01,0x01,0xed,0x05,0xb9,
747
+0x00,0x01,0x01,0x39,0xfe,0x52,0x00,0x01,0x04,0x00,0x05,0xb4,
748
+0x00,0x01,0x04,0x00,0x00,0x00,0x00,0x01,0x01,0xdf,0x05,0xb9,
749
+0x00,0x01,0x03,0x25,0x00,0x00,0x00,0x01,0x04,0x3c,0x05,0xb4,
750
+0x00,0x01,0x04,0x3c,0x00,0x00,0x00,0x01,0x03,0x7d,0x05,0xb9,
751
+0x00,0x01,0x03,0x7d,0x00,0x00,0x00,0x01,0x02,0xd9,0x05,0xb9,
752
+0x00,0x01,0x02,0xd9,0x00,0x00,0x00,0x01,0x03,0x01,0x05,0xb9,
753
+0x00,0x01,0x03,0x01,0x00,0x00,0x00,0x01,0x03,0xb0,0x05,0xb9,
754
+0x00,0x01,0x03,0xb0,0x00,0x00,0x00,0x01,0x03,0x1a,0x05,0xb9,
755
+0x00,0x01,0x03,0x1a,0x00,0x00,0x00,0x01,0x04,0x81,0x05,0xb9,
756
+0x00,0x01,0x04,0x81,0x00,0x05,0x00,0x01,0x03,0x1a,0x05,0xb9,
757
+0x00,0x01,0x03,0x1a,0x00,0x00,0x00,0x01,0x02,0xdb,0x05,0xb9,
758
+0x00,0x01,0x02,0xdb,0x00,0x00,0x00,0x01,0x02,0x58,0x04,0x44,
759
+0x00,0x01,0x02,0x58,0x00,0x00,0x00,0x01,0x01,0x44,0x05,0xb9,
760
+0x00,0x01,0x02,0xa1,0x00,0x00,0x00,0x01,0x02,0x98,0x04,0x44,
761
+0x00,0x01,0x02,0x98,0x00,0x00,0x00,0x01,0x03,0xd3,0x05,0xb9,
762
+0x00,0x01,0x02,0xa9,0x00,0x00,0x00,0x01,0x02,0x8b,0x04,0x44,
763
+0x00,0x01,0x02,0x8b,0x00,0x00,0x00,0x01,0x02,0x43,0x05,0xb9,
764
+0x00,0x01,0x01,0x7d,0x00,0x00,0x00,0x01,0x02,0xa6,0x04,0x44,
765
+0x00,0x01,0x02,0xa6,0xfe,0x52,0x00,0x01,0x01,0x44,0x05,0xb9,
766
+0x00,0x01,0x02,0xf3,0x00,0x00,0x00,0x01,0x01,0x7d,0x06,0x31,
767
+0x00,0x01,0x01,0x7d,0x00,0x00,0x00,0x01,0x01,0x73,0x06,0x31,
768
+0x00,0x01,0x00,0xdb,0xfe,0x52,0x00,0x01,0x01,0x44,0x05,0xb9,
769
+0x00,0x01,0x02,0xf3,0x00,0x00,0x00,0x01,0x01,0x44,0x05,0xb9,
770
+0x00,0x01,0x01,0x7d,0x00,0x00,0x00,0x01,0x04,0x47,0x04,0x44,
771
+0x00,0x01,0x04,0x47,0x00,0x00,0x00,0x01,0x02,0x98,0x04,0x44,
772
+0x00,0x01,0x02,0xf3,0x00,0x00,0x00,0x01,0x02,0xac,0x04,0x44,
773
+0x00,0x01,0x02,0xac,0x00,0x00,0x00,0x01,0x02,0xf2,0x04,0x44,
774
+0x00,0x01,0x01,0x7d,0xfe,0x52,0x00,0x01,0x02,0xa1,0x04,0x44,
775
+0x00,0x01,0x04,0x20,0xfe,0x52,0x00,0x01,0x02,0x98,0x04,0x44,
776
+0x00,0x01,0x01,0x7d,0x00,0x00,0x00,0x01,0x02,0x42,0x04,0x44,
777
+0x00,0x01,0x02,0x42,0x00,0x00,0x00,0x01,0x01,0x7c,0x05,0xb9,
778
+0x00,0x01,0x02,0x2d,0x00,0x00,0x00,0x01,0x02,0xc3,0x04,0x44,
779
+0x00,0x01,0x02,0xc3,0x00,0x00,0x00,0x01,0x02,0x5e,0x04,0x44,
780
+0x00,0x01,0x02,0x5e,0xff,0xfb,0x00,0x01,0x03,0x7d,0x04,0x44,
781
+0x00,0x01,0x03,0x7d,0x00,0x00,0x00,0x01,0x02,0x5e,0x04,0x44,
782
+0x00,0x01,0x02,0x5e,0x00,0x00,0x00,0x01,0x02,0x5e,0x04,0x44,
783
+0x00,0x01,0x02,0x5e,0xfe,0x52,0x00,0x01,0x02,0x46,0x04,0x44,
784
+0x00,0x01,0x02,0x46,0x00,0x00,0x00,0x01,0x01,0xb4,0x04,0x44,
785
+0x00,0x01,0x01,0x72,0x04,0x44,0x00,0x01,0x01,0x48,0x04,0x44,
786
+0x00,0x01,0x01,0x48,0x04,0x44,0x00,0x01,0x01,0x48,0x00,0x00,
787
+0x00,0x01,0x01,0xba,0x04,0x44,0x00,0x01,0x00,0xe8,0xfe,0x52,
788
+0x00,0x01,0x01,0x48,0x04,0x44,0x00,0x01,0x01,0x48,0x04,0x44,
789
+0x00,0x01,0x03,0x67,0x05,0xc3,0x00,0x01,0x02,0x5c,0x04,0x44,
790
+0x00,0x01,0x02,0x5c,0xfe,0x52,0x00,0x01,0x03,0xa3,0x05,0xb9,
791
+0x00,0x01,0x03,0xa3,0x00,0x00,0x00,0x01,0x02,0xbc,0x05,0xb9,
792
+0x00,0x01,0x02,0xbc,0x00,0x00,0x00,0x01,0x02,0x68,0x04,0x44,
793
+0x00,0x01,0x02,0x68,0xff,0x1a,0x00,0x01,0x02,0x42,0x04,0x44,
794
+0x00,0x01,0x02,0x42,0x00,0x00,0x00,0x01,0x02,0x68,0x04,0x44,
795
+0x00,0x01,0x02,0x68,0x00,0x00,0x00,0x01,0x02,0x36,0x04,0x44,
796
+0x00,0x01,0x02,0x36,0x00,0x00,0x00,0x01,0x02,0x2c,0x04,0x44,
797
+0x00,0x01,0x02,0x2c,0x00,0x00,0x00,0x01,0x02,0x87,0x04,0x44,
798
+0x00,0x01,0x02,0x87,0x00,0x00,0x00,0x01,0x02,0x7b,0x04,0x39,
799
+0x00,0x01,0x02,0x7b,0x00,0x00,0x00,0x01,0x02,0xf1,0x05,0xb9,
800
+0x00,0x01,0x02,0xf1,0x00,0x00,0x00,0x01,0x03,0xd7,0x06,0x00,
801
+0x00,0x01,0x02,0x39,0x00,0x00,0x00,0x01,0x03,0xb3,0x05,0xb9,
802
+0x00,0x01,0x03,0xb3,0x00,0x00,0x00,0x01,0x02,0x5c,0x04,0x44,
803
+0x00,0x01,0x02,0x5c,0xfe,0x52,0x00,0x02,0x00,0x7a,0x00,0x24,
804
+0x00,0x3d,0x00,0x00,0x00,0x44,0x00,0x5d,0x00,0x1a,0x00,0x86,
805
+0x00,0x89,0x00,0x34,0x00,0x97,0x00,0x98,0x00,0x38,0x00,0x9a,
806
+0x00,0x9a,0x00,0x3a,0x00,0x9e,0x00,0x9e,0x00,0x3b,0x00,0xa8,
807
+0x00,0xa9,0x00,0x3c,0x00,0xe8,0x00,0xe8,0x00,0x3e,0x00,0xf3,
808
+0x00,0xf3,0x00,0x3f,0x01,0x0d,0x01,0x0d,0x00,0x40,0x01,0x14,
809
+0x01,0x15,0x00,0x41,0x01,0x28,0x01,0x29,0x00,0x43,0x01,0x41,
810
+0x01,0x42,0x00,0x45,0x01,0x48,0x01,0x4a,0x00,0x47,0x01,0x4c,
811
+0x01,0x4c,0x00,0x4a,0x01,0x50,0x01,0x52,0x00,0x4b,0x01,0x55,
812
+0x01,0x56,0x00,0x4e,0x01,0x59,0x01,0x59,0x00,0x50,0x01,0x5f,
813
+0x01,0x61,0x00,0x51,0x01,0x69,0x01,0x6a,0x00,0x54,0x01,0x6e,
814
+0x01,0x6e,0x00,0x56,0x01,0x73,0x01,0x73,0x00,0x57,0x01,0x75,
815
+0x01,0x79,0x00,0x58,0x01,0x7c,0x01,0x7c,0x00,0x5d,0x01,0xa6,
816
+0x01,0xa7,0x00,0x5e,0x01,0xac,0x01,0xac,0x00,0x60,0x01,0xe4,
817
+0x01,0xe5,0x00,0x61,0x01,0xea,0x01,0xeb,0x00,0x63,0x01,0xf6,
818
+0x01,0xf9,0x00,0x65,0x01,0xff,0x01,0xff,0x00,0x69,0x02,0x02,
819
+0x02,0x02,0x00,0x6a,0x02,0x05,0x02,0x14,0x00,0x6b,0x02,0x16,
820
+0x02,0x18,0x00,0x7b,0x02,0x1a,0x02,0x21,0x00,0x7e,0x02,0x24,
821
+0x02,0x25,0x00,0x86,0x02,0x27,0x02,0x27,0x00,0x88,0x02,0x2a,
822
+0x02,0x2a,0x00,0x89,0x02,0x2c,0x02,0x2c,0x00,0x8a,0x02,0x31,
823
+0x02,0x32,0x00,0x8b,0x02,0x36,0x02,0x36,0x00,0x8d,0x02,0x39,
824
+0x02,0x3a,0x00,0x8e,0x02,0x42,0x02,0x44,0x00,0x90,0x02,0x4c,
825
+0x02,0x4c,0x00,0x93,0x02,0x51,0x02,0x51,0x00,0x94,0x02,0x54,
826
+0x02,0x54,0x00,0x95,0x02,0x56,0x02,0x56,0x00,0x96,0x02,0x5a,
827
+0x02,0x5a,0x00,0x97,0x02,0x5c,0x02,0x5d,0x00,0x98,0x02,0x61,
828
+0x02,0x61,0x00,0x9a,0x02,0x9d,0x02,0x9d,0x00,0x9b,0x02,0xf4,
829
+0x02,0xf5,0x00,0x9c,0x02,0xf8,0x02,0xf9,0x00,0x9e,0x03,0x6e,
830
+0x03,0x6e,0x00,0xa0,0x03,0x70,0x03,0x71,0x00,0xa1,0x03,0x7a,
831
+0x03,0x7a,0x00,0xa3,0x03,0x7d,0x03,0x7d,0x00,0xa4,0x03,0x7f,
832
+0x03,0x80,0x00,0xa5,0x03,0x82,0x03,0x82,0x00,0xa7,0x03,0x84,
833
+0x03,0x84,0x00,0xa8,0x03,0x87,0x03,0x88,0x00,0xa9,0x03,0x8a,
834
+0x03,0x8a,0x00,0xab,0x03,0x8d,0x03,0x8d,0x00,0xac,0x03,0x94,
835
+0x03,0x95,0x00,0xad,0x03,0x97,0x03,0x9a,0x00,0xaf,0x03,0x9d,
836
+0x03,0x9d,0x00,0xb3,0x03,0x9f,0x03,0xa0,0x00,0xb4,0x03,0xa2,
837
+0x03,0xa2,0x00,0xb6,0x03,0xa4,0x03,0xa4,0x00,0xb7,0x03,0xa8,
838
+0x03,0xa8,0x00,0xb8,0x03,0xaa,0x03,0xab,0x00,0xb9,0x03,0xad,
839
+0x03,0xad,0x00,0xbb,0x03,0xb4,0x03,0xb5,0x00,0xbc,0x03,0xb7,
840
+0x03,0xb9,0x00,0xbe,0x03,0xbe,0x03,0xbe,0x00,0xc1,0x03,0xc1,
841
+0x03,0xc1,0x00,0xc2,0x03,0xca,0x03,0xd3,0x00,0xc3,0x03,0xd6,
842
+0x03,0xd7,0x00,0xcd,0x03,0xda,0x03,0xdb,0x00,0xcf,0x03,0xe2,
843
+0x03,0xe3,0x00,0xd1,0x03,0xe6,0x03,0xe6,0x00,0xd3,0x03,0xe8,
844
+0x03,0xea,0x00,0xd4,0x03,0xec,0x03,0xec,0x00,0xd7,0x03,0xf4,
845
+0x03,0xf4,0x00,0xd8,0x04,0x07,0x04,0x07,0x00,0xd9,0x04,0x36,
846
+0x04,0x36,0x00,0xda,0x04,0xea,0x04,0xeb,0x00,0xdb,0x04,0xed,
847
+0x04,0xf1,0x00,0xdd,0x04,0xf4,0x04,0xfd,0x00,0xe2,0x04,0xff,
848
+0x04,0xff,0x00,0xec,0x05,0x02,0x05,0x26,0x00,0xed,0x05,0x28,
849
+0x05,0x2c,0x01,0x12,0x05,0x43,0x05,0x43,0x01,0x17,0x05,0x46,
850
+0x05,0x46,0x01,0x18,0x05,0x55,0x05,0x55,0x01,0x19,0x05,0x58,
851
+0x05,0x5c,0x01,0x1a,0x05,0x76,0x05,0x76,0x01,0x1f,0x05,0x7b,
852
+0x05,0x7b,0x01,0x20,0x05,0xb7,0x05,0xb8,0x01,0x21,0x06,0x25,
853
+0x06,0x26,0x01,0x23,0x06,0x83,0x06,0x84,0x01,0x25,0x07,0xc6,
854
+0x07,0xc6,0x01,0x27,0x07,0xf2,0x07,0xf2,0x01,0x28,0x07,0xf9,
855
+0x07,0xf9,0x01,0x29,0x07,0xfc,0x07,0xff,0x01,0x2a,0x08,0x01,
856
+0x08,0x03,0x01,0x2e,0x08,0x05,0x08,0x05,0x01,0x31,0x08,0x0a,
857
+0x08,0x0a,0x01,0x32,0x08,0x14,0x08,0x18,0x01,0x33,0x08,0x1a,
858
+0x08,0x1a,0x01,0x38,0x0c,0x22,0x0c,0x2b,0x01,0x39,0x0c,0x2d,
859
+0x0c,0x2e,0x01,0x43,0x0c,0x30,0x0c,0x33,0x01,0x45,0x0c,0x36,
860
+0x0c,0x38,0x01,0x49,0x0c,0x3a,0x0c,0x3c,0x01,0x4c,0x0c,0x6a,
861
+0x0c,0x73,0x01,0x4f,0x0c,0x88,0x0c,0xb5,0x01,0x59,0x0c,0xb9,
862
+0x0c,0xc3,0x01,0x87,0x0d,0x0b,0x0d,0x6c,0x01,0x92,0x0d,0x83,
863
+0x0d,0x84,0x01,0xf4,0x0d,0x86,0x0d,0x89,0x01,0xf6,0x0d,0xa0,
864
+0x0d,0xa9,0x01,0xfa,0x0d,0xaf,0x0d,0xb2,0x02,0x04,0x00,0x02,
865
+0x00,0x09,0x02,0xad,0x02,0xc1,0x00,0x00,0x02,0xc3,0x02,0xc6,
866
+0x00,0x15,0x02,0xc9,0x02,0xcd,0x00,0x19,0x02,0xd0,0x02,0xd3,
867
+0x00,0x1e,0x02,0xd6,0x02,0xe0,0x00,0x22,0x02,0xe6,0x02,0xed,
868
+0x00,0x2d,0x05,0x83,0x05,0x88,0x00,0x35,0x0c,0xed,0x0c,0xed,
869
+0x00,0x3b,0x0d,0x78,0x0d,0x82,0x00,0x3c,0x00,0x47,0x00,0x00,
870
+0x01,0x1e,0x00,0x00,0x01,0x24,0x00,0x00,0x01,0x2a,0x00,0x00,
871
+0x01,0x30,0x00,0x00,0x01,0x36,0x00,0x00,0x01,0x3c,0x00,0x00,
872
+0x01,0x42,0x00,0x00,0x01,0x48,0x00,0x00,0x01,0x4e,0x00,0x00,
873
+0x01,0x54,0x00,0x00,0x01,0x5a,0x00,0x00,0x01,0x60,0x00,0x00,
874
+0x01,0x66,0x00,0x00,0x01,0x6c,0x00,0x00,0x01,0x72,0x00,0x00,
875
+0x01,0x78,0x00,0x00,0x01,0x7e,0x00,0x00,0x01,0x84,0x00,0x00,
876
+0x01,0x8a,0x00,0x00,0x01,0x90,0x00,0x00,0x01,0x96,0x00,0x01,
877
+0x01,0x9c,0x00,0x01,0x01,0xa2,0x00,0x01,0x01,0xa8,0x00,0x01,
878
+0x01,0xae,0x00,0x01,0x01,0xb4,0x00,0x01,0x01,0xba,0x00,0x01,
879
+0x01,0xc0,0x00,0x01,0x01,0xc6,0x00,0x01,0x01,0xcc,0x00,0x01,
880
+0x01,0xd2,0x00,0x01,0x01,0xd8,0x00,0x01,0x01,0xde,0x00,0x01,
881
+0x01,0xe4,0x00,0x01,0x01,0xea,0x00,0x01,0x01,0xf0,0x00,0x01,
882
+0x01,0xf6,0x00,0x01,0x01,0xfc,0x00,0x01,0x02,0x02,0x00,0x01,
883
+0x02,0x08,0x00,0x01,0x02,0x0e,0x00,0x01,0x02,0x14,0x00,0x01,
884
+0x02,0x1a,0x00,0x01,0x02,0x20,0x00,0x01,0x02,0x26,0x00,0x01,
885
+0x02,0x2c,0x00,0x01,0x02,0x32,0x00,0x01,0x02,0x38,0x00,0x01,
886
+0x02,0x3e,0x00,0x00,0x02,0x44,0x00,0x00,0x02,0x4a,0x00,0x00,
887
+0x02,0x50,0x00,0x00,0x02,0x56,0x00,0x00,0x02,0x5c,0x00,0x00,
888
+0x02,0x62,0x00,0x00,0x02,0x68,0x00,0x00,0x02,0x6e,0x00,0x00,
889
+0x02,0x74,0x00,0x00,0x02,0x7a,0x00,0x00,0x02,0x80,0x00,0x00,
890
+0x02,0x86,0x00,0x00,0x02,0x8c,0x00,0x00,0x02,0x92,0x00,0x00,
891
+0x02,0x98,0x00,0x00,0x02,0x9e,0x00,0x00,0x02,0xa4,0x00,0x00,
892
+0x02,0xaa,0x00,0x00,0x02,0xb0,0x00,0x00,0x02,0xb6,0x00,0x00,
893
+0x02,0xbc,0x00,0x00,0x02,0xc2,0x00,0x01,0xfe,0x00,0x04,0x44,
894
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x44,
895
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x44,
896
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x44,
897
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x44,
898
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x44,
899
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x44,
900
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x44,
901
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x44,
902
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x03,0x7c,
903
+0x00,0x01,0xfe,0x00,0x04,0x72,0x00,0x01,0xfe,0x00,0x04,0x72,
904
+0x00,0x01,0xfe,0x00,0x00,0x00,0x00,0x01,0xfe,0x00,0x00,0x00,
905
+0x00,0x01,0xfe,0x00,0x00,0x00,0x00,0x01,0xfe,0x00,0x00,0x00,
906
+0x00,0x01,0xfe,0x00,0x00,0x00,0x00,0x01,0xfe,0x00,0x00,0x00,
907
+0x00,0x01,0xfe,0x00,0x00,0x00,0x00,0x01,0xfe,0x00,0x00,0x00,
908
+0x00,0x01,0xfe,0x00,0x00,0x00,0x00,0x01,0xfe,0x00,0x00,0x00,
909
+0x00,0x01,0xfe,0x00,0x00,0x00,0x00,0x01,0xfe,0x00,0xff,0xff,
910
+0x00,0x01,0xfe,0x00,0x00,0x00,0x00,0x01,0xfe,0x00,0x00,0x00,
911
+0x00,0x01,0xfe,0x00,0x00,0x00,0x00,0x01,0xfe,0x00,0x00,0x00,
912
+0x00,0x01,0xfe,0x00,0x00,0x00,0x00,0x01,0xfe,0x00,0x00,0x00,
913
+0x00,0x01,0xfe,0x00,0x00,0x00,0x00,0x01,0xfe,0x00,0x00,0x00,
914
+0x00,0x01,0xfe,0x00,0x00,0x00,0x00,0x01,0xfe,0x00,0x00,0x00,
915
+0x00,0x01,0xfe,0x00,0x00,0x00,0x00,0x01,0xfe,0x00,0x00,0x00,
916
+0x00,0x01,0xfe,0x00,0x00,0x00,0x00,0x01,0xfe,0x00,0x00,0x00,
917
+0x00,0x01,0xfe,0x00,0x00,0x00,0x00,0x01,0xfe,0x00,0x00,0x00,
918
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x72,
919
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x72,
920
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x44,
921
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x44,
922
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x44,
923
+0x00,0x01,0x02,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x44,
924
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x44,
925
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x44,
926
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x44,
927
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x44,
928
+0x00,0x01,0xfe,0x00,0x04,0x44,0x00,0x01,0xfe,0x00,0x04,0x44,
929
+0x00,0x02,0x19,0x3e,0x00,0x04,0x00,0x00,0x14,0x3e,0x16,0x3a,
930
+0x00,0x29,0x00,0x3f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
931
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
932
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
933
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
934
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
935
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
936
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
937
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
938
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
939
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
940
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
941
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
942
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xb7,0x00,0x00,
943
+0xff,0x6b,0xff,0x90,0xff,0xb7,0xff,0x1f,0x00,0x00,0x00,0x00,
944
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
945
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
946
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
947
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
948
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
949
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
950
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
951
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
952
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
953
+0x00,0x00,0xff,0x90,0x00,0x00,0xff,0x9a,0xff,0xad,0x00,0x00,
954
+0xff,0xad,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xdc,
955
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
956
+0x00,0x00,0x00,0x00,0xff,0xdc,0x00,0x00,0xff,0xad,0xff,0xa4,
957
+0x00,0x00,0xff,0xad,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
958
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
959
+0x00,0x00,0x00,0x00,0xff,0xad,0x00,0x00,0x00,0x00,0x00,0x00,
960
+0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x90,0xff,0xdc,0xff,0xad,
961
+0xff,0xa4,0xff,0xad,0xff,0xa4,0xfe,0xd3,0x00,0x00,0x00,0x00,
962
+0x00,0x00,0x00,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x26,
963
+0x00,0x26,0x00,0x00,0x00,0x26,0x00,0x00,0x00,0x00,0x00,0x00,
964
+0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xdc,0x00,0x00,0x00,0x00,
965
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
966
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
967
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
968
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
969
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
970
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
971
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xdc,0x00,0x00,
972
+0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xb7,0x00,0x00,0xff,0xb7,
973
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
974
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
975
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
976
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
977
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
978
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
979
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
980
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
981
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
982
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
983
+0xff,0xb7,0x00,0x26,0xff,0xb7,0x00,0x00,0x00,0x00,0x00,0x00,
984
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
985
+0xff,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
986
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
987
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
988
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
989
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
990
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
991
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
992
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
993
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x26,0x00,0x00,
994
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
995
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
996
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
997
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
998
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
999
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1000
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1001
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1002
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1003
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1004
+0xfe,0xc1,0xff,0xa4,0xfe,0xc1,0xff,0xb7,0xff,0x4e,0x00,0x00,
1005
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1006
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x75,0x00,0x00,
1007
+0x00,0x00,0xff,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1008
+0x00,0x00,0xff,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1009
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1010
+0x00,0x00,0xff,0x75,0xff,0x75,0xff,0x75,0x00,0x00,0xff,0x90,
1011
+0xff,0x90,0xff,0x90,0xff,0x90,0xff,0x90,0x00,0x00,0x00,0x00,
1012
+0xff,0x4e,0xff,0x75,0xff,0x90,0xff,0x90,0x00,0x00,0x00,0x00,
1013
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1014
+0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xb7,0x00,0x26,0xff,0xb7,
1015
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1016
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1017
+0xff,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1018
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1019
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1020
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1021
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1022
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1023
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1024
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1025
+0xff,0x88,0x00,0x00,0xff,0x61,0xff,0xad,0x00,0x00,0x00,0x00,
1026
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1027
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1028
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1029
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1030
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1031
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1032
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1033
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1034
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1035
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x6b,0x00,0x00,
1036
+0x00,0x00,0xff,0xad,0xff,0xc9,0x00,0x00,0x00,0x00,0xff,0xc9,
1037
+0x00,0x00,0x00,0x00,0xff,0xb7,0x00,0x00,0xff,0xb7,0x00,0x00,
1038
+0xff,0xc9,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xc9,0x00,0x00,
1039
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xc9,0x00,0x00,
1040
+0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xd3,0x00,0x00,0x00,0x00,
1041
+0x00,0x00,0xff,0x7d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1042
+0x00,0x00,0x00,0x00,0xff,0xc9,0xff,0xc9,0xff,0xc9,0xff,0xc9,
1043
+0xff,0xdc,0xff,0xd3,0xff,0x7d,0x00,0x00,0x00,0x00,0x00,0x00,
1044
+0xff,0xc9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1045
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1046
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1047
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x59,0xff,0x90,
1048
+0xff,0x0d,0xff,0x4e,0x00,0x00,0xff,0x7d,0x00,0x00,0x00,0x00,
1049
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1050
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1051
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xdc,0x00,0x00,
1052
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1053
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xdc,
1054
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1055
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1056
+0xfe,0x15,0x00,0x00,0x00,0x00,0xff,0x7d,0x00,0x00,0xff,0x7d,
1057
+0xff,0xb7,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1058
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1059
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1060
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1061
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1062
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1063
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1064
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1065
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1066
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1067
+0xff,0x88,0x00,0x4b,0xff,0x88,0x00,0x00,0x00,0x00,0x00,0x00,
1068
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1069
+0xff,0xdc,0x00,0x00,0xff,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,
1070
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1071
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1072
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1073
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1074
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1075
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1076
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1077
+0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x61,0xff,0x90,0xfe,0x61,
1078
+0xff,0xb7,0xff,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1079
+0x00,0x00,0x00,0x00,0xff,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,
1080
+0x00,0x00,0xff,0xa4,0x00,0x00,0x00,0x00,0xff,0xa4,0x00,0x00,
1081
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xad,0x00,0x00,
1082
+0x00,0x00,0xff,0xc9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1083
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xa4,0xff,0xa4,
1084
+0xff,0xa4,0x00,0x00,0xff,0xa4,0xff,0xa4,0xff,0xad,0xff,0xad,
1085
+0xff,0xad,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1086
+0xff,0xad,0x00,0x00,0xff,0xc9,0x00,0x00,0x00,0x00,0x00,0x00,
1087
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1088
+0xff,0x9a,0x00,0x4b,0xff,0x9a,0x00,0x00,0x00,0x00,0x00,0x00,
1089
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1090
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1091
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1092
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1093
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1094
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1095
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1096
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1097
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1098
+0x00,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1099
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1100
+0x00,0x00,0xff,0xdc,0x00,0x00,0xff,0xb7,0xff,0xd3,0x00,0x00,
1101
+0xff,0xc1,0x00,0x2f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1102
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1103
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1104
+0x00,0x00,0xff,0xdc,0x00,0x00,0x00,0x00,0x00,0x2f,0x00,0x2f,
1105
+0x00,0x2f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1106
+0x00,0x26,0x00,0x00,0xff,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,
1107
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1108
+0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x90,0x00,0x00,0x00,0x00,
1109
+0xff,0xb7,0x00,0x4b,0xff,0xb7,0x00,0x00,0x00,0x00,0x00,0x00,
1110
+0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xdc,0x00,0x00,0x00,0x00,
1111
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1112
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1113
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1114
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1115
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1116
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1117
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1118
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1119
+0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0xd3,0xfe,0xf8,0xfe,0xd3,
1120
+0xff,0xb7,0xff,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1121
+0x00,0x00,0x00,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1122
+0x00,0x00,0xff,0x61,0xff,0x61,0x00,0x00,0xff,0x61,0x00,0x00,
1123
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x61,0x00,0x00,
1124
+0x00,0x00,0xff,0x6b,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xb7,
1125
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xc5,0xff,0x61,
1126
+0xff,0x61,0xff,0x61,0xff,0x9d,0xff,0x61,0xff,0xb1,0xff,0x61,
1127
+0xff,0x61,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1128
+0xff,0x61,0x00,0x00,0xff,0x6b,0x00,0x00,0x00,0x00,0x00,0x00,
1129
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1130
+0xff,0x44,0xff,0xdc,0xff,0x44,0xff,0xb7,0xff,0xc1,0x00,0x00,
1131
+0x00,0x00,0xff,0xc9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1132
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1133
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1134
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1135
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1136
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1137
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1138
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1139
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1140
+0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0x9a,0xff,0x44,0xfe,0x9a,
1141
+0xff,0x32,0xff,0x75,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xdc,
1142
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1143
+0x00,0x00,0xff,0x44,0x00,0x00,0x00,0x00,0xff,0x44,0x00,0x00,
1144
+0xff,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x44,0x00,0x00,
1145
+0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x7d,0x00,0x00,0x00,0x00,
1146
+0x00,0x00,0xff,0xad,0x00,0x00,0x00,0x00,0xff,0x44,0xff,0x44,
1147
+0xff,0x44,0x00,0x00,0xff,0x44,0xff,0x44,0xff,0x44,0xff,0x44,
1148
+0xff,0x44,0xff,0x7d,0xff,0xad,0x00,0x00,0x00,0x00,0x00,0x00,
1149
+0xff,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1150
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4b,0x00,0x00,0x00,0x00,
1151
+0xfe,0x9a,0xff,0x6b,0xfe,0x9a,0xff,0x4e,0xff,0x9a,0x00,0x00,
1152
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1153
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x4e,0x00,0x00,
1154
+0x00,0x00,0xff,0x59,0x00,0x00,0xff,0xdc,0x00,0x00,0x00,0x00,
1155
+0x00,0x00,0xff,0x75,0x00,0x00,0xff,0xa4,0x00,0x00,0x00,0x00,
1156
+0xff,0xad,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xd3,0x00,0x00,
1157
+0x00,0x00,0xff,0x4e,0xff,0x4e,0xff,0x75,0x00,0x00,0xff,0x59,
1158
+0xff,0x59,0xff,0x75,0xff,0x75,0xff,0x75,0xff,0xad,0xff,0xd3,
1159
+0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x75,0xff,0xa4,0x00,0x00,
1160
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1161
+0x00,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xb7,0x00,0x00,
1162
+0x00,0x00,0xff,0xb7,0xff,0xdc,0x00,0x00,0x00,0x00,0xff,0xdc,
1163
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1164
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1165
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1166
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1167
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1168
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1169
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1170
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1171
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1172
+0xfe,0xf8,0xff,0x1f,0xfe,0xf8,0xff,0x03,0xff,0x61,0xff,0xdc,
1173
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1174
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x61,0x00,0x00,
1175
+0x00,0x00,0xff,0x4e,0x00,0x00,0xff,0xdc,0x00,0x00,0x00,0x00,
1176
+0x00,0x00,0xff,0x4e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1177
+0xff,0x4e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1178
+0x00,0x00,0xff,0x61,0xff,0x61,0xff,0x3c,0x00,0x00,0xff,0x4e,
1179
+0xff,0x4e,0xff,0x4e,0xff,0x4e,0xff,0x4e,0xff,0x4e,0x00,0x00,
1180
+0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x29,0x00,0x00,0x00,0x00,
1181
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1182
+0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xdc,0x00,0x00,0xff,0xdc,
1183
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1184
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1185
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1186
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1187
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1188
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1189
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1190
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1191
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1192
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1193
+0xff,0xb7,0xff,0xb7,0xff,0xb7,0x00,0x00,0x00,0x00,0x00,0x00,
1194
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1195
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1196
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1197
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1198
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1199
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1200
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1201
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1202
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1203
+0x00,0x97,0x00,0x26,0x00,0x00,0x00,0x00,0xff,0xdc,0x00,0x00,
1204
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1205
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1206
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1207
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1208
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1209
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1210
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1211
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1212
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1213
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1214
+0x00,0x00,0x00,0x00,0xff,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,
1215
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1216
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1217
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1218
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1219
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1220
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1221
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1222
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1223
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1224
+0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x1f,0x00,0x00,0xff,0x1f,
1225
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1226
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1227
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1228
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1229
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1230
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1231
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1232
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1233
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1234
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1235
+0xff,0x0d,0x00,0x00,0xff,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,
1236
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1237
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1238
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1239
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1240
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1241
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1242
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1243
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1244
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1245
+0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0xf0,0x00,0x00,0xfe,0xf0,
1246
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1247
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1248
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1249
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1250
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1251
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1252
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1253
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1254
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1255
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1256
+0xff,0xb7,0x00,0x4b,0xff,0xb7,0x00,0x00,0xff,0xdc,0x00,0x00,
1257
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1258
+0xff,0xdc,0x00,0x00,0x00,0x00,0xff,0xdc,0x00,0x00,0x00,0x00,
1259
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1260
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1261
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1262
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1263
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1264
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1265
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1266
+0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0xad,0x00,0x26,0xfe,0xad,
1267
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1268
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1269
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1270
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1271
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1272
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1273
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1274
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1275
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1276
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1277
+0xff,0xdc,0x00,0x00,0xff,0x9a,0x00,0x00,0x00,0x00,0x00,0x00,
1278
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1279
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1280
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1281
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1282
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1283
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1284
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1285
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1286
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1287
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1288
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1289
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1290
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1291
+0x00,0x00,0x00,0x00,0xff,0x1d,0x00,0x00,0x00,0x00,0x00,0x00,
1292
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1293
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1294
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1295
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1296
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1297
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1298
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1299
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x59,0xff,0xdc,
1300
+0xff,0x0d,0xff,0x4e,0x00,0x00,0xff,0x32,0x00,0x00,0x00,0x00,
1301
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1302
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1303
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xdc,0x00,0x00,
1304
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1305
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xdc,
1306
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1307
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1308
+0xfe,0x15,0x00,0x00,0x00,0x00,0xfe,0xd3,0xfe,0xf8,0xfe,0xd3,
1309
+0xff,0xb7,0xff,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1310
+0x00,0x00,0x00,0x26,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1311
+0x00,0x00,0xff,0x61,0xff,0x61,0x00,0x00,0xff,0x61,0x00,0x00,
1312
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x61,0x00,0x00,
1313
+0x00,0x00,0xff,0x6b,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xb7,
1314
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x61,0xff,0x61,
1315
+0xff,0x61,0xff,0x61,0xff,0x61,0xff,0x61,0xff,0x61,0xff,0x61,
1316
+0xff,0x61,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1317
+0xff,0x61,0x00,0x00,0xff,0x6b,0x00,0x00,0x00,0x00,0x00,0x00,
1318
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1319
+0xfe,0xcd,0x00,0x00,0xfe,0xee,0x00,0x00,0x00,0x00,0x00,0x00,
1320
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1321
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x6e,0x00,0x55,
1322
+0x00,0x61,0x00,0x56,0x00,0xdc,0x00,0xdc,0x00,0xda,0x00,0x00,
1323
+0x00,0x7d,0x00,0x55,0x00,0x8c,0x00,0x7d,0x00,0x9b,0x00,0xeb,
1324
+0x00,0x90,0x00,0xcd,0x00,0xa6,0x00,0xae,0x00,0xcd,0x00,0xb3,
1325
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1326
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1327
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1328
+0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x05,0x00,0x00,0x00,0x00,
1329
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1330
+0x00,0x00,0xfe,0xf8,0x00,0x00,0x00,0x00,0x00,0x2f,0x00,0x00,
1331
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1332
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1333
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1334
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1335
+0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x1f,0x00,0x00,0x00,0x00,
1336
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1337
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1338
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1339
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1340
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0xf8,0x00,0x00,
1341
+0x00,0x00,0x00,0x2f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1342
+0x00,0x39,0x00,0x39,0x00,0x39,0x00,0x39,0x00,0x00,0x00,0x00,
1343
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1344
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1345
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1346
+0xfe,0xd3,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1347
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1348
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1349
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1350
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1351
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1352
+0x00,0x00,0xff,0xb7,0x00,0x00,0xff,0x90,0xff,0xb7,0x00,0x39,
1353
+0xff,0xb7,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1354
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1355
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xdc,0xff,0xdc,
1356
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1357
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1358
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1359
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1360
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,
1361
+0x00,0x54,0x00,0x10,0x00,0x10,0x00,0x01,0x00,0x24,0x00,0x24,
1362
+0x00,0x02,0x00,0x25,0x00,0x25,0x00,0x03,0x00,0x26,0x00,0x26,
1363
+0x00,0x04,0x00,0x27,0x00,0x27,0x00,0x05,0x00,0x28,0x00,0x28,
1364
+0x00,0x06,0x00,0x29,0x00,0x29,0x00,0x07,0x00,0x2a,0x00,0x2a,
1365
+0x00,0x08,0x00,0x2d,0x00,0x2d,0x00,0x09,0x00,0x2e,0x00,0x2e,
1366
+0x00,0x0a,0x00,0x2f,0x00,0x2f,0x00,0x0b,0x00,0x31,0x00,0x31,
1367
+0x00,0x0c,0x00,0x32,0x00,0x32,0x00,0x0d,0x00,0x33,0x00,0x33,
1368
+0x00,0x0e,0x00,0x34,0x00,0x34,0x00,0x0f,0x00,0x35,0x00,0x35,
1369
+0x00,0x10,0x00,0x36,0x00,0x36,0x00,0x11,0x00,0x37,0x00,0x37,
1370
+0x00,0x12,0x00,0x38,0x00,0x38,0x00,0x13,0x00,0x39,0x00,0x39,
1371
+0x00,0x14,0x00,0x3a,0x00,0x3a,0x00,0x15,0x00,0x3b,0x00,0x3b,
1372
+0x00,0x16,0x00,0x3c,0x00,0x3c,0x00,0x17,0x00,0x3d,0x00,0x3d,
1373
+0x00,0x18,0x00,0x49,0x00,0x49,0x00,0x19,0x00,0x4e,0x00,0x4e,
1374
+0x00,0x1a,0x00,0x52,0x00,0x52,0x00,0x1b,0x00,0x55,0x00,0x55,
1375
+0x00,0x1c,0x00,0x59,0x00,0x5a,0x00,0x1d,0x00,0x5b,0x00,0x5b,
1376
+0x00,0x1a,0x00,0x5c,0x00,0x5c,0x00,0x1e,0x00,0x82,0x00,0x86,
1377
+0x00,0x02,0x00,0x88,0x00,0x88,0x00,0x06,0x00,0x89,0x00,0x89,
1378
+0x00,0x04,0x00,0x8a,0x00,0x8d,0x00,0x06,0x00,0x92,0x00,0x92,
1379
+0x00,0x1f,0x00,0x93,0x00,0x93,0x00,0x0c,0x00,0x94,0x00,0x98,
1380
+0x00,0x0d,0x00,0x9a,0x00,0x9a,0x00,0x0d,0x00,0x9b,0x00,0x9e,
1381
+0x00,0x13,0x00,0x9f,0x00,0x9f,0x00,0x17,0x00,0xa0,0x00,0xa0,
1382
+0x00,0x20,0x00,0xb2,0x00,0xb2,0x00,0x1b,0x00,0xb4,0x00,0xb8,
1383
+0x00,0x1b,0x00,0xba,0x00,0xba,0x00,0x1b,0x00,0xbf,0x00,0xbf,
1384
+0x00,0x1e,0x00,0xc0,0x00,0xc0,0x00,0x21,0x00,0xc1,0x00,0xc1,
1385
+0x00,0x1e,0x00,0xc2,0x00,0xc2,0x00,0x02,0x00,0xc4,0x00,0xc4,
1386
+0x00,0x02,0x00,0xc6,0x00,0xc6,0x00,0x02,0x00,0xc8,0x00,0xc8,
1387
+0x00,0x04,0x00,0xca,0x00,0xca,0x00,0x04,0x00,0xcc,0x00,0xcc,
1388
+0x00,0x04,0x00,0xce,0x00,0xce,0x00,0x04,0x00,0xd0,0x00,0xd0,
1389
+0x00,0x05,0x00,0xd2,0x00,0xd2,0x00,0x05,0x00,0xdc,0x00,0xdc,
1390
+0x00,0x06,0x00,0xe0,0x00,0xe0,0x00,0x08,0x00,0xfb,0x00,0xfb,
1391
+0x00,0x0b,0x00,0xff,0x00,0xff,0x00,0x0b,0x01,0x02,0x01,0x02,
1392
+0x00,0x22,0x01,0x03,0x01,0x03,0x00,0x23,0x01,0x09,0x01,0x09,
1393
+0x00,0x0c,0x01,0x14,0x01,0x14,0x00,0x06,0x01,0x16,0x01,0x16,
1394
+0x00,0x10,0x01,0x17,0x01,0x17,0x00,0x1c,0x01,0x1a,0x01,0x1a,
1395
+0x00,0x10,0x01,0x1b,0x01,0x1b,0x00,0x1c,0x01,0x20,0x01,0x20,
1396
+0x00,0x11,0x01,0x22,0x01,0x22,0x00,0x11,0x01,0x26,0x01,0x26,
1397
+0x00,0x24,0x01,0x30,0x01,0x30,0x00,0x13,0x01,0x37,0x01,0x37,
1398
+0x00,0x25,0x01,0x3a,0x01,0x3a,0x00,0x17,0x01,0x3f,0x01,0x3f,
1399
+0x00,0x18,0x02,0x7d,0x02,0x7d,0x00,0x26,0x07,0x7e,0x07,0x7e,
1400
+0x00,0x01,0x07,0x86,0x07,0x86,0x00,0x26,0x07,0x8a,0x07,0x8a,
1401
+0x00,0x27,0x07,0x8c,0x07,0x8c,0x00,0x28,0x0c,0xa2,0x0c,0xa2,
1402
+0x00,0x0a,0x0c,0xa3,0x0c,0xa3,0x00,0x1a,0x0c,0xef,0x0c,0xef,
1403
+0x00,0x19,0x00,0x02,0x00,0x80,0x00,0x0f,0x00,0x0f,0x00,0x01,
1404
+0x00,0x10,0x00,0x10,0x00,0x02,0x00,0x11,0x00,0x11,0x00,0x03,
1405
+0x00,0x1d,0x00,0x1e,0x00,0x04,0x00,0x24,0x00,0x24,0x00,0x05,
1406
+0x00,0x26,0x00,0x26,0x00,0x06,0x00,0x2a,0x00,0x2a,0x00,0x07,
1407
+0x00,0x2d,0x00,0x2d,0x00,0x08,0x00,0x32,0x00,0x32,0x00,0x09,
1408
+0x00,0x36,0x00,0x36,0x00,0x0a,0x00,0x37,0x00,0x37,0x00,0x0b,
1409
+0x00,0x38,0x00,0x38,0x00,0x0c,0x00,0x39,0x00,0x39,0x00,0x0d,
1410
+0x00,0x3a,0x00,0x3a,0x00,0x0e,0x00,0x3b,0x00,0x3b,0x00,0x0f,
1411
+0x00,0x3c,0x00,0x3c,0x00,0x10,0x00,0x44,0x00,0x44,0x00,0x11,
1412
+0x00,0x46,0x00,0x46,0x00,0x12,0x00,0x47,0x00,0x47,0x00,0x13,
1413
+0x00,0x48,0x00,0x48,0x00,0x14,0x00,0x49,0x00,0x49,0x00,0x15,
1414
+0x00,0x4a,0x00,0x4a,0x00,0x13,0x00,0x4c,0x00,0x4c,0x00,0x16,
1415
+0x00,0x4d,0x00,0x4d,0x00,0x17,0x00,0x4f,0x00,0x4f,0x00,0x18,
1416
+0x00,0x50,0x00,0x51,0x00,0x19,0x00,0x52,0x00,0x52,0x00,0x1a,
1417
+0x00,0x53,0x00,0x53,0x00,0x1b,0x00,0x54,0x00,0x54,0x00,0x13,
1418
+0x00,0x55,0x00,0x55,0x00,0x1c,0x00,0x56,0x00,0x56,0x00,0x1d,
1419
+0x00,0x57,0x00,0x57,0x00,0x1e,0x00,0x58,0x00,0x58,0x00,0x1f,
1420
+0x00,0x59,0x00,0x59,0x00,0x20,0x00,0x5a,0x00,0x5a,0x00,0x21,
1421
+0x00,0x5b,0x00,0x5b,0x00,0x22,0x00,0x5c,0x00,0x5c,0x00,0x23,
1422
+0x00,0x5d,0x00,0x5d,0x00,0x24,0x00,0x82,0x00,0x86,0x00,0x05,
1423
+0x00,0x88,0x00,0x88,0x00,0x25,0x00,0x89,0x00,0x89,0x00,0x06,
1424
+0x00,0x94,0x00,0x98,0x00,0x09,0x00,0x9a,0x00,0x9a,0x00,0x09,
1425
+0x00,0x9b,0x00,0x9e,0x00,0x0c,0x00,0x9f,0x00,0x9f,0x00,0x10,
1426
+0x00,0xa2,0x00,0xa2,0x00,0x26,0x00,0xa3,0x00,0xa3,0x00,0x27,
1427
+0x00,0xa4,0x00,0xa7,0x00,0x26,0x00,0xa8,0x00,0xa8,0x00,0x28,
1428
+0x00,0xa9,0x00,0xa9,0x00,0x29,0x00,0xaa,0x00,0xaa,0x00,0x2a,
1429
+0x00,0xab,0x00,0xab,0x00,0x2b,0x00,0xac,0x00,0xad,0x00,0x2a,
1430
+0x00,0xb4,0x00,0xb4,0x00,0x2c,0x00,0xb5,0x00,0xb5,0x00,0x2d,
1431
+0x00,0xb6,0x00,0xb8,0x00,0x2c,0x00,0xba,0x00,0xba,0x00,0x2e,
1432
+0x00,0xbb,0x00,0xbe,0x00,0x2f,0x00,0xbf,0x00,0xbf,0x00,0x30,
1433
+0x00,0xc1,0x00,0xc1,0x00,0x30,0x00,0xc2,0x00,0xc2,0x00,0x31,
1434
+0x00,0xc3,0x00,0xc3,0x00,0x32,0x00,0xc4,0x00,0xc4,0x00,0x31,
1435
+0x00,0xc5,0x00,0xc5,0x00,0x32,0x00,0xc6,0x00,0xc6,0x00,0x31,
1436
+0x00,0xc7,0x00,0xc7,0x00,0x32,0x00,0xc8,0x00,0xc8,0x00,0x06,
1437
+0x00,0xc9,0x00,0xc9,0x00,0x29,0x00,0xca,0x00,0xca,0x00,0x07,
1438
+0x00,0xcc,0x00,0xcc,0x00,0x07,0x00,0xce,0x00,0xce,0x00,0x06,
1439
+0x00,0xcf,0x00,0xcf,0x00,0x29,0x00,0xd5,0x00,0xd5,0x00,0x33,
1440
+0x00,0xd7,0x00,0xd7,0x00,0x33,0x00,0xd9,0x00,0xd9,0x00,0x33,
1441
+0x00,0xdb,0x00,0xdb,0x00,0x33,0x00,0xdd,0x00,0xdd,0x00,0x2b,
1442
+0x00,0xde,0x00,0xde,0x00,0x07,0x00,0xe0,0x00,0xe0,0x00,0x07,
1443
+0x00,0xe2,0x00,0xe2,0x00,0x07,0x00,0xe4,0x00,0xe4,0x00,0x07,
1444
+0x01,0x0e,0x01,0x0e,0x00,0x07,0x01,0x0f,0x01,0x0f,0x00,0x33,
1445
+0x01,0x10,0x01,0x10,0x00,0x07,0x01,0x11,0x01,0x11,0x00,0x33,
1446
+0x01,0x12,0x01,0x12,0x00,0x07,0x01,0x13,0x01,0x13,0x00,0x33,
1447
+0x01,0x14,0x01,0x14,0x00,0x09,0x01,0x15,0x01,0x15,0x00,0x34,
1448
+0x01,0x17,0x01,0x17,0x00,0x35,0x01,0x1b,0x01,0x1b,0x00,0x35,
1449
+0x01,0x20,0x01,0x20,0x00,0x0a,0x01,0x21,0x01,0x21,0x00,0x36,
1450
+0x01,0x22,0x01,0x22,0x00,0x0a,0x01,0x23,0x01,0x23,0x00,0x36,
1451
+0x01,0x24,0x01,0x24,0x00,0x37,0x01,0x25,0x01,0x25,0x00,0x38,
1452
+0x01,0x26,0x01,0x26,0x00,0x0b,0x01,0x27,0x01,0x27,0x00,0x38,
1453
+0x01,0x30,0x01,0x30,0x00,0x0c,0x01,0x31,0x01,0x31,0x00,0x2f,
1454
+0x01,0x36,0x01,0x36,0x00,0x39,0x01,0x37,0x01,0x37,0x00,0x3a,
1455
+0x01,0x38,0x01,0x38,0x00,0x3b,0x01,0x39,0x01,0x39,0x00,0x39,
1456
+0x01,0x3a,0x01,0x3a,0x00,0x10,0x01,0xa5,0x01,0xa5,0x00,0x32,
1457
+0x01,0xac,0x01,0xac,0x00,0x07,0x01,0xad,0x01,0xad,0x00,0x33,
1458
+0x01,0xae,0x01,0xae,0x00,0x07,0x01,0xaf,0x01,0xaf,0x00,0x33,
1459
+0x01,0xdc,0x01,0xdc,0x00,0x37,0x01,0xdd,0x01,0xdd,0x00,0x38,
1460
+0x01,0xf0,0x01,0xf0,0x00,0x07,0x01,0xf1,0x01,0xf1,0x00,0x33,
1461
+0x01,0xf4,0x01,0xf4,0x00,0x3b,0x06,0x09,0x06,0x09,0x00,0x39,
1462
+0x06,0x0a,0x06,0x0a,0x00,0x3c,0x06,0x0b,0x06,0x0b,0x00,0x39,
1463
+0x06,0x0c,0x06,0x0c,0x00,0x3c,0x06,0x0d,0x06,0x0d,0x00,0x39,
1464
+0x06,0x0e,0x06,0x0e,0x00,0x3c,0x06,0x7b,0x06,0x7c,0x00,0x39,
1465
+0x07,0x87,0x07,0x87,0x00,0x3d,0x07,0x8a,0x07,0x8a,0x00,0x3e,
1466
+0x07,0x8b,0x07,0x8b,0x00,0x3d,0x0c,0xef,0x0c,0xef,0x00,0x15,
1467
+0x0c,0xf0,0x0c,0xf1,0x00,0x38,0x00,0x01,0x00,0x67,0x00,0x10,
1468
+0x00,0x24,0x00,0x25,0x00,0x26,0x00,0x27,0x00,0x28,0x00,0x29,
1469
+0x00,0x2a,0x00,0x2d,0x00,0x2e,0x00,0x2f,0x00,0x31,0x00,0x32,
1470
+0x00,0x33,0x00,0x34,0x00,0x35,0x00,0x36,0x00,0x37,0x00,0x38,
1471
+0x00,0x39,0x00,0x3a,0x00,0x3b,0x00,0x3c,0x00,0x3d,0x00,0x49,
1472
+0x00,0x4e,0x00,0x52,0x00,0x55,0x00,0x59,0x00,0x5a,0x00,0x5b,
1473
+0x00,0x5c,0x00,0x82,0x00,0x83,0x00,0x84,0x00,0x85,0x00,0x86,
1474
+0x00,0x88,0x00,0x89,0x00,0x8a,0x00,0x8b,0x00,0x8c,0x00,0x8d,
1475
+0x00,0x92,0x00,0x93,0x00,0x94,0x00,0x95,0x00,0x96,0x00,0x97,
1476
+0x00,0x98,0x00,0x9a,0x00,0x9b,0x00,0x9c,0x00,0x9d,0x00,0x9e,
1477
+0x00,0x9f,0x00,0xa0,0x00,0xb2,0x00,0xb4,0x00,0xb5,0x00,0xb6,
1478
+0x00,0xb7,0x00,0xb8,0x00,0xba,0x00,0xbf,0x00,0xc0,0x00,0xc1,
1479
+0x00,0xc2,0x00,0xc4,0x00,0xc6,0x00,0xc8,0x00,0xca,0x00,0xcc,
1480
+0x00,0xce,0x00,0xd0,0x00,0xd2,0x00,0xdc,0x00,0xe0,0x00,0xfb,
1481
+0x00,0xff,0x01,0x02,0x01,0x03,0x01,0x09,0x01,0x14,0x01,0x16,
1482
+0x01,0x17,0x01,0x1a,0x01,0x1b,0x01,0x20,0x01,0x22,0x01,0x26,
1483
+0x01,0x30,0x01,0x37,0x01,0x3a,0x01,0x3f,0x02,0x7d,0x07,0x7e,
1484
+0x07,0x86,0x07,0x8a,0x07,0x8c,0x0c,0xa2,0x0c,0xa3,0x0c,0xef,
1485
+0x00,0x01,0x00,0x00,0x00,0x0a,0x01,0x4e,0x01,0xca,0x00,0x05,
1486
+0x44,0x46,0x4c,0x54,0x00,0x20,0x63,0x79,0x72,0x6c,0x00,0x36,
1487
+0x67,0x72,0x65,0x6b,0x00,0x68,0x6c,0x61,0x74,0x6e,0x00,0x7c,
1488
+0x6d,0x61,0x74,0x68,0x01,0x38,0x00,0x04,0x00,0x00,0x00,0x00,
1489
+0xff,0xff,0x00,0x06,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x03,
1490
+0x00,0x04,0x00,0x08,0x00,0x10,0x00,0x02,0x4d,0x4b,0x44,0x20,
1491
+0x00,0x20,0x53,0x52,0x42,0x20,0x00,0x20,0x00,0x00,0xff,0xff,
1492
+0x00,0x05,0x00,0x00,0x00,0x02,0x00,0x03,0x00,0x04,0x00,0x08,
1493
+0x00,0x00,0xff,0xff,0x00,0x06,0x00,0x00,0x00,0x02,0x00,0x03,
1494
+0x00,0x04,0x00,0x06,0x00,0x08,0x00,0x04,0x00,0x00,0x00,0x00,
1495
+0xff,0xff,0x00,0x05,0x00,0x00,0x00,0x02,0x00,0x03,0x00,0x04,
1496
+0x00,0x08,0x00,0x70,0x00,0x12,0x41,0x5a,0x45,0x20,0x00,0x82,
1497
+0x43,0x41,0x54,0x20,0x00,0x92,0x43,0x52,0x54,0x20,0x00,0x82,
1498
+0x45,0x53,0x50,0x20,0x00,0x92,0x47,0x41,0x47,0x20,0x00,0x82,
1499
+0x47,0x41,0x4c,0x20,0x00,0x92,0x49,0x53,0x4d,0x20,0x00,0x9a,
1500
+0x4b,0x41,0x5a,0x20,0x00,0x82,0x4b,0x52,0x4b,0x20,0x00,0x82,
1501
+0x4b,0x53,0x4d,0x20,0x00,0x9a,0x4c,0x53,0x4d,0x20,0x00,0x9a,
1502
+0x4d,0x4f,0x4c,0x20,0x00,0xac,0x4e,0x53,0x4d,0x20,0x00,0x9a,
1503
+0x52,0x4f,0x4d,0x20,0x00,0xac,0x53,0x4b,0x53,0x20,0x00,0x9a,
1504
+0x53,0x53,0x4d,0x20,0x00,0x9a,0x54,0x41,0x54,0x20,0x00,0x82,
1505
+0x54,0x52,0x4b,0x20,0x00,0x82,0x00,0x00,0xff,0xff,0x00,0x06,
1506
+0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x03,0x00,0x04,0x00,0x08,
1507
+0x00,0x00,0xff,0xff,0x00,0x05,0x00,0x00,0x00,0x02,0x00,0x03,
1508
+0x00,0x05,0x00,0x08,0x00,0x00,0xff,0xff,0x00,0x01,0x00,0x01,
1509
+0x00,0x00,0xff,0xff,0x00,0x06,0x00,0x00,0x00,0x02,0x00,0x03,
1510
+0x00,0x04,0x00,0x07,0x00,0x08,0x00,0x00,0xff,0xff,0x00,0x05,
1511
+0x00,0x00,0x00,0x02,0x00,0x03,0x00,0x04,0x00,0x08,0x00,0x04,
1512
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x01,0x00,0x09,0x00,0x0a,
1513
+0x61,0x61,0x6c,0x74,0x00,0x3e,0x63,0x61,0x73,0x65,0x00,0x44,
1514
+0x63,0x63,0x6d,0x70,0x00,0x4a,0x64,0x6c,0x69,0x67,0x00,0x50,
1515
+0x6c,0x69,0x67,0x61,0x00,0x56,0x6c,0x69,0x67,0x61,0x00,0x5e,
1516
+0x6c,0x6f,0x63,0x6c,0x00,0x64,0x6c,0x6f,0x63,0x6c,0x00,0x6a,
1517
+0x73,0x61,0x6c,0x74,0x00,0x70,0x73,0x73,0x74,0x79,0x00,0x76,
1518
+0x00,0x00,0x00,0x01,0x00,0x08,0x00,0x00,0x00,0x01,0x00,0x0b,
1519
+0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x06,
1520
+0x00,0x00,0x00,0x02,0x00,0x04,0x00,0x05,0x00,0x00,0x00,0x01,
1521
+0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x00,0x00,0x01,
1522
+0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x07,0x00,0x00,0x00,0x01,
1523
+0x00,0x00,0x00,0x0c,0x00,0x1a,0x00,0x22,0x00,0x2a,0x00,0x32,
1524
+0x00,0x3a,0x00,0x42,0x00,0x4a,0x00,0x52,0x00,0x5a,0x00,0x62,
1525
+0x00,0x6a,0x00,0x72,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x60,
1526
+0x00,0x06,0x00,0x00,0x00,0x01,0x00,0x98,0x00,0x01,0x00,0x00,
1527
+0x00,0x01,0x03,0x2e,0x00,0x01,0x00,0x00,0x00,0x01,0x03,0x32,
1528
+0x00,0x04,0x00,0x00,0x00,0x01,0x03,0x36,0x00,0x04,0x00,0x00,
1529
+0x00,0x01,0x03,0x58,0x00,0x04,0x00,0x00,0x00,0x01,0x03,0x72,
1530
+0x00,0x03,0x00,0x00,0x00,0x01,0x03,0x90,0x00,0x03,0x00,0x00,
1531
+0x00,0x01,0x03,0xba,0x00,0x01,0x00,0x00,0x00,0x01,0x03,0xf6,
1532
+0x00,0x01,0x00,0x00,0x00,0x01,0x04,0x20,0x00,0x01,0x00,0x00,
1533
+0x00,0x01,0x04,0x4e,0x00,0x01,0x00,0x36,0x00,0x06,0x00,0x12,
1534
+0x00,0x18,0x00,0x1e,0x00,0x24,0x00,0x2a,0x00,0x30,0x00,0x02,
1535
+0x0d,0xbe,0x0d,0xbe,0x00,0x02,0x0d,0xbf,0x0d,0xbf,0x00,0x02,
1536
+0x0d,0xc0,0x0d,0xc0,0x00,0x02,0x0d,0xc1,0x0d,0xc1,0x00,0x02,
1537
+0x0d,0xc2,0x0d,0xc2,0x00,0x02,0x0d,0xc3,0x0d,0xc3,0x00,0x02,
1538
+0x00,0x01,0x07,0x9d,0x07,0xa2,0x00,0x00,0x00,0x02,0x00,0x14,
1539
+0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x04,0x00,0x00,0x02,0x7a,
1540
+0x02,0x8c,0x00,0x00,0x00,0x02,0x00,0x0c,0x00,0x4c,0x00,0x4d,
1541
+0x00,0x00,0x00,0xf1,0x00,0xf1,0x00,0x02,0x02,0x2a,0x02,0x2a,
1542
+0x00,0x03,0x02,0x5f,0x02,0x5f,0x00,0x04,0x02,0xad,0x02,0xc1,
1543
+0x00,0x05,0x02,0xea,0x02,0xed,0x00,0x1a,0x03,0x5d,0x03,0x5d,
1544
+0x00,0x1e,0x03,0xc0,0x03,0xc0,0x00,0x1f,0x03,0xc2,0x03,0xc2,
1545
+0x00,0x20,0x05,0x83,0x05,0x88,0x00,0x21,0x05,0xb6,0x05,0xb6,
1546
+0x00,0x27,0x06,0x54,0x06,0x54,0x00,0x28,0x00,0x02,0x00,0x59,
1547
+0x00,0x24,0x00,0x3d,0x00,0x03,0x00,0x49,0x00,0x49,0x00,0x03,
1548
+0x00,0x4b,0x00,0x4b,0x00,0x03,0x00,0x4c,0x00,0x4d,0x00,0x01,
1549
+0x00,0x4f,0x00,0x4f,0x00,0x03,0x00,0x82,0x00,0x98,0x00,0x03,
1550
+0x00,0x9a,0x00,0xa1,0x00,0x03,0x00,0xc2,0x00,0xc2,0x00,0x03,
1551
+0x00,0xc4,0x00,0xc4,0x00,0x03,0x00,0xc6,0x00,0xc6,0x00,0x03,
1552
+0x00,0xc8,0x00,0xc8,0x00,0x03,0x00,0xca,0x00,0xca,0x00,0x03,
1553
+0x00,0xcc,0x00,0xcc,0x00,0x03,0x00,0xce,0x00,0xce,0x00,0x03,
1554
+0x00,0xd0,0x00,0xd0,0x00,0x03,0x00,0xd2,0x00,0xd2,0x00,0x03,
1555
+0x00,0xd4,0x00,0xd4,0x00,0x03,0x00,0xd6,0x00,0xd6,0x00,0x03,
1556
+0x00,0xd8,0x00,0xd8,0x00,0x03,0x00,0xda,0x00,0xda,0x00,0x03,
1557
+0x00,0xdc,0x00,0xdc,0x00,0x03,0x00,0xde,0x00,0xde,0x00,0x03,
1558
+0x00,0xe0,0x00,0xe0,0x00,0x03,0x00,0xe2,0x00,0xe2,0x00,0x03,
1559
+0x00,0xe4,0x00,0xe4,0x00,0x03,0x00,0xe6,0x00,0xea,0x00,0x03,
1560
+0x00,0xec,0x00,0xec,0x00,0x03,0x00,0xee,0x00,0xee,0x00,0x03,
1561
+0x00,0xf0,0x00,0xf0,0x00,0x03,0x00,0xf1,0x00,0xf1,0x00,0x01,
1562
+0x00,0xf2,0x00,0xf2,0x00,0x03,0x00,0xf4,0x00,0xf4,0x00,0x03,
1563
+0x00,0xf6,0x00,0xf6,0x00,0x03,0x00,0xf8,0x00,0xf8,0x00,0x03,
1564
+0x00,0xfb,0x01,0x05,0x00,0x03,0x01,0x07,0x01,0x07,0x00,0x03,
1565
+0x01,0x09,0x01,0x09,0x00,0x03,0x01,0x0c,0x01,0x0c,0x00,0x03,
1566
+0x01,0x0e,0x01,0x0e,0x00,0x03,0x01,0x10,0x01,0x10,0x00,0x03,
1567
+0x01,0x12,0x01,0x12,0x00,0x03,0x01,0x14,0x01,0x14,0x00,0x03,
1568
+0x01,0x16,0x01,0x16,0x00,0x03,0x01,0x18,0x01,0x18,0x00,0x03,
1569
+0x01,0x1a,0x01,0x1a,0x00,0x03,0x01,0x1c,0x01,0x1c,0x00,0x03,
1570
+0x01,0x1e,0x01,0x1e,0x00,0x03,0x01,0x20,0x01,0x20,0x00,0x03,
1571
+0x01,0x22,0x01,0x22,0x00,0x03,0x01,0x24,0x01,0x24,0x00,0x03,
1572
+0x01,0x26,0x01,0x26,0x00,0x03,0x01,0x28,0x01,0x28,0x00,0x03,
1573
+0x01,0x2a,0x01,0x2a,0x00,0x03,0x01,0x2c,0x01,0x2c,0x00,0x03,
1574
+0x01,0x2e,0x01,0x2e,0x00,0x03,0x01,0x30,0x01,0x30,0x00,0x03,
1575
+0x01,0x32,0x01,0x32,0x00,0x03,0x01,0x34,0x01,0x34,0x00,0x03,
1576
+0x01,0x36,0x01,0x36,0x00,0x03,0x01,0x38,0x01,0x38,0x00,0x03,
1577
+0x01,0x3a,0x01,0x3b,0x00,0x03,0x01,0x3d,0x01,0x3d,0x00,0x03,
1578
+0x01,0x3f,0x01,0x3f,0x00,0x03,0x01,0x41,0x01,0x41,0x00,0x03,
1579
+0x01,0x48,0x01,0x48,0x00,0x03,0x01,0x52,0x01,0x52,0x00,0x03,
1580
+0x01,0x54,0x01,0x54,0x00,0x03,0x01,0x56,0x01,0x56,0x00,0x03,
1581
+0x01,0x8f,0x01,0x8f,0x00,0x03,0x01,0x91,0x01,0x93,0x00,0x03,
1582
+0x01,0x95,0x01,0x95,0x00,0x03,0x01,0xa4,0x01,0xa4,0x00,0x03,
1583
+0x01,0xac,0x01,0xac,0x00,0x03,0x01,0xae,0x01,0xae,0x00,0x03,
1584
+0x01,0xda,0x01,0xda,0x00,0x03,0x01,0xdc,0x01,0xdc,0x00,0x03,
1585
+0x01,0xf0,0x01,0xf0,0x00,0x03,0x01,0xf4,0x01,0xf4,0x00,0x03,
1586
+0x02,0x2a,0x02,0x2a,0x00,0x01,0x02,0x5f,0x02,0x5f,0x00,0x01,
1587
+0x02,0xad,0x02,0xc1,0x00,0x02,0x02,0xea,0x02,0xed,0x00,0x02,
1588
+0x03,0x5d,0x03,0x5d,0x00,0x01,0x03,0xc0,0x03,0xc0,0x00,0x01,
1589
+0x03,0xc2,0x03,0xc2,0x00,0x01,0x05,0x83,0x05,0x88,0x00,0x02,
1590
+0x05,0xb6,0x05,0xb6,0x00,0x01,0x06,0x54,0x06,0x54,0x00,0x01,
1591
+0x0c,0xa2,0x0c,0xa3,0x00,0x03,0x00,0x01,0x00,0x04,0x00,0x00,
1592
+0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x0a,
1593
+0x00,0x01,0x00,0x04,0x00,0x01,0x00,0x03,0x00,0x01,0x00,0x00,
1594
+0x00,0x01,0x00,0x00,0x00,0x09,0x00,0x01,0x00,0x06,0x09,0x51,
1595
+0x00,0x01,0x00,0x01,0x03,0x9b,0x00,0x01,0x00,0x06,0x0c,0x7d,
1596
+0x00,0x01,0x00,0x01,0x01,0x0c,0x00,0x01,0x00,0x24,0x00,0x01,
1597
+0x00,0x08,0x00,0x03,0x00,0x08,0x00,0x10,0x00,0x16,0x0c,0xf3,
1598
+0x00,0x03,0x00,0x49,0x00,0x4f,0x0c,0xf1,0x00,0x02,0x00,0x4f,
1599
+0x0c,0xef,0x00,0x02,0x00,0x49,0x00,0x01,0x00,0x01,0x00,0x49,
1600
+0x00,0x01,0x00,0x1c,0x00,0x01,0x00,0x08,0x00,0x02,0x00,0x06,
1601
+0x00,0x0e,0x0c,0xf2,0x00,0x03,0x00,0x49,0x00,0x4c,0x0c,0xf0,
1602
+0x00,0x02,0x00,0x4c,0x00,0x01,0x00,0x01,0x00,0x49,0x00,0x01,
1603
+0x00,0x1e,0x00,0x02,0x00,0x0a,0x00,0x14,0x00,0x01,0x00,0x04,
1604
+0x0c,0xf5,0x00,0x02,0x00,0x57,0x00,0x01,0x00,0x04,0x0c,0xf4,
1605
+0x00,0x02,0x00,0x57,0x00,0x01,0x00,0x02,0x00,0x56,0x01,0x41,
1606
+0x00,0x01,0x00,0x24,0x00,0x05,0x00,0x10,0x00,0x14,0x00,0x18,
1607
+0x00,0x1c,0x00,0x20,0x00,0x01,0x0d,0xa0,0x00,0x01,0x0d,0xaf,
1608
+0x00,0x01,0x0d,0xb0,0x00,0x01,0x0d,0xb1,0x00,0x01,0x0d,0xb2,
1609
+0x00,0x01,0x00,0x05,0x00,0x4a,0x00,0xd2,0x00,0xd3,0x01,0xa6,
1610
+0x01,0xa7,0x00,0x01,0x00,0x32,0x00,0x07,0x00,0x14,0x00,0x18,
1611
+0x00,0x1c,0x00,0x20,0x00,0x26,0x00,0x2a,0x00,0x2e,0x00,0x01,
1612
+0x0d,0xa0,0x00,0x01,0x0d,0xaf,0x00,0x01,0x0d,0xb0,0x00,0x02,
1613
+0x0d,0x89,0x0d,0xa1,0x00,0x01,0x0d,0xa2,0x00,0x01,0x0d,0xb1,
1614
+0x00,0x01,0x0d,0xb2,0x00,0x01,0x00,0x07,0x00,0x4a,0x00,0xd2,
1615
+0x00,0xd3,0x01,0x0c,0x01,0x79,0x01,0xa6,0x01,0xa7,0x00,0x02,
1616
+0x00,0x1a,0x00,0x0a,0x0d,0x7b,0x0d,0x79,0x0d,0x7c,0x0d,0x7a,
1617
+0x0d,0x7f,0x0d,0x80,0x0d,0x78,0x0d,0x81,0x0d,0x7d,0x0d,0x82,
1618
+0x00,0x01,0x00,0x0a,0x02,0xad,0x02,0xae,0x02,0xaf,0x02,0xb0,
1619
+0x02,0xb3,0x02,0xb4,0x02,0xb5,0x02,0xb8,0x02,0xb9,0x02,0xbc,
1620
+0x00,0x02,0x00,0x1c,0x00,0x0b,0x00,0xf3,0x01,0xf9,0x0d,0x83,
1621
+0x02,0x21,0x0d,0x84,0x0d,0x86,0x01,0xf9,0x00,0xf3,0x01,0xf9,
1622
+0x0d,0x87,0x0d,0x88,0x00,0x01,0x00,0x0b,0x00,0x4c,0x00,0x4d,
1623
+0x00,0xf1,0x02,0x0b,0x02,0x2a,0x02,0x5f,0x03,0x5d,0x03,0xc0,
1624
+0x03,0xc2,0x05,0xb6,0x06,0x54,0x00,0x02,0x00,0x0c,0x00,0x03,
1625
+0x0d,0xaa,0x0d,0xab,0x0d,0xac,0x00,0x01,0x00,0x03,0x00,0x63,
1626
+0x00,0x81,0x0c,0x63,0x00,0x01,0x00,0x00,0x00,0x0a,0x00,0xe0,
1627
+0x00,0xe8,0x00,0x50,0x00,0x3c,0x0c,0x00,0x07,0xdd,0x00,0x00,
1628
+0x00,0x00,0x02,0x82,0x00,0x00,0x04,0x27,0x00,0x00,0x05,0xd5,
1629
+0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x27,0x00,0x00,0x00,0x00,
1630
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x27,
1631
+0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x68,0x00,0x00,0x04,0x27,
1632
+0x00,0x00,0x00,0x55,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1633
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1634
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1635
+0x00,0x00,0x01,0x0e,0x00,0x00,0x02,0x76,0x00,0x00,0x00,0x00,
1636
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1637
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1638
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x5a,0x00,0x00,0x01,0x0e,
1639
+0x00,0x00,0x00,0x5a,0x00,0x00,0x00,0x5a,0x00,0x00,0x01,0x0e,
1640
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x0e,
1641
+0x00,0x00,0x00,0x5a,0x00,0x00,0x00,0x5a,0x00,0x00,0x01,0x0e,
1642
+0x00,0x00,0x00,0x5a,0x00,0x00,0x00,0x5a,0x00,0x00,0x00,0x5a,
1643
+0x00,0x00,0x01,0x63,0x00,0x00,0x00,0x5a,0x00,0x00,0x00,0x5a,
1644
+0x00,0x00,0x02,0x38,0x00,0x00,0xfb,0x8f,0x00,0x00,0x00,0x3c,
1645
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x03,0xaa,
1646
+0x03,0xda,0x00,0x16,0x00,0x0c,0x00,0x4e,0x00,0x52,0x00,0x56,
1647
+0x00,0x5a,0x00,0x5e,0x00,0x62,0x00,0x66,0x00,0x6a,0x00,0x6e,
1648
+0x00,0x7a,0x00,0x86,0x00,0x92,0x00,0x96,0x00,0xa2,0x00,0xae,
1649
+0x00,0xba,0x00,0xbe,0x00,0xc2,0x00,0xc6,0x00,0xca,0x00,0xd6,
1650
+0x00,0xe2,0x00,0xee,0x00,0xf2,0x00,0xf6,0x00,0xfa,0x00,0xfe,
1651
+0x01,0x0a,0x01,0x16,0x01,0x22,0x01,0x2e,0x01,0x3a,0x01,0x46,
1652
+0x01,0x52,0x01,0x10,0x00,0x00,0x01,0x30,0x00,0x00,0x01,0x50,
1653
+0x00,0x00,0x01,0x70,0x00,0x00,0x01,0x90,0x00,0x00,0x01,0xc4,
1654
+0x00,0x00,0x01,0xda,0x00,0x00,0x02,0x0e,0x00,0x00,0x00,0x00,
1655
+0x00,0x02,0x08,0xcc,0x07,0x4b,0x0d,0xb3,0x0a,0x50,0x00,0x00,
1656
+0x00,0x02,0x08,0xcd,0x07,0x4b,0x0d,0xb4,0x0a,0x50,0x00,0x00,
1657
+0x00,0x02,0x08,0xce,0x07,0x4b,0x0d,0xb5,0x0a,0x50,0x02,0x00,
1658
+0x00,0x00,0x02,0x20,0x00,0x02,0x08,0xe5,0x07,0x82,0x0d,0xb6,
1659
+0x0a,0x9e,0x00,0x00,0x00,0x02,0x08,0xe6,0x07,0x82,0x0d,0xb7,
1660
+0x0a,0x9e,0x00,0x00,0x00,0x02,0x08,0xe7,0x07,0x82,0x0d,0xb8,
1661
+0x0a,0x9e,0x02,0x20,0x00,0x00,0x02,0x36,0x00,0x00,0x02,0x4c,
1662
+0x00,0x00,0x02,0x62,0x00,0x00,0x00,0x00,0x00,0x02,0x0c,0x01,
1663
+0x07,0x82,0x0d,0xb9,0x0a,0x9e,0x00,0x00,0x00,0x02,0x0c,0x02,
1664
+0x07,0x82,0x0d,0xba,0x0a,0x9e,0x00,0x00,0x00,0x02,0x0c,0x03,
1665
+0x07,0x82,0x0d,0xbb,0x0a,0x9e,0x02,0x54,0x00,0x00,0x02,0x6a,
1666
+0x00,0x00,0x02,0x80,0x00,0x00,0x02,0x96,0x00,0x00,0x00,0x00,
1667
+0x00,0x02,0x08,0x52,0x05,0xf4,0x0a,0x75,0x0a,0xb8,0x00,0x00,
1668
+0x00,0x02,0x08,0x54,0x05,0xf4,0x0a,0x76,0x0a,0xb8,0x00,0x00,
1669
+0x00,0x02,0x08,0x56,0x06,0x1d,0x0a,0x77,0x0a,0xe1,0x00,0x00,
1670
+0x00,0x02,0x08,0x66,0x05,0xf4,0x0a,0x7b,0x0a,0xb8,0x00,0x00,
1671
+0x00,0x02,0x08,0x68,0x05,0xf4,0x0a,0x7c,0x0a,0xb8,0x00,0x00,
1672
+0x00,0x02,0x08,0x92,0x05,0xf4,0x0a,0x78,0x0a,0xb8,0x00,0x00,
1673
+0x00,0x02,0x08,0x94,0x05,0xf4,0x0a,0x79,0x0a,0xb8,0x00,0x00,
1674
+0x00,0x02,0x08,0x96,0x06,0x1d,0x0a,0x7a,0x0a,0xe1,0x00,0x00,
1675
+0x00,0x00,0x00,0x03,0x09,0x37,0x00,0x00,0x00,0x28,0x09,0x75,
1676
+0x00,0x00,0x09,0x36,0x00,0x28,0x00,0x28,0x09,0x8d,0x00,0x01,
1677
+0x09,0x35,0x00,0x28,0x00,0x00,0x09,0x96,0x00,0x00,0x00,0x00,
1678
+0x00,0x00,0x00,0x03,0x09,0x3a,0x00,0x00,0x00,0x28,0x09,0x75,
1679
+0x00,0x00,0x09,0x39,0x00,0x28,0x00,0x28,0x09,0x8d,0x00,0x01,
1680
+0x09,0x38,0x00,0x28,0x00,0x00,0x09,0x96,0x00,0x00,0x00,0x00,
1681
+0x00,0x00,0x00,0x03,0x09,0x3d,0x00,0x00,0x00,0x28,0x09,0x75,
1682
+0x00,0x00,0x09,0x3c,0x00,0x28,0x00,0x28,0x09,0x8d,0x00,0x01,
1683
+0x09,0x3b,0x00,0x28,0x00,0x00,0x09,0x71,0x00,0x00,0x00,0x00,
1684
+0x00,0x00,0x00,0x03,0x09,0x40,0x00,0x00,0x00,0x28,0x09,0x66,
1685
+0x00,0x00,0x09,0x3f,0x00,0x28,0x00,0x28,0x09,0x7e,0x00,0x01,
1686
+0x09,0x3e,0x00,0x28,0x00,0x00,0x09,0x71,0x00,0x00,0x00,0x00,
1687
+0x00,0x00,0x00,0x05,0x09,0x43,0x00,0x00,0x00,0x28,0x09,0x72,
1688
+0x00,0x00,0x09,0x44,0x00,0x28,0x00,0x28,0x09,0x98,0x00,0x01,
1689
+0x09,0x42,0x00,0x28,0x00,0x28,0x09,0x8a,0x00,0x00,0x09,0x44,
1690
+0x00,0x28,0x00,0x28,0x09,0x98,0x00,0x01,0x09,0x41,0x00,0x28,
1691
+0x00,0x00,0x09,0x83,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,
1692
+0x00,0x5f,0x00,0x00,0x00,0x28,0x08,0x00,0x00,0x00,0x00,0x5f,
1693
+0x00,0x28,0x00,0x00,0x08,0x00,0x00,0x01,0x00,0x00,0x00,0x00,
1694
+0x00,0x05,0x09,0x47,0x00,0x00,0x00,0x28,0x09,0x72,0x00,0x00,
1695
+0x09,0x44,0x00,0x28,0x00,0x28,0x09,0x98,0x00,0x01,0x09,0x46,
1696
+0x00,0x28,0x00,0x28,0x09,0x8a,0x00,0x00,0x09,0x44,0x00,0x28,
1697
+0x00,0x28,0x09,0x98,0x00,0x01,0x09,0x45,0x00,0x28,0x00,0x00,
1698
+0x09,0x83,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x07,0x84,
1699
+0x00,0x00,0x00,0x28,0x08,0x00,0x00,0x00,0x07,0x84,0x00,0x28,
1700
+0x00,0x00,0x08,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x03,
1701
+0x09,0x49,0x00,0x00,0x02,0x58,0x06,0x0e,0x00,0x00,0x0d,0xbc,
1702
+0x01,0x2c,0x01,0x2c,0x06,0x0e,0x00,0x01,0x0d,0xbd,0x01,0xf4,
1703
+0x00,0x00,0x04,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,
1704
+0x09,0x31,0x00,0x00,0x00,0x28,0x09,0x6f,0x00,0x00,0x09,0x48,
1705
+0x00,0x28,0x00,0x28,0x09,0x89,0x00,0x00,0x09,0x30,0x00,0x28,
1706
+0x00,0x00,0x09,0x6c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,
1707
+0x09,0x3c,0x00,0x00,0x00,0x28,0x09,0x8d,0x00,0x01,0x09,0x3b,
1708
+0x00,0x28,0x00,0x00,0x09,0x71,0x00,0x00,0x00,0x00,0x00,0x00,
1709
+0x00,0x02,0x09,0x3f,0x00,0x00,0x00,0x28,0x09,0x7e,0x00,0x01,
1710
+0x09,0x3e,0x00,0x28,0x00,0x00,0x09,0x71,0x00,0x00,0x00,0x00,
1711
+0x00,0x00,0x00,0x02,0x09,0x3d,0x00,0x00,0x00,0x28,0x09,0x75,
1712
+0x00,0x00,0x09,0x3c,0x00,0x28,0x00,0x00,0x09,0x8d,0x00,0x01,
1713
+0x00,0x00,0x00,0x00,0x00,0x02,0x09,0x40,0x00,0x00,0x00,0x28,
1714
+0x09,0x66,0x00,0x00,0x09,0x3f,0x00,0x28,0x00,0x00,0x09,0x7e,
1715
+0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x20,0x00,0x00,
1716
+0x00,0x28,0x05,0x02,0x00,0x00,0x00,0x20,0x00,0x28,0x00,0x00,
1717
+0x05,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x42,
1718
+0x00,0x00,0x00,0x28,0x04,0x00,0x00,0x00,0x00,0x42,0x00,0x28,
1719
+0x00,0x00,0x04,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x02,
1720
+0x00,0x71,0x00,0x00,0x00,0x28,0x02,0x56,0x00,0x00,0x00,0x71,
1721
+0x00,0x28,0x00,0x00,0x02,0x56,0x00,0x01,0x00,0x00,0x00,0x00,
1722
+0x00,0x02,0x00,0x71,0x00,0x00,0x00,0x28,0x02,0x56,0x00,0x00,
1723
+0x00,0x71,0x00,0x28,0x00,0x00,0x02,0x56,0x00,0x01,0x00,0x01,
1724
+0x00,0x16,0x00,0x0b,0x00,0x0c,0x00,0x3e,0x00,0x40,0x00,0x5e,
1725
+0x00,0x5f,0x00,0x60,0x07,0x84,0x08,0xcc,0x08,0xcd,0x08,0xce,
1726
+0x08,0xd6,0x08,0xe5,0x08,0xe6,0x08,0xe7,0x09,0x28,0x09,0x29,
1727
+0x09,0x2a,0x09,0x2b,0x0c,0x01,0x0c,0x02,0x0c,0x03,0x00,0x01,
1728
+0x00,0x0c,0x00,0x20,0x00,0x42,0x00,0x71,0x07,0xa8,0x08,0x52,
1729
+0x08,0x54,0x08,0x56,0x08,0x66,0x08,0x68,0x08,0x92,0x08,0x94,
1730
+0x08,0x96,0x00,0x00,0x00,0x01,0x04,0x1a,0x01,0x90,0x00,0x05,
1731
+0x00,0x00,0x05,0x33,0x05,0x99,0x00,0x00,0x01,0x1e,0x05,0x33,
1732
+0x05,0x99,0x00,0x00,0x03,0xd7,0x00,0x66,0x02,0x12,0x00,0x00,
1733
+0x02,0x06,0x06,0x03,0x05,0x06,0x05,0x02,0x02,0x04,0xe5,0x00,
1734
+0x06,0xff,0x52,0x00,0xf9,0xfb,0x0a,0x04,0x00,0x20,0x00,0x00,
1735
+0x00,0x00,0x50,0x66,0x45,0x64,0x00,0x40,0x00,0x20,0xff,0xff,
1736
+0x06,0x14,0xfe,0x14,0x01,0x9a,0x07,0x6d,0x01,0xe3,0x60,0x00,
1737
+0x00,0x9f,0xdf,0xd7,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,
1738
+0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x2c,0x00,0x00,0x00,0x0a,
1739
+0x00,0x00,0x05,0xd4,0x00,0x01,0x00,0x00,0x00,0x00,0x0e,0xa8,
1740
+0x00,0x03,0x00,0x01,0x00,0x00,0x00,0x2c,0x00,0x03,0x00,0x0a,
1741
+0x00,0x00,0x05,0xd4,0x00,0x04,0x05,0xa8,0x00,0x00,0x01,0x66,
1742
+0x01,0x00,0x00,0x07,0x00,0x66,0x00,0x00,0x00,0x7e,0x02,0xcd,
1743
+0x02,0xd3,0x02,0xde,0x02,0xe9,0x02,0xec,0x02,0xf0,0x02,0xf3,
1744
+0x02,0xf7,0x03,0x3f,0x03,0x43,0x03,0x4f,0x03,0x58,0x03,0x61,
1745
+0x03,0x77,0x03,0x7e,0x03,0x8a,0x03,0x8c,0x03,0xa1,0x03,0xe1,
1746
+0x04,0x5f,0x04,0x65,0x04,0x6d,0x04,0x77,0x04,0x8d,0x04,0x9b,
1747
+0x04,0xa7,0x04,0xb7,0x04,0xbb,0x04,0xc4,0x04,0xc8,0x04,0xcc,
1748
+0x04,0xf9,0x05,0x15,0x05,0x1d,0x05,0x56,0x05,0x5f,0x05,0x87,
1749
+0x05,0x8a,0x0e,0x3f,0x10,0xc5,0x10,0xfc,0x1d,0x6b,0x1d,0x78,
1750
+0x1d,0x7f,0x1d,0x85,0x1d,0xbf,0x1d,0xc9,0x1e,0xfb,0x1f,0x15,
1751
+0x1f,0x1d,0x1f,0x45,0x1f,0x4d,0x1f,0x57,0x1f,0x59,0x1f,0x5b,
1752
+0x1f,0x5d,0x1f,0x7d,0x1f,0xb4,0x1f,0xc4,0x1f,0xd3,0x1f,0xdb,
1753
+0x1f,0xef,0x1f,0xf4,0x1f,0xfe,0x20,0x26,0x20,0x3a,0x20,0x3e,
1754
+0x20,0x42,0x20,0x49,0x20,0x4f,0x20,0x53,0x20,0x57,0x20,0x64,
1755
+0x20,0x71,0x20,0x8e,0x20,0x9c,0x20,0xa6,0x20,0xac,0x20,0xaf,
1756
+0x20,0xb1,0x20,0xb5,0x20,0xba,0x20,0xbd,0x21,0x03,0x21,0x09,
1757
+0x21,0x0f,0x21,0x16,0x21,0x1a,0x21,0x1d,0x21,0x22,0x21,0x24,
1758
+0x21,0x27,0x21,0x2b,0x21,0x32,0x21,0x49,0x21,0x4b,0x21,0x4e,
1759
+0x21,0x85,0x21,0x89,0x22,0x00,0x22,0x04,0x22,0x09,0x22,0x0c,
1760
+0x22,0x15,0x22,0x20,0x22,0x2d,0x22,0x3d,0x22,0x43,0x22,0x48,
1761
+0x22,0x55,0x22,0x61,0x22,0x65,0x22,0x87,0x22,0xaf,0x22,0xc5,
1762
+0x23,0x02,0x23,0x0b,0x23,0x11,0x23,0x19,0x23,0x21,0x23,0x25,
1763
+0x23,0x28,0x23,0x7d,0x23,0xae,0x23,0xb7,0x23,0xcf,0x24,0x23,
1764
+0x26,0x00,0x26,0x3c,0x26,0x47,0x26,0x67,0x26,0x6f,0x27,0xa1,
1765
+0x27,0xc6,0x27,0xe0,0x27,0xe9,0x29,0x7f,0x29,0xeb,0x2a,0x0e,
1766
+0x2a,0x2f,0x2a,0x6b,0x2b,0x1a,0x2c,0x61,0x2c,0x64,0x2c,0x73,
1767
+0x2c,0x77,0x2c,0x7f,0x2d,0x25,0x2e,0x18,0x2e,0x1f,0x2e,0x25,
1768
+0x2e,0x2e,0xa6,0x47,0xa6,0x51,0xa6,0x57,0xa7,0x16,0xa7,0x1f,
1769
+0xa7,0x41,0xa7,0x47,0xa7,0x4b,0xa7,0x4f,0xa7,0x69,0xa7,0x7c,
1770
+0xa7,0x87,0xa7,0x8d,0xa7,0x91,0xa7,0xaa,0xa7,0xff,0xf4,0x26,
1771
+0xf4,0x28,0xf6,0xc5,0xf6,0xd1,0xf6,0xd4,0xfb,0x06,0xfe,0x0f,
1772
+0xff,0xfd,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xa0,
1773
+0x02,0xd0,0x02,0xd6,0x02,0xe0,0x02,0xec,0x02,0xee,0x02,0xf3,
1774
+0x02,0xf7,0x03,0x00,0x03,0x43,0x03,0x4f,0x03,0x58,0x03,0x60,
1775
+0x03,0x70,0x03,0x7a,0x03,0x84,0x03,0x8c,0x03,0x8e,0x03,0xa3,
1776
+0x03,0xf0,0x04,0x62,0x04,0x6a,0x04,0x70,0x04,0x8c,0x04,0x90,
1777
+0x04,0x9e,0x04,0xaa,0x04,0xba,0x04,0xc0,0x04,0xc7,0x04,0xcb,
1778
+0x04,0xcf,0x05,0x10,0x05,0x1a,0x05,0x31,0x05,0x59,0x05,0x61,
1779
+0x05,0x89,0x0e,0x3f,0x10,0xa0,0x10,0xd0,0x1d,0x00,0x1d,0x77,
1780
+0x1d,0x7b,0x1d,0x85,0x1d,0x9b,0x1d,0xc4,0x1e,0x00,0x1f,0x00,
1781
+0x1f,0x18,0x1f,0x20,0x1f,0x48,0x1f,0x50,0x1f,0x59,0x1f,0x5b,
1782
+0x1f,0x5d,0x1f,0x5f,0x1f,0x80,0x1f,0xb6,0x1f,0xc6,0x1f,0xd6,
1783
+0x1f,0xdd,0x1f,0xf2,0x1f,0xf6,0x20,0x00,0x20,0x2a,0x20,0x3c,
1784
+0x20,0x42,0x20,0x44,0x20,0x4b,0x20,0x51,0x20,0x57,0x20,0x5f,
1785
+0x20,0x6a,0x20,0x74,0x20,0x90,0x20,0xa6,0x20,0xac,0x20,0xaf,
1786
+0x20,0xb1,0x20,0xb4,0x20,0xb8,0x20,0xbd,0x21,0x02,0x21,0x09,
1787
+0x21,0x0d,0x21,0x15,0x21,0x19,0x21,0x1d,0x21,0x22,0x21,0x24,
1788
+0x21,0x26,0x21,0x2a,0x21,0x32,0x21,0x3c,0x21,0x4b,0x21,0x4e,
1789
+0x21,0x50,0x21,0x89,0x21,0x90,0x22,0x02,0x22,0x06,0x22,0x0b,
1790
+0x22,0x0f,0x22,0x17,0x22,0x23,0x22,0x38,0x22,0x42,0x22,0x48,
1791
+0x22,0x50,0x22,0x60,0x22,0x64,0x22,0x82,0x22,0x8c,0x22,0xc4,
1792
+0x23,0x02,0x23,0x08,0x23,0x10,0x23,0x18,0x23,0x20,0x23,0x25,
1793
+0x23,0x28,0x23,0x7d,0x23,0x9b,0x23,0xb7,0x23,0xcf,0x24,0x23,
1794
+0x25,0x00,0x26,0x38,0x26,0x3f,0x26,0x60,0x26,0x69,0x27,0xa1,
1795
+0x27,0xc5,0x27,0xe0,0x27,0xe8,0x27,0xf0,0x29,0xeb,0x2a,0x0c,
1796
+0x2a,0x2f,0x2a,0x6a,0x2b,0x00,0x2c,0x60,0x2c,0x63,0x2c,0x67,
1797
+0x2c,0x75,0x2c,0x79,0x2d,0x00,0x2e,0x18,0x2e,0x1f,0x2e,0x22,
1798
+0x2e,0x2e,0xa6,0x44,0xa6,0x50,0xa6,0x54,0xa7,0x08,0xa7,0x1b,
1799
+0xa7,0x26,0xa7,0x46,0xa7,0x4a,0xa7,0x4e,0xa7,0x68,0xa7,0x7b,
1800
+0xa7,0x80,0xa7,0x8b,0xa7,0x90,0xa7,0xaa,0xa7,0xf8,0xf4,0x00,
1801
+0xf4,0x28,0xf6,0xc5,0xf6,0xd1,0xf6,0xd4,0xfb,0x00,0xfe,0x00,
1802
+0xff,0xf9,0xff,0xff,0x00,0x00,0xff,0xe3,0xff,0xc2,0xff,0xc0,
1803
+0xff,0xbe,0xff,0xbd,0xff,0xbb,0xff,0xba,0xff,0xb8,0xff,0xb5,
1804
+0xff,0xad,0xff,0xaa,0xff,0x9f,0xff,0x97,0xff,0x90,0xff,0x82,
1805
+0xff,0x80,0xff,0x7b,0xff,0x7a,0xff,0x79,0xff,0x78,0xff,0x6a,
1806
+0xff,0x68,0xff,0x64,0xff,0x62,0xff,0x4e,0xff,0x4c,0xff,0x4a,
1807
+0xff,0x48,0xff,0x46,0xff,0x42,0xff,0x40,0xff,0x3e,0xff,0x3c,
1808
+0xff,0x26,0xff,0x22,0xff,0x0f,0xff,0x0d,0xff,0x0c,0xff,0x0b,
1809
+0xf6,0x57,0xf3,0xf7,0xf3,0xed,0xe7,0xea,0xe7,0xdf,0xe7,0xdd,
1810
+0xe7,0xd8,0xe7,0xc3,0xe7,0xbf,0xe7,0x89,0xe7,0x85,0xe7,0x83,
1811
+0xe7,0x81,0xe7,0x7f,0xe7,0x7d,0xe7,0x7c,0xe7,0x7b,0xe7,0x7a,
1812
+0xe7,0x79,0xe7,0x77,0xe7,0x76,0xe7,0x75,0xe7,0x73,0xe7,0x72,
1813
+0xe7,0x70,0xe7,0x6f,0xe7,0x6e,0xe7,0x6b,0xe7,0x6a,0xe7,0x67,
1814
+0xe7,0x66,0xe7,0x65,0xe7,0x64,0xe7,0x61,0xe7,0x5a,0xe7,0x55,
1815
+0xe7,0x53,0xe7,0x52,0xe7,0x49,0xe7,0x44,0xe7,0x42,0xe7,0x41,
1816
+0xe7,0x3f,0xe7,0x3d,0xe7,0x3b,0xe6,0xf7,0xe6,0xf2,0xe6,0xef,
1817
+0xe6,0xea,0xe6,0xe8,0xe6,0xe6,0xe6,0xe2,0xe6,0xe1,0xe6,0xe0,
1818
+0xe6,0xde,0xe6,0xd8,0xe6,0xcf,0xe6,0xce,0xe6,0xcc,0xe6,0xcb,
1819
+0xe6,0xc8,0xe6,0xc2,0xe6,0xc1,0xe6,0xc0,0xe6,0xbf,0xe6,0xbd,
1820
+0xe6,0xbc,0xe6,0xba,0xe6,0xb0,0xe6,0xac,0xe6,0xa8,0xe6,0xa1,
1821
+0xe6,0x97,0xe6,0x95,0xe6,0x79,0xe6,0x75,0xe6,0x61,0xe6,0x25,
1822
+0xe6,0x20,0xe6,0x1c,0xe6,0x16,0xe6,0x10,0xe6,0x0d,0xe6,0x0b,
1823
+0xe5,0xb7,0xe5,0x9a,0xe5,0x92,0xe5,0x7b,0xe5,0x28,0xe4,0x4c,
1824
+0xe4,0x15,0xe4,0x13,0xe3,0xfb,0xe3,0xfa,0xe2,0xc9,0xe2,0xa6,
1825
+0xe2,0x8d,0xe2,0x86,0xe2,0x80,0xe2,0x15,0xe1,0xf5,0xe1,0xd5,
1826
+0xe1,0x9b,0xe1,0x07,0xdf,0xc2,0xdf,0xc1,0xdf,0xbf,0xdf,0xbe,
1827
+0xdf,0xbd,0xdf,0x3d,0xde,0x4b,0xde,0x45,0xde,0x43,0xde,0x3b,
1828
+0x66,0x26,0x66,0x1e,0x66,0x1c,0x65,0x6c,0x65,0x68,0x65,0x62,
1829
+0x65,0x5e,0x65,0x5c,0x65,0x5a,0x65,0x42,0x65,0x31,0x65,0x2e,
1830
+0x65,0x2b,0x65,0x29,0x65,0x11,0x64,0xc4,0x18,0xc4,0x18,0xc3,
1831
+0x16,0x27,0x16,0x1c,0x16,0x1a,0x11,0xef,0x0e,0xf6,0x0d,0x0d,
1832
+0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1833
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1834
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1835
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1836
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1837
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1838
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1839
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1840
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1841
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1842
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1843
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1844
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1845
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1846
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1847
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1848
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1849
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1850
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1851
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1852
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1853
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1854
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1855
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1856
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1857
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1858
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1859
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1860
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1861
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
1862
+0x00,0x0c,0x00,0x00,0x00,0x00,0x08,0xd4,0x00,0x00,0x00,0x00,
1863
+0x00,0x00,0x00,0xbb,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x7e,
1864
+0x00,0x00,0x00,0x03,0x00,0x00,0x00,0xa0,0x00,0x00,0x02,0xcd,
1865
+0x00,0x00,0x00,0x62,0x00,0x00,0x02,0xd0,0x00,0x00,0x02,0xd3,
1866
+0x00,0x00,0x02,0x90,0x00,0x00,0x02,0xd6,0x00,0x00,0x02,0xde,
1867
+0x00,0x00,0x02,0x94,0x00,0x00,0x02,0xe0,0x00,0x00,0x02,0xe9,
1868
+0x00,0x00,0x02,0x9d,0x00,0x00,0x02,0xec,0x00,0x00,0x02,0xec,
1869
+0x00,0x00,0x02,0xa7,0x00,0x00,0x02,0xee,0x00,0x00,0x02,0xf0,
1870
+0x00,0x00,0x02,0xa8,0x00,0x00,0x02,0xf3,0x00,0x00,0x02,0xf3,
1871
+0x00,0x00,0x02,0xab,0x00,0x00,0x02,0xf7,0x00,0x00,0x02,0xf7,
1872
+0x00,0x00,0x02,0xac,0x00,0x00,0x03,0x00,0x00,0x00,0x03,0x3f,
1873
+0x00,0x00,0x02,0xad,0x00,0x00,0x03,0x43,0x00,0x00,0x03,0x43,
1874
+0x00,0x00,0x02,0xed,0x00,0x00,0x03,0x4f,0x00,0x00,0x03,0x4f,
1875
+0x00,0x00,0x02,0xee,0x00,0x00,0x03,0x58,0x00,0x00,0x03,0x58,
1876
+0x00,0x00,0x02,0xef,0x00,0x00,0x03,0x60,0x00,0x00,0x03,0x61,
1877
+0x00,0x00,0x02,0xf0,0x00,0x00,0x03,0x70,0x00,0x00,0x03,0x77,
1878
+0x00,0x00,0x02,0xf2,0x00,0x00,0x03,0x7a,0x00,0x00,0x03,0x7e,
1879
+0x00,0x00,0x02,0xfa,0x00,0x00,0x03,0x84,0x00,0x00,0x03,0x8a,
1880
+0x00,0x00,0x02,0xff,0x00,0x00,0x03,0x8c,0x00,0x00,0x03,0x8c,
1881
+0x00,0x00,0x03,0x06,0x00,0x00,0x03,0x8e,0x00,0x00,0x03,0xa1,
1882
+0x00,0x00,0x03,0x07,0x00,0x00,0x03,0xa3,0x00,0x00,0x03,0xe1,
1883
+0x00,0x00,0x03,0x1b,0x00,0x00,0x03,0xf0,0x00,0x00,0x04,0x5f,
1884
+0x00,0x00,0x03,0x5a,0x00,0x00,0x04,0x62,0x00,0x00,0x04,0x65,
1885
+0x00,0x00,0x03,0xca,0x00,0x00,0x04,0x6a,0x00,0x00,0x04,0x6d,
1886
+0x00,0x00,0x03,0xce,0x00,0x00,0x04,0x70,0x00,0x00,0x04,0x77,
1887
+0x00,0x00,0x03,0xd2,0x00,0x00,0x04,0x8c,0x00,0x00,0x04,0x8d,
1888
+0x00,0x00,0x03,0xda,0x00,0x00,0x04,0x90,0x00,0x00,0x04,0x9b,
1889
+0x00,0x00,0x03,0xdc,0x00,0x00,0x04,0x9e,0x00,0x00,0x04,0xa7,
1890
+0x00,0x00,0x03,0xe8,0x00,0x00,0x04,0xaa,0x00,0x00,0x04,0xb7,
1891
+0x00,0x00,0x03,0xf2,0x00,0x00,0x04,0xba,0x00,0x00,0x04,0xbb,
1892
+0x00,0x00,0x04,0x00,0x00,0x00,0x04,0xc0,0x00,0x00,0x04,0xc4,
1893
+0x00,0x00,0x04,0x02,0x00,0x00,0x04,0xc7,0x00,0x00,0x04,0xc8,
1894
+0x00,0x00,0x04,0x07,0x00,0x00,0x04,0xcb,0x00,0x00,0x04,0xcc,
1895
+0x00,0x00,0x04,0x09,0x00,0x00,0x04,0xcf,0x00,0x00,0x04,0xf9,
1896
+0x00,0x00,0x04,0x0b,0x00,0x00,0x05,0x10,0x00,0x00,0x05,0x15,
1897
+0x00,0x00,0x04,0x36,0x00,0x00,0x05,0x1a,0x00,0x00,0x05,0x1d,
1898
+0x00,0x00,0x04,0x3c,0x00,0x00,0x05,0x31,0x00,0x00,0x05,0x56,
1899
+0x00,0x00,0x04,0x40,0x00,0x00,0x05,0x59,0x00,0x00,0x05,0x5f,
1900
+0x00,0x00,0x04,0x66,0x00,0x00,0x05,0x61,0x00,0x00,0x05,0x87,
1901
+0x00,0x00,0x04,0x6d,0x00,0x00,0x05,0x89,0x00,0x00,0x05,0x8a,
1902
+0x00,0x00,0x04,0x94,0x00,0x00,0x0e,0x3f,0x00,0x00,0x0e,0x3f,
1903
+0x00,0x00,0x04,0x96,0x00,0x00,0x10,0xa0,0x00,0x00,0x10,0xc5,
1904
+0x00,0x00,0x04,0x97,0x00,0x00,0x10,0xd0,0x00,0x00,0x10,0xfc,
1905
+0x00,0x00,0x04,0xbd,0x00,0x00,0x1d,0x00,0x00,0x00,0x1d,0x6b,
1906
+0x00,0x00,0x04,0xea,0x00,0x00,0x1d,0x77,0x00,0x00,0x1d,0x78,
1907
+0x00,0x00,0x05,0x56,0x00,0x00,0x1d,0x7b,0x00,0x00,0x1d,0x7f,
1908
+0x00,0x00,0x05,0x58,0x00,0x00,0x1d,0x85,0x00,0x00,0x1d,0x85,
1909
+0x00,0x00,0x05,0x5d,0x00,0x00,0x1d,0x9b,0x00,0x00,0x1d,0xbf,
1910
+0x00,0x00,0x05,0x5e,0x00,0x00,0x1d,0xc4,0x00,0x00,0x1d,0xc9,
1911
+0x00,0x00,0x05,0x83,0x00,0x00,0x1e,0x00,0x00,0x00,0x1e,0xfb,
1912
+0x00,0x00,0x05,0x89,0x00,0x00,0x1f,0x00,0x00,0x00,0x1f,0x15,
1913
+0x00,0x00,0x06,0x85,0x00,0x00,0x1f,0x18,0x00,0x00,0x1f,0x1d,
1914
+0x00,0x00,0x06,0x9b,0x00,0x00,0x1f,0x20,0x00,0x00,0x1f,0x45,
1915
+0x00,0x00,0x06,0xa1,0x00,0x00,0x1f,0x48,0x00,0x00,0x1f,0x4d,
1916
+0x00,0x00,0x06,0xc7,0x00,0x00,0x1f,0x50,0x00,0x00,0x1f,0x57,
1917
+0x00,0x00,0x06,0xcd,0x00,0x00,0x1f,0x59,0x00,0x00,0x1f,0x59,
1918
+0x00,0x00,0x06,0xd5,0x00,0x00,0x1f,0x5b,0x00,0x00,0x1f,0x5b,
1919
+0x00,0x00,0x06,0xd6,0x00,0x00,0x1f,0x5d,0x00,0x00,0x1f,0x5d,
1920
+0x00,0x00,0x06,0xd7,0x00,0x00,0x1f,0x5f,0x00,0x00,0x1f,0x7d,
1921
+0x00,0x00,0x06,0xd8,0x00,0x00,0x1f,0x80,0x00,0x00,0x1f,0xb4,
1922
+0x00,0x00,0x06,0xf7,0x00,0x00,0x1f,0xb6,0x00,0x00,0x1f,0xc4,
1923
+0x00,0x00,0x07,0x2c,0x00,0x00,0x1f,0xc6,0x00,0x00,0x1f,0xd3,
1924
+0x00,0x00,0x07,0x3b,0x00,0x00,0x1f,0xd6,0x00,0x00,0x1f,0xdb,
1925
+0x00,0x00,0x07,0x49,0x00,0x00,0x1f,0xdd,0x00,0x00,0x1f,0xef,
1926
+0x00,0x00,0x07,0x4f,0x00,0x00,0x1f,0xf2,0x00,0x00,0x1f,0xf4,
1927
+0x00,0x00,0x07,0x62,0x00,0x00,0x1f,0xf6,0x00,0x00,0x1f,0xfe,
1928
+0x00,0x00,0x07,0x65,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x26,
1929
+0x00,0x00,0x07,0x6e,0x00,0x00,0x20,0x2a,0x00,0x00,0x20,0x3a,
1930
+0x00,0x00,0x07,0x95,0x00,0x00,0x20,0x3c,0x00,0x00,0x20,0x3e,
1931
+0x00,0x00,0x07,0xa6,0x00,0x00,0x20,0x42,0x00,0x00,0x20,0x42,
1932
+0x00,0x00,0x07,0xa9,0x00,0x00,0x20,0x44,0x00,0x00,0x20,0x49,
1933
+0x00,0x00,0x07,0xaa,0x00,0x00,0x20,0x4b,0x00,0x00,0x20,0x4f,
1934
+0x00,0x00,0x07,0xb0,0x00,0x00,0x20,0x51,0x00,0x00,0x20,0x53,
1935
+0x00,0x00,0x07,0xb5,0x00,0x00,0x20,0x57,0x00,0x00,0x20,0x57,
1936
+0x00,0x00,0x07,0xb8,0x00,0x00,0x20,0x5f,0x00,0x00,0x20,0x64,
1937
+0x00,0x00,0x07,0xb9,0x00,0x00,0x20,0x6a,0x00,0x00,0x20,0x71,
1938
+0x00,0x00,0x07,0xbf,0x00,0x00,0x20,0x74,0x00,0x00,0x20,0x8e,
1939
+0x00,0x00,0x07,0xc7,0x00,0x00,0x20,0x90,0x00,0x00,0x20,0x9c,
1940
+0x00,0x00,0x07,0xe2,0x00,0x00,0x20,0xa6,0x00,0x00,0x20,0xa6,
1941
+0x00,0x00,0x07,0xef,0x00,0x00,0x20,0xac,0x00,0x00,0x20,0xac,
1942
+0x00,0x00,0x07,0xf0,0x00,0x00,0x20,0xaf,0x00,0x00,0x20,0xaf,
1943
+0x00,0x00,0x07,0xf1,0x00,0x00,0x20,0xb1,0x00,0x00,0x20,0xb1,
1944
+0x00,0x00,0x07,0xf2,0x00,0x00,0x20,0xb4,0x00,0x00,0x20,0xb5,
1945
+0x00,0x00,0x07,0xf3,0x00,0x00,0x20,0xb8,0x00,0x00,0x20,0xba,
1946
+0x00,0x00,0x07,0xf5,0x00,0x00,0x20,0xbd,0x00,0x00,0x20,0xbd,
1947
+0x00,0x00,0x07,0xf8,0x00,0x00,0x21,0x02,0x00,0x00,0x21,0x03,
1948
+0x00,0x00,0x07,0xf9,0x00,0x00,0x21,0x09,0x00,0x00,0x21,0x09,
1949
+0x00,0x00,0x07,0xfb,0x00,0x00,0x21,0x0d,0x00,0x00,0x21,0x0f,
1950
+0x00,0x00,0x07,0xfc,0x00,0x00,0x21,0x15,0x00,0x00,0x21,0x16,
1951
+0x00,0x00,0x07,0xff,0x00,0x00,0x21,0x19,0x00,0x00,0x21,0x1a,
1952
+0x00,0x00,0x08,0x01,0x00,0x00,0x21,0x1d,0x00,0x00,0x21,0x1d,
1953
+0x00,0x00,0x08,0x03,0x00,0x00,0x21,0x22,0x00,0x00,0x21,0x22,
1954
+0x00,0x00,0x08,0x04,0x00,0x00,0x21,0x24,0x00,0x00,0x21,0x24,
1955
+0x00,0x00,0x08,0x05,0x00,0x00,0x21,0x26,0x00,0x00,0x21,0x27,
1956
+0x00,0x00,0x08,0x06,0x00,0x00,0x21,0x2a,0x00,0x00,0x21,0x2b,
1957
+0x00,0x00,0x08,0x08,0x00,0x00,0x21,0x32,0x00,0x00,0x21,0x32,
1958
+0x00,0x00,0x08,0x0a,0x00,0x00,0x21,0x3c,0x00,0x00,0x21,0x49,
1959
+0x00,0x00,0x08,0x0b,0x00,0x00,0x21,0x4b,0x00,0x00,0x21,0x4b,
1960
+0x00,0x00,0x08,0x19,0x00,0x00,0x21,0x4e,0x00,0x00,0x21,0x4e,
1961
+0x00,0x00,0x08,0x1a,0x00,0x00,0x21,0x50,0x00,0x00,0x21,0x85,
1962
+0x00,0x00,0x08,0x1b,0x00,0x00,0x21,0x89,0x00,0x00,0x21,0x89,
1963
+0x00,0x00,0x08,0x51,0x00,0x00,0x21,0x90,0x00,0x00,0x22,0x00,
1964
+0x00,0x00,0x08,0x52,0x00,0x00,0x22,0x02,0x00,0x00,0x22,0x04,
1965
+0x00,0x00,0x08,0xc3,0x00,0x00,0x22,0x06,0x00,0x00,0x22,0x09,
1966
+0x00,0x00,0x08,0xc6,0x00,0x00,0x22,0x0b,0x00,0x00,0x22,0x0c,
1967
+0x00,0x00,0x08,0xca,0x00,0x00,0x22,0x0f,0x00,0x00,0x22,0x15,
1968
+0x00,0x00,0x08,0xcc,0x00,0x00,0x22,0x17,0x00,0x00,0x22,0x20,
1969
+0x00,0x00,0x08,0xd3,0x00,0x00,0x22,0x23,0x00,0x00,0x22,0x2d,
1970
+0x00,0x00,0x08,0xdd,0x00,0x00,0x22,0x38,0x00,0x00,0x22,0x3d,
1971
+0x00,0x00,0x08,0xe8,0x00,0x00,0x22,0x42,0x00,0x00,0x22,0x43,
1972
+0x00,0x00,0x08,0xee,0x00,0x00,0x22,0x48,0x00,0x00,0x22,0x48,
1973
+0x00,0x00,0x08,0xf0,0x00,0x00,0x22,0x50,0x00,0x00,0x22,0x55,
1974
+0x00,0x00,0x08,0xf1,0x00,0x00,0x22,0x60,0x00,0x00,0x22,0x61,
1975
+0x00,0x00,0x08,0xf7,0x00,0x00,0x22,0x64,0x00,0x00,0x22,0x65,
1976
+0x00,0x00,0x08,0xf9,0x00,0x00,0x22,0x82,0x00,0x00,0x22,0x87,
1977
+0x00,0x00,0x08,0xfb,0x00,0x00,0x22,0x8c,0x00,0x00,0x22,0xaf,
1978
+0x00,0x00,0x09,0x01,0x00,0x00,0x22,0xc4,0x00,0x00,0x22,0xc5,
1979
+0x00,0x00,0x09,0x25,0x00,0x00,0x23,0x02,0x00,0x00,0x23,0x02,
1980
+0x00,0x00,0x09,0x27,0x00,0x00,0x23,0x08,0x00,0x00,0x23,0x0b,
1981
+0x00,0x00,0x09,0x28,0x00,0x00,0x23,0x10,0x00,0x00,0x23,0x11,
1982
+0x00,0x00,0x09,0x2c,0x00,0x00,0x23,0x18,0x00,0x00,0x23,0x19,
1983
+0x00,0x00,0x09,0x2e,0x00,0x00,0x23,0x20,0x00,0x00,0x23,0x21,
1984
+0x00,0x00,0x09,0x30,0x00,0x00,0x23,0x25,0x00,0x00,0x23,0x25,
1985
+0x00,0x00,0x09,0x32,0x00,0x00,0x23,0x28,0x00,0x00,0x23,0x28,
1986
+0x00,0x00,0x09,0x33,0x00,0x00,0x23,0x7d,0x00,0x00,0x23,0x7d,
1987
+0x00,0x00,0x09,0x34,0x00,0x00,0x23,0x9b,0x00,0x00,0x23,0xae,
1988
+0x00,0x00,0x09,0x35,0x00,0x00,0x23,0xb7,0x00,0x00,0x23,0xb7,
1989
+0x00,0x00,0x09,0x49,0x00,0x00,0x23,0xcf,0x00,0x00,0x23,0xcf,
1990
+0x00,0x00,0x09,0x4a,0x00,0x00,0x24,0x23,0x00,0x00,0x24,0x23,
1991
+0x00,0x00,0x09,0x4b,0x00,0x00,0x25,0x00,0x00,0x00,0x26,0x00,
1992
+0x00,0x00,0x09,0x4c,0x00,0x00,0x26,0x38,0x00,0x00,0x26,0x3c,
1993
+0x00,0x00,0x0a,0x4d,0x00,0x00,0x26,0x3f,0x00,0x00,0x26,0x47,
1994
+0x00,0x00,0x0a,0x52,0x00,0x00,0x26,0x60,0x00,0x00,0x26,0x67,
1995
+0x00,0x00,0x0a,0x5b,0x00,0x00,0x26,0x69,0x00,0x00,0x26,0x6f,
1996
+0x00,0x00,0x0a,0x63,0x00,0x00,0x27,0xa1,0x00,0x00,0x27,0xa1,
1997
+0x00,0x00,0x0a,0x6a,0x00,0x00,0x27,0xc5,0x00,0x00,0x27,0xc6,
1998
+0x00,0x00,0x0a,0x6b,0x00,0x00,0x27,0xe0,0x00,0x00,0x27,0xe0,
1999
+0x00,0x00,0x0a,0x6d,0x00,0x00,0x27,0xe8,0x00,0x00,0x27,0xe9,
2000
+0x00,0x00,0x0a,0x6e,0x00,0x00,0x27,0xf0,0x00,0x00,0x29,0x7f,
2001
+0x00,0x00,0x0a,0x70,0x00,0x00,0x29,0xeb,0x00,0x00,0x29,0xeb,
2002
+0x00,0x00,0x0c,0x00,0x00,0x00,0x2a,0x0c,0x00,0x00,0x2a,0x0e,
2003
+0x00,0x00,0x0c,0x01,0x00,0x00,0x2a,0x2f,0x00,0x00,0x2a,0x2f,
2004
+0x00,0x00,0x0c,0x04,0x00,0x00,0x2a,0x6a,0x00,0x00,0x2a,0x6b,
2005
+0x00,0x00,0x0c,0x05,0x00,0x00,0x2b,0x00,0x00,0x00,0x2b,0x1a,
2006
+0x00,0x00,0x0c,0x07,0x00,0x00,0x2c,0x60,0x00,0x00,0x2c,0x61,
2007
+0x00,0x00,0x0c,0x22,0x00,0x00,0x2c,0x63,0x00,0x00,0x2c,0x64,
2008
+0x00,0x00,0x0c,0x24,0x00,0x00,0x2c,0x67,0x00,0x00,0x2c,0x73,
2009
+0x00,0x00,0x0c,0x26,0x00,0x00,0x2c,0x75,0x00,0x00,0x2c,0x77,
2010
+0x00,0x00,0x0c,0x33,0x00,0x00,0x2c,0x79,0x00,0x00,0x2c,0x7f,
2011
+0x00,0x00,0x0c,0x36,0x00,0x00,0x2d,0x00,0x00,0x00,0x2d,0x25,
2012
+0x00,0x00,0x0c,0x3d,0x00,0x00,0x2e,0x18,0x00,0x00,0x2e,0x18,
2013
+0x00,0x00,0x0c,0x63,0x00,0x00,0x2e,0x1f,0x00,0x00,0x2e,0x1f,
2014
+0x00,0x00,0x0c,0x64,0x00,0x00,0x2e,0x22,0x00,0x00,0x2e,0x25,
2015
+0x00,0x00,0x0c,0x65,0x00,0x00,0x2e,0x2e,0x00,0x00,0x2e,0x2e,
2016
+0x00,0x00,0x0c,0x69,0x00,0x00,0xa6,0x44,0x00,0x00,0xa6,0x47,
2017
+0x00,0x00,0x0c,0x6a,0x00,0x00,0xa6,0x50,0x00,0x00,0xa6,0x51,
2018
+0x00,0x00,0x0c,0x6e,0x00,0x00,0xa6,0x54,0x00,0x00,0xa6,0x57,
2019
+0x00,0x00,0x0c,0x70,0x00,0x00,0xa7,0x08,0x00,0x00,0xa7,0x16,
2020
+0x00,0x00,0x0c,0x74,0x00,0x00,0xa7,0x1b,0x00,0x00,0xa7,0x1f,
2021
+0x00,0x00,0x0c,0x83,0x00,0x00,0xa7,0x26,0x00,0x00,0xa7,0x41,
2022
+0x00,0x00,0x0c,0x88,0x00,0x00,0xa7,0x46,0x00,0x00,0xa7,0x47,
2023
+0x00,0x00,0x0c,0xa4,0x00,0x00,0xa7,0x4a,0x00,0x00,0xa7,0x4b,
2024
+0x00,0x00,0x0c,0xa6,0x00,0x00,0xa7,0x4e,0x00,0x00,0xa7,0x4f,
2025
+0x00,0x00,0x0c,0xa8,0x00,0x00,0xa7,0x68,0x00,0x00,0xa7,0x69,
2026
+0x00,0x00,0x0c,0xaa,0x00,0x00,0xa7,0x7b,0x00,0x00,0xa7,0x7c,
2027
+0x00,0x00,0x0c,0xac,0x00,0x00,0xa7,0x80,0x00,0x00,0xa7,0x87,
2028
+0x00,0x00,0x0c,0xae,0x00,0x00,0xa7,0x8b,0x00,0x00,0xa7,0x8d,
2029
+0x00,0x00,0x0c,0xb6,0x00,0x00,0xa7,0x90,0x00,0x00,0xa7,0x91,
2030
+0x00,0x00,0x0c,0xb9,0x00,0x00,0xa7,0xaa,0x00,0x00,0xa7,0xaa,
2031
+0x00,0x00,0x0c,0xbb,0x00,0x00,0xa7,0xf8,0x00,0x00,0xa7,0xff,
2032
+0x00,0x00,0x0c,0xbc,0x00,0x00,0xf4,0x00,0x00,0x00,0xf4,0x26,
2033
+0x00,0x00,0x0c,0xc4,0x00,0x00,0xf4,0x28,0x00,0x00,0xf4,0x28,
2034
+0x00,0x00,0x0c,0xeb,0x00,0x00,0xf6,0xc5,0x00,0x00,0xf6,0xc5,
2035
+0x00,0x00,0x0c,0xec,0x00,0x00,0xf6,0xd1,0x00,0x00,0xf6,0xd1,
2036
+0x00,0x00,0x0c,0xed,0x00,0x00,0xf6,0xd4,0x00,0x00,0xf6,0xd4,
2037
+0x00,0x00,0x0c,0xee,0x00,0x00,0xfb,0x00,0x00,0x00,0xfb,0x06,
2038
+0x00,0x00,0x0c,0xef,0x00,0x00,0xfe,0x00,0x00,0x00,0xfe,0x0f,
2039
+0x00,0x00,0x0c,0xf6,0x00,0x00,0xff,0xf9,0x00,0x00,0xff,0xfd,
2040
+0x00,0x00,0x0d,0x06,0x00,0x01,0xd4,0x34,0x00,0x01,0xd4,0x54,
2041
+0x00,0x00,0x0d,0x0b,0x00,0x01,0xd4,0x56,0x00,0x01,0xd4,0x67,
2042
+0x00,0x00,0x0d,0x2c,0x00,0x01,0xd5,0x38,0x00,0x01,0xd5,0x39,
2043
+0x00,0x00,0x0d,0x3e,0x00,0x01,0xd5,0x3b,0x00,0x01,0xd5,0x3e,
2044
+0x00,0x00,0x0d,0x40,0x00,0x01,0xd5,0x40,0x00,0x01,0xd5,0x44,
2045
+0x00,0x00,0x0d,0x44,0x00,0x01,0xd5,0x46,0x00,0x01,0xd5,0x46,
2046
+0x00,0x00,0x0d,0x49,0x00,0x01,0xd5,0x4a,0x00,0x01,0xd5,0x50,
2047
+0x00,0x00,0x0d,0x4a,0x00,0x01,0xd5,0x52,0x00,0x01,0xd5,0x6b,
2048
+0x00,0x00,0x0d,0x51,0x00,0x01,0xd6,0xa4,0x00,0x01,0xd6,0xa5,
2049
+0x00,0x00,0x0d,0x6b,0x00,0x01,0xd7,0xd8,0x00,0x01,0xd7,0xe1,
2050
+0x00,0x00,0x0d,0x6d,0x00,0x06,0x02,0x0a,0x00,0x00,0x00,0x00,
2051
+0x01,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
2052
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x00,
2053
+0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,
2054
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
2055
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
2056
+0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x04,0x00,0x05,
2057
+0x00,0x06,0x00,0x07,0x00,0x08,0x00,0x09,0x00,0x0a,0x00,0x0b,
2058
+0x00,0x0c,0x00,0x0d,0x00,0x0e,0x00,0x0f,0x00,0x10,0x00,0x11,
2059
+0x00,0x12,0x00,0x13,0x00,0x14,0x00,0x15,0x00,0x16,0x00,0x17,
2060
+0x00,0x18,0x00,0x19,0x00,0x1a,0x00,0x1b,0x00,0x1c,0x00,0x1d,
2061
+0x00,0x1e,0x00,0x1f,0x00,0x20,0x00,0x21,0x00,0x22,0x00,0x23,
2062
+0x00,0x24,0x00,0x25,0x00,0x26,0x00,0x27,0x00,0x28,0x00,0x29,
2063
+0x00,0x2a,0x00,0x2b,0x00,0x2c,0x00,0x2d,0x00,0x2e,0x00,0x2f,
2064
+0x00,0x30,0x00,0x31,0x00,0x32,0x00,0x33,0x00,0x34,0x00,0x35,
2065
+0x00,0x36,0x00,0x37,0x00,0x38,0x00,0x39,0x00,0x3a,0x00,0x3b,
2066
+0x00,0x3c,0x00,0x3d,0x00,0x3e,0x00,0x3f,0x00,0x40,0x00,0x41,
2067
+0x00,0x42,0x00,0x43,0x00,0x44,0x00,0x45,0x00,0x46,0x00,0x47,
2068
+0x00,0x48,0x00,0x49,0x00,0x4a,0x00,0x4b,0x00,0x4c,0x00,0x4d,
2069
+0x00,0x4e,0x00,0x4f,0x00,0x50,0x00,0x51,0x00,0x52,0x00,0x53,
2070
+0x00,0x54,0x00,0x55,0x00,0x56,0x00,0x57,0x00,0x58,0x00,0x59,
2071
+0x00,0x5a,0x00,0x5b,0x00,0x5c,0x00,0x5d,0x00,0x5e,0x00,0x5f,
2072
+0x00,0x60,0x00,0x61,0x00,0x00,0x00,0x86,0x00,0x87,0x00,0x89,
2073
+0x00,0x8b,0x00,0x93,0x00,0x98,0x00,0x9e,0x00,0xa3,0x00,0xa2,
2074
+0x00,0xa4,0x00,0xa6,0x00,0xa5,0x00,0xa7,0x00,0xa9,0x00,0xab,
2075
+0x00,0xaa,0x00,0xac,0x00,0xad,0x00,0xaf,0x00,0xae,0x00,0xb0,
2076
+0x00,0xb1,0x00,0xb3,0x00,0xb5,0x00,0xb4,0x00,0xb6,0x00,0xb8,
2077
+0x00,0xb7,0x00,0xbc,0x00,0xbb,0x00,0xbd,0x00,0xbe,0x07,0x8e,
2078
+0x00,0x72,0x00,0x64,0x00,0x65,0x00,0x69,0x07,0x90,0x00,0x78,
2079
+0x00,0xa1,0x00,0x70,0x00,0x6b,0x08,0x04,0x00,0x76,0x00,0x6a,
2080
+0x08,0xf7,0x00,0x88,0x00,0x9a,0x08,0xda,0x00,0x73,0x08,0xf9,
2081
+0x08,0xfa,0x00,0x67,0x00,0x77,0x08,0xc3,0x08,0xce,0x08,0xcc,
2082
+0x03,0x38,0x08,0xe5,0x00,0x6c,0x00,0x7c,0x03,0x21,0x00,0xa8,
2083
+0x00,0xba,0x00,0x81,0x00,0x63,0x00,0x6e,0x08,0xd6,0x01,0x54,
2084
+0x08,0xf0,0x08,0xc6,0x00,0x6d,0x00,0x7d,0x07,0x94,0x00,0x62,
2085
+0x00,0x82,0x00,0x85,0x00,0x97,0x01,0x14,0x01,0x15,0x07,0x81,
2086
+0x07,0x82,0x07,0x8a,0x07,0x8b,0x07,0x86,0x07,0x87,0x00,0xb9,
2087
+0x0a,0x16,0x00,0xc1,0x01,0x3a,0x07,0xaa,0x07,0xf0,0x07,0xa4,
2088
+0x07,0xa5,0x0c,0xf0,0x0c,0xf1,0x07,0x8f,0x00,0x79,0x07,0x88,
2089
+0x07,0x8c,0x07,0x9b,0x00,0x84,0x00,0x8c,0x00,0x83,0x00,0x8d,
2090
+0x00,0x8a,0x00,0x8f,0x00,0x90,0x00,0x91,0x00,0x8e,0x00,0x95,
2091
+0x00,0x96,0x00,0x00,0x00,0x94,0x00,0x9c,0x00,0x9d,0x00,0x9b,
2092
+0x00,0xf3,0x02,0x88,0x02,0x9a,0x00,0x71,0x02,0x96,0x02,0x97,
2093
+0x02,0x98,0x00,0x7a,0x02,0x9b,0x02,0x99,0x02,0x89,0x00,0x00,
2094
+0x01,0x0a,0x00,0x73,0x00,0x02,0x00,0xb8,0x00,0xcb,0x00,0xcb,
2095
+0x00,0xd3,0x00,0x02,0x00,0x4c,0x00,0x6a,0x00,0x71,0x00,0x87,
2096
+0x00,0xa0,0x00,0x02,0x00,0xe5,0x00,0x7b,0x00,0xcb,0x00,0xcb,
2097
+0x00,0xc1,0x04,0x08,0x04,0x08,0x04,0x08,0x00,0x02,0x00,0xd9,
2098
+0x05,0x02,0x00,0xb8,0x00,0xd3,0x00,0xb8,0x01,0x29,0x00,0x6a,
2099
+0x00,0x02,0x00,0x02,0x00,0x02,0x01,0x2f,0x00,0x00,0x00,0x02,
2100
+0x00,0xbe,0x00,0x73,0x00,0x33,0x00,0xb8,0x00,0xe5,0x00,0xcb,
2101
+0x00,0x66,0x00,0x02,0x00,0xa0,0x00,0x62,0x00,0x02,0x00,0x02,
2102
+0x00,0xfa,0x03,0xcd,0x03,0xcd,0x03,0xcd,0x03,0x9a,0x03,0xcd,
2103
+0x02,0x77,0x00,0x02,0x03,0x50,0x03,0x9a,0x03,0x50,0x00,0x00,
2104
+0x00,0x02,0x00,0xa0,0x00,0xb8,0x03,0x3b,0x04,0x04,0x03,0xcd,
2105
+0x04,0x04,0x03,0xcd,0x04,0x04,0x00,0x66,0x00,0x02,0x00,0xcb,
2106
+0x00,0x3d,0x00,0xba,0x00,0xaa,0x00,0x66,0x00,0x02,0x05,0xcd,
2107
+0x00,0x96,0x00,0x00,0x00,0x52,0x00,0xd7,0x00,0xd7,0x00,0x42,
2108
+0x00,0x73,0x00,0x4a,0x00,0xbc,0x00,0xd9,0x01,0x83,0x00,0xa4,
2109
+0x01,0xd5,0x00,0x7d,0x00,0x8d,0x00,0x73,0x04,0x00,0x00,0x00,
2110
+0x00,0x1d,0x01,0x0a,0x05,0xd5,0x00,0x6a,0x00,0x6a,0x00,0x62,
2111
+0x05,0xd5,0x05,0xd5,0x05,0xd5,0x05,0xf0,0x00,0x5c,0x00,0x02,
2112
+0x00,0x02,0x00,0x6a,0x00,0x6a,0x00,0x6a,0x05,0xd5,0x06,0x14,
2113
+0x00,0xa0,0x00,0x6a,0x01,0x0a,0x00,0xbc,0x00,0xcb,0x00,0xa4,
2114
+0x00,0x02,0x00,0x6a,0x00,0x6a,0x01,0x29,0x01,0x52,0x03,0x60,
2115
+0x03,0x66,0x01,0x58,0x00,0x7b,0x00,0x02,0x01,0xaa,0x03,0x48,
2116
+0x00,0x6a,0x00,0x85,0x00,0x6a,0x04,0x60,0x04,0x60,0x04,0x27,
2117
+0x04,0x27,0x04,0x27,0x04,0x44,0x00,0x6a,0x00,0x02,0x00,0x62,
2118
+0x00,0x02,0x00,0x02,0x00,0x02,0x02,0x7b,0x00,0x73,0x00,0x6a,
2119
+0x00,0x02,0x00,0x02,0x00,0x02,0x00,0xcd,0x02,0x5c,0x02,0x29,
2120
+0x04,0x27,0x01,0xaa,0x00,0x5c,0x00,0x6a,0x00,0x6a,0x00,0xcd,
2121
+0x00,0xa0,0x00,0xaa,0x00,0x3d,0x05,0xcd,0x00,0x66,0x00,0xd7,
2122
+0x00,0x48,0x00,0xd7,0x00,0x02,0x00,0x66,0x00,0x02,0x03,0xe9,
2123
+0x00,0xa0,0x03,0x0c,0x00,0x00,0x00,0x19,0x05,0xc1,0x00,0x4a,
2124
+0x07,0x4a,0x06,0x0c,0x01,0x06,0x07,0x7d,0x00,0x54,0x00,0x02,
2125
+0x00,0x7b,0x03,0x33,0x01,0x9a,0x06,0x1d,0x00,0x60,0x00,0x7d,
2126
+0x03,0x54,0x00,0x6a,0x00,0x4e,0x00,0x02,0x00,0x8d,0x00,0x4e,
2127
+0x01,0xd7,0x00,0x73,0x00,0x00,0x14,0x00,0xb6,0x06,0x05,0x04,
2128
+0x03,0x02,0x01,0x00,0x2c,0x20,0x10,0xb0,0x02,0x25,0x49,0x64,
2129
+0xb0,0x40,0x51,0x58,0x20,0xc8,0x59,0x21,0x2d,0x2c,0xb0,0x02,
2130
+0x25,0x49,0x64,0xb0,0x40,0x51,0x58,0x20,0xc8,0x59,0x21,0x2d,
2131
+0x2c,0x20,0x10,0x07,0x20,0xb0,0x00,0x50,0xb0,0x0d,0x79,0x20,
2132
+0xb8,0xff,0xff,0x50,0x58,0x04,0x1b,0x05,0x59,0xb0,0x05,0x1c,
2133
+0xb0,0x03,0x25,0x08,0xb0,0x04,0x25,0x23,0xe1,0x20,0xb0,0x00,
2134
+0x50,0xb0,0x0d,0x79,0x20,0xb8,0xff,0xff,0x50,0x58,0x04,0x1b,
2135
+0x05,0x59,0xb0,0x05,0x1c,0xb0,0x03,0x25,0x08,0xe1,0x2d,0x2c,
2136
+0x4b,0x50,0x58,0x20,0xb0,0xc9,0x45,0x44,0x59,0x21,0x2d,0x2c,
2137
+0xb0,0x02,0x25,0x45,0x60,0x44,0x2d,0x2c,0x4b,0x53,0x58,0xb0,
2138
+0x02,0x25,0xb0,0x02,0x25,0x45,0x44,0x59,0x21,0x21,0x2d,0x2c,
2139
+0x45,0x44,0x2d,0x00,0x00,0x00,0x00,0x02,0x00,0x08,0x00,0x02,
2140
+0xff,0xff,0x00,0x03,0x00,0x02,0x00,0x66,0xfe,0x96,0x04,0x66,
2141
+0x05,0xa4,0x00,0x03,0x00,0x07,0x00,0x1a,0x40,0x0c,0x04,0xc7,
2142
+0x00,0x06,0xc7,0x01,0x08,0x05,0x5d,0x02,0x04,0x00,0x2f,0xc4,
2143
+0xd4,0xec,0x31,0x00,0x10,0xd4,0xec,0xd4,0xec,0x30,0x13,0x11,
2144
+0x21,0x11,0x25,0x21,0x11,0x21,0x66,0x04,0x00,0xfc,0x73,0x03,
2145
+0x1b,0xfc,0xe5,0xfe,0x96,0x07,0x0e,0xf8,0xf2,0x72,0x06,0x29,
2146
+0x00,0x02,0x01,0x17,0xff,0xe3,0x02,0x21,0x05,0xd5,0x00,0x0b,
2147
+0x00,0x11,0x00,0x6d,0x40,0x12,0x0f,0x03,0x61,0x09,0x60,0x0c,
2148
+0x62,0x12,0x0e,0x01,0x10,0x0d,0x06,0x00,0x0c,0x00,0x10,0x12,
2149
+0x10,0xc4,0xd4,0xc4,0xfc,0xc4,0x10,0xee,0x31,0x00,0x10,0xe4,
2150
+0xf4,0xfc,0xc4,0x30,0x40,0x39,0xbf,0x11,0xbf,0x10,0xbf,0x0f,
2151
+0xbf,0x0e,0xaf,0x0f,0xaf,0x0e,0x90,0x11,0x90,0x10,0x80,0x11,
2152
+0x80,0x10,0x70,0x11,0x70,0x10,0x60,0x11,0x60,0x10,0x5f,0x0f,
2153
+0x5f,0x0e,0x4f,0x0f,0x4f,0x0e,0x3f,0x0f,0x3f,0x0e,0x10,0x11,
2154
+0x10,0x10,0x10,0x0f,0x10,0x0e,0x00,0x11,0x00,0x10,0x00,0x0f,
2155
+0x00,0x0e,0x1c,0x01,0x5d,0x40,0x09,0x1f,0x11,0x1f,0x10,0x1f,
2156
+0x0f,0x1f,0x0e,0x04,0x71,0x25,0x34,0x36,0x33,0x32,0x16,0x15,
2157
+0x14,0x06,0x23,0x22,0x26,0x13,0x21,0x03,0x15,0x23,0x35,0x01,
2158
+0x17,0x4c,0x39,0x37,0x4e,0x4e,0x37,0x39,0x4c,0x04,0x01,0x02,
2159
+0x44,0x7b,0x68,0x38,0x4e,0x4e,0x38,0x37,0x4e,0x4d,0x05,0xa5,
2160
+0xfc,0xcb,0xfc,0xfc,0x00,0x02,0x00,0xc9,0x03,0xaa,0x02,0xe5,
2161
+0x05,0xd5,0x00,0x03,0x00,0x07,0x00,0x1a,0x40,0x0b,0x05,0x01,
2162
+0x04,0x00,0x62,0x08,0x04,0x06,0x00,0x02,0x08,0x10,0xd4,0xdc,
2163
+0xd4,0xcc,0x31,0x00,0x10,0xf4,0x3c,0xcc,0x32,0x30,0x01,0x11,
2164
+0x23,0x11,0x21,0x11,0x23,0x11,0x01,0x68,0x9f,0x02,0x1c,0x9f,
2165
+0x05,0xd5,0xfd,0xd5,0x02,0x2b,0xfd,0xd5,0x02,0x2b,0x00,0x00,
2166
+0x00,0x02,0x00,0x9e,0x00,0x00,0x06,0x17,0x05,0xbe,0x00,0x03,
2167
+0x00,0x1f,0x00,0x57,0x40,0x36,0x1d,0x09,0x05,0x63,0x00,0x17,
2168
+0x13,0x0f,0x63,0x02,0x1b,0x0b,0x00,0x07,0x04,0x19,0x0d,0x02,
2169
+0x15,0x11,0x1f,0x1e,0x1c,0x1b,0x1a,0x17,0x16,0x15,0x14,0x01,
2170
+0x05,0x02,0x0c,0x18,0x13,0x11,0x10,0x0e,0x0d,0x0c,0x09,0x08,
2171
+0x07,0x06,0x04,0x03,0x00,0x0d,0x0a,0x12,0x0a,0x18,0x02,0x20,
2172
+0x10,0xf4,0xcc,0xc4,0x11,0x17,0x39,0x11,0x17,0x39,0x31,0x00,
2173
+0x2f,0x3c,0xc4,0x32,0x32,0xd4,0x3c,0xc4,0x32,0x32,0x10,0xee,
2174
+0x32,0x32,0x10,0xee,0x32,0x32,0x30,0x01,0x21,0x03,0x21,0x0b,
2175
+0x01,0x21,0x13,0x33,0x03,0x21,0x15,0x21,0x03,0x21,0x15,0x21,
2176
+0x03,0x23,0x13,0x21,0x03,0x23,0x13,0x21,0x35,0x21,0x13,0x21,
2177
+0x35,0x21,0x13,0x04,0x12,0xfe,0xe6,0x54,0x01,0x1d,0x3c,0x66,
2178
+0x01,0x1a,0x67,0xac,0x69,0x01,0x34,0xfe,0xa5,0x52,0x01,0x3a,
2179
+0xfe,0xa0,0x67,0xac,0x69,0xfe,0xe5,0x68,0xaa,0x66,0xfe,0xcb,
2180
+0x01,0x5c,0x52,0xfe,0xc4,0x01,0x63,0x68,0x03,0x85,0xfe,0xb2,
2181
+0x03,0x87,0xfe,0x61,0x01,0x9f,0xfe,0x61,0x9a,0xfe,0xb2,0x99,
2182
+0xfe,0x62,0x01,0x9e,0xfe,0x62,0x01,0x9e,0x99,0x01,0x4e,0x9a,
2183
+0x01,0x9f,0x00,0x00,0x00,0x03,0x00,0xae,0xfe,0xd3,0x04,0x6d,
2184
+0x06,0x14,0x00,0x06,0x00,0x0d,0x00,0x31,0x00,0x66,0x40,0x39,
2185
+0x06,0x0d,0x14,0x26,0x04,0x21,0x0f,0x2e,0x2d,0x2c,0x0f,0x0e,
2186
+0x13,0x00,0x65,0x2c,0x21,0x20,0x25,0x07,0x65,0x1b,0x1d,0x1a,
2187
+0x2f,0x2c,0x60,0x32,0x22,0x0a,0x20,0x2e,0x1a,0x13,0x03,0x07,
2188
+0x09,0x00,0x10,0x0a,0x0e,0x03,0x06,0x20,0x08,0x29,0x2c,0x25,
2189
+0x1c,0x03,0x00,0x0a,0x06,0x0e,0x17,0x02,0x32,0x10,0xf4,0xc4,
2190
+0xec,0xc4,0x17,0x32,0xd4,0xe4,0xec,0x10,0xee,0x10,0xed,0x17,
2191
+0x32,0x10,0xee,0x31,0x00,0x10,0xe4,0x32,0xd4,0x3c,0xc4,0xec,
2192
+0x32,0xd4,0xc4,0x10,0xee,0x32,0xd6,0xc6,0x10,0xc0,0xc0,0x11,
2193
+0x12,0x17,0x39,0x30,0x25,0x3e,0x01,0x35,0x34,0x26,0x27,0x03,
2194
+0x0e,0x01,0x15,0x14,0x16,0x17,0x01,0x11,0x33,0x1e,0x01,0x17,
2195
+0x11,0x2e,0x01,0x35,0x34,0x36,0x37,0x11,0x33,0x11,0x1e,0x01,
2196
+0x17,0x11,0x23,0x2e,0x01,0x27,0x11,0x1e,0x01,0x15,0x14,0x06,
2197
+0x07,0x11,0x23,0x11,0x2e,0x01,0x02,0xb2,0x71,0x77,0x76,0x72,
2198
+0x64,0x67,0x72,0x69,0x70,0xfe,0x62,0x6c,0x04,0x98,0x96,0xe6,
2199
+0xba,0xdc,0xc4,0x64,0x65,0xbb,0x59,0x6d,0x0c,0x8a,0x76,0xf6,
2200
+0xc5,0xe8,0xd3,0x64,0x60,0xce,0x44,0x0a,0x6e,0x5f,0x56,0x78,
2201
+0x1f,0x02,0x9b,0x07,0x69,0x58,0x50,0x6a,0x21,0xfd,0x48,0x01,
2202
+0x14,0x89,0x8c,0x03,0x01,0xe5,0x40,0xa7,0x8a,0xa0,0xc2,0x0c,
2203
+0x01,0x0c,0xfe,0xf4,0x08,0x31,0x29,0xfe,0xfa,0x74,0x86,0x09,
2204
+0xfe,0x3c,0x43,0xad,0x91,0xa6,0xc8,0x0f,0xfe,0xf2,0x01,0x0e,
2205
+0x02,0x33,0x00,0x00,0x00,0x05,0x00,0x71,0xff,0xe3,0x07,0x29,
2206
+0x05,0xf0,0x00,0x0b,0x00,0x17,0x00,0x23,0x00,0x27,0x00,0x33,
2207
+0x00,0x62,0x40,0x33,0x26,0x03,0x27,0x24,0x27,0x24,0x03,0x25,
2208
+0x26,0x25,0x4d,0x0c,0x6a,0x18,0x06,0x6a,0x2e,0x00,0x6a,0x24,
2209
+0x12,0x6a,0x18,0x26,0x1e,0x60,0x28,0x24,0x69,0x34,0x25,0x15,
2210
+0x0f,0x27,0x09,0x03,0x0f,0x0c,0x21,0x15,0x0c,0x1b,0x09,0x0c,
2211
+0x2b,0x1b,0x03,0x0c,0x31,0x0b,0x34,0x10,0xf4,0xec,0xc4,0xd4,
2212
+0xec,0x10,0xee,0xd6,0xee,0x11,0x12,0x39,0x11,0x12,0x39,0x31,
2213
+0x00,0x10,0xe4,0x32,0xf4,0x3c,0xc4,0xec,0x10,0xee,0xd6,0xee,
2214
+0x10,0xee,0x30,0x4b,0x53,0x58,0x07,0x10,0x05,0xed,0x07,0x10,
2215
+0x05,0xed,0x59,0x22,0x01,0x22,0x06,0x15,0x14,0x16,0x33,0x32,
2216
+0x36,0x35,0x34,0x26,0x01,0x22,0x06,0x15,0x14,0x16,0x33,0x32,
2217
+0x36,0x35,0x34,0x26,0x27,0x32,0x16,0x15,0x14,0x06,0x23,0x22,
2218
+0x26,0x35,0x34,0x36,0x13,0x33,0x01,0x23,0x13,0x32,0x16,0x15,
2219
+0x14,0x06,0x23,0x22,0x26,0x35,0x34,0x36,0x01,0xcb,0x58,0x63,
2220
+0x65,0x56,0x55,0x63,0x63,0x03,0xb1,0x57,0x63,0x64,0x56,0x56,
2221
+0x62,0x63,0x55,0x9e,0xba,0xbb,0x9d,0xa0,0xba,0xbb,0x22,0x98,
2222
+0xfc,0x5a,0x98,0x1b,0x9e,0xbc,0xbb,0x9f,0x9f,0xb9,0xba,0x05,
2223
+0x93,0xa6,0x95,0x93,0xa8,0xa7,0x94,0x94,0xa7,0xfd,0x23,0xa8,
2224
+0x95,0x93,0xa7,0xa7,0x93,0x94,0xa9,0x5a,0xdc,0xbb,0xbb,0xdb,
2225
+0xdb,0xbb,0xbc,0xdb,0x02,0xe0,0xf9,0xf3,0x06,0x0d,0xdb,0xbb,
2226
+0xbd,0xda,0xdb,0xbc,0xba,0xdc,0x00,0x00,0x00,0x02,0x00,0x93,
2227
+0xff,0xe3,0x06,0xbe,0x05,0xf0,0x00,0x09,0x00,0x37,0x00,0xc0,
2228
+0x40,0x65,0x0e,0x0d,0x02,0x0f,0x0c,0x10,0x35,0x36,0x35,0x0b,
2229
+0x10,0x36,0x36,0x35,0x02,0x01,0x03,0x01,0x10,0x29,0x2a,0x29,
2230
+0x08,0x09,0x02,0x07,0x00,0x10,0x2a,0x2a,0x29,0x4d,0x35,0x2a,
2231
+0x0c,0x00,0x36,0x01,0x2d,0x15,0x29,0x1f,0x31,0x2d,0x6f,0x2f,
2232
+0x07,0x6e,0x0f,0x1f,0x6c,0x1e,0x64,0x23,0x6e,0x1b,0x69,0x0f,
2233
+0x60,0x36,0x6f,0x0a,0x29,0x26,0x20,0x2a,0x2e,0x2d,0x1e,0x30,
2234
+0x32,0x0a,0x0c,0x35,0x2d,0x00,0x20,0x1e,0x01,0x15,0x26,0x18,
2235
+0x37,0x0a,0x32,0x20,0x0f,0x1e,0x2d,0x0f,0x32,0x26,0x10,0x1e,
2236
+0x18,0x04,0x0e,0x32,0x12,0x0d,0x38,0x10,0xf4,0xc4,0xec,0xd4,
2237
+0xc4,0xec,0x10,0xee,0x10,0xee,0x10,0xc0,0xc0,0x11,0x12,0x39,
2238
+0x39,0x11,0x12,0x39,0x12,0x39,0x39,0x11,0x12,0x39,0x11,0x12,
2239
+0x39,0x39,0x11,0x12,0x39,0x31,0x00,0x2f,0xee,0xe4,0xf6,0xee,
2240
+0xfe,0xee,0x10,0xee,0xd6,0xee,0x32,0x12,0x39,0x39,0x12,0x39,
2241
+0x11,0x39,0x39,0x39,0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x0e,
2242
+0xed,0x11,0x17,0x39,0x07,0x10,0x0e,0xed,0x11,0x17,0x39,0x07,
2243
+0x10,0x05,0xed,0x07,0x10,0x0e,0xed,0x11,0x17,0x39,0x59,0x22,
2244
+0x25,0x01,0x0e,0x01,0x15,0x14,0x16,0x33,0x32,0x36,0x05,0x21,
2245
+0x27,0x0e,0x01,0x23,0x20,0x00,0x35,0x34,0x36,0x37,0x2e,0x01,
2246
+0x35,0x34,0x36,0x33,0x32,0x16,0x17,0x11,0x23,0x2e,0x01,0x23,
2247
+0x22,0x06,0x15,0x14,0x16,0x17,0x01,0x3e,0x01,0x37,0x23,0x35,
2248
+0x21,0x15,0x23,0x0e,0x01,0x07,0x17,0x33,0x04,0x52,0xfd,0xba,
2249
+0x57,0x57,0xe6,0xac,0x66,0xb5,0x02,0xb3,0xfe,0x6f,0x89,0x69,
2250
+0xee,0x8a,0xfe,0xfe,0xfe,0xd2,0x99,0x9b,0x33,0x30,0xe5,0xc5,
2251
+0x43,0xb3,0x73,0x71,0x0e,0x80,0x6e,0x67,0x80,0x44,0x6c,0x02,
2252
+0x04,0x45,0x4f,0x0a,0xb4,0x01,0xd9,0xac,0x11,0x63,0x53,0xac,
2253
+0xeb,0xe7,0x02,0x65,0x4e,0xb5,0x66,0xa6,0xe1,0x47,0xa3,0x91,
2254
+0x58,0x56,0x01,0x08,0xe2,0x85,0xe7,0x65,0x3d,0x79,0x42,0x9f,
2255
+0xbb,0x22,0x22,0xfe,0xfe,0x6b,0x70,0x71,0x5a,0x3d,0x79,0x71,
2256
+0xfd,0xe0,0x50,0xb9,0x69,0x6b,0x6b,0x82,0xe2,0x60,0xb7,0x00,
2257
+0x00,0x01,0x00,0xc9,0x03,0xaa,0x01,0x68,0x05,0xd5,0x00,0x03,
2258
+0x00,0x11,0xb6,0x01,0x00,0x62,0x04,0x00,0x02,0x04,0x10,0xd4,
2259
+0xcc,0x31,0x00,0x10,0xf4,0xcc,0x30,0x01,0x11,0x23,0x11,0x01,
2260
+0x68,0x9f,0x05,0xd5,0xfd,0xd5,0x02,0x2b,0x00,0x01,0x00,0xa2,
2261
+0xfe,0xc1,0x02,0x8d,0x06,0x14,0x00,0x0d,0x00,0x1c,0x40,0x0d,
2262
+0x07,0x0d,0x00,0x06,0x71,0x0e,0x06,0x00,0x0a,0x11,0x03,0x02,
2263
+0x0e,0x10,0xf4,0xfc,0xc4,0x32,0x31,0x00,0x10,0xfc,0xcc,0x39,
2264
+0x39,0x30,0x01,0x26,0x02,0x11,0x10,0x12,0x37,0x15,0x06,0x02,
2265
+0x11,0x10,0x12,0x17,0x02,0x8d,0xf3,0xf8,0xf8,0xf3,0x9a,0x86,
2266
+0x86,0x9a,0xfe,0xc1,0x6d,0x01,0xd9,0x01,0x63,0x01,0x64,0x01,
2267
+0xd9,0x6d,0x62,0x6a,0xfe,0x7f,0xfe,0xa3,0xfe,0xa4,0xfe,0x7f,
2268
+0x6a,0x00,0x00,0x00,0x00,0x01,0x00,0x91,0xfe,0xc1,0x02,0x7d,
2269
+0x06,0x14,0x00,0x0d,0x00,0x1b,0x40,0x0c,0x07,0x01,0x00,0x08,
2270
+0x71,0x0e,0x0b,0x11,0x07,0x00,0x04,0x0e,0x10,0xd4,0xc4,0x32,
2271
+0xec,0x31,0x00,0x10,0xfc,0xcc,0x39,0x39,0x30,0x13,0x35,0x36,
2272
+0x12,0x11,0x10,0x02,0x27,0x35,0x16,0x12,0x11,0x10,0x02,0x91,
2273
+0x9a,0x87,0x87,0x9a,0xf4,0xf8,0xf8,0xfe,0xc1,0x62,0x6a,0x01,
2274
+0x81,0x01,0x5c,0x01,0x5d,0x01,0x81,0x6a,0x62,0x6d,0xfe,0x27,
2275
+0xfe,0x9c,0xfe,0x9d,0xfe,0x27,0x00,0x00,0x00,0x01,0x00,0x21,
2276
+0x02,0x4c,0x03,0xdf,0x05,0xf0,0x00,0x11,0x00,0x49,0x40,0x2b,
2277
+0x10,0x0d,0x0b,0x0a,0x09,0x07,0x04,0x02,0x01,0x00,0x0a,0x0c,
2278
+0x08,0x03,0x05,0x11,0x0c,0x0e,0x69,0x12,0x08,0x06,0x0e,0x0c,
2279
+0x0a,0x05,0x09,0x07,0x11,0x0f,0x05,0x03,0x01,0x05,0x02,0x00,
2280
+0x10,0x04,0x0b,0x09,0x0d,0x07,0x12,0x10,0xd4,0x3c,0xc4,0x32,
2281
+0xdc,0x3c,0xc4,0x32,0x17,0x39,0x11,0x12,0x17,0x39,0x31,0x00,
2282
+0x10,0xf4,0xc4,0x32,0xdc,0xc4,0x32,0x11,0x17,0x39,0x30,0x01,
2283
+0x0d,0x01,0x07,0x25,0x13,0x23,0x13,0x05,0x27,0x2d,0x01,0x37,
2284
+0x05,0x03,0x33,0x03,0x25,0x03,0xdf,0xfe,0x79,0x01,0x87,0x4c,
2285
+0xfe,0xa4,0x0d,0x88,0x0d,0xfe,0xa4,0x4c,0x01,0x87,0xfe,0x79,
2286
+0x4c,0x01,0x5c,0x0d,0x88,0x0d,0x01,0x5c,0x04,0xd5,0xb6,0xb9,
2287
+0x76,0xd9,0xfe,0x83,0x01,0x7d,0xd9,0x76,0xb7,0xb8,0x77,0xd9,
2288
+0x01,0x7d,0xfe,0x83,0xd9,0x00,0x00,0x00,0x00,0x01,0x00,0xd9,
2289
+0x00,0x00,0x05,0xdb,0x05,0x04,0x00,0x0b,0x00,0x21,0x40,0x0f,
2290
+0x00,0x07,0x03,0x72,0x09,0x01,0x05,0x08,0x04,0x00,0x0c,0x02,
2291
+0x0a,0x06,0x0c,0x10,0xd4,0x3c,0xc4,0xfc,0x3c,0xc4,0x31,0x00,
2292
+0x2f,0xd4,0x3c,0xfc,0x3c,0xc4,0x30,0x01,0x11,0x21,0x15,0x21,
2293
+0x11,0x23,0x11,0x21,0x35,0x21,0x11,0x03,0xaa,0x02,0x31,0xfd,
2294
+0xcf,0xa0,0xfd,0xcf,0x02,0x31,0x05,0x04,0xfd,0xcf,0xa2,0xfd,
2295
+0xcf,0x02,0x31,0xa2,0x02,0x31,0x00,0x00,0x00,0x01,0x00,0x4a,
2296
+0xfe,0xe9,0x01,0xc5,0x00,0xe3,0x00,0x08,0x00,0x1c,0x40,0x0c,
2297
+0x03,0x00,0x08,0x04,0x09,0x08,0x00,0x05,0x12,0x00,0x03,0x09,
2298
+0x10,0xd4,0xc4,0xec,0x12,0x39,0x31,0x00,0x10,0xd4,0xcc,0x39,
2299
+0x39,0x30,0x17,0x3e,0x01,0x3d,0x01,0x33,0x0e,0x01,0x07,0x4a,
2300
+0x5e,0x58,0xc5,0x08,0x91,0x92,0xc7,0x45,0xbb,0x85,0x25,0xab,
2301
+0xf5,0x5a,0x00,0x00,0x00,0x01,0x00,0x5a,0x01,0xd7,0x02,0x5a,
2302
+0x02,0x73,0x00,0x03,0x00,0x10,0xb5,0x02,0x00,0x04,0x01,0x00,
2303
+0x04,0x10,0xd4,0xcc,0x31,0x00,0x10,0xd4,0xcc,0x30,0x13,0x21,
2304
+0x15,0x21,0x5a,0x02,0x00,0xfe,0x00,0x02,0x73,0x9c,0x00,0x00,
2305
+0x00,0x01,0x00,0xc1,0xff,0xe3,0x01,0xcb,0x00,0xee,0x00,0x0b,
2306
+0x00,0x38,0xb4,0x0d,0x06,0x00,0x00,0x0c,0x10,0xd4,0xfc,0xc4,
2307
+0x4b,0xb0,0x13,0x51,0x58,0xb4,0x0a,0x02,0x00,0x08,0x04,0x3c,
2308
+0x3c,0x10,0x3c,0x3c,0x59,0x31,0x00,0xb4,0x03,0x61,0x09,0x60,
2309
+0x0c,0x10,0xf4,0xec,0x4b,0xb0,0x13,0x51,0x58,0xb4,0x05,0x01,
2310
+0x03,0x0b,0x07,0x3c,0x3c,0x10,0x3c,0x3c,0x59,0x30,0x37,0x34,
2311
+0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0xc1,0x4c,
2312
+0x39,0x37,0x4e,0x4e,0x37,0x39,0x4c,0x68,0x38,0x4e,0x4e,0x38,
2313
+0x37,0x4e,0x4d,0x00,0x00,0x01,0x00,0x00,0xff,0x42,0x02,0xb2,
2314
+0x05,0xd5,0x00,0x03,0x00,0x2a,0x40,0x11,0x02,0x03,0x00,0x03,
2315
+0x00,0x01,0x02,0x01,0x4d,0x02,0x00,0x69,0x04,0x02,0x00,0x01,
2316
+0x03,0x2f,0xcc,0x39,0x39,0x31,0x00,0x10,0xf4,0xcc,0x30,0x4b,
2317
+0x53,0x58,0x07,0x10,0x05,0xc9,0x07,0x10,0x05,0xc9,0x59,0x22,
2318
+0x01,0x33,0x01,0x23,0x02,0x12,0xa0,0xfd,0xee,0xa0,0x05,0xd5,
2319
+0xf9,0x6d,0x00,0x00,0x00,0x02,0x00,0x87,0xff,0xe3,0x04,0x8f,
2320
+0x05,0xf0,0x00,0x0b,0x00,0x17,0x00,0x23,0x40,0x13,0x00,0x65,
2321
+0x0c,0x06,0x65,0x12,0x69,0x0c,0x60,0x18,0x03,0x06,0x15,0x14,
2322
+0x09,0x06,0x0f,0x0b,0x18,0x10,0xf4,0xec,0xf4,0xec,0x31,0x00,
2323
+0x10,0xe4,0xf4,0xec,0x10,0xee,0x30,0x25,0x32,0x12,0x11,0x10,
2324
+0x02,0x23,0x22,0x02,0x11,0x10,0x12,0x17,0x22,0x00,0x11,0x10,
2325
+0x00,0x33,0x32,0x00,0x11,0x10,0x00,0x02,0x8b,0x99,0x98,0x98,
2326
+0x99,0x99,0x98,0x98,0x99,0xf3,0xfe,0xef,0x01,0x11,0xf3,0xf4,
2327
+0x01,0x10,0xfe,0xf0,0x46,0x01,0x50,0x01,0x53,0x01,0x54,0x01,
2328
+0x50,0xfe,0xb0,0xfe,0xac,0xfe,0xad,0xfe,0xb0,0x63,0x01,0x98,
2329
+0x01,0x6e,0x01,0x6f,0x01,0x98,0xfe,0x68,0xfe,0x91,0xfe,0x92,
2330
+0xfe,0x68,0x00,0x00,0x00,0x01,0x00,0xfa,0x00,0x00,0x03,0xf4,
2331
+0x05,0xf0,0x00,0x0a,0x00,0x78,0x40,0x1c,0x04,0x64,0x05,0x06,
2332
+0x05,0x03,0x64,0x06,0x05,0x4d,0x03,0x06,0x04,0x01,0x05,0x06,
2333
+0x69,0x08,0x01,0x73,0x00,0x09,0x07,0x11,0x04,0x00,0x02,0x0b,
2334
+0x10,0xd4,0xc4,0xc4,0xfc,0xc4,0x31,0x00,0x2f,0xec,0x32,0xf4,
2335
+0xc4,0x11,0x39,0x11,0x39,0x30,0x4b,0x53,0x58,0x07,0x04,0xed,
2336
+0x07,0x10,0x04,0xed,0x59,0x22,0x01,0x4b,0xb0,0x0a,0x54,0x58,
2337
+0xbd,0x00,0x0b,0x00,0x40,0x00,0x01,0x00,0x0b,0x00,0x0b,0xff,
2338
+0xc0,0x38,0x11,0x37,0x38,0x59,0x40,0x09,0x20,0x00,0x20,0x01,
2339
+0x2f,0x09,0x2f,0x0a,0x04,0x5d,0x01,0x4b,0xb0,0x0b,0x54,0x58,
2340
+0xbd,0x00,0x0b,0xff,0xc0,0x00,0x01,0x00,0x0b,0x00,0x0b,0x00,
2341
+0x40,0x38,0x11,0x37,0x38,0x59,0x21,0x35,0x21,0x11,0x05,0x35,
2342
+0x25,0x33,0x11,0x21,0x15,0x01,0x23,0x01,0x04,0xfe,0xd3,0x01,
2343
+0x6c,0x8a,0x01,0x04,0x6a,0x04,0xda,0xc3,0x83,0xec,0xfa,0x7a,
2344
+0x6a,0x00,0x00,0x00,0x00,0x01,0x00,0x8b,0x00,0x00,0x04,0x4e,
2345
+0x05,0xf0,0x00,0x1c,0x00,0x4d,0x40,0x21,0x0c,0x14,0x00,0x0f,
2346
+0x0d,0x00,0x74,0x02,0x64,0x1a,0x65,0x05,0x69,0x0d,0x77,0x11,
2347
+0x14,0x0d,0x0c,0x17,0x00,0x0a,0x01,0x17,0x06,0x08,0x0e,0x0a,
2348
+0x10,0x01,0x12,0x0b,0x1d,0x10,0xf4,0xc4,0xd4,0xec,0xd4,0xec,
2349
+0x10,0xee,0x11,0x39,0x39,0x39,0x31,0x00,0x2f,0xee,0xf6,0xee,
2350
+0xfe,0xee,0x10,0xc4,0x11,0x39,0x39,0x30,0x40,0x0b,0x46,0x0a,
2351
+0x46,0x0b,0x46,0x0c,0x46,0x14,0x46,0x15,0x05,0x01,0x5d,0x01,
2352
+0x23,0x11,0x3e,0x01,0x33,0x32,0x04,0x15,0x14,0x01,0x06,0x07,
2353
+0x01,0x21,0x35,0x33,0x11,0x21,0x35,0x01,0x3e,0x01,0x35,0x34,
2354
+0x26,0x23,0x22,0x06,0x01,0x06,0x70,0x6b,0xd9,0x68,0xe9,0x01,
2355
+0x0e,0xfe,0xce,0x18,0x0c,0xfe,0x87,0x02,0x6f,0x75,0xfc,0x3d,
2356
+0x01,0xc5,0x96,0x80,0x9d,0x8a,0x8f,0x9c,0x04,0x71,0x01,0x0a,
2357
+0x39,0x3c,0xe2,0xc2,0xdb,0xfe,0xcf,0x17,0x0c,0xfe,0x87,0xb8,
2358
+0xfe,0xa4,0x6d,0x01,0xc4,0x96,0xfb,0x8a,0x97,0xaa,0x8e,0x00,
2359
+0x00,0x01,0x00,0x9c,0xff,0xe3,0x04,0x7f,0x05,0xf0,0x00,0x2a,
2360
+0x00,0x4d,0x40,0x2b,0x09,0x1d,0x65,0x1f,0x13,0x74,0x12,0x65,
2361
+0x17,0x65,0x1f,0x0f,0x29,0x74,0x00,0x65,0x26,0x65,0x03,0x69,
2362
+0x0f,0x60,0x2b,0x20,0x1e,0x09,0x1d,0x23,0x29,0x0a,0x00,0x23,
2363
+0x06,0x06,0x1a,0x06,0x0c,0x14,0x0a,0x00,0x12,0x02,0x2b,0x10,
2364
+0xf4,0xc4,0xec,0xd4,0xec,0xd4,0xec,0x10,0xee,0x11,0x39,0x39,
2365
+0x39,0x39,0x31,0x00,0x10,0xe4,0xf4,0xec,0xfc,0xec,0x10,0xc6,
2366
+0xee,0xfe,0xee,0x10,0xee,0x39,0x30,0x13,0x3e,0x01,0x33,0x32,
2367
+0x16,0x15,0x14,0x06,0x07,0x1e,0x01,0x15,0x14,0x04,0x21,0x22,
2368
+0x26,0x27,0x11,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x34,0x26,
2369
+0x2b,0x01,0x35,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x22,0x06,
2370
+0x07,0x23,0xc7,0x75,0xd7,0x5e,0xdb,0xf6,0xaa,0x9c,0xb8,0xcb,
2371
+0xfe,0xe7,0xfe,0xf8,0x75,0xdf,0x6e,0x70,0x0a,0xae,0x9e,0x99,
2372
+0xb1,0xb6,0xb0,0x5f,0x32,0xaf,0xaf,0x90,0x87,0x87,0x95,0x0d,
2373
+0x70,0x05,0x96,0x2c,0x2e,0xbd,0xa8,0x87,0xb5,0x20,0x1a,0xd7,
2374
+0xab,0xd1,0xdf,0x32,0x33,0x01,0x22,0x90,0x94,0xb1,0x9a,0xb0,
2375
+0xb5,0x66,0x91,0x92,0x83,0x8b,0x80,0x7e,0x00,0x02,0x00,0x3f,
2376
+0x00,0x00,0x04,0xb0,0x05,0xf0,0x00,0x02,0x00,0x11,0x00,0x9f,
2377
+0x40,0x25,0x02,0x64,0x09,0x0a,0x09,0x01,0x64,0x0a,0x0a,0x09,
2378
+0x4d,0x01,0x0a,0x0c,0x00,0x73,0x0e,0x07,0x10,0x05,0x73,0x0a,
2379
+0x69,0x03,0x02,0x08,0x04,0x06,0x00,0x11,0x0d,0x03,0x0f,0x0b,
2380
+0x08,0x02,0x12,0x10,0xf4,0xd4,0x3c,0xc4,0xc4,0xfc,0x3c,0xc4,
2381
+0x11,0x39,0x31,0x00,0x2f,0xe4,0xfc,0x3c,0xd4,0x3c,0xec,0x32,
2382
+0x11,0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x04,0xed,0x07,0x10,
2383
+0x05,0xed,0x59,0x22,0xb2,0x2f,0x09,0x01,0x01,0x5d,0xb6,0x20,
2384
+0x09,0x20,0x0d,0x20,0x0e,0x03,0x5d,0x01,0x4b,0xb0,0x0b,0x54,
2385
+0x4b,0xb0,0x0c,0x54,0x5b,0x4b,0xb0,0x0d,0x54,0x5b,0x4b,0xb0,
2386
+0x0f,0x54,0x5b,0x58,0xbd,0x00,0x12,0xff,0xc0,0x00,0x01,0x00,
2387
+0x12,0x00,0x12,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x40,0x18,
2388
+0x0b,0x01,0x1a,0x01,0x38,0x01,0x49,0x01,0x04,0x06,0x02,0x16,
2389
+0x02,0x28,0x0a,0x36,0x02,0x38,0x0a,0x47,0x02,0x48,0x0a,0x07,
2390
+0x5d,0x00,0x5d,0x01,0x11,0x09,0x01,0x21,0x35,0x33,0x11,0x21,
2391
+0x35,0x01,0x33,0x11,0x21,0x15,0x21,0x11,0x33,0x02,0xcb,0xfe,
2392
+0x02,0x03,0xb6,0xfd,0x58,0xf0,0xfd,0x74,0x02,0x8e,0xc6,0x01,
2393
+0x1d,0xfe,0xe3,0xf0,0x01,0xfa,0x03,0x1a,0xfc,0xe6,0xfe,0x06,
2394
+0x6a,0x01,0x25,0x6d,0x03,0xf4,0xfc,0x0a,0x6b,0xfe,0xdb,0x00,
2395
+0x00,0x01,0x00,0xae,0xff,0xe3,0x04,0x79,0x05,0xd5,0x00,0x1f,
2396
+0x00,0xad,0x40,0x25,0x03,0x06,0x1d,0x78,0x1a,0x65,0x06,0x10,
2397
+0x74,0x0f,0x65,0x14,0x65,0x06,0x0c,0x01,0x77,0x00,0x62,0x0c,
2398
+0x60,0x20,0x1d,0x11,0x02,0x0a,0x1e,0x00,0x17,0x06,0x09,0x1e,
2399
+0x11,0x0a,0x0f,0x02,0x20,0x10,0xf4,0xec,0xc4,0xd4,0xec,0xc4,
2400
+0x10,0xee,0x11,0x39,0x31,0x00,0x10,0xe4,0xf4,0xec,0x10,0xc6,
2401
+0xee,0xfe,0xee,0x10,0xfe,0xe4,0x12,0x39,0x30,0x01,0x4b,0xb0,
2402
+0x09,0x54,0x4b,0xb0,0x0b,0x54,0x5b,0x4b,0xb0,0x0f,0x54,0x5b,
2403
+0x58,0xbd,0x00,0x20,0xff,0xc0,0x00,0x01,0x00,0x20,0x00,0x20,
2404
+0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x01,0x4b,0xb0,0x12,0x54,
2405
+0x4b,0xb0,0x13,0x54,0x5b,0x58,0xbd,0x00,0x20,0x00,0x40,0x00,
2406
+0x01,0x00,0x20,0x00,0x20,0xff,0xc0,0x38,0x11,0x37,0x38,0x59,
2407
+0x40,0x26,0x0f,0x03,0x0f,0x04,0x0f,0x05,0x0f,0x06,0x0f,0x07,
2408
+0x0f,0x08,0x0f,0x19,0x0f,0x1a,0x0f,0x1b,0x0f,0x1c,0x0f,0x1d,
2409
+0x0f,0x1e,0x0c,0x0f,0x00,0x0f,0x01,0x1f,0x00,0x1f,0x01,0x2f,
2410
+0x00,0x2f,0x01,0x06,0x5d,0x00,0x5d,0x01,0x15,0x21,0x11,0x3e,
2411
+0x01,0x33,0x32,0x00,0x15,0x14,0x00,0x21,0x22,0x26,0x27,0x11,
2412
+0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x22,0x06,
2413
+0x07,0x23,0x11,0x04,0x06,0xfd,0x54,0x34,0x8b,0x56,0xf2,0x01,
2414
+0x18,0xfe,0xe5,0xff,0x00,0x67,0xd8,0x71,0x71,0x09,0xa3,0x93,
2415
+0x9e,0xaa,0xa9,0x9f,0x5a,0x89,0x35,0x56,0x05,0xd5,0xa4,0xfe,
2416
+0x54,0x24,0x24,0xfe,0xf4,0xe8,0xed,0xfe,0xf7,0x32,0x33,0x01,
2417
+0x22,0x8e,0x96,0xd0,0xc3,0xc2,0xcf,0x40,0x43,0x02,0xee,0x00,
2418
+0x00,0x02,0x00,0x89,0xff,0xe3,0x04,0x96,0x05,0xf0,0x00,0x0b,
2419
+0x00,0x25,0x00,0x63,0x40,0x22,0x0c,0x00,0x06,0x65,0x0f,0x00,
2420
+0x65,0x15,0x1f,0x6c,0x1e,0x79,0x23,0x65,0x1b,0x69,0x15,0x60,
2421
+0x26,0x20,0x0a,0x1e,0x16,0x03,0x06,0x12,0x15,0x0c,0x06,0x09,
2422
+0x05,0x18,0x0b,0x26,0x10,0xf4,0xec,0xec,0xf4,0xec,0xf4,0xec,
2423
+0x31,0x00,0x10,0xe4,0xf4,0xec,0xfc,0xec,0x10,0xee,0xd6,0xee,
2424
+0x11,0x39,0x30,0x40,0x25,0x09,0x0c,0x09,0x0d,0x11,0x04,0x10,
2425
+0x05,0x10,0x06,0x10,0x07,0x11,0x08,0x13,0x0c,0x13,0x0d,0x10,
2426
+0x0e,0x10,0x0f,0x10,0x10,0x11,0x11,0x29,0x0c,0x29,0x0d,0x4e,
2427
+0x1f,0x4e,0x20,0x4e,0x21,0x12,0x5d,0x25,0x32,0x36,0x35,0x34,
2428
+0x26,0x23,0x22,0x06,0x15,0x14,0x16,0x03,0x3e,0x01,0x33,0x32,
2429
+0x00,0x15,0x14,0x00,0x23,0x22,0x00,0x11,0x10,0x00,0x21,0x32,
2430
+0x16,0x17,0x15,0x23,0x2e,0x01,0x23,0x22,0x02,0x02,0x9e,0x8d,
2431
+0x98,0x98,0x8d,0x8f,0x96,0x98,0xb9,0x44,0xac,0x6c,0xdf,0x01,
2432
+0x03,0xfe,0xe9,0xe9,0xfd,0xfe,0xf0,0x01,0x42,0x01,0x25,0x4f,
2433
+0xae,0x5b,0x71,0x0c,0x82,0x6e,0xc2,0xbe,0x46,0xcf,0xc2,0xc2,
2434
+0xcf,0xc8,0xbd,0xc7,0xd6,0x02,0xf0,0x4b,0x4a,0xfe,0xf4,0xe8,
2435
+0xe3,0xfe,0xef,0x01,0x79,0x01,0x5e,0x01,0x88,0x01,0xae,0x1e,
2436
+0x1e,0xf6,0x65,0x6a,0xfe,0xda,0x00,0x00,0x00,0x01,0x00,0xac,
2437
+0x00,0x00,0x04,0x83,0x05,0xd5,0x00,0x08,0x00,0x72,0x40,0x1d,
2438
+0x03,0x03,0x00,0x01,0x00,0x02,0x03,0x01,0x01,0x00,0x4d,0x05,
2439
+0x01,0x03,0x77,0x07,0x62,0x01,0x03,0x02,0x01,0x03,0x00,0x04,
2440
+0x0a,0x00,0x06,0x02,0x09,0x10,0xf4,0xc4,0xec,0x11,0x17,0x39,
2441
+0x31,0x00,0x2f,0xf4,0xec,0x11,0x39,0x30,0x4b,0x53,0x58,0x07,
2442
+0x10,0x05,0xed,0x07,0x10,0x05,0xed,0x59,0x22,0x01,0x4b,0xb0,
2443
+0x09,0x54,0x58,0xbd,0x00,0x09,0xff,0xc0,0x00,0x01,0x00,0x09,
2444
+0x00,0x09,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x01,0x4b,0xb0,
2445
+0x12,0x54,0x58,0xbd,0x00,0x09,0x00,0x40,0x00,0x01,0x00,0x09,
2446
+0x00,0x09,0xff,0xc0,0x38,0x11,0x37,0x38,0x59,0xb4,0x17,0x01,
2447
+0x18,0x03,0x02,0x5d,0x09,0x01,0x23,0x01,0x21,0x15,0x23,0x11,
2448
+0x21,0x04,0x83,0xfd,0xb8,0x95,0x02,0x2d,0xfd,0x4e,0x75,0x03,
2449
+0xd7,0x05,0x6f,0xfa,0x91,0x05,0x31,0xb8,0x01,0x5c,0x00,0x00,
2450
+0x00,0x03,0x00,0x89,0xff,0xe3,0x04,0x8d,0x05,0xf0,0x00,0x0b,
2451
+0x00,0x17,0x00,0x2f,0x00,0x3e,0x40,0x22,0x24,0x18,0x03,0x65,
2452
+0x15,0x09,0x65,0x1e,0x0f,0x65,0x2a,0x69,0x1e,0x60,0x30,0x24,
2453
+0x18,0x0c,0x12,0x05,0x27,0x0c,0x05,0x2d,0x00,0x06,0x1b,0x15,
2454
+0x06,0x06,0x27,0x21,0x0b,0x30,0x10,0xf4,0xc4,0xec,0xf4,0xec,
2455
+0xd4,0xec,0x10,0xee,0x11,0x39,0x39,0x31,0x00,0x10,0xe4,0xf4,
2456
+0xec,0x10,0xee,0xd6,0xee,0x39,0x39,0x30,0x01,0x34,0x26,0x23,
2457
+0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x03,0x34,0x26,0x23,
2458
+0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x07,0x1e,0x01,0x15,
2459
+0x14,0x04,0x23,0x22,0x24,0x35,0x34,0x36,0x37,0x2e,0x01,0x35,
2460
+0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x03,0xba,0x9f,0x90,
2461
+0x90,0x9f,0x9f,0x90,0x90,0x9f,0x29,0x8a,0x7c,0x7b,0x8b,0x8b,
2462
+0x7b,0x7c,0x8a,0x6c,0xaa,0xbe,0xfe,0xf6,0xf8,0xf7,0xfe,0xf5,
2463
+0xbe,0xab,0x97,0xa1,0xf8,0xd9,0xd9,0xf8,0xa1,0x01,0x98,0xa0,
2464
+0xb1,0xb1,0xa0,0xa1,0xb1,0xb1,0x03,0x76,0x88,0x98,0x98,0x88,
2465
+0x89,0x98,0x98,0xc9,0x17,0xcd,0x9f,0xd2,0xe3,0xe3,0xd2,0x9f,
2466
+0xcd,0x17,0x1b,0xaf,0x88,0xb4,0xcf,0xcf,0xb4,0x88,0xaf,0x00,
2467
+0x00,0x02,0x00,0x81,0xff,0xe3,0x04,0x8d,0x05,0xf0,0x00,0x19,
2468
+0x00,0x25,0x00,0x5d,0x40,0x24,0x00,0x1a,0x20,0x65,0x03,0x13,
2469
+0x6c,0x12,0x79,0x17,0x65,0x0f,0x03,0x1a,0x65,0x09,0x69,0x0f,
2470
+0x60,0x26,0x14,0x0a,0x12,0x00,0x06,0x23,0x05,0x0c,0x15,0x1d,
2471
+0x06,0x12,0x16,0x06,0x0b,0x26,0x10,0xf4,0xe4,0xec,0xf4,0xec,
2472
+0xec,0x10,0xee,0x31,0x00,0x10,0xe4,0xf4,0xec,0xc4,0x10,0xee,
2473
+0xfe,0xee,0x10,0xee,0x11,0x39,0x30,0x40,0x1b,0x1f,0x01,0x1f,
2474
+0x02,0x1f,0x03,0x1f,0x04,0x1f,0x05,0x1f,0x1e,0x1f,0x1f,0x1f,
2475
+0x20,0x1f,0x21,0x1f,0x22,0x41,0x13,0x41,0x14,0x41,0x15,0x0d,
2476
+0x5d,0x01,0x0e,0x01,0x23,0x22,0x00,0x35,0x34,0x00,0x33,0x32,
2477
+0x00,0x11,0x10,0x00,0x21,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,
2478
+0x33,0x32,0x12,0x01,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,
2479
+0x35,0x34,0x26,0x03,0xbe,0x43,0xae,0x6d,0xde,0xfe,0xff,0x01,
2480
+0x17,0xe9,0xfd,0x01,0x0f,0xfe,0xbe,0xfe,0xdc,0x4f,0xae,0x5b,
2481
+0x70,0x0d,0x82,0x6d,0xc2,0xbe,0xfe,0xbe,0x8e,0x97,0x97,0x8e,
2482
+0x8e,0x97,0x98,0x02,0x9d,0x4b,0x4a,0x01,0x0c,0xe8,0xe3,0x01,
2483
+0x11,0xfe,0x87,0xfe,0xa2,0xfe,0x78,0xfe,0x52,0x1e,0x1e,0xf8,
2484
+0x65,0x6c,0x01,0x25,0x04,0x22,0xcf,0xc2,0xc2,0xd0,0xc9,0xbd,
2485
+0xc7,0xd6,0x00,0x00,0x00,0x02,0x00,0xd5,0xff,0xe3,0x01,0xdf,
2486
+0x03,0x79,0x00,0x0b,0x00,0x17,0x00,0x1f,0x40,0x0f,0x03,0x61,
2487
+0x09,0x15,0x61,0x0f,0x09,0x60,0x18,0x12,0x06,0x00,0x0c,0x00,
2488
+0x18,0x10,0xd4,0x3c,0xec,0x32,0x31,0x00,0x10,0xe4,0xd4,0xec,
2489
+0x10,0xee,0x30,0x37,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,
2490
+0x23,0x22,0x26,0x11,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,
2491
+0x23,0x22,0x26,0xd5,0x4d,0x38,0x38,0x4d,0x4c,0x39,0x39,0x4c,
2492
+0x4d,0x38,0x39,0x4c,0x4c,0x39,0x38,0x4d,0x68,0x38,0x4e,0x4e,
2493
+0x38,0x38,0x4d,0x4d,0x02,0xc4,0x38,0x4d,0x4c,0x39,0x39,0x4c,
2494
+0x4d,0x00,0x00,0x00,0x00,0x02,0x00,0x4a,0xfe,0xe9,0x01,0xe3,
2495
+0x03,0x79,0x00,0x08,0x00,0x14,0x00,0x22,0x40,0x10,0x03,0x00,
2496
+0x08,0x04,0x12,0x61,0x0c,0x04,0x15,0x09,0x00,0x0f,0x05,0x12,
2497
+0x03,0x15,0x10,0xd4,0xfc,0xd4,0xec,0x31,0x00,0x10,0xc4,0xd4,
2498
+0xec,0x10,0xce,0x39,0x39,0x30,0x17,0x3e,0x01,0x3d,0x01,0x33,
2499
+0x0e,0x01,0x07,0x13,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,
2500
+0x23,0x22,0x26,0x4a,0x5e,0x58,0xc5,0x08,0x91,0x92,0x3f,0x4d,
2501
+0x38,0x38,0x4d,0x4d,0x38,0x38,0x4d,0xc7,0x45,0xbb,0x85,0x25,
2502
+0xab,0xf5,0x5a,0x04,0x0b,0x38,0x4d,0x4e,0x37,0x38,0x4d,0x4d,
2503
+0x00,0x01,0x00,0xd9,0x00,0x5e,0x05,0xdb,0x04,0xa6,0x00,0x06,
2504
+0x00,0x1f,0x40,0x10,0x05,0x04,0x02,0x01,0x00,0x05,0x03,0x06,
2505
+0x07,0x01,0x02,0x00,0x18,0x04,0x17,0x07,0x10,0xf4,0xec,0x32,
2506
+0x39,0x31,0x00,0x10,0xd4,0xcc,0x17,0x39,0x30,0x09,0x02,0x15,
2507
+0x01,0x35,0x01,0x05,0xdb,0xfb,0xf2,0x04,0x0e,0xfa,0xfe,0x05,
2508
+0x02,0x03,0xfc,0xfe,0x85,0xfe,0x87,0xaa,0x01,0xd1,0xa6,0x01,
2509
+0xd1,0x00,0x00,0x00,0x00,0x02,0x00,0xd9,0x01,0x66,0x05,0xdb,
2510
+0x03,0x9e,0x00,0x03,0x00,0x07,0x00,0x1d,0x40,0x0e,0x02,0x72,
2511
+0x00,0x06,0x72,0x04,0x08,0x05,0x01,0x18,0x04,0x00,0x17,0x08,
2512
+0x10,0xf4,0x3c,0xec,0x32,0x31,0x00,0x10,0xd4,0xec,0xd4,0xec,
2513
+0x30,0x13,0x21,0x15,0x21,0x15,0x21,0x15,0x21,0xd9,0x05,0x02,
2514
+0xfa,0xfe,0x05,0x02,0xfa,0xfe,0x03,0x9e,0xa0,0xf8,0xa0,0x00,
2515
+0x00,0x01,0x00,0xd9,0x00,0x5e,0x05,0xdb,0x04,0xa6,0x00,0x06,
2516
+0x00,0x1f,0x40,0x10,0x06,0x05,0x03,0x02,0x00,0x05,0x04,0x01,
2517
+0x07,0x06,0x02,0x18,0x04,0x00,0x17,0x07,0x10,0xf4,0x3c,0xec,
2518
+0x39,0x31,0x00,0x10,0xd4,0xcc,0x17,0x39,0x30,0x13,0x35,0x01,
2519
+0x15,0x01,0x35,0x01,0xd9,0x05,0x02,0xfa,0xfe,0x04,0x0e,0x03,
2520
+0xfc,0xaa,0xfe,0x2f,0xa6,0xfe,0x2f,0xaa,0x01,0x79,0x00,0x00,
2521
+0x00,0x02,0x00,0x8b,0xff,0xe3,0x03,0xe7,0x05,0xf0,0x00,0x0b,
2522
+0x00,0x22,0x00,0x3c,0x40,0x20,0x16,0x03,0x61,0x09,0x18,0x15,
2523
+0x21,0x0c,0x1e,0x65,0x15,0x0f,0x69,0x09,0x60,0x23,0x06,0x00,
2524
+0x00,0x1b,0x1a,0x12,0x15,0x01,0x00,0x17,0x12,0x21,0x01,0x0c,
2525
+0x02,0x23,0x10,0xf4,0xec,0xc4,0xd4,0xc4,0xec,0x10,0xee,0x10,
2526
+0xee,0x31,0x00,0x10,0xe4,0xf4,0xc4,0xec,0xd4,0xc4,0x10,0xce,
2527
+0x10,0xfe,0xc5,0x30,0x25,0x34,0x36,0x33,0x32,0x16,0x15,0x14,
2528
+0x06,0x23,0x22,0x26,0x03,0x3e,0x01,0x33,0x32,0x04,0x15,0x14,
2529
+0x06,0x07,0x15,0x23,0x11,0x3e,0x01,0x35,0x34,0x26,0x23,0x22,
2530
+0x06,0x07,0x23,0x01,0x68,0x4d,0x39,0x37,0x4e,0x4e,0x37,0x39,
2531
+0x4d,0xdd,0x6a,0xbf,0x54,0xde,0x01,0x01,0xdd,0xdf,0x7b,0xb1,
2532
+0xb3,0x92,0x7e,0x72,0x91,0x15,0x61,0x68,0x38,0x4e,0x4e,0x38,
2533
+0x37,0x4e,0x4d,0x05,0x63,0x2f,0x2e,0xd6,0xb6,0xba,0xec,0x33,
2534
+0xfe,0x01,0x48,0x2b,0xca,0x9c,0x89,0x9e,0x83,0x7b,0x00,0x00,
2535
+0x00,0x02,0x00,0x87,0xfe,0x9c,0x07,0x6f,0x05,0xa2,0x00,0x40,
2536
+0x00,0x4d,0x00,0x6d,0x40,0x3b,0x42,0x41,0x4b,0x45,0x27,0x4e,
2537
+0x24,0x0c,0x00,0x4b,0x45,0x28,0x24,0x03,0x0d,0x45,0x7a,0x09,
2538
+0x4b,0x7a,0x0f,0x7a,0x40,0x03,0x7c,0x24,0x7a,0x2b,0x09,0x7c,
2539
+0x18,0x7a,0x2b,0x37,0x4e,0x27,0x28,0x12,0x0e,0x48,0x1b,0x06,
2540
+0x41,0x0c,0x00,0x1b,0x0e,0x1c,0x12,0x1d,0x3d,0x06,0x1c,0x1e,
2541
+0x1b,0x3d,0x31,0x02,0x4e,0x10,0xf4,0xc4,0xfc,0xec,0x10,0xfe,
2542
+0xfd,0xee,0x32,0x32,0x10,0xee,0x11,0x12,0x39,0x39,0x31,0x00,
2543
+0x10,0xd4,0xc4,0xfc,0xec,0x10,0xfe,0xfd,0x3c,0xee,0xee,0x10,
2544
+0xee,0xc4,0x11,0x12,0x39,0x11,0x12,0x39,0x39,0x11,0x12,0x39,
2545
+0x11,0x12,0x39,0x39,0x30,0x25,0x0e,0x01,0x23,0x22,0x26,0x35,
2546
+0x34,0x36,0x33,0x32,0x16,0x17,0x35,0x33,0x11,0x3e,0x01,0x35,
2547
+0x34,0x26,0x27,0x26,0x24,0x23,0x22,0x06,0x07,0x06,0x02,0x15,
2548
+0x14,0x12,0x17,0x16,0x04,0x33,0x32,0x36,0x37,0x17,0x06,0x04,
2549
+0x23,0x22,0x24,0x27,0x26,0x02,0x35,0x34,0x12,0x37,0x36,0x24,
2550
+0x33,0x32,0x04,0x17,0x1e,0x01,0x15,0x10,0x00,0x05,0x03,0x35,
2551
+0x34,0x26,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x05,
2552
+0x0e,0x3b,0x93,0x5d,0xaf,0xda,0xda,0xaf,0x5d,0x93,0x3b,0x9c,
2553
+0xaa,0xbc,0x44,0x43,0x6a,0xfe,0xcf,0xb3,0x5a,0xb0,0x56,0xca,
2554
+0xe0,0x64,0x5f,0x6d,0x01,0x2b,0xad,0x81,0xe0,0x60,0x35,0x6c,
2555
+0xfe,0xee,0xa3,0xb7,0xfe,0xb3,0x7d,0x81,0x85,0x86,0x80,0x7f,
2556
+0x01,0x59,0xc2,0xd6,0x01,0x61,0x77,0x4c,0x4e,0xfe,0xba,0xfe,
2557
+0xe6,0x01,0x8f,0x73,0x79,0x87,0x88,0x7a,0x72,0x8e,0xf8,0x52,
2558
+0x50,0xfa,0xc9,0xc9,0xf9,0x50,0x52,0x8e,0xfc,0xfc,0x25,0xfa,
2559
+0xbc,0x6f,0xc6,0x54,0x85,0x8d,0x26,0x27,0x5d,0xfe,0x87,0xf7,
2560
+0xa7,0xfe,0xe7,0x67,0x77,0x7d,0x4c,0x4c,0x46,0x5d,0x5d,0x85,
2561
+0x7b,0x7f,0x01,0x47,0xbd,0xb8,0x01,0x46,0x7f,0x7e,0x88,0xa6,
2562
+0x9c,0x62,0xe6,0x7c,0xfe,0xf4,0xfe,0xc9,0x03,0x01,0x8f,0x69,
2563
+0x7d,0x9b,0xaf,0x9e,0x9f,0xaf,0x9d,0x00,0x00,0x02,0xff,0xf4,
2564
+0x00,0x00,0x05,0xdb,0x05,0xd5,0x00,0x02,0x00,0x12,0x00,0xad,
2565
+0x40,0x51,0x00,0x64,0x05,0x06,0x05,0x02,0x64,0x01,0x02,0x06,
2566
+0x06,0x05,0x12,0x11,0x02,0x10,0x64,0x06,0x05,0x0f,0x64,0x05,
2567
+0x06,0x05,0x02,0x10,0x00,0x02,0x07,0x08,0x07,0x01,0x10,0x08,
2568
+0x07,0x0e,0x10,0x08,0x07,0x0b,0x0c,0x02,0x0d,0x10,0x08,0x08,
2569
+0x07,0x4d,0x02,0x06,0x0e,0x6f,0x00,0x10,0x0c,0x08,0x03,0x04,
2570
+0x6f,0x06,0x62,0x0a,0x03,0x11,0x10,0x0f,0x0e,0x0d,0x0b,0x08,
2571
+0x07,0x06,0x05,0x02,0x01,0x00,0x0d,0x13,0x09,0x03,0x13,0x10,
2572
+0xd4,0xcc,0x11,0x17,0x39,0x31,0x00,0x2f,0x3c,0xe4,0xec,0x17,
2573
+0x32,0xd4,0xec,0x12,0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x05,
2574
+0xed,0x17,0x32,0x07,0x05,0xed,0x07,0x05,0xed,0x07,0x10,0x08,
2575
+0xed,0x07,0x10,0x05,0xed,0x07,0x05,0xed,0x17,0x32,0x07,0x10,
2576
+0x08,0xed,0x07,0x10,0x05,0xed,0x59,0x22,0xb2,0x28,0x12,0x01,
2577
+0x01,0x5d,0x40,0x16,0x0f,0x00,0x0f,0x01,0x0f,0x0e,0x0f,0x0f,
2578
+0x04,0x28,0x05,0x28,0x06,0x28,0x0d,0x28,0x0e,0x2c,0x11,0x2b,
2579
+0x12,0x06,0x5d,0x00,0x5d,0x01,0x21,0x09,0x01,0x35,0x33,0x01,
2580
+0x33,0x01,0x33,0x15,0x21,0x35,0x33,0x03,0x21,0x03,0x33,0x15,
2581
+0x01,0x9a,0x02,0x24,0xfe,0xee,0xfd,0x48,0x83,0x02,0x14,0xa8,
2582
+0x02,0x15,0x93,0xfd,0xe1,0xa6,0x7d,0xfd,0x8c,0x7d,0xa4,0x02,
2583
+0x1d,0x02,0xc6,0xfb,0x1d,0x6a,0x05,0x6b,0xfa,0x95,0x6a,0x6a,
2584
+0x01,0x48,0xfe,0xb8,0x6a,0x00,0x00,0x00,0x00,0x03,0x00,0x71,
2585
+0x00,0x00,0x05,0x64,0x05,0xd5,0x00,0x08,0x00,0x11,0x00,0x24,
2586
+0x00,0x45,0x40,0x27,0x1e,0x07,0x6f,0x09,0x15,0x10,0x6f,0x17,
2587
+0x62,0x13,0x00,0x6f,0x09,0x7e,0x12,0x10,0x0a,0x07,0x01,0x18,
2588
+0x1e,0x24,0x05,0x00,0x0d,0x0e,0x1b,0x04,0x0e,0x21,0x16,0x12,
2589
+0x24,0x09,0x00,0x11,0x14,0x21,0x25,0x10,0xf4,0xec,0x32,0xe4,
2590
+0x32,0xd4,0xec,0xd4,0xec,0x11,0x17,0x39,0x39,0x39,0x31,0x00,
2591
+0x2f,0xec,0xec,0x32,0xf4,0xec,0x32,0x10,0xee,0x39,0x30,0x25,
2592
+0x21,0x32,0x36,0x35,0x34,0x26,0x23,0x21,0x35,0x33,0x32,0x36,
2593
+0x35,0x34,0x26,0x2b,0x01,0x01,0x35,0x33,0x11,0x23,0x35,0x21,
2594
+0x32,0x16,0x15,0x14,0x06,0x07,0x1e,0x01,0x15,0x14,0x04,0x21,
2595
+0x01,0xfa,0x01,0x2b,0xb4,0xa6,0xa5,0xb5,0xfe,0xd5,0xfe,0xa4,
2596
+0x97,0x97,0xa4,0xfe,0xfe,0x77,0xbe,0xbe,0x02,0xe1,0xe2,0xe5,
2597
+0x9f,0x99,0xbe,0xc5,0xfe,0xe8,0xfe,0xd7,0x6a,0x9c,0xaa,0xa9,
2598
+0x9b,0x6a,0x7e,0x88,0x89,0x7d,0xfa,0x96,0x6a,0x05,0x00,0x6b,
2599
+0xb9,0xb8,0x85,0x9e,0x12,0x18,0xc3,0xa4,0xde,0xd2,0x00,0x00,
2600
+0x00,0x01,0x00,0x73,0xff,0xe3,0x05,0xa4,0x05,0xf0,0x00,0x1d,
2601
+0x00,0x38,0x40,0x1b,0x1a,0x6e,0x00,0x03,0x10,0x7f,0x0f,0x64,
2602
+0x14,0x6e,0x0c,0x69,0x03,0x60,0x1e,0x11,0x0f,0x0f,0x26,0x1d,
2603
+0x27,0x00,0x17,0x0e,0x09,0x25,0x1e,0x10,0xf4,0xec,0xd4,0xec,
2604
+0xf4,0xec,0x31,0x00,0x10,0xe4,0xf4,0xec,0xfc,0xec,0x10,0xc6,
2605
+0xee,0x30,0xb4,0x10,0x1f,0x6f,0x1f,0x02,0x01,0x5d,0x01,0x06,
2606
+0x04,0x23,0x22,0x26,0x27,0x26,0x02,0x35,0x10,0x00,0x21,0x32,
2607
+0x04,0x17,0x11,0x23,0x2e,0x01,0x23,0x22,0x02,0x11,0x10,0x12,
2608
+0x33,0x32,0x36,0x37,0x05,0xa4,0x42,0xfe,0xc9,0xee,0x92,0xfa,
2609
+0x61,0x70,0x6d,0x01,0x92,0x01,0x49,0x7a,0x01,0x14,0x9f,0x71,
2610
+0x25,0xdf,0xc9,0xef,0xf6,0xf6,0xef,0xa7,0xd8,0x30,0x01,0x8b,
2611
+0xd1,0xd7,0x64,0x61,0x70,0x01,0x1d,0xb4,0x01,0x5c,0x01,0xab,
2612
+0x40,0x41,0xfe,0xa8,0xbc,0xb2,0xfe,0xad,0xfe,0xb7,0xfe,0xb8,
2613
+0xfe,0xad,0x9f,0x9e,0x00,0x02,0x00,0x71,0x00,0x00,0x05,0xf4,
2614
+0x05,0xd5,0x00,0x08,0x00,0x15,0x00,0x3d,0x40,0x19,0x0c,0x07,
2615
+0x6f,0x0e,0x62,0x0a,0x00,0x6f,0x09,0x07,0x01,0x15,0x0f,0x00,
2616
+0x04,0x0e,0x12,0x0d,0x09,0x24,0x00,0x11,0x0b,0x21,0x16,0x10,
2617
+0xf4,0xec,0xe4,0x32,0xd4,0xec,0x11,0x39,0x39,0x39,0x39,0x31,
2618
+0x00,0x2f,0xec,0x32,0xf4,0xec,0x32,0x30,0x40,0x09,0x30,0x17,
2619
+0x4f,0x17,0x80,0x17,0x9f,0x17,0x04,0x01,0x5d,0x25,0x33,0x20,
2620
+0x00,0x11,0x10,0x00,0x21,0x23,0x01,0x35,0x33,0x11,0x23,0x35,
2621
+0x21,0x20,0x00,0x11,0x10,0x00,0x21,0x01,0xfa,0xba,0x01,0x23,
2622
+0x01,0x37,0xfe,0xca,0xfe,0xdc,0xba,0xfe,0x77,0xbe,0xbe,0x02,
2623
+0x52,0x01,0x82,0x01,0xaf,0xfe,0x50,0xfe,0x7f,0x6a,0x01,0x4c,
2624
+0x01,0x36,0x01,0x36,0x01,0x48,0xfa,0x96,0x6a,0x05,0x00,0x6b,
2625
+0xfe,0x76,0xfe,0xa1,0xfe,0xa0,0xfe,0x74,0x00,0x01,0x00,0x71,
2626
+0x00,0x00,0x05,0x33,0x05,0xd5,0x00,0x17,0x00,0x52,0x40,0x2a,
2627
+0x15,0x13,0x0f,0x81,0x11,0x80,0x0d,0x81,0x0b,0x07,0x09,0x80,
2628
+0x03,0x6f,0x05,0x62,0x01,0x6f,0x13,0x80,0x0b,0x7e,0x00,0x10,
2629
+0x0c,0x0f,0x0e,0x08,0x0f,0x06,0x14,0x0f,0x16,0x04,0x00,0x24,
2630
+0x12,0x0a,0x11,0x02,0x21,0x18,0x10,0xf4,0xec,0x32,0xe4,0x32,
2631
+0xd4,0xec,0xd4,0xec,0xd4,0xec,0x32,0x31,0x00,0x2f,0xec,0xec,
2632
+0xec,0xf4,0xec,0xfc,0xc4,0x10,0xe4,0xfe,0xe4,0x10,0xc4,0x30,
2633
+0xb4,0x30,0x19,0x4f,0x19,0x02,0x01,0x5d,0x33,0x35,0x33,0x11,
2634
+0x23,0x35,0x21,0x11,0x23,0x35,0x21,0x11,0x21,0x35,0x33,0x11,
2635
+0x23,0x35,0x21,0x11,0x21,0x35,0x33,0x11,0x71,0xbe,0xbe,0x04,
2636
+0xb2,0x7b,0xfd,0x52,0x01,0xe9,0x7b,0x7b,0xfe,0x17,0x02,0xbe,
2637
+0x7b,0x6a,0x05,0x00,0x6b,0xfe,0xb4,0xd1,0xfe,0x0c,0xbb,0xfe,
2638
+0x10,0xbb,0xfd,0x8f,0xd1,0xfe,0xb4,0x00,0x00,0x01,0x00,0x71,
2639
+0x00,0x00,0x05,0x37,0x05,0xd5,0x00,0x15,0x00,0x46,0x40,0x27,
2640
+0x0f,0x81,0x11,0x80,0x0d,0x81,0x0b,0x07,0x09,0x80,0x03,0x6f,
2641
+0x05,0x62,0x13,0x01,0x6f,0x0b,0x7e,0x00,0x10,0x0c,0x0f,0x0e,
2642
+0x14,0x0a,0x08,0x0f,0x0e,0x06,0x04,0x00,0x24,0x12,0x0a,0x11,
2643
+0x02,0x21,0x16,0x10,0xf4,0xec,0x32,0xe4,0x32,0xd4,0xc4,0xec,
2644
+0x10,0xc4,0x10,0xee,0x32,0x31,0x00,0x2f,0xee,0xee,0x32,0xf6,
2645
+0xee,0xfe,0xc4,0x10,0xe4,0xfe,0xe4,0x30,0x33,0x35,0x33,0x11,
2646
+0x23,0x35,0x21,0x11,0x23,0x35,0x21,0x11,0x21,0x35,0x33,0x11,
2647
+0x23,0x35,0x21,0x11,0x33,0x15,0x71,0xbe,0xbe,0x04,0xc6,0x7b,
2648
+0xfd,0x3e,0x01,0xfe,0x7b,0x7b,0xfe,0x02,0xef,0x6a,0x05,0x00,
2649
+0x6b,0xfe,0xb4,0xd1,0xfe,0x0c,0xbb,0xfe,0x10,0xbb,0xfd,0x7e,
2650
+0x6a,0x00,0x00,0x00,0x00,0x01,0x00,0x73,0xff,0xe3,0x05,0xc3,
2651
+0x05,0xf0,0x00,0x1e,0x00,0x47,0x40,0x22,0x0c,0x11,0x09,0x0d,
2652
+0x6f,0x0f,0x09,0x6e,0x14,0x00,0x7f,0x1d,0x64,0x03,0x6e,0x1a,
2653
+0x69,0x14,0x60,0x1f,0x00,0x0f,0x1d,0x0e,0x0c,0x11,0x1d,0x26,
2654
+0x10,0x06,0x0e,0x17,0x25,0x1f,0x10,0xf4,0xec,0xd4,0xe4,0xfc,
2655
+0xc4,0x10,0xee,0x31,0x00,0x10,0xe4,0xf4,0xec,0xfc,0xec,0x10,
2656
+0xee,0xd6,0xee,0x11,0x39,0x39,0x30,0xb6,0x20,0x20,0x30,0x20,
2657
+0x4f,0x20,0x03,0x01,0x5d,0x01,0x2e,0x01,0x23,0x20,0x02,0x11,
2658
+0x10,0x00,0x33,0x32,0x36,0x37,0x11,0x21,0x35,0x21,0x11,0x06,
2659
+0x04,0x23,0x20,0x00,0x11,0x10,0x00,0x21,0x32,0x04,0x17,0x11,
2660
+0x05,0x1f,0x23,0xde,0xc6,0xfe,0xfe,0xfe,0x01,0x06,0xfe,0x71,
2661
+0xce,0x5d,0xfe,0xe7,0x01,0xe4,0x85,0xfe,0xcd,0xaf,0xfe,0xae,
2662
+0xfe,0x69,0x01,0x98,0x01,0x59,0x80,0x01,0x11,0x9a,0x04,0x17,
2663
+0xbb,0xb3,0xfe,0xb4,0xfe,0xb0,0xfe,0xb7,0xfe,0xae,0x38,0x38,
2664
+0x01,0x81,0x6b,0xfd,0xd3,0x4d,0x4d,0x01,0xa7,0x01,0x5f,0x01,
2665
+0x62,0x01,0xa5,0x3b,0x3c,0xfe,0x9e,0x00,0x00,0x01,0x00,0x71,
2666
+0x00,0x00,0x06,0x89,0x05,0xd5,0x00,0x1b,0x00,0x5e,0x40,0x2e,
2667
+0x17,0x80,0x09,0x0f,0x0b,0x07,0x03,0x03,0x6f,0x0d,0x05,0x62,
2668
+0x19,0x15,0x11,0x03,0x01,0x6f,0x09,0x7e,0x13,0x00,0x14,0x0c,
2669
+0x24,0x0a,0x1a,0x06,0x24,0x08,0x12,0x0e,0x24,0x16,0x0a,0x11,
2670
+0x10,0x04,0x00,0x24,0x18,0x08,0x11,0x02,0x21,0x1c,0x10,0xf4,
2671
+0xec,0x32,0xe4,0x32,0xd4,0xec,0x32,0xe4,0x32,0x10,0xe4,0x32,
2672
+0x10,0xe4,0x32,0x31,0x00,0x2f,0x3c,0xee,0xee,0x17,0x32,0xf6,
2673
+0x3c,0xee,0x17,0x32,0x10,0xee,0x30,0x40,0x09,0x20,0x1d,0x70,
2674
+0x1d,0x80,0x1d,0xbf,0x1d,0x04,0x01,0x5d,0x33,0x35,0x33,0x11,
2675
+0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x15,
2676
+0x23,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x21,0x11,0x33,0x15,
2677
+0x71,0xbe,0xbe,0x02,0x47,0xbe,0x03,0x06,0xbe,0x02,0x47,0xbe,
2678
+0xbe,0xfd,0xb9,0xbe,0xfc,0xfa,0xbe,0x6a,0x05,0x00,0x6b,0x6b,
2679
+0xfd,0xfc,0x02,0x04,0x6b,0x6b,0xfb,0x00,0x6a,0x6a,0x02,0x82,
2680
+0xfd,0x7e,0x6a,0x00,0x00,0x01,0x00,0x71,0x00,0x00,0x02,0xb8,
2681
+0x05,0xd5,0x00,0x0b,0x00,0x37,0x40,0x14,0x0a,0x06,0x6f,0x08,
2682
+0x62,0x04,0x00,0x6f,0x02,0x09,0x01,0x24,0x00,0x11,0x07,0x03,
2683
+0x24,0x05,0x21,0x0c,0x10,0xf4,0xe4,0x32,0xfc,0xe4,0x32,0x31,
2684
+0x00,0x2f,0xec,0x32,0xf4,0xec,0x32,0x30,0x40,0x0d,0x30,0x0d,
2685
+0x50,0x0d,0x60,0x0d,0x70,0x0d,0x80,0x0d,0x9f,0x0d,0x06,0x01,
2686
+0x5d,0x25,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,
2687
+0x23,0x01,0xfa,0xbe,0xfd,0xb9,0xbe,0xbe,0x02,0x47,0xbe,0x6a,
2688
+0x6a,0x6a,0x05,0x00,0x6b,0x6b,0x00,0x00,0x00,0x01,0xff,0x54,
2689
+0xfe,0x56,0x02,0xd7,0x05,0xd5,0x00,0x14,0x00,0x6d,0x40,0x1b,
2690
+0x08,0x0f,0x09,0x01,0x00,0x64,0x05,0x6e,0x12,0x0d,0x09,0x6f,
2691
+0x0b,0x62,0x12,0x82,0x15,0x02,0x0f,0x00,0x0c,0x24,0x0e,0x11,
2692
+0x0a,0x08,0x15,0x10,0xd4,0xc4,0xfc,0xe4,0xd4,0xec,0x31,0x00,
2693
+0x10,0xec,0xf4,0xec,0x32,0x10,0xee,0xfe,0xc6,0x11,0x39,0x39,
2694
+0x30,0x01,0x4b,0xb0,0x0a,0x54,0x58,0xbd,0x00,0x15,0x00,0x40,
2695
+0x00,0x01,0x00,0x15,0x00,0x15,0xff,0xc0,0x38,0x11,0x37,0x38,
2696
+0x59,0xb2,0x30,0x16,0x01,0x5d,0x01,0x4b,0xb0,0x0e,0x54,0x4b,
2697
+0xb0,0x0f,0x54,0x5b,0x58,0xbd,0x00,0x15,0xff,0xc0,0x00,0x01,
2698
+0x00,0x15,0x00,0x15,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x03,
2699
+0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x11,0x23,0x35,0x21,
2700
+0x15,0x23,0x11,0x14,0x06,0x23,0x22,0x26,0xac,0x72,0x03,0x58,
2701
+0x58,0x77,0x5e,0xe8,0x02,0x71,0xbe,0xc6,0xdc,0x47,0x93,0xfe,
2702
+0x9a,0xeb,0x63,0x61,0x96,0xda,0x05,0x39,0x6b,0x6b,0xfa,0xbf,
2703
+0xf7,0xdc,0x22,0x00,0x00,0x01,0x00,0x71,0x00,0x00,0x06,0x19,
2704
+0x05,0xd5,0x00,0x18,0x01,0x28,0x40,0x44,0x10,0x64,0x11,0x10,
2705
+0x09,0x0a,0x09,0x0c,0x0b,0x02,0x0a,0x64,0x0f,0x10,0x0f,0x14,
2706
+0x10,0x11,0x11,0x10,0x10,0x10,0x0f,0x10,0x15,0x15,0x14,0x4d,
2707
+0x15,0x10,0x09,0x03,0x01,0x0e,0x0a,0x07,0x03,0x03,0x6f,0x0c,
2708
+0x05,0x62,0x16,0x11,0x01,0x6f,0x13,0x00,0x0a,0x0d,0x0b,0x03,
2709
+0x12,0x10,0x06,0x12,0x17,0x06,0x24,0x15,0x08,0x11,0x04,0x00,
2710
+0x24,0x02,0x21,0x19,0x10,0xf4,0xe4,0x32,0xfc,0x3c,0xe4,0x32,
2711
+0xc4,0x12,0x39,0x11,0x17,0x39,0x31,0x00,0x2f,0x3c,0xec,0x32,
2712
+0x32,0xf4,0x3c,0xec,0x17,0x32,0x11,0x17,0x39,0x30,0x4b,0x53,
2713
+0x58,0x07,0x10,0x08,0xed,0x07,0x10,0x05,0xed,0x07,0x10,0x05,
2714
+0xed,0x17,0x32,0x07,0x10,0x08,0xed,0x59,0x22,0xb2,0x70,0x1a,
2715
+0x01,0x01,0x5d,0x40,0xa2,0x07,0x09,0x16,0x09,0x24,0x09,0x27,
2716
+0x10,0x36,0x09,0x46,0x09,0x48,0x15,0x57,0x09,0x59,0x10,0x59,
2717
+0x15,0x68,0x10,0x7a,0x10,0x7a,0x15,0x0d,0x0a,0x0a,0x0a,0x0b,
2718
+0x0a,0x0c,0x06,0x0d,0x06,0x0e,0x06,0x0f,0x06,0x10,0x06,0x11,
2719
+0x18,0x0a,0x15,0x0d,0x15,0x0e,0x15,0x0f,0x16,0x11,0x16,0x12,
2720
+0x16,0x13,0x15,0x14,0x2a,0x0a,0x25,0x0b,0x25,0x0c,0x26,0x0d,
2721
+0x26,0x0e,0x27,0x0f,0x28,0x10,0x3a,0x0a,0x36,0x0d,0x36,0x0e,
2722
+0x46,0x0a,0x46,0x0b,0x40,0x0b,0x46,0x0c,0x40,0x0c,0x46,0x0d,
2723
+0x40,0x0d,0x46,0x0e,0x40,0x0e,0x42,0x0f,0x40,0x11,0x40,0x12,
2724
+0x40,0x13,0x40,0x14,0x40,0x1a,0x53,0x0a,0x58,0x0b,0x58,0x0c,
2725
+0x55,0x0d,0x55,0x0e,0x50,0x0f,0x58,0x10,0x58,0x11,0x69,0x0b,
2726
+0x69,0x0c,0x65,0x0d,0x65,0x0e,0x66,0x0f,0x62,0x11,0x60,0x12,
2727
+0x60,0x13,0x60,0x14,0x79,0x0b,0x7f,0x0b,0x79,0x0c,0x7f,0x0c,
2728
+0x76,0x0d,0x76,0x0e,0x76,0x0f,0x79,0x10,0x79,0x11,0x43,0x5d,
2729
+0x00,0x5d,0x33,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,
2730
+0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x33,0x15,0x21,0x01,
2731
+0x11,0x33,0x15,0x71,0xbe,0xbe,0x02,0x47,0xbe,0x02,0x83,0xa2,
2732
+0x01,0xf0,0xa8,0xfd,0x7f,0x02,0xcd,0xaa,0xfe,0xa5,0xfd,0x3c,
2733
+0xbe,0x6a,0x05,0x00,0x6b,0x6b,0xfd,0xcb,0x02,0x35,0x6b,0x6b,
2734
+0xfd,0xcd,0xfd,0x33,0x6a,0x02,0xc5,0xfd,0xa5,0x6a,0x00,0x00,
2735
+0x00,0x01,0x00,0x71,0x00,0x00,0x05,0x1f,0x05,0xd5,0x00,0x0d,
2736
+0x00,0x30,0x40,0x1a,0x0b,0x09,0x07,0x03,0x6f,0x05,0x62,0x09,
2737
+0x80,0x01,0x6f,0x00,0x06,0x24,0x08,0x0a,0x0f,0x0c,0x04,0x00,
2738
+0x24,0x08,0x11,0x02,0x21,0x0e,0x10,0xf4,0xec,0xe4,0x32,0xd4,
2739
+0xec,0x10,0xe4,0x31,0x00,0x2f,0xee,0xee,0xf6,0xee,0x32,0x10,
2740
+0xc4,0x30,0x33,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,
2741
+0x21,0x35,0x33,0x11,0x71,0xbe,0xbe,0x02,0x47,0xbe,0x02,0xaa,
2742
+0x7b,0x6a,0x05,0x00,0x6b,0x6b,0xfb,0x11,0xfa,0xfe,0x8b,0x00,
2743
+0x00,0x01,0x00,0x66,0x00,0x00,0x07,0xc9,0x05,0xd5,0x00,0x18,
2744
+0x01,0x13,0x40,0x47,0x13,0x64,0x07,0x08,0x07,0x12,0x64,0x08,
2745
+0x08,0x07,0x15,0x10,0x06,0x07,0x06,0x14,0x10,0x07,0x07,0x06,
2746
+0x4d,0x15,0x13,0x12,0x07,0x04,0x01,0x0a,0x03,0x6f,0x08,0x05,
2747
+0x62,0x16,0x10,0x0c,0x03,0x01,0x6f,0x0e,0x00,0x06,0x15,0x14,
2748
+0x13,0x07,0x03,0x17,0x08,0x0f,0x24,0x11,0x17,0x24,0x15,0x11,
2749
+0x11,0x0d,0x24,0x09,0x24,0x0b,0x04,0x24,0x15,0x0f,0x00,0x24,
2750
+0x02,0x21,0x19,0x10,0xf4,0xe4,0xec,0xe4,0xd4,0xe4,0xe4,0xec,
2751
+0x10,0xe4,0x10,0xe4,0x39,0x11,0x17,0x39,0x12,0x39,0x31,0x00,
2752
+0x2f,0x3c,0xee,0x17,0x32,0xf4,0x3c,0xee,0x32,0x11,0x17,0x39,
2753
+0x30,0x4b,0x53,0x58,0x07,0x10,0x05,0xed,0x07,0x10,0x04,0xed,
2754
+0x07,0x10,0x04,0xed,0x07,0x10,0x05,0xed,0x59,0x22,0xb2,0x0f,
2755
+0x1a,0x01,0x01,0x5d,0x40,0x88,0x09,0x07,0x08,0x12,0x0f,0x12,
2756
+0x19,0x07,0x18,0x12,0x1f,0x12,0x28,0x12,0x2f,0x12,0x29,0x13,
2757
+0x29,0x14,0x38,0x12,0x3f,0x12,0x39,0x13,0x39,0x14,0x49,0x07,
2758
+0x48,0x12,0x4f,0x12,0x4a,0x13,0x4a,0x14,0x58,0x07,0x58,0x12,
2759
+0x5f,0x12,0x5a,0x13,0x5a,0x14,0x69,0x07,0x68,0x12,0x6f,0x12,
2760
+0x69,0x13,0x69,0x14,0x77,0x07,0x7f,0x12,0x1f,0x06,0x06,0x06,
2761
+0x07,0x06,0x08,0x03,0x13,0x08,0x14,0x16,0x07,0x14,0x08,0x14,
2762
+0x13,0x26,0x07,0x24,0x08,0x26,0x13,0x26,0x14,0x36,0x07,0x33,
2763
+0x08,0x35,0x13,0x35,0x14,0x46,0x07,0x45,0x08,0x44,0x13,0x46,
2764
+0x14,0x55,0x07,0x54,0x08,0x55,0x13,0x54,0x14,0x64,0x07,0x64,
2765
+0x08,0x64,0x13,0x63,0x14,0x74,0x07,0x75,0x08,0x74,0x13,0x73,
2766
+0x14,0x80,0x1a,0x9f,0x1a,0xaf,0x1a,0xbf,0x1a,0x24,0x5d,0x00,
2767
+0x5d,0x33,0x35,0x33,0x11,0x23,0x35,0x21,0x09,0x01,0x21,0x15,
2768
+0x23,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x01,0x23,0x01,0x11,
2769
+0x33,0x15,0x71,0xbe,0xc9,0x01,0xb3,0x02,0x0c,0x02,0x0c,0x01,
2770
+0x98,0xc7,0xbf,0xfd,0xb8,0xbe,0xfe,0x00,0x8d,0xfe,0x00,0xbe,
2771
+0x6a,0x05,0x00,0x6b,0xfb,0xd9,0x04,0x27,0x6b,0xfb,0x00,0x6a,
2772
+0x6a,0x04,0x82,0xfb,0xef,0x04,0x11,0xfb,0x7e,0x6a,0x00,0x00,
2773
+0x00,0x01,0x00,0x64,0xff,0xe3,0x06,0xa6,0x05,0xd5,0x00,0x13,
2774
+0x00,0x70,0x40,0x2d,0x10,0x10,0x06,0x07,0x06,0x07,0x10,0x0f,
2775
+0x10,0x0f,0x4d,0x10,0x07,0x01,0x0c,0x08,0x03,0x6f,0x0a,0x05,
2776
+0x62,0x11,0x01,0x6f,0x0e,0x00,0x09,0x24,0x07,0x12,0x24,0x10,
2777
+0x0b,0x24,0x07,0x0f,0x0d,0x04,0x00,0x24,0x10,0x0f,0x02,0x21,
2778
+0x14,0x10,0xf4,0xec,0xe4,0x32,0xd4,0xec,0xe4,0x10,0xe4,0x10,
2779
+0xe4,0x31,0x00,0x2f,0xc6,0xee,0x32,0xf6,0x3c,0xee,0x32,0x32,
2780
+0x11,0x39,0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x04,0xed,0x07,
2781
+0x10,0x04,0xed,0x59,0x22,0xb2,0x20,0x15,0x01,0x01,0x5d,0x40,
2782
+0x0e,0x05,0x07,0x01,0x30,0x15,0x4f,0x15,0x70,0x15,0x80,0x15,
2783
+0x9f,0x15,0x05,0x5d,0x00,0x5d,0x33,0x35,0x33,0x11,0x23,0x35,
2784
+0x21,0x01,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x23,0x01,0x11,
2785
+0x33,0x15,0x64,0xc9,0xc9,0x01,0x7f,0x03,0x7f,0xc8,0x02,0x0c,
2786
+0xc9,0x79,0xfc,0x44,0xc9,0x6a,0x05,0x00,0x6b,0xfb,0x66,0x04,
2787
+0x2f,0x6b,0x6b,0xfa,0x79,0x04,0xea,0xfb,0x9d,0x6a,0x00,0x00,
2788
+0x00,0x02,0x00,0x73,0xff,0xe3,0x06,0x1d,0x05,0xf0,0x00,0x0b,
2789
+0x00,0x20,0x00,0x2c,0x40,0x12,0x00,0x6e,0x0c,0x06,0x6e,0x18,
2790
+0x69,0x0c,0x60,0x21,0x03,0x0e,0x1b,0x09,0x0e,0x12,0x25,0x21,
2791
+0x10,0xf4,0xec,0xd4,0xec,0x31,0x00,0x10,0xe4,0xf4,0xec,0x10,
2792
+0xee,0x30,0xb6,0x5f,0x22,0x6f,0x22,0xa0,0x22,0x03,0x01,0x5d,
2793
+0x25,0x32,0x12,0x11,0x10,0x02,0x23,0x22,0x02,0x11,0x10,0x12,
2794
+0x17,0x22,0x26,0x27,0x26,0x02,0x35,0x34,0x12,0x37,0x3e,0x01,
2795
+0x33,0x20,0x00,0x11,0x14,0x02,0x07,0x0e,0x01,0x03,0x48,0xf5,
2796
+0xfa,0xfa,0xf5,0xf6,0xfa,0xfa,0xf6,0x98,0xff,0x61,0x70,0x6d,
2797
+0x6d,0x70,0x62,0xfc,0x9a,0x01,0x45,0x01,0x90,0x6e,0x70,0x62,
2798
+0xfc,0x4e,0x01,0x51,0x01,0x4a,0x01,0x4b,0x01,0x51,0xfe,0xaf,
2799
+0xfe,0xb5,0xfe,0xb6,0xfe,0xaf,0x6b,0x64,0x61,0x70,0x01,0x1c,
2800
+0xb5,0xb5,0x01,0x1d,0x70,0x62,0x63,0xfe,0x56,0xfe,0xa3,0xb3,
2801
+0xfe,0xe1,0x6f,0x62,0x63,0x00,0x00,0x00,0x00,0x02,0x00,0x71,
2802
+0x00,0x00,0x05,0x19,0x05,0xd5,0x00,0x08,0x00,0x19,0x00,0x43,
2803
+0x40,0x21,0x00,0x6f,0x15,0x83,0x0c,0x07,0x6f,0x0e,0x62,0x17,
2804
+0x0a,0x6f,0x09,0x07,0x01,0x15,0x0f,0x04,0x18,0x23,0x00,0x04,
2805
+0x0e,0x12,0x0d,0x09,0x24,0x16,0x00,0x11,0x0b,0x21,0x1a,0x10,
2806
+0xf4,0xec,0x32,0xe4,0x32,0xd4,0xec,0x10,0xe6,0x11,0x39,0x39,
2807
+0x39,0x39,0x31,0x00,0x2f,0xee,0x32,0xf6,0xee,0x32,0xfe,0xee,
2808
+0x30,0xb2,0x5f,0x1b,0x01,0x01,0x5d,0x01,0x21,0x32,0x36,0x35,
2809
+0x34,0x26,0x23,0x21,0x01,0x35,0x33,0x11,0x23,0x35,0x21,0x32,
2810
+0x04,0x15,0x14,0x04,0x23,0x21,0x11,0x33,0x15,0x01,0xfa,0x01,
2811
+0x08,0x95,0x9c,0x9c,0x95,0xfe,0xf8,0xfe,0x77,0xbe,0xbe,0x02,
2812
+0xc2,0xe0,0x01,0x06,0xfe,0xfa,0xe0,0xfe,0xc7,0xe7,0x02,0xf8,
2813
+0xa1,0x98,0x99,0xa0,0xfa,0x96,0x6a,0x05,0x00,0x6b,0xe3,0xc1,
2814
+0xc0,0xe4,0xfd,0xdd,0x6a,0x00,0x00,0x00,0x00,0x02,0x00,0x73,
2815
+0xfe,0xb8,0x06,0x1d,0x05,0xf0,0x00,0x16,0x00,0x22,0x00,0x40,
2816
+0x40,0x1c,0x0f,0x17,0x6e,0x00,0x12,0x14,0x1d,0x6e,0x09,0x69,
2817
+0x14,0x00,0x60,0x23,0x12,0x0f,0x00,0x20,0x14,0x13,0x1a,0x0e,
2818
+0x0c,0x20,0x0e,0x03,0x25,0x23,0x10,0xf4,0xec,0xd4,0xec,0x39,
2819
+0x39,0x11,0x39,0x39,0x39,0x31,0x00,0x10,0xe4,0xc4,0xf4,0xec,
2820
+0x10,0xce,0x10,0xee,0x39,0x30,0xb6,0x5f,0x24,0x6f,0x24,0xa0,
2821
+0x24,0x03,0x01,0x5d,0x05,0x20,0x00,0x11,0x34,0x12,0x37,0x3e,
2822
+0x01,0x33,0x20,0x00,0x11,0x10,0x00,0x05,0x1e,0x01,0x3b,0x01,
2823
+0x15,0x2e,0x01,0x27,0x32,0x12,0x11,0x10,0x02,0x23,0x22,0x02,
2824
+0x11,0x10,0x12,0x03,0x60,0xfe,0xa9,0xfe,0x6a,0x6d,0x70,0x62,
2825
+0xfc,0x9a,0x01,0x45,0x01,0x90,0xfe,0xd4,0xfe,0xf8,0x36,0x9b,
2826
+0x6d,0x1f,0xa9,0xf1,0x64,0xf5,0xfa,0xfa,0xf5,0xf6,0xfa,0xfa,
2827
+0x1d,0x01,0xa5,0x01,0x61,0xb5,0x01,0x1d,0x70,0x62,0x63,0xfe,
2828
+0x56,0xfe,0xa3,0xfe,0xd8,0xfe,0x6d,0x3a,0x43,0x40,0xb9,0x08,
2829
+0x95,0xf9,0x01,0x51,0x01,0x4a,0x01,0x4b,0x01,0x51,0xfe,0xaf,
2830
+0xfe,0xb5,0xfe,0xb6,0xfe,0xaf,0x00,0x00,0x00,0x02,0x00,0x71,
2831
+0x00,0x00,0x06,0x37,0x05,0xd5,0x00,0x1b,0x00,0x24,0x00,0x88,
2832
+0x40,0x48,0x0b,0x0a,0x09,0x03,0x0c,0x08,0x10,0x03,0x04,0x03,
2833
+0x07,0x10,0x04,0x04,0x03,0x4d,0x08,0x04,0x00,0x1c,0x03,0x04,
2834
+0x1c,0x6f,0x0b,0x83,0x23,0x13,0x6f,0x15,0x62,0x11,0x0d,0x04,
2835
+0x6f,0x0f,0x06,0x07,0x19,0x23,0x1d,0x0b,0x08,0x04,0x20,0x0e,
2836
+0x04,0x05,0x03,0x19,0x16,0x00,0x20,0x0e,0x06,0x05,0x19,0x0e,
2837
+0x24,0x0c,0x20,0x0e,0x19,0x14,0x10,0x24,0x1c,0x0c,0x11,0x12,
2838
+0x21,0x25,0x10,0xf4,0xec,0x32,0xe4,0x32,0xd4,0xec,0x10,0xe4,
2839
+0x10,0xc0,0xc0,0x11,0x12,0x39,0x39,0x11,0x39,0x12,0x39,0x11,
2840
+0x12,0x17,0x39,0x11,0x39,0x31,0x00,0x2f,0x3c,0xee,0x32,0x32,
2841
+0xf6,0xee,0x32,0xfe,0xee,0x12,0x39,0x12,0x39,0x12,0x39,0x30,
2842
+0x4b,0x53,0x58,0x07,0x10,0x05,0xed,0x07,0x10,0x05,0xed,0x11,
2843
+0x17,0x39,0x59,0x22,0x01,0x1e,0x01,0x17,0x13,0x33,0x15,0x21,
2844
+0x03,0x2e,0x01,0x2b,0x01,0x11,0x33,0x15,0x21,0x35,0x33,0x11,
2845
+0x23,0x35,0x21,0x32,0x16,0x15,0x14,0x06,0x25,0x21,0x32,0x36,
2846
+0x35,0x34,0x26,0x23,0x21,0x03,0xd5,0x46,0x65,0x28,0xd9,0xb6,
2847
+0xfe,0xa0,0xe9,0x43,0x70,0x62,0xdf,0xd3,0xfd,0xa4,0xbe,0xbe,
2848
+0x02,0xf5,0xda,0xed,0xad,0xfd,0x7a,0x01,0x27,0x97,0x90,0x90,
2849
+0x97,0xfe,0xd9,0x02,0xe5,0x13,0x5b,0x52,0xfe,0x45,0x6a,0x01,
2850
+0xdb,0x8a,0x51,0xfd,0xb4,0x6a,0x6a,0x05,0x00,0x6b,0xd0,0xbf,
2851
+0x9a,0xb1,0x26,0x8f,0x96,0x96,0x8e,0x00,0x00,0x01,0x00,0xac,
2852
+0xff,0xe3,0x04,0xe5,0x05,0xf0,0x00,0x29,0x01,0x27,0x40,0x42,
2853
+0x23,0x22,0x02,0x24,0x21,0x10,0x0b,0x0c,0x0b,0x1e,0x1f,0x02,
2854
+0x1d,0x20,0x10,0x0c,0x0c,0x0b,0x4d,0x0b,0x0c,0x20,0x21,0x04,
2855
+0x16,0x01,0x7f,0x00,0x64,0x05,0x6e,0x27,0x16,0x7f,0x15,0x64,
2856
+0x1a,0x6e,0x12,0x69,0x27,0x60,0x2a,0x20,0x0b,0x0c,0x21,0x1d,
2857
+0x08,0x17,0x0f,0x15,0x02,0x0f,0x00,0x08,0x29,0x15,0x07,0x24,
2858
+0x1d,0x29,0x00,0x0f,0x02,0x2a,0x10,0xf4,0xc4,0xec,0xd4,0xe4,
2859
+0xec,0x10,0xee,0x10,0xee,0x11,0x12,0x39,0x39,0x39,0x39,0x31,
2860
+0x00,0x10,0xe4,0xf4,0xec,0xfc,0xec,0x10,0xee,0xfe,0xee,0x11,
2861
+0x17,0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x0e,0xed,0x11,0x17,
2862
+0x39,0x07,0x10,0x0e,0xed,0x11,0x17,0x39,0x59,0x22,0xb2,0x10,
2863
+0x2b,0x01,0x01,0x5d,0x40,0x0b,0x20,0x2b,0x30,0x2b,0x50,0x2b,
2864
+0x70,0x2b,0x80,0x2b,0x05,0x5d,0x01,0x4b,0xb0,0x12,0x54,0x4b,
2865
+0xb0,0x13,0x54,0x5b,0x4b,0xb0,0x14,0x54,0x5b,0x58,0xbd,0x00,
2866
+0x2a,0x00,0x40,0x00,0x01,0x00,0x2a,0x00,0x2a,0xff,0xc0,0x38,
2867
+0x11,0x37,0x38,0x59,0x40,0x74,0x28,0x0a,0x29,0x0b,0x29,0x0c,
2868
+0x29,0x0d,0x29,0x1f,0x29,0x20,0x29,0x21,0x29,0x22,0x38,0x09,
2869
+0x39,0x0a,0x3a,0x0b,0x3a,0x0c,0x3a,0x0d,0x39,0x0e,0x39,0x1e,
2870
+0x3a,0x1f,0x3a,0x20,0x3a,0x21,0x39,0x22,0x38,0x23,0x49,0x0a,
2871
+0x49,0x0b,0x4a,0x0c,0x49,0x0d,0x48,0x1f,0x49,0x20,0x49,0x21,
2872
+0x49,0x22,0x59,0x0a,0x59,0x0b,0x59,0x0c,0x59,0x0d,0x59,0x20,
2873
+0x59,0x21,0x59,0x22,0x6a,0x09,0x6c,0x0a,0x6c,0x0b,0x6c,0x0c,
2874
+0x6b,0x0d,0x6b,0x1f,0x6c,0x20,0x6c,0x21,0x6c,0x22,0x69,0x23,
2875
+0x7b,0x0a,0x7b,0x0b,0x7b,0x0c,0x7b,0x0d,0x79,0x0e,0x7b,0x1f,
2876
+0x7b,0x20,0x7b,0x21,0x7b,0x22,0x79,0x23,0x37,0xa0,0x2b,0xb0,
2877
+0x2b,0x02,0x5d,0x00,0x5d,0x37,0x11,0x17,0x1e,0x01,0x33,0x32,
2878
+0x36,0x35,0x34,0x26,0x2f,0x01,0x2e,0x01,0x35,0x34,0x24,0x33,
2879
+0x32,0x16,0x17,0x11,0x23,0x2e,0x01,0x23,0x22,0x06,0x15,0x14,
2880
+0x16,0x1f,0x01,0x1e,0x01,0x15,0x14,0x04,0x21,0x22,0x26,0xbe,
2881
+0x73,0x05,0xbb,0xbf,0xb2,0xbb,0x71,0xb6,0xc5,0xd6,0xaf,0x01,
2882
+0x0e,0xf4,0x68,0xf8,0x8c,0x71,0x11,0xb1,0xb5,0x9e,0xa5,0x7c,
2883
+0xc9,0xb9,0xcb,0xad,0xfe,0xea,0xfe,0xed,0x7b,0xff,0x48,0x01,
2884
+0x54,0x01,0xaa,0xa3,0x8d,0x87,0x6c,0x74,0x37,0x3b,0x41,0xc2,
2885
+0xa9,0xbe,0xd2,0x2d,0x2b,0xfe,0xc2,0x9e,0x8d,0x81,0x7b,0x6b,
2886
+0x7a,0x3c,0x37,0x3d,0xbd,0x9f,0xd9,0xdc,0x32,0x00,0x00,0x00,
2887
+0x00,0x01,0x00,0x14,0x00,0x00,0x05,0x42,0x05,0xd5,0x00,0x0f,
2888
+0x00,0x7b,0x40,0x1b,0x09,0x05,0x0b,0x03,0x6f,0x07,0x62,0x0d,
2889
+0x01,0x6f,0x00,0x0a,0x0f,0x08,0x04,0x0f,0x06,0x0e,0x24,0x08,
2890
+0x0c,0x11,0x00,0x24,0x06,0x02,0x10,0x10,0xd4,0xc4,0xe4,0xfc,
2891
+0xc4,0xe4,0x10,0xee,0x10,0xee,0x31,0x00,0x2f,0xee,0x32,0xf4,
2892
+0xfe,0x3c,0xc4,0x32,0x30,0x01,0x4b,0xb0,0x09,0x54,0x58,0xbd,
2893
+0x00,0x10,0x00,0x40,0x00,0x01,0x00,0x10,0x00,0x10,0xff,0xc0,
2894
+0x38,0x11,0x37,0x38,0x59,0xb2,0x1f,0x11,0x01,0x5d,0x01,0x4b,
2895
+0xb0,0x0b,0x54,0x4b,0xb0,0x0c,0x54,0x5b,0x58,0xbd,0x00,0x10,
2896
+0xff,0xc0,0x00,0x01,0x00,0x10,0x00,0x10,0x00,0x40,0x38,0x11,
2897
+0x37,0x38,0x59,0x40,0x0b,0x2f,0x11,0x60,0x11,0x8f,0x11,0xa0,
2898
+0x11,0xbf,0x11,0x05,0x5d,0x21,0x35,0x33,0x11,0x21,0x15,0x23,
2899
+0x11,0x21,0x11,0x23,0x35,0x21,0x11,0x33,0x15,0x01,0x87,0xbf,
2900
+0xfe,0x49,0x7b,0x05,0x2e,0x7b,0xfe,0x49,0xbf,0x6a,0x04,0xf4,
2901
+0xe9,0x01,0x60,0xfe,0xa0,0xe9,0xfb,0x0c,0x6a,0x00,0x00,0x00,
2902
+0x00,0x01,0x00,0x60,0xff,0xe3,0x06,0x62,0x05,0xd5,0x00,0x19,
2903
+0x00,0x6e,0x40,0x25,0x0c,0x06,0x19,0x13,0x00,0x09,0x85,0x16,
2904
+0x11,0x0d,0x04,0x03,0x00,0x6f,0x0f,0x02,0x62,0x16,0x60,0x1a,
2905
+0x03,0x24,0x05,0x0e,0x24,0x0c,0x0f,0x10,0x24,0x12,0x01,0x24,
2906
+0x05,0x11,0x00,0x21,0x1a,0x10,0xf4,0xec,0xe4,0xd4,0xe4,0xfc,
2907
+0xe4,0x10,0xe4,0x31,0x00,0x10,0xe4,0xf4,0x3c,0xec,0x17,0x32,
2908
+0x10,0xee,0x11,0x39,0x39,0x39,0x39,0x30,0xb4,0x1f,0x1b,0x60,
2909
+0x1b,0x02,0x01,0x5d,0x01,0x4b,0xb0,0x12,0x54,0x4b,0xb0,0x13,
2910
+0x54,0x5b,0x58,0xbd,0x00,0x1a,0x00,0x40,0x00,0x01,0x00,0x1a,
2911
+0x00,0x1a,0xff,0xc0,0x38,0x11,0x37,0x38,0x59,0xb4,0x90,0x1b,
2912
+0xa0,0x1b,0x02,0x5d,0x01,0x23,0x35,0x21,0x15,0x23,0x11,0x10,
2913
+0x16,0x33,0x32,0x36,0x19,0x01,0x23,0x35,0x21,0x15,0x23,0x11,
2914
+0x10,0x00,0x21,0x20,0x00,0x11,0x01,0x1f,0xbf,0x02,0x48,0xbf,
2915
+0xbb,0xe5,0xe5,0xbb,0xbf,0x01,0xf8,0xbe,0xfe,0xfa,0xfe,0xc6,
2916
+0xfe,0xc6,0xfe,0xf5,0x05,0x6a,0x6b,0x6b,0xfc,0xfc,0xfe,0xe2,
2917
+0xe2,0xe2,0x01,0x1e,0x03,0x04,0x6b,0x6b,0xfc,0xe8,0xfe,0xab,
2918
+0xfe,0xe6,0x01,0x1c,0x01,0x53,0x00,0x00,0x00,0x01,0xff,0xec,
2919
+0x00,0x00,0x05,0xe5,0x05,0xd5,0x00,0x0e,0x00,0x92,0x40,0x39,
2920
+0x04,0x03,0x02,0x02,0x64,0x07,0x08,0x07,0x01,0x64,0x00,0x01,
2921
+0x08,0x08,0x07,0x01,0x10,0x02,0x01,0x09,0x0a,0x09,0x0d,0x0e,
2922
+0x02,0x00,0x10,0x0a,0x0a,0x09,0x4d,0x01,0x08,0x0a,0x06,0x02,
2923
+0x03,0x00,0x6f,0x0c,0x04,0x62,0x08,0x0d,0x0a,0x09,0x08,0x07,
2924
+0x03,0x02,0x01,0x00,0x09,0x0f,0x05,0x0b,0x0f,0x10,0xd4,0xcc,
2925
+0x11,0x17,0x39,0x31,0x00,0x2f,0xf4,0x3c,0xec,0x17,0x32,0x11,
2926
+0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x05,0xed,0x17,0x32,0x07,
2927
+0x10,0x08,0xed,0x07,0x10,0x08,0xed,0x07,0x10,0x05,0xed,0x17,
2928
+0x32,0x59,0x22,0xb2,0x07,0x01,0x01,0x00,0x5d,0x40,0x22,0x08,
2929
+0x01,0x08,0x02,0x04,0x03,0x04,0x04,0x08,0x09,0x18,0x01,0x18,
2930
+0x02,0x18,0x09,0x1c,0x0d,0x1c,0x0e,0x28,0x02,0x2a,0x0d,0x2a,
2931
+0x0e,0x0d,0x07,0x01,0x16,0x01,0x27,0x01,0x03,0x5d,0x01,0x5d,
2932
+0x09,0x02,0x23,0x35,0x21,0x15,0x23,0x01,0x23,0x01,0x23,0x35,
2933
+0x21,0x15,0x01,0x66,0x01,0xb9,0x01,0xb8,0xa8,0x01,0xb6,0x91,
2934
+0xfd,0xeb,0xac,0xfd,0xee,0x95,0x02,0x20,0x05,0x6a,0xfb,0x86,
2935
+0x04,0x7a,0x6b,0x6b,0xfa,0x96,0x05,0x6a,0x6b,0x6b,0x00,0x00,
2936
+0x00,0x01,0x00,0x0a,0x00,0x00,0x08,0x33,0x05,0xd5,0x00,0x14,
2937
+0x01,0x96,0x40,0x5b,0x03,0x64,0x0b,0x0c,0x0b,0x02,0x64,0x01,
2938
+0x02,0x0c,0x0c,0x0b,0x02,0x10,0x03,0x02,0x0d,0x0e,0x0d,0x01,
2939
+0x10,0x0e,0x0e,0x0d,0x11,0x10,0x02,0x0f,0x64,0x14,0x00,0x14,
2940
+0x0e,0x64,0x0d,0x0e,0x00,0x00,0x14,0x0b,0x10,0x0c,0x0b,0x04,
2941
+0x05,0x04,0x08,0x09,0x02,0x0a,0x10,0x05,0x05,0x04,0x4d,0x0e,
2942
+0x0b,0x02,0x03,0x00,0x13,0x0f,0x09,0x03,0x05,0x6f,0x11,0x0c,
2943
+0x07,0x62,0x03,0x00,0x14,0x10,0x0f,0x0e,0x0d,0x0c,0x0b,0x0a,
2944
+0x08,0x05,0x04,0x03,0x02,0x01,0x00,0x0f,0x12,0x06,0x15,0x10,
2945
+0xd4,0xcc,0x17,0x39,0x31,0x00,0x2f,0x3c,0xf4,0x3c,0x3c,0xec,
2946
+0x17,0x32,0x11,0x17,0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x05,
2947
+0xed,0x17,0x32,0x07,0x10,0x08,0xed,0x07,0x10,0x08,0xed,0x07,
2948
+0x10,0x05,0xed,0x17,0x32,0x07,0x10,0x05,0xed,0x07,0x10,0x08,
2949
+0xed,0x07,0x10,0x08,0xed,0x07,0x10,0x05,0xed,0x59,0x22,0xb2,
2950
+0x1f,0x16,0x01,0x01,0x5d,0x01,0x4b,0xb0,0x13,0x54,0x58,0xbd,
2951
+0x00,0x15,0xff,0xc0,0x00,0x01,0x00,0x15,0x00,0x15,0x00,0x40,
2952
+0x38,0x11,0x37,0x38,0x59,0x40,0xda,0x0d,0x02,0x0a,0x0b,0x05,
2953
+0x0e,0x1a,0x02,0x1f,0x02,0x1f,0x0b,0x1a,0x0e,0x25,0x02,0x29,
2954
+0x0b,0x24,0x0e,0x3f,0x02,0x3c,0x0b,0x35,0x0e,0x4c,0x0b,0x46,
2955
+0x0e,0x58,0x02,0x5c,0x0b,0x54,0x0e,0x6d,0x0b,0x64,0x0e,0x7e,
2956
+0x0b,0x74,0x0e,0x16,0x08,0x01,0x06,0x02,0x03,0x03,0x09,0x08,
2957
+0x09,0x09,0x07,0x0b,0x07,0x0d,0x08,0x0e,0x08,0x0f,0x19,0x00,
2958
+0x1b,0x01,0x16,0x02,0x10,0x03,0x15,0x04,0x19,0x08,0x19,0x09,
2959
+0x14,0x0b,0x13,0x0c,0x18,0x0d,0x19,0x0e,0x26,0x00,0x26,0x01,
2960
+0x26,0x02,0x26,0x03,0x29,0x04,0x24,0x0d,0x26,0x0e,0x35,0x02,
2961
+0x34,0x03,0x36,0x0b,0x34,0x0c,0x37,0x0d,0x49,0x00,0x49,0x01,
2962
+0x45,0x02,0x42,0x03,0x46,0x04,0x45,0x0b,0x47,0x0c,0x44,0x0d,
2963
+0x48,0x0e,0x5b,0x00,0x5b,0x01,0x58,0x02,0x57,0x03,0x5b,0x04,
2964
+0x58,0x0b,0x59,0x0c,0x5b,0x0e,0x5f,0x0f,0x5f,0x10,0x5f,0x11,
2965
+0x5f,0x12,0x5f,0x13,0x5f,0x14,0x5f,0x16,0x66,0x00,0x65,0x01,
2966
+0x65,0x02,0x65,0x03,0x68,0x04,0x67,0x05,0x66,0x08,0x66,0x09,
2967
+0x67,0x0a,0x67,0x0b,0x66,0x0c,0x64,0x0d,0x65,0x0e,0x68,0x0f,
2968
+0x6a,0x10,0x6a,0x11,0x68,0x14,0x75,0x02,0x73,0x03,0x76,0x05,
2969
+0x75,0x08,0x75,0x09,0x76,0x0a,0x75,0x0b,0x77,0x0c,0x74,0x0d,
2970
+0x79,0x0f,0x7c,0x10,0x7c,0x11,0x79,0x14,0x56,0x5d,0x00,0x5d,
2971
+0x21,0x23,0x09,0x01,0x23,0x01,0x23,0x35,0x21,0x15,0x23,0x09,
2972
+0x01,0x33,0x09,0x01,0x23,0x35,0x21,0x15,0x23,0x06,0x19,0xa4,
2973
+0xfe,0xaa,0xfe,0xaa,0xa4,0xfe,0x79,0x94,0x02,0x21,0xba,0x01,
2974
+0x37,0x01,0x54,0xa2,0x01,0x5a,0x01,0x39,0xac,0x01,0xae,0x93,
2975
+0x04,0xbe,0xfb,0x42,0x05,0x6a,0x6b,0x6b,0xfb,0xb1,0x04,0xba,
2976
+0xfb,0x39,0x04,0x5c,0x6b,0x6b,0x00,0x00,0x00,0x01,0x00,0x0c,
2977
+0x00,0x00,0x05,0xa8,0x05,0xd5,0x00,0x1b,0x01,0xf3,0x40,0x67,
2978
+0x03,0x02,0x02,0x01,0x64,0x06,0x07,0x06,0x00,0x64,0x1b,0x00,
2979
+0x07,0x07,0x06,0x00,0x10,0x01,0x00,0x15,0x16,0x15,0x19,0x1a,
2980
+0x02,0x1b,0x10,0x16,0x16,0x15,0x11,0x10,0x02,0x0f,0x64,0x14,
2981
+0x15,0x14,0x0e,0x64,0x0d,0x0e,0x15,0x15,0x14,0x0e,0x10,0x0f,
2982
+0x0e,0x07,0x08,0x07,0x0b,0x0c,0x02,0x0d,0x10,0x08,0x08,0x07,
2983
+0x4d,0x15,0x0e,0x07,0x00,0x04,0x01,0x13,0x0f,0x0c,0x03,0x08,
2984
+0x6f,0x11,0x0a,0x62,0x1a,0x16,0x05,0x03,0x01,0x6f,0x18,0x03,
2985
+0x1b,0x19,0x15,0x10,0x0f,0x0e,0x0d,0x0b,0x09,0x07,0x02,0x01,
2986
+0x00,0x0d,0x04,0x12,0x17,0x04,0x1c,0x10,0xd4,0xdc,0xc4,0x11,
2987
+0x17,0x39,0x31,0x00,0x2f,0x3c,0xec,0x17,0x32,0xf4,0x3c,0xec,
2988
+0x17,0x32,0x11,0x17,0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x05,
2989
+0xed,0x17,0x32,0x07,0x10,0x08,0xed,0x07,0x10,0x08,0xed,0x07,
2990
+0x10,0x05,0xed,0x17,0x32,0x07,0x10,0x05,0xed,0x17,0x32,0x07,
2991
+0x10,0x08,0xed,0x07,0x10,0x08,0xed,0x07,0x10,0x05,0xed,0x17,
2992
+0x32,0x59,0x22,0xb2,0x0f,0x1d,0x01,0x01,0x5d,0xb2,0x1f,0x1d,
2993
+0x01,0x5d,0x01,0x4b,0xb0,0x0b,0x54,0x4b,0xb0,0x0c,0x54,0x5b,
2994
+0x4b,0xb0,0x13,0x54,0x5b,0x58,0xbd,0x00,0x1c,0xff,0xc0,0x00,
2995
+0x01,0x00,0x1c,0x00,0x1c,0x00,0x40,0x38,0x11,0x37,0x38,0x59,
2996
+0x40,0xff,0x09,0x00,0x06,0x0e,0x07,0x15,0x18,0x00,0x16,0x0e,
2997
+0x16,0x15,0x29,0x00,0x28,0x07,0x25,0x0e,0x26,0x15,0x36,0x0e,
2998
+0x35,0x15,0x45,0x0e,0x46,0x15,0x56,0x0e,0x55,0x15,0x6a,0x00,
2999
+0x69,0x07,0x63,0x0e,0x64,0x15,0x79,0x00,0x7a,0x07,0x16,0x07,
3000
+0x00,0x07,0x01,0x09,0x02,0x09,0x03,0x07,0x07,0x04,0x0b,0x04,
3001
+0x0c,0x07,0x0d,0x08,0x0f,0x07,0x16,0x08,0x19,0x08,0x1a,0x16,
3002
+0x00,0x16,0x01,0x19,0x0b,0x19,0x0c,0x16,0x0d,0x19,0x0f,0x15,
3003
+0x10,0x15,0x11,0x17,0x15,0x17,0x16,0x16,0x19,0x16,0x1a,0x26,
3004
+0x00,0x26,0x01,0x27,0x07,0x26,0x0d,0x28,0x0e,0x29,0x0f,0x25,
3005
+0x10,0x25,0x11,0x24,0x19,0x24,0x1a,0x2f,0x1d,0x36,0x00,0x37,
3006
+0x01,0x37,0x07,0x37,0x0d,0x38,0x0f,0x39,0x10,0x39,0x11,0x37,
3007
+0x15,0x46,0x00,0x43,0x01,0x47,0x02,0x47,0x03,0x45,0x06,0x45,
3008
+0x0d,0x4b,0x0f,0x49,0x14,0x46,0x15,0x49,0x16,0x49,0x1b,0x55,
3009
+0x00,0x53,0x01,0x53,0x02,0x53,0x03,0x53,0x06,0x57,0x07,0x53,
3010
+0x08,0x56,0x0b,0x56,0x0c,0x53,0x0d,0x5b,0x0f,0x5b,0x14,0x57,
3011
+0x15,0x59,0x16,0x59,0x1b,0x65,0x00,0x64,0x01,0x65,0x02,0x65,
3012
+0x03,0x64,0x06,0x65,0x07,0x64,0x08,0x65,0x0b,0x65,0x0c,0x64,
3013
+0x0d,0x6b,0x0f,0x6c,0x10,0x6c,0x11,0x6b,0x14,0x65,0x16,0x60,
3014
+0x17,0x60,0x18,0x65,0x19,0x65,0x1a,0x65,0x1b,0x60,0x1d,0x78,
3015
+0x00,0x7a,0x01,0x7a,0x02,0x7a,0x03,0x7a,0x06,0x7b,0x07,0x79,
3016
+0x08,0x78,0x0b,0x78,0x0c,0x79,0x0d,0x7b,0x0e,0x7e,0x0f,0x7c,
3017
+0x10,0x7f,0x10,0x7c,0x11,0x40,0x13,0x7f,0x11,0x7b,0x12,0x7b,
3018
+0x13,0x7d,0x14,0x79,0x15,0x75,0x16,0x78,0x19,0x78,0x1a,0x75,
3019
+0x1b,0x72,0x5d,0x00,0x5d,0x09,0x01,0x33,0x15,0x21,0x35,0x33,
3020
+0x09,0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x23,0x35,0x21,
3021
+0x15,0x23,0x09,0x01,0x33,0x15,0x21,0x35,0x33,0x02,0xa6,0xfe,
3022
+0x93,0xc1,0xfe,0x12,0xac,0x01,0xae,0xfe,0x4c,0xa0,0x02,0x50,
3023
+0xb0,0x01,0x40,0x01,0x49,0xc0,0x01,0xe9,0xa8,0xfe,0x75,0x01,
3024
+0xd7,0xa0,0xfd,0xb0,0xb2,0x02,0x7f,0xfd,0xeb,0x6a,0x6a,0x02,
3025
+0x73,0x02,0x8d,0x6b,0x6b,0xfe,0x1f,0x01,0xe1,0x6b,0x6b,0xfd,
3026
+0xc1,0xfd,0x3f,0x6a,0x6a,0x00,0x00,0x00,0x00,0x01,0xff,0xe9,
3027
+0x00,0x00,0x05,0x5a,0x05,0xd5,0x00,0x14,0x01,0x2f,0x40,0x45,
3028
+0x0d,0x0c,0x02,0x0b,0x64,0x10,0x11,0x10,0x0a,0x64,0x09,0x0a,
3029
+0x11,0x11,0x10,0x0a,0x10,0x0b,0x0a,0x03,0x04,0x03,0x07,0x08,
3030
+0x02,0x09,0x10,0x04,0x04,0x03,0x4d,0x0a,0x01,0x0f,0x0b,0x08,
3031
+0x03,0x04,0x6f,0x0d,0x06,0x62,0x12,0x01,0x6f,0x00,0x0c,0x11,
3032
+0x0b,0x13,0x0e,0x0a,0x11,0x02,0x09,0x15,0x07,0x02,0x00,0x0e,
3033
+0x13,0x24,0x11,0x11,0x05,0x00,0x24,0x02,0x15,0x10,0xd4,0xe4,
3034
+0xc4,0xfc,0xe4,0xc4,0x11,0x12,0x39,0x12,0x39,0x11,0x12,0x39,
3035
+0x11,0x12,0x39,0x11,0x39,0x31,0x00,0x2f,0xec,0x32,0xf4,0x3c,
3036
+0xec,0x17,0x32,0x11,0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x05,
3037
+0xed,0x17,0x32,0x07,0x10,0x08,0xed,0x07,0x10,0x08,0xed,0x07,
3038
+0x10,0x05,0xed,0x17,0x32,0x59,0x22,0xb2,0x0f,0x16,0x01,0x01,
3039
+0x5d,0xb2,0x00,0x16,0x01,0x5d,0x01,0x4b,0xb0,0x09,0x54,0x58,
3040
+0xbd,0x00,0x15,0x00,0x40,0x00,0x01,0x00,0x15,0x00,0x15,0xff,
3041
+0xc0,0x38,0x11,0x37,0x38,0x59,0x01,0x4b,0xb0,0x0b,0x54,0x4b,
3042
+0xb0,0x0c,0x54,0x5b,0x4b,0xb0,0x13,0x54,0x5b,0x58,0xbd,0x00,
3043
+0x15,0xff,0xc0,0x00,0x01,0x00,0x15,0x00,0x15,0x00,0x40,0x38,
3044
+0x11,0x37,0x38,0x59,0x40,0x64,0x07,0x0a,0x36,0x0a,0x45,0x0a,
3045
+0x5b,0x03,0x5a,0x11,0x66,0x0a,0x78,0x03,0x77,0x0a,0x08,0x07,
3046
+0x09,0x08,0x0b,0x03,0x0c,0x03,0x0d,0x1a,0x07,0x1a,0x08,0x10,
3047
+0x0c,0x10,0x0d,0x2a,0x07,0x2a,0x08,0x2f,0x16,0x3a,0x07,0x3a,
3048
+0x08,0x37,0x09,0x38,0x0a,0x3f,0x0b,0x39,0x0c,0x3f,0x0c,0x39,
3049
+0x0d,0x3f,0x0d,0x3f,0x0e,0x3f,0x0f,0x3f,0x10,0x46,0x09,0x49,
3050
+0x0b,0x56,0x09,0x59,0x0b,0x5b,0x0c,0x5b,0x0d,0x69,0x0b,0x68,
3051
+0x0c,0x6f,0x0c,0x68,0x0d,0x6f,0x0d,0x60,0x16,0x76,0x07,0x76,
3052
+0x08,0x78,0x0b,0x78,0x0c,0x78,0x0d,0x8f,0x16,0x29,0x5d,0x00,
3053
+0x5d,0x21,0x35,0x33,0x11,0x01,0x23,0x35,0x21,0x15,0x23,0x09,
3054
+0x01,0x23,0x35,0x21,0x15,0x23,0x01,0x11,0x33,0x15,0x01,0x83,
3055
+0xbf,0xfe,0x33,0x8c,0x02,0x2b,0xae,0x01,0x75,0x01,0x75,0xa8,
3056
+0x01,0xb2,0x8d,0xfe,0x3f,0xbf,0x6a,0x02,0x19,0x02,0xe7,0x6b,
3057
+0x6b,0xfd,0xa4,0x02,0x5c,0x6b,0x6b,0xfd,0x2c,0xfd,0xd4,0x6a,
3058
+0x00,0x01,0x00,0x5c,0x00,0x00,0x05,0x3f,0x05,0xd5,0x00,0x0d,
3059
+0x00,0x6d,0x40,0x23,0x09,0x10,0x01,0x02,0x01,0x02,0x10,0x08,
3060
+0x09,0x08,0x4d,0x0b,0x09,0x04,0x02,0x80,0x06,0x62,0x09,0x80,
3061
+0x00,0x09,0x02,0x0a,0x03,0x07,0x0a,0x0f,0x0c,0x03,0x0f,0x05,
3062
+0x0c,0x00,0x0e,0x10,0xd4,0xc4,0xd4,0xec,0x10,0xee,0xc4,0x11,
3063
+0x12,0x39,0x39,0x31,0x00,0x2f,0xee,0xf6,0xfe,0xc4,0x10,0xc4,
3064
+0x30,0x4b,0x53,0x58,0x07,0x10,0x05,0xed,0x07,0x10,0x05,0xed,
3065
+0x59,0x22,0xb2,0x0f,0x0f,0x01,0x01,0x5d,0x40,0x1a,0x0c,0x01,
3066
+0x02,0x08,0x02,0x06,0x02,0x00,0x07,0x00,0x08,0x02,0x09,0x00,
3067
+0x0a,0x00,0x0b,0x00,0x0c,0x00,0x0d,0x00,0x0f,0x4f,0x0f,0x0a,
3068
+0x5d,0x00,0x5d,0x33,0x35,0x01,0x21,0x15,0x23,0x11,0x21,0x15,
3069
+0x01,0x21,0x35,0x33,0x11,0x5c,0x03,0xa2,0xfc,0xfc,0x7b,0x04,
3070
+0x9c,0xfc,0x5e,0x03,0x4c,0x7a,0x48,0x05,0x12,0xdf,0x01,0x5a,
3071
+0x48,0xfa,0xee,0xd1,0xfe,0xb4,0x00,0x00,0x00,0x01,0x00,0xb0,
3072
+0xfe,0xf2,0x02,0x81,0x06,0x14,0x00,0x07,0x00,0x24,0x40,0x12,
3073
+0x04,0x73,0x06,0x02,0x73,0x00,0x71,0x08,0x06,0x05,0x02,0x01,
3074
+0x03,0x03,0x12,0x00,0x02,0x08,0x10,0xf4,0xec,0x10,0xc0,0xc0,
3075
+0xc0,0xc0,0x31,0x00,0x10,0xfc,0xec,0xd4,0xec,0x30,0x13,0x21,
3076
+0x15,0x21,0x11,0x21,0x15,0x21,0xb0,0x01,0xd1,0xfe,0xee,0x01,
3077
+0x12,0xfe,0x2f,0x06,0x14,0x6a,0xf9,0xb2,0x6a,0x00,0x00,0x00,
3078
+0x00,0x01,0x00,0x00,0xff,0x42,0x02,0xb2,0x05,0xd5,0x00,0x03,
3079
+0x00,0x2a,0x40,0x11,0x00,0x03,0x03,0x02,0x02,0x01,0x01,0x00,
3080
+0x4d,0x01,0x00,0x62,0x04,0x02,0x00,0x01,0x03,0x2f,0xcc,0x39,
3081
+0x39,0x31,0x00,0x10,0xf4,0xcc,0x30,0x4b,0x53,0x58,0x07,0x10,
3082
+0x05,0xc9,0x07,0x10,0x05,0xc9,0x59,0x22,0x13,0x01,0x23,0x01,
3083
+0xa0,0x02,0x12,0xa0,0xfd,0xee,0x05,0xd5,0xf9,0x6d,0x06,0x93,
3084
+0x00,0x01,0x00,0x9e,0xfe,0xf2,0x02,0x6f,0x06,0x14,0x00,0x07,
3085
+0x00,0x1f,0x40,0x0f,0x03,0x73,0x01,0x05,0x73,0x00,0x71,0x08,
3086
+0x06,0x02,0x08,0x00,0x12,0x04,0x08,0x10,0xd4,0xec,0x12,0x39,
3087
+0x39,0x31,0x00,0x10,0xfc,0xec,0xd4,0xec,0x30,0x01,0x11,0x21,
3088
+0x35,0x21,0x11,0x21,0x35,0x02,0x6f,0xfe,0x2f,0x01,0x12,0xfe,
3089
+0xee,0x06,0x14,0xf8,0xde,0x6a,0x06,0x4e,0x6a,0x00,0x00,0x00,
3090
+0x00,0x01,0x00,0xd9,0x03,0xa8,0x05,0xdb,0x05,0xd5,0x00,0x06,
3091
+0x00,0x18,0x40,0x0a,0x03,0x04,0x01,0x00,0x62,0x07,0x03,0x01,
3092
+0x05,0x07,0x10,0xd4,0xcc,0x39,0x31,0x00,0x10,0xf4,0xcc,0x32,
3093
+0x39,0x30,0x09,0x01,0x23,0x09,0x01,0x23,0x01,0x03,0xbc,0x02,
3094
+0x1f,0x99,0xfe,0x18,0xfe,0x19,0x9a,0x02,0x1f,0x05,0xd5,0xfd,
3095
+0xd3,0x01,0x7d,0xfe,0x83,0x02,0x2d,0x00,0x00,0x01,0x00,0x00,
3096
+0xfe,0x1d,0x04,0x00,0xfe,0x6d,0x00,0x03,0x00,0x0f,0xb5,0x00,
3097
+0x86,0x01,0x04,0x00,0x02,0x2f,0xcc,0x31,0x00,0x10,0xd4,0xec,
3098
+0x30,0x01,0x15,0x21,0x35,0x04,0x00,0xfc,0x00,0xfe,0x6d,0x50,
3099
+0x50,0x00,0x00,0x00,0x00,0x01,0x00,0xaa,0x04,0xec,0x02,0x73,
3100
+0x06,0x64,0x00,0x03,0x00,0x76,0xb5,0x01,0x00,0x04,0x01,0x03,
3101
+0x04,0x10,0xd4,0xcc,0x31,0x00,0x10,0xd4,0xcc,0x30,0x00,0x4b,
3102
+0xb0,0x09,0x54,0x4b,0xb0,0x0e,0x54,0x5b,0x58,0xbd,0x00,0x04,
3103
+0xff,0xc0,0x00,0x01,0x00,0x04,0x00,0x04,0x00,0x40,0x38,0x11,
3104
+0x37,0x38,0x59,0x01,0x4b,0xb0,0x0e,0x54,0x4b,0xb0,0x0d,0x54,
3105
+0x5b,0x4b,0xb0,0x0b,0x54,0x5b,0x4b,0xb0,0x0f,0x54,0x5b,0x4b,
3106
+0xb0,0x10,0x54,0x5b,0x4b,0xb0,0x11,0x54,0x5b,0x58,0xbd,0x00,
3107
+0x04,0xff,0xc0,0x00,0x01,0x00,0x04,0x00,0x04,0x00,0x40,0x38,
3108
+0x11,0x37,0x38,0x59,0x01,0x4b,0xb0,0x13,0x54,0x58,0xbd,0x00,
3109
+0x04,0x00,0x40,0x00,0x01,0x00,0x04,0x00,0x04,0xff,0xc0,0x38,
3110
+0x11,0x37,0x38,0x59,0x09,0x01,0x23,0x01,0x01,0x6f,0x01,0x04,
3111
+0x75,0xfe,0xac,0x06,0x64,0xfe,0x88,0x01,0x78,0x00,0x00,0x00,
3112
+0x00,0x02,0x00,0x66,0xff,0xe3,0x04,0x8b,0x04,0x44,0x00,0x0a,
3113
+0x00,0x28,0x00,0x7e,0x40,0x2f,0x1b,0x21,0x0b,0x19,0x00,0x10,
3114
+0x0c,0x01,0x7a,0x19,0x93,0x08,0x8f,0x13,0x21,0x8e,0x23,0x8d,
3115
+0x1e,0x8f,0x26,0x8c,0x13,0x60,0x0c,0x7a,0x0e,0x02,0x19,0x05,
3116
+0x00,0x21,0x2d,0x22,0x0d,0x2c,0x1a,0x0f,0x00,0x27,0x0b,0x05,
3117
+0x1a,0x22,0x16,0x2a,0x29,0x10,0xf4,0xc4,0xec,0xd4,0xec,0x32,
3118
+0x32,0xe4,0x10,0xee,0x11,0x12,0x39,0x39,0x31,0x00,0x2f,0xee,
3119
+0xe4,0xfe,0xee,0xf6,0xe6,0x10,0xee,0xf6,0xee,0x11,0x39,0x39,
3120
+0x11,0x39,0x12,0x39,0x30,0x40,0x24,0x10,0x2a,0x6f,0x2a,0x78,
3121
+0x28,0xc0,0x2a,0x04,0x7a,0x28,0xc0,0x01,0xc0,0x02,0xc0,0x03,
3122
+0xc4,0x04,0xc4,0x05,0xc4,0x06,0xc4,0x15,0xc4,0x16,0xc4,0x17,
3123
+0xc0,0x18,0xc0,0x19,0xc0,0x1a,0x0d,0x5d,0x01,0x5d,0x01,0x35,
3124
+0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x13,0x11,0x33,
3125
+0x15,0x21,0x35,0x0e,0x01,0x23,0x22,0x26,0x35,0x34,0x36,0x33,
3126
+0x21,0x35,0x34,0x26,0x23,0x22,0x06,0x07,0x23,0x35,0x3e,0x01,
3127
+0x33,0x32,0x16,0x03,0x2f,0xed,0x89,0x86,0x88,0x74,0x73,0x8d,
3128
+0xb8,0xa4,0xfe,0xa4,0x3d,0xa0,0x6b,0xb1,0xd0,0xee,0xd9,0x01,
3129
+0x02,0x93,0x85,0x6e,0x82,0x10,0x5f,0x60,0xb5,0x56,0xdd,0xe7,
3130
+0x01,0x4e,0xe1,0x76,0x7a,0x6f,0x82,0x8e,0x01,0xbc,0xfd,0xd2,
3131
+0x6a,0x73,0x4a,0x46,0xbc,0xa0,0xa5,0xb6,0x49,0x79,0x85,0x64,
3132
+0x62,0xd7,0x29,0x29,0xdb,0x00,0x00,0x00,0x00,0x02,0x00,0x3b,
3133
+0xff,0xe3,0x04,0xb8,0x06,0x14,0x00,0x14,0x00,0x21,0x00,0x47,
3134
+0x40,0x25,0x21,0x05,0x11,0x15,0x03,0x00,0x1e,0x94,0x08,0x18,
3135
+0x94,0x0e,0x01,0x7a,0x03,0x71,0x00,0x7a,0x0e,0x60,0x08,0x8c,
3136
+0x12,0x1b,0x1a,0x0b,0x35,0x13,0x02,0x2c,0x15,0x11,0x04,0x27,
3137
+0x00,0x30,0x22,0x10,0xf4,0xec,0x32,0x32,0xe4,0x32,0xf4,0xec,
3138
+0x31,0x00,0x2f,0xec,0xe4,0xec,0xfc,0xec,0x10,0xee,0x10,0xee,
3139
+0x11,0x17,0x39,0x39,0x30,0xb2,0x7f,0x23,0x01,0x01,0x5d,0x37,
3140
+0x11,0x23,0x35,0x21,0x11,0x3e,0x01,0x33,0x32,0x12,0x15,0x14,
3141
+0x02,0x23,0x22,0x26,0x27,0x15,0x21,0x35,0x01,0x14,0x16,0x33,
3142
+0x32,0x36,0x35,0x34,0x26,0x23,0x22,0x06,0x15,0xec,0xb1,0x01,
3143
+0x69,0x36,0xa7,0x7b,0xc4,0xf8,0xf8,0xc4,0x7b,0xa7,0x36,0xfe,
3144
+0x97,0x01,0x69,0x93,0x8c,0x8d,0x91,0x91,0x8d,0x8c,0x93,0x6a,
3145
+0x05,0x40,0x6a,0xfd,0x6d,0x64,0x5f,0xfe,0xca,0xfa,0xfa,0xfe,
3146
+0xc9,0x5f,0x64,0xa6,0x6a,0x01,0x75,0xc0,0xc9,0xe2,0xdc,0xdd,
3147
+0xe0,0xca,0xbf,0x00,0x00,0x01,0x00,0x66,0xff,0xe3,0x04,0x1d,
3148
+0x04,0x44,0x00,0x1a,0x00,0x35,0x40,0x1a,0x00,0x99,0x17,0x8f,
3149
+0x03,0x0d,0x97,0x0c,0x95,0x11,0x8f,0x09,0x8c,0x03,0x60,0x1b,
3150
+0x0e,0x2d,0x0c,0x1a,0x00,0x14,0x1a,0x06,0x2a,0x1b,0x10,0xf4,
3151
+0xec,0xd4,0xcc,0xd4,0xec,0x31,0x00,0x10,0xe4,0xfc,0xec,0xfc,
3152
+0xec,0x10,0xfe,0xe4,0x30,0xb2,0x6f,0x1c,0x01,0x01,0x5d,0x01,
3153
+0x0e,0x01,0x23,0x22,0x00,0x35,0x10,0x00,0x33,0x32,0x16,0x17,
3154
+0x11,0x23,0x2e,0x01,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,
3155
+0x36,0x37,0x04,0x1d,0x27,0xde,0xb0,0xe8,0xfe,0xe6,0x01,0x1a,
3156
+0xe8,0x65,0xc8,0x65,0x6b,0x15,0x8d,0x83,0x95,0x98,0x97,0x96,
3157
+0x77,0x8e,0x1a,0x01,0x3f,0xaa,0xb2,0x01,0x33,0xfe,0x00,0xff,
3158
+0x01,0x31,0x2f,0x30,0xfe,0xf0,0x8c,0x80,0xe7,0xe6,0xe6,0xe8,
3159
+0x7c,0x7d,0x00,0x00,0x00,0x02,0x00,0x66,0xff,0xe3,0x04,0xe3,
3160
+0x06,0x14,0x00,0x14,0x00,0x21,0x00,0x4f,0x40,0x26,0x16,0x04,
3161
+0x10,0x15,0x03,0x00,0x19,0x94,0x0d,0x1f,0x94,0x07,0x11,0x7a,
3162
+0x13,0x71,0x00,0x7a,0x07,0x60,0x0d,0x8c,0x02,0x12,0x2c,0x15,
3163
+0x10,0x03,0x27,0x01,0x2c,0x00,0x35,0x1c,0x1a,0x0a,0x2a,0x22,
3164
+0x10,0xf4,0xec,0xf4,0xe4,0xfc,0x3c,0x3c,0xe4,0x31,0x00,0x2f,
3165
+0xec,0xe4,0xec,0xfc,0xec,0x10,0xee,0x10,0xee,0x11,0x17,0x39,
3166
+0x39,0x30,0x40,0x09,0x00,0x23,0x10,0x23,0x7f,0x23,0xb0,0x23,
3167
+0x04,0x01,0x5d,0x25,0x33,0x15,0x21,0x35,0x0e,0x01,0x23,0x22,
3168
+0x02,0x35,0x34,0x12,0x33,0x32,0x16,0x17,0x11,0x23,0x35,0x21,
3169
+0x03,0x35,0x34,0x26,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,
3170
+0x36,0x04,0x33,0xb0,0xfe,0x98,0x36,0xa7,0x7b,0xc4,0xf9,0xf8,
3171
+0xc5,0x7b,0xa7,0x36,0xae,0x01,0x66,0xb8,0x93,0x8c,0x8e,0x91,
3172
+0x91,0x8e,0x8c,0x93,0x6a,0x6a,0xa6,0x64,0x5f,0x01,0x37,0xfa,
3173
+0xfa,0x01,0x36,0x5f,0x64,0x02,0x29,0x6a,0xfb,0xcb,0x69,0xbf,
3174
+0xca,0xe0,0xdd,0xdc,0xe2,0xc9,0x00,0x00,0x00,0x02,0x00,0x66,
3175
+0xff,0xe3,0x04,0x56,0x04,0x44,0x00,0x14,0x00,0x1b,0x00,0x4e,
3176
+0x40,0x1e,0x02,0x08,0x15,0x7a,0x00,0x08,0x99,0x05,0x8f,0x0c,
3177
+0x18,0x8f,0x00,0x9b,0x12,0x8c,0x0c,0x60,0x1c,0x08,0x09,0x15,
3178
+0x1a,0x00,0x1b,0x01,0x1a,0x0f,0x2a,0x1c,0x10,0xf4,0xec,0x32,
3179
+0xd4,0xec,0xd4,0xcc,0x31,0x00,0x10,0xe4,0xfc,0xec,0xec,0x10,
3180
+0xfe,0xe4,0x10,0xee,0x12,0x39,0x30,0x40,0x12,0x20,0x1d,0x40,
3181
+0x1d,0x7f,0x1d,0x03,0xcf,0x00,0xcf,0x01,0xcf,0x02,0xcf,0x15,
3182
+0xcf,0x1b,0x05,0x5d,0x01,0x5d,0x01,0x21,0x15,0x14,0x16,0x33,
3183
+0x32,0x36,0x37,0x33,0x0e,0x01,0x23,0x22,0x00,0x35,0x34,0x00,
3184
+0x33,0x32,0x00,0x07,0x2e,0x01,0x23,0x22,0x06,0x07,0x04,0x56,
3185
+0xfc,0xe7,0xa2,0x9e,0x79,0x9b,0x1f,0x94,0x2c,0xed,0xc1,0xe9,
3186
+0xfe,0xe5,0x01,0x16,0xe2,0xf1,0x01,0x02,0xd4,0x06,0x91,0x88,
3187
+0x7f,0x92,0x10,0x02,0x00,0x08,0xd7,0xdb,0x7f,0x7d,0xaf,0xb0,
3188
+0x01,0x33,0xfe,0xfc,0x01,0x34,0xfe,0xd7,0xb1,0xba,0xbd,0xbe,
3189
+0xb9,0x00,0x00,0x00,0x00,0x01,0x00,0x4a,0x00,0x00,0x03,0x71,
3190
+0x06,0x14,0x00,0x1c,0x00,0x71,0x40,0x26,0x07,0x16,0x00,0x12,
3191
+0x0a,0x7a,0x08,0x00,0x1c,0x04,0x8f,0x19,0x71,0x10,0x0c,0x7a,
3192
+0x14,0x08,0x9c,0x0e,0x09,0x0d,0x01,0x2d,0x00,0x0d,0x0b,0x07,
3193
+0x27,0x00,0x36,0x13,0x0f,0x2c,0x15,0x11,0x30,0x1d,0x10,0xf4,
3194
+0x3c,0xe4,0x32,0xe4,0xfc,0x3c,0xc4,0x10,0xee,0x11,0x39,0x31,
3195
+0x00,0x2f,0xee,0x32,0xee,0x32,0xfe,0xee,0xd6,0xc6,0x10,0xee,
3196
+0x32,0x12,0x39,0x39,0x30,0xb2,0x8f,0x1e,0x01,0x01,0x5d,0x01,
3197
+0x4b,0xb0,0x15,0x54,0x58,0xbd,0x00,0x1d,0xff,0xc0,0x00,0x01,
3198
+0x00,0x1d,0x00,0x1d,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0xb7,
3199
+0x60,0x00,0x60,0x01,0x02,0x3f,0x1e,0x01,0x5d,0x00,0x5d,0x01,
3200
+0x23,0x2e,0x01,0x23,0x22,0x06,0x1d,0x01,0x21,0x15,0x21,0x11,
3201
+0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x33,0x35,0x34,0x36,
3202
+0x33,0x32,0x16,0x17,0x03,0x71,0x61,0x01,0x53,0x4f,0x67,0x54,
3203
+0x01,0x29,0xfe,0xd7,0xec,0xfd,0xac,0xb0,0xb0,0xb0,0xb9,0xb3,
3204
+0x43,0x86,0x42,0x05,0x19,0x4b,0x4e,0x71,0x91,0x89,0x6b,0xfc,
3205
+0xae,0x6a,0x6a,0x03,0x52,0x6b,0x85,0xb2,0xb6,0x18,0x19,0x00,
3206
+0x00,0x02,0x00,0x66,0xfe,0x39,0x04,0xe3,0x04,0x44,0x00,0x1f,
3207
+0x00,0x2c,0x00,0x66,0x40,0x33,0x2c,0x00,0x0f,0x01,0x13,0x10,
3208
+0x1c,0x20,0x03,0x29,0x00,0x7a,0x1d,0x29,0x94,0x13,0x08,0x9e,
3209
+0x07,0x0c,0x8f,0x04,0x23,0x94,0x19,0x8c,0x13,0x60,0x04,0x9d,
3210
+0x1d,0x9c,0x2d,0x09,0x2d,0x07,0x1e,0x2c,0x20,0x1c,0x0f,0x27,
3211
+0x00,0x35,0x26,0x1a,0x07,0x37,0x16,0x2a,0x2d,0x10,0xf4,0xe4,
3212
+0xec,0xf4,0xec,0x32,0x32,0xe4,0x10,0xee,0x31,0x00,0x10,0xec,
3213
+0xec,0xe4,0xfc,0xec,0x10,0xee,0xde,0xe6,0x10,0xee,0x10,0xee,
3214
+0x11,0x17,0x39,0x12,0x39,0x39,0x12,0x39,0x30,0x40,0x09,0x00,
3215
+0x2e,0x10,0x2e,0x7f,0x2e,0xb0,0x2e,0x04,0x01,0x5d,0x01,0x11,
3216
+0x14,0x06,0x23,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,
3217
+0x36,0x3d,0x01,0x0e,0x01,0x23,0x22,0x02,0x35,0x34,0x12,0x33,
3218
+0x32,0x16,0x17,0x35,0x21,0x15,0x01,0x34,0x26,0x23,0x22,0x06,
3219
+0x15,0x14,0x16,0x33,0x32,0x36,0x35,0x04,0x33,0xfc,0xe9,0x69,
3220
+0xc0,0x58,0x60,0x12,0x86,0x7d,0xa2,0x97,0x36,0xa7,0x7b,0xc4,
3221
+0xf9,0xf8,0xc5,0x7b,0xa7,0x36,0x01,0x68,0xfe,0x98,0x93,0x8c,
3222
+0x8e,0x91,0x91,0x8e,0x8c,0x93,0x03,0xbc,0xfc,0x5b,0xe5,0xf9,
3223
+0x26,0x26,0xdf,0x68,0x60,0xb7,0xc4,0x8f,0x64,0x5f,0x01,0x37,
3224
+0xfa,0xfa,0x01,0x36,0x5f,0x64,0xa6,0x6b,0xfe,0x8c,0xbf,0xca,
3225
+0xe0,0xdd,0xdc,0xe2,0xc9,0xc0,0x00,0x00,0x00,0x01,0x00,0x4a,
3226
+0x00,0x00,0x04,0xee,0x06,0x14,0x00,0x1d,0x00,0x6f,0x40,0x2c,
3227
+0x1a,0x14,0x07,0x0d,0x01,0x17,0x85,0x0a,0x03,0x7a,0x05,0x71,
3228
+0x1b,0x12,0x0e,0x03,0x01,0x7a,0x0a,0x8c,0x10,0x00,0x11,0x3d,
3229
+0x13,0x1c,0x2c,0x06,0x0f,0x2c,0x13,0x27,0x0d,0x3a,0x04,0x2c,
3230
+0x1a,0x06,0x27,0x00,0x2c,0x02,0x30,0x1e,0x10,0xf4,0xe4,0xec,
3231
+0x32,0xe4,0xf4,0xec,0xe4,0x10,0xe4,0x10,0xe4,0x31,0x00,0x2f,
3232
+0x3c,0xee,0xee,0x17,0x32,0xfc,0xee,0x10,0xee,0x11,0x39,0x39,
3233
+0x39,0x39,0x30,0xb6,0x2f,0x1f,0x7f,0x1f,0xb0,0x1f,0x03,0x01,
3234
+0x5d,0x01,0x4b,0xb0,0x15,0x54,0x58,0xbd,0x00,0x1e,0xff,0xc0,
3235
+0x00,0x01,0x00,0x1e,0x00,0x1e,0x00,0x40,0x38,0x11,0x37,0x38,
3236
+0x59,0x33,0x35,0x33,0x11,0x23,0x35,0x21,0x11,0x3e,0x01,0x33,
3237
+0x32,0x16,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x34,0x26,
3238
+0x23,0x22,0x06,0x15,0x11,0x33,0x15,0x54,0xa6,0xb0,0x01,0x68,
3239
+0x33,0xa3,0x6c,0xb0,0xa6,0xa4,0xfe,0x04,0x9f,0x5f,0x7a,0x80,
3240
+0x86,0xa0,0x6a,0x05,0x40,0x6a,0xfd,0x56,0x6c,0x6e,0xca,0xd6,
3241
+0xfd,0xc6,0x6a,0x6a,0x02,0x00,0xc3,0x8f,0xba,0xb2,0xfe,0x1a,
3242
+0x6a,0x00,0x00,0x00,0x00,0x02,0x00,0x4a,0x00,0x00,0x02,0x60,
3243
+0x05,0xe3,0x00,0x0b,0x00,0x15,0x00,0x49,0x40,0x17,0x03,0x09,
3244
+0x12,0x7a,0x14,0x9c,0x10,0x0c,0x7a,0x0e,0x00,0x03,0x06,0x0d,
3245
+0x2c,0x0c,0x27,0x13,0x0f,0x2c,0x11,0x30,0x16,0x10,0xf4,0xe4,
3246
+0x32,0xfc,0xe4,0xd4,0xec,0x31,0x00,0x2f,0xec,0x32,0xfc,0xec,
3247
+0xd4,0xcc,0x30,0xb2,0x8f,0x17,0x01,0x01,0x5d,0x01,0x4b,0xb0,
3248
+0x15,0x54,0x58,0xbd,0x00,0x16,0xff,0xc0,0x00,0x01,0x00,0x16,
3249
+0x00,0x16,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x13,0x34,0x36,
3250
+0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x13,0x33,0x15,
3251
+0x21,0x35,0x33,0x11,0x23,0x35,0x21,0xc7,0x43,0x2f,0x2e,0x43,
3252
+0x42,0x2f,0x2f,0x43,0xeb,0xae,0xfd,0xea,0xb0,0xb0,0x01,0x68,
3253
+0x05,0x71,0x2e,0x44,0x44,0x2e,0x2f,0x42,0x42,0xfb,0x28,0x6a,
3254
+0x6a,0x03,0x52,0x6b,0x00,0x02,0xff,0x3b,0xfe,0x39,0x01,0xb2,
3255
+0x05,0xe3,0x00,0x0b,0x00,0x1e,0x00,0x69,0x40,0x22,0x1e,0x10,
3256
+0x17,0x0c,0x03,0x09,0x17,0x16,0x1b,0x8f,0x13,0x09,0x0c,0x7a,
3257
+0x0e,0x9c,0x13,0x9d,0x1f,0x18,0x2d,0x16,0x00,0x03,0x06,0x16,
3258
+0x36,0x0f,0x27,0x0d,0x2c,0x0c,0x30,0x1f,0x10,0xf4,0xe4,0xfc,
3259
+0xe4,0xd4,0xec,0x10,0xee,0x31,0x00,0x10,0xec,0xfc,0xec,0xc4,
3260
+0x10,0xee,0xd6,0xc6,0x10,0xce,0x11,0x12,0x39,0x39,0x30,0xb6,
3261
+0x2f,0x20,0x60,0x20,0x70,0x20,0x03,0x01,0x5d,0x01,0x4b,0xb0,
3262
+0x15,0x54,0x58,0xbd,0x00,0x1f,0xff,0xc0,0x00,0x01,0x00,0x1f,
3263
+0x00,0x1f,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0xb4,0x73,0x17,
3264
+0x73,0x18,0x02,0x00,0x5d,0x13,0x34,0x36,0x33,0x32,0x16,0x15,
3265
+0x14,0x06,0x23,0x22,0x26,0x13,0x23,0x35,0x21,0x11,0x14,0x06,
3266
+0x23,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,
3267
+0xcd,0x43,0x2f,0x2e,0x43,0x41,0x30,0x2f,0x43,0x2d,0xae,0x01,
3268
+0x66,0xc3,0xab,0x48,0x83,0x3e,0x5f,0x07,0x55,0x52,0x5b,0x57,
3269
+0x05,0x71,0x2e,0x44,0x44,0x2e,0x2f,0x42,0x42,0xfe,0x7a,0x6b,
3270
+0xfb,0x71,0xa4,0xbb,0x21,0x21,0xdb,0x60,0x5a,0x7b,0x81,0x00,
3271
+0x00,0x01,0x00,0x3b,0x00,0x00,0x04,0xe7,0x06,0x14,0x00,0x19,
3272
+0x01,0x7f,0x40,0x58,0x17,0x9f,0x09,0x08,0x16,0x9f,0x15,0x16,
3273
+0x09,0x08,0x0f,0x9f,0x10,0x0f,0x08,0x09,0x08,0x0e,0x9f,0x09,
3274
+0x09,0x08,0x13,0x14,0x02,0x12,0x15,0x3e,0x10,0x10,0x0f,0x0f,
3275
+0x3e,0x0e,0x0f,0x16,0x16,0x15,0x4d,0x16,0x0f,0x08,0x03,0x02,
3276
+0x0d,0x09,0x7a,0x0b,0x04,0x7a,0x06,0x71,0x18,0x14,0x10,0x03,
3277
+0x02,0x7a,0x0b,0x9c,0x12,0x00,0x01,0x05,0x03,0x09,0x15,0x13,
3278
+0x0f,0x0c,0x0a,0x06,0x11,0x16,0x07,0x12,0x11,0x00,0x00,0x2c,
3279
+0x17,0x07,0x27,0x05,0x2c,0x03,0x30,0x1a,0x10,0xf4,0xe4,0xfc,
3280
+0x3c,0xe4,0x10,0xc0,0xc0,0x12,0x39,0x12,0x17,0x39,0x11,0x12,
3281
+0x39,0x31,0x00,0x2f,0x3c,0xec,0xec,0x17,0x32,0xfc,0xec,0x10,
3282
+0xee,0x32,0x11,0x17,0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x08,
3283
+0xed,0x07,0x10,0x05,0xed,0x11,0x17,0x39,0x07,0x10,0x05,0xed,
3284
+0x07,0x10,0x08,0xed,0x07,0x08,0xed,0x07,0x04,0xed,0x59,0x22,
3285
+0xb2,0x0f,0x1b,0x01,0x01,0x5d,0x40,0xda,0x07,0x08,0x09,0x0f,
3286
+0x09,0x16,0x08,0x17,0x16,0x08,0x1a,0x0f,0x1a,0x16,0x26,0x08,
3287
+0x29,0x0f,0x29,0x16,0x38,0x0f,0x39,0x16,0x39,0x17,0x48,0x0f,
3288
+0x56,0x08,0x57,0x0f,0x67,0x08,0x67,0x0f,0x67,0x16,0x68,0x17,
3289
+0x77,0x08,0x88,0x16,0x96,0x0f,0xb6,0x08,0x18,0x04,0x09,0x07,
3290
+0x0a,0x07,0x0b,0x05,0x0c,0x05,0x0d,0x06,0x0e,0x00,0x0e,0x06,
3291
+0x0f,0x08,0x13,0x0b,0x14,0x07,0x16,0x12,0x09,0x13,0x0a,0x13,
3292
+0x0b,0x13,0x0c,0x13,0x0d,0x12,0x0e,0x10,0x0e,0x15,0x0f,0x1b,
3293
+0x14,0x18,0x15,0x17,0x16,0x28,0x09,0x28,0x0a,0x28,0x0b,0x26,
3294
+0x0e,0x29,0x0f,0x2d,0x10,0x2a,0x11,0x2a,0x12,0x2b,0x14,0x2c,
3295
+0x15,0x29,0x16,0x2f,0x1b,0x36,0x0c,0x36,0x0d,0x36,0x0e,0x39,
3296
+0x10,0x35,0x13,0x39,0x15,0x3f,0x1b,0x46,0x09,0x44,0x0c,0x44,
3297
+0x0d,0x44,0x0e,0x45,0x13,0x59,0x09,0x58,0x0a,0x58,0x0b,0x57,
3298
+0x0f,0x56,0x11,0x56,0x12,0x56,0x13,0x68,0x09,0x66,0x0c,0x66,
3299
+0x0d,0x67,0x0e,0x65,0x0f,0x67,0x10,0x61,0x11,0x61,0x12,0x62,
3300
+0x13,0x65,0x14,0x66,0x16,0x60,0x1b,0x78,0x09,0x78,0x0a,0x78,
3301
+0x0b,0x7a,0x10,0x78,0x11,0x78,0x12,0x76,0x13,0x7a,0x15,0x8b,
3302
+0x13,0x8b,0x14,0x89,0x15,0x89,0x16,0x8f,0x1b,0x96,0x0f,0x96,
3303
+0x10,0xb9,0x09,0xba,0x0a,0xba,0x0b,0xb8,0x16,0x54,0x5d,0x00,
3304
+0x5d,0x29,0x01,0x35,0x33,0x11,0x23,0x35,0x21,0x11,0x01,0x23,
3305
+0x35,0x21,0x15,0x23,0x09,0x01,0x33,0x15,0x21,0x35,0x33,0x01,
3306
+0x07,0x11,0x33,0x02,0x4a,0xfd,0xfc,0xa6,0xb1,0x01,0x69,0x01,
3307
+0xc0,0x99,0x01,0xe1,0xb6,0xfe,0xc4,0x01,0x94,0x99,0xfd,0xf4,
3308
+0x98,0xfe,0xc2,0x91,0xa6,0x6a,0x05,0x40,0x6a,0xfc,0x0b,0x01,
3309
+0x9d,0x6b,0x6b,0xfe,0xdc,0xfd,0xd2,0x6a,0x6a,0x01,0xb5,0x87,
3310
+0xfe,0xd2,0x00,0x00,0x00,0x01,0x00,0x3b,0x00,0x00,0x02,0x52,
3311
+0x06,0x14,0x00,0x09,0x00,0x40,0x40,0x12,0x06,0x7a,0x08,0x71,
3312
+0x04,0x00,0x7a,0x02,0x01,0x2c,0x00,0x27,0x07,0x03,0x2c,0x05,
3313
+0x30,0x0a,0x10,0xf4,0xe4,0x32,0xfc,0xe4,0x31,0x00,0x2f,0xec,
3314
+0x32,0xfc,0xec,0x30,0xb2,0x8f,0x0b,0x01,0x01,0x5d,0x01,0x4b,
3315
+0xb0,0x15,0x54,0x58,0xbd,0x00,0x0a,0xff,0xc0,0x00,0x01,0x00,
3316
+0x0a,0x00,0x0a,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x25,0x33,
3317
+0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x01,0xa4,0xae,0xfd,
3318
+0xe9,0xb1,0xb1,0x01,0x69,0x6a,0x6a,0x6a,0x05,0x40,0x6a,0x00,
3319
+0x00,0x01,0x00,0x4a,0x00,0x00,0x07,0x5e,0x04,0x44,0x00,0x30,
3320
+0x00,0xa9,0x40,0x41,0x20,0x1a,0x13,0x0d,0x04,0x06,0x2b,0x00,
3321
+0x03,0x07,0x1d,0x10,0x85,0x03,0x27,0x7a,0x29,0x9c,0x25,0x21,
3322
+0x18,0x14,0x0b,0x05,0x07,0x7a,0x2e,0x03,0x8c,0x23,0x16,0x09,
3323
+0x00,0x19,0x13,0x0a,0x3d,0x0c,0x22,0x2c,0x20,0x08,0x2c,0x0c,
3324
+0x27,0x06,0x3f,0x17,0x3d,0x19,0x27,0x15,0x2c,0x13,0x3f,0x28,
3325
+0x2c,0x2a,0x20,0x27,0x24,0x2c,0x26,0x30,0x31,0x10,0xf4,0xe4,
3326
+0xec,0x32,0xe4,0xf4,0xe4,0xfc,0xe4,0xf4,0xec,0xe4,0x10,0xe4,
3327
+0x10,0xe4,0x11,0x12,0x39,0x31,0x00,0x2f,0x3c,0x3c,0xee,0x32,
3328
+0xee,0x17,0x32,0xfe,0xee,0x10,0xee,0x32,0x11,0x17,0x39,0x17,
3329
+0x39,0x30,0x40,0x0b,0x3f,0x32,0x5f,0x32,0x6f,0x32,0x90,0x32,
3330
+0xb0,0x32,0x05,0x01,0x5d,0x01,0x4b,0xb0,0x15,0x54,0x58,0xbd,
3331
+0x00,0x31,0xff,0xc0,0x00,0x01,0x00,0x31,0x00,0x31,0x00,0x40,
3332
+0x38,0x11,0x37,0x38,0x59,0x40,0x13,0x2f,0x0a,0x2f,0x0b,0x2f,
3333
+0x17,0x2f,0x18,0xcf,0x0a,0xcf,0x0b,0xcf,0x17,0xcf,0x18,0xc0,
3334
+0x32,0x09,0x5d,0x01,0x3e,0x01,0x33,0x32,0x16,0x15,0x11,0x33,
3335
+0x15,0x21,0x35,0x33,0x11,0x34,0x26,0x23,0x22,0x06,0x15,0x11,
3336
+0x33,0x15,0x21,0x35,0x33,0x11,0x34,0x26,0x23,0x22,0x06,0x15,
3337
+0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x3e,
3338
+0x01,0x33,0x32,0x16,0x04,0x25,0x35,0xa5,0x6e,0xa7,0xa4,0xa6,
3339
+0xfe,0x02,0xa0,0x60,0x6f,0x7b,0x81,0xa0,0xfe,0x08,0xa0,0x60,
3340
+0x6f,0x7b,0x81,0xa0,0xfe,0x02,0xa6,0xb0,0x01,0x68,0x33,0x9e,
3341
+0x64,0x7c,0xa6,0x03,0x58,0x75,0x77,0xcf,0xd1,0xfd,0xc6,0x6a,
3342
+0x6a,0x02,0x25,0xa3,0x8a,0xba,0xb2,0xfe,0x1a,0x6a,0x6a,0x02,
3343
+0x2c,0x9f,0x87,0xba,0xb2,0xfe,0x1a,0x6a,0x6a,0x03,0x54,0x69,
3344
+0xbd,0x6a,0x70,0x7b,0x00,0x01,0x00,0x4a,0x00,0x00,0x04,0xee,
3345
+0x04,0x44,0x00,0x1d,0x00,0x70,0x40,0x2e,0x07,0x0d,0x14,0x1a,
3346
+0x04,0x03,0x01,0x17,0x85,0x0a,0x03,0x7a,0x05,0x9c,0x1b,0x12,
3347
+0x0e,0x03,0x01,0x7a,0x0a,0x8c,0x10,0x00,0x11,0x3d,0x13,0x1c,
3348
+0x2c,0x06,0x0f,0x2c,0x13,0x27,0x0d,0x3a,0x04,0x2c,0x1a,0x06,
3349
+0x27,0x00,0x2c,0x02,0x30,0x1e,0x10,0xf4,0xe4,0xec,0x32,0xe4,
3350
+0xf4,0xec,0xe4,0x10,0xe4,0x10,0xe4,0x31,0x00,0x2f,0x3c,0xee,
3351
+0xee,0x17,0x32,0xfc,0xee,0x10,0xee,0x11,0x12,0x17,0x39,0x30,
3352
+0xb6,0x2f,0x1f,0x7f,0x1f,0xb0,0x1f,0x03,0x01,0x5d,0x01,0x4b,
3353
+0xb0,0x15,0x54,0x58,0xbd,0x00,0x1e,0xff,0xc0,0x00,0x01,0x00,
3354
+0x1e,0x00,0x1e,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x33,0x35,
3355
+0x33,0x11,0x23,0x35,0x21,0x15,0x3e,0x01,0x33,0x32,0x16,0x15,
3356
+0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x34,0x26,0x23,0x22,0x06,
3357
+0x15,0x11,0x33,0x15,0x54,0xa6,0xb0,0x01,0x68,0x33,0xa3,0x6c,
3358
+0xb0,0xa6,0xa4,0xfe,0x04,0x9f,0x60,0x79,0x80,0x86,0xa0,0x6a,
3359
+0x03,0x52,0x6b,0xbd,0x6c,0x6e,0xca,0xd6,0xfd,0xc6,0x6a,0x6a,
3360
+0x02,0x00,0xc3,0x91,0xbb,0xb3,0xfe,0x1a,0x6a,0x00,0x00,0x00,
3361
+0x00,0x02,0x00,0x66,0xff,0xe3,0x04,0x6a,0x04,0x44,0x00,0x0b,
3362
+0x00,0x17,0x00,0x2b,0x40,0x13,0x00,0x8f,0x0c,0x06,0x8f,0x12,
3363
+0x8c,0x0c,0x60,0x18,0x03,0x1a,0x15,0x44,0x09,0x1a,0x0f,0x2a,
3364
+0x18,0x10,0xf4,0xec,0xf4,0xec,0x31,0x00,0x10,0xe4,0xfc,0xec,
3365
+0x10,0xee,0x30,0xb4,0x20,0x19,0x6f,0x19,0x02,0x01,0x5d,0x25,
3366
+0x32,0x36,0x35,0x34,0x26,0x23,0x22,0x06,0x15,0x14,0x16,0x17,
3367
+0x22,0x00,0x35,0x34,0x00,0x33,0x32,0x00,0x15,0x14,0x00,0x02,
3368
+0x68,0x94,0x97,0x97,0x94,0x94,0x97,0x98,0x93,0xe8,0xfe,0xe6,
3369
+0x01,0x19,0xe9,0xe9,0x01,0x19,0xfe,0xe7,0x46,0xea,0xe4,0xe4,
3370
+0xe9,0xe9,0xe4,0xe4,0xea,0x63,0x01,0x33,0xfe,0xfe,0x01,0x32,
3371
+0xfe,0xce,0xfe,0xfe,0xfe,0xcd,0x00,0x00,0x00,0x02,0x00,0x3b,
3372
+0xfe,0x56,0x04,0xb8,0x04,0x44,0x00,0x0c,0x00,0x23,0x00,0x55,
3373
+0x40,0x2c,0x01,0x00,0x11,0x1d,0x03,0x0d,0x04,0x94,0x1a,0x0d,
3374
+0x7a,0x0f,0x22,0x1e,0x7a,0x20,0x0a,0x94,0x14,0x8c,0x1a,0x60,
3375
+0x20,0x82,0x0f,0x9c,0x24,0x1f,0x2c,0x00,0x07,0x1a,0x17,0x35,
3376
+0x21,0x0e,0x2c,0x1d,0x10,0x00,0x27,0x0d,0x30,0x24,0x10,0xf4,
3377
+0xec,0x32,0x32,0xe4,0x32,0xf4,0xec,0x10,0xe4,0x31,0x00,0x10,
3378
+0xec,0xec,0xe4,0xfc,0xec,0x10,0xee,0x32,0x10,0xee,0x10,0xee,
3379
+0x11,0x17,0x39,0x39,0x30,0xb4,0x7f,0x25,0xb0,0x25,0x02,0x01,
3380
+0x5d,0x01,0x15,0x14,0x16,0x33,0x32,0x36,0x35,0x34,0x26,0x23,
3381
+0x22,0x06,0x27,0x23,0x35,0x21,0x15,0x3e,0x01,0x33,0x32,0x12,
3382
+0x15,0x14,0x02,0x23,0x22,0x26,0x27,0x11,0x33,0x15,0x21,0x35,
3383
+0x33,0x01,0xa4,0x93,0x8c,0x8d,0x91,0x91,0x8d,0x8c,0x93,0xb8,
3384
+0xb1,0x01,0x69,0x36,0xa7,0x7b,0xc4,0xf8,0xf8,0xc4,0x7b,0xa7,
3385
+0x36,0xae,0xfd,0xe9,0xb1,0x02,0x48,0x69,0xc0,0xc9,0xe2,0xdc,
3386
+0xdd,0xe0,0xca,0xb5,0x6b,0xa6,0x64,0x5f,0xfe,0xca,0xfa,0xfa,
3387
+0xfe,0xc9,0x5f,0x64,0xfe,0x1b,0x6b,0x6b,0x00,0x02,0x00,0x66,
3388
+0xfe,0x56,0x04,0xe3,0x04,0x44,0x00,0x16,0x00,0x23,0x00,0x53,
3389
+0x40,0x2b,0x23,0x07,0x13,0x17,0x03,0x00,0x20,0x94,0x0a,0x00,
3390
+0x7a,0x14,0x05,0x01,0x7a,0x03,0x1a,0x94,0x10,0x8c,0x0a,0x60,
3391
+0x03,0x82,0x14,0x9c,0x24,0x04,0x2c,0x17,0x13,0x06,0x27,0x15,
3392
+0x02,0x2c,0x00,0x35,0x1d,0x1a,0x0d,0x2a,0x24,0x10,0xf4,0xec,
3393
+0xf4,0xe4,0x32,0xfc,0x3c,0x3c,0xe4,0x31,0x00,0x10,0xec,0xec,
3394
+0xe4,0xfc,0xec,0x10,0xee,0x32,0x10,0xee,0x10,0xee,0x11,0x17,
3395
+0x39,0x39,0x30,0xb4,0x7f,0x25,0xb0,0x25,0x02,0x01,0x5d,0x01,
3396
+0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x0e,0x01,0x23,0x22,0x02,
3397
+0x35,0x34,0x12,0x33,0x32,0x16,0x17,0x35,0x21,0x15,0x01,0x34,
3398
+0x26,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x35,0x04,
3399
+0x33,0xb0,0xfd,0xea,0xae,0x36,0xa7,0x7b,0xc4,0xf9,0xf8,0xc5,
3400
+0x7b,0xa7,0x36,0x01,0x68,0xfe,0x98,0x93,0x8c,0x8e,0x91,0x91,
3401
+0x8e,0x8c,0x93,0x03,0xbc,0xfb,0x05,0x6b,0x6b,0x01,0xe5,0x64,
3402
+0x5f,0x01,0x37,0xfa,0xfa,0x01,0x36,0x5f,0x64,0xa6,0x6b,0xfe,
3403
+0x8c,0xbf,0xca,0xe0,0xdd,0xdc,0xe2,0xc9,0xc0,0x00,0x00,0x00,
3404
+0x00,0x01,0x00,0x4a,0x00,0x00,0x03,0xd3,0x04,0x44,0x00,0x18,
3405
+0x00,0x95,0x40,0x22,0x08,0x09,0x13,0x05,0x01,0x00,0x0f,0x7a,
3406
+0x11,0x00,0x05,0x16,0x8c,0x0d,0x09,0x7a,0x11,0x9c,0x0b,0x0a,
3407
+0x08,0x02,0x2d,0x00,0x10,0x2c,0x12,0x08,0x27,0x0c,0x2c,0x0e,
3408
+0x30,0x19,0x10,0xf4,0xe4,0xec,0x32,0xe4,0xd4,0xec,0x10,0xc4,
3409
+0x31,0x00,0x2f,0xee,0xee,0x32,0xfe,0xc6,0xc6,0x10,0xee,0x10,
3410
+0xc6,0x11,0x39,0x11,0x39,0x30,0x40,0x38,0x10,0x00,0x10,0x01,
3411
+0x10,0x02,0x10,0x03,0x10,0x04,0x10,0x05,0x10,0x15,0x10,0x16,
3412
+0x10,0x17,0x10,0x18,0x2f,0x1a,0x40,0x00,0x40,0x01,0x40,0x02,
3413
+0x40,0x03,0x40,0x04,0x40,0x05,0x44,0x15,0x40,0x16,0x40,0x17,
3414
+0x40,0x18,0x15,0x00,0x01,0x00,0x02,0x10,0x01,0x10,0x02,0x20,
3415
+0x01,0x20,0x02,0x06,0x5d,0x01,0x5d,0x01,0x4b,0xb0,0x15,0x54,
3416
+0x58,0xbd,0x00,0x19,0xff,0xc0,0x00,0x01,0x00,0x19,0x00,0x19,
3417
+0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x01,0x11,0x23,0x2e,0x01,
3418
+0x23,0x22,0x06,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,
3419
+0x35,0x21,0x15,0x3e,0x01,0x33,0x32,0x16,0x03,0xd3,0x6a,0x05,
3420
+0x4e,0x4b,0x88,0x91,0xd5,0xfd,0xcd,0xa6,0xb0,0x01,0x68,0x36,
3421
+0xaa,0x7a,0x2d,0x63,0x04,0x29,0xfe,0xf6,0x4f,0x4e,0xbc,0xb0,
3422
+0xfe,0x1a,0x6a,0x6a,0x03,0x54,0x69,0xbd,0x6f,0x6b,0x0e,0x00,
3423
+0x00,0x01,0x00,0x73,0xff,0xe3,0x03,0xb2,0x04,0x44,0x00,0x29,
3424
+0x00,0xd9,0x40,0x41,0x23,0x22,0x02,0x24,0x21,0x3e,0x0c,0x0b,
3425
+0x1e,0x1f,0x02,0x1d,0x20,0x3e,0x0b,0x0c,0x0b,0x4d,0x0b,0x0c,
3426
+0x20,0x21,0x04,0x16,0x01,0xa1,0x00,0xa0,0x05,0x8f,0x27,0x16,
3427
+0xa1,0x15,0xa0,0x1a,0x8f,0x12,0x8c,0x27,0x60,0x2a,0x20,0x0b,
3428
+0x0c,0x21,0x1d,0x08,0x17,0x2d,0x15,0x1d,0x3e,0x0f,0x08,0x27,
3429
+0x15,0x46,0x24,0x02,0x2d,0x0f,0x00,0x45,0x2a,0x10,0xf4,0xc4,
3430
+0xec,0xd4,0xe4,0xec,0x10,0xee,0x10,0xee,0x11,0x12,0x39,0x39,
3431
+0x39,0x39,0x31,0x00,0x10,0xe4,0xfc,0xec,0xf4,0xec,0x10,0xee,
3432
+0xf6,0xee,0x11,0x17,0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x0e,
3433
+0xed,0x11,0x17,0x39,0x07,0x0e,0xed,0x11,0x17,0x39,0x59,0x22,
3434
+0xb2,0x20,0x2b,0x01,0x01,0x5d,0x40,0x58,0x27,0x1f,0x27,0x20,
3435
+0x27,0x21,0x27,0x22,0x27,0x23,0x5a,0x0a,0x5a,0x0b,0x5a,0x0c,
3436
+0x5a,0x0d,0x5a,0x1f,0x5a,0x20,0x5a,0x21,0x5a,0x22,0x58,0x23,
3437
+0x86,0x1f,0x86,0x20,0x86,0x21,0x86,0x22,0x86,0x23,0x96,0x1f,
3438
+0x96,0x20,0x96,0x21,0x96,0x22,0x96,0x23,0xa6,0x1f,0xa6,0x20,
3439
+0xa6,0x21,0xa6,0x22,0xa6,0x23,0x1d,0x40,0x2b,0x7f,0x2b,0xaf,
3440
+0x14,0xaf,0x15,0xaf,0x16,0xaf,0x17,0xaf,0x18,0xaf,0x19,0xbf,
3441
+0x14,0xbf,0x15,0xbf,0x16,0xbf,0x17,0xbf,0x18,0xbf,0x19,0x0e,
3442
+0x5d,0x00,0x5d,0x37,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,
3443
+0x34,0x26,0x2f,0x01,0x2e,0x01,0x35,0x34,0x36,0x33,0x32,0x16,
3444
+0x17,0x15,0x23,0x2e,0x01,0x23,0x22,0x06,0x15,0x14,0x16,0x1f,
3445
+0x01,0x1e,0x01,0x15,0x14,0x06,0x23,0x22,0x26,0x73,0x6a,0x04,
3446
+0x8d,0x8a,0x7c,0x82,0x5f,0x99,0x85,0x89,0x7b,0xd6,0xbd,0x54,
3447
+0xba,0x63,0x6a,0x04,0x88,0x75,0x74,0x77,0x5a,0x87,0x92,0x97,
3448
+0x85,0xe7,0xcb,0x67,0xc4,0x3b,0xf8,0x77,0x76,0x5d,0x59,0x46,
3449
+0x56,0x31,0x2d,0x2c,0x84,0x66,0x92,0xa6,0x2c,0x2a,0xe8,0x67,
3450
+0x74,0x52,0x52,0x43,0x51,0x2a,0x2d,0x2f,0x8d,0x6f,0x97,0xad,
3451
+0x2c,0x00,0x00,0x00,0x00,0x01,0x00,0x3b,0xff,0xe3,0x03,0x27,
3452
+0x05,0x71,0x00,0x17,0x00,0x68,0x40,0x1d,0x17,0x0a,0x00,0x10,
3453
+0x0d,0x8f,0x14,0x04,0x08,0x00,0x7a,0x06,0x02,0x9c,0x14,0x60,
3454
+0x18,0x07,0x10,0x11,0x01,0x2c,0x09,0x05,0x27,0x03,0x00,0x2f,
3455
+0x18,0x10,0xf4,0x3c,0xec,0x32,0xe4,0xd4,0xcc,0x39,0x31,0x00,
3456
+0x10,0xe4,0xfc,0x3c,0xec,0x32,0xc4,0x10,0xfe,0xc4,0x11,0x39,
3457
+0x39,0x30,0x01,0x4b,0xb0,0x0d,0x54,0x58,0xbd,0x00,0x18,0x00,
3458
+0x40,0x00,0x01,0x00,0x18,0x00,0x18,0xff,0xc0,0x38,0x11,0x37,
3459
+0x38,0x59,0x40,0x15,0x05,0x07,0x05,0x08,0x15,0x07,0x15,0x08,
3460
+0x26,0x07,0x26,0x08,0x2f,0x19,0x7f,0x19,0x8f,0x19,0x9f,0x19,
3461
+0x0a,0x5d,0x13,0x23,0x35,0x33,0x11,0x33,0x11,0x21,0x15,0x21,
3462
+0x11,0x14,0x16,0x33,0x32,0x36,0x37,0x33,0x0e,0x01,0x23,0x22,
3463
+0x26,0x35,0xdd,0xa2,0xa2,0xb9,0x01,0x5a,0xfe,0xa6,0x34,0x46,
3464
+0x48,0x42,0x02,0x8b,0x08,0x8e,0x91,0x9f,0x84,0x03,0xbc,0x6b,
3465
+0x01,0x4a,0xfe,0xb6,0x6b,0xfd,0x5d,0x87,0x4c,0x55,0x5f,0x91,
3466
+0x86,0x8d,0xa9,0x00,0x00,0x01,0x00,0x37,0xff,0xe3,0x04,0xdb,
3467
+0x04,0x27,0x00,0x19,0x00,0x75,0x40,0x22,0x17,0x11,0x06,0x0c,
3468
+0x0d,0x14,0x02,0x85,0x09,0x18,0x0d,0x7a,0x0f,0x00,0x9c,0x09,
3469
+0x60,0x04,0x00,0x2c,0x17,0x05,0x27,0x03,0x2c,0x01,0x3a,0x0e,
3470
+0x2c,0x10,0x27,0x0c,0x2f,0x1a,0x10,0xf4,0xec,0xe4,0xf4,0xe4,
3471
+0xfc,0x3c,0xe4,0x31,0x00,0x2f,0xe4,0xfc,0x3c,0xec,0x32,0x10,
3472
+0xee,0x32,0x11,0x39,0x39,0x39,0x39,0x30,0x01,0x4b,0xb0,0x0b,
3473
+0x54,0x58,0xbd,0x00,0x1a,0x00,0x40,0x00,0x01,0x00,0x1a,0x00,
3474
+0x1a,0xff,0xc0,0x38,0x11,0x37,0x38,0x59,0xb4,0x7f,0x1b,0xb0,
3475
+0x1b,0x02,0x5d,0x01,0x4b,0xb0,0x15,0x54,0x58,0xbd,0x00,0x1a,
3476
+0xff,0xc0,0x00,0x01,0x00,0x1a,0x00,0x1a,0x00,0x40,0x38,0x11,
3477
+0x37,0x38,0x59,0x01,0x21,0x11,0x33,0x15,0x21,0x35,0x0e,0x01,
3478
+0x23,0x22,0x26,0x35,0x11,0x23,0x35,0x21,0x11,0x14,0x16,0x33,
3479
+0x32,0x36,0x35,0x11,0x23,0x02,0xd5,0x01,0x58,0xae,0xfe,0x9a,
3480
+0x33,0xa2,0x6b,0xb1,0xa7,0xa6,0x01,0x5f,0x5f,0x7a,0x80,0x86,
3481
+0xa0,0x04,0x27,0xfc,0x43,0x6a,0xbc,0x6a,0x6f,0xc9,0xd7,0x02,
3482
+0x39,0x6b,0xfd,0x95,0xc2,0x90,0xbc,0xb3,0x01,0xe3,0x00,0x00,
3483
+0x00,0x01,0xff,0xfa,0x00,0x00,0x04,0x7f,0x04,0x27,0x00,0x0e,
3484
+0x00,0xb8,0x40,0x39,0x0a,0x09,0x02,0x08,0x9f,0x0d,0x0e,0x0d,
3485
+0x07,0x9f,0x06,0x07,0x0e,0x0e,0x0d,0x07,0x3e,0x08,0x07,0x00,
3486
+0x01,0x00,0x04,0x05,0x02,0x06,0x3e,0x01,0x01,0x00,0x4d,0x07,
3487
+0x00,0x0c,0x08,0x05,0x03,0x01,0x7a,0x0a,0x03,0x9c,0x00,0x0e,
3488
+0x0d,0x09,0x08,0x07,0x06,0x04,0x01,0x00,0x09,0x0f,0x0b,0x02,
3489
+0x0f,0x10,0xd4,0xcc,0x11,0x17,0x39,0x31,0x00,0x2f,0xfc,0x3c,
3490
+0xec,0x17,0x32,0x11,0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x05,
3491
+0xed,0x17,0x32,0x07,0x10,0x08,0xed,0x07,0x10,0x08,0xed,0x07,
3492
+0x10,0x05,0xed,0x17,0x32,0x59,0x22,0xb2,0x08,0x0a,0x01,0x01,
3493
+0x5d,0x40,0x48,0x06,0x07,0x16,0x07,0x27,0x07,0x20,0x07,0x53,
3494
+0x07,0x63,0x07,0x76,0x07,0x07,0x08,0x08,0x08,0x09,0x1b,0x04,
3495
+0x1b,0x05,0x15,0x09,0x15,0x0a,0x25,0x00,0x2a,0x04,0x2a,0x05,
3496
+0x2a,0x09,0x2a,0x0a,0x2a,0x0e,0x38,0x00,0x30,0x10,0x48,0x00,
3497
+0x47,0x0d,0x47,0x0e,0x57,0x00,0x58,0x0e,0x67,0x00,0x68,0x0e,
3498
+0x76,0x04,0x76,0x05,0x77,0x06,0x78,0x08,0x78,0x09,0x78,0x0a,
3499
+0x78,0x0d,0x1c,0x5d,0x00,0x5d,0x21,0x01,0x23,0x35,0x21,0x15,
3500
+0x23,0x09,0x01,0x23,0x35,0x21,0x15,0x23,0x01,0x01,0xfa,0xfe,
3501
+0x79,0x79,0x01,0xe9,0xaa,0x01,0x2b,0x01,0x2b,0x9f,0x01,0x8f,
3502
+0x77,0xfe,0x79,0x03,0xbc,0x6b,0x6b,0xfd,0x25,0x02,0xdb,0x6b,
3503
+0x6b,0xfc,0x44,0x00,0x00,0x01,0x00,0x21,0x00,0x00,0x06,0xbe,
3504
+0x04,0x27,0x00,0x14,0x01,0xc4,0x40,0x5b,0x0b,0x9f,0x13,0x14,
3505
+0x13,0x0a,0x9f,0x09,0x0a,0x14,0x14,0x13,0x0a,0x3e,0x0b,0x0a,
3506
+0x00,0x01,0x00,0x09,0x3e,0x01,0x01,0x00,0x04,0x03,0x02,0x02,
3507
+0x9f,0x07,0x08,0x07,0x01,0x9f,0x00,0x01,0x08,0x08,0x07,0x13,
3508
+0x3e,0x14,0x13,0x0c,0x0d,0x0c,0x10,0x11,0x02,0x12,0x3e,0x0d,
3509
+0x0d,0x0c,0x4d,0x13,0x0a,0x01,0x03,0x08,0x11,0x0d,0x06,0x03,
3510
+0x02,0x7a,0x0f,0x04,0x00,0x9c,0x0b,0x08,0x14,0x13,0x12,0x10,
3511
+0x0d,0x0c,0x0b,0x0a,0x09,0x08,0x07,0x03,0x02,0x01,0x00,0x0f,
3512
+0x05,0x0e,0x15,0x10,0xd4,0xcc,0x17,0x39,0x31,0x00,0x2f,0x3c,
3513
+0xfc,0x3c,0x3c,0xec,0x17,0x32,0x11,0x17,0x39,0x30,0x4b,0x53,
3514
+0x58,0x07,0x10,0x05,0xed,0x17,0x32,0x07,0x10,0x08,0xed,0x07,
3515
+0x10,0x08,0xed,0x07,0x10,0x05,0xed,0x17,0x32,0x07,0x10,0x05,
3516
+0xed,0x07,0x10,0x08,0xed,0x07,0x10,0x08,0xed,0x07,0x10,0x05,
3517
+0xed,0x59,0x22,0xb2,0x60,0x16,0x01,0x01,0x5d,0x40,0xff,0x03,
3518
+0x01,0x17,0x01,0x16,0x0a,0x1a,0x13,0x24,0x01,0x2c,0x0a,0x28,
3519
+0x13,0x33,0x01,0x3d,0x0a,0x39,0x13,0x44,0x01,0x4a,0x0a,0x49,
3520
+0x13,0x57,0x0a,0x5e,0x13,0x64,0x01,0x69,0x0a,0x69,0x13,0x74,
3521
+0x01,0x7a,0x0a,0x7a,0x13,0x8a,0x0a,0x16,0x06,0x00,0x07,0x01,
3522
+0x08,0x02,0x0d,0x03,0x0d,0x04,0x05,0x08,0x07,0x09,0x06,0x0a,
3523
+0x07,0x0b,0x0a,0x0c,0x06,0x14,0x13,0x00,0x10,0x01,0x10,0x02,
3524
+0x13,0x03,0x13,0x04,0x10,0x05,0x10,0x06,0x10,0x07,0x17,0x08,
3525
+0x10,0x08,0x10,0x09,0x12,0x0a,0x14,0x0b,0x18,0x0c,0x16,0x13,
3526
+0x13,0x14,0x26,0x00,0x28,0x01,0x29,0x09,0x26,0x0a,0x23,0x0b,
3527
+0x2a,0x10,0x2a,0x11,0x25,0x13,0x26,0x14,0x3a,0x00,0x3b,0x01,
3528
+0x3f,0x02,0x3f,0x03,0x3f,0x04,0x3f,0x05,0x3f,0x06,0x3f,0x07,
3529
+0x3a,0x08,0x3b,0x09,0x39,0x0a,0x3b,0x0c,0x38,0x0d,0x38,0x12,
3530
+0x3a,0x13,0x39,0x14,0x46,0x00,0x45,0x01,0x45,0x08,0x45,0x09,
3531
+0x46,0x0a,0x46,0x0b,0x49,0x0c,0x48,0x0d,0x48,0x10,0x48,0x11,
3532
+0x48,0x12,0x48,0x13,0x46,0x14,0x51,0x00,0x50,0x01,0x50,0x02,
3533
+0x50,0x03,0x50,0x04,0x50,0x05,0x50,0x06,0x50,0x07,0x50,0x08,
3534
+0x50,0x09,0x52,0x0a,0x54,0x0b,0x58,0x12,0x56,0x13,0x53,0x14,
3535
+0x50,0x16,0x62,0x00,0x60,0x01,0x60,0x02,0x64,0x03,0x64,0x04,
3536
+0x60,0x05,0x60,0x06,0x60,0x07,0x60,0x08,0x60,0x09,0x62,0x0a,
3537
+0x64,0x0b,0x66,0x13,0x62,0x14,0x60,0x16,0x75,0x00,0x78,0x01,
3538
+0x79,0x02,0x7d,0x03,0x7d,0x04,0x79,0x05,0x79,0x06,0x79,0x07,
3539
+0x7a,0x08,0x40,0x1f,0x79,0x09,0x76,0x0a,0x71,0x0b,0x75,0x0c,
3540
+0x76,0x0d,0x76,0x0e,0x76,0x0f,0x77,0x10,0x77,0x11,0x77,0x12,
3541
+0x74,0x13,0x77,0x14,0x8a,0x09,0x89,0x0a,0xc0,0x16,0x78,0x5d,
3542
+0x00,0x5d,0x09,0x01,0x13,0x23,0x35,0x21,0x15,0x23,0x01,0x23,
3543
+0x09,0x01,0x23,0x01,0x23,0x35,0x21,0x15,0x23,0x13,0x01,0x03,
3544
+0xd7,0x01,0x10,0xf0,0x9a,0x01,0x81,0x76,0xfe,0xc4,0x99,0xfe,
3545
+0xfa,0xfe,0xf9,0x93,0xfe,0xc5,0x77,0x01,0xe1,0xac,0xee,0x01,
3546
+0x12,0x04,0x27,0xfc,0xc2,0x02,0xd3,0x6b,0x6b,0xfc,0x44,0x03,
3547
+0x1b,0xfc,0xe5,0x03,0xbc,0x6b,0x6b,0xfd,0x2d,0x03,0x3e,0x00,
3548
+0x00,0x01,0x00,0x19,0x00,0x00,0x04,0x6a,0x04,0x27,0x00,0x1b,
3549
+0x01,0xb0,0x40,0x67,0x11,0x10,0x02,0x0f,0x9f,0x14,0x15,0x14,
3550
+0x0e,0x9f,0x0d,0x0e,0x15,0x15,0x14,0x0e,0x3e,0x0f,0x0e,0x07,
3551
+0x08,0x07,0x0b,0x0c,0x02,0x0d,0x3e,0x08,0x08,0x07,0x03,0x02,
3552
+0x02,0x01,0x9f,0x06,0x07,0x06,0x00,0x9f,0x1b,0x00,0x07,0x07,
3553
+0x06,0x00,0x3e,0x01,0x00,0x15,0x16,0x15,0x19,0x1a,0x02,0x1b,
3554
+0x3e,0x16,0x16,0x15,0x4d,0x15,0x0e,0x07,0x00,0x04,0x08,0x1a,
3555
+0x16,0x05,0x03,0x01,0x7a,0x18,0x03,0x9c,0x13,0x0f,0x0c,0x03,
3556
+0x08,0x7a,0x11,0x0a,0x1b,0x19,0x15,0x10,0x0f,0x0e,0x0d,0x0b,
3557
+0x07,0x02,0x01,0x00,0x0c,0x12,0x04,0x09,0x12,0x17,0x1c,0x10,
3558
+0xd4,0xc4,0xdc,0xc4,0x11,0x17,0x39,0x31,0x00,0x2f,0x3c,0xec,
3559
+0x17,0x32,0xfc,0x3c,0xec,0x17,0x32,0x11,0x17,0x39,0x30,0x4b,
3560
+0x53,0x58,0x07,0x10,0x05,0xed,0x17,0x32,0x07,0x10,0x08,0xed,
3561
+0x07,0x10,0x08,0xed,0x07,0x10,0x05,0xed,0x17,0x32,0x07,0x10,
3562
+0x05,0xed,0x17,0x32,0x07,0x10,0x08,0xed,0x07,0x10,0x08,0xed,
3563
+0x07,0x10,0x05,0xed,0x17,0x32,0x59,0x22,0x01,0x4b,0xb0,0x0c,
3564
+0x54,0x4b,0xb0,0x15,0x54,0x5b,0x58,0xbd,0x00,0x1c,0xff,0xc0,
3565
+0x00,0x01,0x00,0x1c,0x00,0x1c,0x00,0x40,0x38,0x11,0x37,0x38,
3566
+0x59,0x40,0xe0,0x04,0x00,0x0a,0x0e,0x15,0x00,0x1b,0x0e,0x25,
3567
+0x00,0x2a,0x0e,0x47,0x00,0x49,0x0e,0x57,0x00,0x57,0x07,0x59,
3568
+0x0e,0x58,0x15,0x66,0x00,0x66,0x07,0x68,0x0e,0x68,0x15,0x79,
3569
+0x0e,0x79,0x15,0x85,0x00,0x8b,0x0e,0x14,0x0a,0x01,0x09,0x02,
3570
+0x09,0x03,0x09,0x0d,0x06,0x0f,0x05,0x19,0x05,0x1a,0x06,0x1b,
3571
+0x1a,0x01,0x1a,0x02,0x1a,0x03,0x19,0x0b,0x19,0x0c,0x1a,0x0d,
3572
+0x15,0x0f,0x19,0x19,0x19,0x1a,0x15,0x1b,0x28,0x00,0x29,0x01,
3573
+0x2c,0x02,0x2c,0x03,0x25,0x0b,0x25,0x0c,0x28,0x0d,0x27,0x0e,
3574
+0x26,0x0f,0x26,0x10,0x26,0x11,0x29,0x19,0x29,0x1a,0x27,0x1b,
3575
+0x39,0x02,0x3f,0x02,0x39,0x03,0x3f,0x03,0x48,0x00,0x49,0x01,
3576
+0x47,0x0e,0x46,0x0f,0x47,0x1b,0x5a,0x01,0x59,0x02,0x59,0x03,
3577
+0x59,0x06,0x57,0x07,0x59,0x0d,0x57,0x0e,0x55,0x0f,0x56,0x16,
3578
+0x56,0x19,0x56,0x1a,0x56,0x1b,0x6a,0x01,0x6a,0x02,0x6a,0x03,
3579
+0x67,0x07,0x68,0x0b,0x68,0x0c,0x68,0x0d,0x67,0x0e,0x65,0x0f,
3580
+0x66,0x1b,0x78,0x00,0x7c,0x01,0x7c,0x02,0x7c,0x03,0x7c,0x06,
3581
+0x79,0x0d,0x77,0x0e,0x74,0x0f,0x74,0x10,0x74,0x11,0x74,0x14,
3582
+0x78,0x15,0x76,0x16,0x75,0x19,0x75,0x1a,0x75,0x1b,0x86,0x00,
3583
+0x89,0x07,0x8c,0x0b,0x8c,0x0c,0x89,0x0d,0x89,0x0e,0x87,0x0f,
3584
+0x87,0x14,0x86,0x15,0x86,0x19,0x86,0x1a,0x86,0x1b,0x5b,0x5d,
3585
+0x00,0x5d,0x01,0x13,0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x33,
3586
+0x15,0x21,0x35,0x33,0x0b,0x01,0x33,0x15,0x21,0x35,0x33,0x09,
3587
+0x01,0x23,0x35,0x21,0x15,0x23,0x02,0x54,0xdf,0x8f,0x01,0x99,
3588
+0x8d,0xfe,0xe3,0x01,0x4c,0x8b,0xfe,0x15,0x87,0xe7,0xe8,0x8a,
3589
+0xfe,0x6c,0x8d,0x01,0x25,0xfe,0xbd,0x83,0x01,0xdb,0x7f,0x02,
3590
+0x89,0x01,0x33,0x6b,0x6b,0xfe,0x77,0xfe,0x37,0x6a,0x6a,0x01,
3591
+0x3e,0xfe,0xc2,0x6a,0x6a,0x01,0x94,0x01,0xbe,0x6b,0x6b,0x00,
3592
+0x00,0x01,0xff,0xfa,0xfe,0x39,0x04,0x7f,0x04,0x27,0x00,0x1c,
3593
+0x01,0x03,0x40,0x59,0x01,0x9f,0x02,0x01,0x0f,0x0e,0x1b,0x1c,
3594
+0x02,0x1a,0x00,0x9f,0x0f,0x0f,0x0e,0x0b,0x0a,0x02,0x09,0x9f,
3595
+0x0e,0x0f,0x0e,0x08,0x9f,0x07,0x08,0x0f,0x0f,0x0e,0x08,0x3e,
3596
+0x09,0x08,0x01,0x02,0x01,0x05,0x06,0x02,0x07,0x3e,0x02,0x02,
3597
+0x01,0x4d,0x08,0x1d,0x02,0x0f,0x1a,0x00,0x02,0x16,0x15,0x1a,
3598
+0x8f,0x12,0x0d,0x09,0x06,0x03,0x02,0x7a,0x0b,0x04,0x9c,0x12,
3599
+0x9d,0x1d,0x02,0x15,0x0e,0x0a,0x09,0x08,0x07,0x05,0x01,0x00,
3600
+0x08,0x0f,0x0c,0x17,0x2d,0x15,0x0c,0x03,0x1d,0x10,0xd4,0xc4,
3601
+0xd4,0xec,0x11,0x39,0x17,0x39,0x11,0x39,0x31,0x00,0x10,0xec,
3602
+0xfc,0x3c,0xec,0x17,0x32,0x10,0xee,0xd6,0xc6,0x11,0x39,0x11,
3603
+0x39,0x11,0x12,0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x05,0xed,
3604
+0x17,0x32,0x07,0x10,0x08,0xed,0x07,0x10,0x08,0xed,0x07,0x10,
3605
+0x05,0xed,0x17,0x32,0x07,0x10,0x0e,0xed,0x11,0x17,0x39,0x07,
3606
+0x08,0xed,0x59,0x22,0xb2,0x07,0x0e,0x01,0x01,0x5d,0x40,0x5a,
3607
+0x17,0x10,0x59,0x01,0x69,0x01,0x78,0x01,0x04,0x07,0x0f,0x15,
3608
+0x10,0x29,0x05,0x29,0x06,0x2a,0x0a,0x2a,0x0b,0x27,0x0e,0x27,
3609
+0x0f,0x26,0x10,0x58,0x01,0x53,0x02,0x55,0x05,0x50,0x05,0x55,
3610
+0x06,0x50,0x06,0x53,0x07,0x56,0x0a,0x56,0x0b,0x68,0x01,0x64,
3611
+0x02,0x60,0x05,0x60,0x06,0x64,0x07,0x76,0x00,0x77,0x01,0x78,
3612
+0x02,0x7e,0x03,0x7e,0x04,0x74,0x05,0x74,0x06,0x79,0x09,0x78,
3613
+0x0c,0x78,0x0d,0x79,0x0e,0x75,0x0f,0x75,0x10,0x76,0x11,0x76,
3614
+0x1a,0x76,0x1b,0x76,0x1c,0x28,0x5d,0x00,0x5d,0x05,0x37,0x01,
3615
+0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x23,0x35,0x21,0x15,0x23,
3616
+0x01,0x0e,0x01,0x23,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,
3617
+0x32,0x36,0x01,0xba,0x46,0xfe,0x73,0x79,0x01,0xe9,0xaa,0x01,
3618
+0x2b,0x01,0x2b,0x9f,0x01,0x8f,0x77,0xfe,0x19,0x32,0x7a,0x6f,
3619
+0x2f,0x63,0x32,0x5e,0x06,0x39,0x3c,0x37,0x43,0xc3,0xb1,0x03,
3620
+0xce,0x6b,0x6b,0xfd,0x25,0x02,0xdb,0x6b,0x6b,0xfb,0x54,0x7c,
3621
+0x5b,0x10,0x0f,0xcb,0x44,0x3b,0x3d,0x00,0x00,0x01,0x00,0x52,
3622
+0x00,0x00,0x03,0xec,0x04,0x27,0x00,0x0d,0x00,0x6a,0x40,0x22,
3623
+0x09,0x3e,0x01,0x02,0x01,0x02,0x3e,0x08,0x09,0x08,0x4d,0x0b,
3624
+0x09,0x04,0x02,0x7a,0x06,0x9c,0x09,0x7a,0x00,0x09,0x02,0x0a,
3625
+0x03,0x2d,0x05,0x0a,0x2d,0x07,0x0c,0x05,0x00,0x0e,0x10,0xd4,
3626
+0xc4,0xd4,0xc4,0xec,0x10,0xee,0x11,0x39,0x39,0x31,0x00,0x2f,
3627
+0xee,0xfe,0xfe,0xc4,0x10,0xc4,0x30,0x4b,0x53,0x58,0x07,0x10,
3628
+0x05,0xed,0x07,0x10,0x05,0xed,0x59,0x22,0x01,0x4b,0xb0,0x0b,
3629
+0x54,0x4b,0xb0,0x0c,0x54,0x5b,0x58,0xbd,0x00,0x0e,0xff,0xc0,
3630
+0x00,0x01,0x00,0x0e,0x00,0x0e,0x00,0x40,0x38,0x11,0x37,0x38,
3631
+0x59,0xb4,0x69,0x02,0x66,0x09,0x02,0x5d,0x33,0x35,0x01,0x21,
3632
+0x15,0x23,0x11,0x21,0x15,0x01,0x21,0x35,0x33,0x11,0x52,0x02,
3633
+0x9a,0xfd,0xf1,0x6a,0x03,0x66,0xfd,0x66,0x02,0x42,0x6b,0x56,
3634
+0x03,0x66,0xb8,0x01,0x23,0x56,0xfc,0x99,0xc1,0xfe,0xd5,0x00,
3635
+0x00,0x01,0x01,0x00,0xfe,0xb2,0x04,0x17,0x06,0x14,0x00,0x24,
3636
+0x00,0x5e,0x40,0x30,0x19,0x0f,0x15,0x0b,0x06,0x21,0x09,0x1a,
3637
+0x10,0x15,0x0b,0x05,0x20,0x21,0x1d,0x09,0x73,0x0b,0x00,0x73,
3638
+0x01,0x15,0x73,0x13,0x71,0x21,0x0a,0x09,0x0c,0x03,0x25,0x05,
3639
+0x24,0x16,0x00,0x13,0x02,0x15,0x14,0x01,0x00,0x19,0x20,0x19,
3640
+0x27,0x0f,0x05,0x25,0x10,0xd4,0x3c,0xec,0x32,0x10,0xc0,0xc0,
3641
+0xc0,0xc0,0xc0,0xc0,0x12,0x39,0x39,0x11,0x12,0x17,0x39,0x31,
3642
+0x00,0x2f,0xfc,0xec,0xd4,0xec,0xd4,0xec,0x39,0x11,0x39,0x39,
3643
+0x11,0x12,0x39,0x39,0x11,0x12,0x39,0x11,0x12,0x39,0x39,0x30,
3644
+0x05,0x15,0x23,0x22,0x26,0x35,0x11,0x34,0x26,0x2b,0x01,0x35,
3645
+0x33,0x32,0x36,0x35,0x11,0x34,0x36,0x3b,0x01,0x15,0x23,0x22,
3646
+0x06,0x15,0x11,0x14,0x06,0x07,0x1e,0x01,0x15,0x11,0x14,0x16,
3647
+0x33,0x04,0x17,0x3e,0xf9,0xa9,0x6c,0x8e,0x3d,0x3d,0x8e,0x6c,
3648
+0xa9,0xf9,0x3e,0x44,0x8d,0x56,0x64,0x82,0x84,0x62,0x56,0x8d,
3649
+0xe5,0x69,0x94,0xdd,0x01,0x02,0x96,0x74,0x69,0x74,0x96,0x01,
3650
+0x02,0xdd,0x93,0x68,0x58,0x8d,0xfe,0xe1,0x9e,0x88,0x1e,0x22,
3651
+0x86,0x9d,0xfe,0xe1,0x8d,0x58,0x00,0x00,0x00,0x01,0x01,0x08,
3652
+0xfe,0x1d,0x01,0xaa,0x06,0x1d,0x00,0x03,0x00,0x11,0xb6,0x01,
3653
+0x00,0x04,0x00,0x47,0x02,0x04,0x10,0xd4,0xec,0x31,0x00,0x10,
3654
+0xd4,0xcc,0x30,0x01,0x11,0x23,0x11,0x01,0xaa,0xa2,0x06,0x1d,
3655
+0xf8,0x00,0x08,0x00,0x00,0x01,0x01,0x00,0xfe,0xb2,0x04,0x17,
3656
+0x06,0x14,0x00,0x24,0x00,0x5b,0x40,0x2f,0x0c,0x16,0x19,0x0f,
3657
+0x1f,0x04,0x08,0x1b,0x15,0x0b,0x19,0x0f,0x05,0x20,0x04,0x1b,
3658
+0x73,0x19,0x00,0x73,0x23,0x0f,0x73,0x11,0x71,0x04,0x1c,0x19,
3659
+0x1a,0x15,0x10,0x0f,0x01,0x00,0x04,0x25,0x04,0x08,0x1b,0x1a,
3660
+0x15,0x1f,0x15,0x27,0x0b,0x04,0x25,0x10,0xd4,0x3c,0xec,0x32,
3661
+0x10,0xc0,0xc0,0xc0,0x11,0x12,0x17,0x39,0x11,0x12,0x39,0x39,
3662
+0x31,0x00,0x2f,0xfc,0xec,0xd4,0xec,0xd4,0xec,0x11,0x39,0x39,
3663
+0x11,0x12,0x39,0x39,0x11,0x39,0x12,0x39,0x11,0x12,0x39,0x39,
3664
+0x30,0x05,0x33,0x32,0x36,0x35,0x11,0x34,0x36,0x37,0x2e,0x01,
3665
+0x35,0x11,0x34,0x26,0x2b,0x01,0x35,0x33,0x32,0x16,0x15,0x11,
3666
+0x14,0x16,0x3b,0x01,0x15,0x23,0x22,0x06,0x15,0x11,0x14,0x06,
3667
+0x2b,0x01,0x01,0x00,0x46,0x8c,0x55,0x62,0x83,0x82,0x63,0x55,
3668
+0x8c,0x46,0x3f,0xf9,0xa7,0x6c,0x8e,0x3e,0x3e,0x8e,0x6c,0xa7,
3669
+0xf9,0x3f,0xe5,0x57,0x8e,0x01,0x1f,0x9d,0x86,0x22,0x1e,0x88,
3670
+0x9e,0x01,0x1f,0x8e,0x57,0x68,0x93,0xdd,0xfe,0xfe,0x96,0x74,
3671
+0x69,0x74,0x96,0xfe,0xfe,0xdd,0x94,0x00,0x00,0x01,0x00,0xd9,
3672
+0x01,0xdd,0x05,0xdb,0x03,0x27,0x00,0x1b,0x00,0x3e,0x40,0x20,
3673
+0x15,0x14,0x19,0x12,0x07,0x06,0x0b,0x04,0x01,0x12,0x0f,0x19,
3674
+0x0b,0x00,0x12,0x04,0xa3,0x19,0x0b,0xa3,0x12,0x1c,0x15,0x14,
3675
+0x07,0x06,0x04,0x00,0x18,0x0e,0x17,0x1c,0x10,0xf4,0xec,0x17,
3676
+0x39,0x31,0x00,0x10,0xd4,0xec,0xd4,0xec,0x10,0xc0,0x11,0x12,
3677
+0x39,0x11,0x39,0x11,0x12,0x39,0x39,0x11,0x12,0x39,0x39,0x30,
3678
+0x01,0x15,0x0e,0x01,0x23,0x22,0x2f,0x01,0x26,0x27,0x26,0x23,
3679
+0x22,0x06,0x07,0x35,0x3e,0x01,0x33,0x32,0x1f,0x01,0x16,0x17,
3680
+0x16,0x33,0x32,0x36,0x05,0xdb,0x64,0xb4,0x5d,0x60,0xae,0x0a,
3681
+0x0b,0x16,0x93,0x5f,0x5c,0xad,0x59,0x64,0xb3,0x5e,0x60,0xae,
3682
+0x0a,0x0b,0x14,0x91,0x61,0x5c,0xb0,0x03,0x27,0x94,0x58,0x54,
3683
+0x42,0x04,0x04,0x09,0x39,0x49,0x4d,0x98,0x57,0x51,0x42,0x04,
3684
+0x04,0x08,0x3a,0x4a,0x00,0x02,0x01,0x17,0xfe,0x8b,0x02,0x21,
3685
+0x04,0x7d,0x00,0x0b,0x00,0x11,0x00,0x24,0x40,0x12,0x0e,0x09,
3686
+0x61,0x0c,0x62,0x03,0x8c,0x12,0x0f,0x01,0x0d,0x11,0x06,0x00,
3687
+0x0c,0x00,0x0d,0x12,0x10,0xc4,0xd4,0xc4,0xfc,0xc4,0x10,0xee,
3688
+0x31,0x00,0x10,0xf6,0xe4,0xfe,0xc5,0x30,0x01,0x34,0x36,0x33,
3689
+0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x1b,0x01,0x35,0x33,
3690
+0x15,0x13,0x01,0x17,0x4c,0x39,0x37,0x4e,0x4e,0x37,0x39,0x4c,
3691
+0x04,0x43,0x7b,0x44,0x03,0xf8,0x38,0x4d,0x4e,0x37,0x38,0x4e,
3692
+0x4e,0xfa,0xcb,0x03,0x35,0xfc,0xfc,0xfc,0xcb,0x00,0x00,0x00,
3693
+0x00,0x02,0x00,0x9a,0xfe,0xd7,0x04,0x50,0x05,0x4c,0x00,0x06,
3694
+0x00,0x22,0x00,0x49,0x40,0x27,0x07,0x99,0x1f,0x06,0x8f,0x0b,
3695
+0x0a,0x1a,0x97,0x19,0x95,0x1e,0x00,0x8f,0x14,0x16,0x13,0x8c,
3696
+0x0d,0x0a,0x60,0x23,0x13,0x0c,0x00,0x09,0x0a,0x1b,0x2d,0x19,
3697
+0x22,0x07,0x1e,0x15,0x0a,0x03,0x1a,0x10,0x23,0x10,0xd4,0xec,
3698
+0xc4,0x32,0x32,0xd4,0xcc,0xd4,0xec,0x10,0xec,0x32,0x32,0x31,
3699
+0x00,0x10,0xe4,0x32,0xfc,0x3c,0xc4,0xec,0x32,0xfc,0xec,0x10,
3700
+0xc6,0xfe,0x3c,0xe6,0x30,0x01,0x0e,0x01,0x15,0x14,0x16,0x17,
3701
+0x25,0x0e,0x01,0x07,0x11,0x23,0x11,0x26,0x02,0x35,0x34,0x00,
3702
+0x37,0x11,0x33,0x11,0x1e,0x01,0x17,0x11,0x23,0x2e,0x01,0x27,
3703
+0x11,0x3e,0x01,0x37,0x02,0x75,0x81,0x81,0x81,0x81,0x01,0xdb,
3704
+0x23,0xbc,0x98,0x64,0xdc,0xff,0x00,0xff,0xdc,0x64,0x5c,0xa8,
3705
+0x50,0x6a,0x13,0x73,0x64,0x5a,0x74,0x15,0x03,0xdf,0x0f,0xe6,
3706
+0xd6,0xd7,0xe6,0x0f,0xf7,0x9a,0xad,0x13,0xfe,0xf2,0x01,0x0e,
3707
+0x13,0x01,0x2c,0xf0,0xf2,0x01,0x2b,0x11,0x01,0x0a,0xfe,0xf6,
3708
+0x08,0x2e,0x27,0xfe,0xf0,0x7b,0x83,0x0c,0xfc,0x69,0x0c,0x7f,
3709
+0x6c,0x00,0x00,0x00,0x00,0x01,0x00,0x89,0x00,0x00,0x04,0x64,
3710
+0x05,0xf0,0x00,0x1e,0x00,0x4c,0x40,0x28,0x18,0x07,0x08,0x00,
3711
+0x0e,0x0c,0x14,0x0a,0x73,0x08,0x00,0x1e,0x04,0x65,0x1b,0x69,
3712
+0x12,0x73,0x0c,0x80,0x16,0x08,0x10,0x09,0x07,0x01,0x0a,0x00,
3713
+0x0d,0x0a,0x0f,0x15,0x11,0x49,0x0b,0x07,0x11,0x17,0x13,0x1f,
3714
+0x10,0xd4,0x3c,0xec,0x32,0xe4,0x32,0xd4,0xec,0xd4,0xec,0x11,
3715
+0x39,0x31,0x00,0x2f,0xc4,0x32,0xec,0xec,0xf4,0xec,0xd4,0xc4,
3716
+0x10,0xee,0x32,0x10,0xc4,0x11,0x12,0x39,0x39,0x30,0x01,0x23,
3717
+0x2e,0x01,0x23,0x22,0x06,0x15,0x11,0x21,0x15,0x21,0x11,0x21,
3718
+0x35,0x33,0x11,0x21,0x35,0x33,0x11,0x23,0x35,0x33,0x11,0x34,
3719
+0x36,0x33,0x32,0x16,0x17,0x04,0x4e,0x69,0x0a,0x71,0x60,0x7f,
3720
+0x79,0x01,0x9c,0xfe,0x64,0x01,0xde,0x74,0xfc,0x25,0xc1,0xc1,
3721
+0xc1,0xe5,0xdd,0x55,0xa2,0x4b,0x04,0xc9,0x5f,0x65,0x9b,0xa4,
3722
+0xfe,0xd9,0x6b,0xfd,0xbd,0xe3,0xfe,0xa4,0x6a,0x02,0x52,0x6b,
3723
+0x01,0x27,0xcd,0xd5,0x19,0x19,0x00,0x00,0x00,0x02,0x00,0x68,
3724
+0x00,0x5c,0x04,0xb4,0x04,0xa8,0x00,0x23,0x00,0x2f,0x00,0x6f,
3725
+0x40,0x3d,0x15,0x09,0x03,0x1b,0x04,0x2d,0x1e,0x00,0x27,0x21,
3726
+0x0b,0x0a,0x14,0x13,0x04,0x30,0x12,0x0c,0x2d,0x0f,0x1d,0x1c,
3727
+0x02,0x03,0x01,0x21,0x2d,0x0f,0x27,0x21,0x30,0x1e,0x12,0x0c,
3728
+0x00,0x04,0x2a,0x24,0x1d,0x1c,0x14,0x13,0x04,0x30,0x1b,0x15,
3729
+0x2a,0x18,0x09,0x03,0x24,0x0b,0x0a,0x01,0x03,0x02,0x24,0x06,
3730
+0x2a,0x18,0x30,0x10,0xd4,0xcc,0xd4,0xcc,0xc0,0x17,0x39,0x12,
3731
+0x39,0x39,0x11,0x12,0x39,0x39,0x12,0x17,0x39,0x11,0x12,0x17,
3732
+0x39,0x31,0x00,0x10,0xd4,0xcc,0xd4,0xcc,0x10,0xc0,0x17,0x39,
3733
+0x11,0x12,0x39,0x39,0x12,0x17,0x39,0x11,0x12,0x39,0x39,0x11,
3734
+0x17,0x39,0x30,0x01,0x37,0x17,0x07,0x1e,0x01,0x15,0x14,0x06,
3735
+0x07,0x17,0x07,0x27,0x0e,0x01,0x23,0x22,0x26,0x27,0x07,0x27,
3736
+0x37,0x2e,0x01,0x35,0x34,0x36,0x37,0x27,0x37,0x17,0x3e,0x01,
3737
+0x33,0x32,0x16,0x13,0x34,0x26,0x23,0x22,0x06,0x15,0x14,0x16,
3738
+0x33,0x32,0x36,0x03,0x85,0xd1,0x5e,0xd1,0x2b,0x29,0x29,0x2d,
3739
+0xcf,0x60,0xcf,0x38,0x77,0x45,0x40,0x7d,0x3d,0xcc,0x5f,0xcd,
3740
+0x29,0x29,0x2a,0x2c,0xcf,0x5f,0xcf,0x38,0x78,0x45,0x42,0x7a,
3741
+0x51,0x9b,0x72,0x70,0x9c,0x9b,0x71,0x71,0x9c,0x03,0xd9,0xcf,
3742
+0x5e,0xd1,0x3c,0x7a,0x42,0x45,0x76,0x39,0xcf,0x5e,0xcd,0x2c,
3743
+0x2a,0x29,0x29,0xcd,0x5e,0xcf,0x3e,0x7a,0x40,0x46,0x77,0x39,
3744
+0xcf,0x5e,0xcf,0x2c,0x2a,0x28,0xfe,0x80,0x70,0x9a,0x9a,0x70,
3745
+0x72,0x9c,0x9d,0x00,0x00,0x01,0xff,0xf0,0x00,0x00,0x05,0x1d,
3746
+0x05,0xd5,0x00,0x24,0x01,0x4b,0x40,0x5d,0x15,0x14,0x02,0x13,
3747
+0x64,0x18,0x1d,0x18,0x12,0x64,0x11,0x12,0x1d,0x1d,0x18,0x12,
3748
+0x10,0x13,0x12,0x07,0x0c,0x07,0x0f,0x10,0x02,0x11,0x10,0x0c,
3749
+0x0c,0x07,0x4d,0x12,0x05,0x19,0x0a,0x73,0x1b,0x08,0x20,0x03,
3750
+0x73,0x05,0x17,0x13,0x10,0x03,0x0c,0x73,0x15,0x0e,0x62,0x22,
3751
+0x01,0x73,0x1e,0x05,0x00,0x19,0x14,0x1d,0x1f,0x1a,0x18,0x13,
3752
+0x04,0x23,0x16,0x12,0x1d,0x02,0x04,0x09,0x0c,0x03,0x25,0x11,
3753
+0x0f,0x0b,0x03,0x02,0x00,0x16,0x23,0x49,0x21,0x1d,0x11,0x0d,
3754
+0x00,0x49,0x06,0x02,0x25,0x10,0xd4,0x3c,0xe4,0xc4,0xfc,0x3c,
3755
+0xe4,0xc4,0x11,0x12,0x17,0x39,0x12,0x17,0x39,0x11,0x12,0x39,
3756
+0x11,0x12,0x17,0x39,0x11,0x39,0x39,0x31,0x00,0x2f,0xc4,0x32,
3757
+0xec,0x32,0xf4,0x3c,0xec,0x17,0x32,0x10,0xee,0x32,0xd5,0x3c,
3758
+0xee,0x32,0x12,0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x05,0xed,
3759
+0x17,0x32,0x07,0x10,0x08,0xed,0x07,0x10,0x08,0xed,0x07,0x10,
3760
+0x05,0xed,0x17,0x32,0x59,0x22,0xb2,0x08,0x15,0x01,0x01,0x5d,
3761
+0x40,0x98,0x05,0x12,0x36,0x12,0x69,0x07,0x69,0x12,0x68,0x1d,
3762
+0x05,0x0b,0x14,0x0a,0x15,0x16,0x0b,0x1b,0x0c,0x1d,0x0d,0x1d,
3763
+0x0e,0x18,0x11,0x16,0x13,0x10,0x14,0x10,0x15,0x12,0x16,0x12,
3764
+0x17,0x12,0x18,0x38,0x08,0x39,0x0f,0x39,0x10,0x36,0x11,0x39,
3765
+0x13,0x3a,0x14,0x3a,0x15,0x39,0x18,0x46,0x0b,0x4b,0x0c,0x4d,
3766
+0x0d,0x4d,0x0e,0x4b,0x0f,0x4b,0x10,0x4a,0x11,0x40,0x14,0x40,
3767
+0x15,0x42,0x16,0x42,0x17,0x46,0x18,0x49,0x19,0x58,0x08,0x56,
3768
+0x11,0x59,0x13,0x59,0x14,0x59,0x15,0x59,0x18,0x67,0x08,0x65,
3769
+0x0b,0x67,0x0c,0x67,0x0d,0x67,0x0e,0x66,0x0f,0x66,0x10,0x67,
3770
+0x11,0x6a,0x13,0x68,0x14,0x6f,0x14,0x68,0x15,0x6f,0x15,0x6a,
3771
+0x18,0x6a,0x19,0x68,0x1c,0x75,0x0b,0x79,0x13,0x7c,0x14,0x7f,
3772
+0x14,0x7c,0x15,0x7f,0x15,0x79,0x18,0x7a,0x19,0x80,0x14,0x80,
3773
+0x14,0x80,0x15,0x80,0x15,0x90,0x14,0x90,0x15,0x46,0x5d,0x00,
3774
+0x5d,0x21,0x35,0x33,0x11,0x21,0x35,0x21,0x35,0x27,0x21,0x35,
3775
+0x21,0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x23,0x35,0x21,
3776
+0x15,0x23,0x01,0x21,0x15,0x21,0x07,0x15,0x21,0x15,0x21,0x11,
3777
+0x33,0x15,0x01,0x68,0xbf,0xfe,0x6c,0x01,0x94,0x52,0xfe,0xbe,
3778
+0x01,0x07,0xfe,0xe1,0x8b,0x02,0x29,0xaf,0x01,0x57,0x01,0x53,
3779
+0xa7,0x01,0xb0,0x8e,0xfe,0xe4,0x01,0x10,0xfe,0xb4,0x47,0x01,
3780
+0x93,0xfe,0x6d,0xbe,0x6a,0x01,0x6f,0x69,0x41,0x8d,0x69,0x01,
3781
+0xf1,0x6b,0x6b,0xfd,0xa4,0x02,0x5c,0x6b,0x6b,0xfe,0x0f,0x69,
3782
+0x7a,0x54,0x69,0xfe,0x91,0x6a,0x00,0x00,0x00,0x02,0x01,0x08,
3783
+0xfe,0xa2,0x01,0xaa,0x05,0x98,0x00,0x03,0x00,0x07,0x00,0x1c,
3784
+0x40,0x0c,0x00,0x01,0x05,0x04,0x01,0x08,0x04,0x00,0x47,0x06,
3785
+0x02,0x08,0x10,0xd4,0x3c,0xec,0x32,0x31,0x00,0x10,0xc4,0xd4,
3786
+0xcc,0x10,0xce,0x30,0x01,0x11,0x23,0x11,0x13,0x11,0x23,0x11,
3787
+0x01,0xaa,0xa2,0xa2,0xa2,0x01,0x98,0xfd,0x0a,0x02,0xf6,0x04,
3788
+0x00,0xfd,0x0a,0x02,0xf6,0x00,0x00,0x00,0x00,0x02,0x00,0x5c,
3789
+0xff,0x3d,0x03,0xa4,0x05,0xf0,0x00,0x0b,0x00,0x41,0x00,0x6b,
3790
+0x40,0x3b,0x06,0x05,0x00,0x03,0x18,0x1e,0x33,0x39,0x04,0x0d,
3791
+0x28,0x27,0x2c,0x6f,0x24,0x0d,0x0c,0x11,0x6f,0x3f,0x69,0x24,
3792
+0x42,0x05,0x06,0x03,0x06,0x00,0x18,0x33,0x04,0x14,0x1e,0x2f,
3793
+0x0e,0x39,0x14,0x03,0x29,0x27,0x14,0x4a,0x3c,0x2f,0x4a,0x21,
3794
+0x0e,0x0c,0x09,0x4a,0x21,0x1b,0x27,0x03,0x4a,0x3c,0x36,0x02,
3795
+0x42,0x10,0xf4,0xc4,0xec,0xc4,0xd4,0xc4,0xec,0xd4,0xcc,0x10,
3796
+0xee,0x10,0xee,0x10,0xce,0x11,0x12,0x39,0x11,0x12,0x39,0x11,
3797
+0x17,0x39,0x11,0x12,0x39,0x31,0x00,0x10,0xc4,0xf4,0xec,0xd4,
3798
+0xc4,0x10,0xee,0xd6,0xc6,0x11,0x17,0x39,0x17,0x39,0x30,0x01,
3799
+0x0e,0x01,0x15,0x14,0x05,0x17,0x3e,0x01,0x35,0x34,0x26,0x13,
3800
+0x15,0x23,0x2e,0x01,0x23,0x22,0x06,0x15,0x14,0x17,0x16,0x17,
3801
+0x1e,0x01,0x15,0x14,0x06,0x07,0x1e,0x01,0x15,0x14,0x06,0x23,
3802
+0x22,0x26,0x27,0x35,0x17,0x1e,0x01,0x33,0x32,0x36,0x35,0x34,
3803
+0x27,0x26,0x27,0x2e,0x01,0x35,0x34,0x36,0x37,0x2e,0x01,0x35,
3804
+0x34,0x36,0x33,0x32,0x16,0x01,0x7b,0x44,0x37,0x01,0x6b,0x20,
3805
+0x3a,0x3b,0x8b,0xc8,0x5c,0x02,0x68,0x58,0x64,0x73,0xf6,0x1a,
3806
+0x0c,0xc3,0x7d,0x69,0x72,0x4e,0x49,0xcc,0xad,0x5a,0xa0,0x4d,
3807
+0x5c,0x02,0x6c,0x6b,0x68,0x79,0xe4,0x15,0x0b,0xd8,0x7e,0x76,
3808
+0x6d,0x52,0x4f,0xc8,0xa6,0x4e,0x98,0x03,0xa8,0x2e,0x53,0x35,
3809
+0x84,0xcb,0x12,0x26,0x60,0x39,0x4b,0x86,0x02,0x97,0xca,0x48,
3810
+0x53,0x61,0x53,0x61,0x89,0x0f,0x07,0x6d,0x96,0x63,0x5f,0x7e,
3811
+0x2c,0x2f,0x7e,0x5b,0x83,0x9e,0x1b,0x1d,0xd1,0x01,0x50,0x51,
3812
+0x62,0x54,0x71,0x7f,0x0c,0x06,0x7a,0x96,0x63,0x5e,0x85,0x1f,
3813
+0x31,0x7e,0x4f,0x82,0x9f,0x1c,0x00,0x00,0x00,0x02,0x00,0xc9,
3814
+0x05,0x37,0x03,0x37,0x06,0x21,0x00,0x0b,0x00,0x17,0x00,0x7a,
3815
+0x40,0x0a,0x12,0x06,0x0c,0x00,0x18,0x0f,0x15,0x03,0x09,0x18,
3816
+0x10,0xd4,0xdc,0xd4,0xcc,0x31,0x00,0x10,0xd4,0x3c,0xcc,0x32,
3817
+0x30,0x00,0x4b,0xb0,0x0a,0x54,0x4b,0xb0,0x0d,0x54,0x5b,0x4b,
3818
+0xb0,0x12,0x54,0x5b,0x4b,0xb0,0x13,0x54,0x5b,0x58,0xbd,0x00,
3819
+0x18,0x00,0x40,0x00,0x01,0x00,0x18,0x00,0x18,0xff,0xc0,0x38,
3820
+0x11,0x37,0x38,0x59,0x01,0x4b,0xb0,0x0b,0x54,0x4b,0xb0,0x0c,
3821
+0x54,0x5b,0x4b,0xb0,0x0f,0x54,0x5b,0x58,0xbd,0x00,0x18,0xff,
3822
+0xc0,0x00,0x01,0x00,0x18,0x00,0x18,0x00,0x40,0x38,0x11,0x37,
3823
+0x38,0x59,0x01,0x4b,0xb0,0x0d,0x54,0x58,0xbd,0x00,0x18,0xff,
3824
+0x80,0x00,0x01,0x00,0x18,0x00,0x18,0x00,0x80,0x38,0x11,0x37,
3825
+0x38,0x59,0x01,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x35,
3826
+0x34,0x36,0x21,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x35,
3827
+0x34,0x36,0x01,0x3d,0x30,0x45,0x42,0x33,0x32,0x42,0x45,0x01,
3828
+0xb5,0x2f,0x45,0x42,0x32,0x33,0x42,0x45,0x06,0x21,0x45,0x30,
3829
+0x33,0x42,0x42,0x33,0x30,0x45,0x45,0x30,0x33,0x42,0x42,0x33,
3830
+0x30,0x45,0x00,0x00,0x00,0x03,0x01,0x1b,0x00,0x00,0x06,0xe5,
3831
+0x05,0xcd,0x00,0x1a,0x00,0x32,0x00,0x4a,0x00,0x4d,0x40,0x2b,
3832
+0x0c,0x11,0x09,0x00,0xab,0x17,0xa8,0x03,0x0d,0xab,0x11,0xa8,
3833
+0x09,0x03,0xa9,0x3f,0x09,0xa9,0x33,0xa6,0x1b,0xa5,0x3f,0xa6,
3834
+0x27,0x14,0x06,0x1a,0x00,0x0e,0x0c,0x52,0x45,0x4b,0x21,0x06,
3835
+0x51,0x39,0x4b,0x21,0x4d,0x2d,0x4b,0x10,0xd4,0xec,0xfc,0xec,
3836
+0x10,0xfe,0xfd,0xce,0xd4,0xce,0x10,0xce,0x31,0x00,0x2f,0xee,
3837
+0xfe,0xfe,0xed,0x10,0xed,0x10,0xfe,0xe4,0x10,0xfe,0xe4,0x11,
3838
+0x12,0x39,0x30,0x01,0x0e,0x01,0x23,0x22,0x26,0x35,0x34,0x36,
3839
+0x33,0x32,0x16,0x17,0x15,0x23,0x2e,0x01,0x23,0x22,0x06,0x15,
3840
+0x14,0x16,0x33,0x32,0x36,0x37,0x03,0x32,0x04,0x17,0x16,0x12,
3841
+0x15,0x14,0x02,0x07,0x06,0x04,0x23,0x22,0x24,0x27,0x26,0x02,
3842
+0x35,0x34,0x12,0x37,0x36,0x24,0x17,0x22,0x06,0x07,0x0e,0x01,
3843
+0x15,0x14,0x16,0x17,0x1e,0x01,0x33,0x32,0x36,0x37,0x3e,0x01,
3844
+0x35,0x34,0x26,0x27,0x2e,0x01,0x05,0x60,0x1b,0xb5,0x8e,0xbb,
3845
+0xdf,0xe1,0xb9,0x50,0x9b,0x57,0x54,0x11,0x72,0x69,0x77,0x79,
3846
+0x78,0x76,0x61,0x71,0x15,0xe9,0x98,0x01,0x07,0x6d,0x6d,0x6c,
3847
+0x6c,0x6d,0x6d,0xfe,0xf9,0x98,0x98,0xfe,0xf9,0x6d,0x6d,0x6c,
3848
+0x6c,0x6d,0x6d,0x01,0x07,0x98,0x83,0xe2,0x5e,0x5d,0x5f,0x5f,
3849
+0x5d,0x5e,0xe2,0x83,0x84,0xe3,0x5e,0x5d,0x5d,0x5e,0x5c,0x5e,
3850
+0xe3,0x02,0x3d,0x83,0x8d,0xf0,0xc8,0xc9,0xf2,0x25,0x27,0xd5,
3851
+0x6d,0x66,0xb7,0xb6,0xb5,0xb5,0x5f,0x63,0x03,0x90,0x6e,0x6d,
3852
+0x6d,0xfe,0xfa,0x9a,0x98,0xfe,0xfb,0x6d,0x6d,0x6e,0x6e,0x6d,
3853
+0x6d,0x01,0x05,0x98,0x9a,0x01,0x06,0x6d,0x6d,0x6e,0x67,0x5e,
3854
+0x5e,0x5d,0xe5,0x83,0x82,0xe2,0x5e,0x5e,0x5f,0x5f,0x5e,0x5d,
3855
+0xe2,0x83,0x85,0xe3,0x5d,0x5e,0x5e,0x00,0x00,0x03,0x00,0x7d,
3856
+0x02,0x17,0x03,0x96,0x05,0xf0,0x00,0x1d,0x00,0x28,0x00,0x2c,
3857
+0x00,0x71,0x40,0x3c,0x00,0x1f,0x10,0x16,0x0e,0x05,0x26,0x1e,
3858
+0x1f,0x01,0xb8,0x03,0x2b,0x29,0x1f,0xb8,0x0e,0xbc,0x29,0x26,
3859
+0xb8,0x03,0x08,0x16,0xba,0x18,0xb8,0x13,0xb8,0x08,0xbb,0x1b,
3860
+0x69,0x2d,0x29,0x17,0x0b,0x20,0x23,0x04,0x2a,0x02,0x00,0x0e,
3861
+0x23,0x04,0x16,0x17,0x02,0x1e,0x0f,0x04,0x59,0x00,0x23,0x59,
3862
+0x17,0x0b,0x02,0x2d,0x10,0xf4,0xc4,0xec,0xd4,0xec,0x32,0x32,
3863
+0xc4,0x10,0xce,0x11,0x12,0x39,0x11,0x12,0x39,0x11,0x12,0x39,
3864
+0x11,0x12,0x39,0x31,0x00,0x10,0xf4,0xec,0xec,0xfc,0xe4,0x10,
3865
+0xc4,0xee,0xcd,0xfe,0xee,0x10,0xce,0x10,0xee,0x11,0x39,0x11,
3866
+0x39,0x11,0x12,0x39,0x12,0x39,0x30,0x01,0x11,0x33,0x15,0x23,
3867
+0x35,0x0e,0x01,0x23,0x22,0x26,0x35,0x34,0x36,0x3b,0x01,0x35,
3868
+0x34,0x26,0x23,0x22,0x06,0x07,0x23,0x35,0x3e,0x01,0x33,0x32,
3869
+0x16,0x03,0x35,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,
3870
+0x01,0x21,0x15,0x21,0x03,0x46,0x50,0xe4,0x30,0x7d,0x57,0x8d,
3871
+0xa4,0xbe,0xaa,0xcd,0x74,0x69,0x57,0x66,0x0e,0x4c,0x4d,0x90,
3872
+0x42,0xb1,0xb8,0x94,0xbc,0x69,0x6c,0x65,0x61,0x5c,0x6f,0xfd,
3873
+0xf4,0x02,0xba,0xfd,0x46,0x04,0xc3,0xfe,0x85,0x54,0x50,0x33,
3874
+0x30,0x82,0x70,0x72,0x80,0x2d,0x54,0x5e,0x46,0x45,0x9d,0x1d,
3875
+0x1d,0x9a,0xfe,0x8f,0x94,0x50,0x4e,0x51,0x55,0x61,0xfe,0xe9,
3876
+0x68,0x00,0x00,0x00,0x00,0x02,0x00,0x9e,0x00,0x8d,0x04,0x25,
3877
+0x04,0x23,0x00,0x06,0x00,0x0d,0x00,0x3a,0x40,0x1c,0x0a,0x03,
3878
+0x04,0x08,0x01,0x07,0x00,0x0b,0x04,0x0c,0x05,0x0d,0x06,0x09,
3879
+0x02,0x0e,0x03,0x00,0x5a,0x02,0x05,0x0a,0x07,0x5a,0x09,0x0c,
3880
+0x02,0x0e,0x10,0xf4,0xc4,0xfc,0x3c,0xd4,0xc4,0xec,0x32,0x31,
3881
+0x00,0x10,0xd4,0x3c,0xc4,0x32,0xc4,0x32,0xc4,0x32,0xd4,0x3c,
3882
+0xc4,0x32,0x10,0xc6,0x32,0x30,0x01,0x15,0x09,0x01,0x15,0x01,
3883
+0x35,0x13,0x15,0x09,0x01,0x15,0x01,0x35,0x04,0x25,0xfe,0xd7,
3884
+0x01,0x29,0xfe,0x2b,0x23,0xfe,0xd7,0x01,0x29,0xfe,0x2b,0x04,
3885
+0x23,0x73,0xfe,0xa8,0xfe,0xa8,0x73,0x01,0xa2,0x52,0x01,0xa2,
3886
+0x73,0xfe,0xa8,0xfe,0xa8,0x73,0x01,0xa2,0x52,0x00,0x00,0x00,
3887
+0x00,0x01,0x00,0xd9,0x01,0x1f,0x05,0xdb,0x03,0x5e,0x00,0x05,
3888
+0x00,0x18,0x40,0x0b,0x02,0x04,0x72,0x00,0x06,0x03,0x0c,0x01,
3889
+0x00,0x17,0x06,0x10,0xf4,0xd4,0xec,0x31,0x00,0x10,0xd4,0xfc,
3890
+0xc4,0x30,0x13,0x21,0x11,0x23,0x11,0x21,0xd9,0x05,0x02,0xa0,
3891
+0xfb,0x9e,0x03,0x5e,0xfd,0xc1,0x01,0x9d,0x00,0x01,0x00,0x5a,
3892
+0x01,0xd7,0x02,0x5a,0x02,0x73,0x00,0x03,0x00,0x10,0xb5,0x02,
3893
+0x00,0x04,0x01,0x00,0x04,0x10,0xd4,0xcc,0x31,0x00,0x10,0xd4,
3894
+0xcc,0x30,0x13,0x21,0x15,0x21,0x5a,0x02,0x00,0xfe,0x00,0x02,
3895
+0x73,0x9c,0x00,0x00,0x00,0x04,0x01,0x1b,0x00,0x00,0x06,0xe5,
3896
+0x05,0xcd,0x00,0x08,0x00,0x24,0x00,0x3c,0x00,0x54,0x00,0x99,
3897
+0x40,0x54,0x14,0x13,0x12,0x03,0x15,0x11,0x4e,0x0c,0x0d,0x0c,
3898
+0x10,0x4e,0x0d,0x0d,0x0c,0x4d,0x11,0x0c,0x0d,0x09,0x00,0xa8,
3899
+0x14,0x1a,0x16,0x0d,0xa8,0x18,0x0f,0xa7,0x31,0x1c,0x07,0xa8,
3900
+0x14,0x1e,0xa7,0x25,0xa6,0x3d,0xa5,0x31,0xa6,0x49,0x0d,0x0e,
3901
+0x37,0x10,0x22,0x14,0x11,0x07,0x01,0x04,0x17,0x0c,0x22,0x1f,
3902
+0x09,0x04,0x17,0x50,0x15,0x00,0x4e,0x1d,0x19,0x50,0x1b,0x04,
3903
+0x4e,0x22,0x4c,0x37,0x4b,0x43,0x1b,0x4c,0x2b,0x4b,0x43,0x4d,
3904
+0x4f,0x55,0x10,0xd4,0xec,0xfc,0xec,0x10,0xfe,0xfd,0xee,0x10,
3905
+0xe4,0x32,0xfe,0x3c,0xe6,0x11,0x39,0x39,0x12,0x39,0x12,0x17,
3906
+0x39,0x12,0x39,0x11,0x39,0x39,0x31,0x00,0x2f,0xee,0xfe,0xfe,
3907
+0xfd,0xc6,0xee,0x32,0x10,0xfd,0x3c,0xee,0x32,0x32,0x10,0xee,
3908
+0x39,0x12,0x39,0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x05,0xed,
3909
+0x07,0x10,0x05,0xed,0x11,0x17,0x39,0x59,0x22,0x01,0x33,0x32,
3910
+0x36,0x35,0x34,0x26,0x2b,0x01,0x13,0x1e,0x01,0x1f,0x01,0x33,
3911
+0x15,0x23,0x27,0x2e,0x01,0x2b,0x01,0x11,0x33,0x15,0x21,0x35,
3912
+0x33,0x11,0x23,0x35,0x21,0x32,0x16,0x15,0x14,0x06,0x03,0x22,
3913
+0x06,0x07,0x0e,0x01,0x15,0x14,0x16,0x17,0x1e,0x01,0x33,0x32,
3914
+0x36,0x37,0x3e,0x01,0x35,0x34,0x26,0x27,0x2e,0x01,0x27,0x32,
3915
+0x04,0x17,0x16,0x12,0x15,0x14,0x02,0x07,0x06,0x04,0x23,0x22,
3916
+0x24,0x27,0x26,0x02,0x35,0x34,0x12,0x37,0x36,0x24,0x03,0x7f,
3917
+0x7d,0x53,0x53,0x54,0x52,0x7d,0xf6,0x2a,0x3b,0x14,0x74,0x4c,
3918
+0xbe,0x83,0x23,0x3e,0x31,0x5c,0x54,0xfe,0xc3,0x53,0x53,0x01,
3919
+0x9f,0x80,0x82,0x60,0xd7,0x83,0xe2,0x5e,0x5d,0x5f,0x5f,0x5d,
3920
+0x5e,0xe2,0x83,0x84,0xe3,0x5e,0x5d,0x5d,0x5e,0x5c,0x5e,0xe3,
3921
+0x84,0x98,0x01,0x07,0x6d,0x6d,0x6c,0x6c,0x6d,0x6d,0xfe,0xf9,
3922
+0x98,0x98,0xfe,0xf9,0x6d,0x6d,0x6c,0x6c,0x6d,0x6d,0x01,0x07,
3923
+0x03,0x17,0x4c,0x4b,0x4a,0x4c,0xfe,0xae,0x0e,0x33,0x28,0xe5,
3924
+0x44,0xfe,0x46,0x2f,0xfe,0xd1,0x44,0x44,0x02,0xa0,0x43,0x70,
3925
+0x6d,0x53,0x5b,0x02,0x6a,0x5e,0x5e,0x5d,0xe5,0x83,0x82,0xe2,
3926
+0x5e,0x5e,0x5f,0x5f,0x5e,0x5d,0xe2,0x83,0x85,0xe3,0x5d,0x5e,
3927
+0x5e,0x67,0x6e,0x6d,0x6d,0xfe,0xfa,0x9a,0x98,0xfe,0xfb,0x6d,
3928
+0x6d,0x6e,0x6e,0x6d,0x6d,0x01,0x05,0x98,0x9a,0x01,0x06,0x6d,
3929
+0x6d,0x6e,0x00,0x00,0x00,0x01,0x00,0xd5,0x05,0x62,0x03,0x2b,
3930
+0x05,0xf6,0x00,0x03,0x00,0x28,0xb5,0x02,0x00,0x04,0x01,0x00,
3931
+0x04,0x10,0xd4,0xcc,0x31,0x00,0x10,0xd4,0xcc,0x30,0x01,0x4b,
3932
+0xb0,0x0d,0x54,0x58,0xbd,0x00,0x04,0xff,0xc0,0x00,0x01,0x00,
3933
+0x04,0x00,0x04,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x13,0x21,
3934
+0x15,0x21,0xd5,0x02,0x56,0xfd,0xaa,0x05,0xf6,0x94,0x00,0x00,
3935
+0x00,0x02,0x00,0xc3,0x03,0x75,0x03,0x3d,0x05,0xf0,0x00,0x0b,
3936
+0x00,0x1a,0x00,0x1a,0x40,0x0b,0x06,0x15,0x00,0x0c,0x69,0x1b,
3937
+0x09,0x12,0x03,0x18,0x1b,0x10,0xd4,0xcc,0xd4,0xcc,0x31,0x00,
3938
+0x10,0xf4,0xcc,0xd4,0xcc,0x30,0x01,0x22,0x06,0x15,0x14,0x16,
3939
+0x33,0x32,0x36,0x35,0x34,0x26,0x27,0x32,0x16,0x17,0x1e,0x01,
3940
+0x15,0x14,0x06,0x23,0x22,0x26,0x35,0x34,0x36,0x02,0x00,0x4c,
3941
+0x68,0x67,0x4d,0x4c,0x68,0x6a,0x4a,0x40,0x76,0x2b,0x2e,0x2e,
3942
+0xb9,0x86,0x87,0xb4,0xb8,0x05,0x66,0x69,0x4d,0x4c,0x66,0x67,
3943
+0x4b,0x4b,0x6b,0x8a,0x31,0x2e,0x2d,0x72,0x42,0x84,0xb7,0xb4,
3944
+0x87,0x86,0xba,0x00,0x00,0x02,0x00,0xd9,0x00,0x00,0x05,0xdb,
3945
+0x05,0x04,0x00,0x0b,0x00,0x0f,0x00,0x2a,0x40,0x14,0x05,0x07,
3946
+0x03,0x72,0x00,0x09,0x01,0x0c,0x72,0x0e,0x0d,0x02,0x04,0x00,
3947
+0x0c,0x0c,0x08,0x0a,0x06,0x10,0x10,0xd4,0x3c,0xc4,0x32,0xfc,
3948
+0x3c,0xc4,0x32,0x31,0x00,0x2f,0xec,0xd4,0x3c,0xc4,0xfc,0x3c,
3949
+0xc4,0x30,0x01,0x11,0x21,0x15,0x21,0x11,0x23,0x11,0x21,0x35,
3950
+0x21,0x11,0x01,0x21,0x15,0x21,0x03,0xaa,0x02,0x31,0xfd,0xcf,
3951
+0xa0,0xfd,0xcf,0x02,0x31,0xfd,0xcf,0x05,0x02,0xfa,0xfe,0x05,
3952
+0x04,0xfe,0x79,0xa2,0xfe,0x79,0x01,0x87,0xa2,0x01,0x87,0xfb,
3953
+0x9c,0xa0,0x00,0x00,0x00,0x01,0x00,0x5a,0x02,0x9c,0x02,0xb4,
3954
+0x05,0xf0,0x00,0x1b,0x00,0x6b,0x40,0x36,0x0c,0xc1,0x12,0x13,
3955
+0x12,0x0a,0x01,0x09,0x0b,0xc1,0x13,0x13,0x12,0x4d,0x02,0x19,
3956
+0x0a,0x0b,0x05,0x0b,0x13,0x00,0x0e,0xc3,0x12,0x0c,0xc5,0x10,
3957
+0x00,0xc3,0x19,0xc2,0x10,0xc0,0x05,0x68,0x1c,0x0a,0x0b,0x08,
3958
+0x13,0x0c,0x0b,0x00,0x16,0x5c,0x08,0x0d,0x0f,0x11,0x00,0x01,
3959
+0x02,0x1c,0x10,0xf4,0xcc,0xd4,0xd4,0xcc,0xd4,0xec,0x11,0x39,
3960
+0x39,0x39,0x11,0x12,0x39,0x31,0x00,0x10,0xf4,0xe4,0xfc,0xe4,
3961
+0x10,0xfe,0xc6,0xe4,0x11,0x39,0x39,0x11,0x12,0x39,0x12,0x39,
3962
+0x30,0x4b,0x53,0x58,0x07,0x10,0x0e,0xed,0x11,0x17,0x39,0x07,
3963
+0x10,0x05,0xed,0x59,0x22,0x13,0x23,0x35,0x3e,0x01,0x33,0x32,
3964
+0x16,0x15,0x14,0x0f,0x02,0x21,0x35,0x33,0x15,0x21,0x35,0x25,
3965
+0x3e,0x01,0x35,0x34,0x26,0x23,0x22,0x06,0xaa,0x46,0x42,0x8c,
3966
+0x45,0x8a,0xab,0xc2,0x13,0xee,0x01,0x81,0x4a,0xfd,0xa6,0x01,
3967
+0x1d,0x56,0x4a,0x61,0x54,0x4e,0x5e,0x05,0x10,0x9e,0x20,0x22,
3968
+0x84,0x68,0x7a,0xae,0x11,0xd7,0x6c,0xc4,0x4b,0xfe,0x4d,0x7a,
3969
+0x42,0x55,0x63,0x4c,0x00,0x01,0x00,0x64,0x02,0x8d,0x02,0xcd,
3970
+0x05,0xf0,0x00,0x2a,0x00,0x52,0x40,0x2c,0x12,0x17,0x0f,0x00,
3971
+0x26,0x03,0x09,0x1f,0xc2,0x1d,0x13,0xc3,0x17,0xc2,0x0f,0x29,
3972
+0xc3,0x26,0xc2,0x0f,0xc0,0x1d,0xc6,0x03,0x68,0x2b,0x20,0x1e,
3973
+0x09,0x1d,0x23,0x29,0x00,0x23,0x5c,0x06,0x1a,0x5c,0x0c,0x14,
3974
+0x00,0x12,0x02,0x2b,0x10,0xf4,0xc4,0xcc,0xd4,0xec,0xd4,0xec,
3975
+0x10,0xce,0x11,0x39,0x39,0x39,0x39,0x31,0x00,0x10,0xf4,0xe4,
3976
+0xe4,0xfc,0xe4,0x10,0xfe,0xe4,0x10,0xee,0x39,0x11,0x12,0x39,
3977
+0x11,0x12,0x39,0x30,0x13,0x3e,0x01,0x33,0x32,0x16,0x15,0x14,
3978
+0x06,0x07,0x1e,0x01,0x15,0x14,0x06,0x23,0x22,0x26,0x27,0x35,
3979
+0x17,0x1e,0x01,0x33,0x32,0x36,0x35,0x34,0x26,0x2b,0x01,0x35,
3980
+0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x22,0x06,0x07,0x23,0x7d,
3981
+0x49,0x86,0x3b,0x8a,0x95,0x6a,0x5f,0x77,0x79,0xaf,0xa3,0x48,
3982
+0x8b,0x44,0x46,0x05,0x62,0x5c,0x5e,0x66,0x66,0x65,0x35,0x1b,
3983
+0x61,0x63,0x51,0x4c,0x52,0x57,0x07,0x46,0x05,0xbc,0x1a,0x1a,
3984
+0x6c,0x63,0x48,0x64,0x11,0x10,0x77,0x64,0x72,0x7a,0x1c,0x1c,
3985
+0xaa,0x01,0x4a,0x4d,0x58,0x52,0x5d,0x5f,0x4a,0x4a,0x4a,0x43,
3986
+0x48,0x40,0x41,0x00,0x00,0x01,0x01,0x89,0x04,0xee,0x03,0x52,
3987
+0x06,0x66,0x00,0x03,0x00,0x4f,0xb5,0x02,0x00,0x04,0x01,0x03,
3988
+0x04,0x10,0xd4,0xcc,0x31,0x00,0x10,0xd4,0xcc,0x30,0x00,0x4b,
3989
+0xb0,0x09,0x54,0x4b,0xb0,0x0e,0x54,0x5b,0x58,0xbd,0x00,0x04,
3990
+0xff,0xc0,0x00,0x01,0x00,0x04,0x00,0x04,0x00,0x40,0x38,0x11,
3991
+0x37,0x38,0x59,0x01,0x4b,0xb0,0x0b,0x54,0x4b,0xb0,0x0c,0x54,
3992
+0x5b,0x4b,0xb0,0x0f,0x54,0x5b,0x58,0xbd,0x00,0x04,0xff,0xc0,
3993
+0x00,0x01,0x00,0x04,0x00,0x04,0x00,0x40,0x38,0x11,0x37,0x38,
3994
+0x59,0x01,0x33,0x01,0x23,0x02,0x8b,0xc7,0xfe,0xac,0x75,0x06,
3995
+0x66,0xfe,0x88,0x00,0x00,0x01,0x00,0x3b,0xfe,0x56,0x04,0xe9,
3996
+0x04,0x27,0x00,0x1f,0x00,0x7f,0x40,0x33,0x1d,0x17,0x06,0x1a,
3997
+0x13,0x0c,0x04,0x02,0x1a,0x85,0x09,0x11,0x0d,0x7a,0x0f,0x1e,
3998
+0x13,0x7a,0x15,0x00,0x9c,0x02,0x7a,0x0f,0x82,0x09,0x60,0x04,
3999
+0x10,0x20,0x14,0x0e,0x2c,0x0c,0x00,0x2c,0x1d,0x05,0x27,0x03,
4000
+0x2c,0x01,0x3a,0x14,0x2c,0x16,0x0c,0x27,0x12,0x30,0x20,0x10,
4001
+0xf4,0xec,0x32,0xe4,0xf4,0xe4,0xfc,0x3c,0xe4,0x10,0xe4,0x11,
4002
+0x12,0x39,0x31,0x00,0x2f,0xe4,0xec,0xee,0xfe,0x3c,0xee,0x32,
4003
+0x10,0xee,0x32,0x10,0xee,0x11,0x12,0x39,0x11,0x12,0x39,0x39,
4004
+0x39,0x30,0xb2,0x10,0x21,0x01,0x01,0x5d,0x01,0x4b,0xb0,0x0b,
4005
+0x54,0x58,0xbd,0x00,0x20,0x00,0x40,0x00,0x01,0x00,0x20,0x00,
4006
+0x20,0xff,0xc0,0x38,0x11,0x37,0x38,0x59,0xb2,0x7f,0x21,0x01,
4007
+0x5d,0x01,0x21,0x11,0x33,0x15,0x21,0x35,0x0e,0x01,0x23,0x22,
4008
+0x26,0x27,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,
4009
+0x11,0x14,0x16,0x33,0x32,0x36,0x35,0x11,0x23,0x02,0xe3,0x01,
4010
+0x58,0xae,0xfe,0x9a,0x34,0x93,0x5a,0x39,0x5e,0x27,0xae,0xfd,
4011
+0xe9,0xb1,0xa6,0x01,0x5e,0x60,0x79,0x80,0x86,0xa0,0x04,0x27,
4012
+0xfc,0x41,0x68,0xbc,0x6a,0x6f,0x24,0x24,0xfe,0x96,0x6b,0x6b,
4013
+0x04,0xfb,0x6b,0xfd,0x95,0xc2,0x90,0xbc,0xb3,0x01,0xe3,0x00,
4014
+0x00,0x01,0x00,0x9e,0xff,0x3b,0x04,0x93,0x05,0xd5,0x00,0x0f,
4015
+0x00,0x2d,0x40,0x16,0x0a,0x04,0x06,0x02,0x6f,0x00,0x62,0x08,
4016
+0x04,0x10,0x00,0x09,0x07,0x01,0x05,0x09,0x03,0x07,0x09,0x0d,
4017
+0x09,0x10,0x10,0xd4,0xc4,0xfc,0xd4,0xec,0xc4,0x11,0x12,0x39,
4018
+0x31,0x00,0x10,0xc4,0x32,0xf4,0xec,0x32,0x11,0x39,0x30,0x01,
4019
+0x21,0x15,0x23,0x11,0x23,0x11,0x23,0x11,0x23,0x11,0x2e,0x01,
4020
+0x35,0x34,0x24,0x02,0x79,0x02,0x1a,0x76,0x6b,0xe7,0x6b,0xd7,
4021
+0xeb,0x01,0x04,0x05,0xd5,0x6b,0xf9,0xd1,0x06,0x2f,0xf9,0xd1,
4022
+0x03,0x4e,0x11,0xdd,0xb8,0xbe,0xe8,0x00,0x00,0x01,0x00,0xbe,
4023
+0x02,0x42,0x01,0xc9,0x03,0x4c,0x00,0x0b,0x00,0x12,0xb7,0x09,
4024
+0x61,0x03,0x0c,0x06,0x00,0x00,0x0c,0x10,0xd4,0xec,0x31,0x00,
4025
+0x10,0xd4,0xec,0x30,0x13,0x34,0x36,0x33,0x32,0x16,0x15,0x14,
4026
+0x06,0x23,0x22,0x26,0xbe,0x4d,0x39,0x37,0x4e,0x4e,0x37,0x39,
4027
+0x4d,0x02,0xc7,0x38,0x4d,0x4e,0x37,0x38,0x4d,0x4c,0x00,0x00,
4028
+0x00,0x01,0x01,0x23,0xfe,0x75,0x02,0xc1,0x00,0x00,0x00,0x13,
4029
+0x00,0x22,0x40,0x0f,0x09,0x06,0x0a,0x0d,0xbf,0x06,0x00,0x13,
4030
+0x09,0x00,0x03,0x09,0x03,0x10,0x14,0x10,0xd4,0xcc,0xc4,0x12,
4031
+0x39,0x12,0x39,0x31,0x00,0x2f,0xd4,0xfc,0xc4,0x12,0x39,0x30,
4032
+0x21,0x1e,0x01,0x15,0x14,0x06,0x23,0x22,0x26,0x27,0x35,0x1e,
4033
+0x01,0x33,0x32,0x36,0x35,0x34,0x26,0x27,0x02,0x42,0x40,0x3f,
4034
+0x7e,0x70,0x2a,0x58,0x2e,0x29,0x4f,0x23,0x39,0x42,0x2c,0x2c,
4035
+0x40,0x70,0x31,0x51,0x59,0x0c,0x0c,0x83,0x11,0x11,0x35,0x2d,
4036
+0x1c,0x58,0x3c,0x00,0x00,0x01,0x00,0x93,0x02,0x9c,0x02,0x96,
4037
+0x05,0xdf,0x00,0x0a,0x00,0x3f,0x40,0x1d,0x04,0x05,0x06,0x05,
4038
+0x03,0x06,0x06,0x05,0x4d,0x03,0x06,0x04,0x05,0x08,0x01,0xc2,
4039
+0x00,0xc0,0x05,0x06,0x68,0x0b,0x09,0x07,0x5c,0x04,0x00,0x02,
4040
+0x0b,0x10,0xd4,0xc4,0xc4,0xfc,0xc4,0x31,0x00,0x10,0xf4,0xc4,
4041
+0xf4,0xec,0x32,0x11,0x39,0x12,0x39,0x30,0x4b,0x53,0x58,0x07,
4042
+0x10,0x04,0xc9,0x07,0x10,0x04,0xc9,0x59,0x22,0x13,0x35,0x33,
4043
+0x11,0x07,0x35,0x37,0x33,0x11,0x33,0x15,0xb0,0xac,0xc9,0xf0,
4044
+0x66,0xad,0x02,0x9c,0x54,0x02,0x7a,0x6a,0x5e,0x81,0xfd,0x11,
4045
+0x54,0x00,0x00,0x00,0x00,0x03,0x00,0x5e,0x02,0x17,0x03,0x64,
4046
+0x05,0xf0,0x00,0x0b,0x00,0x17,0x00,0x1b,0x00,0x2c,0x40,0x17,
4047
+0x1a,0x18,0x00,0xb8,0x0c,0xbb,0x06,0xb8,0x12,0x69,0x1c,0x18,
4048
+0x0f,0x09,0x19,0x03,0x59,0x15,0x09,0x59,0x0f,0x02,0x1c,0x10,
4049
+0xf4,0xec,0xd4,0xec,0x39,0x11,0x12,0x39,0x31,0x00,0x10,0xf4,
4050
+0xec,0xfc,0xec,0xdc,0xcc,0x30,0x01,0x32,0x36,0x35,0x34,0x26,
4051
+0x23,0x22,0x06,0x15,0x14,0x16,0x17,0x22,0x26,0x35,0x34,0x36,
4052
+0x33,0x32,0x16,0x15,0x14,0x06,0x05,0x21,0x15,0x21,0x01,0xe1,
4053
+0x6a,0x6b,0x6c,0x69,0x68,0x6d,0x6c,0x69,0xaf,0xd4,0xd4,0xaf,
4054
+0xaf,0xd4,0xd3,0xfd,0xf8,0x02,0xb0,0xfd,0x50,0x03,0x2d,0x9f,
4055
+0x9c,0x9c,0xa0,0xa2,0x9a,0x9b,0xa0,0x4c,0xd7,0xb0,0xb1,0xd7,
4056
+0xd7,0xb1,0xb1,0xd6,0x62,0x68,0x00,0x00,0x00,0x02,0x00,0xc1,
4057
+0x00,0x8d,0x04,0x48,0x04,0x23,0x00,0x06,0x00,0x0d,0x00,0x3a,
4058
+0x40,0x1c,0x0b,0x04,0x03,0x0d,0x06,0x07,0x00,0x0a,0x03,0x08,
4059
+0x01,0x09,0x02,0x0c,0x05,0x0e,0x05,0x01,0x5a,0x03,0x00,0x0c,
4060
+0x08,0x5a,0x0a,0x07,0x02,0x0e,0x10,0xf4,0x3c,0xfc,0xc4,0xd4,
4061
+0x3c,0xfc,0xc4,0x31,0x00,0x10,0xd4,0x3c,0xc4,0x32,0xc4,0x32,
4062
+0xc4,0x32,0xd4,0x3c,0xc4,0x32,0x10,0xc6,0x32,0x30,0x09,0x01,
4063
+0x15,0x01,0x35,0x09,0x01,0x25,0x01,0x15,0x01,0x35,0x09,0x01,
4064
+0x02,0x73,0x01,0xd5,0xfe,0x2b,0x01,0x29,0xfe,0xd7,0xfe,0x4e,
4065
+0x01,0xd5,0xfe,0x2b,0x01,0x28,0xfe,0xd8,0x04,0x23,0xfe,0x5e,
4066
+0x52,0xfe,0x5e,0x73,0x01,0x58,0x01,0x58,0x73,0xfe,0x5e,0x52,
4067
+0xfe,0x5e,0x73,0x01,0x58,0x01,0x58,0x00,0xff,0xff,0x00,0x93,
4068
+0xff,0xe3,0x07,0x81,0x05,0xf0,0x10,0x27,0x07,0xc7,0x04,0x8b,
4069
+0xfd,0x64,0x10,0x26,0x00,0x7b,0x00,0x00,0x10,0x07,0x07,0xaa,
4070
+0x03,0x35,0x00,0x00,0xff,0xff,0x00,0x93,0xff,0xe3,0x07,0x3f,
4071
+0x05,0xf0,0x10,0x26,0x00,0x7b,0x00,0x00,0x10,0x27,0x07,0xaa,
4072
+0x03,0x35,0x00,0x00,0x10,0x07,0x00,0x74,0x04,0x8b,0xfd,0x64,
4073
+0xff,0xff,0x00,0x64,0xff,0xe3,0x07,0x81,0x05,0xf0,0x10,0x27,
4074
+0x07,0xc7,0x04,0x8b,0xfd,0x64,0x10,0x26,0x00,0x75,0x00,0x00,
4075
+0x10,0x07,0x07,0xaa,0x03,0x35,0x00,0x00,0x00,0x02,0x00,0x8b,
4076
+0xfe,0x70,0x03,0xe7,0x04,0x7d,0x00,0x0b,0x00,0x22,0x00,0x38,
4077
+0x40,0x1e,0x18,0x15,0x16,0x03,0x61,0x09,0x21,0x0c,0x15,0x1e,
4078
+0x65,0x0f,0x82,0x09,0x8c,0x23,0x06,0x00,0x00,0x15,0x01,0x17,
4079
+0x21,0x01,0x0c,0x1b,0x1a,0x12,0x02,0x23,0x10,0xf4,0xec,0xd4,
4080
+0xec,0xd4,0xec,0xd4,0xec,0x31,0x00,0x10,0xe4,0xf4,0xec,0xc4,
4081
+0xd4,0xc4,0x10,0xfe,0xc5,0x10,0xce,0x30,0x01,0x14,0x06,0x23,
4082
+0x22,0x26,0x35,0x34,0x36,0x33,0x32,0x16,0x13,0x0e,0x01,0x23,
4083
+0x22,0x24,0x35,0x34,0x36,0x37,0x35,0x33,0x11,0x0e,0x01,0x15,
4084
+0x14,0x16,0x33,0x32,0x36,0x37,0x33,0x03,0x0a,0x4d,0x38,0x37,
4085
+0x4e,0x4e,0x37,0x39,0x4c,0xdd,0x6a,0xbe,0x55,0xdd,0xfe,0xfe,
4086
+0xde,0xdf,0x7b,0xb1,0xb4,0x93,0x7e,0x71,0x92,0x15,0x60,0x03,
4087
+0xf8,0x38,0x4e,0x4e,0x38,0x37,0x4e,0x4d,0xfa,0x9d,0x2f,0x2e,
4088
+0xd6,0xb6,0xba,0xec,0x33,0xfe,0xfe,0xb8,0x2b,0xca,0x9c,0x89,
4089
+0x9e,0x83,0x7b,0x00,0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,
4090
+0x07,0x6b,0x12,0x26,0x00,0x24,0x00,0x00,0x10,0x07,0x0d,0x7b,
4091
+0x04,0xe3,0x01,0x75,0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,
4092
+0x07,0x6b,0x12,0x26,0x00,0x24,0x00,0x00,0x10,0x07,0x0d,0x79,
4093
+0x04,0xe3,0x01,0x75,0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,
4094
+0x07,0x6b,0x12,0x26,0x00,0x24,0x00,0x00,0x10,0x07,0x0d,0x7c,
4095
+0x04,0xe3,0x01,0x75,0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,
4096
+0x07,0x5e,0x12,0x26,0x00,0x24,0x00,0x00,0x10,0x07,0x0d,0x7a,
4097
+0x04,0xe3,0x01,0x75,0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,
4098
+0x07,0x5c,0x12,0x26,0x00,0x24,0x00,0x00,0x10,0x07,0x0d,0x78,
4099
+0x04,0xe3,0x01,0x75,0x00,0x03,0xff,0xf4,0x00,0x00,0x05,0xdb,
4100
+0x07,0x6d,0x00,0x0b,0x00,0x0e,0x00,0x29,0x00,0xf7,0x40,0x61,
4101
+0x0c,0x64,0x11,0x12,0x11,0x0e,0x64,0x0d,0x0e,0x12,0x12,0x11,
4102
+0x29,0x28,0x02,0x27,0x64,0x12,0x11,0x26,0x64,0x11,0x12,0x11,
4103
+0x0e,0x10,0x0c,0x0e,0x1e,0x1f,0x1e,0x0d,0x10,0x1f,0x1e,0x25,
4104
+0x10,0x1f,0x1e,0x22,0x23,0x02,0x24,0x10,0x1f,0x1f,0x1e,0x4d,
4105
+0x0e,0x1e,0x12,0x09,0x25,0x6f,0x0c,0x03,0x18,0x0c,0x09,0x66,
4106
+0x27,0x23,0x1f,0x03,0x10,0x6f,0x21,0x0f,0x24,0x1f,0x20,0x1b,
4107
+0x28,0x27,0x26,0x11,0x0c,0x05,0x2a,0x15,0x25,0x22,0x0d,0x03,
4108
+0x1b,0x0e,0x12,0x1e,0x06,0x00,0x1b,0x20,0x06,0x15,0x20,0x0f,
4109
+0x2a,0x10,0xd4,0xc4,0xd4,0xcc,0x10,0xd4,0xce,0x11,0x39,0x39,
4110
+0x39,0x11,0x17,0x39,0x11,0x12,0x17,0x39,0x11,0x12,0x39,0x39,
4111
+0x31,0x00,0x2f,0x3c,0xee,0x17,0x32,0xe6,0xc6,0xd6,0xce,0x10,
4112
+0xee,0x12,0x39,0x39,0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x05,
4113
+0xed,0x17,0x32,0x07,0x05,0xed,0x07,0x05,0xed,0x07,0x10,0x08,
4114
+0xed,0x07,0x10,0x05,0xed,0x07,0x05,0xed,0x17,0x32,0x07,0x10,
4115
+0x08,0xed,0x07,0x10,0x05,0xed,0x59,0x22,0xb2,0x0f,0x19,0x01,
4116
+0x00,0x5d,0x40,0x3a,0x2f,0x00,0x2f,0x01,0x20,0x05,0x20,0x06,
4117
+0x20,0x07,0x2f,0x0b,0x26,0x0c,0x29,0x0d,0x22,0x12,0x21,0x13,
4118
+0x20,0x14,0x20,0x15,0x20,0x16,0x2f,0x1a,0x2f,0x1b,0x2f,0x1c,
4119
+0x2e,0x1d,0x2e,0x1e,0x29,0x1f,0x28,0x25,0x27,0x26,0x15,0x0f,
4120
+0x02,0x0f,0x03,0x0f,0x04,0x0f,0x17,0x0f,0x18,0x2b,0x0e,0x2f,
4121
+0x0e,0x07,0x5d,0x01,0x5d,0x01,0x34,0x26,0x23,0x22,0x06,0x15,
4122
+0x14,0x16,0x33,0x32,0x36,0x01,0x21,0x09,0x01,0x35,0x33,0x01,
4123
+0x2e,0x01,0x35,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x07,
4124
+0x01,0x33,0x15,0x21,0x35,0x33,0x03,0x21,0x03,0x33,0x15,0x03,
4125
+0x77,0x59,0x3f,0x40,0x57,0x57,0x40,0x3f,0x59,0xfe,0x23,0x02,
4126
+0x22,0xfe,0xf0,0xfd,0x48,0x83,0x01,0xe9,0x48,0x4b,0xa0,0x72,
4127
+0x72,0xa1,0x4e,0x48,0x01,0xec,0x93,0xfd,0xe1,0xa6,0x7d,0xfd,
4128
+0x8c,0x7d,0xa4,0x06,0x5a,0x3f,0x59,0x57,0x41,0x3f,0x58,0x58,
4129
+0xfc,0x02,0x02,0xc6,0xfb,0x1d,0x6a,0x04,0xfe,0x25,0x7a,0x53,
4130
+0x72,0xa1,0xa1,0x72,0x50,0x7f,0x23,0xfb,0x02,0x6a,0x6a,0x01,
4131
+0x48,0xfe,0xb8,0x6a,0x00,0x02,0xff,0xdd,0x00,0x00,0x07,0x98,
4132
+0x05,0xd5,0x00,0x03,0x00,0x23,0x00,0xc1,0x40,0x55,0x00,0x64,
4133
+0x0e,0x0f,0x0e,0x03,0x64,0x0f,0x0f,0x0e,0x0b,0x0a,0x02,0x09,
4134
+0x64,0x0f,0x0e,0x08,0x64,0x0e,0x0f,0x0e,0x4d,0x1b,0x81,0x1d,
4135
+0x80,0x19,0x81,0x17,0x07,0x6f,0x00,0x21,0x1f,0x13,0x15,0x80,
4136
+0x0f,0x02,0x6f,0x11,0x62,0x00,0x0d,0x09,0x05,0x6f,0x1f,0x80,
4137
+0x17,0x7e,0x0b,0x04,0x10,0x0f,0x0e,0x0a,0x09,0x08,0x00,0x07,
4138
+0x24,0x03,0x04,0x01,0x1c,0x18,0x0f,0x1a,0x14,0x0f,0x12,0x20,
4139
+0x0f,0x22,0x04,0x24,0x0c,0x1e,0x16,0x11,0x06,0x01,0x24,0x10,
4140
+0xd4,0x3c,0xec,0x32,0xc4,0xe4,0xd4,0xec,0xd4,0xec,0xd4,0xec,
4141
+0x32,0x11,0x12,0x39,0x11,0x17,0x39,0x31,0x00,0x2f,0x3c,0xec,
4142
+0xec,0xec,0x32,0x32,0xc4,0xf4,0xec,0x32,0xfc,0xc4,0x10,0xc4,
4143
+0x10,0xee,0x10,0xe4,0xfe,0xe4,0x30,0x4b,0x53,0x58,0x07,0x10,
4144
+0x05,0xed,0x07,0x05,0xed,0x17,0x32,0x07,0x10,0x05,0xed,0x07,
4145
+0x10,0x05,0xed,0x59,0x22,0xb2,0x00,0x1c,0x01,0x01,0x5d,0x40,
4146
+0x1f,0x00,0x12,0x00,0x13,0x00,0x14,0x00,0x15,0x00,0x18,0x00,
4147
+0x1a,0x00,0x1b,0x00,0x20,0x00,0x21,0x00,0x22,0x00,0x23,0x30,
4148
+0x25,0x4f,0x25,0x6f,0x25,0x8f,0x25,0x0f,0x5d,0x01,0x21,0x11,
4149
+0x23,0x03,0x35,0x33,0x11,0x21,0x03,0x33,0x15,0x21,0x35,0x33,
4150
+0x01,0x23,0x35,0x21,0x11,0x23,0x35,0x21,0x11,0x21,0x35,0x33,
4151
+0x11,0x23,0x35,0x21,0x11,0x21,0x35,0x33,0x11,0x01,0xaa,0x01,
4152
+0xe9,0x64,0x5a,0xbe,0xfd,0xe6,0x98,0xa4,0xfe,0x58,0x83,0x02,
4153
+0x4e,0xd7,0x05,0xb0,0x7b,0xfd,0x50,0x01,0xec,0x7b,0x7b,0xfe,
4154
+0x14,0x02,0xc1,0x7b,0x02,0x1d,0x03,0x4d,0xfa,0x96,0x6a,0x01,
4155
+0x48,0xfe,0xb8,0x6a,0x6a,0x05,0x00,0x6b,0xfe,0xb4,0xd1,0xfe,
4156
+0x0c,0xbb,0xfe,0x10,0xbb,0xfd,0x8f,0xd1,0xfe,0xb4,0x00,0x00,
4157
+0xff,0xff,0x00,0x73,0xfe,0x75,0x05,0xa4,0x05,0xf0,0x12,0x26,
4158
+0x00,0x26,0x00,0x00,0x10,0x07,0x00,0x7a,0x01,0x4c,0x00,0x00,
4159
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,0x07,0x6b,0x12,0x26,
4160
+0x00,0x28,0x00,0x00,0x10,0x07,0x0d,0x7b,0x04,0xec,0x01,0x75,
4161
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,0x07,0x6b,0x12,0x26,
4162
+0x00,0x28,0x00,0x00,0x10,0x07,0x0d,0x79,0x04,0xec,0x01,0x75,
4163
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,0x07,0x6b,0x12,0x26,
4164
+0x00,0x28,0x00,0x00,0x10,0x07,0x0d,0x7c,0x04,0xec,0x01,0x75,
4165
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,0x07,0x5c,0x12,0x26,
4166
+0x00,0x28,0x00,0x00,0x10,0x07,0x0d,0x78,0x04,0xec,0x01,0x75,
4167
+0xff,0xff,0x00,0x71,0x00,0x00,0x02,0xb8,0x07,0x6b,0x12,0x26,
4168
+0x00,0x2c,0x00,0x00,0x10,0x07,0x0d,0x7b,0x03,0x96,0x01,0x75,
4169
+0xff,0xff,0x00,0x71,0x00,0x00,0x02,0xb8,0x07,0x6b,0x12,0x26,
4170
+0x00,0x2c,0x00,0x00,0x10,0x07,0x0d,0x79,0x03,0x96,0x01,0x75,
4171
+0xff,0xff,0x00,0x57,0x00,0x00,0x02,0xd5,0x07,0x6b,0x12,0x26,
4172
+0x00,0x2c,0x00,0x00,0x10,0x07,0x0d,0x7c,0x03,0x96,0x01,0x75,
4173
+0xff,0xff,0x00,0x5f,0x00,0x00,0x02,0xcd,0x07,0x5c,0x12,0x26,
4174
+0x00,0x2c,0x00,0x00,0x10,0x07,0x0d,0x78,0x03,0x96,0x01,0x75,
4175
+0x00,0x02,0x00,0x71,0x00,0x00,0x05,0xfe,0x05,0xd5,0x00,0x0c,
4176
+0x00,0x1d,0x00,0x4d,0x40,0x25,0x12,0x09,0x80,0x10,0x0b,0x14,
4177
+0x07,0x6f,0x16,0x62,0x0e,0x00,0x6f,0x0d,0x11,0x1e,0x0d,0x0a,
4178
+0x07,0x01,0x03,0x1d,0x17,0x00,0x04,0x0e,0x1a,0x15,0x0d,0x24,
4179
+0x08,0x00,0x11,0x13,0x0f,0x21,0x1e,0x10,0xf4,0x3c,0xec,0x32,
4180
+0xe4,0x32,0xd4,0xec,0x11,0x39,0x39,0x17,0x39,0x11,0x12,0x39,
4181
+0x31,0x00,0x2f,0xec,0x32,0xf4,0xec,0x32,0xd4,0x3c,0xec,0x32,
4182
+0x30,0xb4,0x30,0x1f,0x80,0x1f,0x02,0x01,0x5d,0x25,0x33,0x20,
4183
+0x00,0x11,0x10,0x00,0x21,0x23,0x11,0x21,0x15,0x21,0x01,0x35,
4184
+0x33,0x11,0x23,0x35,0x33,0x11,0x23,0x35,0x21,0x20,0x00,0x11,
4185
+0x10,0x00,0x21,0x02,0x02,0xbc,0x01,0x23,0x01,0x38,0xfe,0xc9,
4186
+0xfe,0xdc,0xbc,0x01,0x50,0xfe,0xb0,0xfe,0x79,0xbe,0xc8,0xc8,
4187
+0xbe,0x02,0x52,0x01,0x82,0x01,0xaf,0xfe,0x50,0xfe,0x7f,0x6a,
4188
+0x01,0x4c,0x01,0x36,0x01,0x36,0x01,0x48,0xfd,0xe2,0x7d,0xfd,
4189
+0x31,0x6a,0x02,0x65,0x7d,0x02,0x1e,0x6b,0xfe,0x76,0xfe,0xa1,
4190
+0xfe,0xa0,0xfe,0x74,0xff,0xff,0x00,0x64,0xff,0xe3,0x06,0xa6,
4191
+0x07,0x5e,0x12,0x26,0x00,0x31,0x00,0x00,0x10,0x07,0x0d,0x7a,
4192
+0x05,0x81,0x01,0x75,0xff,0xff,0x00,0x73,0xff,0xe3,0x06,0x1d,
4193
+0x07,0x6b,0x12,0x26,0x00,0x32,0x00,0x00,0x10,0x07,0x0d,0x7b,
4194
+0x05,0x48,0x01,0x75,0xff,0xff,0x00,0x73,0xff,0xe3,0x06,0x1d,
4195
+0x07,0x6b,0x12,0x26,0x00,0x32,0x00,0x00,0x10,0x07,0x0d,0x79,
4196
+0x05,0x48,0x01,0x75,0xff,0xff,0x00,0x73,0xff,0xe3,0x06,0x1d,
4197
+0x07,0x6b,0x12,0x26,0x00,0x32,0x00,0x00,0x10,0x07,0x0d,0x7c,
4198
+0x05,0x48,0x01,0x75,0xff,0xff,0x00,0x73,0xff,0xe3,0x06,0x1d,
4199
+0x07,0x5e,0x12,0x26,0x00,0x32,0x00,0x00,0x10,0x07,0x0d,0x7a,
4200
+0x05,0x48,0x01,0x75,0xff,0xff,0x00,0x73,0xff,0xe3,0x06,0x1d,
4201
+0x07,0x5c,0x12,0x26,0x00,0x32,0x00,0x00,0x10,0x07,0x0d,0x78,
4202
+0x05,0x48,0x01,0x75,0x00,0x01,0x01,0x1b,0x00,0x44,0x05,0x9a,
4203
+0x04,0xc1,0x00,0x0b,0x00,0x2f,0x40,0x1c,0x0a,0x08,0x07,0x06,
4204
+0x04,0x02,0x01,0x00,0x08,0x05,0x03,0x0b,0x09,0x0c,0x0b,0x0a,
4205
+0x09,0x07,0x05,0x04,0x03,0x01,0x08,0x02,0x00,0x08,0x06,0x0c,
4206
+0x10,0xd4,0x3c,0xcc,0x32,0x17,0x39,0x31,0x00,0x10,0xd4,0x3c,
4207
+0xcc,0x32,0x17,0x39,0x30,0x09,0x02,0x07,0x09,0x01,0x27,0x09,
4208
+0x01,0x37,0x09,0x01,0x05,0x9a,0xfe,0x31,0x01,0xcf,0x73,0xfe,
4209
+0x33,0xfe,0x33,0x72,0x01,0xcc,0xfe,0x34,0x72,0x01,0xcd,0x01,
4210
+0xcd,0x04,0x50,0xfe,0x31,0xfe,0x33,0x70,0x01,0xcc,0xfe,0x34,
4211
+0x70,0x01,0xcd,0x01,0xcf,0x71,0xfe,0x33,0x01,0xcd,0x00,0x00,
4212
+0x00,0x03,0x00,0x64,0xff,0xc7,0x06,0x27,0x06,0x0e,0x00,0x09,
4213
+0x00,0x13,0x00,0x2b,0x00,0x73,0x40,0x3a,0x1f,0x2c,0x0d,0x2b,
4214
+0x26,0x13,0x0a,0x09,0x00,0x04,0x1d,0x20,0x29,0x14,0x04,0x0d,
4215
+0x03,0x2a,0x26,0x1e,0x0d,0x6e,0x1a,0x03,0x6e,0x26,0x69,0x1a,
4216
+0x60,0x2c,0x1f,0x2c,0x23,0x2a,0x14,0x17,0x10,0x20,0x1e,0x23,
4217
+0x13,0x0a,0x09,0x00,0x04,0x1d,0x29,0x10,0x06,0x2b,0x10,0x0e,
4218
+0x17,0x06,0x0e,0x23,0x25,0x2c,0x10,0xf4,0xec,0xd4,0xec,0xc0,
4219
+0x11,0x12,0x39,0x39,0x17,0x39,0x12,0x39,0x39,0x11,0x12,0x39,
4220
+0x39,0x11,0x12,0x39,0x31,0x00,0x10,0xe4,0xf4,0xec,0x10,0xee,
4221
+0xc0,0x10,0xc0,0x11,0x12,0x17,0x39,0x17,0x39,0x12,0x39,0x11,
4222
+0x12,0x39,0x30,0xb6,0x5f,0x2d,0x6f,0x2d,0xa0,0x2d,0x03,0x01,
4223
+0x5d,0x01,0x2e,0x01,0x23,0x22,0x02,0x11,0x14,0x16,0x1f,0x01,
4224
+0x1e,0x01,0x33,0x32,0x12,0x11,0x34,0x26,0x27,0x37,0x16,0x12,
4225
+0x15,0x10,0x00,0x21,0x22,0x26,0x27,0x07,0x27,0x37,0x26,0x02,
4226
+0x35,0x10,0x00,0x21,0x32,0x16,0x17,0x37,0x17,0x04,0xbe,0x41,
4227
+0xb9,0x7c,0xf6,0xfa,0x20,0x22,0x35,0x40,0xbc,0x7d,0xf5,0xfa,
4228
+0x21,0x22,0x7b,0x57,0x57,0xfe,0x6f,0xfe,0xbc,0x8d,0xee,0x65,
4229
+0xb6,0x4e,0xbb,0x57,0x55,0x01,0x92,0x01,0x43,0x8d,0xf0,0x60,
4230
+0xb2,0x50,0x04,0xd7,0x58,0x56,0xfe,0xaf,0xfe,0xb5,0x77,0xc1,
4231
+0x51,0x60,0x59,0x59,0x01,0x51,0x01,0x4a,0x75,0xc5,0x52,0x87,
4232
+0x6c,0xfe,0xf9,0xa0,0xfe,0xa7,0xfe,0x53,0x56,0x56,0xc8,0x45,
4233
+0xcf,0x69,0x01,0x05,0xa0,0x01,0x5a,0x01,0xad,0x55,0x53,0xc6,
4234
+0x47,0x00,0x00,0x00,0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,
4235
+0x07,0x6b,0x12,0x26,0x00,0x38,0x00,0x00,0x10,0x07,0x0d,0x7b,
4236
+0x05,0x87,0x01,0x75,0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,
4237
+0x07,0x6b,0x12,0x26,0x00,0x38,0x00,0x00,0x10,0x07,0x0d,0x79,
4238
+0x05,0x87,0x01,0x75,0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,
4239
+0x07,0x6b,0x12,0x26,0x00,0x38,0x00,0x00,0x10,0x07,0x0d,0x7c,
4240
+0x05,0x87,0x01,0x75,0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,
4241
+0x07,0x5c,0x12,0x26,0x00,0x38,0x00,0x00,0x10,0x07,0x0d,0x78,
4242
+0x05,0x87,0x01,0x75,0xff,0xff,0xff,0xe9,0x00,0x00,0x05,0x5a,
4243
+0x07,0x6b,0x12,0x26,0x00,0x3c,0x00,0x00,0x10,0x07,0x0d,0x79,
4244
+0x04,0xa4,0x01,0x75,0x00,0x02,0x00,0x71,0x00,0x00,0x05,0x19,
4245
+0x05,0xd5,0x00,0x08,0x00,0x1d,0x00,0x4d,0x40,0x26,0x07,0x6f,
4246
+0x12,0x00,0x6f,0x19,0x10,0x0c,0x6f,0x0e,0x62,0x1b,0x0a,0x6f,
4247
+0x19,0x09,0x07,0x01,0x19,0x13,0x04,0x1c,0x0f,0x23,0x00,0x04,
4248
+0x0e,0x16,0x0d,0x09,0x24,0x1a,0x11,0x00,0x11,0x0b,0x21,0x1e,
4249
+0x10,0xf4,0xec,0x32,0x32,0xe4,0x32,0xd4,0xec,0x10,0xe4,0x32,
4250
+0x11,0x39,0x39,0x39,0x39,0x31,0x00,0x2f,0xc4,0xee,0x32,0xf6,
4251
+0xee,0x32,0x10,0xee,0xd6,0xee,0x30,0xb2,0x5f,0x1f,0x01,0x01,
4252
+0x5d,0x01,0x21,0x32,0x36,0x35,0x34,0x26,0x23,0x21,0x01,0x35,
4253
+0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x15,0x21,0x32,0x04,0x15,
4254
+0x14,0x04,0x23,0x21,0x15,0x33,0x15,0x01,0xfa,0x01,0x08,0x95,
4255
+0x9c,0x9c,0x95,0xfe,0xf8,0xfe,0x77,0xbe,0xbe,0x02,0x70,0xe7,
4256
+0x01,0x39,0xe0,0x01,0x06,0xfe,0xf9,0xdf,0xfe,0xc7,0xe7,0x01,
4257
+0xb2,0xa1,0x99,0x98,0xa1,0xfb,0xdb,0x6a,0x05,0x00,0x6b,0x6b,
4258
+0xdb,0xe3,0xc0,0xc2,0xe4,0xdc,0x6a,0x00,0x00,0x01,0x00,0x3b,
4259
+0xff,0xe3,0x04,0xfe,0x06,0x14,0x00,0x33,0x00,0xb5,0x40,0x3b,
4260
+0x18,0x2d,0x2e,0x19,0x03,0x23,0x06,0x0b,0x00,0x7a,0x11,0x23,
4261
+0x22,0x27,0x8f,0x1f,0x03,0x8f,0x11,0x0e,0x71,0x1f,0x60,0x09,
4262
+0x7a,0x07,0x18,0x15,0x00,0x12,0x11,0x19,0x2a,0x2d,0x2e,0x15,
4263
+0x00,0x24,0x2d,0x22,0x15,0x3e,0x31,0x00,0x27,0x11,0x2a,0x27,
4264
+0x1c,0x22,0x06,0x27,0x08,0x2c,0x1c,0x11,0x0a,0x30,0x34,0x10,
4265
+0xf4,0xc4,0xc4,0xe4,0xfc,0xc4,0x10,0xee,0x10,0xee,0xd4,0xee,
4266
+0x10,0xee,0x11,0x12,0x39,0x39,0x12,0x39,0x11,0x39,0x11,0x12,
4267
+0x39,0x31,0x00,0x2f,0xee,0xe4,0xfe,0xc6,0xee,0x10,0xee,0xd6,
4268
+0xc6,0x10,0xee,0x39,0x39,0x12,0x17,0x39,0x39,0x30,0x40,0x44,
4269
+0x09,0x2d,0x18,0x2d,0x17,0x2e,0x2f,0x35,0x60,0x12,0x60,0x12,
4270
+0x6f,0x35,0x8f,0x35,0x08,0x00,0x00,0x00,0x11,0x00,0x12,0x00,
4271
+0x13,0x00,0x14,0x04,0x15,0x05,0x16,0x07,0x2f,0x05,0x30,0x05,
4272
+0x31,0x00,0x32,0x00,0x33,0x10,0x00,0x10,0x11,0x10,0x12,0x10,
4273
+0x13,0x11,0x14,0x14,0x15,0x15,0x16,0x18,0x2d,0x16,0x2f,0x15,
4274
+0x30,0x15,0x31,0x10,0x32,0x10,0x33,0x19,0x5d,0x01,0x5d,0x01,
4275
+0x2e,0x01,0x23,0x22,0x06,0x15,0x11,0x21,0x35,0x33,0x11,0x34,
4276
+0x36,0x33,0x32,0x16,0x17,0x23,0x22,0x06,0x15,0x14,0x16,0x1f,
4277
+0x01,0x1e,0x01,0x15,0x14,0x06,0x23,0x22,0x26,0x27,0x35,0x33,
4278
+0x1e,0x01,0x33,0x32,0x36,0x35,0x34,0x26,0x2f,0x01,0x2e,0x01,
4279
+0x35,0x34,0x36,0x03,0xac,0x08,0x8b,0x77,0x84,0x7a,0xfe,0x97,
4280
+0xb1,0xe5,0xd1,0xd5,0xdf,0x0c,0x16,0x91,0xa7,0x36,0x49,0x59,
4281
+0x9b,0x77,0xe7,0xb9,0x55,0xa8,0x4f,0x6d,0x04,0x6f,0x66,0x6f,
4282
+0x7f,0x50,0x75,0x56,0x68,0x59,0xa9,0x04,0xba,0x77,0x81,0x81,
4283
+0x8b,0xfb,0x5a,0x6a,0x04,0x38,0xb0,0xc2,0xd0,0xd3,0x6c,0x5d,
4284
+0x34,0x4d,0x2f,0x37,0x63,0xaa,0x72,0x9b,0xc4,0x25,0x23,0xe9,
4285
+0x65,0x69,0x79,0x68,0x54,0x75,0x49,0x36,0x41,0x81,0x52,0x7a,
4286
+0xa4,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x8b,
4287
+0x06,0x64,0x12,0x26,0x00,0x44,0x00,0x00,0x10,0x06,0x00,0x43,
4288
+0x39,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x8b,
4289
+0x06,0x66,0x12,0x26,0x00,0x44,0x00,0x00,0x10,0x06,0x00,0x76,
4290
+0x39,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x8b,
4291
+0x06,0x66,0x12,0x26,0x00,0x44,0x00,0x00,0x10,0x06,0x02,0x88,
4292
+0x39,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x8b,
4293
+0x06,0x37,0x12,0x26,0x00,0x44,0x00,0x00,0x10,0x06,0x02,0x9a,
4294
+0x39,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x8b,
4295
+0x06,0x21,0x12,0x26,0x00,0x44,0x00,0x00,0x10,0x06,0x00,0x6a,
4296
+0x39,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x8b,
4297
+0x07,0x06,0x12,0x26,0x00,0x44,0x00,0x00,0x10,0x06,0x02,0x98,
4298
+0x39,0x00,0x00,0x00,0x00,0x03,0x00,0x66,0xff,0xe3,0x07,0x1e,
4299
+0x04,0x44,0x00,0x0a,0x00,0x38,0x00,0x3f,0x00,0xaf,0x40,0x47,
4300
+0x00,0x2c,0x32,0x2a,0x24,0x19,0x16,0x1c,0x14,0x0b,0x32,0x08,
4301
+0x39,0x7a,0x2a,0x01,0x7a,0x14,0x32,0x99,0x2f,0x8f,0x08,0x8f,
4302
+0x14,0x93,0x0e,0x1c,0x8e,0x1e,0x8d,0x2a,0x9b,0x3c,0x19,0x8f,
4303
+0x27,0x21,0x8c,0x36,0x0e,0x60,0x40,0x02,0x05,0x0b,0x24,0x2b,
4304
+0x14,0x05,0x00,0x1c,0x2d,0x1d,0x3f,0x2b,0x1a,0x00,0x32,0x33,
4305
+0x15,0x00,0x39,0x1a,0x2a,0x05,0x1a,0x1d,0x11,0x2a,0x40,0x10,
4306
+0xf4,0xc4,0xec,0xd4,0xec,0xc4,0x32,0xd4,0xcc,0x10,0xee,0x32,
4307
+0x10,0xee,0x11,0x12,0x39,0x12,0x39,0x39,0x12,0x39,0x31,0x00,
4308
+0x10,0xe4,0x32,0xfc,0x3c,0xec,0x32,0xec,0xf4,0xe4,0x10,0xe6,
4309
+0xee,0xfe,0xe4,0x10,0xee,0x10,0xee,0x11,0x12,0x39,0x11,0x12,
4310
+0x39,0x11,0x39,0x11,0x12,0x39,0x39,0x30,0x40,0x28,0x0f,0x41,
4311
+0x6f,0x41,0x02,0xc0,0x01,0xc0,0x02,0xc0,0x03,0xc4,0x04,0xc4,
4312
+0x05,0xc4,0x06,0xc4,0x10,0xc4,0x11,0xc4,0x12,0xc0,0x13,0xc0,
4313
+0x14,0xc0,0x15,0xcf,0x2a,0xcf,0x2b,0xcf,0x2c,0xcf,0x39,0xcf,
4314
+0x3f,0x11,0x5d,0x01,0x5d,0x01,0x35,0x23,0x22,0x06,0x15,0x14,
4315
+0x16,0x33,0x32,0x36,0x17,0x0e,0x01,0x23,0x22,0x26,0x35,0x34,
4316
+0x36,0x33,0x21,0x35,0x34,0x26,0x23,0x22,0x06,0x07,0x23,0x35,
4317
+0x3e,0x01,0x33,0x32,0x16,0x17,0x3e,0x01,0x33,0x32,0x00,0x13,
4318
+0x21,0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x33,0x0e,0x01,0x23,
4319
+0x22,0x26,0x01,0x2e,0x01,0x23,0x22,0x06,0x07,0x03,0x2f,0xed,
4320
+0x89,0x86,0x88,0x74,0x73,0x8d,0x6d,0x53,0xca,0x7d,0xc5,0xd7,
4321
+0xef,0xd8,0x01,0x02,0x90,0x80,0x74,0x84,0x10,0x5f,0x60,0xb5,
4322
+0x56,0x8d,0xc1,0x37,0x4a,0xc0,0x75,0xf1,0x01,0x02,0x04,0xfc,
4323
+0xe8,0xa1,0x9f,0x79,0x9b,0x1f,0x93,0x2b,0xee,0xc0,0x7a,0xcf,
4324
+0x02,0x5c,0x06,0x91,0x88,0x7f,0x93,0x0f,0x01,0x4e,0xe1,0x76,
4325
+0x7a,0x6f,0x82,0x8e,0x46,0x5b,0x58,0xb6,0xa6,0xa5,0xb6,0x49,
4326
+0x78,0x86,0x63,0x63,0xd7,0x29,0x29,0x57,0x5a,0x58,0x59,0xfe,
4327
+0xd6,0xfe,0xe6,0x08,0xd7,0xdb,0x7f,0x7d,0xaf,0xb0,0x5b,0x02,
4328
+0x2c,0xba,0xbd,0xbe,0xb9,0x00,0x00,0x00,0xff,0xff,0x00,0x66,
4329
+0xfe,0x75,0x04,0x1d,0x04,0x44,0x12,0x26,0x00,0x46,0x00,0x00,
4330
+0x10,0x06,0x00,0x7a,0x64,0x00,0x00,0x00,0xff,0xff,0x00,0x66,
4331
+0xff,0xe3,0x04,0x56,0x06,0x64,0x12,0x26,0x00,0x48,0x00,0x00,
4332
+0x10,0x06,0x00,0x43,0x5e,0x00,0x00,0x00,0xff,0xff,0x00,0x66,
4333
+0xff,0xe3,0x04,0x56,0x06,0x66,0x12,0x26,0x00,0x48,0x00,0x00,
4334
+0x10,0x06,0x00,0x76,0x5e,0x00,0x00,0x00,0xff,0xff,0x00,0x66,
4335
+0xff,0xe3,0x04,0x56,0x06,0x66,0x12,0x26,0x00,0x48,0x00,0x00,
4336
+0x10,0x06,0x02,0x88,0x5e,0x00,0x00,0x00,0xff,0xff,0x00,0x66,
4337
+0xff,0xe3,0x04,0x56,0x06,0x21,0x12,0x26,0x00,0x48,0x00,0x00,
4338
+0x10,0x06,0x00,0x6a,0x5e,0x00,0x00,0x00,0xff,0xff,0xff,0xf2,
4339
+0x00,0x00,0x02,0x60,0x06,0x64,0x12,0x26,0x00,0xf3,0x00,0x00,
4340
+0x10,0x07,0x00,0x43,0xff,0x48,0x00,0x00,0xff,0xff,0x00,0x4a,
4341
+0x00,0x00,0x02,0x9a,0x06,0x66,0x12,0x26,0x00,0xf3,0x00,0x00,
4342
+0x10,0x07,0x00,0x76,0xff,0x48,0x00,0x00,0xff,0xff,0x00,0x09,
4343
+0x00,0x00,0x02,0x87,0x06,0x66,0x12,0x26,0x00,0xf3,0x00,0x00,
4344
+0x10,0x07,0x02,0x88,0xff,0x48,0x00,0x00,0xff,0xff,0x00,0x11,
4345
+0x00,0x00,0x02,0x7f,0x06,0x21,0x12,0x26,0x00,0xf3,0x00,0x00,
4346
+0x10,0x07,0x00,0x6a,0xff,0x48,0x00,0x00,0x00,0x02,0x00,0x66,
4347
+0xff,0xe3,0x04,0x6a,0x06,0x14,0x00,0x0e,0x00,0x2d,0x00,0x61,
4348
+0x40,0x33,0x2d,0x2c,0x2b,0x27,0x24,0x23,0x22,0x07,0x21,0x0f,
4349
+0x28,0x1e,0x03,0x8f,0x1b,0x09,0x8f,0x15,0x60,0x1b,0x88,0x28,
4350
+0x71,0x2e,0x2d,0x2c,0x12,0x0c,0x23,0x22,0x18,0x21,0x0c,0x27,
4351
+0x28,0x18,0x1e,0x24,0x2b,0x0f,0x04,0x06,0x0c,0x1a,0x12,0x44,
4352
+0x06,0x1a,0x18,0x2a,0x2e,0x10,0xf4,0xec,0xf4,0xec,0x11,0x17,
4353
+0x39,0x12,0x39,0x39,0x12,0x39,0x12,0x39,0x39,0x11,0x12,0x39,
4354
+0x39,0x31,0x00,0x10,0xec,0xec,0xf4,0xec,0x10,0xee,0x39,0x12,
4355
+0x39,0x39,0x17,0x39,0x30,0xb4,0x20,0x2f,0x6f,0x2f,0x02,0x01,
4356
+0x5d,0x01,0x2e,0x01,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,
4357
+0x36,0x35,0x34,0x26,0x03,0x16,0x12,0x15,0x14,0x00,0x23,0x22,
4358
+0x00,0x35,0x34,0x00,0x33,0x32,0x16,0x17,0x2e,0x01,0x27,0x05,
4359
+0x27,0x25,0x2e,0x01,0x27,0x37,0x1e,0x01,0x17,0x25,0x17,0x03,
4360
+0x35,0x2d,0x51,0x28,0xad,0xa5,0x9d,0x8e,0x90,0x9b,0x2f,0x6c,
4361
+0xb7,0xbb,0xfe,0xe7,0xe9,0xe5,0xfe,0xe3,0x01,0x1a,0xe4,0x23,
4362
+0x4b,0x34,0x16,0x49,0x32,0xfe,0xbe,0x25,0x01,0x25,0x3d,0x9d,
4363
+0x5f,0x12,0x77,0xd1,0x5c,0x01,0x42,0x25,0x03,0xa0,0x09,0x09,
4364
+0xd6,0xe0,0xd2,0xe4,0xe5,0xd5,0x70,0xd3,0x01,0xd8,0xa7,0xfe,
4365
+0x79,0xd9,0xfe,0xfe,0xcd,0x01,0x2f,0xf4,0xec,0x01,0x22,0x06,
4366
+0x08,0x35,0x6b,0x37,0x95,0x4e,0x87,0x3a,0x51,0x16,0x56,0x1a,
4367
+0x5e,0x44,0x96,0x4e,0xff,0xff,0x00,0x4a,0x00,0x00,0x04,0xee,
4368
+0x06,0x37,0x12,0x26,0x00,0x51,0x00,0x00,0x10,0x07,0x02,0x9a,
4369
+0x00,0x93,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,
4370
+0x06,0x64,0x12,0x26,0x00,0x52,0x00,0x00,0x10,0x06,0x00,0x43,
4371
+0x68,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,
4372
+0x06,0x66,0x12,0x26,0x00,0x52,0x00,0x00,0x10,0x06,0x00,0x76,
4373
+0x68,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,
4374
+0x06,0x66,0x12,0x26,0x00,0x52,0x00,0x00,0x10,0x06,0x02,0x88,
4375
+0x68,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,
4376
+0x06,0x37,0x12,0x26,0x00,0x52,0x00,0x00,0x10,0x06,0x02,0x9a,
4377
+0x68,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,
4378
+0x06,0x21,0x12,0x26,0x00,0x52,0x00,0x00,0x10,0x06,0x00,0x6a,
4379
+0x68,0x00,0x00,0x00,0x00,0x03,0x00,0xd9,0x00,0x8b,0x05,0xdb,
4380
+0x04,0x79,0x00,0x0b,0x00,0x17,0x00,0x1b,0x00,0x27,0x40,0x13,
4381
+0x03,0x61,0x09,0x15,0x61,0x0f,0x1a,0x72,0x09,0x18,0x1c,0x19,
4382
+0x12,0x06,0x00,0x18,0x0c,0x00,0x1c,0x10,0xd4,0x3c,0xc4,0xfc,
4383
+0x3c,0xc4,0x31,0x00,0x10,0xd4,0xc4,0xfc,0xd4,0xec,0x10,0xee,
4384
+0x30,0x01,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,
4385
+0x26,0x11,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,
4386
+0x26,0x01,0x21,0x15,0x21,0x02,0xd5,0x4d,0x38,0x37,0x4e,0x4e,
4387
+0x37,0x39,0x4c,0x4d,0x38,0x37,0x4e,0x4e,0x37,0x39,0x4c,0xfe,
4388
+0x04,0x05,0x02,0xfa,0xfe,0x03,0xf4,0x38,0x4d,0x4e,0x37,0x38,
4389
+0x4d,0x4c,0xfd,0x55,0x38,0x4e,0x4e,0x38,0x37,0x4e,0x4d,0x01,
4390
+0xfb,0xa2,0x00,0x00,0x00,0x03,0x00,0x4c,0xff,0xa2,0x04,0x7d,
4391
+0x04,0x85,0x00,0x09,0x00,0x13,0x00,0x2b,0x00,0x81,0x40,0x3f,
4392
+0x2b,0x2a,0x26,0x1f,0x1e,0x1a,0x13,0x0a,0x09,0x00,0x04,0x1d,
4393
+0x20,0x29,0x14,0x04,0x0d,0x03,0x2a,0x26,0x1e,0x0d,0x8f,0x1a,
4394
+0x03,0x8f,0x26,0x8c,0x1a,0x60,0x2c,0x1f,0x2c,0x23,0x2a,0x14,
4395
+0x17,0x10,0x20,0x1e,0x23,0x13,0x0a,0x09,0x00,0x04,0x06,0x29,
4396
+0x17,0x10,0x1d,0x23,0x06,0x2b,0x10,0x1a,0x17,0x44,0x06,0x1a,
4397
+0x23,0x2a,0x2c,0x10,0xf4,0xec,0xf4,0xec,0xc0,0x11,0x12,0x39,
4398
+0x11,0x12,0x39,0x12,0x17,0x39,0x11,0x39,0x39,0x11,0x12,0x39,
4399
+0x39,0x11,0x12,0x39,0x31,0x00,0x10,0xe4,0xfc,0xec,0x10,0xee,
4400
+0xc0,0x10,0xc0,0x11,0x12,0x17,0x39,0x17,0x39,0x11,0x12,0x39,
4401
+0x11,0x12,0x39,0x30,0x40,0x0a,0x20,0x2d,0x6f,0x2d,0x02,0x77,
4402
+0x00,0x78,0x13,0x02,0x5d,0x01,0x5d,0x01,0x2e,0x01,0x23,0x22,
4403
+0x06,0x15,0x14,0x16,0x1f,0x01,0x1e,0x01,0x33,0x32,0x36,0x35,
4404
+0x34,0x26,0x27,0x37,0x1e,0x01,0x15,0x14,0x00,0x23,0x22,0x26,
4405
+0x27,0x07,0x27,0x37,0x2e,0x01,0x35,0x34,0x00,0x33,0x32,0x16,
4406
+0x17,0x37,0x17,0x03,0x48,0x26,0x70,0x4a,0x93,0x98,0x0f,0x0e,
4407
+0x2d,0x28,0x6f,0x4a,0x93,0x98,0x0f,0x0f,0x77,0x3e,0x40,0xfe,
4408
+0xe7,0xe9,0x5e,0xa0,0x43,0x8f,0x4c,0x95,0x3d,0x3e,0x01,0x19,
4409
+0xe9,0x5e,0xa0,0x40,0x8b,0x4c,0x03,0x6f,0x39,0x39,0xea,0xe3,
4410
+0x48,0x76,0x31,0x67,0x3d,0x3b,0xeb,0xe3,0x4c,0x79,0x33,0x8e,
4411
+0x4a,0xc6,0x76,0xfe,0xfe,0xcd,0x35,0x36,0xac,0x3f,0xb2,0x4d,
4412
+0xc1,0x73,0xfe,0x01,0x32,0x33,0x32,0xa6,0x3f,0x00,0x00,0x00,
4413
+0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,0x06,0x64,0x12,0x26,
4414
+0x00,0x58,0x00,0x00,0x10,0x06,0x00,0x43,0x48,0x00,0x00,0x00,
4415
+0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,0x06,0x66,0x12,0x26,
4416
+0x00,0x58,0x00,0x00,0x10,0x06,0x00,0x76,0x48,0x00,0x00,0x00,
4417
+0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,0x06,0x66,0x12,0x26,
4418
+0x00,0x58,0x00,0x00,0x10,0x06,0x02,0x88,0x48,0x00,0x00,0x00,
4419
+0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,0x06,0x21,0x12,0x26,
4420
+0x00,0x58,0x00,0x00,0x10,0x06,0x00,0x6a,0x48,0x00,0x00,0x00,
4421
+0xff,0xff,0xff,0xfa,0xfe,0x39,0x04,0x7f,0x06,0x66,0x12,0x26,
4422
+0x00,0x5c,0x00,0x00,0x10,0x06,0x00,0x76,0x44,0x00,0x00,0x00,
4423
+0x00,0x02,0x00,0x3b,0xfe,0x56,0x04,0xb8,0x06,0x14,0x00,0x0c,
4424
+0x00,0x23,0x00,0x53,0x40,0x2b,0x01,0x00,0x11,0x1d,0x04,0x0a,
4425
+0x94,0x14,0x04,0x94,0x1a,0x22,0x1e,0x7a,0x20,0x0d,0x7a,0x0f,
4426
+0x71,0x1a,0x60,0x20,0x82,0x14,0x8c,0x24,0x1f,0x2c,0x00,0x07,
4427
+0x1a,0x17,0x35,0x21,0x0e,0x2c,0x1d,0x10,0x00,0x27,0x0d,0x30,
4428
+0x24,0x10,0xf4,0xec,0x32,0x32,0xe4,0x32,0xf4,0xec,0x10,0xe4,
4429
+0x31,0x00,0x10,0xec,0xec,0xe4,0xfc,0xec,0x10,0xee,0x32,0x10,
4430
+0xee,0x10,0xee,0x11,0x39,0x39,0x39,0x39,0x30,0xb2,0xb0,0x25,
4431
+0x01,0x01,0x5d,0x01,0x15,0x14,0x16,0x33,0x32,0x36,0x35,0x34,
4432
+0x26,0x23,0x22,0x06,0x03,0x23,0x35,0x21,0x11,0x3e,0x01,0x33,
4433
+0x32,0x12,0x15,0x14,0x02,0x23,0x22,0x26,0x27,0x11,0x33,0x15,
4434
+0x21,0x35,0x33,0x01,0xa4,0x93,0x8c,0x8d,0x91,0x91,0x8d,0x8c,
4435
+0x93,0xb8,0xb1,0x01,0x69,0x36,0xa7,0x7b,0xc4,0xf8,0xf8,0xc4,
4436
+0x7b,0xa7,0x36,0xae,0xfd,0xe9,0xb1,0x02,0x48,0x69,0xc0,0xc9,
4437
+0xe2,0xdc,0xdd,0xe0,0xca,0x02,0xa3,0x6a,0xfd,0x6d,0x64,0x5f,
4438
+0xfe,0xca,0xfa,0xfa,0xfe,0xc9,0x5f,0x64,0xfe,0x1b,0x6b,0x6b,
4439
+0xff,0xff,0xff,0xfa,0xfe,0x39,0x04,0x7f,0x06,0x21,0x12,0x26,
4440
+0x00,0x5c,0x00,0x00,0x10,0x06,0x00,0x6a,0x44,0x00,0x00,0x00,
4441
+0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,0x07,0x31,0x10,0x27,
4442
+0x00,0x71,0x00,0xdf,0x01,0x3b,0x12,0x06,0x00,0x24,0x00,0x00,
4443
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x8b,0x05,0xf6,0x10,0x26,
4444
+0x00,0x71,0x23,0x00,0x12,0x06,0x00,0x44,0x00,0x00,0x00,0x00,
4445
+0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,0x07,0x69,0x10,0x27,
4446
+0x02,0x96,0x00,0xec,0x01,0x21,0x12,0x06,0x00,0x24,0x00,0x00,
4447
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x8b,0x06,0x2d,0x10,0x26,
4448
+0x02,0x96,0x53,0xe5,0x12,0x06,0x00,0x44,0x00,0x00,0x00,0x00,
4449
+0xff,0xff,0xff,0xf4,0xfe,0x77,0x05,0xdb,0x05,0xd5,0x10,0x27,
4450
+0x02,0x99,0x01,0xf4,0x00,0x00,0x12,0x06,0x00,0x24,0x00,0x00,
4451
+0xff,0xff,0x00,0x66,0xfe,0x77,0x04,0x8b,0x04,0x44,0x10,0x27,
4452
+0x02,0x99,0x01,0x62,0x00,0x00,0x12,0x06,0x00,0x44,0x00,0x00,
4453
+0xff,0xff,0x00,0x73,0xff,0xe3,0x05,0xa4,0x07,0x6b,0x12,0x26,
4454
+0x00,0x26,0x00,0x00,0x10,0x07,0x0d,0x79,0x05,0x35,0x01,0x75,
4455
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x1d,0x06,0x66,0x12,0x26,
4456
+0x00,0x46,0x00,0x00,0x10,0x06,0x00,0x76,0x5e,0x00,0x00,0x00,
4457
+0xff,0xff,0x00,0x73,0xff,0xe3,0x05,0xa4,0x07,0x6b,0x10,0x27,
4458
+0x0d,0x7c,0x05,0x3d,0x01,0x75,0x12,0x06,0x00,0x26,0x00,0x00,
4459
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x1d,0x06,0x66,0x10,0x26,
4460
+0x02,0x88,0x68,0x00,0x12,0x06,0x00,0x46,0x00,0x00,0x00,0x00,
4461
+0xff,0xff,0x00,0x73,0xff,0xe3,0x05,0xa4,0x07,0x5e,0x10,0x27,
4462
+0x0d,0x80,0x05,0x3d,0x01,0x75,0x12,0x06,0x00,0x26,0x00,0x00,
4463
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x1d,0x06,0x21,0x10,0x26,
4464
+0x02,0x97,0x68,0x00,0x12,0x06,0x00,0x46,0x00,0x00,0x00,0x00,
4465
+0xff,0xff,0x00,0x73,0xff,0xe3,0x05,0xa4,0x07,0x6b,0x12,0x26,
4466
+0x00,0x26,0x00,0x00,0x10,0x07,0x0d,0x7d,0x05,0x35,0x01,0x75,
4467
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x1d,0x06,0x66,0x12,0x26,
4468
+0x00,0x46,0x00,0x00,0x10,0x06,0x02,0x89,0x5e,0x00,0x00,0x00,
4469
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0xf4,0x07,0x6b,0x12,0x26,
4470
+0x00,0x27,0x00,0x00,0x10,0x07,0x0d,0x7d,0x04,0xe7,0x01,0x75,
4471
+0xff,0xff,0x00,0x66,0xff,0xe3,0x05,0xe8,0x06,0x14,0x12,0x26,
4472
+0x00,0x47,0x00,0x00,0x10,0x07,0x0d,0x77,0x07,0x5a,0xff,0xac,
4473
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0xfe,0x05,0xd5,0x10,0x06,
4474
+0x00,0x92,0x00,0x00,0x00,0x02,0x00,0x66,0xff,0xe3,0x04,0xe3,
4475
+0x06,0x14,0x00,0x1c,0x00,0x29,0x00,0x64,0x40,0x32,0x1e,0x04,
4476
+0x10,0x1d,0x03,0x21,0x00,0x19,0x13,0x7a,0x1b,0x11,0x21,0x94,
4477
+0x0d,0x27,0x94,0x07,0x15,0x7a,0x17,0x71,0x00,0x7a,0x07,0x60,
4478
+0x0d,0x8c,0x02,0x12,0x24,0x16,0x2c,0x1d,0x14,0x10,0x03,0x03,
4479
+0x27,0x1a,0x01,0x2c,0x18,0x00,0x35,0x24,0x1a,0x0a,0x2a,0x2a,
4480
+0x10,0xf4,0xec,0xf4,0x3c,0xe4,0x32,0xfc,0x17,0x3c,0xe4,0x11,
4481
+0x39,0x31,0x00,0x2f,0xec,0xe4,0xec,0xfc,0xec,0x10,0xee,0x10,
4482
+0xee,0xd5,0x3c,0xee,0x32,0x11,0x12,0x17,0x39,0x39,0x30,0x40,
4483
+0x09,0x00,0x2b,0x10,0x2b,0x7f,0x2b,0xb0,0x2b,0x04,0x01,0x5d,
4484
+0x25,0x33,0x15,0x21,0x35,0x0e,0x01,0x23,0x22,0x02,0x35,0x34,
4485
+0x12,0x33,0x32,0x16,0x17,0x11,0x21,0x35,0x21,0x35,0x23,0x35,
4486
+0x21,0x15,0x33,0x15,0x23,0x03,0x35,0x34,0x26,0x23,0x22,0x06,
4487
+0x15,0x14,0x16,0x33,0x32,0x36,0x04,0x33,0xb0,0xfe,0x98,0x36,
4488
+0xa7,0x7b,0xc4,0xf9,0xf8,0xc5,0x7b,0xa7,0x36,0xfe,0xba,0x01,
4489
+0x46,0xae,0x01,0x66,0xb0,0xb0,0xb8,0x93,0x8c,0x8e,0x91,0x91,
4490
+0x8e,0x8c,0x93,0x6a,0x6a,0xa6,0x64,0x5f,0x01,0x37,0xfa,0xfa,
4491
+0x01,0x36,0x5f,0x64,0x01,0x4a,0x6a,0x75,0x6a,0xdf,0x6a,0xfd,
4492
+0x14,0x69,0xbf,0xca,0xe0,0xdd,0xdc,0xe2,0xc9,0x00,0x00,0x00,
4493
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,0x07,0x32,0x10,0x27,
4494
+0x00,0x71,0x00,0xca,0x01,0x3c,0x12,0x06,0x00,0x28,0x00,0x00,
4495
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x56,0x05,0xf7,0x10,0x26,
4496
+0x00,0x71,0x5e,0x01,0x12,0x06,0x00,0x48,0x00,0x00,0x00,0x00,
4497
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,0x07,0x6d,0x10,0x27,
4498
+0x0d,0x7f,0x04,0xec,0x01,0x75,0x12,0x06,0x00,0x28,0x00,0x00,
4499
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x56,0x06,0x48,0x10,0x26,
4500
+0x02,0x96,0x5e,0x00,0x12,0x06,0x00,0x48,0x00,0x00,0x00,0x00,
4501
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,0x07,0x5e,0x10,0x27,
4502
+0x0d,0x80,0x04,0xec,0x01,0x75,0x12,0x06,0x00,0x28,0x00,0x00,
4503
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x56,0x06,0x21,0x10,0x26,
4504
+0x02,0x97,0x5e,0x00,0x12,0x06,0x00,0x48,0x00,0x00,0x00,0x00,
4505
+0xff,0xff,0x00,0x71,0xfe,0x77,0x05,0x33,0x05,0xd5,0x10,0x27,
4506
+0x02,0x99,0x02,0x71,0x00,0x00,0x12,0x06,0x00,0x28,0x00,0x00,
4507
+0xff,0xff,0x00,0x66,0xfe,0x77,0x04,0x56,0x04,0x44,0x10,0x27,
4508
+0x02,0x99,0x01,0x05,0x00,0x00,0x12,0x06,0x00,0x48,0x00,0x00,
4509
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,0x07,0x6b,0x12,0x26,
4510
+0x00,0x28,0x00,0x00,0x10,0x07,0x0d,0x7d,0x05,0x35,0x01,0x75,
4511
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x56,0x06,0x66,0x12,0x26,
4512
+0x00,0x48,0x00,0x00,0x10,0x06,0x02,0x89,0x5e,0x00,0x00,0x00,
4513
+0xff,0xff,0x00,0x73,0xff,0xe3,0x05,0xc3,0x07,0x6b,0x10,0x27,
4514
+0x0d,0x7c,0x05,0x58,0x01,0x75,0x12,0x06,0x00,0x2a,0x00,0x00,
4515
+0xff,0xff,0x00,0x66,0xfe,0x39,0x04,0xe3,0x06,0x66,0x10,0x26,
4516
+0x02,0x88,0x5c,0x00,0x12,0x06,0x00,0x4a,0x00,0x00,0x00,0x00,
4517
+0xff,0xff,0x00,0x73,0xff,0xe3,0x05,0xc3,0x07,0x6d,0x12,0x26,
4518
+0x00,0x2a,0x00,0x00,0x10,0x07,0x0d,0x7f,0x05,0x33,0x01,0x75,
4519
+0xff,0xff,0x00,0x66,0xfe,0x39,0x04,0xe3,0x06,0x48,0x12,0x26,
4520
+0x00,0x4a,0x00,0x00,0x10,0x07,0x02,0x96,0x00,0x8f,0x00,0x00,
4521
+0xff,0xff,0x00,0x73,0xff,0xe3,0x05,0xc3,0x07,0x5e,0x10,0x27,
4522
+0x0d,0x80,0x05,0x58,0x01,0x75,0x12,0x06,0x00,0x2a,0x00,0x00,
4523
+0xff,0xff,0x00,0x66,0xfe,0x39,0x04,0xe3,0x06,0x21,0x10,0x26,
4524
+0x02,0x97,0x5c,0x00,0x12,0x06,0x00,0x4a,0x00,0x00,0x00,0x00,
4525
+0xff,0xff,0x00,0x73,0xfe,0x36,0x05,0xc3,0x05,0xf0,0x10,0x27,
4526
+0x02,0xd3,0x05,0x8b,0x00,0x02,0x12,0x06,0x00,0x2a,0x00,0x00,
4527
+0xff,0xff,0x00,0x66,0xfe,0x39,0x04,0xe3,0x05,0xee,0x10,0x27,
4528
+0x02,0xbf,0x04,0x5c,0x00,0xc8,0x12,0x06,0x00,0x4a,0x00,0x00,
4529
+0xff,0xff,0x00,0x71,0x00,0x00,0x06,0x89,0x07,0x6b,0x10,0x27,
4530
+0x0d,0x7c,0x05,0x7d,0x01,0x75,0x12,0x06,0x00,0x2b,0x00,0x00,
4531
+0xff,0xff,0xff,0xc3,0x00,0x00,0x04,0xee,0x07,0x6b,0x10,0x27,
4532
+0x0d,0x7c,0x03,0x02,0x01,0x75,0x12,0x06,0x00,0x4b,0x00,0x00,
4533
+0x00,0x02,0x00,0x71,0x00,0x00,0x06,0x89,0x05,0xd5,0x00,0x03,
4534
+0x00,0x27,0x00,0x81,0x40,0x1e,0x20,0x14,0x24,0x01,0x26,0x0e,
4535
+0x24,0x10,0x1b,0x1e,0x16,0x24,0x12,0x22,0x01,0x11,0x1d,0x18,
4536
+0x08,0x0c,0x04,0x24,0x03,0x24,0x10,0x11,0x0a,0x06,0x21,0x28,
4537
+0x10,0xf4,0x3c,0xec,0x32,0x32,0xe4,0x32,0x32,0xd4,0x3c,0xec,
4538
+0x32,0x32,0xe4,0x32,0x32,0x10,0xe4,0x32,0x10,0xe4,0x32,0x31,
4539
+0x40,0x16,0x23,0x80,0x00,0x17,0x13,0x0f,0x03,0x0b,0x6f,0x15,
4540
+0x0d,0x62,0x25,0x21,0x1d,0x03,0x05,0x6f,0x00,0x7e,0x1f,0x04,
4541
+0x00,0x2f,0x3c,0xee,0xee,0x17,0x32,0xf6,0x3c,0xee,0x17,0x32,
4542
+0x10,0xee,0x40,0x0a,0x19,0x0a,0x11,0x80,0x07,0x1c,0x02,0x02,
4543
+0x0b,0x01,0x11,0x12,0x39,0x2f,0x3c,0x3c,0xec,0x32,0x32,0x30,
4544
+0x40,0x09,0x20,0x29,0x70,0x29,0x80,0x29,0xbf,0x29,0x04,0x01,
4545
+0x5d,0x01,0x21,0x35,0x21,0x01,0x35,0x33,0x11,0x23,0x35,0x33,
4546
+0x35,0x23,0x35,0x21,0x15,0x23,0x15,0x21,0x35,0x23,0x35,0x21,
4547
+0x15,0x23,0x15,0x33,0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x33,
4548
+0x11,0x21,0x11,0x33,0x15,0x01,0xfa,0x03,0x06,0xfc,0xfa,0xfe,
4549
+0x77,0xbe,0xbe,0xbe,0xbe,0x02,0x47,0xbe,0x03,0x06,0xbe,0x02,
4550
+0x47,0xbe,0xbe,0xbe,0xbe,0xfd,0xb9,0xbe,0xfc,0xfa,0xbe,0x03,
4551
+0x66,0xc5,0xfb,0xd5,0x6a,0x03,0xc1,0x7a,0xc5,0x6b,0x6b,0xc5,
4552
+0xc5,0x6b,0x6b,0xc5,0x7a,0xfc,0x3f,0x6a,0x6a,0x02,0x82,0xfd,
4553
+0x7e,0x6a,0x00,0x00,0x00,0x01,0x00,0x4a,0x00,0x00,0x04,0xee,
4554
+0x06,0x14,0x00,0x25,0x00,0x8a,0x40,0x1a,0x19,0x3d,0x1b,0x0c,
4555
+0x24,0x2c,0x0a,0x17,0x2c,0x1b,0x27,0x15,0x3a,0x05,0x08,0x2c,
4556
+0x22,0x0e,0x0a,0x27,0x00,0x2c,0x07,0x02,0x30,0x26,0x10,0xf4,
4557
+0x3c,0xe4,0xec,0x32,0x32,0xe4,0x32,0xf4,0xec,0xe4,0x10,0xe4,
4558
+0xcc,0x10,0xe4,0x31,0x40,0x16,0x22,0x1c,0x0f,0x15,0x01,0x1f,
4559
+0x85,0x12,0x07,0x7a,0x09,0x71,0x23,0x1a,0x16,0x03,0x01,0x7a,
4560
+0x12,0x8c,0x18,0x00,0x00,0x2f,0x3c,0xee,0xee,0x17,0x32,0xfc,
4561
+0xee,0x10,0xee,0x11,0x39,0x39,0x39,0x39,0x40,0x08,0x06,0x0b,
4562
+0x7a,0x03,0x0e,0x0e,0x12,0x09,0x11,0x12,0x39,0x2f,0x3c,0xec,
4563
+0x32,0x30,0xb6,0x2f,0x27,0x7f,0x27,0xb0,0x27,0x03,0x01,0x5d,
4564
+0x01,0x4b,0xb0,0x15,0x54,0x58,0xbd,0x00,0x26,0xff,0xc0,0x00,
4565
+0x01,0x00,0x26,0x00,0x26,0x00,0x40,0x38,0x11,0x37,0x38,0x59,
4566
+0x33,0x35,0x33,0x11,0x23,0x35,0x33,0x35,0x23,0x35,0x21,0x15,
4567
+0x21,0x15,0x21,0x11,0x3e,0x01,0x33,0x32,0x16,0x15,0x11,0x33,
4568
+0x15,0x21,0x35,0x33,0x11,0x34,0x26,0x23,0x22,0x06,0x15,0x11,
4569
+0x33,0x15,0x54,0xa6,0xb0,0xb0,0xb0,0x01,0x68,0x01,0x3c,0xfe,
4570
+0xc4,0x33,0xa3,0x6c,0xb0,0xa6,0xa4,0xfe,0x04,0x9f,0x5f,0x7a,
4571
+0x80,0x86,0xa0,0x6a,0x04,0x50,0x7a,0x76,0x6a,0xe0,0x7a,0xfe,
4572
+0xb0,0x6c,0x6e,0xca,0xd6,0xfd,0xc6,0x6a,0x6a,0x02,0x00,0xc3,
4573
+0x8f,0xba,0xb2,0xfe,0x1a,0x6a,0x00,0x00,0xff,0xff,0x00,0x4a,
4574
+0x00,0x00,0x02,0xde,0x07,0x5e,0x10,0x27,0x0d,0x7a,0x03,0x94,
4575
+0x01,0x75,0x12,0x06,0x00,0x2c,0x00,0x00,0xff,0xff,0xff,0xfd,
4576
+0x00,0x00,0x02,0x91,0x06,0x37,0x10,0x27,0x02,0x9a,0xff,0x47,
4577
+0x00,0x00,0x12,0x06,0x00,0xf3,0x00,0x00,0xff,0xff,0x00,0x69,
4578
+0x00,0x00,0x02,0xc0,0x07,0x32,0x10,0x27,0x00,0x71,0xff,0x94,
4579
+0x01,0x3c,0x12,0x06,0x00,0x2c,0x00,0x00,0xff,0xff,0xff,0xd3,
4580
+0x00,0x00,0x02,0x60,0x05,0xf6,0x10,0x27,0x00,0x71,0xfe,0xfe,
4581
+0x00,0x00,0x12,0x06,0x00,0xf3,0x00,0x00,0xff,0xff,0x00,0x5d,
4582
+0x00,0x00,0x02,0xcb,0x07,0x6d,0x10,0x27,0x0d,0x7f,0x03,0x94,
4583
+0x01,0x75,0x12,0x06,0x00,0x2c,0x00,0x00,0xff,0xff,0x00,0x0e,
4584
+0x00,0x00,0x02,0x80,0x06,0x48,0x10,0x27,0x02,0x96,0xff,0x47,
4585
+0x00,0x00,0x12,0x06,0x00,0xf3,0x00,0x00,0xff,0xff,0x00,0x71,
4586
+0xfe,0x77,0x02,0xb8,0x05,0xd5,0x12,0x26,0x00,0x2c,0x00,0x00,
4587
+0x10,0x06,0x02,0x99,0xcf,0x00,0x00,0x00,0xff,0xff,0x00,0x4a,
4588
+0xfe,0x77,0x02,0x60,0x05,0xe3,0x12,0x26,0x00,0x4c,0x00,0x00,
4589
+0x10,0x06,0x02,0x99,0x87,0x00,0x00,0x00,0xff,0xff,0x00,0x71,
4590
+0x00,0x00,0x02,0xb8,0x07,0x5e,0x12,0x26,0x00,0x2c,0x00,0x00,
4591
+0x10,0x07,0x0d,0x80,0x03,0x96,0x01,0x75,0x00,0x01,0x00,0x4a,
4592
+0x00,0x00,0x02,0x60,0x04,0x27,0x00,0x09,0x00,0x40,0x40,0x12,
4593
+0x06,0x7a,0x08,0x9c,0x04,0x00,0x7a,0x02,0x01,0x2c,0x00,0x27,
4594
+0x07,0x03,0x2c,0x05,0x30,0x0a,0x10,0xf4,0xe4,0x32,0xfc,0xe4,
4595
+0x31,0x00,0x2f,0xec,0x32,0xfc,0xec,0x30,0xb2,0x8f,0x0b,0x01,
4596
+0x01,0x5d,0x01,0x4b,0xb0,0x15,0x54,0x58,0xbd,0x00,0x0a,0xff,
4597
+0xc0,0x00,0x01,0x00,0x0a,0x00,0x0a,0x00,0x40,0x38,0x11,0x37,
4598
+0x38,0x59,0x25,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,
4599
+0x01,0xb2,0xae,0xfd,0xea,0xb0,0xb0,0x01,0x68,0x6a,0x6a,0x6a,
4600
+0x03,0x52,0x6b,0x00,0xff,0xff,0x00,0x71,0xfe,0x56,0x06,0x0b,
4601
+0x05,0xd5,0x10,0x26,0x00,0x2c,0x00,0x00,0x11,0x07,0x00,0x2d,
4602
+0x03,0x34,0x00,0x00,0x00,0x08,0x40,0x03,0x22,0x21,0x1a,0x10,
4603
+0xec,0x31,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x39,0x03,0xfa,
4604
+0x05,0xe3,0x10,0x26,0x00,0x4c,0x00,0x00,0x11,0x07,0x00,0x4d,
4605
+0x02,0x48,0x00,0x00,0x00,0x07,0x40,0x02,0x36,0x25,0x10,0xcc,
4606
+0x31,0x00,0x00,0x00,0xff,0xff,0xff,0x54,0xfe,0x56,0x02,0xdd,
4607
+0x07,0x6b,0x10,0x27,0x0d,0x7c,0x03,0x9e,0x01,0x75,0x12,0x06,
4608
+0x00,0x2d,0x00,0x00,0xff,0xff,0xff,0x3b,0xfe,0x39,0x02,0x45,
4609
+0x06,0x66,0x10,0x27,0x02,0x88,0xff,0x06,0x00,0x00,0x12,0x06,
4610
+0x01,0xf9,0x00,0x00,0xff,0xff,0x00,0x71,0xfe,0x53,0x06,0x19,
4611
+0x05,0xd5,0x10,0x27,0x02,0xd3,0x05,0x74,0x00,0x1f,0x12,0x06,
4612
+0x00,0x2e,0x00,0x00,0xff,0xff,0x00,0x3b,0xfe,0x53,0x04,0xe7,
4613
+0x06,0x14,0x10,0x27,0x02,0xd3,0x04,0xc6,0x00,0x1f,0x12,0x06,
4614
+0x00,0x4e,0x00,0x00,0x00,0x01,0x00,0x3b,0x00,0x00,0x04,0xe7,
4615
+0x04,0x24,0x00,0x19,0x01,0x7f,0x40,0x58,0x17,0x9f,0x09,0x08,
4616
+0x16,0x9f,0x15,0x16,0x09,0x08,0x0f,0x9f,0x10,0x0f,0x08,0x09,
4617
+0x08,0x0e,0x9f,0x09,0x09,0x08,0x13,0x14,0x02,0x12,0x15,0x3e,
4618
+0x10,0x10,0x0f,0x0f,0x3e,0x0e,0x0f,0x16,0x16,0x15,0x4d,0x16,
4619
+0x0f,0x08,0x03,0x02,0x0d,0x09,0x7a,0x0b,0x04,0x7a,0x06,0x9c,
4620
+0x18,0x14,0x10,0x03,0x02,0x7a,0x0b,0x9c,0x12,0x00,0x01,0x05,
4621
+0x03,0x09,0x15,0x13,0x0f,0x0c,0x0a,0x06,0x11,0x16,0x07,0x12,
4622
+0x11,0x00,0x00,0x2c,0x17,0x07,0x27,0x05,0x2c,0x03,0x30,0x1a,
4623
+0x10,0xf4,0xe4,0xfc,0x3c,0xe4,0x10,0xc0,0xc0,0x12,0x39,0x12,
4624
+0x17,0x39,0x11,0x12,0x39,0x31,0x00,0x2f,0x3c,0xec,0xec,0x17,
4625
+0x32,0xfc,0xec,0x10,0xee,0x32,0x11,0x17,0x39,0x30,0x4b,0x53,
4626
+0x58,0x07,0x10,0x08,0xed,0x07,0x10,0x05,0xed,0x11,0x17,0x39,
4627
+0x07,0x10,0x05,0xed,0x07,0x10,0x08,0xed,0x07,0x08,0xed,0x07,
4628
+0x04,0xed,0x59,0x22,0xb2,0x0f,0x1b,0x01,0x01,0x5d,0x40,0xda,
4629
+0x07,0x08,0x09,0x0f,0x09,0x16,0x08,0x17,0x16,0x08,0x1a,0x0f,
4630
+0x1a,0x16,0x26,0x08,0x29,0x0f,0x29,0x16,0x38,0x0f,0x39,0x16,
4631
+0x39,0x17,0x48,0x0f,0x56,0x08,0x57,0x0f,0x67,0x08,0x67,0x0f,
4632
+0x67,0x16,0x68,0x17,0x77,0x08,0x88,0x16,0x96,0x0f,0xb6,0x08,
4633
+0x18,0x04,0x09,0x07,0x0a,0x07,0x0b,0x05,0x0c,0x05,0x0d,0x06,
4634
+0x0e,0x00,0x0e,0x06,0x0f,0x08,0x13,0x0b,0x14,0x07,0x16,0x12,
4635
+0x09,0x13,0x0a,0x13,0x0b,0x13,0x0c,0x13,0x0d,0x12,0x0e,0x10,
4636
+0x0e,0x15,0x0f,0x1b,0x14,0x18,0x15,0x17,0x16,0x28,0x09,0x28,
4637
+0x0a,0x28,0x0b,0x26,0x0e,0x29,0x0f,0x2d,0x10,0x2a,0x11,0x2a,
4638
+0x12,0x2b,0x14,0x2c,0x15,0x29,0x16,0x2f,0x1b,0x36,0x0c,0x36,
4639
+0x0d,0x36,0x0e,0x39,0x10,0x35,0x13,0x39,0x15,0x3f,0x1b,0x46,
4640
+0x09,0x44,0x0c,0x44,0x0d,0x44,0x0e,0x45,0x13,0x59,0x09,0x58,
4641
+0x0a,0x58,0x0b,0x57,0x0f,0x56,0x11,0x56,0x12,0x56,0x13,0x68,
4642
+0x09,0x66,0x0c,0x66,0x0d,0x67,0x0e,0x65,0x0f,0x67,0x10,0x61,
4643
+0x11,0x61,0x12,0x62,0x13,0x65,0x14,0x66,0x16,0x60,0x1b,0x78,
4644
+0x09,0x78,0x0a,0x78,0x0b,0x7a,0x10,0x78,0x11,0x78,0x12,0x76,
4645
+0x13,0x7a,0x15,0x8b,0x13,0x8b,0x14,0x89,0x15,0x89,0x16,0x8f,
4646
+0x1b,0x96,0x0f,0x96,0x10,0xb9,0x09,0xba,0x0a,0xba,0x0b,0xb8,
4647
+0x16,0x54,0x5d,0x00,0x5d,0x29,0x01,0x35,0x33,0x11,0x23,0x35,
4648
+0x21,0x11,0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x33,0x15,
4649
+0x21,0x35,0x33,0x01,0x07,0x11,0x33,0x02,0x4a,0xfd,0xfc,0xa6,
4650
+0xb1,0x01,0x69,0x01,0xc0,0x99,0x01,0xe1,0xb6,0xfe,0xc4,0x01,
4651
+0x94,0x99,0xfd,0xf4,0x98,0xfe,0xc2,0x91,0xa6,0x6a,0x03,0x4f,
4652
+0x6b,0xfd,0xf9,0x01,0x9c,0x6b,0x6b,0xfe,0xdd,0xfd,0xd4,0x6a,
4653
+0x6a,0x01,0xb3,0x87,0xfe,0xd4,0x00,0x00,0xff,0xff,0x00,0x71,
4654
+0x00,0x00,0x05,0x1f,0x07,0x6d,0x10,0x27,0x0d,0x79,0x03,0x66,
4655
+0x01,0x77,0x12,0x06,0x00,0x2f,0x00,0x00,0xff,0xff,0x00,0x3b,
4656
+0x00,0x00,0x02,0x52,0x07,0x6c,0x10,0x27,0x0d,0x79,0x03,0x03,
4657
+0x01,0x76,0x12,0x06,0x00,0x4f,0x00,0x00,0xff,0xff,0x00,0x71,
4658
+0xfe,0x53,0x05,0x1f,0x05,0xd5,0x10,0x27,0x02,0xd3,0x04,0xf7,
4659
+0x00,0x1f,0x12,0x06,0x00,0x2f,0x00,0x00,0xff,0xff,0x00,0x3b,
4660
+0xfe,0x58,0x02,0x52,0x06,0x14,0x10,0x27,0x02,0xd3,0x03,0x30,
4661
+0x00,0x24,0x12,0x06,0x00,0x4f,0x00,0x00,0xff,0xff,0x00,0x71,
4662
+0x00,0x00,0x05,0x1f,0x05,0xd5,0x10,0x27,0x0d,0x77,0x05,0xd3,
4663
+0xff,0x6e,0x12,0x06,0x00,0x2f,0x00,0x00,0xff,0xff,0x00,0x3b,
4664
+0x00,0x00,0x03,0x58,0x06,0x14,0x10,0x27,0x0d,0x77,0x04,0xca,
4665
+0xff,0xae,0x12,0x06,0x00,0x4f,0x00,0x00,0xff,0xff,0x00,0x71,
4666
+0x00,0x00,0x05,0x1f,0x05,0xd5,0x10,0x27,0x00,0x79,0x03,0x28,
4667
+0x00,0x86,0x12,0x06,0x00,0x2f,0x00,0x00,0xff,0xff,0x00,0x3b,
4668
+0x00,0x00,0x03,0x45,0x06,0x14,0x10,0x27,0x00,0x79,0x01,0x7c,
4669
+0x00,0x7d,0x12,0x06,0x00,0x4f,0x00,0x00,0x00,0x01,0x00,0x56,
4670
+0x00,0x00,0x05,0x29,0x05,0xd5,0x00,0x15,0x00,0x51,0x40,0x2d,
4671
+0x0f,0x0e,0x0d,0x05,0x04,0x03,0x06,0x07,0x13,0x11,0x0b,0x07,
4672
+0x6f,0x09,0x62,0x11,0x80,0x01,0x6f,0x00,0x0f,0x0e,0x12,0x0a,
4673
+0x05,0x16,0x04,0x02,0x00,0x0a,0x24,0x0c,0x12,0x0f,0x14,0x08,
4674
+0x00,0x24,0x10,0x0c,0x11,0x06,0x02,0x21,0x16,0x10,0xf4,0x3c,
4675
+0xec,0x32,0xe4,0x32,0xd4,0xec,0x10,0xe4,0x11,0x12,0x39,0x12,
4676
+0x39,0x11,0x12,0x39,0x39,0x31,0x00,0x2f,0xee,0xee,0xf6,0xee,
4677
+0x32,0x10,0xc4,0x11,0x17,0x39,0x30,0x33,0x35,0x33,0x11,0x07,
4678
+0x27,0x37,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x25,0x17,0x01,
4679
+0x11,0x21,0x35,0x33,0x11,0x7b,0xbe,0x9d,0x46,0xe3,0xbe,0x02,
4680
+0x46,0xbf,0x01,0x33,0x46,0xfe,0x87,0x02,0xac,0x7b,0x6a,0x01,
4681
+0xe0,0x71,0x5c,0xa2,0x02,0x93,0x6b,0x6b,0xfd,0xfc,0xe2,0x5c,
4682
+0xfe,0xed,0xfd,0xa2,0xfa,0xfe,0x8b,0x00,0x00,0x01,0x00,0x2d,
4683
+0x00,0x00,0x02,0x7b,0x06,0x14,0x00,0x11,0x00,0x61,0x40,0x25,
4684
+0x10,0x0f,0x0e,0x08,0x07,0x06,0x06,0x00,0x0a,0x7a,0x0c,0x71,
4685
+0x04,0x00,0x7a,0x02,0x08,0x12,0x07,0x05,0x03,0x0f,0x00,0x10,
4686
+0x01,0x01,0x2c,0x0d,0x00,0x27,0x0b,0x03,0x2c,0x09,0x05,0x30,
4687
+0x12,0x10,0xf4,0x3c,0xe4,0x32,0xfc,0x3c,0xe4,0x10,0xc0,0x12,
4688
+0x39,0x11,0x12,0x39,0x12,0x39,0x31,0x00,0x2f,0xec,0x32,0xfc,
4689
+0xec,0x11,0x17,0x39,0x30,0xb2,0x50,0x13,0x01,0x01,0x5d,0x01,
4690
+0x4b,0xb0,0x15,0x54,0x58,0xbd,0x00,0x12,0xff,0xc0,0x00,0x01,
4691
+0x00,0x12,0x00,0x12,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x25,
4692
+0x33,0x15,0x21,0x35,0x33,0x11,0x07,0x27,0x37,0x11,0x23,0x35,
4693
+0x21,0x11,0x37,0x17,0x07,0x01,0xac,0xb0,0xfd,0xea,0xae,0x8a,
4694
+0x3d,0xc7,0xae,0x01,0x66,0x93,0x3c,0xcf,0x6a,0x6a,0x6a,0x02,
4695
+0x3e,0x60,0x56,0x8d,0x02,0x7f,0x6a,0xfd,0x98,0x62,0x56,0x8d,
4696
+0xff,0xff,0x00,0x64,0xff,0xe3,0x06,0xa6,0x07,0x6c,0x10,0x27,
4697
+0x0d,0x79,0x05,0x6a,0x01,0x76,0x12,0x06,0x00,0x31,0x00,0x00,
4698
+0xff,0xff,0x00,0x4a,0x00,0x00,0x04,0xee,0x06,0x36,0x10,0x26,
4699
+0x00,0x76,0x4b,0xd0,0x12,0x06,0x00,0x51,0x00,0x00,0x00,0x00,
4700
+0xff,0xff,0x00,0x64,0xfe,0x45,0x06,0xa6,0x05,0xd5,0x10,0x27,
4701
+0x02,0xd3,0x05,0x86,0x00,0x11,0x12,0x06,0x00,0x31,0x00,0x00,
4702
+0xff,0xff,0x00,0x4a,0xfe,0x53,0x04,0xee,0x04,0x44,0x10,0x27,
4703
+0x02,0xd3,0x04,0xd0,0x00,0x1f,0x12,0x06,0x00,0x51,0x00,0x00,
4704
+0xff,0xff,0x00,0x64,0xff,0xe3,0x06,0xa6,0x07,0x75,0x12,0x26,
4705
+0x00,0x31,0x00,0x00,0x10,0x07,0x0d,0x7d,0x05,0x67,0x01,0x7f,
4706
+0xff,0xff,0x00,0x4a,0x00,0x00,0x04,0xee,0x06,0x66,0x12,0x26,
4707
+0x00,0x51,0x00,0x00,0x10,0x06,0x02,0x89,0x5e,0x00,0x00,0x00,
4708
+0xff,0xff,0x00,0x71,0x00,0x00,0x06,0x7d,0x05,0xf0,0x10,0x26,
4709
+0x02,0x7e,0xa0,0x00,0x10,0x07,0x00,0x51,0x01,0x8f,0x00,0x00,
4710
+0x00,0x01,0x00,0x60,0xfe,0x56,0x05,0xa4,0x05,0xf2,0x00,0x27,
4711
+0x00,0x4d,0x40,0x0f,0x16,0x0f,0x14,0x1e,0x11,0x0d,0x00,0x05,
4712
+0x24,0x25,0x07,0x11,0x03,0x21,0x28,0x10,0xf4,0xec,0x32,0xec,
4713
+0x32,0xd4,0xec,0xd4,0xec,0x31,0x00,0x40,0x1c,0x1e,0x0d,0x24,
4714
+0x07,0x04,0x25,0x21,0x15,0x14,0x64,0x19,0x6e,0x11,0x82,0x00,
4715
+0x03,0x6f,0x06,0x62,0x00,0x21,0x85,0x0a,0x69,0x25,0x01,0x6f,
4716
+0x00,0x2f,0xec,0x32,0xf4,0xec,0x10,0xf4,0xec,0x10,0xf4,0xee,
4717
+0xfe,0xc4,0x11,0x12,0x00,0x39,0x30,0x33,0x35,0x33,0x11,0x23,
4718
+0x35,0x21,0x15,0x3e,0x01,0x33,0x32,0x12,0x19,0x01,0x14,0x06,
4719
+0x23,0x22,0x26,0x27,0x35,0x33,0x14,0x16,0x33,0x32,0x37,0x36,
4720
+0x35,0x11,0x10,0x26,0x23,0x22,0x02,0x15,0x11,0x33,0x15,0x60,
4721
+0xbf,0xb0,0x01,0x7b,0x4a,0xea,0x9b,0xfd,0xee,0xc6,0xdc,0x47,
4722
+0x93,0x49,0x70,0x5b,0x58,0x75,0x31,0x2f,0x96,0xbe,0xc8,0xd1,
4723
+0xbe,0x6b,0x04,0xff,0x6b,0xc9,0x72,0x74,0xfe,0xdd,0xfe,0xcb,
4724
+0xfc,0x8f,0xf7,0xdc,0x22,0x22,0xeb,0x63,0x61,0x4b,0x49,0xdc,
4725
+0x03,0x40,0x01,0x24,0xda,0xfe,0xff,0xf7,0xfc,0xf4,0x6b,0x00,
4726
+0x00,0x01,0x00,0x4a,0xfe,0x39,0x04,0x4a,0x04,0x44,0x00,0x28,
4727
+0x00,0x6c,0x40,0x11,0x27,0x2c,0x06,0x1e,0x27,0x0e,0x3a,0x04,
4728
+0x2c,0x25,0x06,0x27,0x00,0x2c,0x02,0x30,0x29,0x10,0xf4,0xe4,
4729
+0xec,0x32,0xe4,0xf4,0xec,0x10,0xe4,0xb2,0x16,0x36,0x0e,0x10,
4730
+0xe4,0x31,0x40,0x14,0x07,0x0e,0x1f,0x25,0x04,0x03,0x01,0x22,
4731
+0x85,0x0a,0x03,0x7a,0x05,0x9c,0x27,0x01,0x7a,0x0a,0x8c,0x00,
4732
+0x00,0x2f,0xee,0xee,0x32,0xfc,0xee,0x10,0xee,0x11,0x12,0x17,
4733
+0x39,0xb6,0x16,0x15,0x1a,0x8f,0x12,0x9d,0x00,0x10,0xfc,0xec,
4734
+0xd4,0xc4,0x30,0xb4,0x73,0x18,0x73,0x17,0x02,0x00,0x5d,0x40,
4735
+0x0b,0x2f,0x2a,0x60,0x2a,0x80,0x2a,0xb0,0x2a,0xc0,0x2a,0x05,
4736
+0x01,0x5d,0x33,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x3e,0x01,
4737
+0x33,0x32,0x17,0x16,0x15,0x11,0x14,0x06,0x23,0x22,0x26,0x27,
4738
+0x35,0x33,0x1e,0x01,0x33,0x32,0x37,0x36,0x35,0x11,0x34,0x26,
4739
+0x23,0x22,0x06,0x15,0x11,0x33,0x15,0x54,0xa6,0xb0,0x01,0x68,
4740
+0x33,0xa3,0x6c,0xae,0x55,0x53,0xc3,0xab,0x48,0x83,0x3e,0x5f,
4741
+0x07,0x55,0x52,0x5b,0x2b,0x2b,0x60,0x79,0x80,0x86,0xa0,0x6a,
4742
+0x03,0x52,0x6b,0xbd,0x6c,0x6e,0x65,0x63,0xd8,0xfc,0xf4,0xa4,
4743
+0xbb,0x21,0x21,0xdb,0x60,0x5a,0x3e,0x3c,0x82,0x02,0xd2,0xc3,
4744
+0x91,0xbb,0xb3,0xfe,0x1a,0x6a,0x00,0x00,0xff,0xff,0x00,0x73,
4745
+0xff,0xe3,0x06,0x1d,0x07,0x32,0x10,0x27,0x00,0x71,0x01,0x48,
4746
+0x01,0x3c,0x12,0x06,0x00,0x32,0x00,0x00,0xff,0xff,0x00,0x66,
4747
+0xff,0xe3,0x04,0x6a,0x05,0xf6,0x10,0x26,0x00,0x71,0x68,0x00,
4748
+0x12,0x06,0x00,0x52,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x73,
4749
+0xff,0xe3,0x06,0x1d,0x07,0x6d,0x10,0x27,0x0d,0x7f,0x05,0x48,
4750
+0x01,0x75,0x12,0x06,0x00,0x32,0x00,0x00,0xff,0xff,0x00,0x66,
4751
+0xff,0xe3,0x04,0x6a,0x06,0x48,0x10,0x26,0x02,0x96,0x68,0x00,
4752
+0x12,0x06,0x00,0x52,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x73,
4753
+0xff,0xe3,0x06,0x1d,0x07,0x6b,0x10,0x27,0x0d,0x81,0x05,0x48,
4754
+0x01,0x75,0x12,0x06,0x00,0x32,0x00,0x00,0xff,0xff,0x00,0x66,
4755
+0xff,0xe3,0x04,0x6a,0x06,0x66,0x10,0x27,0x02,0x9b,0x00,0xa8,
4756
+0x00,0x00,0x12,0x06,0x00,0x52,0x00,0x00,0x00,0x02,0x00,0x77,
4757
+0x00,0x00,0x08,0x75,0x05,0xd5,0x00,0x08,0x00,0x21,0x00,0x5e,
4758
+0x40,0x30,0x20,0x1e,0x1a,0x81,0x1c,0x80,0x18,0x81,0x16,0x12,
4759
+0x14,0x80,0x01,0x6f,0x10,0x62,0x00,0x6f,0x1e,0x80,0x16,0x7e,
4760
+0x09,0x08,0x02,0x10,0x0a,0x05,0x1d,0x15,0x11,0x00,0x1b,0x17,
4761
+0x0f,0x19,0x13,0x0f,0x11,0x1f,0x0f,0x00,0x09,0x05,0x0e,0x0d,
4762
+0x25,0x22,0x10,0xf4,0xec,0xd4,0xc4,0xec,0xd4,0xec,0xd4,0xec,
4763
+0x32,0x10,0xee,0x32,0x12,0x39,0x39,0x39,0x39,0x31,0x00,0x2f,
4764
+0xee,0xee,0xee,0xf6,0xee,0xfe,0xc4,0x10,0xe4,0xfe,0xe4,0x10,
4765
+0xc4,0x30,0xb4,0x20,0x23,0x30,0x23,0x02,0x01,0x5d,0x25,0x11,
4766
+0x23,0x20,0x00,0x11,0x10,0x00,0x21,0x05,0x21,0x20,0x00,0x11,
4767
+0x10,0x00,0x29,0x01,0x11,0x23,0x35,0x21,0x11,0x21,0x35,0x33,
4768
+0x11,0x23,0x35,0x21,0x11,0x21,0x35,0x33,0x04,0x71,0xbb,0xfe,
4769
+0xdc,0xfe,0xca,0x01,0x37,0x01,0x23,0x04,0xbf,0xfb,0x33,0xfe,
4770
+0x7f,0xfe,0x50,0x01,0xaf,0x01,0x82,0x04,0xbc,0x7b,0xfd,0x52,
4771
+0x01,0xec,0x79,0x79,0xfe,0x14,0x02,0xbf,0x7b,0x6a,0x05,0x00,
4772
+0xfe,0xb8,0xfe,0xcc,0xfe,0xc9,0xfe,0xb3,0x6a,0x01,0x8c,0x01,
4773
+0x62,0x01,0x5f,0x01,0x88,0xfe,0xb4,0xd1,0xfe,0x0c,0xbb,0xfe,
4774
+0x10,0xbb,0xfd,0x8f,0xd1,0x00,0x00,0x00,0x00,0x03,0x00,0x66,
4775
+0xff,0xe3,0x07,0x83,0x04,0x44,0x00,0x0b,0x00,0x2c,0x00,0x33,
4776
+0x00,0x6b,0x40,0x2f,0x0e,0x14,0x0c,0x27,0x2d,0x06,0x1b,0x14,
4777
+0x00,0x2d,0x7a,0x0c,0x14,0x99,0x11,0x00,0x8f,0x18,0x0c,0x9b,
4778
+0x30,0x06,0x8f,0x2a,0x24,0x8c,0x1e,0x18,0x60,0x34,0x1b,0x27,
4779
+0x33,0x0d,0x1a,0x03,0x14,0x15,0x2d,0x1a,0x03,0x0c,0x09,0x1a,
4780
+0x21,0x2a,0x34,0x10,0xf4,0xec,0xd4,0xc4,0xec,0xd4,0xcc,0x10,
4781
+0xee,0x32,0x39,0x39,0x31,0x00,0x10,0xe4,0x32,0xfc,0x3c,0xec,
4782
+0x32,0xec,0x10,0xfe,0x3c,0xe4,0x10,0xee,0x11,0x12,0x39,0x11,
4783
+0x12,0x39,0x11,0x12,0x39,0x30,0x40,0x0e,0x50,0x35,0x01,0xcf,
4784
+0x0c,0xcf,0x0d,0xcf,0x0e,0xcf,0x2d,0xcf,0x33,0x05,0x5d,0x01,
4785
+0x5d,0x25,0x32,0x36,0x35,0x34,0x26,0x23,0x22,0x06,0x15,0x14,
4786
+0x16,0x01,0x21,0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x33,0x0e,
4787
+0x01,0x23,0x22,0x26,0x27,0x0e,0x01,0x23,0x22,0x00,0x35,0x34,
4788
+0x00,0x33,0x32,0x16,0x17,0x3e,0x01,0x33,0x32,0x00,0x07,0x2e,
4789
+0x01,0x23,0x22,0x06,0x07,0x02,0x68,0x94,0x97,0x97,0x94,0x94,
4790
+0x97,0x98,0x05,0xae,0xfc,0xe7,0xa2,0x9e,0x79,0x9b,0x1f,0x94,
4791
+0x2c,0xed,0xc0,0x82,0xcf,0x49,0x45,0xcf,0x82,0xe8,0xfe,0xe6,
4792
+0x01,0x19,0xe9,0x84,0xce,0x46,0x49,0xc8,0x7a,0xf2,0x01,0x01,
4793
+0xd4,0x06,0x91,0x88,0x7f,0x92,0x10,0x46,0xea,0xe4,0xe4,0xe9,
4794
+0xe9,0xe4,0xe4,0xea,0x01,0xba,0x08,0xd7,0xdb,0x7f,0x7d,0xaf,
4795
+0xb0,0x62,0x61,0x60,0x63,0x01,0x33,0xfe,0xfe,0x01,0x32,0x63,
4796
+0x60,0x60,0x63,0xfe,0xd7,0xb1,0xba,0xbd,0xbe,0xb9,0x00,0x00,
4797
+0xff,0xff,0x00,0x71,0x00,0x00,0x06,0x37,0x07,0x6c,0x10,0x27,
4798
+0x0d,0x79,0x05,0x01,0x01,0x76,0x12,0x06,0x00,0x35,0x00,0x00,
4799
+0xff,0xff,0x00,0x4a,0x00,0x00,0x03,0xd3,0x06,0x36,0x10,0x26,
4800
+0x00,0x76,0x4b,0xd0,0x12,0x06,0x00,0x55,0x00,0x00,0x00,0x00,
4801
+0xff,0xff,0x00,0x71,0xfe,0x53,0x06,0x37,0x05,0xd5,0x10,0x27,
4802
+0x02,0xd3,0x05,0x83,0x00,0x1f,0x12,0x06,0x00,0x35,0x00,0x00,
4803
+0xff,0xff,0x00,0x4a,0xfe,0x53,0x03,0xd3,0x04,0x44,0x10,0x27,
4804
+0x02,0xd3,0x03,0x34,0x00,0x1f,0x12,0x06,0x00,0x55,0x00,0x00,
4805
+0xff,0xff,0x00,0x71,0x00,0x00,0x06,0x37,0x07,0x6b,0x12,0x26,
4806
+0x00,0x35,0x00,0x00,0x10,0x07,0x0d,0x7d,0x04,0xdb,0x01,0x75,
4807
+0xff,0xff,0x00,0x4a,0x00,0x00,0x03,0xd3,0x06,0x66,0x12,0x26,
4808
+0x00,0x55,0x00,0x00,0x10,0x06,0x02,0x89,0x34,0x00,0x00,0x00,
4809
+0xff,0xff,0x00,0xac,0xff,0xe3,0x04,0xe5,0x07,0x6c,0x10,0x27,
4810
+0x0d,0x79,0x05,0x01,0x01,0x76,0x12,0x06,0x00,0x36,0x00,0x00,
4811
+0xff,0xff,0x00,0x73,0xff,0xe3,0x03,0xb2,0x06,0x36,0x10,0x26,
4812
+0x00,0x76,0x4b,0xd0,0x12,0x06,0x00,0x56,0x00,0x00,0x00,0x00,
4813
+0xff,0xff,0x00,0xac,0xff,0xe3,0x04,0xe5,0x07,0x6b,0x10,0x27,
4814
+0x0d,0x7c,0x04,0xbe,0x01,0x75,0x12,0x06,0x00,0x36,0x00,0x00,
4815
+0xff,0xff,0x00,0x73,0xff,0xe3,0x03,0xb2,0x06,0x66,0x10,0x26,
4816
+0x02,0x88,0x0e,0x00,0x12,0x06,0x00,0x56,0x00,0x00,0x00,0x00,
4817
+0xff,0xff,0x00,0xac,0xfe,0x75,0x04,0xe5,0x05,0xf0,0x12,0x26,
4818
+0x00,0x36,0x00,0x00,0x10,0x07,0x00,0x7a,0x00,0xbe,0x00,0x00,
4819
+0xff,0xff,0x00,0x73,0xfe,0x75,0x03,0xb2,0x04,0x44,0x12,0x26,
4820
+0x00,0x56,0x00,0x00,0x10,0x06,0x00,0x7a,0x0e,0x00,0x00,0x00,
4821
+0xff,0xff,0x00,0xac,0xff,0xe3,0x04,0xe5,0x07,0x6b,0x12,0x26,
4822
+0x00,0x36,0x00,0x00,0x10,0x07,0x0d,0x7d,0x04,0xbe,0x01,0x75,
4823
+0xff,0xff,0x00,0x73,0xff,0xe3,0x03,0xb2,0x06,0x66,0x12,0x26,
4824
+0x00,0x56,0x00,0x00,0x10,0x06,0x02,0x89,0x0e,0x00,0x00,0x00,
4825
+0xff,0xff,0x00,0x14,0xfe,0x75,0x05,0x42,0x05,0xd5,0x10,0x27,
4826
+0x00,0x7a,0x00,0x93,0x00,0x00,0x12,0x06,0x00,0x37,0x00,0x00,
4827
+0xff,0xff,0x00,0x3b,0xfe,0x75,0x03,0x27,0x05,0x71,0x10,0x26,
4828
+0x00,0x7a,0xe2,0x00,0x12,0x06,0x00,0x57,0x00,0x00,0x00,0x00,
4829
+0xff,0xff,0x00,0x14,0x00,0x00,0x05,0x42,0x07,0x6b,0x12,0x26,
4830
+0x00,0x37,0x00,0x00,0x10,0x07,0x0d,0x7d,0x04,0xa5,0x01,0x75,
4831
+0xff,0xff,0x00,0x3b,0xff,0xe3,0x03,0x27,0x06,0x4d,0x12,0x26,
4832
+0x00,0x57,0x00,0x00,0x10,0x07,0x0d,0x77,0x04,0x8c,0xff,0xe7,
4833
+0x00,0x01,0x00,0x14,0x00,0x00,0x05,0x42,0x05,0xd5,0x00,0x17,
4834
+0x00,0x90,0x40,0x14,0x0e,0x0f,0x0c,0x08,0x0f,0x0a,0x16,0x24,
4835
+0x0c,0x12,0x15,0x10,0x11,0x00,0x24,0x0a,0x05,0x07,0x02,0x18,
4836
+0x10,0xd4,0x3c,0xc4,0xc4,0xe4,0xfc,0x3c,0xc4,0xc4,0xe4,0x10,
4837
+0xee,0x10,0xee,0x31,0x40,0x11,0x11,0x06,0x6f,0x14,0x03,0x00,
4838
+0x0d,0x09,0x0f,0x07,0x6f,0x0b,0x62,0x15,0x01,0x6f,0x00,0x00,
4839
+0x2f,0xee,0x32,0xf4,0xfe,0x3c,0xc4,0x32,0x10,0xd4,0x3c,0xec,
4840
+0x32,0x30,0x01,0x4b,0xb0,0x09,0x54,0x58,0xbd,0x00,0x18,0x00,
4841
+0x40,0x00,0x01,0x00,0x18,0x00,0x18,0xff,0xc0,0x38,0x11,0x37,
4842
+0x38,0x59,0xb2,0x1f,0x19,0x01,0x5d,0x01,0x4b,0xb0,0x0b,0x54,
4843
+0x4b,0xb0,0x0c,0x54,0x5b,0x58,0xbd,0x00,0x18,0xff,0xc0,0x00,
4844
+0x01,0x00,0x18,0x00,0x18,0x00,0x40,0x38,0x11,0x37,0x38,0x59,
4845
+0x40,0x0b,0x2f,0x19,0x60,0x19,0x8f,0x19,0xa0,0x19,0xbf,0x19,
4846
+0x05,0x5d,0x21,0x35,0x33,0x11,0x21,0x35,0x21,0x11,0x21,0x15,
4847
+0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x11,0x21,0x15,0x21,0x11,
4848
+0x33,0x15,0x01,0x87,0xbf,0xfe,0xb0,0x01,0x50,0xfe,0x49,0x7b,
4849
+0x05,0x2e,0x7b,0xfe,0x49,0x01,0x50,0xfe,0xb0,0xbf,0x6a,0x02,
4850
+0x65,0x7d,0x02,0x12,0xe9,0x01,0x60,0xfe,0xa0,0xe9,0xfd,0xee,
4851
+0x7d,0xfd,0x9b,0x6a,0x00,0x01,0x00,0x3b,0xff,0xe3,0x03,0x27,
4852
+0x05,0x71,0x00,0x1f,0x00,0x00,0x13,0x11,0x23,0x35,0x33,0x35,
4853
+0x23,0x35,0x33,0x11,0x33,0x11,0x21,0x15,0x21,0x15,0x21,0x15,
4854
+0x21,0x11,0x14,0x16,0x33,0x32,0x36,0x37,0x33,0x0e,0x01,0x23,
4855
+0x22,0x26,0xdd,0xa2,0xa2,0xa2,0xa2,0xb9,0x01,0x5a,0xfe,0xa6,
4856
+0x01,0x5a,0xfe,0xa6,0x34,0x46,0x48,0x42,0x02,0x8b,0x08,0x8e,
4857
+0x91,0x9f,0x84,0x01,0x19,0x01,0x4f,0x6b,0xe9,0x6b,0x01,0x4a,
4858
+0xfe,0xb6,0x6b,0xe9,0x6b,0xfe,0xb1,0x87,0x4c,0x55,0x5f,0x91,
4859
+0x86,0x8d,0x00,0x00,0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,
4860
+0x07,0x5e,0x10,0x27,0x0d,0x7a,0x05,0x87,0x01,0x75,0x12,0x06,
4861
+0x00,0x38,0x00,0x00,0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,
4862
+0x06,0x37,0x10,0x26,0x02,0x9a,0x48,0x00,0x12,0x06,0x00,0x58,
4863
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,
4864
+0x07,0x32,0x10,0x27,0x00,0x71,0x01,0x61,0x01,0x3c,0x12,0x06,
4865
+0x00,0x38,0x00,0x00,0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,
4866
+0x05,0xf6,0x10,0x26,0x00,0x71,0x78,0x00,0x12,0x06,0x00,0x58,
4867
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,
4868
+0x07,0x6d,0x10,0x27,0x0d,0x7f,0x05,0x87,0x01,0x75,0x12,0x06,
4869
+0x00,0x38,0x00,0x00,0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,
4870
+0x06,0x48,0x10,0x26,0x02,0x96,0x48,0x00,0x12,0x06,0x00,0x58,
4871
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,
4872
+0x07,0x6d,0x12,0x26,0x0d,0xae,0x00,0x00,0x10,0x07,0x02,0x98,
4873
+0x01,0x6d,0x00,0x67,0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,
4874
+0x06,0xf2,0x12,0x26,0x00,0x58,0x00,0x00,0x10,0x06,0x02,0x98,
4875
+0x55,0xec,0x00,0x00,0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,
4876
+0x07,0x6b,0x10,0x27,0x0d,0x81,0x05,0x87,0x01,0x75,0x12,0x06,
4877
+0x00,0x38,0x00,0x00,0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,
4878
+0x06,0x66,0x10,0x26,0x02,0x9b,0x72,0x00,0x12,0x06,0x00,0x58,
4879
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x60,0xfe,0x67,0x06,0x62,
4880
+0x05,0xd5,0x12,0x26,0x00,0x38,0x00,0x00,0x10,0x07,0x02,0x99,
4881
+0x01,0x68,0xff,0xf0,0xff,0xff,0x00,0x37,0xfe,0x77,0x05,0x29,
4882
+0x04,0x27,0x12,0x26,0x00,0x58,0x00,0x00,0x10,0x07,0x02,0x99,
4883
+0x02,0x68,0x00,0x00,0xff,0xff,0x00,0x0a,0x00,0x00,0x08,0x33,
4884
+0x07,0x72,0x10,0x27,0x0d,0x7c,0x06,0x1e,0x01,0x7c,0x12,0x06,
4885
+0x00,0x3a,0x00,0x00,0xff,0xff,0x00,0x21,0x00,0x00,0x06,0xbe,
4886
+0x06,0x66,0x10,0x27,0x02,0x88,0x01,0x70,0x00,0x00,0x12,0x06,
4887
+0x00,0x5a,0x00,0x00,0xff,0xff,0xff,0xe9,0x00,0x00,0x05,0x5a,
4888
+0x07,0x72,0x10,0x27,0x0d,0x7c,0x04,0xa1,0x01,0x7c,0x12,0x06,
4889
+0x00,0x3c,0x00,0x00,0xff,0xff,0xff,0xfa,0xfe,0x39,0x04,0x7f,
4890
+0x06,0x66,0x10,0x26,0x02,0x88,0x3c,0x00,0x12,0x06,0x00,0x5c,
4891
+0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xe9,0x00,0x00,0x05,0x5a,
4892
+0x07,0x5c,0x12,0x26,0x00,0x3c,0x00,0x00,0x10,0x07,0x0d,0x78,
4893
+0x04,0xa4,0x01,0x75,0xff,0xff,0x00,0x5c,0x00,0x00,0x05,0x3f,
4894
+0x07,0x6c,0x10,0x27,0x0d,0x79,0x05,0x01,0x01,0x76,0x12,0x06,
4895
+0x00,0x3d,0x00,0x00,0xff,0xff,0x00,0x52,0x00,0x00,0x03,0xec,
4896
+0x06,0x36,0x10,0x26,0x00,0x76,0x4b,0xd0,0x12,0x06,0x00,0x5d,
4897
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x5c,0x00,0x00,0x05,0x3f,
4898
+0x07,0x5e,0x10,0x27,0x0d,0x80,0x04,0xd2,0x01,0x75,0x12,0x06,
4899
+0x00,0x3d,0x00,0x00,0xff,0xff,0x00,0x52,0x00,0x00,0x03,0xec,
4900
+0x05,0xdf,0x10,0x26,0x02,0x97,0x3c,0xbe,0x12,0x06,0x00,0x5d,
4901
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x5c,0x00,0x00,0x05,0x3f,
4902
+0x07,0x6b,0x12,0x26,0x00,0x3d,0x00,0x00,0x10,0x07,0x0d,0x7d,
4903
+0x04,0xc9,0x01,0x75,0xff,0xff,0x00,0x52,0x00,0x00,0x03,0xec,
4904
+0x06,0x66,0x12,0x26,0x00,0x5d,0x00,0x00,0x10,0x06,0x02,0x89,
4905
+0x1d,0x00,0x00,0x00,0x00,0x01,0x00,0x4a,0x00,0x00,0x03,0x71,
4906
+0x06,0x14,0x00,0x19,0x00,0x69,0x40,0x0f,0x12,0x2d,0x11,0x01,
4907
+0x19,0x27,0x11,0x36,0x07,0x03,0x2c,0x09,0x05,0x30,0x1a,0x10,
4908
+0xf4,0x3c,0xe4,0x32,0xe4,0xfc,0xc4,0x10,0xee,0x31,0x40,0x12,
4909
+0x19,0x0a,0x11,0x06,0x7a,0x08,0x11,0x10,0x15,0x8f,0x0d,0x71,
4910
+0x04,0x00,0x7a,0x08,0x9c,0x02,0x00,0x2f,0xee,0xee,0x32,0xfe,
4911
+0xee,0xd6,0xc6,0x10,0xee,0x12,0x39,0x39,0x30,0xb2,0x8f,0x1b,
4912
+0x01,0x01,0x5d,0x01,0x4b,0xb0,0x15,0x54,0x58,0xbd,0x00,0x1a,
4913
+0xff,0xc0,0x00,0x12,0x00,0x1a,0x00,0x1a,0x00,0x40,0x38,0x11,
4914
+0x37,0x38,0x59,0xb7,0x60,0x11,0x60,0x12,0x02,0x3f,0x1b,0x01,
4915
+0x5d,0x00,0x5d,0x25,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,
4916
+0x33,0x35,0x34,0x36,0x33,0x32,0x16,0x17,0x15,0x23,0x2e,0x01,
4917
+0x23,0x22,0x07,0x06,0x15,0x01,0xb2,0xec,0xfd,0xac,0xb0,0xb0,
4918
+0xb0,0xb9,0xb3,0x43,0x86,0x42,0x61,0x01,0x53,0x4f,0x67,0x2a,
4919
+0x2a,0x6a,0x6a,0x6a,0x03,0x52,0x6b,0x85,0xb2,0xb6,0x18,0x19,
4920
+0xca,0x4b,0x4e,0x38,0x3b,0x8f,0x00,0x00,0x00,0x02,0x00,0x3b,
4921
+0xff,0xe3,0x04,0xb8,0x06,0x14,0x00,0x1b,0x00,0x28,0x00,0x00,
4922
+0x37,0x11,0x23,0x35,0x33,0x35,0x23,0x35,0x21,0x15,0x21,0x15,
4923
+0x21,0x11,0x3e,0x01,0x33,0x32,0x12,0x10,0x02,0x23,0x22,0x26,
4924
+0x27,0x15,0x21,0x35,0x01,0x14,0x16,0x33,0x32,0x36,0x35,0x34,
4925
+0x26,0x23,0x22,0x06,0x15,0xec,0xb0,0xb0,0xb0,0x01,0x68,0x01,
4926
+0x3c,0xfe,0xc4,0x36,0xa7,0x7b,0xc4,0xf8,0xf8,0xc4,0x7b,0xa7,
4927
+0x36,0xfe,0x97,0x01,0x69,0x93,0x8c,0x8d,0x91,0x91,0x8d,0x8c,
4928
+0x93,0x6a,0x04,0x50,0x7a,0x76,0x6a,0xe0,0x7a,0xfe,0xc7,0x64,
4929
+0x5f,0xfe,0xca,0xfe,0x0c,0xfe,0xc9,0x5f,0x64,0xa6,0x6a,0x01,
4930
+0x75,0xc0,0xc9,0xe2,0xdc,0xdd,0xe0,0xca,0xbf,0x00,0x00,0x00,
4931
+0x00,0x03,0xff,0x40,0x00,0x00,0x05,0x64,0x05,0xd5,0x00,0x1d,
4932
+0x00,0x28,0x00,0x32,0x00,0x00,0x01,0x22,0x07,0x06,0x15,0x23,
4933
+0x11,0x36,0x37,0x36,0x33,0x21,0x32,0x17,0x16,0x15,0x14,0x07,
4934
+0x06,0x07,0x16,0x17,0x16,0x15,0x14,0x04,0x29,0x01,0x35,0x33,
4935
+0x13,0x33,0x32,0x37,0x36,0x35,0x34,0x27,0x26,0x2b,0x01,0x11,
4936
+0x21,0x32,0x36,0x35,0x34,0x27,0x26,0x23,0x21,0x01,0x2f,0xe3,
4937
+0x44,0x47,0x81,0x66,0xb4,0x73,0x62,0x02,0x23,0xe0,0x74,0x73,
4938
+0x4f,0x50,0x99,0xc0,0x61,0x62,0xfe,0xe8,0xfe,0xd7,0xfd,0x4e,
4939
+0xbe,0xcb,0xfe,0xa4,0x4c,0x4b,0x4b,0x6b,0x85,0xfe,0x01,0x2b,
4940
+0xb4,0xa6,0x53,0x52,0xb5,0xfe,0xd5,0x05,0x6a,0x59,0x5b,0xba,
4941
+0x01,0x58,0x4c,0x24,0x11,0x5d,0x5c,0xb8,0x85,0x4f,0x4f,0x12,
4942
+0x18,0x61,0x62,0xa4,0xde,0xd2,0x6a,0x02,0xf4,0x3f,0x3f,0x88,
4943
+0x9d,0x2b,0x3e,0xfb,0x00,0x9c,0xaa,0xa7,0x4f,0x4e,0x00,0x00,
4944
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x64,0x05,0xd5,0x10,0x06,
4945
+0x03,0x7b,0x00,0x00,0x00,0x02,0x00,0x3b,0xff,0xe3,0x04,0xb8,
4946
+0x06,0x14,0x00,0x10,0x00,0x2b,0x00,0x00,0x01,0x14,0x17,0x16,
4947
+0x33,0x32,0x37,0x36,0x35,0x34,0x27,0x26,0x23,0x22,0x07,0x06,
4948
+0x15,0x01,0x11,0x23,0x35,0x21,0x11,0x36,0x37,0x36,0x33,0x32,
4949
+0x12,0x10,0x07,0x06,0x23,0x22,0x27,0x26,0x27,0x15,0x21,0x35,
4950
+0x33,0x11,0x23,0x35,0x01,0xa4,0x4a,0x49,0x8c,0x8d,0x48,0x49,
4951
+0x49,0x48,0x8d,0x8c,0x49,0x4a,0x02,0x50,0x69,0xfe,0x19,0x36,
4952
+0x54,0x53,0x7b,0xc4,0xf8,0x7c,0x7c,0xc4,0x7b,0x53,0x54,0x36,
4953
+0xfe,0x97,0xb1,0xb1,0x01,0xdf,0xc0,0x65,0x64,0x71,0x71,0xdc,
4954
+0xdd,0x70,0x70,0x65,0x65,0xbf,0x03,0xcc,0xfe,0xf5,0x90,0xfd,
4955
+0xe8,0x64,0x2f,0x30,0xfe,0xca,0xfe,0x0c,0x9c,0x9b,0x2f,0x30,
4956
+0x64,0xa6,0x6a,0x05,0x40,0x6a,0x00,0x00,0x00,0x02,0x00,0x71,
4957
+0x00,0x00,0x05,0x64,0x05,0xd5,0x00,0x08,0x00,0x18,0x00,0x00,
4958
+0x25,0x21,0x32,0x36,0x35,0x34,0x26,0x23,0x21,0x09,0x01,0x11,
4959
+0x33,0x20,0x17,0x16,0x15,0x14,0x04,0x29,0x01,0x35,0x33,0x11,
4960
+0x23,0x01,0xfa,0x01,0x2b,0xb4,0xa6,0xa5,0xb5,0xfe,0xd5,0xfe,
4961
+0x77,0x01,0x89,0xfe,0x01,0x7c,0x8e,0x62,0xfe,0xe8,0xfe,0xd7,
4962
+0xfd,0x4e,0xbe,0xbe,0x6a,0x9c,0xaa,0xa9,0x9b,0x01,0x56,0x01,
4963
+0x8b,0xfd,0x89,0xa8,0x76,0x90,0xde,0xd2,0x6a,0x03,0x76,0x00,
4964
+0x00,0x02,0x00,0x3b,0xff,0xe3,0x04,0xb8,0x06,0x14,0x00,0x0c,
4965
+0x00,0x20,0x00,0x00,0x01,0x14,0x16,0x33,0x32,0x36,0x35,0x34,
4966
+0x26,0x23,0x22,0x06,0x15,0x19,0x01,0x3e,0x01,0x33,0x32,0x12,
4967
+0x10,0x02,0x23,0x22,0x26,0x27,0x15,0x21,0x35,0x33,0x11,0x23,
4968
+0x35,0x01,0xa4,0x93,0x8c,0x8d,0x91,0x91,0x8d,0x8c,0x93,0x36,
4969
+0xa7,0x7b,0xc4,0xf8,0xf8,0xc4,0x7b,0xa7,0x36,0xfe,0x97,0xb1,
4970
+0xb1,0x01,0xdf,0xc0,0xc9,0xe2,0xdc,0xdd,0xe0,0xca,0xbf,0x03,
4971
+0xcc,0xfd,0x6d,0x64,0x5f,0xfe,0xca,0xfe,0x0c,0xfe,0xc9,0x5f,
4972
+0x64,0xa6,0x6a,0x03,0xfb,0x7e,0x00,0x00,0x00,0x01,0x00,0x73,
4973
+0xff,0xe3,0x05,0xa4,0x05,0xf0,0x00,0x1d,0x00,0x34,0x40,0x0d,
4974
+0x1f,0x25,0x17,0x0e,0x09,0x11,0x0f,0x0f,0x26,0x1d,0x27,0x00,
4975
+0x1e,0x10,0xdc,0xec,0xf4,0xec,0xd4,0xec,0xe4,0x31,0x00,0x40,
4976
+0x0f,0x1a,0x6e,0x00,0x03,0x69,0x1e,0x10,0x7f,0x0f,0x64,0x14,
4977
+0x6e,0x0c,0x60,0x1e,0x10,0xf4,0xec,0xfc,0xec,0x10,0xf4,0xc6,
4978
+0xee,0x30,0x13,0x36,0x24,0x33,0x32,0x16,0x17,0x16,0x12,0x15,
4979
+0x10,0x00,0x21,0x22,0x24,0x27,0x11,0x33,0x1e,0x01,0x33,0x32,
4980
+0x12,0x11,0x10,0x02,0x23,0x22,0x06,0x07,0x73,0x42,0x01,0x37,
4981
+0xee,0x92,0xfa,0x61,0x70,0x6d,0xfe,0x6e,0xfe,0xb7,0x7a,0xfe,
4982
+0xec,0x9f,0x71,0x25,0xdf,0xc9,0xef,0xf6,0xf6,0xef,0xa7,0xd8,
4983
+0x30,0x04,0x48,0xd1,0xd7,0x64,0x61,0x70,0xfe,0xe3,0xb4,0xfe,
4984
+0xa4,0xfe,0x55,0x40,0x41,0x01,0x58,0xbc,0xb2,0x01,0x53,0x01,
4985
+0x49,0x01,0x48,0x01,0x53,0x9f,0x9e,0x00,0x00,0x01,0x00,0x73,
4986
+0xff,0xe3,0x07,0x39,0x06,0x5e,0x00,0x36,0x00,0x00,0x01,0x06,
4987
+0x07,0x06,0x23,0x22,0x26,0x27,0x26,0x27,0x26,0x35,0x10,0x37,
4988
+0x36,0x21,0x32,0x17,0x16,0x17,0x34,0x37,0x36,0x33,0x32,0x17,
4989
+0x16,0x17,0x15,0x23,0x34,0x27,0x26,0x23,0x22,0x06,0x1d,0x01,
4990
+0x23,0x26,0x27,0x26,0x23,0x22,0x07,0x06,0x11,0x10,0x17,0x16,
4991
+0x33,0x32,0x37,0x36,0x37,0x05,0xa4,0x42,0x9c,0x9b,0xee,0x92,
4992
+0xfa,0x61,0x70,0x36,0x37,0xc9,0xc9,0x01,0x49,0x7a,0x8a,0x63,
4993
+0x6d,0x51,0x4b,0x72,0x48,0x42,0x41,0x3e,0x5f,0x32,0x2a,0x52,
4994
+0x5b,0x56,0x71,0x25,0x6f,0x70,0xc9,0xef,0x7b,0x7b,0x7b,0x7b,
4995
+0xef,0xa7,0x6c,0x6c,0x30,0x01,0x8b,0xd1,0x6c,0x6b,0x64,0x61,
4996
+0x70,0x8e,0x8f,0xb4,0x01,0x5c,0xd5,0xd6,0x20,0x17,0x28,0x57,
4997
+0x3a,0x3c,0x10,0x11,0x21,0xdb,0x60,0x2d,0x2d,0x7a,0x82,0xe8,
4998
+0xbc,0x59,0x59,0xa9,0xaa,0xfe,0xb7,0xfe,0xb8,0xa9,0xaa,0x50,
4999
+0x4f,0x9e,0x00,0x00,0x00,0x01,0x00,0x66,0xff,0xe3,0x05,0xb8,
5000
+0x05,0x1c,0x00,0x31,0x00,0x00,0x01,0x0e,0x01,0x23,0x22,0x27,
5001
+0x26,0x35,0x10,0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x36,0x37,
5002
+0x36,0x33,0x32,0x17,0x16,0x17,0x15,0x23,0x34,0x27,0x26,0x23,
5003
+0x22,0x07,0x06,0x1d,0x01,0x23,0x26,0x27,0x26,0x23,0x22,0x07,
5004
+0x06,0x10,0x17,0x16,0x33,0x32,0x36,0x37,0x04,0x1d,0x27,0xde,
5005
+0xb0,0xe8,0x8d,0x8d,0x8d,0x8d,0xe8,0x65,0x64,0x31,0x32,0x11,
5006
+0x52,0x3c,0x7c,0x48,0x41,0x42,0x3e,0x5f,0x31,0x2b,0x52,0x5b,
5007
+0x2c,0x2a,0x6b,0x15,0x46,0x47,0x83,0x95,0x4c,0x4c,0x4b,0x4c,
5008
+0x96,0x77,0x8e,0x1a,0x01,0x3f,0xaa,0xb2,0x99,0x9a,0xfe,0x00,
5009
+0xff,0x99,0x98,0x18,0x0b,0x12,0x90,0x48,0x35,0x10,0x11,0x21,
5010
+0xdb,0x60,0x2d,0x2d,0x3d,0x3d,0x82,0xe8,0x8c,0x40,0x40,0x73,
5011
+0x74,0xfe,0x34,0x74,0x74,0x7c,0x7d,0x00,0xff,0xff,0x00,0x71,
5012
+0x00,0x00,0x05,0xfe,0x05,0xd5,0x10,0x06,0x00,0x92,0x00,0x00,
5013
+0x00,0x02,0xff,0x40,0x00,0x00,0x05,0xf4,0x05,0xd5,0x00,0x15,
5014
+0x00,0x1e,0x00,0x00,0x01,0x22,0x07,0x06,0x15,0x23,0x11,0x36,
5015
+0x37,0x36,0x33,0x21,0x20,0x17,0x16,0x11,0x10,0x00,0x29,0x01,
5016
+0x35,0x3b,0x02,0x20,0x37,0x36,0x10,0x00,0x21,0x23,0x01,0x2f,
5017
+0xe3,0x44,0x47,0x81,0x8a,0x90,0x5e,0x77,0x01,0x94,0x01,0x82,
5018
+0xd7,0xd8,0xfe,0x50,0xfe,0x7f,0xfd,0xae,0xbe,0xcb,0xba,0x01,
5019
+0x23,0x9b,0x9c,0xfe,0xca,0xfe,0xdc,0xba,0x05,0x6a,0x59,0x5b,
5020
+0xba,0x01,0x58,0x67,0x09,0x11,0xc5,0xc5,0xfe,0xa1,0xfe,0xa0,
5021
+0xfe,0x74,0x6a,0xa6,0xa6,0x02,0x6c,0x01,0x48,0x00,0x00,0x00,
5022
+0x00,0x02,0x00,0x71,0x00,0x00,0x05,0x64,0x05,0xd5,0x00,0x09,
5023
+0x00,0x1d,0x00,0x00,0x25,0x11,0x21,0x22,0x07,0x06,0x15,0x14,
5024
+0x16,0x33,0x01,0x15,0x23,0x11,0x33,0x15,0x21,0x20,0x24,0x35,
5025
+0x34,0x37,0x36,0x21,0x33,0x11,0x21,0x15,0x23,0x11,0x03,0xdb,
5026
+0xfe,0xd5,0xb5,0x53,0x52,0xa6,0xb4,0x02,0xb4,0xbe,0xbe,0xfd,
5027
+0x4e,0xfe,0xd7,0xfe,0xe8,0x62,0x8e,0x01,0x7c,0xfe,0xfd,0x53,
5028
+0x7b,0x6a,0x02,0x8a,0x4e,0x4d,0xa9,0xaa,0x9c,0x05,0x6b,0x6b,
5029
+0xfb,0x00,0x6a,0xd2,0xde,0x90,0x76,0xa8,0x01,0xfc,0xd1,0x01,
5030
+0x4c,0x00,0x00,0x00,0x00,0x02,0x00,0x3b,0xff,0xe3,0x04,0xb8,
5031
+0x06,0x14,0x00,0x10,0x00,0x2b,0x00,0x00,0x01,0x35,0x34,0x27,
5032
+0x26,0x23,0x22,0x07,0x06,0x15,0x14,0x17,0x16,0x33,0x32,0x37,
5033
+0x36,0x01,0x21,0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x06,0x07,
5034
+0x06,0x23,0x22,0x27,0x26,0x10,0x12,0x33,0x32,0x17,0x16,0x17,
5035
+0x11,0x21,0x15,0x23,0x03,0x4f,0x49,0x4a,0x8c,0x8d,0x49,0x48,
5036
+0x48,0x49,0x8d,0x8c,0x4a,0x49,0xfd,0xb0,0x03,0xb9,0xb1,0xb1,
5037
+0xfe,0x97,0x36,0x53,0x54,0x7b,0xc4,0x7c,0x7c,0xf8,0xc4,0x7b,
5038
+0x54,0x53,0x36,0xfe,0x19,0x69,0x01,0xdf,0x69,0xbf,0x65,0x65,
5039
+0x70,0x70,0xdd,0xdc,0x71,0x71,0x64,0x65,0x04,0xf5,0x6a,0xfa,
5040
+0xc0,0x6a,0xa6,0x64,0x30,0x2f,0x9b,0x9c,0x01,0xf4,0x01,0x36,
5041
+0x30,0x2f,0x64,0x02,0x18,0x90,0x00,0x00,0x00,0x02,0x00,0x66,
5042
+0xfe,0x08,0x04,0x6a,0x04,0x44,0x00,0x26,0x00,0x32,0x00,0x00,
5043
+0x25,0x16,0x17,0x16,0x15,0x14,0x07,0x06,0x23,0x22,0x27,0x26,
5044
+0x27,0x35,0x37,0x16,0x17,0x16,0x32,0x37,0x36,0x27,0x34,0x27,
5045
+0x26,0x23,0x22,0x27,0x26,0x10,0x37,0x36,0x33,0x32,0x17,0x16,
5046
+0x10,0x07,0x06,0x01,0x22,0x07,0x06,0x10,0x17,0x16,0x20,0x37,
5047
+0x36,0x10,0x26,0x03,0x62,0x42,0x21,0x26,0x62,0x62,0xc4,0x36,
5048
+0x68,0x68,0x70,0x6c,0x0c,0x48,0x48,0xbc,0x45,0x49,0x03,0x25,
5049
+0x4d,0x62,0xe9,0x8d,0x8c,0x8c,0x8d,0xe9,0xe8,0x8d,0x8d,0x8c,
5050
+0x3f,0xfe,0xc9,0x94,0x4c,0x4b,0x4b,0x4c,0x01,0x28,0x4c,0x4b,
5051
+0x98,0x1b,0x19,0x31,0x38,0x89,0x81,0x44,0x43,0x10,0x11,0x1f,
5052
+0xc5,0x19,0x59,0x2e,0x2d,0x31,0x34,0x42,0x5f,0x20,0x4b,0x99,
5053
+0x99,0x01,0xfc,0x99,0x9a,0x9a,0x99,0xfe,0x04,0x99,0x43,0x03,
5054
+0xa8,0x75,0x75,0xfe,0x38,0x75,0x74,0x74,0x75,0x01,0xc8,0xea,
5055
+0x00,0x01,0x00,0x71,0x00,0x00,0x05,0x33,0x05,0xd5,0x00,0x17,
5056
+0x00,0x00,0x29,0x01,0x11,0x33,0x15,0x21,0x11,0x21,0x15,0x23,
5057
+0x11,0x33,0x15,0x21,0x11,0x21,0x15,0x23,0x11,0x21,0x15,0x23,
5058
+0x11,0x33,0x05,0x33,0xfb,0x3e,0x7b,0x02,0xbe,0xfe,0x17,0x7b,
5059
+0x7b,0x01,0xe9,0xfd,0x52,0x7b,0x04,0xb2,0xbe,0xbe,0x01,0x4c,
5060
+0xd1,0x02,0x71,0xbb,0x01,0xf0,0xbb,0x01,0xf4,0xd1,0x01,0x4c,
5061
+0x6b,0xfb,0x00,0x00,0x00,0x02,0x00,0x73,0xff,0xe3,0x06,0x1d,
5062
+0x05,0xf0,0x00,0x21,0x00,0x2a,0x00,0x00,0x01,0x22,0x07,0x06,
5063
+0x07,0x23,0x36,0x37,0x36,0x33,0x20,0x00,0x11,0x14,0x07,0x06,
5064
+0x07,0x06,0x07,0x06,0x23,0x22,0x27,0x26,0x27,0x26,0x27,0x26,
5065
+0x3d,0x01,0x21,0x10,0x27,0x26,0x13,0x21,0x10,0x17,0x16,0x33,
5066
+0x32,0x37,0x36,0x03,0x53,0xb2,0x6c,0x6c,0x30,0xb8,0x42,0x9b,
5067
+0x9c,0xee,0x01,0x45,0x01,0x90,0x37,0x37,0x70,0x63,0x7d,0x7e,
5068
+0x99,0x98,0x80,0x7f,0x61,0x70,0x36,0x37,0x04,0xc2,0x7b,0x7d,
5069
+0xf9,0xfc,0x23,0x7c,0x7d,0xf6,0xf5,0x7d,0x7c,0x05,0x85,0x4f,
5070
+0x50,0x9e,0xd1,0x6b,0x6c,0xfe,0x56,0xfe,0xa3,0xb3,0x90,0x8e,
5071
+0x70,0x62,0x32,0x31,0x32,0x32,0x61,0x70,0x8e,0x8e,0xb5,0x47,
5072
+0x01,0x17,0x95,0xa9,0xfd,0x31,0xfe,0xdc,0x9c,0xa8,0xa8,0x9c,
5073
+0x00,0x01,0x00,0x7d,0xff,0xe3,0x04,0x8d,0x05,0xf0,0x00,0x28,
5074
+0x00,0x48,0x40,0x14,0x0b,0x0d,0x21,0x0e,0x04,0x08,0x02,0x0f,
5075
+0x00,0x17,0x27,0x18,0x08,0x06,0x24,0x11,0x06,0x1e,0x25,0x29,
5076
+0x10,0xfc,0xec,0xd4,0xec,0xd4,0xec,0xd4,0xee,0x11,0x17,0x39,
5077
+0x31,0x00,0x40,0x14,0x21,0x0e,0x65,0x0c,0x18,0x14,0x65,0x0c,
5078
+0x1b,0x02,0x74,0x00,0x65,0x05,0x65,0x27,0x69,0x1b,0x60,0x29,
5079
+0x10,0xe4,0xf4,0xec,0xfc,0xec,0x10,0xc6,0xee,0xcc,0x10,0xee,
5080
+0x39,0x30,0x01,0x11,0x23,0x2e,0x01,0x23,0x22,0x06,0x15,0x14,
5081
+0x16,0x3b,0x01,0x15,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,
5082
+0x36,0x37,0x33,0x0e,0x01,0x23,0x22,0x24,0x35,0x34,0x36,0x37,
5083
+0x2e,0x01,0x35,0x34,0x36,0x21,0x32,0x04,0x7b,0x70,0x0d,0x95,
5084
+0xaa,0xaa,0x90,0xad,0xda,0x32,0x5f,0xdb,0xb4,0xb1,0x89,0x88,
5085
+0xbc,0x07,0xb8,0x26,0xf1,0xf0,0xf0,0xfe,0xe7,0xcb,0xb8,0x9c,
5086
+0xaa,0xf6,0x01,0x0d,0xcf,0x05,0x96,0xfe,0xf9,0x7e,0x80,0x8b,
5087
+0x8a,0x8b,0x8f,0x6a,0xb3,0xa5,0xa5,0xb1,0x8a,0x39,0x69,0xbd,
5088
+0xdf,0xd1,0xab,0xd7,0x1a,0x20,0xb5,0x87,0xa8,0xbd,0x00,0x00,
5089
+0x00,0x01,0xff,0x35,0xfe,0x56,0x05,0x37,0x05,0xd5,0x00,0x1e,
5090
+0x00,0x00,0x13,0x22,0x27,0x35,0x33,0x14,0x33,0x32,0x37,0x36,
5091
+0x27,0x11,0x23,0x35,0x21,0x11,0x23,0x35,0x21,0x11,0x21,0x35,
5092
+0x33,0x11,0x23,0x35,0x21,0x11,0x10,0x07,0x06,0x58,0x91,0x92,
5093
+0x72,0xb3,0x77,0x2f,0x30,0x01,0xbe,0x04,0xc6,0x7b,0xfd,0x3e,
5094
+0x01,0xfe,0x7b,0x7b,0xfe,0x02,0xa6,0x5d,0xfe,0x56,0x44,0xeb,
5095
+0xc4,0x4b,0x4d,0xd8,0x05,0x39,0x6b,0xfe,0xb4,0xd1,0xfe,0x0c,
5096
+0xbb,0xfe,0x10,0xbb,0xfd,0x3d,0xfe,0xc7,0x63,0x37,0x00,0x00,
5097
+0x00,0x01,0xff,0x3b,0xfe,0x85,0x03,0x71,0x06,0x14,0x00,0x2f,
5098
+0x00,0x00,0x01,0x23,0x34,0x27,0x26,0x27,0x26,0x23,0x22,0x07,
5099
+0x06,0x1d,0x01,0x21,0x15,0x21,0x11,0x14,0x07,0x06,0x23,0x22,
5100
+0x26,0x27,0x35,0x33,0x14,0x17,0x16,0x17,0x16,0x33,0x32,0x37,
5101
+0x36,0x35,0x11,0x23,0x35,0x33,0x35,0x34,0x37,0x36,0x33,0x32,
5102
+0x16,0x17,0x03,0x71,0x61,0x04,0x09,0x1d,0x2a,0x4f,0x67,0x2a,
5103
+0x2a,0x01,0x29,0xfe,0xd7,0x5c,0x5d,0xb3,0x43,0x86,0x42,0x61,
5104
+0x04,0x09,0x1d,0x2a,0x4f,0x67,0x2a,0x2a,0xb0,0xb0,0x5c,0x5d,
5105
+0xb3,0x43,0x86,0x42,0x05,0x19,0x15,0x13,0x2e,0x1c,0x27,0x38,
5106
+0x39,0x91,0x89,0x6b,0xfc,0x31,0xb2,0x5b,0x5b,0x18,0x19,0xca,
5107
+0x15,0x13,0x2e,0x1c,0x27,0x39,0x38,0x95,0x03,0xcf,0x6b,0x85,
5108
+0xb2,0x5b,0x5b,0x18,0x19,0x00,0x00,0x00,0x00,0x01,0x00,0x73,
5109
+0xff,0xe3,0x07,0x4d,0x06,0x5e,0x00,0x30,0x00,0x00,0x01,0x22,
5110
+0x07,0x06,0x1d,0x01,0x23,0x35,0x02,0x27,0x26,0x23,0x20,0x02,
5111
+0x11,0x10,0x05,0x16,0x33,0x32,0x37,0x11,0x21,0x35,0x21,0x11,
5112
+0x04,0x21,0x20,0x27,0x26,0x11,0x10,0x37,0x36,0x21,0x32,0x17,
5113
+0x36,0x37,0x36,0x33,0x32,0x17,0x15,0x23,0x34,0x27,0x26,0x06,
5114
+0x40,0x7d,0x24,0x10,0x71,0x34,0xd7,0x51,0x6a,0xfe,0xfe,0xfe,
5115
+0x01,0x4c,0x53,0x65,0xe2,0xba,0xfe,0xe7,0x01,0xe4,0xfe,0xf6,
5116
+0xfe,0xa3,0xfe,0xae,0xcc,0xcb,0xcc,0xcc,0x01,0x59,0xd4,0xf9,
5117
+0x19,0x3d,0x40,0x7d,0x8d,0x7c,0x5f,0x6e,0x1c,0x05,0xfb,0x76,
5118
+0x36,0x50,0xe8,0x05,0x01,0x0b,0x44,0x1a,0xfe,0xb4,0xfe,0xb0,
5119
+0xfd,0xee,0x6e,0x1b,0x70,0x01,0x81,0x6b,0xfd,0xd3,0x9a,0xd3,
5120
+0xd4,0x01,0x5f,0x01,0x62,0xd3,0xd2,0x54,0x4d,0x39,0x3c,0x42,
5121
+0xdb,0x93,0x1e,0x09,0x00,0x02,0x00,0x12,0xff,0x44,0x05,0x64,
5122
+0x05,0xd5,0x00,0x15,0x00,0x1d,0x00,0x00,0x09,0x01,0x23,0x35,
5123
+0x21,0x15,0x23,0x09,0x01,0x23,0x35,0x21,0x15,0x23,0x01,0x00,
5124
+0x11,0x10,0x21,0x20,0x35,0x34,0x01,0x00,0x15,0x14,0x21,0x32,
5125
+0x35,0x34,0x02,0x66,0xfe,0x4c,0xa0,0x02,0x50,0xb0,0x01,0x40,
5126
+0x01,0x49,0xc0,0x01,0xe9,0xa8,0xfe,0x75,0x01,0x6c,0xfe,0x3c,
5127
+0xfe,0x41,0x01,0x8e,0xfe,0xf9,0x01,0x38,0xdf,0x02,0xdd,0x02,
5128
+0x8d,0x6b,0x6b,0xfe,0x1f,0x01,0xe1,0x6b,0x6b,0xfd,0xc1,0xfe,
5129
+0x2d,0xfe,0xf9,0xfe,0xf3,0xf9,0xe6,0x01,0x59,0xfe,0x72,0xb6,
5130
+0x8a,0x6c,0xf2,0x00,0x00,0x01,0x00,0x4a,0xff,0xf9,0x07,0x10,
5131
+0x06,0x14,0x00,0x39,0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,
5132
+0x21,0x11,0x36,0x37,0x36,0x33,0x32,0x17,0x16,0x15,0x11,0x14,
5133
+0x17,0x16,0x17,0x32,0x37,0x36,0x35,0x34,0x27,0x26,0x27,0x35,
5134
+0x33,0x16,0x17,0x16,0x15,0x14,0x07,0x06,0x07,0x06,0x07,0x06,
5135
+0x23,0x22,0x27,0x26,0x35,0x11,0x34,0x27,0x26,0x23,0x22,0x06,
5136
+0x15,0x11,0x33,0x15,0x54,0xa6,0xb0,0x01,0x68,0x33,0x51,0x52,
5137
+0x6c,0xb2,0x51,0x53,0x2a,0x2b,0x5c,0x7d,0x70,0x5b,0x3d,0x3d,
5138
+0x76,0x70,0x9a,0x59,0x5a,0x2a,0x2b,0x51,0x48,0x5e,0x5f,0x6a,
5139
+0xa4,0x69,0x5d,0x2f,0x30,0x7a,0x80,0x86,0xa0,0x6a,0x05,0x40,
5140
+0x6a,0xfd,0x56,0x6c,0x37,0x37,0x65,0x67,0xd4,0xfe,0xbb,0x83,
5141
+0x3c,0x3c,0x01,0x82,0x6b,0xbe,0x9a,0x67,0x66,0x2e,0x3b,0x40,
5142
+0x81,0x82,0x9d,0x6f,0x60,0x62,0x4a,0x43,0x23,0x24,0x65,0x53,
5143
+0xae,0x01,0x0b,0xc3,0x47,0x48,0xba,0xb2,0xfe,0x1a,0x6a,0x00,
5144
+0x00,0x01,0x00,0x71,0x00,0x00,0x02,0xb8,0x05,0xd5,0x00,0x11,
5145
+0x00,0x00,0x01,0x14,0x17,0x16,0x3b,0x01,0x15,0x23,0x22,0x27,
5146
+0x26,0x35,0x11,0x23,0x35,0x21,0x15,0x23,0x01,0xfa,0x2a,0x2c,
5147
+0x5b,0x0d,0x0d,0xc9,0x3e,0x75,0xbe,0x02,0x47,0xbe,0x01,0x5f,
5148
+0x83,0x3c,0x3d,0x63,0x36,0x65,0xc4,0x04,0x0b,0x6b,0x6b,0x00,
5149
+0x00,0x01,0x00,0x67,0x00,0x00,0x02,0xc0,0x05,0xd5,0x00,0x13,
5150
+0x00,0x00,0x25,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x33,
5151
+0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x15,0x23,0x01,0xfa,
5152
+0xbe,0xfd,0xb9,0xbe,0xc8,0xc8,0xbe,0x02,0x47,0xbe,0xc6,0xc6,
5153
+0x6a,0x6a,0x6a,0x02,0x65,0x7d,0x02,0x1e,0x6b,0x6b,0xfd,0xe2,
5154
+0x7d,0x00,0x00,0x00,0x00,0x01,0x00,0x71,0x00,0x00,0x06,0x92,
5155
+0x05,0xed,0x00,0x21,0x00,0x00,0x01,0x36,0x33,0x32,0x17,0x16,
5156
+0x17,0x15,0x23,0x34,0x27,0x26,0x27,0x22,0x07,0x09,0x01,0x33,
5157
+0x15,0x21,0x01,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,
5158
+0x21,0x15,0x23,0x11,0x04,0x7d,0x95,0x7c,0x43,0x41,0x47,0x39,
5159
+0x5f,0x31,0x25,0x3d,0x57,0x4b,0xfd,0xa4,0x02,0xcd,0xaa,0xfe,
5160
+0xa5,0xfd,0x3c,0xbe,0xfd,0xb9,0xbe,0xbe,0x02,0x47,0xbe,0x05,
5161
+0x6a,0x83,0x11,0x12,0x1f,0xdb,0x60,0x2d,0x26,0x05,0x3c,0xfd,
5162
+0xeb,0xfd,0x33,0x6a,0x02,0xc5,0xfd,0xa5,0x6a,0x6a,0x05,0x00,
5163
+0x6b,0x6b,0xfd,0xcb,0x00,0x01,0x00,0x46,0x00,0x00,0x04,0xe7,
5164
+0x06,0x14,0x00,0x28,0x00,0x00,0x09,0x01,0x23,0x35,0x21,0x15,
5165
+0x23,0x09,0x01,0x33,0x15,0x21,0x35,0x33,0x01,0x07,0x11,0x33,
5166
+0x15,0x21,0x35,0x33,0x11,0x34,0x37,0x36,0x33,0x32,0x17,0x16,
5167
+0x17,0x15,0x23,0x34,0x27,0x26,0x23,0x22,0x07,0x06,0x15,0x01,
5168
+0xa5,0x01,0xbf,0x99,0x01,0xe1,0xb6,0xfe,0xc4,0x01,0x94,0x99,
5169
+0xfd,0xf4,0x98,0xfe,0xc2,0x91,0xa6,0xfd,0xfc,0xa6,0x62,0x61,
5170
+0xab,0x4d,0x3d,0x41,0x3e,0x5f,0x32,0x2a,0x52,0x5b,0x2b,0x2b,
5171
+0x02,0x1f,0x01,0x9d,0x6b,0x6b,0xfe,0xdc,0xfd,0xd2,0x6a,0x6a,
5172
+0x01,0xb5,0x87,0xfe,0xd2,0x6a,0x6a,0x04,0x4b,0xa2,0x5f,0x5e,
5173
+0x10,0x11,0x21,0xdb,0x60,0x2d,0x2d,0x3d,0x3b,0x84,0x00,0x00,
5174
+0x00,0x01,0x00,0x3b,0x00,0x00,0x02,0x52,0x06,0x14,0x00,0x11,
5175
+0x00,0x00,0x13,0x35,0x33,0x11,0x23,0x35,0x21,0x11,0x33,0x15,
5176
+0x23,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x3c,0xb0,0xb1,0x01,
5177
+0x69,0xae,0xae,0xae,0xfd,0xe9,0xb1,0x01,0xd0,0x6a,0x03,0x70,
5178
+0x6a,0xfc,0x26,0x6a,0xfe,0x9a,0x6a,0x6a,0x01,0x66,0x00,0x00,
5179
+0x00,0x01,0x00,0x54,0x00,0x00,0x04,0xd9,0x06,0x1f,0x00,0x27,
5180
+0x00,0x00,0x01,0x26,0x27,0x26,0x23,0x22,0x07,0x06,0x07,0x23,
5181
+0x35,0x36,0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x37,0x17,0x07,
5182
+0x01,0x33,0x15,0x21,0x35,0x33,0x09,0x01,0x33,0x15,0x21,0x35,
5183
+0x33,0x01,0x27,0x05,0x27,0x25,0x02,0x14,0x25,0x22,0x23,0x35,
5184
+0x3c,0x1c,0x1d,0x06,0x5e,0x32,0x31,0x32,0x2f,0x6f,0x3d,0x3d,
5185
+0x32,0x93,0x3c,0xa7,0x01,0xbf,0x77,0xfe,0x71,0x9f,0xfe,0xe5,
5186
+0xfe,0xc5,0xaa,0xfe,0x17,0x79,0x01,0x9d,0x26,0xfe,0xf5,0x3d,
5187
+0x01,0x20,0x05,0x1b,0x5c,0x1e,0x1f,0x1d,0x1e,0x44,0xcb,0x0f,
5188
+0x08,0x08,0x2e,0x2d,0x7c,0x62,0x56,0x73,0xfb,0x8a,0x6b,0x6b,
5189
+0x02,0xde,0xfd,0x22,0x6b,0x6b,0x03,0xd1,0x63,0xbb,0x56,0xcb,
5190
+0x00,0x01,0x00,0x4a,0xff,0xe3,0x07,0x5e,0x05,0xd7,0x00,0x33,
5191
+0x00,0x00,0x25,0x0e,0x01,0x23,0x22,0x27,0x26,0x35,0x11,0x23,
5192
+0x35,0x21,0x15,0x23,0x11,0x14,0x16,0x33,0x32,0x37,0x36,0x35,
5193
+0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x14,0x16,0x33,0x32,0x37,
5194
+0x36,0x35,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x15,0x21,
5195
+0x35,0x0e,0x01,0x23,0x22,0x26,0x03,0x83,0x35,0xa5,0x6e,0xa6,
5196
+0x53,0x52,0xa6,0x01,0xfe,0xa0,0x60,0x6f,0x7b,0x40,0x41,0xa0,
5197
+0x01,0xf8,0xa0,0x60,0x6f,0x7b,0x41,0x40,0xa0,0x01,0xfe,0xa6,
5198
+0xb0,0xfe,0x98,0x33,0x9e,0x64,0x7c,0xa6,0xcf,0x75,0x77,0x67,
5199
+0x67,0xd2,0x03,0xea,0x6a,0x6a,0xfc,0x2b,0xa3,0x8a,0x5d,0x5e,
5200
+0xb1,0x03,0x96,0x6a,0x6a,0xfc,0x24,0x9f,0x87,0x5d,0x5e,0xb1,
5201
+0x03,0x96,0x6a,0x6a,0xfa,0xfc,0x69,0xbd,0x6a,0x70,0x7b,0x00,
5202
+0x00,0x01,0xff,0x33,0xfe,0x56,0x06,0xa6,0x05,0xd5,0x00,0x1e,
5203
+0x00,0x00,0x03,0x35,0x33,0x14,0x17,0x16,0x33,0x32,0x36,0x35,
5204
+0x11,0x23,0x35,0x21,0x01,0x11,0x23,0x35,0x21,0x15,0x23,0x11,
5205
+0x23,0x01,0x11,0x14,0x06,0x23,0x22,0x27,0x26,0xcd,0x72,0x2f,
5206
+0x2c,0x58,0x77,0x5e,0xc9,0x01,0x7f,0x03,0x7f,0xc8,0x02,0x0c,
5207
+0xc9,0x79,0xfc,0x45,0xc6,0xc0,0x14,0x49,0x4a,0xfe,0x9a,0xeb,
5208
+0x63,0x30,0x31,0x96,0xda,0x05,0x39,0x6b,0xfb,0x66,0x04,0x2f,
5209
+0x6b,0x6b,0xfa,0x79,0x04,0xe9,0xfb,0x5d,0xf7,0xdc,0x11,0x11,
5210
+0x00,0x01,0x00,0x4a,0xfe,0x56,0x04,0xee,0x04,0x44,0x00,0x1d,
5211
+0x00,0x71,0x40,0x2f,0x07,0x0d,0x14,0x1a,0x04,0x03,0x01,0x17,
5212
+0x85,0x0a,0x03,0x7a,0x05,0x9c,0x1b,0x12,0x0e,0x03,0x01,0x7a,
5213
+0x0a,0x8c,0x10,0x82,0x00,0x11,0x3d,0x13,0x1c,0x2c,0x06,0x0f,
5214
+0x2c,0x13,0x27,0x0d,0x3a,0x04,0x2c,0x1a,0x06,0x27,0x00,0x2c,
5215
+0x02,0x30,0x1e,0x10,0xf4,0xe4,0xec,0x32,0xe4,0xf4,0xec,0xe4,
5216
+0x10,0xe4,0x10,0xe4,0x31,0x00,0x2f,0xe4,0xee,0xee,0x17,0x32,
5217
+0xfc,0xee,0x10,0xee,0x11,0x12,0x17,0x39,0x30,0xb6,0x2f,0x1f,
5218
+0x7f,0x1f,0xb0,0x1f,0x03,0x01,0x5d,0x01,0x4b,0xb0,0x15,0x54,
5219
+0x58,0xbd,0x00,0x1e,0xff,0xc0,0x00,0x01,0x00,0x1e,0x00,0x1e,
5220
+0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x33,0x35,0x33,0x11,0x23,
5221
+0x35,0x21,0x15,0x3e,0x01,0x33,0x32,0x16,0x15,0x11,0x33,0x15,
5222
+0x21,0x35,0x33,0x11,0x34,0x26,0x23,0x22,0x06,0x15,0x11,0x33,
5223
+0x15,0x54,0xa6,0xb0,0x01,0x68,0x33,0xa3,0x6c,0xb0,0xa6,0xa4,
5224
+0xfe,0x04,0x9f,0x60,0x79,0x80,0x86,0xa0,0x6a,0x03,0x52,0x6b,
5225
+0xbd,0x6c,0x6e,0xca,0xd6,0xfc,0x1c,0x6a,0x6a,0x03,0xaa,0xc3,
5226
+0x91,0xbb,0xb3,0xfe,0x1a,0x6a,0x00,0x00,0x00,0x03,0x00,0x73,
5227
+0xff,0xe3,0x06,0x1d,0x05,0xf0,0x00,0x15,0x00,0x1e,0x00,0x27,
5228
+0x00,0x00,0x05,0x22,0x26,0x27,0x26,0x02,0x10,0x12,0x37,0x3e,
5229
+0x01,0x33,0x20,0x00,0x11,0x14,0x07,0x06,0x07,0x06,0x07,0x06,
5230
+0x27,0x32,0x37,0x36,0x13,0x21,0x12,0x17,0x16,0x01,0x02,0x27,
5231
+0x26,0x23,0x22,0x07,0x06,0x03,0x03,0x48,0x98,0xff,0x61,0x70,
5232
+0x6d,0x6d,0x70,0x62,0xfc,0x9a,0x01,0x45,0x01,0x90,0x37,0x37,
5233
+0x70,0x63,0x7d,0x7e,0x99,0xf5,0x7d,0x73,0x09,0xfc,0x23,0x09,
5234
+0x73,0x7d,0x02,0xe3,0x0c,0x6f,0x7d,0xf5,0xf6,0x7d,0x6f,0x0c,
5235
+0x1d,0x64,0x61,0x70,0x01,0x1c,0x01,0x6a,0x01,0x1d,0x70,0x62,
5236
+0x63,0xfe,0x56,0xfe,0xa3,0xb3,0x90,0x8e,0x70,0x62,0x32,0x31,
5237
+0x6b,0xa8,0x9c,0x01,0x24,0xfe,0xdc,0x9c,0xa8,0x02,0xe2,0x01,
5238
+0x17,0x95,0xa9,0xa9,0x95,0xfe,0xe9,0x00,0xff,0xff,0x00,0x6e,
5239
+0xff,0xe3,0x06,0x50,0x06,0x15,0x12,0x26,0x00,0x32,0xfb,0x00,
5240
+0x10,0x07,0x02,0xc8,0x05,0xf6,0x01,0xd4,0xff,0xff,0x00,0x63,
5241
+0xff,0xe3,0x05,0x2b,0x04,0x44,0x12,0x26,0x00,0x52,0xfd,0x00,
5242
+0x10,0x07,0x02,0xc8,0x04,0xd1,0x00,0x00,0x00,0x02,0x00,0x73,
5243
+0xfe,0xbf,0x08,0x18,0x05,0xf0,0x00,0x2b,0x00,0x37,0x00,0x00,
5244
+0x05,0x22,0x26,0x27,0x26,0x02,0x10,0x12,0x37,0x3e,0x01,0x33,
5245
+0x32,0x17,0x36,0x37,0x36,0x33,0x32,0x16,0x15,0x11,0x33,0x15,
5246
+0x21,0x35,0x33,0x11,0x34,0x26,0x23,0x22,0x07,0x16,0x17,0x16,
5247
+0x11,0x14,0x07,0x06,0x07,0x06,0x07,0x06,0x27,0x32,0x12,0x11,
5248
+0x10,0x02,0x23,0x22,0x02,0x11,0x10,0x12,0x03,0x48,0x98,0xff,
5249
+0x61,0x70,0x6d,0x6d,0x70,0x62,0xfc,0x9a,0xcc,0x9a,0x3d,0x3d,
5250
+0x49,0x47,0xdc,0xc6,0xbe,0xfd,0x8f,0xe8,0x5e,0x77,0x58,0x2c,
5251
+0x10,0x0f,0xc8,0x37,0x37,0x70,0x63,0x7d,0x7e,0x99,0xf5,0xfa,
5252
+0xfa,0xf5,0xf6,0xfa,0xfa,0x1d,0x64,0x61,0x70,0x01,0x1c,0x01,
5253
+0x6a,0x01,0x1d,0x70,0x62,0x63,0x54,0x1a,0x0e,0x11,0xdc,0xf7,
5254
+0xfb,0x28,0x6b,0x6b,0x04,0xd0,0xda,0x96,0x30,0x0f,0x10,0xd5,
5255
+0xfe,0xa3,0xb3,0x90,0x8e,0x70,0x62,0x32,0x31,0x6b,0x01,0x51,
5256
+0x01,0x4a,0x01,0x4b,0x01,0x51,0xfe,0xaf,0xfe,0xb5,0xfe,0xb6,
5257
+0xfe,0xaf,0x00,0x00,0x00,0x02,0x00,0x66,0xfe,0x56,0x06,0x39,
5258
+0x04,0x44,0x00,0x1e,0x00,0x27,0x00,0x00,0x01,0x34,0x37,0x36,
5259
+0x33,0x32,0x16,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x34,
5260
+0x26,0x23,0x22,0x07,0x17,0x16,0x10,0x00,0x23,0x22,0x00,0x10,
5261
+0x00,0x33,0x32,0x03,0x32,0x36,0x10,0x26,0x20,0x06,0x10,0x16,
5262
+0x03,0x65,0x2d,0x41,0x48,0xab,0xc3,0xb0,0xfd,0xea,0xae,0x57,
5263
+0x5b,0x41,0x0c,0x0c,0x8c,0xfe,0xe7,0xe9,0xe8,0xfe,0xe6,0x01,
5264
+0x19,0xe9,0x90,0x90,0x94,0x97,0x97,0xfe,0xd8,0x97,0x98,0x04,
5265
+0x09,0x02,0x0b,0x11,0xbb,0xa4,0xfb,0xf9,0x6b,0x6b,0x04,0x07,
5266
+0x81,0x7b,0x0d,0x0c,0x99,0xfe,0x04,0xfe,0xcd,0x01,0x33,0x01,
5267
+0xfc,0x01,0x32,0xfc,0x02,0xea,0x01,0xc8,0xe9,0xe9,0xfe,0x38,
5268
+0xea,0x00,0x00,0x00,0x00,0x02,0xff,0x40,0x00,0x00,0x05,0x19,
5269
+0x05,0xd5,0x00,0x19,0x00,0x23,0x00,0x00,0x01,0x21,0x32,0x17,
5270
+0x16,0x15,0x14,0x04,0x23,0x21,0x11,0x33,0x15,0x21,0x35,0x33,
5271
+0x11,0x22,0x07,0x06,0x15,0x23,0x11,0x36,0x37,0x36,0x01,0x21,
5272
+0x32,0x37,0x36,0x35,0x34,0x26,0x23,0x21,0x01,0x2f,0x02,0x04,
5273
+0xe0,0x83,0x83,0xfe,0xfa,0xe0,0xfe,0xc7,0xe7,0xfd,0x90,0xbe,
5274
+0xe3,0x44,0x47,0x81,0x62,0xb8,0x73,0x01,0x2d,0x01,0x08,0x95,
5275
+0x4e,0x4e,0x9c,0x95,0xfe,0xf8,0x05,0xd5,0x71,0x72,0xc1,0xc0,
5276
+0xe4,0xfd,0xdd,0x6a,0x6a,0x05,0x00,0x59,0x5b,0xba,0x01,0x58,
5277
+0x49,0x27,0x11,0xfd,0x23,0x50,0x51,0x98,0x99,0xa0,0x00,0x00,
5278
+0x00,0x02,0x00,0x3b,0xfe,0x56,0x04,0xb8,0x05,0xba,0x00,0x10,
5279
+0x00,0x38,0x00,0x00,0x01,0x15,0x14,0x17,0x16,0x33,0x32,0x37,
5280
+0x36,0x35,0x34,0x27,0x26,0x23,0x22,0x07,0x06,0x03,0x34,0x37,
5281
+0x36,0x33,0x32,0x17,0x16,0x17,0x15,0x23,0x34,0x27,0x26,0x23,
5282
+0x22,0x07,0x06,0x1d,0x01,0x36,0x37,0x36,0x33,0x32,0x12,0x10,
5283
+0x07,0x06,0x23,0x22,0x27,0x26,0x27,0x11,0x33,0x15,0x21,0x35,
5284
+0x33,0x01,0xa4,0x4a,0x49,0x8c,0x8d,0x48,0x49,0x49,0x48,0x8d,
5285
+0x8c,0x49,0x4a,0xb9,0x61,0x62,0xab,0x43,0x46,0x42,0x3e,0x5f,
5286
+0x31,0x2b,0x52,0x5b,0x2c,0x2a,0x36,0x54,0x53,0x7b,0xc4,0xf8,
5287
+0x7c,0x7c,0xc4,0x7b,0x53,0x54,0x36,0xae,0xfd,0xe9,0xb0,0x02,
5288
+0x48,0x69,0xc0,0x65,0x64,0x71,0x71,0xdc,0xdd,0x70,0x70,0x65,
5289
+0x65,0x01,0x54,0xa6,0x5c,0x5d,0x11,0x10,0x21,0xdb,0x60,0x2d,
5290
+0x2d,0x3e,0x3c,0x82,0xda,0x64,0x2f,0x30,0xfe,0xca,0xfe,0x0c,
5291
+0x9c,0x9b,0x2f,0x30,0x64,0xfe,0x1b,0x6b,0x6b,0x00,0x00,0x00,
5292
+0x00,0x02,0x00,0x71,0xfe,0xbb,0x06,0x37,0x05,0xd5,0x00,0x21,
5293
+0x00,0x29,0x00,0x00,0x01,0x23,0x35,0x21,0x15,0x23,0x15,0x21,
5294
+0x32,0x16,0x15,0x14,0x06,0x07,0x16,0x17,0x16,0x17,0x13,0x33,
5295
+0x15,0x21,0x03,0x26,0x27,0x26,0x2b,0x01,0x11,0x33,0x15,0x21,
5296
+0x35,0x33,0x13,0x21,0x32,0x36,0x10,0x26,0x23,0x21,0x01,0x2f,
5297
+0xbe,0x02,0x5c,0xd3,0x01,0x6c,0xda,0xed,0xad,0xab,0x46,0x33,
5298
+0x32,0x28,0xd9,0xb6,0xfe,0xa0,0xe9,0x44,0x37,0x38,0x62,0xdf,
5299
+0xd3,0xfd,0xa4,0xbe,0xcb,0x01,0x27,0x97,0x90,0x90,0x97,0xfe,
5300
+0xd9,0x05,0x6a,0x6b,0x6b,0xda,0xd0,0xbf,0x9a,0xb1,0x16,0x13,
5301
+0x2d,0x2e,0x52,0xfe,0x45,0x6a,0x01,0xdb,0x8b,0x27,0x29,0xfe,
5302
+0xf9,0x6a,0x6a,0x01,0x72,0x8f,0x01,0x2c,0x8e,0x00,0x00,0x00,
5303
+0x00,0x01,0x00,0xac,0xff,0xe3,0x04,0xe5,0x05,0xf0,0x00,0x32,
5304
+0x00,0x00,0x25,0x06,0x07,0x06,0x23,0x20,0x24,0x35,0x34,0x37,
5305
+0x36,0x3f,0x01,0x3e,0x01,0x35,0x34,0x27,0x26,0x23,0x22,0x07,
5306
+0x06,0x07,0x23,0x11,0x36,0x37,0x36,0x33,0x32,0x04,0x15,0x14,
5307
+0x07,0x06,0x0f,0x01,0x06,0x07,0x06,0x15,0x14,0x17,0x16,0x33,
5308
+0x32,0x37,0x36,0x37,0x33,0x04,0xd3,0x84,0x7f,0x80,0x7b,0xfe,
5309
+0xed,0xfe,0xea,0x56,0x57,0xcb,0xb9,0xc9,0x7c,0x52,0x53,0x9e,
5310
+0xb5,0x58,0x59,0x11,0x71,0x8c,0x7c,0x7c,0x68,0xf4,0x01,0x0e,
5311
+0x57,0x58,0xd6,0xc5,0xb6,0x39,0x38,0x5e,0x5d,0xb2,0xbf,0x5e,
5312
+0x5d,0x05,0x73,0x48,0x33,0x19,0x19,0xdc,0xd9,0x9f,0x5f,0x5e,
5313
+0x3d,0x37,0x3c,0x7a,0x6b,0x7b,0x40,0x41,0x47,0x46,0x9e,0x01,
5314
+0x3e,0x2b,0x17,0x16,0xd2,0xbe,0xa9,0x61,0x61,0x41,0x3b,0x37,
5315
+0x3a,0x3a,0x6c,0x87,0x47,0x46,0x52,0x51,0xab,0x00,0x00,0x00,
5316
+0x00,0x01,0x00,0x73,0xff,0xe3,0x03,0xb2,0x04,0x44,0x00,0x31,
5317
+0x00,0x00,0x25,0x0e,0x01,0x23,0x22,0x27,0x26,0x35,0x34,0x37,
5318
+0x36,0x3f,0x01,0x36,0x37,0x36,0x35,0x34,0x27,0x26,0x23,0x22,
5319
+0x06,0x07,0x23,0x35,0x3e,0x01,0x33,0x32,0x16,0x15,0x14,0x07,
5320
+0x06,0x0f,0x01,0x06,0x07,0x06,0x15,0x14,0x17,0x16,0x33,0x32,
5321
+0x37,0x36,0x37,0x33,0x03,0xb2,0x62,0xc4,0x67,0xcb,0x74,0x73,
5322
+0x43,0x42,0x97,0x92,0x87,0x2d,0x2d,0x3c,0x3b,0x74,0x75,0x88,
5323
+0x04,0x6a,0x63,0xba,0x54,0xbd,0xd6,0x3e,0x3d,0x89,0x85,0x99,
5324
+0x30,0x2f,0x41,0x41,0x7c,0x8a,0x47,0x46,0x04,0x6a,0x3b,0x2c,
5325
+0x2c,0x57,0x56,0x97,0x6f,0x46,0x47,0x2f,0x2d,0x2a,0x29,0x28,
5326
+0x43,0x52,0x29,0x29,0x74,0x67,0xe8,0x2a,0x2c,0xa6,0x92,0x66,
5327
+0x42,0x42,0x2c,0x2d,0x31,0x2b,0x2b,0x46,0x59,0x2f,0x2e,0x3b,
5328
+0x3b,0x77,0x00,0x00,0xff,0xff,0x00,0x53,0x00,0x00,0x05,0x1e,
5329
+0x05,0xd5,0x10,0x06,0x03,0x1b,0x00,0x00,0x00,0x02,0xff,0x3b,
5330
+0xfe,0x39,0x03,0x14,0x06,0x16,0x00,0x09,0x00,0x30,0x00,0x00,
5331
+0x13,0x22,0x15,0x14,0x21,0x32,0x37,0x36,0x27,0x26,0x05,0x36,
5332
+0x3d,0x01,0x33,0x07,0x06,0x07,0x02,0x03,0x06,0x17,0x16,0x33,
5333
+0x32,0x37,0x36,0x37,0x33,0x15,0x06,0x07,0x06,0x23,0x22,0x27,
5334
+0x26,0x37,0x26,0x13,0x22,0x23,0x20,0x37,0x36,0x21,0x32,0x17,
5335
+0x16,0xb4,0x9f,0x01,0x37,0x0e,0x0e,0x08,0x35,0x2e,0x01,0x08,
5336
+0x1f,0x64,0x01,0x03,0x7a,0x59,0x6c,0x10,0x3b,0x2b,0x5b,0x52,
5337
+0x2b,0x2a,0x07,0x5f,0x3e,0x41,0x42,0x48,0xab,0x61,0x78,0x16,
5338
+0x05,0xc2,0x05,0x04,0xfd,0xe6,0x05,0x04,0x01,0x77,0xa1,0x66,
5339
+0x41,0x05,0xb3,0x6b,0x7b,0x01,0x5f,0x48,0x3e,0x7e,0x3d,0x5f,
5340
+0x40,0x40,0xdc,0x56,0xfd,0xe4,0xfd,0x14,0x6d,0x51,0x3e,0x2e,
5341
+0x2c,0x60,0xda,0x22,0x10,0x10,0x5d,0x73,0x8e,0x0e,0x04,0xc4,
5342
+0xe6,0xc7,0x5d,0x3d,0x00,0x01,0x00,0x3b,0xfe,0x39,0x03,0x27,
5343
+0x05,0x71,0x00,0x27,0x00,0x00,0x13,0x23,0x35,0x33,0x11,0x33,
5344
+0x11,0x21,0x15,0x21,0x11,0x14,0x16,0x33,0x32,0x36,0x37,0x33,
5345
+0x11,0x14,0x06,0x23,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,
5346
+0x32,0x37,0x36,0x3d,0x01,0x06,0x23,0x22,0x26,0x35,0xdd,0xa2,
5347
+0xa2,0xb9,0x01,0x5a,0xfe,0xa6,0x34,0x46,0x48,0x42,0x02,0x8b,
5348
+0xc3,0xab,0x48,0x83,0x3e,0x5f,0x07,0x55,0x52,0x5b,0x2c,0x2a,
5349
+0x30,0x3e,0x9f,0x84,0x03,0xbc,0x6b,0x01,0x4a,0xfe,0xb6,0x6b,
5350
+0xfd,0x5d,0x87,0x4c,0x55,0x5f,0xfe,0x9e,0xa4,0xbb,0x21,0x21,
5351
+0xdb,0x60,0x5a,0x3e,0x3c,0x82,0x57,0x0c,0x8d,0xa9,0x00,0x00,
5352
+0x00,0x01,0x00,0x57,0x00,0x00,0x05,0x42,0x05,0xd5,0x00,0x15,
5353
+0x00,0x00,0x01,0x21,0x11,0x23,0x35,0x21,0x11,0x33,0x15,0x21,
5354
+0x35,0x33,0x11,0x22,0x07,0x06,0x15,0x23,0x11,0x36,0x37,0x36,
5355
+0x02,0x46,0x02,0xfc,0x7b,0xfe,0x49,0xbf,0xfd,0xb8,0xbf,0xe3,
5356
+0x45,0x46,0x81,0x66,0xb4,0x78,0x05,0xd5,0xfe,0xa0,0xe9,0xfb,
5357
+0x0c,0x6a,0x6a,0x04,0xf4,0x59,0x5b,0xba,0x01,0x64,0x4c,0x24,
5358
+0x11,0x00,0x00,0x00,0x00,0x01,0x00,0x3b,0xff,0xe3,0x03,0x54,
5359
+0x06,0x14,0x00,0x2b,0x00,0x00,0x01,0x21,0x15,0x21,0x11,0x14,
5360
+0x16,0x33,0x32,0x37,0x36,0x37,0x33,0x14,0x07,0x06,0x23,0x22,
5361
+0x27,0x26,0x35,0x11,0x23,0x35,0x33,0x35,0x34,0x37,0x36,0x33,
5362
+0x32,0x17,0x16,0x17,0x15,0x23,0x34,0x27,0x26,0x23,0x22,0x07,
5363
+0x06,0x15,0x01,0x96,0x01,0x5a,0xfe,0xa6,0x34,0x46,0x48,0x21,
5364
+0x21,0x02,0x8b,0x4f,0x47,0x91,0x9f,0x42,0x42,0xa2,0xa2,0x62,
5365
+0x61,0xab,0x4d,0x3d,0x41,0x3e,0x5f,0x32,0x2a,0x52,0x5b,0x2b,
5366
+0x2b,0x04,0x27,0x6b,0xfd,0x5d,0x87,0x4c,0x2a,0x2b,0x5f,0x91,
5367
+0x43,0x43,0x47,0x46,0xa9,0x02,0xa3,0x6b,0x8e,0xa2,0x5f,0x5e,
5368
+0x10,0x11,0x21,0xdb,0x60,0x2d,0x2d,0x3d,0x3b,0x84,0x00,0x00,
5369
+0x00,0x01,0x00,0x14,0xfe,0x56,0x05,0x42,0x05,0xd5,0x00,0x1b,
5370
+0x00,0x00,0x01,0x06,0x07,0x06,0x23,0x22,0x26,0x37,0x11,0x21,
5371
+0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x11,0x14,0x17,0x16,
5372
+0x33,0x32,0x37,0x36,0x37,0x33,0x05,0x0a,0x49,0x49,0x4a,0x47,
5373
+0xdc,0xc6,0x01,0xfe,0x49,0x7b,0x05,0x2e,0x7b,0xfe,0x49,0x2f,
5374
+0x2d,0x79,0x58,0x2c,0x2c,0x03,0x72,0xfe,0x9a,0x22,0x11,0x11,
5375
+0xdc,0xf7,0x05,0x35,0xe9,0x01,0x60,0xfe,0xa0,0xe9,0xfa,0xd3,
5376
+0xd7,0x4e,0x4b,0x31,0x30,0x63,0x00,0x00,0xff,0xff,0x00,0x5a,
5377
+0xff,0xe3,0x07,0xe6,0x06,0x6b,0x12,0x26,0x00,0x38,0xfa,0x00,
5378
+0x10,0x07,0x02,0xc8,0x07,0x8c,0x02,0x2a,0xff,0xff,0x00,0x2c,
5379
+0xff,0xe3,0x05,0x81,0x04,0x41,0x12,0x26,0x00,0x58,0xf5,0x00,
5380
+0x10,0x07,0x02,0xc8,0x05,0x27,0x00,0x00,0x00,0x01,0x00,0x7d,
5381
+0xff,0xe3,0x06,0x27,0x05,0xd5,0x00,0x28,0x00,0x00,0x01,0x15,
5382
+0x06,0x02,0x15,0x10,0x17,0x16,0x20,0x37,0x36,0x11,0x34,0x02,
5383
+0x27,0x35,0x21,0x15,0x21,0x16,0x12,0x15,0x14,0x07,0x06,0x07,
5384
+0x06,0x04,0x23,0x22,0x24,0x27,0x26,0x27,0x26,0x35,0x34,0x12,
5385
+0x37,0x21,0x35,0x02,0x8c,0x55,0xd5,0x89,0x89,0x01,0xbc,0x89,
5386
+0x89,0xd4,0x56,0x02,0x0d,0xfe,0x9f,0x88,0xdb,0x39,0x3b,0x6d,
5387
+0x63,0xff,0x00,0x91,0x90,0xff,0x00,0x62,0x6f,0x3a,0x3a,0xdb,
5388
+0x88,0xfe,0x9f,0x05,0xd5,0x6b,0x67,0xfe,0xa3,0xee,0xfe,0xe9,
5389
+0xaa,0xa9,0xa9,0xaa,0x01,0x17,0xef,0x01,0x5b,0x68,0x6b,0x6b,
5390
+0x86,0xfe,0xac,0xee,0x97,0x83,0x86,0x64,0x5b,0x60,0x60,0x5b,
5391
+0x67,0x84,0x83,0x96,0xee,0x01,0x54,0x86,0x6b,0x00,0x00,0x00,
5392
+0x00,0x01,0x00,0x71,0x00,0x00,0x05,0x99,0x05,0xd5,0x00,0x24,
5393
+0x00,0x00,0x21,0x06,0x27,0x26,0x35,0x11,0x23,0x35,0x21,0x15,
5394
+0x23,0x11,0x14,0x17,0x16,0x17,0x16,0x37,0x36,0x11,0x34,0x27,
5395
+0x26,0x27,0x35,0x33,0x16,0x17,0x16,0x15,0x14,0x07,0x06,0x07,
5396
+0x06,0x07,0x06,0x02,0xc4,0xd5,0x4b,0x75,0xbe,0x02,0x47,0xbe,
5397
+0x2a,0x1e,0x82,0xd6,0x91,0x89,0x5c,0x58,0x98,0x6c,0xde,0x6a,
5398
+0x7d,0x39,0x3b,0x6d,0x63,0x80,0x69,0x0b,0x41,0x65,0xc4,0x04,
5399
+0x0b,0x6b,0x6b,0xfb,0xf5,0x7d,0x42,0x2f,0x06,0x09,0xb2,0xaa,
5400
+0x01,0x17,0xf9,0x8b,0x83,0x1c,0x72,0x53,0xaf,0xd0,0xd9,0x97,
5401
+0x83,0x86,0x64,0x5b,0x30,0x27,0x00,0x00,0x00,0x01,0xff,0xe9,
5402
+0x00,0x00,0x06,0x63,0x05,0xd5,0x00,0x1d,0x00,0x00,0x25,0x33,
5403
+0x15,0x21,0x35,0x33,0x11,0x01,0x23,0x35,0x21,0x15,0x23,0x09,
5404
+0x01,0x36,0x33,0x32,0x17,0x16,0x17,0x15,0x23,0x26,0x27,0x26,
5405
+0x23,0x22,0x07,0x01,0x03,0x0c,0xbf,0xfd,0xb8,0xbf,0xfe,0x33,
5406
+0x8c,0x02,0x2b,0xae,0x01,0x75,0x01,0x75,0x82,0x88,0x43,0x46,
5407
+0x42,0x3e,0x5f,0x07,0x2a,0x2b,0x52,0x7e,0x33,0xfe,0x67,0x6a,
5408
+0x6a,0x6a,0x02,0x19,0x02,0xe7,0x6b,0x6b,0xfd,0xa4,0x02,0x5c,
5409
+0x6b,0x11,0x10,0x21,0xdb,0x60,0x2d,0x2d,0x48,0xfd,0x6c,0x00,
5410
+0x00,0x01,0xff,0xfa,0xfe,0x39,0x05,0x4d,0x04,0x3d,0x00,0x25,
5411
+0x00,0x00,0x09,0x01,0x0e,0x01,0x23,0x22,0x26,0x27,0x35,0x33,
5412
+0x1e,0x01,0x33,0x32,0x36,0x3f,0x01,0x01,0x23,0x35,0x21,0x15,
5413
+0x23,0x09,0x01,0x3e,0x01,0x33,0x32,0x16,0x17,0x15,0x23,0x2e,
5414
+0x01,0x23,0x22,0x06,0x03,0xd5,0xfe,0x4c,0x32,0x7a,0x6f,0x2f,
5415
+0x63,0x32,0x5e,0x06,0x39,0x3c,0x37,0x43,0x25,0x46,0xfe,0x73,
5416
+0x79,0x01,0xe9,0xaa,0x01,0x2b,0x01,0x0a,0x32,0x7a,0x6f,0x2f,
5417
+0x63,0x32,0x5e,0x06,0x39,0x3c,0x37,0x43,0x03,0x39,0xfb,0xd7,
5418
+0x7c,0x5b,0x10,0x0f,0xcb,0x44,0x3b,0x3d,0x5c,0xb1,0x03,0xce,
5419
+0x6b,0x6b,0xfd,0x25,0x02,0x85,0x7c,0x5b,0x10,0x0f,0xcb,0x44,
5420
+0x3b,0x3d,0x00,0x00,0x00,0x01,0x00,0x5c,0x00,0x00,0x05,0x3f,
5421
+0x05,0xd5,0x00,0x15,0x00,0x00,0x33,0x35,0x01,0x21,0x35,0x21,
5422
+0x01,0x21,0x15,0x23,0x11,0x21,0x15,0x01,0x21,0x15,0x21,0x01,
5423
+0x21,0x35,0x33,0x11,0x5c,0x01,0xd0,0xfe,0xce,0x01,0x8b,0x01,
5424
+0x79,0xfc,0xfc,0x7b,0x04,0x9c,0xfe,0x63,0x01,0x47,0xfe,0x5f,
5425
+0xfe,0x55,0x03,0x4c,0x7a,0x48,0x02,0x87,0x7d,0x02,0x0e,0xdf,
5426
+0x01,0x5a,0x48,0xfd,0xbf,0x7d,0xfd,0xac,0xd1,0xfe,0xb4,0x00,
5427
+0x00,0x01,0x00,0x52,0x00,0x00,0x03,0xec,0x04,0x27,0x00,0x15,
5428
+0x00,0x00,0x33,0x35,0x01,0x23,0x35,0x33,0x01,0x21,0x15,0x23,
5429
+0x11,0x21,0x15,0x01,0x33,0x15,0x21,0x01,0x21,0x35,0x33,0x11,
5430
+0x52,0x01,0x21,0x96,0xe8,0x01,0x27,0xfd,0xf1,0x6a,0x03,0x66,
5431
+0xfe,0xc9,0xdf,0xfe,0xd0,0xfe,0xee,0x02,0x42,0x6b,0x56,0x01,
5432
+0x7a,0x6a,0x01,0x82,0xb8,0x01,0x23,0x56,0xfe,0x69,0x6a,0xfe,
5433
+0x9a,0xc1,0xfe,0xd5,0x00,0x01,0x00,0x66,0xff,0xe3,0x04,0x49,
5434
+0x05,0xd5,0x00,0x23,0x00,0x00,0x01,0x23,0x35,0x01,0x21,0x15,
5435
+0x23,0x11,0x21,0x15,0x01,0x17,0x16,0x17,0x16,0x15,0x14,0x07,
5436
+0x06,0x21,0x22,0x27,0x26,0x27,0x11,0x33,0x1e,0x01,0x33,0x32,
5437
+0x37,0x36,0x35,0x34,0x27,0x26,0x02,0x10,0x5f,0x01,0x58,0xfd,
5438
+0xf1,0x7b,0x03,0x69,0xfe,0x8f,0x4f,0xb8,0x66,0x65,0x8d,0x8c,
5439
+0xfe,0xf8,0x75,0x6f,0x70,0x6e,0x70,0x0a,0xae,0x9e,0x99,0x59,
5440
+0x58,0x5b,0x5b,0x03,0x54,0x66,0x01,0xa0,0xdf,0x01,0x5a,0x7d,
5441
+0xfe,0x43,0x07,0x1d,0x79,0x78,0xc0,0xea,0x7d,0x7c,0x1c,0x1c,
5442
+0x39,0x01,0x44,0xa1,0xa6,0x64,0x63,0xac,0xc5,0x66,0x65,0x00,
5443
+0x00,0x01,0x00,0x66,0xff,0xe3,0x04,0x49,0x05,0xd5,0x00,0x23,
5444
+0x00,0x00,0x01,0x22,0x07,0x06,0x15,0x14,0x17,0x16,0x33,0x32,
5445
+0x36,0x37,0x33,0x11,0x06,0x07,0x06,0x23,0x20,0x27,0x26,0x35,
5446
+0x34,0x37,0x36,0x3f,0x01,0x01,0x35,0x21,0x11,0x23,0x35,0x21,
5447
+0x01,0x15,0x02,0x9f,0xb0,0x5b,0x5b,0x58,0x59,0x99,0x9e,0xae,
5448
+0x0a,0x70,0x6e,0x70,0x6f,0x75,0xfe,0xf8,0x8c,0x8d,0x65,0x66,
5449
+0xb8,0x4f,0xfe,0x8f,0x03,0x69,0x7b,0xfd,0xf1,0x01,0x58,0x03,
5450
+0x54,0x65,0x66,0xc5,0xac,0x63,0x64,0xa6,0xa1,0xfe,0xbc,0x39,
5451
+0x1c,0x1c,0x7c,0x7d,0xea,0xc0,0x78,0x79,0x1d,0x07,0x01,0xbd,
5452
+0x7d,0xfe,0xa6,0xdf,0xfe,0x60,0x66,0x00,0x00,0x01,0x00,0x66,
5453
+0xfe,0x36,0x04,0x49,0x04,0x27,0x00,0x23,0x00,0x00,0x01,0x22,
5454
+0x07,0x06,0x15,0x14,0x17,0x16,0x33,0x32,0x36,0x37,0x33,0x11,
5455
+0x06,0x07,0x06,0x23,0x20,0x27,0x26,0x35,0x34,0x37,0x36,0x3f,
5456
+0x01,0x01,0x35,0x21,0x11,0x23,0x35,0x21,0x01,0x15,0x02,0x9f,
5457
+0xb0,0x5b,0x5b,0x58,0x59,0x99,0x9e,0xae,0x0a,0x70,0x6e,0x70,
5458
+0x6f,0x75,0xfe,0xf8,0x8c,0x8d,0x65,0x66,0xb8,0x4f,0xfe,0x8f,
5459
+0x03,0x66,0x6a,0xfd,0xf1,0x01,0x4a,0x01,0xa7,0x65,0x66,0xc5,
5460
+0xac,0x63,0x64,0xa6,0xa1,0xfe,0xbc,0x39,0x1c,0x1c,0x7c,0x7d,
5461
+0xea,0xc0,0x78,0x79,0x1d,0x07,0x01,0xe3,0x56,0xfe,0xdd,0xb8,
5462
+0xfe,0x51,0x66,0x00,0x00,0x01,0x00,0x82,0xfe,0x36,0x04,0x2e,
5463
+0x04,0x27,0x00,0x1b,0x00,0x00,0x01,0x23,0x35,0x01,0x21,0x15,
5464
+0x23,0x11,0x21,0x15,0x01,0x04,0x15,0x14,0x04,0x15,0x14,0x20,
5465
+0x37,0x33,0x15,0x06,0x20,0x35,0x34,0x24,0x35,0x34,0x02,0x10,
5466
+0x5f,0x01,0x4a,0xfd,0xf1,0x6a,0x03,0x66,0xfe,0x8f,0x01,0xb7,
5467
+0xfd,0x10,0x02,0x2f,0x2c,0x5f,0x78,0xfd,0x02,0x02,0xdc,0x01,
5468
+0xa7,0x66,0x01,0xaf,0xb8,0x01,0x23,0x56,0xfe,0x1d,0x27,0xad,
5469
+0xc1,0xd9,0x67,0x75,0xda,0x9a,0xae,0xd4,0xb8,0xae,0xb4,0x83,
5470
+0x00,0x01,0x00,0x8b,0x00,0x00,0x04,0x62,0x05,0xf0,0x00,0x24,
5471
+0x00,0x00,0x01,0x23,0x11,0x3e,0x01,0x33,0x32,0x04,0x15,0x14,
5472
+0x07,0x33,0x15,0x23,0x06,0x0f,0x01,0x01,0x21,0x35,0x33,0x11,
5473
+0x21,0x35,0x01,0x36,0x37,0x21,0x35,0x21,0x36,0x35,0x34,0x26,
5474
+0x23,0x22,0x06,0x01,0x06,0x70,0x6b,0xd9,0x68,0xe9,0x01,0x0e,
5475
+0x56,0x7f,0xd8,0x38,0x4b,0x24,0xfe,0x87,0x02,0x6f,0x75,0xfc,
5476
+0x3d,0x01,0xc5,0x53,0x38,0xfe,0x2b,0x02,0x24,0x3c,0x9d,0x8a,
5477
+0x8f,0x9c,0x04,0x71,0x01,0x0a,0x39,0x3c,0xe2,0xc2,0x74,0x8c,
5478
+0x7d,0x45,0x4a,0x23,0xfe,0x87,0xb8,0xfe,0xa4,0x6d,0x01,0xc4,
5479
+0x53,0x4b,0x7d,0x7a,0x86,0x97,0xaa,0x8e,0x00,0x01,0x00,0x71,
5480
+0xff,0xe3,0x04,0xe6,0x05,0xd5,0x00,0x20,0x00,0x00,0x01,0x1e,
5481
+0x01,0x15,0x14,0x04,0x21,0x22,0x26,0x27,0x11,0x33,0x1e,0x01,
5482
+0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x21,0x11,0x23,0x35,0x21,
5483
+0x11,0x23,0x35,0x21,0x11,0x33,0x32,0x03,0x63,0xb8,0xcb,0xfe,
5484
+0xe7,0xfe,0xf8,0x75,0xdf,0x6e,0x70,0x0a,0xae,0x9e,0x99,0xb1,
5485
+0xb6,0xb0,0xfe,0x82,0xbe,0x04,0x3d,0x7b,0xfd,0xc7,0x86,0x55,
5486
+0x03,0x48,0x1a,0xd7,0xc4,0xd1,0xdf,0x32,0x33,0x01,0x22,0x90,
5487
+0x94,0xb1,0x9a,0xb0,0xb5,0x02,0x74,0x6b,0xfe,0xb4,0xd1,0xfe,
5488
+0x02,0x00,0x00,0x00,0x00,0x01,0x00,0x27,0xfe,0x36,0x04,0x49,
5489
+0x04,0x27,0x00,0x24,0x00,0x00,0x01,0x17,0x16,0x17,0x16,0x15,
5490
+0x14,0x07,0x06,0x21,0x22,0x27,0x26,0x27,0x11,0x33,0x1e,0x01,
5491
+0x33,0x32,0x37,0x36,0x35,0x34,0x27,0x26,0x23,0x21,0x11,0x23,
5492
+0x35,0x21,0x11,0x23,0x35,0x21,0x11,0x02,0x10,0xb6,0xb8,0x66,
5493
+0x65,0x8d,0x8c,0xfe,0xf8,0x75,0x6f,0x70,0x6e,0x70,0x0a,0xae,
5494
+0x9e,0x99,0x59,0x58,0x5b,0x5b,0xb0,0xfe,0xc8,0xb1,0x03,0xb9,
5495
+0x69,0xfe,0x19,0x02,0x0d,0x15,0x1d,0x79,0x78,0xd1,0xea,0x7d,
5496
+0x7c,0x1c,0x1c,0x39,0x01,0x44,0xa1,0xa6,0x64,0x63,0xac,0xc5,
5497
+0x66,0x65,0x02,0x17,0x69,0xfe,0xf5,0x90,0xfe,0x61,0x00,0x00,
5498
+0x00,0x01,0x00,0xde,0xff,0xe2,0x03,0x6c,0x05,0x71,0x00,0x25,
5499
+0x00,0x00,0x01,0x33,0x11,0x33,0x15,0x23,0x15,0x16,0x17,0x16,
5500
+0x15,0x14,0x07,0x06,0x23,0x22,0x27,0x26,0x27,0x35,0x33,0x16,
5501
+0x17,0x16,0x33,0x32,0x37,0x36,0x35,0x34,0x27,0x26,0x2b,0x01,
5502
+0x11,0x23,0x35,0x33,0x01,0x8e,0xb8,0xae,0xae,0x72,0x52,0x62,
5503
+0x62,0x61,0xab,0x48,0x42,0x41,0x3e,0x5f,0x07,0x2b,0x2a,0x52,
5504
+0x5b,0x2b,0x2b,0x2b,0x2b,0x5b,0x74,0xb0,0xb0,0x05,0x71,0xfe,
5505
+0xb7,0x6a,0xab,0x08,0x4d,0x5e,0xe4,0xe0,0x5d,0x5d,0x10,0x10,
5506
+0x22,0xda,0x60,0x2c,0x2e,0x3e,0x3c,0xbe,0xc2,0x3c,0x3e,0x01,
5507
+0x06,0x6a,0x00,0x00,0x00,0x02,0x00,0x3b,0xfe,0x56,0x04,0xa3,
5508
+0x04,0x7b,0x00,0x11,0x00,0x19,0x00,0x00,0x01,0x36,0x21,0x32,
5509
+0x16,0x15,0x10,0x01,0x15,0x33,0x15,0x21,0x35,0x33,0x11,0x23,
5510
+0x35,0x21,0x11,0x00,0x11,0x34,0x26,0x23,0x22,0x07,0x01,0xa4,
5511
+0x9b,0x01,0x11,0xb8,0x9b,0xfd,0x01,0xae,0xfd,0xe9,0xb1,0xb1,
5512
+0x01,0x69,0x02,0x47,0x78,0x78,0xaa,0xad,0x03,0xb6,0xc5,0xe1,
5513
+0x99,0xfe,0x3a,0xfe,0x4b,0xc5,0x6b,0x6b,0x04,0xfb,0x6b,0xfb,
5514
+0xcf,0x01,0x70,0x01,0x9b,0x85,0x96,0xef,0x00,0x01,0x00,0xdd,
5515
+0x00,0x00,0x01,0x7f,0x05,0xd5,0x00,0x03,0x00,0x00,0x01,0x11,
5516
+0x23,0x11,0x01,0x7f,0xa2,0x05,0xd5,0xfa,0x2b,0x05,0xd5,0x00,
5517
+0xff,0xff,0x00,0xdd,0x00,0x00,0x03,0x13,0x05,0xd5,0x10,0x27,
5518
+0x01,0x82,0x01,0x94,0x00,0x00,0x10,0x06,0x01,0x82,0x00,0x00,
5519
+0x00,0x01,0x00,0x12,0x00,0x00,0x03,0x9a,0x05,0xd5,0x00,0x13,
5520
+0x00,0x00,0x01,0x21,0x35,0x21,0x11,0x33,0x11,0x21,0x15,0x21,
5521
+0x15,0x21,0x15,0x21,0x11,0x23,0x11,0x21,0x35,0x21,0x01,0x85,
5522
+0xfe,0x8d,0x01,0x73,0xa2,0x01,0x73,0xfe,0x8d,0x01,0x73,0xfe,
5523
+0x8d,0xa2,0xfe,0x8d,0x01,0x73,0x03,0x53,0xa2,0x01,0xe0,0xfe,
5524
+0x20,0xa2,0xd1,0xa2,0xfe,0x20,0x01,0xe0,0xa2,0x00,0x00,0x00,
5525
+0x00,0x02,0x00,0xdd,0x00,0x00,0x01,0x7f,0x05,0xd5,0x00,0x03,
5526
+0x00,0x07,0x00,0x00,0x25,0x15,0x23,0x35,0x13,0x11,0x23,0x11,
5527
+0x01,0x7f,0xa2,0xa2,0xa2,0x9c,0x9c,0x9c,0x05,0x39,0xfb,0x63,
5528
+0x04,0x9d,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x0b,0xa9,
5529
+0x07,0x6b,0x10,0x27,0x01,0x3f,0x06,0x6a,0x00,0x00,0x10,0x06,
5530
+0x00,0x27,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x0a,0x56,
5531
+0x06,0x66,0x10,0x27,0x01,0x40,0x06,0x6a,0x00,0x00,0x10,0x06,
5532
+0x00,0x27,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x09,0x0b,
5533
+0x06,0x66,0x10,0x27,0x01,0x40,0x05,0x1f,0x00,0x00,0x10,0x06,
5534
+0x00,0x47,0x00,0x00,0xff,0xff,0x00,0x71,0xfe,0x56,0x08,0x27,
5535
+0x05,0xd5,0x10,0x27,0x00,0x2d,0x05,0x50,0x00,0x00,0x10,0x06,
5536
+0x00,0x2f,0x00,0x00,0xff,0xff,0x00,0x71,0xfe,0x39,0x07,0x02,
5537
+0x05,0xe3,0x10,0x27,0x00,0x4d,0x05,0x50,0x00,0x00,0x10,0x06,
5538
+0x00,0x2f,0x00,0x00,0xff,0xff,0x00,0x3b,0xfe,0x39,0x04,0x41,
5539
+0x06,0x14,0x10,0x27,0x00,0x4d,0x02,0x8f,0x00,0x00,0x10,0x06,
5540
+0x00,0x4f,0x00,0x00,0xff,0xff,0x00,0x64,0xfe,0x56,0x09,0xd7,
5541
+0x05,0xd5,0x10,0x27,0x00,0x2d,0x07,0x00,0x00,0x00,0x10,0x06,
5542
+0x00,0x31,0x00,0x00,0xff,0xff,0x00,0x64,0xfe,0x39,0x08,0xb2,
5543
+0x05,0xe3,0x10,0x27,0x00,0x4d,0x07,0x00,0x00,0x00,0x10,0x06,
5544
+0x00,0x31,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x39,0x06,0xd9,
5545
+0x05,0xe3,0x10,0x27,0x00,0x4d,0x05,0x27,0x00,0x00,0x10,0x06,
5546
+0x00,0x51,0x00,0x00,0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,
5547
+0x07,0x6b,0x12,0x26,0x00,0x24,0x00,0x00,0x10,0x07,0x0d,0x7d,
5548
+0x04,0xe1,0x01,0x75,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x8b,
5549
+0x06,0x66,0x12,0x26,0x00,0x44,0x00,0x00,0x10,0x06,0x02,0x89,
5550
+0x38,0x00,0x00,0x00,0xff,0xff,0x00,0x56,0x00,0x00,0x02,0xd4,
5551
+0x07,0x6b,0x12,0x26,0x00,0x2c,0x00,0x00,0x10,0x07,0x0d,0x7d,
5552
+0x03,0x95,0x01,0x75,0xff,0xff,0x00,0x08,0x00,0x00,0x02,0x86,
5553
+0x06,0x66,0x12,0x26,0x00,0xf3,0x00,0x00,0x10,0x07,0x02,0x89,
5554
+0xff,0x47,0x00,0x00,0xff,0xff,0x00,0x73,0xff,0xe3,0x06,0x1d,
5555
+0x07,0x6b,0x12,0x26,0x00,0x32,0x00,0x00,0x10,0x07,0x0d,0x7d,
5556
+0x05,0x47,0x01,0x75,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,
5557
+0x06,0x66,0x12,0x26,0x00,0x52,0x00,0x00,0x10,0x06,0x02,0x89,
5558
+0x67,0x00,0x00,0x00,0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,
5559
+0x07,0x6b,0x12,0x26,0x00,0x38,0x00,0x00,0x10,0x07,0x0d,0x7d,
5560
+0x05,0x87,0x01,0x75,0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,
5561
+0x06,0x66,0x12,0x26,0x00,0x58,0x00,0x00,0x10,0x06,0x02,0x89,
5562
+0x47,0x00,0x00,0x00,0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,
5563
+0x08,0x33,0x10,0x27,0x0d,0x8b,0x00,0xcb,0x00,0x00,0x12,0x06,
5564
+0x00,0x38,0x00,0x00,0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,
5565
+0x07,0x17,0x10,0x27,0x0d,0x8b,0xff,0x8b,0xfe,0xe4,0x12,0x06,
5566
+0x00,0x58,0x00,0x00,0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,
5567
+0x08,0x5a,0x12,0x26,0x00,0x38,0x00,0x00,0x10,0x07,0x0d,0x8e,
5568
+0x00,0xcb,0x00,0x00,0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,
5569
+0x07,0x3e,0x10,0x27,0x0d,0x8e,0xff,0x8c,0xfe,0xe4,0x12,0x06,
5570
+0x00,0x58,0x00,0x00,0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,
5571
+0x08,0x58,0x12,0x26,0x00,0x38,0x00,0x00,0x10,0x07,0x0d,0x93,
5572
+0x00,0xcb,0x00,0x00,0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,
5573
+0x07,0x3c,0x10,0x27,0x0d,0x93,0xff,0x8c,0xfe,0xe4,0x12,0x06,
5574
+0x00,0x58,0x00,0x00,0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,
5575
+0x08,0x5a,0x10,0x27,0x0d,0x8f,0x00,0xcb,0x00,0x00,0x12,0x06,
5576
+0x00,0x38,0x00,0x00,0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,
5577
+0x07,0x3e,0x10,0x27,0x0d,0x8f,0xff,0x8c,0xfe,0xe4,0x12,0x06,
5578
+0x00,0x58,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x56,
5579
+0x04,0x44,0x10,0x06,0x02,0x1b,0x00,0x00,0xff,0xff,0xff,0xf4,
5580
+0x00,0x00,0x05,0xdb,0x08,0x33,0x10,0x26,0x0d,0x8b,0x27,0x00,
5581
+0x12,0x06,0x00,0x24,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,
5582
+0xff,0xe3,0x04,0x8b,0x07,0x17,0x10,0x27,0x0d,0x8b,0xff,0x7d,
5583
+0xfe,0xe4,0x12,0x06,0x00,0x44,0x00,0x00,0xff,0xff,0xff,0xf4,
5584
+0x00,0x00,0x05,0xdb,0x08,0x33,0x10,0x26,0x0d,0x8d,0x26,0x00,
5585
+0x12,0x06,0x00,0x24,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,
5586
+0xff,0xe3,0x04,0x8b,0x07,0x1a,0x10,0x27,0x0d,0x8d,0xff,0x7d,
5587
+0xfe,0xe7,0x12,0x06,0x00,0x44,0x00,0x00,0xff,0xff,0xff,0xdd,
5588
+0x00,0x00,0x07,0x98,0x07,0x31,0x10,0x27,0x00,0x71,0x02,0xaf,
5589
+0x01,0x3b,0x12,0x06,0x00,0x88,0x00,0x00,0xff,0xff,0x00,0x66,
5590
+0xff,0xe3,0x07,0x1e,0x05,0xf6,0x10,0x27,0x00,0x71,0x01,0xa5,
5591
+0x00,0x00,0x12,0x06,0x00,0xa8,0x00,0x00,0x00,0x01,0x00,0x73,
5592
+0xff,0xe3,0x06,0x8c,0x05,0xf0,0x00,0x26,0x00,0x00,0x01,0x2e,
5593
+0x01,0x23,0x20,0x02,0x11,0x10,0x00,0x33,0x32,0x36,0x37,0x35,
5594
+0x21,0x35,0x21,0x35,0x21,0x35,0x21,0x11,0x33,0x15,0x23,0x15,
5595
+0x06,0x04,0x23,0x20,0x00,0x11,0x10,0x00,0x21,0x32,0x04,0x17,
5596
+0x11,0x05,0x1f,0x23,0xde,0xc6,0xfe,0xfe,0xfe,0x01,0x06,0xfe,
5597
+0x71,0xce,0x5d,0xfe,0x44,0x01,0xbc,0xfe,0xe7,0x01,0xe4,0xc9,
5598
+0xc9,0x85,0xfe,0xcd,0xaf,0xfe,0xae,0xfe,0x69,0x01,0x98,0x01,
5599
+0x59,0x80,0x01,0x11,0x9a,0x04,0x17,0xbb,0xb3,0xfe,0xb4,0xfe,
5600
+0xb0,0xfe,0xb7,0xfe,0xae,0x38,0x38,0x78,0x6b,0xd0,0x6b,0xfe,
5601
+0xc5,0x6b,0xb9,0x4d,0x4d,0x01,0xa7,0x01,0x5f,0x01,0x62,0x01,
5602
+0xa5,0x3b,0x3c,0xfe,0x9e,0x00,0x00,0x00,0x00,0x03,0xff,0xed,
5603
+0xfe,0x39,0x04,0xe3,0x04,0x44,0x00,0x0c,0x00,0x30,0x00,0x38,
5604
+0x00,0x00,0x01,0x34,0x26,0x23,0x22,0x06,0x15,0x14,0x16,0x33,
5605
+0x32,0x36,0x35,0x11,0x0e,0x01,0x23,0x22,0x02,0x35,0x34,0x12,
5606
+0x33,0x32,0x16,0x17,0x35,0x21,0x15,0x23,0x11,0x14,0x07,0x33,
5607
+0x15,0x23,0x06,0x07,0x06,0x07,0x22,0x26,0x27,0x35,0x23,0x35,
5608
+0x21,0x36,0x35,0x05,0x1e,0x01,0x33,0x32,0x37,0x36,0x37,0x03,
5609
+0x7b,0x93,0x8c,0x8e,0x91,0x91,0x8e,0x8c,0x93,0x36,0xa7,0x7b,
5610
+0xc4,0xf9,0xf8,0xc5,0x7b,0xa7,0x36,0x01,0x68,0xb0,0x03,0xb3,
5611
+0xc8,0x1f,0x47,0x7e,0xe9,0x69,0xc0,0x58,0xe0,0x03,0x8b,0x03,
5612
+0xfd,0xb2,0x12,0x86,0x7d,0xa2,0x4c,0x23,0x13,0x02,0x66,0xa7,
5613
+0xb1,0xc4,0xc1,0xc0,0xc6,0xb0,0xa8,0xfe,0xe5,0x5a,0x56,0x01,
5614
+0x19,0xe0,0xe1,0x01,0x2a,0x69,0x5a,0xa6,0x6b,0xfc,0x5b,0x25,
5615
+0x23,0x6b,0x68,0x46,0x7c,0x01,0x26,0x26,0xdf,0x6b,0x22,0x26,
5616
+0xb3,0x68,0x60,0x5c,0x2b,0x41,0x00,0x00,0xff,0xff,0x00,0x73,
5617
+0xff,0xe3,0x05,0xc3,0x07,0x6b,0x10,0x27,0x0d,0x7d,0x05,0x59,
5618
+0x01,0x75,0x12,0x06,0x00,0x2a,0x00,0x00,0xff,0xff,0x00,0x66,
5619
+0xfe,0x39,0x04,0xe3,0x06,0x66,0x10,0x27,0x02,0xb9,0x04,0x5c,
5620
+0x00,0x00,0x12,0x06,0x00,0x4a,0x00,0x00,0xff,0xff,0x00,0x71,
5621
+0x00,0x00,0x06,0x19,0x07,0x6b,0x10,0x27,0x0d,0x7d,0x05,0x47,
5622
+0x01,0x75,0x12,0x06,0x00,0x2e,0x00,0x00,0xff,0xff,0x00,0x0c,
5623
+0x00,0x00,0x04,0xe7,0x07,0xb1,0x10,0x27,0x0d,0x7d,0x03,0x4b,
5624
+0x01,0xbb,0x12,0x06,0x00,0x4e,0x00,0x00,0xff,0xff,0x00,0x73,
5625
+0xfe,0x67,0x06,0x1d,0x05,0xf0,0x10,0x27,0x02,0x99,0x01,0x4c,
5626
+0xff,0xf0,0x12,0x06,0x00,0x32,0x00,0x00,0xff,0xff,0x00,0x66,
5627
+0xfe,0x67,0x04,0x6a,0x04,0x44,0x10,0x26,0x02,0x99,0x6c,0xf0,
5628
+0x12,0x06,0x00,0x52,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x73,
5629
+0xfe,0x67,0x06,0x1d,0x07,0x32,0x10,0x27,0x00,0x71,0x01,0x48,
5630
+0x01,0x3c,0x12,0x06,0x01,0xac,0x00,0x00,0xff,0xff,0x00,0x66,
5631
+0xfe,0x67,0x04,0x6a,0x05,0xf6,0x10,0x26,0x00,0x71,0x68,0x00,
5632
+0x12,0x06,0x01,0xad,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,
5633
+0xff,0xe3,0x04,0x49,0x07,0x6b,0x10,0x27,0x0d,0x7d,0x04,0x4b,
5634
+0x01,0x75,0x10,0x06,0x01,0x79,0x00,0x00,0xff,0xff,0x00,0x66,
5635
+0xfe,0x36,0x04,0x49,0x06,0x66,0x10,0x26,0x02,0x89,0x1d,0x00,
5636
+0x10,0x06,0x02,0x54,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0x3b,
5637
+0xfe,0x39,0x02,0x86,0x06,0x66,0x10,0x26,0x01,0xf9,0x00,0x00,
5638
+0x10,0x07,0x02,0x89,0xff,0x47,0x00,0x00,0xff,0xff,0x00,0x71,
5639
+0x00,0x00,0x0b,0xa9,0x05,0xd5,0x10,0x27,0x00,0x3d,0x06,0x6a,
5640
+0x00,0x00,0x10,0x06,0x00,0x27,0x00,0x00,0xff,0xff,0x00,0x71,
5641
+0x00,0x00,0x0a,0x56,0x05,0xd5,0x10,0x27,0x00,0x5d,0x06,0x6a,
5642
+0x00,0x00,0x10,0x06,0x00,0x27,0x00,0x00,0xff,0xff,0x00,0x66,
5643
+0xff,0xe3,0x09,0x0b,0x06,0x14,0x10,0x27,0x00,0x5d,0x05,0x1f,
5644
+0x00,0x00,0x10,0x06,0x00,0x47,0x00,0x00,0xff,0xff,0x00,0x73,
5645
+0xff,0xe3,0x05,0xc3,0x07,0x6b,0x10,0x27,0x0d,0x79,0x05,0x55,
5646
+0x01,0x75,0x12,0x06,0x00,0x2a,0x00,0x00,0xff,0xff,0x00,0x66,
5647
+0xfe,0x39,0x04,0xe3,0x06,0x66,0x10,0x27,0x02,0xae,0x04,0x5c,
5648
+0x00,0x00,0x12,0x06,0x00,0x4a,0x00,0x00,0x00,0x01,0x00,0x71,
5649
+0xff,0xe3,0x08,0xe0,0x05,0xd5,0x00,0x2b,0x00,0x00,0x01,0x35,
5650
+0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,
5651
+0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x10,0x17,
5652
+0x16,0x33,0x32,0x37,0x36,0x19,0x01,0x23,0x35,0x21,0x11,0x10,
5653
+0x07,0x06,0x23,0x20,0x27,0x26,0x05,0x00,0xfc,0xfa,0xbe,0xfd,
5654
+0xb9,0xbe,0xbe,0x02,0x47,0xbe,0x03,0x06,0xbe,0x02,0x47,0xbe,
5655
+0x5d,0x5e,0x82,0x90,0x46,0x4a,0xae,0x01,0x66,0x84,0x82,0xc8,
5656
+0xfe,0xfb,0x87,0x86,0x02,0x52,0x9a,0xfd,0x7e,0x6a,0x6a,0x05,
5657
+0x00,0x6b,0x6b,0xfd,0xfc,0x02,0x04,0x6b,0x6b,0xfc,0xfc,0xfe,
5658
+0xe2,0x71,0x71,0x71,0x76,0x01,0x19,0x01,0x55,0x6c,0xfe,0x2b,
5659
+0xfe,0xab,0x8d,0x8d,0x8e,0x8e,0x00,0x00,0x00,0x02,0x00,0x71,
5660
+0xfe,0x56,0x05,0x37,0x05,0xf0,0x00,0x07,0x00,0x19,0x00,0x00,
5661
+0x01,0x00,0x11,0x34,0x26,0x23,0x22,0x03,0x35,0x36,0x21,0x32,
5662
+0x16,0x15,0x10,0x01,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,
5663
+0x35,0x21,0x01,0xfa,0x02,0x6f,0x79,0x81,0xbb,0xba,0xa5,0x01,
5664
+0x2b,0xc6,0xa7,0xfc,0xc3,0xe7,0xfd,0x90,0xbe,0xbe,0x01,0x89,
5665
+0x01,0x19,0x01,0xae,0x01,0x93,0x8f,0x9c,0xfe,0xff,0x98,0xd4,
5666
+0xf2,0xa4,0xfe,0x1b,0xfe,0x27,0xfe,0x24,0x6a,0x6a,0x06,0xaa,
5667
+0x6b,0x00,0x00,0x00,0xff,0xff,0x00,0x64,0xff,0xe3,0x06,0xa6,
5668
+0x07,0x6b,0x10,0x27,0x0d,0x7b,0x05,0x73,0x01,0x75,0x12,0x06,
5669
+0x00,0x31,0x00,0x00,0xff,0xff,0x00,0x4a,0x00,0x00,0x04,0xee,
5670
+0x06,0x64,0x10,0x27,0x02,0xad,0x04,0x52,0x00,0x00,0x12,0x06,
5671
+0x00,0x51,0x00,0x00,0x00,0x03,0xff,0xf4,0x00,0x00,0x05,0xdb,
5672
+0x07,0x6b,0x00,0x03,0x00,0x0e,0x00,0x30,0x00,0x00,0x01,0x27,
5673
+0x01,0x21,0x02,0x34,0x26,0x23,0x22,0x06,0x15,0x14,0x16,0x33,
5674
+0x32,0x13,0x33,0x07,0x16,0x17,0x16,0x15,0x14,0x07,0x06,0x07,
5675
+0x01,0x33,0x15,0x21,0x35,0x33,0x03,0x21,0x03,0x33,0x15,0x21,
5676
+0x35,0x33,0x01,0x26,0x27,0x26,0x35,0x34,0x37,0x36,0x37,0x02,
5677
+0xbe,0x22,0xfe,0xfe,0x02,0x24,0x47,0x59,0x3f,0x40,0x57,0x57,
5678
+0x40,0x3f,0x1e,0xc5,0xd2,0x40,0x33,0x50,0x27,0x17,0x24,0x01,
5679
+0xb8,0x93,0xfd,0xe1,0xa6,0x7d,0xfd,0x8c,0x7d,0xa4,0xfe,0x5c,
5680
+0x83,0x01,0xb6,0x23,0x18,0x25,0x50,0x3f,0x54,0x04,0xb6,0x02,
5681
+0xfd,0x65,0x03,0x57,0x7e,0x59,0x57,0x41,0x3f,0x58,0x02,0x4f,
5682
+0xb0,0x13,0x32,0x51,0x72,0x50,0x3f,0x26,0x1c,0xfb,0x88,0x6a,
5683
+0x6a,0x01,0x48,0xfe,0xb8,0x6a,0x6a,0x04,0x77,0x1d,0x25,0x3d,
5684
+0x53,0x72,0x51,0x3f,0x0d,0x00,0x00,0x00,0x00,0x04,0x00,0x66,
5685
+0xff,0xe3,0x04,0x8b,0x07,0x6b,0x00,0x0a,0x00,0x28,0x00,0x36,
5686
+0x00,0x42,0x00,0x00,0x01,0x35,0x23,0x22,0x06,0x15,0x14,0x16,
5687
+0x33,0x32,0x36,0x13,0x11,0x33,0x15,0x21,0x35,0x0e,0x01,0x23,
5688
+0x22,0x26,0x35,0x34,0x36,0x33,0x21,0x35,0x34,0x26,0x23,0x22,
5689
+0x06,0x07,0x23,0x35,0x3e,0x01,0x33,0x32,0x16,0x01,0x33,0x07,
5690
+0x16,0x17,0x16,0x14,0x06,0x22,0x26,0x34,0x37,0x36,0x37,0x13,
5691
+0x34,0x26,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x03,
5692
+0x2f,0xed,0x89,0x86,0x88,0x74,0x73,0x8d,0xb8,0xa4,0xfe,0xa4,
5693
+0x3d,0xa0,0x6b,0xb1,0xd0,0xee,0xd9,0x01,0x02,0x93,0x85,0x6e,
5694
+0x82,0x10,0x5f,0x60,0xb5,0x56,0xdd,0xe7,0xfe,0xae,0xc5,0xb8,
5695
+0x31,0x29,0x4f,0x9f,0xe6,0x9f,0x4f,0x48,0x64,0xaf,0x58,0x40,
5696
+0x41,0x57,0x57,0x41,0x40,0x58,0x01,0x4e,0xe1,0x76,0x7a,0x6f,
5697
+0x82,0x8e,0x01,0xbc,0xfd,0xd2,0x6a,0x73,0x4a,0x46,0xbc,0xa0,
5698
+0xa5,0xb6,0x49,0x79,0x85,0x64,0x62,0xd7,0x29,0x29,0xdb,0x04,
5699
+0x02,0xb9,0x14,0x28,0x50,0xe6,0xa0,0xa0,0xe6,0x50,0x47,0x07,
5700
+0xfe,0xef,0x3f,0x58,0x57,0x40,0x41,0x57,0x58,0x00,0x00,0x00,
5701
+0xff,0xff,0xff,0xdd,0x00,0x00,0x07,0x98,0x07,0x6b,0x10,0x27,
5702
+0x0d,0x79,0x06,0xac,0x01,0x75,0x12,0x06,0x00,0x88,0x00,0x00,
5703
+0xff,0xff,0x00,0x66,0xff,0xe3,0x07,0x1e,0x06,0x6b,0x10,0x27,
5704
+0x02,0xae,0x05,0x9e,0x00,0x05,0x12,0x06,0x00,0xa8,0x00,0x00,
5705
+0xff,0xff,0x00,0x64,0xff,0xc7,0x06,0x27,0x07,0x6b,0x10,0x27,
5706
+0x0d,0x79,0x05,0x49,0x01,0x75,0x12,0x06,0x00,0x9a,0x00,0x00,
5707
+0xff,0xff,0x00,0x4c,0xff,0xa2,0x04,0x7d,0x06,0x66,0x10,0x27,
5708
+0x02,0xae,0x04,0xd1,0x00,0x00,0x12,0x06,0x00,0xba,0x00,0x00,
5709
+0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,0x07,0x6b,0x10,0x27,
5710
+0x0d,0x82,0x04,0xd0,0x01,0x75,0x12,0x06,0x00,0x24,0x00,0x00,
5711
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x8b,0x06,0x66,0x10,0x27,
5712
+0x02,0xbc,0x04,0x39,0x00,0x00,0x12,0x06,0x00,0x44,0x00,0x00,
5713
+0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,0x07,0x6d,0x10,0x27,
5714
+0x0d,0x7e,0x04,0xe3,0x01,0x75,0x12,0x06,0x00,0x24,0x00,0x00,
5715
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x8b,0x06,0x48,0x10,0x27,
5716
+0x02,0xbe,0x04,0x39,0x00,0x00,0x12,0x06,0x00,0x44,0x00,0x00,
5717
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,0x07,0x6b,0x10,0x27,
5718
+0x0d,0x82,0x04,0xee,0x01,0x75,0x12,0x06,0x00,0x28,0x00,0x00,
5719
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x56,0x06,0x66,0x10,0x27,
5720
+0x02,0xbc,0x04,0x5e,0x00,0x00,0x12,0x06,0x00,0x48,0x00,0x00,
5721
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,0x07,0x6d,0x10,0x27,
5722
+0x0d,0x7e,0x04,0xec,0x01,0x75,0x12,0x06,0x00,0x28,0x00,0x00,
5723
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x56,0x06,0x48,0x10,0x27,
5724
+0x02,0xbe,0x04,0x5e,0x00,0x00,0x12,0x06,0x00,0x48,0x00,0x00,
5725
+0xff,0xff,0xff,0xda,0x00,0x00,0x02,0xb8,0x07,0x6b,0x10,0x27,
5726
+0x0d,0x82,0x03,0x86,0x01,0x75,0x12,0x06,0x00,0x2c,0x00,0x00,
5727
+0xff,0xff,0xff,0x86,0x00,0x00,0x02,0x60,0x06,0x66,0x10,0x26,
5728
+0x00,0xf3,0x00,0x00,0x10,0x07,0x02,0xbc,0x03,0x45,0x00,0x00,
5729
+0xff,0xff,0x00,0x5f,0x00,0x00,0x02,0xcd,0x07,0x6d,0x10,0x27,
5730
+0x0d,0x7e,0x03,0x96,0x01,0x75,0x12,0x06,0x00,0x2c,0x00,0x00,
5731
+0xff,0xff,0x00,0x0f,0x00,0x00,0x02,0x81,0x06,0x48,0x10,0x27,
5732
+0x02,0xbe,0x03,0x48,0x00,0x00,0x10,0x06,0x00,0xf3,0x00,0x00,
5733
+0xff,0xff,0x00,0x73,0xff,0xe3,0x06,0x1d,0x07,0x6b,0x10,0x27,
5734
+0x0d,0x82,0x05,0x36,0x01,0x75,0x12,0x06,0x00,0x32,0x00,0x00,
5735
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,0x06,0x66,0x10,0x27,
5736
+0x02,0xbc,0x04,0x68,0x00,0x00,0x12,0x06,0x00,0x52,0x00,0x00,
5737
+0xff,0xff,0x00,0x73,0xff,0xe3,0x06,0x1d,0x07,0x6d,0x10,0x27,
5738
+0x0d,0x7e,0x05,0x48,0x01,0x75,0x12,0x06,0x00,0x32,0x00,0x00,
5739
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,0x06,0x48,0x10,0x27,
5740
+0x02,0xbe,0x04,0x68,0x00,0x00,0x12,0x06,0x00,0x52,0x00,0x00,
5741
+0xff,0xff,0x00,0x71,0x00,0x00,0x06,0x37,0x07,0x6b,0x10,0x27,
5742
+0x0d,0x82,0x04,0xca,0x01,0x75,0x12,0x06,0x00,0x35,0x00,0x00,
5743
+0xff,0xff,0x00,0x4a,0x00,0x00,0x03,0xd3,0x06,0x66,0x10,0x27,
5744
+0x02,0xbc,0x04,0x28,0x00,0x00,0x12,0x06,0x00,0x55,0x00,0x00,
5745
+0xff,0xff,0x00,0x71,0x00,0x00,0x06,0x37,0x07,0x6d,0x10,0x27,
5746
+0x0d,0x7e,0x04,0xdb,0x01,0x75,0x12,0x06,0x00,0x35,0x00,0x00,
5747
+0xff,0xff,0x00,0x4a,0x00,0x00,0x03,0xd3,0x06,0x48,0x10,0x27,
5748
+0x02,0xbe,0x04,0x28,0x00,0x00,0x12,0x06,0x00,0x55,0x00,0x00,
5749
+0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,0x07,0x6b,0x10,0x27,
5750
+0x0d,0x82,0x05,0x74,0x01,0x75,0x12,0x06,0x00,0x38,0x00,0x00,
5751
+0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,0x06,0x66,0x10,0x27,
5752
+0x02,0xbc,0x04,0x48,0x00,0x00,0x12,0x06,0x00,0x58,0x00,0x00,
5753
+0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,0x07,0x6d,0x10,0x27,
5754
+0x0d,0x7e,0x05,0x87,0x01,0x75,0x12,0x06,0x00,0x38,0x00,0x00,
5755
+0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,0x06,0x48,0x10,0x27,
5756
+0x02,0xbe,0x04,0x48,0x00,0x00,0x12,0x06,0x00,0x58,0x00,0x00,
5757
+0xff,0xff,0x00,0xac,0xfe,0x34,0x04,0xe5,0x05,0xf0,0x12,0x26,
5758
+0x00,0x36,0x00,0x00,0x10,0x07,0x02,0xd3,0x04,0xd9,0x00,0x00,
5759
+0xff,0xff,0x00,0x73,0xfe,0x34,0x03,0xb2,0x04,0x44,0x12,0x26,
5760
+0x00,0x56,0x00,0x00,0x10,0x07,0x02,0xd3,0x04,0x00,0x00,0x00,
5761
+0xff,0xff,0x00,0x14,0xfe,0x34,0x05,0x42,0x05,0xd5,0x12,0x26,
5762
+0x00,0x37,0x00,0x00,0x10,0x07,0x02,0xd3,0x04,0x87,0x00,0x00,
5763
+0xff,0xff,0x00,0x3b,0xfe,0x34,0x03,0x27,0x05,0x71,0x12,0x26,
5764
+0x00,0x57,0x00,0x00,0x10,0x07,0x02,0xd3,0x03,0xcf,0x00,0x00,
5765
+0x00,0x01,0x00,0x9c,0xfe,0x52,0x04,0x73,0x05,0xf0,0x00,0x22,
5766
+0x00,0x00,0x13,0x24,0x20,0x04,0x10,0x06,0x07,0x1e,0x01,0x15,
5767
+0x14,0x00,0x04,0x07,0x35,0x36,0x24,0x36,0x10,0x27,0x26,0x0f,
5768
+0x01,0x35,0x37,0x36,0x37,0x36,0x10,0x2e,0x01,0x07,0x06,0x07,
5769
+0x23,0x9c,0x01,0x3c,0x01,0x6e,0x01,0x0a,0x99,0x78,0x8a,0xaa,
5770
+0xfe,0xe8,0xfe,0x1f,0xde,0xc0,0x01,0x60,0xd8,0x46,0x77,0xa8,
5771
+0xe7,0xea,0x8a,0x65,0x4c,0xa8,0xed,0x5f,0x51,0x1b,0x71,0x05,
5772
+0x6f,0x81,0xd1,0xfe,0xa4,0xd4,0x4d,0x13,0xe4,0x71,0xda,0xfe,
5773
+0xf7,0xbc,0x49,0x73,0x45,0xad,0xe5,0x01,0x0f,0x47,0x79,0x52,
5774
+0x71,0x6c,0x7b,0x49,0x88,0x67,0x01,0x38,0x86,0x0a,0x67,0x67,
5775
+0xaa,0x00,0x00,0x00,0x00,0x01,0x00,0x47,0xfe,0x4f,0x03,0xbc,
5776
+0x04,0x3e,0x00,0x25,0x00,0x00,0x01,0x06,0x07,0x23,0x11,0x36,
5777
+0x24,0x04,0x16,0x14,0x06,0x07,0x1e,0x01,0x15,0x14,0x06,0x04,
5778
+0x07,0x35,0x36,0x24,0x37,0x36,0x34,0x27,0x26,0x0f,0x01,0x35,
5779
+0x37,0x36,0x37,0x36,0x34,0x26,0x23,0x22,0x01,0x32,0x67,0x19,
5780
+0x6b,0x5a,0x00,0xff,0x01,0x14,0xe8,0x89,0x6c,0x7c,0x99,0xff,
5781
+0xfe,0x2d,0xa3,0x9d,0x01,0x49,0x6d,0x54,0x3e,0x61,0x9f,0xce,
5782
+0xce,0x74,0x56,0x4d,0x8f,0x58,0x69,0x03,0xaf,0x43,0xa8,0x01,
5783
+0x10,0x2b,0x43,0x09,0xa4,0xfb,0xac,0x3f,0x0f,0xaf,0x51,0xb1,
5784
+0xd9,0xa6,0x21,0x64,0x2b,0x8a,0x67,0x50,0xcd,0x39,0x58,0x3e,
5785
+0x50,0x64,0x56,0x30,0x67,0x5e,0xd1,0x6d,0xff,0xff,0x00,0x71,
5786
+0x00,0x00,0x06,0x89,0x07,0x6b,0x10,0x27,0x0d,0x7d,0x05,0x82,
5787
+0x01,0x75,0x12,0x06,0x00,0x2b,0x00,0x00,0xff,0xff,0x00,0x0c,
5788
+0x00,0x00,0x04,0xee,0x07,0xb1,0x10,0x27,0x0d,0x7d,0x03,0x4b,
5789
+0x01,0xbb,0x12,0x06,0x00,0x4b,0x00,0x00,0x00,0x01,0x00,0x60,
5790
+0xfe,0x56,0x06,0x62,0x05,0xf3,0x00,0x1d,0x00,0x00,0x33,0x35,
5791
+0x33,0x11,0x23,0x35,0x21,0x15,0x3e,0x01,0x33,0x32,0x12,0x19,
5792
+0x01,0x33,0x15,0x21,0x35,0x33,0x11,0x10,0x26,0x23,0x22,0x02,
5793
+0x15,0x11,0x33,0x15,0x60,0xbf,0xb0,0x01,0x7b,0x4a,0xea,0x9b,
5794
+0xfd,0xee,0xbe,0xfd,0xb6,0xbf,0x96,0xbe,0xc8,0xd1,0xbe,0x6b,
5795
+0x04,0xff,0x6b,0xc9,0x72,0x74,0xfe,0xdd,0xfe,0xcb,0xfb,0x27,
5796
+0x6b,0x6b,0x04,0xb0,0x01,0x24,0xda,0xfe,0xff,0xf7,0xfc,0xf4,
5797
+0x6b,0x00,0x00,0x00,0x00,0x03,0x00,0x66,0xff,0x6a,0x06,0x60,
5798
+0x06,0x14,0x00,0x09,0x00,0x16,0x00,0x39,0x00,0x00,0x05,0x20,
5799
+0x35,0x34,0x21,0x22,0x07,0x06,0x17,0x16,0x01,0x35,0x34,0x26,
5800
+0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x17,0x32,0x3b,
5801
+0x01,0x20,0x07,0x06,0x21,0x22,0x27,0x26,0x27,0x06,0x1d,0x01,
5802
+0x23,0x37,0x36,0x37,0x06,0x07,0x06,0x23,0x22,0x02,0x10,0x12,
5803
+0x33,0x32,0x16,0x17,0x11,0x23,0x35,0x21,0x04,0xe7,0x01,0x0b,
5804
+0xfe,0x5d,0x0e,0x0e,0x08,0x35,0x2e,0xfe,0xed,0x93,0x8c,0x8e,
5805
+0x91,0x91,0x8e,0x8c,0x93,0xb8,0x07,0x08,0x09,0x02,0x1a,0x05,
5806
+0x04,0xfe,0x89,0xa1,0x66,0x41,0x17,0x1f,0x64,0x01,0x01,0x0c,
5807
+0x0f,0x10,0x54,0x7b,0xc4,0xf9,0xf8,0xc5,0x7b,0xa7,0x36,0xae,
5808
+0x01,0x66,0x33,0x6b,0x7b,0x01,0x5f,0x48,0x3e,0x02,0x12,0x69,
5809
+0xbf,0xca,0xe0,0xdd,0xdc,0xe2,0xc9,0x08,0xe6,0xc7,0x5d,0x3d,
5810
+0x47,0x3d,0x5f,0x40,0x40,0x42,0x36,0x0b,0x0a,0x2f,0x01,0x37,
5811
+0x01,0xf4,0x01,0x36,0x5f,0x64,0x02,0x29,0x6a,0x00,0x00,0x00,
5812
+0x00,0x02,0x00,0x52,0xff,0xe3,0x04,0x5a,0x05,0xf0,0x00,0x19,
5813
+0x00,0x21,0x00,0x00,0x01,0x14,0x05,0x36,0x35,0x34,0x23,0x35,
5814
+0x20,0x11,0x14,0x05,0x04,0x15,0x10,0x21,0x20,0x11,0x34,0x25,
5815
+0x24,0x35,0x10,0x05,0x15,0x22,0x01,0x20,0x11,0x34,0x25,0x04,
5816
+0x15,0x10,0x01,0x32,0x01,0x58,0xdd,0xdc,0x01,0x81,0xfe,0xe9,
5817
+0x01,0x65,0xfd,0xef,0xfe,0x09,0x01,0x44,0xfe,0xf2,0x01,0x61,
5818
+0xb7,0x01,0x17,0x01,0x2b,0xfe,0x8e,0xfe,0xf7,0x04,0x84,0x69,
5819
+0xa9,0x74,0xc4,0xe5,0x61,0xfe,0xa2,0xc8,0x93,0xd4,0xf3,0xfe,
5820
+0x73,0x01,0x8d,0xeb,0xa9,0x9d,0xb5,0x01,0x12,0x02,0x62,0xfb,
5821
+0x42,0x01,0x2a,0xaf,0xac,0x84,0xd7,0xfe,0xd6,0x00,0x00,0x00,
5822
+0x00,0x02,0x00,0x66,0xff,0xe3,0x04,0x04,0x06,0x14,0x00,0x07,
5823
+0x00,0x20,0x00,0x00,0x25,0x20,0x11,0x34,0x25,0x06,0x15,0x10,
5824
+0x01,0x34,0x27,0x37,0x16,0x15,0x14,0x07,0x04,0x11,0x10,0x20,
5825
+0x11,0x10,0x25,0x26,0x35,0x34,0x37,0x17,0x06,0x15,0x14,0x05,
5826
+0x36,0x02,0x35,0x01,0x17,0xfe,0xa8,0xfb,0x02,0x3b,0x82,0x70,
5827
+0xa7,0xf1,0x01,0x2c,0xfc,0x62,0x01,0x27,0xfb,0xb2,0x53,0x79,
5828
+0x01,0x51,0xc5,0x46,0x01,0x34,0xd2,0xa9,0x80,0xfb,0xfe,0xcc,
5829
+0x04,0x9e,0x60,0x95,0x3b,0x9c,0xc0,0xdb,0x81,0xc0,0xfe,0xde,
5830
+0xfe,0x69,0x01,0x97,0x01,0x0f,0xa5,0x97,0xe0,0x96,0xd9,0x34,
5831
+0x9d,0x6d,0x8f,0xaf,0x6c,0x00,0x00,0x00,0x00,0x01,0x00,0x5c,
5832
+0xfe,0x81,0x05,0x3f,0x05,0xd5,0x00,0x13,0x00,0x00,0x33,0x35,
5833
+0x01,0x21,0x15,0x23,0x11,0x21,0x15,0x01,0x21,0x33,0x0e,0x01,
5834
+0x07,0x27,0x36,0x37,0x36,0x37,0x5c,0x03,0xa2,0xfc,0xfc,0x7b,
5835
+0x04,0x9c,0xfc,0x5e,0x03,0x01,0xc5,0x08,0x91,0x92,0x50,0x5e,
5836
+0x2c,0x1d,0x0a,0x48,0x05,0x12,0xdf,0x01,0x5a,0x48,0xfa,0xee,
5837
+0xab,0xf5,0x5a,0x50,0x45,0x5e,0x3d,0x4f,0x00,0x01,0x00,0x52,
5838
+0xfe,0x70,0x03,0xec,0x04,0x27,0x00,0x13,0x00,0x00,0x33,0x35,
5839
+0x01,0x21,0x15,0x23,0x11,0x21,0x15,0x01,0x21,0x33,0x0e,0x01,
5840
+0x07,0x27,0x36,0x37,0x36,0x37,0x52,0x02,0x9a,0xfd,0xf1,0x6a,
5841
+0x03,0x66,0xfd,0x66,0x01,0xe8,0xc5,0x08,0x91,0x92,0x50,0x5e,
5842
+0x2c,0x20,0x09,0x56,0x03,0x66,0xb8,0x01,0x23,0x56,0xfc,0x99,
5843
+0xab,0xf5,0x5a,0x50,0x45,0x5d,0x45,0x59,0xff,0xff,0xff,0xf4,
5844
+0x00,0x00,0x05,0xdb,0x07,0x5e,0x10,0x27,0x0d,0x80,0x04,0xe3,
5845
+0x01,0x75,0x12,0x06,0x00,0x24,0x00,0x00,0xff,0xff,0x00,0x66,
5846
+0xff,0xe3,0x04,0x8b,0x06,0x21,0x10,0x27,0x02,0xb4,0x04,0x39,
5847
+0x00,0x00,0x12,0x06,0x00,0x44,0x00,0x00,0xff,0xff,0x00,0x71,
5848
+0xfe,0x75,0x05,0x33,0x05,0xd5,0x10,0x27,0x02,0xd4,0x05,0x19,
5849
+0x00,0x00,0x12,0x06,0x00,0x28,0x00,0x00,0xff,0xff,0x00,0x66,
5850
+0xfe,0x75,0x04,0x56,0x04,0x44,0x10,0x27,0x02,0xd4,0x04,0x53,
5851
+0x00,0x00,0x12,0x06,0x00,0x48,0x00,0x00,0xff,0xff,0x00,0x73,
5852
+0xff,0xe3,0x06,0x1d,0x08,0x33,0x10,0x27,0x0d,0x8b,0x00,0x8c,
5853
+0x00,0x00,0x12,0x06,0x00,0x32,0x00,0x00,0xff,0xff,0x00,0x66,
5854
+0xff,0xe3,0x04,0x6a,0x07,0x17,0x10,0x27,0x0d,0x8b,0xff,0xac,
5855
+0xfe,0xe4,0x12,0x06,0x00,0x52,0x00,0x00,0xff,0xff,0x00,0x73,
5856
+0xff,0xe3,0x06,0x1d,0x08,0x33,0x10,0x27,0x0d,0x92,0x00,0x88,
5857
+0x00,0x00,0x12,0x06,0x00,0x32,0x00,0x00,0xff,0xff,0x00,0x66,
5858
+0xff,0xe3,0x04,0x6a,0x06,0xe6,0x10,0x27,0x0d,0x92,0xff,0xa8,
5859
+0xfe,0xb3,0x12,0x06,0x00,0x52,0x00,0x00,0xff,0xff,0x00,0x73,
5860
+0xff,0xe3,0x06,0x1d,0x07,0x5c,0x10,0x27,0x0d,0x80,0x05,0x48,
5861
+0x01,0x73,0x12,0x06,0x00,0x32,0x00,0x00,0xff,0xff,0x00,0x66,
5862
+0xff,0xe3,0x04,0x6a,0x06,0x20,0x10,0x26,0x02,0x97,0x68,0xff,
5863
+0x12,0x06,0x00,0x52,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x73,
5864
+0xff,0xe3,0x06,0x1d,0x08,0x33,0x10,0x27,0x0d,0x8d,0x00,0x8c,
5865
+0x00,0x00,0x12,0x06,0x00,0x32,0x00,0x00,0xff,0xff,0x00,0x66,
5866
+0xff,0xe3,0x04,0x6a,0x07,0x19,0x10,0x27,0x0d,0x8d,0xff,0xac,
5867
+0xfe,0xe6,0x12,0x06,0x00,0x52,0x00,0x00,0xff,0xff,0xff,0xe9,
5868
+0x00,0x00,0x05,0x5a,0x07,0x32,0x10,0x27,0x00,0x71,0x00,0xa2,
5869
+0x01,0x3c,0x12,0x06,0x00,0x3c,0x00,0x00,0xff,0xff,0xff,0xfa,
5870
+0xfe,0x39,0x04,0x7f,0x05,0xf6,0x10,0x26,0x00,0x71,0x3c,0x00,
5871
+0x12,0x06,0x00,0x5c,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x3b,
5872
+0xff,0x25,0x03,0xde,0x06,0x14,0x00,0x07,0x00,0x20,0x00,0x00,
5873
+0x25,0x16,0x33,0x16,0x35,0x34,0x07,0x06,0x27,0x14,0x17,0x36,
5874
+0x33,0x32,0x15,0x14,0x21,0x22,0x27,0x06,0x17,0x15,0x23,0x37,
5875
+0x36,0x37,0x27,0x26,0x35,0x11,0x23,0x35,0x21,0x02,0x03,0x44,
5876
+0x8a,0x9f,0x6f,0xb4,0xa9,0x24,0x8d,0xbd,0xcc,0xfe,0xf1,0x99,
5877
+0x6b,0x09,0x01,0x72,0x01,0x03,0x18,0x13,0x6e,0xb1,0x01,0x69,
5878
+0xa4,0x5e,0x02,0x6d,0x7c,0x01,0x02,0xea,0x9f,0x69,0x8c,0xee,
5879
+0xc7,0x47,0x20,0x55,0x90,0x90,0x65,0x4f,0x13,0xab,0xed,0x03,
5880
+0x96,0x6a,0x00,0x00,0x00,0x02,0x00,0x4a,0xff,0x25,0x06,0x84,
5881
+0x04,0x44,0x00,0x07,0x00,0x34,0x00,0x00,0x25,0x16,0x33,0x16,
5882
+0x35,0x34,0x07,0x06,0x01,0x34,0x26,0x23,0x22,0x06,0x15,0x11,
5883
+0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x3e,0x01,
5884
+0x33,0x32,0x16,0x1d,0x01,0x14,0x17,0x36,0x33,0x32,0x15,0x14,
5885
+0x21,0x22,0x27,0x06,0x17,0x15,0x23,0x37,0x36,0x37,0x27,0x26,
5886
+0x35,0x04,0xa9,0x44,0x8a,0x9f,0x6f,0xb4,0xfe,0x9e,0x60,0x79,
5887
+0x80,0x86,0xa0,0xfe,0x02,0xa6,0xb0,0x01,0x68,0x33,0xa3,0x6c,
5888
+0xb0,0xa6,0x24,0x8d,0xbd,0xcc,0xfe,0xf1,0x99,0x6b,0x09,0x01,
5889
+0x72,0x01,0x03,0x18,0x13,0x6f,0xa4,0x5e,0x02,0x6d,0x7c,0x01,
5890
+0x02,0x01,0x40,0xc3,0x91,0xbb,0xb3,0xfe,0x1a,0x6a,0x6a,0x03,
5891
+0x52,0x6b,0xbd,0x6c,0x6e,0xca,0xd6,0x90,0xb1,0x57,0x8c,0xee,
5892
+0xc7,0x47,0x20,0x55,0x90,0x90,0x65,0x4f,0x13,0xac,0xec,0x00,
5893
+0x00,0x02,0x00,0x3b,0xff,0x25,0x03,0xd0,0x05,0x71,0x00,0x07,
5894
+0x00,0x26,0x00,0x00,0x25,0x16,0x33,0x16,0x35,0x34,0x07,0x06,
5895
+0x03,0x11,0x14,0x17,0x36,0x33,0x32,0x15,0x14,0x21,0x22,0x27,
5896
+0x06,0x17,0x15,0x23,0x37,0x36,0x37,0x27,0x26,0x35,0x11,0x23,
5897
+0x35,0x33,0x11,0x33,0x11,0x21,0x15,0x01,0xf5,0x44,0x8a,0x9f,
5898
+0x6f,0xb4,0xa9,0x24,0x8d,0xbd,0xcc,0xfe,0xf1,0x99,0x6b,0x09,
5899
+0x01,0x72,0x01,0x03,0x18,0x13,0x6f,0xa2,0xa2,0xb9,0x01,0x5a,
5900
+0xa4,0x5e,0x02,0x6d,0x7c,0x01,0x02,0x02,0x92,0xfe,0x58,0x9f,
5901
+0x69,0x8c,0xee,0xc7,0x47,0x20,0x55,0x90,0x90,0x65,0x4f,0x13,
5902
+0xac,0xec,0x01,0xa8,0x6b,0x01,0x4a,0xfe,0xb6,0x6b,0x00,0x00,
5903
+0x00,0x01,0xff,0x3b,0xfe,0x39,0x01,0xb2,0x04,0x27,0x00,0x12,
5904
+0x00,0x55,0x40,0x0c,0x0c,0x2d,0x0a,0x0a,0x36,0x03,0x27,0x01,
5905
+0x2c,0x00,0x30,0x13,0x10,0xf4,0xe4,0xfc,0xe4,0x10,0xee,0x31,
5906
+0x40,0x10,0x12,0x04,0x0b,0x00,0x0b,0x0a,0x0f,0x8f,0x07,0x00,
5907
+0x7a,0x02,0x9c,0x07,0x9d,0x13,0x00,0x10,0xec,0xfc,0xec,0x10,
5908
+0xee,0xd6,0xc6,0x11,0x12,0x39,0x39,0x30,0xb6,0x2f,0x14,0x60,
5909
+0x14,0x70,0x14,0x03,0x01,0x5d,0x01,0x4b,0xb0,0x15,0x54,0x58,
5910
+0xb9,0x00,0x13,0x00,0x40,0x38,0x59,0xb4,0x73,0x0b,0x73,0x0c,
5911
+0x02,0x00,0x5d,0x13,0x23,0x35,0x21,0x11,0x14,0x06,0x23,0x22,
5912
+0x26,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0xfa,0xae,
5913
+0x01,0x66,0xc3,0xab,0x48,0x83,0x3e,0x5f,0x07,0x55,0x52,0x5b,
5914
+0x57,0x03,0xbc,0x6b,0xfb,0x71,0xa4,0xbb,0x21,0x21,0xdb,0x60,
5915
+0x5a,0x7b,0x81,0x00,0x00,0x03,0x00,0x66,0xff,0xe3,0x07,0x47,
5916
+0x06,0x14,0x00,0x0c,0x00,0x19,0x00,0x37,0x00,0x00,0x01,0x35,
5917
+0x34,0x26,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x37,
5918
+0x14,0x16,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x22,0x06,0x15,
5919
+0x03,0x35,0x0e,0x01,0x23,0x22,0x02,0x10,0x12,0x33,0x32,0x16,
5920
+0x17,0x11,0x23,0x35,0x21,0x11,0x3e,0x01,0x33,0x32,0x12,0x10,
5921
+0x02,0x23,0x22,0x26,0x27,0x15,0x03,0x7b,0x93,0x8c,0x8e,0x91,
5922
+0x91,0x8e,0x8c,0x93,0xb8,0x93,0x8c,0x8d,0x91,0x91,0x8d,0x8c,
5923
+0x93,0xb8,0x36,0xa7,0x7b,0xc4,0xf9,0xf8,0xc5,0x7b,0xa7,0x36,
5924
+0xb1,0x01,0x69,0x36,0xa7,0x7b,0xc4,0xf8,0xf8,0xc4,0x7b,0xa7,
5925
+0x36,0x01,0xdf,0x69,0xbf,0xca,0xe0,0xdd,0xdc,0xe2,0xc9,0xc0,
5926
+0xc0,0xc9,0xe2,0xdc,0xdd,0xe0,0xca,0xbf,0xfd,0xb8,0xa6,0x64,
5927
+0x5f,0x01,0x37,0x01,0xf4,0x01,0x36,0x5f,0x64,0x02,0x29,0x6a,
5928
+0xfd,0x6d,0x64,0x5f,0xfe,0xca,0xfe,0x0c,0xfe,0xc9,0x5f,0x64,
5929
+0xa6,0x00,0x00,0x00,0x00,0x03,0x00,0x66,0xfe,0x56,0x07,0x47,
5930
+0x04,0x44,0x00,0x0c,0x00,0x30,0x00,0x3d,0x00,0x00,0x01,0x34,
5931
+0x26,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x35,0x11,
5932
+0x35,0x33,0x1d,0x01,0x3e,0x01,0x33,0x32,0x12,0x10,0x02,0x23,
5933
+0x22,0x26,0x27,0x11,0x3b,0x01,0x15,0x23,0x21,0x35,0x33,0x11,
5934
+0x0e,0x01,0x23,0x22,0x02,0x10,0x12,0x33,0x32,0x16,0x17,0x13,
5935
+0x15,0x14,0x16,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x22,0x06,
5936
+0x03,0x7b,0x93,0x8c,0x8e,0x91,0x91,0x8e,0x8c,0x93,0xb8,0x36,
5937
+0xa7,0x7b,0xc4,0xf8,0xf8,0xc4,0x7b,0xa7,0x36,0xae,0x02,0x02,
5938
+0xfd,0xec,0xae,0x36,0xa7,0x7b,0xc4,0xf9,0xf8,0xc5,0x7b,0xa7,
5939
+0x36,0xb8,0x93,0x8c,0x8d,0x91,0x91,0x8d,0x8c,0x93,0x02,0x48,
5940
+0xbf,0xca,0xe0,0xdd,0xdc,0xe2,0xc9,0xc0,0x01,0xdd,0x6b,0x6b,
5941
+0x3b,0x64,0x5f,0xfe,0xca,0xfe,0x0c,0xfe,0xc9,0x5f,0x64,0xfe,
5942
+0x1b,0x6b,0x6b,0x01,0xe5,0x64,0x5f,0x01,0x37,0x01,0xf4,0x01,
5943
+0x36,0x5f,0x64,0xfe,0xc7,0x69,0xc0,0xc9,0xe2,0xdc,0xdd,0xe0,
5944
+0xca,0x00,0x00,0x00,0x00,0x04,0xff,0xf4,0xff,0xc7,0x05,0xdb,
5945
+0x06,0x0e,0x00,0x18,0x00,0x1b,0x00,0x1f,0x00,0x22,0x00,0x00,
5946
+0x23,0x35,0x33,0x37,0x01,0x33,0x13,0x01,0x17,0x09,0x01,0x33,
5947
+0x15,0x21,0x35,0x33,0x03,0x21,0x01,0x07,0x33,0x15,0x21,0x07,
5948
+0x27,0x01,0x37,0x23,0x01,0x03,0x01,0x3b,0x01,0x21,0x03,0x0c,
5949
+0x63,0x37,0x01,0xfd,0xa8,0x9d,0x01,0xa5,0x50,0xfe,0x35,0x01,
5950
+0x4e,0x93,0xfd,0xe1,0xa6,0x7d,0xfe,0x2a,0xfe,0xf0,0x0b,0xa4,
5951
+0xfe,0xec,0x34,0x40,0x01,0x56,0x1b,0x10,0x01,0xbf,0x84,0xfe,
5952
+0xee,0x48,0x8e,0x01,0x4e,0x64,0x6a,0x3d,0x05,0x2e,0xfe,0x68,
5953
+0x01,0xd1,0x47,0xfe,0x08,0xfc,0x9b,0x6a,0x6a,0x01,0x48,0xfe,
5954
+0xd6,0x1e,0x6a,0x39,0x39,0x01,0x94,0x1e,0x01,0xdb,0x01,0x56,
5955
+0xfd,0x3a,0x01,0x02,0x00,0x02,0x00,0x2e,0xff,0xc7,0x05,0xf1,
5956
+0x06,0x0e,0x00,0x24,0x00,0x2e,0x00,0x00,0x17,0x27,0x37,0x26,
5957
+0x27,0x26,0x35,0x10,0x00,0x21,0x32,0x17,0x16,0x17,0x37,0x17,
5958
+0x07,0x11,0x23,0x26,0x27,0x01,0x16,0x17,0x16,0x33,0x32,0x36,
5959
+0x37,0x33,0x06,0x04,0x23,0x22,0x26,0x2f,0x01,0x37,0x01,0x26,
5960
+0x27,0x26,0x23,0x22,0x02,0x11,0x14,0x7c,0x4e,0xd9,0x3a,0x23,
5961
+0x37,0x01,0x92,0x01,0x49,0x7a,0x8a,0x67,0x73,0x75,0x50,0x76,
5962
+0x71,0x0f,0x1a,0xfc,0xd7,0x0c,0x0f,0x7b,0xef,0xa7,0xd8,0x30,
5963
+0xb8,0x42,0xfe,0xc9,0xee,0x92,0xfa,0x61,0x04,0x3d,0x03,0x1e,
5964
+0x16,0x1b,0x70,0xc9,0xef,0xf6,0x39,0x45,0xf0,0x4f,0x5b,0x8f,
5965
+0xb4,0x01,0x5c,0x01,0xab,0x20,0x18,0x2a,0x80,0x47,0x82,0xfe,
5966
+0xd2,0x4a,0x3b,0xfc,0x86,0x16,0x14,0xaa,0x9f,0x9e,0xd1,0xd7,
5967
+0x64,0x61,0x04,0xde,0x03,0x71,0x1b,0x16,0x59,0xfe,0xad,0xfe,
5968
+0xb7,0xcf,0x00,0x00,0x00,0x02,0x00,0x25,0xff,0xa2,0x04,0x56,
5969
+0x04,0x85,0x00,0x20,0x00,0x2a,0x00,0x00,0x17,0x27,0x37,0x26,
5970
+0x35,0x10,0x00,0x33,0x32,0x17,0x16,0x17,0x37,0x17,0x07,0x11,
5971
+0x23,0x26,0x27,0x01,0x16,0x17,0x16,0x33,0x32,0x36,0x37,0x33,
5972
+0x0e,0x01,0x23,0x22,0x27,0x37,0x01,0x26,0x27,0x26,0x23,0x22,
5973
+0x06,0x15,0x14,0x71,0x4c,0xa9,0x68,0x01,0x1a,0xe8,0x65,0x64,
5974
+0x39,0x39,0x67,0x4c,0x5c,0x6b,0x09,0x10,0xfe,0x00,0x09,0x09,
5975
+0x4c,0x96,0x77,0x8e,0x1a,0x94,0x27,0xde,0xb0,0xd1,0x87,0x41,
5976
+0x01,0xef,0x06,0x06,0x47,0x83,0x95,0x98,0x5e,0x3f,0xc9,0x90,
5977
+0xda,0x00,0xff,0x01,0x31,0x18,0x0d,0x15,0x7b,0x3f,0x6e,0xfe,
5978
+0xfd,0x39,0x2d,0xfd,0x9f,0x11,0x0f,0x74,0x7c,0x7d,0xaa,0xb2,
5979
+0x7c,0xe7,0x02,0x4e,0x07,0x06,0x40,0xe7,0xe6,0x76,0x00,0x00,
5980
+0x00,0x01,0x00,0x67,0x00,0x00,0x05,0x1f,0x05,0xd5,0x00,0x15,
5981
+0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,0x33,0x11,0x23,0x35,
5982
+0x21,0x15,0x23,0x11,0x21,0x15,0x21,0x11,0x21,0x35,0x33,0x11,
5983
+0x71,0xbe,0xc8,0xc8,0xbe,0x02,0x47,0xbe,0x01,0x50,0xfe,0xb0,
5984
+0x02,0xaa,0x7b,0x6a,0x02,0x65,0x7d,0x02,0x1e,0x6b,0x6b,0xfd,
5985
+0xe2,0x7d,0xfd,0xac,0xfa,0xfe,0x8b,0x00,0x00,0x02,0xff,0xc9,
5986
+0xff,0xc7,0x05,0x8d,0x06,0x0e,0x00,0x16,0x00,0x19,0x00,0x00,
5987
+0x29,0x01,0x35,0x33,0x11,0x01,0x27,0x01,0x11,0x21,0x15,0x23,
5988
+0x11,0x21,0x37,0x17,0x07,0x11,0x23,0x35,0x01,0x11,0x33,0x13,
5989
+0x21,0x11,0x03,0xcf,0xfd,0xb8,0xbf,0xfd,0xd2,0x4e,0x02,0x7c,
5990
+0xfe,0x49,0x7b,0x04,0xf5,0x33,0x50,0x4a,0x7b,0xfe,0x49,0xbf,
5991
+0xce,0xfe,0x73,0x6a,0x01,0xc3,0xfd,0x9a,0x45,0x02,0xbe,0x02,
5992
+0x94,0xe9,0x01,0x60,0x39,0x47,0x52,0xff,0x00,0x79,0xfe,0x1d,
5993
+0xfd,0x5f,0x04,0xf4,0xfe,0x4a,0x00,0x00,0x00,0x01,0x00,0x73,
5994
+0xfe,0x39,0x03,0xb2,0x04,0x44,0x00,0x3f,0x00,0x00,0x05,0x17,
5995
+0x16,0x17,0x16,0x33,0x32,0x36,0x37,0x33,0x15,0x0e,0x01,0x23,
5996
+0x22,0x27,0x26,0x2f,0x01,0x26,0x27,0x26,0x27,0x35,0x33,0x1e,
5997
+0x01,0x33,0x32,0x36,0x35,0x34,0x26,0x2f,0x01,0x2e,0x01,0x35,
5998
+0x34,0x36,0x33,0x32,0x16,0x17,0x15,0x23,0x2e,0x01,0x23,0x22,
5999
+0x06,0x15,0x14,0x16,0x1f,0x01,0x1e,0x01,0x15,0x14,0x06,0x23,
6000
+0x22,0x27,0x01,0x98,0x4a,0x2a,0x1c,0x1d,0x50,0x2b,0x39,0x06,
6001
+0x5e,0x32,0x63,0x3d,0x8e,0x3e,0x5d,0x32,0x4f,0x1d,0x20,0x19,
6002
+0x18,0x6a,0x04,0x8d,0x8a,0x7c,0x82,0x5f,0x99,0x85,0x89,0x7b,
6003
+0xd6,0xbd,0x54,0xba,0x63,0x6a,0x04,0x88,0x75,0x74,0x77,0x5a,
6004
+0x87,0x92,0x97,0x85,0xe7,0xcb,0x37,0x36,0x21,0xa2,0x5d,0x1e,
6005
+0x1e,0x3b,0x44,0xcb,0x0f,0x10,0x28,0x3c,0x73,0xb7,0x43,0x1d,
6006
+0x09,0x0b,0xf8,0x77,0x76,0x5d,0x59,0x46,0x56,0x31,0x2d,0x2c,
6007
+0x84,0x66,0x92,0xa6,0x2c,0x2a,0xe8,0x67,0x74,0x52,0x52,0x43,
6008
+0x51,0x2a,0x2d,0x2f,0x8d,0x6f,0x97,0xad,0x06,0x00,0x00,0x00,
6009
+0x00,0x01,0x00,0x52,0xfe,0x39,0x04,0x37,0x04,0x27,0x00,0x20,
6010
+0x00,0x00,0x21,0x23,0x35,0x01,0x21,0x15,0x23,0x11,0x21,0x15,
6011
+0x01,0x33,0x32,0x1f,0x01,0x16,0x17,0x16,0x33,0x32,0x36,0x37,
6012
+0x33,0x15,0x0e,0x01,0x23,0x22,0x27,0x26,0x2f,0x01,0x26,0x01,
6013
+0x28,0xd6,0x02,0x9a,0xfd,0xf1,0x6a,0x03,0x66,0xfd,0x66,0x30,
6014
+0xe4,0x6d,0x23,0x2f,0x18,0x1c,0x29,0x2b,0x39,0x06,0x5e,0x32,
6015
+0x63,0x3d,0x67,0x3e,0x5e,0x31,0x28,0x3e,0x56,0x03,0x66,0xb8,
6016
+0x01,0x23,0x56,0xfc,0x99,0xe4,0x49,0x61,0x1a,0x1e,0x3b,0x44,
6017
+0xcb,0x0f,0x10,0x28,0x3c,0x73,0x5e,0x92,0x00,0x01,0x00,0x4c,
6018
+0x00,0x00,0x04,0x62,0x05,0xd5,0x00,0x20,0x00,0x00,0x01,0x22,
6019
+0x07,0x06,0x07,0x23,0x35,0x3e,0x01,0x33,0x21,0x32,0x04,0x15,
6020
+0x14,0x04,0x23,0x30,0x23,0x11,0x33,0x15,0x21,0x35,0x33,0x11,
6021
+0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x01,0x56,0x55,0x24,0x2b,
6022
+0x06,0x60,0x3e,0x84,0x48,0x01,0x26,0xe0,0x01,0x06,0xfe,0xf9,
6023
+0xdf,0x30,0xe7,0xfd,0x90,0xbe,0xca,0x95,0x9c,0x9c,0x95,0x05,
6024
+0x6b,0x26,0x2c,0x60,0xda,0x22,0x20,0xe3,0xc0,0xc2,0xe4,0xfd,
6025
+0xde,0x6a,0x6a,0x02,0x8e,0xa1,0x99,0x98,0xa1,0x00,0x00,0x00,
6026
+0x00,0x01,0x00,0x4c,0x00,0x00,0x03,0x6d,0x04,0x44,0x00,0x20,
6027
+0x00,0x00,0x01,0x32,0x37,0x36,0x35,0x34,0x27,0x26,0x23,0x22,
6028
+0x07,0x06,0x07,0x23,0x35,0x3e,0x01,0x3b,0x01,0x32,0x17,0x16,
6029
+0x15,0x14,0x07,0x06,0x07,0x15,0x33,0x15,0x21,0x35,0x33,0x01,
6030
+0x56,0x95,0x4e,0x4e,0x4e,0x4e,0x95,0x55,0x24,0x2b,0x06,0x60,
6031
+0x3e,0x84,0x48,0x31,0xe0,0x83,0x83,0x83,0x5a,0x83,0xe8,0xfd,
6032
+0xa3,0xbe,0x01,0x67,0x51,0x50,0x99,0x98,0x51,0x50,0x26,0x2c,
6033
+0x60,0xda,0x22,0x20,0x72,0x71,0xc0,0xc2,0x72,0x4d,0x19,0x9d,
6034
+0x6a,0x6a,0x00,0x00,0x00,0x03,0x00,0x67,0x00,0x00,0x05,0x64,
6035
+0x05,0xd5,0x00,0x16,0x00,0x1f,0x00,0x2c,0x00,0x00,0x33,0x35,
6036
+0x33,0x11,0x23,0x35,0x33,0x11,0x23,0x35,0x21,0x32,0x16,0x15,
6037
+0x14,0x06,0x07,0x1e,0x01,0x15,0x14,0x04,0x21,0x01,0x33,0x32,
6038
+0x36,0x35,0x34,0x26,0x2b,0x01,0x11,0x21,0x32,0x36,0x35,0x34,
6039
+0x26,0x23,0x21,0x11,0x21,0x15,0x21,0x71,0xbe,0xc8,0xc8,0xbe,
6040
+0x02,0xe1,0xe2,0xe5,0x9f,0x99,0xbe,0xc5,0xfe,0xe8,0xfe,0xd7,
6041
+0xfe,0xd7,0xfe,0xa4,0x97,0x97,0xa4,0xfe,0x01,0x2b,0xb4,0xa6,
6042
+0xa5,0xb5,0xfe,0xd5,0x01,0x4e,0xfe,0xb2,0x6a,0x01,0x07,0x7d,
6043
+0x03,0x7c,0x6b,0xb9,0xb8,0x85,0x9e,0x12,0x18,0xc3,0xa4,0xde,
6044
+0xd2,0x03,0x5e,0x7e,0x88,0x89,0x7d,0xfb,0x00,0x9c,0xaa,0xa9,
6045
+0x9b,0xfe,0xfa,0x7d,0x00,0x02,0x00,0x56,0xff,0xe3,0x06,0x6c,
6046
+0x05,0xd5,0x00,0x1b,0x00,0x23,0x00,0x00,0x01,0x23,0x35,0x21,
6047
+0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x33,
6048
+0x15,0x23,0x15,0x10,0x00,0x20,0x00,0x11,0x35,0x23,0x35,0x33,
6049
+0x05,0x21,0x15,0x10,0x16,0x20,0x36,0x11,0x01,0x1f,0xbf,0x02,
6050
+0x48,0xbf,0x03,0x40,0xbf,0x01,0xf8,0xbe,0xc8,0xc8,0xfe,0xfa,
6051
+0xfd,0x8c,0xfe,0xf5,0xc9,0xc9,0x04,0x0a,0xfc,0xc0,0xbb,0x01,
6052
+0xca,0xbb,0x05,0x6a,0x6b,0x6b,0xfd,0xe2,0x02,0x1e,0x6b,0x6b,
6053
+0xfd,0xe2,0x7d,0x7d,0xfe,0xab,0xfe,0xe6,0x01,0x1c,0x01,0x53,
6054
+0x7d,0x7d,0x7d,0x69,0xfe,0xe2,0xe2,0xe2,0x01,0x1e,0x00,0x00,
6055
+0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,0x05,0xd5,0x10,0x06,
6056
+0x03,0x14,0x00,0x00,0x00,0x03,0x00,0x71,0xff,0x91,0x05,0x33,
6057
+0x06,0x44,0x00,0x1f,0x00,0x22,0x00,0x26,0x00,0x00,0x01,0x17,
6058
+0x07,0x21,0x11,0x23,0x35,0x23,0x03,0x33,0x35,0x33,0x11,0x23,
6059
+0x35,0x23,0x03,0x21,0x35,0x33,0x11,0x21,0x07,0x27,0x37,0x21,
6060
+0x35,0x33,0x11,0x23,0x35,0x21,0x01,0x13,0x23,0x37,0x13,0x21,
6061
+0x11,0x03,0xcc,0x65,0x19,0x01,0x0b,0x7b,0xb7,0x9d,0x8f,0x7b,
6062
+0x7b,0xb5,0xc5,0x02,0x4f,0x7b,0xfd,0x0f,0x23,0x65,0x19,0xfe,
6063
+0x9e,0xbe,0xbe,0x03,0x38,0xfe,0x51,0xc4,0xc4,0xeb,0x9d,0xfe,
6064
+0x78,0x06,0x44,0x20,0x4f,0xfe,0xb4,0xd1,0xfe,0x0c,0xbb,0xfe,
6065
+0x10,0xbb,0xfd,0x8f,0xd1,0xfe,0xb4,0x6f,0x20,0x4f,0x6a,0x05,
6066
+0x00,0x6b,0xfa,0xa7,0x02,0x70,0x7a,0x01,0xf4,0xfe,0x0c,0x00,
6067
+0x00,0x04,0x00,0x66,0xff,0x91,0x04,0x56,0x04,0xa1,0x00,0x05,
6068
+0x00,0x25,0x00,0x2c,0x00,0x33,0x00,0x00,0x01,0x26,0x27,0x26,
6069
+0x27,0x0b,0x01,0x07,0x27,0x37,0x26,0x27,0x26,0x35,0x34,0x00,
6070
+0x33,0x32,0x17,0x37,0x17,0x07,0x16,0x17,0x16,0x13,0x21,0x03,
6071
+0x16,0x33,0x32,0x36,0x37,0x33,0x0e,0x01,0x23,0x22,0x13,0x26,
6072
+0x23,0x22,0x06,0x07,0x33,0x07,0x23,0x15,0x14,0x17,0x16,0x17,
6073
+0x03,0x7d,0x07,0x48,0x13,0x18,0x63,0xc2,0x1d,0x5f,0x1f,0x4f,
6074
+0x3e,0x8e,0x01,0x16,0xe2,0x37,0x32,0x1f,0x5f,0x1e,0x64,0x45,
6075
+0x81,0x05,0xfe,0x29,0x80,0x37,0x47,0x79,0x9b,0x1f,0x94,0x2c,
6076
+0xed,0xc1,0x4b,0x89,0x23,0x27,0x7f,0x92,0x10,0xfb,0x20,0xdb,
6077
+0x51,0x0c,0x0f,0x02,0x6a,0xba,0x5e,0x19,0x13,0xfe,0xbc,0xfd,
6078
+0x89,0x62,0x1c,0x66,0x25,0x44,0x9a,0xfe,0xfc,0x01,0x34,0x08,
6079
+0x65,0x1c,0x61,0x24,0x50,0x94,0xfe,0xe4,0xfe,0x5c,0x16,0x7f,
6080
+0x7d,0xaf,0xb0,0x03,0xf6,0x08,0xbe,0xb9,0x6a,0x08,0xd6,0x6e,
6081
+0x11,0x0e,0x00,0x00,0x00,0x01,0xff,0x54,0xfe,0x56,0x02,0xe1,
6082
+0x05,0xd5,0x00,0x1c,0x00,0x00,0x03,0x35,0x33,0x1e,0x01,0x33,
6083
+0x32,0x36,0x35,0x11,0x23,0x35,0x33,0x11,0x23,0x35,0x21,0x15,
6084
+0x23,0x11,0x33,0x15,0x23,0x11,0x14,0x06,0x23,0x22,0x26,0xac,
6085
+0x72,0x03,0x58,0x58,0x77,0x5e,0xf2,0xf2,0xe8,0x02,0x71,0xbe,
6086
+0xc8,0xc8,0xc6,0xdc,0x47,0x93,0xfe,0x9a,0xeb,0x63,0x61,0x96,
6087
+0xda,0x02,0x9e,0x7d,0x02,0x1e,0x6b,0x6b,0xfd,0xe2,0x7d,0xfd,
6088
+0x5a,0xf7,0xdc,0x22,0xff,0xff,0xff,0x3b,0xfe,0x39,0x02,0x60,
6089
+0x05,0xe3,0x10,0x26,0x0d,0x85,0x00,0x00,0x12,0x06,0x02,0x21,
6090
+0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x73,0xfe,0x56,0x07,0x23,
6091
+0x05,0xf0,0x00,0x1a,0x00,0x3e,0x00,0x00,0x25,0x32,0x3e,0x02,
6092
+0x3d,0x01,0x34,0x2e,0x02,0x23,0x22,0x0e,0x03,0x15,0x14,0x1e,
6093
+0x07,0x03,0x32,0x16,0x17,0x35,0x21,0x15,0x23,0x11,0x14,0x16,
6094
+0x33,0x32,0x36,0x37,0x33,0x15,0x0e,0x01,0x23,0x22,0x26,0x3d,
6095
+0x01,0x0e,0x03,0x23,0x22,0x27,0x26,0x11,0x34,0x12,0x24,0x02,
6096
+0xce,0x6c,0x9d,0x5c,0x2b,0x2b,0x5c,0x9e,0x6b,0x5b,0x8c,0x59,
6097
+0x38,0x17,0x11,0x1d,0x2c,0x2f,0x3c,0x36,0x43,0x32,0x06,0xa3,
6098
+0xcf,0x43,0x01,0x7b,0xb0,0x5e,0x77,0x58,0x58,0x03,0x72,0x49,
6099
+0x93,0x47,0xdc,0xc6,0x1b,0x41,0x66,0x95,0x5e,0xf9,0x9f,0x9e,
6100
+0x8c,0x01,0x02,0x4e,0x5b,0xa7,0xd5,0x85,0x80,0x84,0xd4,0xa8,
6101
+0x5b,0x43,0x74,0xac,0xc1,0x77,0x66,0xac,0x7f,0x66,0x44,0x32,
6102
+0x1b,0x10,0x04,0x05,0xa2,0x74,0x74,0xcd,0x6b,0xfa,0xc7,0xda,
6103
+0x96,0x61,0x63,0xeb,0x22,0x22,0xdc,0xf7,0xa1,0x2f,0x49,0x48,
6104
+0x27,0xd7,0xd5,0x01,0x5b,0xe4,0x01,0x5f,0xc3,0x00,0x00,0x00,
6105
+0x00,0x02,0x00,0x66,0xfe,0x39,0x05,0xf2,0x04,0x44,0x00,0x0c,
6106
+0x00,0x2b,0x00,0x00,0x01,0x35,0x34,0x26,0x23,0x22,0x06,0x15,
6107
+0x14,0x16,0x33,0x32,0x36,0x15,0x0e,0x01,0x23,0x22,0x02,0x10,
6108
+0x12,0x33,0x32,0x16,0x17,0x35,0x21,0x15,0x23,0x13,0x14,0x16,
6109
+0x33,0x32,0x36,0x37,0x33,0x15,0x0e,0x01,0x23,0x22,0x26,0x35,
6110
+0x03,0x7b,0x93,0x8c,0x8e,0x91,0x91,0x8e,0x8c,0x93,0x36,0xa7,
6111
+0x7b,0xc4,0xf9,0xf8,0xc5,0x7b,0xa7,0x36,0x01,0x68,0xb0,0x01,
6112
+0x56,0x5b,0x52,0x55,0x07,0x5f,0x39,0x88,0x48,0xad,0xc1,0x01,
6113
+0xdf,0x69,0xbf,0xca,0xe0,0xdd,0xdc,0xe2,0xc9,0x79,0x64,0x5f,
6114
+0x01,0x37,0x01,0xf4,0x01,0x36,0x5f,0x64,0xa6,0x6b,0xfb,0xdc,
6115
+0x83,0x79,0x5a,0x60,0xdb,0x1f,0x23,0xbb,0xa4,0x00,0x00,0x00,
6116
+0x00,0x02,0x00,0x67,0x00,0x00,0x06,0x37,0x05,0xd5,0x00,0x07,
6117
+0x00,0x29,0x00,0x00,0x01,0x21,0x32,0x36,0x10,0x26,0x23,0x21,
6118
+0x01,0x16,0x17,0x16,0x17,0x13,0x33,0x15,0x21,0x03,0x26,0x27,
6119
+0x26,0x2b,0x01,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,
6120
+0x33,0x11,0x23,0x35,0x21,0x32,0x16,0x15,0x14,0x06,0x01,0xfa,
6121
+0x01,0x27,0x97,0x90,0x90,0x97,0xfe,0xd9,0x01,0xdb,0x47,0x32,
6122
+0x32,0x28,0xd9,0xb6,0xfe,0xa0,0xe9,0x44,0x37,0x38,0x62,0xdf,
6123
+0xd3,0xfd,0xa4,0xbe,0xc8,0xc8,0xbe,0x02,0xf5,0xda,0xed,0xad,
6124
+0x03,0x21,0x8f,0x01,0x2c,0x8e,0xfd,0x7b,0x13,0x2e,0x2d,0x52,
6125
+0xfe,0x45,0x6a,0x01,0xdb,0x8b,0x28,0x28,0xfd,0xb4,0x6a,0x6a,
6126
+0x02,0x4c,0x6b,0x02,0x49,0x6b,0xd0,0xbf,0x9a,0xb1,0x00,0x00,
6127
+0x00,0x01,0x00,0x4a,0x00,0x00,0x03,0xd3,0x04,0x44,0x00,0x20,
6128
+0x00,0x00,0x01,0x11,0x23,0x2e,0x01,0x23,0x22,0x06,0x1d,0x01,
6129
+0x21,0x15,0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,
6130
+0x33,0x11,0x23,0x35,0x21,0x15,0x3e,0x01,0x33,0x32,0x16,0x03,
6131
+0xd3,0x6a,0x05,0x4e,0x4b,0x88,0x91,0x01,0x23,0xfe,0xdd,0xd5,
6132
+0xfd,0xcd,0xa6,0xb0,0xb0,0xb0,0x01,0x68,0x36,0xaa,0x7a,0x2d,
6133
+0x63,0x04,0x29,0xfe,0xf6,0x4f,0x4e,0xbc,0xb0,0x16,0x6a,0xfe,
6134
+0x9a,0x6a,0x6a,0x01,0x66,0x6a,0x01,0x84,0x69,0xbd,0x6f,0x6b,
6135
+0x0e,0x00,0x00,0x00,0x00,0x02,0xff,0xe9,0x00,0x00,0x05,0x5a,
6136
+0x05,0xd5,0x00,0x1d,0x00,0x20,0x00,0x00,0x21,0x35,0x33,0x11,
6137
+0x01,0x21,0x35,0x21,0x27,0x23,0x35,0x21,0x15,0x23,0x17,0x21,
6138
+0x37,0x23,0x35,0x21,0x15,0x23,0x07,0x21,0x15,0x21,0x03,0x11,
6139
+0x33,0x15,0x03,0x21,0x13,0x01,0x83,0xbf,0xfe,0xf9,0xfe,0xae,
6140
+0x01,0x06,0x7a,0x8c,0x02,0x2b,0xae,0x7a,0x01,0xf6,0x7a,0xa8,
6141
+0x01,0xb2,0x8d,0x7a,0x01,0x07,0xfe,0xad,0xfb,0xbf,0x40,0xfe,
6142
+0xa0,0xb0,0x6a,0x02,0x19,0x01,0xa8,0x7a,0xc5,0x6b,0x6b,0xc5,
6143
+0xc5,0x6b,0x6b,0xc5,0x7a,0xfe,0x6b,0xfd,0xd4,0x6a,0x04,0x2b,
6144
+0xfe,0xe3,0x00,0x00,0x00,0x02,0xff,0xfa,0xfe,0x39,0x04,0x7f,
6145
+0x04,0x27,0x00,0x26,0x00,0x29,0x00,0x00,0x05,0x37,0x01,0x23,
6146
+0x35,0x33,0x27,0x23,0x35,0x21,0x15,0x23,0x17,0x21,0x37,0x23,
6147
+0x35,0x21,0x15,0x23,0x07,0x33,0x15,0x23,0x01,0x06,0x07,0x06,
6148
+0x27,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x01,
6149
+0x21,0x13,0x01,0xba,0x46,0xfe,0xf6,0xfc,0xd1,0x58,0x79,0x01,
6150
+0xe9,0xaa,0x58,0x01,0xa6,0x58,0x9f,0x01,0x8f,0x77,0x58,0xcf,
6151
+0xfa,0xfe,0x9c,0x33,0x3c,0x3d,0x6f,0x2f,0x63,0x32,0x5e,0x06,
6152
+0x39,0x3c,0x37,0x43,0x01,0x76,0xfe,0xb2,0xa7,0xc3,0xb1,0x02,
6153
+0x8c,0x6a,0xd8,0x6b,0x6b,0xd8,0xd8,0x6b,0x6b,0xd8,0x6a,0xfc,
6154
+0x96,0x7e,0x2c,0x2e,0x01,0x10,0x0f,0xcb,0x44,0x3b,0x3d,0x03,
6155
+0x99,0xfe,0x67,0x00,0x00,0x02,0x00,0x66,0xff,0xe3,0x04,0x8b,
6156
+0x04,0x44,0x00,0x0b,0x00,0x2c,0x00,0x00,0x01,0x15,0x33,0x32,
6157
+0x36,0x35,0x34,0x26,0x23,0x22,0x07,0x06,0x03,0x11,0x23,0x35,
6158
+0x21,0x15,0x3e,0x01,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x21,
6159
+0x15,0x14,0x17,0x16,0x33,0x32,0x36,0x37,0x33,0x15,0x06,0x07,
6160
+0x06,0x23,0x22,0x27,0x26,0x01,0xc2,0xed,0x89,0x86,0x88,0x74,
6161
+0x73,0x47,0x46,0xb8,0xa4,0x01,0x5c,0x3d,0xa0,0x6b,0xb1,0xd0,
6162
+0xee,0xd9,0xfe,0xfe,0x4a,0x49,0x85,0x6e,0x82,0x10,0x5f,0x60,
6163
+0x5b,0x5a,0x56,0xdd,0x73,0x74,0x02,0xd9,0xe1,0x76,0x7a,0x6f,
6164
+0x82,0x47,0x47,0xfe,0x44,0x02,0x2e,0x6a,0x73,0x4a,0x46,0xbc,
6165
+0xa0,0xa5,0xb6,0x49,0x79,0x43,0x42,0x64,0x62,0xd7,0x29,0x14,
6166
+0x15,0x6d,0x6e,0x00,0x00,0x02,0x00,0x66,0xff,0xe3,0x04,0xe3,
6167
+0x04,0x44,0x00,0x14,0x00,0x21,0x00,0x4f,0x40,0x26,0x16,0x04,
6168
+0x10,0x15,0x03,0x00,0x19,0x94,0x0d,0x1f,0x94,0x07,0x13,0x7a,
6169
+0x12,0x9c,0x00,0x7a,0x07,0x60,0x0d,0x8c,0x02,0x15,0x10,0x03,
6170
+0x27,0x12,0x2c,0x01,0x2c,0x00,0x35,0x1c,0x1a,0x0a,0x2a,0x22,
6171
+0x10,0xf4,0xec,0xf4,0xe4,0xe4,0xfc,0x3c,0x3c,0x31,0x00,0x2f,
6172
+0xec,0xe4,0xec,0xfc,0xec,0x10,0xee,0x10,0xee,0x11,0x17,0x39,
6173
+0x39,0x30,0x40,0x09,0x00,0x23,0x10,0x23,0x7f,0x23,0xb0,0x23,
6174
+0x04,0x01,0x5d,0x25,0x33,0x15,0x21,0x35,0x0e,0x01,0x23,0x22,
6175
+0x02,0x35,0x34,0x12,0x33,0x32,0x16,0x17,0x35,0x21,0x15,0x23,
6176
+0x03,0x35,0x34,0x26,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,
6177
+0x36,0x04,0x33,0xb0,0xfe,0x98,0x36,0xa7,0x7b,0xc4,0xf9,0xf8,
6178
+0xc5,0x7b,0xa7,0x36,0x01,0x68,0xb0,0xb8,0x93,0x8c,0x8e,0x91,
6179
+0x91,0x8e,0x8c,0x93,0x6b,0x6b,0xa6,0x64,0x5f,0x01,0x37,0xfa,
6180
+0xfa,0x01,0x36,0x5f,0x64,0xa6,0x6b,0xfe,0x23,0x69,0xbf,0xca,
6181
+0xe0,0xdd,0xdc,0xe2,0xc9,0x00,0x00,0x00,0x00,0x02,0x00,0x66,
6182
+0xff,0xe3,0x04,0xe3,0x04,0x44,0x00,0x16,0x00,0x27,0x00,0x00,
6183
+0x25,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x36,0x37,
6184
+0x36,0x33,0x32,0x17,0x16,0x10,0x02,0x23,0x22,0x27,0x26,0x03,
6185
+0x15,0x14,0x17,0x16,0x33,0x32,0x37,0x36,0x35,0x34,0x27,0x26,
6186
+0x23,0x22,0x07,0x06,0x01,0xce,0xfe,0x98,0xb0,0xb0,0x01,0x68,
6187
+0x36,0x54,0x53,0x7b,0xc4,0x7c,0x7d,0xf8,0xc5,0x7b,0x53,0x54,
6188
+0x36,0x4a,0x49,0x8c,0x8e,0x49,0x48,0x48,0x49,0x8e,0x8c,0x49,
6189
+0x4a,0xa6,0xa6,0x6b,0x03,0x52,0x6a,0xa6,0x64,0x2f,0x30,0x9c,
6190
+0x9b,0xfe,0x0c,0xfe,0xca,0x2f,0x30,0x02,0x06,0x69,0xbf,0x65,
6191
+0x65,0x70,0x70,0xdd,0xdc,0x71,0x71,0x65,0x64,0x00,0x00,0x00,
6192
+0x00,0x02,0x00,0x3b,0xff,0xe3,0x04,0xb8,0x06,0x14,0x00,0x27,
6193
+0x00,0x38,0x00,0x00,0x01,0x07,0x36,0x37,0x36,0x33,0x32,0x12,
6194
+0x10,0x07,0x06,0x23,0x22,0x27,0x26,0x27,0x15,0x21,0x35,0x33,
6195
+0x11,0x35,0x34,0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x15,0x23,
6196
+0x26,0x27,0x26,0x23,0x22,0x07,0x06,0x15,0x03,0x14,0x17,0x16,
6197
+0x33,0x32,0x37,0x36,0x35,0x34,0x27,0x26,0x23,0x22,0x07,0x06,
6198
+0x15,0x01,0xa5,0x01,0x36,0x54,0x53,0x7b,0xc4,0xf8,0x7c,0x7c,
6199
+0xc4,0x7b,0x53,0x54,0x36,0xfe,0x97,0xb1,0x62,0x61,0xab,0x48,
6200
+0x42,0x41,0x3e,0x5f,0x07,0x2b,0x2a,0x52,0x5b,0x2b,0x2b,0x01,
6201
+0x4a,0x49,0x8c,0x8d,0x48,0x49,0x49,0x48,0x8d,0x8c,0x49,0x4a,
6202
+0x03,0xc6,0x45,0x64,0x2f,0x30,0xfe,0xca,0xfe,0x0c,0x9c,0x9b,
6203
+0x2f,0x30,0x64,0xa6,0x6a,0x03,0x63,0xe8,0xa4,0x5d,0x5e,0x10,
6204
+0x11,0x21,0xdb,0x60,0x2d,0x2d,0x3d,0x3b,0x84,0xfd,0x2a,0xc0,
6205
+0x65,0x64,0x71,0x71,0xdc,0xdd,0x70,0x70,0x65,0x65,0xbf,0x00,
6206
+0x00,0x01,0x00,0x66,0xff,0xe3,0x04,0x1d,0x04,0x44,0x00,0x20,
6207
+0x00,0x41,0x40,0x09,0x19,0x1a,0x07,0x20,0x00,0x11,0x2d,0x0f,
6208
+0x21,0x10,0xd4,0xb0,0x09,0x4b,0x54,0xb0,0x0a,0x4b,0x54,0x5b,
6209
+0x58,0xb9,0x00,0x0f,0xff,0xc0,0x38,0x59,0xec,0xd4,0xcc,0xd4,
6210
+0xec,0x31,0x00,0x40,0x0f,0x00,0x99,0x1d,0x8f,0x03,0x8c,0x0b,
6211
+0x10,0x97,0x0f,0x15,0x8f,0x0b,0x60,0x21,0x10,0xf4,0xfc,0xd4,
6212
+0xec,0x10,0xf4,0xfc,0xe4,0x30,0x01,0x13,0x3e,0x01,0x33,0x32,
6213
+0x17,0x16,0x15,0x14,0x07,0x06,0x23,0x22,0x27,0x26,0x27,0x11,
6214
+0x33,0x16,0x17,0x16,0x33,0x32,0x37,0x36,0x35,0x34,0x27,0x26,
6215
+0x23,0x22,0x06,0x07,0x66,0x27,0xde,0xb0,0xe8,0x8d,0x8d,0x8d,
6216
+0x8d,0xe8,0x65,0x64,0x64,0x65,0x6b,0x15,0x47,0x46,0x83,0x95,
6217
+0x4c,0x4c,0x4c,0x4b,0x96,0x77,0x8e,0x1a,0x02,0xe8,0xaa,0xb2,
6218
+0x99,0x9a,0xfe,0xff,0x99,0x98,0x18,0x17,0x30,0x01,0x10,0x8c,
6219
+0x40,0x40,0x73,0x74,0xe6,0xe6,0x74,0x74,0x7c,0x7d,0x00,0x00,
6220
+0x00,0x02,0x00,0x66,0xff,0x25,0x03,0xfa,0x04,0x44,0x00,0x07,
6221
+0x00,0x2e,0x00,0x00,0x25,0x16,0x17,0x04,0x35,0x34,0x07,0x06,
6222
+0x07,0x36,0x21,0x20,0x07,0x06,0x21,0x22,0x27,0x06,0x17,0x15,
6223
+0x23,0x37,0x36,0x37,0x26,0x27,0x26,0x35,0x10,0x37,0x36,0x33,
6224
+0x32,0x17,0x16,0x17,0x11,0x23,0x26,0x27,0x26,0x23,0x22,0x07,
6225
+0x06,0x15,0x14,0x01,0x9c,0x43,0x8b,0x01,0x0a,0xda,0xb4,0x85,
6226
+0x7d,0x01,0x01,0x01,0x09,0x05,0x04,0xfe,0x89,0x99,0x6b,0x09,
6227
+0x01,0x72,0x01,0x03,0x18,0x0a,0x09,0x8d,0x8d,0x8d,0xe8,0x65,
6228
+0x64,0x64,0x65,0x6b,0x15,0x46,0x47,0x83,0x95,0x4c,0x4c,0xa4,
6229
+0x5c,0x02,0x02,0x6d,0x7d,0x02,0x02,0x1e,0x84,0xe6,0xc7,0x47,
6230
+0x20,0x55,0x90,0x90,0x65,0x4f,0x0a,0x09,0x9a,0xfe,0x00,0xff,
6231
+0x99,0x98,0x18,0x17,0x30,0xfe,0xf0,0x8c,0x40,0x40,0x73,0x74,
6232
+0xe6,0x9f,0x00,0x00,0x00,0x02,0x00,0x66,0xfe,0x39,0x05,0xf2,
6233
+0x06,0x14,0x00,0x27,0x00,0x38,0x00,0x00,0x05,0x14,0x17,0x16,
6234
+0x33,0x32,0x37,0x36,0x37,0x33,0x15,0x06,0x07,0x06,0x23,0x22,
6235
+0x27,0x26,0x3d,0x02,0x06,0x07,0x06,0x23,0x22,0x27,0x26,0x10,
6236
+0x12,0x33,0x32,0x17,0x16,0x17,0x11,0x23,0x35,0x21,0x12,0x07,
6237
+0x35,0x34,0x27,0x26,0x23,0x22,0x07,0x06,0x15,0x14,0x17,0x16,
6238
+0x33,0x32,0x37,0x36,0x04,0x34,0x2a,0x2c,0x5b,0x52,0x2b,0x2a,
6239
+0x07,0x5f,0x3e,0x42,0x41,0x48,0xab,0x62,0x61,0x36,0x53,0x54,
6240
+0x7b,0xc4,0x7d,0x7c,0xf8,0xc5,0x7b,0x54,0x53,0x36,0xae,0x01,
6241
+0x66,0x01,0xb9,0x49,0x4a,0x8c,0x8e,0x48,0x49,0x49,0x48,0x8e,
6242
+0x8c,0x4a,0x49,0x68,0x82,0x3c,0x3e,0x2d,0x2d,0x60,0xdb,0x21,
6243
+0x10,0x11,0x5d,0x5e,0xa4,0xe8,0x26,0x64,0x30,0x2f,0x9b,0x9c,
6244
+0x01,0xf4,0x01,0x36,0x30,0x2f,0x64,0x02,0x29,0x6a,0xfc,0xc2,
6245
+0xf7,0x69,0xbf,0x65,0x65,0x70,0x70,0xdd,0xdc,0x71,0x71,0x64,
6246
+0x65,0x00,0x00,0x00,0x00,0x02,0x00,0x66,0xff,0xe3,0x05,0xf1,
6247
+0x06,0x14,0x00,0x25,0x00,0x36,0x00,0x00,0x01,0x11,0x34,0x37,
6248
+0x36,0x33,0x32,0x17,0x16,0x17,0x15,0x23,0x26,0x27,0x26,0x23,
6249
+0x22,0x07,0x06,0x15,0x11,0x33,0x15,0x21,0x35,0x06,0x07,0x06,
6250
+0x23,0x22,0x27,0x26,0x10,0x12,0x33,0x32,0x17,0x16,0x13,0x35,
6251
+0x34,0x27,0x26,0x23,0x22,0x07,0x06,0x15,0x14,0x17,0x16,0x33,
6252
+0x32,0x37,0x36,0x03,0x7a,0x62,0x61,0xab,0x48,0x42,0x41,0x3e,
6253
+0x5f,0x07,0x2b,0x2a,0x52,0x5b,0x2b,0x2b,0xb0,0xfe,0x98,0x36,
6254
+0x53,0x54,0x7b,0xc4,0x7d,0x7c,0xf8,0xc5,0x7b,0x54,0x52,0x37,
6255
+0x49,0x4a,0x8c,0x8e,0x48,0x49,0x49,0x48,0x8e,0x8c,0x4a,0x49,
6256
+0x03,0x81,0x01,0x34,0xa4,0x5d,0x5e,0x10,0x11,0x21,0xdb,0x60,
6257
+0x2d,0x2d,0x3d,0x3b,0x84,0xfb,0xb5,0x6a,0xa6,0x64,0x30,0x2f,
6258
+0x9b,0x9c,0x01,0xf4,0x01,0x36,0x30,0x2f,0xfd,0xfa,0x69,0xbf,
6259
+0x65,0x65,0x70,0x70,0xdd,0xdc,0x71,0x71,0x64,0x65,0x00,0x00,
6260
+0x00,0x02,0x00,0x66,0xff,0xe3,0x04,0x56,0x04,0x44,0x00,0x19,
6261
+0x00,0x21,0x00,0x00,0x13,0x12,0x37,0x36,0x33,0x32,0x00,0x15,
6262
+0x14,0x07,0x06,0x23,0x22,0x27,0x26,0x27,0x33,0x16,0x17,0x16,
6263
+0x33,0x32,0x37,0x36,0x3d,0x01,0x25,0x21,0x2e,0x01,0x23,0x22,
6264
+0x07,0x06,0x66,0x05,0x81,0x81,0xf1,0xe2,0x01,0x16,0x8e,0x8d,
6265
+0xe9,0xc1,0x77,0x76,0x2c,0x94,0x1f,0x4d,0x4e,0x79,0x9e,0x51,
6266
+0x51,0xfd,0xc0,0x02,0x40,0x10,0x92,0x7f,0x88,0x48,0x49,0x02,
6267
+0x00,0x01,0x1b,0x95,0x94,0xfe,0xcc,0xfc,0xfe,0x9a,0x99,0x58,
6268
+0x58,0xaf,0x7d,0x3f,0x40,0x6e,0x6d,0xd7,0x08,0x6a,0xb9,0xbe,
6269
+0x5f,0x5e,0x00,0x00,0x00,0x02,0x00,0x66,0xff,0xe3,0x04,0x56,
6270
+0x04,0x44,0x00,0x19,0x00,0x21,0x00,0x00,0x13,0x21,0x35,0x34,
6271
+0x27,0x26,0x23,0x22,0x07,0x06,0x07,0x23,0x36,0x37,0x36,0x33,
6272
+0x32,0x17,0x16,0x15,0x14,0x00,0x23,0x22,0x27,0x26,0x37,0x16,
6273
+0x17,0x16,0x33,0x32,0x36,0x37,0x66,0x03,0x19,0x51,0x51,0x9e,
6274
+0x79,0x4e,0x4d,0x1f,0x94,0x2c,0x76,0x77,0xc1,0xe9,0x8d,0x8e,
6275
+0xfe,0xea,0xe2,0xf1,0x81,0x81,0xd4,0x06,0x49,0x48,0x88,0x7f,
6276
+0x92,0x10,0x02,0x27,0x08,0xd7,0x6e,0x6d,0x3f,0x40,0x7d,0xaf,
6277
+0x58,0x58,0x9a,0x99,0xfe,0xfc,0xfe,0xcc,0x95,0x94,0xb1,0xba,
6278
+0x5f,0x5e,0xbe,0xb9,0x00,0x02,0x00,0x78,0xff,0xe3,0x07,0x3a,
6279
+0x04,0x44,0x00,0x2d,0x00,0x39,0x00,0x00,0x01,0x17,0x06,0x07,
6280
+0x06,0x23,0x22,0x27,0x26,0x27,0x07,0x16,0x15,0x14,0x00,0x23,
6281
+0x22,0x27,0x26,0x27,0x01,0x26,0x27,0x26,0x23,0x22,0x07,0x06,
6282
+0x07,0x23,0x36,0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x25,0x33,
6283
+0x15,0x14,0x17,0x16,0x33,0x32,0x05,0x01,0x16,0x17,0x16,0x33,
6284
+0x32,0x37,0x36,0x13,0x35,0x34,0x06,0xef,0x4b,0x4d,0x03,0x2f,
6285
+0x5f,0x71,0x60,0x54,0x0b,0xff,0x29,0xfe,0xea,0xe2,0xf2,0x80,
6286
+0x65,0x0d,0x02,0xe8,0x13,0x21,0x51,0x9e,0x79,0x4e,0x4c,0x20,
6287
+0x94,0x2c,0x76,0x77,0xc1,0xe9,0x8d,0x1e,0x18,0x01,0x11,0x72,
6288
+0x41,0x45,0x52,0x8a,0xfc,0x96,0xfd,0xd3,0x02,0x40,0x48,0x88,
6289
+0x86,0x42,0x41,0x18,0x02,0xf5,0x4e,0x30,0x01,0x11,0x5d,0x51,
6290
+0x84,0x92,0x6b,0x87,0xfc,0xfe,0xcc,0x95,0x76,0x70,0x01,0xac,
6291
+0x3e,0x2c,0x6d,0x3f,0x3e,0x7f,0xaf,0x58,0x58,0x9a,0x21,0x25,
6292
+0x9d,0x3d,0x83,0x3b,0x3e,0x2b,0xfe,0xc1,0x65,0x55,0x5e,0x5f,
6293
+0x5c,0x01,0x12,0x1c,0x3b,0x00,0x00,0x00,0x00,0x01,0x00,0x65,
6294
+0xff,0xd9,0x03,0xc7,0x04,0x32,0x00,0x30,0x00,0x73,0x40,0x10,
6295
+0x12,0x29,0x08,0x0a,0x1f,0x08,0x21,0x0f,0x1a,0x00,0x18,0x1a,
6296
+0x00,0x29,0x2a,0x31,0x10,0xf4,0xc4,0x4b,0xb0,0x12,0x53,0x4b,
6297
+0xb0,0x16,0x51,0x5a,0x58,0xb9,0x00,0x00,0xff,0xc0,0x38,0x59,
6298
+0xec,0x10,0xec,0x2f,0x33,0xdc,0x3c,0x11,0x12,0x39,0x31,0x00,
6299
+0x40,0x16,0x2d,0x14,0x7a,0x11,0x11,0x25,0x04,0x1f,0x21,0x1c,
6300
+0x8f,0x25,0x0a,0x97,0x08,0x0d,0x8f,0x04,0x8c,0x25,0x60,0x31,
6301
+0x10,0xe4,0xf4,0xec,0xc4,0xe4,0x10,0xec,0xd4,0xc4,0x11,0x12,
6302
+0x39,0x2f,0xec,0x39,0x30,0x01,0x40,0x0b,0x70,0x32,0x60,0x08,
6303
+0x50,0x21,0x40,0x32,0x20,0x32,0x05,0x5d,0xb6,0x60,0x32,0x50,
6304
+0x32,0x40,0x32,0x03,0x71,0x13,0x34,0x37,0x36,0x33,0x32,0x17,
6305
+0x16,0x17,0x15,0x23,0x2e,0x01,0x23,0x22,0x15,0x14,0x21,0x33,
6306
+0x15,0x23,0x22,0x07,0x06,0x15,0x14,0x17,0x16,0x33,0x32,0x36,
6307
+0x37,0x33,0x15,0x06,0x07,0x06,0x23,0x22,0x27,0x26,0x37,0x34,
6308
+0x37,0x36,0x37,0x26,0x27,0x26,0x9f,0x62,0x62,0xc4,0x36,0x68,
6309
+0x68,0x70,0x6c,0x0c,0x90,0x5e,0xe9,0x01,0x01,0x5d,0x5c,0x9e,
6310
+0x4d,0x4a,0x35,0x57,0x8e,0x74,0xa8,0x0a,0x6c,0x6a,0x6c,0x68,
6311
+0x50,0xe0,0x7b,0x7a,0x01,0x69,0x47,0x78,0x52,0x36,0x66,0x03,
6312
+0x2a,0x81,0x44,0x43,0x10,0x11,0x1f,0xdd,0x59,0x5a,0xa7,0xbf,
6313
+0x69,0x3e,0x3c,0x74,0x4f,0x32,0x52,0x6a,0x66,0xe7,0x24,0x12,
6314
+0x12,0x4f,0x4f,0x96,0x87,0x4e,0x36,0x1a,0x13,0x23,0x43,0x00,
6315
+0x00,0x01,0x00,0x68,0xff,0xd9,0x03,0xc7,0x04,0x32,0x00,0x32,
6316
+0x00,0x00,0x01,0x22,0x07,0x06,0x07,0x23,0x35,0x36,0x37,0x36,
6317
+0x33,0x32,0x17,0x16,0x15,0x14,0x07,0x06,0x07,0x16,0x17,0x16,
6318
+0x17,0x14,0x07,0x06,0x27,0x22,0x27,0x26,0x27,0x35,0x33,0x14,
6319
+0x17,0x16,0x33,0x32,0x37,0x36,0x35,0x34,0x27,0x26,0x2b,0x01,
6320
+0x35,0x33,0x20,0x35,0x34,0x01,0xf5,0x5e,0x48,0x48,0x0c,0x6c,
6321
+0x70,0x68,0x68,0x36,0xc4,0x62,0x62,0x66,0x36,0x52,0x78,0x47,
6322
+0x67,0x02,0x79,0x7d,0xde,0x50,0x68,0x6c,0x67,0x69,0x5e,0x54,
6323
+0x74,0x8e,0x57,0x35,0x4a,0x4d,0x9e,0x5c,0x5d,0x01,0x01,0x03,
6324
+0xc8,0x2d,0x2e,0x59,0xde,0x1f,0x11,0x10,0x43,0x44,0x81,0x7f,
6325
+0x43,0x23,0x13,0x1a,0x36,0x4e,0x87,0x96,0x4f,0x50,0x01,0x12,
6326
+0x12,0x24,0xe7,0x66,0x35,0x35,0x52,0x32,0x4f,0x74,0x3c,0x3e,
6327
+0x69,0xbf,0xa7,0x00,0x00,0x01,0x00,0x65,0xff,0xd9,0x06,0xaa,
6328
+0x04,0x32,0x00,0x44,0x00,0x00,0x01,0x22,0x07,0x06,0x07,0x27,
6329
+0x35,0x36,0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x37,0x33,0x15,
6330
+0x14,0x17,0x16,0x33,0x32,0x37,0x17,0x06,0x07,0x06,0x23,0x26,
6331
+0x27,0x26,0x27,0x01,0x06,0x07,0x06,0x07,0x16,0x17,0x16,0x17,
6332
+0x16,0x07,0x06,0x27,0x22,0x27,0x26,0x27,0x35,0x33,0x1e,0x01,
6333
+0x33,0x32,0x37,0x36,0x35,0x34,0x27,0x26,0x2b,0x01,0x35,0x33,
6334
+0x20,0x35,0x34,0x01,0xf5,0x5e,0x48,0x48,0x0c,0x6c,0x70,0x68,
6335
+0x68,0x36,0xc4,0x62,0x5b,0x07,0xf1,0x72,0x42,0x44,0x52,0x6a,
6336
+0x2d,0x4a,0x2d,0x23,0x36,0x57,0x73,0x5f,0x53,0x0c,0xfe,0xbc,
6337
+0x14,0x1c,0x36,0x52,0x78,0x47,0x67,0x02,0x01,0x7a,0x7d,0xde,
6338
+0x4f,0x69,0x6c,0x6a,0x6c,0x0a,0xa8,0x74,0x8e,0x57,0x35,0x4a,
6339
+0x4d,0x9e,0x5c,0x5d,0x01,0x01,0x03,0xc8,0x2d,0x2e,0x59,0x01,
6340
+0xdd,0x1f,0x11,0x10,0x43,0x3f,0x75,0xd5,0x3d,0x83,0x3b,0x3e,
6341
+0x2d,0x4e,0x26,0x0b,0x11,0x01,0x5c,0x51,0x84,0xfe,0xeb,0x17,
6342
+0x12,0x23,0x13,0x1a,0x36,0x4e,0x87,0x96,0x4f,0x50,0x01,0x12,
6343
+0x12,0x24,0xe7,0x66,0x6a,0x52,0x32,0x4f,0x74,0x3c,0x3e,0x69,
6344
+0xbf,0xa7,0x00,0x00,0x00,0x02,0x00,0x66,0xff,0xe3,0x04,0x81,
6345
+0x04,0x44,0x00,0x12,0x00,0x23,0x00,0x00,0x25,0x32,0x36,0x35,
6346
+0x34,0x26,0x2b,0x01,0x35,0x33,0x32,0x36,0x35,0x34,0x26,0x23,
6347
+0x20,0x11,0x10,0x03,0x10,0x21,0x32,0x16,0x15,0x14,0x06,0x07,
6348
+0x1e,0x01,0x15,0x14,0x07,0x06,0x23,0x20,0x02,0xcc,0x6c,0x73,
6349
+0x8d,0x8a,0x26,0x26,0x8a,0x8d,0x71,0x6e,0xfe,0x71,0xd7,0x02,
6350
+0x66,0xe1,0xd4,0x97,0x87,0x87,0x97,0x6a,0x68,0xe3,0xfd,0x9a,
6351
+0x46,0x6d,0x60,0x69,0x6a,0x63,0x6a,0x62,0x5f,0x6d,0xfe,0x33,
6352
+0xfe,0x32,0x01,0xce,0x02,0x30,0x99,0x8d,0x60,0x8e,0x19,0x18,
6353
+0x8e,0x67,0x8c,0x4e,0x4d,0x00,0x00,0x00,0x00,0x01,0xff,0x3b,
6354
+0xfe,0x39,0x02,0x60,0x04,0x27,0x00,0x1a,0x00,0x00,0x13,0x23,
6355
+0x35,0x21,0x11,0x33,0x15,0x23,0x11,0x14,0x06,0x23,0x22,0x26,
6356
+0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x11,0x23,0x35,
6357
+0x33,0xfa,0xae,0x01,0x66,0xae,0xae,0xc3,0xab,0x48,0x83,0x3e,
6358
+0x5f,0x07,0x55,0x52,0x5b,0x57,0xb0,0xb0,0x03,0xbc,0x6b,0xfe,
6359
+0x13,0x6a,0xfd,0xc8,0xa4,0xbb,0x21,0x21,0xdb,0x60,0x5a,0x7b,
6360
+0x81,0x02,0x38,0x6a,0x00,0x02,0x00,0x66,0xfe,0x39,0x05,0xf2,
6361
+0x06,0x14,0x00,0x0b,0x00,0x3a,0x00,0x00,0x01,0x13,0x21,0x22,
6362
+0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x35,0x13,0x11,0x14,0x07,
6363
+0x06,0x23,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,
6364
+0x3d,0x01,0x0e,0x01,0x23,0x22,0x02,0x35,0x34,0x12,0x33,0x21,
6365
+0x35,0x34,0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x15,0x23,0x26,
6366
+0x27,0x26,0x23,0x22,0x07,0x06,0x15,0x03,0x7b,0x01,0xfe,0xe0,
6367
+0x8e,0x91,0x91,0x8e,0x8c,0x93,0xb8,0x7e,0x7e,0xe9,0x69,0xc0,
6368
+0x58,0x60,0x12,0x86,0x7d,0xa2,0x97,0x36,0xa7,0x7b,0xc4,0xf9,
6369
+0xf8,0xc5,0x01,0x58,0x61,0x62,0xab,0x48,0x41,0x42,0x3e,0x5f,
6370
+0x07,0x2a,0x2b,0x52,0x5b,0x2c,0x2a,0x02,0x48,0x01,0x74,0xe0,
6371
+0xc8,0xdc,0xe2,0xc9,0xc0,0x02,0xc8,0xfb,0x70,0xe5,0x7c,0x7d,
6372
+0x26,0x26,0xdf,0x68,0x60,0xb7,0xc4,0x8f,0x64,0x5f,0x01,0x37,
6373
+0xfa,0xdd,0x01,0x36,0x8e,0xa4,0x5d,0x5e,0x10,0x11,0x21,0xdb,
6374
+0x60,0x2d,0x2d,0x3d,0x3c,0x83,0x00,0x00,0x00,0x02,0x00,0x66,
6375
+0xfe,0x39,0x04,0xe3,0x04,0x27,0x00,0x1b,0x00,0x27,0x00,0x00,
6376
+0x01,0x21,0x15,0x23,0x11,0x14,0x06,0x23,0x22,0x26,0x27,0x35,
6377
+0x33,0x1e,0x01,0x33,0x32,0x36,0x3d,0x01,0x0e,0x01,0x23,0x22,
6378
+0x02,0x35,0x34,0x12,0x01,0x13,0x21,0x22,0x06,0x15,0x14,0x16,
6379
+0x33,0x32,0x36,0x35,0x02,0x23,0x02,0xc0,0xb0,0xfc,0xe9,0x69,
6380
+0xc0,0x58,0x60,0x12,0x86,0x7d,0xa2,0x97,0x36,0xa7,0x7b,0xc4,
6381
+0xf9,0xf8,0x02,0x1d,0x01,0xfe,0xe0,0x8e,0x91,0x91,0x8e,0x8c,
6382
+0x93,0x04,0x27,0x6b,0xfc,0x5b,0xe5,0xf9,0x26,0x26,0xdf,0x68,
6383
+0x60,0xb7,0xc4,0x8f,0x64,0x5f,0x01,0x37,0xfa,0xdd,0x01,0x36,
6384
+0xfe,0x21,0x01,0x74,0xe0,0xc8,0xdc,0xe2,0xc9,0xc0,0x00,0x00,
6385
+0x00,0x01,0x00,0x66,0xff,0xe3,0x04,0x28,0x04,0x44,0x00,0x1d,
6386
+0x00,0x00,0x01,0x2e,0x01,0x23,0x22,0x06,0x10,0x16,0x33,0x32,
6387
+0x36,0x37,0x35,0x23,0x35,0x21,0x11,0x0e,0x01,0x23,0x22,0x00,
6388
+0x35,0x10,0x00,0x33,0x32,0x16,0x17,0x11,0x03,0x99,0x15,0x8d,
6389
+0x8d,0x95,0x98,0x97,0x96,0x62,0x78,0x2c,0xc5,0x01,0x7d,0x52,
6390
+0xbe,0xaf,0xe9,0xfe,0xe6,0x01,0x1a,0xe8,0x6f,0xc8,0x65,0x02,
6391
+0xd5,0x8c,0x80,0xe7,0xfe,0x34,0xe8,0x1d,0x29,0xfb,0x6a,0xfe,
6392
+0x78,0x46,0x40,0x01,0x33,0xfe,0x00,0xff,0x01,0x31,0x2f,0x30,
6393
+0xfe,0xf0,0x00,0x00,0x00,0x02,0x00,0x19,0xfe,0x38,0x04,0xb2,
6394
+0x04,0x27,0x00,0x18,0x00,0x24,0x00,0x00,0x01,0x00,0x15,0x14,
6395
+0x07,0x06,0x20,0x27,0x26,0x35,0x34,0x09,0x01,0x23,0x35,0x21,
6396
+0x15,0x23,0x01,0x13,0x23,0x35,0x21,0x15,0x23,0x01,0x02,0x15,
6397
+0x14,0x17,0x16,0x33,0x32,0x37,0x36,0x37,0x36,0x02,0xd6,0x01,
6398
+0x3a,0x74,0x5f,0xfe,0x5c,0x52,0x34,0x01,0x0e,0xfe,0x9b,0xa3,
6399
+0x02,0x29,0xad,0x01,0x00,0xf4,0xc0,0x01,0xe9,0xa8,0xfe,0x59,
6400
+0xdd,0x21,0x35,0x8a,0x83,0x36,0x26,0x01,0x01,0x01,0xfa,0xfe,
6401
+0x28,0xbf,0x9d,0x4e,0x40,0x67,0x41,0x6b,0xab,0x01,0xbd,0x02,
6402
+0x09,0x6b,0x6b,0xfe,0x9f,0x01,0x61,0x6b,0x6b,0xfd,0x96,0xfe,
6403
+0x86,0xa8,0x37,0x21,0x36,0x2f,0x21,0x3a,0xd4,0x00,0x00,0x00,
6404
+0x00,0x02,0x00,0x90,0xff,0xde,0x04,0x08,0x04,0x42,0x00,0x26,
6405
+0x00,0x36,0x00,0x00,0x13,0x36,0x32,0x17,0x36,0x3b,0x01,0x32,
6406
+0x17,0x15,0x23,0x35,0x34,0x2b,0x01,0x22,0x07,0x16,0x17,0x16,
6407
+0x15,0x14,0x07,0x06,0x23,0x22,0x27,0x26,0x35,0x34,0x37,0x36,
6408
+0x37,0x02,0x23,0x22,0x1d,0x01,0x23,0x13,0x14,0x17,0x16,0x33,
6409
+0x32,0x37,0x36,0x35,0x34,0x27,0x26,0x27,0x06,0x07,0x06,0x90,
6410
+0x58,0xe0,0x92,0x93,0xca,0x03,0x30,0x1e,0x69,0x2f,0x01,0x44,
6411
+0x92,0x5f,0x3b,0x61,0x2a,0x6a,0xe4,0x92,0x70,0x31,0x4f,0x40,
6412
+0x71,0x99,0x31,0x29,0x66,0xdb,0x33,0x2d,0x53,0x5a,0x3a,0x25,
6413
+0x38,0x2c,0x4e,0x59,0x2f,0x32,0x03,0xfc,0x45,0xce,0xcb,0x39,
6414
+0x4b,0x13,0x2f,0xdf,0x9a,0x7c,0xcc,0x78,0x4e,0x2b,0x6b,0x6b,
6415
+0x2e,0x50,0x66,0x9d,0x7d,0xa0,0x01,0x11,0x57,0x12,0xfd,0x29,
6416
+0x3b,0x1c,0x18,0x41,0x2a,0x26,0x40,0x83,0x66,0x8e,0x7f,0x72,
6417
+0x7c,0x00,0x00,0x00,0x00,0x01,0x00,0x37,0xfe,0x56,0x04,0xdb,
6418
+0x04,0x27,0x00,0x1b,0x00,0x00,0x01,0x33,0x11,0x0e,0x01,0x23,
6419
+0x22,0x26,0x35,0x11,0x23,0x35,0x21,0x11,0x14,0x16,0x33,0x32,
6420
+0x36,0x35,0x11,0x23,0x35,0x21,0x11,0x33,0x15,0x25,0x02,0xc7,
6421
+0xae,0x33,0xa2,0x6b,0xb1,0xa7,0xa6,0x01,0x5f,0x5f,0x7a,0x80,
6422
+0x86,0xa0,0x01,0x58,0xae,0xfd,0xec,0xfe,0xc0,0x01,0xfc,0x6a,
6423
+0x6f,0xc9,0xd7,0x02,0x39,0x6b,0xfd,0x95,0xc2,0x90,0xbc,0xb3,
6424
+0x01,0xe3,0x6b,0xfa,0x99,0x6a,0x02,0x00,0x00,0x01,0x00,0x54,
6425
+0x00,0x00,0x04,0xee,0x06,0x14,0x00,0x2f,0x00,0x00,0x01,0x36,
6426
+0x37,0x36,0x33,0x32,0x16,0x15,0x11,0x33,0x15,0x21,0x35,0x33,
6427
+0x11,0x34,0x27,0x26,0x23,0x22,0x06,0x15,0x11,0x33,0x15,0x21,
6428
+0x35,0x33,0x11,0x35,0x34,0x37,0x36,0x33,0x32,0x17,0x16,0x17,
6429
+0x15,0x23,0x26,0x27,0x26,0x23,0x22,0x07,0x06,0x15,0x01,0xb3,
6430
+0x33,0x50,0x52,0x6c,0xb0,0xa6,0xa4,0xfe,0x04,0x9f,0x2f,0x30,
6431
+0x7a,0x80,0x86,0xa0,0xfe,0x02,0xa6,0x62,0x61,0xab,0x48,0x42,
6432
+0x41,0x3e,0x5f,0x07,0x2b,0x2a,0x52,0x5b,0x2b,0x2b,0x03,0x6a,
6433
+0x6c,0x37,0x37,0xca,0xd6,0xfd,0xc6,0x6a,0x6a,0x02,0x00,0xc3,
6434
+0x47,0x48,0xba,0xb2,0xfe,0x1a,0x6a,0x6a,0x03,0x63,0xe8,0xa4,
6435
+0x5d,0x5e,0x10,0x11,0x21,0xdb,0x60,0x2d,0x2d,0x3d,0x39,0x86,
6436
+0x00,0x01,0x00,0x54,0xfe,0x39,0x04,0x4a,0x06,0x14,0x00,0x3f,
6437
+0x00,0x00,0x01,0x36,0x37,0x36,0x33,0x32,0x16,0x15,0x11,0x15,
6438
+0x14,0x07,0x06,0x23,0x22,0x27,0x26,0x27,0x35,0x33,0x16,0x17,
6439
+0x16,0x33,0x32,0x37,0x36,0x3d,0x01,0x11,0x34,0x27,0x26,0x23,
6440
+0x22,0x06,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x35,0x34,
6441
+0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x15,0x23,0x26,0x27,0x26,
6442
+0x23,0x22,0x07,0x06,0x1d,0x01,0x01,0xb3,0x33,0x50,0x52,0x6c,
6443
+0xb0,0xa6,0x62,0x61,0xab,0x48,0x42,0x41,0x3e,0x5f,0x07,0x2b,
6444
+0x2a,0x52,0x5b,0x2b,0x2b,0x2f,0x30,0x7a,0x80,0x86,0xa0,0xfe,
6445
+0x02,0xa6,0x62,0x61,0xab,0x48,0x42,0x41,0x3e,0x5f,0x07,0x2b,
6446
+0x2a,0x52,0x5b,0x2b,0x2b,0x03,0x6a,0x6c,0x37,0x37,0xca,0xd6,
6447
+0xfd,0xdc,0xe8,0xa4,0x5e,0x5d,0x11,0x10,0x21,0xdb,0x60,0x2d,
6448
+0x2d,0x3e,0x3c,0x82,0xe8,0x01,0xea,0xc3,0x47,0x48,0xba,0xb2,
6449
+0xfe,0x1a,0x6a,0x6a,0x03,0x63,0xe8,0xa4,0x5d,0x5e,0x10,0x11,
6450
+0x21,0xdb,0x60,0x2d,0x2d,0x3d,0x3b,0x84,0xef,0x00,0x00,0x00,
6451
+0xff,0xff,0x00,0x4a,0x00,0x00,0x02,0x60,0x05,0xe3,0x10,0x26,
6452
+0x0d,0x85,0x00,0x00,0x10,0x06,0x0d,0x84,0x00,0x00,0x00,0x00,
6453
+0x00,0x01,0x00,0x4a,0x00,0x00,0x02,0x63,0x04,0x27,0x00,0x0d,
6454
+0x00,0x00,0x1b,0x01,0x23,0x35,0x21,0x11,0x14,0x17,0x16,0x33,
6455
+0x15,0x22,0x27,0x26,0xf9,0x01,0xb0,0x01,0x68,0x2a,0x2c,0x5b,
6456
+0xab,0x62,0x5d,0x01,0x5f,0x02,0x5d,0x6b,0xfd,0x38,0x83,0x3c,
6457
+0x3d,0x63,0x5e,0x59,0x00,0x01,0x00,0x4a,0x00,0x00,0x02,0x60,
6458
+0x04,0x27,0x00,0x0b,0x00,0x44,0x40,0x14,0x0b,0x06,0x7a,0x08,
6459
+0x9c,0x04,0x00,0x7a,0x02,0x0a,0x01,0x2c,0x00,0x27,0x07,0x03,
6460
+0x2c,0x05,0x30,0x0c,0x10,0xf4,0xe4,0x32,0xfc,0xe4,0x32,0x31,
6461
+0x00,0x2f,0xec,0x32,0xfc,0xec,0x32,0x30,0xb2,0x8f,0x0d,0x01,
6462
+0x01,0x5d,0x01,0x4b,0xb0,0x15,0x54,0x58,0xbd,0x00,0x0c,0xff,
6463
+0xc0,0x00,0x01,0x00,0x0c,0x00,0x0c,0x00,0x40,0x38,0x11,0x37,
6464
+0x38,0x59,0x25,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,
6465
+0x15,0x23,0x01,0xb2,0xae,0xfd,0xea,0xb0,0xb0,0x02,0x16,0xae,
6466
+0x6a,0x6a,0x6a,0x03,0x52,0x6b,0x67,0x00,0x00,0x01,0x00,0x49,
6467
+0x00,0x00,0x02,0xdd,0x06,0x14,0x00,0x28,0x00,0x00,0x25,0x33,
6468
+0x15,0x21,0x35,0x33,0x11,0x26,0x27,0x26,0x23,0x22,0x07,0x06,
6469
+0x07,0x23,0x36,0x37,0x36,0x33,0x32,0x17,0x11,0x23,0x35,0x21,
6470
+0x11,0x16,0x17,0x16,0x33,0x32,0x36,0x37,0x33,0x06,0x07,0x06,
6471
+0x23,0x22,0x27,0x01,0xeb,0xae,0xfd,0xe9,0xb1,0x04,0x03,0x11,
6472
+0x13,0x2a,0x18,0x18,0x05,0x60,0x02,0x33,0x33,0x5b,0x14,0x13,
6473
+0xb1,0x01,0x69,0x07,0x06,0x11,0x15,0x2b,0x30,0x04,0x60,0x02,
6474
+0x33,0x33,0x5b,0x19,0x16,0x6a,0x6a,0x6a,0x02,0x7e,0x02,0x02,
6475
+0x08,0x28,0x27,0x4c,0x87,0x4a,0x49,0x04,0x02,0x3b,0x6a,0xfc,
6476
+0xd4,0x05,0x03,0x08,0x50,0x4b,0x87,0x4a,0x49,0x06,0x00,0x00,
6477
+0x00,0x02,0x00,0x4a,0x00,0x00,0x03,0x73,0x06,0x14,0x00,0x14,
6478
+0x00,0x1a,0x00,0x00,0x25,0x33,0x15,0x21,0x35,0x33,0x11,0x24,
6479
+0x27,0x26,0x37,0x32,0x17,0x11,0x23,0x35,0x21,0x11,0x33,0x15,
6480
+0x23,0x27,0x26,0x07,0x06,0x15,0x14,0x02,0x7f,0xae,0xfd,0xe9,
6481
+0xb0,0xfe,0x85,0x01,0x01,0xec,0x57,0x3b,0xb1,0x01,0x69,0xf4,
6482
+0xf4,0xc3,0x15,0x48,0x3b,0x6a,0x6a,0x6a,0x01,0x6a,0x01,0xc3,
6483
+0xe5,0x01,0x38,0x02,0x64,0x6a,0xfc,0x20,0x63,0x63,0xdf,0x01,
6484
+0x01,0x72,0x69,0x00,0x00,0x01,0x00,0x3b,0xfe,0x39,0x03,0x62,
6485
+0x06,0x14,0x00,0x17,0x00,0x00,0x13,0x23,0x35,0x21,0x11,0x14,
6486
+0x17,0x16,0x33,0x32,0x37,0x36,0x37,0x33,0x15,0x06,0x07,0x06,
6487
+0x23,0x22,0x27,0x26,0x35,0x10,0xec,0xb1,0x01,0x69,0x2a,0x2c,
6488
+0x5b,0x52,0x2b,0x2a,0x07,0x5f,0x3e,0x42,0x41,0x48,0xab,0x62,
6489
+0x61,0x05,0xaa,0x6a,0xf9,0x84,0x82,0x3c,0x3e,0x2d,0x2d,0x60,
6490
+0xdb,0x21,0x10,0x11,0x5d,0x5e,0xa4,0x03,0x09,0x00,0x00,0x00,
6491
+0x00,0x01,0x00,0x3b,0xfe,0x36,0x05,0x67,0x06,0x14,0x00,0x2c,
6492
+0x00,0x00,0x01,0x23,0x35,0x01,0x21,0x07,0x11,0x33,0x15,0x21,
6493
+0x35,0x33,0x11,0x23,0x35,0x21,0x11,0x21,0x15,0x01,0x17,0x16,
6494
+0x17,0x16,0x15,0x14,0x07,0x06,0x21,0x22,0x27,0x26,0x27,0x11,
6495
+0x33,0x1e,0x01,0x33,0x32,0x37,0x36,0x35,0x34,0x27,0x26,0x03,
6496
+0x2e,0x5f,0x01,0x4a,0xfd,0xf1,0x66,0xae,0xfd,0xe9,0xb1,0xb1,
6497
+0x01,0x69,0x03,0x62,0xfe,0x8f,0x4f,0xac,0x72,0x65,0x8d,0x8c,
6498
+0xfe,0xf8,0x75,0x6f,0x70,0x6e,0x70,0x0a,0xae,0x9e,0x99,0x59,
6499
+0x58,0x5b,0x5b,0x01,0xa7,0x66,0x01,0xaf,0xb8,0xfd,0x66,0x6a,
6500
+0x6a,0x05,0x40,0x6a,0xfe,0x13,0x56,0xfe,0x1d,0x07,0x0f,0x87,
6501
+0x78,0xc0,0xea,0x7d,0x7c,0x1c,0x1c,0x39,0x01,0x44,0xa1,0xa6,
6502
+0x64,0x63,0xac,0xc5,0x66,0x65,0x00,0x00,0x00,0x01,0x00,0x37,
6503
+0xff,0xe3,0x07,0x4b,0x04,0x27,0x00,0x2a,0x00,0x00,0x25,0x0e,
6504
+0x01,0x23,0x22,0x26,0x35,0x11,0x23,0x35,0x21,0x11,0x14,0x16,
6505
+0x33,0x32,0x36,0x35,0x11,0x23,0x35,0x21,0x11,0x14,0x16,0x33,
6506
+0x32,0x36,0x35,0x11,0x23,0x35,0x21,0x11,0x33,0x15,0x21,0x35,
6507
+0x0e,0x01,0x23,0x22,0x26,0x03,0x70,0x35,0xa5,0x6e,0xa7,0xa4,
6508
+0xa6,0x01,0x5e,0x60,0x6f,0x7b,0x81,0xa0,0x01,0x58,0x60,0x6f,
6509
+0x7b,0x81,0xa0,0x01,0x58,0xb0,0xfe,0x98,0x33,0x9e,0x64,0x7c,
6510
+0xa6,0xcf,0x75,0x77,0xcf,0xd1,0x02,0x3a,0x6a,0xfd,0x71,0xa3,
6511
+0x8a,0xba,0xb2,0x01,0xe6,0x6a,0xfd,0x6a,0x9f,0x87,0xba,0xb2,
6512
+0x01,0xe6,0x6a,0xfc,0x42,0x69,0xbd,0x6a,0x70,0x7b,0x00,0x00,
6513
+0x00,0x01,0x00,0x37,0xfe,0x56,0x07,0x4b,0x04,0x27,0x00,0x2c,
6514
+0x00,0x00,0x25,0x0e,0x01,0x23,0x22,0x26,0x35,0x11,0x23,0x35,
6515
+0x21,0x11,0x14,0x16,0x33,0x32,0x36,0x35,0x11,0x23,0x35,0x21,
6516
+0x11,0x14,0x16,0x33,0x32,0x36,0x35,0x11,0x23,0x35,0x21,0x11,
6517
+0x33,0x15,0x21,0x35,0x33,0x11,0x0e,0x01,0x23,0x22,0x26,0x03,
6518
+0x70,0x35,0xa5,0x6e,0xa7,0xa4,0xa6,0x01,0x5e,0x60,0x6f,0x7b,
6519
+0x81,0xa0,0x01,0x58,0x60,0x6f,0x7b,0x81,0xa0,0x01,0x58,0xb0,
6520
+0xfd,0xea,0xae,0x33,0x9e,0x64,0x7c,0xa6,0xcf,0x75,0x77,0xcf,
6521
+0xd1,0x02,0x3a,0x6a,0xfd,0x71,0xa3,0x8a,0xba,0xb2,0x01,0xe6,
6522
+0x6a,0xfd,0x6a,0x9f,0x87,0xba,0xb2,0x01,0xe6,0x6a,0xfa,0x9a,
6523
+0x6b,0x6b,0x01,0xfc,0x6a,0x70,0x7b,0x00,0x00,0x01,0x00,0x4a,
6524
+0xfe,0x39,0x06,0xb9,0x04,0x44,0x00,0x44,0x00,0x00,0x05,0x14,
6525
+0x07,0x06,0x23,0x22,0x27,0x26,0x27,0x35,0x33,0x16,0x17,0x16,
6526
+0x33,0x32,0x37,0x36,0x35,0x11,0x34,0x26,0x23,0x22,0x07,0x06,
6527
+0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x34,0x27,0x26,0x23,
6528
+0x22,0x07,0x06,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,
6529
+0x35,0x21,0x15,0x3e,0x01,0x33,0x32,0x17,0x16,0x17,0x36,0x37,
6530
+0x36,0x33,0x32,0x17,0x16,0x15,0x12,0x06,0xb9,0x61,0x62,0xab,
6531
+0x48,0x41,0x42,0x3e,0x5f,0x07,0x2a,0x2b,0x52,0x5b,0x2c,0x2a,
6532
+0x60,0x6f,0x7b,0x40,0x41,0xa0,0xfe,0x08,0xa0,0x30,0x30,0x6f,
6533
+0x7b,0x41,0x40,0xa0,0xfe,0x02,0xa6,0xb0,0x01,0x68,0x33,0x9e,
6534
+0x64,0x7c,0x53,0x53,0x1c,0x35,0x52,0x53,0x6e,0xa7,0x52,0x52,
6535
+0x01,0x68,0xa4,0x5e,0x5d,0x11,0x10,0x21,0xdb,0x60,0x2d,0x2d,
6536
+0x3e,0x3c,0x82,0x02,0xf7,0xa3,0x8a,0x5d,0x5d,0xb2,0xfe,0x1a,
6537
+0x6a,0x6a,0x02,0x2c,0x9f,0x43,0x44,0x5d,0x5d,0xb2,0xfe,0x1a,
6538
+0x6a,0x6a,0x03,0x54,0x69,0xbd,0x6a,0x70,0x3e,0x3d,0x71,0x75,
6539
+0x3b,0x3c,0x68,0x67,0xd1,0xfe,0x77,0x00,0x00,0x01,0xff,0x3b,
6540
+0xfe,0x39,0x04,0xed,0x04,0x44,0x00,0x2e,0x00,0x00,0x05,0x14,
6541
+0x07,0x06,0x23,0x22,0x27,0x26,0x27,0x35,0x33,0x16,0x17,0x16,
6542
+0x33,0x32,0x37,0x36,0x35,0x11,0x23,0x35,0x21,0x15,0x36,0x37,
6543
+0x36,0x33,0x32,0x16,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,
6544
+0x34,0x27,0x26,0x23,0x22,0x07,0x06,0x15,0x12,0x01,0xb2,0x62,
6545
+0x61,0xab,0x48,0x42,0x41,0x3e,0x5f,0x07,0x2b,0x2a,0x52,0x5b,
6546
+0x2b,0x2b,0xb0,0x01,0x68,0x33,0x52,0x51,0x6c,0xb0,0xa6,0xa4,
6547
+0xfe,0x04,0x9f,0x30,0x30,0x79,0x80,0x43,0x43,0x01,0x68,0xa4,
6548
+0x5e,0x5d,0x11,0x10,0x21,0xdb,0x60,0x2d,0x2d,0x3e,0x3c,0x82,
6549
+0x04,0x24,0x6b,0xbd,0x6c,0x37,0x37,0xca,0xd6,0xfd,0xc6,0x6a,
6550
+0x6a,0x02,0x00,0xc3,0x49,0x48,0x5e,0x5d,0xb3,0xfe,0xa2,0x00,
6551
+0x00,0x01,0x00,0x4a,0xfe,0x39,0x06,0x08,0x04,0x44,0x00,0x2e,
6552
+0x00,0x00,0x01,0x34,0x27,0x26,0x23,0x22,0x07,0x06,0x15,0x11,
6553
+0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x36,0x37,
6554
+0x36,0x33,0x32,0x17,0x16,0x15,0x11,0x14,0x17,0x16,0x33,0x32,
6555
+0x37,0x36,0x37,0x33,0x15,0x06,0x07,0x06,0x23,0x22,0x27,0x26,
6556
+0x35,0x03,0x91,0x30,0x30,0x79,0x80,0x43,0x43,0xa0,0xfe,0x02,
6557
+0xa6,0xb0,0x01,0x68,0x33,0x51,0x52,0x6c,0xae,0x55,0x53,0x2a,
6558
+0x2c,0x5b,0x52,0x2b,0x2a,0x07,0x5f,0x3e,0x42,0x41,0x48,0xab,
6559
+0x62,0x61,0x02,0x6a,0xc3,0x49,0x48,0x5e,0x5d,0xb3,0xfe,0x1a,
6560
+0x6a,0x6a,0x03,0x52,0x6b,0xbd,0x6c,0x37,0x37,0x65,0x63,0xd8,
6561
+0xfc,0xf4,0x82,0x3c,0x3e,0x2d,0x2d,0x60,0xdb,0x21,0x10,0x11,
6562
+0x5d,0x5e,0xa4,0x00,0x00,0x01,0x00,0x45,0xff,0xe3,0x04,0xfd,
6563
+0x04,0x27,0x00,0x13,0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,
6564
+0x21,0x01,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x23,0x01,0x11,
6565
+0x33,0x15,0x45,0xa6,0xa6,0x01,0x5d,0x02,0x3a,0xa6,0x01,0xc7,
6566
+0xa6,0x7a,0xfd,0x89,0xa6,0x6a,0x03,0x52,0x6b,0xfc,0xef,0x02,
6567
+0xa6,0x6b,0x6b,0xfc,0x27,0x03,0x5a,0xfd,0x2d,0x6a,0x00,0x00,
6568
+0x00,0x03,0x00,0x66,0xff,0xe3,0x04,0x6a,0x04,0x44,0x00,0x08,
6569
+0x00,0x10,0x00,0x1d,0x00,0x00,0x25,0x32,0x37,0x36,0x37,0x21,
6570
+0x16,0x17,0x16,0x03,0x21,0x26,0x27,0x26,0x20,0x07,0x06,0x01,
6571
+0x22,0x27,0x26,0x10,0x37,0x36,0x20,0x17,0x16,0x10,0x07,0x06,
6572
+0x02,0x68,0x94,0x4c,0x3f,0x0a,0xfd,0xae,0x0a,0x40,0x4c,0x97,
6573
+0x02,0x54,0x05,0x45,0x4c,0xfe,0xd8,0x4c,0x45,0x01,0x25,0xe8,
6574
+0x8d,0x8d,0x8c,0x8d,0x01,0xd2,0x8d,0x8c,0x8c,0x8d,0x46,0x75,
6575
+0x63,0xb2,0xb2,0x63,0x75,0x01,0xf4,0xc8,0x6a,0x75,0x75,0x6a,
6576
+0xfc,0xe1,0x99,0x9a,0x01,0xfc,0x99,0x99,0x99,0x99,0xfe,0x04,
6577
+0x9a,0x99,0x00,0x00,0x00,0x02,0x00,0x66,0x00,0x00,0x06,0x17,
6578
+0x04,0x27,0x00,0x0c,0x00,0x26,0x00,0x00,0x01,0x26,0x07,0x06,
6579
+0x15,0x14,0x17,0x16,0x1f,0x01,0x37,0x11,0x07,0x01,0x21,0x20,
6580
+0x00,0x35,0x34,0x37,0x36,0x29,0x01,0x15,0x23,0x37,0x21,0x11,
6581
+0x21,0x27,0x33,0x11,0x23,0x37,0x21,0x11,0x21,0x35,0x33,0x02,
6582
+0xca,0xb6,0x6d,0x68,0x68,0x66,0xbd,0x1c,0x2c,0x2e,0x03,0x33,
6583
+0xfc,0x95,0xfe,0xee,0xfe,0xcc,0x99,0x9a,0x01,0x13,0x03,0x5f,
6584
+0x61,0x01,0xfe,0x20,0x01,0x56,0x01,0x5f,0x5f,0x01,0xfe,0xaa,
6585
+0x01,0xeb,0x61,0x03,0xb4,0x06,0x75,0x70,0xc8,0xca,0x70,0x6f,
6586
+0x02,0x01,0x09,0x03,0x52,0x09,0xfc,0x4d,0x01,0x1a,0xfc,0xf9,
6587
+0x8c,0x8c,0xed,0x82,0xfe,0xb8,0x7c,0xfe,0x9f,0x7b,0xfe,0x60,
6588
+0x82,0x00,0x00,0x00,0x00,0x02,0x00,0x66,0xff,0xe3,0x06,0x2c,
6589
+0x04,0x44,0x00,0x14,0x00,0x26,0x00,0x00,0x01,0x15,0x14,0x16,
6590
+0x33,0x32,0x36,0x35,0x34,0x00,0x23,0x22,0x00,0x15,0x14,0x16,
6591
+0x33,0x32,0x36,0x3d,0x01,0x13,0x20,0x00,0x11,0x14,0x02,0x23,
6592
+0x22,0x26,0x27,0x0e,0x01,0x23,0x22,0x02,0x35,0x10,0x00,0x03,
6593
+0xa4,0x72,0x5c,0x5f,0x84,0xfe,0xd2,0xde,0xdf,0xfe,0xd3,0x84,
6594
+0x5f,0x5c,0x72,0x5b,0x01,0x63,0x01,0x80,0xee,0xcc,0x76,0x99,
6595
+0x1a,0x1a,0x99,0x76,0xcc,0xee,0x01,0x7f,0x02,0x11,0x28,0xc8,
6596
+0xdb,0xc4,0xc2,0xf1,0x01,0x24,0xfe,0xdc,0xf1,0xc2,0xc4,0xdb,
6597
+0xc8,0x28,0x02,0x33,0xfe,0xb9,0xfe,0xcf,0xce,0xfe,0xe5,0x8c,
6598
+0x53,0x53,0x8c,0x01,0x1b,0xce,0x01,0x31,0x01,0x47,0x00,0x00,
6599
+0x00,0x03,0x00,0x66,0xfe,0x56,0x05,0x22,0x06,0x14,0x00,0x17,
6600
+0x00,0x1d,0x00,0x23,0x00,0x00,0x05,0x11,0x33,0x15,0x21,0x35,
6601
+0x33,0x11,0x22,0x00,0x10,0x00,0x33,0x11,0x23,0x35,0x21,0x15,
6602
+0x23,0x11,0x32,0x00,0x10,0x00,0x25,0x11,0x22,0x06,0x10,0x16,
6603
+0x21,0x32,0x36,0x10,0x26,0x23,0x03,0x20,0xae,0xfd,0xea,0xb0,
6604
+0xe8,0xfe,0xe6,0x01,0x19,0xe9,0xb0,0x02,0x16,0xae,0xe9,0x01,
6605
+0x19,0xfe,0xe7,0xfe,0x5f,0x94,0x97,0x98,0x01,0x4b,0x94,0x97,
6606
+0x97,0x94,0x1d,0xfe,0xdd,0x6a,0x6a,0x01,0x23,0x01,0x33,0x01,
6607
+0xfc,0x01,0x32,0x01,0x62,0x6e,0x6a,0xfe,0x9a,0xfe,0xce,0xfe,
6608
+0x04,0xfe,0xcd,0x63,0x03,0x9b,0xe9,0xfe,0x38,0xea,0xea,0x01,
6609
+0xc8,0xe9,0x00,0x00,0x00,0x01,0x00,0x4a,0xff,0xe3,0x03,0xd3,
6610
+0x04,0x27,0x00,0x1b,0x00,0x00,0x17,0x11,0x33,0x1e,0x01,0x33,
6611
+0x32,0x37,0x36,0x35,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x33,
6612
+0x15,0x21,0x35,0x06,0x07,0x06,0x23,0x22,0x27,0x26,0x4a,0x6a,
6613
+0x05,0x4e,0x4b,0x88,0x48,0x49,0xd5,0x02,0x33,0xa6,0xb0,0xfe,
6614
+0x98,0x36,0x55,0x55,0x7a,0x2d,0x32,0x31,0x02,0x01,0x0a,0x4f,
6615
+0x4e,0x5e,0x5e,0xb0,0x01,0xe6,0x6a,0x6a,0xfc,0xac,0x69,0xbd,
6616
+0x6f,0x36,0x35,0x07,0x07,0x00,0x00,0x00,0x00,0x01,0x00,0x4a,
6617
+0xff,0xe3,0x03,0xd3,0x06,0x13,0x00,0x1b,0x00,0x00,0x17,0x11,
6618
+0x33,0x1e,0x01,0x33,0x32,0x37,0x36,0x35,0x11,0x23,0x35,0x21,
6619
+0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x06,0x07,0x06,0x23,0x22,
6620
+0x27,0x26,0x4a,0x6a,0x05,0x4e,0x4b,0x85,0x4b,0x49,0xd5,0x02,
6621
+0x33,0xa6,0xb0,0xfe,0x98,0x36,0x55,0x55,0x7a,0x2d,0x32,0x31,
6622
+0x02,0x01,0x0a,0x4f,0x4e,0x5e,0x5b,0xb3,0x03,0xd2,0x6a,0x6a,
6623
+0xfa,0xc0,0x69,0xbd,0x6f,0x36,0x35,0x07,0x07,0x00,0x00,0x00,
6624
+0x00,0x01,0x00,0x4a,0xfe,0x39,0x04,0xe4,0x04,0x27,0x00,0x2b,
6625
+0x00,0x00,0x21,0x35,0x06,0x07,0x06,0x23,0x22,0x27,0x26,0x27,
6626
+0x11,0x33,0x1e,0x01,0x33,0x32,0x37,0x36,0x35,0x11,0x23,0x35,
6627
+0x21,0x15,0x23,0x11,0x15,0x14,0x17,0x16,0x33,0x32,0x36,0x37,
6628
+0x33,0x15,0x06,0x07,0x06,0x23,0x22,0x27,0x26,0x27,0x02,0x6b,
6629
+0x36,0x55,0x55,0x7a,0x2d,0x32,0x31,0x37,0x6a,0x05,0x4e,0x4b,
6630
+0x88,0x48,0x49,0xd5,0x02,0x33,0xa3,0x2b,0x2b,0x5c,0x52,0x54,
6631
+0x08,0x5e,0x3e,0x41,0x41,0x48,0xac,0x61,0x5d,0x04,0xbd,0x6f,
6632
+0x36,0x35,0x07,0x07,0x0d,0x01,0x0a,0x4f,0x4e,0x5e,0x5e,0xb0,
6633
+0x01,0xe6,0x6a,0x6a,0xfc,0xc3,0xe8,0x82,0x3c,0x3e,0x5a,0x60,
6634
+0xdb,0x21,0x10,0x11,0x5d,0x5a,0xa8,0x00,0x00,0x01,0x00,0x4a,
6635
+0xfe,0x58,0x03,0xd3,0x04,0x44,0x00,0x1b,0x00,0x00,0x01,0x11,
6636
+0x23,0x2e,0x01,0x23,0x22,0x07,0x06,0x15,0x11,0x33,0x15,0x21,
6637
+0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x36,0x37,0x36,0x33,0x32,
6638
+0x17,0x16,0x03,0xd3,0x6a,0x05,0x4e,0x4b,0x88,0x49,0x48,0xd5,
6639
+0xfd,0xcd,0xa6,0xb0,0x01,0x68,0x36,0x55,0x55,0x7a,0x2d,0x31,
6640
+0x32,0x04,0x29,0xfe,0xf6,0x4f,0x4e,0x5e,0x5e,0xb0,0xfc,0x72,
6641
+0x6a,0x6a,0x04,0xfc,0x69,0xbd,0x6f,0x35,0x36,0x07,0x07,0x00,
6642
+0x00,0x01,0x00,0x4a,0xfe,0x39,0x03,0xd3,0x04,0x44,0x00,0x2b,
6643
+0x00,0x00,0x01,0x11,0x23,0x2e,0x01,0x23,0x22,0x07,0x06,0x15,
6644
+0x12,0x03,0x14,0x17,0x16,0x33,0x32,0x37,0x36,0x37,0x33,0x15,
6645
+0x06,0x07,0x06,0x23,0x22,0x27,0x26,0x3d,0x01,0x12,0x03,0x23,
6646
+0x35,0x21,0x15,0x36,0x37,0x36,0x33,0x32,0x17,0x16,0x03,0xd3,
6647
+0x6a,0x05,0x4e,0x4b,0x88,0x49,0x48,0x01,0x03,0x2a,0x2c,0x5b,
6648
+0x52,0x2b,0x2a,0x07,0x5f,0x3e,0x42,0x41,0x48,0xab,0x62,0x61,
6649
+0x01,0x01,0xad,0x01,0x68,0x36,0x55,0x55,0x7a,0x2d,0x31,0x32,
6650
+0x04,0x29,0xfe,0xf6,0x4f,0x4e,0x5e,0x5e,0xb0,0xfe,0xa4,0xfe,
6651
+0xa4,0x82,0x3c,0x3e,0x2d,0x2d,0x60,0xdb,0x21,0x10,0x11,0x5d,
6652
+0x5e,0xa4,0x68,0x01,0xd8,0x01,0xe6,0x69,0xbd,0x6f,0x35,0x36,
6653
+0x07,0x07,0x00,0x00,0x00,0x01,0x00,0x54,0x00,0x00,0x03,0x70,
6654
+0x04,0x3d,0x00,0x1a,0x00,0x00,0x25,0x33,0x15,0x21,0x35,0x33,
6655
+0x11,0x35,0x34,0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x15,0x23,
6656
+0x26,0x27,0x26,0x23,0x22,0x07,0x06,0x1d,0x01,0x01,0xb2,0xd5,
6657
+0xfd,0xcd,0xa5,0x61,0x62,0xab,0x48,0x41,0x42,0x3e,0x5f,0x07,
6658
+0x2a,0x2b,0x52,0x5b,0x2c,0x2a,0x6a,0x6a,0x6a,0x02,0x0a,0x6a,
6659
+0xa4,0x5e,0x5d,0x11,0x10,0x21,0xdb,0x60,0x2d,0x2d,0x3e,0x3c,
6660
+0x82,0x6a,0x00,0x00,0x00,0x01,0x00,0x54,0x00,0x00,0x03,0x70,
6661
+0x04,0x3d,0x00,0x1a,0x00,0x00,0x25,0x11,0x35,0x34,0x27,0x26,
6662
+0x23,0x22,0x07,0x06,0x07,0x23,0x35,0x36,0x37,0x36,0x33,0x32,
6663
+0x17,0x16,0x1d,0x01,0x11,0x33,0x15,0x21,0x35,0x02,0x12,0x2a,
6664
+0x2c,0x5b,0x52,0x2b,0x2a,0x07,0x5f,0x3e,0x42,0x41,0x48,0xab,
6665
+0x62,0x61,0xa5,0xfd,0xcd,0x6a,0x02,0x0a,0x6a,0x82,0x3c,0x3e,
6666
+0x2d,0x2d,0x60,0xdb,0x21,0x10,0x11,0x5d,0x5e,0xa4,0x6a,0xfd,
6667
+0xf6,0x6a,0x6a,0x00,0x00,0x02,0x00,0x4a,0x00,0x00,0x04,0xab,
6668
+0x04,0x27,0x00,0x1b,0x00,0x24,0x00,0x00,0x01,0x1e,0x01,0x17,
6669
+0x13,0x33,0x15,0x21,0x03,0x2e,0x01,0x2b,0x01,0x11,0x33,0x15,
6670
+0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x32,0x16,0x15,0x14,0x06,
6671
+0x25,0x33,0x32,0x36,0x35,0x34,0x26,0x2b,0x01,0x02,0xf9,0x32,
6672
+0x40,0x24,0x8c,0x90,0xfe,0xe3,0xa6,0x30,0x50,0x45,0x7a,0xa9,
6673
+0xfd,0xf8,0xa7,0xa7,0x02,0x60,0x9b,0xa9,0x7b,0xfe,0x36,0xad,
6674
+0x6c,0x66,0x67,0x6b,0xad,0x02,0x18,0x0e,0x3a,0x49,0xfe,0xe3,
6675
+0x6a,0x01,0x52,0x62,0x3a,0xfe,0x7c,0x6a,0x6a,0x03,0x53,0x6a,
6676
+0x94,0x88,0x66,0x7e,0x2e,0x65,0x51,0x50,0x62,0x00,0x00,0x00,
6677
+0x00,0x02,0x00,0x4a,0x00,0x00,0x04,0xab,0x04,0x27,0x00,0x1b,
6678
+0x00,0x24,0x00,0x00,0x01,0x1e,0x01,0x15,0x14,0x06,0x23,0x21,
6679
+0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x32,0x36,
6680
+0x37,0x13,0x21,0x15,0x23,0x03,0x0e,0x01,0x05,0x11,0x33,0x32,
6681
+0x36,0x35,0x34,0x26,0x23,0x02,0xf9,0x7a,0x7b,0xa9,0x9b,0xfd,
6682
+0xa0,0xa7,0xa7,0x02,0x08,0xa9,0x7a,0x45,0x50,0x30,0xa6,0x01,
6683
+0x1d,0x90,0x8c,0x24,0x40,0xfe,0x7e,0xad,0x6b,0x67,0x66,0x6c,
6684
+0x02,0x0f,0x0f,0x7e,0x66,0x88,0x94,0x6a,0x03,0x53,0x6a,0x6a,
6685
+0xfe,0x7c,0x3a,0x62,0x01,0x52,0x6a,0xfe,0xe3,0x49,0x3a,0x4b,
6686
+0xfe,0x98,0x62,0x50,0x51,0x65,0x00,0x00,0x00,0x01,0x00,0x73,
6687
+0xfe,0x39,0x03,0xb2,0x04,0x44,0x00,0x3a,0x00,0x00,0x13,0x33,
6688
+0x1e,0x01,0x33,0x32,0x36,0x35,0x34,0x26,0x2f,0x01,0x2e,0x01,
6689
+0x35,0x34,0x36,0x33,0x32,0x16,0x17,0x15,0x23,0x2e,0x01,0x23,
6690
+0x22,0x06,0x15,0x14,0x17,0x16,0x1f,0x01,0x16,0x17,0x16,0x15,
6691
+0x14,0x06,0x23,0x22,0x2f,0x01,0x15,0x14,0x16,0x33,0x32,0x36,
6692
+0x37,0x33,0x15,0x0e,0x01,0x23,0x22,0x26,0x35,0x73,0x6a,0x04,
6693
+0x8d,0x8a,0x7c,0x82,0x5f,0x99,0x85,0x89,0x7b,0xd6,0xbd,0x54,
6694
+0xba,0x63,0x6a,0x04,0x88,0x75,0x74,0x77,0x2d,0x2e,0x86,0x92,
6695
+0x96,0x44,0x42,0xe7,0xcb,0x67,0x62,0x0c,0x57,0x5b,0x52,0x55,
6696
+0x07,0x5f,0x3e,0x83,0x48,0xab,0xc3,0x01,0x33,0x77,0x76,0x5d,
6697
+0x59,0x46,0x56,0x31,0x2d,0x2c,0x84,0x66,0x92,0xa6,0x2c,0x2a,
6698
+0xe8,0x67,0x74,0x52,0x52,0x43,0x28,0x29,0x2a,0x2d,0x2e,0x48,
6699
+0x46,0x6f,0x97,0xad,0x16,0x03,0x64,0x81,0x7b,0x5a,0x60,0xdb,
6700
+0x21,0x21,0xbb,0xa4,0x00,0x01,0xff,0x3b,0xfe,0x39,0x02,0xa7,
6701
+0x06,0x16,0x00,0x27,0x00,0x00,0x05,0x16,0x07,0x06,0x23,0x22,
6702
+0x27,0x26,0x27,0x35,0x33,0x16,0x17,0x16,0x33,0x32,0x37,0x36,
6703
+0x27,0x02,0x03,0x26,0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x15,
6704
+0x23,0x26,0x27,0x26,0x23,0x22,0x07,0x06,0x17,0x12,0x01,0xb2,
6705
+0x17,0x79,0x61,0xab,0x48,0x42,0x41,0x3e,0x5f,0x07,0x2b,0x2a,
6706
+0x52,0x59,0x2d,0x3c,0x11,0x6a,0x5f,0x15,0x77,0x61,0xab,0x48,
6707
+0x42,0x41,0x3e,0x5f,0x07,0x2b,0x2a,0x52,0x5b,0x2b,0x3b,0x10,
6708
+0x5e,0x68,0x8e,0x74,0x5d,0x11,0x10,0x21,0xdb,0x60,0x2d,0x2d,
6709
+0x3e,0x50,0x6e,0x02,0x8a,0x02,0x96,0x8f,0x72,0x5d,0x10,0x10,
6710
+0x22,0xda,0x60,0x2c,0x2e,0x3e,0x51,0x6d,0xfd,0x69,0x00,0x00,
6711
+0x00,0x01,0xff,0x3b,0xfe,0x39,0x03,0x71,0x06,0x14,0x00,0x2e,
6712
+0x00,0x00,0x01,0x11,0x33,0x15,0x23,0x11,0x14,0x06,0x23,0x22,
6713
+0x26,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x11,0x23,
6714
+0x35,0x33,0x11,0x2b,0x01,0x35,0x3b,0x01,0x35,0x34,0x36,0x33,
6715
+0x32,0x16,0x17,0x15,0x23,0x2e,0x01,0x23,0x22,0x07,0x06,0x1d,
6716
+0x01,0x01,0xb2,0xae,0xae,0xc3,0xab,0x48,0x83,0x3e,0x5f,0x07,
6717
+0x55,0x52,0x5b,0x57,0xb0,0xb0,0xae,0x02,0x02,0xae,0xb9,0xb3,
6718
+0x43,0x86,0x42,0x61,0x01,0x53,0x4f,0x67,0x2a,0x2a,0x03,0xbc,
6719
+0xfe,0x7e,0x6a,0xfd,0xc8,0xa4,0xbb,0x21,0x21,0xdb,0x60,0x5a,
6720
+0x7b,0x81,0x02,0x38,0x6a,0x01,0x82,0x6b,0x85,0xb2,0xb6,0x18,
6721
+0x19,0xca,0x4b,0x4e,0x38,0x3b,0x8f,0x89,0x00,0x01,0x00,0x4a,
6722
+0xfe,0x39,0x03,0xb6,0x04,0x3e,0x00,0x25,0x00,0x00,0x05,0x13,
6723
+0x36,0x27,0x26,0x23,0x22,0x07,0x06,0x07,0x23,0x35,0x36,0x37,
6724
+0x36,0x33,0x32,0x17,0x16,0x07,0x03,0x06,0x17,0x16,0x33,0x32,
6725
+0x37,0x36,0x37,0x33,0x15,0x06,0x07,0x06,0x23,0x22,0x27,0x26,
6726
+0x01,0x3f,0xc9,0x10,0x3b,0x2b,0x5b,0x52,0x2a,0x2b,0x07,0x5f,
6727
+0x3e,0x41,0x42,0x48,0xab,0x61,0x82,0x20,0xc9,0x11,0x3c,0x2d,
6728
+0x59,0x52,0x2a,0x2b,0x07,0x5f,0x3e,0x41,0x42,0x48,0xab,0x61,
6729
+0x82,0x68,0x03,0x47,0x6e,0x51,0x3d,0x2d,0x2d,0x60,0xdb,0x21,
6730
+0x11,0x10,0x5e,0x7c,0x85,0xfc,0xb9,0x6e,0x50,0x3e,0x2d,0x2d,
6731
+0x60,0xdb,0x21,0x10,0x11,0x5d,0x7d,0x00,0x00,0x02,0xff,0x3b,
6732
+0xfe,0x39,0x03,0x14,0x06,0x16,0x00,0x09,0x00,0x30,0x00,0x00,
6733
+0x13,0x32,0x37,0x36,0x27,0x26,0x23,0x20,0x15,0x14,0x25,0x06,
6734
+0x07,0x06,0x23,0x20,0x27,0x26,0x21,0x32,0x33,0x02,0x37,0x26,
6735
+0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x15,0x23,0x26,0x27,0x26,
6736
+0x23,0x22,0x07,0x06,0x17,0x12,0x13,0x16,0x1f,0x01,0x23,0x35,
6737
+0x34,0xb4,0x59,0x2e,0x35,0x08,0x0e,0x0e,0xfe,0xc9,0x02,0x00,
6738
+0x17,0x41,0x66,0xa1,0xfe,0x89,0x04,0x05,0x02,0x1a,0x04,0x05,
6739
+0xc2,0x05,0x16,0x78,0x61,0xab,0x48,0x42,0x41,0x3e,0x5f,0x07,
6740
+0x2a,0x2b,0x52,0x5b,0x2b,0x3b,0x10,0x6c,0x59,0x7a,0x03,0x01,
6741
+0x64,0xfe,0x9c,0x3e,0x48,0x5f,0x01,0x7b,0x6b,0x7e,0x47,0x3d,
6742
+0x5d,0xc7,0xe6,0x04,0xc4,0x0e,0x8e,0x73,0x5d,0x10,0x10,0x22,
6743
+0xda,0x60,0x2c,0x2e,0x3e,0x51,0x6d,0xfd,0x14,0xfd,0xe4,0x56,
6744
+0xdc,0x40,0x40,0x5f,0x00,0x01,0x00,0x3b,0xfe,0xb6,0x03,0x27,
6745
+0x04,0x44,0x00,0x19,0x00,0x00,0x25,0x33,0x15,0x23,0x11,0x23,
6746
+0x11,0x21,0x35,0x21,0x11,0x34,0x26,0x23,0x22,0x07,0x06,0x07,
6747
+0x23,0x3e,0x01,0x33,0x32,0x17,0x16,0x15,0x02,0x85,0xa2,0xa2,
6748
+0xb9,0xfe,0xa6,0x01,0x5a,0x34,0x46,0x48,0x21,0x21,0x02,0x8b,
6749
+0x08,0x8e,0x91,0x9f,0x42,0x42,0x6b,0x6b,0xfe,0xb6,0x01,0x4a,
6750
+0x6b,0x02,0xa3,0x87,0x4c,0x2b,0x2a,0x5f,0x91,0x86,0x46,0x47,
6751
+0xa9,0x00,0x00,0x00,0x00,0x01,0x00,0x3b,0xfe,0x56,0x03,0x27,
6752
+0x05,0x71,0x00,0x19,0x00,0x00,0x13,0x23,0x35,0x33,0x11,0x33,
6753
+0x11,0x21,0x15,0x21,0x11,0x14,0x16,0x33,0x32,0x37,0x36,0x37,
6754
+0x33,0x0e,0x01,0x23,0x22,0x27,0x26,0x35,0xdd,0xa2,0xa2,0xb9,
6755
+0x01,0x5a,0xfe,0xa6,0x34,0x46,0x48,0x21,0x21,0x02,0x8b,0x08,
6756
+0x8e,0x91,0x9f,0x42,0x42,0x03,0xbc,0x6b,0x01,0x4a,0xfe,0xb6,
6757
+0x6b,0xfb,0xd0,0x87,0x4c,0x2b,0x2a,0x5f,0x91,0x86,0x46,0x47,
6758
+0xa9,0x00,0x00,0x00,0x00,0x02,0x00,0x37,0xff,0xe3,0x04,0xdb,
6759
+0x04,0x27,0x00,0x1e,0x00,0x28,0x00,0x00,0x01,0x21,0x11,0x33,
6760
+0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x06,0x07,0x06,0x23,0x22,
6761
+0x27,0x26,0x3d,0x01,0x23,0x35,0x33,0x11,0x23,0x35,0x21,0x11,
6762
+0x21,0x11,0x23,0x13,0x21,0x15,0x14,0x17,0x16,0x33,0x32,0x37,
6763
+0x36,0x02,0xd5,0x01,0x58,0xae,0xae,0xae,0xfe,0x9a,0x33,0x51,
6764
+0x51,0x6b,0xb1,0x54,0x53,0xa6,0xa6,0xa6,0x01,0x5f,0x01,0xdf,
6765
+0xa0,0xa0,0xfe,0x21,0x30,0x2f,0x7a,0x80,0x43,0x41,0x04,0x27,
6766
+0xfe,0x13,0x6a,0xfe,0x9a,0x6a,0xbc,0x6a,0x38,0x37,0x65,0x64,
6767
+0xd7,0x4d,0x6a,0x01,0x82,0x6b,0xfe,0x13,0x01,0x82,0xfe,0x14,
6768
+0x14,0xc2,0x48,0x48,0x5e,0x5c,0x00,0x00,0x00,0x01,0x00,0x66,
6769
+0xff,0xe3,0x04,0x90,0x04,0x27,0x00,0x26,0x00,0x00,0x01,0x21,
6770
+0x1e,0x01,0x15,0x14,0x06,0x07,0x0e,0x01,0x23,0x22,0x26,0x27,
6771
+0x2e,0x01,0x35,0x34,0x36,0x37,0x21,0x35,0x21,0x15,0x0e,0x01,
6772
+0x15,0x14,0x17,0x16,0x20,0x37,0x36,0x35,0x34,0x26,0x27,0x35,
6773
+0x21,0x04,0x90,0xfe,0xe5,0x99,0x82,0x56,0x50,0x48,0xbd,0x6a,
6774
+0x6b,0xba,0x49,0x52,0x55,0x82,0x9a,0xfe,0xe5,0x01,0xbd,0x77,
6775
+0x7a,0x5a,0x5b,0x01,0x26,0x5a,0x5b,0x7a,0x76,0x01,0xbd,0x03,
6776
+0xbc,0x40,0xf7,0x9d,0x6c,0xc6,0x49,0x43,0x47,0x46,0x44,0x4b,
6777
+0xc2,0x6e,0x9d,0xf7,0x40,0x6b,0x6b,0x2e,0xfd,0x99,0xb9,0x70,
6778
+0x70,0x70,0x70,0xb9,0x9a,0xfc,0x2e,0x6b,0x00,0x01,0x00,0x4a,
6779
+0xff,0xf9,0x04,0x78,0x04,0x27,0x00,0x22,0x00,0x00,0x01,0x33,
6780
+0x16,0x17,0x16,0x15,0x14,0x07,0x06,0x07,0x06,0x07,0x06,0x23,
6781
+0x26,0x27,0x26,0x35,0x13,0x23,0x35,0x21,0x11,0x14,0x17,0x16,
6782
+0x17,0x16,0x37,0x36,0x35,0x34,0x27,0x26,0x27,0x02,0xbb,0x70,
6783
+0x9a,0x59,0x5a,0x2a,0x2c,0x50,0x48,0x5e,0x5e,0x6b,0xa4,0x69,
6784
+0x5d,0x01,0xb0,0x01,0x68,0x2a,0x2b,0x5c,0x7d,0x70,0x5b,0x3d,
6785
+0x3d,0x76,0x03,0xde,0x40,0x81,0x82,0x9d,0x6f,0x60,0x63,0x49,
6786
+0x43,0x23,0x24,0x07,0x5e,0x53,0xae,0x02,0x5d,0x6b,0xfd,0x38,
6787
+0x83,0x3c,0x3c,0x01,0x02,0x84,0x6b,0xbe,0x9a,0x67,0x66,0x2e,
6788
+0x00,0x01,0xff,0xfa,0x00,0x00,0x04,0x7f,0x04,0x27,0x00,0x0e,
6789
+0x00,0x00,0x09,0x01,0x33,0x15,0x21,0x35,0x33,0x09,0x01,0x33,
6790
+0x15,0x21,0x35,0x33,0x01,0x02,0x7f,0x01,0x87,0x79,0xfe,0x17,
6791
+0xaa,0xfe,0xd5,0xfe,0xd5,0x9f,0xfe,0x71,0x77,0x01,0x87,0x04,
6792
+0x27,0xfc,0x44,0x6b,0x6b,0x02,0xdb,0xfd,0x25,0x6b,0x6b,0x03,
6793
+0xbc,0x00,0x00,0x00,0x00,0x01,0x00,0x21,0x00,0x00,0x06,0xbe,
6794
+0x04,0x27,0x00,0x14,0x00,0x00,0x21,0x01,0x03,0x33,0x15,0x21,
6795
+0x35,0x33,0x01,0x33,0x09,0x01,0x33,0x01,0x33,0x15,0x21,0x35,
6796
+0x33,0x03,0x01,0x03,0x08,0xfe,0xf0,0xf0,0x9a,0xfe,0x7f,0x76,
6797
+0x01,0x3c,0x99,0x01,0x06,0x01,0x07,0x93,0x01,0x3b,0x77,0xfe,
6798
+0x1f,0xac,0xee,0xfe,0xee,0x03,0x3e,0xfd,0x2d,0x6b,0x6b,0x03,
6799
+0xbc,0xfc,0xe5,0x03,0x1b,0xfc,0x44,0x6b,0x6b,0x02,0xd3,0xfc,
6800
+0xc2,0x00,0x00,0x00,0x00,0x01,0xff,0xfa,0x00,0x00,0x04,0x7f,
6801
+0x05,0xee,0x00,0x20,0x00,0x00,0x01,0x07,0x01,0x33,0x15,0x21,
6802
+0x35,0x33,0x09,0x01,0x33,0x15,0x21,0x35,0x33,0x01,0x36,0x37,
6803
+0x36,0x33,0x32,0x17,0x16,0x17,0x15,0x23,0x26,0x27,0x26,0x23,
6804
+0x22,0x07,0x06,0x02,0xbf,0x46,0x01,0x8d,0x79,0xfe,0x17,0xaa,
6805
+0xfe,0xd5,0xfe,0xd5,0x9f,0xfe,0x71,0x77,0x01,0xe7,0x32,0x3d,
6806
+0x3d,0x6f,0x2f,0x32,0x31,0x32,0x5e,0x06,0x1d,0x1c,0x3c,0x37,
6807
+0x21,0x22,0x04,0xea,0xb1,0xfc,0x32,0x6b,0x6b,0x02,0xdb,0xfd,
6808
+0x25,0x6b,0x6b,0x04,0xac,0x7c,0x2d,0x2e,0x08,0x08,0x0f,0xcb,
6809
+0x44,0x1e,0x1d,0x1f,0x1e,0x00,0x00,0x00,0x00,0x01,0x00,0x54,
6810
+0x00,0x00,0x04,0xf5,0x04,0x27,0x00,0x14,0x00,0x00,0x21,0x35,
6811
+0x33,0x11,0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x23,0x35,
6812
+0x21,0x15,0x23,0x01,0x11,0x33,0x15,0x01,0xa0,0xb1,0xfe,0xb0,
6813
+0xad,0x02,0x27,0xba,0x01,0x06,0x01,0x06,0xb2,0x01,0xda,0xa5,
6814
+0xfe,0xb9,0xae,0x6a,0x01,0x31,0x02,0x1d,0x6f,0x6f,0xfe,0x58,
6815
+0x01,0xa8,0x6f,0x6f,0xfd,0xf1,0xfe,0xc1,0x6a,0x00,0x00,0x00,
6816
+0x00,0x01,0x00,0x52,0xfe,0x39,0x05,0xaa,0x04,0x27,0x00,0x1e,
6817
+0x00,0x00,0x33,0x35,0x01,0x21,0x15,0x23,0x11,0x21,0x15,0x01,
6818
+0x21,0x15,0x14,0x17,0x16,0x33,0x32,0x37,0x36,0x37,0x33,0x15,
6819
+0x06,0x07,0x06,0x23,0x22,0x27,0x26,0x3d,0x01,0x52,0x02,0x9a,
6820
+0xfd,0xf1,0x6a,0x03,0x66,0xfd,0x66,0x02,0xad,0x2a,0x2c,0x5b,
6821
+0x52,0x2a,0x2b,0x07,0x5f,0x3e,0x42,0x41,0x48,0xa9,0x64,0x61,
6822
+0x56,0x03,0x66,0xb8,0x01,0x23,0x56,0xfc,0x99,0xd2,0x83,0x3b,
6823
+0x3e,0x2d,0x2d,0x60,0xdb,0x21,0x10,0x11,0x5d,0x5c,0xa6,0x68,
6824
+0x00,0x02,0x00,0x52,0xff,0x42,0x03,0xf1,0x04,0x27,0x00,0x05,
6825
+0x00,0x19,0x00,0x00,0x25,0x32,0x35,0x34,0x23,0x22,0x03,0x21,
6826
+0x35,0x01,0x21,0x15,0x23,0x11,0x21,0x15,0x01,0x17,0x12,0x21,
6827
+0x32,0x07,0x14,0x21,0x15,0x23,0x02,0xa8,0xdb,0x3f,0x9c,0x86,
6828
+0xfe,0x30,0x02,0x9a,0xfd,0xf1,0x6a,0x03,0x66,0xfd,0x66,0xe3,
6829
+0x02,0x01,0x2e,0xa0,0x01,0xfe,0xb6,0x85,0x6c,0x63,0x79,0xfe,
6830
+0xb8,0x56,0x03,0x66,0xb8,0x01,0x23,0x56,0xfc,0x99,0x01,0x01,
6831
+0x45,0xe6,0xc8,0xbe,0x00,0x01,0x00,0x66,0xfe,0x36,0x04,0x49,
6832
+0x04,0x27,0x00,0x23,0x00,0x00,0x01,0x23,0x35,0x01,0x21,0x15,
6833
+0x23,0x11,0x21,0x15,0x01,0x17,0x16,0x17,0x16,0x15,0x14,0x07,
6834
+0x06,0x21,0x22,0x27,0x26,0x27,0x11,0x33,0x1e,0x01,0x33,0x32,
6835
+0x37,0x36,0x35,0x34,0x27,0x26,0x02,0x10,0x5f,0x01,0x4a,0xfd,
6836
+0xf1,0x6a,0x03,0x66,0xfe,0x8f,0x4f,0xb8,0x66,0x65,0x8d,0x8c,
6837
+0xfe,0xf8,0x75,0x6f,0x70,0x6e,0x70,0x0a,0xae,0x9e,0x99,0x59,
6838
+0x58,0x5b,0x5b,0x01,0xa7,0x66,0x01,0xaf,0xb8,0x01,0x23,0x56,
6839
+0xfe,0x1d,0x07,0x1d,0x79,0x78,0xc0,0xea,0x7d,0x7c,0x1c,0x1c,
6840
+0x39,0x01,0x44,0xa1,0xa6,0x64,0x63,0xac,0xc5,0x66,0x65,0x00,
6841
+0x00,0x02,0x00,0x82,0xfe,0x36,0x04,0x49,0x04,0x27,0x00,0x24,
6842
+0x00,0x2c,0x00,0x00,0x01,0x20,0x27,0x26,0x05,0x04,0x17,0x36,
6843
+0x35,0x34,0x27,0x26,0x2b,0x01,0x35,0x01,0x21,0x15,0x23,0x11,
6844
+0x21,0x15,0x01,0x17,0x16,0x17,0x16,0x15,0x14,0x07,0x06,0x07,
6845
+0x16,0x07,0x23,0x27,0x06,0x37,0x26,0x07,0x22,0x15,0x14,0x17,
6846
+0x32,0x02,0x28,0xfe,0x89,0x04,0x05,0x01,0x09,0x01,0x2f,0x69,
6847
+0x2d,0x5b,0x5b,0xb0,0x5f,0x01,0x4a,0xfd,0xf1,0x6a,0x03,0x66,
6848
+0xfe,0x8f,0x4f,0xb8,0x66,0x65,0x8d,0x11,0x14,0x0f,0x01,0x71,
6849
+0x09,0xa1,0x76,0x4c,0xbe,0x6f,0xa5,0x88,0xfe,0x36,0xc7,0xe8,
6850
+0x02,0x03,0x9a,0x56,0x7b,0xc5,0x66,0x65,0x66,0x01,0xaf,0xb8,
6851
+0x01,0x23,0x56,0xfe,0x1d,0x07,0x1d,0x79,0x78,0xc0,0xea,0x7d,
6852
+0x0f,0x0e,0x4b,0x13,0x35,0x36,0xbe,0x8c,0x01,0x7b,0x5f,0x01,
6853
+0x00,0x01,0x00,0x9b,0x00,0x00,0x03,0xaf,0x06,0x16,0x00,0x1b,
6854
+0x00,0x00,0x33,0x35,0x33,0x11,0x33,0x32,0x36,0x35,0x34,0x26,
6855
+0x23,0x22,0x06,0x07,0x23,0x35,0x3e,0x01,0x33,0x32,0x16,0x15,
6856
+0x14,0x06,0x23,0x11,0x33,0x15,0xe6,0xb0,0x74,0x5a,0x74,0x84,
6857
+0x5a,0x6e,0x82,0x10,0x5f,0x60,0xbd,0x56,0xaa,0xf7,0xef,0x72,
6858
+0xae,0x6a,0x02,0xd6,0x7a,0xc2,0xbe,0x79,0x64,0x62,0xd7,0x29,
6859
+0x29,0xce,0xcc,0xd0,0xc7,0xfd,0x85,0x6a,0x00,0x01,0x00,0x9b,
6860
+0x00,0x00,0x03,0xaf,0x06,0x16,0x00,0x1b,0x00,0x00,0x29,0x01,
6861
+0x35,0x33,0x11,0x22,0x26,0x35,0x34,0x36,0x33,0x32,0x16,0x17,
6862
+0x15,0x23,0x2e,0x01,0x23,0x22,0x06,0x15,0x14,0x16,0x3b,0x01,
6863
+0x11,0x33,0x03,0x64,0xfd,0xea,0xae,0x72,0xef,0xf7,0xaa,0x56,
6864
+0xbd,0x60,0x5f,0x10,0x82,0x6e,0x5a,0x84,0x74,0x5a,0x74,0xb0,
6865
+0x6a,0x02,0x7b,0xc7,0xd0,0xcc,0xce,0x29,0x29,0xd7,0x62,0x64,
6866
+0x79,0xbe,0xc2,0x7a,0xfd,0x2a,0x00,0x00,0x00,0x01,0x00,0x9b,
6867
+0x00,0x00,0x03,0xaf,0x06,0x16,0x00,0x1b,0x00,0x00,0x13,0x21,
6868
+0x15,0x23,0x11,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x27,
6869
+0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x34,0x26,0x2b,0x01,
6870
+0x11,0x23,0xe6,0x02,0x16,0xae,0x72,0xef,0xf7,0xaa,0x56,0xbd,
6871
+0x60,0x5f,0x10,0x82,0x6e,0x5a,0x84,0x74,0x5a,0x74,0xb0,0x06,
6872
+0x16,0x6a,0xfd,0x85,0xc7,0xd0,0xcc,0xce,0x29,0x29,0xd7,0x62,
6873
+0x64,0x79,0xbe,0xc2,0x7a,0x02,0xd6,0x00,0x00,0x01,0x00,0x92,
6874
+0xfe,0x39,0x03,0x09,0x06,0x13,0x00,0x1d,0x00,0x00,0x13,0x34,
6875
+0x36,0x33,0x32,0x16,0x17,0x15,0x23,0x2e,0x01,0x23,0x22,0x06,
6876
+0x15,0x11,0x14,0x16,0x33,0x32,0x36,0x37,0x33,0x15,0x0e,0x01,
6877
+0x23,0x22,0x26,0x35,0x92,0xc3,0xab,0x48,0x83,0x3e,0x5f,0x07,
6878
+0x55,0x52,0x5b,0x56,0x56,0x5b,0x52,0x55,0x07,0x5f,0x3e,0x83,
6879
+0x48,0xab,0xc3,0x04,0xb4,0xa4,0xbb,0x21,0x21,0xdb,0x60,0x5a,
6880
+0x79,0x83,0xfa,0xe4,0x82,0x7a,0x5a,0x60,0xdb,0x21,0x21,0xbb,
6881
+0xa4,0x00,0x00,0x00,0x00,0x03,0x00,0x73,0xff,0xe3,0x06,0x1d,
6882
+0x05,0xf0,0x00,0x0d,0x00,0x19,0x00,0x2d,0x00,0x00,0x01,0x34,
6883
+0x37,0x36,0x33,0x32,0x17,0x16,0x15,0x14,0x06,0x22,0x27,0x26,
6884
+0x13,0x32,0x12,0x11,0x10,0x02,0x23,0x22,0x02,0x11,0x10,0x12,
6885
+0x17,0x22,0x26,0x27,0x26,0x02,0x10,0x12,0x37,0x3e,0x01,0x33,
6886
+0x20,0x00,0x11,0x14,0x02,0x07,0x0e,0x01,0x02,0xd6,0x22,0x20,
6887
+0x30,0x2e,0x22,0x20,0x42,0x5e,0x20,0x22,0x72,0xf5,0xfa,0xfa,
6888
+0xf5,0xf6,0xfa,0xfa,0xf6,0x98,0xff,0x61,0x70,0x6d,0x6d,0x70,
6889
+0x62,0xfc,0x9a,0x01,0x45,0x01,0x90,0x6e,0x70,0x62,0xfc,0x02,
6890
+0xe9,0x2e,0x22,0x22,0x22,0x22,0x2e,0x2f,0x42,0x21,0x21,0xfd,
6891
+0x94,0x01,0x51,0x01,0x4a,0x01,0x4b,0x01,0x51,0xfe,0xaf,0xfe,
6892
+0xb5,0xfe,0xb6,0xfe,0xaf,0x6b,0x64,0x61,0x70,0x01,0x1c,0x01,
6893
+0x6a,0x01,0x1d,0x70,0x62,0x63,0xfe,0x56,0xfe,0xa3,0xb3,0xfe,
6894
+0xe1,0x6f,0x62,0x63,0xff,0xff,0x00,0x49,0x00,0x00,0x04,0x2b,
6895
+0x04,0x27,0x10,0x06,0x03,0x9c,0x00,0x00,0x00,0x02,0x00,0x66,
6896
+0xff,0xe3,0x04,0x81,0x04,0x44,0x00,0x12,0x00,0x23,0x00,0x00,
6897
+0x25,0x20,0x11,0x10,0x21,0x22,0x06,0x15,0x14,0x16,0x3b,0x01,
6898
+0x15,0x23,0x22,0x06,0x15,0x14,0x16,0x01,0x10,0x21,0x22,0x27,
6899
+0x26,0x35,0x34,0x36,0x37,0x2e,0x01,0x35,0x34,0x36,0x33,0x20,
6900
+0x02,0x1b,0x01,0x8f,0xfe,0x71,0x6e,0x71,0x8d,0x8a,0x26,0x26,
6901
+0x8a,0x8d,0x73,0x02,0xd2,0xfd,0x9a,0xe3,0x68,0x6a,0x97,0x87,
6902
+0x87,0x97,0xd4,0xe1,0x02,0x66,0x46,0x01,0xce,0x01,0xcd,0x6d,
6903
+0x5f,0x62,0x6a,0x63,0x6a,0x69,0x60,0x6d,0x01,0xce,0xfd,0xcf,
6904
+0x4d,0x4e,0x8c,0x67,0x8e,0x18,0x19,0x8e,0x60,0x8d,0x99,0x00,
6905
+0x00,0x01,0x00,0x66,0xff,0xe3,0x05,0xc2,0x06,0x14,0x00,0x2b,
6906
+0x00,0x00,0x01,0x2e,0x01,0x23,0x22,0x06,0x10,0x16,0x33,0x32,
6907
+0x36,0x37,0x35,0x23,0x35,0x21,0x11,0x0e,0x01,0x23,0x22,0x00,
6908
+0x35,0x10,0x00,0x33,0x32,0x17,0x35,0x34,0x36,0x33,0x32,0x16,
6909
+0x17,0x15,0x23,0x2e,0x01,0x23,0x22,0x06,0x15,0x11,0x03,0x99,
6910
+0x15,0x8d,0x8d,0x95,0x98,0x97,0x96,0x62,0x78,0x2c,0xc5,0x01,
6911
+0x7d,0x52,0xbe,0xaf,0xe9,0xfe,0xe6,0x01,0x1a,0xe8,0x78,0x6c,
6912
+0xc2,0xac,0x48,0x82,0x3e,0x5e,0x08,0x54,0x52,0x5c,0x56,0x02,
6913
+0xd5,0x8c,0x80,0xe7,0xfe,0x34,0xe8,0x1d,0x29,0xfb,0x6a,0xfe,
6914
+0x78,0x46,0x40,0x01,0x33,0xfe,0x00,0xff,0x01,0x31,0x1c,0x8d,
6915
+0xa4,0xbb,0x21,0x21,0xdb,0x60,0x5a,0x78,0x84,0xfe,0x20,0x00,
6916
+0xff,0xff,0x00,0x46,0x00,0x00,0x04,0xe9,0x04,0x27,0x10,0x06,
6917
+0x03,0xa7,0x00,0x00,0xff,0xff,0xff,0x3b,0xfe,0x39,0x02,0x33,
6918
+0x05,0xe3,0x10,0x26,0x0d,0x85,0x78,0x00,0x10,0x06,0x0d,0x86,
6919
+0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x3b,0xfe,0x54,0x04,0xe9,
6920
+0x04,0x27,0x00,0x19,0x00,0x00,0x01,0x37,0x11,0x21,0x15,0x23,
6921
+0x13,0x33,0x15,0x21,0x35,0x33,0x03,0x01,0x33,0x15,0x21,0x35,
6922
+0x33,0x09,0x01,0x23,0x35,0x21,0x15,0x23,0x02,0xed,0x91,0x01,
6923
+0x5e,0xa6,0x02,0xb1,0xfd,0xe6,0xb1,0x02,0xfe,0x40,0x99,0xfe,
6924
+0x1f,0xb6,0x01,0x3c,0xfe,0x6c,0x99,0x02,0x0c,0x98,0x02,0x08,
6925
+0x87,0x01,0x98,0x6a,0xfb,0x01,0x6a,0x6a,0x03,0x4a,0xfe,0x63,
6926
+0x6b,0x6b,0x01,0x24,0x02,0x2e,0x6a,0x6a,0x00,0x01,0x00,0x54,
6927
+0x00,0x00,0x04,0x24,0x04,0x27,0x00,0x0d,0x00,0x00,0x33,0x35,
6928
+0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x35,0x33,0x11,
6929
+0x54,0xbe,0xbe,0x02,0x34,0xbe,0x01,0xf0,0x6a,0x6a,0x03,0x53,
6930
+0x6a,0x6a,0xfc,0xbe,0xfa,0xfe,0x8b,0x00,0x00,0x02,0x00,0x66,
6931
+0xfe,0x56,0x05,0xf2,0x06,0x14,0x00,0x28,0x00,0x39,0x00,0x00,
6932
+0x01,0x33,0x15,0x21,0x35,0x33,0x11,0x06,0x07,0x06,0x23,0x22,
6933
+0x27,0x26,0x10,0x12,0x33,0x32,0x17,0x16,0x17,0x3d,0x01,0x34,
6934
+0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x15,0x23,0x26,0x27,0x26,
6935
+0x23,0x22,0x07,0x06,0x15,0x03,0x34,0x27,0x26,0x23,0x22,0x07,
6936
+0x06,0x15,0x14,0x17,0x16,0x33,0x32,0x37,0x36,0x35,0x04,0x34,
6937
+0xaf,0xfd,0xea,0xae,0x36,0x53,0x54,0x7b,0xc4,0x7d,0x7c,0xf8,
6938
+0xc5,0x7b,0x54,0x53,0x36,0x61,0x62,0xab,0x48,0x41,0x42,0x3e,
6939
+0x5f,0x07,0x2a,0x2b,0x52,0x5b,0x2c,0x2a,0xb9,0x49,0x4a,0x8c,
6940
+0x8e,0x48,0x49,0x49,0x48,0x8e,0x8c,0x4a,0x49,0xfe,0xc1,0x6b,
6941
+0x6b,0x01,0xe5,0x64,0x30,0x2f,0x9b,0x9c,0x01,0xf4,0x01,0x36,
6942
+0x30,0x2f,0x64,0x4c,0xe8,0xa4,0x5d,0x5e,0x10,0x11,0x21,0xdb,
6943
+0x60,0x2d,0x2d,0x3d,0x3b,0x84,0xfd,0x93,0xbf,0x65,0x65,0x70,
6944
+0x70,0xdd,0xdc,0x71,0x71,0x64,0x65,0xc0,0x00,0x01,0x00,0x9b,
6945
+0x00,0x00,0x03,0xaf,0x06,0x16,0x00,0x23,0x00,0x00,0x33,0x35,
6946
+0x33,0x11,0x23,0x35,0x33,0x11,0x33,0x32,0x36,0x35,0x34,0x26,
6947
+0x23,0x22,0x06,0x07,0x23,0x35,0x3e,0x01,0x33,0x32,0x16,0x15,
6948
+0x14,0x06,0x23,0x15,0x33,0x15,0x23,0x11,0x33,0x15,0xe6,0xb0,
6949
+0xb0,0xb0,0x74,0x5a,0x74,0x84,0x5a,0x6e,0x82,0x10,0x5f,0x60,
6950
+0xbd,0x56,0xaa,0xf7,0xef,0x72,0xae,0xae,0xae,0x6a,0x01,0x34,
6951
+0x6a,0x01,0x38,0x7a,0xc2,0xbe,0x79,0x64,0x62,0xd7,0x29,0x29,
6952
+0xce,0xcc,0xd0,0xc7,0xdd,0x6a,0xfe,0xcc,0x6a,0x00,0x00,0x00,
6953
+0x00,0x01,0x00,0x9b,0x00,0x00,0x03,0xaf,0x06,0x16,0x00,0x23,
6954
+0x00,0x00,0x29,0x01,0x35,0x33,0x11,0x23,0x35,0x33,0x35,0x22,
6955
+0x26,0x35,0x34,0x36,0x33,0x32,0x16,0x17,0x15,0x23,0x2e,0x01,
6956
+0x23,0x22,0x06,0x15,0x14,0x16,0x3b,0x01,0x11,0x33,0x15,0x23,
6957
+0x11,0x33,0x03,0x64,0xfd,0xea,0xae,0xae,0xae,0x72,0xef,0xf7,
6958
+0xaa,0x56,0xbd,0x60,0x5f,0x10,0x82,0x6e,0x5a,0x84,0x74,0x5a,
6959
+0x74,0xb0,0xb0,0xb0,0x6a,0x01,0x34,0x6a,0xdd,0xc7,0xd0,0xcc,
6960
+0xce,0x29,0x29,0xd7,0x62,0x64,0x79,0xbe,0xc2,0x7a,0xfe,0xc8,
6961
+0x6a,0xfe,0xcc,0x00,0x00,0x03,0x00,0x66,0xff,0xe3,0x07,0xac,
6962
+0x06,0x14,0x00,0x0c,0x00,0x25,0x00,0x29,0x00,0x00,0x01,0x35,
6963
+0x34,0x26,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x13,
6964
+0x21,0x15,0x01,0x21,0x35,0x33,0x11,0x21,0x35,0x0e,0x01,0x23,
6965
+0x22,0x02,0x10,0x12,0x33,0x32,0x16,0x17,0x11,0x23,0x35,0x21,
6966
+0x19,0x01,0x01,0x21,0x03,0x7b,0x93,0x8c,0x8e,0x91,0x91,0x8e,
6967
+0x8c,0x93,0xb8,0x03,0x66,0xfd,0x66,0x02,0x42,0x6b,0xfb,0xcf,
6968
+0x36,0xa7,0x7b,0xc4,0xf9,0xf8,0xc5,0x7b,0xa7,0x36,0xae,0x01,
6969
+0x66,0x02,0x79,0xfd,0xf1,0x01,0xdf,0x69,0xbf,0xca,0xe0,0xdd,
6970
+0xdc,0xe2,0xc9,0x03,0x08,0x56,0xfc,0x99,0xc1,0xfe,0xd5,0xa6,
6971
+0x64,0x5f,0x01,0x37,0x01,0xf4,0x01,0x36,0x5f,0x64,0x02,0x29,
6972
+0x6a,0xfc,0xf0,0xfd,0x7d,0x03,0x3b,0x00,0x00,0x02,0x00,0x66,
6973
+0xfe,0x36,0x07,0xf9,0x06,0x14,0x00,0x36,0x00,0x43,0x00,0x00,
6974
+0x01,0x23,0x35,0x01,0x21,0x07,0x11,0x33,0x15,0x21,0x35,0x0e,
6975
+0x01,0x23,0x22,0x02,0x10,0x12,0x33,0x32,0x16,0x17,0x11,0x23,
6976
+0x35,0x21,0x11,0x21,0x15,0x01,0x17,0x16,0x17,0x16,0x15,0x14,
6977
+0x07,0x06,0x21,0x22,0x27,0x26,0x27,0x11,0x33,0x1e,0x01,0x33,
6978
+0x32,0x37,0x36,0x35,0x34,0x27,0x26,0x25,0x35,0x34,0x26,0x23,
6979
+0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x05,0xc0,0x5f,0x01,
6980
+0x4a,0xfd,0xf1,0x69,0xb0,0xfe,0x98,0x36,0xa7,0x7b,0xc4,0xf9,
6981
+0xf8,0xc5,0x7b,0xa7,0x36,0xae,0x01,0x66,0x03,0x65,0xfe,0x8f,
6982
+0x4f,0xb8,0x66,0x65,0x8d,0x8c,0xfe,0xf8,0x75,0x6f,0x70,0x6e,
6983
+0x70,0x0a,0xae,0x9e,0x99,0x59,0x58,0x5b,0x5b,0xfd,0x0b,0x93,
6984
+0x8c,0x8e,0x91,0x91,0x8e,0x8c,0x93,0x01,0xa7,0x66,0x01,0xaf,
6985
+0xb8,0xfd,0x66,0x6a,0xa6,0x64,0x5f,0x01,0x37,0x01,0xf4,0x01,
6986
+0x36,0x5f,0x64,0x02,0x29,0x6a,0xfe,0x13,0x56,0xfe,0x1d,0x07,
6987
+0x1d,0x79,0x78,0xc0,0xea,0x7d,0x7c,0x1c,0x1c,0x39,0x01,0x44,
6988
+0xa1,0xa6,0x64,0x63,0xac,0xc5,0x66,0x65,0x38,0x69,0xbf,0xca,
6989
+0xe0,0xdd,0xdc,0xe2,0xc9,0x00,0x00,0x00,0x00,0x04,0x00,0x66,
6990
+0xff,0x42,0x07,0xaf,0x06,0x14,0x00,0x0c,0x00,0x12,0x00,0x34,
6991
+0x00,0x38,0x00,0x00,0x01,0x35,0x34,0x26,0x23,0x22,0x06,0x15,
6992
+0x14,0x16,0x33,0x32,0x36,0x05,0x32,0x35,0x34,0x23,0x22,0x01,
6993
+0x21,0x15,0x01,0x33,0x10,0x21,0x32,0x07,0x14,0x21,0x15,0x23,
6994
+0x35,0x21,0x35,0x06,0x07,0x06,0x23,0x22,0x27,0x26,0x10,0x12,
6995
+0x33,0x32,0x17,0x16,0x17,0x11,0x23,0x35,0x21,0x19,0x01,0x01,
6996
+0x21,0x03,0x7b,0x93,0x8c,0x8e,0x91,0x91,0x8e,0x8c,0x93,0x02,
6997
+0xeb,0xdb,0x3f,0x9c,0xfd,0xcd,0x03,0x64,0xfd,0x66,0xe5,0x01,
6998
+0x2e,0xa0,0x01,0xfe,0xb6,0x83,0xfd,0x99,0x36,0x53,0x54,0x7b,
6999
+0xc4,0x7d,0x7c,0xf8,0xc5,0x7b,0x54,0x53,0x36,0xae,0x01,0x66,
7000
+0x02,0x77,0xfd,0xf1,0x01,0xdf,0x69,0xbf,0xca,0xe0,0xdd,0xdc,
7001
+0xe2,0xc9,0xb3,0x63,0x79,0x02,0xdf,0x56,0xfc,0x99,0x01,0x44,
7002
+0xe6,0xc8,0xbe,0xbe,0xa6,0x64,0x30,0x2f,0x9b,0x9c,0x01,0xf4,
7003
+0x01,0x36,0x30,0x2f,0x64,0x02,0x29,0x6a,0xfc,0xf0,0xfd,0x80,
7004
+0x03,0x38,0x00,0x00,0x00,0x01,0x00,0x3b,0x00,0x00,0x06,0x2d,
7005
+0x05,0x71,0x00,0x36,0x00,0x00,0x13,0x23,0x35,0x33,0x11,0x33,
7006
+0x11,0x21,0x15,0x21,0x11,0x14,0x16,0x33,0x21,0x32,0x36,0x35,
7007
+0x34,0x26,0x2f,0x01,0x2e,0x01,0x35,0x34,0x36,0x33,0x32,0x16,
7008
+0x17,0x15,0x23,0x2e,0x01,0x23,0x22,0x06,0x15,0x14,0x17,0x16,
7009
+0x1f,0x01,0x16,0x17,0x16,0x17,0x14,0x06,0x23,0x21,0x22,0x26,
7010
+0x35,0xdd,0xa2,0xa2,0xb9,0x01,0x5a,0xfe,0xa6,0x34,0x46,0x02,
7011
+0x63,0x7c,0x82,0x5f,0x99,0x85,0x89,0x7b,0xd6,0xbd,0x54,0xba,
7012
+0x63,0x6a,0x04,0x88,0x75,0x74,0x77,0x2d,0x2f,0x85,0x92,0x95,
7013
+0x44,0x42,0x01,0xe7,0xcb,0xfd,0x85,0x9f,0x84,0x03,0xbc,0x6b,
7014
+0x01,0x4a,0xfe,0xb6,0x6b,0xfd,0x5d,0x87,0x25,0x36,0x59,0x46,
7015
+0x56,0x31,0x2d,0x2c,0x84,0x66,0x92,0xa6,0x2c,0x2a,0xe8,0x67,
7016
+0x74,0x52,0x52,0x43,0x28,0x2a,0x29,0x2d,0x2e,0x48,0x46,0x6f,
7017
+0x97,0x90,0x70,0xa9,0x00,0x01,0x00,0x3b,0xfe,0x39,0x05,0x43,
7018
+0x06,0x16,0x00,0x40,0x00,0x00,0x05,0x16,0x07,0x06,0x23,0x22,
7019
+0x27,0x26,0x27,0x35,0x33,0x16,0x17,0x16,0x33,0x32,0x37,0x36,
7020
+0x27,0x02,0x03,0x21,0x11,0x14,0x16,0x33,0x32,0x36,0x37,0x33,
7021
+0x0e,0x01,0x23,0x22,0x26,0x35,0x11,0x23,0x35,0x33,0x11,0x33,
7022
+0x11,0x21,0x26,0x37,0x26,0x37,0x36,0x33,0x32,0x17,0x16,0x17,
7023
+0x15,0x23,0x26,0x27,0x26,0x23,0x22,0x07,0x06,0x17,0x12,0x04,
7024
+0x4e,0x16,0x78,0x61,0xab,0x48,0x42,0x41,0x3e,0x5f,0x07,0x2b,
7025
+0x2a,0x52,0x59,0x2d,0x3c,0x11,0x78,0x31,0xfe,0xaa,0x34,0x46,
7026
+0x48,0x42,0x02,0x8b,0x08,0x8e,0x91,0x9f,0x84,0xa2,0xa2,0xb9,
7027
+0x01,0x47,0x14,0x03,0x16,0x78,0x61,0xab,0x48,0x42,0x41,0x3e,
7028
+0x5f,0x07,0x2b,0x2a,0x52,0x59,0x2d,0x3b,0x10,0x5e,0x68,0x8f,
7029
+0x73,0x5d,0x11,0x10,0x21,0xdb,0x60,0x2d,0x2d,0x3e,0x50,0x6e,
7030
+0x02,0xe1,0x01,0x43,0xfd,0x5d,0x87,0x4c,0x55,0x5f,0x91,0x86,
7031
+0x8d,0xa9,0x02,0xa3,0x6b,0x01,0x4a,0xfe,0xb6,0x89,0x08,0x8e,
7032
+0x73,0x5d,0x10,0x10,0x22,0xda,0x5d,0x2f,0x2e,0x3e,0x51,0x6d,
7033
+0xfd,0x69,0x00,0x00,0x00,0x02,0x00,0x3b,0xff,0xe3,0x06,0x43,
7034
+0x05,0x71,0x00,0x07,0x00,0x39,0x00,0x00,0x25,0x16,0x17,0x04,
7035
+0x35,0x34,0x23,0x22,0x01,0x23,0x35,0x33,0x11,0x33,0x11,0x21,
7036
+0x15,0x21,0x11,0x14,0x16,0x33,0x32,0x37,0x26,0x35,0x10,0x37,
7037
+0x36,0x33,0x32,0x16,0x17,0x11,0x23,0x26,0x27,0x26,0x23,0x22,
7038
+0x07,0x06,0x15,0x14,0x17,0x36,0x21,0x20,0x15,0x14,0x21,0x22,
7039
+0x27,0x06,0x21,0x22,0x26,0x35,0x03,0xde,0x44,0x9e,0x01,0x14,
7040
+0xe4,0x7e,0xfc,0x6b,0xa2,0xa2,0xb9,0x01,0x5a,0xfe,0xa6,0x34,
7041
+0x46,0x99,0x73,0x74,0x8d,0x8d,0xe8,0x63,0xcc,0x63,0x6b,0x15,
7042
+0x46,0x47,0x83,0x95,0x4c,0x4c,0x24,0x7d,0x01,0x15,0x01,0x0e,
7043
+0xfe,0x7b,0xc5,0x7c,0x78,0xfe,0xfb,0x9f,0x84,0xa4,0x5d,0x01,
7044
+0x02,0x6d,0x7b,0x02,0x90,0x6b,0x01,0x4a,0xfe,0xb6,0x6b,0xfd,
7045
+0x5d,0x87,0x4c,0x53,0x94,0xe7,0x00,0xff,0x99,0x98,0x30,0x2f,
7046
+0xfe,0xf0,0x8c,0x40,0x40,0x73,0x74,0xe6,0x9f,0x69,0x84,0xe6,
7047
+0xc7,0x59,0x59,0x8d,0xa9,0x00,0x00,0x00,0x00,0x01,0x00,0x4a,
7048
+0xfe,0x39,0x06,0xd9,0x06,0x14,0x00,0x41,0x00,0x00,0x21,0x35,
7049
+0x33,0x11,0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,
7050
+0x33,0x35,0x34,0x36,0x33,0x32,0x16,0x17,0x15,0x23,0x2e,0x01,
7051
+0x23,0x22,0x06,0x1d,0x01,0x21,0x15,0x3e,0x01,0x33,0x32,0x17,
7052
+0x16,0x15,0x11,0x14,0x06,0x23,0x22,0x26,0x27,0x35,0x33,0x1e,
7053
+0x01,0x33,0x32,0x37,0x36,0x35,0x11,0x34,0x26,0x23,0x22,0x06,
7054
+0x15,0x11,0x33,0x15,0x02,0xe3,0xa6,0xfe,0x29,0xec,0xfd,0xac,
7055
+0xb0,0xb0,0xb0,0xb9,0xb3,0x43,0x86,0x42,0x61,0x01,0x53,0x4f,
7056
+0x67,0x54,0x02,0x8f,0x33,0xa3,0x6c,0xae,0x55,0x53,0xc3,0xab,
7057
+0x48,0x83,0x3e,0x5f,0x07,0x55,0x52,0x5b,0x2c,0x2a,0x60,0x79,
7058
+0x80,0x86,0xa0,0x6a,0x03,0x52,0xfc,0xae,0x6a,0x6a,0x03,0x52,
7059
+0x6b,0x85,0xb2,0xb6,0x18,0x19,0xca,0x4b,0x4e,0x71,0x91,0x89,
7060
+0xbd,0x6c,0x6e,0x65,0x63,0xd8,0xfc,0xf4,0xa4,0xbb,0x21,0x21,
7061
+0xdb,0x60,0x5a,0x3e,0x3c,0x82,0x02,0xd2,0xc3,0x91,0xbb,0xb3,
7062
+0xfe,0x1a,0x6a,0x00,0x00,0x01,0x00,0x3b,0x00,0x00,0x05,0x59,
7063
+0x06,0x14,0x00,0x2c,0x00,0x00,0x25,0x21,0x32,0x36,0x35,0x34,
7064
+0x26,0x2f,0x01,0x2e,0x01,0x35,0x34,0x36,0x33,0x32,0x16,0x17,
7065
+0x15,0x23,0x2e,0x01,0x23,0x22,0x06,0x15,0x14,0x17,0x16,0x1f,
7066
+0x01,0x16,0x17,0x16,0x17,0x14,0x06,0x23,0x21,0x35,0x33,0x11,
7067
+0x23,0x35,0x21,0x01,0xa4,0x01,0xfb,0x7c,0x82,0x5f,0x99,0x85,
7068
+0x89,0x7b,0xd6,0xbd,0x54,0xba,0x63,0x6a,0x04,0x88,0x75,0x74,
7069
+0x77,0x2d,0x2f,0x85,0x92,0x95,0x44,0x42,0x01,0xe7,0xcb,0xfc,
7070
+0x94,0xb1,0xb1,0x01,0x69,0x6a,0x39,0x59,0x46,0x56,0x31,0x2d,
7071
+0x2c,0x84,0x66,0x92,0xa6,0x2c,0x2a,0xe8,0x67,0x74,0x52,0x52,
7072
+0x43,0x28,0x2a,0x29,0x2d,0x2e,0x48,0x46,0x6f,0x97,0x90,0x6a,
7073
+0x05,0x40,0x6a,0x00,0x00,0x02,0x00,0x3b,0x00,0x00,0x05,0x1d,
7074
+0x06,0x14,0x00,0x10,0x00,0x14,0x00,0x00,0x01,0x21,0x15,0x01,
7075
+0x21,0x35,0x33,0x11,0x21,0x23,0x21,0x35,0x33,0x11,0x23,0x35,
7076
+0x21,0x19,0x01,0x01,0x21,0x01,0xa4,0x03,0x66,0xfd,0x66,0x02,
7077
+0x42,0x6b,0xfd,0x35,0xcf,0xfe,0xb8,0xb1,0xb1,0x01,0x69,0x02,
7078
+0x79,0xfd,0xf1,0x04,0x27,0x56,0xfc,0x99,0xc1,0xfe,0xd5,0x6a,
7079
+0x05,0x40,0x6a,0xfc,0xf0,0xfd,0x7d,0x03,0x3b,0x00,0x00,0x00,
7080
+0x00,0x02,0x00,0x47,0xff,0xe2,0x04,0x60,0x05,0x00,0x00,0x14,
7081
+0x00,0x29,0x00,0x00,0x01,0x1b,0x01,0x23,0x35,0x33,0x15,0x23,
7082
+0x03,0x23,0x0b,0x01,0x23,0x03,0x23,0x35,0x21,0x15,0x23,0x1b,
7083
+0x04,0x23,0x35,0x33,0x15,0x23,0x03,0x23,0x0b,0x01,0x23,0x03,
7084
+0x23,0x35,0x21,0x15,0x23,0x1b,0x01,0x02,0x94,0xa8,0x95,0x5f,
7085
+0xee,0x49,0xc4,0x5f,0xa2,0xa3,0x5b,0xc4,0x49,0x01,0x2a,0x6b,
7086
+0x94,0xaa,0x50,0xa8,0x95,0x5f,0xee,0x49,0xc4,0x5f,0xa2,0xa3,
7087
+0x5b,0xc4,0x49,0x01,0x2a,0x6b,0x94,0xaa,0x02,0x35,0xfe,0x2f,
7088
+0x01,0x95,0x3c,0x3c,0xfd,0xe9,0x01,0xbd,0xfe,0x43,0x02,0x17,
7089
+0x3c,0x3c,0xfe,0x6b,0x01,0xd1,0x02,0xcb,0xfe,0x2f,0x01,0x95,
7090
+0x3c,0x3c,0xfd,0xe9,0x01,0xbd,0xfe,0x43,0x02,0x17,0x3c,0x3c,
7091
+0xfe,0x6b,0x01,0xd1,0x00,0x02,0x00,0x47,0x00,0xd7,0x03,0x23,
7092
+0x05,0x00,0x00,0x07,0x00,0x0f,0x00,0x00,0x01,0x11,0x23,0x11,
7093
+0x21,0x03,0x23,0x11,0x01,0x11,0x23,0x11,0x21,0x03,0x23,0x11,
7094
+0x03,0x23,0x6a,0xfd,0xf8,0x02,0x68,0x02,0xdc,0x6a,0xfd,0xf8,
7095
+0x02,0x68,0x02,0x35,0xfe,0xa3,0x01,0x21,0xfe,0xde,0x01,0x5e,
7096
+0x02,0xcb,0xfe,0xa3,0x01,0x21,0xfe,0xde,0x01,0x5e,0x00,0x00,
7097
+0x00,0x01,0x00,0x3b,0xfe,0x58,0x05,0xf5,0x06,0x14,0x00,0x30,
7098
+0x00,0x00,0x01,0x11,0x33,0x15,0x05,0x35,0x33,0x13,0x06,0x07,
7099
+0x06,0x23,0x22,0x26,0x35,0x11,0x33,0x35,0x34,0x27,0x26,0x23,
7100
+0x22,0x07,0x06,0x07,0x23,0x35,0x36,0x37,0x36,0x33,0x32,0x17,
7101
+0x16,0x1d,0x01,0x23,0x11,0x14,0x17,0x16,0x33,0x32,0x36,0x35,
7102
+0x11,0x23,0x35,0x05,0x45,0xb0,0xfd,0xea,0xae,0x02,0x33,0x52,
7103
+0x51,0x6c,0xb0,0xa6,0x02,0x2b,0x2b,0x5b,0x52,0x2a,0x2b,0x07,
7104
+0x5f,0x3e,0x41,0x42,0x48,0xab,0x61,0x62,0x02,0x30,0x2f,0x7a,
7105
+0x80,0x86,0xa0,0x04,0x27,0xfa,0x9c,0x6a,0x01,0x6b,0x01,0xfa,
7106
+0x6c,0x37,0x37,0xca,0xd6,0x02,0xa4,0x8e,0x83,0x3c,0x3d,0x2d,
7107
+0x2d,0x60,0xdb,0x21,0x11,0x10,0x5e,0x5d,0xa4,0xe8,0xfd,0xf0,
7108
+0xc3,0x48,0x47,0xba,0xb2,0x01,0xe6,0x6a,0x00,0x01,0x00,0x3b,
7109
+0xfe,0x39,0x07,0x04,0x06,0x14,0x00,0x42,0x00,0x00,0x01,0x35,
7110
+0x34,0x27,0x26,0x23,0x22,0x07,0x06,0x07,0x23,0x35,0x36,0x37,
7111
+0x36,0x33,0x32,0x17,0x16,0x1d,0x01,0x23,0x11,0x14,0x17,0x16,
7112
+0x33,0x32,0x36,0x35,0x11,0x23,0x35,0x21,0x11,0x33,0x15,0x14,
7113
+0x17,0x16,0x33,0x32,0x37,0x36,0x37,0x33,0x15,0x06,0x07,0x06,
7114
+0x23,0x22,0x27,0x26,0x3d,0x02,0x33,0x37,0x06,0x07,0x06,0x23,
7115
+0x22,0x26,0x35,0x11,0x01,0xf9,0x2b,0x2b,0x5b,0x52,0x2a,0x2b,
7116
+0x07,0x5f,0x3e,0x41,0x42,0x48,0xab,0x61,0x62,0x02,0x30,0x2f,
7117
+0x7a,0x80,0x86,0xa0,0x01,0x56,0x01,0x2a,0x2c,0x5b,0x52,0x2b,
7118
+0x2a,0x07,0x5f,0x3e,0x42,0x41,0x48,0xab,0x62,0x61,0x01,0x01,
7119
+0x33,0x52,0x51,0x6c,0xb0,0xa6,0x04,0x27,0x8e,0x83,0x3c,0x3d,
7120
+0x2d,0x2d,0x60,0xdb,0x21,0x11,0x10,0x5e,0x5d,0xa4,0xe8,0xfd,
7121
+0xf0,0xc3,0x48,0x47,0xba,0xb2,0x01,0xe6,0x6a,0xfc,0x59,0xe8,
7122
+0x82,0x3c,0x3e,0x2d,0x2d,0x60,0xdb,0x21,0x10,0x11,0x5d,0x5e,
7123
+0xa4,0x68,0x80,0x3d,0x6c,0x37,0x37,0xca,0xd6,0x02,0xa4,0x00,
7124
+0x00,0x01,0x00,0x2e,0x02,0x9c,0x03,0x0e,0x06,0x03,0x00,0x21,
7125
+0x00,0x00,0x13,0x35,0x33,0x11,0x23,0x35,0x33,0x11,0x36,0x37,
7126
+0x36,0x33,0x32,0x17,0x16,0x15,0x11,0x33,0x15,0x21,0x35,0x33,
7127
+0x11,0x34,0x27,0x26,0x23,0x22,0x07,0x06,0x15,0x11,0x33,0x15,
7128
+0x34,0x67,0x6d,0xdf,0x20,0x32,0x33,0x43,0x6d,0x33,0x34,0x65,
7129
+0xfe,0xc5,0x63,0x1d,0x1e,0x4b,0x50,0x29,0x2a,0x63,0x02,0x9c,
7130
+0x3b,0x02,0xf1,0x3b,0xfe,0x82,0x3d,0x1f,0x1f,0x39,0x39,0x77,
7131
+0xfe,0xc0,0x3b,0x3b,0x01,0x1f,0x6d,0x28,0x28,0x34,0x34,0x63,
7132
+0xfe,0xef,0x3b,0x00,0x00,0x01,0x00,0x2e,0x02,0x9b,0x03,0x08,
7133
+0x06,0x02,0x00,0x31,0x00,0x00,0x01,0x36,0x37,0x36,0x33,0x32,
7134
+0x17,0x16,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x34,0x27,
7135
+0x26,0x23,0x22,0x07,0x06,0x15,0x11,0x33,0x15,0x21,0x35,0x33,
7136
+0x11,0x35,0x34,0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x15,0x23,
7137
+0x26,0x27,0x26,0x23,0x22,0x07,0x06,0x15,0x01,0x08,0x20,0x31,
7138
+0x33,0x43,0x6d,0x33,0x34,0x65,0xfe,0xc5,0x63,0x1d,0x1e,0x4b,
7139
+0x50,0x29,0x2a,0x63,0xfe,0xc4,0x67,0x3c,0x3d,0x6a,0x2d,0x28,
7140
+0x29,0x26,0x3b,0x04,0x1a,0x1b,0x33,0x38,0x1b,0x1a,0x04,0x84,
7141
+0x3d,0x1f,0x1f,0x39,0x39,0x77,0xfe,0xc0,0x3b,0x3b,0x01,0x1f,
7142
+0x6d,0x28,0x28,0x34,0x34,0x63,0xfe,0xef,0x3b,0x3b,0x01,0xe6,
7143
+0x82,0x5c,0x34,0x34,0x09,0x09,0x13,0x7a,0x36,0x19,0x19,0x23,
7144
+0x1f,0x4b,0x00,0x00,0x00,0x02,0x00,0x2e,0x01,0x9e,0x01,0xb5,
7145
+0x05,0xe9,0x00,0x0b,0x00,0x22,0x00,0x00,0x00,0x34,0x36,0x33,
7146
+0x32,0x16,0x14,0x07,0x06,0x23,0x22,0x27,0x17,0x23,0x35,0x33,
7147
+0x11,0x14,0x07,0x06,0x23,0x22,0x27,0x26,0x27,0x35,0x33,0x16,
7148
+0x17,0x16,0x33,0x32,0x37,0x36,0x35,0x01,0x27,0x2a,0x1d,0x1c,
7149
+0x2a,0x14,0x14,0x1e,0x1d,0x15,0x07,0x6c,0xde,0x3c,0x3d,0x6a,
7150
+0x2c,0x29,0x29,0x26,0x3b,0x04,0x1a,0x1b,0x33,0x38,0x1b,0x1b,
7151
+0x05,0x8f,0x34,0x26,0x26,0x34,0x13,0x12,0x12,0xc8,0x3c,0xfd,
7152
+0x73,0x5c,0x34,0x35,0x09,0x0a,0x12,0x7b,0x36,0x19,0x19,0x22,
7153
+0x23,0x48,0x00,0x00,0x00,0x01,0x00,0x2e,0x02,0x9d,0x02,0x5f,
7154
+0x05,0x01,0x00,0x1c,0x00,0x00,0x01,0x15,0x23,0x26,0x27,0x26,
7155
+0x23,0x22,0x07,0x06,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,
7156
+0x23,0x35,0x33,0x15,0x36,0x37,0x36,0x33,0x32,0x17,0x16,0x02,
7157
+0x5f,0x42,0x03,0x18,0x18,0x2f,0x54,0x2d,0x2d,0x84,0xfe,0xa3,
7158
+0x67,0x6d,0xdf,0x22,0x34,0x35,0x4c,0x1c,0x1e,0x1f,0x04,0xf1,
7159
+0x95,0x2d,0x16,0x15,0x34,0x35,0x62,0xfe,0xef,0x3b,0x3b,0x01,
7160
+0xdd,0x3b,0x6a,0x3f,0x1e,0x1e,0x04,0x04,0x00,0x01,0x00,0x2e,
7161
+0x02,0x8c,0x02,0x5f,0x04,0xf0,0x00,0x1c,0x00,0x00,0x13,0x35,
7162
+0x33,0x16,0x17,0x16,0x33,0x32,0x37,0x36,0x35,0x11,0x23,0x35,
7163
+0x21,0x15,0x23,0x11,0x33,0x15,0x23,0x35,0x06,0x07,0x06,0x23,
7164
+0x22,0x27,0x26,0x2e,0x42,0x03,0x18,0x18,0x2f,0x54,0x2d,0x2d,
7165
+0x84,0x01,0x5d,0x67,0x6d,0xdf,0x22,0x34,0x35,0x4c,0x1c,0x1e,
7166
+0x1f,0x02,0x9c,0x95,0x2d,0x16,0x15,0x34,0x35,0x62,0x01,0x11,
7167
+0x3b,0x3b,0xfe,0x23,0x3b,0x6a,0x3f,0x1e,0x1e,0x04,0x04,0x00,
7168
+0x00,0x01,0x00,0x2e,0x01,0x9e,0x03,0x09,0x04,0xf0,0x00,0x2d,
7169
+0x00,0x00,0x01,0x35,0x06,0x07,0x06,0x23,0x22,0x27,0x26,0x27,
7170
+0x35,0x33,0x16,0x17,0x16,0x33,0x32,0x37,0x36,0x35,0x11,0x23,
7171
+0x35,0x21,0x15,0x23,0x11,0x15,0x14,0x17,0x16,0x33,0x32,0x37,
7172
+0x36,0x37,0x33,0x15,0x06,0x07,0x06,0x23,0x22,0x27,0x26,0x27,
7173
+0x01,0x80,0x23,0x33,0x35,0x4c,0x1c,0x1e,0x1f,0x22,0x42,0x03,
7174
+0x18,0x18,0x2f,0x54,0x2d,0x2d,0x84,0x01,0x5d,0x65,0x1a,0x1b,
7175
+0x39,0x33,0x1a,0x1a,0x05,0x3b,0x27,0x28,0x29,0x2d,0x6a,0x3c,
7176
+0x3b,0x02,0x02,0x9d,0x6a,0x41,0x1c,0x1d,0x03,0x04,0x08,0x95,
7177
+0x2d,0x15,0x16,0x34,0x35,0x63,0x01,0x10,0x3b,0x3b,0xfe,0x2f,
7178
+0x81,0x4a,0x21,0x23,0x1a,0x19,0x36,0x7b,0x13,0x09,0x09,0x34,
7179
+0x34,0x5d,0x00,0x00,0x00,0x02,0x00,0x2e,0x02,0x9d,0x02,0xba,
7180
+0x04,0xf0,0x00,0x1e,0x00,0x28,0x00,0x00,0x01,0x16,0x17,0x16,
7181
+0x15,0x14,0x07,0x06,0x23,0x21,0x35,0x33,0x11,0x23,0x35,0x21,
7182
+0x15,0x23,0x15,0x33,0x32,0x37,0x36,0x3f,0x01,0x33,0x15,0x23,
7183
+0x07,0x0e,0x01,0x07,0x15,0x33,0x32,0x37,0x36,0x34,0x27,0x26,
7184
+0x23,0x01,0xad,0x4c,0x26,0x26,0x34,0x35,0x60,0xfe,0xb2,0x54,
7185
+0x54,0x01,0x0a,0x5d,0x63,0x2b,0x19,0x18,0x1e,0x67,0x9b,0x50,
7186
+0x60,0x12,0x2c,0xf1,0x83,0x42,0x20,0x20,0x20,0x20,0x42,0x03,
7187
+0xc8,0x08,0x23,0x24,0x3d,0x4e,0x28,0x29,0x2a,0x01,0xff,0x2a,
7188
+0x2a,0xeb,0x11,0x10,0x37,0xbd,0x2a,0xb1,0x21,0x24,0x1f,0xea,
7189
+0x1d,0x1c,0x78,0x1c,0x1d,0x00,0x00,0x00,0x00,0x01,0x00,0x2e,
7190
+0x02,0x9d,0x04,0x47,0x04,0xf0,0x00,0x14,0x00,0x00,0x01,0x1b,
7191
+0x01,0x23,0x35,0x33,0x15,0x23,0x03,0x23,0x0b,0x01,0x23,0x03,
7192
+0x23,0x35,0x21,0x15,0x23,0x1b,0x01,0x02,0x7b,0xa8,0x95,0x5f,
7193
+0xee,0x49,0xc4,0x5f,0xa2,0xa3,0x5b,0xc4,0x49,0x01,0x2a,0x6b,
7194
+0x94,0xaa,0x04,0xf0,0xfe,0x2f,0x01,0x95,0x3c,0x3c,0xfd,0xe9,
7195
+0x01,0xbd,0xfe,0x43,0x02,0x17,0x3c,0x3c,0xfe,0x6b,0x01,0xd1,
7196
+0x00,0x01,0x00,0x2e,0x01,0x9e,0x02,0xfb,0x04,0xf0,0x00,0x1f,
7197
+0x00,0x00,0x01,0x37,0x03,0x23,0x35,0x21,0x15,0x23,0x1b,0x01,
7198
+0x23,0x35,0x33,0x15,0x23,0x01,0x06,0x07,0x06,0x23,0x22,0x27,
7199
+0x26,0x27,0x35,0x33,0x16,0x17,0x16,0x33,0x32,0x36,0x01,0x44,
7200
+0x2b,0xf6,0x4b,0x01,0x2f,0x69,0xb9,0xb9,0x62,0xf7,0x4a,0xfe,
7201
+0xd2,0x20,0x24,0x26,0x45,0x1d,0x1f,0x1f,0x1f,0x3b,0x03,0x12,
7202
+0x12,0x25,0x22,0x2a,0x02,0x30,0x63,0x02,0x21,0x3c,0x3c,0xfe,
7203
+0x67,0x01,0x99,0x3c,0x3c,0xfd,0x62,0x47,0x18,0x19,0x04,0x05,
7204
+0x08,0x72,0x26,0x11,0x10,0x22,0x00,0x00,0xff,0xff,0x00,0xa0,
7205
+0x04,0x74,0x01,0x9f,0x06,0x66,0x10,0x06,0x02,0xf6,0x00,0x00,
7206
+0xff,0xff,0x00,0xa0,0x04,0x74,0x03,0x13,0x06,0x66,0x10,0x27,
7207
+0x02,0xf6,0x01,0x74,0x00,0x00,0x10,0x06,0x02,0xf6,0x00,0x00,
7208
+0x00,0x01,0x00,0xd1,0x03,0xf6,0x02,0x25,0x05,0xf0,0x00,0x08,
7209
+0x00,0x1b,0x40,0x0c,0x03,0x00,0x04,0x08,0x69,0x09,0x08,0x00,
7210
+0x03,0x12,0x05,0x09,0x10,0xd4,0xfc,0xc4,0x39,0x31,0x00,0x10,
7211
+0xf4,0xcc,0x39,0x39,0x30,0x01,0x0e,0x01,0x1d,0x01,0x23,0x3e,
7212
+0x01,0x37,0x02,0x25,0x4d,0x45,0xc2,0x01,0x7d,0x88,0x05,0xa0,
7213
+0x40,0xaa,0x81,0x3f,0xae,0xf1,0x5b,0x00,0x00,0x01,0x00,0xd1,
7214
+0x03,0xf6,0x02,0x25,0x05,0xf0,0x00,0x08,0x00,0x1d,0x40,0x0d,
7215
+0x03,0x00,0x08,0x04,0x62,0x09,0x08,0x00,0x05,0x12,0x00,0x03,
7216
+0x09,0x10,0xd4,0xc4,0xec,0x12,0x39,0x31,0x00,0x10,0xf4,0xcc,
7217
+0x39,0x39,0x30,0x13,0x3e,0x01,0x3d,0x01,0x33,0x0e,0x01,0x07,
7218
+0xd1,0x4d,0x45,0xc2,0x01,0x7d,0x88,0x04,0x46,0x40,0xaa,0x81,
7219
+0x3f,0xae,0xf1,0x5b,0x00,0x01,0x00,0xd1,0x03,0xf6,0x02,0x25,
7220
+0x05,0xf0,0x00,0x0a,0x00,0x00,0x01,0x30,0x07,0x2e,0x01,0x27,
7221
+0x30,0x33,0x15,0x14,0x16,0x02,0x25,0x4e,0x88,0x7d,0x01,0xc2,
7222
+0x45,0x04,0x46,0x50,0x5b,0xf1,0xae,0x3f,0x81,0xaa,0x00,0x00,
7223
+0x00,0x01,0x00,0x75,0x03,0xef,0x01,0x87,0x06,0x14,0x00,0x10,
7224
+0x00,0x00,0x13,0x34,0x35,0x32,0x36,0x35,0x34,0x26,0x23,0x34,
7225
+0x35,0x32,0x17,0x16,0x14,0x07,0x06,0x75,0x40,0x58,0x58,0x40,
7226
+0x73,0x50,0x4f,0x4f,0x50,0x03,0xef,0x3d,0x3e,0x58,0x40,0x3f,
7227
+0x58,0x3d,0x3e,0x50,0x4f,0xe6,0x50,0x50,0x00,0x01,0x00,0x75,
7228
+0x03,0xef,0x01,0x87,0x06,0x14,0x00,0x10,0x00,0x00,0x01,0x22,
7229
+0x27,0x26,0x34,0x37,0x36,0x33,0x14,0x15,0x22,0x06,0x15,0x14,
7230
+0x16,0x33,0x14,0x01,0x87,0x73,0x50,0x4f,0x4f,0x50,0x73,0x40,
7231
+0x58,0x58,0x40,0x03,0xef,0x50,0x50,0xe6,0x4f,0x50,0x3e,0x3d,
7232
+0x58,0x3f,0x40,0x58,0x3e,0x00,0x00,0x00,0x00,0x01,0x00,0x2e,
7233
+0x02,0xc6,0x01,0xd7,0x06,0x2e,0x00,0x23,0x00,0x00,0x13,0x11,
7234
+0x33,0x32,0x37,0x36,0x35,0x34,0x27,0x26,0x23,0x22,0x07,0x06,
7235
+0x07,0x23,0x35,0x36,0x37,0x36,0x33,0x32,0x17,0x16,0x15,0x14,
7236
+0x07,0x06,0x07,0x11,0x33,0x15,0x2b,0x02,0x35,0xa0,0x4c,0x3a,
7237
+0x1d,0x1b,0x1b,0x1d,0x3a,0x36,0x1b,0x1c,0x04,0x3f,0x29,0x2b,
7238
+0x2a,0x2f,0x6f,0x3f,0x40,0x40,0x35,0x4a,0x71,0x71,0x78,0x72,
7239
+0x03,0x01,0x01,0x97,0x22,0x22,0x6d,0x6a,0x22,0x22,0x19,0x19,
7240
+0x36,0x7a,0x13,0x09,0x09,0x34,0x34,0x7d,0x80,0x35,0x2b,0x04,
7241
+0xfe,0x9c,0x3b,0x3b,0x00,0x01,0x00,0x2e,0x02,0xc6,0x01,0xd7,
7242
+0x06,0x2e,0x00,0x21,0x00,0x00,0x01,0x2b,0x01,0x35,0x33,0x11,
7243
+0x26,0x27,0x26,0x35,0x34,0x37,0x36,0x33,0x32,0x17,0x16,0x17,
7244
+0x15,0x23,0x26,0x27,0x26,0x23,0x22,0x06,0x15,0x14,0x16,0x3b,
7245
+0x01,0x11,0x33,0x15,0x01,0x65,0x78,0x71,0x71,0x4a,0x35,0x40,
7246
+0x40,0x3f,0x6f,0x2f,0x2b,0x2a,0x28,0x3e,0x04,0x1c,0x1b,0x36,
7247
+0x3b,0x38,0x38,0x3b,0x4c,0x72,0x02,0xc6,0x3b,0x01,0x64,0x04,
7248
+0x2b,0x35,0x80,0x7d,0x34,0x34,0x09,0x09,0x13,0x7a,0x36,0x19,
7249
+0x19,0x44,0x6a,0x6d,0x44,0xfe,0x69,0x3b,0x00,0x01,0x01,0x0b,
7250
+0x04,0x32,0x02,0xf5,0x06,0xb0,0x00,0x06,0x00,0x00,0x01,0x25,
7251
+0x15,0x0d,0x01,0x15,0x25,0x01,0x0b,0x01,0xea,0xfe,0x99,0x01,
7252
+0x67,0xfe,0x16,0x05,0xbb,0xf5,0x8b,0xb4,0xb4,0x8b,0xf5,0x00,
7253
+0x00,0x01,0x01,0x0b,0x04,0x32,0x02,0xf5,0x06,0xb0,0x00,0x06,
7254
+0x00,0x00,0x01,0x05,0x35,0x2d,0x01,0x35,0x05,0x02,0xf5,0xfe,
7255
+0x16,0x01,0x67,0xfe,0x99,0x01,0xea,0x05,0x27,0xf5,0x8b,0xb4,
7256
+0xb4,0x8b,0xf5,0x00,0x00,0x01,0x00,0xc1,0x04,0x7c,0x03,0x3f,
7257
+0x06,0x66,0x00,0x06,0x00,0x00,0x01,0x33,0x13,0x23,0x0b,0x01,
7258
+0x23,0x01,0xac,0xa8,0xeb,0x74,0xcb,0xcb,0x74,0x06,0x66,0xfe,
7259
+0x16,0x01,0x67,0xfe,0x99,0x00,0x00,0x00,0x00,0x01,0x00,0xc1,
7260
+0x04,0x7c,0x03,0x3f,0x06,0x66,0x00,0x06,0x00,0x00,0x01,0x23,
7261
+0x03,0x33,0x1b,0x01,0x33,0x02,0x54,0xa8,0xeb,0x74,0xcb,0xcb,
7262
+0x74,0x04,0x7c,0x01,0xea,0xfe,0x99,0x01,0x67,0x00,0x00,0x00,
7263
+0x00,0x01,0x00,0xc1,0x04,0xee,0x03,0x3f,0x06,0x66,0x00,0x06,
7264
+0x00,0x5b,0x40,0x09,0x04,0x05,0x02,0x00,0x07,0x04,0x02,0x06,
7265
+0x07,0x10,0xd4,0xcc,0x39,0x31,0x00,0x10,0xd4,0xcc,0x32,0x39,
7266
+0x30,0x00,0x4b,0xb0,0x09,0x54,0x4b,0xb0,0x0e,0x54,0x5b,0x58,
7267
+0xbd,0x00,0x07,0xff,0xc0,0x00,0x01,0x00,0x07,0x00,0x07,0x00,
7268
+0x40,0x38,0x11,0x37,0x38,0x59,0x01,0x4b,0xb0,0x0b,0x54,0x4b,
7269
+0xb0,0x0d,0x54,0x5b,0x4b,0xb0,0x0e,0x54,0x5b,0x4b,0xb0,0x0f,
7270
+0x54,0x5b,0x58,0xbd,0x00,0x07,0xff,0xc0,0x00,0x01,0x00,0x07,
7271
+0x00,0x07,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x01,0x33,0x13,
7272
+0x23,0x0b,0x01,0x23,0x01,0xac,0xa8,0xeb,0x74,0xcb,0xcb,0x74,
7273
+0x06,0x66,0xfe,0x88,0x01,0x04,0xfe,0xfc,0x00,0x01,0x00,0xc1,
7274
+0x04,0xee,0x03,0x3f,0x06,0x66,0x00,0x06,0x00,0x4c,0x40,0x09,
7275
+0x03,0x00,0x04,0x01,0x07,0x03,0x05,0x01,0x07,0x10,0xd4,0xcc,
7276
+0x39,0x31,0x00,0x10,0xd4,0x3c,0xcc,0x39,0x30,0x00,0x4b,0xb0,
7277
+0x09,0x54,0x4b,0xb0,0x0e,0x54,0x5b,0x58,0xbd,0x00,0x07,0xff,
7278
+0xc0,0x00,0x01,0x00,0x07,0x00,0x07,0x00,0x40,0x38,0x11,0x37,
7279
+0x38,0x59,0x01,0x4b,0xb0,0x0e,0x54,0x58,0xbd,0x00,0x07,0xff,
7280
+0xc0,0x00,0x01,0x00,0x07,0x00,0x07,0x00,0x40,0x38,0x11,0x37,
7281
+0x38,0x59,0x01,0x03,0x33,0x1b,0x01,0x33,0x03,0x01,0xac,0xeb,
7282
+0x74,0xcb,0xcb,0x74,0xeb,0x04,0xee,0x01,0x78,0xfe,0xfc,0x01,
7283
+0x04,0xfe,0x88,0x00,0x00,0x01,0x00,0xd4,0x04,0x35,0x01,0x68,
7284
+0x06,0x13,0x00,0x03,0x00,0x00,0x13,0x11,0x33,0x11,0xd4,0x94,
7285
+0x04,0x35,0x01,0xde,0xfe,0x22,0x00,0x00,0xff,0xff,0x00,0xd5,
7286
+0x05,0x62,0x03,0x2b,0x05,0xf6,0x12,0x06,0x00,0x71,0x00,0x00,
7287
+0xff,0xff,0x01,0x89,0x04,0xee,0x03,0x52,0x06,0x66,0x12,0x06,
7288
+0x00,0x76,0x00,0x00,0xff,0xff,0x00,0xaa,0x04,0xec,0x02,0x73,
7289
+0x06,0x64,0x12,0x06,0x00,0x43,0x00,0x00,0x00,0x01,0x00,0xd4,
7290
+0xff,0x03,0x01,0x68,0x00,0xe1,0x00,0x03,0x00,0x00,0x17,0x11,
7291
+0x33,0x11,0xd4,0x94,0xfd,0x01,0xde,0xfe,0x22,0x00,0x00,0x00,
7292
+0xff,0xff,0x00,0xd5,0xfe,0xc0,0x03,0x2b,0xff,0x54,0x10,0x07,
7293
+0x00,0x71,0x00,0x00,0xf9,0x5e,0x00,0x00,0x00,0x02,0x00,0xd8,
7294
+0x00,0x00,0x01,0xda,0x03,0x78,0x00,0x03,0x00,0x07,0x00,0x00,
7295
+0x29,0x01,0x13,0x33,0x03,0x21,0x03,0x23,0x01,0xda,0xfe,0xfe,
7296
+0x63,0x3d,0xa0,0x01,0x02,0x63,0x3d,0x01,0x0c,0x02,0x6c,0xfe,
7297
+0xf4,0x00,0x00,0x00,0x00,0x01,0x00,0xd8,0x02,0x6c,0x01,0xda,
7298
+0x03,0x78,0x00,0x03,0x00,0x00,0x13,0x21,0x03,0x23,0xd8,0x01,
7299
+0x02,0x63,0x3d,0x03,0x78,0xfe,0xf4,0x00,0xff,0xff,0x00,0x75,
7300
+0x01,0xfe,0x01,0x87,0x04,0x23,0x10,0x07,0x02,0x80,0x00,0x00,
7301
+0xfe,0x0f,0x00,0x00,0xff,0xff,0x00,0x75,0x01,0xfe,0x01,0x87,
7302
+0x04,0x23,0x10,0x07,0x02,0x81,0x00,0x00,0xfe,0x0f,0x00,0x00,
7303
+0x00,0x01,0x00,0x5a,0x01,0x3a,0x02,0x38,0x03,0x18,0x00,0x0b,
7304
+0x00,0x00,0x01,0x35,0x33,0x15,0x33,0x15,0x23,0x15,0x23,0x35,
7305
+0x23,0x35,0x00,0xff,0x94,0xa5,0xa5,0x94,0xa5,0x02,0x73,0xa5,
7306
+0xa5,0x94,0xa5,0xa5,0x94,0x00,0x00,0x00,0x00,0x01,0x00,0x5a,
7307
+0x01,0xdf,0x02,0x38,0x02,0x73,0x00,0x03,0x00,0x00,0x01,0x15,
7308
+0x21,0x35,0x02,0x38,0xfe,0x22,0x02,0x73,0x94,0x94,0x00,0x00,
7309
+0x00,0x01,0x00,0xc7,0x05,0x29,0x03,0x39,0x06,0x48,0x00,0x0d,
7310
+0x00,0x6e,0x40,0x0d,0x07,0x00,0x0b,0xbf,0x04,0x0e,0x07,0x5b,
7311
+0x08,0x01,0x5b,0x00,0x0e,0x10,0xd4,0xec,0xd4,0xec,0x31,0x00,
7312
+0x10,0xd4,0xec,0xc4,0x32,0x30,0x01,0x4b,0xb0,0x0e,0x54,0x58,
7313
+0xbd,0x00,0x0e,0xff,0xc0,0x00,0x01,0x00,0x0e,0x00,0x0e,0x00,
7314
+0x40,0x38,0x11,0x37,0x38,0x59,0x00,0x4b,0xb0,0x09,0x54,0x58,
7315
+0xbd,0x00,0x0e,0xff,0xc0,0x00,0x01,0x00,0x0e,0x00,0x0e,0x00,
7316
+0x40,0x38,0x11,0x37,0x38,0x59,0x00,0x4b,0xb0,0x0f,0x54,0x4b,
7317
+0xb0,0x12,0x54,0x5b,0x4b,0xb0,0x13,0x54,0x5b,0x58,0xbd,0x00,
7318
+0x0e,0x00,0x40,0x00,0x01,0x00,0x0e,0x00,0x0e,0xff,0xc0,0x38,
7319
+0x11,0x37,0x38,0x59,0x13,0x33,0x1e,0x01,0x33,0x32,0x36,0x37,
7320
+0x33,0x0e,0x01,0x23,0x22,0x26,0xc7,0x60,0x0d,0x68,0x64,0x64,
7321
+0x68,0x0d,0x60,0x0a,0x9e,0x91,0x91,0x9e,0x06,0x48,0x4f,0x47,
7322
+0x47,0x4f,0x8f,0x90,0x90,0x00,0x00,0x00,0x00,0x01,0x01,0x8b,
7323
+0x05,0x37,0x02,0x75,0x06,0x21,0x00,0x0b,0x00,0x2d,0xb5,0x06,
7324
+0x00,0x0c,0x03,0x09,0x0c,0x10,0xd4,0xcc,0x31,0x00,0x10,0xd4,
7325
+0xcc,0x30,0x00,0x4b,0xb0,0x0d,0x54,0x4b,0xb0,0x0a,0x54,0x5b,
7326
+0x58,0xbd,0x00,0x0c,0x00,0x40,0x00,0x01,0x00,0x0c,0x00,0x0c,
7327
+0xff,0xc0,0x38,0x11,0x37,0x38,0x59,0x01,0x32,0x16,0x15,0x14,
7328
+0x06,0x23,0x22,0x26,0x35,0x34,0x36,0x02,0x00,0x30,0x45,0x42,
7329
+0x33,0x33,0x42,0x45,0x06,0x21,0x45,0x30,0x33,0x42,0x42,0x33,
7330
+0x30,0x45,0x00,0x00,0x00,0x02,0x00,0xee,0x04,0xe1,0x03,0x12,
7331
+0x07,0x06,0x00,0x0b,0x00,0x17,0x00,0x5c,0x40,0x0e,0x0f,0xbf,
7332
+0x09,0x15,0xbf,0x03,0x18,0x0c,0x5b,0x00,0x12,0x5b,0x06,0x18,
7333
+0x10,0xd4,0xec,0xd4,0xec,0x31,0x00,0x10,0xd4,0xec,0xd4,0xec,
7334
+0x30,0x01,0x4b,0xb0,0x0d,0x54,0x4b,0xb0,0x0c,0x54,0x5b,0x4b,
7335
+0xb0,0x0b,0x54,0x5b,0x58,0xbd,0x00,0x18,0xff,0xc0,0x00,0x01,
7336
+0x00,0x18,0x00,0x18,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x00,
7337
+0x4b,0xb0,0x0c,0x54,0x4b,0xb0,0x09,0x54,0x5b,0x58,0xbd,0x00,
7338
+0x18,0xff,0xc0,0x00,0x01,0x00,0x18,0x00,0x18,0x00,0x40,0x38,
7339
+0x11,0x37,0x38,0x59,0x01,0x14,0x06,0x23,0x22,0x26,0x35,0x34,
7340
+0x36,0x33,0x32,0x16,0x07,0x34,0x26,0x23,0x22,0x06,0x15,0x14,
7341
+0x16,0x33,0x32,0x36,0x03,0x12,0x9f,0x73,0x73,0x9f,0x9f,0x73,
7342
+0x73,0x9f,0x7a,0x58,0x40,0x41,0x57,0x57,0x41,0x40,0x58,0x05,
7343
+0xf4,0x73,0xa0,0xa0,0x73,0x73,0x9f,0x9f,0x73,0x3f,0x58,0x57,
7344
+0x40,0x41,0x57,0x58,0x00,0x01,0x01,0x4c,0xfe,0x77,0x02,0xc1,
7345
+0x00,0x00,0x00,0x13,0x00,0x26,0x40,0x11,0x0b,0x0e,0x0a,0x02,
7346
+0x00,0x07,0xbf,0x0e,0x00,0x00,0x11,0x02,0x01,0x0a,0x04,0x11,
7347
+0x14,0x10,0xd4,0xdc,0xc4,0x39,0x39,0x12,0x39,0x31,0x00,0x2f,
7348
+0xd4,0xec,0x11,0x39,0x39,0x11,0x39,0x30,0x21,0x33,0x07,0x06,
7349
+0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x07,0x0e,0x01,0x23,0x22,
7350
+0x26,0x35,0x34,0x36,0x01,0xcd,0x5e,0x01,0x57,0x43,0x38,0x1b,
7351
+0x3a,0x1e,0x01,0x24,0x43,0x20,0x71,0x7c,0x3c,0x02,0x7b,0x2f,
7352
+0x2e,0x38,0x0d,0x0d,0x7f,0x09,0x09,0x59,0x51,0x31,0x69,0x00,
7353
+0x00,0x01,0x00,0xb6,0x05,0x1d,0x03,0x4a,0x06,0x37,0x00,0x1b,
7354
+0x00,0xc8,0x40,0x1f,0x00,0x12,0x07,0x0e,0x0b,0x04,0x01,0x12,
7355
+0x07,0x0f,0x15,0x0b,0xbf,0x04,0x12,0xbf,0x19,0x07,0x1c,0x0f,
7356
+0x01,0x0e,0x00,0x07,0x15,0x5b,0x16,0x07,0x5b,0x08,0x1c,0x10,
7357
+0xd4,0xec,0xd4,0xec,0x11,0x39,0x39,0x39,0x39,0x31,0x00,0x10,
7358
+0xd4,0x3c,0xec,0xd4,0xec,0x32,0x39,0x11,0x12,0x39,0x11,0x12,
7359
+0x39,0x11,0x12,0x39,0x30,0x40,0x41,0x09,0x00,0x0c,0x0a,0x0c,
7360
+0x0b,0x0c,0x0c,0x0c,0x0d,0x0c,0x0e,0x0c,0x0f,0x0c,0x10,0x0c,
7361
+0x11,0x0c,0x12,0x0c,0x13,0x0f,0x14,0x0f,0x15,0x0f,0x16,0x0f,
7362
+0x17,0x09,0x1b,0x19,0x00,0x1c,0x0a,0x1c,0x0b,0x1c,0x0c,0x1c,
7363
+0x0d,0x1c,0x0e,0x1c,0x0f,0x1c,0x10,0x1c,0x11,0x1c,0x12,0x1c,
7364
+0x13,0x1f,0x14,0x1f,0x15,0x1f,0x16,0x1f,0x17,0x19,0x1b,0x20,
7365
+0x01,0x5d,0x01,0x4b,0xb0,0x0d,0x54,0x4b,0xb0,0x0f,0x54,0x5b,
7366
+0x4b,0xb0,0x10,0x54,0x5b,0x58,0xbd,0x00,0x1c,0xff,0xc0,0x00,
7367
+0x01,0x00,0x1c,0x00,0x1c,0x00,0x40,0x38,0x11,0x37,0x38,0x59,
7368
+0x00,0x4b,0xb0,0x0f,0x54,0x4b,0xb0,0x12,0x54,0x5b,0x4b,0xb0,
7369
+0x14,0x54,0x5b,0x58,0xbd,0x00,0x1c,0x00,0x40,0x00,0x01,0x00,
7370
+0x1c,0x00,0x1c,0xff,0xc0,0x38,0x11,0x37,0x38,0x59,0x01,0x27,
7371
+0x2e,0x01,0x23,0x22,0x06,0x07,0x23,0x3e,0x01,0x33,0x32,0x16,
7372
+0x1f,0x01,0x1e,0x01,0x33,0x32,0x36,0x37,0x33,0x0e,0x01,0x23,
7373
+0x22,0x26,0x01,0xfc,0x39,0x1a,0x21,0x13,0x2a,0x30,0x05,0x60,
7374
+0x02,0x66,0x5b,0x26,0x40,0x25,0x39,0x17,0x22,0x15,0x2b,0x30,
7375
+0x04,0x60,0x02,0x66,0x5b,0x26,0x40,0x05,0x5a,0x37,0x18,0x0f,
7376
+0x4f,0x4c,0x87,0x93,0x1c,0x21,0x37,0x17,0x10,0x50,0x4b,0x87,
7377
+0x93,0x1c,0x00,0x00,0x00,0x02,0x00,0xf4,0x04,0xee,0x03,0xac,
7378
+0x06,0x66,0x00,0x03,0x00,0x07,0x00,0x3a,0x40,0x0c,0x06,0x02,
7379
+0x04,0x00,0x08,0x00,0x03,0x05,0x07,0x01,0x03,0x08,0x10,0xd4,
7380
+0xdc,0xd4,0xcc,0x12,0x39,0x31,0x00,0x10,0xd4,0x3c,0xcc,0x32,
7381
+0x30,0x00,0x4b,0xb0,0x09,0x54,0x4b,0xb0,0x0e,0x54,0x5b,0x58,
7382
+0xbd,0x00,0x08,0xff,0xc0,0x00,0x01,0x00,0x08,0x00,0x08,0x00,
7383
+0x40,0x38,0x11,0x37,0x38,0x59,0x01,0x33,0x03,0x23,0x01,0x33,
7384
+0x01,0x23,0x01,0xb0,0xaa,0xf4,0x72,0x02,0x06,0xb2,0xfe,0xe1,
7385
+0x74,0x06,0x66,0xfe,0x88,0x01,0x78,0xfe,0x88,0x00,0x00,0x00,
7386
+0x00,0x01,0x00,0x02,0x02,0x74,0x03,0x5a,0x04,0x10,0x00,0x13,
7387
+0x00,0x00,0x13,0x25,0x33,0x15,0x14,0x17,0x16,0x33,0x32,0x37,
7388
+0x17,0x06,0x07,0x06,0x23,0x26,0x27,0x26,0x27,0x05,0x02,0x01,
7389
+0x2c,0x72,0x42,0x44,0x52,0x6a,0x2d,0x4a,0x2f,0x21,0x36,0x57,
7390
+0x73,0x5f,0x53,0x0c,0xfe,0xb7,0x03,0x63,0xad,0x3d,0x83,0x3b,
7391
+0x3e,0x2d,0x4e,0x28,0x09,0x11,0x01,0x5c,0x51,0x84,0xbd,0x00,
7392
+0x00,0x02,0x00,0x10,0x01,0x9c,0x02,0xf5,0x04,0xef,0x00,0x18,
7393
+0x00,0x24,0x00,0x00,0x01,0x12,0x15,0x14,0x07,0x06,0x24,0x27,
7394
+0x26,0x35,0x34,0x37,0x03,0x23,0x35,0x21,0x15,0x23,0x17,0x37,
7395
+0x23,0x35,0x21,0x15,0x23,0x01,0x06,0x15,0x14,0x17,0x16,0x33,
7396
+0x32,0x37,0x36,0x37,0x36,0x01,0xc9,0xc6,0x49,0x3c,0xfe,0xf8,
7397
+0x34,0x21,0xaa,0xe1,0x66,0x01,0x5c,0x6d,0xa1,0x9a,0x79,0x01,
7398
+0x34,0x6a,0xfe,0xf6,0x8b,0x14,0x21,0x58,0x53,0x21,0x18,0x01,
7399
+0x01,0x03,0xb7,0xfe,0xf8,0x6b,0x58,0x2c,0x24,0x01,0x39,0x24,
7400
+0x3d,0x60,0xf9,0x01,0x23,0x3c,0x3c,0xc5,0xc5,0x3c,0x3c,0xfe,
7401
+0xa6,0xd4,0x5d,0x1f,0x13,0x1e,0x1a,0x12,0x21,0x77,0x00,0x00,
7402
+0x00,0x01,0x00,0x2e,0x02,0x9c,0x01,0x8a,0x06,0x03,0x00,0x09,
7403
+0x00,0x00,0x01,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x33,
7404
+0x01,0x19,0x71,0xfe,0xa4,0x73,0x73,0xeb,0x02,0xd7,0x3b,0x3b,
7405
+0x02,0xf1,0x3b,0x00,0x00,0x01,0x00,0x37,0x02,0x8c,0x02,0x53,
7406
+0x05,0x00,0x00,0x31,0x00,0x00,0x13,0x35,0x33,0x1e,0x01,0x33,
7407
+0x32,0x37,0x36,0x35,0x34,0x26,0x2f,0x01,0x2e,0x01,0x35,0x34,
7408
+0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x15,0x23,0x26,0x27,0x26,
7409
+0x23,0x22,0x06,0x15,0x14,0x17,0x16,0x1f,0x01,0x16,0x17,0x16,
7410
+0x15,0x14,0x07,0x06,0x23,0x22,0x27,0x26,0x37,0x45,0x02,0x5c,
7411
+0x5a,0x50,0x2b,0x2a,0x3e,0x63,0x57,0x59,0x50,0x46,0x45,0x7b,
7412
+0x37,0x3c,0x3d,0x40,0x45,0x02,0x2d,0x2c,0x4c,0x4b,0x4e,0x1e,
7413
+0x1d,0x58,0x5f,0x61,0x2c,0x2b,0x4b,0x4b,0x84,0x43,0x40,0x3f,
7414
+0x02,0xbe,0x8a,0x42,0x42,0x1a,0x1a,0x32,0x27,0x30,0x1b,0x1a,
7415
+0x18,0x4a,0x39,0x52,0x2f,0x2e,0x0c,0x0d,0x17,0x82,0x3a,0x20,
7416
+0x21,0x2e,0x2e,0x26,0x16,0x17,0x18,0x19,0x1a,0x28,0x27,0x3e,
7417
+0x55,0x30,0x31,0x0d,0x0c,0x00,0x00,0x00,0x00,0x01,0x00,0x2e,
7418
+0x02,0x9c,0x02,0xfc,0x04,0xf0,0x00,0x1b,0x00,0x00,0x01,0x37,
7419
+0x23,0x35,0x21,0x15,0x23,0x07,0x13,0x33,0x15,0x21,0x35,0x33,
7420
+0x27,0x07,0x33,0x15,0x21,0x35,0x33,0x37,0x27,0x23,0x35,0x21,
7421
+0x15,0x23,0x01,0xa1,0x91,0x5d,0x01,0x0a,0x5c,0xb9,0xd8,0x5a,
7422
+0xfe,0xc1,0x58,0x96,0x97,0x5a,0xfe,0xf9,0x5c,0xbe,0xd2,0x55,
7423
+0x01,0x35,0x53,0x04,0x08,0xac,0x3c,0x3c,0xdc,0xff,0x00,0x3c,
7424
+0x3c,0xb2,0xb2,0x3c,0x3c,0xe2,0xfa,0x3c,0x3c,0x00,0x00,0x00,
7425
+0x00,0x01,0x00,0x2e,0x02,0xc6,0x01,0xd7,0x06,0x2e,0x00,0x21,
7426
+0x00,0x00,0x01,0x2b,0x01,0x35,0x33,0x11,0x26,0x27,0x26,0x35,
7427
+0x34,0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x15,0x23,0x26,0x27,
7428
+0x26,0x23,0x22,0x06,0x15,0x14,0x16,0x3b,0x01,0x11,0x33,0x15,
7429
+0x01,0x65,0x78,0x71,0x71,0x4a,0x35,0x40,0x40,0x3f,0x6f,0x2f,
7430
+0x2b,0x2a,0x28,0x3e,0x04,0x1c,0x1b,0x36,0x3b,0x38,0x38,0x3b,
7431
+0x4c,0x72,0x02,0xc6,0x3b,0x01,0x64,0x04,0x2b,0x35,0x80,0x7d,
7432
+0x34,0x34,0x09,0x09,0x13,0x7a,0x36,0x19,0x19,0x44,0x6a,0x6d,
7433
+0x44,0xfe,0x69,0x3b,0x00,0x01,0x00,0xd6,0x00,0x00,0x03,0x1d,
7434
+0x05,0x58,0x00,0x05,0x00,0x00,0x21,0x11,0x21,0x35,0x21,0x11,
7435
+0x02,0x95,0xfe,0x41,0x02,0x47,0x04,0xd0,0x88,0xfa,0xa8,0x00,
7436
+0x00,0x01,0x00,0xd6,0x00,0x00,0x03,0x1d,0x05,0x58,0x00,0x07,
7437
+0x00,0x00,0x21,0x11,0x21,0x35,0x21,0x11,0x33,0x11,0x02,0x95,
7438
+0xfe,0x41,0x01,0xbf,0x88,0x03,0x9c,0x88,0x01,0x34,0xfa,0xa8,
7439
+0x00,0x01,0x00,0xd6,0x00,0x00,0x03,0x1d,0x05,0x58,0x00,0x07,
7440
+0x00,0x00,0x21,0x11,0x21,0x35,0x21,0x11,0x33,0x11,0x02,0x95,
7441
+0xfe,0x41,0x01,0xbf,0x88,0x02,0x68,0x88,0x02,0x68,0xfa,0xa8,
7442
+0x00,0x01,0x00,0xd6,0x00,0x00,0x03,0x1d,0x05,0x58,0x00,0x07,
7443
+0x00,0x00,0x21,0x11,0x21,0x35,0x21,0x11,0x33,0x11,0x02,0x95,
7444
+0xfe,0x41,0x01,0xbf,0x88,0x01,0x34,0x88,0x03,0x9c,0xfa,0xa8,
7445
+0x00,0x01,0x00,0xd6,0x00,0x00,0x03,0x1d,0x05,0x58,0x00,0x05,
7446
+0x00,0x00,0x25,0x11,0x33,0x11,0x21,0x35,0x02,0x95,0x88,0xfd,
7447
+0xb9,0x88,0x04,0xd0,0xfa,0xa8,0x88,0x00,0xff,0xff,0x00,0xc1,
7448
+0xfd,0xc1,0x03,0x3f,0xff,0xab,0x10,0x07,0x02,0x87,0x00,0x00,
7449
+0xf9,0x45,0x00,0x00,0x00,0x02,0x00,0xd1,0x03,0xf6,0x03,0x79,
7450
+0x05,0xf0,0x00,0x08,0x00,0x11,0x00,0x00,0x01,0x3e,0x01,0x3d,
7451
+0x01,0x33,0x0e,0x01,0x07,0x25,0x3e,0x01,0x3d,0x01,0x33,0x0e,
7452
+0x01,0x07,0x02,0x25,0x4d,0x45,0xc2,0x01,0x7d,0x88,0xfe,0x5e,
7453
+0x4d,0x45,0xc2,0x01,0x7d,0x88,0x04,0x46,0x40,0xaa,0x81,0x3f,
7454
+0xae,0xf1,0x5b,0x50,0x40,0xaa,0x81,0x3f,0xae,0xf1,0x5b,0x00,
7455
+0xff,0xff,0x00,0xc1,0xfe,0x12,0x03,0x3f,0xff,0x8a,0x10,0x07,
7456
+0x02,0x89,0x00,0x00,0xf9,0x24,0x00,0x00,0xff,0xff,0x00,0xc1,
7457
+0xfd,0xc1,0x03,0x3f,0xff,0xab,0x10,0x07,0x02,0x86,0x00,0x00,
7458
+0xf9,0x45,0x00,0x00,0xff,0xff,0x00,0xee,0xfe,0x14,0x03,0x12,
7459
+0x00,0x39,0x12,0x07,0x02,0x98,0x00,0x00,0xf9,0x33,0x00,0x00,
7460
+0xff,0xff,0x00,0xb6,0xfe,0x76,0x03,0x4a,0xff,0x90,0x12,0x07,
7461
+0x02,0x9a,0x00,0x00,0xf9,0x59,0x00,0x00,0xff,0xff,0xfc,0xb0,
7462
+0x04,0xec,0xfe,0x79,0x06,0x64,0x10,0x07,0x00,0x43,0xfc,0x06,
7463
+0x00,0x00,0x00,0x00,0xff,0xff,0xfd,0x89,0x04,0xee,0xff,0x52,
7464
+0x06,0x66,0x10,0x07,0x00,0x76,0xfc,0x00,0x00,0x00,0x00,0x00,
7465
+0xff,0xff,0xfc,0xc1,0x04,0xee,0xff,0x3f,0x06,0x66,0x10,0x07,
7466
+0x02,0x88,0xfc,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xfc,0xb0,
7467
+0x05,0x1d,0xff,0x44,0x06,0x37,0x10,0x07,0x02,0x9a,0xfb,0xfa,
7468
+0x00,0x00,0x00,0x00,0x00,0x01,0xfc,0xd5,0x05,0x62,0xff,0x2b,
7469
+0x05,0xf6,0x00,0x03,0x00,0x00,0x01,0x21,0x15,0x21,0xfc,0xd5,
7470
+0x02,0x56,0xfd,0xaa,0x05,0xf6,0x94,0x00,0xff,0xff,0xfc,0x00,
7471
+0x05,0xbb,0x00,0x00,0x06,0x0b,0x10,0x07,0x07,0xa8,0xfc,0x00,
7472
+0x00,0x00,0x00,0x00,0xff,0xff,0xfc,0xc7,0x05,0x29,0xff,0x39,
7473
+0x06,0x48,0x10,0x07,0x02,0x96,0xfc,0x00,0x00,0x00,0x00,0x00,
7474
+0xff,0xff,0xfd,0x8b,0x05,0x37,0xfe,0x75,0x06,0x21,0x10,0x07,
7475
+0x02,0x97,0xfc,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xfc,0xc3,
7476
+0x05,0x37,0xff,0x31,0x06,0x21,0x10,0x07,0x00,0x6a,0xfb,0xfa,
7477
+0x00,0x00,0x00,0x00,0x00,0x01,0xfd,0x42,0x04,0xee,0xfe,0xe0,
7478
+0x06,0xd0,0x00,0x19,0x00,0x00,0x01,0x32,0x17,0x16,0x15,0x14,
7479
+0x07,0x06,0x07,0x15,0x23,0x35,0x36,0x37,0x36,0x35,0x34,0x27,
7480
+0x26,0x23,0x22,0x07,0x35,0x36,0x37,0x36,0xfd,0xf2,0xb8,0x2b,
7481
+0x0b,0x20,0x31,0x45,0x94,0x6c,0x1c,0x1a,0x36,0x1c,0x29,0x49,
7482
+0x52,0x2c,0x61,0x13,0x06,0xd0,0x6f,0x1b,0x20,0x31,0x38,0x58,
7483
+0x28,0x4f,0x70,0x36,0x1e,0x1c,0x27,0x3c,0x19,0x0d,0x22,0x83,
7484
+0x11,0x06,0x01,0x00,0xff,0xff,0xfc,0xe2,0x04,0xe1,0xff,0x06,
7485
+0x07,0x06,0x10,0x07,0x02,0x98,0xfb,0xf4,0x00,0x00,0x00,0x00,
7486
+0xff,0xff,0xfc,0xf4,0x04,0xee,0xff,0xac,0x06,0x66,0x10,0x07,
7487
+0x02,0x9b,0xfc,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xfc,0xc1,
7488
+0x04,0xee,0xff,0x3f,0x06,0x66,0x10,0x07,0x02,0x89,0xfc,0x00,
7489
+0x00,0x00,0x00,0x00,0x00,0x01,0xfd,0xb8,0x04,0xee,0xfe,0x4c,
7490
+0x06,0x6d,0x00,0x03,0x00,0x00,0x01,0x11,0x33,0x11,0xfd,0xb8,
7491
+0x94,0x04,0xee,0x01,0x7e,0xfe,0x82,0x00,0xff,0xff,0xfc,0xda,
7492
+0x04,0xee,0xff,0x2a,0x06,0x6d,0x10,0x27,0x02,0xba,0x00,0xde,
7493
+0x00,0x00,0x10,0x07,0x02,0xba,0xff,0x22,0x00,0x00,0x00,0x00,
7494
+0x00,0x02,0xfc,0x41,0x04,0xee,0xfe,0xf9,0x06,0x66,0x00,0x03,
7495
+0x00,0x07,0x00,0x00,0x01,0x13,0x23,0x03,0x23,0x13,0x23,0x01,
7496
+0xfe,0x3d,0xbc,0x72,0xf4,0xa0,0xe1,0x74,0xfe,0xe1,0x06,0x66,
7497
+0xfe,0x88,0x01,0x78,0xfe,0x88,0x01,0x78,0xff,0xff,0xfc,0xc7,
7498
+0x05,0x29,0xff,0x39,0x06,0xfd,0x10,0x27,0x02,0x97,0xfc,0x00,
7499
+0x00,0xdc,0x10,0x07,0x02,0x96,0xfc,0x00,0x00,0x00,0x00,0x00,
7500
+0x00,0x01,0xfc,0xc7,0x05,0x29,0xff,0x39,0x06,0x48,0x00,0x0b,
7501
+0x00,0x00,0x03,0x23,0x2e,0x01,0x22,0x06,0x07,0x23,0x3e,0x01,
7502
+0x20,0x16,0xc7,0x60,0x0d,0x68,0xc8,0x68,0x0d,0x60,0x0a,0x9e,
7503
+0x01,0x22,0x9e,0x05,0x29,0x4f,0x47,0x47,0x4f,0x8f,0x90,0x90,
7504
+0x00,0x01,0xfd,0xbc,0x03,0xf6,0xfe,0xec,0x05,0x26,0x00,0x09,
7505
+0x00,0x00,0x01,0x0e,0x01,0x1d,0x01,0x23,0x36,0x37,0x36,0x37,
7506
+0xfe,0xec,0x4c,0x46,0x9e,0x07,0x3a,0x3a,0x75,0x04,0xf6,0x2a,
7507
+0x70,0x50,0x16,0x67,0x49,0x4a,0x36,0x00,0x00,0x01,0xfd,0x86,
7508
+0x04,0xda,0xfe,0x91,0x06,0xa2,0x00,0x13,0x00,0x00,0x01,0x32,
7509
+0x17,0x16,0x1d,0x01,0x16,0x07,0x06,0x07,0x27,0x36,0x37,0x26,
7510
+0x27,0x26,0x35,0x34,0x37,0x36,0xfe,0x0c,0x44,0x28,0x19,0x09,
7511
+0xa3,0x04,0x03,0x4a,0x50,0x0a,0x31,0x22,0x26,0x36,0x22,0x06,
7512
+0xa2,0x37,0x23,0x2c,0x10,0xa2,0x8a,0x04,0x02,0x1e,0x4c,0x53,
7513
+0x04,0x23,0x26,0x38,0x46,0x27,0x19,0x00,0x00,0x01,0xfd,0x6b,
7514
+0x04,0xda,0xfe,0x76,0x06,0xa2,0x00,0x13,0x00,0x00,0x01,0x32,
7515
+0x17,0x16,0x15,0x14,0x07,0x06,0x07,0x16,0x17,0x07,0x26,0x27,
7516
+0x26,0x37,0x35,0x34,0x37,0x36,0xfd,0xf1,0x2d,0x22,0x36,0x26,
7517
+0x22,0x31,0x0a,0x50,0x4b,0x02,0x04,0xa3,0x09,0x19,0x28,0x06,
7518
+0xa2,0x19,0x27,0x46,0x38,0x26,0x23,0x04,0x53,0x4c,0x1e,0x02,
7519
+0x04,0x8a,0xa2,0x10,0x2c,0x23,0x37,0x00,0x00,0x01,0xff,0x7d,
7520
+0x04,0xee,0x00,0x83,0x06,0x66,0x00,0x03,0x00,0x00,0x03,0x33,
7521
+0x03,0x23,0x44,0xc6,0x90,0x74,0x06,0x66,0xfe,0x88,0x00,0x00,
7522
+0xff,0xff,0xfc,0xb4,0xfd,0xec,0xfe,0x7d,0xff,0x65,0x10,0x07,
7523
+0x00,0x43,0xfc,0x0a,0xf9,0x00,0x00,0x00,0xff,0xff,0xfd,0x8a,
7524
+0xfd,0xed,0xff,0x53,0xff,0x65,0x10,0x07,0x00,0x76,0xfc,0x01,
7525
+0xf8,0xff,0x00,0x00,0x00,0x01,0xfd,0x5b,0xfd,0x47,0xfe,0x94,
7526
+0xff,0x25,0x00,0x07,0x00,0x00,0x01,0x35,0x33,0x11,0x23,0x35,
7527
+0x23,0x35,0xfe,0x00,0x94,0x94,0xa5,0xfe,0x80,0xa5,0xfe,0x22,
7528
+0xa5,0x94,0x00,0x00,0x00,0x01,0xfd,0x6c,0xfd,0x47,0xfe,0xa5,
7529
+0xff,0x25,0x00,0x07,0x00,0x00,0x05,0x33,0x15,0x33,0x15,0x23,
7530
+0x15,0x23,0xfd,0x6c,0x94,0xa5,0xa5,0x94,0xdb,0xa5,0x94,0xa5,
7531
+0x00,0x01,0xfe,0x70,0x05,0x96,0x00,0x4e,0x07,0x74,0x00,0x05,
7532
+0x00,0x00,0x01,0x21,0x11,0x23,0x11,0x21,0xfe,0x70,0x01,0xde,
7533
+0x94,0xfe,0xb6,0x07,0x74,0xfe,0x22,0x01,0x4a,0x00,0x00,0x00,
7534
+0x00,0x01,0xfe,0xd0,0x02,0xcc,0x00,0x5a,0x04,0x41,0x00,0x13,
7535
+0x00,0x00,0x01,0x35,0x17,0x16,0x33,0x32,0x36,0x35,0x34,0x26,
7536
+0x27,0x17,0x1e,0x01,0x15,0x14,0x06,0x23,0x22,0x26,0xfe,0xd0,
7537
+0x02,0x7a,0x30,0x2e,0x38,0x0c,0x0e,0x80,0x09,0x09,0x5a,0x50,
7538
+0x31,0x6a,0x03,0x4d,0x5e,0x01,0x57,0x43,0x38,0x1b,0x3a,0x1e,
7539
+0x01,0x24,0x43,0x20,0x71,0x7c,0x3c,0x00,0x00,0x01,0xfd,0x84,
7540
+0xfd,0x3a,0xfe,0x96,0xff,0x5f,0x00,0x0e,0x00,0x00,0x01,0x22,
7541
+0x27,0x26,0x34,0x37,0x36,0x33,0x15,0x22,0x06,0x15,0x14,0x16,
7542
+0x33,0xfe,0x96,0x73,0x4f,0x50,0x50,0x4f,0x73,0x40,0x58,0x58,
7543
+0x40,0xfd,0x3a,0x4f,0x50,0xe6,0x50,0x50,0x7b,0x58,0x40,0x3f,
7544
+0x58,0x00,0x00,0x00,0x00,0x01,0xfd,0x13,0xfd,0xfd,0xfe,0xf1,
7545
+0xff,0x36,0x00,0x07,0x00,0x00,0x01,0x35,0x33,0x15,0x33,0x15,
7546
+0x21,0x35,0xfd,0xb8,0x94,0xa5,0xfe,0x22,0xfe,0x91,0xa5,0xa5,
7547
+0x94,0x94,0x00,0x00,0x00,0x01,0xfd,0x13,0xfd,0xec,0xfe,0xf1,
7548
+0xff,0x25,0x00,0x07,0x00,0x00,0x05,0x15,0x23,0x15,0x23,0x35,
7549
+0x23,0x35,0xfe,0xf1,0xa5,0x94,0xa5,0xdb,0x94,0xa5,0xa5,0x94,
7550
+0x00,0x01,0xfd,0x15,0xfd,0x47,0xfe,0xf3,0xff,0x25,0x00,0x0b,
7551
+0x00,0x00,0x01,0x35,0x33,0x15,0x33,0x15,0x23,0x15,0x23,0x35,
7552
+0x23,0x35,0xfd,0xba,0x94,0xa5,0xa5,0x94,0xa5,0xfe,0x80,0xa5,
7553
+0xa5,0x94,0xa5,0xa5,0x94,0x00,0x00,0x00,0x00,0x01,0xfd,0x13,
7554
+0xfe,0x91,0xfe,0xf1,0xff,0x25,0x00,0x03,0x00,0x00,0x05,0x21,
7555
+0x15,0x21,0xfd,0x13,0x01,0xde,0xfe,0x22,0xdb,0x94,0x00,0x00,
7556
+0x00,0x01,0xfc,0xa7,0xfe,0x39,0xff,0x1e,0x00,0x80,0x00,0x11,
7557
+0x00,0x00,0x27,0x15,0x14,0x06,0x23,0x22,0x26,0x27,0x35,0x33,
7558
+0x1e,0x01,0x33,0x32,0x37,0x36,0x3d,0x01,0xe2,0xc3,0xab,0x48,
7559
+0x83,0x3e,0x5f,0x07,0x55,0x52,0x5b,0x2b,0x2b,0x80,0xe8,0xa4,
7560
+0xbb,0x21,0x21,0xdb,0x60,0x5a,0x3e,0x3c,0x82,0xe8,0x00,0x00,
7561
+0x00,0x01,0xfc,0xdd,0xfe,0x39,0xff,0x54,0x00,0x80,0x00,0x11,
7562
+0x00,0x00,0x25,0x33,0x15,0x14,0x17,0x16,0x33,0x32,0x36,0x37,
7563
+0x33,0x15,0x0e,0x01,0x23,0x22,0x26,0x35,0xfc,0xdd,0xb9,0x2a,
7564
+0x2c,0x5b,0x52,0x55,0x07,0x5f,0x3e,0x83,0x48,0xab,0xc3,0x80,
7565
+0xe8,0x82,0x3c,0x3e,0x5a,0x60,0xdb,0x21,0x21,0xbb,0xa4,0x00,
7566
+0xff,0xff,0xfd,0x8b,0xfe,0x78,0xfe,0x75,0xff,0x62,0x10,0x07,
7567
+0x02,0x97,0xfc,0x00,0xf9,0x41,0x00,0x00,0xff,0xff,0xfc,0xc7,
7568
+0xfe,0x78,0xff,0x35,0xff,0x62,0x10,0x07,0x00,0x6a,0xfb,0xfe,
7569
+0xf9,0x41,0x00,0x00,0x00,0x02,0xfd,0x28,0xfe,0x12,0xfe,0xd4,
7570
+0xff,0xbe,0x00,0x0b,0x00,0x15,0x00,0x00,0x01,0x34,0x26,0x23,
7571
+0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x14,0x06,0x22,
7572
+0x26,0x35,0x34,0x36,0x32,0x16,0xfe,0x5b,0x36,0x27,0x28,0x35,
7573
+0x35,0x28,0x27,0x36,0x79,0x7c,0xb4,0x7c,0x7c,0xb4,0x7c,0xfe,
7574
+0xea,0x26,0x36,0x35,0x27,0x28,0x35,0x36,0x26,0x5a,0x7d,0x7d,
7575
+0x5a,0x59,0x7c,0x7c,0x00,0x01,0xfd,0x37,0xfe,0x34,0xfe,0x67,
7576
+0xff,0x64,0x00,0x09,0x00,0x00,0x01,0x3e,0x01,0x3d,0x01,0x33,
7577
+0x06,0x07,0x06,0x07,0xfd,0x37,0x4c,0x46,0x9e,0x07,0x3a,0x3a,
7578
+0x75,0xfe,0x64,0x2a,0x70,0x50,0x16,0x67,0x49,0x4a,0x36,0x00,
7579
+0xff,0xff,0xfd,0x23,0xfe,0x75,0xfe,0xc1,0x00,0x00,0x10,0x07,
7580
+0x00,0x7a,0xfc,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xfd,0x4c,
7581
+0xfe,0x77,0xfe,0xc1,0x00,0x00,0x10,0x07,0x02,0x99,0xfc,0x00,
7582
+0x00,0x00,0x00,0x00,0x00,0x01,0xfd,0xb6,0xfd,0xe5,0xfe,0x4a,
7583
+0xff,0x64,0x00,0x03,0x00,0x00,0x01,0x11,0x33,0x11,0xfd,0xb6,
7584
+0x94,0xfd,0xe6,0x01,0x7e,0xfe,0x82,0x00,0x00,0x01,0xfc,0xd5,
7585
+0xfd,0xed,0xff,0x2b,0xff,0x66,0x00,0x07,0x00,0x00,0x01,0x15,
7586
+0x23,0x11,0x21,0x11,0x23,0x35,0xfd,0x69,0x94,0x02,0x56,0x94,
7587
+0xfe,0xd2,0xe5,0x01,0x79,0xfe,0x87,0xe5,0x00,0x01,0xfc,0xc2,
7588
+0xfe,0x43,0xff,0x3e,0xff,0x62,0x00,0x1c,0x00,0x00,0x01,0x06,
7589
+0x23,0x22,0x03,0x33,0x16,0x17,0x16,0x33,0x32,0x37,0x34,0x37,
7590
+0x33,0x16,0x17,0x16,0x33,0x32,0x37,0x36,0x37,0x33,0x02,0x23,
7591
+0x22,0x27,0x26,0xfe,0x00,0x30,0x57,0xab,0x0c,0x60,0x09,0x3a,
7592
+0x09,0x0b,0x4a,0x0c,0x01,0x60,0x09,0x39,0x0a,0x0b,0x4a,0x0b,
7593
+0x01,0x01,0x60,0x0c,0xab,0x54,0x30,0x02,0xfe,0x91,0x4e,0x01,
7594
+0x1f,0x83,0x10,0x03,0x86,0x07,0x09,0x83,0x10,0x03,0x86,0x07,
7595
+0x09,0xfe,0xe1,0x4a,0x02,0x00,0x00,0x00,0xff,0xff,0xfc,0xc1,
7596
+0xfe,0x12,0xff,0x3f,0xff,0x8a,0x10,0x07,0x02,0x89,0xfc,0x00,
7597
+0xf9,0x24,0x00,0x00,0xff,0xff,0xfc,0xc1,0xfe,0x14,0xff,0x3f,
7598
+0xff,0x8c,0x10,0x07,0x02,0x88,0xfc,0x00,0xf9,0x26,0x00,0x00,
7599
+0xff,0xff,0xfc,0xc7,0xfe,0x43,0xff,0x39,0xff,0x62,0x10,0x07,
7600
+0x02,0x96,0xfc,0x00,0xf9,0x1a,0x00,0x00,0x00,0x01,0xfc,0xc7,
7601
+0xfe,0x45,0xff,0x39,0xff,0x64,0x00,0x0b,0x00,0x00,0x03,0x23,
7602
+0x2e,0x01,0x22,0x06,0x07,0x23,0x3e,0x01,0x20,0x16,0xc7,0x60,
7603
+0x0d,0x68,0xc8,0x68,0x0d,0x60,0x0a,0x9e,0x01,0x22,0x9e,0xfe,
7604
+0x45,0x4f,0x47,0x47,0x4f,0x8f,0x90,0x90,0xff,0xff,0xfc,0xb0,
7605
+0xfe,0x4b,0xff,0x44,0xff,0x65,0x10,0x07,0x02,0x9a,0xfb,0xfa,
7606
+0xf9,0x2e,0x00,0x00,0xff,0xff,0xfc,0xd5,0xfe,0xd2,0xff,0x2b,
7607
+0xff,0x66,0x10,0x07,0x00,0x71,0xfc,0x00,0xf9,0x70,0x00,0x00,
7608
+0xff,0xff,0xfc,0x00,0xfe,0x1d,0x00,0x00,0xfe,0x6d,0x10,0x07,
7609
+0x00,0x42,0xfc,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xfc,0x00,
7610
+0xfe,0x1d,0x00,0x00,0xff,0x5d,0x10,0x07,0x07,0x85,0xfc,0x00,
7611
+0x00,0x00,0x00,0x00,0x00,0x01,0xfa,0x1b,0x01,0xb3,0xff,0x3d,
7612
+0x03,0x51,0x00,0x27,0x00,0x00,0x01,0x27,0x26,0x27,0x26,0x23,
7613
+0x22,0x07,0x06,0x07,0x06,0x07,0x23,0x36,0x37,0x36,0x37,0x36,
7614
+0x33,0x32,0x1f,0x01,0x16,0x17,0x16,0x33,0x32,0x37,0x36,0x37,
7615
+0x36,0x37,0x33,0x06,0x07,0x06,0x07,0x06,0x23,0x22,0xfc,0xaa,
7616
+0x0a,0x0b,0x16,0x8b,0x67,0x66,0x37,0x4b,0x17,0x0f,0x03,0x60,
7617
+0x02,0x32,0x35,0x63,0x64,0x54,0x69,0xa5,0x0a,0x0b,0x16,0x8b,
7618
+0x67,0x66,0x37,0x4b,0x17,0x0f,0x03,0x60,0x02,0x32,0x3d,0x5b,
7619
+0x58,0x60,0x69,0x02,0x29,0x04,0x04,0x09,0x39,0x15,0x1e,0x3e,
7620
+0x28,0x26,0x95,0x3b,0x3d,0x33,0x29,0x42,0x04,0x04,0x09,0x39,
7621
+0x15,0x1e,0x3e,0x28,0x26,0x95,0x3b,0x46,0x2a,0x29,0x00,0x00,
7622
+0x00,0x01,0xfd,0xad,0x01,0xd0,0xff,0xc3,0x02,0x3a,0x00,0x03,
7623
+0x00,0x00,0x01,0x35,0x21,0x15,0xfd,0xad,0x02,0x16,0x01,0xd0,
7624
+0x6a,0x6a,0x00,0x00,0x00,0x01,0xfb,0x13,0x01,0xd0,0xff,0xb7,
7625
+0x02,0x3a,0x00,0x03,0x00,0x00,0x01,0x35,0x21,0x15,0xfb,0x13,
7626
+0x04,0xa4,0x01,0xd0,0x6a,0x6a,0x00,0x00,0x00,0x01,0xfb,0x88,
7627
+0xff,0xa2,0xff,0xb9,0x04,0x85,0x00,0x03,0x00,0x00,0x05,0x27,
7628
+0x01,0x17,0xfb,0xd4,0x4c,0x03,0xe5,0x4c,0x5e,0x3f,0x04,0xa4,
7629
+0x3f,0x00,0x00,0x00,0x00,0x01,0xf9,0xd8,0xff,0xc7,0xff,0x9b,
7630
+0x06,0x0e,0x00,0x03,0x00,0x00,0x05,0x27,0x01,0x17,0xfa,0x26,
7631
+0x4e,0x05,0x73,0x50,0x39,0x45,0x06,0x02,0x47,0x00,0x00,0x00,
7632
+0x00,0x01,0xfd,0x7f,0xfd,0x40,0xfe,0x91,0xff,0x65,0x00,0x0e,
7633
+0x00,0x00,0x05,0x32,0x17,0x16,0x14,0x07,0x06,0x23,0x35,0x32,
7634
+0x36,0x35,0x34,0x26,0x23,0xfd,0x7f,0x73,0x4f,0x50,0x50,0x4f,
7635
+0x73,0x40,0x58,0x58,0x40,0x9b,0x4f,0x50,0xe6,0x50,0x50,0x7b,
7636
+0x58,0x40,0x3f,0x58,0x00,0x01,0xfc,0xd0,0xfd,0xf3,0xff,0x26,
7637
+0xff,0x6c,0x00,0x07,0x00,0x00,0x01,0x35,0x33,0x11,0x21,0x11,
7638
+0x33,0x15,0xfe,0x92,0x94,0xfd,0xaa,0x94,0xfe,0x87,0xe5,0xfe,
7639
+0x87,0x01,0x79,0xe5,0x00,0x02,0xfc,0xec,0xfd,0x3f,0xff,0x13,
7640
+0xff,0x67,0x00,0x03,0x00,0x07,0x00,0x00,0x01,0x11,0x21,0x11,
7641
+0x01,0x11,0x21,0x11,0xfd,0x75,0x01,0x16,0xfe,0x62,0x02,0x26,
7642
+0xfe,0xde,0xfe,0xea,0x01,0x16,0xfe,0x62,0x02,0x26,0xfd,0xda,
7643
+0x00,0x01,0xfc,0xc2,0xfe,0x43,0xff,0x3e,0xff,0x62,0x00,0x1c,
7644
+0x00,0x00,0x05,0x36,0x33,0x32,0x13,0x23,0x26,0x27,0x26,0x23,
7645
+0x22,0x07,0x14,0x07,0x23,0x26,0x27,0x26,0x23,0x22,0x07,0x06,
7646
+0x07,0x23,0x12,0x33,0x32,0x17,0x16,0xfe,0x00,0x30,0x57,0xab,
7647
+0x0c,0x60,0x09,0x3a,0x09,0x0b,0x4a,0x0c,0x01,0x60,0x09,0x39,
7648
+0x0a,0x0b,0x4a,0x0b,0x01,0x01,0x60,0x0c,0xab,0x54,0x30,0x02,
7649
+0xec,0x4e,0xfe,0xe1,0x83,0x10,0x03,0x86,0x07,0x09,0x83,0x10,
7650
+0x03,0x86,0x07,0x09,0x01,0x1f,0x4a,0x02,0x00,0x01,0xfd,0x21,
7651
+0x04,0x99,0xfe,0xdd,0x06,0x55,0x00,0x0b,0x00,0x00,0x01,0x27,
7652
+0x37,0x17,0x37,0x17,0x07,0x17,0x07,0x27,0x07,0x27,0xfd,0x96,
7653
+0x74,0x68,0x75,0x75,0x68,0x74,0x74,0x68,0x75,0x75,0x68,0x05,
7654
+0x77,0x75,0x68,0x74,0x74,0x68,0x75,0x75,0x68,0x74,0x74,0x68,
7655
+0x00,0x01,0xfd,0x81,0x04,0xbc,0xfe,0x9b,0x06,0xcc,0x00,0x1d,
7656
+0x00,0x00,0x01,0x2e,0x01,0x35,0x34,0x36,0x37,0x15,0x0e,0x01,
7657
+0x15,0x14,0x17,0x16,0x1f,0x01,0x1e,0x01,0x15,0x14,0x06,0x07,
7658
+0x35,0x3e,0x01,0x35,0x34,0x27,0x26,0x27,0xfd,0xbe,0x21,0x1c,
7659
+0x93,0x87,0x4b,0x50,0x08,0x07,0x18,0x37,0x21,0x1c,0x93,0x87,
7660
+0x4c,0x4f,0x08,0x08,0x17,0x05,0xc1,0x1c,0x30,0x1c,0x50,0x51,
7661
+0x02,0x58,0x04,0x24,0x20,0x10,0x0c,0x0c,0x12,0x2b,0x1c,0x30,
7662
+0x1c,0x50,0x51,0x02,0x58,0x04,0x24,0x20,0x0e,0x0c,0x0e,0x12,
7663
+0xff,0xff,0xfc,0x00,0x04,0xcb,0x00,0x00,0x06,0x0b,0x10,0x27,
7664
+0x07,0xa8,0xfc,0x00,0x00,0x00,0x10,0x07,0x07,0xa8,0xfc,0x00,
7665
+0xff,0x10,0x00,0x00,0xff,0xff,0xfd,0x86,0x04,0xda,0xfe,0x91,
7666
+0x06,0xa2,0x10,0x06,0x02,0xc0,0x00,0x00,0xff,0xff,0xff,0x1f,
7667
+0x05,0x37,0x00,0x09,0x06,0x21,0x10,0x07,0x02,0x97,0xfd,0x94,
7668
+0x00,0x00,0x00,0x00,0x00,0x01,0xfc,0x8f,0x05,0xc9,0x03,0x71,
7669
+0x06,0xe0,0x00,0x17,0x00,0x00,0x01,0x15,0x0e,0x01,0x23,0x22,
7670
+0x25,0x24,0x23,0x22,0x07,0x06,0x07,0x35,0x3e,0x01,0x33,0x32,
7671
+0x05,0x04,0x33,0x32,0x37,0x36,0x03,0x71,0xa0,0xe5,0x7c,0x57,
7672
+0xfe,0xf9,0xfe,0xc6,0x63,0xd6,0xbc,0x27,0x2d,0x9c,0xe1,0x84,
7673
+0x58,0x01,0x05,0x01,0x38,0x63,0xd6,0xd6,0x1e,0x06,0xe0,0x61,
7674
+0x67,0x45,0x40,0x4c,0x65,0x15,0x1c,0x65,0x62,0x46,0x40,0x4c,
7675
+0x72,0x10,0x00,0x00,0x00,0x01,0xfc,0x70,0x05,0xd4,0x03,0x90,
7676
+0x06,0xf3,0x00,0x10,0x00,0x00,0x11,0x04,0x17,0x16,0x17,0x23,
7677
+0x26,0x27,0x26,0x20,0x07,0x06,0x07,0x23,0x36,0x37,0x36,0x02,
7678
+0x00,0x88,0xdf,0x29,0x24,0xc9,0x9f,0xb6,0xfd,0x64,0xb6,0x9f,
7679
+0xc9,0x24,0x29,0xdf,0xc3,0x06,0xf3,0x0e,0x3a,0x60,0x77,0x77,
7680
+0x18,0x1b,0x1b,0x18,0x77,0x77,0x60,0x54,0xff,0xff,0x00,0x71,
7681
+0x00,0x00,0x05,0x7b,0x05,0xd5,0x10,0x06,0x0c,0x33,0x00,0x00,
7682
+0x00,0x01,0x00,0x46,0x00,0x00,0x03,0xd4,0x04,0x27,0x00,0x09,
7683
+0x00,0x00,0x01,0x21,0x15,0x21,0x11,0x23,0x11,0x23,0x35,0x21,
7684
+0x01,0xa4,0x02,0x30,0xfd,0xd0,0xb8,0xa6,0x01,0x5e,0x02,0x80,
7685
+0x7c,0xfd,0xfc,0x03,0xbd,0x6a,0x00,0x00,0x00,0x01,0x00,0x14,
7686
+0x00,0x00,0x05,0x42,0x05,0xd5,0x00,0x0f,0x00,0x00,0x21,0x35,
7687
+0x33,0x11,0x21,0x11,0x23,0x11,0x21,0x11,0x23,0x11,0x21,0x11,
7688
+0x33,0x15,0x01,0x87,0xbf,0xfe,0x98,0xca,0x05,0x2e,0xca,0xfe,
7689
+0x98,0xbf,0x6a,0x04,0xf4,0xfd,0xcd,0x02,0xaa,0xfd,0x56,0x02,
7690
+0x33,0xfb,0x0c,0x6a,0x00,0x01,0x00,0x53,0x00,0x00,0x04,0x1f,
7691
+0x04,0x27,0x00,0x0f,0x00,0x00,0x01,0x11,0x23,0x11,0x23,0x11,
7692
+0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x11,0x23,0x11,0x04,0x1f,
7693
+0xb8,0xd2,0xa6,0xfd,0xfc,0xa6,0xd2,0xb8,0x04,0x27,0xfe,0x03,
7694
+0x01,0x82,0xfc,0xbe,0x6a,0x6a,0x03,0x42,0xfe,0x7e,0x01,0xfd,
7695
+0x00,0x01,0x00,0xa0,0x04,0x74,0x01,0x9f,0x06,0x66,0x00,0x03,
7696
+0x00,0x00,0x1b,0x01,0x33,0x03,0xa0,0x41,0xbe,0x6e,0x04,0x74,
7697
+0x01,0xf2,0xfe,0x0e,0x00,0x01,0x00,0xa0,0xfe,0x56,0x01,0x9f,
7698
+0x00,0x48,0x00,0x03,0x00,0x00,0x25,0x03,0x23,0x13,0x01,0x9f,
7699
+0x41,0xbe,0x6e,0x48,0xfe,0x0e,0x01,0xf2,0x00,0x01,0x00,0x64,
7700
+0xff,0xe3,0x06,0xa6,0x05,0xf2,0x00,0x11,0x00,0x00,0x01,0x11,
7701
+0x01,0x33,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x01,0x23,0x11,
7702
+0x23,0x35,0x21,0x15,0x01,0xf8,0x03,0x6c,0x79,0xc9,0xfd,0xae,
7703
+0xbe,0xfc,0x94,0x79,0xc9,0x02,0x52,0x05,0x6a,0xfb,0xb7,0x04,
7704
+0xd1,0xfa,0x78,0x6a,0x6a,0x04,0x4a,0xfb,0x2f,0x05,0x87,0x6b,
7705
+0x6b,0x00,0x00,0x00,0x00,0x01,0x00,0x46,0x00,0x00,0x04,0xe9,
7706
+0x04,0x27,0x00,0x0d,0x00,0x00,0x33,0x11,0x23,0x35,0x21,0x11,
7707
+0x01,0x33,0x11,0x33,0x15,0x21,0x11,0x01,0xec,0xa6,0x01,0x5e,
7708
+0x02,0x26,0x79,0xa6,0xfe,0xa2,0xfd,0xda,0x03,0xbd,0x6a,0xfc,
7709
+0xf3,0x03,0x0d,0xfc,0x43,0x6a,0x03,0x0d,0xfc,0xf3,0x00,0x00,
7710
+0x00,0x01,0x01,0xb5,0xfe,0x57,0x02,0xb0,0xff,0x86,0x00,0x09,
7711
+0x00,0x00,0x01,0x07,0x06,0x3d,0x01,0x33,0x15,0x14,0x3f,0x01,
7712
+0x02,0xb0,0x48,0xb3,0x95,0x33,0x33,0xfe,0x67,0x10,0x28,0xd5,
7713
+0x82,0x8f,0x5d,0x0d,0x0d,0x00,0x00,0x00,0xff,0xff,0x00,0x66,
7714
+0xff,0xe3,0x04,0x1d,0x04,0x44,0x10,0x06,0x08,0x4f,0x00,0x00,
7715
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x1d,0x04,0x44,0x10,0x26,
7716
+0x00,0x46,0x00,0x00,0x10,0x07,0x00,0x79,0x01,0x45,0xff,0x52,
7717
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x1d,0x04,0x44,0x10,0x26,
7718
+0x08,0x4f,0x00,0x00,0x10,0x07,0x00,0x79,0x00,0xca,0xff,0x52,
7719
+0xff,0xff,0x00,0x4a,0xfe,0xe9,0x01,0xe3,0x03,0x79,0x12,0x06,
7720
+0x00,0x1e,0x00,0x00,0x00,0x01,0x01,0x89,0x04,0xee,0x03,0x52,
7721
+0x06,0x66,0x00,0x03,0x00,0x4f,0xb5,0x02,0x00,0x04,0x01,0x03,
7722
+0x04,0x10,0xd4,0xcc,0x31,0x00,0x10,0xd4,0xcc,0x30,0x00,0x4b,
7723
+0xb0,0x09,0x54,0x4b,0xb0,0x0e,0x54,0x5b,0x58,0xbd,0x00,0x04,
7724
+0xff,0xc0,0x00,0x01,0x00,0x04,0x00,0x04,0x00,0x40,0x38,0x11,
7725
+0x37,0x38,0x59,0x01,0x4b,0xb0,0x0b,0x54,0x4b,0xb0,0x0c,0x54,
7726
+0x5b,0x4b,0xb0,0x0f,0x54,0x5b,0x58,0xbd,0x00,0x04,0xff,0xc0,
7727
+0x00,0x01,0x00,0x04,0x00,0x04,0x00,0x40,0x38,0x11,0x37,0x38,
7728
+0x59,0x01,0x33,0x01,0x23,0x02,0x8b,0xc7,0xfe,0xac,0x75,0x06,
7729
+0x66,0xfe,0x88,0x00,0xff,0xff,0x00,0xc9,0x05,0x37,0x03,0x52,
7730
+0x07,0xf8,0x10,0x26,0x00,0x6a,0x00,0x00,0x10,0x07,0x02,0xff,
7731
+0x00,0x00,0x01,0x92,0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,
7732
+0x06,0x66,0x12,0x26,0x03,0x0a,0x00,0x00,0x10,0x07,0x02,0xff,
7733
+0xff,0x0a,0x00,0x00,0xff,0xff,0x00,0xbe,0x02,0x42,0x01,0xc9,
7734
+0x03,0x4c,0x10,0x06,0x00,0x79,0x00,0x00,0xff,0xff,0x00,0x0f,
7735
+0x00,0x00,0x06,0x8f,0x06,0x66,0x10,0x27,0x03,0x0e,0x01,0x5c,
7736
+0x00,0x00,0x10,0x07,0x02,0xff,0xfe,0x86,0x00,0x00,0x00,0x00,
7737
+0xff,0xff,0x00,0x0f,0x00,0x00,0x07,0xdf,0x06,0x66,0x10,0x27,
7738
+0x03,0x10,0x01,0x56,0x00,0x00,0x10,0x07,0x02,0xff,0xfe,0x86,
7739
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x0f,0x00,0x00,0x04,0x0e,
7740
+0x06,0x66,0x10,0x27,0x03,0x12,0x01,0x56,0x00,0x00,0x10,0x07,
7741
+0x02,0xff,0xfe,0x86,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x0f,
7742
+0xff,0xe3,0x06,0x3d,0x06,0x66,0x10,0x26,0x03,0x18,0x20,0x00,
7743
+0x10,0x07,0x02,0xff,0xfe,0x86,0x00,0x00,0xff,0xff,0x00,0x0f,
7744
+0x00,0x00,0x07,0x40,0x06,0x66,0x10,0x27,0x03,0x1d,0x01,0xe6,
7745
+0x00,0x00,0x10,0x07,0x02,0xff,0xfe,0x86,0x00,0x00,0x00,0x00,
7746
+0xff,0xff,0x00,0x0f,0x00,0x00,0x06,0x57,0x06,0x66,0x10,0x26,
7747
+0x03,0x21,0x30,0x00,0x10,0x07,0x02,0xff,0xfe,0x86,0x00,0x00,
7748
+0xff,0xff,0x00,0x11,0x00,0x2d,0x02,0xb0,0x07,0xf8,0x10,0x26,
7749
+0x03,0x31,0x00,0x00,0x10,0x07,0x03,0x00,0xff,0x48,0x00,0x00,
7750
+0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,0x05,0xd5,0x10,0x06,
7751
+0x00,0x24,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x64,
7752
+0x05,0xd5,0x10,0x06,0x00,0x25,0x00,0x00,0x00,0x01,0x00,0x71,
7753
+0x00,0x00,0x05,0x37,0x05,0xd5,0x00,0x0d,0x00,0x00,0x25,0x33,
7754
+0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x11,0x23,0x35,0x21,
7755
+0x01,0xfa,0xef,0xfd,0x88,0xbe,0xbe,0x04,0xc6,0x7b,0xfd,0x3e,
7756
+0x6a,0x6a,0x6a,0x05,0x00,0x6b,0xfe,0xb3,0xd2,0x00,0x00,0x00,
7757
+0x00,0x02,0x00,0x4e,0x00,0x00,0x05,0x70,0x05,0xd5,0x00,0x03,
7758
+0x00,0x06,0x00,0x00,0x29,0x01,0x01,0x33,0x09,0x02,0x05,0x70,
7759
+0xfa,0xde,0x02,0x3d,0xa8,0x01,0x2f,0xfe,0x4a,0xfe,0x48,0x05,
7760
+0xd5,0xfa,0x95,0x04,0x79,0xfb,0x87,0x00,0xff,0xff,0x00,0x71,
7761
+0x00,0x00,0x05,0x33,0x05,0xd5,0x10,0x06,0x00,0x28,0x00,0x00,
7762
+0xff,0xff,0x00,0x5c,0x00,0x00,0x05,0x3f,0x05,0xd5,0x10,0x06,
7763
+0x00,0x3d,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x06,0x89,
7764
+0x05,0xd5,0x10,0x06,0x00,0x2b,0x00,0x00,0x00,0x03,0x00,0x73,
7765
+0xff,0xe3,0x06,0x1d,0x05,0xf0,0x00,0x0b,0x00,0x20,0x00,0x2c,
7766
+0x00,0x60,0x40,0x1c,0x00,0x6e,0x0c,0x06,0x6e,0x18,0x69,0x0c,
7767
+0x60,0x2d,0x2c,0x27,0x0f,0x29,0x03,0x21,0x26,0x0f,0x24,0x09,
7768
+0x03,0x0e,0x1b,0x09,0x0e,0x12,0x25,0x2d,0x10,0xf4,0xec,0xd4,
7769
+0xec,0x10,0xdc,0xec,0x32,0x10,0xdc,0xec,0x32,0x31,0x00,0x10,
7770
+0xe4,0xf4,0xec,0x10,0xee,0x40,0x09,0x2b,0x22,0x81,0x21,0x80,
7771
+0x28,0x25,0x81,0x26,0x2f,0x4b,0xb0,0x0d,0x54,0x4b,0xb0,0x12,
7772
+0x54,0x5b,0x58,0xb9,0x00,0x26,0xff,0xc0,0x38,0x59,0xe4,0x32,
7773
+0xfc,0xe4,0x32,0x30,0xb6,0x5f,0x2e,0x6f,0x2e,0xa0,0x2e,0x03,
7774
+0x01,0x5d,0x25,0x32,0x12,0x11,0x10,0x02,0x23,0x22,0x02,0x11,
7775
+0x10,0x12,0x17,0x22,0x26,0x27,0x26,0x02,0x35,0x34,0x12,0x37,
7776
+0x3e,0x01,0x33,0x20,0x00,0x11,0x14,0x02,0x07,0x0e,0x01,0x01,
7777
+0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x03,
7778
+0x48,0xf5,0xfa,0xfa,0xf5,0xf6,0xfa,0xfa,0xf6,0x98,0xff,0x61,
7779
+0x70,0x6d,0x6d,0x70,0x62,0xfc,0x9a,0x01,0x45,0x01,0x90,0x6e,
7780
+0x70,0x62,0xfc,0xfe,0x6f,0x7b,0x7b,0x01,0xf0,0x7b,0x7b,0x4e,
7781
+0x01,0x51,0x01,0x4a,0x01,0x4b,0x01,0x51,0xfe,0xaf,0xfe,0xb5,
7782
+0xfe,0xb6,0xfe,0xaf,0x6b,0x64,0x61,0x70,0x01,0x1c,0xb5,0xb5,
7783
+0x01,0x1d,0x70,0x62,0x63,0xfe,0x56,0xfe,0xa3,0xb3,0xfe,0xe1,
7784
+0x6f,0x62,0x63,0x03,0x09,0xbb,0x01,0xf0,0xbb,0xbb,0xfe,0x10,
7785
+0xbb,0x00,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x02,0xb8,
7786
+0x05,0xd5,0x10,0x06,0x00,0x2c,0x00,0x00,0xff,0xff,0x00,0x71,
7787
+0x00,0x00,0x06,0x19,0x05,0xd5,0x10,0x06,0x00,0x2e,0x00,0x00,
7788
+0x00,0x01,0xff,0xf4,0x00,0x00,0x05,0xdb,0x05,0xd5,0x00,0x0e,
7789
+0x00,0x00,0x25,0x09,0x01,0x33,0x15,0x21,0x35,0x33,0x01,0x33,
7790
+0x01,0x33,0x15,0x21,0x35,0x04,0x62,0xfe,0x4a,0xfe,0x48,0xa4,
7791
+0xfe,0x5c,0x83,0x02,0x14,0xa8,0x02,0x15,0x93,0xfd,0xe1,0x6a,
7792
+0x04,0x79,0xfb,0x87,0x6a,0x6a,0x05,0x6b,0xfa,0x95,0x6a,0x6a,
7793
+0xff,0xff,0x00,0x66,0x00,0x00,0x07,0xc9,0x05,0xd5,0x10,0x06,
7794
+0x00,0x30,0x00,0x00,0xff,0xff,0x00,0x64,0xff,0xe3,0x06,0xa6,
7795
+0x05,0xd5,0x10,0x06,0x00,0x31,0x00,0x00,0x00,0x03,0x00,0x71,
7796
+0x00,0x00,0x05,0x23,0x05,0xd5,0x00,0x07,0x00,0x0f,0x00,0x1b,
7797
+0x00,0x00,0x25,0x35,0x33,0x11,0x21,0x11,0x33,0x15,0x01,0x21,
7798
+0x15,0x23,0x11,0x21,0x11,0x23,0x01,0x15,0x23,0x11,0x33,0x15,
7799
+0x21,0x35,0x33,0x11,0x23,0x35,0x04,0xa8,0x7b,0xfb,0x4e,0x7b,
7800
+0x03,0xbc,0xfc,0x44,0x7b,0x04,0xb2,0x7b,0xfd,0x37,0x7b,0x7b,
7801
+0x01,0xd6,0x7b,0x7b,0xbc,0x90,0xfe,0xb4,0x01,0x4c,0x90,0x04,
7802
+0x5d,0x90,0x01,0x4c,0xfe,0xb4,0xfe,0x63,0xbb,0x01,0xf0,0xbb,
7803
+0xbb,0xfe,0x10,0xbb,0xff,0xff,0x00,0x73,0xff,0xe3,0x06,0x1d,
7804
+0x05,0xf0,0x10,0x06,0x00,0x32,0x00,0x00,0xff,0xff,0x00,0x71,
7805
+0x00,0x00,0x06,0x89,0x05,0xd5,0x10,0x06,0x03,0x89,0x00,0x00,
7806
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x19,0x05,0xd5,0x10,0x06,
7807
+0x00,0x33,0x00,0x00,0x00,0x01,0x00,0x53,0x00,0x00,0x05,0x1e,
7808
+0x05,0xd5,0x00,0x0d,0x00,0x00,0x09,0x01,0x21,0x35,0x33,0x11,
7809
+0x21,0x09,0x01,0x21,0x11,0x23,0x35,0x21,0x03,0xc0,0xfd,0xd7,
7810
+0x03,0x0c,0x7b,0xfb,0x35,0x02,0x98,0xfd,0x68,0x04,0xcb,0x7b,
7811
+0xfd,0x49,0x03,0x2e,0xfd,0x8e,0x90,0xfe,0xb4,0x02,0xec,0x02,
7812
+0xe9,0xfe,0xb4,0xd1,0xff,0xff,0x00,0x14,0x00,0x00,0x05,0x42,
7813
+0x05,0xd5,0x10,0x06,0x00,0x37,0x00,0x00,0xff,0xff,0xff,0xe9,
7814
+0x00,0x00,0x05,0x5a,0x05,0xd5,0x10,0x06,0x00,0x3c,0x00,0x00,
7815
+0x00,0x03,0x00,0x73,0x00,0x00,0x06,0x1e,0x05,0xd5,0x00,0x27,
7816
+0x00,0x30,0x00,0x39,0x00,0x00,0x00,0x16,0x14,0x06,0x07,0x06,
7817
+0x07,0x06,0x07,0x15,0x33,0x15,0x21,0x35,0x33,0x35,0x26,0x27,
7818
+0x26,0x27,0x2e,0x01,0x34,0x36,0x37,0x36,0x37,0x36,0x37,0x35,
7819
+0x23,0x35,0x21,0x15,0x23,0x15,0x16,0x17,0x16,0x17,0x01,0x36,
7820
+0x37,0x36,0x35,0x34,0x27,0x26,0x27,0x03,0x11,0x06,0x07,0x06,
7821
+0x15,0x14,0x17,0x16,0x05,0xb1,0x6d,0x6d,0x70,0x64,0x7d,0x64,
7822
+0x4e,0xbe,0xfd,0xb9,0xbe,0x4e,0x65,0x7c,0x64,0x70,0x6d,0x6d,
7823
+0x70,0x67,0x79,0x42,0x71,0xbe,0x02,0x47,0xbe,0x71,0x42,0x79,
7824
+0x67,0xfe,0x6d,0xae,0x60,0x7d,0x7d,0x63,0xab,0xcb,0xab,0x63,
7825
+0x7d,0x7d,0x60,0x04,0x2f,0xc7,0xfe,0xc6,0x4f,0x46,0x21,0x19,
7826
+0x0a,0x61,0x6a,0x6a,0x61,0x0a,0x19,0x21,0x46,0x4f,0xc6,0xfe,
7827
+0xc7,0x4f,0x48,0x1f,0x11,0x10,0x64,0x6b,0x6b,0x64,0x10,0x11,
7828
+0x1f,0x48,0xfc,0x9e,0x16,0x5a,0x76,0xe7,0xf1,0x6d,0x56,0x1c,
7829
+0xfc,0x63,0x03,0x9d,0x1c,0x56,0x6d,0xf1,0xe7,0x76,0x5a,0x00,
7830
+0xff,0xff,0x00,0x0c,0x00,0x00,0x05,0xa8,0x05,0xd5,0x10,0x06,
7831
+0x00,0x3b,0x00,0x00,0x00,0x01,0x00,0x60,0x00,0x00,0x06,0xb5,
7832
+0x05,0xd5,0x00,0x2f,0x00,0x00,0x01,0x11,0x02,0x3b,0x01,0x15,
7833
+0x23,0x22,0x17,0x11,0x10,0x07,0x06,0x05,0x11,0x33,0x15,0x21,
7834
+0x35,0x33,0x11,0x24,0x27,0x26,0x13,0x11,0x36,0x2b,0x01,0x35,
7835
+0x33,0x32,0x03,0x11,0x06,0x17,0x16,0x17,0x11,0x23,0x35,0x21,
7836
+0x15,0x23,0x11,0x36,0x37,0x36,0x05,0x2c,0x01,0xc1,0xc9,0x66,
7837
+0x5b,0x02,0x86,0x74,0xfe,0xf4,0xbe,0xfd,0xb9,0xbe,0xfe,0xed,
7838
+0x6e,0x86,0x01,0x02,0x5b,0x66,0xc9,0xc1,0x01,0x01,0x5e,0x42,
7839
+0x9d,0xbe,0x02,0x47,0xbe,0x9c,0x42,0x5e,0x03,0x90,0x01,0x22,
7840
+0x01,0x23,0x6b,0xb8,0xfe,0xcd,0xfe,0xe3,0x77,0x69,0x0f,0xfe,
7841
+0xf7,0x6a,0x6a,0x01,0x09,0x0f,0x69,0x7e,0x01,0x16,0x01,0x33,
7842
+0xb8,0x6b,0xfe,0xdd,0xfe,0xde,0xf0,0x5f,0x42,0x19,0x03,0x84,
7843
+0x6b,0x6b,0xfc,0x7c,0x18,0x43,0x5f,0x00,0x00,0x01,0x00,0x7d,
7844
+0x00,0x00,0x06,0x27,0x05,0xf0,0x00,0x29,0x00,0x4d,0x40,0x28,
7845
+0x12,0x06,0x15,0x02,0x00,0x0c,0x6e,0x21,0x69,0x17,0x00,0x77,
7846
+0x13,0x04,0x18,0x12,0x0f,0x00,0x09,0x05,0x01,0x0f,0x03,0x05,
7847
+0x09,0x12,0x0f,0x16,0x0f,0x14,0x09,0x0e,0x03,0x27,0x0f,0x0e,
7848
+0x14,0x1b,0x25,0x2a,0x10,0xf4,0xc4,0xec,0xd4,0xc4,0xec,0x10,
7849
+0xee,0x10,0xc4,0x10,0xc4,0x10,0xee,0x11,0x12,0x39,0x11,0x12,
7850
+0x39,0x31,0x00,0x2f,0x3c,0xee,0x32,0xf6,0xee,0x10,0xc4,0x32,
7851
+0x39,0x39,0x30,0x25,0x21,0x35,0x33,0x11,0x21,0x35,0x36,0x12,
7852
+0x35,0x10,0x00,0x23,0x22,0x00,0x11,0x14,0x12,0x17,0x15,0x21,
7853
+0x11,0x33,0x15,0x21,0x26,0x02,0x35,0x34,0x12,0x37,0x36,0x24,
7854
+0x33,0x32,0x16,0x17,0x16,0x12,0x15,0x14,0x02,0x04,0x60,0x01,
7855
+0x50,0x75,0xfd,0xb0,0xb4,0xb9,0xfe,0xee,0xde,0xde,0xfe,0xee,
7856
+0xb8,0xb3,0xfd,0xb2,0x75,0x01,0x4e,0xd1,0xf4,0x73,0x6e,0x63,
7857
+0x01,0x00,0x91,0x91,0xfe,0x63,0x6f,0x74,0xf5,0xa4,0x89,0xfe,
7858
+0xd3,0xb6,0x46,0x01,0x37,0xe8,0x01,0x17,0x01,0x53,0xfe,0xad,
7859
+0xfe,0xe9,0xe9,0xfe,0xca,0x46,0xb6,0x01,0x2d,0x89,0x57,0x01,
7860
+0x60,0xd6,0x97,0x01,0x06,0x67,0x5b,0x60,0x5f,0x5c,0x67,0xfe,
7861
+0xf9,0x96,0xd5,0xfe,0x9f,0x00,0x00,0x00,0xff,0xff,0x00,0x62,
7862
+0x00,0x00,0x02,0xd0,0x07,0x5c,0x12,0x26,0x03,0x12,0x00,0x00,
7863
+0x10,0x07,0x0d,0x78,0x03,0x99,0x01,0x75,0xff,0xff,0xff,0xe9,
7864
+0x00,0x00,0x05,0x5a,0x07,0x5c,0x12,0x26,0x03,0x1d,0x00,0x00,
7865
+0x10,0x07,0x0d,0x78,0x04,0xdd,0x01,0x75,0xff,0xff,0x00,0x66,
7866
+0xff,0xe7,0x05,0x30,0x06,0x66,0x10,0x26,0x03,0x29,0x00,0x00,
7867
+0x10,0x06,0x02,0xff,0x65,0x00,0x00,0x00,0xff,0xff,0x00,0x65,
7868
+0xff,0xd9,0x03,0xc7,0x06,0x66,0x10,0x26,0x03,0x2d,0x00,0x00,
7869
+0x10,0x06,0x02,0xff,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x4a,
7870
+0xfe,0x56,0x04,0x4a,0x06,0x66,0x10,0x26,0x03,0x2f,0x00,0x00,
7871
+0x10,0x06,0x02,0xff,0x4c,0x00,0x00,0x00,0xff,0xff,0x00,0x4a,
7872
+0x00,0x2d,0x02,0xb0,0x06,0x66,0x10,0x26,0x03,0x31,0x00,0x00,
7873
+0x10,0x07,0x02,0xff,0xff,0x48,0x00,0x00,0xff,0xff,0x00,0x4a,
7874
+0xff,0xf9,0x04,0x78,0x07,0xf8,0x10,0x26,0x03,0x3d,0x00,0x00,
7875
+0x10,0x06,0x03,0x00,0x57,0x00,0x00,0x00,0x00,0x02,0x00,0x66,
7876
+0xff,0xe7,0x05,0x30,0x04,0x43,0x00,0x24,0x00,0x32,0x00,0x00,
7877
+0x01,0x07,0x06,0x07,0x06,0x27,0x26,0x27,0x26,0x35,0x34,0x37,
7878
+0x36,0x17,0x32,0x17,0x16,0x1f,0x01,0x37,0x36,0x37,0x33,0x15,
7879
+0x06,0x07,0x03,0x13,0x16,0x17,0x16,0x37,0x15,0x06,0x27,0x26,
7880
+0x27,0x0b,0x01,0x26,0x27,0x26,0x07,0x06,0x15,0x14,0x17,0x16,
7881
+0x37,0x36,0x37,0x03,0x74,0x28,0x1f,0x5f,0x3e,0x6e,0xc5,0x7b,
7882
+0x7c,0x7c,0x75,0xf7,0xaa,0x56,0x4c,0x1d,0x08,0x27,0x24,0x67,
7883
+0x65,0x60,0x22,0x68,0x46,0x24,0x26,0x37,0x7d,0xcb,0x8f,0x41,
7884
+0x12,0x3a,0x3f,0x32,0x88,0x73,0x57,0x49,0x49,0x4e,0x87,0x73,
7885
+0x53,0x01,0x06,0x6f,0x56,0x37,0x24,0x01,0x02,0x99,0x9c,0xfa,
7886
+0xf5,0xa0,0x97,0x01,0x43,0x3b,0x81,0x25,0x6f,0x69,0x34,0x3b,
7887
+0x1e,0x5e,0xfe,0xe4,0xfe,0xce,0x9d,0x11,0x19,0x4b,0x79,0x75,
7888
+0x7a,0x38,0x51,0x01,0x0b,0x01,0x26,0xea,0x01,0x01,0x7b,0x65,
7889
+0xe8,0xdc,0x71,0x7b,0x0a,0x09,0xf5,0x00,0x00,0x02,0x00,0x81,
7890
+0xfe,0x56,0x04,0x39,0x06,0x1f,0x00,0x16,0x00,0x2d,0x00,0x00,
7891
+0x25,0x16,0x33,0x32,0x36,0x35,0x34,0x27,0x26,0x2b,0x01,0x35,
7892
+0x33,0x32,0x37,0x36,0x35,0x34,0x27,0x26,0x07,0x06,0x11,0x03,
7893
+0x11,0x10,0x37,0x36,0x33,0x32,0x17,0x16,0x15,0x14,0x07,0x06,
7894
+0x07,0x16,0x17,0x16,0x10,0x04,0x21,0x22,0x27,0x11,0x01,0x39,
7895
+0x50,0x93,0x99,0xb1,0x5b,0x5d,0xae,0x5f,0x32,0x7f,0x58,0x48,
7896
+0x2f,0x4d,0x5c,0xe1,0xb8,0xe1,0x77,0x52,0xbb,0x78,0x5f,0x46,
7897
+0x45,0x7c,0xb6,0x68,0x65,0xfe,0xe7,0xfe,0xf8,0xa2,0x3d,0x81,
7898
+0x3b,0xb1,0x9a,0xd1,0x5a,0x5d,0x6b,0x48,0x3d,0x9f,0x45,0x4f,
7899
+0x83,0x03,0x07,0xfe,0x71,0xfa,0x30,0x05,0xd0,0x01,0xa3,0x38,
7900
+0x1e,0x93,0x74,0x64,0x8e,0x54,0x53,0x28,0x1a,0x6d,0x6c,0xfe,
7901
+0x5e,0xdf,0x17,0xfe,0x5c,0x00,0x00,0x00,0x00,0x01,0x00,0x4a,
7902
+0xfe,0x54,0x04,0x63,0x04,0x27,0x00,0x1c,0x00,0x00,0x25,0x12,
7903
+0x07,0x06,0x07,0x06,0x27,0x26,0x37,0x01,0x23,0x35,0x21,0x01,
7904
+0x12,0x37,0x36,0x27,0x26,0x27,0x35,0x33,0x16,0x17,0x16,0x15,
7905
+0x14,0x07,0x06,0x02,0xc8,0x3e,0x3a,0x2f,0x45,0x6a,0x2e,0x34,
7906
+0x8b,0xfe,0xe3,0xb0,0x01,0x54,0x01,0x03,0xe3,0x1b,0x0d,0x19,
7907
+0x28,0x30,0x70,0x74,0x1c,0x28,0x67,0x28,0x3c,0xfe,0xdc,0x6c,
7908
+0x56,0x02,0x03,0x67,0x74,0xe4,0x03,0xac,0x6b,0xfc,0xa0,0x01,
7909
+0x31,0xd2,0x63,0x43,0x6b,0x11,0x3b,0x46,0x3b,0x54,0x35,0x61,
7910
+0xc0,0x4b,0x00,0x00,0x00,0x02,0x00,0x66,0xff,0xe3,0x04,0x6a,
7911
+0x06,0x1f,0x00,0x23,0x00,0x2c,0x00,0x00,0x01,0x26,0x27,0x26,
7912
+0x35,0x34,0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x15,0x07,0x26,
7913
+0x27,0x26,0x22,0x07,0x06,0x17,0x16,0x17,0x16,0x33,0x32,0x00,
7914
+0x10,0x00,0x23,0x22,0x00,0x10,0x37,0x36,0x01,0x32,0x36,0x10,
7915
+0x26,0x20,0x06,0x10,0x16,0x01,0x6e,0x44,0x1f,0x26,0x62,0x62,
7916
+0xc4,0x36,0x68,0x68,0x70,0x6c,0x0c,0x48,0x48,0xbc,0x45,0x49,
7917
+0x03,0x04,0x21,0x4d,0x62,0xe9,0x01,0x19,0xfe,0xe7,0xe9,0xe8,
7918
+0xfe,0xe6,0x8c,0x3f,0x01,0x37,0x94,0x97,0x97,0xfe,0xd8,0x97,
7919
+0x98,0x04,0x0c,0x1a,0x30,0x38,0x89,0x81,0x44,0x43,0x10,0x11,
7920
+0x1f,0xc5,0x19,0x59,0x2e,0x2d,0x31,0x34,0x42,0x5f,0x20,0x4b,
7921
+0xfe,0xce,0xfe,0x04,0xfe,0xcd,0x01,0x33,0x01,0xfc,0x99,0x43,
7922
+0xfc,0x58,0xea,0x01,0xc8,0xe9,0xe9,0xfe,0x38,0xea,0x00,0x00,
7923
+0xff,0xff,0x00,0x65,0xff,0xd9,0x03,0xc7,0x04,0x32,0x12,0x06,
7924
+0x02,0x1d,0x00,0x00,0x00,0x01,0x00,0x53,0xfe,0x55,0x04,0x00,
7925
+0x06,0x14,0x00,0x1f,0x00,0x00,0x01,0x15,0x04,0x03,0x06,0x07,
7926
+0x02,0x16,0x33,0x24,0x17,0x16,0x07,0x06,0x23,0x35,0x32,0x35,
7927
+0x34,0x23,0x24,0x27,0x26,0x11,0x34,0x13,0x36,0x25,0x21,0x15,
7928
+0x23,0x11,0x03,0xfa,0xfe,0x70,0xba,0x72,0x01,0x01,0x99,0xc7,
7929
+0x01,0x39,0x2b,0x16,0x6b,0x5a,0xbf,0xc8,0xc3,0xfe,0xe8,0x8c,
7930
+0x8d,0xa8,0x89,0x01,0x7b,0xfd,0xaa,0x69,0x06,0x14,0x7b,0xc0,
7931
+0xfe,0xed,0xa9,0xe9,0xfe,0xf8,0xe4,0x01,0xdc,0x72,0x5a,0x4c,
7932
+0x6c,0x9d,0x85,0x01,0x98,0x9a,0x01,0x1e,0xc7,0x01,0x19,0xe5,
7933
+0xa0,0x90,0x01,0x0b,0x00,0x01,0x00,0x4a,0xfe,0x56,0x04,0x4a,
7934
+0x04,0x44,0x00,0x15,0x00,0x5b,0x40,0x0c,0x0e,0x27,0x0b,0x3a,
7935
+0x02,0x2c,0x14,0x04,0x27,0x00,0x30,0x16,0x10,0xf4,0xec,0x32,
7936
+0xe4,0xf4,0xec,0x31,0x00,0x40,0x14,0x05,0x0b,0x0e,0x14,0x04,
7937
+0x00,0x01,0x11,0x85,0x08,0x0d,0x82,0x00,0x01,0x7a,0x03,0x9c,
7938
+0x08,0x8c,0x00,0x2f,0xee,0xfc,0xec,0x10,0xec,0x10,0xee,0x11,
7939
+0x12,0x17,0x39,0x30,0xb6,0x2f,0x17,0x7f,0x17,0xb0,0x17,0x03,
7940
+0x01,0x5d,0x4b,0xb0,0x15,0x54,0x58,0xbd,0x00,0x16,0xff,0xc0,
7941
+0x00,0x00,0x00,0x16,0x00,0x16,0x00,0x40,0x38,0x11,0x37,0x38,
7942
+0x59,0x33,0x11,0x23,0x35,0x21,0x15,0x3e,0x01,0x33,0x32,0x16,
7943
+0x15,0x11,0x23,0x11,0x34,0x26,0x23,0x22,0x06,0x15,0x11,0xfa,
7944
+0xb0,0x01,0x68,0x33,0xa3,0x6c,0xb0,0xa6,0xb9,0x60,0x79,0x80,
7945
+0x86,0x03,0xbc,0x6b,0xbd,0x6c,0x6e,0xca,0xd6,0xfb,0xb2,0x04,
7946
+0x14,0xc3,0x91,0xbb,0xb3,0xfd,0xb0,0x00,0x00,0x03,0x00,0x66,
7947
+0xff,0xe9,0x04,0x69,0x06,0x2b,0x00,0x08,0x00,0x11,0x00,0x1d,
7948
+0x00,0x31,0x40,0x0a,0x09,0x00,0x1a,0x15,0x0a,0x08,0x1a,0x1b,
7949
+0x2a,0x1e,0x10,0xf4,0xec,0x32,0xd4,0xec,0x32,0x31,0x00,0x40,
7950
+0x0f,0x08,0x7a,0x0a,0x0a,0x04,0x0e,0x8f,0x18,0x04,0x8f,0x12,
7951
+0x71,0x18,0x60,0x1e,0x10,0xe4,0xf4,0xec,0x10,0xec,0x11,0x39,
7952
+0x2f,0xec,0x30,0x01,0x02,0x27,0x26,0x23,0x22,0x07,0x06,0x03,
7953
+0x05,0x21,0x12,0x17,0x16,0x33,0x32,0x37,0x36,0x01,0x32,0x00,
7954
+0x11,0x10,0x00,0x23,0x22,0x00,0x11,0x10,0x00,0x03,0x91,0x07,
7955
+0x44,0x4b,0x94,0x93,0x4c,0x43,0x07,0x02,0x53,0xfd,0xad,0x07,
7956
+0x44,0x4c,0x92,0x93,0x4c,0x44,0xfe,0xdd,0xe9,0x01,0x19,0xfe,
7957
+0xe6,0xe8,0xe7,0xfe,0xe6,0x01,0x19,0x03,0x40,0x01,0x41,0xa3,
7958
+0xb5,0xb5,0xa3,0xfe,0xbf,0x6b,0xfe,0xc1,0xa3,0xb6,0xb6,0xa3,
7959
+0x04,0x94,0xfe,0x4b,0xfe,0x96,0xfe,0x95,0xfe,0x4a,0x01,0xb6,
7960
+0x01,0x6b,0x01,0x6a,0x01,0xb5,0x00,0x00,0x00,0x01,0x00,0x4a,
7961
+0x00,0x2d,0x02,0xb0,0x04,0x27,0x00,0x0d,0x00,0x00,0x1b,0x01,
7962
+0x23,0x35,0x21,0x11,0x14,0x17,0x16,0x37,0x15,0x06,0x27,0x26,
7963
+0xf9,0x01,0xb0,0x01,0x68,0x4a,0x38,0x7c,0xcc,0x8e,0x5d,0x01,
7964
+0x22,0x02,0x9a,0x6b,0xfc,0xfb,0x8b,0x23,0x18,0x4a,0x79,0x75,
7965
+0x7a,0x50,0x00,0x00,0xff,0xff,0x00,0x46,0x00,0x00,0x04,0xe7,
7966
+0x04,0x27,0x10,0x06,0x03,0xa4,0x00,0x00,0x00,0x01,0x00,0x54,
7967
+0x00,0x00,0x04,0xd9,0x06,0x1f,0x00,0x20,0x00,0x00,0x01,0x26,
7968
+0x27,0x26,0x23,0x22,0x07,0x06,0x07,0x23,0x35,0x36,0x37,0x36,
7969
+0x33,0x32,0x17,0x16,0x17,0x01,0x33,0x15,0x21,0x35,0x33,0x09,
7970
+0x01,0x33,0x15,0x21,0x35,0x33,0x01,0x02,0x14,0x25,0x22,0x23,
7971
+0x35,0x3c,0x1c,0x1d,0x06,0x5e,0x32,0x31,0x32,0x2f,0x6f,0x3d,
7972
+0x3d,0x32,0x01,0xe7,0x77,0xfe,0x71,0x9f,0xfe,0xe5,0xfe,0xc5,
7973
+0xaa,0xfe,0x17,0x79,0x01,0x9d,0x05,0x1b,0x5c,0x1e,0x1f,0x1d,
7974
+0x1e,0x44,0xcb,0x0f,0x08,0x08,0x2e,0x2d,0x7c,0xfb,0x23,0x6b,
7975
+0x6b,0x02,0xde,0xfd,0x22,0x6b,0x6b,0x03,0xd1,0x00,0x00,0x00,
7976
+0x00,0x01,0x00,0x46,0xfe,0x56,0x04,0xe9,0x04,0x27,0x00,0x1b,
7977
+0x00,0x6e,0x40,0x11,0x00,0x2c,0x19,0x05,0x27,0x03,0x2c,0x01,
7978
+0x3a,0x10,0x2c,0x12,0x0c,0x27,0x0e,0x30,0x1c,0x10,0xf4,0xec,
7979
+0x32,0xe4,0xf4,0xe4,0xfc,0x3c,0xe4,0x31,0x00,0x40,0x18,0x06,
7980
+0x19,0x13,0x16,0x0f,0x0c,0x04,0x02,0x16,0x85,0x09,0x1b,0x0f,
7981
+0x7a,0x11,0x00,0x9c,0x02,0x7a,0x0d,0x82,0x09,0x60,0x04,0x2f,
7982
+0xe4,0xec,0xee,0xfe,0x3c,0xee,0x32,0x10,0xfe,0x11,0x12,0x39,
7983
+0x11,0x12,0x39,0x39,0x39,0x30,0xb2,0x10,0x1d,0x01,0x01,0x5d,
7984
+0x4b,0xb0,0x0b,0x54,0x58,0xbd,0x00,0x1c,0x00,0x40,0x00,0x01,
7985
+0x00,0x1c,0x00,0x1c,0xff,0xc0,0x38,0x11,0x37,0x38,0x59,0xb2,
7986
+0x7f,0x1d,0x01,0x5d,0x01,0x21,0x11,0x33,0x15,0x21,0x35,0x0e,
7987
+0x01,0x23,0x22,0x26,0x27,0x11,0x23,0x11,0x23,0x35,0x21,0x11,
7988
+0x14,0x16,0x33,0x32,0x36,0x35,0x11,0x23,0x02,0xe3,0x01,0x58,
7989
+0xae,0xfe,0x9a,0x34,0x93,0x5a,0x39,0x5e,0x27,0xb8,0xa6,0x01,
7990
+0x5e,0x60,0x79,0x80,0x86,0xa0,0x04,0x27,0xfc,0x41,0x68,0xbc,
7991
+0x6a,0x6f,0x24,0x24,0xfe,0x2b,0x05,0x66,0x6b,0xfd,0x95,0xc2,
7992
+0x90,0xbc,0xb3,0x01,0xe3,0x00,0x00,0x00,0x00,0x01,0x00,0x4a,
7993
+0x00,0x00,0x04,0x71,0x04,0x27,0x00,0x1d,0x00,0x00,0x25,0x36,
7994
+0x37,0x36,0x37,0x36,0x37,0x36,0x27,0x26,0x27,0x35,0x33,0x16,
7995
+0x17,0x16,0x17,0x14,0x07,0x06,0x07,0x06,0x07,0x06,0x07,0x23,
7996
+0x13,0x23,0x35,0x21,0x01,0xb2,0x7a,0x84,0x50,0x5f,0x3d,0x08,
7997
+0x08,0x2a,0x39,0x48,0x70,0x71,0x50,0x3e,0x01,0x1d,0x15,0x48,
7998
+0x5f,0x7b,0xe1,0x8a,0xb9,0x01,0xb0,0x01,0x68,0x74,0x30,0x74,
7999
+0x46,0xae,0x6c,0x64,0x5c,0x46,0x61,0x0d,0x3b,0x31,0x6d,0x54,
8000
+0x66,0x4a,0x3d,0x2c,0x67,0x85,0x5c,0xa8,0x2c,0x03,0xbc,0x6b,
8001
+0x00,0x01,0x00,0x53,0xfe,0x55,0x04,0x00,0x06,0x14,0x00,0x29,
8002
+0x00,0x00,0x01,0x15,0x20,0x07,0x06,0x15,0x14,0x17,0x16,0x33,
8003
+0x24,0x17,0x16,0x07,0x06,0x23,0x35,0x32,0x35,0x34,0x23,0x20,
8004
+0x27,0x26,0x35,0x34,0x37,0x36,0x37,0x24,0x35,0x34,0x25,0x21,
8005
+0x15,0x23,0x11,0x21,0x15,0x04,0x11,0x14,0x03,0x4e,0xfe,0xf5,
8006
+0x5f,0xa7,0x4b,0x31,0xe3,0x01,0x39,0x2b,0x16,0x6b,0x5a,0xbf,
8007
+0xc8,0xc3,0xfe,0xbd,0x73,0x7b,0xd1,0x27,0xa0,0xfe,0xf3,0x01,
8008
+0x49,0xfe,0x82,0x69,0x03,0xa7,0xfd,0xce,0x03,0x40,0x6b,0x3e,
8009
+0x6d,0x97,0x94,0x6f,0x48,0x01,0xdc,0x72,0x5a,0x4c,0x6c,0x9d,
8010
+0x85,0x77,0x7f,0xba,0xa0,0xa2,0x1f,0x1c,0x56,0xd8,0xf6,0x65,
8011
+0x90,0x01,0x0b,0x7a,0x26,0xfe,0xbe,0xe9,0xff,0xff,0x00,0x66,
8012
+0xff,0xe3,0x04,0x6a,0x04,0x44,0x10,0x06,0x00,0x52,0x00,0x00,
8013
+0x00,0x01,0x00,0x4a,0x00,0x00,0x04,0xf8,0x04,0x27,0x00,0x13,
8014
+0x00,0x4a,0x40,0x25,0x0f,0x07,0x03,0x7a,0x05,0x9c,0x11,0x0d,
8015
+0x09,0x03,0x01,0x7a,0x0b,0x00,0x0c,0x3d,0x0e,0x12,0x2c,0x10,
8016
+0x0e,0x27,0x0a,0x2c,0x06,0x2c,0x08,0x3a,0x04,0x2c,0x10,0x27,
8017
+0x00,0x2c,0x02,0x30,0x14,0x10,0xf4,0xe4,0xec,0xe4,0xf4,0xe4,
8018
+0xe4,0xec,0x10,0xe4,0x10,0xe4,0x31,0x00,0x2f,0x3c,0xee,0x17,
8019
+0x32,0xfc,0xee,0x32,0x32,0x30,0xb6,0x10,0x15,0x2f,0x15,0x40,
8020
+0x15,0x03,0x01,0x5d,0x33,0x35,0x33,0x11,0x23,0x35,0x21,0x15,
8021
+0x23,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x21,0x11,0x33,0x15,
8022
+0x54,0xa6,0xb0,0x04,0xae,0xae,0xa4,0xfe,0x04,0x9f,0xfe,0x21,
8023
+0xa0,0x6a,0x03,0x52,0x6b,0x6b,0xfc,0xae,0x6a,0x6a,0x03,0x52,
8024
+0xfc,0xae,0x6a,0x00,0x00,0x02,0x00,0x81,0xfe,0x56,0x04,0x4d,
8025
+0x04,0x44,0x00,0x0e,0x00,0x1f,0x00,0x00,0x01,0x15,0x14,0x16,
8026
+0x33,0x32,0x36,0x35,0x34,0x27,0x26,0x23,0x22,0x07,0x06,0x11,
8027
+0x23,0x11,0x34,0x37,0x36,0x37,0x36,0x33,0x20,0x12,0x10,0x02,
8028
+0x23,0x22,0x26,0x27,0x01,0x39,0x93,0x8c,0x8d,0x91,0x48,0x57,
8029
+0x7f,0x85,0x51,0x49,0xb8,0x57,0x61,0x43,0x58,0x81,0x01,0x00,
8030
+0xf8,0xf8,0xc4,0x7b,0xa7,0x36,0x02,0x48,0x69,0xc0,0xc9,0xe2,
8031
+0xdc,0xe5,0x68,0x7a,0x6f,0x65,0xfb,0x4f,0x03,0xb6,0xfb,0x7a,
8032
+0x72,0x23,0x2e,0xfe,0xca,0xfe,0x0c,0xfe,0xc9,0x5f,0x64,0x00,
8033
+0x00,0x01,0x00,0x66,0xfe,0x55,0x04,0x00,0x04,0x44,0x00,0x20,
8034
+0x00,0x00,0x25,0x24,0x17,0x16,0x07,0x06,0x23,0x35,0x32,0x35,
8035
+0x34,0x23,0x24,0x27,0x26,0x35,0x10,0x00,0x33,0x32,0x16,0x17,
8036
+0x11,0x23,0x2e,0x01,0x23,0x22,0x06,0x15,0x14,0x17,0x16,0x02,
8037
+0x9c,0x01,0x39,0x2b,0x16,0x6b,0x5a,0xbf,0xc8,0xc3,0xfe,0xe8,
8038
+0x8c,0x8d,0x01,0x1a,0xe8,0x65,0xc8,0x65,0x6b,0x15,0x8d,0x83,
8039
+0x95,0x98,0x4b,0x4d,0x48,0x03,0xde,0x72,0x5a,0x4c,0x6c,0x9d,
8040
+0x85,0x01,0x98,0x9a,0xfe,0x00,0xff,0x01,0x31,0x2f,0x30,0xfe,
8041
+0xf0,0x8c,0x80,0xe7,0xe6,0xe9,0x71,0x72,0x00,0x02,0x00,0x66,
8042
+0xff,0xe3,0x05,0x3a,0x04,0x27,0x00,0x0d,0x00,0x1c,0x00,0x00,
8043
+0x25,0x32,0x36,0x35,0x34,0x27,0x26,0x27,0x22,0x07,0x06,0x15,
8044
+0x14,0x16,0x13,0x20,0x21,0x15,0x21,0x16,0x11,0x14,0x00,0x23,
8045
+0x22,0x00,0x10,0x37,0x36,0x02,0x68,0x94,0x97,0x4b,0x43,0x9d,
8046
+0x99,0x47,0x4b,0x98,0x95,0x01,0x98,0x01,0x38,0xfe,0x92,0x9e,
8047
+0xfe,0xe7,0xe9,0xe8,0xfe,0xe6,0x8c,0x72,0x46,0xea,0xe4,0xcf,
8048
+0x7f,0x6c,0x01,0x6d,0x75,0xd9,0xe4,0xea,0x03,0xe1,0x6b,0x99,
8049
+0xfe,0xf1,0xfe,0xfe,0xcd,0x01,0x33,0x01,0xfc,0x99,0x7c,0x00,
8050
+0x00,0x01,0x00,0x53,0x00,0x2d,0x04,0x1f,0x04,0x27,0x00,0x11,
8051
+0x00,0x00,0x01,0x11,0x14,0x17,0x16,0x37,0x15,0x06,0x27,0x26,
8052
+0x37,0x11,0x21,0x15,0x23,0x11,0x21,0x15,0x02,0x95,0x4a,0x37,
8053
+0x7d,0xcc,0x8e,0x5d,0x01,0xfe,0xdf,0x69,0x03,0xcc,0x03,0xbc,
8054
+0xfd,0x66,0x8c,0x22,0x19,0x4b,0x79,0x75,0x7a,0x50,0xa0,0x02,
8055
+0x9a,0xa0,0x01,0x0b,0x6b,0x00,0x00,0x00,0x00,0x01,0x00,0x4a,
8056
+0xff,0xf9,0x04,0x78,0x04,0x27,0x00,0x22,0x00,0x00,0x01,0x33,
8057
+0x16,0x17,0x16,0x15,0x14,0x07,0x06,0x07,0x06,0x07,0x06,0x23,
8058
+0x26,0x27,0x26,0x35,0x13,0x23,0x35,0x21,0x11,0x14,0x17,0x16,
8059
+0x17,0x16,0x37,0x36,0x35,0x10,0x27,0x26,0x27,0x02,0xe1,0x70,
8060
+0xa9,0x3c,0x42,0x2a,0x2c,0x50,0x48,0x5e,0x5e,0x6b,0xa4,0x69,
8061
+0x5d,0x01,0xb0,0x01,0x68,0x2a,0x2b,0x5c,0x7d,0x70,0x5b,0x25,
8062
+0x43,0x62,0x04,0x27,0x4f,0x73,0x82,0xe5,0x6f,0x60,0x63,0x49,
8063
+0x43,0x23,0x24,0x07,0x5e,0x53,0xae,0x02,0x5d,0x6b,0xfd,0x38,
8064
+0x83,0x3c,0x3c,0x01,0x02,0x84,0x6b,0xbe,0x01,0x0e,0x3b,0x66,
8065
+0x2f,0x00,0x00,0x00,0x00,0x02,0x00,0x5a,0xfe,0x56,0x05,0x40,
8066
+0x04,0x2c,0x00,0x29,0x00,0x37,0x00,0x00,0x01,0x23,0x11,0x26,
8067
+0x27,0x26,0x27,0x26,0x27,0x26,0x35,0x34,0x37,0x36,0x37,0x33,
8068
+0x15,0x06,0x07,0x06,0x11,0x14,0x17,0x16,0x17,0x11,0x34,0x37,
8069
+0x36,0x37,0x36,0x17,0x16,0x15,0x14,0x07,0x06,0x07,0x06,0x07,
8070
+0x06,0x07,0x35,0x36,0x37,0x36,0x35,0x34,0x27,0x26,0x23,0x22,
8071
+0x07,0x06,0x07,0x10,0x03,0x29,0xb8,0xc7,0x3b,0x46,0x48,0x41,
8072
+0x2d,0x19,0x42,0x3c,0xa9,0x70,0x62,0x43,0x25,0x37,0x34,0xdf,
8073
+0x2d,0x4c,0xe6,0xc6,0x68,0x42,0x19,0x2d,0x41,0x4d,0x41,0x3c,
8074
+0xc6,0xe1,0x32,0x37,0x25,0x27,0x57,0x4c,0x36,0x24,0x01,0xfe,
8075
+0x56,0x01,0xa7,0x04,0x1c,0x21,0x45,0x40,0x6c,0x3c,0x93,0xe5,
8076
+0x82,0x73,0x4f,0x3b,0x2f,0x66,0x38,0xfe,0xef,0xba,0x6f,0x69,
8077
+0x13,0x01,0xa5,0xe1,0x76,0xc3,0x04,0x03,0xca,0x7f,0xe8,0x93,
8078
+0x3c,0x6c,0x40,0x4b,0x1b,0x1a,0x06,0x6d,0x17,0x64,0x6c,0xbd,
8079
+0xdd,0x6c,0x71,0x71,0x4b,0xfe,0xfe,0xe6,0x00,0x01,0x00,0x19,
8080
+0xfe,0x39,0x04,0xac,0x04,0x44,0x00,0x35,0x00,0x00,0x01,0x15,
8081
+0x21,0x35,0x33,0x01,0x03,0x26,0x27,0x26,0x23,0x22,0x07,0x06,
8082
+0x07,0x23,0x35,0x36,0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x1b,
8083
+0x01,0x23,0x35,0x21,0x15,0x23,0x01,0x13,0x16,0x17,0x16,0x33,
8084
+0x32,0x37,0x36,0x37,0x33,0x15,0x06,0x07,0x06,0x23,0x22,0x27,
8085
+0x26,0x27,0x0b,0x01,0x02,0x04,0xfe,0x15,0x8b,0x01,0x73,0x86,
8086
+0x1d,0x1f,0x2a,0x10,0x3c,0x1c,0x1d,0x06,0x5e,0x32,0x31,0x32,
8087
+0x2f,0x3c,0x47,0x4c,0x23,0x6a,0xee,0x7f,0x01,0xdb,0x83,0xfe,
8088
+0x86,0x85,0x1e,0x1e,0x2a,0x10,0x3c,0x1c,0x1d,0x06,0x5e,0x32,
8089
+0x31,0x32,0x2f,0x3c,0x47,0x4c,0x23,0x68,0xe8,0xfe,0xc0,0x6a,
8090
+0x6a,0x02,0xb7,0x01,0xc9,0x63,0x17,0x1f,0x1d,0x1e,0x44,0xcb,
8091
+0x0f,0x08,0x08,0x2e,0x31,0x78,0xfe,0x95,0x01,0xb9,0x6b,0x6b,
8092
+0xfd,0x41,0xfe,0x41,0x63,0x17,0x1f,0x1d,0x1e,0x44,0xcb,0x0f,
8093
+0x08,0x08,0x2e,0x31,0x78,0x01,0x61,0xfe,0x4f,0x00,0x00,0x00,
8094
+0x00,0x01,0x00,0x81,0xfe,0x56,0x05,0xc6,0x04,0x27,0x00,0x31,
8095
+0x00,0x00,0x01,0x23,0x11,0x22,0x27,0x26,0x27,0x26,0x27,0x26,
8096
+0x35,0x34,0x27,0x26,0x27,0x35,0x33,0x16,0x17,0x16,0x15,0x14,
8097
+0x17,0x16,0x37,0x11,0x33,0x11,0x16,0x37,0x36,0x35,0x34,0x37,
8098
+0x36,0x37,0x33,0x15,0x06,0x07,0x06,0x15,0x14,0x07,0x06,0x07,
8099
+0x06,0x07,0x06,0x23,0x03,0x81,0xb9,0x5d,0x57,0x41,0x4d,0x47,
8100
+0x27,0x17,0x25,0x26,0x34,0x65,0x78,0x2d,0x40,0x37,0x44,0x81,
8101
+0xb9,0x7f,0x44,0x37,0x40,0x38,0x6d,0x65,0x32,0x28,0x25,0x17,
8102
+0x27,0x47,0x4d,0x41,0x57,0x5b,0xfe,0x56,0x01,0xa3,0x24,0x1b,
8103
+0x4b,0x46,0x66,0x3c,0xa3,0xdd,0x6c,0x70,0x25,0x3b,0x67,0x5b,
8104
+0x82,0xd5,0xbe,0x6b,0x85,0x03,0x03,0xc4,0xfc,0x3c,0x03,0x85,
8105
+0x6b,0xbe,0xe4,0x73,0x64,0x5e,0x3b,0x24,0x71,0x69,0xe0,0xa3,
8106
+0x3c,0x66,0x46,0x4b,0x1b,0x24,0x00,0x00,0x00,0x01,0x00,0x5a,
8107
+0xff,0xf9,0x06,0x22,0x04,0x27,0x00,0x3a,0x00,0x00,0x25,0x06,
8108
+0x07,0x22,0x27,0x26,0x27,0x26,0x27,0x26,0x35,0x34,0x37,0x36,
8109
+0x37,0x33,0x15,0x06,0x07,0x06,0x11,0x14,0x17,0x16,0x37,0x36,
8110
+0x37,0x36,0x35,0x11,0x33,0x11,0x14,0x17,0x16,0x17,0x16,0x37,
8111
+0x36,0x35,0x10,0x27,0x26,0x27,0x35,0x33,0x16,0x17,0x16,0x15,
8112
+0x14,0x07,0x06,0x07,0x06,0x07,0x06,0x23,0x26,0x03,0x3e,0x7d,
8113
+0x9e,0x5d,0x57,0x41,0x4d,0x41,0x2d,0x19,0x42,0x3c,0xa9,0x70,
8114
+0x62,0x43,0x25,0x37,0x44,0x81,0x44,0x2e,0x4d,0xb8,0x4d,0x2e,
8115
+0x44,0x81,0x44,0x37,0x25,0x43,0x62,0x70,0xa9,0x3c,0x42,0x19,
8116
+0x2d,0x41,0x4d,0x41,0x57,0x5d,0x9c,0xc2,0xc2,0x07,0x24,0x1b,
8117
+0x4b,0x40,0x6c,0x3c,0x93,0xe5,0x82,0x73,0x4f,0x3b,0x2f,0x66,
8118
+0x38,0xfe,0xef,0xbe,0x6b,0x85,0x03,0x01,0x3c,0x67,0x70,0x01,
8119
+0x68,0xfe,0x98,0x70,0x67,0x3c,0x01,0x03,0x85,0x6b,0xbe,0x01,
8120
+0x11,0x38,0x66,0x2f,0x3b,0x4f,0x73,0x82,0xe5,0x93,0x3c,0x6c,
8121
+0x40,0x4b,0x1b,0x24,0x07,0x00,0x00,0x00,0xff,0xff,0x00,0x15,
8122
+0x00,0x2d,0x02,0xb0,0x06,0x21,0x10,0x26,0x03,0x31,0x00,0x00,
8123
+0x10,0x07,0x00,0x6a,0xff,0x4c,0x00,0x00,0xff,0xff,0x00,0x4a,
8124
+0xff,0xf9,0x04,0x78,0x06,0x21,0x10,0x26,0x03,0x3d,0x00,0x00,
8125
+0x10,0x06,0x00,0x6a,0x48,0x00,0x00,0x00,0xff,0xff,0x00,0x66,
8126
+0xff,0xe3,0x04,0x6a,0x06,0x66,0x10,0x26,0x03,0x37,0x00,0x00,
8127
+0x10,0x06,0x02,0xff,0x6f,0x00,0x00,0x00,0xff,0xff,0x00,0x4a,
8128
+0xff,0xf9,0x04,0x78,0x06,0x66,0x10,0x26,0x03,0x3d,0x00,0x00,
8129
+0x10,0x06,0x02,0xff,0x0f,0x00,0x00,0x00,0xff,0xff,0x00,0x5a,
8130
+0xff,0xf9,0x06,0x22,0x06,0x66,0x10,0x26,0x03,0x41,0x00,0x00,
8131
+0x10,0x07,0x02,0xff,0x01,0x57,0x00,0x00,0x00,0x01,0x00,0x71,
8132
+0xfe,0x14,0x05,0xcb,0x05,0xd5,0x00,0x1c,0x00,0x00,0x33,0x35,
8133
+0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x01,0x23,0x35,0x21,
8134
+0x15,0x23,0x09,0x02,0x17,0x07,0x01,0x37,0x17,0x37,0x01,0x11,
8135
+0x33,0x15,0x71,0xbe,0xbe,0x02,0x47,0xbe,0x02,0x83,0xa2,0x01,
8136
+0xf0,0xa8,0xfd,0x7f,0x02,0xcd,0xfe,0x7c,0x86,0x4b,0xfe,0x6c,
8137
+0x4b,0x7e,0xf7,0xfd,0xa8,0xbe,0x6a,0x05,0x00,0x6b,0x6b,0xfd,
8138
+0xcb,0x02,0x35,0x6b,0x6b,0xfd,0xcd,0xfd,0x33,0xfe,0x7b,0x86,
8139
+0x4b,0x01,0xa4,0x4b,0x8e,0xf7,0x02,0x59,0xfd,0xa5,0x6a,0x00,
8140
+0x00,0x03,0x00,0x66,0xff,0xe9,0x04,0x42,0x06,0x2b,0x00,0x0b,
8141
+0x00,0x1a,0x00,0x24,0x00,0x00,0x01,0x06,0x05,0x12,0x17,0x16,
8142
+0x37,0x36,0x37,0x36,0x37,0x36,0x27,0x16,0x17,0x16,0x07,0x06,
8143
+0x23,0x22,0x00,0x10,0x00,0x33,0x20,0x11,0x14,0x05,0x32,0x37,
8144
+0x36,0x35,0x02,0x23,0x22,0x07,0x06,0x02,0xf4,0xa7,0xfe,0xf1,
8145
+0x07,0x44,0x57,0x87,0xa7,0x37,0x26,0x05,0x06,0x2a,0xeb,0x0b,
8146
+0x0a,0x70,0xa3,0xd2,0xe7,0xfe,0xe6,0x01,0x19,0xe8,0x01,0x95,
8147
+0xfd,0x42,0xcc,0x93,0xab,0x03,0xde,0x93,0x4c,0x43,0x03,0x3c,
8148
+0x64,0x03,0xfe,0xc1,0xa3,0xd0,0x1a,0x22,0x68,0x4b,0xc4,0xf1,
8149
+0xbf,0xba,0xf6,0xe2,0x6c,0x9e,0x01,0xb6,0x02,0xd5,0x01,0xb5,
8150
+0xfe,0x86,0x98,0xd8,0x60,0x70,0xa5,0x01,0x24,0xb5,0xa3,0x00,
8151
+0x00,0x02,0x00,0x46,0xff,0xe9,0x05,0x6c,0x06,0x2b,0x00,0x1f,
8152
+0x00,0x29,0x00,0x00,0x01,0x15,0x23,0x02,0x07,0x06,0x23,0x22,
8153
+0x27,0x26,0x13,0x23,0x35,0x21,0x12,0x17,0x16,0x33,0x32,0x37,
8154
+0x36,0x13,0x22,0x27,0x26,0x11,0x10,0x05,0x16,0x17,0x16,0x13,
8155
+0x23,0x02,0x27,0x26,0x23,0x22,0x11,0x14,0x17,0x16,0x05,0x6c,
8156
+0x7c,0x06,0x87,0x8d,0xe8,0xe4,0x90,0xa3,0x15,0xa6,0x01,0x5e,
8157
+0x0c,0x60,0x56,0x88,0x93,0x4c,0x44,0x07,0xe8,0x8a,0xc0,0x01,
8158
+0x60,0xb7,0x79,0x73,0x06,0xd7,0x09,0x2f,0x4c,0x4b,0xaa,0x5a,
8159
+0x6d,0x03,0x40,0x56,0xfe,0xac,0xd1,0xdb,0xdb,0xf8,0x01,0xff,
8160
+0x6b,0xfd,0x98,0xcc,0xb6,0xb6,0xa3,0x01,0x3f,0x4a,0x67,0x01,
8161
+0x2a,0x01,0x83,0x09,0x04,0xd6,0xd0,0xfe,0xc0,0x01,0x70,0x74,
8162
+0xb5,0xfe,0xd2,0xc3,0x4c,0x5c,0x00,0x00,0x00,0x01,0x00,0x3d,
8163
+0x00,0x00,0x05,0x34,0x05,0xda,0x00,0x1c,0x00,0x00,0x01,0x23,
8164
+0x36,0x27,0x26,0x07,0x04,0x19,0x01,0x33,0x15,0x21,0x35,0x33,
8165
+0x11,0x10,0x27,0x26,0x23,0x35,0x20,0x17,0x16,0x13,0x12,0x05,
8166
+0x16,0x17,0x16,0x05,0x04,0x8b,0x5a,0x20,0x29,0x69,0xfe,0xdf,
8167
+0xbf,0xfd,0xb8,0xbf,0x92,0x6b,0xfc,0x01,0x1d,0x99,0x7d,0x30,
8168
+0x68,0x01,0x1e,0xf4,0x1a,0x0d,0x04,0x26,0x75,0x65,0x80,0x0b,
8169
+0x1e,0xfc,0xdd,0xfe,0x36,0x6a,0x6a,0x01,0xb7,0x01,0xac,0xef,
8170
+0xae,0x6b,0x95,0x7b,0xfe,0xcf,0x02,0x52,0x0c,0x0b,0xda,0x73,
8171
+0xff,0xff,0x00,0x0f,0x00,0x00,0x06,0xb4,0x06,0x66,0x10,0x27,
8172
+0x02,0xff,0xfe,0x86,0x00,0x00,0x10,0x07,0x03,0x4a,0x01,0x80,
8173
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x3d,0x00,0x00,0x05,0x34,
8174
+0x07,0x5c,0x10,0x27,0x0d,0x78,0x04,0xa0,0x01,0x75,0x10,0x06,
8175
+0x03,0x4a,0x00,0x00,0x00,0x03,0x00,0x4d,0xfe,0x56,0x05,0x24,
8176
+0x06,0x14,0x00,0x07,0x00,0x1b,0x00,0x23,0x00,0x00,0x25,0x36,
8177
+0x37,0x36,0x10,0x27,0x26,0x27,0x11,0x23,0x11,0x24,0x27,0x26,
8178
+0x10,0x37,0x36,0x25,0x11,0x33,0x11,0x04,0x17,0x16,0x10,0x07,
8179
+0x06,0x05,0x27,0x11,0x06,0x07,0x06,0x10,0x17,0x16,0x03,0x15,
8180
+0xb1,0x3b,0x4c,0x4b,0x3c,0xb1,0xb9,0xfe,0xf5,0x77,0x8d,0x8d,
8181
+0x76,0x01,0x0c,0xb9,0x01,0x0c,0x77,0x8c,0x8d,0x77,0xfe,0xf5,
8182
+0xb9,0xb1,0x3b,0x4c,0x4c,0x3b,0x4b,0x14,0x5c,0x75,0x01,0xc8,
8183
+0x74,0x5e,0x13,0xfa,0x79,0x01,0x90,0x15,0x81,0x9a,0x01,0xfc,
8184
+0x99,0x81,0x15,0x01,0xd3,0xfe,0x2d,0x15,0x81,0x99,0xfe,0x04,
8185
+0x9a,0x81,0x15,0x65,0x03,0x92,0x13,0x5e,0x74,0xfe,0x38,0x75,
8186
+0x5c,0x00,0x00,0x00,0x00,0x02,0x00,0x2c,0xff,0xf9,0x06,0x4e,
8187
+0x04,0x27,0x00,0x20,0x00,0x3c,0x00,0x00,0x13,0x21,0x15,0x23,
8188
+0x16,0x17,0x16,0x15,0x14,0x07,0x06,0x07,0x06,0x07,0x06,0x23,
8189
+0x26,0x27,0x06,0x07,0x22,0x27,0x26,0x27,0x26,0x27,0x26,0x35,
8190
+0x34,0x37,0x36,0x37,0x23,0x29,0x01,0x06,0x07,0x06,0x11,0x14,
8191
+0x17,0x16,0x37,0x36,0x37,0x36,0x35,0x11,0x33,0x11,0x14,0x17,
8192
+0x16,0x17,0x16,0x37,0x36,0x35,0x10,0x27,0x26,0x2c,0x06,0x22,
8193
+0xb1,0x24,0x1d,0x44,0x19,0x2d,0x41,0x4d,0x41,0x57,0x5d,0x9c,
8194
+0x7f,0x7d,0x9e,0x5d,0x57,0x41,0x4d,0x41,0x2d,0x19,0x42,0x23,
8195
+0x1e,0xb1,0x04,0xa9,0xfc,0xd0,0x2d,0x2c,0x25,0x37,0x44,0x81,
8196
+0x44,0x2e,0x4d,0xb8,0x4d,0x2e,0x44,0x81,0x44,0x37,0x27,0x26,
8197
+0x04,0x27,0x6b,0x1c,0x3b,0x82,0xe5,0x93,0x3c,0x6c,0x40,0x4b,
8198
+0x1b,0x24,0x07,0xc2,0xc2,0x07,0x24,0x1b,0x4b,0x40,0x6c,0x3c,
8199
+0x93,0xef,0x78,0x3f,0x18,0x25,0x40,0x35,0xfe,0xec,0xbe,0x6b,
8200
+0x85,0x03,0x01,0x3c,0x67,0x70,0x01,0x68,0xfe,0x98,0x70,0x67,
8201
+0x3c,0x01,0x03,0x85,0x6b,0xbe,0x01,0x11,0x38,0x3b,0x00,0x00,
8202
+0x00,0x01,0x00,0x60,0xfe,0x39,0x04,0x95,0x04,0x44,0x00,0x54,
8203
+0x00,0x00,0x05,0x22,0x23,0x22,0x27,0x26,0x27,0x26,0x37,0x06,
8204
+0x07,0x06,0x07,0x06,0x07,0x02,0x27,0x26,0x37,0x36,0x3f,0x01,
8205
+0x12,0x27,0x26,0x27,0x26,0x23,0x22,0x07,0x06,0x07,0x23,0x35,
8206
+0x36,0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x16,0x07,0x36,0x37,
8207
+0x36,0x37,0x36,0x37,0x12,0x17,0x16,0x07,0x06,0x0f,0x01,0x02,
8208
+0x17,0x16,0x17,0x16,0x33,0x32,0x37,0x36,0x37,0x33,0x14,0x07,
8209
+0x06,0x07,0x06,0x23,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,
8210
+0x32,0x37,0x36,0x03,0xdf,0x08,0x0f,0x3c,0x47,0x48,0x27,0x28,
8211
+0x16,0x15,0x27,0x5d,0x38,0x3a,0x29,0xed,0x43,0x08,0x0c,0x14,
8212
+0x91,0x5a,0x63,0x0e,0x08,0x34,0x2a,0x10,0x3c,0x1c,0x1d,0x06,
8213
+0x5e,0x32,0x31,0x32,0x2f,0x3c,0x47,0x4b,0x24,0x24,0x16,0x20,
8214
+0x14,0x48,0x5d,0x19,0x46,0xed,0x43,0x11,0x15,0x28,0x79,0x5a,
8215
+0x68,0x0f,0x08,0x34,0x2a,0x10,0x3c,0x1c,0x1d,0x06,0x5e,0x27,
8216
+0x39,0x5a,0x4f,0xa7,0x48,0x83,0x3e,0x5f,0x07,0x55,0x52,0x4b,
8217
+0x3b,0x58,0x08,0x2e,0x2f,0x7a,0x7e,0xbd,0x15,0x12,0x2b,0x34,
8218
+0x82,0x35,0xfe,0xcb,0x86,0x11,0x46,0x73,0x70,0x54,0x01,0x06,
8219
+0x8e,0x53,0x27,0x1f,0x1d,0x1e,0x44,0xcb,0x0f,0x08,0x08,0x2e,
8220
+0x31,0x78,0x7a,0xb2,0x1a,0x0a,0x23,0x42,0x4a,0x5b,0x01,0x35,
8221
+0x86,0x22,0x35,0x67,0x68,0x5a,0xfe,0xf8,0x9a,0x53,0x27,0x1f,
8222
+0x1d,0x1e,0x44,0xd7,0x73,0xaa,0x60,0x55,0x21,0x21,0xdb,0x60,
8223
+0x5a,0x3e,0x5a,0x00,0x00,0x02,0x00,0x73,0xfe,0x56,0x06,0x1d,
8224
+0x05,0xf0,0x00,0x0b,0x00,0x24,0x00,0x00,0x25,0x32,0x12,0x11,
8225
+0x10,0x02,0x23,0x22,0x02,0x11,0x10,0x12,0x05,0x11,0x23,0x11,
8226
+0x26,0x27,0x26,0x27,0x26,0x02,0x10,0x12,0x37,0x3e,0x01,0x33,
8227
+0x20,0x00,0x11,0x14,0x02,0x07,0x06,0x07,0x06,0x03,0x48,0xf5,
8228
+0xfa,0xfa,0xf5,0xf6,0xfa,0xfa,0x01,0x52,0xb9,0x60,0x5b,0x7f,
8229
+0x61,0x70,0x6d,0x6d,0x70,0x62,0xfc,0x9a,0x01,0x45,0x01,0x90,
8230
+0x6e,0x70,0x62,0x7e,0x59,0x4e,0x01,0x51,0x01,0x4a,0x01,0x4b,
8231
+0x01,0x51,0xfe,0xaf,0xfe,0xb5,0xfe,0xb6,0xfe,0xaf,0x66,0xfe,
8232
+0x6e,0x01,0x92,0x0a,0x23,0x32,0x61,0x70,0x01,0x1c,0x01,0x6a,
8233
+0x01,0x1d,0x70,0x62,0x63,0xfe,0x56,0xfe,0xa3,0xb3,0xfe,0xe1,
8234
+0x6f,0x62,0x32,0x22,0x00,0x02,0x00,0x66,0xfe,0x56,0x04,0x6a,
8235
+0x04,0x44,0x00,0x08,0x00,0x16,0x00,0x00,0x25,0x32,0x36,0x10,
8236
+0x26,0x20,0x06,0x10,0x16,0x17,0x11,0x23,0x11,0x26,0x27,0x26,
8237
+0x10,0x00,0x20,0x00,0x10,0x07,0x06,0x02,0x68,0x94,0x97,0x97,
8238
+0xfe,0xd8,0x97,0x98,0xef,0xb9,0xa5,0x73,0x8d,0x01,0x19,0x01,
8239
+0xd2,0x01,0x19,0x8c,0x73,0x46,0xea,0x01,0xc8,0xe9,0xe9,0xfe,
8240
+0x38,0xea,0x5d,0xfe,0x6d,0x01,0x93,0x18,0x7b,0x9a,0x01,0xfc,
8241
+0x01,0x32,0xfe,0xce,0xfe,0x04,0x9a,0x7c,0x00,0x01,0x00,0x73,
8242
+0xfe,0x55,0x05,0x7b,0x05,0xf0,0x00,0x23,0x00,0x00,0x05,0x20,
8243
+0x27,0x26,0x27,0x26,0x02,0x35,0x10,0x00,0x21,0x32,0x04,0x17,
8244
+0x11,0x23,0x2e,0x01,0x23,0x22,0x02,0x11,0x10,0x17,0x16,0x25,
8245
+0x24,0x17,0x16,0x07,0x06,0x23,0x35,0x32,0x27,0x26,0x03,0xe0,
8246
+0xfe,0xfe,0x9e,0x88,0x68,0x70,0x6d,0x01,0x92,0x01,0x49,0x7a,
8247
+0x01,0x14,0x9f,0x71,0x25,0xdf,0xc9,0xef,0xf6,0x7b,0x74,0x01,
8248
+0x99,0x01,0x58,0x2c,0x16,0x6b,0x5a,0xbf,0xd1,0x09,0x08,0x1d,
8249
+0x32,0x2c,0x67,0x70,0x01,0x1d,0xb4,0x01,0x5c,0x01,0xab,0x40,
8250
+0x41,0xfe,0xa8,0xbc,0xb2,0xfe,0xad,0xfe,0xb7,0xfe,0xc4,0xb5,
8251
+0xac,0x02,0x01,0xe2,0x72,0x5a,0x4c,0x6c,0x9d,0x85,0x00,0x00,
8252
+0x00,0x01,0x00,0x66,0xfe,0x55,0x04,0x00,0x04,0xed,0x00,0x24,
8253
+0x00,0x00,0x01,0x26,0x07,0x06,0x15,0x14,0x17,0x16,0x33,0x24,
8254
+0x17,0x16,0x07,0x06,0x23,0x35,0x32,0x35,0x34,0x23,0x24,0x27,
8255
+0x26,0x35,0x10,0x37,0x36,0x33,0x16,0x37,0x36,0x37,0x33,0x15,
8256
+0x06,0x23,0x06,0x02,0x6a,0x81,0x60,0x4c,0x4b,0x4d,0xc7,0x01,
8257
+0x39,0x2b,0x16,0x6b,0x5a,0xbf,0xc8,0xc3,0xfe,0xe8,0x8c,0x8d,
8258
+0x8d,0xb1,0xc4,0x9c,0x2e,0x52,0x09,0x6b,0x33,0x96,0x5b,0x03,
8259
+0xe1,0x01,0x74,0x5e,0xfc,0xe9,0x71,0x72,0x01,0xdc,0x72,0x5a,
8260
+0x4c,0x6c,0x9d,0x85,0x01,0x98,0x9a,0xfe,0x01,0x1e,0x7a,0x98,
8261
+0x01,0x1b,0x32,0x5d,0xc2,0x49,0x01,0x00,0x00,0x01,0x00,0x71,
8262
+0x00,0x00,0x05,0x37,0x05,0xd5,0x00,0x13,0x00,0x00,0x33,0x35,
8263
+0x33,0x11,0x23,0x35,0x21,0x11,0x23,0x35,0x21,0x11,0x21,0x11,
8264
+0x23,0x35,0x21,0x11,0x33,0x15,0x71,0xbe,0xbe,0x04,0xc6,0x7b,
8265
+0xfd,0x3e,0x02,0x79,0x7b,0xfe,0x02,0xef,0x6a,0x05,0x00,0x6b,
8266
+0xfe,0xb4,0xd1,0xfe,0x0c,0xfe,0xcb,0xbb,0xfd,0x7e,0x6a,0x00,
8267
+0x00,0x01,0xff,0x47,0xfe,0x50,0x03,0x72,0x05,0xf0,0x00,0x25,
8268
+0x00,0x00,0x17,0x11,0x34,0x37,0x36,0x33,0x32,0x16,0x17,0x15,
8269
+0x23,0x2e,0x01,0x23,0x22,0x07,0x06,0x15,0x11,0x21,0x15,0x21,
8270
+0x11,0x14,0x07,0x06,0x23,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,
8271
+0x33,0x32,0x37,0x36,0xfd,0x7b,0x65,0xa6,0x33,0x76,0x46,0x62,
8272
+0x06,0x4b,0x49,0x50,0x2c,0x3e,0x01,0x3f,0xfe,0xc1,0x7c,0x66,
8273
+0xa6,0x32,0x74,0x47,0x62,0x06,0x4a,0x48,0x50,0x2b,0x41,0x19,
8274
+0x04,0x88,0xbb,0x62,0x64,0x17,0x16,0xde,0x56,0x52,0x45,0x40,
8275
+0xb0,0xfe,0xdd,0x6a,0xfd,0x06,0xbb,0x62,0x64,0x16,0x17,0xdd,
8276
+0x56,0x52,0x46,0x67,0x00,0x01,0x00,0x6b,0x00,0x00,0x04,0x3a,
8277
+0x05,0xd5,0x00,0x0d,0x00,0x00,0x29,0x01,0x13,0x01,0x23,0x13,
8278
+0x23,0x35,0x21,0x03,0x01,0x33,0x03,0x33,0x04,0x3a,0xfe,0xbc,
8279
+0x93,0xfd,0x98,0xb6,0xb4,0xb4,0x01,0x45,0xa2,0x02,0xb3,0x79,
8280
+0xb6,0xb6,0x03,0x33,0xfe,0x9b,0x03,0x9d,0x6a,0xfc,0xd3,0x01,
8281
+0xba,0xfc,0x09,0x00,0x00,0x01,0x00,0xbf,0x00,0x00,0x04,0x88,
8282
+0x06,0x13,0x00,0x07,0x00,0x00,0x09,0x01,0x23,0x13,0x21,0x01,
8283
+0x33,0x03,0x04,0x88,0xfe,0xe7,0x71,0xe2,0xfc,0xdf,0x01,0x19,
8284
+0x71,0xe2,0x03,0x7c,0xfc,0x84,0x02,0xc4,0x03,0x4f,0xfd,0x69,
8285
+0x00,0x01,0x00,0x9c,0xfe,0x55,0x05,0xce,0x05,0xf0,0x00,0x23,
8286
+0x00,0x00,0x09,0x01,0x23,0x01,0x26,0x27,0x01,0x23,0x01,0x26,
8287
+0x27,0x26,0x07,0x06,0x07,0x23,0x11,0x36,0x24,0x33,0x20,0x13,
8288
+0x16,0x13,0x16,0x07,0x02,0x07,0x06,0x07,0x06,0x23,0x35,0x32,
8289
+0x37,0x36,0x04,0xe8,0xfd,0xfa,0x81,0x02,0x78,0x1f,0x50,0xfc,
8290
+0xc0,0x81,0x03,0x7b,0x97,0xb3,0xc6,0x72,0x70,0x25,0x71,0x9f,
8291
+0x01,0x14,0x7a,0x01,0x48,0xf7,0xb7,0x0f,0x0b,0x21,0x39,0x7f,
8292
+0x95,0x82,0x76,0x43,0x93,0x81,0xab,0x02,0xe0,0xfd,0x20,0x03,
8293
+0x83,0xae,0x6f,0xfb,0x60,0x04,0xf5,0x8e,0x02,0x02,0x5b,0x59,
8294
+0xbc,0x01,0x58,0x41,0x40,0xfe,0xf4,0xc6,0xfe,0x96,0xf9,0x9f,
8295
+0xfe,0xeb,0x97,0xb2,0x37,0x32,0x6b,0xaa,0xdf,0x00,0x00,0x00,
8296
+0x00,0x02,0x00,0x5c,0xfe,0x56,0x04,0x48,0x04,0x44,0x00,0x00,
8297
+0x00,0x18,0x00,0x00,0x01,0x03,0x01,0x23,0x01,0x26,0x27,0x26,
8298
+0x27,0x01,0x23,0x01,0x26,0x25,0x35,0x20,0x13,0x16,0x03,0x02,
8299
+0x07,0x23,0x36,0x13,0x36,0x03,0x84,0x1c,0xfe,0xf9,0x81,0x01,
8300
+0x60,0x14,0x30,0x0d,0x02,0xfe,0x09,0x81,0x02,0x32,0xba,0xfe,
8301
+0x6f,0x02,0x50,0xf8,0xc0,0x1c,0x13,0xb1,0x5e,0x52,0x0d,0x05,
8302
+0xfe,0x56,0x03,0x20,0xfe,0x8a,0x01,0xf6,0x54,0x66,0x1b,0x01,
8303
+0xfd,0x34,0x03,0x21,0xa3,0x04,0x7c,0xfe,0xb8,0xfe,0xfe,0x1e,
8304
+0xfe,0xc1,0x87,0x6e,0x01,0x58,0x76,0x00,0x00,0x01,0x00,0x60,
8305
+0xff,0xf8,0x04,0x95,0x04,0x44,0x00,0x45,0x00,0x00,0x01,0x36,
8306
+0x37,0x12,0x17,0x16,0x07,0x06,0x0f,0x01,0x02,0x17,0x16,0x17,
8307
+0x16,0x33,0x32,0x37,0x36,0x37,0x33,0x15,0x06,0x07,0x06,0x23,
8308
+0x22,0x27,0x26,0x27,0x26,0x37,0x06,0x07,0x06,0x07,0x06,0x07,
8309
+0x02,0x27,0x26,0x37,0x36,0x3f,0x01,0x12,0x27,0x26,0x27,0x26,
8310
+0x23,0x22,0x07,0x06,0x07,0x23,0x35,0x36,0x37,0x36,0x33,0x32,
8311
+0x17,0x16,0x17,0x16,0x07,0x36,0x37,0x36,0x03,0x06,0x19,0x46,
8312
+0xed,0x43,0x11,0x15,0x28,0x79,0x5a,0x68,0x0f,0x08,0x34,0x2a,
8313
+0x10,0x3c,0x1c,0x1d,0x06,0x5e,0x32,0x31,0x32,0x2f,0x3c,0x47,
8314
+0x48,0x27,0x28,0x16,0x15,0x27,0x63,0x32,0x3a,0x29,0xed,0x43,
8315
+0x08,0x0c,0x14,0x91,0x5a,0x63,0x0e,0x08,0x34,0x2a,0x10,0x3c,
8316
+0x1c,0x1d,0x06,0x5e,0x32,0x31,0x32,0x2f,0x3c,0x47,0x4b,0x24,
8317
+0x24,0x16,0x20,0x14,0x48,0x02,0xca,0x4a,0x5b,0x01,0x35,0x86,
8318
+0x22,0x35,0x67,0x68,0x5a,0xfe,0xf8,0x9a,0x53,0x27,0x1f,0x1d,
8319
+0x1e,0x44,0xcb,0x0f,0x08,0x08,0x2e,0x2f,0x7a,0x7e,0xbd,0x15,
8320
+0x12,0x30,0x2f,0x82,0x35,0xfe,0xcb,0x86,0x11,0x46,0x73,0x70,
8321
+0x54,0x01,0x06,0x8e,0x53,0x27,0x1f,0x1d,0x1e,0x44,0xcb,0x0f,
8322
+0x08,0x08,0x2e,0x31,0x78,0x7a,0xb2,0x1a,0x0a,0x23,0x00,0x00,
8323
+0x00,0x02,0x00,0x81,0xfe,0x52,0x04,0x4d,0x04,0x44,0x00,0x23,
8324
+0x00,0x32,0x00,0x00,0x01,0x36,0x17,0x32,0x17,0x15,0x23,0x26,
8325
+0x27,0x26,0x07,0x06,0x23,0x06,0x27,0x26,0x35,0x11,0x34,0x37,
8326
+0x36,0x37,0x36,0x33,0x20,0x12,0x10,0x02,0x23,0x22,0x26,0x27,
8327
+0x11,0x14,0x17,0x16,0x03,0x15,0x14,0x16,0x33,0x32,0x36,0x35,
8328
+0x34,0x27,0x26,0x23,0x22,0x07,0x06,0x02,0x4c,0x84,0x80,0x5a,
8329
+0x32,0x5f,0x0b,0x32,0x5f,0x91,0x55,0x30,0x75,0x77,0x5e,0x57,
8330
+0x61,0x43,0x58,0x81,0x01,0x00,0xf8,0xf8,0xc4,0x7b,0xa7,0x36,
8331
+0x34,0x59,0x8d,0x93,0x8c,0x8d,0x91,0x48,0x57,0x7f,0x85,0x51,
8332
+0x49,0xfe,0xe2,0x3c,0x02,0x2c,0x9a,0x37,0x15,0x29,0x4c,0x2d,
8333
+0x03,0x5e,0x4a,0xab,0x02,0x6a,0xfb,0x7a,0x72,0x23,0x2e,0xfe,
8334
+0xca,0xfe,0x0c,0xfe,0xc9,0x5f,0x64,0xfe,0xfc,0x5f,0x3a,0x64,
8335
+0x03,0xa3,0x69,0xc0,0xc9,0xe2,0xdc,0xe5,0x68,0x7a,0x6f,0x65,
8336
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x1d,0x04,0x44,0x12,0x06,
8337
+0x00,0x46,0x00,0x00,0xff,0xff,0xff,0x3b,0xfe,0x39,0x01,0xb2,
8338
+0x05,0xe3,0x10,0x06,0x00,0x4d,0x00,0x00,0x00,0x03,0x00,0x73,
8339
+0xff,0xe3,0x06,0x1d,0x05,0xf0,0x00,0x05,0x00,0x0d,0x00,0x21,
8340
+0x00,0x00,0x01,0x21,0x10,0x12,0x20,0x12,0x03,0x26,0x27,0x26,
8341
+0x20,0x07,0x06,0x07,0x01,0x22,0x26,0x27,0x26,0x02,0x10,0x12,
8342
+0x37,0x3e,0x01,0x33,0x20,0x00,0x11,0x14,0x02,0x07,0x0e,0x01,
8343
+0x05,0x38,0xfc,0x20,0xfa,0x01,0xec,0xfa,0x05,0x15,0x63,0x7d,
8344
+0xfe,0x14,0x7d,0x63,0x15,0x01,0xeb,0x98,0xff,0x61,0x70,0x6d,
8345
+0x6d,0x70,0x62,0xfc,0x9a,0x01,0x45,0x01,0x90,0x6e,0x70,0x62,
8346
+0xfc,0x02,0xec,0xfe,0xb3,0xfe,0xaf,0x01,0x51,0x01,0xc7,0xf0,
8347
+0x86,0xa9,0xa9,0x86,0xf0,0xfc,0x7d,0x64,0x61,0x70,0x01,0x1c,
8348
+0x01,0x6a,0x01,0x1d,0x70,0x62,0x63,0xfe,0x56,0xfe,0xa3,0xb3,
8349
+0xfe,0xe1,0x6f,0x62,0x63,0x00,0x00,0x00,0xff,0xff,0x00,0x66,
8350
+0xff,0xe3,0x04,0x1d,0x04,0x44,0x12,0x06,0x03,0xbe,0x00,0x00,
8351
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x1d,0x04,0x44,0x12,0x06,
8352
+0x03,0xb7,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x19,
8353
+0x05,0xd5,0x12,0x06,0x00,0xa0,0x00,0x00,0x00,0x02,0x00,0x3b,
8354
+0xfe,0x56,0x04,0xb8,0x06,0x14,0x00,0x0c,0x00,0x1e,0x00,0x00,
8355
+0x01,0x15,0x14,0x16,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x22,
8356
+0x06,0x03,0x11,0x23,0x35,0x21,0x11,0x3e,0x01,0x33,0x32,0x12,
8357
+0x10,0x02,0x23,0x22,0x26,0x27,0x11,0x01,0xa4,0x93,0x8c,0x8d,
8358
+0x91,0x91,0x8d,0x8c,0x93,0xb8,0xb1,0x01,0x69,0x36,0xa7,0x7b,
8359
+0xc4,0xf8,0xf8,0xc4,0x7b,0xa7,0x36,0x02,0x48,0x69,0xc0,0xc9,
8360
+0xe2,0xdc,0xdd,0xe0,0xca,0xfb,0x4f,0x07,0x54,0x6a,0xfd,0x6d,
8361
+0x64,0x5f,0xfe,0xca,0xfe,0x0c,0xfe,0xc9,0x5f,0x64,0xfd,0xb0,
8362
+0xff,0xff,0x00,0x73,0xff,0xe3,0x05,0xa4,0x05,0xf0,0x12,0x06,
8363
+0x00,0x26,0x00,0x00,0x00,0x01,0x00,0x66,0x00,0x00,0x07,0xc9,
8364
+0x05,0xd5,0x00,0x18,0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,
8365
+0x21,0x09,0x01,0x21,0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x33,
8366
+0x11,0x01,0x23,0x01,0x11,0x33,0x15,0x71,0xbe,0xc9,0x01,0xb3,
8367
+0x02,0x0c,0x02,0x0c,0x01,0x98,0xc7,0xbf,0xfd,0xb8,0xbe,0xfe,
8368
+0x00,0x8d,0xfe,0x00,0xbe,0x6a,0x05,0x00,0x6b,0xfd,0xbf,0x02,
8369
+0x41,0x6b,0xfb,0x00,0x6a,0x6a,0x04,0xc3,0xfd,0xd5,0x02,0x2b,
8370
+0xfb,0x3d,0x6a,0x00,0x00,0x01,0x00,0x63,0xfe,0x56,0x05,0x5f,
8371
+0x04,0x27,0x00,0x0e,0x00,0x00,0x09,0x02,0x33,0x11,0x33,0x15,
8372
+0x21,0x11,0x01,0x23,0x01,0x11,0x23,0x11,0x01,0x1b,0x01,0x6f,
8373
+0x01,0x6f,0xb8,0xae,0xfe,0x9a,0xfe,0xc6,0x6a,0xfe,0xc6,0xb8,
8374
+0x04,0x27,0xfd,0xe8,0x02,0x18,0xfc,0x41,0x68,0x03,0x56,0xfe,
8375
+0x3b,0x01,0xc5,0xfb,0x00,0x05,0xd1,0x00,0x00,0x02,0x00,0x55,
8376
+0xfe,0x56,0x04,0x86,0x04,0x44,0x00,0x18,0x00,0x27,0x00,0x00,
8377
+0x05,0x21,0x15,0x21,0x15,0x23,0x35,0x23,0x35,0x33,0x11,0x34,
8378
+0x37,0x36,0x37,0x36,0x33,0x20,0x12,0x10,0x02,0x23,0x22,0x26,
8379
+0x27,0x11,0x15,0x14,0x16,0x33,0x32,0x36,0x35,0x34,0x27,0x26,
8380
+0x23,0x22,0x07,0x06,0x01,0x72,0x01,0xe6,0xfe,0x1a,0xb8,0x65,
8381
+0x65,0x57,0x61,0x42,0x59,0x81,0x01,0x00,0xf8,0xf8,0xc4,0x7b,
8382
+0xa7,0x36,0x93,0x8c,0x8d,0x91,0x49,0x56,0x7f,0x85,0x50,0x4a,
8383
+0xcf,0x6b,0x70,0x70,0x6b,0x02,0xdb,0xfb,0x7a,0x72,0x23,0x2e,
8384
+0xfe,0xca,0xfe,0x0c,0xfe,0xc9,0x5f,0x64,0x01,0xa2,0x69,0xc0,
8385
+0xc9,0xe2,0xdc,0xe5,0x68,0x7a,0x6f,0x65,0xff,0xff,0x00,0x73,
8386
+0xff,0xe3,0x05,0xa4,0x05,0xf0,0x12,0x06,0x08,0x4e,0x00,0x00,
8387
+0xff,0xff,0x00,0x73,0xff,0xe3,0x05,0xa4,0x05,0xf0,0x10,0x27,
8388
+0x00,0x79,0x02,0x14,0x00,0x22,0x12,0x06,0x00,0x26,0x00,0x00,
8389
+0xff,0xff,0x00,0x73,0xff,0xe3,0x05,0xa4,0x05,0xf0,0x12,0x26,
8390
+0x08,0x4e,0x00,0x00,0x10,0x07,0x00,0x79,0x01,0x7c,0x00,0x22,
8391
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,0x07,0x6b,0x10,0x27,
8392
+0x0d,0x7b,0x04,0xec,0x01,0x75,0x12,0x06,0x03,0x7f,0x00,0x00,
8393
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,0x07,0x5c,0x10,0x27,
8394
+0x0d,0x78,0x05,0x18,0x01,0x75,0x13,0x06,0x03,0x7f,0x00,0x00,
8395
+0x00,0x85,0xb1,0x92,0x97,0x42,0xb0,0x93,0xb0,0x98,0x42,0xb1,
8396
+0x80,0x04,0x42,0xb1,0x81,0x00,0x42,0x7c,0xb0,0x1d,0xb0,0x1e,
8397
+0x23,0x49,0xb0,0x09,0xb0,0x0f,0x23,0x49,0x61,0xb0,0x80,0x62,
8398
+0x68,0xb0,0x09,0x46,0x61,0xb0,0x1d,0x46,0x60,0xb0,0x92,0x43,
8399
+0xb0,0x01,0x60,0x23,0x42,0xb0,0x92,0x43,0xb0,0x01,0x60,0x43,
8400
+0xb0,0x00,0x55,0x58,0xb0,0x0f,0xb0,0x92,0x43,0xb0,0x01,0x60,
8401
+0x43,0x38,0xb0,0x0f,0x11,0xb0,0x01,0x35,0x59,0xb1,0x80,0x00,
8402
+0x42,0xb1,0x81,0x00,0x42,0x18,0xb0,0x1d,0x10,0xb0,0x09,0xb0,
8403
+0x0f,0xb0,0x1e,0x23,0x49,0x68,0x3b,0xb0,0x09,0x11,0xb0,0x00,
8404
+0x35,0x00,0xb0,0x1d,0xb0,0x06,0x23,0x49,0xb0,0x40,0x50,0x58,
8405
+0xb0,0x06,0xb0,0x40,0x38,0xb0,0x06,0x11,0xb0,0x00,0x35,0xb0,
8406
+0x01,0x35,0x59,0x00,0x00,0x01,0xff,0xb1,0xfe,0x45,0x05,0xcb,
8407
+0x05,0xd5,0x00,0x2c,0x00,0x55,0x40,0x17,0x14,0x0f,0x13,0x0f,
8408
+0x0f,0x10,0x26,0x0f,0x25,0x00,0x11,0x1d,0x13,0x09,0x24,0x16,
8409
+0x07,0x11,0x0a,0x24,0x10,0x0c,0x2d,0x10,0xd4,0xc4,0xe4,0xfc,
8410
+0x3c,0xe4,0xc4,0xd4,0xec,0xd4,0xec,0x10,0xee,0x10,0xee,0x31,
8411
+0x00,0x40,0x17,0x24,0x64,0x29,0x6e,0x21,0x82,0x25,0x0a,0x03,
8412
+0x6e,0x1a,0x0a,0x14,0x10,0x16,0x0d,0x6f,0x11,0x62,0x08,0x0b,
8413
+0x6f,0x0a,0x2f,0xee,0x32,0xf4,0xfe,0x3c,0xc4,0x32,0x10,0xd4,
8414
+0xec,0x10,0xcc,0xfc,0xee,0xee,0x30,0x01,0x34,0x26,0x23,0x22,
8415
+0x06,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x21,0x15,0x23,
8416
+0x11,0x21,0x11,0x23,0x35,0x21,0x11,0x36,0x24,0x33,0x32,0x16,
8417
+0x15,0x11,0x14,0x06,0x23,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,
8418
+0x33,0x32,0x36,0x35,0x05,0x03,0xb2,0x78,0xb4,0xc2,0xbc,0xfd,
8419
+0xbb,0xbe,0xfe,0x94,0x7b,0x05,0x3f,0x7b,0xfd,0xee,0x38,0x01,
8420
+0x39,0x3c,0xcd,0xee,0xc6,0xd9,0x47,0x93,0x49,0x72,0x03,0x58,
8421
+0x58,0x77,0x5e,0x01,0xcf,0xb8,0x6f,0xc4,0x6f,0xfe,0xa8,0x6b,
8422
+0x6b,0x04,0xf3,0xe9,0x01,0x60,0xfe,0xa0,0xe9,0xfd,0x6c,0x89,
8423
+0x32,0xf6,0xc0,0xfe,0x49,0xf7,0xdc,0x22,0x22,0xeb,0x63,0x61,
8424
+0x96,0xda,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x04,0xf6,
8425
+0x07,0x6b,0x10,0x27,0x0d,0x79,0x05,0x18,0x01,0x75,0x12,0x06,
8426
+0x03,0x7d,0x00,0x00,0x00,0x01,0x00,0x73,0xff,0xe3,0x05,0xa4,
8427
+0x05,0xf0,0x00,0x1b,0x00,0x55,0x40,0x0e,0x0b,0x04,0x0f,0x02,
8428
+0x26,0x12,0x27,0x13,0x0a,0x0d,0x0e,0x19,0x25,0x1c,0x10,0xf4,
8429
+0xec,0x39,0xd4,0xec,0xf4,0xec,0xc4,0x31,0x00,0x40,0x1a,0x0f,
8430
+0x0e,0x09,0x08,0x04,0x07,0x10,0x0c,0x80,0x0b,0x1c,0x10,0x6e,
8431
+0x13,0x16,0x03,0x7f,0x02,0x64,0x07,0x6e,0x00,0x69,0x16,0x60,
8432
+0x1c,0x10,0xe4,0xf4,0xec,0xfc,0xec,0x10,0xc6,0xee,0x10,0xd4,
8433
+0xec,0x11,0x12,0x17,0x39,0x30,0x00,0x40,0x09,0x2f,0x0a,0x2f,
8434
+0x0b,0x2f,0x0c,0x2f,0x0d,0x04,0x5d,0x01,0x32,0x05,0x11,0x23,
8435
+0x2e,0x01,0x23,0x22,0x02,0x03,0x21,0x15,0x21,0x1a,0x01,0x33,
8436
+0x20,0x13,0x33,0x06,0x04,0x23,0x20,0x00,0x11,0x10,0x00,0x03,
8437
+0x4e,0xf1,0x01,0x3c,0x71,0x25,0xdf,0xc9,0xef,0xe8,0x0c,0x02,
8438
+0xcf,0xfd,0x2f,0x09,0xed,0xef,0x01,0x4f,0x60,0xb8,0x42,0xfe,
8439
+0xc9,0xee,0xfe,0xd8,0xfe,0x5e,0x01,0x92,0x05,0xf0,0x81,0xfe,
8440
+0xa8,0xbc,0xb2,0xfe,0xc0,0xfe,0xeb,0x7a,0xfe,0xde,0xfe,0xba,
8441
+0x01,0x3d,0xd1,0xd7,0x01,0xa2,0x01,0x60,0x01,0x60,0x01,0xab,
8442
+0xff,0xff,0x00,0xac,0xff,0xe3,0x04,0xe5,0x05,0xf0,0x10,0x06,
8443
+0x00,0x36,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x02,0xb8,
8444
+0x05,0xd5,0x10,0x06,0x00,0x2c,0x00,0x00,0xff,0xff,0x00,0x5f,
8445
+0x00,0x00,0x02,0xcd,0x07,0x5c,0x10,0x27,0x0d,0x78,0x03,0x96,
8446
+0x01,0x75,0x13,0x06,0x03,0x70,0x00,0x00,0x00,0x7d,0xb0,0x0d,
8447
+0x4b,0x54,0xb0,0x0f,0x4b,0x54,0x5b,0xb0,0x16,0x4b,0x54,0x5b,
8448
+0xb0,0x17,0x4b,0x54,0x5b,0xb0,0x18,0x4b,0x54,0x5b,0xb0,0x21,
8449
+0x4b,0x54,0x5b,0xb0,0x23,0x4b,0x54,0x5b,0x58,0x01,0xbe,0x00,
8450
+0x24,0x00,0x40,0x00,0x01,0x00,0x00,0x00,0x24,0x00,0x24,0xff,
8451
+0xc0,0x38,0x12,0x34,0x34,0x38,0x59,0xb0,0x11,0x4b,0x54,0x58,
8452
+0x01,0xbd,0x00,0x24,0x00,0x40,0x00,0x00,0x00,0x24,0x00,0x24,
8453
+0xff,0xc0,0x38,0x12,0x34,0x38,0x59,0xb0,0x12,0x4b,0x54,0xb0,
8454
+0x13,0x4b,0x54,0x5b,0xb0,0x1b,0x4b,0x54,0x5b,0xb0,0x1d,0x4b,
8455
+0x54,0x5b,0xb0,0x1e,0x4b,0x54,0x5b,0x58,0x01,0xbd,0x00,0x24,
8456
+0xff,0xc0,0x00,0x01,0x00,0x24,0x00,0x24,0x00,0x40,0x38,0x12,
8457
+0x34,0x38,0x59,0x00,0xff,0xff,0xff,0x54,0xfe,0x56,0x02,0xd7,
8458
+0x05,0xd5,0x10,0x06,0x00,0x2d,0x00,0x00,0x00,0x02,0x00,0x34,
8459
+0xff,0xe3,0x08,0x44,0x05,0xd5,0x00,0x22,0x00,0x2b,0x00,0x52,
8460
+0x40,0x16,0x27,0x0e,0x00,0x23,0x11,0x0f,0x0f,0x04,0x24,0x06,
8461
+0x11,0x1d,0x24,0x1f,0x23,0x1a,0x24,0x08,0x0f,0x0f,0x18,0x2c,
8462
+0x10,0xd4,0xcc,0xec,0xe4,0xd4,0x3c,0xe4,0xfc,0xec,0x10,0xec,
8463
+0x10,0xd4,0xec,0x31,0x00,0x40,0x17,0x2a,0x6f,0x20,0x83,0x03,
8464
+0x10,0x0f,0x14,0x6e,0x0c,0x07,0x80,0x1e,0x1a,0x6f,0x1b,0x62,
8465
+0x0c,0x60,0x24,0x04,0x6f,0x03,0x2f,0xec,0x32,0xe4,0xf4,0xec,
8466
+0x32,0xec,0x10,0xec,0xd4,0xc4,0x10,0xfe,0xee,0x30,0x01,0x10,
8467
+0x29,0x01,0x35,0x33,0x11,0x21,0x11,0x10,0x03,0x06,0x23,0x22,
8468
+0x26,0x27,0x35,0x33,0x14,0x16,0x33,0x32,0x36,0x12,0x35,0x11,
8469
+0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x20,0x12,0x01,0x33,0x32,
8470
+0x36,0x35,0x34,0x26,0x2b,0x01,0x08,0x44,0xfd,0xe6,0xfd,0xd4,
8471
+0xbe,0xfd,0xcb,0x52,0x37,0xc7,0x27,0x93,0x49,0x72,0x50,0x4a,
8472
+0x49,0x63,0x20,0xbe,0x04,0xf7,0xbe,0x78,0x01,0x57,0xee,0xfd,
8473
+0x43,0xa5,0x8d,0xa6,0xa5,0x8e,0xa5,0x01,0xb0,0xfe,0x50,0x6a,
8474
+0x04,0xf0,0xfe,0xde,0xfd,0x99,0xfe,0xd8,0xc6,0x22,0x22,0xa7,
8475
+0x1c,0x56,0xc4,0x02,0x6d,0xab,0x01,0x32,0x6b,0x6b,0xfd,0xfc,
8476
+0xfe,0xfe,0xfe,0x06,0x9c,0xa6,0xa5,0x9b,0x00,0x02,0x00,0x71,
8477
+0x00,0x00,0x08,0x88,0x05,0xd5,0x00,0x08,0x00,0x28,0x00,0x5e,
8478
+0x40,0x1c,0x04,0x0e,0x09,0x25,0x0c,0x20,0x24,0x1e,0x12,0x1a,
8479
+0x24,0x1c,0x22,0x24,0x0f,0x1e,0x11,0x25,0x00,0x18,0x14,0x24,
8480
+0x10,0x1c,0x11,0x16,0x21,0x29,0x10,0xf4,0xec,0x32,0xe4,0x32,
8481
+0xd4,0x3c,0xec,0x32,0xe4,0x10,0xe4,0x32,0x10,0xe4,0x32,0x10,
8482
+0xd4,0xec,0x31,0x00,0x40,0x18,0x08,0x0f,0x80,0x1d,0x23,0x1f,
8483
+0x1b,0x03,0x17,0x6f,0x21,0x19,0x62,0x11,0x0d,0x00,0x03,0x15,
8484
+0x6f,0x25,0x1d,0x7e,0x0b,0x14,0x2f,0x3c,0xee,0x32,0xee,0x17,
8485
+0x32,0xf6,0x3c,0xee,0x17,0x32,0x10,0xee,0x32,0x30,0x25,0x33,
8486
+0x32,0x36,0x35,0x34,0x26,0x2b,0x01,0x01,0x10,0x29,0x01,0x35,
8487
+0x33,0x11,0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,
8488
+0x21,0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x15,0x23,0x11,
8489
+0x33,0x20,0x12,0x05,0xcb,0xa5,0x8d,0xa6,0xa5,0x8e,0xa5,0x02,
8490
+0xbd,0xfd,0xe6,0xfd,0xd4,0xbe,0xfc,0xfa,0xbe,0xfd,0xb9,0xbe,
8491
+0xbe,0x02,0x47,0xbe,0x03,0x06,0xbe,0x02,0x47,0xbe,0x78,0x01,
8492
+0x57,0xee,0x6a,0x9c,0xa6,0xa5,0x9b,0xfe,0xc4,0xfe,0x50,0x6a,
8493
+0x02,0x82,0xfd,0x7e,0x6a,0x6a,0x05,0x00,0x6b,0x6b,0xfd,0xfc,
8494
+0x02,0x04,0x6b,0x6b,0xfd,0xfc,0xfe,0xfe,0x00,0x01,0xff,0xb1,
8495
+0x00,0x00,0x06,0x89,0x05,0xd5,0x00,0x22,0x00,0x4f,0x40,0x18,
8496
+0x03,0x0f,0x00,0x20,0x0f,0x22,0x0f,0x24,0x10,0x11,0x0c,0x24,
8497
+0x0a,0x19,0x24,0x00,0x17,0x04,0x11,0x1b,0x24,0x22,0x1d,0x23,
8498
+0x10,0xd4,0xc4,0xe4,0xfc,0x3c,0xc4,0xe4,0xd4,0xe4,0xfc,0xe4,
8499
+0x10,0xee,0x10,0xee,0x31,0x00,0x40,0x13,0x14,0x6e,0x07,0x02,
8500
+0x21,0x04,0x1f,0x6f,0x22,0x62,0x07,0x0b,0x0f,0x18,0x03,0x1c,
8501
+0x6f,0x0e,0x1b,0x2f,0x3c,0xec,0x17,0x32,0xc4,0xf4,0xfe,0x3c,
8502
+0xc4,0x32,0x10,0xec,0x30,0x01,0x11,0x23,0x35,0x21,0x11,0x36,
8503
+0x37,0x36,0x16,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x34,
8504
+0x26,0x23,0x22,0x06,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,
8505
+0x21,0x15,0x23,0x11,0x04,0xf0,0x7b,0xfd,0xee,0x85,0xf9,0xf9,
8506
+0xf1,0xbe,0xfd,0xc1,0xb9,0xb3,0x7e,0xb4,0xbb,0xbc,0xfd,0xbb,
8507
+0xbe,0xfe,0x94,0x7b,0x05,0xd5,0xfe,0xa0,0xe9,0xfd,0x6c,0xb7,
8508
+0x02,0x02,0xf6,0xc0,0xfe,0x9c,0x6b,0x6b,0x01,0x64,0xb9,0x6e,
8509
+0xc7,0x6c,0xfe,0xa8,0x6b,0x6b,0x04,0xf3,0xe9,0x01,0x60,0x00,
8510
+0xff,0xff,0x00,0x71,0x00,0x00,0x06,0x19,0x07,0x6b,0x10,0x27,
8511
+0x0d,0x79,0x05,0x48,0x01,0x75,0x12,0x06,0x03,0x84,0x00,0x00,
8512
+0xff,0xff,0x00,0x71,0x00,0x00,0x06,0x89,0x07,0x6b,0x10,0x27,
8513
+0x0d,0x7b,0x05,0x75,0x01,0x75,0x12,0x06,0x03,0x82,0x00,0x00,
8514
+0xff,0xff,0x00,0x18,0xff,0xe3,0x05,0xb0,0x07,0xa8,0x10,0x26,
8515
+0x03,0x8d,0x00,0x00,0x10,0x07,0x0c,0xed,0x00,0xf0,0x01,0x75,
8516
+0x00,0x01,0x00,0x71,0xfe,0xbf,0x06,0x89,0x05,0xd5,0x00,0x1b,
8517
+0x00,0x46,0x40,0x15,0x0f,0x24,0x10,0x14,0x24,0x13,0x11,0x17,
8518
+0x1a,0x24,0x19,0x04,0x03,0x0c,0x09,0x24,0x10,0x11,0x0a,0x21,
8519
+0x1c,0x10,0xf4,0xec,0xe4,0x32,0xd4,0xdc,0xd4,0xe4,0x32,0xfc,
8520
+0xe4,0x10,0xe4,0x31,0x00,0x40,0x11,0x17,0x13,0x10,0x03,0x0c,
8521
+0x6f,0x15,0x0d,0x62,0x11,0x80,0x1a,0x09,0x6f,0x04,0x1b,0x08,
8522
+0x2f,0x3c,0xcc,0xec,0x32,0xec,0xf4,0x3c,0xec,0x17,0x32,0x30,
8523
+0x21,0x22,0x02,0x15,0x23,0x34,0x02,0x23,0x21,0x35,0x33,0x11,
8524
+0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x15,
8525
+0x23,0x11,0x33,0x15,0x04,0x51,0x65,0x24,0x96,0x24,0x65,0xfd,
8526
+0xc8,0xbe,0xbe,0x02,0x47,0xbe,0x03,0x06,0xbe,0x02,0x47,0xbe,
8527
+0xbe,0xfe,0xc1,0x02,0x02,0x01,0x3f,0x6a,0x05,0x01,0x6a,0x6a,
8528
+0xfb,0x10,0x04,0xf0,0x6a,0x6a,0xfa,0xff,0x6a,0x00,0x00,0x00,
8529
+0xff,0xff,0x00,0x18,0x00,0x00,0x05,0xff,0x05,0xd5,0x10,0x06,
8530
+0x00,0x24,0x24,0x00,0x00,0x02,0x00,0x71,0x00,0x00,0x05,0x64,
8531
+0x05,0xd5,0x00,0x08,0x00,0x1b,0x00,0x54,0x40,0x16,0x0c,0x0f,
8532
+0x0a,0x19,0x10,0x01,0x07,0x16,0x04,0x08,0x04,0x0e,0x13,0x09,
8533
+0x18,0x24,0x0e,0x08,0x11,0x19,0x21,0x1c,0x10,0xf4,0xec,0x32,
8534
+0xe4,0x32,0xd4,0xec,0x12,0x17,0x39,0x10,0xd4,0xec,0x31,0x00,
8535
+0x40,0x11,0x0c,0x0e,0x08,0x6f,0x0f,0x83,0x17,0x0e,0x80,0x1b,
8536
+0x6f,0x09,0x62,0x00,0x18,0x6f,0x17,0x2f,0xee,0x32,0xf6,0xee,
8537
+0xee,0x10,0xfe,0xee,0x10,0xcc,0x30,0x01,0x40,0x09,0x0f,0x0a,
8538
+0x0f,0x0b,0x0f,0x0c,0x0f,0x0d,0x04,0x5d,0x25,0x21,0x32,0x36,
8539
+0x35,0x34,0x26,0x23,0x21,0x01,0x21,0x11,0x23,0x35,0x21,0x11,
8540
+0x33,0x20,0x12,0x15,0x14,0x04,0x29,0x01,0x35,0x33,0x11,0x23,
8541
+0x01,0xfa,0x01,0x2b,0xb4,0xa6,0xa5,0xb5,0xfe,0xd5,0xfe,0x77,
8542
+0x04,0xb1,0x7b,0xfd,0x53,0xfe,0x01,0x7c,0xf0,0xfe,0xe8,0xfe,
8543
+0xd7,0xfd,0x4e,0xbe,0xbe,0x6a,0x9c,0xaa,0xa9,0x9b,0x02,0xe1,
8544
+0xfe,0xb3,0xd2,0xfe,0x04,0xfe,0xe2,0x90,0xde,0xd2,0x6a,0x05,
8545
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x64,
8546
+0x05,0xd5,0x10,0x06,0x00,0x25,0x00,0x00,0x00,0x01,0x00,0x71,
8547
+0x00,0x00,0x04,0xf6,0x05,0xd5,0x00,0x0d,0x00,0x2d,0x40,0x18,
8548
+0x0a,0x0c,0x80,0x06,0x6f,0x08,0x62,0x00,0x04,0x6f,0x03,0x01,
8549
+0x0d,0x0b,0x0f,0x09,0x07,0x03,0x24,0x0d,0x11,0x05,0x21,0x0e,
8550
+0x10,0xf4,0xec,0xe4,0x32,0xd4,0xec,0x10,0xc4,0x31,0x00,0x2f,
8551
+0xee,0x32,0xf6,0xee,0xfe,0xc4,0x30,0x25,0x33,0x15,0x21,0x35,
8552
+0x33,0x11,0x23,0x35,0x21,0x11,0x23,0x35,0x21,0x01,0xfa,0xef,
8553
+0xfd,0x88,0xbe,0xbe,0x04,0x85,0x7b,0xfd,0x7f,0x6a,0x6a,0x6a,
8554
+0x05,0x00,0x6b,0xfe,0xb3,0xd2,0x00,0x00,0x00,0x02,0x00,0x66,
8555
+0xfe,0xbf,0x06,0x19,0x05,0xd5,0x00,0x09,0x00,0x21,0x00,0x41,
8556
+0x40,0x13,0x16,0x13,0x11,0x0e,0x24,0x09,0x11,0x0f,0x0b,0x24,
8557
+0x1d,0x07,0x01,0x0f,0x21,0x17,0x1a,0x1c,0x22,0x10,0xd4,0xcc,
8558
+0x39,0xdc,0xec,0x39,0x39,0xe4,0xd4,0xec,0xe4,0xdc,0xcc,0x39,
8559
+0x31,0x00,0x40,0x0e,0x0f,0x0b,0x6f,0x00,0x80,0x0c,0x62,0x10,
8560
+0x07,0x1c,0x6f,0x13,0x1b,0x17,0x2f,0xcc,0x32,0xec,0x32,0x32,
8561
+0xf4,0xec,0xec,0x32,0x30,0x01,0x11,0x10,0x02,0x15,0x14,0x16,
8562
+0x33,0x21,0x11,0x25,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x11,
8563
+0x23,0x34,0x02,0x27,0x21,0x22,0x02,0x15,0x23,0x11,0x33,0x32,
8564
+0x1a,0x01,0x35,0x02,0x32,0x5a,0x0e,0x20,0x02,0x61,0xfd,0x50,
8565
+0xbe,0x04,0xf7,0xbe,0xe7,0x6a,0x1a,0x6e,0xfc,0x31,0x64,0x24,
8566
+0x6a,0x62,0x9a,0x45,0x10,0x05,0x5a,0xfe,0xde,0xfd,0x92,0xfe,
8567
+0xc2,0x0b,0x08,0x0f,0x04,0xf0,0x10,0x6b,0x6b,0xfb,0x00,0xfe,
8568
+0x55,0x02,0x01,0x33,0x0c,0xfe,0xc1,0x02,0x01,0xab,0x01,0xa9,
8569
+0x01,0xb9,0x6c,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,
8570
+0x05,0xd5,0x10,0x06,0x00,0x28,0x00,0x00,0x00,0x01,0x00,0x18,
8571
+0x00,0x00,0x08,0xe5,0x05,0xd5,0x00,0x2b,0x00,0xfc,0x40,0x15,
8572
+0x05,0x08,0x06,0x03,0x0d,0x0b,0x12,0x01,0x0d,0x15,0x01,0x24,
8573
+0x13,0x03,0x11,0x2b,0x17,0x24,0x29,0x19,0x2c,0x10,0xd4,0x3c,
8574
+0xe4,0x32,0xfc,0x3c,0xe4,0x32,0xc4,0x12,0x39,0x39,0x11,0x17,
8575
+0x39,0x31,0x00,0x40,0x1d,0x4d,0x13,0x12,0x04,0x03,0x18,0x09,
8576
+0x05,0x02,0x28,0x23,0x05,0x2a,0x6f,0x25,0x07,0x00,0x62,0x14,
8577
+0x10,0x0c,0x1d,0x20,0x05,0x18,0x6f,0x1e,0x0e,0x17,0x2f,0x3c,
8578
+0x3c,0xec,0x17,0x32,0xf4,0x3c,0x3c,0xec,0x17,0x32,0x11,0x17,
8579
+0x39,0x30,0x4b,0x53,0x58,0x40,0x23,0x07,0x06,0x05,0x08,0x09,
8580
+0x0a,0x0f,0x10,0x11,0x0e,0x0d,0x11,0x10,0x0c,0x12,0x10,0x0a,
8581
+0x13,0x0b,0x0b,0x0c,0x0b,0x12,0x0a,0x13,0x0a,0x13,0x0a,0x64,
8582
+0x05,0x13,0x64,0x04,0x05,0x04,0x07,0x10,0x04,0xed,0x10,0x01,
8583
+0xfd,0x07,0x09,0x3c,0x3c,0x07,0x10,0x08,0xed,0x10,0x05,0xed,
8584
+0x01,0xd0,0x3c,0x10,0xd0,0x3c,0x10,0xd0,0x3c,0x10,0xd0,0x3c,
8585
+0x59,0x00,0xb7,0x1a,0x13,0x1b,0x12,0x22,0x0b,0x29,0x04,0x10,
8586
+0x3c,0x10,0x3c,0x10,0x3c,0x10,0x3c,0x01,0x40,0x2b,0x1b,0x03,
8587
+0x12,0x1c,0x03,0x11,0x1d,0x03,0x10,0x1e,0x03,0x0f,0x1f,0x03,
8588
+0x0e,0x20,0x03,0x0d,0x21,0x03,0x0c,0x22,0x03,0x0b,0x23,0x03,
8589
+0x0a,0x24,0x03,0x09,0x25,0x03,0x08,0x26,0x03,0x07,0x27,0x03,
8590
+0x06,0x28,0x03,0x05,0x2a,0x10,0x49,0x3a,0x49,0x3a,0x49,0x3a,
8591
+0x49,0x3a,0x49,0x3a,0x49,0x3a,0x49,0x3a,0x49,0x3a,0x49,0x3a,
8592
+0x49,0x3a,0x49,0x3a,0x49,0x3a,0x49,0x3a,0x49,0x3a,0x01,0x21,
8593
+0x15,0x23,0x11,0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x33,
8594
+0x15,0x21,0x35,0x33,0x01,0x07,0x11,0x33,0x15,0x21,0x35,0x33,
8595
+0x11,0x27,0x01,0x33,0x15,0x21,0x35,0x33,0x09,0x01,0x23,0x35,
8596
+0x21,0x15,0x23,0x01,0x11,0x23,0x03,0x5b,0x02,0x47,0xbe,0x02,
8597
+0x65,0xa2,0x01,0xf0,0xa8,0xfe,0x22,0x02,0x2d,0xa7,0xfd,0xb9,
8598
+0xa6,0xfe,0x41,0xa1,0xbe,0xfd,0xb9,0xbe,0xa1,0xfe,0x41,0xa6,
8599
+0xfd,0xb9,0xa7,0x02,0x2d,0xfe,0x22,0xa8,0x01,0xf0,0xa2,0x02,
8600
+0x65,0xbe,0x05,0xd5,0x6b,0xfd,0x87,0x02,0x79,0x6b,0x6b,0xfe,
8601
+0x18,0xfc,0xe8,0x6a,0x6a,0x02,0x88,0xa4,0xfe,0x1c,0x6a,0x6a,
8602
+0x01,0xe4,0xa4,0xfd,0x78,0x6a,0x6a,0x03,0x18,0x01,0xe8,0x6b,
8603
+0x6b,0xfd,0x87,0x02,0x79,0x00,0x00,0x00,0x00,0x01,0x00,0x6f,
8604
+0xff,0xe3,0x04,0x7f,0x05,0xf0,0x00,0x28,0x00,0x49,0x40,0x14,
8605
+0x1e,0x1c,0x08,0x1b,0x04,0x21,0x27,0x28,0x00,0x21,0x06,0x05,
8606
+0x18,0x06,0x0b,0x12,0x27,0x00,0x11,0x29,0x10,0xd4,0xc4,0xec,
8607
+0xd4,0xec,0xd4,0xec,0x10,0xee,0x11,0x17,0x39,0x31,0x00,0x40,
8608
+0x14,0x08,0x1b,0x65,0x1d,0x11,0x15,0x65,0x1d,0x0e,0x27,0x74,
8609
+0x00,0x65,0x24,0x65,0x02,0x69,0x0e,0x60,0x29,0x10,0xe4,0xf4,
8610
+0xec,0xfc,0xec,0x10,0xc6,0xee,0xcc,0x10,0xee,0x39,0x30,0x13,
8611
+0x36,0x33,0x20,0x16,0x15,0x14,0x06,0x07,0x1e,0x01,0x15,0x14,
8612
+0x04,0x23,0x22,0x26,0x27,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,
8613
+0x34,0x26,0x2b,0x01,0x35,0x33,0x32,0x36,0x35,0x34,0x26,0x23,
8614
+0x22,0x06,0x07,0x23,0x81,0xef,0xcf,0x01,0x0d,0xf6,0xaa,0x9c,
8615
+0xb8,0xcb,0xfe,0xe7,0xf0,0xf0,0xf1,0x26,0xb8,0x07,0xbc,0x88,
8616
+0x89,0xb1,0xb4,0xdb,0x5f,0x32,0xda,0xad,0x90,0xaa,0xaa,0x95,
8617
+0x0d,0x70,0x05,0x96,0x5a,0xbd,0xa8,0x87,0xb5,0x20,0x1a,0xd7,
8618
+0xab,0xd1,0xdf,0xbd,0x69,0x39,0x8a,0xb1,0xa5,0xa5,0xb3,0x6a,
8619
+0x8f,0x8b,0x8a,0x8b,0x80,0x7e,0x00,0x00,0x00,0x01,0x00,0x71,
8620
+0x00,0x00,0x06,0x89,0x05,0xd5,0x00,0x1b,0x00,0x72,0x40,0x18,
8621
+0x14,0x0c,0x24,0x0a,0x1a,0x06,0x24,0x08,0x12,0x0e,0x24,0x16,
8622
+0x0a,0x11,0x10,0x04,0x00,0x24,0x18,0x08,0x11,0x02,0x21,0x1c,
8623
+0x10,0xf4,0xec,0x32,0xe4,0x32,0xd4,0xec,0x32,0xe4,0x32,0x10,
8624
+0xe4,0x32,0x10,0xe4,0x32,0x31,0x00,0x40,0x1a,0x4d,0x0a,0x09,
8625
+0x02,0x18,0x0a,0x0b,0x18,0x19,0x0f,0x0b,0x07,0x03,0x03,0x6f,
8626
+0x0d,0x05,0x62,0x19,0x15,0x11,0x03,0x01,0x6f,0x13,0x00,0x2f,
8627
+0x3c,0xec,0x17,0x32,0xf4,0x3c,0xec,0x17,0x32,0x10,0xc4,0x10,
8628
+0xc4,0x11,0x17,0x39,0x30,0x4b,0x53,0x58,0x40,0x0a,0x17,0x64,
8629
+0x0a,0x09,0x0a,0x09,0x64,0x18,0x17,0x18,0x04,0x07,0x10,0xed,
8630
+0x07,0x10,0xed,0x59,0x33,0x35,0x33,0x11,0x23,0x35,0x21,0x15,
8631
+0x23,0x11,0x01,0x35,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x15,
8632
+0x21,0x35,0x33,0x11,0x01,0x15,0x33,0x15,0x71,0xbe,0xbe,0x02,
8633
+0x47,0xbe,0x03,0x06,0xbe,0x02,0x47,0xbe,0xbe,0xfd,0xb9,0xbe,
8634
+0xfc,0xfa,0xbe,0x6a,0x05,0x00,0x6b,0x6b,0xfc,0x65,0x02,0xf2,
8635
+0xa9,0x6b,0x6b,0xfb,0x00,0x6a,0x6a,0x03,0x9b,0xfd,0x0e,0xa9,
8636
+0x6a,0x00,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x06,0x89,
8637
+0x07,0xa8,0x10,0x26,0x03,0x82,0x00,0x00,0x11,0x07,0x0c,0xed,
8638
+0x01,0x7a,0x01,0x75,0x00,0x22,0xb0,0x09,0x4b,0x54,0xb0,0x0a,
8639
+0x4b,0x54,0x5b,0xb0,0x19,0x4b,0x54,0x5b,0x58,0x01,0xbd,0x00,
8640
+0x38,0x00,0x40,0x00,0x01,0x00,0x38,0x00,0x38,0xff,0xc0,0x38,
8641
+0x12,0x34,0x38,0x59,0x00,0x01,0x00,0x71,0x00,0x00,0x06,0x19,
8642
+0x05,0xd5,0x00,0x1b,0x00,0x96,0x40,0x15,0x05,0x08,0x06,0x03,
8643
+0x0d,0x0b,0x12,0x01,0x0d,0x15,0x01,0x24,0x13,0x03,0x11,0x1b,
8644
+0x17,0x24,0x19,0x21,0x1c,0x10,0xf4,0xe4,0x32,0xfc,0x3c,0xe4,
8645
+0x32,0xc4,0x12,0x39,0x39,0x11,0x17,0x39,0x31,0x00,0x40,0x17,
8646
+0x4d,0x13,0x12,0x04,0x03,0x18,0x09,0x05,0x02,0x03,0x1a,0x6f,
8647
+0x07,0x00,0x62,0x14,0x10,0x0c,0x03,0x18,0x6f,0x0e,0x17,0x2f,
8648
+0x3c,0xec,0x17,0x32,0xf4,0x3c,0xec,0x17,0x32,0x11,0x17,0x39,
8649
+0x30,0x4b,0x53,0x58,0x40,0x23,0x07,0x06,0x05,0x08,0x09,0x0a,
8650
+0x0f,0x10,0x11,0x0e,0x0d,0x11,0x10,0x0c,0x12,0x10,0x0a,0x13,
8651
+0x0b,0x0b,0x0c,0x0b,0x12,0x0a,0x13,0x0a,0x13,0x0a,0x64,0x05,
8652
+0x13,0x64,0x04,0x05,0x04,0x07,0x10,0x04,0xed,0x10,0x01,0xfd,
8653
+0x07,0x09,0x3c,0x3c,0x07,0x10,0x08,0xed,0x10,0x05,0xed,0x01,
8654
+0xd0,0x3c,0x10,0xd0,0x3c,0x10,0xd0,0x3c,0x10,0xd0,0x3c,0x59,
8655
+0x13,0x21,0x15,0x23,0x11,0x01,0x23,0x35,0x21,0x15,0x23,0x09,
8656
+0x01,0x33,0x15,0x21,0x35,0x33,0x01,0x07,0x11,0x33,0x15,0x21,
8657
+0x35,0x33,0x11,0x23,0x71,0x02,0x47,0xbe,0x02,0x83,0xa2,0x01,
8658
+0xf0,0xa8,0xfe,0x10,0x02,0x3c,0xaa,0xfd,0xb9,0xa0,0xfe,0x2f,
8659
+0xa7,0xbe,0xfd,0xb9,0xbe,0xbe,0x05,0xd5,0x6b,0xfd,0x87,0x02,
8660
+0x79,0x6b,0x6b,0xfe,0x18,0xfc,0xe8,0x6a,0x6a,0x02,0x88,0xa4,
8661
+0xfe,0x1c,0x6a,0x6a,0x05,0x00,0x00,0x00,0x00,0x01,0x00,0x34,
8662
+0xff,0xe3,0x06,0x45,0x05,0xd5,0x00,0x1f,0x00,0x45,0x40,0x12,
8663
+0x0c,0x0f,0x0a,0x1f,0x24,0x01,0x11,0x19,0x1c,0x24,0x1b,0x16,
8664
+0x24,0x03,0x0f,0x0a,0x14,0x20,0x10,0xd4,0xcc,0xec,0xe4,0xd4,
8665
+0xe4,0x32,0xfc,0xec,0x10,0xec,0x31,0x00,0x40,0x13,0x0b,0x0a,
8666
+0x07,0x0f,0x6e,0x07,0x02,0x80,0x1a,0x16,0x6f,0x17,0x62,0x07,
8667
+0x60,0x1c,0x1f,0x6f,0x1e,0x2f,0xec,0x32,0xe4,0xf4,0xec,0x32,
8668
+0xec,0x10,0xec,0x10,0xd4,0xc4,0x30,0x25,0x11,0x21,0x11,0x10,
8669
+0x03,0x06,0x23,0x22,0x26,0x27,0x35,0x33,0x14,0x16,0x33,0x32,
8670
+0x36,0x1a,0x01,0x35,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x33,
8671
+0x15,0x21,0x35,0x04,0xbc,0xfd,0xcb,0x52,0x37,0xc7,0x27,0x93,
8672
+0x49,0x72,0x50,0x43,0x50,0x52,0x23,0x0e,0xbe,0x04,0xf7,0xbe,
8673
+0xbe,0xfd,0xb9,0x6a,0x04,0xf0,0xfe,0xde,0xfd,0x99,0xfe,0xd8,
8674
+0xc6,0x22,0x22,0xa7,0x1c,0x56,0xa2,0x01,0x69,0x01,0x26,0xab,
8675
+0x01,0x32,0x6b,0x6b,0xfb,0x00,0x6a,0x6a,0xff,0xff,0x00,0x66,
8676
+0x00,0x00,0x07,0xc9,0x05,0xd5,0x10,0x06,0x00,0x30,0x00,0x00,
8677
+0xff,0xff,0x00,0x71,0x00,0x00,0x06,0x89,0x05,0xd5,0x10,0x06,
8678
+0x00,0x2b,0x00,0x00,0xff,0xff,0x00,0x73,0xff,0xe3,0x06,0x1d,
8679
+0x05,0xf0,0x10,0x06,0x00,0x32,0x00,0x00,0x00,0x01,0x00,0x71,
8680
+0x00,0x00,0x06,0x89,0x05,0xd5,0x00,0x13,0x00,0x3e,0x40,0x13,
8681
+0x0c,0x24,0x0a,0x07,0x24,0x09,0x11,0x00,0x04,0x24,0x03,0x13,
8682
+0x0e,0x24,0x0a,0x11,0x10,0x21,0x14,0x10,0xf4,0xec,0xe4,0x32,
8683
+0xd4,0xe4,0x32,0xfc,0xe4,0x10,0xe4,0x31,0x00,0x40,0x0f,0x0a,
8684
+0x80,0x02,0x11,0x6f,0x13,0x62,0x04,0x07,0x0c,0x03,0x0f,0x6f,
8685
+0x06,0x0e,0x2f,0x3c,0xec,0x17,0x32,0xf4,0xec,0x32,0xec,0x30,
8686
+0x01,0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x21,0x11,
8687
+0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x06,0x89,0xbe,0xbe,
8688
+0xfd,0xb9,0xbe,0xfc,0xfa,0xbe,0xfd,0xb9,0xbe,0xbe,0x05,0xd5,
8689
+0x6b,0xfb,0x00,0x6a,0x6a,0x04,0xf0,0xfb,0x10,0x6a,0x6a,0x05,
8690
+0x00,0x6b,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x19,
8691
+0x05,0xd5,0x10,0x06,0x00,0x33,0x00,0x00,0xff,0xff,0x00,0x73,
8692
+0xff,0xe3,0x05,0xa4,0x05,0xf0,0x10,0x06,0x00,0x26,0x00,0x00,
8693
+0xff,0xff,0x00,0x14,0x00,0x00,0x05,0x42,0x05,0xd5,0x10,0x06,
8694
+0x00,0x37,0x00,0x00,0x00,0x01,0x00,0x18,0xff,0xe3,0x05,0xb0,
8695
+0x05,0xd5,0x00,0x1b,0x00,0x72,0x40,0x0c,0x10,0x17,0x0d,0x05,
8696
+0x0f,0x03,0x0b,0x17,0x19,0x0d,0x0b,0x1c,0x10,0xd4,0xc4,0xdc,
8697
+0xc4,0x10,0xdc,0xec,0x11,0x12,0x39,0x31,0x00,0x40,0x16,0x4d,
8698
+0x12,0x0b,0x0d,0x08,0x04,0x03,0x08,0x6e,0x00,0x60,0x1c,0x18,
8699
+0x14,0x11,0x03,0x0d,0x6f,0x15,0x0e,0x62,0x1c,0x10,0xf4,0x3c,
8700
+0xec,0x17,0x32,0x10,0xf4,0xec,0xd4,0xcc,0x11,0x12,0x39,0x39,
8701
+0x30,0x4b,0x53,0x58,0x40,0x19,0x0b,0x10,0x12,0x12,0x13,0x0c,
8702
+0x10,0x11,0x11,0x12,0x13,0x64,0x18,0x0a,0x0b,0x64,0x0b,0x0c,
8703
+0x12,0x64,0x12,0x11,0x19,0x18,0x19,0x07,0x10,0x08,0xed,0x08,
8704
+0xed,0x39,0x05,0x10,0xed,0x07,0x10,0xed,0x08,0x10,0xed,0x59,
8705
+0x05,0x22,0x26,0x27,0x35,0x33,0x14,0x16,0x33,0x32,0x3f,0x01,
8706
+0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x23,0x35,0x21,0x15,
8707
+0x23,0x01,0x0e,0x01,0x01,0xc6,0x29,0x91,0x4a,0x72,0x5c,0x38,
8708
+0x54,0x30,0x47,0xfe,0x25,0xa0,0x02,0x50,0xb0,0x01,0x60,0x01,
8709
+0x6e,0xc0,0x01,0xea,0xa8,0xfd,0xec,0x14,0x96,0x1d,0x22,0x22,
8710
+0xa7,0x1c,0x64,0x4b,0x7d,0x04,0x54,0x6b,0x6b,0xfc,0xce,0x03,
8711
+0x32,0x6b,0x6b,0xfb,0x62,0x2e,0xbb,0x00,0x00,0x03,0x00,0x75,
8712
+0x00,0x00,0x06,0x2f,0x05,0xd5,0x00,0x25,0x00,0x2e,0x00,0x37,
8713
+0x00,0x60,0x40,0x15,0x2b,0x0e,0x0a,0x13,0x02,0x24,0x11,0x26,
8714
+0x03,0x11,0x24,0x33,0x0e,0x1d,0x14,0x00,0x24,0x16,0x2f,0x24,
8715
+0x38,0x10,0xd4,0x3c,0x3c,0xe4,0x32,0xd4,0xec,0x10,0xfc,0x3c,
8716
+0x3c,0xe4,0x32,0xd4,0xec,0x31,0x00,0x40,0x0d,0x0a,0x00,0x62,
8717
+0x14,0x27,0x37,0x6e,0x10,0x17,0x12,0x15,0x6f,0x14,0x2f,0xfc,
8718
+0x3c,0xdc,0x3c,0xec,0x32,0x10,0xf4,0x4b,0x53,0x58,0xb4,0x26,
8719
+0x2f,0x6e,0x23,0x04,0x3c,0x3c,0xec,0x32,0x1b,0xb7,0x26,0x2f,
8720
+0x6e,0x04,0x23,0x03,0x24,0x6f,0xfc,0x3c,0xdc,0x3c,0xec,0x32,
8721
+0x59,0x30,0x01,0x21,0x15,0x23,0x15,0x33,0x32,0x1e,0x02,0x15,
8722
+0x14,0x0e,0x02,0x2b,0x01,0x15,0x33,0x15,0x21,0x35,0x33,0x35,
8723
+0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x3b,0x01,0x35,0x23,
8724
+0x05,0x11,0x33,0x32,0x36,0x11,0x10,0x26,0x2b,0x02,0x22,0x06,
8725
+0x11,0x14,0x16,0x3b,0x01,0x02,0x2f,0x02,0x46,0xbe,0x18,0x61,
8726
+0xcc,0xc4,0x6f,0x6f,0xbf,0xbe,0x74,0x18,0xbe,0xfd,0xba,0xbe,
8727
+0x18,0x7a,0x9a,0xc7,0x85,0x67,0xc8,0xda,0x57,0x18,0xbe,0x01,
8728
+0x88,0x18,0x9d,0xdd,0xcf,0xab,0xe2,0x18,0x95,0xe5,0xd4,0xa6,
8729
+0x18,0x05,0xd5,0x6b,0x53,0x42,0x99,0xcf,0x75,0x7a,0xc7,0x92,
8730
+0x4a,0x71,0x6a,0x6a,0x71,0x3f,0x80,0xdc,0x82,0x70,0xc7,0xa9,
8731
+0x3f,0x53,0xbd,0xfc,0x98,0xa7,0x01,0x0c,0x00,0xff,0xb6,0xa3,
8732
+0xfe,0xee,0xdb,0xd8,0xff,0xff,0x00,0x0c,0x00,0x00,0x05,0xa8,
8733
+0x05,0xd5,0x10,0x06,0x00,0x3b,0x00,0x00,0x00,0x01,0x00,0x71,
8734
+0xfe,0xbf,0x06,0xb2,0x05,0xd5,0x00,0x17,0x00,0x46,0x40,0x16,
8735
+0x0e,0x24,0x0b,0x07,0x24,0x0a,0x00,0x15,0x13,0x10,0x24,0x0b,
8736
+0x11,0x12,0x06,0x01,0x24,0x0a,0x11,0x03,0x21,0x18,0x10,0xf4,
8737
+0xec,0xe4,0x32,0xd4,0xec,0xe4,0xdc,0xcc,0x39,0x10,0xe4,0x10,
8738
+0xe4,0x31,0x00,0x40,0x10,0x11,0x0c,0x09,0x03,0x05,0x6f,0x0e,
8739
+0x06,0x62,0x12,0x02,0x6f,0x0a,0x80,0x15,0x01,0x2f,0xcc,0xec,
8740
+0xec,0x32,0xf4,0x3c,0xec,0x17,0x32,0x30,0x29,0x01,0x35,0x33,
8741
+0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,
8742
+0x15,0x23,0x11,0x33,0x11,0x23,0x34,0x02,0x05,0xc0,0xfa,0xb1,
8743
+0xbe,0xbe,0x02,0x47,0xbe,0x03,0x06,0xbe,0x02,0x47,0xbe,0xe7,
8744
+0x6a,0x24,0x6b,0x05,0x00,0x6a,0x6a,0xfb,0x10,0x04,0xf0,0x6a,
8745
+0x6a,0xfb,0x00,0xfe,0x54,0x03,0x01,0x3e,0x00,0x01,0x00,0x14,
8746
+0x00,0x00,0x05,0xc6,0x05,0xd5,0x00,0x1b,0x00,0x43,0x40,0x13,
8747
+0x12,0x24,0x14,0x07,0x1a,0x24,0x08,0x19,0x11,0x00,0x04,0x24,
8748
+0x03,0x0f,0x24,0x14,0x11,0x0d,0x1c,0x10,0xd4,0xec,0xe4,0xd4,
8749
+0xe4,0x32,0xfc,0x3c,0xe4,0x32,0x10,0xe4,0x31,0x00,0x40,0x11,
8750
+0x09,0x80,0x18,0x02,0x1a,0x13,0x03,0x0f,0x6f,0x1b,0x10,0x62,
8751
+0x18,0x04,0x07,0x6f,0x06,0x2f,0xec,0x32,0xcc,0xf4,0x3c,0xec,
8752
+0x17,0x32,0x10,0xec,0x30,0x01,0x15,0x23,0x11,0x33,0x15,0x21,
8753
+0x35,0x33,0x11,0x21,0x20,0x24,0x35,0x11,0x23,0x35,0x21,0x15,
8754
+0x23,0x11,0x14,0x16,0x33,0x21,0x11,0x23,0x35,0x05,0xc6,0xbe,
8755
+0xbd,0xfd,0xba,0xbe,0xfe,0xa9,0xfe,0xf2,0xfe,0xfa,0xbe,0x02,
8756
+0x42,0xb9,0x9c,0xde,0x01,0x26,0xbe,0x05,0xd5,0x6b,0xfb,0x00,
8757
+0x6a,0x6a,0x02,0x0f,0xc6,0xac,0x01,0x7f,0x6b,0x6b,0xfe,0x81,
8758
+0x84,0x83,0x02,0x86,0x6b,0x00,0x00,0x00,0x00,0x01,0x00,0x71,
8759
+0x00,0x00,0x08,0xb0,0x05,0xd5,0x00,0x1b,0x00,0x5c,0x40,0x1a,
8760
+0x12,0x24,0x14,0x03,0x24,0x01,0x11,0x06,0x09,0x24,0x08,0x17,
8761
+0x24,0x15,0x11,0x1a,0x24,0x00,0x0f,0x0b,0x24,0x14,0x11,0x0d,
8762
+0x21,0x1c,0x10,0xf4,0xec,0xe4,0x32,0xd4,0xe4,0xfc,0xe4,0xd4,
8763
+0xe4,0x32,0xf4,0xe4,0x10,0xe4,0x31,0x00,0x40,0x13,0x07,0x02,
8764
+0x1b,0x16,0x13,0x05,0x0e,0x6f,0x04,0x18,0x10,0x62,0x00,0x14,
8765
+0x80,0x09,0x0c,0x6f,0x0b,0x2f,0xec,0x32,0xec,0x32,0xf4,0x3c,
8766
+0x3c,0xec,0x17,0x32,0x30,0x01,0x40,0x09,0x0f,0x17,0x0f,0x18,
8767
+0x00,0x19,0x00,0x1a,0x04,0x5d,0x25,0x21,0x11,0x23,0x35,0x21,
8768
+0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,
8769
+0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x15,0x23,0x04,0xf6,
8770
+0x02,0x31,0xbe,0x02,0x47,0xbe,0xbe,0xf7,0xc1,0xbe,0xbe,0x02,
8771
+0x47,0xbe,0x02,0x31,0xbe,0x02,0x47,0xbe,0x7b,0x04,0xf0,0x6a,
8772
+0x6a,0xfb,0x00,0x6b,0x6b,0x05,0x00,0x6a,0x6a,0xfb,0x10,0x04,
8773
+0xf0,0x6a,0x6a,0x00,0x00,0x01,0x00,0x71,0xfe,0xbf,0x08,0xb0,
8774
+0x05,0xd5,0x00,0x1f,0x00,0x64,0x40,0x1d,0x0a,0x07,0x05,0x04,
8775
+0x12,0x24,0x14,0x1f,0x24,0x1d,0x11,0x02,0x24,0x04,0x17,0x24,
8776
+0x15,0x11,0x1a,0x24,0x1c,0x0f,0x0b,0x24,0x14,0x11,0x0d,0x21,
8777
+0x20,0x10,0xf4,0xec,0xe4,0x32,0xd4,0xe4,0xfc,0xe4,0xd4,0xe4,
8778
+0xf4,0xe4,0x10,0xe4,0x10,0xdc,0xcc,0x39,0x31,0x00,0x40,0x14,
8779
+0x03,0x1e,0x1b,0x16,0x13,0x05,0x0e,0x6f,0x00,0x18,0x10,0x62,
8780
+0x1c,0x14,0x80,0x06,0x04,0x0c,0x6f,0x0b,0x2f,0xec,0x32,0xcc,
8781
+0xec,0x32,0xf4,0x3c,0x3c,0xec,0x17,0x32,0x30,0x01,0x40,0x09,
8782
+0x0f,0x17,0x0f,0x18,0x00,0x19,0x00,0x1a,0x04,0x5d,0x01,0x21,
8783
+0x15,0x23,0x11,0x33,0x11,0x23,0x34,0x02,0x23,0x21,0x35,0x33,
8784
+0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,
8785
+0x15,0x23,0x11,0x21,0x11,0x23,0x06,0x69,0x02,0x47,0xbe,0xbe,
8786
+0x6a,0x24,0x64,0xf8,0xb3,0xbe,0xbe,0x02,0x47,0xbe,0x02,0x31,
8787
+0xbe,0x02,0x47,0xbe,0x02,0x31,0xbe,0x05,0xd5,0x6a,0xfb,0x00,
8788
+0xfe,0x54,0x03,0x01,0x3e,0x6b,0x05,0x00,0x6a,0x6a,0xfb,0x10,
8789
+0x04,0xf0,0x6a,0x6a,0xfb,0x10,0x04,0xf0,0x00,0x02,0x00,0x46,
8790
+0x00,0x00,0x06,0x12,0x05,0xd5,0x00,0x08,0x00,0x1a,0x00,0x47,
8791
+0x40,0x17,0x18,0x0f,0x1a,0x15,0x12,0x01,0x07,0x0d,0x04,0x10,
8792
+0x0a,0x24,0x08,0x04,0x0e,0x10,0x14,0x24,0x0c,0x08,0x11,0x15,
8793
+0x1b,0x10,0xd4,0xec,0x32,0xe4,0xd4,0xec,0x10,0xe6,0x11,0x17,
8794
+0x39,0x10,0xd4,0xec,0x31,0x00,0x40,0x10,0x07,0x6f,0x0d,0x83,
8795
+0x13,0x18,0x17,0x80,0x0a,0x6f,0x1a,0x62,0x00,0x14,0x6f,0x13,
8796
+0x2f,0xee,0x32,0xf6,0xee,0xfc,0xc4,0x10,0xfe,0xee,0x30,0x25,
8797
+0x21,0x32,0x36,0x35,0x34,0x26,0x23,0x21,0x13,0x15,0x23,0x11,
8798
+0x33,0x20,0x00,0x15,0x10,0x29,0x01,0x35,0x33,0x11,0x21,0x15,
8799
+0x23,0x11,0x02,0xf1,0x01,0x09,0x8d,0xa6,0xa5,0x8e,0xfe,0xf7,
8800
+0xbe,0xbe,0xdc,0x01,0x43,0x01,0x02,0xfd,0xe6,0xfd,0x70,0xbe,
8801
+0xfe,0x9b,0x7b,0x6a,0x9c,0xaa,0xa9,0x9b,0x02,0xe1,0x6b,0xfe,
8802
+0x04,0xfe,0xfe,0xb8,0xfe,0x4c,0x6a,0x04,0xf0,0xd1,0x01,0x4c,
8803
+0xff,0xff,0x00,0x71,0x00,0x00,0x07,0x6e,0x05,0xd5,0x10,0x27,
8804
+0x00,0x2c,0x04,0xb6,0x00,0x00,0x10,0x06,0x03,0x96,0x00,0x00,
8805
+0x00,0x02,0x00,0x71,0x00,0x00,0x05,0x1b,0x05,0xd5,0x00,0x08,
8806
+0x00,0x18,0x00,0x40,0x40,0x15,0x0b,0x01,0x07,0x16,0x04,0x04,
8807
+0x13,0x23,0x08,0x04,0x0e,0x09,0x10,0x0c,0x24,0x15,0x08,0x11,
8808
+0x0e,0x21,0x19,0x10,0xf4,0xec,0x32,0xe4,0x32,0xd4,0xec,0x10,
8809
+0xe6,0x11,0x17,0x39,0x31,0x00,0x40,0x0e,0x07,0x6f,0x16,0x83,
8810
+0x0c,0x14,0x10,0x6f,0x11,0x62,0x00,0x0d,0x6f,0x0c,0x2f,0xee,
8811
+0x32,0xf6,0xee,0x32,0x10,0xfe,0xee,0x30,0x25,0x21,0x32,0x36,
8812
+0x35,0x34,0x26,0x23,0x21,0x01,0x10,0x29,0x01,0x35,0x33,0x11,
8813
+0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x20,0x12,0x01,0xfa,0x01,
8814
+0x09,0x8d,0xa6,0xa5,0x8e,0xfe,0xf7,0x03,0x21,0xfd,0xe6,0xfd,
8815
+0x70,0xbe,0xbe,0x02,0x47,0xbe,0xdc,0x01,0x59,0xec,0x6a,0x9c,
8816
+0xaa,0xa9,0x9b,0xfe,0xc0,0xfe,0x4c,0x6a,0x05,0x00,0x6b,0x6b,
8817
+0xfe,0x04,0xfe,0xfe,0x00,0x01,0x00,0x73,0xff,0xe3,0x05,0xa4,
8818
+0x05,0xf0,0x00,0x1b,0x00,0x56,0x40,0x0e,0x0f,0x12,0x0e,0x03,
8819
+0x09,0x11,0x18,0x0f,0x19,0x26,0x0a,0x27,0x09,0x1c,0x10,0xd4,
8820
+0xec,0xf4,0xec,0xc4,0x10,0xd4,0xec,0x39,0x31,0x00,0x40,0x1a,
8821
+0x0d,0x0e,0x13,0x14,0x04,0x15,0x0c,0x10,0x80,0x11,0x1c,0x0c,
8822
+0x6e,0x09,0x06,0x19,0x7f,0x1a,0x64,0x15,0x6e,0x00,0x69,0x06,
8823
+0x60,0x1c,0x10,0xe4,0xf4,0xec,0xfc,0xec,0x10,0xc6,0xee,0x10,
8824
+0xd4,0xec,0x11,0x12,0x17,0x39,0x30,0x00,0x40,0x09,0x2f,0x12,
8825
+0x2f,0x11,0x2f,0x10,0x2f,0x0f,0x04,0x5d,0x01,0x20,0x00,0x11,
8826
+0x10,0x00,0x21,0x22,0x24,0x27,0x33,0x12,0x21,0x32,0x12,0x13,
8827
+0x21,0x35,0x21,0x0a,0x01,0x23,0x22,0x06,0x07,0x23,0x11,0x24,
8828
+0x02,0xc9,0x01,0x49,0x01,0x92,0xfe,0x5e,0xfe,0xd8,0xee,0xfe,
8829
+0xc9,0x42,0xb8,0x60,0x01,0x4f,0xef,0xec,0x09,0xfd,0x30,0x02,
8830
+0xd0,0x0c,0xe9,0xef,0xc9,0xdf,0x25,0x71,0x01,0x3c,0x05,0xf0,
8831
+0xfe,0x55,0xfe,0xa4,0xfe,0x9c,0xfe,0x5e,0xd7,0xd1,0xfe,0xc3,
8832
+0x01,0x46,0x01,0x22,0x7a,0x01,0x15,0x01,0x40,0xb2,0xbc,0x01,
8833
+0x58,0x81,0x00,0x00,0x00,0x02,0x00,0x71,0xff,0xe3,0x09,0x06,
8834
+0x05,0xf0,0x00,0x1c,0x00,0x28,0x00,0x51,0x40,0x14,0x20,0x0e,
8835
+0x0f,0x14,0x26,0x0e,0x0d,0x1b,0x01,0x0a,0x24,0x1c,0x0b,0x11,
8836
+0x07,0x04,0x24,0x05,0x21,0x29,0x10,0xf4,0xe4,0x32,0xfc,0x3c,
8837
+0xe4,0x32,0xdc,0x39,0xec,0xd4,0x39,0xec,0x31,0x00,0x40,0x18,
8838
+0x23,0x6e,0x19,0x0f,0x11,0x69,0x1d,0x6e,0x17,0x60,0x03,0x1c,
8839
+0x80,0x0c,0x0b,0x07,0x6f,0x08,0x62,0x0c,0x01,0x04,0x6f,0x03,
8840
+0x2f,0xec,0x32,0xcc,0xf4,0xec,0x32,0x10,0xec,0x10,0xf4,0xec,
8841
+0xf4,0x39,0x39,0xec,0x30,0x25,0x33,0x15,0x21,0x35,0x33,0x11,
8842
+0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x12,0x37,0x36,0x21,0x20,
8843
+0x00,0x11,0x10,0x00,0x21,0x20,0x27,0x26,0x03,0x21,0x01,0x32,
8844
+0x12,0x11,0x10,0x02,0x23,0x22,0x02,0x11,0x10,0x12,0x01,0xfa,
8845
+0xbe,0xfd,0xb9,0xbe,0xbe,0x02,0x47,0xbe,0x01,0x67,0x1c,0xc1,
8846
+0xc0,0x01,0x33,0x01,0x45,0x01,0x90,0xfe,0x5d,0xfe,0xce,0xfe,
8847
+0xcd,0xc5,0xcd,0x0f,0xfe,0x9d,0x04,0x36,0xf6,0xfa,0xfa,0xf6,
8848
+0xf5,0xfa,0xfa,0x6a,0x6a,0x6a,0x05,0x00,0x6b,0x6b,0xfd,0xe8,
8849
+0x01,0x1d,0xc1,0xc0,0xfe,0x56,0xfe,0xa3,0xfe,0x9b,0xfe,0x5f,
8850
+0xc5,0xcd,0x01,0x41,0xfd,0x98,0x01,0x51,0x01,0x4b,0x01,0x4a,
8851
+0x01,0x51,0xfe,0xaf,0xfe,0xb6,0xfe,0xb5,0xfe,0xaf,0x00,0x00,
8852
+0x00,0x02,0x00,0x46,0x00,0x00,0x06,0x05,0x05,0xd5,0x00,0x08,
8853
+0x00,0x20,0x00,0x60,0x40,0x0e,0x17,0x24,0x00,0x19,0x11,0x11,
8854
+0x14,0x24,0x13,0x05,0x0e,0x1f,0x0c,0x21,0x10,0xd4,0xc0,0xec,
8855
+0xd4,0xe4,0x32,0xfc,0x3c,0xe4,0x31,0x00,0x40,0x12,0x4d,0x09,
8856
+0x00,0x6f,0x1a,0x83,0x01,0x11,0x6f,0x10,0x62,0x1c,0x13,0x1f,
8857
+0x17,0x6f,0x1e,0x16,0x2f,0x3c,0xec,0x32,0x32,0x32,0xf4,0xec,
8858
+0x32,0xfc,0xec,0x39,0x30,0x4b,0x53,0x58,0x40,0x10,0x1d,0x1c,
8859
+0x24,0x1b,0x1e,0x1f,0x24,0x20,0x1a,0x10,0x09,0x1b,0x10,0x20,
8860
+0x20,0x09,0x07,0x10,0x01,0xed,0x10,0xed,0x01,0x10,0xf4,0x3c,
8861
+0x10,0xf4,0x3c,0x59,0x01,0x11,0x21,0x22,0x06,0x15,0x14,0x16,
8862
+0x33,0x07,0x2e,0x01,0x35,0x34,0x36,0x33,0x21,0x15,0x23,0x11,
8863
+0x33,0x15,0x21,0x35,0x33,0x11,0x21,0x01,0x33,0x15,0x21,0x35,
8864
+0x33,0x04,0x7c,0xfe,0x89,0x97,0x90,0x90,0x97,0x9c,0x9e,0xd2,
8865
+0xed,0xda,0x03,0x45,0xbe,0xbe,0xfd,0xa4,0xd3,0xfe,0xdc,0xfe,
8866
+0x8f,0xa6,0xfd,0xb9,0xa9,0x03,0x21,0x02,0x49,0x8e,0x96,0x96,
8867
+0x8f,0x5d,0x20,0xbe,0xb2,0xb1,0xd0,0x6b,0xfb,0x00,0x6a,0x6a,
8868
+0x02,0x4c,0xfd,0xb4,0x6a,0x6a,0x00,0x00,0xff,0xff,0x00,0x66,
8869
+0xff,0xe3,0x04,0x8b,0x04,0x44,0x10,0x06,0x00,0x44,0x00,0x00,
8870
+0x00,0x02,0x00,0x57,0xff,0xe3,0x04,0x69,0x06,0x36,0x00,0x22,
8871
+0x00,0x2b,0x00,0x42,0x40,0x10,0x17,0x21,0x1c,0x00,0x0d,0x2a,
8872
+0x1a,0x1c,0x44,0x25,0x1a,0x15,0x05,0x01,0x00,0x2c,0x10,0xd4,
8873
+0xc4,0xc4,0xc0,0xec,0xf4,0xec,0xd4,0x11,0x12,0x39,0x39,0x31,
8874
+0x00,0x40,0x11,0x07,0x10,0x13,0x05,0x15,0x0c,0x23,0x8f,0x15,
8875
+0x21,0x19,0x8c,0x28,0x8f,0x1f,0x60,0x2c,0x10,0xf6,0xee,0xf6,
8876
+0x39,0x39,0xee,0xc6,0x11,0x39,0x39,0x39,0x39,0x30,0x13,0x27,
8877
+0x26,0x34,0x36,0x37,0x36,0x37,0x36,0x24,0x3e,0x01,0x37,0x33,
8878
+0x0e,0x01,0x07,0x04,0x06,0x07,0x06,0x17,0x36,0x37,0x36,0x33,
8879
+0x32,0x00,0x15,0x14,0x00,0x23,0x22,0x27,0x26,0x01,0x20,0x11,
8880
+0x14,0x16,0x33,0x20,0x11,0x10,0x65,0x09,0x05,0x18,0x22,0x59,
8881
+0xa9,0x5e,0x01,0x14,0x53,0x5a,0x07,0x6a,0x0f,0x9b,0x48,0xfe,
8882
+0xad,0x80,0x64,0x42,0x01,0x36,0x5b,0x5a,0xc3,0xe9,0x01,0x19,
8883
+0xfe,0xe7,0xe8,0xe9,0x86,0x86,0x01,0xf4,0xfe,0xd5,0x98,0x93,
8884
+0x01,0x2b,0x02,0x14,0xb0,0x6b,0x5e,0xa8,0x45,0xb3,0x51,0x2d,
8885
+0x1c,0x1c,0x42,0x11,0x5f,0xbe,0x0b,0x34,0x32,0x6c,0x47,0xbb,
8886
+0x6a,0x51,0x4f,0xfe,0xce,0xfe,0xfe,0xfe,0xcd,0x92,0x92,0x02,
8887
+0xda,0xfe,0x33,0xe4,0xea,0x01,0xce,0x01,0xcd,0x00,0x00,0x00,
8888
+0x00,0x03,0x00,0x49,0x00,0x00,0x04,0x2b,0x04,0x27,0x00,0x10,
8889
+0x00,0x19,0x00,0x22,0x00,0x38,0x40,0x0f,0x15,0x1a,0x02,0x1e,
8890
+0x1a,0x07,0x11,0x1a,0x06,0x0f,0x0c,0x2c,0x0d,0x30,0x23,0x10,
8891
+0xf4,0xe4,0x32,0xec,0x32,0xd4,0xec,0xd4,0xec,0x31,0x00,0x40,
8892
+0x0e,0x05,0x11,0x7a,0x22,0x19,0x0f,0x7a,0x10,0x9c,0x22,0x1a,
8893
+0x0c,0x7a,0x0b,0x2f,0xec,0x32,0xcc,0xf4,0xec,0x32,0x10,0xec,
8894
+0x39,0x30,0x01,0x20,0x11,0x14,0x06,0x07,0x04,0x15,0x14,0x06,
8895
+0x23,0x21,0x35,0x33,0x11,0x23,0x35,0x01,0x33,0x32,0x36,0x35,
8896
+0x34,0x26,0x2b,0x01,0x11,0x33,0x32,0x36,0x35,0x34,0x26,0x2b,
8897
+0x01,0x02,0x96,0x01,0x5c,0x7a,0x75,0x01,0x28,0xd6,0xe3,0xfd,
8898
+0xd7,0xa7,0xa7,0x01,0x5f,0xa9,0x6a,0x73,0x74,0x69,0xa9,0xcc,
8899
+0x75,0x7f,0x7e,0x76,0xcc,0x04,0x27,0xfe,0xf9,0x5e,0x71,0x0d,
8900
+0x23,0xed,0x9e,0x96,0x6a,0x03,0x53,0x6a,0xfe,0x5b,0x59,0x44,
8901
+0x44,0x5a,0xfc,0xad,0x70,0x5b,0x5b,0x6e,0x00,0x01,0x00,0x3b,
8902
+0x00,0x00,0x03,0xd8,0x04,0x27,0x00,0x0d,0x00,0x30,0x40,0x0e,
8903
+0x06,0x2c,0x05,0x03,0x2d,0x00,0x05,0x06,0x0d,0x09,0x2c,0x0a,
8904
+0x30,0x0e,0x10,0xf4,0xe4,0x32,0xec,0xd4,0xec,0x10,0xe4,0x31,
8905
+0x00,0x40,0x0b,0x01,0x04,0x85,0x0c,0x7a,0x0d,0x9c,0x06,0x09,
8906
+0x7a,0x08,0x2f,0xec,0x32,0xf4,0xec,0xfc,0xcc,0x30,0x01,0x11,
8907
+0x23,0x35,0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,
8908
+0x03,0xd8,0x6a,0xfe,0x36,0x8f,0xfe,0x13,0xa6,0xb1,0x04,0x27,
8909
+0xfe,0xdf,0xa6,0xfc,0xbe,0x6a,0x6a,0x03,0x53,0x6a,0x00,0x00,
8910
+0x00,0x02,0x00,0x4a,0xfe,0xe5,0x04,0x99,0x04,0x27,0x00,0x09,
8911
+0x00,0x21,0x00,0x48,0x40,0x13,0x16,0x13,0x11,0x0e,0x2c,0x09,
8912
+0x06,0x0f,0x0b,0x2c,0x1d,0x07,0x01,0x2d,0x21,0x17,0x1a,0x1c,
8913
+0x22,0x10,0xd4,0xcc,0x39,0xdc,0xec,0x39,0x39,0xe4,0xd4,0xec,
8914
+0xe4,0xdc,0xcc,0x39,0x31,0x00,0x40,0x0f,0x0f,0x0b,0x7a,0x00,
8915
+0x85,0x0c,0x9c,0x07,0x85,0x10,0x1c,0x7a,0x13,0x1b,0x17,0x2f,
8916
+0xcc,0x32,0xec,0x32,0xec,0xf4,0xec,0xec,0x32,0x30,0x01,0xb2,
8917
+0x20,0x23,0x01,0x5d,0x01,0x15,0x14,0x02,0x07,0x06,0x16,0x33,
8918
+0x21,0x11,0x25,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x11,0x23,
8919
+0x27,0x26,0x23,0x21,0x22,0x0f,0x01,0x23,0x11,0x33,0x32,0x3e,
8920
+0x01,0x35,0x01,0xbd,0x36,0x18,0x02,0x0a,0x19,0x01,0xac,0xfe,
8921
+0x06,0xa6,0x03,0xfd,0xa5,0xa5,0x68,0x10,0x10,0x64,0xfd,0x89,
8922
+0x64,0x10,0x10,0x68,0x38,0x4a,0x5e,0x18,0x03,0xae,0xae,0xec,
8923
+0xfe,0xd6,0x61,0x08,0x06,0x03,0x33,0x0f,0x6a,0x6a,0xfc,0xad,
8924
+0xfe,0x7b,0x8d,0x8e,0x8e,0x8d,0x01,0x85,0xf0,0xfd,0xaa,0x00,
8925
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x56,0x04,0x44,0x10,0x06,
8926
+0x00,0x48,0x00,0x00,0x00,0x01,0x00,0x19,0x00,0x00,0x07,0x43,
8927
+0x04,0x27,0x00,0x2b,0x00,0xfc,0x40,0x15,0x05,0x08,0x06,0x03,
8928
+0x0d,0x0b,0x12,0x01,0x0d,0x15,0x01,0x2c,0x13,0x03,0x06,0x2b,
8929
+0x17,0x2c,0x29,0x19,0x2c,0x10,0xd4,0x3c,0xe4,0x32,0xfc,0x3c,
8930
+0xe4,0x32,0xc4,0x12,0x39,0x39,0x11,0x17,0x39,0x31,0x00,0x40,
8931
+0x1d,0x4d,0x13,0x12,0x04,0x03,0x18,0x09,0x05,0x02,0x28,0x23,
8932
+0x05,0x2a,0x7a,0x25,0x07,0x00,0x9c,0x14,0x10,0x0c,0x1d,0x20,
8933
+0x05,0x18,0x7a,0x1e,0x0e,0x17,0x2f,0x3c,0x3c,0xec,0x17,0x32,
8934
+0xf4,0x3c,0x3c,0xec,0x17,0x32,0x11,0x17,0x39,0x30,0x4b,0x53,
8935
+0x58,0x40,0x23,0x07,0x06,0x05,0x08,0x09,0x0a,0x0f,0x10,0x11,
8936
+0x0e,0x0d,0x11,0x3e,0x0c,0x12,0x3e,0x0a,0x13,0x0b,0x0b,0x0c,
8937
+0x0b,0x12,0x0a,0x13,0x0a,0x13,0x0a,0x9f,0x05,0x13,0x9f,0x04,
8938
+0x05,0x04,0x07,0x10,0x04,0xed,0x10,0x01,0xfd,0x07,0x09,0x3c,
8939
+0x3c,0x07,0x10,0x08,0xed,0x10,0x05,0xed,0x01,0xd0,0x3c,0x10,
8940
+0xd0,0x3c,0x10,0xd0,0x3c,0x10,0xd0,0x3c,0x59,0x00,0xb7,0x1a,
8941
+0x13,0x1b,0x12,0x22,0x0b,0x29,0x04,0x10,0x3c,0x10,0x3c,0x10,
8942
+0x3c,0x10,0x3c,0x01,0x40,0x2b,0x1b,0x03,0x12,0x1c,0x03,0x11,
8943
+0x1d,0x03,0x10,0x1e,0x03,0x0f,0x1f,0x03,0x0e,0x20,0x03,0x0d,
8944
+0x21,0x03,0x0c,0x22,0x03,0x0b,0x23,0x03,0x0a,0x24,0x03,0x09,
8945
+0x25,0x03,0x08,0x26,0x03,0x07,0x27,0x03,0x06,0x28,0x03,0x05,
8946
+0x2a,0x10,0x49,0x3a,0x49,0x3a,0x49,0x3a,0x49,0x3a,0x49,0x3a,
8947
+0x49,0x3a,0x49,0x3a,0x49,0x3a,0x49,0x3a,0x49,0x3a,0x49,0x3a,
8948
+0x49,0x3a,0x49,0x3a,0x49,0x3a,0x01,0x21,0x15,0x23,0x11,0x01,
8949
+0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x33,0x15,0x21,0x35,0x33,
8950
+0x01,0x07,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x27,0x01,0x33,
8951
+0x15,0x21,0x35,0x33,0x09,0x01,0x23,0x35,0x21,0x15,0x23,0x01,
8952
+0x11,0x23,0x02,0xac,0x02,0x04,0xa6,0x01,0xb6,0x99,0x01,0xe1,
8953
+0xb6,0xfe,0xc9,0x01,0x8f,0x99,0xfd,0xf4,0x98,0xfe,0xca,0x8f,
8954
+0xa6,0xfd,0xfc,0xa6,0x8f,0xfe,0xca,0x98,0xfd,0xf4,0x99,0x01,
8955
+0x8f,0xfe,0xc9,0xb6,0x01,0xe1,0x99,0x01,0xb6,0xa6,0x04,0x27,
8956
+0x6a,0xfe,0x62,0x01,0x9e,0x6a,0x6a,0xfe,0xdb,0xfd,0xd2,0x6a,
8957
+0x6a,0x01,0xb5,0x87,0xfe,0xd2,0x6a,0x6a,0x01,0x2e,0x87,0xfe,
8958
+0x4b,0x6a,0x6a,0x02,0x2e,0x01,0x25,0x6a,0x6a,0xfe,0x62,0x01,
8959
+0x9e,0x00,0x00,0x00,0x00,0x01,0x00,0x5a,0xff,0xe3,0x03,0xf7,
8960
+0x04,0x44,0x00,0x25,0x00,0x45,0x40,0x12,0x1c,0x1a,0x19,0x03,
8961
+0x1f,0x24,0x2d,0x00,0x1f,0x06,0x04,0x16,0x06,0x0a,0x12,0x00,
8962
+0x10,0x26,0x10,0xd4,0xc4,0xcc,0xd4,0xec,0xd4,0xec,0x10,0xee,
8963
+0x11,0x17,0x39,0x31,0x00,0x40,0x12,0x07,0x1a,0x7a,0x1b,0x11,
8964
+0x13,0x8f,0x0d,0x27,0x00,0x22,0x8f,0x02,0x8c,0x1b,0x0d,0x60,
8965
+0x26,0x10,0xf6,0xce,0xf6,0xee,0xde,0xce,0x10,0xee,0xce,0x10,
8966
+0xee,0x39,0x30,0x13,0x36,0x33,0x20,0x11,0x14,0x06,0x07,0x1e,
8967
+0x01,0x15,0x14,0x04,0x23,0x22,0x26,0x27,0x33,0x16,0x33,0x32,
8968
+0x36,0x35,0x34,0x26,0x2b,0x01,0x35,0x33,0x32,0x36,0x35,0x34,
8969
+0x26,0x23,0x20,0x07,0x23,0x83,0xaf,0xe5,0x01,0xa6,0xd5,0x19,
8970
+0x94,0x94,0xfe,0xf1,0xca,0xb8,0xf1,0x1b,0x94,0x42,0xf4,0x7b,
8971
+0xa2,0xaf,0xae,0x5c,0x30,0xaf,0xa7,0x8e,0x79,0xfe,0xfe,0x16,
8972
+0x6c,0x03,0xfa,0x4a,0xfe,0xe6,0x9e,0x58,0x02,0x14,0x71,0x97,
8973
+0x96,0x9d,0xa7,0x79,0xbd,0x7f,0x59,0x5a,0x81,0x6a,0x66,0x50,
8974
+0x5b,0x66,0xab,0x00,0x00,0x01,0x00,0x46,0x00,0x00,0x04,0xe9,
8975
+0x04,0x27,0x00,0x1b,0x00,0x79,0x40,0x19,0x14,0x0c,0x3d,0x0a,
8976
+0x1a,0x06,0x3d,0x08,0x12,0x0e,0x2c,0x16,0x0a,0x06,0x10,0x3a,
8977
+0x04,0x00,0x2c,0x18,0x08,0x06,0x02,0x30,0x1c,0x10,0xf4,0xec,
8978
+0x32,0xe4,0x32,0xf4,0xec,0x32,0xe4,0x32,0x10,0xe4,0x32,0x10,
8979
+0xe4,0x32,0x31,0x00,0x40,0x1a,0x4d,0x0a,0x09,0x02,0x18,0x0a,
8980
+0x0b,0x18,0x19,0x0f,0x0b,0x07,0x03,0x03,0x7a,0x0d,0x05,0x9c,
8981
+0x19,0x15,0x11,0x03,0x01,0x7a,0x13,0x00,0x2f,0x3c,0xec,0x17,
8982
+0x32,0xf4,0x3c,0xec,0x17,0x32,0x10,0xc4,0x10,0xc4,0x11,0x17,
8983
+0x39,0x30,0x4b,0x53,0x58,0x40,0x0a,0x17,0x9f,0x0a,0x09,0x0a,
8984
+0x09,0x9f,0x18,0x17,0x18,0x04,0x07,0x10,0xed,0x07,0x10,0xed,
8985
+0x59,0x01,0xb2,0x2f,0x1d,0x01,0x5d,0x33,0x35,0x33,0x11,0x23,
8986
+0x35,0x21,0x15,0x23,0x11,0x01,0x35,0x23,0x35,0x21,0x15,0x23,
8987
+0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x01,0x15,0x33,0x15,0x46,
8988
+0xa6,0xa6,0x02,0x04,0xa6,0x01,0xe7,0xa6,0x02,0x04,0xa6,0xa6,
8989
+0xfd,0xfc,0xa6,0xfe,0x19,0xa6,0x6a,0x03,0x53,0x6a,0x6a,0xfd,
8990
+0x9e,0x02,0x03,0x5f,0x6a,0x6a,0xfc,0xad,0x6a,0x6a,0x02,0x52,
8991
+0xfd,0xfd,0x4f,0x6a,0xff,0xff,0x00,0x46,0x00,0x00,0x04,0xe9,
8992
+0x05,0xf8,0x10,0x27,0x0c,0xee,0x00,0x9c,0xff,0x92,0x13,0x06,
8993
+0x03,0xa2,0x00,0x00,0x00,0x1a,0x00,0xb2,0x40,0x17,0x28,0x49,
8994
+0x52,0x58,0xbd,0x00,0x38,0xff,0xc0,0x00,0x00,0x00,0x38,0x00,
8995
+0x38,0x00,0x40,0x38,0x12,0x34,0x38,0x59,0x00,0x01,0x00,0x46,
8996
+0x00,0x00,0x04,0xe7,0x04,0x27,0x00,0x1b,0x00,0x8b,0x40,0x19,
8997
+0x0a,0x11,0x12,0x09,0x04,0x06,0x08,0x10,0x0e,0x02,0x0d,0x14,
8998
+0x01,0x3d,0x03,0x12,0x06,0x08,0x0d,0x1a,0x17,0x2c,0x18,0x30,
8999
+0x1c,0x10,0xf4,0xe4,0x32,0xcc,0xcc,0xfc,0x3c,0xe4,0x32,0x11,
9000
+0x17,0x39,0x11,0x39,0x39,0x11,0x12,0x39,0x39,0x31,0x00,0x40,
9001
+0x18,0x4d,0x03,0x0a,0x11,0x12,0x04,0x16,0x08,0x05,0x02,0x03,
9002
+0x1a,0x7a,0x06,0x1b,0x9c,0x0c,0x0f,0x14,0x03,0x17,0x7a,0x0e,
9003
+0x16,0x2f,0x3c,0xec,0x17,0x32,0xf4,0x3c,0xec,0x17,0x32,0x12,
9004
+0x17,0x39,0x30,0x4b,0x53,0x58,0x40,0x1c,0x0b,0x3e,0x10,0x0a,
9005
+0x3e,0x11,0x09,0x12,0x11,0x10,0x0a,0x0a,0x0b,0x09,0x12,0x11,
9006
+0x11,0x10,0x09,0x12,0x12,0x9f,0x03,0x09,0x9f,0x04,0x04,0x03,
9007
+0x07,0x10,0x05,0xed,0x10,0x04,0xed,0x0f,0x0f,0x07,0x08,0x10,
9008
+0xed,0x05,0x10,0xed,0x59,0x01,0x15,0x23,0x11,0x01,0x23,0x35,
9009
+0x21,0x15,0x23,0x09,0x01,0x33,0x15,0x21,0x35,0x33,0x01,0x07,
9010
+0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x02,0x4a,0xa6,
9011
+0x01,0xc0,0x99,0x01,0xe1,0xb6,0xfe,0xc4,0x01,0x94,0x99,0xfd,
9012
+0xf4,0x98,0xfe,0xc2,0x91,0xa6,0xfd,0xfc,0xa6,0xa6,0x04,0x27,
9013
+0x6a,0xfe,0x62,0x01,0x9e,0x6a,0x6a,0xfe,0xdb,0xfd,0xd2,0x6a,
9014
+0x6a,0x01,0xb5,0x87,0xfe,0xd2,0x6a,0x6a,0x03,0x53,0x6a,0x00,
9015
+0x00,0x01,0x00,0x24,0xff,0xe3,0x04,0xcb,0x04,0x27,0x00,0x24,
9016
+0x00,0x3f,0x40,0x10,0x10,0x3d,0x11,0x06,0x0a,0x2c,0x0d,0x3d,
9017
+0x0c,0x07,0x2c,0x14,0x2d,0x1f,0x05,0x25,0x10,0xd4,0xcc,0xec,
9018
+0xe4,0xd4,0xe4,0xe4,0xfc,0xe4,0x31,0x00,0x40,0x12,0x20,0x1f,
9019
+0x22,0x8f,0x1c,0x13,0x85,0x0a,0x07,0x7a,0x08,0x9c,0x1c,0x60,
9020
+0x0d,0x10,0x7a,0x0f,0x2f,0xec,0x32,0xe4,0xf4,0xec,0x32,0xec,
9021
+0x10,0xec,0xd4,0xc4,0x30,0x25,0x3e,0x01,0x37,0x36,0x3d,0x01,
9022
+0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x33,0x11,
9023
+0x21,0x15,0x14,0x07,0x0e,0x01,0x07,0x0e,0x01,0x23,0x22,0x26,
9024
+0x2f,0x01,0x16,0x33,0x32,0x36,0x01,0x28,0x12,0x22,0x0e,0x0a,
9025
+0xa6,0x03,0xfd,0xa5,0xa5,0xfd,0xfd,0xa6,0xfe,0x81,0x0a,0x07,
9026
+0x28,0x15,0x12,0x7b,0x53,0x11,0x42,0x44,0x06,0x4c,0x3f,0x29,
9027
+0x3f,0x97,0x2a,0xc3,0x68,0x4d,0xc8,0xbc,0x6a,0x6a,0xfc,0xad,
9028
+0x6a,0x6a,0x03,0x44,0xae,0x9f,0x75,0x53,0xcf,0x50,0x48,0x4f,
9029
+0x07,0x16,0x7d,0x1f,0x14,0x00,0x00,0x00,0x00,0x01,0x00,0x4a,
9030
+0x00,0x00,0x05,0xef,0x04,0x27,0x00,0x18,0x00,0x83,0x40,0x1e,
9031
+0x06,0x15,0x14,0x13,0x07,0x03,0x17,0x08,0x0f,0x3d,0x11,0x17,
9032
+0x3d,0x15,0x11,0x06,0x0d,0x2c,0x09,0x2c,0x0b,0x04,0x2c,0x15,
9033
+0x0f,0x00,0x2c,0x02,0x30,0x19,0x10,0xf4,0xe4,0xec,0xe4,0xd4,
9034
+0xe4,0xe4,0xec,0x10,0xe4,0x10,0xe4,0x39,0x11,0x17,0x39,0x12,
9035
+0x39,0x31,0x00,0x40,0x15,0x00,0x15,0x13,0x12,0x07,0x04,0x01,
9036
+0x0a,0x03,0x7a,0x08,0x05,0x9c,0x16,0x10,0x0c,0x03,0x01,0x7a,
9037
+0x0e,0x00,0x2f,0x3c,0xee,0x17,0x32,0xf4,0x3c,0xee,0x32,0x11,
9038
+0x17,0x39,0x30,0x4b,0x53,0x58,0x40,0x14,0x13,0x9f,0x07,0x08,
9039
+0x07,0x12,0x9f,0x08,0x08,0x07,0x15,0x3e,0x06,0x07,0x06,0x14,
9040
+0x3e,0x07,0x07,0x06,0x07,0x10,0x05,0xed,0x07,0x10,0x04,0xed,
9041
+0x07,0x10,0x04,0xed,0x07,0x10,0x05,0xed,0x59,0x33,0x35,0x33,
9042
+0x11,0x23,0x35,0x21,0x09,0x01,0x21,0x15,0x23,0x11,0x33,0x15,
9043
+0x21,0x35,0x33,0x11,0x01,0x23,0x01,0x11,0x33,0x15,0x4a,0xa6,
9044
+0xa6,0x01,0xaf,0x01,0x2b,0x01,0x2b,0x01,0xa0,0xa6,0xa6,0xfd,
9045
+0xfc,0xa6,0xfe,0xb0,0x87,0xfe,0xb1,0xa6,0x6a,0x03,0x53,0x6a,
9046
+0xfd,0x25,0x02,0xdb,0x6a,0xfc,0xad,0x6a,0x6a,0x03,0x36,0xfc,
9047
+0xcb,0x03,0x35,0xfc,0xca,0x6a,0x00,0x00,0x00,0x01,0x00,0x46,
9048
+0x00,0x00,0x04,0xe9,0x04,0x27,0x00,0x1b,0x00,0x85,0x40,0x19,
9049
+0x13,0x0a,0x2c,0x08,0x18,0x05,0x3d,0x17,0x07,0x06,0x1b,0x3d,
9050
+0x02,0x2c,0x01,0x3a,0x14,0x08,0x06,0x10,0x0c,0x2c,0x0e,0x30,
9051
+0x1c,0x10,0xf4,0xe4,0x32,0xec,0x32,0xf4,0xe4,0xe4,0xfc,0x3c,
9052
+0xe4,0x32,0x10,0xe4,0x32,0x31,0x00,0x40,0x15,0x08,0x85,0x15,
9053
+0x0c,0x00,0x18,0x14,0x03,0x10,0x7a,0x19,0x11,0x9c,0x01,0x05,
9054
+0x09,0x03,0x0d,0x7a,0x04,0x0c,0x2f,0x3c,0xec,0x17,0x32,0xf4,
9055
+0x3c,0xec,0x17,0x32,0x10,0xdc,0xec,0x30,0x01,0xb2,0x2f,0x1d,
9056
+0x01,0x5d,0x00,0x40,0x29,0x2f,0x16,0x2f,0x15,0x2f,0x08,0x2f,
9057
+0x07,0xc0,0x16,0xc0,0x15,0xc0,0x08,0xc0,0x07,0xa0,0x16,0xa0,
9058
+0x15,0xa0,0x08,0xa0,0x07,0x90,0x16,0x90,0x15,0x90,0x08,0x90,
9059
+0x07,0x5f,0x16,0x5f,0x15,0x5f,0x08,0x5f,0x07,0x14,0x5d,0x01,
9060
+0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x21,0x11,0x33,0x15,0x21,
9061
+0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x11,0x23,
9062
+0x35,0x21,0x15,0x04,0x43,0xa6,0xfd,0xfc,0xa6,0xfe,0x19,0xa6,
9063
+0xfd,0xfc,0xa6,0xa6,0x02,0x04,0xa6,0x01,0xe7,0xa6,0x02,0x04,
9064
+0x03,0xbd,0xfc,0xad,0x6a,0x6a,0x01,0x9a,0xfe,0x66,0x6a,0x6a,
9065
+0x03,0x53,0x6a,0x6a,0xfe,0xc3,0x01,0x3d,0x6a,0x6a,0x00,0x00,
9066
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,0x04,0x44,0x10,0x06,
9067
+0x00,0x52,0x00,0x00,0x00,0x01,0x00,0x46,0x00,0x00,0x04,0xe9,
9068
+0x04,0x27,0x00,0x13,0x00,0x45,0x40,0x14,0x0c,0x2c,0x0a,0x07,
9069
+0x3d,0x09,0x06,0x00,0x04,0x2c,0x03,0x3a,0x13,0x0e,0x2c,0x0a,
9070
+0x06,0x10,0x30,0x14,0x10,0xf4,0xec,0xe4,0x32,0xf4,0xe4,0x32,
9071
+0xfc,0xe4,0x10,0xe4,0x31,0x00,0x40,0x0f,0x0a,0x85,0x02,0x11,
9072
+0x7a,0x13,0x9c,0x04,0x07,0x0c,0x03,0x0f,0x7a,0x06,0x0e,0x2f,
9073
+0x3c,0xec,0x17,0x32,0xf4,0xec,0x32,0xec,0x30,0x01,0xb2,0x2f,
9074
+0x15,0x01,0x5d,0x01,0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x33,
9075
+0x11,0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x04,
9076
+0xe9,0xa6,0xa6,0xfd,0xfc,0xa6,0xfe,0x19,0xa6,0xfd,0xfc,0xa6,
9077
+0xa6,0x04,0x27,0x6a,0xfc,0xad,0x6a,0x6a,0x03,0x42,0xfc,0xbe,
9078
+0x6a,0x6a,0x03,0x53,0x6a,0x00,0x00,0x00,0xff,0xff,0x00,0x3b,
9079
+0xfe,0x56,0x04,0xb8,0x04,0x44,0x10,0x06,0x00,0x53,0x00,0x00,
9080
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x1d,0x04,0x44,0x10,0x06,
9081
+0x00,0x46,0x00,0x00,0x00,0x01,0x00,0x53,0x00,0x00,0x04,0x1f,
9082
+0x04,0x27,0x00,0x0f,0x00,0x33,0x40,0x0f,0x03,0x2d,0x00,0x06,
9083
+0x2c,0x05,0x06,0x0a,0x0d,0x2d,0x0f,0x09,0x2c,0x0a,0x10,0x10,
9084
+0xdc,0xe4,0xdc,0xec,0x10,0xfc,0xe4,0xdc,0xec,0x31,0x00,0x40,
9085
+0x0b,0x02,0x0e,0x04,0x0c,0x85,0x0f,0x9c,0x05,0x09,0x7a,0x08,
9086
+0x2f,0xec,0x32,0xf4,0xfc,0x3c,0xc4,0x32,0x30,0x01,0x11,0x23,
9087
+0x35,0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x21,0x15,0x23,
9088
+0x11,0x04,0x1f,0x69,0xfe,0xdf,0xa6,0xfd,0xfc,0xa6,0xfe,0xdf,
9089
+0x69,0x04,0x27,0xfe,0xdf,0xa6,0xfc,0xbe,0x6a,0x6a,0x03,0x42,
9090
+0xa6,0x01,0x21,0x00,0xff,0xff,0x00,0x18,0xfe,0x39,0x04,0x9d,
9091
+0x04,0x27,0x10,0x06,0x00,0x5c,0x1e,0x00,0x00,0x03,0x00,0x4f,
9092
+0xfe,0x56,0x05,0xf5,0x06,0x14,0x00,0x23,0x00,0x30,0x00,0x3d,
9093
+0x00,0x62,0x40,0x15,0x38,0x1a,0x0b,0x13,0x2c,0x05,0x32,0x12,
9094
+0x06,0x17,0x2a,0x1a,0x1e,0x02,0x2c,0x15,0x2c,0x00,0x30,0x17,
9095
+0x3e,0x10,0xd4,0x3c,0x3c,0xe4,0xe4,0xd4,0xec,0x10,0xfc,0x3c,
9096
+0x3c,0xe4,0xd4,0xec,0x31,0x00,0x40,0x23,0x32,0x11,0x31,0x05,
9097
+0x00,0x24,0x30,0x18,0x08,0x21,0x1b,0x01,0x7a,0x03,0x71,0x3e,
9098
+0x3b,0x27,0x8f,0x08,0x21,0x8c,0x35,0x2d,0x8f,0x0e,0x1b,0x60,
9099
+0x3e,0x12,0x16,0x7a,0x15,0x82,0x3e,0x10,0xf4,0xec,0x32,0x10,
9100
+0xf4,0x3c,0xec,0x32,0xf4,0x3c,0xec,0x32,0x10,0xf4,0xec,0x11,
9101
+0x12,0x17,0x39,0x30,0x01,0x11,0x23,0x35,0x21,0x11,0x37,0x36,
9102
+0x33,0x32,0x00,0x11,0x10,0x00,0x23,0x22,0x2f,0x01,0x11,0x33,
9103
+0x15,0x21,0x35,0x33,0x11,0x07,0x06,0x23,0x22,0x00,0x11,0x10,
9104
+0x00,0x33,0x32,0x1f,0x01,0x27,0x26,0x23,0x22,0x06,0x15,0x14,
9105
+0x16,0x33,0x32,0x3f,0x01,0x13,0x11,0x17,0x16,0x33,0x32,0x36,
9106
+0x35,0x34,0x26,0x23,0x22,0x07,0x02,0xc6,0xb1,0x01,0x69,0x43,
9107
+0x30,0x69,0x82,0x01,0x19,0xfe,0xe7,0x82,0x69,0x30,0x43,0xa6,
9108
+0xfd,0xfc,0xa6,0x43,0x30,0x69,0x82,0xfe,0xe7,0x01,0x19,0x82,
9109
+0x69,0x30,0x43,0x43,0x28,0x4d,0x53,0x95,0x95,0x53,0x4d,0x28,
9110
+0x43,0xb8,0x43,0x28,0x4d,0x53,0x95,0x95,0x53,0x4d,0x28,0x03,
9111
+0xcc,0x01,0xdf,0x69,0xfd,0xb8,0x46,0x32,0xfe,0xd2,0xfe,0xfe,
9112
+0xfe,0xfd,0xfe,0xd2,0x32,0x46,0xfe,0x65,0x6a,0x6a,0x01,0x9b,
9113
+0x46,0x32,0x01,0x2f,0x01,0x02,0x01,0x03,0x01,0x2d,0x32,0xa9,
9114
+0x46,0x28,0xdd,0xe6,0xe7,0xdd,0x28,0x46,0x02,0xab,0xfd,0x55,
9115
+0x46,0x28,0xde,0xe6,0xe7,0xdc,0x28,0x00,0xff,0xff,0x00,0x19,
9116
+0x00,0x00,0x04,0x6a,0x04,0x27,0x10,0x06,0x00,0x5b,0x00,0x00,
9117
+0x00,0x01,0x00,0x4a,0xfe,0xe5,0x04,0xed,0x04,0x27,0x00,0x17,
9118
+0x00,0x4d,0x40,0x17,0x0e,0x3d,0x0b,0x07,0x2c,0x0a,0x00,0x15,
9119
+0x13,0x10,0x2c,0x0b,0x06,0x12,0x3a,0x06,0x01,0x2c,0x0a,0x06,
9120
+0x03,0x30,0x18,0x10,0xf4,0xec,0xe4,0x32,0xf4,0xec,0xe4,0xdc,
9121
+0xcc,0x39,0x10,0xe4,0x10,0xe4,0x31,0x00,0x40,0x10,0x11,0x0c,
9122
+0x09,0x03,0x05,0x7a,0x0e,0x06,0x9c,0x12,0x02,0x7a,0x0a,0x85,
9123
+0x15,0x01,0x2f,0xcc,0xec,0xec,0x32,0xf4,0x3c,0xec,0x17,0x32,
9124
+0x30,0x01,0xb2,0x2f,0x19,0x01,0x5d,0x29,0x01,0x35,0x33,0x11,
9125
+0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x15,
9126
+0x23,0x11,0x33,0x11,0x23,0x27,0x26,0x04,0x01,0xfc,0x49,0xa6,
9127
+0xa6,0x02,0x04,0xa6,0x01,0xe7,0xa6,0x02,0x04,0xa6,0xa6,0x68,
9128
+0x10,0x10,0x69,0x03,0x54,0x6a,0x6a,0xfc,0xbe,0x03,0x42,0x6a,
9129
+0x6a,0xfc,0xad,0xfe,0x7b,0x8d,0x8e,0x00,0x00,0x01,0x00,0x46,
9130
+0x00,0x00,0x04,0xdd,0x04,0x27,0x00,0x1b,0x00,0x5e,0x40,0x15,
9131
+0x12,0x2c,0x14,0x07,0x2c,0x1a,0x3d,0x08,0x19,0x06,0x00,0x04,
9132
+0x2c,0x03,0x3a,0x0f,0x2c,0x14,0x06,0x0d,0x1c,0x10,0xd4,0xec,
9133
+0xe4,0xf4,0xe4,0x32,0xfc,0x3c,0xe4,0xe4,0x10,0xe4,0x31,0x00,
9134
+0x40,0x11,0x09,0x85,0x18,0x02,0x1a,0x13,0x03,0x0f,0x7a,0x1b,
9135
+0x10,0x9c,0x18,0x04,0x07,0x7a,0x06,0x2f,0xec,0x32,0xcc,0xf4,
9136
+0x3c,0xec,0x17,0x32,0x10,0xec,0xb0,0x06,0xb0,0x09,0x23,0x49,
9137
+0xb0,0x18,0xb0,0x1b,0x23,0x49,0x52,0x58,0xb1,0x09,0x18,0xb8,
9138
+0xff,0xc0,0xb0,0x02,0x17,0x38,0x59,0x30,0x01,0x15,0x23,0x11,
9139
+0x33,0x15,0x21,0x35,0x33,0x11,0x21,0x22,0x26,0x35,0x11,0x23,
9140
+0x35,0x21,0x15,0x23,0x15,0x14,0x16,0x33,0x21,0x11,0x23,0x35,
9141
+0x04,0xdd,0xa6,0xa6,0xfd,0xfc,0xa6,0xfe,0x62,0x5e,0x97,0xa6,
9142
+0x01,0xfe,0xa0,0x45,0x3c,0x01,0x5a,0xa0,0x04,0x27,0x6a,0xfc,
9143
+0xad,0x6a,0x6a,0x01,0x39,0x8d,0x4d,0x01,0x40,0x6a,0x6a,0xdb,
9144
+0x73,0x50,0x01,0x9e,0x6a,0x00,0x00,0x00,0x00,0x01,0x00,0x4a,
9145
+0x00,0x00,0x07,0x38,0x04,0x27,0x00,0x1b,0x00,0x5e,0x40,0x1a,
9146
+0x12,0x2c,0x14,0x03,0x2c,0x01,0x06,0x06,0x09,0x2c,0x08,0x17,
9147
+0x3d,0x15,0x06,0x1a,0x3d,0x00,0x0f,0x0b,0x2c,0x14,0x06,0x0d,
9148
+0x30,0x1c,0x10,0xf4,0xec,0xe4,0x32,0xd4,0xe4,0xfc,0xe4,0xd4,
9149
+0xe4,0x32,0xf4,0xe4,0x10,0xe4,0x31,0x00,0x40,0x13,0x07,0x02,
9150
+0x1b,0x16,0x13,0x05,0x0e,0x7a,0x04,0x18,0x10,0x9c,0x00,0x14,
9151
+0x85,0x09,0x0c,0x7a,0x0b,0x2f,0xec,0x32,0xec,0x32,0xf4,0x3c,
9152
+0x3c,0xec,0x17,0x32,0x30,0x01,0x40,0x0b,0x20,0x1a,0x20,0x19,
9153
+0x2f,0x18,0x2f,0x17,0x0f,0x1d,0x05,0x5d,0x25,0x21,0x11,0x23,
9154
+0x35,0x21,0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,
9155
+0x35,0x21,0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x15,0x23,
9156
+0x04,0x1d,0x01,0xbd,0xa6,0x02,0x04,0xa6,0xa6,0xf9,0x12,0xa6,
9157
+0xa6,0x02,0x04,0xa6,0x01,0xbd,0xa6,0x02,0x04,0xa6,0x7b,0x03,
9158
+0x42,0x6a,0x6a,0xfc,0xad,0x6a,0x6a,0x03,0x53,0x6a,0x6a,0xfc,
9159
+0xbe,0x03,0x42,0x6a,0x6a,0x00,0x00,0x00,0x00,0x01,0x00,0x4a,
9160
+0xfe,0xe5,0x07,0x38,0x04,0x27,0x00,0x1f,0x00,0x66,0x40,0x1d,
9161
+0x0a,0x07,0x05,0x04,0x12,0x2c,0x14,0x1f,0x2c,0x1d,0x06,0x02,
9162
+0x2c,0x04,0x17,0x3d,0x15,0x06,0x1a,0x3d,0x1c,0x0f,0x0b,0x2c,
9163
+0x14,0x06,0x0d,0x30,0x20,0x10,0xf4,0xec,0xe4,0x32,0xd4,0xe4,
9164
+0xfc,0xe4,0xd4,0xe4,0xf4,0xe4,0x10,0xe4,0x10,0xdc,0xcc,0x39,
9165
+0x31,0x00,0x40,0x14,0x03,0x1e,0x1b,0x16,0x13,0x05,0x0e,0x7a,
9166
+0x00,0x18,0x10,0x9c,0x1c,0x14,0x85,0x06,0x04,0x0c,0x7a,0x0b,
9167
+0x2f,0xec,0x32,0xcc,0xec,0x32,0xf4,0x3c,0x3c,0xec,0x17,0x32,
9168
+0x30,0x01,0x40,0x0b,0x2f,0x17,0x2f,0x18,0x20,0x19,0x20,0x1a,
9169
+0x0f,0x21,0x05,0x5d,0x01,0x21,0x15,0x23,0x11,0x33,0x11,0x23,
9170
+0x27,0x26,0x23,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,
9171
+0x11,0x21,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x11,0x23,
9172
+0x05,0x34,0x02,0x04,0xa6,0xa6,0x68,0x10,0x10,0x64,0xf9,0xfe,
9173
+0xa6,0xa6,0x02,0x04,0xa6,0x01,0xbd,0xa6,0x02,0x04,0xa6,0x01,
9174
+0xbd,0xa6,0x04,0x27,0x6a,0xfc,0xad,0xfe,0x7b,0x8d,0x8e,0x6a,
9175
+0x03,0x53,0x6a,0x6a,0xfc,0xbe,0x03,0x42,0x6a,0x6a,0xfc,0xbe,
9176
+0x03,0x42,0x00,0x00,0x00,0x02,0x00,0x3c,0x00,0x00,0x04,0xc1,
9177
+0x04,0x27,0x00,0x08,0x00,0x19,0x00,0x54,0x40,0x11,0x0f,0x2c,
9178
+0x00,0x04,0x06,0x14,0x11,0x00,0x06,0x18,0x2c,0x19,0x0c,0x2d,
9179
+0x0a,0x19,0x1a,0x10,0xd4,0xdc,0xec,0x10,0xe4,0xec,0x32,0xd4,
9180
+0xec,0x10,0xe4,0x31,0x00,0x40,0x0e,0x11,0x7a,0x08,0x0c,0x0f,
9181
+0x0a,0x7a,0x0d,0x9c,0x08,0x00,0x18,0x7a,0x17,0x2f,0xec,0x32,
9182
+0xcc,0xf4,0xfc,0x3c,0xcc,0x10,0xec,0x30,0x40,0x15,0x15,0x03,
9183
+0x13,0x05,0x10,0x06,0x10,0x13,0x14,0x14,0x14,0x04,0x10,0x07,
9184
+0x10,0x08,0x10,0x12,0x10,0x11,0x0a,0x5d,0x25,0x33,0x32,0x36,
9185
+0x35,0x34,0x26,0x2b,0x01,0x03,0x23,0x15,0x23,0x11,0x21,0x15,
9186
+0x23,0x11,0x33,0x20,0x11,0x10,0x29,0x01,0x35,0x33,0x02,0x60,
9187
+0xe3,0x65,0x76,0x77,0x64,0xe3,0xb8,0xf4,0x78,0x02,0xca,0xa6,
9188
+0xc3,0x01,0x9e,0xfe,0x81,0xfd,0xb6,0xb0,0x6a,0x70,0x5c,0x5c,
9189
+0x6f,0x01,0xbc,0xa2,0x01,0x0c,0x6a,0xfe,0xb2,0xfe,0xc5,0xfe,
9190
+0xcc,0x6a,0x00,0x00,0x00,0x03,0x00,0x3c,0x00,0x00,0x06,0x15,
9191
+0x04,0x27,0x00,0x08,0x00,0x17,0x00,0x23,0x00,0x69,0x40,0x18,
9192
+0x13,0x2c,0x00,0x1b,0x22,0x2c,0x19,0x06,0x21,0x1c,0x2c,0x1e,
9193
+0x04,0x06,0x09,0x15,0x00,0x06,0x10,0x0d,0x2c,0x0e,0x30,0x24,
9194
+0x10,0xf4,0xe4,0x32,0xec,0x32,0xd4,0xec,0xdc,0xe4,0x32,0xf4,
9195
+0xe4,0x32,0x10,0xe4,0x31,0x00,0x40,0x15,0x15,0x7a,0x08,0x18,
9196
+0x20,0x13,0x03,0x10,0x7a,0x21,0x11,0x9c,0x08,0x19,0x1d,0x00,
9197
+0x03,0x0d,0x7a,0x1b,0x0c,0x2f,0x3c,0xec,0x17,0x32,0xcc,0xf4,
9198
+0x3c,0xec,0x17,0x32,0x10,0xec,0x30,0x40,0x15,0x15,0x03,0x13,
9199
+0x05,0x10,0x06,0x10,0x17,0x14,0x09,0x14,0x04,0x10,0x07,0x10,
9200
+0x08,0x10,0x16,0x10,0x15,0x0a,0x5d,0x25,0x33,0x32,0x36,0x35,
9201
+0x34,0x26,0x2b,0x01,0x05,0x10,0x29,0x01,0x35,0x33,0x11,0x23,
9202
+0x35,0x21,0x15,0x23,0x11,0x33,0x20,0x01,0x11,0x33,0x15,0x21,
9203
+0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x01,0xa4,0xe3,0x65,0x76,
9204
+0x77,0x64,0xe3,0x02,0x61,0xfe,0x81,0xfd,0xb6,0xb0,0xb0,0x02,
9205
+0x0e,0xa6,0xc3,0x01,0x9e,0x01,0x6a,0xa6,0xfd,0xfc,0xa6,0xa6,
9206
+0x02,0x04,0x6a,0x70,0x5c,0x5c,0x6f,0xcd,0xfe,0xcc,0x6a,0x03,
9207
+0x53,0x6a,0x6a,0xfe,0xb2,0x01,0x4c,0xfc,0xaf,0x6a,0x6a,0x03,
9208
+0x53,0x6a,0x6c,0x00,0x00,0x02,0x00,0x3c,0x00,0x00,0x04,0x05,
9209
+0x04,0x27,0x00,0x08,0x00,0x17,0x00,0x4e,0x40,0x0f,0x13,0x2c,
9210
+0x00,0x04,0x06,0x09,0x15,0x00,0x06,0x10,0x0d,0x2c,0x0e,0x30,
9211
+0x18,0x10,0xf4,0xe4,0x32,0xec,0x32,0xd4,0xec,0x10,0xe4,0x31,
9212
+0x00,0x40,0x0d,0x15,0x7a,0x08,0x13,0x10,0x7a,0x11,0x9c,0x08,
9213
+0x00,0x0d,0x7a,0x0c,0x2f,0xec,0x32,0xcc,0xf4,0xec,0x32,0x10,
9214
+0xec,0x30,0x40,0x15,0x15,0x03,0x13,0x05,0x10,0x06,0x10,0x17,
9215
+0x14,0x09,0x14,0x04,0x10,0x07,0x10,0x08,0x10,0x16,0x10,0x15,
9216
+0x0a,0x5d,0x25,0x33,0x32,0x36,0x35,0x34,0x26,0x2b,0x01,0x05,
9217
+0x10,0x29,0x01,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,
9218
+0x33,0x20,0x01,0xa4,0xe3,0x65,0x76,0x77,0x64,0xe3,0x02,0x61,
9219
+0xfe,0x81,0xfd,0xb6,0xb0,0xb0,0x02,0x0e,0xa6,0xc3,0x01,0x9e,
9220
+0x6a,0x70,0x5c,0x5c,0x6f,0xcd,0xfe,0xcc,0x6a,0x03,0x53,0x6a,
9221
+0x6a,0xfe,0xb2,0x00,0x00,0x01,0x00,0x66,0xff,0xe3,0x04,0x1d,
9222
+0x04,0x44,0x00,0x18,0x00,0x52,0x40,0x0d,0x17,0x16,0x04,0x2d,
9223
+0x06,0x12,0x11,0x00,0x16,0x1a,0x0b,0x11,0x19,0x10,0xd4,0xd4,
9224
+0xec,0x32,0x10,0xcc,0xd4,0xec,0x11,0x39,0x31,0x00,0x40,0x15,
9225
+0x00,0x7a,0x16,0x11,0x99,0x14,0x8f,0x0e,0x05,0x97,0x06,0x95,
9226
+0x02,0x8f,0x16,0x9b,0x08,0x8c,0x0e,0x60,0x19,0x10,0xe4,0xfc,
9227
+0xec,0xec,0xfc,0xec,0x10,0xfe,0xe4,0x10,0xec,0xb1,0x00,0x02,
9228
+0x49,0xb1,0x14,0x16,0x49,0x50,0x58,0xb3,0x00,0x16,0x40,0x02,
9229
+0x17,0x38,0x59,0x30,0x01,0x02,0x21,0x20,0x03,0x23,0x11,0x36,
9230
+0x33,0x32,0x00,0x11,0x10,0x04,0x23,0x22,0x26,0x27,0x33,0x16,
9231
+0x33,0x20,0x13,0x21,0x35,0x03,0x44,0x15,0xfe,0xea,0xfe,0xf8,
9232
+0x1d,0x6b,0xba,0xe1,0xe2,0x01,0x17,0xfe,0xb8,0xba,0xa4,0xea,
9233
+0x27,0x94,0x34,0xeb,0x01,0x22,0x0b,0xfe,0x24,0x02,0x5c,0x01,
9234
+0x85,0xfe,0xf4,0x01,0x10,0x5f,0xfe,0xdb,0xfe,0xfb,0xfe,0xc7,
9235
+0xfe,0xac,0xb0,0xf9,0x01,0xad,0x69,0x00,0x00,0x02,0x00,0x3b,
9236
+0xff,0xe3,0x06,0x9a,0x04,0x44,0x00,0x1c,0x00,0x28,0x00,0x54,
9237
+0x40,0x16,0x20,0x1a,0x10,0x1a,0x15,0x44,0x26,0x1a,0x0e,0x1c,
9238
+0x0b,0x02,0x2c,0x0d,0x01,0x06,0x09,0x05,0x2c,0x06,0x30,0x29,
9239
+0x10,0xf4,0xe4,0x32,0xfc,0x3c,0xe4,0x32,0xdc,0x32,0xec,0xf4,
9240
+0x39,0x39,0xec,0x31,0x00,0x40,0x18,0x0d,0x85,0x00,0x04,0x23,
9241
+0x8f,0x10,0x1a,0x12,0x8c,0x1d,0x8f,0x18,0x60,0x04,0x0c,0x07,
9242
+0x7a,0x09,0x9c,0x02,0x05,0x7a,0x04,0x2f,0xee,0x32,0xf6,0xee,
9243
+0x32,0x10,0xf6,0xee,0xf6,0x39,0x39,0xee,0x10,0xde,0xee,0x30,
9244
+0x01,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,
9245
+0x23,0x11,0x33,0x36,0x37,0x36,0x33,0x32,0x00,0x15,0x14,0x00,
9246
+0x23,0x22,0x27,0x26,0x27,0x01,0x32,0x36,0x35,0x34,0x26,0x23,
9247
+0x22,0x06,0x15,0x14,0x16,0x01,0xa4,0xa6,0xfd,0xfc,0xa6,0xb1,
9248
+0x02,0x0f,0xa6,0xf5,0x0b,0x7e,0x8d,0xe9,0xe9,0x01,0x19,0xfe,
9249
+0xe7,0xe9,0xea,0x8b,0x7a,0x0f,0x01,0xfe,0x94,0x97,0x97,0x94,
9250
+0x94,0x97,0x98,0x01,0xcf,0xfe,0x9b,0x6a,0x6a,0x03,0x54,0x69,
9251
+0x6b,0xfe,0x8a,0xd9,0x8c,0x99,0xfe,0xce,0xfe,0xfe,0xfe,0xcd,
9252
+0x99,0x87,0xcc,0xfe,0x77,0xea,0xe4,0xe4,0xe9,0xe9,0xe4,0xe4,
9253
+0xea,0x00,0x00,0x00,0x00,0x02,0x00,0x41,0x00,0x00,0x04,0xa0,
9254
+0x04,0x27,0x00,0x08,0x00,0x1e,0x00,0xbb,0xb1,0x92,0x97,0x42,
9255
+0xb0,0x93,0xb0,0x98,0x42,0x40,0x0e,0x10,0x3d,0x00,0x12,0x06,
9256
+0x0a,0x0d,0x2c,0x0c,0x05,0x06,0x16,0x1b,0x1f,0x10,0xd4,0xc0,
9257
+0xec,0xd4,0xe4,0x32,0xfc,0x3c,0xe4,0x31,0x00,0x40,0x10,0x4d,
9258
+0x18,0x00,0x7a,0x13,0x01,0x0a,0x7a,0x09,0x9c,0x0c,0x16,0x10,
9259
+0x7a,0x15,0x0f,0x2f,0x3c,0xee,0x32,0x32,0xf6,0xee,0x32,0xde,
9260
+0xee,0xb0,0x0f,0xb0,0x13,0x23,0x49,0xb0,0x00,0xb0,0x09,0x23,
9261
+0x49,0x52,0x58,0xb1,0x13,0x00,0xb8,0xff,0xc0,0xb0,0x02,0x17,
9262
+0x38,0x59,0x39,0x30,0x4b,0x53,0x58,0x4b,0xb0,0x0b,0x52,0x58,
9263
+0x0c,0xb1,0x18,0x17,0x07,0xb0,0x17,0x10,0xb1,0x14,0x3e,0xed,
9264
+0xb0,0x18,0x10,0xb1,0x13,0x3e,0xfd,0x0a,0x0d,0xb1,0x18,0x17,
9265
+0x08,0x0c,0x02,0xb0,0x12,0x10,0xb0,0x13,0x3c,0xb0,0x0f,0x10,
9266
+0xb0,0x14,0x3c,0x0a,0x0b,0x01,0xb0,0x13,0xb0,0x12,0x23,0x49,
9267
+0xb0,0x40,0x61,0xb0,0x92,0x43,0xb0,0x01,0x60,0x23,0x42,0xb0,
9268
+0x92,0x43,0xb0,0x01,0x60,0x43,0xb0,0x00,0x50,0x58,0xb1,0x13,
9269
+0x14,0xb0,0x92,0x43,0xb0,0x01,0x60,0x43,0xb0,0x02,0x17,0x38,
9270
+0x59,0x59,0x59,0x01,0x11,0x23,0x22,0x06,0x15,0x14,0x16,0x33,
9271
+0x01,0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x01,
9272
+0x21,0x35,0x33,0x13,0x2e,0x01,0x35,0x34,0x36,0x33,0x03,0x37,
9273
+0xe9,0x6c,0x66,0x65,0x6d,0x02,0x52,0xb1,0xa6,0xfe,0x02,0xa0,
9274
+0xa4,0xfe,0xcd,0xfe,0xe1,0x93,0xf9,0x47,0xd0,0xa9,0x9b,0x02,
9275
+0x55,0x01,0x68,0x64,0x4f,0x4f,0x66,0x01,0xd2,0x6a,0xfc,0xad,
9276
+0x6a,0x6a,0x01,0x84,0xfe,0x12,0x6a,0x01,0x91,0x13,0x80,0x8e,
9277
+0x77,0x94,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x56,
9278
+0x06,0x64,0x12,0x26,0x03,0x9f,0x00,0x00,0x10,0x07,0x00,0x43,
9279
+0x00,0x8e,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x56,
9280
+0x06,0x21,0x12,0x26,0x03,0x9f,0x00,0x00,0x11,0x06,0x00,0x6a,
9281
+0x68,0x00,0x00,0x85,0xb1,0x92,0x97,0x42,0xb0,0x93,0xb0,0x98,
9282
+0x42,0xb1,0x80,0x04,0x42,0xb1,0x81,0x00,0x42,0x7c,0xb0,0x0f,
9283
+0xb0,0x00,0x23,0x49,0xb0,0x25,0xb0,0x2b,0x23,0x49,0x61,0xb0,
9284
+0x80,0x62,0x68,0xb0,0x25,0x46,0x61,0xb0,0x0f,0x46,0x60,0xb0,
9285
+0x92,0x43,0xb0,0x01,0x60,0x23,0x42,0xb0,0x92,0x43,0xb0,0x01,
9286
+0x60,0x43,0xb0,0x00,0x55,0x58,0xb0,0x2b,0xb0,0x92,0x43,0xb0,
9287
+0x01,0x60,0x43,0x38,0xb0,0x2b,0x11,0xb0,0x03,0x35,0x59,0xb1,
9288
+0x80,0x00,0x42,0xb1,0x81,0x00,0x42,0x18,0xb0,0x0f,0x10,0xb0,
9289
+0x25,0xb0,0x2b,0xb0,0x00,0x23,0x49,0x68,0x3b,0xb0,0x25,0x11,
9290
+0xb0,0x02,0x35,0x00,0xb0,0x12,0xb0,0x22,0x23,0x49,0xb0,0x40,
9291
+0x50,0x58,0xb0,0x22,0xb0,0x40,0x38,0xb0,0x22,0x11,0xb0,0x02,
9292
+0x35,0xb0,0x03,0x35,0x59,0x00,0x00,0x00,0x00,0x01,0x00,0x2b,
9293
+0xfe,0x39,0x04,0x96,0x06,0x14,0x00,0x24,0x00,0x00,0x13,0x35,
9294
+0x33,0x11,0x23,0x35,0x21,0x11,0x21,0x15,0x21,0x11,0x36,0x21,
9295
+0x32,0x16,0x15,0x10,0x00,0x07,0x27,0x36,0x12,0x35,0x34,0x26,
9296
+0x23,0x22,0x06,0x1d,0x01,0x33,0x15,0x21,0x35,0x33,0x11,0x2b,
9297
+0xcf,0xb0,0x01,0x68,0x01,0xe5,0xfe,0x1b,0x67,0x01,0x03,0xac,
9298
+0xce,0xfe,0xa4,0xc1,0x3b,0xb6,0xce,0x5b,0x87,0xa8,0x86,0xa0,
9299
+0xfe,0x02,0xa6,0x03,0xbc,0x6b,0x01,0x83,0x6a,0xfe,0x13,0x6b,
9300
+0xfe,0x97,0xda,0xef,0xfe,0xfe,0xf1,0xfe,0x86,0x7e,0x5b,0x77,
9301
+0x01,0x55,0xd5,0xc5,0xab,0xba,0xb2,0xcf,0x6a,0x6a,0x03,0x52,
9302
+0xff,0xff,0x00,0x3b,0x00,0x00,0x03,0xd8,0x06,0x66,0x10,0x26,
9303
+0x00,0x76,0x3a,0x00,0x12,0x06,0x03,0x9d,0x00,0x00,0x00,0x00,
9304
+0x00,0x01,0x00,0x66,0xff,0xe3,0x04,0x1d,0x04,0x44,0x00,0x1a,
9305
+0x00,0x51,0x40,0x0d,0x18,0x19,0x11,0x2d,0x0f,0x02,0x03,0x16,
9306
+0x19,0x1a,0x09,0x2a,0x1b,0x10,0xf4,0xec,0x32,0xd4,0xcc,0xd4,
9307
+0xec,0x11,0x39,0x31,0x00,0x40,0x15,0x16,0x7a,0x19,0x03,0x99,
9308
+0x00,0x8f,0x06,0x10,0x97,0x0f,0x95,0x14,0x8f,0x19,0x9b,0x0c,
9309
+0x8c,0x06,0x60,0x1b,0x10,0xe4,0xfc,0xec,0xec,0xfc,0xec,0x10,
9310
+0xfe,0xe4,0x10,0xec,0xb1,0x16,0x14,0x49,0xb1,0x00,0x19,0x49,
9311
+0x50,0x58,0xb3,0x16,0x19,0x40,0x02,0x17,0x38,0x59,0x30,0x25,
9312
+0x36,0x37,0x33,0x0e,0x01,0x23,0x22,0x00,0x27,0x12,0x00,0x33,
9313
+0x32,0x16,0x17,0x11,0x23,0x2e,0x01,0x23,0x20,0x03,0x21,0x15,
9314
+0x21,0x12,0x02,0x6a,0xeb,0x34,0x94,0x21,0xc4,0xd0,0xf4,0xfe,
9315
+0xf3,0x01,0x03,0x01,0x1b,0xe4,0x71,0xc5,0x5c,0x6b,0x0f,0x92,
9316
+0x84,0xfe,0xda,0x05,0x01,0xda,0xfe,0x24,0x0b,0x46,0x03,0xf6,
9317
+0x8f,0xcd,0x01,0x33,0xfe,0x01,0x07,0x01,0x29,0x30,0x2f,0xfe,
9318
+0xf0,0x8a,0x82,0xfe,0x7b,0x69,0xfe,0x53,0xff,0xff,0x00,0x73,
9319
+0xff,0xe3,0x03,0xb2,0x04,0x44,0x10,0x06,0x00,0x56,0x00,0x00,
9320
+0xff,0xff,0x00,0x4a,0x00,0x00,0x02,0x60,0x05,0xe3,0x10,0x06,
9321
+0x00,0x4c,0x00,0x00,0xff,0xff,0x00,0x11,0x00,0x00,0x02,0x7f,
9322
+0x06,0x21,0x10,0x27,0x00,0x6a,0xff,0x48,0x00,0x00,0x11,0x06,
9323
+0x00,0xf3,0x00,0x00,0x00,0x4a,0xb0,0x0d,0x4b,0x54,0xb0,0x0f,
9324
+0x4b,0x54,0x5b,0xb0,0x10,0x4b,0x54,0x5b,0xb0,0x24,0x4b,0x54,
9325
+0x5b,0x58,0x01,0xbe,0x00,0x22,0x00,0x40,0x00,0x01,0x00,0x00,
9326
+0x00,0x22,0x00,0x22,0xff,0xc0,0x38,0x12,0x34,0x34,0x38,0x59,
9327
+0xb0,0x1d,0x4b,0x54,0xb0,0x1e,0x4b,0x54,0x5b,0x58,0x01,0xbe,
9328
+0x00,0x22,0xff,0xc0,0x00,0x01,0x00,0x00,0x00,0x22,0x00,0x22,
9329
+0x00,0x40,0x38,0x12,0x34,0x34,0x38,0x59,0xff,0xff,0xff,0x3b,
9330
+0xfe,0x39,0x01,0xb2,0x05,0xe3,0x10,0x06,0x00,0x4d,0x00,0x00,
9331
+0x00,0x02,0x00,0x24,0xff,0xe3,0x06,0x87,0x04,0x27,0x00,0x22,
9332
+0x00,0x2b,0x00,0x4c,0x40,0x13,0x27,0x06,0x20,0x1c,0x01,0x3d,
9333
+0x02,0x06,0x1a,0x2c,0x2b,0x1c,0x17,0x2c,0x05,0x2d,0x0c,0x15,
9334
+0x2c,0x10,0xd4,0xcc,0xec,0xe4,0xd4,0x3c,0xe4,0xfc,0xe4,0x10,
9335
+0xd4,0xec,0x31,0x00,0x40,0x16,0x2b,0x7a,0x1c,0x00,0x0d,0x0c,
9336
+0x0f,0x8f,0x0a,0x04,0x85,0x1a,0x17,0x7a,0x18,0x9c,0x0a,0x60,
9337
+0x23,0x01,0x7a,0x00,0x2f,0xec,0x32,0xe4,0xf4,0xec,0x32,0xec,
9338
+0x10,0xec,0xd4,0xc4,0x10,0xd4,0xec,0x30,0x21,0x35,0x33,0x11,
9339
+0x21,0x15,0x10,0x02,0x0e,0x01,0x23,0x22,0x2f,0x01,0x16,0x33,
9340
+0x32,0x3e,0x01,0x13,0x36,0x3d,0x01,0x23,0x35,0x21,0x15,0x23,
9341
+0x11,0x33,0x32,0x16,0x15,0x10,0x21,0x27,0x33,0x32,0x36,0x35,
9342
+0x34,0x26,0x2b,0x01,0x02,0xbf,0xaf,0xfe,0x81,0x3a,0x26,0x7b,
9343
+0x49,0x49,0x58,0x06,0x4c,0x34,0x34,0x3f,0x30,0x23,0x0a,0xa6,
9344
+0x03,0xfd,0xa5,0xe2,0xc4,0xbb,0xfe,0x81,0xe2,0xe3,0x65,0x76,
9345
+0x77,0x64,0xe3,0x66,0x03,0x48,0xae,0xfe,0xf3,0xfe,0xd3,0x94,
9346
+0x4f,0x1d,0x7d,0x1f,0x14,0x6c,0x01,0x0e,0x4d,0xc8,0xbc,0x6a,
9347
+0x6a,0xfe,0xb2,0xad,0x8e,0xfe,0xcc,0x66,0x70,0x5e,0x5e,0x6f,
9348
+0x00,0x02,0x00,0x46,0x00,0x00,0x06,0xa4,0x04,0x27,0x00,0x1f,
9349
+0x00,0x28,0x00,0x5c,0x40,0x1c,0x24,0x06,0x00,0x06,0x12,0x09,
9350
+0x2c,0x07,0x17,0x04,0x3d,0x16,0x06,0x06,0x1a,0x3d,0x20,0x1c,
9351
+0x3a,0x13,0x07,0x06,0x0f,0x0b,0x2c,0x0d,0x30,0x29,0x10,0xf4,
9352
+0xe4,0x32,0xec,0x32,0xf4,0x3c,0xe4,0xfc,0x3c,0xe4,0x32,0x10,
9353
+0xe4,0x32,0x10,0xd4,0xec,0x31,0x00,0x40,0x17,0x28,0x07,0x85,
9354
+0x1c,0x14,0x0b,0x1b,0x17,0x13,0x03,0x0f,0x7a,0x18,0x10,0x9c,
9355
+0x20,0x04,0x08,0x03,0x0c,0x7a,0x03,0x0b,0x2f,0x3c,0xec,0x17,
9356
+0x32,0xf4,0x3c,0xec,0x17,0x32,0x10,0xdc,0x3c,0xec,0x32,0x30,
9357
+0x01,0x10,0x29,0x01,0x35,0x33,0x11,0x21,0x11,0x33,0x15,0x21,
9358
+0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x11,0x23,
9359
+0x35,0x21,0x15,0x23,0x11,0x33,0x32,0x16,0x01,0x33,0x32,0x36,
9360
+0x35,0x34,0x26,0x2b,0x01,0x06,0xa4,0xfe,0x81,0xfd,0xb7,0xaf,
9361
+0xfe,0x19,0xa6,0xfd,0xfc,0xa6,0xa6,0x02,0x04,0xa6,0x01,0xe7,
9362
+0xa6,0x02,0x04,0xa6,0xc3,0xfb,0xa3,0xfd,0x9f,0xe3,0x65,0x76,
9363
+0x77,0x64,0xe3,0x01,0x34,0xfe,0xcc,0x66,0x01,0x9e,0xfe,0x66,
9364
+0x6a,0x6a,0x03,0x53,0x6a,0x6a,0xfe,0xc3,0x01,0x3d,0x6a,0x6a,
9365
+0xfe,0xb2,0xb1,0xfe,0xa8,0x70,0x5e,0x5e,0x6f,0x00,0x00,0x00,
9366
+0x00,0x01,0x00,0x2b,0x00,0x00,0x04,0xee,0x06,0x14,0x00,0x25,
9367
+0x00,0x6a,0x40,0x15,0x0f,0x3d,0x11,0x06,0x0c,0x2c,0x0a,0x19,
9368
+0x2c,0x01,0x00,0x04,0x18,0x06,0x20,0x24,0x1c,0x2c,0x21,0x1d,
9369
+0x26,0x10,0xd4,0x3c,0xe4,0x32,0xcc,0xfc,0x3c,0x3c,0xcc,0xe4,
9370
+0xd4,0xe4,0xf4,0xe4,0x31,0x00,0x40,0x15,0x14,0x85,0x07,0x03,
9371
+0x1f,0x7a,0x20,0x00,0x23,0x7a,0x25,0x71,0x0b,0x0f,0x19,0x03,
9372
+0x1c,0x7a,0x07,0x0e,0x1b,0x2f,0x3c,0xce,0xec,0x17,0x32,0xfc,
9373
+0xec,0xdc,0x3c,0xfc,0x3c,0x10,0xee,0x30,0x00,0x4b,0xb0,0x0f,
9374
+0x54,0x4b,0xb0,0x13,0x54,0x5b,0x58,0xb7,0x1e,0x1f,0x20,0x21,
9375
+0x00,0x01,0x02,0x03,0xb9,0x00,0x3d,0x00,0x08,0x17,0x38,0x59,
9376
+0x01,0x21,0x15,0x21,0x11,0x3e,0x01,0x33,0x32,0x16,0x15,0x11,
9377
+0x33,0x15,0x21,0x35,0x33,0x35,0x34,0x26,0x23,0x22,0x06,0x1d,
9378
+0x01,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x33,0x11,0x23,
9379
+0x35,0x21,0x01,0xb2,0x01,0xe5,0xfe,0x1b,0x33,0xa3,0x6c,0xb0,
9380
+0xa6,0xa4,0xfe,0x04,0x9f,0x5f,0x7a,0x80,0x86,0xa0,0xfe,0x02,
9381
+0xa6,0xcf,0xcf,0xb0,0x01,0x68,0x04,0x27,0x6b,0xfe,0x97,0x6c,
9382
+0x6e,0xca,0xd6,0xfe,0xdd,0x6a,0x6a,0xe9,0xc3,0x8f,0xba,0xb2,
9383
+0xcf,0x6a,0x6a,0x03,0x52,0x6b,0x01,0x83,0x6a,0x00,0x00,0x00,
9384
+0xff,0xff,0x00,0x46,0x00,0x00,0x04,0xe7,0x06,0x66,0x10,0x26,
9385
+0x00,0x76,0x48,0x00,0x12,0x06,0x03,0xa4,0x00,0x00,0x00,0x00,
9386
+0xff,0xff,0x00,0x46,0x00,0x00,0x04,0xe9,0x06,0x64,0x12,0x26,
9387
+0x03,0xa2,0x00,0x00,0x10,0x07,0x00,0x43,0x00,0x80,0x00,0x00,
9388
+0xff,0xff,0x00,0x18,0xfe,0x39,0x04,0x9d,0x05,0xf8,0x10,0x27,
9389
+0x0c,0xee,0x00,0xa2,0xff,0x92,0x12,0x06,0x03,0xad,0x00,0x00,
9390
+0x00,0x01,0x00,0x3c,0xfe,0xe5,0x04,0xf6,0x04,0x27,0x00,0x1b,
9391
+0x00,0x6d,0x40,0x15,0x0f,0x3d,0x10,0x14,0x3d,0x13,0x06,0x17,
9392
+0x1a,0x2c,0x19,0x04,0x03,0x0c,0x09,0x2c,0x10,0x06,0x0a,0x30,
9393
+0x1c,0x10,0xf4,0xec,0xe4,0x32,0xd4,0xdc,0xd4,0xe4,0x32,0xfc,
9394
+0xe4,0x10,0xe4,0x31,0x00,0x40,0x11,0x17,0x13,0x10,0x03,0x0c,
9395
+0x7a,0x15,0x0d,0x9c,0x11,0x85,0x1a,0x09,0x7a,0x04,0x1b,0x08,
9396
+0x2f,0x3c,0xcc,0xec,0x32,0xec,0xf4,0x3c,0xec,0x17,0x32,0x30,
9397
+0x01,0xb0,0x24,0x4b,0x54,0x58,0x40,0x0e,0x00,0x01,0x02,0x03,
9398
+0x12,0x13,0x14,0x15,0x16,0x17,0x18,0x19,0x1a,0x1b,0xb9,0x00,
9399
+0x80,0x00,0x0e,0x17,0x38,0xb5,0x07,0x06,0x05,0x04,0x40,0x04,
9400
+0x17,0x38,0x59,0x21,0x22,0x0f,0x01,0x23,0x27,0x26,0x23,0x21,
9401
+0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x11,0x23,
9402
+0x35,0x21,0x15,0x23,0x11,0x33,0x15,0x03,0x51,0x64,0x10,0x10,
9403
+0x68,0x10,0x10,0x64,0xfe,0x5b,0xb1,0xa6,0x02,0x04,0xa6,0x01,
9404
+0xe8,0xa6,0x02,0x04,0xa6,0xb1,0x8e,0x8d,0x8d,0x8e,0x69,0x03,
9405
+0x54,0x6a,0x6a,0xfc,0xbe,0x03,0x42,0x6a,0x6a,0xfc,0xac,0x69,
9406
+0x00,0x02,0x00,0x46,0x00,0x00,0x05,0xcf,0x05,0xd5,0x00,0x1f,
9407
+0x00,0x28,0x00,0x00,0x13,0x11,0x21,0x35,0x23,0x35,0x21,0x15,
9408
+0x23,0x15,0x21,0x11,0x23,0x27,0x26,0x2b,0x01,0x11,0x33,0x20,
9409
+0x16,0x10,0x06,0x29,0x01,0x35,0x33,0x11,0x23,0x22,0x0f,0x01,
9410
+0x01,0x21,0x32,0x36,0x35,0x34,0x26,0x23,0x21,0x46,0x01,0x9d,
9411
+0xbe,0x02,0x47,0xbe,0x01,0x9d,0x6f,0x03,0x12,0x62,0xb7,0xdc,
9412
+0x01,0x59,0xec,0xec,0xfe,0xa7,0xfd,0x9b,0xbe,0xb7,0x62,0x12,
9413
+0x03,0x01,0xf9,0x01,0x09,0x8d,0xa6,0xa5,0x8e,0xfe,0xf7,0x03,
9414
+0xe2,0x01,0x21,0x67,0x6b,0x6b,0x67,0xfe,0xdf,0x18,0x8e,0xfe,
9415
+0xe6,0xff,0xfe,0x90,0xff,0x6a,0x04,0x1e,0x8e,0x18,0xfc,0x88,
9416
+0x9b,0xaa,0xa9,0x9c,0x00,0x02,0x00,0x3c,0x00,0x00,0x04,0x7d,
9417
+0x06,0x14,0x00,0x07,0x00,0x22,0x00,0x00,0x25,0x33,0x32,0x36,
9418
+0x34,0x26,0x2b,0x01,0x19,0x01,0x33,0x20,0x11,0x10,0x29,0x01,
9419
+0x35,0x33,0x11,0x23,0x22,0x07,0x23,0x35,0x21,0x11,0x23,0x35,
9420
+0x21,0x11,0x21,0x15,0x23,0x26,0x23,0x02,0x1c,0xe3,0x65,0x76,
9421
+0x77,0x64,0xe3,0xc3,0x01,0x9e,0xfe,0x81,0xfd,0xb6,0xb0,0x56,
9422
+0x62,0x0e,0x62,0x01,0x28,0xb1,0x01,0x69,0x01,0x28,0x62,0x0e,
9423
+0x62,0x6a,0x70,0xb8,0x6f,0x01,0xbc,0xfe,0xb2,0xfe,0xc5,0xfe,
9424
+0xcc,0x6a,0x03,0x53,0x7a,0xe4,0x01,0x84,0x69,0xfe,0x13,0xe4,
9425
+0x7a,0x00,0x00,0x00,0x00,0x01,0x00,0x71,0xff,0xe3,0x08,0x8d,
9426
+0x05,0xf0,0x00,0x2c,0x00,0x00,0x01,0x32,0x05,0x11,0x23,0x2e,
9427
+0x01,0x23,0x22,0x02,0x03,0x21,0x15,0x21,0x1a,0x01,0x33,0x20,
9428
+0x13,0x33,0x06,0x04,0x23,0x20,0x27,0x26,0x03,0x21,0x11,0x33,
9429
+0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x21,
9430
+0x12,0x37,0x36,0x06,0x37,0xf1,0x01,0x3c,0x71,0x25,0xdf,0xc9,
9431
+0xef,0xe8,0x0c,0x02,0xcf,0xfd,0x2f,0x09,0xed,0xef,0x01,0x4f,
9432
+0x60,0xb8,0x42,0xfe,0xc9,0xee,0xfe,0xd8,0xd1,0xc3,0x0d,0xfe,
9433
+0x9d,0xbe,0xfd,0xb9,0xbe,0xbe,0x02,0x47,0xbe,0x01,0x64,0x14,
9434
+0xb3,0xc9,0x05,0xf0,0x81,0xfe,0xa8,0xbc,0xb2,0xfe,0xc0,0xfe,
9435
+0xeb,0x7a,0xfe,0xde,0xfe,0xba,0x01,0x3d,0xd1,0xd7,0xd1,0xc3,
9436
+0x01,0x3f,0xfd,0xb4,0x6a,0x6a,0x05,0x00,0x6b,0x6b,0xfd,0xc6,
9437
+0x01,0x2c,0xbe,0xd6,0x00,0x01,0x00,0x3b,0xff,0xe3,0x06,0x4e,
9438
+0x04,0x44,0x00,0x2b,0x00,0x00,0x25,0x36,0x37,0x33,0x0e,0x01,
9439
+0x23,0x22,0x27,0x26,0x27,0x23,0x11,0x33,0x15,0x21,0x35,0x33,
9440
+0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x36,0x37,0x36,0x33,
9441
+0x32,0x16,0x17,0x11,0x23,0x2e,0x01,0x23,0x20,0x03,0x21,0x15,
9442
+0x21,0x12,0x04,0x9b,0xeb,0x34,0x94,0x21,0xc4,0xd0,0xf4,0x87,
9443
+0x7f,0x08,0xf3,0xa6,0xfd,0xfc,0xa6,0xb1,0x02,0x0f,0xa6,0xf6,
9444
+0x12,0x7c,0x8d,0xe4,0x71,0xc5,0x5c,0x6b,0x0f,0x92,0x84,0xfe,
9445
+0xda,0x05,0x01,0xda,0xfe,0x24,0x0b,0x46,0x03,0xf6,0x8f,0xcd,
9446
+0x99,0x92,0xe5,0xfe,0x77,0x6a,0x6a,0x03,0x54,0x69,0x6b,0xfe,
9447
+0xa0,0xd2,0x82,0x94,0x30,0x2f,0xfe,0xf0,0x8a,0x82,0xfe,0x7b,
9448
+0x69,0xfe,0x4f,0x00,0x00,0x02,0x00,0x18,0x00,0x00,0x08,0xe5,
9449
+0x05,0xd5,0x00,0x02,0x00,0x28,0x00,0x00,0x09,0x03,0x35,0x33,
9450
+0x01,0x3e,0x01,0x33,0x01,0x35,0x21,0x15,0x01,0x32,0x16,0x17,
9451
+0x01,0x33,0x15,0x21,0x35,0x33,0x01,0x26,0x2b,0x01,0x11,0x33,
9452
+0x15,0x21,0x35,0x33,0x11,0x23,0x22,0x07,0x01,0x33,0x15,0x02,
9453
+0xff,0x01,0xbc,0x01,0xbb,0xf9,0xa2,0xa7,0x01,0xa9,0x2d,0x94,
9454
+0x8c,0xfe,0x06,0x05,0x87,0xfe,0x06,0x8c,0x94,0x2d,0x01,0xa9,
9455
+0xa7,0xfd,0xb9,0xa6,0xfe,0x74,0x2f,0x4b,0x5a,0xbe,0xfd,0xb9,
9456
+0xbe,0x5a,0x4b,0x2f,0xfe,0x74,0xa6,0x05,0x5a,0xfe,0x1d,0x01,
9457
+0xe3,0xfa,0xa6,0x6a,0x02,0x5c,0x40,0x60,0x02,0x27,0x48,0x48,
9458
+0xfd,0xd9,0x60,0x40,0xfd,0xa4,0x6a,0x6a,0x02,0x3e,0x44,0xfd,
9459
+0x7e,0x6a,0x6a,0x02,0x82,0x44,0xfd,0xc2,0x6a,0x00,0x00,0x00,
9460
+0x00,0x02,0x00,0x19,0x00,0x00,0x07,0x43,0x04,0x27,0x00,0x02,
9461
+0x00,0x28,0x00,0x00,0x09,0x03,0x35,0x33,0x01,0x3e,0x01,0x33,
9462
+0x01,0x35,0x21,0x15,0x01,0x32,0x16,0x17,0x01,0x33,0x15,0x21,
9463
+0x35,0x33,0x01,0x26,0x2b,0x01,0x11,0x33,0x15,0x21,0x35,0x33,
9464
+0x11,0x23,0x22,0x07,0x01,0x33,0x15,0x02,0xc2,0x01,0x23,0x01,
9465
+0x23,0xfb,0x11,0x99,0x01,0x26,0x3e,0x88,0x64,0xfe,0x9c,0x04,
9466
+0x20,0xfe,0x9c,0x64,0x88,0x3e,0x01,0x26,0x99,0xfd,0xf4,0x98,
9467
+0xfe,0xf6,0x19,0x1f,0x83,0xa6,0xfd,0xfc,0xa6,0x83,0x1f,0x19,
9468
+0xfe,0xf6,0x98,0x03,0xbc,0xfe,0xed,0x01,0x13,0xfc,0x44,0x6a,
9469
+0x01,0x9b,0x56,0x25,0x01,0x51,0x56,0x56,0xfe,0xaf,0x25,0x56,
9470
+0xfe,0x65,0x6a,0x6a,0x01,0x77,0x23,0xfe,0x66,0x6a,0x6a,0x01,
9471
+0x9a,0x23,0xfe,0x89,0x6a,0x00,0x00,0x00,0x00,0x03,0x00,0x71,
9472
+0x00,0x00,0x0a,0xc7,0x05,0xd5,0x00,0x02,0x00,0x2c,0x00,0x32,
9473
+0x00,0x00,0x09,0x04,0x35,0x21,0x15,0x01,0x32,0x16,0x17,0x01,
9474
+0x33,0x15,0x21,0x35,0x33,0x01,0x26,0x2b,0x01,0x11,0x33,0x15,
9475
+0x21,0x35,0x33,0x11,0x23,0x22,0x07,0x01,0x33,0x15,0x21,0x35,
9476
+0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x13,0x01,0x36,0x37,
9477
+0x21,0x11,0x04,0xe1,0x01,0xbc,0x01,0xbb,0xfd,0x3f,0xfe,0x06,
9478
+0x05,0x87,0xfe,0x06,0x8c,0x94,0x2d,0x01,0xa9,0xa7,0xfd,0xb9,
9479
+0xa6,0xfe,0x74,0x2f,0x4b,0x5a,0xbe,0xfd,0xb9,0xbe,0x5a,0x4b,
9480
+0x2f,0xfe,0x74,0xa6,0xfc,0x30,0xbe,0xbe,0x02,0x47,0xbe,0xa7,
9481
+0x01,0xa9,0x0e,0x11,0xfd,0x91,0x05,0x5a,0xfe,0x1d,0x01,0xe3,
9482
+0xfe,0x0c,0x02,0x27,0x48,0x48,0xfd,0xd9,0x60,0x40,0xfd,0xa4,
9483
+0x6a,0x6a,0x02,0x3e,0x44,0xfd,0x7e,0x6a,0x6a,0x02,0x82,0x44,
9484
+0xfd,0xc2,0x6a,0x6a,0x05,0x00,0x6b,0x6b,0xfd,0xfc,0xfd,0x04,
9485
+0x02,0x5c,0x14,0x12,0xfd,0x7e,0x00,0x00,0x00,0x03,0x00,0x3b,
9486
+0x00,0x00,0x08,0xce,0x04,0x27,0x00,0x02,0x00,0x2d,0x00,0x31,
9487
+0x00,0x00,0x09,0x04,0x35,0x21,0x15,0x01,0x32,0x17,0x16,0x17,
9488
+0x01,0x33,0x15,0x21,0x35,0x33,0x01,0x26,0x2b,0x01,0x11,0x33,
9489
+0x15,0x21,0x35,0x33,0x11,0x23,0x22,0x07,0x01,0x33,0x15,0x21,
9490
+0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x13,0x01,0x21,
9491
+0x11,0x04,0x4d,0x01,0x23,0x01,0x23,0xfd,0xfa,0xfe,0x9c,0x04,
9492
+0x20,0xfe,0x9c,0x64,0x44,0x45,0x3d,0x01,0x26,0x99,0xfd,0xf4,
9493
+0x98,0xfe,0xf6,0x19,0x1f,0x83,0xa6,0xfd,0xfc,0xa6,0x83,0x1f,
9494
+0x19,0xfe,0xf6,0x98,0xfc,0x96,0xa6,0xb1,0x02,0x0f,0xa6,0x99,
9495
+0x01,0x25,0xfe,0x42,0x03,0xbc,0xfe,0xed,0x01,0x13,0xfe,0xc4,
9496
+0x01,0x51,0x56,0x56,0xfe,0xaf,0x12,0x13,0x56,0xfe,0x65,0x6a,
9497
+0x6a,0x01,0x77,0x23,0xfe,0x66,0x6a,0x6a,0x01,0x9a,0x23,0xfe,
9498
+0x89,0x6a,0x6a,0x03,0x54,0x69,0x6b,0xfe,0xc4,0xfd,0xea,0x01,
9499
+0x9a,0xfe,0x66,0x00,0x00,0x01,0x00,0x18,0x00,0x00,0x07,0x75,
9500
+0x05,0xd5,0x00,0x24,0x00,0x00,0x01,0x11,0x33,0x15,0x21,0x35,
9501
+0x33,0x11,0x21,0x01,0x23,0x35,0x21,0x01,0x33,0x11,0x23,0x35,
9502
+0x21,0x15,0x23,0x11,0x33,0x01,0x36,0x33,0x32,0x16,0x17,0x15,
9503
+0x23,0x34,0x26,0x23,0x22,0x07,0x01,0x03,0xe9,0xbe,0xfd,0xb9,
9504
+0xbe,0xfe,0xe3,0xfe,0xac,0x95,0x01,0x50,0x01,0x52,0x64,0xbe,
9505
+0x02,0x47,0xbe,0xa0,0x01,0x27,0x33,0xa2,0x3f,0x61,0x50,0x5f,
9506
+0x54,0x35,0x54,0x16,0xfe,0xb4,0x01,0x84,0xfe,0xe6,0x6a,0x6a,
9507
+0x01,0x1a,0x03,0x7b,0x6b,0xfc,0x94,0x03,0x6c,0x6b,0x6b,0xfc,
9508
+0x94,0x03,0x01,0x86,0x1c,0x26,0xdb,0x67,0x51,0x3a,0xfc,0x9e,
9509
+0x00,0x01,0xff,0xd6,0xfe,0x56,0x07,0x20,0x06,0x14,0x00,0x22,
9510
+0x00,0x00,0x21,0x01,0x23,0x35,0x21,0x01,0x33,0x11,0x23,0x35,
9511
+0x21,0x11,0x33,0x01,0x36,0x33,0x32,0x16,0x17,0x15,0x23,0x34,
9512
+0x26,0x23,0x22,0x07,0x01,0x23,0x11,0x33,0x15,0x21,0x35,0x33,
9513
+0x11,0x01,0xd6,0xfe,0x79,0x79,0x01,0x13,0x01,0x87,0x63,0xb1,
9514
+0x01,0x69,0x92,0x01,0x52,0x41,0x99,0x32,0x4e,0x57,0x5f,0x4c,
9515
+0x3a,0x3b,0x14,0xfe,0x7e,0xdf,0xae,0xfd,0xe9,0xb1,0x03,0xbc,
9516
+0x6b,0xfc,0x44,0x05,0x3f,0x6a,0xfa,0x57,0x03,0x3a,0x9f,0x1a,
9517
+0x28,0xa9,0x29,0x5f,0x31,0xfc,0x50,0xfe,0xc0,0x6a,0x6a,0x01,
9518
+0x40,0x00,0x00,0x00,0xff,0xff,0x00,0x73,0xff,0xe3,0x06,0x1d,
9519
+0x05,0xf0,0x10,0x06,0x04,0x24,0x00,0x00,0x00,0x03,0x00,0x66,
9520
+0xff,0xe9,0x04,0x04,0x04,0x44,0x00,0x0c,0x00,0x12,0x00,0x16,
9521
+0x00,0x00,0x05,0x06,0x27,0x26,0x27,0x26,0x10,0x12,0x20,0x12,
9522
+0x10,0x07,0x06,0x01,0x1e,0x01,0x33,0x32,0x13,0x35,0x02,0x20,
9523
+0x03,0x02,0x88,0x56,0x51,0x94,0x68,0x7f,0xfd,0x01,0xa4,0xfd,
9524
+0x7e,0x68,0xfe,0x0b,0x07,0x81,0x84,0xfd,0x0f,0x0f,0xfe,0x06,
9525
+0x0f,0x17,0x09,0x09,0x18,0x7b,0x9a,0x01,0xfc,0x01,0x32,0xfe,
9526
+0xce,0xfe,0x04,0x9a,0x7c,0x01,0xdf,0xbd,0xdc,0x01,0x99,0x6a,
9527
+0x01,0x98,0xfe,0x68,0x00,0x01,0x00,0x18,0x00,0x00,0x06,0xc8,
9528
+0x05,0xf0,0x00,0x15,0x00,0x00,0x13,0x35,0x21,0x15,0x23,0x09,
9529
+0x01,0x36,0x33,0x32,0x16,0x17,0x15,0x23,0x34,0x26,0x23,0x22,
9530
+0x07,0x01,0x23,0x01,0x18,0x02,0x20,0xa6,0x01,0xb9,0x01,0xb8,
9531
+0x32,0xa3,0x3f,0x61,0x50,0x5f,0x54,0x35,0x52,0x18,0xfd,0xf5,
9532
+0xac,0xfd,0xee,0x05,0x6a,0x6b,0x6b,0xfb,0x86,0x04,0x7a,0x86,
9533
+0x1c,0x26,0xdb,0x67,0x51,0x3a,0xfa,0xaf,0x05,0x6a,0x00,0x00,
9534
+0x00,0x01,0x00,0x18,0x00,0x00,0x05,0x55,0x04,0x44,0x00,0x15,
9535
+0x00,0x00,0x13,0x35,0x21,0x15,0x23,0x09,0x01,0x36,0x33,0x32,
9536
+0x16,0x17,0x15,0x23,0x34,0x26,0x23,0x22,0x07,0x01,0x23,0x01,
9537
+0x18,0x01,0xe9,0xaa,0x01,0x2b,0x01,0x22,0x46,0x94,0x32,0x4e,
9538
+0x57,0x5f,0x4c,0x3a,0x3b,0x14,0xfe,0x7e,0x87,0xfe,0x79,0x03,
9539
+0xbc,0x6b,0x6b,0xfd,0x25,0x02,0xc4,0x9f,0x1a,0x28,0xa9,0x29,
9540
+0x5f,0x31,0xfc,0x50,0x03,0xbc,0x00,0x00,0xff,0xff,0x00,0x18,
9541
+0x00,0x00,0x06,0xc8,0x07,0x6b,0x12,0x26,0x03,0xd6,0x00,0x00,
9542
+0x10,0x07,0x0d,0x82,0x05,0x87,0x01,0x75,0xff,0xff,0x00,0x18,
9543
+0x00,0x00,0x05,0x55,0x06,0x66,0x12,0x26,0x03,0xd7,0x00,0x00,
9544
+0x10,0x07,0x02,0xbc,0x04,0xba,0x00,0x00,0x00,0x02,0x00,0x32,
9545
+0x00,0x00,0x05,0x5e,0x05,0xd5,0x00,0x17,0x00,0x20,0x00,0x00,
9546
+0x13,0x35,0x21,0x35,0x23,0x35,0x21,0x15,0x23,0x15,0x21,0x15,
9547
+0x21,0x11,0x33,0x20,0x16,0x10,0x06,0x29,0x01,0x35,0x33,0x11,
9548
+0x13,0x21,0x32,0x36,0x35,0x34,0x26,0x23,0x21,0x32,0x01,0x40,
9549
+0xbe,0x02,0x47,0xbe,0x01,0x40,0xfe,0xc0,0xdc,0x01,0x59,0xec,
9550
+0xec,0xfe,0xa7,0xfd,0x9b,0xbe,0xcb,0x01,0x09,0x8d,0xa6,0xa5,
9551
+0x8e,0xfe,0xf7,0x04,0x88,0x7b,0x67,0x6b,0x6b,0x67,0x7b,0xfe,
9552
+0xe6,0xff,0xfe,0x90,0xff,0x6a,0x04,0x1e,0xfb,0xe2,0x9b,0xaa,
9553
+0xa9,0x9c,0x00,0x00,0x00,0x02,0x00,0x24,0x00,0x00,0x04,0x05,
9554
+0x06,0x14,0x00,0x07,0x00,0x1c,0x00,0x00,0x25,0x33,0x32,0x36,
9555
+0x34,0x26,0x2b,0x01,0x01,0x35,0x33,0x11,0x23,0x35,0x21,0x11,
9556
+0x33,0x15,0x23,0x11,0x33,0x20,0x11,0x10,0x29,0x01,0x35,0x33,
9557
+0x11,0x01,0xa4,0xe3,0x65,0x76,0x77,0x64,0xe3,0xfe,0x80,0xc8,
9558
+0xb1,0x01,0x69,0xc8,0xc8,0xc3,0x01,0x9e,0xfe,0x81,0xfd,0xb6,
9559
+0xb0,0x6a,0x70,0xb8,0x6f,0x01,0xbc,0x6a,0x01,0x84,0x69,0xfe,
9560
+0x13,0x6a,0xfe,0xb2,0xfe,0xc5,0xfe,0xcc,0x66,0x03,0x57,0x00,
9561
+0x00,0x01,0x00,0x71,0x00,0x00,0x05,0x0a,0x06,0xfa,0x00,0x0d,
9562
+0x00,0x2f,0x40,0x0d,0x01,0x0d,0x09,0x0f,0x0c,0x07,0x03,0x24,
9563
+0x0d,0x11,0x05,0x21,0x0e,0x10,0xf4,0xec,0xe4,0x32,0xd4,0xec,
9564
+0x10,0xc4,0x31,0x00,0x40,0x0b,0x0a,0x0c,0x80,0x06,0x6f,0x08,
9565
+0x62,0x00,0x04,0x6f,0x03,0x2f,0xee,0x32,0xf6,0xee,0xee,0xcc,
9566
+0x30,0x25,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x11,
9567
+0x33,0x11,0x21,0x01,0xfa,0xef,0xfd,0x88,0xbe,0xbe,0x04,0x1e,
9568
+0x7b,0xfc,0xf0,0x6a,0x6a,0x6a,0x05,0x00,0x6b,0x01,0x25,0xfe,
9569
+0x60,0x00,0x00,0x00,0x00,0x01,0x00,0x3b,0x00,0x00,0x03,0xe2,
9570
+0x05,0x58,0x00,0x0d,0x00,0x30,0x40,0x0e,0x06,0x2c,0x05,0x00,
9571
+0x2d,0x03,0x05,0x06,0x0d,0x09,0x2c,0x0a,0x30,0x0e,0x10,0xf4,
9572
+0xe4,0x32,0xec,0xd4,0xec,0x10,0xe4,0x31,0x00,0x40,0x0b,0x01,
9573
+0x04,0x85,0x0c,0x7a,0x0d,0x9c,0x06,0x09,0x7a,0x08,0x2f,0xec,
9574
+0x32,0xf4,0xec,0xec,0xcc,0x30,0x01,0x11,0x33,0x11,0x21,0x11,
9575
+0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x03,0x79,0x69,0xfd,
9576
+0xc2,0x8f,0xfe,0x13,0xa6,0xb1,0x04,0x27,0x01,0x31,0xfe,0x54,
9577
+0xfc,0xbe,0x6a,0x6a,0x03,0x54,0x69,0x00,0x00,0x01,0x00,0x67,
9578
+0x00,0x00,0x04,0xf6,0x05,0xd5,0x00,0x15,0x00,0x00,0x13,0x35,
9579
+0x33,0x11,0x23,0x35,0x21,0x11,0x23,0x35,0x21,0x11,0x21,0x15,
9580
+0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x67,0xc8,0xbe,0x04,
9581
+0x85,0x7b,0xfd,0x7f,0x01,0xfe,0xfe,0x02,0xef,0xfd,0x88,0xbe,
9582
+0x02,0xda,0x7b,0x02,0x15,0x6b,0xfe,0xb3,0xd2,0xfd,0xfb,0x7b,
9583
+0xfd,0x90,0x6a,0x6a,0x02,0x70,0x00,0x00,0x00,0x01,0x00,0x3b,
9584
+0x00,0x00,0x03,0xd7,0x04,0x27,0x00,0x15,0x00,0x00,0x13,0x35,
9585
+0x33,0x11,0x23,0x35,0x21,0x11,0x23,0x35,0x21,0x11,0x21,0x15,
9586
+0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x3b,0xb1,0xb1,0x03,
9587
+0x9c,0x69,0xfe,0x36,0x01,0x7c,0xfe,0x84,0x8f,0xfe,0x13,0xa6,
9588
+0x01,0xc2,0x7b,0x01,0x80,0x6a,0xfe,0xdf,0xa6,0xfe,0x91,0x7b,
9589
+0xfe,0xa8,0x6a,0x6a,0x01,0x58,0x00,0x00,0x00,0x01,0x00,0x71,
9590
+0xfe,0x45,0x05,0x62,0x05,0xd5,0x00,0x2c,0x00,0x00,0x01,0x11,
9591
+0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x11,0x23,0x35,
9592
+0x21,0x11,0x36,0x25,0x24,0x17,0x16,0x15,0x11,0x14,0x06,0x23,
9593
+0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x11,
9594
+0x34,0x27,0x26,0x07,0x06,0x07,0x06,0x01,0xfa,0xef,0xfd,0x88,
9595
+0xbe,0xbe,0x04,0xc6,0x7b,0xfd,0x3e,0x39,0x01,0x00,0x01,0x22,
9596
+0x9f,0x6e,0xc6,0xd9,0x47,0x93,0x49,0x72,0x03,0x58,0x58,0x77,
9597
+0x5e,0x4e,0x78,0xbb,0x70,0x5a,0x55,0x01,0xc3,0xfe,0xa7,0x6a,
9598
+0x6a,0x05,0x00,0x6b,0xfe,0xb4,0xd1,0xfd,0x70,0x8c,0x26,0x2b,
9599
+0xa6,0x72,0xc0,0xfe,0x49,0xf7,0xdc,0x22,0x22,0xeb,0x63,0x61,
9600
+0x96,0xda,0x01,0xaf,0xb4,0x35,0x51,0x18,0x0e,0x5b,0x56,0x00,
9601
+0x00,0x01,0x00,0x3b,0xfe,0x39,0x04,0x71,0x04,0x27,0x00,0x28,
9602
+0x00,0x00,0x01,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,
9603
+0x21,0x11,0x23,0x35,0x21,0x11,0x21,0x32,0x17,0x16,0x15,0x11,
9604
+0x14,0x07,0x06,0x23,0x22,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,
9605
+0x37,0x36,0x3d,0x01,0x34,0x26,0x23,0x01,0xa4,0x8f,0xfe,0x13,
9606
+0xa6,0xb1,0x03,0xb9,0x69,0xfe,0x19,0x01,0x67,0xc6,0x4d,0x53,
9607
+0x63,0x61,0xab,0x8d,0x7c,0x5f,0x07,0x55,0x52,0x54,0x32,0x2c,
9608
+0x5f,0x8a,0x01,0xcc,0xfe,0x9e,0x6a,0x6a,0x03,0x54,0x69,0xfe,
9609
+0xf5,0x90,0xfe,0xa8,0x65,0x6d,0xce,0xfe,0xe4,0xa3,0x5f,0x5d,
9610
+0x42,0xdb,0x60,0x5a,0x3e,0x35,0x89,0xe2,0xc3,0x8f,0x00,0x00,
9611
+0x00,0x01,0x00,0x18,0xfe,0xbf,0x08,0xe5,0x05,0xd5,0x00,0x2f,
9612
+0x00,0x00,0x33,0x35,0x33,0x09,0x01,0x23,0x35,0x21,0x15,0x23,
9613
+0x01,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x01,0x23,0x35,0x21,
9614
+0x15,0x23,0x09,0x01,0x33,0x11,0x23,0x34,0x02,0x23,0x21,0x35,
9615
+0x33,0x01,0x07,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x27,0x01,
9616
+0x33,0x15,0x18,0xa7,0x02,0x2d,0xfe,0x22,0xa8,0x01,0xf0,0xa2,
9617
+0x02,0x65,0xbe,0x02,0x47,0xbe,0x02,0x65,0xa2,0x01,0xf0,0xa8,
9618
+0xfe,0x22,0x02,0x2d,0xa7,0x6a,0x24,0x64,0xfe,0xab,0xa6,0xfe,
9619
+0x41,0xa1,0xbe,0xfd,0xb9,0xbe,0xa1,0xfe,0x41,0xa6,0x6a,0x03,
9620
+0x18,0x01,0xe8,0x6b,0x6b,0xfd,0x87,0x02,0x79,0x6b,0x6b,0xfd,
9621
+0x87,0x02,0x79,0x6b,0x6b,0xfe,0x18,0xfc,0xe8,0xfe,0x55,0x03,
9622
+0x01,0x3e,0x6a,0x02,0x88,0xa4,0xfe,0x1c,0x6a,0x6a,0x01,0xe4,
9623
+0xa4,0xfd,0x78,0x6a,0x00,0x01,0x00,0x19,0xfe,0xe5,0x07,0x43,
9624
+0x04,0x27,0x00,0x2f,0x00,0x00,0x33,0x35,0x33,0x09,0x01,0x23,
9625
+0x35,0x21,0x15,0x23,0x01,0x11,0x23,0x35,0x21,0x15,0x23,0x11,
9626
+0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x33,0x11,0x23,0x27,
9627
+0x26,0x23,0x21,0x35,0x33,0x01,0x07,0x11,0x33,0x15,0x21,0x35,
9628
+0x33,0x11,0x27,0x01,0x33,0x15,0x19,0x99,0x01,0x8f,0xfe,0xc9,
9629
+0xb6,0x01,0xe1,0x99,0x01,0xb6,0xa6,0x02,0x04,0xa6,0x01,0xb6,
9630
+0x99,0x01,0xe1,0xb6,0xfe,0xc9,0x01,0x8f,0x99,0x68,0x10,0x10,
9631
+0x64,0xfe,0xe0,0x98,0xfe,0xca,0x8f,0xa6,0xfd,0xfc,0xa6,0x8f,
9632
+0xfe,0xca,0x98,0x6a,0x02,0x2e,0x01,0x25,0x6a,0x6a,0xfe,0x62,
9633
+0x01,0x9e,0x6a,0x6a,0xfe,0x62,0x01,0x9e,0x6a,0x6a,0xfe,0xdb,
9634
+0xfd,0xd2,0xfe,0x7b,0x8d,0x8e,0x6a,0x01,0xb5,0x87,0xfe,0xd2,
9635
+0x6a,0x6a,0x01,0x2e,0x87,0xfe,0x4b,0x6a,0xff,0xff,0x00,0x6f,
9636
+0xfe,0x75,0x04,0x7f,0x05,0xf0,0x10,0x26,0x00,0x7a,0x2c,0x00,
9637
+0x10,0x06,0x03,0x81,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x5a,
9638
+0xfe,0x75,0x03,0xf7,0x04,0x44,0x10,0x26,0x00,0x7a,0xd0,0x00,
9639
+0x10,0x06,0x03,0xa1,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x71,
9640
+0xfe,0xbf,0x06,0x19,0x05,0xd5,0x00,0x1f,0x00,0x00,0x33,0x35,
9641
+0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x01,0x23,0x35,0x21,
9642
+0x15,0x23,0x09,0x01,0x33,0x11,0x23,0x34,0x02,0x23,0x21,0x35,
9643
+0x33,0x01,0x07,0x11,0x33,0x15,0x71,0xbe,0xbe,0x02,0x47,0xbe,
9644
+0x02,0x83,0xa2,0x01,0xf0,0xa8,0xfe,0x10,0x02,0x3c,0xaa,0x6a,
9645
+0x24,0x64,0xfe,0xab,0xa0,0xfe,0x2f,0xa7,0xbe,0x6a,0x05,0x00,
9646
+0x6b,0x6b,0xfd,0x87,0x02,0x79,0x6b,0x6b,0xfe,0x18,0xfc,0xe8,
9647
+0xfe,0x55,0x03,0x01,0x3e,0x6a,0x02,0x88,0xa4,0xfe,0x1c,0x6a,
9648
+0x00,0x01,0x00,0x3b,0xfe,0xe5,0x04,0xf4,0x04,0x27,0x00,0x1f,
9649
+0x00,0x00,0x21,0x35,0x33,0x01,0x07,0x11,0x33,0x15,0x21,0x35,
9650
+0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x01,0x23,0x35,0x21,
9651
+0x15,0x23,0x09,0x01,0x33,0x11,0x23,0x27,0x26,0x23,0x02,0xdb,
9652
+0x98,0xfe,0xc2,0x91,0xa6,0xfd,0xfc,0xa6,0xb1,0x02,0x07,0x9e,
9653
+0x01,0xc0,0x99,0x01,0xe1,0xb6,0xfe,0xc4,0x01,0x94,0xa6,0x68,
9654
+0x10,0x10,0x64,0x6a,0x01,0xb5,0x87,0xfe,0xd2,0x6a,0x6a,0x03,
9655
+0x54,0x69,0x6b,0xfe,0x63,0x01,0x9d,0x6b,0x6b,0xfe,0xdc,0xfd,
9656
+0xd2,0xfe,0x7b,0x8d,0x8e,0x00,0x00,0x00,0x00,0x01,0x00,0x64,
9657
+0x00,0x00,0x06,0x19,0x05,0xd5,0x00,0x23,0x00,0x00,0x13,0x21,
9658
+0x15,0x23,0x15,0x33,0x15,0x23,0x11,0x01,0x23,0x35,0x21,0x15,
9659
+0x23,0x09,0x01,0x33,0x15,0x21,0x35,0x33,0x01,0x07,0x11,0x33,
9660
+0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x33,0x35,0x23,0x71,0x02,
9661
+0x47,0xbe,0xc3,0xc3,0x02,0x83,0xa2,0x01,0xf0,0xa8,0xfe,0x10,
9662
+0x02,0x3c,0xaa,0xfd,0xb9,0xa0,0xfe,0x2f,0xa7,0xbe,0xfd,0xb9,
9663
+0xbe,0xcb,0xcb,0xbe,0x05,0xd5,0x6b,0x94,0x7d,0xfe,0x98,0x02,
9664
+0x79,0x6b,0x6b,0xfe,0x18,0xfc,0xe8,0x6a,0x6a,0x02,0x88,0xa4,
9665
+0xfe,0x1c,0x6a,0x6a,0x03,0xef,0x7d,0x94,0x00,0x01,0x00,0x32,
9666
+0x00,0x00,0x04,0xe7,0x06,0x14,0x00,0x21,0x00,0x00,0x13,0x35,
9667
+0x33,0x35,0x23,0x35,0x21,0x15,0x21,0x15,0x21,0x11,0x01,0x23,
9668
+0x35,0x21,0x15,0x23,0x09,0x01,0x33,0x15,0x21,0x35,0x33,0x01,
9669
+0x07,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x32,0xba,0xb1,0x01,
9670
+0x69,0x01,0x3c,0xfe,0xc4,0x01,0xc0,0x99,0x01,0xe1,0xb6,0xfe,
9671
+0xc4,0x01,0x94,0x99,0xfd,0xf4,0x98,0xfe,0xc2,0x91,0xa6,0xfd,
9672
+0xfc,0xa6,0x04,0xba,0x7a,0x76,0x6a,0xe0,0x7a,0xfd,0x65,0x01,
9673
+0x9e,0x6a,0x6a,0xfe,0xdb,0xfd,0xd2,0x6a,0x6a,0x01,0xb5,0x87,
9674
+0xfe,0xd2,0x6a,0x6a,0x04,0x50,0x00,0x00,0x00,0x01,0x00,0x46,
9675
+0x00,0x00,0x07,0x10,0x05,0xd5,0x00,0x1d,0x00,0x00,0x13,0x21,
9676
+0x15,0x23,0x11,0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x33,
9677
+0x15,0x21,0x35,0x33,0x01,0x07,0x11,0x33,0x15,0x21,0x35,0x33,
9678
+0x11,0x21,0x15,0x23,0x46,0x03,0x69,0xbe,0x02,0x83,0xa2,0x01,
9679
+0xf0,0xa8,0xfe,0x10,0x02,0x3c,0xaa,0xfd,0xb9,0xa0,0xfe,0x2f,
9680
+0xa7,0xbe,0xfd,0xb9,0xbe,0xfe,0x9b,0x7b,0x05,0xd5,0x6b,0xfd,
9681
+0x87,0x02,0x79,0x6b,0x6b,0xfe,0x18,0xfc,0xe8,0x6a,0x6a,0x02,
9682
+0x88,0xa4,0xfe,0x1c,0x6a,0x6a,0x04,0xf0,0xd1,0x00,0x00,0x00,
9683
+0x00,0x01,0x00,0x3c,0x00,0x00,0x05,0xa3,0x04,0x27,0x00,0x1d,
9684
+0x00,0x00,0x13,0x11,0x21,0x15,0x23,0x11,0x01,0x23,0x35,0x21,
9685
+0x15,0x23,0x09,0x01,0x33,0x15,0x21,0x35,0x33,0x01,0x07,0x11,
9686
+0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x15,0x3c,0x02,0xc2,0x9e,
9687
+0x01,0xc0,0x99,0x01,0xe1,0xb6,0xfe,0xc4,0x01,0x94,0x99,0xfd,
9688
+0xf4,0x98,0xfe,0xc2,0x91,0xa6,0xfd,0xfc,0xa6,0xf4,0x03,0x1b,
9689
+0x01,0x0c,0x6b,0xfe,0x63,0x01,0x9d,0x6b,0x6b,0xfe,0xdc,0xfd,
9690
+0xd2,0x6a,0x6a,0x01,0xb5,0x87,0xfe,0xd2,0x6a,0x6a,0x03,0x53,
9691
+0xa2,0x00,0x00,0x00,0x00,0x01,0x00,0x71,0xfe,0xbf,0x06,0x89,
9692
+0x05,0xd5,0x00,0x1f,0x00,0x00,0x29,0x01,0x35,0x33,0x11,0x21,
9693
+0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,
9694
+0x11,0x21,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x11,0x23,
9695
+0x34,0x02,0x05,0x97,0xfe,0xab,0xbe,0xfc,0xfa,0xbe,0xfd,0xb9,
9696
+0xbe,0xbe,0x02,0x47,0xbe,0x03,0x06,0xbe,0x02,0x47,0xbe,0xbe,
9697
+0x6a,0x24,0x6a,0x02,0x82,0xfd,0x7e,0x6a,0x6a,0x05,0x00,0x6b,
9698
+0x6b,0xfd,0xfc,0x02,0x04,0x6b,0x6b,0xfb,0x01,0xfe,0x54,0x03,
9699
+0x01,0x3e,0x00,0x00,0x00,0x01,0x00,0x46,0xfe,0xe5,0x04,0xe9,
9700
+0x04,0x27,0x00,0x1f,0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,
9701
+0x21,0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x15,0x23,0x11,
9702
+0x33,0x11,0x23,0x27,0x26,0x23,0x21,0x35,0x33,0x11,0x21,0x11,
9703
+0x33,0x15,0x46,0xa6,0xa6,0x02,0x04,0xa6,0x01,0xe7,0xa6,0x02,
9704
+0x04,0xa6,0xa6,0x68,0x10,0x10,0x64,0xfe,0xe8,0xa6,0xfe,0x19,
9705
+0xa6,0x6a,0x03,0x53,0x6a,0x6a,0xfe,0xc3,0x01,0x3d,0x6a,0x6a,
9706
+0xfc,0xad,0xfe,0x7b,0x8d,0x8e,0x6a,0x01,0x9a,0xfe,0x66,0x6a,
9707
+0x00,0x01,0x00,0x71,0x00,0x00,0x08,0xc7,0x05,0xd5,0x00,0x1d,
9708
+0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,
9709
+0x21,0x11,0x23,0x35,0x21,0x11,0x23,0x35,0x21,0x11,0x33,0x15,
9710
+0x21,0x35,0x33,0x11,0x21,0x11,0x33,0x15,0x71,0xbe,0xbe,0x02,
9711
+0x47,0xbe,0x03,0x06,0xbe,0x04,0x85,0x7b,0xfd,0x7f,0xef,0xfd,
9712
+0x88,0xbe,0xfc,0xfa,0xbe,0x6a,0x05,0x00,0x6b,0x6b,0xfd,0xfc,
9713
+0x02,0x04,0x6b,0xfe,0xb3,0xd2,0xfb,0x10,0x6a,0x6a,0x02,0x82,
9714
+0xfd,0x7e,0x6a,0x00,0x00,0x01,0x00,0x46,0x00,0x00,0x06,0x78,
9715
+0x04,0x27,0x00,0x1d,0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,
9716
+0x21,0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x11,0x23,0x35,
9717
+0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x21,0x11,0x33,0x15,
9718
+0x46,0xa6,0xa6,0x02,0x04,0xa6,0x01,0xe7,0xa6,0x03,0x93,0x6a,
9719
+0xfe,0x36,0xa4,0xfd,0xfe,0xa5,0xfe,0x19,0xa6,0x6a,0x03,0x53,
9720
+0x6a,0x6a,0xfe,0xc3,0x01,0x3e,0x69,0xfe,0xdf,0xa6,0xfc,0xbe,
9721
+0x6a,0x6a,0x01,0x9a,0xfe,0x66,0x6a,0x00,0x00,0x01,0x00,0x71,
9722
+0xfe,0x45,0x09,0x33,0x05,0xd5,0x00,0x32,0x00,0x00,0x01,0x36,
9723
+0x25,0x24,0x17,0x16,0x15,0x11,0x14,0x06,0x23,0x22,0x26,0x27,
9724
+0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x11,0x34,0x27,0x26,
9725
+0x07,0x06,0x07,0x06,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,
9726
+0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,
9727
+0x23,0x05,0xcb,0x39,0x01,0x00,0x01,0x22,0x9f,0x6e,0xc6,0xd9,
9728
+0x47,0x93,0x49,0x72,0x03,0x58,0x58,0x77,0x5e,0x4e,0x78,0xbb,
9729
+0x70,0x5a,0x55,0xbe,0xfd,0xb9,0xbe,0xfc,0xfa,0xbe,0xfd,0xb9,
9730
+0xbe,0xbe,0x06,0x18,0xbe,0x02,0xca,0x8c,0x26,0x2b,0xa6,0x72,
9731
+0xc0,0xfe,0x49,0xf7,0xdc,0x22,0x22,0xeb,0x63,0x61,0x96,0xda,
9732
+0x01,0xaf,0xb4,0x35,0x51,0x18,0x0e,0x5b,0x56,0x6f,0xfe,0xa7,
9733
+0x6a,0x6a,0x04,0xf0,0xfb,0x10,0x6a,0x6a,0x05,0x00,0x6b,0x6b,
9734
+0x00,0x01,0x00,0x3b,0xfe,0x39,0x07,0x0f,0x04,0x27,0x00,0x2e,
9735
+0x00,0x00,0x01,0x13,0x33,0x15,0x21,0x35,0x33,0x11,0x21,0x11,
9736
+0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x03,
9737
+0x21,0x32,0x17,0x16,0x15,0x11,0x14,0x07,0x06,0x23,0x22,0x27,
9738
+0x35,0x33,0x1e,0x01,0x33,0x32,0x37,0x36,0x3d,0x01,0x34,0x26,
9739
+0x23,0x04,0x42,0x01,0xa6,0xfd,0xfc,0xa6,0xfe,0x19,0xa6,0xfd,
9740
+0xfc,0xa6,0xb1,0x04,0xb9,0xb1,0x01,0x01,0x67,0xc6,0x4d,0x53,
9741
+0x63,0x61,0xab,0x8d,0x7c,0x5f,0x07,0x55,0x52,0x54,0x32,0x2c,
9742
+0x5f,0x8a,0x01,0xcc,0xfe,0x9e,0x6a,0x6a,0x03,0x42,0xfc,0xbe,
9743
+0x6a,0x6a,0x03,0x54,0x69,0x69,0xfe,0x96,0x65,0x6d,0xce,0xfe,
9744
+0xe4,0xa3,0x5f,0x5d,0x42,0xdb,0x60,0x5a,0x3e,0x35,0x89,0xe2,
9745
+0xc3,0x8f,0x00,0x00,0xff,0xff,0x00,0x73,0xfe,0x75,0x05,0xa4,
9746
+0x05,0xf0,0x10,0x27,0x00,0x7a,0x01,0x4c,0x00,0x00,0x10,0x06,
9747
+0x03,0x8b,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x75,0x04,0x1d,
9748
+0x04,0x44,0x10,0x26,0x00,0x7a,0x64,0x00,0x10,0x06,0x03,0xab,
9749
+0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x14,0xfe,0xbf,0x05,0x42,
9750
+0x05,0xd5,0x00,0x13,0x00,0x00,0x21,0x35,0x33,0x11,0x21,0x15,
9751
+0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x11,0x33,0x11,0x23,0x34,
9752
+0x02,0x23,0x01,0x87,0xbf,0xfe,0x49,0x7b,0x05,0x2e,0x7b,0xfe,
9753
+0x49,0xbe,0x6a,0x24,0x64,0x6a,0x04,0xf4,0xe9,0x01,0x60,0xfe,
9754
+0xa0,0xe9,0xfb,0x0d,0xfe,0x54,0x03,0x01,0x3e,0x00,0x00,0x00,
9755
+0x00,0x01,0x00,0x53,0xfe,0xe5,0x04,0x1f,0x04,0x27,0x00,0x13,
9756
+0x00,0x00,0x21,0x35,0x33,0x11,0x21,0x15,0x23,0x11,0x21,0x11,
9757
+0x23,0x35,0x21,0x03,0x33,0x11,0x23,0x27,0x26,0x23,0x01,0x37,
9758
+0xa6,0xfe,0xdf,0x69,0x03,0xcc,0x69,0xfe,0xdf,0x01,0xa6,0x68,
9759
+0x10,0x10,0x64,0x6a,0x03,0x42,0x90,0x01,0x0b,0xfe,0xf5,0x90,
9760
+0xfc,0xbe,0xfe,0x7b,0x8d,0x8e,0x00,0x00,0xff,0xff,0xff,0xe9,
9761
+0x00,0x00,0x05,0x5a,0x05,0xd5,0x10,0x06,0x00,0x3c,0x00,0x00,
9762
+0x00,0x01,0xff,0xfa,0xfe,0x56,0x04,0x7f,0x04,0x27,0x00,0x14,
9763
+0x00,0x00,0x03,0x35,0x21,0x15,0x23,0x09,0x01,0x23,0x35,0x21,
9764
+0x15,0x23,0x01,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x01,0x06,
9765
+0x01,0xe9,0xaa,0x01,0x2d,0x01,0x29,0x9f,0x01,0x8f,0x77,0xfe,
9766
+0x94,0xa6,0xfd,0xfc,0xa6,0xfe,0x8f,0x03,0xbc,0x6b,0x6b,0xfd,
9767
+0x1e,0x02,0xe2,0x6b,0x6b,0xfc,0x77,0xfe,0x8d,0x6a,0x6a,0x01,
9768
+0x73,0x03,0x89,0x00,0x00,0x01,0xff,0xe9,0x00,0x00,0x05,0x5a,
9769
+0x05,0xd5,0x00,0x1c,0x00,0x00,0x03,0x35,0x21,0x15,0x23,0x09,
9770
+0x01,0x23,0x35,0x21,0x15,0x23,0x01,0x15,0x21,0x15,0x21,0x11,
9771
+0x33,0x15,0x21,0x35,0x33,0x11,0x21,0x35,0x21,0x35,0x01,0x17,
9772
+0x02,0x2b,0xae,0x01,0x75,0x01,0x75,0xa8,0x01,0xb2,0x8d,0xfe,
9773
+0x3f,0x01,0x36,0xfe,0xca,0xbf,0xfd,0xb8,0xbf,0xfe,0xca,0x01,
9774
+0x36,0xfe,0x33,0x05,0x6a,0x6b,0x6b,0xfd,0xa4,0x02,0x5c,0x6b,
9775
+0x6b,0xfd,0x2c,0x8b,0x7b,0xfe,0xda,0x6a,0x6a,0x01,0x26,0x7b,
9776
+0x78,0x02,0xe7,0x00,0x00,0x01,0xff,0xfa,0xfe,0x56,0x04,0x7f,
9777
+0x04,0x27,0x00,0x1c,0x00,0x00,0x03,0x35,0x21,0x15,0x23,0x09,
9778
+0x01,0x23,0x35,0x21,0x15,0x23,0x01,0x15,0x21,0x15,0x21,0x15,
9779
+0x33,0x15,0x21,0x35,0x33,0x35,0x21,0x35,0x21,0x35,0x01,0x06,
9780
+0x01,0xe9,0xaa,0x01,0x2d,0x01,0x29,0x9f,0x01,0x8f,0x77,0xfe,
9781
+0x94,0x01,0x04,0xfe,0xfc,0xa6,0xfd,0xfc,0xa6,0xfe,0xfc,0x01,
9782
+0x04,0xfe,0x8f,0x03,0xbc,0x6b,0x6b,0xfd,0x1e,0x02,0xe2,0x6b,
9783
+0x6b,0xfc,0x77,0x47,0x7b,0xb1,0x6a,0x6a,0xb1,0x7b,0x47,0x03,
9784
+0x89,0x00,0x00,0x00,0x00,0x01,0x00,0x0c,0xfe,0xbf,0x05,0xbc,
9785
+0x05,0xd5,0x00,0x1f,0x00,0x00,0x21,0x35,0x33,0x09,0x01,0x33,
9786
+0x15,0x21,0x35,0x33,0x09,0x01,0x23,0x35,0x21,0x15,0x23,0x09,
9787
+0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x33,0x11,0x23,0x34,
9788
+0x02,0x23,0x03,0x58,0xb2,0xfe,0x9c,0xfe,0x93,0xc1,0xfe,0x12,
9789
+0xac,0x01,0xae,0xfe,0x4c,0xa0,0x02,0x50,0xb0,0x01,0x40,0x01,
9790
+0x49,0xc0,0x01,0xe9,0xa8,0xfe,0x75,0x01,0xd7,0xb4,0x6a,0x24,
9791
+0x64,0x6a,0x02,0x15,0xfd,0xeb,0x6a,0x6a,0x02,0x73,0x02,0x8d,
9792
+0x6b,0x6b,0xfe,0x1f,0x01,0xe1,0x6b,0x6b,0xfd,0xc1,0xfd,0x40,
9793
+0xfe,0x54,0x03,0x01,0x3e,0x00,0x00,0x00,0x00,0x01,0x00,0x19,
9794
+0xfe,0xe5,0x04,0x71,0x04,0x27,0x00,0x1f,0x00,0x00,0x21,0x35,
9795
+0x33,0x0b,0x01,0x33,0x15,0x21,0x35,0x33,0x09,0x01,0x23,0x35,
9796
+0x21,0x15,0x23,0x1b,0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,
9797
+0x33,0x11,0x23,0x27,0x26,0x23,0x02,0x7f,0x87,0xe7,0xe8,0x8a,
9798
+0xfe,0x6c,0x8d,0x01,0x25,0xfe,0xbd,0x83,0x01,0xdb,0x7f,0xdf,
9799
+0xdf,0x8f,0x01,0x99,0x8d,0xfe,0xe3,0x01,0x4c,0x92,0x68,0x10,
9800
+0x10,0x64,0x6a,0x01,0x3e,0xfe,0xc2,0x6a,0x6a,0x01,0x94,0x01,
9801
+0xbe,0x6b,0x6b,0xfe,0xcd,0x01,0x33,0x6b,0x6b,0xfe,0x77,0xfe,
9802
+0x37,0xfe,0x7b,0x8d,0x8e,0x00,0x00,0x00,0x00,0x01,0x00,0x14,
9803
+0xfe,0xbf,0x07,0x55,0x05,0xd5,0x00,0x1b,0x00,0x00,0x21,0x35,
9804
+0x33,0x11,0x21,0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x11,
9805
+0x21,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x11,0x23,0x34,
9806
+0x02,0x23,0x01,0x04,0xbf,0xfe,0xcc,0x7b,0x04,0x27,0x7b,0xfe,
9807
+0xcd,0x03,0x16,0xb4,0x02,0x3d,0xbe,0xe7,0x6a,0x24,0x64,0x6a,
9808
+0x04,0xf4,0xe9,0x01,0x60,0xfe,0xa0,0xe9,0xfb,0x1d,0x04,0xf0,
9809
+0x6a,0x6a,0xfb,0x00,0xfe,0x54,0x03,0x01,0x3e,0x00,0x00,0x00,
9810
+0x00,0x01,0x00,0x53,0xfe,0xe5,0x05,0x70,0x04,0x27,0x00,0x1b,
9811
+0x00,0x00,0x13,0x35,0x21,0x15,0x23,0x35,0x23,0x11,0x21,0x11,
9812
+0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x11,0x23,0x27,0x26,0x23,
9813
+0x21,0x35,0x33,0x11,0x23,0x15,0x53,0x02,0xca,0x69,0xa0,0x01,
9814
+0xfe,0x87,0x01,0xe5,0xa6,0xa6,0x68,0x10,0x10,0x64,0xfc,0x32,
9815
+0xa6,0xa0,0x03,0x29,0xfe,0xfe,0x83,0xfc,0xcf,0x03,0x42,0x6a,
9816
+0x6a,0xfc,0xad,0xfe,0x7b,0x8d,0x8e,0x6a,0x03,0x42,0x83,0x00,
9817
+0x00,0x01,0xff,0xc8,0xfe,0xbf,0x05,0x77,0x05,0xd5,0x00,0x1f,
9818
+0x00,0x00,0x21,0x35,0x33,0x11,0x21,0x20,0x24,0x35,0x11,0x23,
9819
+0x35,0x21,0x15,0x23,0x11,0x14,0x16,0x33,0x21,0x13,0x23,0x35,
9820
+0x21,0x15,0x23,0x11,0x33,0x11,0x23,0x34,0x02,0x23,0x03,0x33,
9821
+0xbb,0xfe,0xc7,0xfe,0xd7,0xfe,0xfa,0xbe,0x02,0x3f,0xb9,0x9c,
9822
+0xfc,0x01,0x08,0x02,0xbe,0x02,0x45,0xbe,0xbe,0x6a,0x24,0x64,
9823
+0x6a,0x02,0x23,0xe4,0xc0,0x01,0x39,0x6b,0x6b,0xfe,0xc7,0x98,
9824
+0xa1,0x02,0x72,0x6b,0x6b,0xfb,0x01,0xfe,0x54,0x03,0x01,0x3e,
9825
+0x00,0x01,0x00,0x46,0xfe,0xe5,0x04,0xe9,0x04,0x27,0x00,0x21,
9826
+0x00,0x00,0x21,0x35,0x33,0x11,0x21,0x22,0x27,0x26,0x35,0x11,
9827
+0x23,0x35,0x21,0x15,0x23,0x15,0x14,0x17,0x16,0x33,0x21,0x11,
9828
+0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x11,0x23,0x27,0x26,0x23,
9829
+0x02,0xe6,0xa6,0xfe,0x19,0x54,0x3c,0x29,0xa6,0x02,0x04,0xa6,
9830
+0x14,0x10,0x3f,0x01,0x84,0xa6,0x02,0x04,0xa6,0xa6,0x68,0x10,
9831
+0x10,0x64,0x6a,0x01,0x57,0x36,0x25,0x4d,0x01,0x54,0x6a,0x6a,
9832
+0xbd,0x73,0x2d,0x23,0x01,0x80,0x6a,0x6a,0xfc,0xad,0xfe,0x7b,
9833
+0x8d,0x8e,0x00,0x00,0x00,0x01,0xff,0xc8,0x00,0x00,0x05,0x94,
9834
+0x05,0xd5,0x00,0x1b,0x00,0x00,0x23,0x35,0x33,0x11,0x23,0x35,
9835
+0x21,0x15,0x23,0x11,0x21,0x20,0x04,0x15,0x11,0x33,0x15,0x21,
9836
+0x35,0x33,0x11,0x34,0x26,0x23,0x21,0x03,0x33,0x15,0x1b,0xbe,
9837
+0xdb,0x02,0x61,0xbb,0x01,0x39,0x01,0x29,0x01,0x06,0xbe,0xfd,
9838
+0xc1,0xb9,0x9c,0xfc,0xfe,0xf8,0x02,0xbe,0x6b,0x05,0x00,0x6a,
9839
+0x6a,0xfd,0xfb,0xe4,0xc0,0xfe,0xa9,0x6b,0x6b,0x01,0x57,0x98,
9840
+0xa1,0xfd,0x70,0x6b,0xff,0xff,0x00,0x4a,0x00,0x00,0x04,0xee,
9841
+0x06,0x14,0x10,0x06,0x00,0x4b,0x00,0x00,0xff,0xff,0x00,0x71,
9842
+0x00,0x00,0x02,0xb8,0x05,0xd5,0x10,0x06,0x00,0x2c,0x00,0x00,
9843
+0xff,0xff,0x00,0x18,0x00,0x00,0x08,0xe5,0x07,0x6d,0x10,0x27,
9844
+0x0d,0x7f,0x06,0x92,0x01,0x75,0x10,0x06,0x03,0x80,0x00,0x00,
9845
+0xff,0xff,0x00,0x19,0x00,0x00,0x07,0x43,0x06,0x48,0x10,0x27,
9846
+0x02,0x96,0x01,0xbf,0x00,0x00,0x10,0x06,0x03,0xa0,0x00,0x00,
9847
+0x00,0x01,0x00,0x71,0xfe,0x45,0x05,0xcb,0x05,0xd5,0x00,0x31,
9848
+0x00,0x00,0x01,0x36,0x37,0x24,0x17,0x16,0x15,0x11,0x14,0x06,
9849
+0x23,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,
9850
+0x11,0x34,0x27,0x26,0x07,0x06,0x07,0x06,0x15,0x11,0x33,0x15,
9851
+0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x01,0x23,
9852
+0x35,0x21,0x15,0x23,0x02,0xd2,0x2c,0x35,0x01,0x22,0x9f,0x6e,
9853
+0xc6,0xd9,0x47,0x93,0x49,0x72,0x03,0x58,0x58,0x77,0x5e,0x4e,
9854
+0x78,0xbb,0x70,0x5a,0x55,0xbe,0xfd,0xb9,0xbe,0xbe,0x02,0x47,
9855
+0xbe,0x02,0x83,0xa2,0x01,0xf0,0xa8,0x03,0x68,0x0c,0x08,0x2b,
9856
+0xa6,0x72,0xc0,0xfe,0x49,0xf7,0xdc,0x22,0x22,0xeb,0x63,0x61,
9857
+0x96,0xda,0x01,0xaf,0xb4,0x35,0x51,0x18,0x0e,0x5b,0x56,0x6f,
9858
+0xfe,0xa7,0x6a,0x6a,0x05,0x00,0x6b,0x6b,0xfd,0xcb,0x02,0x35,
9859
+0x6b,0x6b,0x00,0x00,0x00,0x01,0x00,0x3b,0xfe,0x39,0x04,0xac,
9860
+0x04,0x27,0x00,0x2e,0x00,0x00,0x01,0x07,0x11,0x33,0x15,0x21,
9861
+0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x01,0x23,0x35,
9862
+0x21,0x15,0x23,0x01,0x33,0x32,0x17,0x16,0x15,0x11,0x14,0x07,
9863
+0x06,0x23,0x22,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x37,0x36,
9864
+0x3d,0x01,0x34,0x26,0x23,0x01,0xdc,0x38,0xa6,0xfd,0xfc,0xa6,
9865
+0xb1,0x02,0x07,0x9e,0x01,0xc0,0x99,0x01,0xe1,0xb6,0xfe,0x7a,
9866
+0x9b,0xc6,0x4d,0x53,0x63,0x61,0xab,0x8d,0x7c,0x5f,0x07,0x55,
9867
+0x52,0x54,0x32,0x2c,0x5f,0x8a,0x01,0xcc,0x34,0xfe,0xd2,0x6a,
9868
+0x6a,0x03,0x54,0x69,0x6b,0xfe,0x63,0x01,0x9d,0x6b,0x6b,0xfe,
9869
+0x98,0x65,0x6d,0xce,0xfe,0xe4,0xa3,0x5f,0x5d,0x42,0xdb,0x60,
9870
+0x5a,0x3e,0x35,0x89,0xe2,0xc3,0x8f,0x00,0x00,0x01,0x00,0x71,
9871
+0xfe,0x45,0x06,0x89,0x05,0xd5,0x00,0x25,0x00,0x00,0x25,0x30,
9872
+0x11,0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,
9873
+0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x10,
9874
+0x06,0x23,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,
9875
+0x05,0x00,0xfc,0xfa,0xbe,0xfd,0xb9,0xbe,0xbe,0x02,0x47,0xbe,
9876
+0x03,0x06,0xbe,0x02,0x47,0xbe,0xc6,0xd9,0x47,0x93,0x49,0x72,
9877
+0x03,0x58,0x58,0x7a,0x58,0x25,0x02,0xc7,0xfd,0x7e,0x6a,0x6a,
9878
+0x05,0x00,0x6b,0x6b,0xfd,0xfc,0x02,0x04,0x6b,0x6b,0xfa,0xc6,
9879
+0xfe,0xf1,0xdc,0x22,0x22,0xeb,0x63,0x61,0x96,0x00,0x00,0x00,
9880
+0x00,0x01,0x00,0x46,0xfe,0x39,0x04,0xe9,0x04,0x27,0x00,0x25,
9881
+0x00,0x00,0x05,0x11,0x21,0x03,0x33,0x15,0x21,0x35,0x33,0x11,
9882
+0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x15,
9883
+0x23,0x11,0x14,0x07,0x06,0x23,0x22,0x27,0x35,0x33,0x1e,0x01,
9884
+0x33,0x32,0x37,0x36,0x03,0x8c,0xfe,0x19,0x01,0xa6,0xfd,0xfc,
9885
+0xa6,0xa6,0x02,0x04,0xa6,0x01,0xe7,0xa6,0x02,0x04,0xa6,0x63,
9886
+0x61,0xab,0x8d,0x7c,0x5f,0x07,0x55,0x52,0x5a,0x2c,0x2e,0x68,
9887
+0x02,0x6c,0xfe,0x66,0x6a,0x6a,0x03,0x53,0x6a,0x6a,0xfe,0xc3,
9888
+0x01,0x3d,0x6a,0x6a,0xfb,0xdb,0xa3,0x5f,0x5d,0x42,0xdb,0x60,
9889
+0x5a,0x3e,0x3e,0x00,0x00,0x01,0xff,0xc8,0xfe,0xbf,0x05,0x94,
9890
+0x05,0xd5,0x00,0x1f,0x00,0x00,0x29,0x01,0x22,0x02,0x15,0x23,
9891
+0x11,0x33,0x11,0x21,0x20,0x24,0x35,0x11,0x23,0x35,0x21,0x15,
9892
+0x23,0x11,0x14,0x16,0x33,0x21,0x13,0x23,0x35,0x21,0x15,0x23,
9893
+0x11,0x33,0x05,0x94,0xfe,0x8e,0x64,0x24,0x6a,0xbe,0xfe,0xc7,
9894
+0xfe,0xd7,0xfe,0xfa,0xbe,0x02,0x3f,0xb9,0x9c,0xfc,0x01,0x08,
9895
+0x02,0xbe,0x02,0x45,0xbe,0xdb,0xfe,0xc2,0x03,0x01,0xac,0x02,
9896
+0x22,0xe4,0xc0,0x01,0x39,0x6b,0x6b,0xfe,0xc7,0x98,0xa1,0x02,
9897
+0x72,0x6b,0x6b,0xfb,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x46,
9898
+0xfe,0xe5,0x04,0xe9,0x04,0x27,0x00,0x21,0x00,0x00,0x29,0x01,
9899
+0x22,0x0f,0x01,0x23,0x11,0x33,0x13,0x21,0x22,0x27,0x26,0x35,
9900
+0x11,0x23,0x35,0x21,0x15,0x23,0x15,0x14,0x17,0x16,0x33,0x21,
9901
+0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x04,0xe9,0xfe,0xe8,
9902
+0x64,0x10,0x10,0x68,0xa6,0x01,0xfe,0x19,0x54,0x3c,0x29,0xa6,
9903
+0x02,0x04,0xa6,0x14,0x10,0x3f,0x01,0x84,0xa6,0x02,0x04,0xa6,
9904
+0xa6,0x8e,0x8d,0x01,0x85,0x01,0x57,0x36,0x25,0x4d,0x01,0x54,
9905
+0x6a,0x6a,0xbd,0x73,0x2d,0x23,0x01,0x80,0x6a,0x6a,0xfc,0xad,
9906
+0x00,0x01,0x00,0x3b,0x00,0x00,0x02,0x58,0x06,0x14,0x00,0x0b,
9907
+0x00,0x00,0x13,0x21,0x15,0x23,0x03,0x33,0x15,0x21,0x35,0x33,
9908
+0x11,0x23,0x3b,0x02,0x1d,0xb1,0x03,0xae,0xfd,0xe9,0xb1,0xb1,
9909
+0x06,0x14,0x6a,0xfa,0xc0,0x6a,0x6a,0x05,0x40,0x00,0x00,0x00,
9910
+0xff,0xff,0x00,0x18,0x00,0x00,0x05,0xff,0x07,0x69,0x10,0x27,
9911
+0x02,0x96,0x01,0x28,0x01,0x21,0x10,0x06,0x03,0x7a,0x00,0x00,
9912
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x8b,0x06,0x2d,0x10,0x26,
9913
+0x02,0x96,0x53,0xe5,0x10,0x06,0x03,0x9a,0x00,0x00,0x00,0x00,
9914
+0xff,0xff,0x00,0x18,0x00,0x00,0x05,0xff,0x07,0x5c,0x10,0x26,
9915
+0x03,0x7a,0x00,0x00,0x10,0x07,0x0d,0x78,0x05,0x1f,0x01,0x75,
9916
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x8b,0x06,0x21,0x10,0x26,
9917
+0x03,0x9a,0x00,0x00,0x10,0x06,0x00,0x6a,0x39,0x00,0x00,0x00,
9918
+0xff,0xff,0xff,0xdd,0x00,0x00,0x07,0x98,0x05,0xd5,0x10,0x06,
9919
+0x00,0x88,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x07,0x1e,
9920
+0x04,0x44,0x10,0x06,0x00,0xa8,0x00,0x00,0xff,0xff,0x00,0x71,
9921
+0x00,0x00,0x05,0x33,0x07,0x6d,0x10,0x27,0x0d,0x7f,0x04,0xec,
9922
+0x01,0x75,0x10,0x06,0x03,0x7f,0x00,0x00,0xff,0xff,0x00,0x66,
9923
+0xff,0xe3,0x04,0x56,0x06,0x48,0x10,0x26,0x02,0x96,0x5e,0x00,
9924
+0x10,0x06,0x03,0x9f,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x73,
9925
+0xff,0xe3,0x06,0x1d,0x05,0xf0,0x10,0x06,0x01,0x51,0x00,0x00,
9926
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x56,0x04,0x44,0x10,0x06,
9927
+0x01,0x9f,0x00,0x00,0xff,0xff,0x00,0x73,0xff,0xe3,0x06,0x1d,
9928
+0x07,0x5c,0x10,0x27,0x0d,0x78,0x05,0x48,0x01,0x75,0x10,0x06,
9929
+0x04,0x14,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x56,
9930
+0x06,0x21,0x10,0x26,0x00,0x6a,0x68,0x00,0x10,0x06,0x04,0x15,
9931
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x18,0x00,0x00,0x08,0xe5,
9932
+0x07,0x5c,0x10,0x27,0x0d,0x78,0x06,0x89,0x01,0x75,0x10,0x06,
9933
+0x03,0x80,0x00,0x00,0xff,0xff,0x00,0x19,0x00,0x00,0x07,0x43,
9934
+0x06,0x21,0x10,0x27,0x00,0x6a,0x01,0xb5,0x00,0x00,0x10,0x06,
9935
+0x03,0xa0,0x00,0x00,0xff,0xff,0x00,0x6f,0xff,0xe3,0x04,0x7f,
9936
+0x07,0x5c,0x10,0x27,0x0d,0x78,0x04,0x80,0x01,0x75,0x10,0x06,
9937
+0x03,0x81,0x00,0x00,0xff,0xff,0x00,0x5a,0xff,0xe3,0x03,0xf7,
9938
+0x06,0x21,0x10,0x26,0x00,0x6a,0x09,0x00,0x10,0x06,0x03,0xa1,
9939
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x49,
9940
+0x05,0xd5,0x10,0x06,0x01,0x79,0x00,0x00,0xff,0xff,0x00,0x66,
9941
+0xfe,0x36,0x04,0x49,0x04,0x27,0x10,0x06,0x02,0x54,0x00,0x00,
9942
+0xff,0xff,0x00,0x71,0x00,0x00,0x06,0x89,0x07,0x32,0x10,0x27,
9943
+0x00,0x71,0x01,0x84,0x01,0x3c,0x10,0x06,0x03,0x82,0x00,0x00,
9944
+0xff,0xff,0x00,0x46,0x00,0x00,0x04,0xe9,0x05,0xf6,0x10,0x27,
9945
+0x00,0x71,0x00,0xac,0x00,0x00,0x10,0x06,0x03,0xa2,0x00,0x00,
9946
+0xff,0xff,0x00,0x71,0x00,0x00,0x06,0x89,0x07,0x5c,0x10,0x27,
9947
+0x0d,0x78,0x05,0x84,0x01,0x75,0x10,0x06,0x03,0x82,0x00,0x00,
9948
+0xff,0xff,0x00,0x46,0x00,0x00,0x04,0xe9,0x06,0x21,0x10,0x27,
9949
+0x00,0x6a,0x00,0xac,0x00,0x00,0x10,0x06,0x03,0xa2,0x00,0x00,
9950
+0xff,0xff,0x00,0x73,0xff,0xe3,0x06,0x1d,0x07,0x5c,0x10,0x26,
9951
+0x03,0x88,0x00,0x00,0x10,0x07,0x0d,0x78,0x05,0x48,0x01,0x75,
9952
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,0x06,0x21,0x10,0x26,
9953
+0x03,0xa8,0x00,0x00,0x10,0x06,0x00,0x6a,0x68,0x00,0x00,0x00,
9954
+0xff,0xff,0x00,0x73,0xff,0xe3,0x06,0x1d,0x05,0xf0,0x10,0x06,
9955
+0x03,0x5e,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,
9956
+0x04,0x44,0x10,0x06,0x02,0x37,0x00,0x00,0xff,0xff,0x00,0x73,
9957
+0xff,0xe3,0x06,0x1d,0x07,0x5c,0x10,0x26,0x04,0x24,0x00,0x00,
9958
+0x10,0x07,0x0d,0x78,0x05,0x48,0x01,0x75,0xff,0xff,0x00,0x66,
9959
+0xff,0xe3,0x04,0x6a,0x06,0x21,0x10,0x26,0x04,0x25,0x00,0x00,
9960
+0x10,0x06,0x00,0x6a,0x68,0x00,0x00,0x00,0xff,0xff,0x00,0x73,
9961
+0xff,0xe3,0x05,0xa4,0x07,0x5c,0x10,0x27,0x0d,0x78,0x04,0xdc,
9962
+0x01,0x75,0x10,0x06,0x03,0x97,0x00,0x00,0xff,0xff,0x00,0x66,
9963
+0xff,0xe3,0x04,0x1d,0x06,0x21,0x10,0x26,0x00,0x6a,0x33,0x00,
9964
+0x10,0x06,0x03,0xb7,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x18,
9965
+0xff,0xe3,0x05,0xb0,0x07,0x32,0x10,0x27,0x00,0x71,0x00,0xd7,
9966
+0x01,0x3c,0x10,0x06,0x03,0x8d,0x00,0x00,0xff,0xff,0x00,0x18,
9967
+0xfe,0x39,0x04,0x9d,0x05,0xf6,0x10,0x27,0x00,0x71,0x00,0x86,
9968
+0x00,0x00,0x10,0x06,0x03,0xad,0x00,0x00,0xff,0xff,0x00,0x18,
9969
+0xff,0xe3,0x05,0xb0,0x07,0x5c,0x10,0x27,0x0d,0x78,0x04,0xd7,
9970
+0x01,0x75,0x10,0x06,0x03,0x8d,0x00,0x00,0xff,0xff,0x00,0x18,
9971
+0xfe,0x39,0x04,0x9d,0x06,0x21,0x10,0x27,0x00,0x6a,0x00,0x86,
9972
+0x00,0x00,0x10,0x06,0x03,0xad,0x00,0x00,0xff,0xff,0x00,0x18,
9973
+0xff,0xe3,0x05,0xb0,0x07,0x6b,0x10,0x27,0x0d,0x81,0x04,0xd7,
9974
+0x01,0x75,0x10,0x06,0x03,0x8d,0x00,0x00,0xff,0xff,0x00,0x18,
9975
+0xfe,0x39,0x04,0x9d,0x06,0x66,0x10,0x27,0x02,0x9b,0x00,0x86,
9976
+0x00,0x00,0x10,0x06,0x03,0xad,0x00,0x00,0xff,0xff,0x00,0x14,
9977
+0x00,0x00,0x05,0xc6,0x07,0x5c,0x10,0x27,0x0d,0x78,0x05,0x3b,
9978
+0x01,0x75,0x10,0x06,0x03,0x91,0x00,0x00,0xff,0xff,0x00,0x46,
9979
+0x00,0x00,0x04,0xdd,0x06,0x21,0x10,0x27,0x00,0x6a,0x00,0xa0,
9980
+0x00,0x00,0x10,0x06,0x03,0xb1,0x00,0x00,0x00,0x01,0x00,0x71,
9981
+0xfe,0xbf,0x04,0xf6,0x05,0xd5,0x00,0x11,0x00,0x00,0x33,0x35,
9982
+0x33,0x11,0x23,0x35,0x21,0x11,0x23,0x35,0x21,0x11,0x33,0x11,
9983
+0x23,0x34,0x02,0x23,0x71,0xbe,0xbe,0x04,0x85,0x7b,0xfd,0x7f,
9984
+0xbe,0x6a,0x24,0x64,0x6a,0x05,0x00,0x6b,0xfe,0xb4,0xd1,0xfb,
9985
+0x11,0xfe,0x54,0x03,0x01,0x3e,0x00,0x00,0x00,0x01,0x00,0x3b,
9986
+0xfe,0xe5,0x03,0xd8,0x04,0x27,0x00,0x11,0x00,0x00,0x33,0x35,
9987
+0x33,0x11,0x23,0x35,0x21,0x11,0x23,0x35,0x21,0x11,0x33,0x11,
9988
+0x23,0x27,0x26,0x23,0x46,0xa6,0xb1,0x03,0x9d,0x69,0xfe,0x35,
9989
+0xa6,0x68,0x10,0x10,0x64,0x6a,0x03,0x54,0x69,0xfe,0xf5,0x90,
9990
+0xfc,0xbe,0xfe,0x7b,0x8d,0x8e,0x00,0x00,0xff,0xff,0x00,0x71,
9991
+0x00,0x00,0x07,0x6e,0x07,0x5c,0x10,0x27,0x0d,0x78,0x06,0x0b,
9992
+0x01,0x75,0x10,0x06,0x03,0x95,0x00,0x00,0xff,0xff,0x00,0x3c,
9993
+0x00,0x00,0x06,0x15,0x06,0x21,0x10,0x27,0x00,0x6a,0x01,0x39,
9994
+0x00,0x00,0x10,0x06,0x03,0xb5,0x00,0x00,0xff,0xff,0x00,0x7d,
9995
+0xff,0xe3,0x04,0x8d,0x05,0xf0,0x12,0x06,0x01,0x52,0x00,0x00,
9996
+0x00,0x01,0x00,0x66,0xff,0xe3,0x04,0x03,0x04,0x44,0x00,0x26,
9997
+0x00,0x00,0x01,0x30,0x15,0x23,0x26,0x21,0x22,0x06,0x15,0x14,
9998
+0x16,0x3b,0x01,0x15,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,
9999
+0x37,0x33,0x0e,0x01,0x23,0x22,0x24,0x35,0x34,0x36,0x37,0x2e,
10000
+0x01,0x35,0x10,0x21,0x32,0x03,0xda,0x6c,0x16,0xfe,0xfe,0x79,
10001
+0x8e,0xa7,0xaf,0x30,0x5c,0xae,0xaf,0xa2,0x7b,0xf4,0x42,0x94,
10002
+0x1b,0xf1,0xb8,0xca,0xfe,0xf1,0x94,0x94,0x19,0xd5,0x01,0xa6,
10003
+0xe5,0x03,0xfa,0xcb,0xab,0x66,0x5b,0x50,0x66,0x6a,0x81,0x5a,
10004
+0x59,0x7f,0xbd,0x79,0xa7,0x9d,0x96,0x97,0x71,0x14,0x02,0x58,
10005
+0x9e,0x01,0x1a,0x00,0x00,0x01,0x00,0x34,0xfe,0x45,0x06,0x45,
10006
+0x05,0xd5,0x00,0x28,0x00,0x00,0x25,0x10,0x06,0x23,0x22,0x26,
10007
+0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x11,0x21,0x11,
10008
+0x10,0x03,0x06,0x23,0x22,0x26,0x27,0x35,0x33,0x14,0x16,0x33,
10009
+0x32,0x36,0x1a,0x01,0x35,0x11,0x23,0x35,0x21,0x15,0x23,0x05,
10010
+0x87,0xc6,0xd9,0x47,0x93,0x49,0x72,0x03,0x58,0x58,0x7a,0x58,
10011
+0xfd,0xcb,0x52,0x37,0xc7,0x27,0x93,0x49,0x72,0x50,0x43,0x50,
10012
+0x52,0x23,0x0e,0xbe,0x04,0xf7,0xbe,0x30,0xfe,0xf1,0xdc,0x22,
10013
+0x22,0xeb,0x63,0x61,0x96,0xdf,0x05,0x35,0xfe,0xde,0xfd,0x99,
10014
+0xfe,0xd8,0xc6,0x22,0x22,0xa7,0x1c,0x56,0xa2,0x01,0x69,0x01,
10015
+0x26,0xab,0x01,0x32,0x6b,0x6b,0x00,0x00,0x00,0x01,0x00,0x24,
10016
+0xfe,0x39,0x04,0xcb,0x04,0x27,0x00,0x2e,0x00,0x00,0x05,0x14,
10017
+0x07,0x06,0x23,0x22,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x37,
10018
+0x36,0x35,0x11,0x21,0x15,0x14,0x07,0x0e,0x01,0x07,0x0e,0x01,
10019
+0x23,0x22,0x26,0x2f,0x01,0x16,0x33,0x32,0x3e,0x01,0x37,0x36,
10020
+0x37,0x36,0x3d,0x01,0x23,0x35,0x21,0x15,0x23,0x04,0x25,0x63,
10021
+0x61,0xab,0x8d,0x7c,0x5f,0x07,0x55,0x52,0x5a,0x2c,0x2e,0xfe,
10022
+0x81,0x0a,0x07,0x28,0x15,0x12,0x7b,0x53,0x11,0x42,0x44,0x06,
10023
+0x4c,0x3f,0x29,0x3f,0x22,0x12,0x11,0x0e,0x0a,0xa6,0x03,0xfd,
10024
+0xa6,0x68,0xa3,0x5f,0x5d,0x42,0xdb,0x60,0x5a,0x3e,0x3e,0x80,
10025
+0x04,0x16,0xae,0x9f,0x75,0x53,0xcf,0x50,0x48,0x4f,0x07,0x16,
10026
+0x7d,0x1f,0x14,0x4a,0x66,0x62,0x68,0x4d,0xc8,0xbc,0x6a,0x6a,
10027
+0x00,0x01,0x00,0x34,0xff,0xe3,0x09,0x8b,0x05,0xd5,0x00,0x2f,
10028
+0x00,0x00,0x01,0x11,0x10,0x03,0x06,0x23,0x22,0x26,0x27,0x35,
10029
+0x33,0x14,0x16,0x33,0x32,0x36,0x1a,0x01,0x35,0x11,0x23,0x35,
10030
+0x21,0x15,0x23,0x09,0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,
10031
+0x33,0x15,0x21,0x35,0x33,0x09,0x01,0x33,0x15,0x21,0x35,0x33,
10032
+0x09,0x01,0x02,0x87,0x52,0x37,0xc7,0x27,0x93,0x49,0x72,0x50,
10033
+0x43,0x50,0x52,0x23,0x0e,0xbe,0x04,0xf7,0xb0,0x01,0x40,0x01,
10034
+0x49,0xc0,0x01,0xe9,0xa8,0xfe,0x75,0x01,0xd7,0xa0,0xfd,0xb0,
10035
+0xb2,0xfe,0x9c,0xfe,0x93,0xc1,0xfe,0x12,0xac,0x01,0xae,0xfe,
10036
+0x57,0x05,0x5a,0xfe,0xde,0xfd,0x99,0xfe,0xd8,0xc6,0x22,0x22,
10037
+0xa7,0x1c,0x56,0xa2,0x01,0x69,0x01,0x26,0xab,0x01,0x32,0x6b,
10038
+0x6b,0xfe,0x1f,0x01,0xe1,0x6b,0x6b,0xfd,0xc1,0xfd,0x3f,0x6a,
10039
+0x6a,0x02,0x15,0xfd,0xeb,0x6a,0x6a,0x02,0x73,0x02,0x7d,0x00,
10040
+0x00,0x01,0x00,0x24,0xff,0xe3,0x07,0x41,0x04,0x27,0x00,0x36,
10041
+0x00,0x00,0x25,0x3e,0x01,0x37,0x36,0x3d,0x01,0x23,0x35,0x21,
10042
+0x1d,0x01,0x23,0x1b,0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,
10043
+0x33,0x15,0x21,0x35,0x33,0x0b,0x01,0x33,0x15,0x21,0x35,0x33,
10044
+0x09,0x01,0x21,0x15,0x14,0x07,0x06,0x07,0x06,0x07,0x0e,0x01,
10045
+0x23,0x22,0x26,0x2f,0x01,0x16,0x33,0x32,0x36,0x01,0x28,0x12,
10046
+0x22,0x0e,0x0a,0xa6,0x03,0xfd,0x7f,0xdf,0xdf,0x8f,0x01,0x99,
10047
+0x8d,0xfe,0xe3,0x01,0x4c,0x8b,0xfe,0x15,0x87,0xe7,0xe8,0x8a,
10048
+0xfe,0x6c,0x8d,0x01,0x25,0xfe,0xc7,0xfe,0x72,0x0a,0x07,0x14,
10049
+0x14,0x15,0x12,0x7b,0x53,0x11,0x42,0x44,0x06,0x4c,0x3f,0x29,
10050
+0x3f,0x97,0x2a,0xc3,0x68,0x4d,0xc8,0xbc,0x6a,0x6a,0x01,0xfe,
10051
+0xcd,0x01,0x33,0x6b,0x6b,0xfe,0x77,0xfe,0x37,0x6a,0x6a,0x01,
10052
+0x3e,0xfe,0xc2,0x6a,0x6a,0x01,0x94,0x01,0xb0,0xae,0x9e,0x76,
10053
+0x53,0x67,0x68,0x50,0x48,0x4f,0x07,0x16,0x7d,0x1f,0x14,0x00,
10054
+0xff,0xff,0x00,0x73,0xfe,0xb8,0x06,0x1d,0x05,0xf0,0x10,0x06,
10055
+0x00,0x34,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x56,0x04,0xe3,
10056
+0x04,0x44,0x10,0x06,0x00,0x54,0x00,0x00,0xff,0xff,0x00,0x0a,
10057
+0x00,0x00,0x08,0x33,0x05,0xd5,0x10,0x06,0x00,0x3a,0x00,0x00,
10058
+0xff,0xff,0x00,0x21,0x00,0x00,0x06,0xbe,0x04,0x27,0x10,0x06,
10059
+0x00,0x5a,0x00,0x00,0x00,0x01,0x00,0x46,0xff,0xe3,0x06,0x1e,
10060
+0x05,0xd5,0x00,0x42,0x00,0x00,0x01,0x07,0x06,0x15,0x14,0x1e,
10061
+0x02,0x17,0x3e,0x01,0x35,0x34,0x2e,0x02,0x27,0x11,0x23,0x35,
10062
+0x21,0x15,0x23,0x11,0x14,0x06,0x07,0x1e,0x03,0x3b,0x01,0x15,
10063
+0x21,0x22,0x26,0x27,0x0e,0x01,0x23,0x22,0x2e,0x02,0x35,0x11,
10064
+0x23,0x35,0x21,0x15,0x23,0x11,0x14,0x16,0x33,0x32,0x37,0x2e,
10065
+0x03,0x35,0x34,0x36,0x3f,0x01,0x03,0xe6,0x15,0x02,0x11,0x30,
10066
+0x57,0x46,0x1a,0x1d,0x0b,0x14,0x1e,0x12,0xbf,0x02,0x48,0xbf,
10067
+0x2b,0x27,0x24,0x3a,0x2f,0x25,0x0e,0x51,0xfe,0xfb,0x1a,0x4e,
10068
+0x2f,0x46,0xaa,0x60,0x76,0xcb,0x96,0x56,0xbf,0x02,0x48,0xbf,
10069
+0xb1,0xb2,0x8b,0x5f,0x3a,0x4e,0x2e,0x14,0x07,0x06,0x23,0x02,
10070
+0x9c,0x6a,0x0a,0x05,0x10,0x2d,0x40,0x59,0x3c,0x30,0x77,0x46,
10071
+0x21,0x4d,0x4a,0x40,0x14,0x02,0x60,0x6b,0x6b,0xfc,0x92,0x60,
10072
+0x9a,0x3e,0x1a,0x23,0x14,0x08,0x6b,0x1d,0x1d,0x2c,0x2b,0x42,
10073
+0x85,0xca,0x88,0x03,0x6e,0x6b,0x6b,0xfc,0x74,0xc3,0xc7,0x31,
10074
+0x35,0x54,0x48,0x41,0x21,0x16,0x2d,0x1a,0x9b,0x00,0x00,0x00,
10075
+0x00,0x01,0x00,0x46,0x00,0x00,0x06,0x0f,0x05,0xf2,0x00,0x2e,
10076
+0x00,0x00,0x01,0x35,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,
10077
+0x11,0x21,0x32,0x1e,0x02,0x17,0x07,0x2e,0x03,0x23,0x21,0x11,
10078
+0x33,0x15,0x21,0x35,0x33,0x11,0x34,0x3e,0x02,0x32,0x1e,0x02,
10079
+0x1d,0x01,0x33,0x15,0x21,0x35,0x04,0x95,0x2d,0x58,0x86,0x58,
10080
+0x59,0x85,0x58,0x2d,0x02,0xd1,0x45,0x6e,0x58,0x46,0x1e,0x8c,
10081
+0x11,0x35,0x3d,0x40,0x1c,0xfd,0x2b,0xbf,0xfd,0xb8,0xbf,0x56,
10082
+0x96,0xcb,0xec,0xcb,0x96,0x56,0x61,0xfe,0x75,0x03,0x6d,0x76,
10083
+0x61,0x99,0x6b,0x39,0x38,0x6a,0x9a,0x62,0xfe,0x37,0x0a,0x17,
10084
+0x24,0x1a,0x77,0x19,0x24,0x15,0x0a,0xfe,0xcb,0x6b,0x6b,0x03,
10085
+0x5a,0x88,0xd0,0x8d,0x48,0x48,0x8d,0xd0,0x88,0x58,0x6b,0x6b,
10086
+0x00,0x02,0x00,0x64,0x00,0x00,0x06,0x9b,0x05,0xf2,0x00,0x23,
10087
+0x00,0x30,0x00,0x00,0x12,0x10,0x3e,0x02,0x33,0x32,0x1e,0x02,
10088
+0x15,0x11,0x33,0x32,0x1e,0x02,0x17,0x07,0x2e,0x03,0x2b,0x01,
10089
+0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x21,0x22,0x2e,0x01,0x01,
10090
+0x34,0x26,0x23,0x22,0x06,0x15,0x14,0x1e,0x02,0x33,0x21,0x64,
10091
+0x5b,0x9a,0xca,0x6e,0x76,0xcb,0x96,0x56,0x6e,0x45,0x6e,0x58,
10092
+0x46,0x1e,0x8c,0x11,0x35,0x3d,0x40,0x1c,0x72,0xbf,0xfd,0xb8,
10093
+0xbf,0xfe,0x9d,0x6e,0xca,0x9a,0x03,0x35,0xb2,0xb1,0xad,0xb6,
10094
+0x2f,0x5a,0x84,0x56,0x01,0x63,0x03,0x3e,0x01,0x20,0xcf,0x86,
10095
+0x3f,0x43,0x89,0xd2,0x8f,0xfe,0x55,0x0a,0x17,0x24,0x1a,0x77,
10096
+0x19,0x24,0x15,0x0a,0xfe,0xcb,0x6b,0x6b,0x01,0x35,0x42,0x8a,
10097
+0x01,0x77,0xd3,0xcb,0xd1,0xe2,0x71,0xa5,0x6b,0x33,0x00,0x00,
10098
+0x00,0x01,0x00,0x28,0x00,0x00,0x06,0xc7,0x05,0xf2,0x00,0x29,
10099
+0x00,0x00,0x01,0x33,0x15,0x21,0x35,0x33,0x35,0x34,0x3e,0x02,
10100
+0x32,0x1e,0x02,0x15,0x11,0x33,0x32,0x1e,0x02,0x17,0x07,0x2e,
10101
+0x03,0x2b,0x01,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x10,0x21,
10102
+0x22,0x06,0x15,0x01,0x52,0x61,0xfe,0x75,0x60,0x56,0x96,0xcb,
10103
+0xec,0xcb,0x96,0x56,0x76,0x45,0x6e,0x58,0x46,0x1e,0x8c,0x11,
10104
+0x35,0x3d,0x40,0x1c,0x7a,0xbf,0xfd,0xb8,0xbf,0xfe,0x9d,0xb2,
10105
+0xb1,0x03,0x6d,0x6b,0x6b,0x6c,0x88,0xc9,0x86,0x42,0x42,0x86,
10106
+0xc9,0x88,0xfe,0x41,0x0a,0x17,0x24,0x1a,0x77,0x19,0x24,0x15,
10107
+0x0a,0xfe,0xcb,0x6b,0x6b,0x03,0x8c,0x01,0x8a,0xc7,0xc3,0x00,
10108
+0x00,0x01,0x00,0x46,0xff,0xe3,0x06,0x0f,0x05,0xd5,0x00,0x29,
10109
+0x00,0x00,0x01,0x35,0x21,0x15,0x23,0x15,0x14,0x0e,0x02,0x22,
10110
+0x2e,0x02,0x35,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x32,
10111
+0x1e,0x02,0x17,0x07,0x2e,0x03,0x23,0x21,0x11,0x10,0x21,0x32,
10112
+0x36,0x3d,0x01,0x04,0x35,0x01,0x8b,0x61,0x56,0x96,0xcb,0xec,
10113
+0xcb,0x96,0x56,0xbf,0x02,0x48,0xbf,0x02,0xd1,0x45,0x6e,0x58,
10114
+0x46,0x1e,0x8c,0x11,0x35,0x3d,0x40,0x1c,0xfd,0x2b,0x01,0x63,
10115
+0xb2,0xb1,0x02,0x68,0x6b,0x6b,0x6c,0x88,0xca,0x85,0x42,0x42,
10116
+0x85,0xca,0x88,0x03,0x6e,0x6b,0x6b,0xfe,0xbd,0x0a,0x17,0x24,
10117
+0x1a,0x77,0x19,0x24,0x15,0x0a,0xfe,0x31,0xfe,0x76,0xc7,0xc3,
10118
+0x8a,0x00,0x00,0x00,0x00,0x01,0x00,0xec,0xff,0xa4,0x05,0xf2,
10119
+0x05,0xf2,0x00,0x3e,0x00,0x00,0x01,0x15,0x33,0x32,0x3e,0x04,
10120
+0x35,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,0x14,0x16,0x17,
10121
+0x33,0x15,0x21,0x26,0x35,0x34,0x3e,0x04,0x33,0x32,0x1e,0x04,
10122
+0x15,0x14,0x0e,0x04,0x07,0x21,0x32,0x1e,0x02,0x17,0x07,0x2e,
10123
+0x03,0x23,0x21,0x11,0x01,0xba,0x15,0x7a,0xd7,0xb4,0x8e,0x63,
10124
+0x34,0x3c,0x6d,0x9a,0x5d,0x4e,0x95,0x73,0x47,0x03,0x04,0x63,
10125
+0xfe,0xd5,0x0f,0x38,0x5e,0x7d,0x8a,0x8e,0x42,0x50,0x9e,0x8d,
10126
+0x79,0x58,0x32,0x37,0x5e,0x7c,0x8b,0x91,0x44,0x01,0x1d,0x45,
10127
+0x6e,0x58,0x46,0x1e,0x8c,0x11,0x35,0x3d,0x40,0x1c,0xfc,0x69,
10128
+0x01,0x46,0xcc,0x3b,0x6c,0x96,0xb6,0xd2,0x70,0x74,0xae,0x75,
10129
+0x3b,0x31,0x68,0xa3,0x72,0x18,0x33,0x1b,0x6b,0x57,0x4a,0x6e,
10130
+0xae,0x83,0x5c,0x3a,0x1a,0x20,0x42,0x63,0x84,0xa7,0x65,0x68,
10131
+0xbf,0xa8,0x8d,0x6e,0x49,0x10,0x0a,0x17,0x24,0x1a,0x77,0x19,
10132
+0x24,0x15,0x0a,0x01,0x46,0x00,0x00,0x00,0x00,0x01,0x00,0xa0,
10133
+0xff,0xa4,0x06,0x17,0x05,0xd5,0x00,0x23,0x00,0x00,0x01,0x32,
10134
+0x1e,0x02,0x17,0x07,0x2e,0x03,0x23,0x21,0x11,0x21,0x32,0x1e,
10135
+0x02,0x17,0x07,0x2e,0x03,0x23,0x21,0x35,0x33,0x11,0x23,0x35,
10136
+0x21,0x15,0x23,0x11,0x04,0xa8,0x45,0x6e,0x58,0x46,0x1e,0x8c,
10137
+0x11,0x35,0x3d,0x40,0x1c,0xfd,0x7d,0x01,0xf5,0x45,0x6e,0x58,
10138
+0x46,0x1e,0x8c,0x11,0x35,0x3d,0x40,0x1c,0xfc,0x7e,0xbf,0xbf,
10139
+0x02,0x48,0xbf,0x04,0x27,0x0a,0x17,0x24,0x1a,0x77,0x19,0x24,
10140
+0x15,0x0a,0xfc,0xcd,0x0a,0x17,0x24,0x1a,0x77,0x19,0x24,0x15,
10141
+0x0a,0x6b,0x04,0xff,0x6b,0x6b,0xfe,0xbd,0x00,0x01,0x00,0x46,
10142
+0xff,0xa4,0x06,0x0f,0x05,0xf2,0x00,0x25,0x00,0x00,0x01,0x35,
10143
+0x34,0x26,0x23,0x20,0x19,0x01,0x21,0x32,0x1e,0x02,0x17,0x07,
10144
+0x2e,0x03,0x23,0x21,0x35,0x33,0x11,0x34,0x3e,0x02,0x32,0x1e,
10145
+0x02,0x1d,0x01,0x33,0x15,0x21,0x35,0x04,0x95,0xb1,0xb2,0xfe,
10146
+0x9d,0x02,0xd1,0x45,0x6e,0x58,0x46,0x1e,0x8c,0x11,0x35,0x3d,
10147
+0x40,0x1c,0xfb,0xa2,0xbf,0x56,0x96,0xcb,0xec,0xcb,0x96,0x56,
10148
+0x61,0xfe,0x75,0x03,0x59,0x9e,0xc3,0xc7,0xfe,0x76,0xfc,0x83,
10149
+0x0a,0x17,0x24,0x1a,0x77,0x19,0x24,0x15,0x0a,0x6b,0x03,0x6e,
10150
+0x88,0xc9,0x86,0x42,0x42,0x86,0xc9,0x88,0x80,0x6b,0x6b,0x00,
10151
+0x00,0x02,0x00,0x46,0xff,0xe3,0x07,0xe6,0x05,0xf2,0x00,0x38,
10152
+0x00,0x47,0x00,0x00,0x00,0x22,0x0e,0x02,0x15,0x11,0x33,0x15,
10153
+0x21,0x35,0x33,0x11,0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,0x17,
10154
+0x33,0x15,0x33,0x32,0x1e,0x02,0x17,0x07,0x2e,0x03,0x2b,0x01,
10155
+0x11,0x14,0x0e,0x02,0x22,0x2e,0x02,0x34,0x3e,0x02,0x3b,0x01,
10156
+0x35,0x34,0x2e,0x01,0x03,0x22,0x0e,0x02,0x14,0x1e,0x02,0x32,
10157
+0x3e,0x02,0x35,0x11,0x04,0x13,0xd2,0xaf,0x7d,0x46,0xbf,0xfd,
10158
+0xb8,0xbf,0x6d,0xba,0xf5,0x89,0x83,0xee,0xb8,0x72,0x08,0x02,
10159
+0x28,0x45,0x6e,0x58,0x46,0x1e,0x8c,0x11,0x35,0x3d,0x40,0x1c,
10160
+0x2c,0x4d,0x7e,0xa1,0xa6,0xa4,0x82,0x50,0x50,0x81,0xa4,0x54,
10161
+0xf5,0x46,0x7d,0x32,0x36,0x5e,0x44,0x27,0x27,0x44,0x5e,0x6c,
10162
+0x5b,0x40,0x24,0x05,0x81,0x38,0x6a,0x9a,0x62,0xfc,0x88,0x6b,
10163
+0x6b,0x03,0x5a,0x88,0xd0,0x8d,0x48,0x43,0x83,0xc2,0x7e,0x70,
10164
+0x0a,0x17,0x24,0x1a,0x77,0x19,0x24,0x15,0x0a,0xfe,0xb7,0x79,
10165
+0xb1,0x74,0x38,0x38,0x72,0xae,0xea,0xad,0x72,0x38,0x67,0x61,
10166
+0x99,0x6b,0xfd,0xba,0x28,0x52,0x80,0xb0,0x83,0x56,0x2b,0x2b,
10167
+0x52,0x7a,0x50,0x01,0x67,0x00,0x00,0x00,0x00,0x02,0x00,0x64,
10168
+0xff,0xe3,0x06,0x9b,0x05,0xd5,0x00,0x23,0x00,0x33,0x00,0x00,
10169
+0x01,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x32,0x1e,0x02,0x17,
10170
+0x07,0x2e,0x03,0x2b,0x01,0x11,0x14,0x0e,0x02,0x23,0x22,0x2e,
10171
+0x02,0x10,0x3e,0x02,0x33,0x21,0x05,0x22,0x0e,0x02,0x14,0x1e,
10172
+0x02,0x33,0x32,0x3e,0x02,0x35,0x11,0x03,0xf4,0xbf,0x02,0x48,
10173
+0xbf,0x6e,0x45,0x6e,0x58,0x46,0x1e,0x8c,0x11,0x35,0x3d,0x40,
10174
+0x1c,0x72,0x56,0x96,0xcb,0x76,0x6e,0xca,0x9a,0x5b,0x5c,0x9a,
10175
+0xc9,0x6e,0x01,0x63,0xfe,0x9d,0x56,0x84,0x5a,0x2f,0x2e,0x5a,
10176
+0x85,0x56,0x58,0x86,0x58,0x2d,0x05,0x6a,0x6b,0x6b,0xfe,0xbd,
10177
+0x0a,0x17,0x24,0x1a,0x77,0x19,0x24,0x15,0x0a,0xfe,0x63,0x8f,
10178
+0xd2,0x89,0x43,0x42,0x88,0xce,0x01,0x18,0xcd,0x86,0x41,0x7a,
10179
+0x2a,0x63,0xa2,0xee,0xa6,0x68,0x2e,0x2e,0x64,0x9d,0x6f,0x01,
10180
+0xbb,0x00,0x00,0x00,0x00,0x01,0x00,0xa0,0x00,0x00,0x06,0x1a,
10181
+0x05,0xd5,0x00,0x23,0x00,0x00,0x01,0x35,0x34,0x26,0x23,0x22,
10182
+0x06,0x07,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,
10183
+0x15,0x23,0x11,0x3e,0x03,0x33,0x32,0x1e,0x02,0x1d,0x01,0x33,
10184
+0x15,0x21,0x35,0x04,0xef,0xb1,0xb2,0xae,0xb0,0x05,0xbf,0xfd,
10185
+0xb8,0xbf,0xbf,0x02,0x48,0xbf,0x20,0x52,0x5d,0x63,0x31,0x76,
10186
+0xcb,0x96,0x56,0x61,0xfe,0x75,0x01,0xf4,0x54,0xc3,0xc7,0xbc,
10187
+0xbb,0xfe,0x10,0x6b,0x6b,0x04,0xff,0x6b,0x6b,0xfe,0x62,0x1e,
10188
+0x2d,0x1e,0x0e,0x42,0x86,0xc9,0x88,0x36,0x6b,0x6b,0x00,0x00,
10189
+0x00,0x01,0x00,0xa0,0xff,0xa4,0x05,0x9d,0x05,0xd5,0x00,0x15,
10190
+0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,
10191
+0x21,0x32,0x1e,0x02,0x17,0x07,0x2e,0x03,0x23,0xa0,0xbe,0xbe,
10192
+0x02,0x47,0xbe,0x02,0x05,0x45,0x6e,0x58,0x46,0x1e,0x8c,0x11,
10193
+0x35,0x3d,0x40,0x1c,0x6a,0x05,0x00,0x6b,0x6b,0xfb,0x10,0x0a,
10194
+0x17,0x24,0x1a,0x77,0x19,0x24,0x15,0x0a,0x00,0x01,0x00,0xa0,
10195
+0xff,0xe3,0x08,0xb3,0x05,0xd5,0x00,0x2c,0x00,0x00,0x01,0x11,
10196
+0x21,0x15,0x23,0x11,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,
10197
+0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x14,0x0e,0x02,0x22,0x2e,
10198
+0x02,0x35,0x11,0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,
10199
+0x35,0x21,0x15,0x02,0x29,0x02,0x98,0x5d,0x2d,0x58,0x85,0x59,
10200
+0x58,0x86,0x58,0x2d,0xbf,0x02,0x48,0xbf,0x56,0x96,0xcb,0xec,
10201
+0xcb,0x96,0x56,0xfe,0x8f,0xbf,0xfd,0xb8,0xbf,0xbf,0x02,0x48,
10202
+0x05,0x6a,0xfe,0xbd,0x6b,0xfe,0x36,0x61,0x99,0x6b,0x39,0x38,
10203
+0x6a,0x9a,0x62,0x01,0xca,0x6b,0x6b,0xfe,0x54,0x88,0xd0,0x8d,
10204
+0x48,0x48,0x8d,0xd0,0x88,0x01,0x9d,0xfc,0xbe,0x6b,0x6b,0x04,
10205
+0xff,0x6b,0x6b,0x00,0x00,0x02,0x00,0xbe,0xff,0xe5,0x06,0x2c,
10206
+0x05,0xf0,0x00,0x26,0x00,0x37,0x00,0x00,0x01,0x22,0x06,0x07,
10207
+0x16,0x04,0x1e,0x01,0x15,0x14,0x0e,0x02,0x20,0x2e,0x02,0x35,
10208
+0x34,0x12,0x37,0x23,0x11,0x33,0x15,0x33,0x3e,0x03,0x33,0x32,
10209
+0x16,0x17,0x07,0x2e,0x03,0x01,0x14,0x1e,0x02,0x32,0x3e,0x02,
10210
+0x35,0x34,0x2e,0x01,0x24,0x23,0x06,0x02,0x04,0xaf,0x72,0xd5,
10211
+0x5d,0xba,0x01,0x1b,0xbe,0x60,0x62,0xad,0xee,0xfe,0xe8,0xf1,
10212
+0xb1,0x65,0x76,0x64,0xfe,0xcd,0xaf,0x45,0x9a,0xa4,0xab,0x55,
10213
+0x8b,0xb0,0x34,0x8c,0x11,0x3b,0x43,0x46,0xfc,0xef,0x42,0x77,
10214
+0xa3,0xc2,0x9f,0x71,0x3e,0x42,0x9c,0xfe,0xfe,0xc0,0x5e,0x6e,
10215
+0x05,0x82,0x49,0x42,0x0a,0x6e,0xb2,0xec,0x88,0xa0,0xec,0x9c,
10216
+0x4c,0x4c,0x9c,0xec,0xa0,0x99,0x01,0x17,0x75,0x01,0x57,0xdc,
10217
+0x39,0x5b,0x41,0x22,0x32,0x2d,0x77,0x19,0x27,0x1b,0x0d,0xfc,
10218
+0xd7,0x92,0xc7,0x7a,0x36,0x36,0x7b,0xc7,0x91,0x72,0xc8,0x94,
10219
+0x57,0x6b,0xfe,0xe9,0x00,0x01,0x00,0x14,0x00,0x00,0x05,0xec,
10220
+0x05,0xd5,0x00,0x24,0x00,0x00,0x01,0x11,0x14,0x1e,0x02,0x33,
10221
+0x20,0x11,0x35,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x15,0x21,
10222
+0x35,0x33,0x11,0x0e,0x03,0x23,0x22,0x2e,0x02,0x35,0x11,0x23,
10223
+0x35,0x21,0x15,0x01,0x9d,0x2d,0x58,0x85,0x59,0x01,0x63,0x61,
10224
+0x01,0x8b,0x60,0xbf,0xfd,0xb8,0xbf,0x20,0x52,0x5d,0x63,0x31,
10225
+0x76,0xcb,0x96,0x56,0xbf,0x02,0x48,0x05,0x6a,0xfe,0x37,0x61,
10226
+0x99,0x6b,0x39,0x01,0x8a,0x2f,0x6b,0x6b,0xfc,0xaf,0x6b,0x6b,
10227
+0x01,0x9d,0x1e,0x2d,0x1d,0x0e,0x48,0x8d,0xd0,0x88,0x01,0xab,
10228
+0x6b,0x6b,0x00,0x00,0x00,0x01,0x00,0x6d,0xff,0x78,0x05,0x34,
10229
+0x05,0xd5,0x00,0x17,0x00,0x00,0x01,0x0c,0x01,0x0e,0x01,0x15,
10230
+0x14,0x16,0x17,0x01,0x11,0x23,0x35,0x01,0x2e,0x01,0x35,0x34,
10231
+0x3e,0x01,0x24,0x37,0x03,0x33,0x05,0x15,0xfe,0xff,0xfe,0x99,
10232
+0xe1,0x66,0x41,0x3b,0x03,0x52,0x6b,0xfc,0x81,0x6b,0x72,0x6b,
10233
+0xe2,0x01,0x60,0xf5,0xef,0xf8,0x04,0x27,0x65,0xa4,0x84,0x66,
10234
+0x27,0x20,0x32,0x13,0xfe,0xf0,0xfe,0xe0,0x74,0x01,0x1e,0x22,
10235
+0x5e,0x3c,0x38,0x87,0x9e,0xb5,0x66,0x01,0x97,0x00,0x00,0x00,
10236
+0x00,0x02,0x00,0xcb,0xff,0xbe,0x05,0xcd,0x05,0xf2,0x00,0x45,
10237
+0x00,0x57,0x00,0x00,0x25,0x17,0x07,0x2e,0x01,0x27,0x0e,0x01,
10238
+0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,
10239
+0x17,0x3e,0x03,0x35,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,
10240
+0x14,0x16,0x17,0x33,0x15,0x21,0x2e,0x01,0x35,0x34,0x3e,0x04,
10241
+0x33,0x32,0x1e,0x04,0x15,0x14,0x0e,0x02,0x07,0x1e,0x01,0x17,
10242
+0x25,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,0x33,0x32,0x36,0x37,
10243
+0x2e,0x03,0x05,0x51,0x4b,0xd5,0x3e,0x95,0x51,0x6a,0xd8,0x63,
10244
+0x47,0x72,0x50,0x2a,0x2c,0x4f,0x6f,0x42,0x38,0x81,0x88,0x8c,
10245
+0x44,0x33,0x55,0x3e,0x22,0x3c,0x70,0x9e,0x61,0x4d,0x92,0x71,
10246
+0x45,0x04,0x04,0x63,0xfe,0xd5,0x08,0x07,0x37,0x5c,0x7b,0x88,
10247
+0x8d,0x41,0x51,0x9f,0x90,0x7b,0x5a,0x33,0x34,0x5d,0x7f,0x4b,
10248
+0x2d,0x51,0x24,0xfc,0xab,0x18,0x2c,0x21,0x14,0x1e,0x33,0x43,
10249
+0x24,0x50,0xa6,0x51,0x36,0x6a,0x64,0x5b,0xde,0x4d,0xd3,0x2e,
10250
+0x5b,0x2a,0x3e,0x44,0x23,0x3f,0x59,0x36,0x34,0x5a,0x42,0x26,
10251
+0x18,0x2a,0x38,0x21,0x37,0x83,0x96,0xa7,0x5c,0x80,0xbc,0x7b,
10252
+0x3c,0x34,0x69,0xa0,0x6b,0x1a,0x35,0x1d,0x6b,0x2d,0x52,0x26,
10253
+0x6a,0xa9,0x83,0x5d,0x3c,0x1c,0x20,0x43,0x64,0x89,0xac,0x69,
10254
+0x59,0xb0,0xa6,0x98,0x41,0x19,0x31,0x19,0x6a,0x0c,0x17,0x23,
10255
+0x17,0x1a,0x29,0x1e,0x10,0x31,0x2f,0x18,0x29,0x1d,0x10,0x00,
10256
+0x00,0x01,0x00,0x3d,0xff,0xa4,0x06,0xaa,0x05,0xf2,0x00,0x2a,
10257
+0x00,0x00,0x01,0x33,0x15,0x21,0x35,0x33,0x35,0x34,0x3e,0x02,
10258
+0x32,0x1e,0x02,0x15,0x11,0x33,0x32,0x1e,0x02,0x17,0x07,0x2e,
10259
+0x03,0x27,0x21,0x35,0x33,0x11,0x34,0x2e,0x02,0x23,0x22,0x0e,
10260
+0x02,0x15,0x01,0x67,0x61,0xfe,0x75,0x60,0x56,0x96,0xcb,0xec,
10261
+0xcb,0x96,0x56,0x44,0x45,0x6e,0x58,0x46,0x1e,0x8c,0x11,0x31,
10262
+0x39,0x3d,0x1c,0xfe,0x24,0xbf,0x2d,0x58,0x86,0x58,0x59,0x85,
10263
+0x58,0x2d,0x03,0x59,0x6b,0x6b,0x6c,0x88,0xd0,0x8d,0x48,0x48,
10264
+0x8d,0xd0,0x88,0xfc,0xb5,0x0a,0x17,0x24,0x1a,0x77,0x18,0x23,
10265
+0x16,0x0a,0x01,0x6b,0x03,0x78,0x62,0x9a,0x6a,0x38,0x39,0x6b,
10266
+0x99,0x61,0x00,0x00,0x00,0x02,0x00,0x9d,0x00,0x00,0x06,0x3c,
10267
+0x06,0x1c,0x00,0x2e,0x00,0x3d,0x00,0x00,0x01,0x2e,0x01,0x23,
10268
+0x22,0x0e,0x02,0x07,0x01,0x1e,0x03,0x33,0x15,0x21,0x22,0x26,
10269
+0x35,0x34,0x3e,0x04,0x37,0x03,0x2e,0x03,0x2b,0x01,0x35,0x33,
10270
+0x32,0x1e,0x02,0x1f,0x01,0x3e,0x03,0x33,0x01,0x21,0x32,0x36,
10271
+0x35,0x34,0x27,0x01,0x0e,0x03,0x15,0x14,0x16,0x05,0x9b,0x09,
10272
+0x13,0x09,0x3c,0x7f,0x83,0x83,0x3f,0x02,0x42,0x1f,0x2a,0x1d,
10273
+0x14,0x0a,0xfa,0xda,0x3f,0x3a,0x27,0x46,0x61,0x76,0x87,0x48,
10274
+0xc9,0x0e,0x26,0x2d,0x2f,0x16,0x65,0xe8,0x2a,0x4a,0x44,0x43,
10275
+0x23,0x59,0x54,0xa7,0x9d,0x8e,0x3a,0xfc,0x74,0x02,0x97,0x1d,
10276
+0x23,0x11,0xfe,0x19,0x49,0x7d,0x5b,0x33,0x37,0x05,0x64,0x01,
10277
+0x01,0x2c,0x4f,0x6c,0x40,0xfc,0xb6,0x2e,0x37,0x1c,0x09,0x6b,
10278
+0x3e,0x38,0x30,0x7e,0x92,0xa3,0xaa,0xab,0x51,0x01,0x20,0x13,
10279
+0x1d,0x12,0x09,0x6b,0x15,0x2d,0x47,0x34,0x83,0x54,0x8f,0x69,
10280
+0x3b,0xfa,0x5e,0x20,0x17,0x15,0x19,0x02,0xc6,0x5b,0xc0,0xb5,
10281
+0xa0,0x3c,0x3b,0x44,0x00,0x01,0x00,0x60,0xff,0xe3,0x07,0x2c,
10282
+0x05,0xd5,0x00,0x2a,0x00,0x00,0x01,0x21,0x32,0x1e,0x02,0x17,
10283
+0x07,0x2e,0x03,0x2b,0x01,0x11,0x14,0x0e,0x02,0x22,0x2e,0x02,
10284
+0x35,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x14,0x1e,0x02,0x33,
10285
+0x32,0x3e,0x02,0x35,0x11,0x23,0x03,0xf0,0x01,0xcd,0x45,0x6e,
10286
+0x58,0x46,0x1e,0x8c,0x11,0x35,0x3d,0x40,0x1c,0x48,0x56,0x96,
10287
+0xcb,0xec,0xcb,0x96,0x56,0xbf,0x02,0x48,0xbf,0x2d,0x58,0x85,
10288
+0x59,0x58,0x86,0x58,0x2d,0xbf,0x05,0xd5,0x0a,0x17,0x24,0x1a,
10289
+0x77,0x19,0x24,0x15,0x0a,0xfc,0xb5,0x88,0xd0,0x8d,0x48,0x48,
10290
+0x8d,0xd0,0x88,0x03,0x5a,0x6b,0x6b,0xfc,0x88,0x61,0x99,0x6b,
10291
+0x39,0x38,0x6a,0x9a,0x62,0x03,0x78,0x00,0x00,0x01,0x00,0x83,
10292
+0xff,0xe3,0x05,0x92,0x05,0xf0,0x00,0x43,0x00,0x00,0x13,0x21,
10293
+0x15,0x23,0x1e,0x03,0x33,0x32,0x3e,0x02,0x35,0x34,0x2e,0x02,
10294
+0x23,0x21,0x07,0x23,0x13,0x33,0x07,0x21,0x32,0x3e,0x02,0x34,
10295
+0x2e,0x02,0x22,0x0e,0x02,0x15,0x23,0x34,0x3e,0x02,0x32,0x1e,
10296
+0x02,0x15,0x14,0x0e,0x02,0x07,0x1e,0x03,0x15,0x14,0x0e,0x02,
10297
+0x23,0x22,0x2e,0x02,0x83,0x01,0x3d,0x42,0x08,0x4a,0x71,0x8f,
10298
+0x4d,0x52,0x9a,0x75,0x47,0x43,0x6d,0x8d,0x49,0xfe,0x85,0x0d,
10299
+0xe7,0x29,0xe1,0x0a,0x01,0x6f,0x3e,0x69,0x4d,0x2c,0x2d,0x54,
10300
+0x7a,0x9a,0x7b,0x56,0x2e,0xdf,0x55,0x95,0xcb,0xec,0xc8,0x91,
10301
+0x52,0x32,0x59,0x79,0x47,0x4b,0x96,0x79,0x4b,0x62,0xab,0xe8,
10302
+0x86,0x83,0xee,0xb7,0x6c,0x01,0xcc,0x6b,0x44,0x64,0x42,0x21,
10303
+0x2b,0x58,0x89,0x5f,0x51,0x78,0x50,0x28,0x6d,0x01,0x3a,0x53,
10304
+0x1f,0x41,0x65,0x8a,0x60,0x3b,0x1a,0x1a,0x3b,0x60,0x45,0x59,
10305
+0x87,0x5c,0x2e,0x2e,0x5c,0x87,0x59,0x44,0x6a,0x4c,0x30,0x0a,
10306
+0x0c,0x3f,0x65,0x8b,0x58,0x70,0xb1,0x7a,0x41,0x42,0x7d,0xb6,
10307
+0x00,0x01,0xff,0xcf,0xff,0xe3,0x06,0x3c,0x06,0x31,0x00,0x2a,
10308
+0x00,0x00,0x01,0x23,0x35,0x21,0x15,0x23,0x15,0x14,0x0e,0x02,
10309
+0x22,0x2e,0x02,0x35,0x11,0x23,0x22,0x2e,0x02,0x27,0x37,0x1e,
10310
+0x03,0x33,0x21,0x15,0x23,0x11,0x14,0x1e,0x02,0x33,0x32,0x3e,
10311
+0x02,0x35,0x05,0x12,0x61,0x01,0x8b,0x60,0x56,0x96,0xcb,0xec,
10312
+0xcb,0x96,0x56,0x44,0x45,0x6e,0x58,0x46,0x1e,0x8c,0x11,0x35,
10313
+0x3d,0x40,0x1c,0x01,0xd1,0xbf,0x2d,0x58,0x85,0x59,0x58,0x86,
10314
+0x58,0x2d,0x02,0x7c,0x6b,0x6b,0x6c,0x88,0xd0,0x8d,0x48,0x48,
10315
+0x8d,0xd0,0x88,0x03,0x4b,0x0a,0x17,0x24,0x1a,0x77,0x1a,0x23,
10316
+0x15,0x0a,0x6b,0xfc,0x88,0x62,0x9a,0x6a,0x38,0x39,0x6b,0x99,
10317
+0x61,0x00,0x00,0x00,0x00,0x01,0x00,0xab,0xff,0xe3,0x05,0x9f,
10318
+0x05,0xd5,0x00,0x3a,0x00,0x00,0x01,0x2e,0x03,0x2b,0x01,0x35,
10319
+0x33,0x32,0x1e,0x02,0x17,0x01,0x15,0x25,0x2e,0x01,0x23,0x22,
10320
+0x0e,0x02,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,0x34,
10321
+0x26,0x27,0x23,0x35,0x21,0x1e,0x01,0x15,0x14,0x0e,0x02,0x23,
10322
+0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x37,0x02,0xaa,0x1c,0x4e,
10323
+0x59,0x5d,0x2a,0x8d,0xdb,0x35,0x6d,0x66,0x5a,0x24,0x02,0x6b,
10324
+0xfe,0x52,0x23,0x41,0x20,0x6f,0xb3,0x7e,0x44,0x38,0x6a,0x9c,
10325
+0x63,0x5f,0x9a,0x6c,0x3a,0x04,0x04,0x63,0x01,0x2b,0x08,0x07,
10326
+0x68,0xae,0xe0,0x78,0x7a,0xe6,0xb3,0x6c,0x53,0x99,0xd8,0x86,
10327
+0x05,0x00,0x0c,0x20,0x1c,0x13,0x7a,0x06,0x0c,0x15,0x0f,0xfe,
10328
+0xfe,0xd4,0xb0,0x07,0x07,0x50,0x93,0xcd,0x7d,0x7c,0xc1,0x84,
10329
+0x45,0x34,0x69,0xa0,0x6b,0x1a,0x35,0x1d,0x6b,0x2d,0x52,0x26,
10330
+0x9c,0xde,0x8e,0x43,0x4c,0x9c,0xee,0xa2,0x7e,0xe0,0xad,0x6f,
10331
+0x0c,0x00,0x00,0x00,0x00,0x01,0x00,0x46,0x00,0x00,0x06,0x1e,
10332
+0x05,0xf2,0x00,0x1b,0x00,0x00,0x01,0x20,0x19,0x01,0x33,0x15,
10333
+0x21,0x35,0x33,0x11,0x34,0x3e,0x02,0x32,0x1e,0x02,0x15,0x11,
10334
+0x33,0x15,0x21,0x35,0x33,0x11,0x34,0x26,0x03,0x32,0xfe,0x9d,
10335
+0xbf,0xfd,0xb8,0xbf,0x56,0x96,0xcb,0xec,0xcb,0x96,0x56,0xbf,
10336
+0xfd,0xb8,0xbf,0xb1,0x05,0x81,0xfe,0x76,0xfc,0x74,0x6b,0x6b,
10337
+0x03,0x6e,0x88,0xc9,0x86,0x42,0x42,0x86,0xc9,0x88,0xfc,0x92,
10338
+0x6b,0x6b,0x03,0x8c,0xc3,0xc7,0x00,0x00,0x00,0x01,0x00,0xc5,
10339
+0xff,0xa4,0x05,0xb2,0x05,0xf2,0x00,0x30,0x00,0x00,0x01,0x15,
10340
+0x17,0x16,0x33,0x32,0x3e,0x02,0x34,0x2e,0x02,0x23,0x22,0x0e,
10341
+0x02,0x15,0x14,0x16,0x17,0x33,0x15,0x21,0x2e,0x01,0x35,0x34,
10342
+0x3e,0x02,0x33,0x32,0x1e,0x02,0x15,0x14,0x0e,0x02,0x07,0x05,
10343
+0x15,0x23,0x35,0x01,0x35,0x01,0xd0,0x9a,0x49,0x44,0x6d,0xb0,
10344
+0x7d,0x43,0x38,0x6a,0x9c,0x63,0x5f,0x9a,0x6c,0x3a,0x03,0x05,
10345
+0x63,0xfe,0xd5,0x08,0x07,0x68,0xae,0xe0,0x78,0x7a,0xe6,0xb3,
10346
+0x6c,0x53,0x9a,0xda,0x86,0x01,0x05,0x6b,0xfd,0x66,0x01,0xea,
10347
+0x3b,0x40,0x0f,0x4c,0x8c,0xc7,0xf8,0xc1,0x84,0x45,0x34,0x69,
10348
+0xa0,0x6b,0x1a,0x35,0x1d,0x6b,0x2d,0x52,0x26,0x9c,0xde,0x8e,
10349
+0x43,0x4c,0x9c,0xee,0xa2,0x7e,0xda,0xa6,0x68,0x0c,0x6c,0xf8,
10350
+0x4b,0x01,0x19,0xe2,0x00,0x01,0x00,0x14,0x00,0x00,0x06,0xb9,
10351
+0x05,0xf2,0x00,0x27,0x00,0x00,0x01,0x33,0x15,0x21,0x35,0x33,
10352
+0x35,0x34,0x3e,0x01,0x24,0x20,0x04,0x1e,0x01,0x15,0x11,0x33,
10353
+0x15,0x21,0x35,0x33,0x11,0x34,0x2e,0x02,0x27,0x11,0x33,0x15,
10354
+0x21,0x35,0x33,0x11,0x0e,0x03,0x15,0x01,0x3e,0x61,0xfe,0x75,
10355
+0x60,0x62,0xb7,0x01,0x06,0x01,0x48,0x01,0x06,0xb7,0x62,0xbf,
10356
+0xfd,0xb8,0xbf,0x2e,0x61,0x96,0x69,0x61,0xfe,0x75,0x60,0x6c,
10357
+0x9b,0x64,0x2f,0x03,0x6d,0x6b,0x6b,0x58,0x88,0xd0,0x8d,0x48,
10358
+0x48,0x8d,0xd0,0x88,0xfc,0xa6,0x6b,0x6b,0x03,0x78,0x57,0x8e,
10359
+0x68,0x41,0x0b,0xfc,0xff,0x6b,0x6b,0x03,0x02,0x0a,0x41,0x69,
10360
+0x8f,0x57,0x00,0x00,0x00,0x02,0x00,0xe3,0xff,0xa4,0x05,0xe5,
10361
+0x05,0xf3,0x00,0x34,0x00,0x4d,0x00,0x00,0x01,0x15,0x33,0x32,
10362
+0x36,0x37,0x3e,0x03,0x35,0x34,0x2e,0x06,0x35,0x34,0x3e,0x02,
10363
+0x33,0x32,0x1e,0x04,0x15,0x14,0x0e,0x04,0x07,0x21,0x32,0x1e,
10364
+0x02,0x17,0x07,0x2e,0x03,0x23,0x21,0x11,0x13,0x14,0x1e,0x06,
10365
+0x15,0x14,0x06,0x07,0x36,0x12,0x35,0x34,0x2e,0x02,0x23,0x22,
10366
+0x0e,0x02,0x01,0xad,0x15,0x8b,0xf0,0x63,0x0d,0x11,0x0a,0x05,
10367
+0x3f,0x68,0x84,0x8b,0x84,0x68,0x3f,0x4f,0x9f,0xee,0x9f,0x4e,
10368
+0x97,0x88,0x73,0x53,0x2f,0x35,0x5b,0x7b,0x8d,0x98,0x4a,0x01,
10369
+0x27,0x45,0x6e,0x58,0x46,0x1e,0x8c,0x11,0x35,0x3d,0x40,0x1c,
10370
+0xfc,0x69,0xcd,0x38,0x5d,0x76,0x7b,0x76,0x5d,0x38,0x0a,0x0e,
10371
+0x5e,0x67,0x49,0x77,0x99,0x51,0x59,0x94,0x6b,0x3c,0x01,0x46,
10372
+0xcc,0x49,0x43,0x16,0x34,0x35,0x30,0x11,0x4e,0x56,0x29,0x0d,
10373
+0x0b,0x18,0x41,0x78,0x65,0x64,0xbf,0x94,0x5b,0x21,0x43,0x64,
10374
+0x84,0xa5,0x63,0x64,0xbb,0xa8,0x90,0x70,0x4d,0x11,0x0a,0x17,
10375
+0x24,0x1a,0x77,0x19,0x24,0x15,0x0a,0x01,0x46,0x02,0xc8,0x49,
10376
+0x50,0x29,0x0d,0x0c,0x18,0x3e,0x71,0x5e,0x1f,0x4b,0x28,0x68,
10377
+0x01,0x0c,0x9b,0x85,0xbf,0x7a,0x39,0x39,0x64,0x88,0x00,0x00,
10378
+0x00,0x01,0x00,0x46,0x00,0x00,0x07,0x12,0x05,0xf2,0x00,0x2e,
10379
+0x00,0x00,0x01,0x22,0x0e,0x02,0x15,0x11,0x33,0x15,0x21,0x35,
10380
+0x33,0x11,0x34,0x3e,0x02,0x32,0x1e,0x02,0x15,0x11,0x33,0x32,
10381
+0x1e,0x02,0x17,0x07,0x2e,0x03,0x2b,0x01,0x11,0x33,0x15,0x21,
10382
+0x35,0x33,0x11,0x34,0x2e,0x02,0x03,0x32,0x59,0x85,0x58,0x2d,
10383
+0xbf,0xfd,0xb8,0xbf,0x56,0x96,0xcb,0xec,0xcb,0x96,0x56,0x44,
10384
+0x45,0x6e,0x58,0x46,0x1e,0x8c,0x11,0x35,0x3d,0x40,0x1c,0x48,
10385
+0xbf,0xfd,0xb8,0xbf,0x2d,0x58,0x86,0x05,0x81,0x38,0x6a,0x9a,
10386
+0x62,0xfc,0x88,0x6b,0x6b,0x03,0x5a,0x88,0xd0,0x8d,0x48,0x48,
10387
+0x8d,0xd0,0x88,0xfe,0x55,0x0a,0x17,0x24,0x1a,0x77,0x19,0x24,
10388
+0x15,0x0a,0xfe,0xcb,0x6b,0x6b,0x03,0x78,0x61,0x99,0x6b,0x39,
10389
+0x00,0x01,0x00,0x46,0xff,0xe3,0x06,0x1e,0x05,0xd5,0x00,0x1b,
10390
+0x00,0x00,0x25,0x20,0x19,0x01,0x23,0x35,0x21,0x15,0x23,0x11,
10391
+0x14,0x0e,0x02,0x22,0x2e,0x02,0x35,0x11,0x23,0x35,0x21,0x15,
10392
+0x23,0x11,0x14,0x16,0x03,0x32,0x01,0x63,0xbf,0x02,0x48,0xbf,
10393
+0x56,0x96,0xcb,0xec,0xcb,0x96,0x56,0xbf,0x02,0x48,0xbf,0xb1,
10394
+0x54,0x01,0x8a,0x03,0x8c,0x6b,0x6b,0xfc,0x92,0x88,0xca,0x85,
10395
+0x42,0x42,0x85,0xca,0x88,0x03,0x6e,0x6b,0x6b,0xfc,0x74,0xc3,
10396
+0xc7,0x00,0x00,0x00,0x00,0x01,0x00,0x14,0xff,0xa4,0x06,0x7e,
10397
+0x05,0xd5,0x00,0x31,0x00,0x00,0x01,0x11,0x33,0x32,0x1e,0x02,
10398
+0x17,0x07,0x2e,0x03,0x23,0x21,0x35,0x33,0x11,0x0e,0x03,0x23,
10399
+0x22,0x2e,0x02,0x3d,0x01,0x23,0x35,0x21,0x15,0x23,0x15,0x14,
10400
+0x1e,0x02,0x33,0x32,0x3e,0x02,0x37,0x11,0x23,0x35,0x21,0x15,
10401
+0x04,0xcf,0x40,0x45,0x6e,0x58,0x46,0x1e,0x8c,0x11,0x35,0x3d,
10402
+0x40,0x1c,0xfe,0x33,0xbf,0x20,0x52,0x5d,0x63,0x31,0x76,0xcb,
10403
+0x96,0x56,0x61,0x01,0x8b,0x60,0x2d,0x58,0x85,0x59,0x56,0x83,
10404
+0x59,0x2f,0x02,0xbf,0x02,0x48,0x05,0x6a,0xfb,0x10,0x0a,0x17,
10405
+0x24,0x1a,0x77,0x19,0x24,0x15,0x0a,0x6b,0x01,0x78,0x1e,0x2d,
10406
+0x1d,0x0e,0x48,0x8d,0xd0,0x88,0x22,0x6b,0x6b,0x40,0x61,0x99,
10407
+0x6b,0x39,0x35,0x65,0x93,0x5d,0x02,0x02,0x6b,0x6b,0x00,0x00,
10408
+0x00,0x01,0x00,0x71,0xff,0xe3,0x05,0x5b,0x05,0xf0,0x00,0x3e,
10409
+0x00,0x00,0x13,0x21,0x15,0x23,0x1e,0x03,0x33,0x32,0x3e,0x02,
10410
+0x35,0x34,0x2e,0x02,0x2f,0x01,0x2e,0x03,0x35,0x34,0x3e,0x02,
10411
+0x33,0x32,0x1e,0x02,0x17,0x23,0x34,0x2e,0x02,0x23,0x22,0x0e,
10412
+0x02,0x15,0x14,0x1e,0x02,0x1f,0x01,0x1e,0x01,0x15,0x14,0x0e,
10413
+0x02,0x20,0x2e,0x02,0x71,0x01,0x3d,0x3e,0x09,0x4b,0x70,0x8c,
10414
+0x4b,0x59,0x91,0x66,0x38,0x21,0x4d,0x7e,0x5d,0xc5,0x60,0x9b,
10415
+0x6d,0x3b,0x49,0x8a,0xc6,0x7d,0x61,0xbb,0x95,0x60,0x06,0xe4,
10416
+0x39,0x5c,0x75,0x3c,0x48,0x76,0x54,0x2e,0x28,0x56,0x86,0x5f,
10417
+0xb9,0xcc,0xce,0x51,0x99,0xde,0xfe,0xe6,0xf0,0xb1,0x65,0x01,
10418
+0xcc,0x6b,0x48,0x66,0x41,0x1d,0x29,0x48,0x63,0x39,0x35,0x53,
10419
+0x44,0x39,0x1c,0x3b,0x1d,0x47,0x5e,0x7d,0x53,0x57,0x97,0x71,
10420
+0x41,0x30,0x5e,0x8d,0x5e,0x47,0x65,0x40,0x1e,0x25,0x44,0x5d,
10421
+0x38,0x36,0x4e,0x3d,0x34,0x1c,0x37,0x3d,0xc9,0x9d,0x5e,0xa0,
10422
+0x75,0x42,0x46,0x81,0xb4,0x00,0x00,0x00,0x00,0x01,0x00,0x46,
10423
+0x00,0x00,0x06,0x1e,0x05,0xf2,0x00,0x20,0x00,0x00,0x01,0x22,
10424
+0x0e,0x02,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x34,0x3e,
10425
+0x02,0x32,0x1e,0x02,0x1d,0x01,0x33,0x15,0x21,0x35,0x33,0x35,
10426
+0x34,0x2e,0x02,0x03,0x32,0x59,0x85,0x58,0x2d,0xbf,0xfd,0xb8,
10427
+0xbf,0x56,0x96,0xcb,0xec,0xcb,0x96,0x56,0xbf,0xfd,0xb8,0xbf,
10428
+0x2d,0x58,0x86,0x05,0x81,0x38,0x6a,0x9a,0x62,0xfc,0x88,0x6b,
10429
+0x6b,0x03,0x5a,0x88,0xd0,0x8d,0x48,0x48,0x8d,0xd0,0x88,0xce,
10430
+0x6b,0x6b,0xec,0x61,0x99,0x6b,0x39,0x00,0x00,0x02,0x00,0x6c,
10431
+0xff,0xe3,0x05,0x9c,0x05,0xf0,0x00,0x3d,0x00,0x4f,0x00,0x00,
10432
+0x13,0x21,0x15,0x23,0x1e,0x03,0x33,0x32,0x3e,0x02,0x35,0x34,
10433
+0x2e,0x02,0x23,0x21,0x22,0x0e,0x02,0x07,0x27,0x3e,0x01,0x33,
10434
+0x2e,0x03,0x35,0x34,0x3e,0x02,0x32,0x1e,0x02,0x15,0x14,0x0e,
10435
+0x02,0x07,0x1e,0x03,0x15,0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,
10436
+0x00,0x34,0x2e,0x02,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,0x33,
10437
+0x32,0x3e,0x01,0x8d,0x01,0x3d,0x46,0x06,0x4e,0x76,0x90,0x49,
10438
+0x58,0x9a,0x73,0x42,0x49,0x75,0x93,0x4a,0xfe,0xa4,0x1c,0x40,
10439
+0x3d,0x35,0x11,0x8c,0x36,0xad,0x8b,0x32,0x54,0x3c,0x22,0x55,
10440
+0x95,0xcb,0xec,0xc8,0x91,0x52,0x38,0x5d,0x7a,0x41,0x4d,0x99,
10441
+0x79,0x4b,0x62,0xac,0xe8,0x85,0x83,0xee,0xb7,0x6c,0x03,0xdc,
10442
+0x2d,0x54,0x7a,0x9a,0x7b,0x56,0x2e,0x27,0x54,0x85,0x5e,0x3e,
10443
+0x70,0x56,0x01,0xcc,0x6b,0x46,0x65,0x42,0x1f,0x2b,0x58,0x86,
10444
+0x5b,0x57,0x7d,0x4f,0x26,0x0a,0x15,0x24,0x19,0x77,0x2e,0x31,
10445
+0x12,0x34,0x42,0x50,0x2e,0x59,0x88,0x5d,0x30,0x2e,0x5c,0x87,
10446
+0x59,0x44,0x6b,0x4e,0x30,0x07,0x06,0x3f,0x6b,0x92,0x59,0x6f,
10447
+0xae,0x78,0x3f,0x43,0x7f,0xb5,0x02,0xe7,0x8a,0x60,0x3b,0x1a,
10448
+0x1b,0x3d,0x61,0x45,0x44,0x63,0x40,0x1f,0x1f,0x41,0x00,0x00,
10449
+0x00,0x01,0x00,0xa0,0x00,0x00,0x05,0x89,0x05,0xd5,0x00,0x19,
10450
+0x00,0x00,0x01,0x11,0x21,0x32,0x1e,0x02,0x17,0x07,0x2e,0x03,
10451
+0x23,0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,
10452
+0x15,0x02,0x29,0x01,0xf1,0x45,0x6e,0x58,0x46,0x1e,0x8c,0x11,
10453
+0x35,0x3d,0x40,0x1c,0xfe,0x0b,0xbf,0xfd,0xb8,0xbf,0xbf,0x02,
10454
+0x48,0x05,0x6a,0xfe,0xbd,0x0a,0x17,0x24,0x1a,0x77,0x19,0x24,
10455
+0x15,0x0a,0xfc,0xbe,0x6b,0x6b,0x04,0xff,0x6b,0x6b,0x00,0x00,
10456
+0x00,0x03,0x00,0x82,0x00,0x00,0x06,0x41,0x05,0xd5,0x00,0x20,
10457
+0x00,0x2a,0x00,0x34,0x00,0x00,0x01,0x21,0x15,0x23,0x15,0x1e,
10458
+0x03,0x15,0x14,0x0e,0x02,0x07,0x15,0x33,0x15,0x21,0x35,0x33,
10459
+0x35,0x2e,0x03,0x34,0x3e,0x02,0x37,0x35,0x23,0x02,0x14,0x1e,
10460
+0x02,0x17,0x11,0x0e,0x02,0x00,0x34,0x2e,0x02,0x27,0x11,0x3e,
10461
+0x02,0x02,0x3e,0x02,0x46,0xbe,0xa1,0xef,0x9d,0x4e,0x4e,0x9d,
10462
+0xef,0xa1,0xbe,0xfd,0xba,0xbe,0xa1,0xee,0x9e,0x4d,0x4d,0x9e,
10463
+0xee,0xa1,0xbe,0xd4,0x33,0x65,0x96,0x64,0x64,0x96,0x65,0x03,
10464
+0xbb,0x33,0x65,0x97,0x63,0x63,0x97,0x65,0x05,0xd5,0x6b,0x58,
10465
+0x0a,0x54,0x8a,0xbc,0x72,0x6c,0xbc,0x90,0x5c,0x0b,0x73,0x6a,
10466
+0x6a,0x73,0x0b,0x5c,0x90,0xbc,0xd8,0xba,0x8c,0x58,0x0b,0x59,
10467
+0xfd,0xfa,0xd0,0x9b,0x6a,0x3d,0x0a,0x03,0x5f,0x09,0x3a,0x67,
10468
+0xfe,0x97,0xd0,0x99,0x67,0x3a,0x09,0xfc,0xa1,0x0a,0x3d,0x6a,
10469
+0x00,0x02,0x00,0x00,0x00,0x00,0x06,0x61,0x05,0xf2,0x00,0x33,
10470
+0x00,0x41,0x00,0x00,0x01,0x3e,0x03,0x33,0x32,0x1e,0x02,0x14,
10471
+0x0e,0x02,0x23,0x22,0x26,0x27,0x15,0x21,0x32,0x1e,0x02,0x17,
10472
+0x07,0x2e,0x03,0x23,0x21,0x15,0x33,0x15,0x21,0x35,0x33,0x35,
10473
+0x23,0x22,0x2e,0x02,0x27,0x37,0x1e,0x03,0x3b,0x01,0x13,0x14,
10474
+0x1e,0x02,0x33,0x32,0x36,0x10,0x26,0x23,0x22,0x06,0x15,0x01,
10475
+0x92,0x03,0x59,0x95,0xc8,0x74,0x6e,0xca,0x9a,0x5b,0x5d,0x9a,
10476
+0xca,0x6c,0x62,0xb6,0x4b,0x02,0x96,0x45,0x6e,0x58,0x46,0x1e,
10477
+0x8c,0x11,0x35,0x3d,0x40,0x1c,0xfd,0x66,0xbf,0xfd,0xb8,0xbf,
10478
+0x23,0x45,0x6e,0x58,0x46,0x1e,0x8c,0x11,0x35,0x3d,0x40,0x1c,
10479
+0x27,0xca,0x2f,0x5b,0x84,0x55,0xab,0xb8,0xb5,0xae,0xb2,0xb1,
10480
+0x04,0x1d,0x78,0xb1,0x73,0x39,0x3b,0x76,0xb4,0xf2,0xb4,0x76,
10481
+0x3b,0x34,0x33,0xfd,0x0a,0x17,0x24,0x1a,0x77,0x19,0x24,0x15,
10482
+0x0a,0xbb,0x6b,0x6b,0xbb,0x0a,0x17,0x24,0x1a,0x77,0x1a,0x23,
10483
+0x15,0x0a,0x02,0x5f,0x4d,0x7f,0x5a,0x32,0xb6,0x01,0x6e,0xb6,
10484
+0xb0,0xa8,0x00,0x00,0x00,0x02,0x00,0x82,0xff,0xe3,0x06,0x2c,
10485
+0x05,0xf0,0x00,0x0b,0x00,0x21,0x00,0x00,0x25,0x32,0x00,0x11,
10486
+0x10,0x00,0x23,0x22,0x00,0x11,0x10,0x00,0x17,0x22,0x24,0x26,
10487
+0x02,0x35,0x34,0x12,0x36,0x24,0x33,0x32,0x04,0x16,0x12,0x15,
10488
+0x14,0x0e,0x04,0x03,0x57,0xf5,0x01,0x04,0xfe,0xfc,0xf5,0xf6,
10489
+0xfe,0xfc,0x01,0x04,0xf6,0xa5,0xfe,0xf4,0xbd,0x67,0x67,0xbd,
10490
+0x01,0x0c,0xa5,0xa2,0x01,0x0b,0xbf,0x69,0x2f,0x58,0x7f,0xa1,
10491
+0xc1,0x4e,0x01,0x51,0x01,0x4a,0x01,0x4b,0x01,0x51,0xfe,0xaf,
10492
+0xfe,0xb5,0xfe,0xb6,0xfe,0xaf,0x6b,0x77,0xd0,0x01,0x1b,0xa4,
10493
+0xa5,0x01,0x1c,0xd0,0x76,0x70,0xcc,0xfe,0xe3,0xae,0x6e,0xc8,
10494
+0xac,0x8b,0x63,0x36,0x00,0x03,0x00,0x7b,0xff,0xe3,0x06,0x37,
10495
+0x05,0xd5,0x00,0x28,0x00,0x32,0x00,0x3a,0x00,0x00,0x13,0x21,
10496
+0x15,0x23,0x1e,0x03,0x17,0x11,0x23,0x22,0x2e,0x02,0x35,0x34,
10497
+0x3e,0x04,0x33,0x21,0x15,0x23,0x11,0x1e,0x03,0x15,0x14,0x0e,
10498
+0x01,0x04,0x23,0x22,0x24,0x2e,0x01,0x24,0x34,0x2e,0x02,0x27,
10499
+0x11,0x3e,0x02,0x01,0x23,0x22,0x06,0x15,0x14,0x3b,0x01,0x7b,
10500
+0x01,0x3e,0x47,0x08,0x3e,0x64,0x86,0x50,0x42,0x57,0x9d,0x78,
10501
+0x46,0x28,0x43,0x59,0x61,0x63,0x2d,0x01,0xc7,0xbe,0xa1,0xef,
10502
+0x9d,0x4e,0x5a,0xb7,0xfe,0xec,0xbb,0xaf,0xfe,0xf1,0xb9,0x62,
10503
+0x04,0xd0,0x33,0x65,0x97,0x63,0x63,0x97,0x65,0xfd,0xd7,0x3f,
10504
+0x77,0x7a,0xf1,0x3f,0x01,0xcc,0x6b,0x3b,0x5d,0x44,0x2b,0x08,
10505
+0x03,0x6b,0x18,0x3d,0x69,0x51,0x36,0x52,0x3b,0x26,0x17,0x09,
10506
+0x6b,0xfe,0xba,0x0b,0x56,0x8e,0xbe,0x72,0x74,0xc8,0x93,0x53,
10507
+0x4b,0x83,0xb3,0x39,0xd0,0x9b,0x6b,0x3c,0x09,0xfc,0x99,0x0a,
10508
+0x3d,0x6a,0x04,0x68,0x49,0x54,0xa6,0x00,0xff,0xff,0x00,0x75,
10509
+0x03,0xef,0x01,0x87,0x06,0x14,0x12,0x06,0x02,0x81,0x00,0x00,
10510
+0x00,0x01,0x00,0x5a,0x03,0xdb,0x01,0xd5,0x05,0xd5,0x00,0x08,
10511
+0x00,0x00,0x13,0x3e,0x01,0x3d,0x01,0x33,0x0e,0x01,0x07,0x5a,
10512
+0x5f,0x57,0xc5,0x08,0x91,0x92,0x04,0x2b,0x45,0xbb,0x85,0x25,
10513
+0xab,0xf5,0x5a,0x00,0x00,0x01,0x00,0x00,0x04,0xec,0x01,0xd9,
10514
+0x06,0x64,0x00,0x03,0x00,0x00,0x01,0x33,0x01,0x23,0x01,0x08,
10515
+0xd1,0xfe,0xc0,0x99,0x06,0x64,0xfe,0x88,0x00,0x01,0x00,0x05,
10516
+0x04,0xf1,0x03,0x13,0x07,0x25,0x00,0x15,0x00,0x00,0x01,0x22,
10517
+0x0e,0x02,0x15,0x23,0x34,0x3e,0x02,0x33,0x32,0x3e,0x02,0x35,
10518
+0x33,0x14,0x0e,0x02,0x01,0x8c,0x4e,0x71,0x4a,0x24,0x5a,0x3a,
10519
+0x68,0x8f,0x56,0x4d,0x70,0x49,0x23,0x5e,0x39,0x68,0x8f,0x05,
10520
+0xc7,0x2a,0x3f,0x4b,0x22,0x40,0x7e,0x63,0x3d,0x25,0x3c,0x4d,
10521
+0x28,0x4b,0x80,0x5e,0x35,0x00,0x00,0x00,0x00,0x01,0x00,0xaa,
10522
+0x04,0xec,0x02,0x73,0x06,0x64,0x00,0x03,0x00,0x00,0x09,0x01,
10523
+0x23,0x01,0x01,0x6f,0x01,0x04,0x75,0xfe,0xac,0x06,0x64,0xfe,
10524
+0x88,0x01,0x78,0x00,0x00,0x01,0x00,0x14,0x04,0xf1,0x03,0x07,
10525
+0x06,0xda,0x00,0x29,0x00,0x00,0x13,0x27,0x34,0x3e,0x02,0x33,
10526
+0x32,0x1e,0x02,0x15,0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,0x27,
10527
+0x33,0x1e,0x03,0x33,0x32,0x3e,0x02,0x35,0x2e,0x03,0x23,0x22,
10528
+0x0e,0x02,0x4d,0x39,0x47,0x77,0x99,0x52,0x40,0x77,0x5c,0x37,
10529
+0x20,0x3b,0x56,0x36,0x28,0x4a,0x3b,0x28,0x06,0x51,0x03,0x14,
10530
+0x1f,0x28,0x17,0x1b,0x2a,0x1b,0x0e,0x01,0x23,0x3c,0x4f,0x2d,
10531
+0x47,0x78,0x58,0x35,0x04,0xf1,0x01,0x7a,0xb7,0x7a,0x3d,0x1d,
10532
+0x40,0x65,0x47,0x30,0x52,0x3c,0x21,0x16,0x2d,0x43,0x2d,0x0f,
10533
+0x20,0x19,0x10,0x15,0x23,0x2e,0x19,0x27,0x3a,0x25,0x12,0x36,
10534
+0x62,0x89,0x00,0x00,0x00,0x01,0x00,0x5a,0x04,0xf1,0x03,0xb2,
10535
+0x06,0x14,0x00,0x05,0x00,0x00,0x13,0x11,0x33,0x15,0x21,0x15,
10536
+0x5a,0xb8,0x02,0xa0,0x04,0xf1,0x01,0x23,0xb8,0x6b,0x00,0x00,
10537
+0x00,0x01,0x00,0x39,0xff,0xe3,0x07,0x4d,0x04,0x27,0x00,0x2d,
10538
+0x00,0x00,0x25,0x06,0x23,0x22,0x26,0x35,0x11,0x23,0x35,0x21,
10539
+0x11,0x14,0x1e,0x02,0x33,0x32,0x36,0x35,0x11,0x23,0x35,0x21,
10540
+0x11,0x14,0x1e,0x02,0x33,0x32,0x36,0x35,0x11,0x23,0x35,0x21,
10541
+0x11,0x33,0x15,0x21,0x35,0x0e,0x01,0x23,0x22,0x26,0x03,0x72,
10542
+0x6b,0xdd,0xa7,0xa4,0xa6,0x01,0x5e,0x17,0x32,0x4e,0x38,0x7c,
10543
+0x80,0xa0,0x01,0x58,0x17,0x31,0x4f,0x38,0x7c,0x80,0xa0,0x01,
10544
+0x58,0xb0,0xfe,0x98,0x33,0x9e,0x64,0x7d,0xa5,0xcf,0xec,0xcf,
10545
+0xd1,0x02,0x3a,0x6a,0xfd,0x71,0x52,0x73,0x48,0x20,0xb9,0xb3,
10546
+0x01,0xe6,0x6a,0xfd,0x6a,0x50,0x70,0x46,0x20,0xb9,0xb3,0x01,
10547
+0xe6,0x6a,0xfc,0x42,0x69,0xbd,0x6a,0x70,0x7a,0x00,0x00,0x00,
10548
+0x00,0x01,0x00,0x4a,0xfe,0x56,0x04,0x72,0x04,0x44,0x00,0x1f,
10549
+0x00,0x00,0x25,0x15,0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,
10550
+0x23,0x35,0x21,0x15,0x3e,0x01,0x33,0x32,0x16,0x15,0x11,0x23,
10551
+0x11,0x34,0x2e,0x02,0x23,0x22,0x06,0x15,0x11,0x04,0x72,0xfd,
10552
+0x40,0xa0,0xfe,0x02,0xa6,0xb0,0x01,0x68,0x33,0xa2,0x6d,0xb0,
10553
+0xa6,0xb9,0x17,0x33,0x53,0x3c,0x81,0x85,0x6b,0x6b,0xfe,0xc0,
10554
+0x6a,0x6a,0x04,0xfc,0x6b,0xbd,0x6d,0x6d,0xca,0xd6,0xfe,0x91,
10555
+0x01,0x35,0x63,0x83,0x4e,0x20,0xba,0xb4,0xfe,0x1b,0x00,0x00,
10556
+0x00,0x02,0x00,0x66,0xfe,0x56,0x05,0xa4,0x04,0x44,0x00,0x1d,
10557
+0x00,0x29,0x00,0x00,0x25,0x15,0x21,0x11,0x33,0x15,0x21,0x35,
10558
+0x33,0x11,0x0e,0x01,0x23,0x22,0x2e,0x02,0x34,0x3e,0x02,0x33,
10559
+0x32,0x16,0x17,0x35,0x21,0x15,0x23,0x11,0x03,0x34,0x26,0x23,
10560
+0x22,0x06,0x10,0x16,0x33,0x32,0x36,0x35,0x05,0xa4,0xfe,0x8f,
10561
+0xb0,0xfd,0xea,0xae,0x36,0xa6,0x7c,0x63,0xa3,0x76,0x41,0x41,
10562
+0x76,0xa4,0x62,0x7c,0xa6,0x36,0x01,0x68,0xb0,0xb8,0x92,0x8d,
10563
+0x8e,0x9b,0x9a,0x8f,0x8d,0x92,0x6b,0x6b,0xfe,0xc1,0x6b,0x6b,
10564
+0x01,0xe5,0x64,0x5f,0x52,0x95,0xce,0xf8,0xce,0x94,0x52,0x5f,
10565
+0x64,0xa6,0x6b,0xfc,0xaf,0x01,0xdd,0xc0,0xc9,0xe0,0xfe,0x46,
10566
+0xe1,0xc8,0xc1,0x00,0x00,0x01,0x00,0x4a,0xfe,0x56,0x05,0xa4,
10567
+0x04,0x44,0x00,0x23,0x00,0x00,0x25,0x15,0x21,0x11,0x33,0x15,
10568
+0x21,0x35,0x33,0x11,0x34,0x2e,0x02,0x23,0x22,0x06,0x15,0x11,
10569
+0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x3e,0x01,
10570
+0x33,0x32,0x16,0x15,0x11,0x05,0xa4,0xfe,0xa6,0xa4,0xfe,0x04,
10571
+0x9f,0x17,0x33,0x53,0x3c,0x81,0x85,0xa0,0xfe,0x02,0xa6,0xb0,
10572
+0x01,0x68,0x33,0xa2,0x6d,0xb0,0xa6,0x6b,0x6b,0xfe,0xc0,0x6a,
10573
+0x6a,0x03,0xaa,0x63,0x83,0x4e,0x20,0xba,0xb4,0xfe,0x1a,0x6a,
10574
+0x6a,0x03,0x52,0x6b,0xbd,0x6d,0x6d,0xca,0xd6,0xfd,0xc7,0x00,
10575
+0x00,0x01,0x00,0x2f,0xff,0xe3,0x04,0xd3,0x06,0x14,0x00,0x1d,
10576
+0x00,0x00,0x01,0x15,0x21,0x11,0x14,0x1e,0x02,0x33,0x32,0x36,
10577
+0x35,0x11,0x33,0x11,0x33,0x15,0x21,0x35,0x0e,0x01,0x23,0x22,
10578
+0x26,0x35,0x11,0x23,0x35,0x21,0x11,0x04,0x96,0xfc,0xf6,0x16,
10579
+0x33,0x53,0x3d,0x81,0x85,0xb8,0xb0,0xfe,0x98,0x33,0xa2,0x6d,
10580
+0xb0,0xa6,0xa4,0x01,0x5d,0x04,0x27,0x6b,0xfe,0x01,0x62,0x83,
10581
+0x4e,0x21,0xba,0xb4,0x01,0x04,0xfd,0x90,0x6b,0xbd,0x6d,0x6d,
10582
+0xca,0xd6,0x04,0x27,0x6a,0xfe,0x13,0x00,0x00,0x02,0x00,0x66,
10583
+0xfe,0x56,0x05,0xa4,0x04,0x44,0x00,0x19,0x00,0x25,0x00,0x00,
10584
+0x01,0x15,0x21,0x35,0x33,0x11,0x0e,0x01,0x23,0x22,0x2e,0x02,
10585
+0x34,0x3e,0x02,0x33,0x32,0x16,0x17,0x35,0x21,0x15,0x23,0x11,
10586
+0x03,0x34,0x26,0x23,0x22,0x06,0x10,0x16,0x33,0x32,0x36,0x35,
10587
+0x05,0xa4,0xfd,0x7f,0x58,0x36,0xa6,0x7c,0x63,0xa3,0x76,0x41,
10588
+0x41,0x76,0xa4,0x62,0x7c,0xa6,0x36,0x01,0x68,0xb0,0xb8,0x92,
10589
+0x8d,0x8e,0x9b,0x9a,0x8f,0x8d,0x92,0xfe,0xc1,0x6b,0x6b,0x01,
10590
+0xe5,0x64,0x5f,0x52,0x95,0xce,0xf8,0xce,0x94,0x52,0x5f,0x64,
10591
+0xa6,0x6b,0xfb,0x05,0x03,0x87,0xc0,0xc9,0xe0,0xfe,0x46,0xe1,
10592
+0xc8,0xc1,0x00,0x00,0x00,0x01,0x00,0x39,0x00,0x00,0x04,0x14,
10593
+0x06,0x14,0x00,0x0d,0x00,0x00,0x01,0x15,0x21,0x11,0x21,0x15,
10594
+0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x11,0x04,0x14,0xfd,0x81,
10595
+0x02,0x1c,0xfc,0x88,0xa4,0xa4,0x01,0x5d,0x04,0x27,0x6b,0xfc,
10596
+0xaf,0x6b,0x6b,0x05,0x3f,0x6a,0xfe,0x13,0x00,0x01,0x00,0x39,
10597
+0xfe,0x56,0x04,0xdd,0x04,0x44,0x00,0x1f,0x00,0x00,0x13,0x35,
10598
+0x33,0x11,0x23,0x35,0x21,0x15,0x3e,0x01,0x33,0x32,0x16,0x15,
10599
+0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x34,0x2e,0x02,0x23,0x22,
10600
+0x06,0x15,0x11,0x21,0x15,0x43,0xa6,0xb0,0x01,0x68,0x33,0xa2,
10601
+0x6d,0xb0,0xa6,0xa4,0xfe,0x04,0x9f,0x17,0x33,0x53,0x3c,0x81,
10602
+0x85,0x03,0x13,0xfe,0x56,0x6a,0x04,0xfc,0x6b,0xbd,0x6d,0x6d,
10603
+0xca,0xd6,0xfd,0xc6,0x6a,0x6a,0x02,0x00,0x63,0x83,0x4e,0x20,
10604
+0xba,0xb4,0xfc,0x71,0x6b,0x00,0x00,0x00,0x00,0x02,0x00,0x39,
10605
+0xfe,0x56,0x06,0x71,0x04,0x43,0x00,0x34,0x00,0x43,0x00,0x00,
10606
+0x01,0x15,0x23,0x0e,0x03,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,
10607
+0x3b,0x01,0x2e,0x05,0x23,0x22,0x0e,0x02,0x15,0x11,0x33,0x15,
10608
+0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x3e,0x03,0x33,0x32,
10609
+0x1e,0x04,0x17,0x01,0x14,0x1e,0x02,0x32,0x3e,0x02,0x37,0x23,
10610
+0x22,0x0e,0x02,0x06,0x71,0xe8,0x03,0x47,0x75,0x9b,0xae,0x8c,
10611
+0x62,0x34,0x2d,0x5f,0x92,0x65,0xea,0x09,0x2e,0x42,0x51,0x59,
10612
+0x5d,0x2c,0x59,0x8d,0x64,0x35,0xa0,0xfe,0x02,0xa6,0xb0,0x01,
10613
+0x68,0x19,0x4e,0x6e,0x8f,0x59,0x3a,0x7b,0x75,0x6a,0x54,0x37,
10614
+0x09,0xfd,0x88,0x20,0x36,0x4a,0x54,0x57,0x49,0x2f,0x01,0xfa,
10615
+0x23,0x48,0x3a,0x25,0x02,0x2f,0x6b,0x77,0xb4,0x79,0x3d,0x2a,
10616
+0x4c,0x6c,0x41,0x3d,0x6c,0x51,0x2f,0x51,0x7b,0x59,0x3a,0x22,
10617
+0x0e,0x2b,0x5a,0x8a,0x5f,0xfc,0x70,0x6a,0x6a,0x04,0xfc,0x6b,
10618
+0xbd,0x31,0x50,0x39,0x1f,0x15,0x31,0x51,0x76,0x9f,0x68,0xfe,
10619
+0xd7,0x30,0x49,0x31,0x19,0x23,0x58,0x95,0x71,0x13,0x2c,0x49,
10620
+0x00,0x02,0x00,0x66,0xff,0xe3,0x05,0xa4,0x06,0x14,0x00,0x17,
10621
+0x00,0x24,0x00,0x00,0x04,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,
10622
+0x33,0x21,0x11,0x23,0x35,0x21,0x11,0x21,0x15,0x21,0x11,0x14,
10623
+0x0e,0x01,0x25,0x32,0x3e,0x02,0x35,0x11,0x21,0x22,0x06,0x15,
10624
+0x14,0x16,0x02,0xbc,0xde,0xb3,0x80,0x45,0x45,0x80,0xb4,0x6e,
10625
+0x01,0x2e,0xae,0x01,0x66,0x01,0x71,0xfe,0x8f,0x45,0x7f,0xfe,
10626
+0xde,0x46,0x70,0x4e,0x2a,0xfe,0xd2,0x8d,0x8d,0x8e,0x1d,0x4f,
10627
+0x90,0xc9,0x7a,0x7b,0xca,0x8f,0x4e,0x01,0x82,0x6b,0xfe,0x13,
10628
+0x6b,0xfe,0x49,0x7a,0xc9,0x90,0x11,0x39,0x72,0xa8,0x6f,0x01,
10629
+0xc2,0xe2,0xe0,0xdf,0xe3,0x00,0x00,0x00,0x00,0x01,0x00,0x39,
10630
+0xfe,0x56,0x04,0xdb,0x06,0x14,0x00,0x1f,0x00,0x00,0x01,0x3e,
10631
+0x01,0x33,0x32,0x16,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,
10632
+0x34,0x2e,0x02,0x23,0x22,0x06,0x15,0x11,0x33,0x15,0x21,0x35,
10633
+0x33,0x11,0x23,0x35,0x21,0x01,0x9f,0x33,0xa2,0x6d,0xb0,0xa6,
10634
+0xa4,0xfe,0x04,0x9f,0x17,0x33,0x53,0x3c,0x81,0x85,0xa0,0xfe,
10635
+0x02,0xa6,0xae,0x01,0x66,0x03,0x6a,0x6d,0x6d,0xca,0xd6,0xfd,
10636
+0xc6,0x6a,0x6a,0x02,0x00,0x63,0x83,0x4e,0x20,0xba,0xb4,0xfc,
10637
+0x70,0x6a,0x6a,0x06,0xe9,0x6b,0x00,0x00,0x00,0x01,0x00,0x2f,
10638
+0xfe,0x56,0x03,0x24,0x04,0x27,0x00,0x09,0x00,0x00,0x01,0x15,
10639
+0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x11,0x03,0x24,0xfd,0x0b,
10640
+0xb0,0xa6,0x01,0x5e,0xfe,0xc1,0x6b,0x6a,0x04,0xfd,0x6a,0xfa,
10641
+0x9a,0x00,0x00,0x00,0x00,0x01,0x00,0x39,0xfe,0x56,0x07,0x7e,
10642
+0x06,0x14,0x00,0x31,0x00,0x00,0x01,0x11,0x33,0x15,0x21,0x35,
10643
+0x0e,0x01,0x23,0x22,0x26,0x3d,0x01,0x34,0x2e,0x02,0x23,0x22,
10644
+0x06,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,
10645
+0x11,0x3e,0x01,0x33,0x32,0x16,0x1d,0x01,0x14,0x1e,0x02,0x33,
10646
+0x32,0x36,0x35,0x11,0x23,0x35,0x06,0xce,0xb0,0xfe,0x98,0x33,
10647
+0xa2,0x6d,0xb0,0xa6,0x17,0x33,0x53,0x3c,0x81,0x85,0xa0,0xfe,
10648
+0x02,0xa6,0xae,0x01,0x66,0x33,0xa2,0x6d,0xb0,0xa6,0x16,0x33,
10649
+0x53,0x3d,0x81,0x85,0xa0,0x04,0x27,0xfc,0x44,0x6b,0xbd,0x6d,
10650
+0x6d,0xca,0xd6,0xe7,0x63,0x83,0x4e,0x20,0xba,0xb4,0xfc,0x70,
10651
+0x6a,0x6a,0x06,0xe9,0x6b,0xfd,0x56,0x6d,0x6d,0xca,0xd6,0xe7,
10652
+0x62,0x83,0x4e,0x21,0xba,0xb4,0x01,0xe6,0x6a,0x00,0x00,0x00,
10653
+0x00,0x02,0x00,0x78,0xff,0xe3,0x04,0x7c,0x06,0x29,0x00,0x1b,
10654
+0x00,0x2f,0x00,0x00,0x01,0x14,0x0e,0x02,0x22,0x2e,0x02,0x35,
10655
+0x34,0x3e,0x02,0x37,0x25,0x13,0x17,0x07,0x01,0x1e,0x01,0x17,
10656
+0x21,0x15,0x23,0x1e,0x01,0x04,0x14,0x1e,0x02,0x33,0x32,0x3e,
10657
+0x02,0x35,0x34,0x2e,0x02,0x2f,0x01,0x22,0x0e,0x01,0x04,0x7c,
10658
+0x4e,0x89,0xbc,0xde,0xbc,0x89,0x4e,0x43,0x78,0xa5,0x62,0xfe,
10659
+0xc2,0xcd,0x57,0x63,0x01,0x7d,0x0e,0x1a,0x0e,0x01,0x07,0x98,
10660
+0x47,0x56,0xfc,0xc9,0x2c,0x51,0x72,0x46,0x42,0x72,0x53,0x2f,
10661
+0x19,0x39,0x5b,0x42,0x47,0x46,0x72,0x51,0x02,0x05,0x7a,0xc9,
10662
+0x90,0x4f,0x4f,0x90,0xc9,0x7a,0x72,0xbe,0x8d,0x56,0x0b,0xe1,
10663
+0x01,0x25,0x3d,0x8f,0xfe,0xf3,0x0a,0x14,0x0b,0x6b,0x54,0xd8,
10664
+0x1c,0xde,0xa8,0x71,0x39,0x35,0x67,0x98,0x64,0x4b,0x89,0x7b,
10665
+0x6b,0x2f,0x01,0x39,0x70,0x00,0x00,0x00,0x00,0x01,0x00,0x39,
10666
+0xfe,0x56,0x04,0xcd,0x06,0x14,0x00,0x1d,0x00,0x00,0x01,0x11,
10667
+0x0e,0x01,0x23,0x22,0x26,0x35,0x11,0x23,0x35,0x21,0x11,0x14,
10668
+0x1e,0x02,0x33,0x32,0x36,0x35,0x11,0x23,0x35,0x21,0x11,0x33,
10669
+0x15,0x21,0x35,0x03,0x75,0x33,0xa2,0x6d,0xb0,0xa6,0xa4,0x01,
10670
+0x5d,0x16,0x33,0x53,0x3d,0x81,0x85,0xa0,0x01,0x58,0xa0,0xfe,
10671
+0x02,0xfe,0xc0,0x01,0xfd,0x6d,0x6d,0xca,0xd6,0x04,0x27,0x6a,
10672
+0xfb,0xa9,0x62,0x83,0x4e,0x21,0xba,0xb4,0x01,0xe6,0x6a,0xfa,
10673
+0x99,0x6a,0x6a,0x00,0x00,0x01,0x00,0x39,0x00,0x00,0x04,0xdd,
10674
+0x06,0x14,0x00,0x1f,0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,
10675
+0x21,0x11,0x3e,0x01,0x33,0x32,0x16,0x15,0x11,0x33,0x15,0x21,
10676
+0x35,0x33,0x11,0x34,0x2e,0x02,0x23,0x22,0x06,0x15,0x11,0x33,
10677
+0x15,0x43,0xa6,0xb0,0x01,0x68,0x33,0xa2,0x6d,0xb0,0xa6,0xa4,
10678
+0xfe,0x04,0x9f,0x17,0x33,0x53,0x3c,0x81,0x85,0xa0,0x6a,0x05,
10679
+0x40,0x6a,0xfd,0x56,0x6d,0x6d,0xca,0xd6,0xfd,0xc6,0x6a,0x6a,
10680
+0x02,0x00,0x63,0x82,0x4d,0x20,0xb9,0xb3,0xfe,0x1a,0x6a,0x00,
10681
+0x00,0x02,0x00,0x8c,0xff,0xe3,0x04,0xdc,0x06,0x2f,0x00,0x35,
10682
+0x00,0x48,0x00,0x00,0x01,0x11,0x33,0x15,0x21,0x35,0x0e,0x01,
10683
+0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x04,0x37,0x23,0x22,0x2e,
10684
+0x04,0x35,0x34,0x36,0x3f,0x01,0x17,0x07,0x0e,0x01,0x15,0x14,
10685
+0x1e,0x02,0x33,0x32,0x36,0x37,0x17,0x0e,0x01,0x07,0x1e,0x03,
10686
+0x05,0x14,0x1e,0x02,0x33,0x32,0x36,0x3d,0x01,0x34,0x2e,0x02,
10687
+0x27,0x0e,0x03,0x04,0x2c,0xb0,0xfe,0x98,0x33,0xa2,0x6d,0x58,
10688
+0x9a,0x72,0x42,0x2e,0x50,0x6d,0x7d,0x89,0x44,0x16,0x26,0x55,
10689
+0x53,0x4c,0x3a,0x22,0x1b,0x1d,0x6a,0x45,0x1e,0x0b,0x10,0x1c,
10690
+0x42,0x6b,0x50,0x27,0x4f,0x25,0x2f,0x43,0x9c,0x4e,0x51,0x92,
10691
+0x6f,0x41,0xfd,0x23,0x2c,0x4d,0x69,0x3d,0x81,0x85,0x1f,0x45,
10692
+0x6e,0x50,0x36,0x5e,0x47,0x28,0x02,0x1f,0xfe,0x4c,0x6b,0xbd,
10693
+0x6d,0x6d,0x32,0x66,0x9d,0x6b,0x64,0xa8,0x91,0x7d,0x6f,0x65,
10694
+0x31,0x09,0x14,0x1d,0x28,0x33,0x1f,0x18,0x37,0x1e,0x6c,0x39,
10695
+0x1e,0x0b,0x18,0x0d,0x0b,0x24,0x22,0x1a,0x07,0x08,0x50,0x2c,
10696
+0x6a,0x42,0x09,0x4e,0x85,0xb7,0xd4,0x62,0x83,0x4e,0x21,0xba,
10697
+0xb4,0x48,0x67,0xa4,0x74,0x42,0x05,0x35,0x77,0x89,0x9b,0x00,
10698
+0x00,0x01,0x00,0x39,0xfe,0x56,0x05,0x93,0x04,0x44,0x00,0x1f,
10699
+0x00,0x00,0x01,0x15,0x21,0x35,0x33,0x11,0x34,0x2e,0x02,0x23,
10700
+0x22,0x06,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,
10701
+0x21,0x15,0x3e,0x01,0x33,0x32,0x16,0x15,0x11,0x05,0x93,0xfd,
10702
+0x91,0x5c,0x17,0x33,0x53,0x3c,0x81,0x85,0xa0,0xfe,0x02,0xa6,
10703
+0xb0,0x01,0x68,0x33,0xa2,0x6d,0xb0,0xa6,0xfe,0xc1,0x6b,0x6a,
10704
+0x03,0xaa,0x63,0x83,0x4e,0x20,0xba,0xb4,0xfe,0x1a,0x6a,0x6a,
10705
+0x03,0x52,0x6b,0xbd,0x6d,0x6d,0xca,0xd6,0xfc,0x1d,0x00,0x00,
10706
+0x00,0x02,0x00,0xa0,0xff,0xe3,0x04,0xf1,0x06,0x23,0x00,0x29,
10707
+0x00,0x3d,0x00,0x00,0x01,0x11,0x33,0x15,0x21,0x35,0x0e,0x01,
10708
+0x23,0x22,0x2e,0x02,0x35,0x34,0x12,0x37,0x23,0x35,0x33,0x3e,
10709
+0x03,0x33,0x32,0x16,0x17,0x15,0x23,0x2e,0x01,0x23,0x22,0x0e,
10710
+0x02,0x07,0x32,0x1e,0x02,0x05,0x1e,0x03,0x33,0x32,0x36,0x3d,
10711
+0x01,0x34,0x2e,0x02,0x2b,0x01,0x0e,0x01,0x15,0x14,0x04,0x41,
10712
+0xb0,0xfe,0x98,0x33,0xa2,0x6d,0x5e,0x9c,0x6f,0x3e,0x39,0x34,
10713
+0x5d,0x8c,0x33,0x80,0x93,0xa2,0x55,0x48,0x82,0x3f,0x5f,0x09,
10714
+0x53,0x52,0x44,0x7a,0x6c,0x5b,0x24,0x81,0xe5,0xab,0x64,0xfd,
10715
+0x23,0x06,0x2d,0x4a,0x65,0x3d,0x81,0x85,0x49,0x7b,0xa1,0x58,
10716
+0x26,0x21,0x24,0x02,0x1f,0xfe,0x4c,0x6b,0xbd,0x6d,0x6d,0x37,
10717
+0x71,0xad,0x77,0x7d,0x01,0x0d,0x83,0x6b,0x6a,0xb9,0x8a,0x4f,
10718
+0x21,0x21,0xcf,0x55,0x59,0x3f,0x6d,0x96,0x57,0x49,0x87,0xc0,
10719
+0xda,0x62,0x82,0x4f,0x21,0xba,0xb4,0x48,0x69,0x9c,0x66,0x32,
10720
+0x69,0xdd,0x6b,0x29,0x00,0x01,0x00,0x39,0xff,0xe3,0x05,0x2f,
10721
+0x06,0x2f,0x00,0x38,0x00,0x00,0x01,0x34,0x3e,0x02,0x33,0x32,
10722
+0x16,0x17,0x15,0x23,0x2e,0x01,0x23,0x22,0x0e,0x02,0x15,0x14,
10723
+0x1e,0x04,0x15,0x11,0x33,0x15,0x21,0x35,0x0e,0x01,0x23,0x22,
10724
+0x26,0x35,0x11,0x23,0x35,0x21,0x11,0x14,0x1e,0x02,0x33,0x32,
10725
+0x36,0x35,0x11,0x34,0x2e,0x04,0x02,0xe0,0x38,0x5c,0x75,0x3d,
10726
+0x48,0x82,0x3f,0x5f,0x07,0x55,0x52,0x18,0x35,0x2b,0x1d,0x18,
10727
+0x23,0x2a,0x23,0x18,0xb0,0xfe,0x98,0x33,0xa2,0x6d,0xb0,0xa6,
10728
+0xa4,0x01,0x5d,0x16,0x33,0x53,0x3d,0x81,0x85,0x16,0x21,0x27,
10729
+0x21,0x16,0x05,0x2d,0x3a,0x5f,0x44,0x25,0x21,0x21,0xdb,0x61,
10730
+0x59,0x14,0x26,0x38,0x23,0x24,0x3c,0x3c,0x40,0x4d,0x60,0x3d,
10731
+0xfc,0xfa,0x6b,0xbd,0x6d,0x6d,0xca,0xd6,0x02,0x3a,0x6a,0xfd,
10732
+0x96,0x62,0x83,0x4e,0x21,0xba,0xb4,0x01,0x76,0x40,0x64,0x53,
10733
+0x45,0x40,0x40,0x00,0x00,0x01,0xff,0xc8,0xfe,0x56,0x01,0xb0,
10734
+0x04,0x27,0x00,0x0f,0x00,0x00,0x13,0x23,0x35,0x21,0x11,0x14,
10735
+0x0e,0x02,0x2b,0x01,0x35,0x33,0x32,0x36,0x35,0xf8,0xae,0x01,
10736
+0x66,0x35,0x60,0x87,0x52,0x7a,0x7e,0x5b,0x57,0x03,0xbc,0x6b,
10737
+0xfb,0x8e,0x56,0x84,0x58,0x2d,0x6b,0x73,0x81,0x00,0x00,0x00,
10738
+0x00,0x01,0x00,0x6d,0xff,0xe3,0x04,0xdd,0x06,0x2f,0x00,0x3f,
10739
+0x00,0x00,0x01,0x14,0x1e,0x02,0x17,0x15,0x0e,0x03,0x15,0x11,
10740
+0x14,0x1e,0x02,0x33,0x32,0x36,0x35,0x11,0x23,0x35,0x21,0x11,
10741
+0x33,0x15,0x21,0x35,0x0e,0x01,0x23,0x22,0x26,0x35,0x11,0x34,
10742
+0x3e,0x02,0x37,0x2e,0x03,0x35,0x34,0x3e,0x02,0x33,0x32,0x16,
10743
+0x17,0x15,0x23,0x2e,0x01,0x23,0x22,0x0e,0x02,0x01,0x1a,0x10,
10744
+0x2c,0x4d,0x3c,0x0f,0x1b,0x13,0x0c,0x16,0x33,0x53,0x3d,0x81,
10745
+0x85,0xa0,0x01,0x58,0xb0,0xfe,0x98,0x33,0xa2,0x6d,0xb0,0xa6,
10746
+0x0f,0x1d,0x29,0x1b,0x42,0x57,0x33,0x14,0x36,0x5a,0x75,0x40,
10747
+0x48,0x82,0x3f,0x5f,0x07,0x55,0x52,0x18,0x34,0x2c,0x1c,0x05,
10748
+0x25,0x2f,0x56,0x45,0x2e,0x06,0x60,0x0a,0x26,0x30,0x38,0x1d,
10749
+0xfe,0xab,0x62,0x83,0x4e,0x21,0xba,0xb4,0x01,0xe6,0x6a,0xfc,
10750
+0x44,0x6b,0xbd,0x6d,0x6d,0xca,0xd6,0x01,0x85,0x20,0x43,0x3e,
10751
+0x33,0x11,0x10,0x3f,0x51,0x5d,0x2f,0x3f,0x67,0x49,0x27,0x21,
10752
+0x21,0xdb,0x61,0x59,0x14,0x29,0x3f,0x00,0x00,0x01,0xff,0xe2,
10753
+0xfe,0x56,0x03,0x7d,0x04,0x46,0x00,0x32,0x00,0x00,0x13,0x3e,
10754
+0x03,0x33,0x32,0x1e,0x02,0x15,0x14,0x0e,0x06,0x07,0x06,0x14,
10755
+0x15,0x14,0x16,0x33,0x21,0x15,0x21,0x22,0x2e,0x02,0x35,0x34,
10756
+0x3e,0x06,0x35,0x34,0x2e,0x02,0x23,0x22,0x06,0x07,0x11,0x28,
10757
+0x5b,0x69,0x7b,0x49,0x6f,0xa7,0x6f,0x37,0x3b,0x61,0x7c,0x82,
10758
+0x7e,0x65,0x40,0x04,0x01,0x41,0x48,0x02,0x0d,0xfd,0x30,0x23,
10759
+0x3a,0x2a,0x18,0x3f,0x67,0x83,0x89,0x83,0x67,0x3f,0x35,0x59,
10760
+0x74,0x3e,0x58,0x92,0x32,0x03,0x87,0x2e,0x48,0x30,0x19,0x3e,
10761
+0x69,0x8c,0x4d,0x51,0x97,0x8c,0x80,0x75,0x69,0x5e,0x53,0x24,
10762
+0x05,0x08,0x05,0x2d,0x20,0x6a,0x14,0x24,0x31,0x1e,0x2b,0x5d,
10763
+0x65,0x6c,0x74,0x7d,0x87,0x92,0x4e,0x52,0x77,0x4e,0x25,0x45,
10764
+0x43,0x00,0x00,0x00,0x00,0x01,0x00,0x54,0x00,0x00,0x04,0xf8,
10765
+0x04,0x44,0x00,0x1f,0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,
10766
+0x21,0x15,0x3e,0x01,0x33,0x32,0x16,0x15,0x11,0x33,0x15,0x21,
10767
+0x35,0x33,0x11,0x34,0x2e,0x02,0x23,0x22,0x06,0x15,0x11,0x33,
10768
+0x15,0x5e,0xa6,0xb0,0x01,0x68,0x33,0xa2,0x6d,0xb0,0xa6,0xa4,
10769
+0xfe,0x04,0x9f,0x17,0x33,0x53,0x3c,0x81,0x85,0xa0,0x6a,0x03,
10770
+0x52,0x6b,0xbd,0x6d,0x6d,0xca,0xd6,0xfd,0xc6,0x6a,0x6a,0x02,
10771
+0x00,0x63,0x83,0x4e,0x20,0xba,0xb4,0xfe,0x1a,0x6a,0x00,0x00,
10772
+0x00,0x01,0x00,0x24,0xfe,0x56,0x02,0xec,0x04,0x5b,0x00,0x32,
10773
+0x00,0x00,0x17,0x1e,0x03,0x33,0x21,0x15,0x21,0x22,0x2e,0x02,
10774
+0x35,0x34,0x3e,0x02,0x37,0x2e,0x03,0x35,0x34,0x36,0x3f,0x01,
10775
+0x17,0x07,0x0e,0x03,0x15,0x14,0x16,0x17,0x1e,0x03,0x33,0x17,
10776
+0x0e,0x03,0x15,0x14,0x16,0xea,0x03,0x0d,0x1e,0x33,0x27,0x01,
10777
+0x7a,0xfd,0xd7,0x23,0x3a,0x2a,0x18,0x4a,0x7e,0xa6,0x5c,0x48,
10778
+0x80,0x62,0x39,0x27,0x2a,0x6a,0x50,0x1e,0x08,0x14,0x12,0x0d,
10779
+0x21,0x2a,0x1b,0x48,0x50,0x56,0x29,0x20,0x78,0xba,0x7e,0x42,
10780
+0x01,0xe1,0x1d,0x24,0x16,0x08,0x6a,0x14,0x24,0x31,0x1e,0x5d,
10781
+0xd1,0xd5,0xd0,0x5c,0x09,0x29,0x45,0x64,0x45,0x33,0x65,0x2b,
10782
+0x6c,0x48,0x1e,0x08,0x1d,0x27,0x2d,0x17,0x21,0x3e,0x18,0x10,
10783
+0x1a,0x13,0x0a,0x51,0x59,0xcd,0xd1,0xc9,0x54,0x09,0x12,0x00,
10784
+0x00,0x01,0x00,0x39,0xfe,0x56,0x07,0x3d,0x04,0x27,0x00,0x2f,
10785
+0x00,0x00,0x01,0x11,0x0e,0x01,0x23,0x22,0x26,0x27,0x06,0x23,
10786
+0x22,0x26,0x35,0x11,0x23,0x35,0x21,0x03,0x14,0x1e,0x02,0x33,
10787
+0x32,0x36,0x35,0x11,0x23,0x35,0x21,0x11,0x14,0x1e,0x02,0x33,
10788
+0x32,0x36,0x35,0x11,0x23,0x35,0x21,0x11,0x33,0x15,0x21,0x35,
10789
+0x05,0xe5,0x33,0x9e,0x64,0x7d,0xa5,0x1c,0x6b,0xdd,0xa7,0xa4,
10790
+0xa6,0x01,0x5f,0x01,0x17,0x32,0x4e,0x38,0x7c,0x80,0xa0,0x01,
10791
+0x58,0x17,0x31,0x4f,0x38,0x7c,0x80,0xa0,0x01,0x58,0xa0,0xfe,
10792
+0x02,0xfe,0xc0,0x01,0xfd,0x6a,0x70,0x7a,0x72,0xec,0xcf,0xd1,
10793
+0x02,0x3a,0x6a,0xfd,0x71,0x52,0x73,0x48,0x20,0xb9,0xb3,0x01,
10794
+0xe6,0x6a,0xfd,0x6a,0x50,0x70,0x46,0x20,0xb9,0xb3,0x01,0xe6,
10795
+0x6a,0xfa,0x99,0x6a,0x6a,0x00,0x00,0x00,0x00,0x02,0x00,0x6f,
10796
+0xfe,0x56,0x04,0x23,0x04,0x46,0x00,0x2f,0x00,0x4c,0x00,0x00,
10797
+0x01,0x2e,0x03,0x35,0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,0x15,
10798
+0x14,0x0e,0x06,0x07,0x06,0x14,0x15,0x14,0x16,0x33,0x21,0x15,
10799
+0x21,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x37,0x36,0x35,0x34,
10800
+0x26,0x01,0x2e,0x03,0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,
10801
+0x17,0x1e,0x01,0x15,0x14,0x06,0x07,0x3e,0x03,0x35,0x3c,0x01,
10802
+0x01,0x8f,0x33,0x66,0x53,0x34,0x59,0x93,0xbd,0x63,0x6e,0xa0,
10803
+0x68,0x32,0x3b,0x61,0x7d,0x82,0x7e,0x64,0x41,0x03,0x01,0x41,
10804
+0x48,0x02,0x21,0xfd,0x1c,0x23,0x3a,0x2a,0x18,0x34,0x57,0x71,
10805
+0x3e,0x0c,0x1f,0x01,0xb2,0x07,0x3b,0x59,0x6e,0x3b,0x3a,0x5e,
10806
+0x43,0x25,0x2f,0x46,0x51,0x23,0x25,0x21,0x02,0x02,0x38,0x66,
10807
+0x4e,0x2e,0x01,0x0d,0x33,0x5b,0x64,0x73,0x4b,0x59,0x91,0x67,
10808
+0x38,0x45,0x6f,0x8c,0x48,0x4c,0x92,0x89,0x82,0x77,0x6c,0x5f,
10809
+0x52,0x22,0x05,0x08,0x05,0x2d,0x20,0x6a,0x14,0x24,0x31,0x1e,
10810
+0x27,0x55,0x5b,0x61,0x33,0x1e,0x1f,0x23,0x44,0x01,0xb6,0x48,
10811
+0x6f,0x4b,0x27,0x21,0x3a,0x50,0x30,0x37,0x5c,0x51,0x49,0x23,
10812
+0x26,0x5f,0x30,0x0c,0x18,0x0c,0x33,0x6c,0x72,0x78,0x3e,0x08,
10813
+0x10,0x00,0x00,0x00,0x00,0x01,0x00,0x54,0x00,0x00,0x05,0x0d,
10814
+0x04,0x44,0x00,0x29,0x00,0x00,0x25,0x15,0x21,0x35,0x33,0x3e,
10815
+0x03,0x35,0x34,0x2e,0x02,0x23,0x22,0x06,0x15,0x11,0x33,0x15,
10816
+0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x3e,0x01,0x33,0x32,
10817
+0x1e,0x02,0x15,0x14,0x0e,0x02,0x07,0x05,0x0d,0xfd,0xfe,0x4b,
10818
+0x24,0x38,0x25,0x13,0x1d,0x3f,0x64,0x47,0x8f,0x98,0xa0,0xfe,
10819
+0x02,0xa6,0xb0,0x01,0x68,0x36,0xac,0x74,0x56,0x96,0x6f,0x40,
10820
+0x21,0x39,0x4c,0x2c,0x6b,0x6b,0x6a,0x2f,0x7d,0x89,0x8d,0x40,
10821
+0x3f,0x7a,0x60,0x3b,0xb5,0xbb,0xfe,0x1a,0x6a,0x6a,0x03,0x52,
10822
+0x6b,0xbd,0x71,0x69,0x39,0x6d,0xa2,0x69,0x4d,0x94,0x8c,0x81,
10823
+0x3a,0x00,0x00,0x00,0x00,0x01,0x00,0x39,0xff,0xe3,0x04,0xdd,
10824
+0x04,0x27,0x00,0x1b,0x00,0x00,0x01,0x11,0x33,0x15,0x21,0x35,
10825
+0x0e,0x01,0x23,0x22,0x26,0x35,0x11,0x23,0x35,0x21,0x11,0x14,
10826
+0x1e,0x02,0x33,0x32,0x36,0x35,0x11,0x23,0x35,0x04,0x2d,0xb0,
10827
+0xfe,0x98,0x33,0xa2,0x6d,0xb0,0xa6,0xa4,0x01,0x5d,0x16,0x33,
10828
+0x53,0x3d,0x81,0x85,0xa0,0x04,0x27,0xfc,0x44,0x6b,0xbd,0x6d,
10829
+0x6d,0xca,0xd6,0x02,0x3a,0x6a,0xfd,0x96,0x62,0x83,0x4e,0x21,
10830
+0xba,0xb4,0x01,0xe6,0x6a,0x00,0x00,0x00,0x00,0x01,0x00,0x39,
10831
+0xfe,0x56,0x05,0xa4,0x06,0x14,0x00,0x1d,0x00,0x00,0x01,0x11,
10832
+0x21,0x15,0x21,0x35,0x33,0x11,0x0e,0x01,0x23,0x22,0x26,0x35,
10833
+0x11,0x23,0x35,0x21,0x11,0x14,0x1e,0x02,0x33,0x32,0x36,0x35,
10834
+0x11,0x23,0x35,0x04,0x2d,0x01,0x77,0xfd,0x7f,0x52,0x33,0xa2,
10835
+0x6d,0xb0,0xa6,0xa4,0x01,0x5d,0x16,0x33,0x53,0x3d,0x81,0x85,
10836
+0xa0,0x06,0x14,0xf8,0xad,0x6b,0x6b,0x01,0xfc,0x6d,0x6d,0xca,
10837
+0xd6,0x02,0x3a,0x6a,0xfd,0x96,0x62,0x83,0x4e,0x21,0xba,0xb4,
10838
+0x03,0xd3,0x6a,0x00,0x00,0x01,0x00,0x39,0xff,0xe3,0x07,0x37,
10839
+0x04,0x44,0x00,0x35,0x00,0x00,0x25,0x33,0x15,0x21,0x35,0x33,
10840
+0x11,0x34,0x2e,0x02,0x23,0x22,0x06,0x07,0x11,0x33,0x15,0x21,
10841
+0x35,0x0e,0x01,0x23,0x22,0x2e,0x02,0x35,0x11,0x23,0x35,0x21,
10842
+0x11,0x14,0x1e,0x02,0x33,0x32,0x36,0x35,0x11,0x23,0x35,0x21,
10843
+0x15,0x3e,0x01,0x33,0x32,0x1e,0x02,0x15,0x06,0x97,0xa0,0xfe,
10844
+0x08,0xa0,0x17,0x31,0x4f,0x38,0x79,0x80,0x03,0xb0,0xfe,0x98,
10845
+0x33,0x9e,0x64,0x3e,0x78,0x5e,0x3a,0xa0,0x01,0x58,0x17,0x31,
10846
+0x4f,0x38,0x7c,0x80,0xb0,0x01,0x68,0x33,0x9e,0x64,0x3e,0x78,
10847
+0x5e,0x3a,0x6b,0x6b,0x6b,0x02,0x2b,0x50,0x70,0x46,0x20,0xb0,
10848
+0xab,0xfe,0x09,0x6a,0xbd,0x6a,0x70,0x26,0x5c,0x9a,0x73,0x02,
10849
+0x4a,0x6b,0xfd,0x6a,0x50,0x70,0x46,0x20,0xb9,0xb3,0x01,0xe6,
10850
+0x6a,0xbd,0x6a,0x70,0x26,0x5c,0x9a,0x73,0x00,0x01,0x00,0x4a,
10851
+0xfe,0x56,0x04,0xee,0x04,0x44,0x00,0x1f,0x00,0x00,0x13,0x35,
10852
+0x33,0x11,0x23,0x35,0x21,0x15,0x3e,0x01,0x33,0x32,0x16,0x15,
10853
+0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x34,0x2e,0x02,0x23,0x22,
10854
+0x06,0x15,0x11,0x33,0x15,0x54,0xa6,0xb0,0x01,0x68,0x33,0xa2,
10855
+0x6d,0xb0,0xa6,0xa4,0xfe,0x04,0x9f,0x17,0x33,0x53,0x3c,0x81,
10856
+0x85,0xa0,0xfe,0x56,0x6a,0x04,0xfc,0x6b,0xbd,0x6d,0x6d,0xca,
10857
+0xd6,0xfd,0xc6,0x6a,0x6a,0x02,0x00,0x63,0x83,0x4e,0x20,0xba,
10858
+0xb4,0xfc,0x70,0x6a,0x00,0x02,0x00,0x6e,0xfe,0x39,0x04,0xeb,
10859
+0x04,0x44,0x00,0x23,0x00,0x2f,0x00,0x00,0x01,0x11,0x14,0x0e,
10860
+0x02,0x23,0x22,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x3d,
10861
+0x01,0x0e,0x01,0x23,0x22,0x2e,0x02,0x34,0x3e,0x02,0x33,0x32,
10862
+0x16,0x17,0x35,0x21,0x15,0x01,0x34,0x26,0x23,0x22,0x06,0x10,
10863
+0x16,0x33,0x32,0x36,0x35,0x04,0x3b,0x41,0x7c,0xb4,0x74,0xd3,
10864
+0xae,0x60,0x12,0x85,0x7e,0xa2,0x97,0x36,0xa6,0x7c,0x63,0xa3,
10865
+0x76,0x41,0x41,0x76,0xa4,0x62,0x7c,0xa6,0x36,0x01,0x68,0xfe,
10866
+0x98,0x92,0x8d,0x8e,0x9b,0x9a,0x8f,0x8d,0x92,0x03,0xbc,0xfc,
10867
+0x5b,0x72,0xb2,0x7a,0x40,0x4c,0xdf,0x69,0x5f,0xb7,0xc4,0x8f,
10868
+0x64,0x5f,0x52,0x95,0xce,0xf8,0xce,0x94,0x52,0x5f,0x64,0xa6,
10869
+0x6b,0xfe,0x8c,0xc0,0xc9,0xe0,0xfe,0x46,0xe1,0xc8,0xc1,0x00,
10870
+0x00,0x01,0x00,0x54,0x00,0x00,0x04,0x06,0x04,0x27,0x00,0x09,
10871
+0x00,0x00,0x25,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x11,
10872
+0x04,0x06,0xfc,0x4e,0xb0,0xa6,0x01,0x5e,0x6b,0x6b,0x6a,0x03,
10873
+0x53,0x6a,0xfc,0x44,0x00,0x01,0x00,0x39,0xfe,0x56,0x07,0x37,
10874
+0x06,0x14,0x00,0x37,0x00,0x00,0x01,0x11,0x0e,0x01,0x23,0x22,
10875
+0x2e,0x02,0x35,0x11,0x23,0x35,0x21,0x11,0x14,0x1e,0x02,0x33,
10876
+0x32,0x36,0x35,0x11,0x23,0x35,0x21,0x11,0x3e,0x01,0x33,0x32,
10877
+0x1e,0x02,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x34,0x2e,
10878
+0x02,0x23,0x22,0x06,0x07,0x11,0x33,0x15,0x21,0x35,0x03,0x5c,
10879
+0x33,0x9e,0x64,0x3e,0x78,0x5e,0x3a,0xa0,0x01,0x58,0x17,0x31,
10880
+0x4f,0x38,0x7c,0x80,0xa5,0x01,0x5d,0x33,0x9e,0x64,0x3e,0x78,
10881
+0x5e,0x3a,0xa0,0xfe,0x08,0xa0,0x17,0x31,0x4f,0x38,0x79,0x80,
10882
+0x03,0xa0,0xfe,0x02,0xfe,0xc0,0x01,0xfd,0x6a,0x70,0x26,0x5c,
10883
+0x9a,0x73,0x02,0x4a,0x6b,0xfd,0x6a,0x50,0x70,0x46,0x20,0xb9,
10884
+0xb3,0x03,0xd3,0x6a,0xfd,0x56,0x6a,0x70,0x26,0x5c,0x9a,0x73,
10885
+0xfd,0xb6,0x6b,0x6b,0x02,0x2b,0x50,0x70,0x46,0x20,0xb0,0xab,
10886
+0xfc,0x5f,0x6a,0x6a,0x00,0x02,0x00,0x18,0xfe,0x56,0x05,0x05,
10887
+0x04,0x44,0x00,0x1d,0x00,0x28,0x00,0x00,0x05,0x15,0x21,0x15,
10888
+0x23,0x35,0x23,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x3e,0x01,
10889
+0x33,0x32,0x1e,0x02,0x14,0x0e,0x02,0x23,0x22,0x26,0x27,0x19,
10890
+0x01,0x15,0x14,0x16,0x33,0x32,0x36,0x10,0x26,0x20,0x06,0x05,
10891
+0x05,0xfc,0x90,0xb8,0xc5,0xc5,0xb1,0x01,0x69,0x36,0xa6,0x7c,
10892
+0x62,0xa3,0x76,0x41,0x41,0x75,0xa4,0x62,0x7c,0xa6,0x36,0x92,
10893
+0x8d,0x8e,0x9a,0x9b,0xfe,0xe6,0x92,0xab,0x6b,0x94,0x94,0x6b,
10894
+0x04,0x67,0x6b,0xa6,0x64,0x5f,0x52,0x94,0xce,0xf8,0xce,0x95,
10895
+0x52,0x5f,0x64,0xfe,0xaf,0x02,0xf3,0x69,0xc1,0xc8,0xe1,0x01,
10896
+0xba,0xe0,0xc9,0x00,0x00,0x02,0x00,0x6e,0xff,0xe3,0x04,0x72,
10897
+0x04,0x44,0x00,0x08,0x00,0x1b,0x00,0x00,0x25,0x32,0x36,0x10,
10898
+0x26,0x20,0x06,0x10,0x16,0x04,0x22,0x2e,0x02,0x35,0x34,0x3e,
10899
+0x02,0x33,0x32,0x1e,0x02,0x15,0x14,0x0e,0x01,0x02,0x70,0x95,
10900
+0xa0,0xa0,0xfe,0xd6,0xa0,0xa1,0x01,0x09,0xea,0xbd,0x87,0x49,
10901
+0x49,0x87,0xbe,0x74,0x75,0xbd,0x87,0x49,0x49,0x86,0x46,0xe9,
10902
+0x01,0xca,0xe8,0xe8,0xfe,0x36,0xe9,0x63,0x51,0x94,0xce,0x7e,
10903
+0x7f,0xce,0x93,0x50,0x51,0x93,0xce,0x7e,0x7d,0xcf,0x94,0x00,
10904
+0x00,0x03,0x00,0x28,0xfe,0x56,0x06,0x15,0x06,0x14,0x00,0x2d,
10905
+0x00,0x36,0x00,0x42,0x00,0x00,0x13,0x21,0x15,0x23,0x1e,0x01,
10906
+0x17,0x11,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x04,0x33,0x21,
10907
+0x15,0x23,0x11,0x1e,0x03,0x15,0x14,0x0e,0x02,0x07,0x11,0x33,
10908
+0x15,0x21,0x35,0x33,0x11,0x2e,0x03,0x25,0x34,0x2e,0x02,0x27,
10909
+0x11,0x3e,0x01,0x01,0x23,0x22,0x0e,0x02,0x14,0x1e,0x02,0x3b,
10910
+0x01,0x28,0x01,0x2a,0x45,0x0d,0xe3,0xca,0x6a,0x57,0x97,0x70,
10911
+0x40,0x25,0x3f,0x53,0x5d,0x61,0x2c,0x01,0xdb,0xbc,0xa2,0xf7,
10912
+0xa7,0x56,0x50,0xa4,0xf9,0xa9,0xa0,0xfe,0x02,0xa6,0xae,0xfd,
10913
+0xa5,0x4f,0x05,0x22,0x42,0x79,0xa9,0x67,0xe0,0xeb,0xfd,0x7d,
10914
+0x67,0x35,0x52,0x39,0x1d,0x1e,0x38,0x52,0x35,0x67,0x02,0x22,
10915
+0x6a,0xa0,0xa9,0x0d,0x03,0x5b,0x21,0x49,0x73,0x51,0x36,0x56,
10916
+0x42,0x2f,0x1e,0x0e,0x6b,0xfe,0x7b,0x09,0x4e,0x83,0xb6,0x72,
10917
+0x6c,0xc0,0x93,0x5e,0x0b,0xfe,0xc6,0x6a,0x6a,0x01,0x39,0x09,
10918
+0x5d,0x94,0xc1,0x6e,0x68,0x93,0x61,0x33,0x08,0xfc,0xab,0x13,
10919
+0xd9,0x04,0x59,0x1c,0x32,0x46,0x52,0x48,0x35,0x1f,0x00,0x00,
10920
+0x00,0x01,0x00,0x39,0xff,0xe3,0x06,0x77,0x06,0x14,0x00,0x1d,
10921
+0x00,0x00,0x25,0x15,0x21,0x35,0x0e,0x01,0x23,0x22,0x26,0x35,
10922
+0x11,0x23,0x35,0x21,0x11,0x14,0x1e,0x02,0x33,0x32,0x36,0x37,
10923
+0x11,0x23,0x35,0x21,0x15,0x33,0x11,0x06,0x77,0xfc,0xfe,0x33,
10924
+0xa2,0x6d,0xb0,0xa6,0xa4,0x01,0x5d,0x16,0x33,0x53,0x3d,0x7d,
10925
+0x85,0x04,0xa6,0x01,0x5c,0x02,0x6b,0x6b,0xbd,0x6d,0x6d,0xca,
10926
+0xd6,0x04,0x27,0x6a,0xfb,0xa9,0x62,0x83,0x4e,0x21,0xb1,0xab,
10927
+0x01,0xf8,0x6a,0x6a,0xfc,0xae,0x00,0x00,0x00,0x02,0x00,0xd5,
10928
+0xff,0xe3,0x01,0xdf,0x03,0x79,0x00,0x10,0x00,0x22,0x00,0x00,
10929
+0x37,0x34,0x3e,0x02,0x32,0x1e,0x02,0x14,0x0e,0x02,0x22,0x2e,
10930
+0x02,0x10,0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,0x15,0x14,0x0e,
10931
+0x02,0x22,0x2e,0x01,0xd5,0x15,0x24,0x30,0x38,0x30,0x24,0x15,
10932
+0x14,0x23,0x31,0x3a,0x31,0x23,0x14,0x15,0x25,0x30,0x1b,0x1c,
10933
+0x31,0x24,0x14,0x14,0x24,0x31,0x38,0x31,0x24,0x68,0x1c,0x31,
10934
+0x24,0x15,0x15,0x25,0x31,0x36,0x31,0x24,0x15,0x15,0x24,0x31,
10935
+0x02,0x8b,0x38,0x31,0x24,0x14,0x14,0x24,0x31,0x1c,0x1d,0x30,
10936
+0x24,0x14,0x14,0x24,0x00,0x01,0x00,0x5a,0x01,0x9f,0x02,0x5a,
10937
+0x02,0x73,0x00,0x0d,0x00,0x00,0x13,0x1e,0x01,0x33,0x32,0x36,
10938
+0x37,0x15,0x0e,0x01,0x23,0x22,0x26,0x27,0x5a,0x3f,0x7f,0x42,
10939
+0x3e,0x80,0x42,0x3f,0x7f,0x42,0x3f,0x7f,0x42,0x02,0x73,0x1b,
10940
+0x1d,0x1b,0x1d,0x9c,0x1b,0x1d,0x1b,0x1d,0x00,0x05,0x00,0x52,
10941
+0xfe,0xd3,0x04,0xc9,0x06,0x14,0x00,0x1a,0x00,0x1e,0x00,0x27,
10942
+0x00,0x2b,0x00,0x34,0x00,0x00,0x01,0x33,0x15,0x33,0x32,0x16,
10943
+0x15,0x14,0x06,0x07,0x1e,0x01,0x15,0x06,0x07,0x06,0x07,0x11,
10944
+0x23,0x11,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x03,0x33,0x11,
10945
+0x23,0x01,0x36,0x37,0x36,0x35,0x34,0x27,0x26,0x27,0x01,0x33,
10946
+0x11,0x23,0x01,0x36,0x37,0x36,0x35,0x34,0x27,0x26,0x27,0x02,
10947
+0x6c,0x64,0x1b,0xcc,0xce,0x90,0x89,0xab,0xb2,0x01,0x7e,0x7b,
10948
+0xff,0x64,0xfd,0xe6,0xab,0xab,0x02,0x1a,0xb8,0xb8,0xb8,0x01,
10949
+0x1c,0x6a,0x37,0x44,0x44,0x37,0x6a,0xfe,0xe4,0xb8,0xb8,0x01,
10950
+0x1c,0x97,0x48,0x4b,0x4a,0x47,0x99,0x06,0x14,0xfa,0xa2,0xa1,
10951
+0x74,0x8a,0x10,0x15,0xab,0x8f,0xc2,0x5c,0x59,0x03,0xfe,0xd3,
10952
+0x01,0x2d,0x5d,0x04,0x5f,0x5e,0xfd,0xd8,0x01,0xca,0xfe,0x38,
10953
+0x09,0x2c,0x37,0x77,0x79,0x36,0x2c,0x08,0xfb,0xa3,0x02,0x38,
10954
+0xfd,0xc8,0x03,0x41,0x44,0x95,0x94,0x44,0x41,0x02,0x00,0x00,
10955
+0x00,0x02,0x00,0x6e,0x00,0x00,0x05,0x6e,0x06,0xc7,0x00,0x1e,
10956
+0x00,0x3a,0x00,0x00,0x01,0x34,0x2e,0x02,0x2b,0x01,0x22,0x0e,
10957
+0x02,0x15,0x23,0x35,0x23,0x35,0x25,0x17,0x37,0x3e,0x01,0x33,
10958
+0x05,0x32,0x1e,0x02,0x15,0x33,0x15,0x21,0x03,0x33,0x35,0x34,
10959
+0x2e,0x02,0x23,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,
10960
+0x11,0x21,0x32,0x1e,0x02,0x1d,0x01,0x33,0x15,0x21,0x03,0xfc,
10961
+0x0d,0x1e,0x35,0x29,0x9a,0x36,0x5b,0x42,0x25,0xf3,0x80,0x01,
10962
+0x33,0x42,0x21,0x29,0x70,0x39,0x01,0x18,0x52,0x65,0x37,0x12,
10963
+0x80,0xfe,0x8e,0x80,0x80,0x08,0x11,0x20,0x18,0xfc,0xc3,0x80,
10964
+0x80,0x01,0xf2,0x7f,0x01,0xcf,0x4e,0x77,0x50,0x29,0x80,0xfe,
10965
+0x0e,0x05,0xcc,0x29,0x39,0x22,0x10,0x25,0x35,0x3c,0x17,0xad,
10966
+0x66,0x01,0x68,0x01,0x35,0x32,0x01,0x44,0x6c,0x88,0x42,0x66,
10967
+0xfb,0x7f,0xb1,0x1a,0x2e,0x22,0x13,0x6a,0x02,0xba,0x4d,0x4d,
10968
+0xfd,0x46,0x28,0x47,0x5f,0x38,0x92,0x65,0x00,0x01,0x00,0x6e,
10969
+0x00,0x00,0x06,0x74,0x06,0xc7,0x00,0x2b,0x00,0x00,0x25,0x33,
10970
+0x35,0x34,0x26,0x23,0x21,0x35,0x33,0x11,0x21,0x22,0x2e,0x02,
10971
+0x35,0x03,0x27,0x35,0x21,0x15,0x23,0x11,0x14,0x1e,0x02,0x33,
10972
+0x21,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x32,0x16,0x1d,
10973
+0x01,0x33,0x15,0x21,0x04,0xcd,0x71,0x20,0x30,0xfe,0x8e,0x80,
10974
+0xfe,0x5c,0x60,0x88,0x57,0x29,0x02,0x80,0x01,0xf2,0x7f,0x10,
10975
+0x1f,0x32,0x21,0x01,0x99,0x80,0x01,0xf2,0x80,0x87,0x58,0x59,
10976
+0x4e,0xfe,0x59,0x65,0xa3,0x45,0x46,0x6a,0x01,0x5c,0x21,0x48,
10977
+0x76,0x55,0x01,0xd2,0x01,0x67,0x68,0xfe,0x1e,0x34,0x47,0x2b,
10978
+0x13,0x02,0x9b,0x68,0x68,0xfb,0x9e,0x80,0x74,0xa4,0x65,0x00,
10979
+0x00,0x01,0x00,0x6e,0xff,0x89,0x06,0x46,0x06,0xc8,0x00,0x23,
10980
+0x00,0x00,0x05,0x32,0x3e,0x02,0x35,0x34,0x2e,0x02,0x2b,0x01,
10981
+0x35,0x33,0x11,0x21,0x11,0x33,0x15,0x21,0x35,0x37,0x11,0x23,
10982
+0x35,0x21,0x15,0x23,0x11,0x33,0x32,0x1e,0x02,0x15,0x21,0x04,
10983
+0xc3,0x21,0x44,0x37,0x22,0x23,0x44,0x62,0x40,0xfc,0x80,0xfd,
10984
+0xe5,0x7f,0xfe,0x0e,0x80,0x80,0x05,0x00,0x80,0x31,0x68,0x75,
10985
+0x3b,0x0f,0xfe,0x7d,0x11,0x0a,0x2b,0x58,0x4f,0x3b,0x4e,0x2d,
10986
+0x12,0x6a,0x04,0x63,0xfd,0xba,0x6e,0x6d,0x01,0x02,0x46,0x68,
10987
+0x68,0xfb,0x9d,0x4f,0x9d,0xeb,0x9d,0x00,0x00,0x02,0x00,0x83,
10988
+0x00,0x02,0x06,0x5c,0x06,0xc7,0x00,0x17,0x00,0x43,0x00,0x00,
10989
+0x01,0x34,0x2e,0x02,0x2b,0x01,0x22,0x0e,0x02,0x1d,0x01,0x14,
10990
+0x1e,0x02,0x3b,0x01,0x32,0x3e,0x02,0x35,0x33,0x14,0x0e,0x02,
10991
+0x23,0x21,0x22,0x2e,0x02,0x3d,0x01,0x34,0x3e,0x02,0x3f,0x01,
10992
+0x11,0x21,0x15,0x07,0x23,0x35,0x37,0x11,0x21,0x11,0x33,0x15,
10993
+0x23,0x27,0x35,0x21,0x11,0x17,0x1e,0x05,0x15,0x05,0x69,0x2a,
10994
+0x61,0x9e,0x72,0xa6,0x67,0xa2,0x6e,0x3a,0x2c,0x66,0xa6,0x7b,
10995
+0xa4,0x71,0x9d,0x62,0x2b,0xf3,0x54,0x95,0xcd,0x7a,0xfe,0x8a,
10996
+0x7b,0xce,0x96,0x54,0x67,0xa3,0xc8,0x61,0x49,0xfe,0x90,0x95,
10997
+0x77,0x51,0x05,0x35,0x53,0x5e,0xb1,0xfe,0x97,0x48,0x3f,0x83,
10998
+0x7d,0x6f,0x51,0x31,0x02,0xb0,0x74,0xb7,0x82,0x44,0x3e,0x7b,
10999
+0xb6,0x78,0x4e,0x87,0xc5,0x7e,0x3d,0x4b,0x88,0xbf,0x75,0x8e,
11000
+0xe5,0xa0,0x57,0x59,0xa3,0xe3,0x8b,0x7a,0x6e,0xb4,0x84,0x54,
11001
+0x0f,0x01,0x01,0x70,0xa2,0x9c,0x66,0x01,0x01,0x3e,0xfe,0xc1,
11002
+0x66,0x9c,0xa2,0xfe,0x90,0x01,0x09,0x30,0x4a,0x5f,0x6d,0x7b,
11003
+0x3f,0x00,0x00,0x00,0x00,0x01,0x00,0x6e,0x00,0x00,0x05,0x6e,
11004
+0x06,0xc7,0x00,0x13,0x00,0x00,0x25,0x33,0x11,0x21,0x11,0x33,
11005
+0x15,0x21,0x35,0x37,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x33,
11006
+0x15,0x21,0x03,0x7c,0x80,0xfd,0xe5,0x7f,0xfe,0x0e,0x80,0x80,
11007
+0x05,0x00,0x80,0x80,0xfe,0x0e,0x65,0x05,0xfb,0xfd,0xb5,0x67,
11008
+0x67,0x01,0x02,0x4a,0x67,0x67,0xfa,0x05,0x65,0x00,0x00,0x00,
11009
+0x00,0x01,0x00,0x6e,0x00,0x00,0x07,0xc0,0x06,0xc7,0x00,0x25,
11010
+0x00,0x00,0x01,0x34,0x2e,0x02,0x23,0x21,0x11,0x33,0x15,0x21,
11011
+0x35,0x33,0x11,0x21,0x03,0x33,0x07,0x21,0x35,0x33,0x11,0x23,
11012
+0x35,0x21,0x15,0x23,0x11,0x21,0x32,0x1e,0x02,0x15,0x11,0x33,
11013
+0x15,0x21,0x06,0x86,0x11,0x20,0x2c,0x1b,0xfe,0xe0,0x80,0xfe,
11014
+0x10,0x7e,0xfd,0xe6,0x01,0x7e,0x01,0xfe,0x10,0x80,0x80,0x05,
11015
+0x00,0x80,0x01,0x6c,0x35,0x63,0x49,0x2c,0x59,0xfe,0xc6,0x03,
11016
+0x0d,0x2d,0x3e,0x26,0x0f,0xfc,0xb8,0x65,0x65,0x05,0xfb,0xfd,
11017
+0xb6,0x69,0x69,0x02,0x4a,0x67,0x67,0xfd,0xb5,0x2a,0x48,0x64,
11018
+0x3a,0xfe,0xf8,0x6b,0x00,0x02,0x00,0x1a,0x00,0x00,0x06,0xc5,
11019
+0x06,0xc7,0x00,0x12,0x00,0x39,0x00,0x00,0x01,0x34,0x2e,0x02,
11020
+0x23,0x21,0x11,0x14,0x1e,0x02,0x3b,0x01,0x32,0x3e,0x02,0x35,
11021
+0x17,0x14,0x06,0x23,0x21,0x22,0x2e,0x02,0x35,0x11,0x25,0x22,
11022
+0x2e,0x02,0x3d,0x01,0x23,0x35,0x21,0x07,0x23,0x15,0x14,0x1e,
11023
+0x02,0x33,0x21,0x15,0x27,0x17,0x21,0x32,0x1e,0x02,0x15,0x05,
11024
+0xd4,0x12,0x23,0x36,0x24,0xfe,0x4e,0x15,0x2e,0x4b,0x36,0xee,
11025
+0x24,0x36,0x23,0x12,0xf1,0xa5,0xad,0xfe,0x54,0x41,0x6e,0x4f,
11026
+0x2c,0xfe,0xb5,0x2d,0x45,0x2e,0x18,0x80,0x01,0xf4,0x02,0x7f,
11027
+0x0b,0x18,0x27,0x1c,0x02,0x1c,0x7d,0x01,0x01,0xf5,0x37,0x72,
11028
+0x5b,0x39,0x02,0xff,0x24,0x40,0x2f,0x1b,0xfd,0x85,0x38,0x4d,
11029
+0x32,0x17,0x15,0x36,0x5a,0x45,0x08,0xa0,0xa6,0x2c,0x48,0x61,
11030
+0x34,0x03,0xf1,0x01,0x32,0x49,0x58,0x27,0x6b,0x67,0x67,0x5e,
11031
+0x1f,0x38,0x2e,0x1b,0x68,0x01,0xe6,0x21,0x45,0x69,0x47,0x00,
11032
+0x00,0x02,0x00,0x83,0x00,0x00,0x08,0xb4,0x06,0xc7,0x00,0x11,
11033
+0x00,0x37,0x00,0x00,0x01,0x22,0x0e,0x02,0x1d,0x01,0x14,0x1e,
11034
+0x04,0x3b,0x01,0x37,0x11,0x23,0x01,0x34,0x2e,0x02,0x23,0x21,
11035
+0x11,0x17,0x15,0x21,0x22,0x24,0x26,0x02,0x3d,0x01,0x34,0x3e,
11036
+0x04,0x33,0x21,0x15,0x07,0x11,0x21,0x32,0x1e,0x02,0x15,0x11,
11037
+0x33,0x15,0x21,0x03,0xda,0x85,0xda,0x9b,0x55,0x27,0x48,0x68,
11038
+0x82,0x9a,0x56,0xa2,0x2f,0x2f,0x02,0xc7,0x08,0x1c,0x37,0x2f,
11039
+0xfe,0xe1,0x7f,0xfd,0xbe,0xc1,0xfe,0xc8,0xdd,0x78,0x3c,0x6f,
11040
+0x9b,0xbe,0xdb,0x78,0x02,0x39,0x7f,0x01,0x2f,0x4b,0x85,0x63,
11041
+0x3a,0x84,0xfe,0x89,0x06,0x61,0x6b,0xb8,0xf4,0x8b,0xbb,0x4f,
11042
+0x9f,0x95,0x83,0x62,0x39,0x02,0x05,0xfc,0xfc,0xcd,0x47,0x66,
11043
+0x45,0x21,0xfc,0x24,0x02,0x63,0x7a,0xd0,0x01,0x12,0x9a,0xd8,
11044
+0x67,0xc1,0xa9,0x8d,0x63,0x38,0x65,0x01,0xfe,0x44,0x35,0x62,
11045
+0x8b,0x55,0xfe,0xcf,0x6a,0x00,0x00,0x00,0x00,0x01,0x00,0x1a,
11046
+0x00,0x00,0x04,0x19,0x06,0xc7,0x00,0x19,0x00,0x00,0x25,0x33,
11047
+0x11,0x21,0x22,0x2e,0x02,0x3d,0x01,0x23,0x35,0x21,0x15,0x23,
11048
+0x07,0x14,0x16,0x33,0x21,0x15,0x23,0x11,0x33,0x15,0x21,0x02,
11049
+0x35,0x7c,0xfe,0xb1,0x31,0x4c,0x33,0x1b,0x7d,0x01,0xf0,0x7e,
11050
+0x01,0x39,0x46,0x02,0x0f,0x76,0x76,0xfe,0x1c,0x65,0x04,0x80,
11051
+0x24,0x3c,0x4e,0x2a,0xa3,0x67,0x67,0x8e,0x42,0x43,0x68,0xfb,
11052
+0x80,0x65,0x00,0x00,0x00,0x02,0x00,0x6e,0x00,0x00,0x05,0x91,
11053
+0x06,0xc7,0x00,0x0d,0x00,0x29,0x00,0x00,0x01,0x34,0x2e,0x02,
11054
+0x23,0x21,0x13,0x14,0x1e,0x02,0x33,0x25,0x1b,0x01,0x37,0x15,
11055
+0x21,0x35,0x33,0x11,0x21,0x22,0x2e,0x04,0x35,0x11,0x23,0x35,
11056
+0x21,0x15,0x23,0x03,0x21,0x32,0x1e,0x02,0x04,0x19,0x28,0x48,
11057
+0x66,0x3e,0xfe,0xdc,0x01,0x13,0x34,0x5c,0x49,0x01,0x4b,0xf3,
11058
+0x02,0x83,0xfe,0x09,0x81,0xfd,0xdc,0x30,0x4d,0x3b,0x2b,0x1a,
11059
+0x0c,0x80,0x01,0xf2,0x7e,0x01,0x02,0x06,0x4a,0x6f,0x48,0x24,
11060
+0x03,0xdb,0x45,0x66,0x44,0x22,0xfe,0x18,0x47,0x6b,0x48,0x23,
11061
+0x01,0x01,0xce,0xfc,0xaf,0x01,0x66,0x65,0x01,0x18,0x22,0x3a,
11062
+0x4c,0x54,0x57,0x28,0x03,0x67,0x68,0x68,0xfe,0xf9,0x3c,0x6f,
11063
+0x99,0x00,0x00,0x00,0x00,0x02,0x00,0x59,0x00,0x00,0x07,0x25,
11064
+0x06,0xc7,0x00,0x12,0x00,0x31,0x00,0x00,0x01,0x34,0x2e,0x02,
11065
+0x23,0x21,0x11,0x14,0x1e,0x02,0x1f,0x01,0x16,0x3e,0x02,0x35,
11066
+0x37,0x14,0x0e,0x02,0x23,0x21,0x22,0x2e,0x02,0x35,0x11,0x05,
11067
+0x11,0x21,0x35,0x33,0x11,0x27,0x35,0x21,0x15,0x23,0x13,0x21,
11068
+0x32,0x1e,0x02,0x15,0x06,0x34,0x1d,0x33,0x47,0x2a,0xfe,0x8b,
11069
+0x1b,0x34,0x4a,0x2f,0xb8,0x2a,0x42,0x2d,0x19,0xf5,0x31,0x59,
11070
+0x7c,0x4b,0xfe,0x96,0x52,0x82,0x5c,0x32,0xfe,0xc3,0xfe,0x8e,
11071
+0x7e,0x7e,0x04,0x26,0x82,0x01,0x01,0xd4,0x43,0x7c,0x5d,0x37,
11072
+0x02,0xe3,0x23,0x49,0x3b,0x23,0xfd,0x8a,0x26,0x4a,0x3b,0x25,
11073
+0x01,0x03,0x01,0x2b,0x47,0x59,0x2f,0x1c,0x4f,0x8a,0x65,0x3a,
11074
+0x2f,0x58,0x7e,0x51,0x05,0x0a,0x01,0xfd,0x4e,0x69,0x02,0x49,
11075
+0x01,0x67,0x67,0xfd,0xb6,0x33,0x58,0x75,0x42,0x00,0x00,0x00,
11076
+0x00,0x02,0x00,0x8e,0x00,0x00,0x07,0x63,0x06,0xc7,0x00,0x12,
11077
+0x00,0x48,0x00,0x00,0x01,0x22,0x0e,0x02,0x15,0x11,0x14,0x1e,
11078
+0x02,0x3b,0x01,0x32,0x3e,0x02,0x35,0x11,0x05,0x34,0x2e,0x02,
11079
+0x2b,0x01,0x11,0x14,0x0e,0x02,0x23,0x21,0x22,0x2e,0x02,0x35,
11080
+0x11,0x10,0x29,0x01,0x11,0x25,0x22,0x2e,0x02,0x35,0x27,0x23,
11081
+0x35,0x21,0x15,0x27,0x15,0x14,0x16,0x33,0x21,0x15,0x23,0x11,
11082
+0x21,0x32,0x1e,0x02,0x15,0x11,0x33,0x15,0x21,0x02,0x8c,0x52,
11083
+0x69,0x3a,0x16,0x17,0x31,0x4c,0x34,0x78,0x34,0x51,0x37,0x1c,
11084
+0x02,0x56,0x14,0x32,0x52,0x3e,0x8d,0x27,0x53,0x82,0x5d,0xfe,
11085
+0xf4,0x5d,0x97,0x6b,0x3a,0x01,0xfe,0x01,0x0d,0xfe,0xae,0x2a,
11086
+0x48,0x35,0x1e,0x01,0x7c,0x01,0xf0,0x81,0x2b,0x24,0x02,0x4b,
11087
+0x82,0x01,0x4a,0x48,0x65,0x40,0x1d,0x83,0xfe,0x8c,0x03,0xad,
11088
+0x18,0x36,0x59,0x41,0xfe,0x89,0x26,0x53,0x44,0x2c,0x28,0x41,
11089
+0x54,0x2c,0x02,0x5f,0xca,0x43,0x50,0x2b,0x0c,0xfd,0xa1,0x5b,
11090
+0x7f,0x50,0x24,0x28,0x53,0x7e,0x55,0x01,0x70,0x01,0x57,0x01,
11091
+0x04,0x01,0x1c,0x38,0x4f,0x33,0x6f,0x68,0x68,0x01,0x81,0x2f,
11092
+0x2e,0x67,0xfe,0xfa,0x19,0x40,0x6e,0x55,0xfd,0xd8,0x6b,0x00,
11093
+0x00,0x01,0x00,0x6e,0x00,0x00,0x05,0x83,0x06,0xc7,0x00,0x2b,
11094
+0x00,0x00,0x01,0x32,0x1e,0x02,0x1d,0x01,0x33,0x15,0x21,0x35,
11095
+0x34,0x26,0x23,0x21,0x11,0x21,0x32,0x1e,0x02,0x15,0x11,0x33,
11096
+0x15,0x21,0x35,0x33,0x03,0x34,0x2e,0x02,0x23,0x21,0x11,0x33,
11097
+0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x03,0xb4,0x36,0x59,0x40,
11098
+0x23,0x5d,0xfe,0xc1,0x42,0x37,0xfe,0x96,0x01,0xa6,0x5f,0x8f,
11099
+0x5f,0x2f,0x80,0xfe,0x0e,0x80,0x02,0x16,0x33,0x53,0x3d,0xfe,
11100
+0xab,0x7f,0xfe,0x0e,0x80,0x80,0x06,0xc7,0x18,0x35,0x51,0x3a,
11101
+0x2c,0x6b,0x9e,0x3b,0x2f,0xfd,0xb7,0x2a,0x5a,0x8f,0x65,0xfd,
11102
+0xc6,0x65,0x65,0x02,0x60,0x38,0x56,0x3b,0x1e,0xfc,0xb9,0x65,
11103
+0x65,0x05,0xfb,0x66,0x00,0x02,0x00,0x79,0xff,0xb5,0x08,0x74,
11104
+0x06,0xc6,0x00,0x1b,0x00,0x55,0x00,0x00,0x01,0x34,0x02,0x2e,
11105
+0x01,0x2b,0x01,0x22,0x0e,0x02,0x1d,0x01,0x14,0x1e,0x04,0x3b,
11106
+0x01,0x32,0x3e,0x04,0x35,0x01,0x07,0x15,0x14,0x06,0x23,0x22,
11107
+0x2e,0x02,0x27,0x0e,0x03,0x2b,0x01,0x22,0x2e,0x04,0x3d,0x01,
11108
+0x34,0x3e,0x04,0x3b,0x01,0x32,0x1e,0x04,0x1d,0x01,0x14,0x0e,
11109
+0x02,0x07,0x1e,0x03,0x17,0x32,0x3e,0x02,0x35,0x11,0x21,0x05,
11110
+0x9e,0x3b,0x78,0xb3,0x78,0x61,0x6a,0xaf,0x80,0x47,0x1a,0x32,
11111
+0x4d,0x66,0x80,0x4d,0x76,0x48,0x7f,0x6b,0x52,0x3a,0x1f,0x02,
11112
+0xd6,0x69,0xc7,0xba,0x2b,0x4a,0x45,0x44,0x24,0x3c,0x5d,0x52,
11113
+0x4f,0x2e,0xc8,0x5b,0xae,0x9d,0x84,0x5f,0x36,0x33,0x5d,0x82,
11114
+0x9b,0xb3,0x5f,0xaf,0x60,0xb2,0x9b,0x7f,0x5c,0x31,0x2b,0x49,
11115
+0x62,0x37,0x1e,0x32,0x39,0x46,0x31,0x24,0x3f,0x2f,0x1c,0x01,
11116
+0x33,0x03,0xa4,0x9c,0x01,0x03,0xb7,0x66,0x74,0xc3,0xfd,0x88,
11117
+0x71,0x45,0xa0,0xa0,0x94,0x72,0x44,0x35,0x5e,0x82,0x9e,0xb1,
11118
+0x5f,0xfe,0x7f,0x02,0xcf,0x98,0x88,0x17,0x36,0x58,0x41,0x2e,
11119
+0x3b,0x24,0x0e,0x3c,0x6b,0x92,0xaa,0xbd,0x61,0xd1,0x5b,0xb7,
11120
+0xa8,0x92,0x6b,0x3d,0x3c,0x6b,0x93,0xad,0xc1,0x64,0xa4,0x54,
11121
+0xaf,0xa3,0x87,0x2d,0x29,0x3c,0x29,0x15,0x01,0x1f,0x35,0x44,
11122
+0x25,0x01,0x21,0x00,0x00,0x01,0x00,0x1a,0x00,0x00,0x06,0xbd,
11123
+0x06,0xc7,0x00,0x33,0x00,0x00,0x01,0x23,0x11,0x14,0x0e,0x02,
11124
+0x2b,0x01,0x22,0x2e,0x02,0x35,0x11,0x23,0x22,0x2e,0x02,0x3d,
11125
+0x01,0x07,0x35,0x21,0x15,0x23,0x07,0x14,0x1e,0x02,0x33,0x21,
11126
+0x15,0x23,0x11,0x14,0x1e,0x02,0x3b,0x01,0x32,0x3e,0x02,0x35,
11127
+0x11,0x23,0x35,0x25,0x06,0xbd,0x82,0x2b,0x60,0x99,0x6c,0xc7,
11128
+0x71,0x9f,0x65,0x2f,0xe6,0x34,0x49,0x2e,0x17,0x7e,0x01,0xf1,
11129
+0x7d,0x03,0x19,0x34,0x4f,0x36,0x01,0x51,0x7e,0x0e,0x28,0x46,
11130
+0x38,0xc7,0x34,0x3e,0x22,0x0c,0x80,0x01,0xf2,0x05,0x1a,0xfc,
11131
+0x19,0x4e,0x72,0x4d,0x26,0x24,0x49,0x70,0x4d,0x03,0xf1,0x23,
11132
+0x40,0x57,0x32,0x59,0x01,0x68,0x67,0x52,0x29,0x36,0x20,0x0d,
11133
+0x68,0xfc,0x10,0x38,0x4b,0x2e,0x14,0x16,0x31,0x4e,0x39,0x03,
11134
+0xe8,0x66,0x01,0x00,0x00,0x01,0x00,0x1a,0x00,0x00,0x06,0x33,
11135
+0x06,0xc7,0x00,0x29,0x00,0x00,0x25,0x33,0x13,0x25,0x22,0x26,
11136
+0x35,0x11,0x27,0x22,0x2e,0x02,0x35,0x27,0x23,0x35,0x21,0x15,
11137
+0x23,0x07,0x14,0x16,0x3b,0x01,0x03,0x14,0x1e,0x02,0x33,0x21,
11138
+0x11,0x07,0x35,0x21,0x15,0x07,0x11,0x33,0x15,0x21,0x04,0x3f,
11139
+0x7f,0x02,0xfe,0x58,0x6f,0x84,0xc0,0x32,0x4d,0x33,0x19,0x02,
11140
+0x7e,0x01,0xf1,0x7f,0x01,0x53,0x42,0xf9,0x01,0x0e,0x20,0x38,
11141
+0x2a,0x01,0x18,0x80,0x01,0xf3,0x7f,0x7f,0xfe,0x0c,0x65,0x02,
11142
+0x5b,0x01,0x7e,0x84,0x01,0x17,0x01,0x17,0x35,0x5a,0x43,0x9c,
11143
+0x67,0x67,0x91,0x45,0x47,0xfe,0xa9,0x2c,0x46,0x33,0x1a,0x03,
11144
+0x33,0x01,0x68,0x67,0x01,0xfa,0x06,0x65,0x00,0x01,0x00,0x6e,
11145
+0x00,0x00,0x07,0xf7,0x06,0xc7,0x00,0x33,0x00,0x00,0x01,0x34,
11146
+0x2e,0x02,0x23,0x21,0x11,0x14,0x0e,0x02,0x2b,0x01,0x22,0x2e,
11147
+0x02,0x35,0x03,0x23,0x35,0x21,0x15,0x23,0x11,0x14,0x1e,0x02,
11148
+0x3b,0x01,0x32,0x36,0x35,0x13,0x23,0x35,0x21,0x15,0x23,0x03,
11149
+0x21,0x32,0x1e,0x02,0x15,0x13,0x33,0x15,0x21,0x06,0x84,0x15,
11150
+0x21,0x2b,0x16,0xfe,0xdf,0x49,0x75,0x92,0x49,0xde,0x55,0x8f,
11151
+0x67,0x39,0x02,0x81,0x01,0xf3,0x7f,0x13,0x29,0x40,0x2e,0xbd,
11152
+0x58,0x5a,0x01,0x82,0x01,0xf4,0x82,0x01,0x01,0x6d,0x42,0x6a,
11153
+0x49,0x27,0x02,0x81,0xfe,0x8d,0x03,0x98,0x23,0x3d,0x2d,0x1b,
11154
+0xfd,0x31,0x5e,0x8c,0x5a,0x2d,0x3c,0x68,0x8e,0x53,0x02,0x52,
11155
+0x69,0x68,0xfd,0xad,0x3a,0x68,0x4e,0x30,0x8e,0x7d,0x04,0xf0,
11156
+0x67,0x67,0xfe,0x49,0x20,0x4d,0x7e,0x5c,0xfe,0x9c,0x6c,0x00,
11157
+0x00,0x01,0x00,0x6e,0x00,0x00,0x05,0x6f,0x06,0xc7,0x00,0x23,
11158
+0x00,0x00,0x01,0x23,0x11,0x14,0x0e,0x02,0x2b,0x01,0x22,0x2e,
11159
+0x02,0x35,0x13,0x23,0x35,0x21,0x15,0x23,0x11,0x14,0x1e,0x02,
11160
+0x3b,0x01,0x32,0x3e,0x02,0x35,0x13,0x23,0x35,0x21,0x05,0x6f,
11161
+0x84,0x3c,0x6a,0x93,0x57,0xe4,0x4b,0x8f,0x6e,0x43,0x02,0x80,
11162
+0x01,0xf2,0x7f,0x10,0x26,0x3e,0x2d,0xd9,0x2d,0x3d,0x25,0x10,
11163
+0x02,0x82,0x01,0xf5,0x03,0xd7,0xfd,0x73,0x52,0x7c,0x52,0x2a,
11164
+0x2d,0x55,0x7e,0x50,0x05,0x10,0x67,0x67,0xfa,0xf0,0x3f,0x59,
11165
+0x38,0x1b,0x13,0x2a,0x43,0x32,0x02,0xc0,0x68,0x00,0x00,0x00,
11166
+0x00,0x02,0x00,0x6e,0x00,0x00,0x04,0xec,0x06,0xc7,0x00,0x0b,
11167
+0x00,0x31,0x00,0x00,0x01,0x34,0x26,0x23,0x21,0x11,0x21,0x32,
11168
+0x3e,0x02,0x35,0x01,0x33,0x35,0x34,0x2e,0x02,0x23,0x21,0x35,
11169
+0x33,0x11,0x27,0x35,0x21,0x32,0x1e,0x02,0x15,0x11,0x14,0x0e,
11170
+0x02,0x23,0x21,0x11,0x21,0x32,0x1e,0x02,0x1f,0x01,0x33,0x15,
11171
+0x21,0x03,0xf9,0x5c,0x69,0xfe,0xad,0x01,0x4b,0x33,0x4d,0x33,
11172
+0x1a,0xfe,0xf9,0x7e,0x10,0x26,0x45,0x34,0xfd,0xad,0x80,0x80,
11173
+0x02,0xc3,0x7b,0xa9,0x69,0x2e,0x2d,0x68,0xaa,0x7c,0xfe,0xb0,
11174
+0x01,0x4d,0x68,0x7b,0x3f,0x13,0x01,0x02,0x83,0xfe,0x09,0x05,
11175
+0xad,0x59,0x59,0xfd,0xb7,0x0d,0x21,0x3d,0x31,0xfb,0xb2,0xc8,
11176
+0x20,0x49,0x3d,0x29,0x6b,0x03,0xf9,0x01,0x67,0x1b,0x39,0x54,
11177
+0x39,0xfe,0xd8,0x41,0x65,0x46,0x25,0xfe,0xb9,0x3c,0x5f,0x73,
11178
+0x39,0xbb,0x64,0x00,0x00,0x02,0x00,0x79,0xff,0xb5,0x07,0xfa,
11179
+0x06,0xc7,0x00,0x1d,0x00,0x52,0x00,0x00,0x01,0x34,0x2e,0x04,
11180
+0x2b,0x01,0x22,0x0e,0x04,0x1d,0x01,0x14,0x1e,0x04,0x3b,0x01,
11181
+0x32,0x3e,0x01,0x12,0x35,0x13,0x32,0x36,0x35,0x34,0x2e,0x02,
11182
+0x27,0x0e,0x03,0x2b,0x01,0x22,0x2e,0x04,0x3d,0x01,0x34,0x3e,
11183
+0x04,0x3b,0x01,0x32,0x1e,0x04,0x1d,0x01,0x14,0x0e,0x02,0x07,
11184
+0x1e,0x03,0x1d,0x01,0x17,0x15,0x21,0x05,0x8f,0x1b,0x36,0x4f,
11185
+0x67,0x7e,0x4a,0x5f,0x4e,0x83,0x6a,0x4f,0x35,0x1b,0x1c,0x38,
11186
+0x51,0x6a,0x81,0x4a,0x5f,0x71,0xae,0x74,0x3c,0xdc,0x4c,0x4b,
11187
+0x16,0x32,0x52,0x3c,0x2e,0x7c,0x97,0xb0,0x62,0x89,0x63,0xb9,
11188
+0xa1,0x86,0x60,0x34,0x31,0x5b,0x81,0x9f,0xba,0x66,0x94,0x63,
11189
+0xb5,0x9e,0x81,0x5b,0x33,0x0b,0x14,0x1a,0x10,0x55,0x85,0x5b,
11190
+0x30,0x40,0xfe,0x71,0x03,0xa2,0x59,0xad,0x9d,0x83,0x61,0x36,
11191
+0x36,0x60,0x84,0x9c,0xae,0x59,0x65,0x5a,0xb2,0xa2,0x8a,0x66,
11192
+0x3a,0x79,0xcb,0x01,0x06,0x8e,0xfc,0xdc,0x56,0x45,0x1b,0x37,
11193
+0x31,0x28,0x0c,0x55,0x87,0x5d,0x32,0x41,0x70,0x98,0xb2,0xc1,
11194
+0x61,0xba,0x63,0xbc,0xa7,0x8d,0x64,0x39,0x39,0x65,0x8d,0xa7,
11195
+0xbb,0x63,0xba,0x2c,0x6f,0x69,0x52,0x0e,0x19,0x3d,0x4e,0x62,
11196
+0x3d,0x5c,0x01,0x64,0x00,0x03,0x00,0x6e,0x00,0x00,0x07,0x0f,
11197
+0x06,0xc7,0x00,0x0c,0x00,0x19,0x00,0x32,0x00,0x00,0x01,0x22,
11198
+0x0e,0x02,0x15,0x14,0x1e,0x02,0x3b,0x01,0x11,0x01,0x34,0x2e,
11199
+0x02,0x2b,0x01,0x03,0x33,0x32,0x3e,0x02,0x37,0x14,0x0e,0x02,
11200
+0x2b,0x01,0x11,0x33,0x15,0x21,0x35,0x17,0x13,0x23,0x22,0x00,
11201
+0x11,0x10,0x12,0x29,0x01,0x32,0x00,0x11,0x02,0x69,0x4a,0x64,
11202
+0x3e,0x1a,0x1a,0x3e,0x64,0x4a,0xdd,0x02,0xd7,0x1e,0x41,0x66,
11203
+0x49,0xd3,0x01,0xd4,0x49,0x66,0x41,0x1e,0xf2,0x44,0x83,0xbf,
11204
+0x7a,0xd3,0x82,0xfe,0x0d,0x7b,0x01,0xde,0xfa,0xfe,0xff,0xfc,
11205
+0x00,0xff,0x02,0xa6,0xf9,0x01,0x07,0x06,0x60,0x39,0x7c,0xc6,
11206
+0x8d,0x87,0xbd,0x75,0x34,0x03,0xf5,0xfd,0xf8,0x93,0xc8,0x79,
11207
+0x34,0xfc,0x0b,0x33,0x75,0xbc,0x79,0x93,0xdc,0x94,0x49,0xfe,
11208
+0x69,0x65,0x65,0x01,0x01,0x98,0x01,0x1d,0x01,0x2f,0x01,0x3d,
11209
+0x01,0x42,0xfe,0xbf,0xfe,0xc6,0x00,0x00,0x00,0x01,0x00,0x44,
11210
+0x00,0x00,0x07,0xe3,0x06,0xc7,0x00,0x31,0x00,0x00,0x01,0x37,
11211
+0x35,0x34,0x26,0x23,0x25,0x13,0x33,0x15,0x21,0x35,0x17,0x03,
11212
+0x25,0x22,0x2e,0x02,0x35,0x03,0x07,0x35,0x21,0x15,0x27,0x15,
11213
+0x14,0x1e,0x02,0x33,0x21,0x13,0x23,0x35,0x21,0x15,0x07,0x13,
11214
+0x21,0x32,0x1e,0x02,0x15,0x11,0x17,0x15,0x21,0x05,0xf2,0x7c,
11215
+0x61,0x58,0xfe,0xd7,0x02,0x81,0xfe,0x0b,0x81,0x01,0xfe,0x4b,
11216
+0x3d,0x6a,0x4e,0x2e,0x01,0x7d,0x01,0xf0,0x7d,0x16,0x30,0x4d,
11217
+0x38,0x01,0x18,0x01,0x81,0x01,0xf5,0x83,0x02,0x01,0xbd,0x39,
11218
+0x64,0x4d,0x2d,0x81,0xfe,0x0f,0x02,0x30,0x01,0xce,0x6b,0x78,
11219
+0x01,0xfc,0x82,0x65,0x65,0x01,0x02,0x68,0x01,0x23,0x45,0x62,
11220
+0x3f,0x01,0x10,0x01,0x68,0x68,0x01,0xde,0x28,0x4c,0x3a,0x23,
11221
+0x03,0x28,0x68,0x67,0x01,0xfd,0xeb,0x2b,0x49,0x5f,0x36,0xfe,
11222
+0xf0,0x01,0x6a,0x00,0x00,0x01,0x00,0x6e,0x00,0x00,0x05,0x6b,
11223
+0x06,0xc7,0x00,0x21,0x00,0x00,0x25,0x33,0x11,0x34,0x2e,0x02,
11224
+0x23,0x25,0x22,0x0e,0x02,0x15,0x03,0x33,0x15,0x21,0x35,0x33,
11225
+0x11,0x34,0x3e,0x02,0x33,0x21,0x32,0x12,0x15,0x13,0x33,0x15,
11226
+0x21,0x03,0x77,0x7e,0x13,0x22,0x2d,0x19,0xfe,0xe5,0x1d,0x30,
11227
+0x21,0x12,0x01,0x7f,0xfe,0x11,0x7e,0x26,0x56,0x8e,0x67,0x01,
11228
+0x19,0xc3,0xaf,0x03,0x80,0xfe,0x0c,0x64,0x04,0x9d,0x70,0x89,
11229
+0x4c,0x19,0x01,0x19,0x4c,0x89,0x71,0xfb,0x63,0x64,0x64,0x04,
11230
+0x62,0x7e,0xc0,0x81,0x42,0xfe,0xfb,0xfc,0xfb,0x9e,0x64,0x00,
11231
+0x00,0x01,0x00,0x6e,0x00,0x00,0x05,0x6e,0x06,0xc7,0x00,0x1f,
11232
+0x00,0x00,0x25,0x33,0x13,0x21,0x22,0x2e,0x02,0x35,0x13,0x23,
11233
+0x35,0x21,0x15,0x23,0x11,0x14,0x1e,0x02,0x33,0x21,0x11,0x23,
11234
+0x35,0x21,0x15,0x23,0x11,0x33,0x15,0x21,0x03,0x7a,0x80,0x02,
11235
+0xfe,0x69,0x63,0x8e,0x5c,0x2c,0x02,0x80,0x01,0xf2,0x7f,0x12,
11236
+0x28,0x42,0x31,0x01,0x6e,0x80,0x01,0xf2,0x80,0x80,0xfe,0x0c,
11237
+0x65,0x02,0x5f,0x25,0x55,0x8b,0x66,0x02,0x30,0x68,0x68,0xfd,
11238
+0xe1,0x4a,0x68,0x42,0x1f,0x03,0x32,0x68,0x68,0xfa,0x06,0x65,
11239
+0x00,0x01,0x00,0x6e,0x00,0x00,0x05,0x6d,0x06,0xc7,0x00,0x32,
11240
+0x00,0x00,0x01,0x23,0x11,0x14,0x0e,0x02,0x2b,0x01,0x22,0x2e,
11241
+0x02,0x3d,0x01,0x34,0x3e,0x02,0x37,0x33,0x11,0x14,0x3b,0x01,
11242
+0x32,0x35,0x13,0x21,0x22,0x2e,0x02,0x35,0x11,0x23,0x35,0x21,
11243
+0x07,0x23,0x11,0x14,0x1e,0x02,0x33,0x25,0x11,0x23,0x27,0x21,
11244
+0x05,0x6c,0x80,0x44,0x6e,0x8b,0x45,0xf3,0x44,0x8d,0x72,0x49,
11245
+0x30,0x48,0x55,0x26,0x01,0xb7,0xba,0xa8,0x02,0xfe,0x5f,0x61,
11246
+0x8a,0x59,0x2a,0x7d,0x01,0xf1,0x01,0x7f,0x04,0x19,0x35,0x30,
11247
+0x01,0x99,0x83,0x01,0x01,0xf7,0x06,0x60,0xfa,0xcc,0x39,0x6c,
11248
+0x53,0x34,0x2e,0x4f,0x6d,0x3f,0x82,0x26,0x4e,0x48,0x3c,0x14,
11249
+0xfe,0x75,0xc7,0xcb,0x02,0x29,0x22,0x52,0x86,0x65,0x01,0xa8,
11250
+0x67,0x67,0xfe,0x32,0x24,0x4a,0x3c,0x27,0x01,0x02,0x9e,0x67,
11251
+0x00,0x01,0x00,0x6e,0x00,0x00,0x05,0x6f,0x06,0xc7,0x00,0x1f,
11252
+0x00,0x00,0x25,0x33,0x13,0x34,0x2e,0x02,0x23,0x21,0x13,0x33,
11253
+0x15,0x21,0x35,0x33,0x03,0x23,0x35,0x21,0x15,0x23,0x03,0x21,
11254
+0x32,0x1e,0x02,0x15,0x11,0x33,0x15,0x21,0x03,0x77,0x82,0x01,
11255
+0x15,0x30,0x4f,0x3a,0xfe,0xb3,0x01,0x7e,0xfe,0x12,0x7c,0x01,
11256
+0x7d,0x01,0xf2,0x80,0x01,0x01,0xab,0x4a,0x81,0x60,0x37,0x83,
11257
+0xfe,0x08,0x65,0x02,0x5d,0x34,0x57,0x3f,0x22,0xfc,0xb7,0x65,
11258
+0x65,0x05,0xfb,0x67,0x67,0xfd,0xb6,0x40,0x6b,0x8e,0x4d,0xfd,
11259
+0xd5,0x65,0x00,0x00,0x00,0x01,0x00,0x6e,0xff,0xcc,0x06,0xc5,
11260
+0x06,0xc6,0x00,0x4c,0x00,0x00,0x25,0x27,0x0e,0x05,0x2b,0x01,
11261
+0x22,0x24,0x26,0x02,0x3d,0x01,0x34,0x12,0x36,0x24,0x3b,0x01,
11262
+0x32,0x1e,0x04,0x1f,0x01,0x37,0x15,0x21,0x35,0x17,0x35,0x34,
11263
+0x2e,0x04,0x2b,0x01,0x22,0x0e,0x04,0x1d,0x01,0x14,0x1e,0x04,
11264
+0x3b,0x01,0x32,0x3e,0x04,0x3d,0x01,0x23,0x35,0x21,0x15,0x27,
11265
+0x11,0x33,0x15,0x23,0x05,0x54,0x1e,0x0b,0x2f,0x42,0x52,0x5a,
11266
+0x62,0x2f,0x3f,0x95,0xfe,0xf9,0xc3,0x71,0x65,0xbd,0x01,0x11,
11267
+0xac,0x5a,0x35,0x7f,0x81,0x79,0x5e,0x38,0x01,0x01,0x81,0xfe,
11268
+0x6d,0x27,0x1a,0x2e,0x41,0x4e,0x57,0x2d,0x5a,0x4d,0x83,0x69,
11269
+0x50,0x35,0x1b,0x1a,0x34,0x4d,0x68,0x81,0x4e,0x5e,0x2b,0x62,
11270
+0x61,0x59,0x44,0x29,0x77,0x01,0xe4,0x80,0x80,0xf3,0xf8,0x01,
11271
+0x16,0x36,0x37,0x35,0x28,0x1a,0x71,0xc5,0x01,0x0e,0x9c,0xe5,
11272
+0xa1,0x01,0x18,0xd1,0x78,0x25,0x42,0x5a,0x6b,0x79,0x3e,0x58,
11273
+0x01,0x66,0x66,0x01,0x6c,0x1e,0x4e,0x50,0x4d,0x3b,0x24,0x3a,
11274
+0x63,0x87,0x9b,0xa7,0x53,0x9d,0x47,0x9b,0x98,0x87,0x67,0x3d,
11275
+0x23,0x36,0x46,0x45,0x3e,0x15,0xcb,0x67,0x67,0x01,0xfd,0xc9,
11276
+0x64,0x00,0x00,0x00,0x00,0x02,0x00,0x6e,0x00,0x00,0x07,0x39,
11277
+0x06,0xc7,0x00,0x12,0x00,0x3b,0x00,0x00,0x01,0x22,0x0e,0x02,
11278
+0x15,0x11,0x14,0x1e,0x02,0x3b,0x01,0x32,0x3e,0x02,0x35,0x13,
11279
+0x05,0x34,0x2e,0x02,0x2b,0x01,0x03,0x14,0x0e,0x02,0x2b,0x01,
11280
+0x22,0x2e,0x02,0x35,0x11,0x34,0x36,0x33,0x21,0x11,0x23,0x35,
11281
+0x21,0x17,0x23,0x13,0x21,0x32,0x1e,0x02,0x15,0x11,0x33,0x15,
11282
+0x21,0x02,0x80,0x4c,0x6c,0x45,0x20,0x1c,0x39,0x56,0x3b,0x69,
11283
+0x2f,0x4b,0x32,0x1c,0x02,0x02,0x49,0x19,0x26,0x32,0x1a,0xcb,
11284
+0x01,0x37,0x6a,0x9b,0x63,0xaf,0x5e,0xa0,0x72,0x42,0xfc,0xf1,
11285
+0x01,0x21,0x80,0x01,0xf5,0x02,0x85,0x01,0x01,0x41,0x2d,0x5e,
11286
+0x4d,0x31,0x80,0xfe,0x8c,0x03,0xad,0x0f,0x27,0x45,0x34,0xfe,
11287
+0x54,0x44,0x5a,0x38,0x17,0x14,0x34,0x5b,0x48,0x02,0x5d,0x82,
11288
+0x25,0x31,0x1f,0x0d,0xfd,0xa3,0x5e,0x81,0x4f,0x22,0x2c,0x54,
11289
+0x7e,0x52,0x01,0x8d,0x9e,0x9b,0x02,0x4a,0x67,0x67,0xfd,0xb6,
11290
+0x1f,0x40,0x60,0x3f,0xfd,0xb4,0x69,0x00,0x00,0x02,0x00,0x6e,
11291
+0x00,0x02,0x05,0x48,0x06,0xc7,0x00,0x0d,0x00,0x35,0x00,0x00,
11292
+0x01,0x34,0x2e,0x02,0x23,0x21,0x11,0x21,0x32,0x3e,0x02,0x35,
11293
+0x03,0x34,0x2e,0x02,0x23,0x21,0x11,0x33,0x15,0x21,0x35,0x33,
11294
+0x11,0x23,0x35,0x21,0x32,0x1e,0x02,0x15,0x11,0x14,0x0e,0x02,
11295
+0x23,0x05,0x15,0x21,0x32,0x1e,0x02,0x15,0x17,0x33,0x15,0x21,
11296
+0x04,0x55,0x10,0x24,0x3a,0x29,0xfe,0x20,0x01,0xde,0x2f,0x3c,
11297
+0x21,0x0d,0xbd,0x0f,0x22,0x39,0x29,0xfe,0xd9,0x80,0xfe,0x10,
11298
+0x7c,0x7c,0x03,0x75,0x42,0x80,0x65,0x3e,0x39,0x62,0x82,0x48,
11299
+0xfd,0xfb,0x01,0x81,0x55,0x73,0x45,0x1f,0x02,0x79,0xfe,0x92,
11300
+0x05,0xe3,0x1a,0x2f,0x20,0x13,0xfd,0xcd,0x14,0x24,0x34,0x21,
11301
+0xfd,0x33,0x17,0x32,0x2a,0x1c,0xfd,0xea,0x63,0x63,0x05,0xfa,
11302
+0x68,0x2c,0x43,0x50,0x25,0xfe,0xd4,0x39,0x58,0x3e,0x1f,0x01,
11303
+0xe3,0x25,0x41,0x5d,0x36,0x89,0x67,0x00,0x00,0x01,0x00,0x6e,
11304
+0x00,0x02,0x05,0x9c,0x06,0xc7,0x00,0x3e,0x00,0x00,0x01,0x14,
11305
+0x0e,0x04,0x2b,0x01,0x22,0x2e,0x02,0x3d,0x01,0x34,0x3e,0x02,
11306
+0x33,0x15,0x06,0x1d,0x01,0x14,0x1e,0x02,0x3b,0x01,0x32,0x3e,
11307
+0x04,0x3d,0x01,0x34,0x2e,0x02,0x23,0x21,0x13,0x23,0x35,0x21,
11308
+0x15,0x23,0x13,0x33,0x15,0x21,0x03,0x21,0x11,0x33,0x32,0x04,
11309
+0x1e,0x01,0x15,0x05,0x9c,0x35,0x59,0x78,0x87,0x91,0x44,0x7e,
11310
+0x6f,0xd4,0xa6,0x65,0x38,0x5b,0x74,0x3c,0x5c,0x35,0x63,0x8c,
11311
+0x5a,0x4c,0x31,0x61,0x59,0x4e,0x39,0x20,0x40,0x6e,0x92,0x52,
11312
+0xfd,0xcd,0x02,0x80,0x04,0xcf,0x84,0x02,0x85,0xfe,0x88,0x01,
11313
+0xfe,0x1a,0xf5,0x91,0x01,0x01,0xc2,0x72,0x01,0xa3,0x46,0x76,
11314
+0x5c,0x45,0x2d,0x17,0x31,0x5a,0x80,0x4e,0x63,0x43,0x6f,0x50,
11315
+0x2c,0x65,0x41,0xa8,0x2b,0x48,0x67,0x42,0x1f,0x1b,0x2f,0x40,
11316
+0x48,0x50,0x27,0x97,0x4b,0x83,0x63,0x39,0x02,0xb4,0x66,0x66,
11317
+0xfe,0xec,0x68,0x01,0x7c,0xfd,0xb4,0x3b,0x75,0xae,0x74,0x00,
11318
+0x00,0x01,0x00,0x6e,0x00,0x00,0x05,0x6f,0x06,0xc7,0x00,0x25,
11319
+0x00,0x00,0x25,0x33,0x35,0x34,0x2e,0x02,0x23,0x21,0x35,0x33,
11320
+0x11,0x23,0x35,0x21,0x07,0x23,0x03,0x21,0x11,0x23,0x35,0x21,
11321
+0x15,0x23,0x11,0x33,0x15,0x25,0x11,0x21,0x32,0x16,0x1d,0x01,
11322
+0x17,0x15,0x21,0x03,0x7a,0x80,0x1c,0x36,0x50,0x36,0xfd,0x4c,
11323
+0x80,0x80,0x01,0xf1,0x01,0x7b,0x02,0x02,0x1b,0x7e,0x01,0xf1,
11324
+0x82,0x82,0xfc,0x72,0x01,0xea,0x8a,0x98,0x81,0xfe,0x0c,0x64,
11325
+0x93,0x2c,0x3c,0x24,0x0f,0x6a,0x04,0x63,0x68,0x68,0xfd,0xb6,
11326
+0x02,0x4a,0x68,0x68,0xfd,0xb6,0x68,0x01,0xfe,0x4e,0x76,0x75,
11327
+0xac,0x02,0x63,0x00,0x00,0x02,0x00,0x6e,0x00,0x00,0x07,0x50,
11328
+0x06,0xc7,0x00,0x0a,0x00,0x40,0x00,0x00,0x01,0x34,0x2b,0x01,
11329
+0x11,0x33,0x32,0x3e,0x02,0x35,0x33,0x14,0x06,0x2b,0x01,0x11,
11330
+0x33,0x15,0x21,0x35,0x33,0x13,0x23,0x22,0x0e,0x02,0x15,0x11,
11331
+0x37,0x15,0x21,0x35,0x17,0x13,0x34,0x36,0x33,0x25,0x11,0x21,
11332
+0x22,0x2e,0x02,0x35,0x27,0x23,0x35,0x21,0x15,0x23,0x15,0x14,
11333
+0x1e,0x02,0x33,0x21,0x32,0x1e,0x02,0x15,0x06,0x5e,0xf8,0xc1,
11334
+0xc1,0x46,0x5f,0x3a,0x19,0xf2,0xe5,0xda,0xec,0x80,0xfe,0x0b,
11335
+0x81,0x01,0xee,0x47,0x59,0x31,0x12,0x7e,0xfe,0x0f,0x80,0x02,
11336
+0xcb,0xd5,0x01,0x22,0xfe,0x94,0x5b,0x83,0x52,0x26,0x02,0x80,
11337
+0x01,0xf4,0x81,0x13,0x33,0x5f,0x4c,0x02,0xbf,0x63,0xa5,0x75,
11338
+0x42,0x04,0x39,0xe1,0xfe,0x10,0x14,0x2f,0x4b,0x37,0x99,0x96,
11339
+0xfd,0xa5,0x65,0x65,0x02,0x5b,0x25,0x50,0x80,0x5b,0xfe,0xf4,
11340
+0x01,0x65,0x65,0x01,0x01,0x5f,0xaa,0xbd,0x03,0x01,0xed,0x11,
11341
+0x29,0x45,0x33,0x93,0x68,0x68,0x8c,0x17,0x1f,0x13,0x08,0x25,
11342
+0x4d,0x76,0x52,0x00,0x00,0x01,0x00,0x59,0x00,0x00,0x07,0x93,
11343
+0x06,0xc7,0x00,0x29,0x00,0x00,0x01,0x23,0x11,0x14,0x0e,0x02,
11344
+0x2b,0x01,0x22,0x2e,0x02,0x35,0x11,0x21,0x11,0x21,0x35,0x33,
11345
+0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x14,0x1e,0x02,0x3b,0x01,
11346
+0x32,0x3e,0x02,0x35,0x11,0x23,0x35,0x21,0x07,0x93,0x81,0x3a,
11347
+0x67,0x8f,0x53,0xc4,0x64,0xa3,0x73,0x3e,0xfe,0xbb,0xfe,0x8b,
11348
+0x80,0x80,0x04,0x2c,0x81,0x1b,0x38,0x52,0x37,0x85,0x27,0x44,
11349
+0x32,0x1d,0x81,0x01,0xf5,0x03,0xad,0xfd,0x72,0x4f,0x6d,0x44,
11350
+0x1f,0x1f,0x43,0x6e,0x4f,0x05,0x40,0xfd,0x4e,0x68,0x02,0x4a,
11351
+0x68,0x68,0xfb,0x06,0x44,0x61,0x3e,0x1d,0x1f,0x3b,0x54,0x35,
11352
+0x02,0x65,0x68,0x00,0x00,0x01,0x00,0x6e,0x00,0x00,0x05,0x6e,
11353
+0x06,0xc7,0x00,0x1f,0x00,0x00,0x01,0x37,0x35,0x34,0x2e,0x02,
11354
+0x23,0x21,0x11,0x33,0x15,0x21,0x35,0x37,0x11,0x23,0x35,0x21,
11355
+0x15,0x23,0x15,0x21,0x32,0x1e,0x02,0x1d,0x01,0x33,0x15,0x21,
11356
+0x03,0x7b,0x81,0x14,0x2b,0x42,0x2e,0xfe,0x94,0x81,0xfe,0x0c,
11357
+0x80,0x80,0x01,0xf4,0x81,0x01,0x67,0x7d,0xa3,0x61,0x25,0x80,
11358
+0xfe,0x0d,0x03,0x29,0x04,0xe9,0x49,0x63,0x3e,0x1b,0xfb,0x4a,
11359
+0x65,0x64,0x01,0x05,0xfa,0x68,0x68,0xdd,0x3f,0x73,0x9f,0x62,
11360
+0xa2,0x6c,0x00,0x00,0x00,0x01,0x00,0x6e,0x00,0x02,0x06,0x5b,
11361
+0x06,0xc7,0x00,0x42,0x00,0x00,0x01,0x14,0x0e,0x02,0x2b,0x01,
11362
+0x22,0x2e,0x04,0x35,0x11,0x07,0x35,0x21,0x15,0x07,0x15,0x14,
11363
+0x1e,0x04,0x3b,0x01,0x32,0x36,0x3d,0x01,0x34,0x2e,0x02,0x27,
11364
+0x2e,0x03,0x3d,0x01,0x34,0x3e,0x02,0x33,0x21,0x15,0x23,0x35,
11365
+0x21,0x15,0x14,0x1e,0x02,0x17,0x1e,0x05,0x15,0x06,0x5b,0x66,
11366
+0xa8,0xdb,0x74,0xaf,0x4d,0x96,0x89,0x75,0x55,0x32,0x79,0x01,
11367
+0xad,0x4e,0x22,0x3b,0x4f,0x5d,0x64,0x31,0x6f,0xd0,0xc9,0x3e,
11368
+0x74,0xa7,0x68,0x65,0x93,0x61,0x2f,0x3b,0x66,0x86,0x49,0x01,
11369
+0x7c,0xe8,0xfe,0xe6,0x1d,0x3d,0x5d,0x41,0x40,0x8a,0x83,0x76,
11370
+0x58,0x34,0x01,0xd3,0x62,0xa9,0x7e,0x48,0x22,0x3d,0x53,0x63,
11371
+0x6d,0x38,0x01,0x51,0x01,0x61,0x61,0x04,0xf9,0x32,0x66,0x5e,
11372
+0x53,0x3e,0x24,0xe0,0xe5,0x6d,0x55,0x7e,0x60,0x4b,0x24,0x23,
11373
+0x3a,0x4b,0x66,0x4c,0x19,0x3a,0x68,0x4d,0x2d,0xf5,0x8f,0xfc,
11374
+0x20,0x40,0x3b,0x35,0x14,0x15,0x24,0x30,0x3e,0x5a,0x7d,0x56,
11375
+0x00,0x01,0x00,0x6e,0x00,0x00,0x05,0x71,0x06,0xc7,0x00,0x1c,
11376
+0x00,0x00,0x25,0x33,0x13,0x21,0x22,0x2e,0x02,0x35,0x03,0x23,
11377
+0x35,0x21,0x15,0x23,0x11,0x14,0x33,0x21,0x11,0x23,0x35,0x21,
11378
+0x15,0x23,0x11,0x33,0x15,0x21,0x03,0x7c,0x7f,0x01,0xfe,0xa8,
11379
+0x74,0xa5,0x6a,0x31,0x02,0x80,0x01,0xf1,0x7c,0xc1,0x01,0x58,
11380
+0x80,0x01,0xf5,0x83,0x83,0xfe,0x0b,0x65,0x02,0x5d,0x1c,0x47,
11381
+0x75,0x5a,0x01,0x26,0x68,0x68,0xfe,0xf9,0xe6,0x03,0x32,0x68,
11382
+0x68,0xfa,0x06,0x65,0x00,0x01,0x00,0x6e,0x00,0x00,0x06,0x44,
11383
+0x06,0xc7,0x00,0x1b,0x00,0x00,0x25,0x33,0x15,0x21,0x35,0x17,
11384
+0x13,0x21,0x35,0x37,0x11,0x23,0x35,0x21,0x15,0x23,0x03,0x21,
11385
+0x11,0x23,0x35,0x21,0x17,0x23,0x11,0x33,0x15,0x21,0x03,0xd5,
11386
+0x7e,0xfe,0x0f,0x7e,0x01,0xfd,0x8d,0x7e,0x7e,0x01,0xf2,0x7f,
11387
+0x01,0x02,0xee,0x7f,0x01,0xf4,0x01,0x83,0x80,0xfd,0x94,0x66,
11388
+0x66,0x66,0x01,0x03,0x48,0x68,0x01,0x02,0x4a,0x67,0x67,0xfd,
11389
+0xb6,0x02,0x4a,0x67,0x67,0xfd,0xb6,0x69,0x00,0x03,0x00,0x8e,
11390
+0x00,0x00,0x07,0x2d,0x06,0xc8,0x00,0x0d,0x00,0x1e,0x00,0x45,
11391
+0x00,0x00,0x01,0x34,0x2e,0x02,0x2b,0x01,0x11,0x21,0x32,0x3e,
11392
+0x02,0x35,0x01,0x22,0x0e,0x02,0x1d,0x01,0x14,0x1e,0x02,0x3b,
11393
+0x01,0x32,0x36,0x35,0x03,0x33,0x13,0x14,0x0e,0x02,0x2b,0x01,
11394
+0x22,0x26,0x3d,0x01,0x34,0x3e,0x02,0x3b,0x01,0x11,0x23,0x35,
11395
+0x21,0x20,0x04,0x1d,0x01,0x14,0x06,0x27,0x25,0x03,0x21,0x15,
11396
+0x27,0x13,0x33,0x15,0x21,0x11,0x06,0x3d,0x1a,0x38,0x58,0x3e,
11397
+0xfc,0x01,0x18,0x2f,0x4b,0x36,0x1c,0xfc,0x12,0x28,0x49,0x39,
11398
+0x22,0x18,0x31,0x4b,0x33,0x55,0x61,0x65,0x01,0xf3,0x02,0x40,
11399
+0x73,0xa4,0x63,0x55,0xe5,0xd7,0x37,0x76,0xba,0x84,0xeb,0x7b,
11400
+0x02,0x29,0x01,0x0a,0x01,0x11,0xe9,0xe1,0xfe,0xf6,0x02,0x02,
11401
+0xd6,0x85,0x02,0x83,0xfe,0x88,0x05,0xb4,0x27,0x40,0x2d,0x18,
11402
+0xfe,0x54,0x18,0x2c,0x3c,0x24,0xfd,0x68,0x1c,0x36,0x4e,0x30,
11403
+0x9a,0x2e,0x58,0x43,0x29,0x8a,0x75,0x01,0x5d,0xfe,0xa3,0x4c,
11404
+0x82,0x5f,0x36,0xaa,0xb3,0x78,0x52,0x80,0x58,0x2e,0x03,0x33,
11405
+0x68,0x8a,0x8c,0x72,0x7b,0x7d,0x02,0x02,0xfe,0xe1,0x6d,0x02,
11406
+0xfe,0xba,0x69,0x01,0xad,0x00,0x00,0x00,0x00,0x01,0x00,0x6e,
11407
+0x00,0x00,0x03,0xe5,0x04,0x92,0x00,0x33,0x00,0x00,0x01,0x14,
11408
+0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x37,0x17,
11409
+0x0e,0x03,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,0x34,
11410
+0x2e,0x06,0x3d,0x01,0x33,0x15,0x14,0x1e,0x06,0x03,0xe5,0x4f,
11411
+0x82,0xa9,0x5a,0x53,0x98,0x74,0x44,0x15,0x2f,0x49,0x34,0x42,
11412
+0x1e,0x2e,0x1e,0x10,0x30,0x4e,0x65,0x35,0x46,0x5d,0x38,0x17,
11413
+0x1e,0x32,0x3f,0x41,0x3f,0x32,0x1e,0x9c,0x24,0x3c,0x4c,0x4f,
11414
+0x4c,0x3c,0x24,0x01,0xa6,0x6c,0x9f,0x68,0x33,0x33,0x65,0x95,
11415
+0x63,0x3c,0x69,0x57,0x42,0x15,0xb0,0x08,0x1a,0x27,0x38,0x27,
11416
+0x42,0x64,0x43,0x22,0x32,0x59,0x7b,0x4a,0x46,0x66,0x4d,0x3a,
11417
+0x35,0x37,0x46,0x5c,0x40,0x41,0x3f,0x44,0x5d,0x44,0x34,0x34,
11418
+0x3d,0x56,0x78,0x00,0x00,0x02,0x00,0x6e,0x00,0x00,0x04,0x24,
11419
+0x06,0xa1,0x00,0x2d,0x00,0x41,0x00,0x00,0x01,0x14,0x0e,0x02,
11420
+0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x04,0x37,0x3e,0x01,0x35,
11421
+0x34,0x2e,0x06,0x3d,0x01,0x33,0x15,0x14,0x1e,0x04,0x15,0x14,
11422
+0x07,0x1e,0x03,0x07,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,
11423
+0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x04,0x24,0x3e,0x77,0xae,
11424
+0x70,0x79,0xb5,0x79,0x3c,0x0f,0x28,0x43,0x68,0x90,0x61,0x06,
11425
+0x05,0x1a,0x2b,0x37,0x39,0x37,0x2b,0x1a,0xcb,0x1f,0x2d,0x36,
11426
+0x2d,0x1f,0x06,0x3f,0x84,0x6d,0x46,0xe2,0x0d,0x33,0x64,0x57,
11427
+0x5c,0x63,0x2f,0x08,0x09,0x32,0x69,0x60,0x5c,0x61,0x2b,0x05,
11428
+0x02,0x29,0x7b,0xcc,0x92,0x50,0x5a,0x98,0xc8,0x6f,0x3d,0x7b,
11429
+0x73,0x65,0x4e,0x33,0x08,0x1c,0x32,0x15,0x2f,0x3e,0x29,0x1b,
11430
+0x19,0x1d,0x2e,0x44,0x33,0x70,0x70,0x25,0x31,0x2a,0x2c,0x40,
11431
+0x5d,0x45,0x2d,0x34,0x0c,0x3e,0x7c,0xc3,0x93,0x63,0x9e,0x6f,
11432
+0x3b,0x3b,0x6e,0x9c,0x61,0x57,0x9b,0x75,0x44,0x46,0x75,0x98,
11433
+0x00,0x02,0x00,0x50,0xfe,0x34,0x04,0x67,0x04,0x55,0x00,0x39,
11434
+0x00,0x4d,0x00,0x00,0x25,0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,
11435
+0x35,0x34,0x3e,0x02,0x37,0x3e,0x03,0x35,0x34,0x26,0x23,0x22,
11436
+0x0e,0x02,0x15,0x14,0x1e,0x02,0x17,0x07,0x2e,0x03,0x35,0x34,
11437
+0x3e,0x02,0x33,0x32,0x1e,0x02,0x15,0x14,0x06,0x07,0x15,0x1e,
11438
+0x03,0x07,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,
11439
+0x02,0x33,0x32,0x3e,0x02,0x04,0x67,0x56,0x8f,0xb8,0x61,0x74,
11440
+0xc4,0x90,0x51,0x2b,0x5c,0x8d,0x62,0x5b,0x76,0x45,0x1a,0x52,
11441
+0x5c,0x39,0x4b,0x2b,0x12,0x02,0x09,0x13,0x10,0x6b,0x17,0x2f,
11442
+0x25,0x17,0x2e,0x5e,0x91,0x63,0x4f,0x8a,0x66,0x3b,0x98,0x8f,
11443
+0x58,0xa6,0x80,0x4e,0xda,0x25,0x48,0x6a,0x45,0x57,0x79,0x4c,
11444
+0x22,0x22,0x4b,0x78,0x55,0x4d,0x6d,0x46,0x20,0x29,0x72,0xba,
11445
+0x82,0x47,0x47,0x7e,0xad,0x67,0x63,0x8d,0x6f,0x5d,0x32,0x2f,
11446
+0x56,0x4f,0x4a,0x24,0x49,0x52,0x0f,0x1f,0x30,0x21,0x0e,0x17,
11447
+0x15,0x14,0x0a,0x8a,0x0d,0x29,0x38,0x43,0x27,0x34,0x5f,0x48,
11448
+0x2b,0x2a,0x49,0x64,0x3a,0x56,0x8f,0x39,0x27,0x0d,0x46,0x75,
11449
+0xa4,0x80,0x5a,0x95,0x6b,0x3a,0x2b,0x60,0x9c,0x72,0x57,0x83,
11450
+0x59,0x2c,0x23,0x52,0x89,0x00,0x00,0x00,0x00,0x02,0x00,0x6e,
11451
+0xfe,0x3d,0x06,0x3d,0x04,0x40,0x00,0x51,0x00,0x66,0x00,0x00,
11452
+0x01,0x23,0x34,0x2e,0x02,0x27,0x2e,0x01,0x23,0x22,0x0e,0x02,
11453
+0x07,0x27,0x3e,0x03,0x37,0x2e,0x05,0x35,0x34,0x3e,0x02,0x33,
11454
+0x32,0x1e,0x02,0x17,0x3e,0x01,0x33,0x32,0x1e,0x02,0x15,0x14,
11455
+0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x37,0x2e,
11456
+0x03,0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,0x17,0x1e,0x05,
11457
+0x13,0x35,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,
11458
+0x02,0x33,0x32,0x3e,0x02,0x04,0xef,0x8f,0x26,0x4f,0x7a,0x54,
11459
+0x33,0x52,0x21,0x25,0x3c,0x37,0x39,0x22,0x7d,0x1b,0x37,0x40,
11460
+0x4f,0x33,0x31,0x66,0x5f,0x54,0x3f,0x24,0x3c,0x75,0xaa,0x6f,
11461
+0x39,0x4d,0x3c,0x31,0x1d,0x46,0x9a,0x5d,0x64,0xa2,0x73,0x3f,
11462
+0x3e,0x71,0x9f,0x61,0x65,0xab,0x7c,0x45,0x08,0x15,0x26,0x1d,
11463
+0x1a,0x2e,0x35,0x40,0x2d,0x44,0x58,0x32,0x13,0x38,0x69,0x98,
11464
+0x61,0x3f,0x7e,0x72,0x62,0x48,0x29,0x62,0x0e,0x2c,0x4f,0x42,
11465
+0x47,0x5c,0x35,0x15,0x16,0x36,0x5b,0x46,0x42,0x4f,0x2c,0x0e,
11466
+0xfe,0x3d,0x27,0x56,0x4f,0x40,0x11,0x0b,0x0b,0x0b,0x1f,0x37,
11467
+0x2c,0x83,0x1b,0x29,0x1d,0x12,0x05,0x1e,0x41,0x4e,0x60,0x7e,
11468
+0xa1,0x66,0x5d,0xa9,0x7f,0x4b,0x13,0x23,0x33,0x21,0x42,0x48,
11469
+0x44,0x83,0xbe,0x7a,0x6f,0xb2,0x7b,0x42,0x4b,0x7f,0xa7,0x5c,
11470
+0x38,0x5d,0x51,0x4a,0x24,0x13,0x18,0x0e,0x05,0x33,0x62,0x92,
11471
+0x5e,0x65,0xa8,0x89,0x6e,0x2c,0x1d,0x31,0x36,0x3f,0x54,0x6f,
11472
+0x03,0xa2,0x5b,0x47,0x75,0x54,0x2e,0x24,0x5a,0x98,0x73,0x61,
11473
+0x85,0x51,0x24,0x1f,0x4b,0x80,0x00,0x00,0x00,0x01,0x00,0x46,
11474
+0xfe,0x33,0x03,0xfb,0x04,0x41,0x00,0x3d,0x00,0x00,0x05,0x14,
11475
+0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x04,0x37,0x17,
11476
+0x0e,0x03,0x15,0x14,0x16,0x33,0x32,0x3e,0x02,0x35,0x11,0x34,
11477
+0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,0x14,0x16,0x17,0x07,0x2e,
11478
+0x03,0x35,0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,0x15,0x03,0xfb,
11479
+0x3c,0x75,0xad,0x72,0x6d,0xb3,0x7f,0x46,0x1f,0x32,0x40,0x44,
11480
+0x40,0x1a,0x16,0x10,0x22,0x1d,0x13,0x77,0x86,0x43,0x5d,0x3b,
11481
+0x1a,0x23,0x3f,0x57,0x35,0x30,0x52,0x3d,0x23,0x32,0x3f,0x5d,
11482
+0x2a,0x43,0x2e,0x18,0x43,0x71,0x92,0x4f,0x68,0xa4,0x72,0x3c,
11483
+0x11,0x68,0xa4,0x73,0x3d,0x4e,0x7b,0x97,0x48,0x3c,0x5e,0x46,
11484
+0x31,0x20,0x11,0x03,0x44,0x0c,0x2d,0x41,0x55,0x34,0x99,0x91,
11485
+0x23,0x46,0x67,0x44,0x03,0x37,0x3f,0x4e,0x2c,0x0f,0x17,0x2f,
11486
+0x49,0x33,0x2f,0x42,0x21,0xac,0x0e,0x41,0x51,0x58,0x24,0x61,
11487
+0x87,0x55,0x26,0x31,0x5f,0x8b,0x5a,0x00,0x00,0x01,0x00,0x50,
11488
+0xfe,0x34,0x04,0x07,0x04,0x41,0x00,0x56,0x00,0x00,0x05,0x14,
11489
+0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x37,0x17,
11490
+0x0e,0x03,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,0x37,
11491
+0x34,0x2e,0x02,0x2b,0x01,0x35,0x33,0x32,0x3e,0x02,0x35,0x34,
11492
+0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,0x14,0x16,0x17,0x07,0x2e,
11493
+0x05,0x35,0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,0x15,0x14,0x0e,
11494
+0x02,0x07,0x1e,0x03,0x15,0x04,0x07,0x4c,0x7e,0xa1,0x55,0x69,
11495
+0xb7,0x89,0x4e,0x2f,0x51,0x6e,0x40,0x17,0x1b,0x26,0x18,0x0a,
11496
+0x21,0x45,0x69,0x49,0x39,0x51,0x35,0x1a,0x01,0x23,0x3d,0x50,
11497
+0x2d,0x55,0x5e,0x27,0x4a,0x3b,0x23,0x19,0x38,0x58,0x3f,0x38,
11498
+0x5f,0x46,0x28,0x34,0x2f,0x43,0x1f,0x33,0x28,0x1e,0x14,0x0a,
11499
+0x3d,0x6e,0x98,0x5b,0x51,0x9f,0x7e,0x4f,0x30,0x50,0x65,0x35,
11500
+0x34,0x6b,0x55,0x36,0x16,0x6c,0xa4,0x6e,0x38,0x3d,0x6a,0x8f,
11501
+0x52,0x4d,0x69,0x44,0x27,0x0b,0x42,0x15,0x30,0x3c,0x4b,0x30,
11502
+0x4b,0x61,0x38,0x16,0x28,0x49,0x67,0x40,0x85,0x4c,0x67,0x3f,
11503
+0x1c,0x67,0x18,0x36,0x58,0x3f,0x57,0x6e,0x3e,0x17,0x11,0x2d,
11504
+0x4f,0x3d,0x18,0x30,0x0c,0xaf,0x03,0x1d,0x2c,0x35,0x35,0x30,
11505
+0x12,0x4d,0x7e,0x59,0x31,0x27,0x51,0x7d,0x55,0x57,0x76,0x50,
11506
+0x2f,0x10,0x15,0x3a,0x55,0x74,0x4f,0x00,0x00,0x03,0x00,0x28,
11507
+0x00,0x00,0x04,0x84,0x06,0xa5,0x00,0x34,0x00,0x48,0x00,0x5e,
11508
+0x00,0x00,0x01,0x0e,0x03,0x23,0x22,0x2e,0x02,0x35,0x34,0x36,
11509
+0x37,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,
11510
+0x15,0x14,0x06,0x07,0x3e,0x01,0x33,0x32,0x16,0x17,0x3e,0x03,
11511
+0x33,0x15,0x22,0x0e,0x02,0x07,0x1e,0x03,0x01,0x34,0x2e,0x02,
11512
+0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,
11513
+0x01,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,0x04,
11514
+0x33,0x32,0x3e,0x02,0x04,0x84,0x02,0x45,0x7d,0xaf,0x6c,0x6b,
11515
+0xac,0x78,0x41,0x50,0x54,0x48,0x7b,0x5b,0x33,0x39,0x5f,0x78,
11516
+0x3f,0x57,0x82,0x55,0x2a,0x43,0x3d,0x0d,0x42,0x27,0x1a,0x34,
11517
+0x16,0x0c,0x38,0x51,0x66,0x3b,0x34,0x45,0x33,0x26,0x15,0x3f,
11518
+0x64,0x45,0x24,0xfd,0xa8,0x10,0x28,0x43,0x33,0x24,0x3e,0x2d,
11519
+0x1a,0x14,0x28,0x3e,0x2a,0x2e,0x43,0x2c,0x16,0x01,0x7e,0x21,
11520
+0x43,0x65,0x44,0x3f,0x5a,0x39,0x1a,0x0b,0x17,0x24,0x35,0x45,
11521
+0x2c,0x54,0x6a,0x3a,0x15,0x02,0x25,0x8f,0xcf,0x87,0x40,0x42,
11522
+0x83,0xc1,0x7e,0xa0,0xd2,0x41,0x3b,0x64,0x86,0x4a,0x68,0x92,
11523
+0x5b,0x2a,0x3e,0x69,0x8b,0x4d,0x4a,0x8d,0x3c,0x07,0x09,0x04,
11524
+0x05,0x4d,0x80,0x5b,0x33,0xaf,0x14,0x2f,0x4f,0x3c,0x1f,0x4b,
11525
+0x6c,0x95,0x02,0x8b,0x3f,0x64,0x46,0x25,0x1d,0x3f,0x65,0x49,
11526
+0x4b,0x60,0x38,0x15,0x0f,0x33,0x61,0xfd,0x49,0x4f,0x99,0x76,
11527
+0x49,0x47,0x7b,0xa8,0x60,0x25,0x52,0x51,0x49,0x38,0x21,0x37,
11528
+0x67,0x93,0x00,0x00,0x00,0x02,0x00,0x6e,0x00,0x00,0x06,0x75,
11529
+0x04,0x40,0x00,0x37,0x00,0x4b,0x00,0x00,0x13,0x34,0x3e,0x02,
11530
+0x33,0x32,0x16,0x17,0x3e,0x03,0x33,0x32,0x1e,0x02,0x15,0x14,
11531
+0x0e,0x02,0x2b,0x01,0x35,0x33,0x32,0x3e,0x02,0x35,0x34,0x2e,
11532
+0x02,0x23,0x22,0x0e,0x02,0x07,0x1e,0x03,0x15,0x14,0x0e,0x02,
11533
+0x23,0x22,0x2e,0x02,0x25,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,
11534
+0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x6e,0x4d,0x82,0xaa,
11535
+0x5e,0x64,0xb5,0x43,0x1d,0x4a,0x4c,0x47,0x1b,0x63,0xa4,0x76,
11536
+0x42,0x50,0x81,0xa2,0x52,0x37,0x30,0x34,0x57,0x3e,0x22,0x1b,
11537
+0x3b,0x5b,0x40,0x0c,0x30,0x3a,0x3d,0x1a,0x12,0x1d,0x14,0x0b,
11538
+0x44,0x7e,0xb1,0x6c,0x6a,0xad,0x7c,0x44,0x02,0xd4,0x25,0x43,
11539
+0x5d,0x38,0x3f,0x5e,0x3e,0x1f,0x19,0x3b,0x5f,0x47,0x3a,0x5e,
11540
+0x42,0x23,0x02,0x25,0x8c,0xcb,0x84,0x40,0x51,0x51,0x2a,0x3d,
11541
+0x28,0x13,0x41,0x85,0xcb,0x8a,0x86,0xcc,0x8a,0x47,0x80,0x46,
11542
+0x73,0x96,0x51,0x75,0xa0,0x61,0x2a,0x04,0x15,0x2e,0x2a,0x21,
11543
+0x41,0x48,0x53,0x32,0x83,0xcc,0x8b,0x48,0x4c,0x8e,0xcb,0x7d,
11544
+0x75,0x9f,0x62,0x2a,0x2a,0x62,0x9e,0x73,0x74,0xa0,0x64,0x2d,
11545
+0x2d,0x63,0x9f,0x00,0x00,0x01,0x00,0x6e,0x00,0x00,0x04,0x0c,
11546
+0x04,0x41,0x00,0x29,0x00,0x00,0x01,0x14,0x02,0x07,0x23,0x35,
11547
+0x3e,0x03,0x3d,0x01,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x1d,
11548
+0x01,0x14,0x1e,0x02,0x17,0x15,0x23,0x26,0x02,0x35,0x34,0x3e,
11549
+0x02,0x33,0x32,0x1e,0x02,0x04,0x0c,0x79,0x79,0x7c,0x21,0x37,
11550
+0x28,0x17,0x15,0x38,0x63,0x4e,0x44,0x59,0x35,0x15,0x0e,0x21,
11551
+0x36,0x27,0x88,0x6f,0x77,0x41,0x77,0xa9,0x68,0x6a,0xad,0x7b,
11552
+0x43,0x02,0x39,0xb2,0xfe,0xdd,0x64,0x56,0x09,0x21,0x46,0x75,
11553
+0x5d,0x88,0x7c,0xa1,0x5f,0x25,0x1d,0x5a,0xa6,0x89,0x6f,0x5d,
11554
+0x7a,0x4d,0x28,0x0a,0x56,0x67,0x01,0x1c,0xb1,0x74,0xc1,0x8b,
11555
+0x4d,0x4b,0x88,0xc0,0x00,0x01,0x00,0x32,0xfe,0x33,0x03,0xf0,
11556
+0x04,0x41,0x00,0x4b,0x00,0x00,0x05,0x14,0x0e,0x02,0x23,0x22,
11557
+0x2e,0x04,0x35,0x34,0x3e,0x02,0x37,0x17,0x0e,0x03,0x15,0x14,
11558
+0x1e,0x02,0x33,0x32,0x3e,0x02,0x3d,0x01,0x34,0x2e,0x02,0x23,
11559
+0x21,0x35,0x32,0x3e,0x04,0x34,0x2e,0x02,0x23,0x22,0x06,0x07,
11560
+0x27,0x3e,0x03,0x33,0x32,0x16,0x15,0x14,0x0e,0x02,0x07,0x33,
11561
+0x32,0x1e,0x02,0x15,0x03,0xf0,0x4f,0x86,0xae,0x5f,0x31,0x6d,
11562
+0x6a,0x60,0x49,0x2b,0x39,0x58,0x69,0x31,0x19,0x16,0x24,0x1a,
11563
+0x0f,0x1d,0x3f,0x61,0x44,0x56,0x64,0x33,0x0d,0x19,0x29,0x36,
11564
+0x1d,0xfe,0xf7,0x27,0x59,0x58,0x50,0x3d,0x24,0x0a,0x21,0x41,
11565
+0x36,0x26,0x3b,0x24,0x47,0x14,0x2b,0x29,0x21,0x0a,0xb2,0xba,
11566
+0x37,0x5d,0x7b,0x43,0x6d,0x3f,0x78,0x5c,0x38,0x05,0x80,0xae,
11567
+0x6b,0x2f,0x15,0x29,0x40,0x56,0x6d,0x42,0x51,0x6d,0x45,0x23,
11568
+0x08,0x47,0x15,0x2e,0x39,0x48,0x2e,0x50,0x63,0x36,0x13,0x2d,
11569
+0x5e,0x8f,0x63,0x31,0x34,0x69,0x54,0x34,0x74,0x15,0x27,0x35,
11570
+0x41,0x49,0x4e,0x37,0x23,0x10,0x15,0x20,0xb7,0x06,0x09,0x05,
11571
+0x02,0x9c,0x89,0x3c,0x5a,0x48,0x3e,0x1f,0x4a,0x74,0x8d,0x43,
11572
+0x00,0x01,0x00,0x6e,0xfe,0x3d,0x08,0x1a,0x04,0x4c,0x00,0x86,
11573
+0x00,0x00,0x01,0x14,0x0e,0x04,0x23,0x27,0x32,0x3e,0x02,0x35,
11574
+0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x1d,0x01,0x14,0x16,0x17,
11575
+0x15,0x23,0x35,0x3e,0x01,0x3d,0x01,0x34,0x2e,0x02,0x23,0x22,
11576
+0x0e,0x02,0x1d,0x01,0x14,0x16,0x17,0x15,0x21,0x35,0x3e,0x03,
11577
+0x3d,0x01,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,0x14,0x00,
11578
+0x05,0x1e,0x03,0x15,0x23,0x34,0x2e,0x04,0x27,0x2e,0x03,0x23,
11579
+0x0e,0x03,0x07,0x27,0x3e,0x03,0x37,0x2e,0x05,0x35,0x34,0x3e,
11580
+0x02,0x33,0x32,0x1e,0x02,0x17,0x3e,0x03,0x32,0x1e,0x02,0x17,
11581
+0x3e,0x03,0x33,0x32,0x1e,0x02,0x08,0x1a,0x2a,0x45,0x58,0x5e,
11582
+0x5c,0x25,0x01,0x28,0x45,0x32,0x1c,0x1b,0x33,0x4a,0x2e,0x31,
11583
+0x4a,0x31,0x19,0x18,0x1a,0xfb,0x1a,0x19,0x12,0x2c,0x4a,0x39,
11584
+0x36,0x4c,0x2e,0x15,0x1e,0x1c,0xfe,0xff,0x0d,0x14,0x0e,0x06,
11585
+0x17,0x34,0x54,0x3d,0x44,0x50,0x2a,0x0c,0x01,0x7d,0x01,0x70,
11586
+0x59,0xb0,0x8d,0x57,0x81,0x30,0x4d,0x5e,0x5d,0x52,0x19,0x5a,
11587
+0x73,0x4c,0x36,0x1e,0x36,0x4b,0x3f,0x3d,0x29,0x6a,0x28,0x4a,
11588
+0x4d,0x52,0x30,0x45,0x7b,0x6a,0x55,0x3c,0x20,0x4a,0x79,0x9b,
11589
+0x52,0x2a,0x59,0x4f,0x3d,0x0f,0x09,0x3b,0x4f,0x57,0x4c,0x54,
11590
+0x4b,0x39,0x09,0x12,0x3c,0x4e,0x5c,0x31,0x50,0x95,0x74,0x45,
11591
+0x02,0x92,0x55,0x90,0x75,0x59,0x3c,0x1f,0x6e,0x35,0x6a,0x9f,
11592
+0x6b,0x60,0x75,0x3e,0x14,0x14,0x34,0x59,0x45,0x32,0x2d,0x47,
11593
+0x2c,0x2a,0x2a,0x2b,0x49,0x2c,0x35,0x3a,0x5a,0x3c,0x1f,0x1f,
11594
+0x3c,0x5a,0x3a,0x37,0x2c,0x47,0x2b,0x2a,0x2a,0x16,0x27,0x26,
11595
+0x28,0x17,0x33,0x3a,0x56,0x38,0x1b,0x3f,0x62,0x79,0x39,0xda,
11596
+0xfe,0xb0,0x68,0x1a,0x49,0x66,0x84,0x53,0x27,0x43,0x39,0x2f,
11597
+0x24,0x19,0x08,0x1c,0x20,0x10,0x04,0x02,0x11,0x23,0x34,0x25,
11598
+0x88,0x1b,0x28,0x1b,0x0f,0x01,0x12,0x4b,0x64,0x75,0x79,0x77,
11599
+0x32,0x8f,0xb9,0x6c,0x2a,0x18,0x35,0x52,0x3a,0x38,0x56,0x39,
11600
+0x1d,0x1d,0x39,0x56,0x38,0x39,0x52,0x35,0x19,0x28,0x63,0xa6,
11601
+0x00,0x02,0x00,0x6e,0x00,0x00,0x04,0x24,0x06,0xa2,0x00,0x31,
11602
+0x00,0x47,0x00,0x00,0x01,0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,
11603
+0x35,0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,0x17,0x13,0x34,0x2e,
11604
+0x02,0x23,0x22,0x0e,0x02,0x15,0x14,0x17,0x07,0x2e,0x03,0x35,
11605
+0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,0x15,0x03,0x34,0x2e,0x04,
11606
+0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,
11607
+0x04,0x24,0x4a,0x7b,0xa0,0x57,0x7a,0xbc,0x81,0x43,0x4e,0x81,
11608
+0xa7,0x5a,0x28,0x5a,0x4f,0x3b,0x09,0x01,0x1d,0x40,0x66,0x49,
11609
+0x37,0x5a,0x41,0x23,0x4b,0x98,0x13,0x1d,0x15,0x0b,0x42,0x6b,
11610
+0x87,0x44,0x85,0xbf,0x79,0x39,0xd1,0x12,0x22,0x31,0x3d,0x48,
11611
+0x29,0x41,0x5b,0x39,0x1a,0x1f,0x40,0x64,0x45,0x4c,0x62,0x37,
11612
+0x15,0x01,0xc7,0x83,0xae,0x6a,0x2c,0x4f,0x8f,0xc8,0x79,0x73,
11613
+0xbf,0x89,0x4c,0x1a,0x26,0x2a,0x10,0x01,0xce,0x28,0x40,0x2b,
11614
+0x17,0x10,0x25,0x3f,0x2f,0x29,0x38,0x7a,0x13,0x33,0x36,0x37,
11615
+0x19,0x4b,0x72,0x4d,0x26,0x29,0x54,0x7f,0x57,0xfc,0xaa,0x63,
11616
+0x8c,0x60,0x39,0x1e,0x09,0x30,0x60,0x91,0x61,0x78,0xa1,0x61,
11617
+0x2a,0x29,0x5a,0x8e,0x00,0x02,0x00,0x8c,0x00,0x00,0x04,0x42,
11618
+0x06,0xb9,0x00,0x36,0x00,0x49,0x00,0x00,0x01,0x14,0x0e,0x02,
11619
+0x23,0x22,0x2e,0x02,0x35,0x11,0x34,0x3e,0x02,0x33,0x32,0x1e,
11620
+0x02,0x33,0x32,0x3e,0x02,0x37,0x17,0x0e,0x03,0x23,0x22,0x2e,
11621
+0x04,0x23,0x22,0x0e,0x02,0x15,0x03,0x3e,0x03,0x33,0x32,0x1e,
11622
+0x02,0x07,0x35,0x34,0x26,0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,
11623
+0x02,0x33,0x32,0x3e,0x02,0x04,0x42,0x4e,0x87,0xb6,0x67,0x65,
11624
+0xa6,0x77,0x42,0x29,0x51,0x79,0x4f,0x3a,0x53,0x42,0x39,0x1e,
11625
+0x22,0x3d,0x39,0x37,0x1e,0x18,0x15,0x36,0x42,0x4d,0x2b,0x1f,
11626
+0x35,0x32,0x2e,0x2d,0x2d,0x18,0x22,0x31,0x1f,0x0f,0x01,0x1b,
11627
+0x50,0x56,0x50,0x1c,0x5d,0xa7,0x7c,0x49,0xe5,0x78,0x70,0x3a,
11628
+0x6a,0x50,0x2f,0x21,0x42,0x63,0x42,0x3b,0x60,0x43,0x25,0x02,
11629
+0x2f,0x87,0xd0,0x8e,0x4a,0x3a,0x73,0xab,0x72,0x03,0x71,0x60,
11630
+0x89,0x57,0x29,0x19,0x1d,0x19,0x0f,0x1b,0x25,0x15,0x1d,0x26,
11631
+0x53,0x45,0x2d,0x14,0x1e,0x24,0x1e,0x14,0x15,0x32,0x51,0x3d,
11632
+0xfe,0x1f,0x27,0x3d,0x2a,0x16,0x3e,0x7d,0xbd,0xec,0x6a,0xc7,
11633
+0xb5,0x2d,0x64,0xa0,0x73,0x7e,0x99,0x52,0x1b,0x2a,0x51,0x79,
11634
+0x00,0x01,0x00,0x6e,0xff,0x37,0x06,0x2c,0x04,0x41,0x00,0x4e,
11635
+0x00,0x00,0x01,0x14,0x0e,0x04,0x07,0x1e,0x03,0x17,0x07,0x2e,
11636
+0x03,0x23,0x35,0x3e,0x01,0x35,0x34,0x2e,0x02,0x23,0x22,0x06,
11637
+0x1d,0x01,0x14,0x16,0x17,0x15,0x21,0x35,0x3e,0x01,0x3d,0x01,
11638
+0x34,0x26,0x23,0x22,0x0e,0x02,0x15,0x14,0x16,0x15,0x14,0x1e,
11639
+0x02,0x17,0x15,0x23,0x2e,0x03,0x35,0x34,0x3e,0x02,0x33,0x32,
11640
+0x16,0x17,0x36,0x33,0x32,0x1e,0x02,0x06,0x2c,0x18,0x2c,0x3f,
11641
+0x4e,0x5a,0x32,0x36,0x46,0x36,0x33,0x24,0x4c,0x25,0x44,0x44,
11642
+0x48,0x28,0x68,0x6d,0x08,0x27,0x52,0x49,0x6e,0x73,0x1e,0x1c,
11643
+0xfe,0xfc,0x1c,0x15,0x77,0x6e,0x45,0x51,0x2a,0x0b,0x01,0x22,
11644
+0x35,0x41,0x1e,0x44,0x47,0x7d,0x5c,0x35,0x3c,0x6f,0x9f,0x63,
11645
+0x70,0x99,0x28,0x4d,0xfe,0x5b,0x95,0x6b,0x3a,0x02,0x34,0x31,
11646
+0x6c,0x6c,0x65,0x54,0x3c,0x0c,0x08,0x13,0x21,0x33,0x29,0x5b,
11647
+0x38,0x4c,0x2f,0x15,0x5f,0x17,0xf8,0xf5,0x49,0x80,0x60,0x37,
11648
+0x8a,0x83,0x44,0x2a,0x48,0x29,0x2a,0x2a,0x29,0x48,0x2a,0x44,
11649
+0x83,0x8a,0x39,0x64,0x88,0x50,0x26,0x42,0x24,0x43,0x78,0x5f,
11650
+0x41,0x0b,0x5c,0x24,0x6b,0x8f,0xb4,0x6e,0x6f,0xbc,0x89,0x4e,
11651
+0x7d,0x80,0xfd,0x50,0x8d,0xc0,0x00,0x00,0x00,0x01,0x00,0x6e,
11652
+0x00,0x02,0x04,0x21,0x06,0xa2,0x00,0x4c,0x00,0x00,0x01,0x14,
11653
+0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x37,0x17,
11654
+0x0e,0x03,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,0x34,
11655
+0x2e,0x02,0x2b,0x01,0x35,0x33,0x32,0x3e,0x02,0x35,0x34,0x2e,
11656
+0x06,0x3d,0x01,0x33,0x15,0x14,0x1e,0x06,0x15,0x14,0x0e,0x04,
11657
+0x07,0x1e,0x03,0x04,0x21,0x3c,0x75,0xaa,0x6e,0x74,0xb6,0x7e,
11658
+0x42,0x28,0x4a,0x66,0x3e,0x0d,0x15,0x19,0x0d,0x04,0x19,0x3b,
11659
+0x63,0x4a,0x51,0x5e,0x2e,0x0c,0x21,0x44,0x69,0x49,0x6c,0xbe,
11660
+0x31,0x41,0x27,0x10,0x27,0x3f,0x50,0x54,0x51,0x3f,0x26,0x7a,
11661
+0x2e,0x4b,0x61,0x64,0x61,0x4b,0x2e,0x22,0x38,0x4a,0x4e,0x4f,
11662
+0x22,0x51,0x91,0x6d,0x41,0x01,0xdb,0x68,0xae,0x7d,0x46,0x3e,
11663
+0x67,0x84,0x47,0x40,0x6a,0x55,0x3e,0x15,0x49,0x0c,0x2c,0x34,
11664
+0x37,0x18,0x47,0x75,0x54,0x2f,0x31,0x58,0x7d,0x4b,0x6f,0x9f,
11665
+0x64,0x2f,0x67,0x22,0x3d,0x54,0x32,0x35,0x45,0x2e,0x1f,0x1e,
11666
+0x22,0x37,0x51,0x3d,0x17,0x19,0x24,0x2c,0x1e,0x16,0x1b,0x28,
11667
+0x42,0x63,0x48,0x3c,0x5a,0x42,0x2e,0x1d,0x11,0x04,0x0b,0x39,
11668
+0x69,0xa1,0x00,0x00,0x00,0x01,0x00,0x6e,0xfe,0x33,0x04,0x23,
11669
+0x04,0x3f,0x00,0x52,0x00,0x00,0x25,0x14,0x0e,0x02,0x23,0x22,
11670
+0x2e,0x02,0x34,0x3e,0x02,0x37,0x17,0x0e,0x03,0x15,0x14,0x1e,
11671
+0x02,0x33,0x32,0x3e,0x02,0x35,0x13,0x0e,0x03,0x23,0x22,0x26,
11672
+0x27,0x1e,0x03,0x15,0x14,0x0e,0x02,0x23,0x22,0x26,0x27,0x11,
11673
+0x1e,0x03,0x33,0x32,0x3e,0x02,0x35,0x34,0x2e,0x02,0x23,0x22,
11674
+0x07,0x35,0x1e,0x01,0x33,0x32,0x3e,0x04,0x35,0x33,0x04,0x23,
11675
+0x47,0x7e,0xad,0x66,0x60,0xad,0x83,0x4d,0x25,0x4b,0x74,0x4e,
11676
+0x14,0x1d,0x27,0x16,0x09,0x15,0x38,0x61,0x4c,0x46,0x63,0x3f,
11677
+0x1c,0x01,0x26,0x5e,0x65,0x69,0x32,0x25,0x45,0x1e,0x28,0x62,
11678
+0x56,0x3b,0x19,0x3f,0x6a,0x51,0x32,0x5b,0x29,0x1b,0x3a,0x38,
11679
+0x35,0x17,0x2b,0x38,0x1f,0x0c,0x1e,0x3b,0x57,0x38,0x36,0x3e,
11680
+0x35,0x83,0x47,0x39,0x7e,0x79,0x6d,0x53,0x31,0x62,0x28,0x87,
11681
+0xbe,0x78,0x38,0x36,0x5e,0x7f,0x92,0x67,0x45,0x28,0x0a,0x41,
11682
+0x1a,0x32,0x3b,0x47,0x2e,0x2f,0x4b,0x34,0x1c,0x2b,0x50,0x73,
11683
+0x49,0x03,0xa7,0x12,0x16,0x0e,0x05,0x02,0x02,0x09,0x1b,0x37,
11684
+0x5f,0x4d,0x33,0x5f,0x49,0x2b,0x18,0x15,0x01,0x03,0x23,0x47,
11685
+0x39,0x24,0x1d,0x2f,0x3a,0x1d,0x24,0x3f,0x30,0x1c,0x19,0xe1,
11686
+0x14,0x11,0x0b,0x13,0x1b,0x22,0x27,0x16,0x00,0x01,0x00,0x6e,
11687
+0xff,0xff,0x06,0x29,0x06,0x93,0x00,0x63,0x00,0x00,0x13,0x3e,
11688
+0x03,0x33,0x32,0x16,0x17,0x3e,0x01,0x33,0x32,0x1e,0x02,0x15,
11689
+0x14,0x0e,0x02,0x07,0x23,0x35,0x32,0x3e,0x02,0x35,0x34,0x2e,
11690
+0x02,0x23,0x22,0x0e,0x02,0x1d,0x01,0x14,0x16,0x17,0x15,0x23,
11691
+0x35,0x3e,0x01,0x3d,0x01,0x34,0x2e,0x02,0x23,0x22,0x06,0x15,
11692
+0x14,0x1e,0x02,0x33,0x15,0x23,0x2e,0x03,0x35,0x34,0x3e,0x04,
11693
+0x37,0x3e,0x03,0x37,0x33,0x0e,0x05,0x23,0x22,0x0e,0x04,0x15,
11694
+0x1c,0x01,0x17,0xe2,0x11,0x3d,0x52,0x65,0x38,0x6f,0x98,0x2a,
11695
+0x28,0x95,0x68,0x5e,0x9f,0x75,0x42,0x2d,0x58,0x86,0x58,0x5f,
11696
+0x3e,0x53,0x32,0x15,0x09,0x28,0x53,0x4a,0x24,0x4c,0x3e,0x28,
11697
+0x1a,0x19,0xf7,0x18,0x14,0x25,0x3b,0x48,0x22,0x7c,0x72,0x26,
11698
+0x44,0x5b,0x36,0x6a,0x50,0x86,0x62,0x36,0x10,0x2e,0x55,0x88,
11699
+0xc5,0x88,0x6b,0xa2,0x75,0x4b,0x14,0x3e,0x05,0x13,0x28,0x3f,
11700
+0x62,0x8a,0x5d,0x53,0x9b,0x87,0x70,0x4f,0x2c,0x01,0x03,0x15,
11701
+0x42,0x6e,0x50,0x2c,0x74,0x7f,0x7f,0x74,0x45,0x83,0xbd,0x78,
11702
+0x57,0xb2,0x9c,0x7d,0x23,0x82,0x2b,0x61,0x9a,0x6f,0x5a,0x9c,
11703
+0x73,0x42,0x1c,0x42,0x6d,0x51,0x48,0x29,0x4c,0x27,0x2a,0x2a,
11704
+0x27,0x4c,0x29,0x48,0x52,0x6d,0x42,0x1b,0xc9,0xcd,0x6c,0xa0,
11705
+0x6a,0x34,0x82,0x1f,0x7d,0x9e,0xb3,0x56,0x47,0xb0,0xb9,0xb8,
11706
+0xa1,0x7c,0x21,0x1a,0x27,0x25,0x29,0x1c,0x12,0x3e,0x47,0x48,
11707
+0x3b,0x25,0x31,0x54,0x6f,0x7b,0x81,0x3b,0x06,0x0a,0x05,0x00,
11708
+0x00,0x01,0xff,0xe2,0x00,0x00,0x04,0x6d,0x06,0xa2,0x00,0x40,
11709
+0x00,0x00,0x01,0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x11,
11710
+0x34,0x2e,0x02,0x22,0x0e,0x02,0x1d,0x01,0x23,0x35,0x34,0x3e,
11711
+0x02,0x33,0x32,0x16,0x15,0x11,0x14,0x16,0x33,0x32,0x3e,0x02,
11712
+0x35,0x34,0x2e,0x06,0x35,0x34,0x3e,0x02,0x37,0x17,0x22,0x06,
11713
+0x15,0x14,0x1e,0x04,0x04,0x6d,0x4c,0x81,0xa9,0x5d,0x60,0xa1,
11714
+0x74,0x41,0x08,0x16,0x26,0x3c,0x24,0x13,0x07,0x44,0x17,0x32,
11715
+0x4e,0x37,0x7b,0x8c,0x6c,0x77,0x4d,0x64,0x3a,0x17,0x12,0x1d,
11716
+0x26,0x27,0x26,0x1d,0x12,0x0d,0x24,0x3f,0x33,0x2c,0x32,0x34,
11717
+0x2e,0x46,0x51,0x46,0x2e,0x01,0xc8,0x69,0xa8,0x77,0x40,0x4b,
11718
+0x82,0xad,0x63,0x03,0x7a,0x50,0x5d,0x30,0x0d,0x17,0x25,0x2f,
11719
+0x17,0x85,0xaf,0x26,0x43,0x33,0x1d,0x9e,0x9a,0xfc,0xc2,0xd9,
11720
+0xd1,0x18,0x4a,0x8a,0x73,0x45,0x5e,0x3f,0x28,0x1f,0x1c,0x27,
11721
+0x3a,0x2c,0x1f,0x41,0x3c,0x34,0x13,0x8f,0x28,0x22,0x29,0x37,
11722
+0x33,0x3a,0x54,0x7a,0x00,0x03,0x00,0x5a,0xfe,0x34,0x05,0xa2,
11723
+0x05,0x73,0x00,0x5c,0x00,0x70,0x00,0x82,0x00,0x00,0x01,0x14,
11724
+0x02,0x0e,0x01,0x23,0x22,0x2e,0x01,0x02,0x35,0x34,0x3e,0x02,
11725
+0x37,0x26,0x23,0x22,0x0e,0x02,0x07,0x27,0x3e,0x05,0x37,0x33,
11726
+0x07,0x0e,0x03,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,
11727
+0x34,0x2e,0x02,0x27,0x1e,0x01,0x15,0x14,0x0e,0x02,0x23,0x22,
11728
+0x2e,0x02,0x35,0x34,0x3e,0x02,0x37,0x2e,0x03,0x35,0x34,0x36,
11729
+0x33,0x32,0x16,0x15,0x14,0x0e,0x02,0x07,0x1e,0x05,0x01,0x34,
11730
+0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,0x17,0x3e,
11731
+0x03,0x13,0x34,0x2e,0x02,0x27,0x0e,0x03,0x15,0x14,0x1e,0x02,
11732
+0x33,0x32,0x36,0x05,0xa2,0x53,0xa2,0xee,0x9b,0x9f,0xfa,0xad,
11733
+0x5a,0x27,0x4f,0x77,0x51,0x1a,0x16,0x38,0x58,0x42,0x2c,0x0c,
11734
+0x2e,0x16,0x3d,0x47,0x4c,0x47,0x3e,0x17,0x2a,0x02,0x2c,0x3b,
11735
+0x24,0x0f,0x29,0x66,0xaa,0x81,0x78,0x9e,0x5d,0x26,0x16,0x32,
11736
+0x50,0x39,0x12,0x12,0x25,0x3f,0x55,0x30,0x34,0x51,0x37,0x1d,
11737
+0x05,0x20,0x44,0x3e,0x2f,0x40,0x27,0x11,0x70,0x69,0x70,0x79,
11738
+0x11,0x27,0x3f,0x2f,0x52,0x95,0x7e,0x65,0x48,0x26,0xfe,0x08,
11739
+0x08,0x1b,0x34,0x2c,0x29,0x2c,0x15,0x04,0x04,0x14,0x28,0x24,
11740
+0x2e,0x38,0x1e,0x09,0x0b,0x06,0x18,0x2f,0x29,0x2f,0x36,0x1b,
11741
+0x06,0x06,0x17,0x2b,0x26,0x3f,0x4f,0x01,0x0d,0xa0,0xfe,0xf4,
11742
+0xc1,0x6c,0x77,0xc6,0x01,0x01,0x8a,0x60,0xad,0xa3,0x9d,0x4e,
11743
+0x03,0x23,0x31,0x36,0x13,0x8e,0x1a,0x1d,0x0d,0x03,0x04,0x09,
11744
+0x0d,0x61,0x3f,0x8a,0x94,0x9e,0x52,0xb1,0xf9,0x9d,0x47,0x53,
11745
+0xa5,0xf4,0xa2,0x54,0x97,0x85,0x74,0x33,0x18,0x3c,0x1f,0x27,
11746
+0x41,0x30,0x1a,0x1b,0x32,0x45,0x2a,0x21,0x34,0x38,0x43,0x30,
11747
+0x14,0x2d,0x30,0x34,0x1d,0x59,0x6c,0x6c,0x59,0x1b,0x36,0x36,
11748
+0x34,0x1a,0x18,0x59,0x75,0x88,0x8f,0x8f,0x03,0x61,0x15,0x24,
11749
+0x1a,0x0e,0x10,0x1d,0x28,0x18,0x12,0x23,0x26,0x2a,0x19,0x1c,
11750
+0x33,0x2a,0x23,0xfe,0x42,0x1a,0x37,0x39,0x38,0x1b,0x1a,0x35,
11751
+0x34,0x35,0x1b,0x14,0x22,0x18,0x0e,0x2c,0x00,0x01,0x00,0x28,
11752
+0xfe,0x33,0x05,0x13,0x04,0x41,0x00,0x65,0x00,0x00,0x25,0x14,
11753
+0x0e,0x02,0x2b,0x01,0x22,0x2e,0x04,0x35,0x10,0x25,0x17,0x0e,
11754
+0x03,0x15,0x14,0x1e,0x02,0x3b,0x01,0x32,0x3e,0x04,0x35,0x11,
11755
+0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x1d,0x01,0x14,0x1e,0x02,
11756
+0x17,0x15,0x23,0x35,0x3e,0x03,0x35,0x27,0x2e,0x01,0x23,0x22,
11757
+0x0e,0x04,0x23,0x22,0x2e,0x02,0x35,0x37,0x33,0x07,0x14,0x16,
11758
+0x33,0x32,0x3e,0x04,0x33,0x32,0x16,0x17,0x3e,0x03,0x33,0x32,
11759
+0x1e,0x02,0x15,0x05,0x13,0x37,0x6d,0xa1,0x6a,0x6b,0x2d,0x63,
11760
+0x62,0x5a,0x44,0x29,0x01,0x36,0x19,0x1b,0x28,0x1b,0x0e,0x20,
11761
+0x39,0x51,0x32,0x60,0x32,0x48,0x32,0x1e,0x10,0x05,0x15,0x25,
11762
+0x30,0x1b,0x30,0x37,0x1d,0x07,0x03,0x08,0x0e,0x0b,0xce,0x0b,
11763
+0x0d,0x07,0x02,0x01,0x01,0x2e,0x38,0x2f,0x39,0x22,0x23,0x2b,
11764
+0x36,0x24,0x2b,0x52,0x3f,0x27,0x02,0xb2,0x1c,0x26,0x27,0x1d,
11765
+0x2a,0x2a,0x2f,0x32,0x37,0x1e,0x40,0x61,0x17,0x10,0x2c,0x39,
11766
+0x48,0x2d,0x45,0x74,0x54,0x30,0x1d,0x66,0xb3,0x84,0x4d,0x1c,
11767
+0x34,0x4c,0x5e,0x71,0x40,0x01,0x0a,0x38,0x3d,0x15,0x37,0x48,
11768
+0x5d,0x3d,0x35,0x5f,0x48,0x2a,0x23,0x39,0x49,0x4e,0x4b,0x1e,
11769
+0x03,0x2c,0x2f,0x3e,0x24,0x0e,0x26,0x32,0x2f,0x0a,0x90,0x11,
11770
+0x2f,0x31,0x2e,0x10,0x2c,0x2a,0x11,0x2e,0x32,0x2f,0x12,0x8c,
11771
+0x44,0x50,0x36,0x70,0x52,0x35,0x19,0x1e,0x41,0x68,0x4a,0x85,
11772
+0xc0,0x3f,0x3a,0x31,0x7e,0x57,0x36,0x18,0x57,0x53,0x32,0x41,
11773
+0x27,0x10,0x25,0x56,0x8e,0x69,0x00,0x00,0x00,0x02,0x00,0x6e,
11774
+0xfe,0x33,0x06,0x17,0x04,0x41,0x00,0x61,0x00,0x75,0x00,0x00,
11775
+0x05,0x14,0x0e,0x02,0x23,0x22,0x2e,0x04,0x35,0x34,0x3e,0x02,
11776
+0x37,0x0e,0x01,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x3d,0x01,
11777
+0x34,0x2e,0x02,0x2b,0x01,0x35,0x33,0x32,0x3e,0x02,0x35,0x34,
11778
+0x2e,0x02,0x23,0x22,0x0e,0x02,0x07,0x1e,0x03,0x15,0x14,0x0e,
11779
+0x02,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x33,0x32,0x1e,
11780
+0x02,0x17,0x3e,0x03,0x33,0x32,0x1e,0x02,0x15,0x14,0x0e,0x02,
11781
+0x07,0x1e,0x03,0x01,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,
11782
+0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x06,0x02,0x4b,0x86,0xbb,
11783
+0x6f,0x6d,0xa7,0x7b,0x53,0x32,0x16,0x1d,0x3f,0x60,0x44,0x17,
11784
+0x08,0x25,0x4e,0x79,0x54,0x3b,0x63,0x47,0x28,0x11,0x28,0x41,
11785
+0x31,0x3d,0x3c,0x37,0x4d,0x2f,0x15,0x11,0x2c,0x4d,0x3d,0x25,
11786
+0x38,0x33,0x33,0x1f,0x0d,0x1c,0x18,0x0f,0x49,0x77,0x9a,0x51,
11787
+0x63,0xa2,0x72,0x3e,0x3e,0x75,0xa7,0x68,0x22,0x50,0x4f,0x4a,
11788
+0x1b,0x1e,0x49,0x4b,0x45,0x19,0x60,0x9f,0x72,0x40,0x38,0x63,
11789
+0x86,0x4e,0x49,0x7f,0x5d,0x35,0xfd,0x02,0x14,0x30,0x52,0x3e,
11790
+0x47,0x59,0x32,0x13,0x12,0x31,0x58,0x46,0x43,0x55,0x2f,0x11,
11791
+0x35,0x5c,0x96,0x6b,0x3b,0x1a,0x2d,0x3e,0x46,0x4d,0x26,0x2a,
11792
+0x3d,0x2d,0x22,0x0e,0x30,0x65,0x5e,0x4c,0x36,0x1e,0x21,0x3e,
11793
+0x59,0x38,0x76,0x32,0x4d,0x33,0x1a,0x54,0x27,0x5a,0x93,0x6c,
11794
+0x47,0x6a,0x46,0x23,0x08,0x15,0x22,0x19,0x0f,0x2b,0x3b,0x4b,
11795
+0x2f,0x88,0xaa,0x60,0x23,0x47,0x78,0x9f,0x59,0x5e,0xa5,0x7a,
11796
+0x47,0x0f,0x24,0x3b,0x2d,0x2a,0x3b,0x25,0x11,0x3f,0x70,0x9c,
11797
+0x5d,0x69,0x92,0x5e,0x35,0x0c,0x0f,0x25,0x42,0x6a,0x02,0x5e,
11798
+0x5d,0x7d,0x4b,0x20,0x29,0x52,0x7a,0x50,0x54,0x7f,0x54,0x2a,
11799
+0x28,0x52,0x80,0x00,0x00,0x01,0x00,0x6e,0xfe,0x33,0x04,0x22,
11800
+0x06,0xa5,0x00,0x42,0x00,0x00,0x05,0x14,0x0e,0x02,0x23,0x22,
11801
+0x2e,0x02,0x35,0x34,0x3e,0x02,0x37,0x17,0x0e,0x01,0x15,0x14,
11802
+0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,0x11,0x34,0x2e,0x02,0x23,
11803
+0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,0x17,0x07,0x2e,0x03,0x35,
11804
+0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,0x17,0x11,0x07,0x27,0x25,
11805
+0x33,0x04,0x22,0x39,0x6f,0xa2,0x6a,0x6d,0xbb,0x8a,0x4e,0x2e,
11806
+0x51,0x6e,0x40,0x17,0x3b,0x2b,0x27,0x48,0x67,0x41,0x4e,0x5f,
11807
+0x34,0x12,0x37,0x5c,0x75,0x3d,0x24,0x3a,0x29,0x15,0x11,0x1e,
11808
+0x28,0x17,0x5f,0x1f,0x46,0x3b,0x27,0x36,0x5c,0x78,0x41,0x3b,
11809
+0x5c,0x4f,0x47,0x27,0xe7,0x4b,0x01,0x80,0x78,0x12,0x5b,0xa1,
11810
+0x79,0x46,0x42,0x73,0x9e,0x5d,0x45,0x6d,0x51,0x31,0x09,0x46,
11811
+0x29,0x86,0x61,0x4b,0x6b,0x45,0x20,0x2b,0x50,0x6e,0x44,0x03,
11812
+0x2d,0x25,0x43,0x33,0x1e,0x0f,0x26,0x42,0x34,0x1e,0x30,0x27,
11813
+0x1f,0x0d,0xae,0x14,0x37,0x4e,0x6a,0x46,0x3e,0x6f,0x53,0x30,
11814
+0x0d,0x24,0x3f,0x32,0x02,0x92,0x9a,0x8a,0x84,0x00,0x00,0x00,
11815
+0x00,0x01,0x00,0x6e,0xfe,0x3e,0x06,0x6f,0x04,0x41,0x00,0x60,
11816
+0x00,0x00,0x01,0x14,0x0e,0x02,0x07,0x27,0x3e,0x03,0x35,0x34,
11817
+0x2e,0x02,0x23,0x22,0x0e,0x02,0x1d,0x01,0x14,0x16,0x17,0x15,
11818
+0x21,0x35,0x3e,0x01,0x3d,0x01,0x34,0x2e,0x02,0x23,0x22,0x0e,
11819
+0x02,0x15,0x14,0x1e,0x02,0x17,0x1e,0x05,0x15,0x23,0x34,0x2e,
11820
+0x04,0x27,0x2e,0x01,0x23,0x22,0x0e,0x02,0x07,0x27,0x3e,0x01,
11821
+0x37,0x2e,0x03,0x35,0x34,0x3e,0x02,0x33,0x32,0x16,0x17,0x3e,
11822
+0x03,0x33,0x32,0x1e,0x02,0x06,0x6f,0x28,0x59,0x8c,0x64,0x26,
11823
+0x3c,0x49,0x27,0x0d,0x12,0x2f,0x53,0x40,0x3e,0x5e,0x41,0x21,
11824
+0x16,0x19,0xfe,0xff,0x18,0x15,0x18,0x38,0x5a,0x43,0x40,0x55,
11825
+0x33,0x15,0x2a,0x4d,0x6e,0x44,0x43,0x90,0x8a,0x7d,0x5d,0x37,
11826
+0x9b,0x04,0x15,0x2d,0x53,0x81,0x5d,0x12,0x26,0x14,0x2a,0x56,
11827
+0x4b,0x39,0x0e,0x91,0x2f,0x9d,0x79,0x4d,0x9e,0x81,0x51,0x42,
11828
+0x77,0xa4,0x62,0x6f,0xab,0x26,0x11,0x48,0x60,0x70,0x38,0x5e,
11829
+0x9a,0x6d,0x3c,0x02,0x9e,0x54,0x8f,0x7c,0x6c,0x30,0x60,0x29,
11830
+0x47,0x54,0x6c,0x4f,0x51,0x78,0x50,0x27,0x17,0x35,0x55,0x3d,
11831
+0x1e,0x28,0x4c,0x26,0x2a,0x2a,0x26,0x4c,0x28,0x1e,0x3d,0x55,
11832
+0x35,0x17,0x2a,0x53,0x7c,0x52,0x4a,0x86,0x78,0x66,0x29,0x29,
11833
+0x44,0x47,0x52,0x6c,0x8f,0x61,0x2e,0x4d,0x42,0x3a,0x3a,0x3d,
11834
+0x22,0x07,0x05,0x1a,0x2c,0x3c,0x21,0x85,0x3c,0x39,0x02,0x25,
11835
+0x72,0x97,0xbf,0x72,0x75,0xa4,0x67,0x2f,0x75,0x71,0x35,0x55,
11836
+0x3c,0x20,0x38,0x6b,0x9c,0x00,0x00,0x00,0x00,0x01,0x00,0x50,
11837
+0xfe,0x33,0x04,0x09,0x04,0x40,0x00,0x3d,0x00,0x00,0x25,0x14,
11838
+0x06,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x37,0x17,0x0e,
11839
+0x03,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,0x11,0x0e,
11840
+0x01,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x37,0x33,0x0e,
11841
+0x03,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,0x11,0x33,
11842
+0x04,0x09,0xef,0xeb,0x60,0xad,0x84,0x4e,0x24,0x47,0x6b,0x48,
11843
+0x11,0x12,0x16,0x0c,0x03,0x17,0x36,0x57,0x3f,0x46,0x65,0x3f,
11844
+0x1e,0x24,0x82,0x58,0x5a,0xa0,0x78,0x46,0x20,0x45,0x6d,0x4d,
11845
+0x81,0x33,0x47,0x2d,0x15,0x17,0x30,0x4b,0x34,0x35,0x61,0x4a,
11846
+0x2c,0xd6,0x1f,0xf3,0xf9,0x2c,0x4e,0x6c,0x40,0x49,0x68,0x45,
11847
+0x28,0x08,0x4c,0x0c,0x27,0x34,0x3e,0x23,0x21,0x42,0x36,0x22,
11848
+0x27,0x47,0x64,0x3d,0x02,0x06,0x55,0x52,0x40,0x6e,0x95,0x55,
11849
+0x4b,0x6d,0x58,0x4e,0x2c,0x2c,0x54,0x56,0x5b,0x32,0x45,0x77,
11850
+0x58,0x33,0x1e,0x38,0x50,0x32,0x01,0xbd,0x00,0x02,0x00,0x14,
11851
+0x00,0x00,0x04,0x34,0x06,0xa3,0x00,0x4b,0x00,0x5f,0x00,0x00,
11852
+0x01,0x14,0x0e,0x02,0x23,0x22,0x2e,0x04,0x35,0x34,0x3e,0x02,
11853
+0x33,0x32,0x1e,0x02,0x17,0x11,0x34,0x2e,0x02,0x23,0x22,0x0e,
11854
+0x02,0x1d,0x01,0x23,0x35,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,
11855
+0x15,0x14,0x1e,0x02,0x17,0x07,0x2e,0x03,0x35,0x34,0x3e,0x02,
11856
+0x33,0x32,0x16,0x17,0x3e,0x03,0x33,0x32,0x1e,0x02,0x15,0x03,
11857
+0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,0x33,
11858
+0x32,0x3e,0x02,0x04,0x34,0x44,0x7d,0xb2,0x6f,0x4c,0x7f,0x68,
11859
+0x4f,0x36,0x1b,0x49,0x7e,0xab,0x62,0x2c,0x59,0x4c,0x39,0x0c,
11860
+0x1c,0x2f,0x3d,0x20,0x24,0x28,0x13,0x04,0x98,0x0d,0x1f,0x35,
11861
+0x27,0x17,0x33,0x2a,0x1c,0x08,0x0f,0x17,0x10,0x1e,0x34,0x47,
11862
+0x2c,0x13,0x2b,0x46,0x59,0x2e,0x62,0x88,0x18,0x0b,0x34,0x45,
11863
+0x4f,0x27,0x44,0x6f,0x4e,0x2b,0xd1,0x2a,0x49,0x65,0x3b,0x47,
11864
+0x5b,0x34,0x14,0x17,0x3a,0x62,0x4a,0x41,0x60,0x40,0x1f,0x01,
11865
+0xd0,0x5d,0xa9,0x7f,0x4b,0x2d,0x4f,0x6b,0x7d,0x89,0x44,0x69,
11866
+0xb7,0x86,0x4d,0x29,0x3d,0x4a,0x21,0x02,0x5e,0x24,0x2e,0x19,
11867
+0x09,0x1b,0x35,0x50,0x36,0x78,0x78,0x36,0x50,0x35,0x1b,0x0d,
11868
+0x1a,0x29,0x1c,0x2e,0x3c,0x25,0x14,0x06,0x4d,0x13,0x38,0x40,
11869
+0x43,0x1e,0x45,0x5e,0x39,0x18,0x76,0x69,0x30,0x52,0x3c,0x21,
11870
+0x20,0x55,0x94,0x74,0xfd,0x06,0x5c,0x8d,0x5f,0x31,0x36,0x61,
11871
+0x89,0x53,0x60,0x9f,0x73,0x3f,0x1a,0x59,0xa9,0x00,0x00,0x00,
11872
+0x00,0x01,0x00,0x8c,0xff,0xf6,0x04,0x42,0x06,0xa5,0x00,0x43,
11873
+0x00,0x00,0x01,0x3e,0x03,0x35,0x34,0x2e,0x02,0x23,0x22,0x0e,
11874
+0x02,0x15,0x11,0x3e,0x03,0x33,0x32,0x1e,0x02,0x15,0x14,0x0e,
11875
+0x04,0x2b,0x01,0x35,0x33,0x32,0x3e,0x02,0x35,0x34,0x2e,0x02,
11876
+0x23,0x22,0x0e,0x02,0x15,0x11,0x23,0x11,0x34,0x36,0x33,0x32,
11877
+0x1e,0x02,0x15,0x14,0x0e,0x02,0x07,0x02,0x69,0x0d,0x10,0x0a,
11878
+0x04,0x10,0x26,0x3f,0x2e,0x26,0x38,0x25,0x13,0x1e,0x36,0x43,
11879
+0x5b,0x43,0x58,0x9e,0x76,0x46,0x29,0x46,0x5a,0x64,0x65,0x2d,
11880
+0x25,0x29,0x1d,0x4e,0x45,0x30,0x18,0x35,0x55,0x3c,0x39,0x6b,
11881
+0x53,0x31,0xd5,0xcc,0xb7,0x4b,0x72,0x4d,0x26,0x22,0x38,0x48,
11882
+0x26,0x04,0xd6,0x0b,0x25,0x2d,0x33,0x1a,0x22,0x3d,0x2d,0x1b,
11883
+0x1e,0x43,0x6b,0x4e,0xfe,0x63,0x2b,0x43,0x2e,0x17,0x43,0x7c,
11884
+0xaf,0x6b,0x57,0x9c,0x85,0x6a,0x4a,0x28,0x68,0x37,0x72,0xad,
11885
+0x77,0x52,0x8b,0x65,0x39,0x25,0x40,0x59,0x34,0xfd,0x4b,0x05,
11886
+0x14,0xca,0xc8,0x25,0x40,0x5a,0x34,0x31,0x50,0x41,0x2f,0x10,
11887
+0x00,0x01,0x00,0x6e,0xfe,0x33,0x05,0x03,0x04,0x40,0x00,0x59,
11888
+0x00,0x00,0x25,0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,0x3d,0x01,
11889
+0x34,0x3e,0x02,0x37,0x0e,0x03,0x07,0x35,0x1e,0x01,0x33,0x32,
11890
+0x3e,0x02,0x37,0x33,0x15,0x0e,0x03,0x15,0x11,0x14,0x1e,0x02,
11891
+0x33,0x32,0x3e,0x02,0x35,0x34,0x2e,0x02,0x2b,0x01,0x35,0x33,
11892
+0x32,0x3e,0x02,0x35,0x34,0x2e,0x04,0x35,0x33,0x14,0x1e,0x06,
11893
+0x15,0x14,0x0e,0x02,0x07,0x1e,0x05,0x05,0x03,0x61,0x9c,0xc4,
11894
+0x62,0x81,0xcf,0x90,0x4e,0x17,0x35,0x57,0x41,0x2c,0x44,0x42,
11895
+0x47,0x2f,0x0b,0x1d,0x13,0x22,0x56,0x54,0x47,0x14,0x62,0x36,
11896
+0x3d,0x1d,0x07,0x2b,0x52,0x78,0x4d,0x4f,0x76,0x4f,0x28,0x25,
11897
+0x42,0x59,0x33,0x84,0xd1,0x29,0x3b,0x26,0x12,0x27,0x39,0x44,
11898
+0x39,0x27,0x72,0x20,0x34,0x42,0x45,0x42,0x34,0x20,0x1e,0x4c,
11899
+0x81,0x63,0x24,0x51,0x4f,0x48,0x37,0x20,0x05,0x6d,0xad,0x78,
11900
+0x40,0x64,0xae,0xe9,0x86,0xa2,0x57,0xa6,0x9b,0x8b,0x3b,0x0c,
11901
+0x1a,0x26,0x35,0x28,0xc1,0x01,0x02,0x08,0x15,0x27,0x1f,0x6a,
11902
+0x20,0x6b,0x83,0x90,0x44,0xfe,0xb9,0x68,0xb3,0x84,0x4b,0x2d,
11903
+0x53,0x73,0x46,0x52,0x8d,0x68,0x3b,0x6b,0x14,0x31,0x51,0x3c,
11904
+0x2d,0x48,0x3e,0x39,0x3d,0x45,0x2b,0x2b,0x3a,0x29,0x1f,0x1f,
11905
+0x23,0x34,0x49,0x35,0x2c,0x55,0x46,0x35,0x0d,0x0c,0x1a,0x27,
11906
+0x38,0x51,0x70,0x00,0x00,0x02,0x00,0x6e,0x00,0x00,0x04,0x27,
11907
+0x06,0xa2,0x00,0x20,0x00,0x34,0x00,0x00,0x01,0x14,0x0e,0x02,
11908
+0x23,0x22,0x02,0x11,0x34,0x3e,0x04,0x33,0x32,0x1e,0x02,0x17,
11909
+0x11,0x34,0x2e,0x02,0x23,0x35,0x32,0x1e,0x02,0x15,0x03,0x34,
11910
+0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,0x33,0x32,
11911
+0x3e,0x02,0x04,0x27,0x45,0x7c,0xae,0x6a,0xf1,0xef,0x1e,0x36,
11912
+0x4e,0x60,0x71,0x3e,0x35,0x61,0x52,0x41,0x15,0x1f,0x2c,0x33,
11913
+0x13,0x3f,0x7c,0x62,0x3d,0xd3,0x2c,0x4f,0x6d,0x41,0x39,0x50,
11914
+0x33,0x17,0x19,0x3b,0x61,0x49,0x3b,0x5e,0x42,0x23,0x01,0xee,
11915
+0x74,0xb7,0x7f,0x44,0x01,0x1a,0x01,0x11,0x42,0x82,0x76,0x65,
11916
+0x4b,0x2a,0x24,0x3e,0x53,0x2e,0x02,0x0d,0x50,0x5b,0x2d,0x0b,
11917
+0x56,0x32,0x5e,0x87,0x55,0xfc,0xb8,0x66,0xab,0x7c,0x46,0x3e,
11918
+0x6f,0x97,0x58,0x6d,0x9e,0x67,0x32,0x21,0x53,0x8d,0x00,0x00,
11919
+0x00,0x02,0x00,0x64,0xfe,0x2a,0x04,0x61,0x06,0xa3,0x00,0x5c,
11920
+0x00,0x7c,0x00,0x00,0x01,0x14,0x0e,0x02,0x07,0x27,0x3e,0x03,
11921
+0x35,0x34,0x26,0x23,0x22,0x06,0x1d,0x01,0x23,0x35,0x34,0x2e,
11922
+0x02,0x22,0x0e,0x02,0x15,0x14,0x17,0x1e,0x03,0x17,0x3e,0x01,
11923
+0x33,0x32,0x1e,0x02,0x15,0x14,0x0e,0x02,0x07,0x0e,0x05,0x07,
11924
+0x23,0x3e,0x01,0x35,0x3c,0x01,0x27,0x2e,0x03,0x27,0x2e,0x05,
11925
+0x35,0x34,0x3e,0x02,0x33,0x32,0x16,0x17,0x3e,0x03,0x33,0x32,
11926
+0x1e,0x02,0x01,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,0x14,
11927
+0x1e,0x02,0x17,0x1e,0x03,0x15,0x1c,0x01,0x07,0x3e,0x07,0x04,
11928
+0x61,0x13,0x24,0x34,0x21,0x22,0x09,0x0d,0x07,0x03,0x47,0x3f,
11929
+0x4c,0x4e,0x90,0x04,0x16,0x32,0x5a,0x3a,0x22,0x0e,0x03,0x02,
11930
+0x06,0x0a,0x0e,0x0b,0x31,0xa7,0x80,0x4f,0x8e,0x6b,0x3f,0x0a,
11931
+0x19,0x2b,0x20,0x1c,0x60,0x70,0x73,0x5f,0x3e,0x03,0x5f,0x07,
11932
+0x0b,0x02,0x10,0x1f,0x25,0x2e,0x1e,0x08,0x14,0x15,0x15,0x10,
11933
+0x0a,0x21,0x4a,0x77,0x55,0x54,0x6b,0x13,0x10,0x2a,0x3a,0x4c,
11934
+0x33,0x48,0x63,0x3c,0x1a,0xfe,0xe4,0x16,0x2e,0x45,0x2e,0x3c,
11935
+0x6a,0x50,0x2e,0x02,0x06,0x0a,0x09,0x14,0x1c,0x11,0x08,0x01,
11936
+0x25,0x53,0x4e,0x41,0x22,0x23,0x1b,0x11,0x05,0xce,0x29,0x41,
11937
+0x38,0x31,0x1a,0x1f,0x1c,0x2d,0x2b,0x2e,0x1d,0x3c,0x2a,0x48,
11938
+0x39,0x89,0x89,0x21,0x31,0x20,0x0f,0x1b,0x37,0x53,0x38,0x2d,
11939
+0x33,0x2b,0x75,0x7b,0x73,0x29,0x73,0x83,0x3b,0x6a,0x92,0x57,
11940
+0x1e,0x49,0x58,0x6a,0x3f,0x37,0x93,0x9f,0xa0,0x88,0x63,0x13,
11941
+0x39,0x72,0x33,0x08,0x0f,0x08,0x67,0xa7,0xa5,0xb8,0x78,0x1d,
11942
+0x65,0x7f,0x8f,0x91,0x89,0x39,0x6f,0xa4,0x6d,0x36,0x5c,0x5b,
11943
+0x32,0x46,0x2b,0x14,0x1a,0x34,0x51,0xfc,0x95,0x3c,0x64,0x48,
11944
+0x28,0x28,0x46,0x5e,0x35,0x16,0x26,0x2e,0x3c,0x2a,0x62,0x8c,
11945
+0x6f,0x5f,0x34,0x1d,0x3e,0x22,0x33,0x6a,0x69,0x64,0x5a,0x5f,
11946
+0x66,0x6c,0x00,0x00,0x00,0x02,0x00,0x5a,0xfe,0x34,0x04,0x41,
11947
+0x06,0xa2,0x00,0x70,0x00,0x84,0x00,0x00,0x01,0x25,0x15,0x14,
11948
+0x1e,0x04,0x15,0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x34,
11949
+0x3e,0x02,0x37,0x17,0x0e,0x03,0x15,0x14,0x1e,0x02,0x33,0x32,
11950
+0x3e,0x02,0x35,0x34,0x2e,0x04,0x35,0x34,0x3e,0x02,0x37,0x30,
11951
+0x07,0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x33,
11952
+0x32,0x1e,0x02,0x17,0x34,0x3e,0x02,0x35,0x34,0x2e,0x02,0x27,
11953
+0x0e,0x03,0x07,0x27,0x3e,0x03,0x37,0x33,0x1e,0x05,0x15,0x14,
11954
+0x0e,0x02,0x07,0x25,0x17,0x05,0x15,0x05,0x25,0x35,0x2e,0x03,
11955
+0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,0x32,0x3e,0x02,0x04,
11956
+0x18,0xfe,0xd7,0x2b,0x40,0x4b,0x40,0x2b,0x52,0x85,0xa9,0x56,
11957
+0x62,0xae,0x83,0x4d,0x34,0x55,0x6e,0x39,0x17,0x1f,0x26,0x14,
11958
+0x07,0x24,0x41,0x5b,0x37,0x4d,0x5f,0x35,0x12,0x1f,0x2d,0x36,
11959
+0x2d,0x1f,0x04,0x0b,0x13,0x0e,0x4c,0x26,0x4b,0x4a,0x24,0x34,
11960
+0x56,0x3d,0x22,0x22,0x3f,0x5b,0x39,0x1c,0x43,0x4a,0x4e,0x28,
11961
+0x0d,0x0f,0x0d,0x11,0x2d,0x4d,0x3c,0x02,0x14,0x21,0x2d,0x1b,
11962
+0xa9,0x19,0x44,0x46,0x3f,0x14,0x45,0x28,0x54,0x4f,0x47,0x35,
11963
+0x1f,0x1c,0x27,0x29,0x0d,0x01,0x35,0x1d,0xfe,0xae,0x01,0x46,
11964
+0xfe,0x10,0x12,0x36,0x3b,0x3b,0x16,0x1c,0x20,0x0f,0x04,0x04,
11965
+0x0e,0x1c,0x32,0x3f,0x3d,0x36,0x01,0xcc,0xf6,0x9d,0x48,0x66,
11966
+0x50,0x45,0x4f,0x63,0x46,0x79,0xa7,0x68,0x2e,0x44,0x7a,0xa9,
11967
+0x65,0x3f,0x65,0x49,0x2d,0x08,0x3d,0x16,0x3c,0x50,0x63,0x3c,
11968
+0x3b,0x5a,0x3e,0x20,0x2f,0x4b,0x60,0x30,0x46,0x72,0x60,0x52,
11969
+0x4b,0x49,0x27,0x11,0x31,0x44,0x5a,0x3b,0x5a,0x2d,0x46,0x2c,
11970
+0x34,0x4d,0x59,0x25,0x2c,0x5e,0x4d,0x31,0x27,0x3c,0x4a,0x22,
11971
+0x3d,0x6d,0x62,0x5a,0x2c,0x2b,0x57,0x5c,0x63,0x38,0x05,0x3a,
11972
+0x5e,0x7f,0x4a,0x54,0x17,0x3b,0x56,0x76,0x51,0x2e,0x47,0x41,
11973
+0x41,0x4e,0x61,0x41,0x2d,0x6b,0x66,0x56,0x18,0xbc,0x8b,0x5e,
11974
+0x2f,0x94,0x93,0x3d,0x16,0x2a,0x22,0x15,0x21,0x30,0x38,0x18,
11975
+0x16,0x38,0x31,0x21,0x18,0x27,0x33,0x00,0x00,0x02,0xff,0xe2,
11976
+0x00,0x00,0x04,0x77,0x06,0xa3,0x00,0x32,0x00,0x46,0x00,0x00,
11977
+0x01,0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x11,0x34,0x26,
11978
+0x23,0x22,0x0e,0x02,0x1d,0x01,0x23,0x35,0x34,0x36,0x33,0x32,
11979
+0x1e,0x02,0x15,0x11,0x3e,0x01,0x37,0x34,0x3e,0x02,0x37,0x17,
11980
+0x0e,0x03,0x15,0x33,0x32,0x1e,0x02,0x25,0x11,0x14,0x16,0x33,
11981
+0x32,0x3e,0x02,0x35,0x11,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,
11982
+0x04,0x77,0x52,0x8c,0xbb,0x69,0x64,0xa0,0x71,0x3c,0x20,0x2c,
11983
+0x18,0x1c,0x10,0x05,0x4d,0x64,0x72,0x33,0x50,0x37,0x1d,0x2a,
11984
+0x69,0x40,0x2a,0x47,0x5e,0x34,0x2a,0x47,0x55,0x2e,0x0f,0x09,
11985
+0x4e,0x9d,0x7e,0x4f,0xfd,0x1e,0x76,0x6f,0x54,0x6c,0x3f,0x18,
11986
+0x1d,0x39,0x55,0x37,0x36,0x66,0x4e,0x30,0x02,0x3a,0x9c,0xd9,
11987
+0x88,0x3d,0x52,0x8d,0xbf,0x6c,0x03,0xe9,0x29,0x31,0x0f,0x1e,
11988
+0x2d,0x1e,0x71,0x6d,0x6f,0x63,0x1c,0x4f,0x8c,0x70,0xfe,0x5d,
11989
+0x45,0x53,0x0a,0x54,0x76,0x51,0x33,0x13,0x81,0x13,0x31,0x38,
11990
+0x3f,0x21,0x40,0x81,0xc2,0x12,0xfe,0xd3,0x89,0x96,0x1c,0x3a,
11991
+0x5a,0x3e,0x01,0x0e,0x3f,0x77,0x5c,0x38,0x23,0x41,0x5d,0x00,
11992
+0x00,0x01,0x00,0x32,0xfe,0x33,0x05,0x45,0x04,0x41,0x00,0x9d,
11993
+0x00,0x00,0x25,0x14,0x0e,0x02,0x23,0x22,0x2e,0x04,0x27,0x0e,
11994
+0x03,0x07,0x37,0x32,0x36,0x33,0x32,0x1e,0x04,0x15,0x14,0x0e,
11995
+0x02,0x23,0x22,0x2e,0x02,0x35,0x37,0x14,0x1e,0x02,0x33,0x32,
11996
+0x3e,0x02,0x35,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x07,0x27,
11997
+0x3e,0x03,0x37,0x2e,0x03,0x23,0x22,0x0e,0x02,0x15,0x14,0x16,
11998
+0x17,0x07,0x2e,0x01,0x35,0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,
11999
+0x17,0x3e,0x05,0x35,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,
12000
+0x14,0x16,0x17,0x07,0x2e,0x03,0x35,0x34,0x3e,0x02,0x33,0x32,
12001
+0x1e,0x02,0x15,0x14,0x0e,0x04,0x07,0x1e,0x05,0x33,0x32,0x3e,
12002
+0x02,0x35,0x34,0x2e,0x02,0x27,0x37,0x1e,0x03,0x05,0x45,0x23,
12003
+0x3e,0x53,0x31,0x27,0x50,0x51,0x51,0x52,0x52,0x29,0x3b,0x59,
12004
+0x43,0x32,0x13,0x16,0x05,0x09,0x05,0x1b,0x42,0x43,0x3f,0x31,
12005
+0x1e,0x36,0x66,0x91,0x5a,0x31,0x5b,0x46,0x2a,0x48,0x1f,0x32,
12006
+0x3d,0x1e,0x35,0x4a,0x2e,0x15,0x12,0x22,0x32,0x21,0x07,0x1b,
12007
+0x1d,0x1b,0x07,0x44,0x0f,0x4b,0x6e,0x8b,0x4f,0x28,0x3e,0x3e,
12008
+0x44,0x2e,0x16,0x2d,0x24,0x16,0x30,0x33,0x58,0x3c,0x3c,0x29,
12009
+0x43,0x56,0x2c,0x5b,0x8c,0x6e,0x56,0x26,0x2b,0x5d,0x5a,0x52,
12010
+0x3d,0x24,0x14,0x23,0x30,0x1c,0x0e,0x21,0x1d,0x14,0x19,0x1a,
12011
+0x6a,0x0e,0x16,0x0f,0x07,0x2a,0x3f,0x4b,0x22,0x32,0x58,0x42,
12012
+0x26,0x2c,0x4a,0x62,0x6d,0x71,0x34,0x07,0x23,0x2f,0x3a,0x3c,
12013
+0x3b,0x1b,0x24,0x33,0x1f,0x0e,0x10,0x1d,0x2a,0x1b,0x4a,0x19,
12014
+0x31,0x27,0x17,0xb6,0x38,0x5c,0x40,0x23,0x0b,0x21,0x3d,0x66,
12015
+0x95,0x67,0x24,0x3c,0x3d,0x45,0x2d,0x02,0x01,0x0d,0x1b,0x2b,
12016
+0x3d,0x50,0x32,0x4a,0x74,0x51,0x2a,0x1a,0x33,0x4b,0x31,0x15,
12017
+0x1b,0x25,0x17,0x0b,0x10,0x28,0x45,0x36,0x2d,0x4d,0x38,0x20,
12018
+0x04,0x09,0x12,0x0d,0x13,0x42,0x77,0x6d,0x65,0x31,0x84,0xac,
12019
+0x63,0x27,0x0c,0x19,0x26,0x19,0x3b,0x52,0x2a,0x70,0x30,0x85,
12020
+0x4b,0x34,0x5c,0x46,0x29,0x40,0x79,0xae,0x6e,0x16,0x23,0x24,
12021
+0x2a,0x38,0x4e,0x35,0x19,0x21,0x15,0x09,0x07,0x10,0x18,0x12,
12022
+0x13,0x32,0x13,0x3f,0x0c,0x2a,0x2f,0x2b,0x0e,0x2a,0x42,0x2d,
12023
+0x18,0x1c,0x3a,0x5a,0x3e,0x3b,0x54,0x3e,0x2f,0x2d,0x31,0x20,
12024
+0x1c,0x51,0x5a,0x5a,0x48,0x2d,0x0b,0x1c,0x2f,0x24,0x1b,0x21,
12025
+0x15,0x0c,0x06,0x81,0x0f,0x28,0x38,0x4b,0x00,0x01,0x00,0x6e,
12026
+0x00,0x00,0x04,0x25,0x06,0xa2,0x00,0x6a,0x00,0x00,0x01,0x14,
12027
+0x0e,0x02,0x23,0x22,0x2e,0x04,0x35,0x34,0x36,0x37,0x17,0x0e,
12028
+0x03,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,0x34,0x2e,
12029
+0x02,0x22,0x0f,0x01,0x35,0x17,0x16,0x33,0x32,0x3e,0x02,0x35,
12030
+0x34,0x2e,0x02,0x23,0x22,0x0f,0x01,0x35,0x17,0x16,0x33,0x32,
12031
+0x3e,0x02,0x35,0x34,0x2e,0x02,0x27,0x2e,0x03,0x35,0x33,0x14,
12032
+0x1e,0x02,0x33,0x32,0x1e,0x04,0x15,0x14,0x0e,0x02,0x07,0x1e,
12033
+0x03,0x15,0x14,0x0e,0x02,0x07,0x1e,0x03,0x04,0x25,0x49,0x7c,
12034
+0xa2,0x59,0x38,0x77,0x6f,0x63,0x4b,0x2b,0x66,0x6e,0x22,0x0f,
12035
+0x11,0x0a,0x03,0x2c,0x50,0x6f,0x43,0x45,0x59,0x33,0x14,0x20,
12036
+0x31,0x3b,0x36,0x17,0x7e,0x7e,0x0a,0x0f,0x19,0x3d,0x36,0x25,
12037
+0x20,0x32,0x3a,0x1b,0x17,0x11,0x74,0x74,0x09,0x09,0x18,0x40,
12038
+0x39,0x27,0x0a,0x2f,0x61,0x56,0x55,0x7e,0x54,0x29,0x85,0x0e,
12039
+0x23,0x3a,0x2c,0x70,0xa4,0x71,0x46,0x26,0x0d,0x30,0x4c,0x5e,
12040
+0x2f,0x32,0x61,0x4d,0x2f,0x26,0x45,0x63,0x3d,0x3a,0x67,0x4c,
12041
+0x2d,0x01,0xa1,0x6b,0x9d,0x67,0x32,0x10,0x24,0x3c,0x57,0x76,
12042
+0x4d,0x68,0x8e,0x29,0x31,0x0f,0x25,0x34,0x49,0x31,0x46,0x68,
12043
+0x45,0x22,0x21,0x44,0x69,0x47,0x58,0x71,0x42,0x19,0x0a,0x34,
12044
+0xa5,0x26,0x03,0x16,0x2f,0x48,0x33,0x34,0x4a,0x30,0x16,0x07,
12045
+0x32,0xa5,0x2f,0x03,0x0b,0x20,0x3c,0x32,0x2b,0x3a,0x25,0x12,
12046
+0x02,0x02,0x0b,0x24,0x46,0x3e,0x15,0x23,0x19,0x0d,0x0e,0x1d,
12047
+0x29,0x35,0x42,0x26,0x24,0x38,0x2d,0x22,0x0c,0x0c,0x25,0x35,
12048
+0x47,0x2d,0x2e,0x4c,0x3a,0x2a,0x0d,0x10,0x43,0x56,0x60,0x00,
12049
+0x00,0x02,0x00,0x6e,0x00,0x00,0x04,0x65,0x06,0xa4,0x00,0x0e,
12050
+0x00,0x6a,0x00,0x00,0x01,0x34,0x26,0x23,0x22,0x0e,0x02,0x1d,
12051
+0x01,0x33,0x3e,0x03,0x05,0x14,0x0e,0x02,0x07,0x1e,0x03,0x15,
12052
+0x14,0x0e,0x02,0x07,0x1e,0x03,0x15,0x14,0x06,0x23,0x22,0x2e,
12053
+0x02,0x35,0x11,0x34,0x3e,0x02,0x33,0x20,0x11,0x14,0x0e,0x02,
12054
+0x07,0x23,0x13,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,0x34,
12055
+0x2e,0x02,0x23,0x07,0x35,0x17,0x32,0x3e,0x02,0x35,0x34,0x2e,
12056
+0x02,0x23,0x07,0x35,0x17,0x32,0x3e,0x02,0x35,0x34,0x2e,0x02,
12057
+0x27,0x37,0x1e,0x05,0x02,0x62,0x43,0x4f,0x30,0x3b,0x21,0x0c,
12058
+0x0d,0x54,0x6e,0x41,0x1a,0x02,0x03,0x25,0x3b,0x49,0x24,0x1d,
12059
+0x3e,0x32,0x20,0x21,0x33,0x40,0x1e,0x1e,0x3f,0x34,0x21,0xef,
12060
+0xf5,0x6e,0xb7,0x84,0x4a,0x27,0x53,0x82,0x5b,0x01,0x1b,0x2d,
12061
+0x63,0xa0,0x73,0x08,0x02,0x2a,0x4c,0x6f,0x45,0x4e,0x62,0x38,
12062
+0x15,0x11,0x1e,0x29,0x18,0x4f,0x4d,0x26,0x3e,0x2d,0x19,0x1d,
12063
+0x30,0x3d,0x1f,0x4e,0x52,0x2a,0x45,0x32,0x1b,0x18,0x2d,0x3e,
12064
+0x25,0x22,0x18,0x42,0x47,0x45,0x36,0x22,0x05,0xa2,0x4f,0x48,
12065
+0x26,0x4e,0x78,0x52,0x6b,0x1b,0x27,0x36,0x53,0x6e,0x2b,0x52,
12066
+0x47,0x36,0x10,0x0f,0x2d,0x38,0x42,0x24,0x1f,0x40,0x3a,0x33,
12067
+0x11,0x11,0x2f,0x3f,0x4e,0x30,0x95,0x9a,0x2a,0x73,0xca,0xa1,
12068
+0x02,0x0c,0xbc,0xfc,0x97,0x3f,0xfe,0xd8,0x4b,0x60,0x46,0x39,
12069
+0x22,0xfe,0x04,0x96,0xad,0x57,0x17,0x20,0x33,0x3f,0x1e,0x33,
12070
+0x51,0x3a,0x1f,0x28,0xb6,0x3a,0x1c,0x2f,0x3c,0x20,0x1f,0x42,
12071
+0x36,0x23,0x37,0xb6,0x32,0x23,0x38,0x46,0x23,0x60,0x86,0x62,
12072
+0x48,0x21,0x1f,0x0f,0x2a,0x37,0x47,0x58,0x6a,0x00,0x00,0x00,
12073
+0x00,0x02,0x00,0x6e,0xff,0x46,0x04,0x24,0x04,0x41,0x00,0x30,
12074
+0x00,0x45,0x00,0x00,0x01,0x14,0x0e,0x02,0x07,0x33,0x1e,0x03,
12075
+0x33,0x32,0x36,0x37,0x15,0x22,0x2e,0x02,0x27,0x23,0x0e,0x03,
12076
+0x07,0x35,0x16,0x33,0x32,0x3e,0x02,0x37,0x2e,0x03,0x35,0x34,
12077
+0x3e,0x02,0x33,0x32,0x1e,0x02,0x07,0x34,0x2e,0x02,0x23,0x22,
12078
+0x0e,0x02,0x15,0x14,0x1e,0x02,0x3b,0x01,0x32,0x3e,0x02,0x04,
12079
+0x24,0x20,0x48,0x72,0x52,0x01,0x1c,0x3f,0x41,0x3f,0x1d,0x0e,
12080
+0x1a,0x0b,0x2f,0x6c,0x78,0x82,0x45,0x0a,0x37,0x71,0x74,0x78,
12081
+0x3e,0x15,0x20,0x1e,0x46,0x48,0x45,0x1c,0x56,0x7a,0x4e,0x24,
12082
+0x4f,0x86,0xae,0x5f,0x59,0xa9,0x83,0x4f,0xe6,0x17,0x38,0x5b,
12083
+0x44,0x3f,0x5e,0x3e,0x1f,0x2c,0x43,0x51,0x24,0x1c,0x2b,0x54,
12084
+0x41,0x28,0x02,0x5a,0x5a,0x9c,0x86,0x72,0x30,0x08,0x15,0x14,
12085
+0x0e,0x04,0x05,0xbd,0x25,0x38,0x44,0x20,0x1a,0x3f,0x3a,0x2b,
12086
+0x06,0xba,0x0a,0x0f,0x14,0x15,0x05,0x34,0x78,0x89,0x9b,0x57,
12087
+0x70,0xb5,0x7e,0x44,0x47,0x80,0xb4,0x6c,0x70,0x8c,0x4f,0x1d,
12088
+0x21,0x53,0x8b,0x69,0x92,0xbd,0x6f,0x2b,0x2b,0x6f,0xbd,0x00,
12089
+0x00,0x01,0x00,0x6e,0xfe,0x33,0x04,0x25,0x04,0xaf,0x00,0x56,
12090
+0x00,0x00,0x01,0x32,0x3e,0x02,0x35,0x23,0x0e,0x05,0x23,0x22,
12091
+0x2e,0x02,0x35,0x34,0x3e,0x02,0x37,0x17,0x0e,0x01,0x15,0x14,
12092
+0x1e,0x02,0x33,0x32,0x3e,0x02,0x37,0x33,0x14,0x0e,0x04,0x07,
12093
+0x1e,0x01,0x1d,0x01,0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,
12094
+0x34,0x36,0x37,0x17,0x0e,0x03,0x15,0x14,0x1e,0x02,0x33,0x32,
12095
+0x3e,0x02,0x35,0x37,0x34,0x2e,0x02,0x2b,0x01,0x35,0x02,0x48,
12096
+0x44,0x82,0x65,0x3d,0x2b,0x13,0x3b,0x46,0x4e,0x4a,0x43,0x19,
12097
+0x50,0x91,0x6d,0x41,0x0a,0x12,0x1a,0x10,0xd1,0x25,0x20,0x0c,
12098
+0x27,0x49,0x3c,0x4b,0x7c,0x68,0x55,0x26,0x83,0x1c,0x30,0x42,
12099
+0x4a,0x51,0x27,0xa6,0xa9,0x48,0x7e,0xad,0x65,0x63,0xae,0x82,
12100
+0x4b,0x9c,0x90,0x19,0x13,0x23,0x1b,0x10,0x17,0x38,0x5d,0x46,
12101
+0x30,0x5a,0x45,0x2b,0x01,0x19,0x38,0x5a,0x40,0x5f,0x01,0xfb,
12102
+0x4a,0x75,0x8f,0x46,0x15,0x27,0x22,0x1d,0x14,0x0b,0x15,0x37,
12103
+0x60,0x4c,0x25,0x39,0x2d,0x25,0x12,0x40,0x26,0x45,0x2a,0x13,
12104
+0x2f,0x28,0x1c,0x1e,0x3b,0x58,0x3a,0x70,0xa8,0x7d,0x58,0x3f,
12105
+0x2c,0x13,0x36,0xcc,0x90,0x63,0x62,0x9f,0x6f,0x3c,0x48,0x76,
12106
+0x97,0x50,0x8c,0xa4,0x1a,0x3f,0x0d,0x3c,0x4c,0x52,0x24,0x41,
12107
+0x6d,0x4f,0x2c,0x17,0x37,0x5c,0x45,0xd2,0x41,0x6b,0x4d,0x2a,
12108
+0x68,0x00,0x00,0x00,0x00,0x01,0x00,0x6e,0xfe,0x33,0x04,0x22,
12109
+0x06,0xa5,0x00,0x5b,0x00,0x00,0x25,0x14,0x0e,0x02,0x23,0x22,
12110
+0x2e,0x04,0x35,0x34,0x3e,0x02,0x37,0x17,0x0e,0x03,0x15,0x14,
12111
+0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,0x13,0x36,0x26,0x27,0x07,
12112
+0x35,0x17,0x3e,0x03,0x35,0x34,0x2e,0x06,0x35,0x34,0x3e,0x02,
12113
+0x32,0x1e,0x02,0x17,0x07,0x2e,0x03,0x23,0x22,0x0e,0x02,0x15,
12114
+0x14,0x1e,0x06,0x15,0x14,0x06,0x07,0x1e,0x03,0x15,0x04,0x22,
12115
+0x3f,0x77,0xab,0x6b,0x52,0x88,0x6c,0x51,0x36,0x1b,0x27,0x4c,
12116
+0x70,0x48,0x1d,0x16,0x24,0x1a,0x0f,0x22,0x44,0x62,0x41,0x4c,
12117
+0x59,0x2e,0x0e,0x01,0x01,0x6a,0x70,0x7d,0x80,0x3b,0x4c,0x2d,
12118
+0x12,0x33,0x53,0x6b,0x6f,0x6a,0x53,0x33,0x3e,0x65,0x7f,0x82,
12119
+0x7b,0x65,0x46,0x0d,0xa0,0x0b,0x23,0x39,0x51,0x39,0x2a,0x56,
12120
+0x45,0x2c,0x3e,0x66,0x83,0x88,0x83,0x66,0x3e,0x83,0x88,0x3a,
12121
+0x69,0x51,0x30,0x1e,0x78,0xb7,0x7d,0x3f,0x27,0x41,0x56,0x5c,
12122
+0x5c,0x28,0x4d,0x72,0x50,0x32,0x0e,0x47,0x0f,0x27,0x3d,0x59,
12123
+0x42,0x4d,0x6b,0x45,0x1f,0x34,0x5a,0x79,0x45,0x01,0x0a,0x84,
12124
+0x8a,0x04,0x36,0xba,0x2d,0x01,0x1c,0x30,0x45,0x2a,0x4c,0x60,
12125
+0x3d,0x25,0x21,0x28,0x44,0x69,0x53,0x4e,0x6f,0x47,0x20,0x1c,
12126
+0x44,0x71,0x55,0x22,0x3b,0x4e,0x2e,0x13,0x18,0x2e,0x43,0x2b,
12127
+0x47,0x56,0x34,0x1c,0x19,0x20,0x3c,0x62,0x4f,0x74,0x8b,0x13,
12128
+0x12,0x37,0x52,0x72,0x4e,0x00,0x00,0x00,0x00,0x03,0x00,0x6e,
12129
+0x00,0x00,0x04,0xc3,0x06,0xa2,0x00,0x10,0x00,0x23,0x00,0x51,
12130
+0x00,0x00,0x01,0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,0x33,
12131
+0x32,0x3e,0x02,0x35,0x13,0x11,0x34,0x2e,0x02,0x23,0x22,0x0e,
12132
+0x02,0x15,0x14,0x1e,0x04,0x33,0x25,0x15,0x27,0x23,0x15,0x33,
12133
+0x37,0x15,0x27,0x23,0x07,0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,
12134
+0x35,0x34,0x3e,0x01,0x24,0x37,0x33,0x35,0x23,0x22,0x24,0x2e,
12135
+0x01,0x35,0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,0x15,0x11,0x33,
12136
+0x03,0x40,0x38,0x7a,0xa5,0x65,0x2c,0x23,0x45,0x66,0x42,0x2a,
12137
+0x4e,0x3b,0x23,0x02,0x24,0x41,0x5b,0x36,0x3b,0x5b,0x3e,0x20,
12138
+0x2d,0x4c,0x63,0x6a,0x6b,0x2e,0x01,0x8c,0x51,0x6c,0x6c,0x53,
12139
+0x53,0x6c,0x01,0x2f,0x64,0x9b,0x6d,0x72,0xbb,0x85,0x48,0x51,
12140
+0xac,0x01,0x0e,0xbc,0x0b,0x0b,0xc0,0xfe,0xf1,0xaa,0x4e,0x44,
12141
+0x7d,0xb0,0x6b,0x77,0xa8,0x6a,0x31,0x6c,0x02,0x72,0x20,0x41,
12142
+0x63,0x44,0x41,0x59,0x36,0x18,0x0b,0x1c,0x2f,0x24,0x03,0x37,
12143
+0x01,0x7f,0x21,0x2c,0x1a,0x0b,0x18,0x37,0x5a,0x42,0x41,0x5a,
12144
+0x3a,0x1f,0x0f,0x03,0x43,0xe6,0x38,0xf6,0x4c,0xf3,0x44,0xfe,
12145
+0x50,0x87,0x62,0x38,0x35,0x5f,0x86,0x51,0x5d,0x88,0x5b,0x31,
12146
+0x06,0xe6,0x2a,0x59,0x8c,0x62,0x51,0x85,0x5f,0x34,0x2f,0x5c,
12147
+0x85,0x56,0xfe,0xf4,0x00,0x02,0x00,0x6e,0xfe,0x33,0x06,0xa9,
12148
+0x05,0x60,0x00,0x16,0x00,0x64,0x00,0x00,0x01,0x34,0x2e,0x04,
12149
+0x23,0x22,0x0e,0x02,0x15,0x11,0x14,0x1e,0x02,0x33,0x32,0x3e,
12150
+0x02,0x01,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x33,0x32,0x1e,
12151
+0x02,0x17,0x33,0x3e,0x03,0x37,0x17,0x0e,0x03,0x1d,0x01,0x33,
12152
+0x3e,0x03,0x33,0x32,0x1e,0x02,0x15,0x0e,0x03,0x23,0x22,0x26,
12153
+0x27,0x23,0x15,0x14,0x06,0x23,0x37,0x33,0x32,0x3e,0x02,0x35,
12154
+0x13,0x34,0x2e,0x04,0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,
12155
+0x33,0x05,0xc1,0x11,0x20,0x2e,0x3a,0x43,0x26,0x25,0x4f,0x42,
12156
+0x2a,0x2f,0x4b,0x5d,0x2f,0x34,0x52,0x38,0x1e,0xfc,0x6f,0x63,
12157
+0xa6,0x77,0x42,0x45,0x7a,0xa6,0x61,0x12,0x38,0x42,0x48,0x22,
12158
+0x11,0x01,0x12,0x2e,0x52,0x42,0x10,0x18,0x1e,0x11,0x05,0x1d,
12159
+0x18,0x3b,0x3f,0x42,0x20,0x62,0xa6,0x78,0x44,0x02,0x3f,0x73,
12160
+0xa7,0x69,0x3f,0x83,0x33,0x11,0xb9,0xcd,0x01,0x54,0x1c,0x2d,
12161
+0x1f,0x10,0x01,0x18,0x27,0x33,0x35,0x34,0x15,0x32,0x53,0x3b,
12162
+0x21,0x1f,0x3a,0x53,0x35,0x02,0x26,0x60,0x88,0x5b,0x35,0x1b,
12163
+0x08,0x09,0x27,0x51,0x47,0xfe,0x4f,0x3a,0x4d,0x2d,0x13,0x1f,
12164
+0x5c,0xa4,0xfe,0x60,0x38,0x80,0xd0,0x98,0x94,0xcf,0x82,0x3b,
12165
+0x0a,0x14,0x1d,0x12,0x68,0x85,0x50,0x27,0x09,0x2a,0x0c,0x1f,
12166
+0x26,0x2b,0x18,0xa6,0x10,0x19,0x12,0x09,0x3b,0x7f,0xca,0x8f,
12167
+0x9e,0xd5,0x82,0x38,0x1d,0x1c,0xb9,0xa7,0xa6,0x65,0x2f,0x4d,
12168
+0x62,0x34,0x03,0x4b,0x2f,0x44,0x2d,0x1a,0x0e,0x04,0x1f,0x5b,
12169
+0xa3,0x84,0x86,0xa5,0x5c,0x1f,0x00,0x00,0x00,0x01,0x00,0x6e,
12170
+0xfe,0x34,0x04,0x95,0x04,0x55,0x00,0x4d,0x00,0x00,0x05,0x14,
12171
+0x0e,0x02,0x23,0x22,0x2e,0x04,0x35,0x34,0x3e,0x06,0x35,0x34,
12172
+0x2e,0x02,0x23,0x22,0x06,0x15,0x14,0x1e,0x02,0x17,0x07,0x2e,
12173
+0x01,0x35,0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,0x15,0x14,0x0e,
12174
+0x06,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,0x34,0x2e,
12175
+0x02,0x27,0x37,0x1e,0x03,0x04,0x95,0x60,0x98,0xbc,0x5d,0x3d,
12176
+0x7e,0x76,0x69,0x4e,0x2e,0x40,0x69,0x85,0x8c,0x85,0x69,0x40,
12177
+0x27,0x41,0x56,0x2f,0x6e,0x66,0x08,0x0c,0x0f,0x08,0x83,0x28,
12178
+0x35,0x35,0x63,0x90,0x5b,0x47,0x86,0x68,0x3f,0x37,0x5a,0x74,
12179
+0x78,0x74,0x5a,0x37,0x23,0x49,0x73,0x50,0x3c,0x6c,0x51,0x30,
12180
+0x06,0x12,0x1f,0x19,0x25,0x3f,0x66,0x47,0x27,0x33,0x6e,0x9b,
12181
+0x63,0x2d,0x1d,0x39,0x51,0x69,0x7e,0x49,0x5e,0x8f,0x70,0x55,
12182
+0x49,0x41,0x46,0x51,0x35,0x46,0x56,0x2d,0x0f,0x51,0x5f,0x08,
12183
+0x1b,0x1e,0x19,0x05,0x6a,0x20,0x59,0x43,0x31,0x68,0x56,0x38,
12184
+0x27,0x51,0x7c,0x55,0x47,0x71,0x5c,0x4e,0x4a,0x4d,0x5a,0x6d,
12185
+0x45,0x53,0x80,0x57,0x2d,0x26,0x48,0x67,0x40,0x3e,0x53,0x43,
12186
+0x3e,0x28,0x41,0x20,0x50,0x5e,0x6b,0x00,0x00,0x01,0x00,0x82,
12187
+0xfe,0x33,0x04,0x3a,0x04,0x41,0x00,0x3b,0x00,0x00,0x13,0x33,
12188
+0x11,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,0x34,0x2e,0x02,
12189
+0x27,0x33,0x1e,0x03,0x15,0x14,0x0e,0x02,0x23,0x22,0x26,0x27,
12190
+0x11,0x14,0x16,0x33,0x32,0x3e,0x02,0x35,0x34,0x2e,0x02,0x27,
12191
+0x37,0x1e,0x03,0x15,0x14,0x0e,0x02,0x23,0x22,0x26,0x35,0x82,
12192
+0xd6,0x2c,0x4a,0x61,0x35,0x3c,0x4d,0x2b,0x11,0x1f,0x3e,0x5d,
12193
+0x3d,0x81,0x5b,0x84,0x54,0x28,0x46,0x78,0xa0,0x5a,0x57,0x84,
12194
+0x23,0x7b,0x8d,0x3f,0x57,0x36,0x17,0x06,0x12,0x22,0x1d,0x07,
12195
+0x5d,0x7e,0x4c,0x20,0x4e,0x83,0xad,0x60,0xec,0xee,0x04,0x2c,
12196
+0xfe,0x4f,0x32,0x5a,0x44,0x28,0x21,0x4d,0x7c,0x5b,0x54,0x72,
12197
+0x53,0x3f,0x21,0x21,0x52,0x66,0x7c,0x4b,0x55,0x8e,0x66,0x38,
12198
+0x4a,0x54,0xfd,0xef,0x7a,0x84,0x14,0x2e,0x48,0x35,0x22,0x43,
12199
+0x37,0x26,0x06,0x5a,0x13,0x37,0x4b,0x62,0x3d,0x40,0x6d,0x4f,
12200
+0x2d,0xfd,0xf2,0x00,0x00,0x02,0x00,0x6e,0xfe,0x33,0x04,0x85,
12201
+0x04,0x4b,0x00,0x36,0x00,0x48,0x00,0x00,0x13,0x34,0x3e,0x02,
12202
+0x33,0x32,0x1e,0x02,0x15,0x14,0x0e,0x02,0x07,0x0e,0x03,0x15,
12203
+0x14,0x16,0x33,0x32,0x3e,0x02,0x35,0x34,0x26,0x27,0x37,0x1e,
12204
+0x03,0x15,0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x34,0x25,
12205
+0x35,0x2e,0x03,0x37,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,
12206
+0x34,0x26,0x23,0x22,0x0e,0x02,0x6e,0x56,0x8f,0xb7,0x62,0x73,
12207
+0xc5,0x90,0x51,0x22,0x56,0x90,0x6e,0x5d,0x80,0x4f,0x23,0x6f,
12208
+0x5b,0x33,0x57,0x40,0x24,0x18,0x24,0x2a,0x18,0x40,0x3a,0x28,
12209
+0x3d,0x6d,0x99,0x5b,0x4f,0x83,0x5f,0x34,0x01,0x1d,0x58,0xa5,
12210
+0x81,0x4e,0xe1,0x23,0x45,0x68,0x45,0x57,0x7b,0x4e,0x24,0x96,
12211
+0xaa,0x4d,0x6b,0x43,0x1e,0x02,0x63,0x73,0xb5,0x7e,0x42,0x43,
12212
+0x79,0xa9,0x67,0x53,0x8e,0x7c,0x6d,0x32,0x2b,0x55,0x52,0x4d,
12213
+0x23,0x51,0x52,0x0c,0x1e,0x31,0x26,0x2a,0x37,0x18,0x69,0x05,
12214
+0x1f,0x35,0x4e,0x34,0x35,0x59,0x41,0x24,0x2a,0x48,0x5f,0x35,
12215
+0xae,0x71,0x27,0x0d,0x4b,0x7a,0xa8,0x62,0x5a,0x90,0x65,0x35,
12216
+0x30,0x67,0xa1,0x71,0xaf,0xb6,0x2f,0x60,0x95,0x00,0x00,0x00,
12217
+0x00,0x01,0x00,0x6e,0xff,0x72,0x04,0x23,0x04,0x41,0x00,0x3c,
12218
+0x00,0x00,0x01,0x14,0x06,0x07,0x27,0x3e,0x01,0x35,0x34,0x2e,
12219
+0x02,0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,0x17,0x1e,0x03,
12220
+0x17,0x27,0x2e,0x03,0x27,0x2e,0x01,0x23,0x22,0x0e,0x02,0x07,
12221
+0x26,0x35,0x34,0x37,0x33,0x2e,0x03,0x35,0x34,0x3e,0x02,0x33,
12222
+0x32,0x1e,0x02,0x04,0x23,0x86,0x72,0x06,0x12,0x0d,0x0d,0x31,
12223
+0x62,0x55,0x39,0x64,0x49,0x2b,0x29,0x50,0x76,0x4d,0x28,0x48,
12224
+0x3c,0x2c,0x0d,0xb9,0x05,0x13,0x1f,0x2d,0x1f,0x15,0x28,0x11,
12225
+0x1a,0x40,0x39,0x2c,0x06,0x2d,0xa0,0x02,0x43,0x68,0x47,0x25,
12226
+0x46,0x7e,0xaf,0x69,0x5f,0xab,0x82,0x4d,0x02,0xbf,0x6e,0xaa,
12227
+0x3f,0x58,0x2d,0x65,0x3f,0x36,0x6c,0x57,0x36,0x1e,0x44,0x70,
12228
+0x51,0x6a,0x88,0x5e,0x48,0x2a,0x17,0x42,0x58,0x71,0x47,0x01,
12229
+0x4e,0x60,0x3a,0x1c,0x0a,0x07,0x08,0x23,0x36,0x40,0x1c,0x41,
12230
+0x34,0x65,0x32,0x2c,0x5c,0x6c,0x82,0x52,0x60,0x95,0x67,0x36,
12231
+0x39,0x67,0x8e,0x00,0x00,0x03,0x00,0x5a,0x00,0x00,0x03,0x24,
12232
+0x03,0xe4,0x00,0x14,0x00,0x28,0x00,0x3a,0x00,0x00,0x37,0x2e,
12233
+0x01,0x35,0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,0x15,0x14,0x0e,
12234
+0x02,0x23,0x22,0x26,0x01,0x26,0x35,0x34,0x3e,0x02,0x33,0x32,
12235
+0x1e,0x02,0x15,0x14,0x0e,0x02,0x23,0x22,0x26,0x01,0x26,0x34,
12236
+0x3e,0x02,0x32,0x1e,0x02,0x15,0x14,0x0e,0x02,0x23,0x22,0x26,
12237
+0x67,0x05,0x04,0x11,0x1d,0x27,0x16,0x15,0x27,0x1e,0x12,0x10,
12238
+0x1d,0x27,0x17,0x20,0x37,0x01,0xe2,0x08,0x11,0x1c,0x27,0x17,
12239
+0x15,0x27,0x1e,0x12,0x10,0x1c,0x27,0x17,0x20,0x38,0xfe,0x00,
12240
+0x08,0x11,0x1d,0x27,0x2c,0x27,0x1d,0x11,0x10,0x1c,0x27,0x17,
12241
+0x20,0x37,0x44,0x0b,0x15,0x0a,0x17,0x2a,0x1f,0x13,0x12,0x1f,
12242
+0x29,0x17,0x15,0x29,0x1f,0x13,0x25,0x01,0xbc,0x16,0x15,0x16,
12243
+0x29,0x20,0x12,0x12,0x1e,0x29,0x17,0x15,0x29,0x1f,0x13,0x25,
12244
+0x01,0x86,0x14,0x2e,0x29,0x1f,0x12,0x12,0x1e,0x29,0x17,0x15,
12245
+0x29,0x1f,0x13,0x25,0x00,0x02,0x00,0x5a,0x02,0xbb,0x02,0x7a,
12246
+0x06,0xc3,0x00,0x0a,0x00,0x31,0x00,0x00,0x01,0x34,0x23,0x22,
12247
+0x15,0x14,0x33,0x32,0x3e,0x02,0x37,0x10,0x21,0x20,0x19,0x01,
12248
+0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,0x33,0x32,0x36,0x37,0x15,
12249
+0x0e,0x01,0x23,0x22,0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,0x11,
12250
+0x33,0x36,0x33,0x32,0x16,0x01,0xf1,0x88,0x85,0x85,0x32,0x37,
12251
+0x1a,0x05,0x89,0xfe,0xef,0xfe,0xf1,0x28,0x4a,0x6b,0x42,0x0a,
12252
+0x22,0x26,0x25,0x0f,0x12,0x3c,0x2d,0x23,0x3d,0x1d,0x27,0x32,
12253
+0x21,0x13,0x07,0x1a,0x30,0x25,0x16,0x0d,0x42,0x36,0x8e,0x83,
12254
+0x03,0xd6,0xd4,0xd4,0xd0,0x20,0x38,0x4c,0x2c,0xfe,0xe5,0x01,
12255
+0x1b,0x02,0x09,0x31,0x53,0x3b,0x21,0x0a,0x0c,0x0a,0x13,0x11,
12256
+0x42,0x1e,0x22,0x08,0x0b,0x08,0x15,0x23,0x2d,0x18,0xff,0x00,
12257
+0x13,0x88,0x00,0x00,0x00,0x02,0xff,0xfa,0x00,0x00,0x04,0x7f,
12258
+0x04,0x27,0x00,0x0f,0x00,0x12,0x00,0x00,0x09,0x01,0x33,0x15,
12259
+0x21,0x35,0x33,0x27,0x21,0x07,0x33,0x15,0x21,0x35,0x33,0x01,
12260
+0x03,0x21,0x03,0x02,0x7f,0x01,0x87,0x79,0xfe,0x17,0xaa,0x53,
12261
+0xfe,0x50,0x53,0x9f,0xfe,0x71,0x77,0x01,0x87,0x90,0x01,0x5a,
12262
+0xad,0x04,0x27,0xfc,0x44,0x6b,0x6b,0xca,0xca,0x6b,0x6b,0x03,
12263
+0xbc,0xfd,0x79,0x01,0xa6,0x00,0x00,0x00,0x00,0x02,0xff,0xd5,
12264
+0x00,0x00,0x05,0xbd,0x04,0x27,0x00,0x1f,0x00,0x23,0x00,0x00,
12265
+0x01,0x11,0x23,0x35,0x21,0x11,0x21,0x35,0x33,0x11,0x23,0x35,
12266
+0x21,0x11,0x21,0x35,0x33,0x11,0x21,0x35,0x33,0x35,0x21,0x07,
12267
+0x33,0x15,0x21,0x35,0x33,0x01,0x23,0x35,0x17,0x03,0x21,0x11,
12268
+0x05,0xb1,0x6a,0xfe,0x18,0x01,0x14,0x6a,0x6a,0xfe,0xec,0x01,
12269
+0xf4,0x6a,0xfc,0x43,0xa7,0xfe,0x81,0x5d,0xa2,0xfe,0x68,0x77,
12270
+0x01,0x87,0x7a,0xf9,0xf8,0x01,0x4d,0x04,0x27,0xfe,0xdf,0xa6,
12271
+0xfe,0xbf,0x86,0xfe,0x9e,0x72,0xfe,0x7a,0xa6,0xfe,0xdf,0x6a,
12272
+0xcb,0xca,0x6b,0x6b,0x03,0x51,0x6b,0x6b,0xfd,0xe4,0x02,0x1c,
12273
+0x00,0x03,0x00,0x66,0xff,0xe3,0x07,0x1e,0x04,0x44,0x00,0x0a,
12274
+0x00,0x38,0x00,0x3f,0x00,0x00,0x01,0x15,0x33,0x32,0x36,0x35,
12275
+0x34,0x26,0x23,0x22,0x06,0x27,0x3e,0x01,0x33,0x32,0x16,0x15,
12276
+0x14,0x06,0x23,0x21,0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x33,
12277
+0x15,0x0e,0x01,0x23,0x22,0x26,0x27,0x0e,0x01,0x23,0x22,0x00,
12278
+0x03,0x21,0x35,0x34,0x26,0x23,0x22,0x06,0x07,0x23,0x3e,0x01,
12279
+0x33,0x32,0x16,0x01,0x1e,0x01,0x33,0x32,0x36,0x37,0x04,0x55,
12280
+0xed,0x89,0x86,0x88,0x74,0x73,0x8d,0x6d,0x53,0xca,0x7d,0xc5,
12281
+0xd7,0xef,0xd8,0xfe,0xfe,0x90,0x80,0x74,0x84,0x10,0x5f,0x60,
12282
+0xb5,0x56,0x8d,0xc1,0x37,0x4a,0xc0,0x75,0xf1,0xfe,0xfe,0x04,
12283
+0x03,0x18,0xa1,0x9f,0x79,0x9b,0x1f,0x93,0x2b,0xee,0xc0,0x7a,
12284
+0xcf,0xfd,0xa4,0x06,0x91,0x88,0x7f,0x93,0x0f,0x02,0xd9,0xe1,
12285
+0x76,0x7a,0x6f,0x82,0x8e,0x46,0x5b,0x58,0xb6,0xa6,0xa5,0xb6,
12286
+0x49,0x78,0x86,0x63,0x63,0xd7,0x29,0x29,0x57,0x5a,0x58,0x59,
12287
+0x01,0x2a,0x01,0x1a,0x08,0xd7,0xdb,0x7f,0x7d,0xaf,0xb0,0x5b,
12288
+0xfd,0xd4,0xba,0xbd,0xbe,0xb9,0x00,0x00,0x00,0x03,0x00,0x49,
12289
+0x00,0x00,0x04,0x67,0x04,0x27,0x00,0x18,0x00,0x20,0x00,0x28,
12290
+0x00,0x00,0x01,0x20,0x11,0x14,0x07,0x06,0x07,0x33,0x15,0x23,
12291
+0x16,0x15,0x14,0x06,0x23,0x21,0x35,0x33,0x11,0x23,0x35,0x33,
12292
+0x11,0x23,0x35,0x01,0x33,0x32,0x36,0x34,0x26,0x2b,0x01,0x11,
12293
+0x33,0x32,0x36,0x34,0x26,0x2b,0x01,0x02,0x96,0x01,0x5c,0x40,
12294
+0x0c,0x0e,0xcf,0xc3,0x64,0xd6,0xe3,0xfd,0xfa,0xa7,0xa7,0xa7,
12295
+0xa7,0x01,0x5f,0xa9,0x6a,0x73,0x74,0x69,0xa9,0xa9,0x75,0x7f,
12296
+0x7e,0x76,0xa9,0x04,0x27,0xfe,0xf9,0x5b,0x3b,0x0b,0x0a,0x6a,
12297
+0x45,0x92,0x9e,0x96,0x6a,0x01,0xa1,0x6a,0x01,0x48,0x6a,0xfe,
12298
+0x5b,0x59,0x88,0x5a,0xfc,0xad,0x70,0xb6,0x6e,0x00,0x00,0x00,
12299
+0x00,0x01,0x00,0x66,0xff,0xe3,0x03,0xfa,0x04,0x44,0x00,0x1a,
12300
+0x00,0x00,0x01,0x14,0x16,0x33,0x32,0x36,0x37,0x33,0x11,0x0e,
12301
+0x01,0x23,0x22,0x00,0x10,0x00,0x33,0x32,0x16,0x17,0x11,0x23,
12302
+0x2e,0x01,0x23,0x22,0x06,0x01,0x3d,0x98,0x95,0x83,0x8d,0x15,
12303
+0x6b,0x65,0xc8,0x65,0xe8,0xfe,0xe6,0x01,0x1a,0xe8,0x65,0xc8,
12304
+0x65,0x6b,0x15,0x8d,0x83,0x95,0x98,0x02,0x14,0xe7,0xe7,0x80,
12305
+0x8c,0xfe,0xf0,0x30,0x2f,0x01,0x31,0x01,0xff,0x01,0x31,0x2f,
12306
+0x30,0xfe,0xf0,0x8c,0x80,0xe7,0x00,0x00,0x00,0x03,0x00,0x49,
12307
+0x00,0x00,0x04,0x59,0x04,0x27,0x00,0x00,0x00,0x08,0x00,0x15,
12308
+0x00,0x00,0x09,0x01,0x33,0x32,0x36,0x10,0x26,0x2b,0x01,0x01,
12309
+0x35,0x33,0x11,0x23,0x35,0x21,0x20,0x00,0x15,0x14,0x00,0x21,
12310
+0x03,0x96,0xfe,0x12,0x7c,0xc1,0xb1,0xb0,0xc2,0x7c,0xfe,0xa1,
12311
+0xa7,0xa7,0x01,0xa7,0x01,0x13,0x01,0x56,0xfe,0xa9,0xfe,0xee,
12312
+0x02,0x15,0xfe,0x55,0xdd,0x01,0x9c,0xda,0xfc,0x43,0x6a,0x03,
12313
+0x53,0x6a,0xfe,0xe6,0xf9,0xfb,0xfe,0xe7,0x00,0x02,0x00,0x49,
12314
+0x00,0x00,0x04,0x59,0x04,0x27,0x00,0x10,0x00,0x1c,0x00,0x00,
12315
+0x33,0x35,0x33,0x11,0x23,0x35,0x33,0x11,0x23,0x35,0x21,0x20,
12316
+0x00,0x15,0x14,0x00,0x21,0x27,0x33,0x32,0x36,0x10,0x26,0x2b,
12317
+0x01,0x11,0x33,0x15,0x23,0x49,0xa7,0xa7,0xa7,0xa7,0x01,0xa7,
12318
+0x01,0x13,0x01,0x56,0xfe,0xa9,0xfe,0xee,0x48,0x7c,0xc1,0xb1,
12319
+0xb0,0xc2,0x7c,0xe0,0xe0,0x6a,0x01,0x76,0x6b,0x01,0x72,0x6a,
12320
+0xfe,0xe6,0xf9,0xfb,0xfe,0xe7,0x6a,0xdd,0x01,0x9c,0xda,0xfe,
12321
+0x8e,0x6b,0x00,0x00,0x00,0x01,0x00,0x3b,0x00,0x00,0x03,0xf8,
12322
+0x04,0x27,0x00,0x17,0x00,0x00,0x01,0x11,0x23,0x35,0x21,0x11,
12323
+0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x11,0x21,0x35,0x33,0x11,
12324
+0x21,0x35,0x33,0x11,0x23,0x35,0x03,0xec,0x6a,0xfe,0x18,0x01,
12325
+0x14,0x6a,0x6a,0xfe,0xec,0x01,0xf4,0x6a,0xfc,0x43,0xa7,0xa7,
12326
+0x04,0x27,0xfe,0xdf,0xa6,0xfe,0xbf,0x86,0xfe,0x9e,0x72,0xfe,
12327
+0x7a,0xa6,0xfe,0xdf,0x6a,0x03,0x53,0x6a,0x00,0x01,0x00,0x66,
12328
+0xff,0xdc,0x03,0xb4,0x04,0x44,0x00,0x32,0x00,0x00,0x01,0x32,
12329
+0x16,0x15,0x14,0x07,0x06,0x07,0x16,0x17,0x16,0x15,0x14,0x06,
12330
+0x23,0x22,0x27,0x26,0x27,0x35,0x33,0x16,0x17,0x16,0x33,0x32,
12331
+0x37,0x36,0x35,0x34,0x27,0x26,0x2b,0x01,0x35,0x33,0x32,0x37,
12332
+0x36,0x35,0x34,0x27,0x26,0x27,0x26,0x06,0x07,0x23,0x36,0x37,
12333
+0x36,0x01,0xff,0xe1,0xd4,0x4b,0x4c,0x87,0x87,0x4c,0x4b,0xd4,
12334
+0xc5,0x54,0x5f,0x5f,0x68,0x63,0x0a,0x3e,0x3e,0x75,0x6c,0x3a,
12335
+0x39,0x46,0x47,0x8a,0x26,0x26,0x8a,0x47,0x46,0x39,0x39,0x6d,
12336
+0x73,0x7c,0x14,0x96,0x16,0x5b,0x59,0x04,0x44,0x9a,0x8d,0x67,
12337
+0x47,0x47,0x18,0x18,0x48,0x47,0x66,0x8d,0x9a,0x13,0x12,0x25,
12338
+0xd7,0x5d,0x2d,0x2e,0x34,0x33,0x5f,0x6a,0x34,0x35,0x64,0x34,
12339
+0x35,0x69,0x60,0x33,0x32,0x01,0x01,0x5c,0x7c,0x81,0x61,0x5f,
12340
+0x00,0x02,0x00,0x4a,0xfe,0x4a,0x02,0x60,0x04,0x2d,0x00,0x0a,
12341
+0x00,0x14,0x00,0x00,0x01,0x14,0x06,0x23,0x22,0x26,0x35,0x34,
12342
+0x36,0x32,0x16,0x03,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x15,
12343
+0x21,0x01,0xe3,0x43,0x2f,0x2e,0x43,0x42,0x5e,0x43,0xeb,0xae,
12344
+0x02,0x16,0xb0,0xb0,0xfe,0x98,0xfe,0xbc,0x2e,0x44,0x44,0x2e,
12345
+0x2f,0x42,0x42,0x04,0xd8,0x6a,0x6a,0xfc,0xae,0x6b,0x00,0x00,
12346
+0x00,0x01,0x00,0x1c,0xff,0xe3,0x03,0x9f,0x04,0x27,0x00,0x14,
12347
+0x00,0x00,0x37,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x11,
12348
+0x23,0x35,0x21,0x15,0x23,0x11,0x14,0x06,0x23,0x22,0x26,0x1c,
12349
+0x72,0x03,0x58,0x58,0x77,0x5e,0xe8,0x02,0x71,0xbe,0xc6,0xdc,
12350
+0x47,0x93,0x27,0xeb,0x63,0x61,0x96,0xda,0x01,0xfe,0x6b,0x6b,
12351
+0xfd,0xfa,0xf7,0xdc,0x22,0x00,0x00,0x00,0xff,0xff,0x00,0x46,
12352
+0x00,0x00,0x04,0xe7,0x04,0x27,0x12,0x06,0x03,0xa4,0x00,0x00,
12353
+0x00,0x01,0x00,0x2f,0x00,0x00,0x04,0x24,0x04,0x27,0x00,0x15,
12354
+0x00,0x00,0x33,0x35,0x33,0x11,0x07,0x27,0x37,0x11,0x23,0x35,
12355
+0x21,0x15,0x23,0x11,0x25,0x17,0x01,0x11,0x21,0x35,0x33,0x11,
12356
+0x54,0xbe,0x9d,0x46,0xe3,0xbe,0x02,0x34,0xbe,0x01,0x44,0x46,
12357
+0xfe,0x76,0x01,0xf0,0x6a,0x6a,0x01,0x18,0x71,0x5c,0xa4,0x01,
12358
+0xac,0x6a,0x6a,0xfe,0xd9,0xea,0x5c,0xfe,0xe3,0xfe,0x74,0xfa,
12359
+0xfe,0x8b,0x00,0x00,0xff,0xff,0x00,0x4a,0x00,0x00,0x05,0xef,
12360
+0x04,0x27,0x10,0x06,0x03,0xa6,0x00,0x00,0x00,0x01,0x00,0x46,
12361
+0xff,0xe3,0x04,0xe9,0x04,0x27,0x00,0x13,0x00,0x00,0x01,0x11,
12362
+0x33,0x15,0x21,0x35,0x33,0x11,0x01,0x23,0x11,0x23,0x35,0x21,
12363
+0x15,0x23,0x11,0x01,0x21,0x15,0x04,0x43,0xa6,0xfd,0xfc,0xa6,
12364
+0xfd,0xc6,0x65,0xa6,0x02,0x04,0xa6,0x02,0x26,0x01,0x1f,0x03,
12365
+0xbd,0xfc,0xad,0x6a,0x6a,0x02,0xa3,0xfc,0xd6,0x03,0xda,0x6a,
12366
+0x6a,0xfd,0x5d,0x03,0x0d,0x6a,0x00,0x00,0xff,0xff,0x00,0x66,
12367
+0xff,0xe3,0x04,0x6a,0x04,0x44,0x12,0x06,0x00,0x52,0x00,0x00,
12368
+0x00,0x01,0x00,0x81,0xff,0xe3,0x04,0x15,0x04,0x44,0x00,0x1a,
12369
+0x00,0x00,0x01,0x34,0x26,0x23,0x22,0x06,0x07,0x23,0x11,0x3e,
12370
+0x01,0x33,0x32,0x00,0x10,0x00,0x23,0x22,0x26,0x27,0x11,0x33,
12371
+0x1e,0x01,0x33,0x32,0x36,0x03,0x3e,0x98,0x95,0x83,0x8d,0x15,
12372
+0x6b,0x65,0xc8,0x65,0xe8,0x01,0x1a,0xfe,0xe6,0xe8,0x65,0xc8,
12373
+0x65,0x6b,0x15,0x8d,0x83,0x95,0x98,0x02,0x14,0xe6,0xe7,0x80,
12374
+0x8c,0x01,0x10,0x30,0x2f,0xfe,0xcf,0xfe,0x01,0xfe,0xcf,0x2f,
12375
+0x30,0x01,0x10,0x8c,0x80,0xe7,0x00,0x00,0x00,0x02,0x00,0x66,
12376
+0x00,0x12,0x04,0xc6,0x04,0x16,0x00,0x08,0x00,0x12,0x00,0x00,
12377
+0x01,0x34,0x26,0x20,0x06,0x10,0x16,0x20,0x36,0x37,0x14,0x00,
12378
+0x20,0x00,0x35,0x34,0x00,0x20,0x00,0x04,0x64,0xea,0xfe,0x38,
12379
+0xea,0xea,0x01,0xc8,0xea,0x62,0xfe,0xce,0xfe,0x04,0xfe,0xce,
12380
+0x01,0x32,0x01,0xfc,0x01,0x32,0x02,0x14,0x94,0x96,0x96,0xfe,
12381
+0xd8,0x98,0x99,0x93,0xe8,0xfe,0xe6,0x01,0x18,0xea,0xe9,0x01,
12382
+0x19,0xfe,0xe7,0x00,0x00,0x01,0x00,0x65,0x00,0x38,0x04,0xc6,
12383
+0x03,0xef,0x00,0x19,0x00,0x00,0x25,0x2e,0x01,0x35,0x34,0x00,
12384
+0x33,0x20,0x00,0x15,0x14,0x06,0x07,0x21,0x35,0x3e,0x01,0x35,
12385
+0x34,0x26,0x20,0x06,0x15,0x14,0x16,0x17,0x01,0xc1,0xaa,0xb2,
12386
+0x01,0x33,0xfe,0x00,0xff,0x01,0x31,0x2f,0x30,0xfe,0xf0,0x8c,
12387
+0x80,0xe7,0xfe,0x34,0xe8,0x7c,0x7d,0x38,0x27,0xde,0xb0,0xe8,
12388
+0x01,0x1a,0xfe,0xe6,0xe8,0x65,0xc8,0x65,0x6b,0x15,0x8d,0x83,
12389
+0x95,0x98,0x97,0x96,0x77,0x8e,0x1a,0x00,0x00,0x03,0x00,0x24,
12390
+0xff,0xff,0x05,0x07,0x04,0x30,0x00,0x09,0x00,0x13,0x00,0x2b,
12391
+0x00,0x00,0x01,0x3e,0x01,0x35,0x34,0x26,0x23,0x22,0x06,0x0f,
12392
+0x01,0x0e,0x01,0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x17,0x0e,
12393
+0x01,0x23,0x22,0x00,0x35,0x34,0x36,0x37,0x27,0x37,0x17,0x3e,
12394
+0x01,0x33,0x32,0x00,0x15,0x14,0x06,0x07,0x17,0x07,0x03,0xf1,
12395
+0x39,0x39,0xea,0xe3,0x48,0x76,0x31,0x67,0x3d,0x3b,0xeb,0xe3,
12396
+0x4c,0x79,0x33,0x8e,0x4a,0xc6,0x76,0xfe,0xfe,0xcd,0x35,0x36,
12397
+0xac,0x3f,0xb2,0x4d,0xc1,0x73,0xfe,0x01,0x32,0x33,0x32,0xa6,
12398
+0x3f,0x01,0x34,0x26,0x70,0x4a,0x93,0x98,0x0f,0x0e,0x2d,0x28,
12399
+0x6f,0x4a,0x93,0x98,0x0f,0x0f,0x77,0x3e,0x40,0x01,0x19,0xe9,
12400
+0x5e,0xa0,0x43,0x8f,0x4c,0x95,0x3d,0x3e,0xfe,0xe7,0xe9,0x5e,
12401
+0xa0,0x40,0x8b,0x4c,0x00,0x03,0x00,0x66,0xff,0xe3,0x07,0x83,
12402
+0x04,0x44,0x00,0x08,0x00,0x28,0x00,0x2f,0x00,0x00,0x01,0x22,
12403
+0x06,0x10,0x16,0x20,0x36,0x10,0x26,0x01,0x21,0x35,0x34,0x26,
12404
+0x23,0x22,0x06,0x07,0x23,0x3e,0x01,0x33,0x32,0x16,0x17,0x3e,
12405
+0x01,0x33,0x32,0x00,0x10,0x00,0x23,0x22,0x26,0x27,0x0e,0x01,
12406
+0x23,0x22,0x00,0x37,0x1e,0x01,0x33,0x32,0x36,0x37,0x05,0x81,
12407
+0x94,0x97,0x97,0x01,0x28,0x97,0x98,0xfa,0x52,0x03,0x19,0xa2,
12408
+0x9e,0x79,0x9b,0x1f,0x94,0x2c,0xed,0xc0,0x82,0xcf,0x49,0x45,
12409
+0xcf,0x82,0xe8,0x01,0x1a,0xfe,0xe7,0xe9,0x84,0xce,0x46,0x49,
12410
+0xc8,0x7a,0xf2,0xfe,0xff,0xd4,0x06,0x91,0x88,0x7f,0x92,0x10,
12411
+0x03,0xe1,0xea,0xfe,0x38,0xe9,0xe9,0x01,0xc8,0xea,0xfe,0x46,
12412
+0x08,0xd7,0xdb,0x7f,0x7d,0xaf,0xb0,0x62,0x61,0x60,0x63,0xfe,
12413
+0xcd,0xfe,0x04,0xfe,0xce,0x63,0x60,0x60,0x63,0x01,0x29,0xb1,
12414
+0xba,0xbd,0xbe,0xb9,0x00,0x02,0x00,0x3c,0xff,0xe3,0x03,0xce,
12415
+0x04,0x44,0x00,0x19,0x00,0x21,0x00,0x00,0x01,0x14,0x17,0x36,
12416
+0x35,0x34,0x23,0x35,0x20,0x11,0x14,0x05,0x04,0x15,0x10,0x21,
12417
+0x20,0x11,0x34,0x25,0x26,0x35,0x34,0x21,0x15,0x22,0x13,0x32,
12418
+0x35,0x34,0x25,0x06,0x15,0x14,0x01,0x21,0xef,0xe9,0x7e,0x01,
12419
+0x1c,0xfe,0xfb,0x01,0x3c,0xfe,0x1a,0xfe,0x54,0x01,0x04,0xde,
12420
+0x01,0x23,0x64,0xc7,0xfd,0xfe,0xe6,0xf0,0x03,0x76,0x95,0x61,
12421
+0x63,0x67,0x8f,0x6b,0xfe,0xf5,0x74,0x7c,0x93,0xb8,0xfe,0xe5,
12422
+0x01,0x1b,0xb4,0x7a,0x63,0x9f,0xdc,0x6b,0xfc,0xaf,0xb0,0x9a,
12423
+0x5e,0x64,0x94,0xb0,0x00,0x01,0x00,0x66,0x02,0x14,0x04,0x6a,
12424
+0x04,0x44,0x00,0x0b,0x00,0x00,0x01,0x34,0x26,0x20,0x06,0x15,
12425
+0x23,0x34,0x00,0x20,0x00,0x15,0x03,0x93,0x97,0xfe,0xd8,0x97,
12426
+0xd7,0x01,0x19,0x01,0xd2,0x01,0x19,0x02,0x14,0xe4,0xe9,0xe9,
12427
+0xe4,0xfe,0x01,0x32,0xfe,0xce,0xfe,0x00,0x00,0x01,0x00,0x66,
12428
+0xff,0xe3,0x04,0x6a,0x02,0x13,0x00,0x0b,0x00,0x00,0x01,0x14,
12429
+0x16,0x20,0x36,0x35,0x33,0x14,0x00,0x20,0x00,0x35,0x01,0x3d,
12430
+0x97,0x01,0x28,0x97,0xd7,0xfe,0xe7,0xfe,0x2e,0xfe,0xe7,0x02,
12431
+0x13,0xe4,0xe9,0xe9,0xe4,0xfe,0xfe,0xce,0x01,0x32,0xfe,0x00,
12432
+0x00,0x02,0x00,0x6c,0x00,0x00,0x04,0x24,0x04,0x27,0x00,0x0f,
12433
+0x00,0x17,0x00,0x00,0x00,0x14,0x06,0x23,0x21,0x11,0x33,0x15,
12434
+0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x32,0x01,0x33,0x32,0x36,
12435
+0x34,0x26,0x2b,0x01,0x04,0x24,0xa9,0x9b,0xfe,0xf5,0xa0,0xfe,
12436
+0x02,0xa6,0xb1,0x02,0x74,0x9b,0xfe,0x5a,0xb7,0x6d,0x65,0x66,
12437
+0x6c,0xb7,0x03,0x73,0xee,0xb4,0xfe,0x99,0x6a,0x6a,0x03,0x53,
12438
+0x6a,0xfe,0x11,0x75,0x9e,0x72,0x00,0x00,0x00,0x02,0x00,0x18,
12439
+0x00,0x00,0x04,0x79,0x04,0x27,0x00,0x1e,0x00,0x28,0x00,0x00,
12440
+0x01,0x26,0x27,0x26,0x35,0x34,0x37,0x36,0x33,0x21,0x15,0x23,
12441
+0x03,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x22,0x06,0x07,0x03,
12442
+0x21,0x35,0x33,0x13,0x36,0x37,0x36,0x25,0x11,0x23,0x22,0x07,
12443
+0x06,0x14,0x17,0x16,0x33,0x01,0xcc,0x7a,0x3d,0x3e,0x54,0x55,
12444
+0x9b,0x02,0x5e,0xa7,0x02,0xa7,0xfe,0x21,0x84,0x7a,0x45,0x50,
12445
+0x30,0xa6,0xfe,0xe1,0x91,0x8d,0x24,0x1c,0x24,0x01,0x82,0xad,
12446
+0x6b,0x34,0x33,0x33,0x32,0x6d,0x02,0x18,0x0f,0x3f,0x3f,0x66,
12447
+0x88,0x4a,0x4a,0x67,0xfc,0xa7,0x67,0x67,0x01,0x87,0x3a,0x62,
12448
+0xfe,0xae,0x67,0x01,0x20,0x49,0x1a,0x20,0x4b,0x01,0x6b,0x33,
12449
+0x32,0xa0,0x33,0x33,0x00,0x02,0x00,0x18,0x00,0x00,0x04,0x79,
12450
+0x04,0x27,0x00,0x1e,0x00,0x28,0x00,0x00,0x01,0x26,0x27,0x26,
12451
+0x27,0x03,0x23,0x35,0x21,0x13,0x1e,0x01,0x3b,0x01,0x11,0x23,
12452
+0x35,0x21,0x15,0x23,0x13,0x33,0x15,0x21,0x22,0x27,0x26,0x35,
12453
+0x34,0x37,0x36,0x05,0x23,0x22,0x07,0x06,0x14,0x17,0x16,0x3b,
12454
+0x01,0x01,0xcc,0x32,0x24,0x1c,0x24,0x8d,0x91,0x01,0x1f,0xa6,
12455
+0x30,0x50,0x45,0x7a,0x84,0x01,0xdf,0xa7,0x02,0xa7,0xfd,0xa2,
12456
+0x9b,0x55,0x54,0x3e,0x3d,0x01,0xca,0xad,0x6d,0x32,0x33,0x33,
12457
+0x34,0x6b,0xad,0x02,0x0f,0x0e,0x20,0x1a,0x49,0x01,0x20,0x67,
12458
+0xfe,0xae,0x62,0x3a,0x01,0x87,0x67,0x67,0xfc,0xa7,0x67,0x4a,
12459
+0x4a,0x88,0x66,0x3f,0x3f,0x2e,0x33,0x33,0xa0,0x32,0x33,0x00,
12460
+0xff,0xff,0x00,0x53,0x00,0x00,0x04,0x1f,0x04,0x27,0x12,0x06,
12461
+0x03,0xac,0x00,0x00,0x00,0x01,0x00,0x06,0xff,0xe3,0x04,0xa8,
12462
+0x04,0x27,0x00,0x17,0x00,0x00,0x24,0x20,0x36,0x35,0x11,0x23,
12463
+0x35,0x21,0x15,0x23,0x11,0x14,0x06,0x20,0x26,0x35,0x11,0x23,
12464
+0x35,0x21,0x15,0x23,0x11,0x14,0x02,0x0c,0x01,0x12,0x69,0xa6,
12465
+0x01,0xc7,0xa6,0xeb,0xfe,0x80,0xeb,0xa6,0x02,0x05,0xa6,0x6a,
12466
+0x90,0xc2,0x02,0x00,0x6b,0x6b,0xfd,0xc7,0xd7,0xc9,0xc9,0xd7,
12467
+0x02,0x39,0x6b,0x6b,0xfe,0x00,0xc2,0x00,0x00,0x01,0x00,0x83,
12468
+0xff,0xc5,0x04,0xc7,0x04,0x69,0x00,0x19,0x00,0x00,0x13,0x11,
12469
+0x21,0x35,0x33,0x11,0x23,0x1e,0x01,0x15,0x14,0x06,0x23,0x21,
12470
+0x15,0x23,0x11,0x21,0x32,0x36,0x35,0x34,0x26,0x23,0x21,0x15,
12471
+0x83,0x03,0xbd,0x6a,0xbc,0x6a,0x6f,0xc9,0xd7,0xfd,0xc7,0x6b,
12472
+0x02,0x6b,0xc2,0x90,0xbc,0xb3,0xfe,0x1d,0x02,0x63,0x01,0x58,
12473
+0xae,0xfe,0x9a,0x33,0xa3,0x6a,0xb1,0xa7,0xa6,0x01,0x5e,0x60,
12474
+0x7a,0x80,0x86,0xa0,0x00,0x03,0x00,0x9d,0xff,0xc5,0x06,0xdb,
12475
+0x04,0x69,0x00,0x0b,0x00,0x17,0x00,0x31,0x00,0x00,0x13,0x34,
12476
+0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x11,0x34,
12477
+0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x05,0x11,
12478
+0x21,0x35,0x33,0x11,0x23,0x1e,0x01,0x15,0x14,0x06,0x23,0x21,
12479
+0x15,0x23,0x11,0x21,0x32,0x36,0x35,0x34,0x26,0x23,0x21,0x15,
12480
+0x9d,0x45,0x30,0x33,0x42,0x42,0x33,0x30,0x45,0x45,0x30,0x33,
12481
+0x42,0x42,0x33,0x30,0x45,0x01,0xfa,0x03,0xbd,0x6a,0xbc,0x6a,
12482
+0x6f,0xc9,0xd7,0xfd,0xc7,0x6b,0x02,0x6b,0xc2,0x90,0xbc,0xb3,
12483
+0xfe,0x1d,0x01,0x13,0x30,0x46,0x42,0x34,0x32,0x42,0x45,0x01,
12484
+0xb5,0x2f,0x45,0x42,0x32,0x33,0x41,0x44,0x06,0x01,0x58,0xae,
12485
+0xfe,0x9a,0x33,0xa1,0x6c,0xb1,0xa7,0xa6,0x01,0x60,0x5e,0x7a,
12486
+0x80,0x86,0xa0,0x00,0x00,0x01,0x00,0x86,0xfe,0x5c,0x04,0xca,
12487
+0x05,0x70,0x00,0x30,0x00,0x00,0x01,0x1e,0x01,0x15,0x14,0x06,
12488
+0x23,0x21,0x15,0x23,0x11,0x33,0x15,0x21,0x32,0x36,0x35,0x34,
12489
+0x26,0x23,0x21,0x15,0x23,0x11,0x33,0x15,0x21,0x32,0x36,0x35,
12490
+0x34,0x26,0x23,0x21,0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x33,
12491
+0x11,0x23,0x1e,0x01,0x15,0x14,0x06,0x03,0xde,0x75,0x77,0xcf,
12492
+0xd1,0xfd,0xc6,0x6a,0x6a,0x02,0x25,0xa3,0x8a,0xba,0xb2,0xfe,
12493
+0x1a,0x6a,0x6a,0x02,0x2c,0x9f,0x87,0xba,0xb2,0xfe,0x1a,0x6a,
12494
+0x6a,0x03,0x54,0x69,0xbd,0x6a,0x70,0x7b,0x01,0x95,0x35,0xa5,
12495
+0x6e,0xa7,0xa4,0xa6,0x01,0xfe,0xa0,0x60,0x6f,0x7b,0x81,0xa0,
12496
+0x01,0xf8,0xa0,0x60,0x6f,0x7b,0x81,0xa0,0x01,0xfe,0xa6,0xb0,
12497
+0xfe,0x98,0x33,0x9e,0x64,0x7c,0xa6,0x00,0xff,0xff,0xff,0xfa,
12498
+0x00,0x00,0x04,0x7f,0x04,0x27,0x12,0x06,0x00,0x59,0x00,0x00,
12499
+0xff,0xff,0x00,0x21,0x00,0x00,0x06,0xbe,0x04,0x27,0x12,0x06,
12500
+0x00,0x5a,0x00,0x00,0xff,0xff,0x00,0x52,0x00,0x00,0x03,0xec,
12501
+0x04,0x27,0x12,0x06,0x00,0x5d,0x00,0x00,0x00,0x01,0x00,0x68,
12502
+0xff,0xe3,0x03,0xef,0x04,0x27,0x00,0x23,0x00,0x00,0x01,0x23,
12503
+0x35,0x01,0x21,0x15,0x23,0x11,0x21,0x15,0x01,0x16,0x17,0x16,
12504
+0x15,0x14,0x07,0x06,0x23,0x22,0x27,0x26,0x27,0x35,0x33,0x14,
12505
+0x17,0x16,0x33,0x32,0x37,0x36,0x35,0x34,0x27,0x26,0x02,0x04,
12506
+0x32,0x01,0x1a,0xfd,0xf1,0x6a,0x03,0x66,0xfe,0xca,0x9e,0x45,
12507
+0x69,0x79,0x7b,0xe0,0x76,0x6a,0x6e,0x65,0x69,0x5e,0x59,0x97,
12508
+0x8e,0x57,0x35,0x4a,0x4d,0x02,0x03,0x56,0x01,0x63,0xb8,0x01,
12509
+0x23,0x56,0xfe,0x6b,0x1c,0x34,0x4f,0x86,0x97,0x4e,0x4f,0x12,
12510
+0x13,0x23,0xe7,0x63,0x38,0x35,0x52,0x32,0x4f,0x74,0x3c,0x3e,
12511
+0x00,0x01,0x00,0x64,0xff,0xe3,0x03,0xdb,0x05,0xf0,0x00,0x1d,
12512
+0x00,0x00,0x01,0x10,0x05,0x15,0x20,0x11,0x14,0x21,0x32,0x35,
12513
+0x33,0x15,0x06,0x23,0x20,0x11,0x10,0x25,0x35,0x20,0x35,0x10,
12514
+0x21,0x22,0x15,0x23,0x35,0x36,0x33,0x20,0x03,0xdb,0xfe,0xa0,
12515
+0xfe,0xcf,0x01,0x31,0xdc,0x60,0x78,0xf5,0xfe,0x1a,0x01,0x60,
12516
+0x01,0x31,0xfe,0xcf,0xdc,0x60,0x79,0xf4,0x01,0xe6,0x04,0x7f,
12517
+0xfe,0xe5,0x43,0xcf,0xfe,0xd0,0xd5,0xb2,0xda,0x42,0x01,0x3f,
12518
+0x01,0x4d,0x43,0xcf,0xfe,0x01,0x07,0xb2,0xda,0x42,0x00,0x00,
12519
+0x00,0x01,0x00,0x3c,0xff,0xe3,0x05,0xb6,0x04,0x44,0x00,0x22,
12520
+0x00,0x00,0x13,0x33,0x1e,0x01,0x33,0x32,0x37,0x2e,0x01,0x35,
12521
+0x34,0x00,0x20,0x00,0x15,0x14,0x06,0x07,0x16,0x33,0x32,0x36,
12522
+0x37,0x33,0x11,0x0e,0x01,0x23,0x22,0x27,0x06,0x23,0x22,0x26,
12523
+0x27,0x3c,0x6b,0x15,0x8d,0x83,0x74,0x4d,0x70,0xc3,0x01,0x13,
12524
+0x01,0x04,0x01,0x27,0xc3,0x70,0x4d,0x74,0x83,0x8d,0x15,0x6b,
12525
+0x65,0xc8,0x65,0x98,0x93,0x93,0x98,0x65,0xc8,0x65,0x01,0x52,
12526
+0x8c,0x80,0x52,0x62,0xea,0xb0,0xab,0x01,0x05,0xfe,0xfb,0xab,
12527
+0xb0,0xea,0x62,0x52,0x80,0x8c,0xfe,0xf0,0x30,0x2f,0x5a,0x5a,
12528
+0x2f,0x30,0x00,0x00,0xff,0xff,0x00,0x3b,0x00,0x00,0x03,0xd8,
12529
+0x04,0x27,0x12,0x06,0x03,0x9d,0x00,0x00,0xff,0xff,0xff,0xfa,
12530
+0x00,0x00,0x04,0x7f,0x04,0x27,0x12,0x06,0x02,0x4e,0x00,0x00,
12531
+0xff,0xff,0x00,0x4a,0x00,0x00,0x04,0xf8,0x04,0x27,0x12,0x06,
12532
+0x03,0x38,0x00,0x00,0xff,0xff,0x00,0x6c,0x00,0x00,0x04,0x24,
12533
+0x04,0x27,0x12,0x06,0x05,0x02,0x00,0x00,0x00,0x01,0x00,0x4b,
12534
+0x00,0x00,0x05,0x6d,0x04,0x28,0x00,0x2f,0x00,0x00,0x01,0x35,
12535
+0x34,0x3b,0x01,0x15,0x23,0x22,0x1d,0x01,0x14,0x07,0x06,0x07,
12536
+0x15,0x33,0x15,0x21,0x35,0x33,0x35,0x24,0x27,0x26,0x3d,0x01,
12537
+0x34,0x2b,0x01,0x35,0x33,0x32,0x1d,0x01,0x14,0x17,0x16,0x17,
12538
+0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x36,0x37,0x36,0x04,0x2d,
12539
+0x89,0xb7,0x49,0x3f,0x5f,0x4f,0xff,0xae,0xfd,0xea,0xb0,0xff,
12540
+0x00,0x4e,0x5f,0x3f,0x49,0xb7,0x89,0x43,0x2b,0x87,0xb0,0x02,
12541
+0x16,0xae,0x82,0x30,0x43,0x02,0x8a,0xcf,0xcf,0x6a,0x65,0xdb,
12542
+0xc9,0x57,0x4b,0x0a,0x9f,0x6a,0x6a,0x9f,0x0b,0x4a,0x5a,0xc6,
12543
+0xdb,0x65,0x6a,0xcf,0xcf,0x8d,0x49,0x2f,0x11,0x02,0x48,0x6b,
12544
+0x67,0xfd,0xb4,0x10,0x30,0x44,0x00,0x00,0xff,0xff,0x00,0x24,
12545
+0xff,0xe3,0x04,0xcb,0x04,0x27,0x12,0x06,0x03,0xa5,0x00,0x00,
12546
+0x00,0x02,0xff,0xf8,0x02,0x9c,0x03,0xb0,0x05,0xe0,0x00,0x02,
12547
+0x00,0x12,0x00,0x00,0x01,0x21,0x03,0x01,0x35,0x33,0x01,0x33,
12548
+0x01,0x33,0x15,0x21,0x35,0x33,0x27,0x21,0x07,0x33,0x15,0x01,
12549
+0x02,0x01,0x5a,0xad,0xfe,0x49,0x53,0x01,0x4f,0x6a,0x01,0x50,
12550
+0x5c,0xfe,0xaa,0x69,0x4f,0xfe,0x74,0x4e,0x67,0x03,0xcb,0x01,
12551
+0x8e,0xfd,0x43,0x3b,0x03,0x09,0xfc,0xf7,0x3b,0x3b,0xb8,0xb8,
12552
+0x3b,0x00,0x00,0x00,0x00,0x02,0xff,0xea,0x02,0x9c,0x04,0xc9,
12553
+0x05,0xe0,0x00,0x03,0x00,0x23,0x00,0x00,0x01,0x21,0x11,0x23,
12554
+0x03,0x35,0x33,0x35,0x21,0x07,0x33,0x15,0x21,0x35,0x33,0x01,
12555
+0x23,0x35,0x21,0x15,0x23,0x35,0x21,0x11,0x21,0x35,0x33,0x11,
12556
+0x23,0x35,0x21,0x11,0x21,0x35,0x33,0x15,0x01,0x0c,0x01,0x34,
12557
+0x3f,0x38,0x77,0xfe,0xae,0x60,0x67,0xfe,0xf5,0x52,0x01,0x74,
12558
+0x87,0x03,0x95,0x4d,0xfe,0x4e,0x01,0x36,0x4e,0x4e,0xfe,0xca,
12559
+0x01,0xbc,0x4e,0x03,0xcb,0x01,0xd9,0xfc,0xf8,0x3b,0xb8,0xb8,
12560
+0x3b,0x3b,0x02,0xcd,0x3c,0xba,0x75,0xfe,0xe8,0x69,0xfe,0xea,
12561
+0x69,0xfe,0xa2,0x75,0xba,0x00,0x00,0x00,0x00,0x03,0x00,0x47,
12562
+0x02,0x9c,0x03,0x65,0x05,0xe0,0x00,0x07,0x00,0x10,0x00,0x23,
12563
+0x00,0x00,0x01,0x33,0x32,0x36,0x34,0x26,0x2b,0x01,0x35,0x33,
12564
+0x32,0x36,0x35,0x34,0x26,0x2b,0x01,0x03,0x35,0x33,0x11,0x23,
12565
+0x35,0x21,0x32,0x16,0x15,0x14,0x06,0x07,0x1e,0x01,0x15,0x14,
12566
+0x06,0x23,0x01,0x3f,0xbc,0x72,0x68,0x68,0x72,0xbc,0xa0,0x67,
12567
+0x5f,0x5f,0x67,0xa0,0xf8,0x78,0x78,0x01,0xd1,0x8e,0x90,0x64,
12568
+0x60,0x77,0x7c,0xb0,0xbb,0x02,0xd7,0x58,0xbe,0x56,0x3c,0x46,
12569
+0x4c,0x4d,0x46,0xfc,0xf8,0x3b,0x02,0xcd,0x3c,0x68,0x67,0x4a,
12570
+0x59,0x0a,0x0d,0x6d,0x5c,0x7c,0x76,0x00,0x00,0x03,0x00,0x41,
12571
+0x02,0xac,0x03,0x98,0x05,0xf0,0x00,0x1b,0x00,0x24,0x00,0x2e,
12572
+0x00,0x00,0x13,0x35,0x33,0x11,0x23,0x35,0x33,0x11,0x23,0x35,
12573
+0x21,0x32,0x16,0x15,0x14,0x07,0x06,0x07,0x33,0x15,0x23,0x16,
12574
+0x17,0x16,0x15,0x14,0x06,0x23,0x27,0x33,0x32,0x36,0x34,0x27,
12575
+0x26,0x27,0x23,0x35,0x33,0x36,0x37,0x36,0x27,0x34,0x26,0x2b,
12576
+0x01,0x47,0x78,0x7e,0x7e,0x78,0x01,0xd1,0x8e,0x90,0x32,0x0f,
12577
+0x12,0xb5,0xb2,0x16,0x12,0x3e,0xb0,0xbb,0xa2,0xa3,0x71,0x69,
12578
+0x34,0x21,0x3b,0xed,0xe6,0x33,0x1e,0x30,0x01,0x5f,0x67,0xa0,
12579
+0x02,0xac,0x3b,0x01,0x67,0x46,0x01,0x20,0x3c,0x68,0x67,0x4a,
12580
+0x2c,0x0d,0x0a,0x46,0x0d,0x10,0x37,0x5c,0x7c,0x76,0x3b,0x58,
12581
+0xbe,0x2b,0x1c,0x0a,0x46,0x08,0x16,0x23,0x4c,0x4d,0x46,0x00,
12582
+0x00,0x02,0x00,0x47,0x02,0x9c,0x03,0xc0,0x05,0xe0,0x00,0x08,
12583
+0x00,0x15,0x00,0x00,0x01,0x33,0x32,0x36,0x35,0x34,0x26,0x2b,
12584
+0x01,0x03,0x35,0x33,0x11,0x23,0x35,0x21,0x32,0x04,0x15,0x14,
12585
+0x04,0x23,0x01,0x3f,0x75,0xb7,0xc4,0xc3,0xb8,0x75,0xf8,0x78,
12586
+0x78,0x01,0x76,0xf4,0x01,0x0f,0xfe,0xf0,0xf3,0x02,0xd7,0xba,
12587
+0xae,0xad,0xb8,0xfc,0xf8,0x3b,0x02,0xcd,0x3c,0xdd,0xc4,0xc5,
12588
+0xde,0x00,0x00,0x00,0x00,0x01,0x00,0x47,0x02,0x9c,0x03,0x47,
12589
+0x05,0xe0,0x00,0x17,0x00,0x00,0x13,0x35,0x33,0x11,0x23,0x35,
12590
+0x21,0x15,0x23,0x35,0x21,0x11,0x21,0x35,0x33,0x11,0x23,0x35,
12591
+0x21,0x11,0x21,0x35,0x33,0x15,0x47,0x78,0x78,0x02,0xf5,0x4d,
12592
+0xfe,0x50,0x01,0x34,0x4d,0x4d,0xfe,0xcc,0x01,0xba,0x4e,0x02,
12593
+0x9c,0x3b,0x02,0xcd,0x3c,0xba,0x75,0xfe,0xe8,0x69,0xfe,0xea,
12594
+0x69,0xfe,0xa2,0x75,0xba,0x00,0x00,0x00,0x00,0x01,0x00,0x47,
12595
+0x02,0x9c,0x03,0x47,0x05,0xe0,0x00,0x17,0x00,0x00,0x01,0x21,
12596
+0x35,0x33,0x15,0x21,0x11,0x21,0x15,0x23,0x11,0x33,0x15,0x21,
12597
+0x11,0x21,0x15,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x03,0x47,
12598
+0xfd,0x00,0x4e,0x01,0xba,0xfe,0xcc,0x4e,0x4e,0x01,0x34,0xfe,
12599
+0x50,0x4e,0x02,0xf6,0x78,0x78,0x02,0x9c,0xba,0x75,0x01,0x5e,
12600
+0x69,0x01,0x16,0x69,0x01,0x18,0x75,0xba,0x3c,0xfd,0x33,0x00,
12601
+0x00,0x01,0x00,0x48,0x02,0x8c,0x03,0xa1,0x05,0xef,0x00,0x1e,
12602
+0x00,0x00,0x01,0x2e,0x01,0x23,0x22,0x06,0x15,0x14,0x16,0x33,
12603
+0x32,0x36,0x37,0x35,0x23,0x35,0x21,0x11,0x0e,0x01,0x23,0x22,
12604
+0x24,0x35,0x34,0x24,0x33,0x32,0x16,0x17,0x15,0x03,0x3a,0x16,
12605
+0x8c,0x7d,0xa2,0xa0,0xa5,0xa0,0x47,0x82,0x3a,0xb1,0x01,0x31,
12606
+0x54,0xc1,0x6e,0xd5,0xfe,0xff,0x01,0x01,0xda,0x50,0xac,0x61,
12607
+0x04,0xe6,0x69,0x64,0xba,0xbc,0xb8,0xbd,0x1f,0x1f,0xd8,0x3c,
12608
+0xfe,0xc8,0x2b,0x2b,0xed,0xc4,0xc6,0xec,0x21,0x21,0xc7,0x00,
12609
+0x00,0x01,0x00,0x47,0x02,0x9c,0x04,0x1e,0x05,0xe0,0x00,0x1b,
12610
+0x00,0x00,0x13,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,
12611
+0x21,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x15,0x21,0x35,
12612
+0x33,0x11,0x21,0x11,0x33,0x15,0x47,0x78,0x78,0x01,0x6f,0x77,
12613
+0x01,0xe7,0x77,0x01,0x6f,0x78,0x78,0xfe,0x91,0x77,0xfe,0x19,
12614
+0x77,0x02,0x9c,0x3b,0x02,0xcd,0x3c,0x3c,0xfe,0xdf,0x01,0x21,
12615
+0x3c,0x3c,0xfd,0x33,0x3b,0x3b,0x01,0x68,0xfe,0x98,0x3b,0x00,
12616
+0x00,0x01,0x00,0x47,0x02,0x9c,0x01,0xb6,0x05,0xe0,0x00,0x0b,
12617
+0x00,0x00,0x01,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,
12618
+0x15,0x23,0x01,0x3f,0x77,0xfe,0x91,0x78,0x78,0x01,0x6f,0x77,
12619
+0x02,0xd7,0x3b,0x3b,0x02,0xcd,0x3c,0x3c,0x00,0x01,0xff,0x94,
12620
+0x01,0xad,0x01,0xca,0x05,0xe0,0x00,0x14,0x00,0x00,0x03,0x35,
12621
+0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x11,0x23,0x35,0x21,0x15,
12622
+0x23,0x11,0x14,0x06,0x23,0x22,0x26,0x6c,0x47,0x02,0x38,0x37,
12623
+0x4b,0x3b,0x92,0x01,0x8a,0x78,0x7c,0x8b,0x2d,0x5c,0x01,0xd4,
12624
+0x83,0x37,0x37,0x54,0x7a,0x02,0xed,0x3c,0x3c,0xfd,0x0f,0x8a,
12625
+0x7c,0x13,0x00,0x00,0x00,0x01,0x00,0x47,0x02,0x9c,0x03,0xd7,
12626
+0x05,0xe0,0x00,0x18,0x00,0x00,0x13,0x35,0x33,0x11,0x23,0x35,
12627
+0x21,0x15,0x23,0x11,0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,
12628
+0x33,0x15,0x23,0x01,0x11,0x33,0x15,0x47,0x78,0x78,0x01,0x6f,
12629
+0x77,0x01,0x95,0x66,0x01,0x38,0x6a,0xfe,0x6d,0x01,0xc3,0x6b,
12630
+0xda,0xfe,0x42,0x77,0x02,0x9c,0x3b,0x02,0xcd,0x3c,0x3c,0xfe,
12631
+0xc4,0x01,0x3c,0x3c,0x3c,0xfe,0xc5,0xfe,0x6e,0x3b,0x01,0x8d,
12632
+0xfe,0xae,0x3b,0x00,0x00,0x01,0x00,0x47,0x02,0x9c,0x03,0x3a,
12633
+0x05,0xe0,0x00,0x0d,0x00,0x00,0x13,0x35,0x33,0x11,0x23,0x35,
12634
+0x21,0x15,0x23,0x11,0x21,0x35,0x33,0x15,0x47,0x78,0x78,0x01,
12635
+0x6f,0x77,0x01,0xad,0x4e,0x02,0x9c,0x3b,0x02,0xcd,0x3c,0x3c,
12636
+0xfd,0x3d,0x8c,0xd1,0x00,0x01,0x00,0x40,0x02,0x9c,0x04,0xe8,
12637
+0x05,0xe0,0x00,0x18,0x00,0x00,0x13,0x35,0x33,0x11,0x23,0x35,
12638
+0x21,0x09,0x01,0x21,0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x33,
12639
+0x11,0x01,0x23,0x01,0x11,0x33,0x15,0x47,0x78,0x7f,0x01,0x12,
12640
+0x01,0x4a,0x01,0x4b,0x01,0x01,0x7e,0x79,0xfe,0x90,0x77,0xfe,
12641
+0xbe,0x59,0xfe,0xbd,0x78,0x02,0x9c,0x3b,0x02,0xcd,0x3c,0xfd,
12642
+0xad,0x02,0x53,0x3c,0xfd,0x33,0x3b,0x3b,0x02,0x87,0xfd,0xb9,
12643
+0x02,0x47,0xfd,0x79,0x3b,0x00,0x00,0x00,0x00,0x01,0x00,0x3f,
12644
+0x02,0x8c,0x04,0x30,0x05,0xe0,0x00,0x13,0x00,0x00,0x13,0x35,
12645
+0x33,0x11,0x23,0x35,0x33,0x01,0x11,0x23,0x35,0x21,0x15,0x23,
12646
+0x11,0x23,0x01,0x11,0x33,0x15,0x3f,0x7f,0x7f,0xf1,0x02,0x34,
12647
+0x7e,0x01,0x4a,0x7e,0x4d,0xfd,0xa6,0x7f,0x02,0x9c,0x3b,0x02,
12648
+0xcd,0x3c,0xfd,0x6c,0x02,0x58,0x3c,0x3c,0xfc,0xe8,0x02,0xc0,
12649
+0xfd,0x8b,0x3b,0x00,0x00,0x01,0x00,0x3f,0x02,0x8c,0x04,0x30,
12650
+0x05,0xe0,0x00,0x13,0x00,0x00,0x01,0x11,0x01,0x33,0x15,0x23,
12651
+0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x01,0x23,0x11,0x23,0x35,
12652
+0x21,0x15,0x01,0x3e,0x02,0x1a,0xd8,0x7e,0x7e,0xfe,0x8a,0x78,
12653
+0xfd,0xd8,0x4c,0x7f,0x01,0x76,0x05,0xa4,0xfd,0x9a,0x02,0xa2,
12654
+0x3b,0xfd,0x32,0x3b,0x3b,0x02,0x67,0xfd,0x4e,0x03,0x18,0x3c,
12655
+0x3c,0x00,0x00,0x00,0x00,0x02,0x00,0x48,0x02,0x8c,0x03,0xda,
12656
+0x05,0xef,0x00,0x09,0x00,0x1e,0x00,0x00,0x00,0x20,0x36,0x35,
12657
+0x34,0x26,0x20,0x06,0x15,0x14,0x05,0x22,0x26,0x27,0x2e,0x01,
12658
+0x35,0x34,0x36,0x37,0x3e,0x01,0x33,0x32,0x16,0x15,0x14,0x06,
12659
+0x07,0x0e,0x01,0x01,0x76,0x01,0x36,0x9d,0x9d,0xfe,0xca,0x9d,
12660
+0x01,0x38,0x60,0xa0,0x3d,0x47,0x45,0x45,0x47,0x3d,0x9f,0x61,
12661
+0xcd,0xfc,0x45,0x47,0x3e,0x9e,0x02,0xc8,0xbc,0xb9,0xba,0xbc,
12662
+0xbc,0xba,0xb9,0xf8,0x38,0x36,0x3f,0x9f,0x65,0x66,0x9f,0x3f,
12663
+0x37,0x37,0xee,0xc4,0x64,0xa1,0x3e,0x37,0x37,0x00,0x00,0x00,
12664
+0x00,0x02,0x00,0x34,0x02,0x9c,0x02,0xbe,0x05,0xff,0x00,0x19,
12665
+0x00,0x21,0x00,0x00,0x13,0x14,0x17,0x36,0x35,0x34,0x07,0x35,
12666
+0x32,0x15,0x14,0x07,0x16,0x15,0x14,0x21,0x20,0x35,0x34,0x37,
12667
+0x26,0x37,0x34,0x33,0x15,0x22,0x13,0x32,0x35,0x34,0x27,0x06,
12668
+0x15,0x14,0xc1,0xcd,0x97,0x8b,0xf3,0xb6,0xe7,0xfe,0xb3,0xfe,
12669
+0xc3,0xce,0xad,0x01,0xde,0x73,0xb0,0xbc,0xdf,0xb1,0x05,0x1d,
12670
+0x3a,0x4e,0x42,0x72,0x7b,0x01,0x3c,0xc4,0x72,0x52,0x6c,0x91,
12671
+0xde,0xde,0x83,0x60,0x4b,0x5b,0x9e,0x3c,0xfd,0x6e,0xa7,0x7f,
12672
+0x48,0x4a,0x7d,0xa7,0x00,0x02,0x00,0x47,0x02,0x9c,0x03,0x36,
12673
+0x05,0xe0,0x00,0x08,0x00,0x18,0x00,0x00,0x01,0x33,0x32,0x36,
12674
+0x35,0x34,0x26,0x2b,0x01,0x03,0x35,0x33,0x11,0x23,0x35,0x21,
12675
+0x32,0x16,0x14,0x06,0x2b,0x01,0x11,0x33,0x15,0x01,0x3f,0xa6,
12676
+0x5e,0x62,0x62,0x5e,0xa6,0xf8,0x78,0x78,0x01,0xbd,0x8d,0xa5,
12677
+0xa5,0x8d,0xc5,0x91,0x04,0x46,0x5a,0x55,0x56,0x59,0xfc,0xf8,
12678
+0x3b,0x02,0xcd,0x3c,0x7f,0xd8,0x7f,0xfe,0xcd,0x3b,0x00,0x00,
12679
+0x00,0x02,0x00,0x47,0x02,0x9c,0x03,0xea,0x05,0xe0,0x00,0x1b,
12680
+0x00,0x23,0x00,0x00,0x01,0x1e,0x01,0x1f,0x01,0x33,0x15,0x23,
12681
+0x03,0x2e,0x01,0x2b,0x01,0x11,0x33,0x15,0x21,0x35,0x33,0x11,
12682
+0x23,0x35,0x21,0x32,0x16,0x15,0x14,0x06,0x25,0x33,0x32,0x36,
12683
+0x34,0x26,0x2b,0x01,0x02,0x6a,0x2c,0x40,0x19,0x89,0x72,0xdd,
12684
+0x93,0x2a,0x47,0x3e,0x8c,0x85,0xfe,0x83,0x78,0x78,0x01,0xdd,
12685
+0x89,0x96,0x6d,0xfe,0x69,0xba,0x5f,0x5a,0x5a,0x5f,0xba,0x04,
12686
+0x3b,0x0b,0x33,0x2e,0xf8,0x3b,0x01,0x0a,0x4d,0x2e,0xfe,0xb6,
12687
+0x3b,0x3b,0x02,0xcd,0x3c,0x74,0x6b,0x57,0x63,0x16,0x50,0xa8,
12688
+0x4f,0x00,0x00,0x00,0x00,0x01,0x00,0x0d,0x02,0x9c,0x03,0x50,
12689
+0x05,0xe0,0x00,0x0f,0x00,0x00,0x13,0x35,0x33,0x11,0x21,0x15,
12690
+0x23,0x35,0x21,0x15,0x23,0x35,0x21,0x11,0x33,0x15,0xf6,0x79,
12691
+0xfe,0xeb,0x4d,0x03,0x43,0x4e,0xfe,0xec,0x78,0x02,0x9c,0x3b,
12692
+0x02,0xc6,0x82,0xc5,0xc5,0x82,0xfd,0x3a,0x3b,0x00,0x00,0x00,
12693
+0x00,0x01,0x00,0x3c,0x02,0x8c,0x04,0x05,0x05,0xe0,0x00,0x17,
12694
+0x00,0x00,0x13,0x23,0x35,0x21,0x15,0x23,0x11,0x14,0x16,0x20,
12695
+0x36,0x35,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x14,0x06,0x20,
12696
+0x26,0x35,0xb5,0x79,0x01,0x70,0x78,0x76,0x01,0x20,0x76,0x78,
12697
+0x01,0x3d,0x77,0xa5,0xfe,0x74,0xa8,0x05,0xa4,0x3c,0x3c,0xfe,
12698
+0x50,0xa0,0x7f,0x7f,0xa0,0x01,0xb0,0x3c,0x3c,0xfe,0x45,0xbf,
12699
+0x9e,0x9f,0xbe,0x00,0x00,0x01,0x00,0x06,0x02,0x9c,0x05,0x2a,
12700
+0x05,0xe0,0x00,0x14,0x00,0x00,0x01,0x23,0x0b,0x01,0x23,0x03,
12701
+0x23,0x35,0x21,0x15,0x23,0x1b,0x01,0x33,0x1b,0x01,0x23,0x35,
12702
+0x21,0x15,0x23,0x03,0xd7,0x67,0xd7,0xd8,0x67,0xf6,0x5e,0x01,
12703
+0x58,0x76,0xc4,0xd7,0x66,0xda,0xc5,0x6d,0x01,0x0f,0x5c,0x02,
12704
+0x9c,0x02,0xa8,0xfd,0x58,0x03,0x08,0x3c,0x3c,0xfd,0x96,0x02,
12705
+0xa6,0xfd,0x53,0x02,0x71,0x3c,0x3c,0x00,0x00,0x02,0x00,0x40,
12706
+0x02,0x8c,0x02,0xdd,0x05,0x00,0x00,0x09,0x00,0x27,0x00,0x00,
12707
+0x01,0x35,0x23,0x22,0x06,0x15,0x14,0x16,0x32,0x36,0x37,0x11,
12708
+0x33,0x15,0x23,0x35,0x0e,0x01,0x23,0x22,0x26,0x35,0x34,0x36,
12709
+0x3b,0x01,0x35,0x34,0x26,0x23,0x22,0x06,0x07,0x23,0x35,0x3e,
12710
+0x01,0x33,0x32,0x16,0x02,0x01,0x95,0x56,0x55,0x56,0x92,0x58,
12711
+0x74,0x68,0xdc,0x26,0x65,0x43,0x70,0x83,0x96,0x89,0xa2,0x5c,
12712
+0x54,0x45,0x52,0x0a,0x3c,0x3c,0x72,0x37,0x8b,0x91,0x03,0x57,
12713
+0x7e,0x42,0x44,0x3f,0x48,0x4f,0xf9,0xfe,0xc7,0x3b,0x40,0x29,
12714
+0x27,0x69,0x5a,0x5c,0x66,0x29,0x44,0x4a,0x38,0x37,0x79,0x17,
12715
+0x17,0x7b,0x00,0x00,0x00,0x02,0x00,0x40,0x02,0x8c,0x02,0xdd,
12716
+0x05,0x00,0x00,0x09,0x00,0x2a,0x00,0x00,0x01,0x15,0x33,0x32,
12717
+0x36,0x35,0x34,0x26,0x22,0x06,0x07,0x11,0x23,0x35,0x33,0x15,
12718
+0x3e,0x01,0x33,0x32,0x16,0x15,0x14,0x06,0x2b,0x01,0x15,0x14,
12719
+0x17,0x16,0x33,0x32,0x36,0x37,0x33,0x15,0x06,0x07,0x06,0x23,
12720
+0x22,0x27,0x26,0x01,0x1c,0x95,0x56,0x55,0x56,0x92,0x58,0x74,
12721
+0x68,0xdc,0x26,0x65,0x43,0x70,0x83,0x96,0x89,0xa2,0x2e,0x2e,
12722
+0x54,0x45,0x52,0x0a,0x3c,0x3c,0x3a,0x38,0x37,0x8b,0x48,0x49,
12723
+0x04,0x34,0x7e,0x42,0x45,0x3e,0x49,0x50,0xf9,0x01,0x39,0x3b,
12724
+0x40,0x29,0x28,0x6a,0x59,0x5d,0x66,0x29,0x43,0x26,0x25,0x38,
12725
+0x37,0x78,0x17,0x0b,0x0c,0x3d,0x3d,0x00,0x00,0x02,0x00,0x40,
12726
+0x02,0x8c,0x03,0x14,0x05,0x00,0x00,0x16,0x00,0x27,0x00,0x00,
12727
+0x01,0x35,0x33,0x15,0x23,0x11,0x33,0x15,0x23,0x35,0x06,0x07,
12728
+0x06,0x23,0x22,0x27,0x26,0x10,0x36,0x33,0x32,0x17,0x16,0x13,
12729
+0x35,0x34,0x27,0x26,0x23,0x22,0x07,0x06,0x15,0x14,0x17,0x16,
12730
+0x33,0x32,0x37,0x36,0x02,0x31,0xe3,0x6f,0x6f,0xe3,0x22,0x34,
12731
+0x35,0x4d,0x7c,0x4f,0x4e,0x9c,0x7d,0x4d,0x35,0x34,0x22,0x2e,
12732
+0x2e,0x58,0x5a,0x2d,0x2e,0x2e,0x2d,0x5a,0x58,0x2e,0x2e,0x04,
12733
+0x92,0x5d,0x3c,0xfe,0x24,0x3b,0x5d,0x38,0x1b,0x1a,0x57,0x57,
12734
+0x01,0x18,0xae,0x1b,0x1b,0xfe,0xde,0x3b,0x6b,0x39,0x38,0x3f,
12735
+0x3e,0x7c,0x7b,0x40,0x3f,0x38,0x39,0x00,0x00,0x03,0x00,0x40,
12736
+0x02,0x8c,0x04,0x7c,0x05,0x00,0x00,0x0a,0x00,0x37,0x00,0x3e,
12737
+0x00,0x00,0x01,0x15,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x22,
12738
+0x06,0x27,0x3e,0x01,0x33,0x32,0x16,0x14,0x06,0x2b,0x01,0x15,
12739
+0x14,0x16,0x33,0x32,0x36,0x37,0x33,0x15,0x0e,0x01,0x23,0x22,
12740
+0x26,0x27,0x0e,0x01,0x23,0x22,0x26,0x27,0x21,0x35,0x34,0x26,
12741
+0x23,0x22,0x06,0x07,0x23,0x3e,0x01,0x33,0x32,0x16,0x01,0x1e,
12742
+0x01,0x33,0x32,0x36,0x37,0x02,0xbb,0x95,0x56,0x55,0x56,0x49,
12743
+0x48,0x59,0x45,0x34,0x80,0x4e,0x7c,0x88,0x97,0x88,0xa2,0x5a,
12744
+0x51,0x49,0x53,0x0a,0x3c,0x3c,0x72,0x36,0x59,0x7a,0x23,0x2e,
12745
+0x79,0x4a,0x98,0xa2,0x03,0x01,0xf3,0x65,0x64,0x4d,0x61,0x14,
12746
+0x5c,0x1b,0x96,0x79,0x4c,0x83,0xfe,0x83,0x04,0x5b,0x56,0x50,
12747
+0x5d,0x09,0x04,0x34,0x7e,0x42,0x45,0x3e,0x49,0x50,0x27,0x33,
12748
+0x32,0x66,0xba,0x66,0x29,0x43,0x4b,0x38,0x37,0x78,0x17,0x17,
12749
+0x30,0x33,0x31,0x32,0xa7,0x9e,0x04,0x78,0x7b,0x47,0x46,0x62,
12750
+0x63,0x33,0xfe,0xc8,0x68,0x6a,0x6b,0x67,0x00,0x02,0x00,0x25,
12751
+0x02,0x8c,0x02,0xf9,0x06,0x03,0x00,0x13,0x00,0x20,0x00,0x00,
12752
+0x13,0x11,0x23,0x35,0x33,0x11,0x3e,0x01,0x33,0x32,0x16,0x10,
12753
+0x06,0x23,0x22,0x26,0x27,0x15,0x23,0x35,0x37,0x14,0x16,0x33,
12754
+0x32,0x36,0x35,0x34,0x26,0x23,0x22,0x06,0x15,0x95,0x70,0xe4,
12755
+0x22,0x69,0x4d,0x7c,0x9c,0x9c,0x7c,0x4d,0x69,0x22,0xe4,0xe4,
12756
+0x5c,0x58,0x59,0x5c,0x5c,0x59,0x58,0x5c,0x02,0xd7,0x02,0xf1,
12757
+0x3b,0xfe,0x8f,0x38,0x36,0xae,0xfe,0xe8,0xae,0x35,0x38,0x5d,
12758
+0x3b,0xd1,0x6b,0x71,0x7f,0x7b,0x7c,0x7d,0x71,0x6b,0x00,0x00,
12759
+0x00,0x02,0x00,0x40,0x02,0x8c,0x03,0x14,0x06,0x03,0x00,0x13,
12760
+0x00,0x20,0x00,0x00,0x01,0x33,0x15,0x23,0x35,0x0e,0x01,0x23,
12761
+0x22,0x26,0x10,0x36,0x33,0x32,0x16,0x17,0x11,0x23,0x35,0x33,
12762
+0x03,0x35,0x34,0x26,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,
12763
+0x36,0x02,0xa5,0x6f,0xe3,0x22,0x69,0x4d,0x7c,0x9d,0x9c,0x7d,
12764
+0x4d,0x69,0x22,0x6d,0xe1,0x74,0x5c,0x58,0x5a,0x5b,0x5b,0x5a,
12765
+0x58,0x5c,0x02,0xd7,0x3b,0x5d,0x38,0x35,0xae,0x01,0x18,0xae,
12766
+0x36,0x38,0x01,0x36,0x3b,0xfd,0xa5,0x3b,0x6b,0x71,0x7d,0x7c,
12767
+0x7b,0x7f,0x71,0x00,0x00,0x02,0x00,0x40,0x02,0x8c,0x02,0xbb,
12768
+0x05,0x00,0x00,0x14,0x00,0x1b,0x00,0x00,0x01,0x21,0x15,0x14,
12769
+0x16,0x33,0x32,0x36,0x37,0x33,0x0e,0x01,0x23,0x22,0x26,0x35,
12770
+0x34,0x36,0x33,0x32,0x16,0x07,0x2e,0x01,0x23,0x22,0x06,0x07,
12771
+0x02,0xbb,0xfe,0x0d,0x66,0x63,0x4d,0x61,0x14,0x5d,0x1c,0x95,
12772
+0x7a,0x92,0xb3,0xaf,0x8f,0x98,0xa2,0x85,0x04,0x5c,0x55,0x50,
12773
+0x5c,0x0a,0x03,0xbb,0x05,0x78,0x7b,0x47,0x46,0x62,0x62,0xac,
12774
+0x8e,0x8d,0xad,0xa7,0x63,0x68,0x6a,0x6a,0x68,0x00,0x00,0x00,
12775
+0x00,0x02,0x00,0x40,0x02,0x8c,0x02,0xbb,0x05,0x00,0x00,0x19,
12776
+0x00,0x21,0x00,0x00,0x13,0x21,0x35,0x34,0x27,0x26,0x23,0x22,
12777
+0x07,0x06,0x07,0x23,0x36,0x37,0x36,0x33,0x32,0x17,0x16,0x15,
12778
+0x14,0x06,0x23,0x22,0x27,0x26,0x37,0x16,0x17,0x16,0x33,0x32,
12779
+0x36,0x37,0x40,0x01,0xf4,0x33,0x33,0x64,0x4c,0x31,0x31,0x13,
12780
+0x5d,0x1b,0x4b,0x4b,0x79,0x93,0x59,0x59,0xaf,0x8e,0x98,0x51,
12781
+0x52,0x86,0x04,0x2e,0x2d,0x56,0x50,0x5c,0x0a,0x03,0xd1,0x04,
12782
+0x78,0x3e,0x3d,0x23,0x24,0x46,0x62,0x31,0x32,0x57,0x55,0x8f,
12783
+0x8d,0xac,0x53,0x53,0x63,0x68,0x35,0x35,0x6b,0x67,0x00,0x00,
12784
+0x00,0x01,0x00,0x40,0x02,0x88,0x02,0x55,0x05,0x00,0x00,0x31,
12785
+0x00,0x00,0x01,0x22,0x26,0x35,0x34,0x37,0x36,0x37,0x26,0x27,
12786
+0x26,0x35,0x34,0x36,0x33,0x32,0x17,0x16,0x17,0x15,0x23,0x26,
12787
+0x27,0x26,0x23,0x22,0x07,0x06,0x15,0x14,0x17,0x16,0x3b,0x01,
12788
+0x15,0x23,0x22,0x07,0x06,0x15,0x14,0x16,0x17,0x32,0x36,0x37,
12789
+0x33,0x06,0x07,0x06,0x01,0x54,0x8e,0x86,0x30,0x2f,0x55,0x55,
12790
+0x2f,0x30,0x86,0x7c,0x35,0x3c,0x3c,0x41,0x3e,0x07,0x27,0x27,
12791
+0x49,0x44,0x25,0x24,0x2c,0x2d,0x57,0x18,0x18,0x57,0x2d,0x2c,
12792
+0x48,0x45,0x48,0x4e,0x0d,0x5e,0x0e,0x39,0x38,0x02,0x88,0x56,
12793
+0x4f,0x3a,0x27,0x28,0x0e,0x0d,0x28,0x28,0x39,0x4f,0x57,0x0b,
12794
+0x0a,0x15,0x78,0x34,0x19,0x1a,0x1d,0x1d,0x35,0x3c,0x1d,0x1d,
12795
+0x38,0x1d,0x1e,0x3b,0x36,0x38,0x01,0x33,0x46,0x49,0x36,0x35,
12796
+0x00,0x01,0x00,0x40,0x02,0x88,0x02,0x55,0x05,0x00,0x00,0x30,
12797
+0x00,0x00,0x01,0x32,0x16,0x15,0x14,0x07,0x06,0x07,0x16,0x17,
12798
+0x16,0x15,0x14,0x06,0x23,0x22,0x27,0x26,0x27,0x35,0x33,0x16,
12799
+0x17,0x16,0x33,0x32,0x37,0x36,0x35,0x34,0x27,0x26,0x2b,0x01,
12800
+0x35,0x33,0x32,0x36,0x35,0x34,0x27,0x26,0x23,0x26,0x06,0x07,
12801
+0x23,0x3e,0x01,0x01,0x42,0x8e,0x85,0x2f,0x30,0x55,0x55,0x30,
12802
+0x2f,0x85,0x7c,0x35,0x3c,0x3c,0x42,0x3f,0x06,0x27,0x27,0x4a,
12803
+0x44,0x25,0x23,0x2c,0x2c,0x57,0x18,0x18,0x57,0x58,0x23,0x24,
12804
+0x45,0x49,0x4e,0x0c,0x5f,0x0e,0x72,0x05,0x00,0x57,0x4f,0x39,
12805
+0x28,0x28,0x0d,0x0e,0x28,0x28,0x39,0x4f,0x56,0x0a,0x0b,0x14,
12806
+0x79,0x34,0x1a,0x19,0x1d,0x1c,0x36,0x3b,0x1d,0x1e,0x38,0x3a,
12807
+0x3b,0x36,0x1d,0x1c,0x01,0x34,0x45,0x48,0x6c,0x00,0x00,0x00,
12808
+0x00,0x02,0x00,0x40,0x01,0x9d,0x03,0x14,0x05,0x00,0x00,0x1e,
12809
+0x00,0x2b,0x00,0x00,0x01,0x11,0x14,0x06,0x23,0x22,0x26,0x27,
12810
+0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x3d,0x01,0x0e,0x01,0x23,
12811
+0x22,0x26,0x10,0x36,0x33,0x32,0x16,0x17,0x35,0x33,0x15,0x07,
12812
+0x34,0x26,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x35,
12813
+0x02,0xa5,0x9f,0x92,0x42,0x79,0x38,0x3d,0x0b,0x54,0x4f,0x66,
12814
+0x5f,0x22,0x69,0x4d,0x7c,0x9d,0x9c,0x7d,0x4d,0x69,0x22,0xe3,
12815
+0xe3,0x5c,0x58,0x5a,0x5b,0x5b,0x5a,0x58,0x5c,0x04,0xb3,0xfd,
12816
+0xf6,0x80,0x8c,0x15,0x16,0x7d,0x3b,0x35,0x66,0x6e,0x50,0x38,
12817
+0x35,0xae,0x01,0x18,0xae,0x36,0x38,0x5d,0x3c,0xd0,0x6b,0x71,
12818
+0x7d,0x7c,0x7b,0x7f,0x71,0x6b,0x00,0x00,0x00,0x02,0x00,0x2f,
12819
+0x01,0xa7,0x01,0x7f,0x04,0xf3,0x00,0x09,0x00,0x13,0x00,0x00,
12820
+0x00,0x14,0x06,0x23,0x22,0x26,0x34,0x36,0x33,0x32,0x03,0x23,
12821
+0x35,0x21,0x15,0x23,0x11,0x33,0x15,0x23,0x01,0x30,0x2a,0x1e,
12822
+0x1d,0x2a,0x2a,0x1d,0x1e,0x6a,0x6d,0x01,0x50,0x6f,0x6f,0xe3,
12823
+0x02,0x01,0x34,0x26,0x26,0x34,0x25,0x02,0x91,0x3c,0x3c,0xfe,
12824
+0x24,0x3c,0x00,0x00,0x00,0x01,0x00,0x25,0x02,0x9c,0x03,0x17,
12825
+0x06,0x03,0x00,0x19,0x00,0x00,0x01,0x21,0x35,0x33,0x11,0x23,
12826
+0x35,0x33,0x11,0x25,0x23,0x35,0x21,0x15,0x23,0x07,0x13,0x33,
12827
+0x15,0x21,0x35,0x33,0x27,0x07,0x15,0x33,0x01,0x71,0xfe,0xbb,
12828
+0x69,0x70,0xe4,0x01,0x1a,0x61,0x01,0x2f,0x72,0xc7,0xfe,0x61,
12829
+0xfe,0xb6,0x5f,0xc8,0x5b,0x68,0x02,0x9c,0x3b,0x02,0xf1,0x3b,
12830
+0xfd,0xc9,0xe7,0x3c,0x3c,0xa3,0xfe,0xc7,0x3b,0x3b,0xf5,0x4c,
12831
+0xa9,0x00,0x00,0x00,0x00,0x01,0x00,0x2f,0x02,0x9c,0x04,0xa4,
12832
+0x05,0x00,0x00,0x30,0x00,0x00,0x01,0x3e,0x01,0x33,0x32,0x16,
12833
+0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x34,0x26,0x23,0x22,
12834
+0x06,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x34,0x26,0x23,
12835
+0x22,0x06,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,
12836
+0x33,0x15,0x3e,0x01,0x33,0x32,0x16,0x02,0x9c,0x22,0x68,0x45,
12837
+0x69,0x68,0x68,0xfe,0xbf,0x65,0x3d,0x46,0x4d,0x51,0x64,0xfe,
12838
+0xc3,0x65,0x3d,0x46,0x4d,0x52,0x65,0xfe,0xbf,0x69,0x6f,0xe2,
12839
+0x21,0x63,0x3f,0x4e,0x69,0x04,0x7b,0x42,0x43,0x74,0x75,0xfe,
12840
+0xc0,0x3b,0x3b,0x01,0x34,0x5b,0x4d,0x68,0x63,0xfe,0xef,0x3b,
12841
+0x3b,0x01,0x38,0x59,0x4b,0x68,0x63,0xfe,0xef,0x3b,0x3b,0x01,
12842
+0xdd,0x3b,0x6a,0x3c,0x3f,0x45,0x00,0x00,0x00,0x01,0x00,0x2f,
12843
+0x01,0x9d,0x02,0xb4,0x05,0x00,0x00,0x27,0x00,0x00,0x13,0x35,
12844
+0x33,0x11,0x23,0x35,0x33,0x15,0x3e,0x01,0x33,0x32,0x17,0x16,
12845
+0x15,0x11,0x14,0x06,0x23,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,
12846
+0x33,0x32,0x36,0x35,0x11,0x34,0x26,0x23,0x22,0x06,0x15,0x11,
12847
+0x33,0x15,0x35,0x69,0x6f,0xe2,0x21,0x66,0x44,0x6e,0x35,0x35,
12848
+0x7b,0x6c,0x2d,0x53,0x27,0x3c,0x04,0x36,0x34,0x39,0x36,0x3c,
12849
+0x4d,0x50,0x55,0x65,0x02,0x9c,0x3b,0x01,0xdc,0x3c,0x6a,0x3d,
12850
+0x3e,0x39,0x37,0x79,0xfe,0x4b,0x5c,0x69,0x13,0x12,0x7b,0x36,
12851
+0x32,0x44,0x49,0x01,0x94,0x6d,0x51,0x68,0x64,0xfe,0xef,0x3b,
12852
+0x00,0x02,0x00,0x40,0x02,0x8c,0x02,0xc8,0x05,0x00,0x00,0x07,
12853
+0x00,0x10,0x00,0x00,0x00,0x32,0x36,0x10,0x26,0x22,0x06,0x10,
12854
+0x17,0x22,0x26,0x10,0x36,0x20,0x16,0x10,0x06,0x01,0x27,0xba,
12855
+0x5f,0x5f,0xba,0x5f,0xbc,0x92,0xb2,0xb1,0x01,0x26,0xb1,0xb1,
12856
+0x02,0xc3,0x83,0x01,0x00,0x82,0x82,0xff,0x00,0xba,0xac,0x01,
12857
+0x1c,0xac,0xac,0xfe,0xe4,0xac,0x00,0x00,0x00,0x01,0x00,0x40,
12858
+0x02,0x8c,0x02,0x97,0x05,0x00,0x00,0x1d,0x00,0x00,0x13,0x3e,
12859
+0x01,0x33,0x32,0x17,0x16,0x15,0x14,0x07,0x06,0x23,0x22,0x26,
12860
+0x27,0x35,0x33,0x16,0x17,0x16,0x33,0x32,0x36,0x10,0x27,0x26,
12861
+0x23,0x22,0x06,0x07,0x40,0x19,0x8c,0x6f,0x92,0x59,0x58,0x58,
12862
+0x59,0x92,0x40,0x7e,0x40,0x44,0x0d,0x2d,0x2c,0x52,0x5e,0x60,
12863
+0x30,0x2f,0x5f,0x4b,0x59,0x10,0x04,0x3d,0x5f,0x64,0x56,0x56,
12864
+0x8f,0x8e,0x56,0x55,0x1a,0x1b,0x98,0x4e,0x24,0x24,0x82,0x01,
12865
+0x01,0x41,0x41,0x45,0x46,0x00,0x00,0x00,0x00,0x01,0x00,0x40,
12866
+0x03,0xc6,0x02,0xc8,0x05,0x00,0x00,0x0b,0x00,0x00,0x01,0x34,
12867
+0x26,0x22,0x06,0x15,0x23,0x34,0x36,0x20,0x16,0x15,0x02,0x40,
12868
+0x5f,0xba,0x5f,0x88,0xb1,0x01,0x26,0xb1,0x03,0xc6,0x80,0x82,
12869
+0x82,0x80,0x8e,0xac,0xac,0x8e,0x00,0x00,0x00,0x01,0x00,0x40,
12870
+0x02,0x8c,0x02,0xc8,0x03,0xc5,0x00,0x0b,0x00,0x00,0x13,0x14,
12871
+0x16,0x32,0x36,0x35,0x33,0x14,0x06,0x20,0x26,0x35,0xc8,0x5f,
12872
+0xba,0x5f,0x88,0xb1,0xfe,0xda,0xb1,0x03,0xc5,0x7f,0x83,0x83,
12873
+0x7f,0x8e,0xab,0xab,0x8e,0x00,0x00,0x00,0x00,0x02,0x00,0x25,
12874
+0x01,0xad,0x02,0xf9,0x05,0x00,0x00,0x0c,0x00,0x22,0x00,0x00,
12875
+0x01,0x15,0x14,0x16,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x22,
12876
+0x06,0x27,0x23,0x35,0x33,0x15,0x3e,0x01,0x33,0x32,0x16,0x10,
12877
+0x06,0x23,0x22,0x26,0x27,0x11,0x33,0x15,0x21,0x35,0x33,0x01,
12878
+0x09,0x5c,0x58,0x59,0x5c,0x5c,0x59,0x58,0x5c,0x74,0x70,0xe4,
12879
+0x22,0x69,0x4d,0x7c,0x9c,0x9c,0x7c,0x4d,0x69,0x22,0x6d,0xfe,
12880
+0xaf,0x70,0x03,0xe3,0x3b,0x6b,0x71,0x7f,0x7b,0x7c,0x7d,0x71,
12881
+0x65,0x3c,0x5d,0x38,0x36,0xae,0xfe,0xe8,0xae,0x35,0x38,0xfe,
12882
+0xf0,0x3c,0x3c,0x00,0x00,0x01,0x00,0x25,0x02,0x8c,0x01,0xfc,
12883
+0x05,0xa8,0x00,0x17,0x00,0x00,0x13,0x23,0x35,0x33,0x35,0x33,
12884
+0x15,0x33,0x15,0x23,0x11,0x14,0x16,0x33,0x32,0x36,0x37,0x33,
12885
+0x0e,0x01,0x23,0x22,0x26,0x35,0x8b,0x66,0x66,0x75,0xda,0xda,
12886
+0x21,0x2c,0x2d,0x2a,0x01,0x57,0x05,0x59,0x5b,0x65,0x53,0x04,
12887
+0xb3,0x3c,0xb9,0xb9,0x3c,0xfe,0x86,0x4b,0x2b,0x30,0x35,0x51,
12888
+0x4b,0x4f,0x5e,0x00,0x00,0x01,0x00,0x23,0x02,0x8c,0x03,0x0f,
12889
+0x04,0xef,0x00,0x19,0x00,0x00,0x01,0x33,0x11,0x33,0x15,0x23,
12890
+0x35,0x0e,0x01,0x23,0x22,0x26,0x35,0x11,0x23,0x35,0x33,0x11,
12891
+0x14,0x16,0x33,0x32,0x36,0x35,0x11,0x23,0x01,0xc9,0xd8,0x6e,
12892
+0xe1,0x21,0x66,0x43,0x70,0x69,0x68,0xdd,0x3c,0x4c,0x51,0x55,
12893
+0x65,0x04,0xef,0xfd,0xe8,0x3b,0x69,0x3b,0x3e,0x70,0x79,0x01,
12894
+0x3e,0x3c,0xfe,0xa6,0x6d,0x51,0x6a,0x64,0x01,0x0e,0x00,0x00,
12895
+0x00,0x01,0x00,0x53,0x02,0x7b,0x03,0x02,0x05,0x14,0x00,0x19,
12896
+0x00,0x00,0x13,0x35,0x21,0x35,0x33,0x15,0x23,0x1e,0x01,0x15,
12897
+0x14,0x06,0x23,0x21,0x15,0x23,0x35,0x21,0x32,0x36,0x35,0x34,
12898
+0x26,0x23,0x21,0x15,0x53,0x02,0x5a,0x43,0x76,0x43,0x45,0x7e,
12899
+0x88,0xfe,0x9a,0x43,0x01,0x85,0x7a,0x5b,0x76,0x71,0xfe,0xd0,
12900
+0x03,0xf2,0xc1,0x61,0xc8,0x1d,0x5b,0x3b,0x63,0x5e,0x5d,0xc4,
12901
+0x36,0x44,0x48,0x4b,0x5a,0x00,0x00,0x00,0x00,0x01,0x00,0x2f,
12902
+0x02,0x9c,0x04,0xa4,0x05,0x00,0x00,0x2f,0x00,0x00,0x01,0x06,
12903
+0x07,0x06,0x23,0x22,0x26,0x35,0x11,0x23,0x35,0x33,0x11,0x14,
12904
+0x16,0x33,0x32,0x37,0x36,0x35,0x11,0x23,0x35,0x33,0x11,0x14,
12905
+0x17,0x16,0x33,0x32,0x37,0x36,0x35,0x11,0x23,0x35,0x33,0x11,
12906
+0x33,0x15,0x23,0x35,0x0e,0x01,0x23,0x22,0x27,0x26,0x02,0x36,
12907
+0x21,0x34,0x34,0x45,0x69,0x68,0x68,0xdc,0x3d,0x46,0x4d,0x28,
12908
+0x29,0x65,0xd9,0x1e,0x1f,0x46,0x4d,0x29,0x28,0x64,0xd8,0x6f,
12909
+0xe3,0x20,0x63,0x3f,0x4e,0x35,0x34,0x03,0x20,0x41,0x21,0x22,
12910
+0x74,0x75,0x01,0x3f,0x3c,0xfe,0x91,0x5c,0x4d,0x34,0x34,0x64,
12911
+0x01,0x10,0x3c,0xfe,0x8d,0x59,0x26,0x26,0x34,0x34,0x64,0x01,
12912
+0x10,0x3c,0xfd,0xe7,0x3b,0x6a,0x3b,0x3f,0x23,0x22,0x00,0x00,
12913
+0x00,0x01,0xff,0xfc,0x02,0x9c,0x02,0xd5,0x04,0xef,0x00,0x0e,
12914
+0x00,0x00,0x01,0x03,0x23,0x35,0x21,0x15,0x23,0x1b,0x01,0x23,
12915
+0x35,0x33,0x15,0x23,0x03,0x01,0x3f,0xf7,0x4c,0x01,0x34,0x6b,
12916
+0xbd,0xbc,0x64,0xfb,0x4b,0xf6,0x02,0x9c,0x02,0x17,0x3c,0x3c,
12917
+0xfe,0x67,0x01,0x99,0x3c,0x3c,0xfd,0xe9,0x00,0x01,0x00,0x26,
12918
+0x02,0x9c,0x03,0x99,0x05,0x10,0x00,0x22,0x00,0x00,0x13,0x33,
12919
+0x1e,0x01,0x33,0x32,0x37,0x2e,0x01,0x35,0x34,0x36,0x32,0x16,
12920
+0x15,0x14,0x06,0x07,0x16,0x33,0x32,0x36,0x37,0x33,0x15,0x0e,
12921
+0x01,0x23,0x22,0x27,0x06,0x23,0x22,0x26,0x27,0x26,0x43,0x0d,
12922
+0x59,0x53,0x49,0x30,0x47,0x7a,0xad,0xa4,0xba,0x7b,0x47,0x31,
12923
+0x49,0x53,0x58,0x0e,0x43,0x40,0x7e,0x3f,0x60,0x5d,0x5d,0x5f,
12924
+0x40,0x7e,0x3f,0x03,0x69,0x4e,0x48,0x2e,0x37,0x83,0x63,0x60,
12925
+0x92,0x93,0x5f,0x63,0x83,0x37,0x2e,0x48,0x4e,0x98,0x1b,0x1a,
12926
+0x32,0x32,0x1a,0x1b,0x00,0x02,0x00,0x51,0x01,0xbd,0x02,0xa9,
12927
+0x06,0x1a,0x00,0x16,0x00,0x2d,0x00,0x00,0x13,0x16,0x33,0x32,
12928
+0x36,0x35,0x34,0x27,0x26,0x2b,0x01,0x35,0x33,0x32,0x37,0x36,
12929
+0x35,0x34,0x27,0x26,0x07,0x06,0x15,0x03,0x11,0x34,0x37,0x36,
12930
+0x33,0x32,0x17,0x16,0x15,0x14,0x07,0x06,0x07,0x16,0x17,0x16,
12931
+0x14,0x06,0x23,0x22,0x27,0x15,0xc5,0x33,0x5c,0x60,0x70,0x39,
12932
+0x3b,0x6d,0x3c,0x1f,0x50,0x37,0x2e,0x1e,0x31,0x39,0x8e,0x74,
12933
+0x8e,0x4b,0x34,0x76,0x4b,0x3c,0x2c,0x2b,0x4f,0x72,0x42,0x40,
12934
+0xb1,0xa6,0x66,0x27,0x02,0xf4,0x21,0x63,0x57,0x75,0x32,0x34,
12935
+0x3c,0x29,0x22,0x59,0x27,0x2c,0x49,0x02,0x04,0xdf,0xfc,0xbe,
12936
+0x03,0x42,0xeb,0x1f,0x11,0x53,0x41,0x38,0x50,0x2f,0x2e,0x16,
12937
+0x0f,0x3d,0x3c,0xea,0x7d,0x0d,0xec,0x00,0x00,0x01,0x00,0x2f,
12938
+0x01,0xbc,0x02,0xc3,0x04,0xff,0x00,0x1c,0x00,0x00,0x01,0x16,
12939
+0x07,0x06,0x07,0x06,0x27,0x26,0x37,0x03,0x23,0x35,0x33,0x13,
12940
+0x36,0x37,0x36,0x27,0x26,0x27,0x35,0x33,0x16,0x17,0x16,0x15,
12941
+0x14,0x07,0x06,0x01,0xc1,0x27,0x25,0x1e,0x2b,0x43,0x1d,0x21,
12942
+0x58,0xb3,0x6f,0xd6,0xa3,0x8f,0x11,0x08,0x10,0x19,0x1e,0x47,
12943
+0x49,0x11,0x19,0x40,0x19,0x02,0xce,0xa3,0x3d,0x30,0x02,0x01,
12944
+0x39,0x41,0x80,0x02,0x0e,0x3c,0xfe,0x1c,0xab,0x76,0x37,0x26,
12945
+0x3c,0x09,0x21,0x27,0x21,0x2f,0x1e,0x36,0x6c,0x29,0x00,0x00,
12946
+0x00,0x02,0x00,0x40,0x02,0x9c,0x02,0xc8,0x06,0x1a,0x00,0x22,
12947
+0x00,0x2a,0x00,0x00,0x13,0x26,0x27,0x26,0x35,0x34,0x36,0x33,
12948
+0x32,0x17,0x16,0x17,0x15,0x07,0x26,0x27,0x26,0x22,0x07,0x06,
12949
+0x17,0x16,0x17,0x16,0x33,0x32,0x16,0x10,0x06,0x23,0x22,0x26,
12950
+0x10,0x37,0x36,0x12,0x32,0x36,0x10,0x26,0x22,0x06,0x10,0xe7,
12951
+0x2b,0x14,0x18,0x7c,0x7b,0x22,0x42,0x42,0x46,0x44,0x08,0x2d,
12952
+0x2d,0x77,0x2b,0x2e,0x02,0x02,0x15,0x30,0x3e,0x93,0xb1,0xb1,
12953
+0x93,0x92,0xb2,0x59,0x27,0x67,0xba,0x5f,0x5f,0xba,0x5f,0x04,
12954
+0xf0,0x0f,0x1b,0x1f,0x4d,0x48,0x4c,0x09,0x0a,0x11,0x6f,0x0e,
12955
+0x32,0x1a,0x19,0x1b,0x1d,0x25,0x35,0x12,0x2a,0xac,0xfe,0xe4,
12956
+0xac,0xac,0x01,0x1c,0x56,0x25,0xfd,0xf4,0x83,0x01,0x00,0x82,
12957
+0x82,0xff,0x00,0x00,0x00,0x02,0x00,0x39,0x01,0xbd,0x03,0x4f,
12958
+0x05,0x02,0x00,0x29,0x00,0x37,0x00,0x00,0x01,0x23,0x35,0x26,
12959
+0x27,0x26,0x27,0x26,0x27,0x26,0x37,0x34,0x37,0x36,0x37,0x33,
12960
+0x15,0x06,0x07,0x06,0x15,0x14,0x17,0x16,0x17,0x35,0x34,0x37,
12961
+0x36,0x37,0x36,0x17,0x16,0x15,0x14,0x07,0x06,0x07,0x06,0x07,
12962
+0x06,0x07,0x35,0x36,0x37,0x36,0x35,0x34,0x27,0x26,0x23,0x22,
12963
+0x07,0x06,0x15,0x14,0x01,0xfe,0x74,0x7d,0x26,0x2c,0x2d,0x29,
12964
+0x1d,0x10,0x01,0x29,0x26,0x6b,0x46,0x3e,0x2a,0x17,0x22,0x21,
12965
+0x8d,0x1c,0x30,0x91,0x7d,0x41,0x2a,0x10,0x1c,0x29,0x31,0x29,
12966
+0x26,0x7c,0x8e,0x1f,0x23,0x18,0x18,0x37,0x30,0x22,0x17,0x01,
12967
+0xbd,0xed,0x02,0x10,0x12,0x27,0x24,0x3d,0x22,0x52,0x80,0x49,
12968
+0x41,0x2b,0x21,0x1a,0x39,0x20,0x98,0x68,0x3f,0x3b,0x0a,0xec,
12969
+0x7e,0x42,0x6d,0x02,0x02,0x71,0x47,0x82,0x52,0x22,0x3d,0x24,
12970
+0x2a,0x0f,0x0e,0x04,0x3d,0x0d,0x38,0x3d,0x6a,0x7b,0x3d,0x3f,
12971
+0x3f,0x2a,0x8e,0x9f,0x00,0x01,0x00,0x10,0x01,0xad,0x02,0xf1,
12972
+0x05,0x10,0x00,0x35,0x00,0x00,0x01,0x15,0x21,0x35,0x33,0x13,
12973
+0x03,0x26,0x27,0x26,0x27,0x22,0x07,0x06,0x07,0x23,0x35,0x36,
12974
+0x37,0x36,0x37,0x32,0x17,0x16,0x1f,0x01,0x37,0x23,0x35,0x21,
12975
+0x15,0x23,0x03,0x17,0x16,0x17,0x16,0x33,0x32,0x37,0x36,0x37,
12976
+0x33,0x15,0x06,0x07,0x06,0x07,0x22,0x27,0x26,0x2f,0x01,0x07,
12977
+0x01,0x45,0xfe,0xcb,0x57,0xea,0x54,0x12,0x14,0x1a,0x0b,0x26,
12978
+0x11,0x12,0x04,0x3b,0x20,0x1e,0x20,0x1d,0x26,0x2d,0x30,0x16,
12979
+0x42,0x96,0x50,0x01,0x2b,0x52,0xee,0x54,0x13,0x12,0x1a,0x0b,
12980
+0x26,0x11,0x12,0x04,0x3c,0x20,0x1f,0x20,0x1d,0x26,0x2c,0x30,
12981
+0x16,0x42,0x92,0x01,0xf9,0x3c,0x3c,0x01,0x85,0x01,0x00,0x37,
12982
+0x0d,0x11,0x01,0x11,0x11,0x26,0x72,0x08,0x05,0x04,0x01,0x1a,
12983
+0x1c,0x43,0xcb,0xf7,0x3c,0x3c,0xfe,0x76,0xfa,0x38,0x0d,0x11,
12984
+0x10,0x11,0x26,0x71,0x08,0x05,0x04,0x01,0x1a,0x1b,0x44,0xc5,
12985
+0xf2,0x00,0x00,0x00,0xff,0xff,0x00,0x2f,0x00,0x00,0x01,0x7f,
12986
+0x03,0x4c,0x12,0x07,0x07,0xc6,0x00,0x00,0xfd,0x64,0x00,0x00,
12987
+0xff,0xff,0x00,0x2e,0x00,0x01,0x02,0x5f,0x02,0x65,0x12,0x07,
12988
+0x02,0x75,0x00,0x00,0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x23,
12989
+0xff,0xf0,0x03,0x0f,0x02,0x53,0x12,0x07,0x05,0x42,0x00,0x00,
12990
+0xfd,0x64,0x00,0x00,0xff,0xff,0xff,0xfc,0x00,0x00,0x02,0xd5,
12991
+0x02,0x53,0x12,0x07,0x05,0x45,0x00,0x00,0xfd,0x64,0x00,0x00,
12992
+0xff,0xff,0x00,0x51,0xff,0x21,0x02,0xa9,0x03,0x7e,0x12,0x07,
12993
+0x05,0x47,0x00,0x00,0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x2f,
12994
+0xff,0x20,0x02,0xc3,0x02,0x63,0x12,0x07,0x05,0x48,0x00,0x00,
12995
+0xfd,0x64,0x00,0x00,0x00,0x02,0x00,0x51,0xff,0x11,0x02,0xb6,
12996
+0x02,0x64,0x00,0x0e,0x00,0x1f,0x00,0x00,0x13,0x15,0x14,0x16,
12997
+0x33,0x32,0x36,0x35,0x34,0x27,0x26,0x27,0x22,0x07,0x06,0x11,
12998
+0x23,0x11,0x34,0x37,0x36,0x37,0x36,0x37,0x32,0x16,0x10,0x06,
12999
+0x23,0x22,0x26,0x27,0xc5,0x5d,0x58,0x59,0x5b,0x2d,0x36,0x51,
13000
+0x54,0x33,0x2e,0x74,0x37,0x3d,0x2a,0x38,0x51,0xa1,0x9d,0x9d,
13001
+0x7b,0x4d,0x6a,0x22,0x01,0x47,0x3b,0x6c,0x70,0x7f,0x7b,0x80,
13002
+0x3a,0x44,0x01,0x3e,0x39,0xfd,0x5f,0x02,0x14,0x8c,0x45,0x40,
13003
+0x13,0x1a,0x01,0xae,0xfe,0xe8,0xae,0x35,0x38,0x00,0x00,0x00,
13004
+0xff,0xff,0x00,0x39,0xff,0x21,0x03,0x4f,0x02,0x66,0x12,0x07,
13005
+0x05,0x4a,0x00,0x00,0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x10,
13006
+0xff,0x11,0x02,0xf1,0x02,0x74,0x12,0x07,0x05,0x4b,0x00,0x00,
13007
+0xfd,0x64,0x00,0x00,0x00,0x02,0x00,0x37,0xff,0xe3,0x07,0x65,
13008
+0x04,0x44,0x00,0x29,0x00,0x30,0x00,0x00,0x05,0x22,0x26,0x27,
13009
+0x0e,0x01,0x23,0x22,0x26,0x35,0x11,0x23,0x35,0x21,0x11,0x14,
13010
+0x16,0x33,0x32,0x36,0x35,0x11,0x23,0x35,0x21,0x15,0x36,0x33,
13011
+0x32,0x00,0x13,0x21,0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x33,
13012
+0x0e,0x01,0x13,0x2e,0x01,0x23,0x22,0x06,0x07,0x05,0x79,0x7a,
13013
+0xcf,0x4e,0x53,0xdd,0x7d,0xb1,0xa7,0xa6,0x01,0x5f,0x5f,0x7a,
13014
+0x80,0x86,0xa0,0x01,0x58,0x81,0xbf,0xf1,0x01,0x02,0x05,0xfc,
13015
+0xe7,0xa2,0x9e,0x79,0x9b,0x1f,0x94,0x2c,0xed,0x52,0x06,0x91,
13016
+0x88,0x7f,0x92,0x10,0x1d,0x5b,0x58,0x5b,0x58,0xc9,0xd7,0x02,
13017
+0x39,0x6b,0xfd,0x95,0xc2,0x90,0xbc,0xb3,0x01,0xe3,0x6b,0x51,
13018
+0x6e,0xfe,0xd7,0xfe,0xe5,0x08,0xd7,0xdb,0x7f,0x7d,0xaf,0xb0,
13019
+0x02,0x87,0xba,0xbd,0xbe,0xb9,0x00,0x00,0x00,0x02,0x00,0x66,
13020
+0xfe,0x39,0x04,0xe3,0x04,0x44,0x00,0x1e,0x00,0x2b,0x00,0x00,
13021
+0x01,0x11,0x34,0x36,0x33,0x32,0x16,0x17,0x15,0x23,0x2e,0x01,
13022
+0x23,0x22,0x06,0x1d,0x01,0x3e,0x01,0x33,0x32,0x12,0x10,0x02,
13023
+0x23,0x22,0x26,0x27,0x15,0x21,0x35,0x01,0x14,0x16,0x33,0x32,
13024
+0x36,0x35,0x34,0x26,0x23,0x22,0x06,0x15,0x01,0x16,0xfc,0xe9,
13025
+0x69,0xc0,0x58,0x60,0x12,0x86,0x7d,0xa2,0x97,0x36,0xa7,0x7b,
13026
+0xc4,0xf9,0xf8,0xc5,0x7b,0xa7,0x36,0xfe,0x98,0x01,0x68,0x93,
13027
+0x8c,0x8e,0x91,0x91,0x8e,0x8c,0x93,0xfe,0xc1,0x03,0xa5,0xe5,
13028
+0xf9,0x26,0x26,0xdf,0x68,0x60,0xb7,0xc4,0x8f,0x64,0x5f,0xfe,
13029
+0xc9,0xfe,0x0c,0xfe,0xca,0x5f,0x64,0xa6,0x6b,0x01,0x74,0xbf,
13030
+0xca,0xe0,0xdd,0xdc,0xe2,0xc9,0xc0,0x00,0xff,0xff,0x00,0x47,
13031
+0x02,0x9c,0x04,0x1e,0x05,0xe0,0x10,0x06,0x05,0x1e,0x00,0x00,
13032
+0x00,0x01,0x00,0x4a,0x00,0x00,0x02,0x60,0x04,0x27,0x00,0x13,
13033
+0x00,0x00,0x25,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x33,
13034
+0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x15,0x23,0x01,0xb2,
13035
+0xae,0xfd,0xea,0xb0,0xb0,0xb0,0xb0,0x02,0x16,0xae,0xae,0xae,
13036
+0x6a,0x6a,0x6a,0x01,0x78,0x6b,0x01,0x6f,0x6b,0x67,0xfe,0x8d,
13037
+0x6b,0x00,0x00,0x00,0x00,0x01,0x00,0x4a,0x00,0x00,0x02,0x63,
13038
+0x04,0x27,0x00,0x15,0x00,0x00,0x13,0x35,0x33,0x13,0x23,0x35,
13039
+0x21,0x11,0x33,0x15,0x23,0x15,0x14,0x17,0x16,0x37,0x15,0x22,
13040
+0x27,0x26,0x3d,0x01,0x4a,0xaf,0x01,0xb0,0x01,0x68,0xaf,0xaf,
13041
+0x2a,0x2b,0x5c,0xab,0x62,0x5d,0x01,0xe2,0x6b,0x01,0x6f,0x6b,
13042
+0xfe,0x26,0x6b,0x83,0x83,0x3c,0x3e,0x01,0x63,0x5e,0x59,0xa8,
13043
+0x83,0x00,0x00,0x00,0x00,0x03,0x00,0x3b,0xfe,0x56,0x05,0x31,
13044
+0x04,0x44,0x00,0x1f,0x00,0x28,0x00,0x31,0x00,0x00,0x13,0x23,
13045
+0x35,0x21,0x15,0x3e,0x01,0x33,0x32,0x17,0x16,0x17,0x33,0x15,
13046
+0x23,0x06,0x07,0x06,0x27,0x22,0x26,0x27,0x11,0x33,0x15,0x21,
13047
+0x35,0x33,0x11,0x23,0x35,0x33,0x05,0x21,0x15,0x14,0x16,0x33,
13048
+0x32,0x37,0x36,0x01,0x21,0x26,0x27,0x26,0x23,0x22,0x07,0x06,
13049
+0xec,0xb1,0x01,0x69,0x36,0xa7,0x7b,0xc4,0x7c,0x6e,0x0c,0x7b,
13050
+0x7a,0x0b,0x70,0x7c,0xc4,0x7b,0xa7,0x36,0xae,0xfd,0xe9,0xb1,
13051
+0xb1,0xb1,0x02,0xf4,0xfd,0xc4,0x93,0x8c,0x8d,0x48,0x40,0xfd,
13052
+0xcc,0x02,0x3c,0x08,0x40,0x48,0x8d,0x8b,0x4a,0x48,0x03,0xbc,
13053
+0x6b,0xa6,0x64,0x5f,0x9b,0x89,0xd3,0x6b,0xd8,0x8c,0x9c,0x01,
13054
+0x5f,0x64,0xfe,0x1b,0x6b,0x6b,0x03,0x21,0x6b,0x6b,0x03,0xc0,
13055
+0xc9,0x71,0x64,0x01,0x22,0xb3,0x61,0x70,0x65,0x64,0x00,0x00,
13056
+0x00,0x02,0x00,0x06,0xff,0xe3,0x04,0xa8,0x04,0x27,0x00,0x07,
13057
+0x00,0x23,0x00,0x00,0x24,0x20,0x36,0x3d,0x01,0x21,0x15,0x14,
13058
+0x25,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x11,
13059
+0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x15,0x23,0x15,0x14,0x06,
13060
+0x20,0x26,0x3d,0x01,0x02,0x0c,0x01,0x12,0x69,0xfd,0xde,0xfe,
13061
+0xa1,0xa6,0xa6,0x02,0x05,0xa6,0x02,0x22,0xa6,0x01,0xc7,0xa6,
13062
+0xa6,0xa6,0xeb,0xfe,0x80,0xeb,0x6a,0x90,0xc2,0x26,0x26,0xc2,
13063
+0xe8,0x6b,0x01,0x6f,0x6b,0x6b,0xfe,0x91,0x01,0x6f,0x6b,0x6b,
13064
+0xfe,0x91,0x6b,0x5f,0xd7,0xc9,0xc9,0xd7,0x5f,0x00,0x00,0x00,
13065
+0x00,0x02,0xff,0xe0,0xff,0xe3,0x05,0x16,0x04,0x27,0x00,0x2b,
13066
+0x00,0x33,0x00,0x00,0x01,0x21,0x16,0x17,0x16,0x17,0x33,0x15,
13067
+0x23,0x06,0x07,0x06,0x07,0x0e,0x01,0x22,0x26,0x27,0x26,0x27,
13068
+0x26,0x27,0x23,0x35,0x33,0x36,0x37,0x36,0x37,0x21,0x35,0x21,
13069
+0x15,0x06,0x07,0x06,0x07,0x21,0x26,0x27,0x26,0x27,0x35,0x21,
13070
+0x03,0x21,0x16,0x17,0x16,0x20,0x37,0x36,0x04,0x90,0xfe,0xe5,
13071
+0x99,0x41,0x2b,0x0f,0x8d,0x86,0x01,0x2a,0x2a,0x51,0x48,0xbc,
13072
+0xd6,0xb9,0x4a,0x53,0x2a,0x29,0x01,0x86,0x8d,0x0e,0x2c,0x41,
13073
+0x9a,0xfe,0xe5,0x01,0xbd,0x77,0x3d,0x2c,0x0c,0x02,0x86,0x0c,
13074
+0x2c,0x3d,0x76,0x01,0xbd,0xcd,0xfd,0x70,0x05,0x55,0x5b,0x01,
13075
+0x26,0x5a,0x56,0x03,0xbc,0x40,0x7c,0x52,0x61,0x6b,0x69,0x60,
13076
+0x62,0x4a,0x43,0x47,0x46,0x44,0x4c,0x60,0x5e,0x6b,0x6b,0x61,
13077
+0x52,0x7c,0x40,0x6b,0x6b,0x2e,0x7e,0x5a,0x69,0x69,0x5a,0x7e,
13078
+0x2e,0x6b,0xfd,0xbb,0xaa,0x69,0x70,0x70,0x6a,0x00,0x00,0x00,
13079
+0x00,0x01,0xff,0xdb,0xfe,0x39,0x02,0x52,0x06,0x14,0x00,0x1a,
13080
+0x00,0x00,0x25,0x33,0x1d,0x01,0x14,0x06,0x23,0x22,0x26,0x27,
13081
+0x35,0x33,0x1e,0x01,0x33,0x32,0x37,0x36,0x3d,0x01,0x21,0x35,
13082
+0x33,0x11,0x23,0x35,0x21,0x01,0xa4,0xae,0xc3,0xab,0x48,0x83,
13083
+0x3e,0x5f,0x07,0x55,0x52,0x5b,0x2b,0x2b,0xfe,0xa2,0xb1,0xb1,
13084
+0x01,0x69,0x6a,0x6a,0x68,0xa4,0xbb,0x21,0x21,0xdb,0x60,0x5a,
13085
+0x3e,0x3c,0x82,0x68,0x6a,0x05,0x40,0x6a,0x00,0x02,0x00,0x40,
13086
+0x02,0x8c,0x03,0x14,0x05,0x00,0x00,0x16,0x00,0x25,0x00,0x00,
13087
+0x01,0x15,0x23,0x35,0x33,0x11,0x23,0x35,0x33,0x15,0x36,0x37,
13088
+0x36,0x33,0x32,0x17,0x16,0x10,0x06,0x23,0x22,0x27,0x26,0x03,
13089
+0x15,0x14,0x17,0x16,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x22,
13090
+0x07,0x06,0x01,0x23,0xe3,0x6f,0x6f,0xe3,0x22,0x35,0x34,0x4e,
13091
+0x7b,0x4e,0x4f,0x9c,0x7c,0x4e,0x34,0x35,0x22,0x2f,0x2e,0x58,
13092
+0x59,0x5c,0x5c,0x59,0x58,0x2e,0x2f,0x02,0xf9,0x5d,0x3c,0x01,
13093
+0xdc,0x3b,0x5d,0x38,0x1b,0x1b,0x58,0x57,0xfe,0xe8,0xad,0x1a,
13094
+0x1b,0x01,0x22,0x3b,0x6b,0x38,0x39,0x7e,0x7b,0x7c,0x7e,0x38,
13095
+0x38,0x00,0x00,0x00,0x00,0x01,0x00,0x40,0x02,0x8c,0x02,0x97,
13096
+0x05,0x00,0x00,0x19,0x00,0x00,0x01,0x0e,0x01,0x23,0x22,0x26,
13097
+0x35,0x34,0x36,0x33,0x32,0x16,0x17,0x15,0x23,0x2e,0x01,0x23,
13098
+0x22,0x06,0x10,0x16,0x33,0x32,0x36,0x37,0x02,0x97,0x18,0x8c,
13099
+0x6f,0x92,0xb2,0xb2,0x92,0x40,0x7e,0x3f,0x43,0x0d,0x59,0x53,
13100
+0x5e,0x5f,0x5f,0x5e,0x4b,0x5a,0x10,0x03,0x4f,0x60,0x63,0xac,
13101
+0x8e,0x8f,0xab,0x1b,0x1b,0x98,0x4e,0x48,0x81,0xfe,0xfe,0x82,
13102
+0x46,0x46,0x00,0x00,0x00,0x02,0x00,0x40,0x02,0x21,0x02,0x81,
13103
+0x05,0x00,0x00,0x07,0x00,0x2e,0x00,0x00,0x01,0x16,0x33,0x16,
13104
+0x35,0x34,0x07,0x06,0x07,0x36,0x33,0x32,0x07,0x06,0x23,0x22,
13105
+0x27,0x06,0x1d,0x01,0x23,0x37,0x36,0x37,0x30,0x27,0x26,0x35,
13106
+0x34,0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x15,0x23,0x26,0x27,
13107
+0x26,0x23,0x22,0x07,0x06,0x15,0x14,0x01,0x04,0x2a,0x57,0x65,
13108
+0x46,0x72,0x54,0x4f,0xa2,0xa7,0x03,0x03,0xec,0x60,0x44,0x05,
13109
+0x48,0x01,0x02,0x0f,0x0c,0x59,0x59,0x59,0x92,0x40,0x3f,0x3f,
13110
+0x3f,0x43,0x0d,0x2c,0x2d,0x53,0x5e,0x2f,0x30,0x02,0xf8,0x35,
13111
+0x01,0x3d,0x46,0x01,0x01,0x11,0x4a,0x81,0x6f,0x28,0x12,0x30,
13112
+0x51,0x51,0x39,0x2c,0x0a,0x57,0x8e,0x8f,0x55,0x56,0x0e,0x0d,
13113
+0x1b,0x98,0x4e,0x24,0x24,0x40,0x41,0x81,0x59,0x00,0x00,0x00,
13114
+0x00,0x02,0x00,0x40,0x02,0x8c,0x02,0xc8,0x06,0x03,0x00,0x0e,
13115
+0x00,0x2d,0x00,0x00,0x01,0x2e,0x01,0x23,0x22,0x06,0x15,0x14,
13116
+0x16,0x33,0x32,0x36,0x35,0x34,0x26,0x03,0x1e,0x01,0x15,0x14,
13117
+0x06,0x23,0x22,0x26,0x35,0x34,0x36,0x33,0x32,0x16,0x17,0x2e,
13118
+0x01,0x27,0x07,0x27,0x37,0x2e,0x01,0x27,0x37,0x1e,0x01,0x17,
13119
+0x37,0x17,0x02,0x05,0x1c,0x33,0x19,0x6d,0x68,0x63,0x59,0x5b,
13120
+0x61,0x1d,0x44,0x73,0x76,0xb1,0x93,0x90,0xb4,0xb2,0x90,0x16,
13121
+0x2f,0x21,0x0e,0x2e,0x20,0xcb,0x17,0xb9,0x27,0x63,0x3b,0x0b,
13122
+0x4b,0x83,0x3a,0xcb,0x18,0x04,0xa4,0x05,0x05,0x78,0x7e,0x75,
13123
+0x80,0x80,0x78,0x3e,0x77,0x01,0x08,0x5e,0xdb,0x79,0x8e,0xac,
13124
+0xa9,0x89,0x84,0xa3,0x04,0x04,0x1d,0x3c,0x1f,0x53,0x2b,0x4c,
13125
+0x21,0x2d,0x0c,0x30,0x0e,0x35,0x26,0x54,0x2c,0x00,0x00,0x00,
13126
+0x00,0x01,0x00,0x40,0x02,0x88,0x02,0x55,0x05,0x00,0x00,0x31,
13127
+0x00,0x00,0x01,0x22,0x27,0x26,0x27,0x33,0x1e,0x01,0x33,0x36,
13128
+0x37,0x36,0x35,0x34,0x27,0x26,0x2b,0x01,0x35,0x33,0x32,0x36,
13129
+0x35,0x34,0x27,0x26,0x23,0x22,0x07,0x06,0x07,0x23,0x35,0x36,
13130
+0x37,0x36,0x33,0x32,0x16,0x15,0x14,0x07,0x06,0x07,0x16,0x17,
13131
+0x16,0x15,0x14,0x06,0x01,0x42,0x82,0x39,0x39,0x0e,0x5f,0x0c,
13132
+0x4e,0x49,0x45,0x24,0x23,0x2c,0x2c,0x57,0x18,0x18,0x57,0x58,
13133
+0x23,0x25,0x44,0x4a,0x27,0x27,0x06,0x3f,0x42,0x3c,0x3c,0x35,
13134
+0x7c,0x85,0x2f,0x30,0x55,0x55,0x30,0x2f,0x85,0x02,0x88,0x35,
13135
+0x36,0x49,0x46,0x33,0x01,0x1c,0x1c,0x36,0x3b,0x1e,0x1d,0x38,
13136
+0x3a,0x3c,0x35,0x1d,0x1d,0x1a,0x19,0x34,0x78,0x15,0x0a,0x0b,
13137
+0x57,0x4f,0x39,0x28,0x28,0x0d,0x0e,0x28,0x27,0x3a,0x4f,0x56,
13138
+0x00,0x01,0x00,0x2f,0x02,0x9c,0x02,0x2b,0x06,0x03,0x00,0x1c,
13139
+0x00,0x00,0x01,0x23,0x2e,0x01,0x23,0x22,0x06,0x1d,0x01,0x33,
13140
+0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x33,
13141
+0x35,0x34,0x36,0x33,0x32,0x16,0x17,0x02,0x2b,0x3d,0x01,0x34,
13142
+0x32,0x41,0x35,0xbc,0xbc,0x95,0xfe,0x89,0x6f,0x6f,0x6f,0x74,
13143
+0x71,0x2a,0x54,0x2a,0x05,0x77,0x2a,0x2b,0x3f,0x51,0x4d,0x3c,
13144
+0xfe,0x24,0x3b,0x3b,0x01,0xdc,0x3c,0x4b,0x63,0x66,0x0d,0x0e,
13145
+0x00,0x01,0xff,0x84,0x01,0x9d,0x01,0x79,0x04,0xef,0x00,0x1d,
13146
+0x00,0x00,0x13,0x23,0x35,0x33,0x11,0x33,0x15,0x23,0x15,0x14,
13147
+0x07,0x06,0x23,0x22,0x27,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,
13148
+0x32,0x37,0x36,0x3d,0x01,0x23,0x35,0x33,0x9e,0x6e,0xe1,0x68,
13149
+0x68,0x3d,0x3d,0x6c,0x2e,0x29,0x29,0x27,0x3c,0x04,0x36,0x33,
13150
+0x3a,0x1b,0x1c,0x9e,0x9e,0x04,0xb3,0x3c,0xfd,0xe9,0x3c,0x3a,
13151
+0x5c,0x35,0x34,0x0a,0x09,0x12,0x7b,0x36,0x32,0x22,0x23,0x48,
13152
+0x3a,0x3c,0x00,0x00,0x00,0x02,0x00,0x40,0x01,0x9d,0x03,0x14,
13153
+0x04,0xef,0x00,0x1b,0x00,0x27,0x00,0x00,0x01,0x21,0x15,0x23,
13154
+0x11,0x14,0x06,0x23,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,
13155
+0x32,0x36,0x3d,0x01,0x0e,0x01,0x23,0x22,0x26,0x35,0x34,0x36,
13156
+0x01,0x37,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x35,
13157
+0x01,0x59,0x01,0xbb,0x6f,0x9f,0x92,0x42,0x79,0x38,0x3d,0x0b,
13158
+0x54,0x4f,0x66,0x5f,0x22,0x69,0x4d,0x7c,0x9d,0x9c,0x01,0x55,
13159
+0x01,0xb5,0x5a,0x5b,0x5b,0x5a,0x58,0x5c,0x04,0xef,0x3c,0xfd,
13160
+0xf6,0x80,0x8c,0x15,0x16,0x7d,0x3b,0x35,0x66,0x6e,0x50,0x38,
13161
+0x35,0xae,0x8c,0x7c,0xad,0xfe,0xf4,0xd0,0x7d,0x70,0x7b,0x7f,
13162
+0x71,0x6b,0x00,0x00,0x00,0x01,0x00,0x23,0x01,0xad,0x03,0x0f,
13163
+0x04,0xef,0x00,0x1e,0x00,0x00,0x01,0x33,0x11,0x0e,0x01,0x23,
13164
+0x22,0x27,0x26,0x35,0x11,0x23,0x35,0x33,0x11,0x14,0x17,0x16,
13165
+0x33,0x32,0x36,0x35,0x11,0x23,0x35,0x33,0x11,0x33,0x15,0x23,
13166
+0x27,0x01,0xc0,0x6e,0x21,0x66,0x43,0x70,0x34,0x35,0x68,0xdd,
13167
+0x1e,0x1e,0x4c,0x51,0x55,0x65,0xd8,0x6e,0xe1,0x6e,0x01,0xe9,
13168
+0x01,0x1c,0x3b,0x3e,0x38,0x38,0x79,0x01,0x3e,0x3c,0xfe,0xa6,
13169
+0x6d,0x28,0x29,0x6a,0x64,0x01,0x0e,0x3c,0xfc,0xfa,0x3c,0x02,
13170
+0x00,0x02,0x00,0x2f,0x02,0x9c,0x01,0x7f,0x05,0xe8,0x00,0x11,
13171
+0x00,0x1b,0x00,0x00,0x01,0x33,0x15,0x21,0x35,0x33,0x35,0x23,
13172
+0x35,0x33,0x35,0x23,0x35,0x33,0x11,0x33,0x15,0x23,0x02,0x34,
13173
+0x37,0x36,0x32,0x16,0x14,0x06,0x22,0x27,0x01,0x11,0x6e,0xfe,
13174
+0xb0,0x6f,0x6f,0x6f,0x6f,0xe2,0x6e,0x6e,0x94,0x15,0x16,0x3a,
13175
+0x2a,0x29,0x3b,0x16,0x02,0xd7,0x3b,0x3b,0xc9,0x3b,0xd8,0x3c,
13176
+0xfe,0xec,0x3b,0x01,0xee,0x34,0x13,0x13,0x26,0x34,0x25,0x12,
13177
+0x00,0x01,0x00,0x2f,0x02,0x9c,0x01,0x81,0x04,0xef,0x00,0x0d,
13178
+0x00,0x00,0x1b,0x01,0x23,0x35,0x33,0x11,0x14,0x17,0x16,0x33,
13179
+0x15,0x22,0x27,0x26,0x9d,0x01,0x6f,0xe2,0x1b,0x1c,0x39,0x6c,
13180
+0x3e,0x3a,0x03,0x61,0x01,0x52,0x3c,0xfe,0x72,0x4a,0x21,0x23,
13181
+0x37,0x35,0x31,0x00,0x00,0x01,0x00,0x2f,0x02,0x9c,0x01,0x7f,
13182
+0x04,0xef,0x00,0x0b,0x00,0x00,0x01,0x33,0x15,0x21,0x35,0x33,
13183
+0x11,0x23,0x35,0x21,0x15,0x23,0x01,0x11,0x6e,0xfe,0xb0,0x6f,
13184
+0x6f,0x01,0x50,0x6e,0x02,0xd7,0x3b,0x3b,0x01,0xdc,0x3c,0x39,
13185
+0x00,0x01,0x00,0x48,0x02,0x9c,0x01,0x98,0x04,0xef,0x00,0x13,
13186
+0x00,0x00,0x13,0x35,0x33,0x35,0x23,0x35,0x21,0x15,0x23,0x15,
13187
+0x33,0x15,0x23,0x15,0x33,0x15,0x21,0x35,0x33,0x35,0x48,0x6e,
13188
+0x6e,0x01,0x50,0x6e,0x6e,0x6e,0x6e,0xfe,0xb0,0x6e,0x03,0xa0,
13189
+0x3b,0xd8,0x3c,0x39,0xdb,0x3b,0xc9,0x3b,0x3b,0xc9,0x00,0x00,
13190
+0x00,0x03,0xff,0x84,0x01,0x9d,0x01,0x63,0x05,0xe8,0x00,0x12,
13191
+0x00,0x1a,0x00,0x25,0x00,0x00,0x01,0x16,0x17,0x23,0x27,0x06,
13192
+0x23,0x22,0x27,0x26,0x17,0x16,0x17,0x11,0x23,0x35,0x33,0x11,
13193
+0x14,0x27,0x26,0x23,0x22,0x15,0x14,0x33,0x32,0x12,0x34,0x36,
13194
+0x33,0x32,0x16,0x14,0x07,0x06,0x22,0x27,0x01,0x44,0x1b,0x04,
13195
+0x47,0x0b,0x3f,0x5f,0xed,0x02,0x03,0xa7,0x77,0x46,0x6d,0xe1,
13196
+0x7c,0x24,0x66,0x46,0x68,0x50,0x04,0x2a,0x1e,0x1d,0x2a,0x14,
13197
+0x15,0x3c,0x15,0x01,0xfa,0x37,0x25,0x2a,0x2b,0x70,0x82,0x02,
13198
+0x01,0x20,0x02,0x47,0x3c,0xfd,0x73,0x40,0x01,0x32,0x44,0x36,
13199
+0x03,0xb3,0x34,0x26,0x26,0x34,0x13,0x12,0x12,0x00,0x00,0x00,
13200
+0x00,0x01,0x00,0x25,0x01,0x9d,0x02,0x22,0x06,0x03,0x00,0x17,
13201
+0x00,0x00,0x13,0x23,0x35,0x33,0x11,0x14,0x17,0x16,0x33,0x32,
13202
+0x37,0x36,0x37,0x33,0x15,0x06,0x07,0x06,0x23,0x22,0x27,0x26,
13203
+0x35,0x10,0x95,0x70,0xe4,0x1a,0x1c,0x39,0x34,0x1b,0x1a,0x05,
13204
+0x3c,0x27,0x2a,0x29,0x2d,0x6c,0x3e,0x3d,0x05,0xc8,0x3b,0xfc,
13205
+0x5f,0x49,0x22,0x22,0x19,0x19,0x36,0x7b,0x12,0x09,0x0a,0x34,
13206
+0x35,0x5c,0x01,0xb3,0x00,0x01,0xff,0xe9,0x01,0x9d,0x01,0x76,
13207
+0x06,0x03,0x00,0x19,0x00,0x00,0x01,0x33,0x15,0x14,0x06,0x23,
13208
+0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x37,0x36,0x3d,
13209
+0x01,0x23,0x35,0x33,0x11,0x23,0x35,0x33,0x01,0x09,0x6d,0x7b,
13210
+0x6b,0x2e,0x52,0x27,0x3c,0x04,0x35,0x34,0x39,0x1c,0x1b,0xdd,
13211
+0x70,0x70,0xe4,0x02,0xd7,0x75,0x5c,0x69,0x13,0x12,0x7b,0x36,
13212
+0x32,0x22,0x22,0x49,0x3a,0x3b,0x02,0xf1,0x3b,0x00,0x00,0x00,
13213
+0x00,0x01,0x00,0x35,0x02,0x9c,0x02,0x9c,0x04,0xfd,0x00,0x0d,
13214
+0x00,0x00,0x13,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,
13215
+0x21,0x35,0x33,0x15,0x35,0x78,0x78,0x01,0x6f,0x77,0x01,0x21,
13216
+0x4e,0x02,0x9c,0x3b,0x01,0xea,0x3c,0x3c,0xfe,0x20,0x8c,0xd1,
13217
+0x00,0x01,0x00,0x2f,0x01,0x9d,0x04,0x3c,0x05,0x00,0x00,0x44,
13218
+0x00,0x00,0x01,0x14,0x07,0x06,0x23,0x22,0x27,0x26,0x27,0x35,
13219
+0x33,0x16,0x17,0x16,0x33,0x32,0x36,0x35,0x11,0x34,0x27,0x26,
13220
+0x23,0x22,0x07,0x06,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,
13221
+0x34,0x27,0x26,0x23,0x22,0x06,0x15,0x11,0x33,0x15,0x21,0x35,
13222
+0x33,0x11,0x23,0x35,0x33,0x15,0x36,0x37,0x36,0x33,0x32,0x17,
13223
+0x16,0x17,0x36,0x37,0x36,0x33,0x32,0x17,0x16,0x15,0x14,0x04,
13224
+0x3c,0x3d,0x3e,0x6b,0x2e,0x29,0x29,0x27,0x3c,0x04,0x1a,0x1c,
13225
+0x33,0x3a,0x36,0x1f,0x1e,0x46,0x4d,0x29,0x28,0x64,0xfe,0xc3,
13226
+0x65,0x1f,0x1e,0x46,0x4d,0x52,0x65,0xfe,0xbf,0x69,0x6f,0xe2,
13227
+0x21,0x31,0x32,0x3f,0x4e,0x34,0x35,0x11,0x22,0x33,0x35,0x45,
13228
+0x69,0x34,0x34,0x02,0x62,0x5c,0x35,0x34,0x0a,0x09,0x12,0x7b,
13229
+0x36,0x19,0x19,0x44,0x49,0x01,0xa9,0x5b,0x27,0x26,0x34,0x34,
13230
+0x63,0xfe,0xef,0x3b,0x3b,0x01,0x38,0x59,0x25,0x26,0x68,0x63,
13231
+0xfe,0xef,0x3b,0x3b,0x01,0xdd,0x3b,0x6a,0x3c,0x1f,0x20,0x23,
13232
+0x22,0x40,0x42,0x21,0x22,0x3b,0x39,0x75,0xdc,0x00,0x00,0x00,
13233
+0x00,0x01,0x00,0x2f,0x01,0xad,0x04,0xa4,0x05,0x00,0x00,0x31,
13234
+0x00,0x00,0x01,0x33,0x15,0x21,0x35,0x33,0x11,0x0e,0x01,0x23,
13235
+0x22,0x27,0x26,0x27,0x06,0x07,0x06,0x23,0x22,0x26,0x35,0x11,
13236
+0x23,0x35,0x33,0x11,0x14,0x16,0x33,0x32,0x37,0x36,0x35,0x11,
13237
+0x23,0x35,0x33,0x11,0x14,0x17,0x16,0x33,0x32,0x37,0x36,0x35,
13238
+0x11,0x23,0x35,0x33,0x04,0x35,0x6f,0xfe,0xb0,0x6d,0x20,0x63,
13239
+0x3f,0x4e,0x35,0x34,0x12,0x21,0x34,0x34,0x45,0x69,0x68,0x68,
13240
+0xdc,0x3d,0x46,0x4d,0x28,0x29,0x65,0xd9,0x1e,0x1f,0x46,0x4d,
13241
+0x29,0x28,0x64,0xd8,0x01,0xe9,0x3c,0x3c,0x01,0x2d,0x3b,0x3f,
13242
+0x23,0x22,0x3f,0x41,0x21,0x22,0x74,0x75,0x01,0x3f,0x3c,0xfe,
13243
+0x91,0x5c,0x4d,0x34,0x34,0x64,0x01,0x10,0x3c,0xfe,0x8d,0x59,
13244
+0x26,0x26,0x34,0x34,0x64,0x01,0x10,0x3c,0x00,0x01,0xff,0x84,
13245
+0x01,0x9d,0x03,0x1a,0x05,0x00,0x00,0x2b,0x00,0x00,0x01,0x14,
13246
+0x07,0x06,0x23,0x22,0x27,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,
13247
+0x32,0x36,0x35,0x11,0x23,0x35,0x33,0x15,0x36,0x37,0x36,0x33,
13248
+0x32,0x16,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x34,0x27,
13249
+0x26,0x23,0x22,0x06,0x15,0x14,0x01,0x11,0x3d,0x3d,0x6c,0x2e,
13250
+0x29,0x29,0x27,0x3c,0x04,0x36,0x33,0x3a,0x36,0x6f,0xe3,0x20,
13251
+0x34,0x33,0x44,0x6f,0x68,0x67,0xfe,0xc0,0x65,0x1f,0x1e,0x4c,
13252
+0x51,0x54,0x02,0x62,0x5c,0x35,0x34,0x0a,0x09,0x12,0x7b,0x36,
13253
+0x32,0x44,0x49,0x02,0x51,0x3c,0x6a,0x3d,0x1f,0x1f,0x72,0x77,
13254
+0xfe,0xc0,0x3b,0x3b,0x01,0x1f,0x6d,0x29,0x28,0x68,0x64,0xc5,
13255
+0x00,0x01,0x00,0x2f,0x01,0x9d,0x03,0xcd,0x05,0x00,0x00,0x2d,
13256
+0x00,0x00,0x01,0x34,0x27,0x26,0x23,0x22,0x07,0x06,0x15,0x11,
13257
+0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x33,0x15,0x3e,0x01,
13258
+0x33,0x32,0x17,0x16,0x15,0x11,0x14,0x17,0x16,0x33,0x32,0x37,
13259
+0x36,0x37,0x33,0x15,0x06,0x07,0x06,0x23,0x22,0x27,0x26,0x35,
13260
+0x02,0x3f,0x1e,0x1e,0x4d,0x50,0x2a,0x2b,0x65,0xfe,0xbf,0x69,
13261
+0x6f,0xe2,0x21,0x66,0x44,0x6e,0x35,0x35,0x1a,0x1c,0x39,0x34,
13262
+0x1b,0x1a,0x05,0x3c,0x27,0x2a,0x29,0x2d,0x6c,0x3e,0x3d,0x03,
13263
+0xf6,0x6d,0x29,0x28,0x34,0x34,0x64,0xfe,0xef,0x3b,0x3b,0x01,
13264
+0xdc,0x3c,0x6a,0x3d,0x3e,0x39,0x37,0x79,0xfe,0x4b,0x49,0x22,
13265
+0x22,0x19,0x19,0x36,0x7b,0x12,0x09,0x0a,0x34,0x35,0x5c,0x00,
13266
+0x00,0x01,0x00,0x35,0x02,0x8c,0x03,0x1b,0x04,0xfe,0x00,0x13,
13267
+0x00,0x00,0x13,0x35,0x33,0x13,0x23,0x35,0x33,0x01,0x11,0x23,
13268
+0x35,0x21,0x15,0x23,0x03,0x23,0x01,0x03,0x33,0x15,0x35,0x57,
13269
+0x01,0x57,0xf1,0x01,0x28,0x7e,0x01,0x4a,0x59,0x01,0x71,0xfe,
13270
+0xb2,0x01,0x7f,0x02,0x9c,0x3b,0x01,0xeb,0x3c,0xfe,0x4e,0x01,
13271
+0x76,0x3c,0x3c,0xfd,0xca,0x01,0xdf,0xfe,0x6c,0x3b,0x00,0x00,
13272
+0x00,0x03,0x00,0x40,0x02,0x8c,0x02,0xc8,0x05,0x00,0x00,0x07,
13273
+0x00,0x0f,0x00,0x1c,0x00,0x00,0x00,0x32,0x37,0x36,0x37,0x21,
13274
+0x16,0x17,0x27,0x21,0x26,0x27,0x26,0x22,0x07,0x06,0x13,0x22,
13275
+0x27,0x26,0x10,0x37,0x36,0x20,0x17,0x16,0x10,0x07,0x06,0x01,
13276
+0x27,0xba,0x30,0x28,0x06,0xfe,0x8a,0x06,0x29,0x30,0x01,0x78,
13277
+0x04,0x2b,0x30,0xba,0x30,0x2b,0xb8,0x92,0x59,0x59,0x58,0x59,
13278
+0x01,0x26,0x59,0x58,0x58,0x59,0x02,0xc3,0x42,0x37,0x64,0x64,
13279
+0x37,0xd6,0x70,0x3c,0x41,0x41,0x3c,0xfe,0x41,0x55,0x57,0x01,
13280
+0x1c,0x56,0x56,0x56,0x56,0xfe,0xe4,0x57,0x55,0x00,0x00,0x00,
13281
+0x00,0x03,0x00,0x40,0x01,0xad,0x02,0xc8,0x06,0x03,0x00,0x1b,
13282
+0x00,0x23,0x00,0x2b,0x00,0x00,0x01,0x33,0x15,0x21,0x35,0x33,
13283
+0x35,0x26,0x27,0x26,0x10,0x37,0x36,0x37,0x35,0x23,0x35,0x21,
13284
+0x15,0x23,0x15,0x16,0x17,0x16,0x10,0x07,0x06,0x07,0x27,0x11,
13285
+0x06,0x07,0x06,0x10,0x17,0x16,0x13,0x11,0x36,0x37,0x36,0x10,
13286
+0x27,0x26,0x01,0xbf,0x6e,0xfe,0xaf,0x6f,0x6b,0x47,0x59,0x58,
13287
+0x47,0x6c,0x6f,0x01,0x51,0x6e,0x6b,0x46,0x58,0x58,0x46,0x6b,
13288
+0x74,0x34,0x20,0x2f,0x30,0x20,0xa7,0x33,0x1f,0x2f,0x2f,0x1f,
13289
+0x01,0xe9,0x3c,0x3c,0xa6,0x0e,0x44,0x57,0x01,0x1c,0x56,0x44,
13290
+0x0e,0xcb,0x3c,0x39,0xce,0x0f,0x43,0x56,0xfe,0xe4,0x57,0x43,
13291
+0x0e,0x3a,0x01,0xf7,0x0f,0x2b,0x41,0xff,0x00,0x41,0x2c,0x01,
13292
+0xe7,0xfe,0x0b,0x0f,0x2b,0x41,0x01,0x00,0x41,0x2a,0x00,0x00,
13293
+0x00,0x01,0x00,0x48,0x01,0x9d,0x02,0x54,0x05,0x00,0x00,0x3a,
13294
+0x00,0x00,0x13,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x34,0x26,
13295
+0x2f,0x01,0x2e,0x01,0x35,0x34,0x36,0x33,0x32,0x16,0x17,0x15,
13296
+0x23,0x2e,0x01,0x23,0x22,0x06,0x15,0x14,0x17,0x16,0x1f,0x01,
13297
+0x16,0x17,0x16,0x15,0x14,0x06,0x23,0x22,0x2f,0x01,0x15,0x14,
13298
+0x16,0x33,0x32,0x36,0x37,0x33,0x15,0x0e,0x01,0x23,0x22,0x26,
13299
+0x35,0x48,0x43,0x03,0x59,0x57,0x4e,0x52,0x3c,0x61,0x53,0x56,
13300
+0x4e,0x87,0x77,0x35,0x75,0x3e,0x43,0x03,0x55,0x4a,0x49,0x4b,
13301
+0x1d,0x1d,0x54,0x5c,0x5e,0x2b,0x2a,0x92,0x7f,0x41,0x3e,0x08,
13302
+0x37,0x3a,0x34,0x35,0x04,0x3c,0x27,0x53,0x2d,0x6c,0x7b,0x03,
13303
+0x48,0x43,0x42,0x34,0x32,0x27,0x30,0x1c,0x19,0x19,0x4a,0x39,
13304
+0x52,0x5d,0x19,0x18,0x82,0x3a,0x41,0x2e,0x2e,0x26,0x16,0x17,
13305
+0x17,0x19,0x1a,0x28,0x27,0x3f,0x55,0x60,0x0c,0x02,0x38,0x48,
13306
+0x45,0x32,0x36,0x7b,0x12,0x13,0x69,0x5c,0x00,0x01,0xff,0x84,
13307
+0x01,0x9d,0x01,0xac,0x06,0x04,0x00,0x26,0x00,0x00,0x01,0x16,
13308
+0x07,0x06,0x23,0x22,0x27,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,
13309
+0x32,0x37,0x36,0x27,0x02,0x03,0x26,0x37,0x36,0x33,0x32,0x17,
13310
+0x16,0x17,0x15,0x23,0x26,0x27,0x26,0x23,0x22,0x07,0x06,0x17,
13311
+0x12,0x01,0x11,0x0f,0x4c,0x3d,0x6c,0x2e,0x29,0x29,0x27,0x3c,
13312
+0x04,0x36,0x33,0x38,0x1d,0x26,0x0b,0x43,0x3c,0x0d,0x4b,0x3d,
13313
+0x6c,0x2d,0x2a,0x29,0x27,0x3c,0x04,0x1c,0x1a,0x34,0x39,0x1b,
13314
+0x25,0x0a,0x3b,0x02,0x62,0x50,0x41,0x34,0x0a,0x09,0x12,0x7b,
13315
+0x36,0x32,0x22,0x2d,0x3e,0x01,0x6c,0x01,0x72,0x51,0x3f,0x34,
13316
+0x08,0x09,0x13,0x7b,0x36,0x19,0x1a,0x23,0x2d,0x3e,0xfe,0x8d,
13317
+0x00,0x01,0x00,0x25,0x01,0x9d,0x01,0xfc,0x05,0xa8,0x00,0x26,
13318
+0x00,0x00,0x13,0x23,0x35,0x33,0x35,0x33,0x15,0x33,0x15,0x23,
13319
+0x11,0x14,0x16,0x33,0x32,0x36,0x37,0x33,0x15,0x14,0x06,0x23,
13320
+0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x3d,0x01,
13321
+0x06,0x23,0x22,0x26,0x35,0x8b,0x66,0x66,0x75,0xda,0xda,0x21,
13322
+0x2c,0x2d,0x2a,0x01,0x57,0x7a,0x6c,0x2e,0x52,0x27,0x3c,0x04,
13323
+0x36,0x33,0x3a,0x36,0x1f,0x26,0x65,0x53,0x04,0xb3,0x3c,0xb9,
13324
+0xb9,0x3c,0xfe,0x86,0x4b,0x2b,0x30,0x35,0xc6,0x5c,0x69,0x13,
13325
+0x12,0x7b,0x36,0x32,0x44,0x49,0x31,0x07,0x4f,0x5e,0x00,0x00,
13326
+0x00,0x02,0x00,0x23,0x02,0x8c,0x03,0x0f,0x04,0xef,0x00,0x1d,
13327
+0x00,0x27,0x00,0x00,0x01,0x33,0x11,0x33,0x15,0x23,0x15,0x33,
13328
+0x15,0x23,0x35,0x0e,0x01,0x23,0x22,0x27,0x26,0x3d,0x01,0x23,
13329
+0x35,0x33,0x35,0x23,0x35,0x33,0x11,0x21,0x35,0x23,0x13,0x21,
13330
+0x15,0x14,0x17,0x16,0x33,0x32,0x37,0x36,0x01,0xc9,0xd8,0x6e,
13331
+0x6e,0x6e,0xe1,0x21,0x66,0x43,0x70,0x34,0x35,0x68,0x68,0x68,
13332
+0xdd,0x01,0x2e,0x65,0x65,0xfe,0xd2,0x1e,0x1e,0x4c,0x51,0x2a,
13333
+0x29,0x04,0xef,0xfe,0xec,0x3b,0xc9,0x3b,0x69,0x3b,0x3e,0x38,
13334
+0x38,0x79,0x2b,0x3b,0xd8,0x3c,0xfe,0xec,0xd8,0xfe,0xed,0x0b,
13335
+0x6d,0x28,0x29,0x35,0x33,0x00,0x00,0x00,0x00,0x01,0x00,0x40,
13336
+0x02,0x98,0x02,0xe0,0x05,0x02,0x00,0x2b,0x00,0x00,0x01,0x23,
13337
+0x16,0x17,0x16,0x15,0x14,0x07,0x06,0x07,0x06,0x07,0x06,0x22,
13338
+0x26,0x27,0x26,0x27,0x26,0x35,0x34,0x37,0x36,0x37,0x23,0x35,
13339
+0x21,0x15,0x0e,0x01,0x15,0x14,0x17,0x16,0x32,0x37,0x36,0x35,
13340
+0x34,0x27,0x26,0x27,0x35,0x33,0x02,0xa8,0x9a,0x60,0x39,0x39,
13341
+0x1b,0x1b,0x33,0x2d,0x3b,0x3c,0x86,0x76,0x2e,0x33,0x1b,0x1b,
13342
+0x39,0x39,0x61,0xd2,0x01,0x18,0x4b,0x4d,0x39,0x39,0xba,0x38,
13343
+0x3a,0x27,0x26,0x4b,0xe1,0x04,0xc6,0x23,0x49,0x48,0x58,0x3f,
13344
+0x35,0x38,0x29,0x25,0x14,0x14,0x27,0x26,0x2a,0x37,0x36,0x3e,
13345
+0x58,0x48,0x49,0x23,0x3c,0x5d,0x19,0x74,0x55,0x68,0x3f,0x3e,
13346
+0x3e,0x3f,0x68,0x56,0x39,0x3a,0x19,0x5d,0x00,0x01,0x00,0x04,
13347
+0x02,0x9c,0x02,0xef,0x04,0xff,0x00,0x17,0x00,0x00,0x00,0x32,
13348
+0x36,0x35,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x14,0x06,0x22,
13349
+0x26,0x35,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x14,0x01,0x4a,
13350
+0xad,0x42,0x69,0x01,0x1f,0x69,0x94,0xf2,0x94,0x68,0x01,0x45,
13351
+0x68,0x02,0xe7,0x51,0x6d,0x01,0x1e,0x3c,0x3c,0xfe,0xc2,0x78,
13352
+0x71,0x70,0x79,0x01,0x3e,0x3c,0x3c,0xfe,0xe2,0x6d,0x00,0x00,
13353
+0x00,0x01,0x00,0x2f,0x02,0x98,0x02,0xd1,0x04,0xef,0x00,0x22,
13354
+0x00,0x00,0x01,0x33,0x16,0x17,0x16,0x15,0x14,0x07,0x06,0x07,
13355
+0x06,0x07,0x06,0x23,0x26,0x27,0x26,0x35,0x13,0x23,0x35,0x33,
13356
+0x11,0x14,0x17,0x16,0x17,0x16,0x37,0x36,0x35,0x34,0x27,0x26,
13357
+0x27,0x01,0xb8,0x47,0x61,0x38,0x39,0x1b,0x1b,0x33,0x2d,0x3b,
13358
+0x3c,0x43,0x67,0x43,0x3a,0x01,0x6f,0xe2,0x1b,0x1b,0x3a,0x4f,
13359
+0x46,0x3a,0x27,0x26,0x4b,0x04,0xc6,0x23,0x49,0x48,0x58,0x3f,
13360
+0x35,0x38,0x29,0x25,0x14,0x14,0x04,0x35,0x2e,0x62,0x01,0x52,
13361
+0x3c,0xfe,0x72,0x4a,0x21,0x22,0x01,0x01,0x4a,0x3c,0x6b,0x56,
13362
+0x39,0x3a,0x19,0x00,0x00,0x01,0xff,0xfc,0x02,0x9c,0x02,0xd5,
13363
+0x04,0xef,0x00,0x0e,0x00,0x00,0x01,0x13,0x33,0x15,0x21,0x35,
13364
+0x33,0x0b,0x01,0x33,0x15,0x23,0x35,0x33,0x13,0x01,0x93,0xf6,
13365
+0x4c,0xfe,0xcc,0x6b,0xbc,0xbd,0x65,0xfc,0x4b,0xf7,0x04,0xef,
13366
+0xfd,0xe9,0x3c,0x3c,0x01,0x99,0xfe,0x67,0x3c,0x3c,0x02,0x17,
13367
+0x00,0x01,0x00,0x34,0x02,0x9c,0x02,0x79,0x04,0xef,0x00,0x0d,
13368
+0x00,0x00,0x13,0x35,0x01,0x21,0x15,0x23,0x35,0x21,0x15,0x01,
13369
+0x21,0x35,0x33,0x15,0x34,0x01,0xa3,0xfe,0xb4,0x43,0x02,0x25,
13370
+0xfe,0x5c,0x01,0x6c,0x44,0x02,0x9c,0x30,0x01,0xe7,0x67,0xa3,
13371
+0x30,0xfe,0x18,0x6c,0xa7,0x00,0x00,0x00,0x00,0x01,0x00,0x34,
13372
+0x01,0x9d,0x03,0x92,0x04,0xef,0x00,0x1e,0x00,0x00,0x13,0x35,
13373
+0x01,0x21,0x15,0x23,0x35,0x21,0x15,0x01,0x21,0x15,0x14,0x17,
13374
+0x16,0x33,0x32,0x37,0x36,0x37,0x33,0x15,0x06,0x07,0x06,0x23,
13375
+0x22,0x27,0x26,0x3d,0x01,0x34,0x01,0xa3,0xfe,0xb4,0x43,0x02,
13376
+0x25,0xfe,0x5c,0x01,0xb0,0x1a,0x1c,0x39,0x34,0x1a,0x1b,0x05,
13377
+0x3c,0x28,0x29,0x29,0x2d,0x6b,0x3f,0x3d,0x02,0x9c,0x30,0x01,
13378
+0xe7,0x67,0xa3,0x30,0xfe,0x18,0x75,0x4a,0x21,0x22,0x19,0x19,
13379
+0x36,0x7b,0x12,0x09,0x0a,0x34,0x34,0x5d,0x3a,0x00,0x00,0x00,
13380
+0x00,0x02,0x00,0x34,0x02,0x32,0x02,0x7c,0x04,0xef,0x00,0x05,
13381
+0x00,0x1d,0x00,0x00,0x01,0x36,0x35,0x34,0x23,0x22,0x0f,0x01,
13382
+0x35,0x01,0x21,0x15,0x23,0x35,0x21,0x15,0x01,0x33,0x36,0x33,
13383
+0x32,0x07,0x06,0x05,0x14,0x1d,0x01,0x23,0x37,0x30,0x01,0x68,
13384
+0x8a,0x27,0x5a,0x5b,0xe2,0x01,0xa3,0xfe,0xb4,0x43,0x02,0x25,
13385
+0xfe,0x5c,0x53,0x1c,0x9d,0xaa,0x03,0x03,0xfe,0xf0,0x54,0x01,
13386
+0x02,0xd8,0x08,0x30,0x44,0xb7,0x01,0x30,0x01,0xe7,0x67,0xa3,
13387
+0x30,0xfe,0x18,0xb6,0x81,0x6c,0x04,0x0c,0x0e,0x50,0x51,0x00,
13388
+0x00,0x01,0x00,0x40,0x01,0x9c,0x02,0xb3,0x04,0xef,0x00,0x21,
13389
+0x00,0x00,0x01,0x23,0x35,0x37,0x21,0x15,0x23,0x35,0x21,0x15,
13390
+0x03,0x17,0x1e,0x01,0x15,0x14,0x07,0x06,0x23,0x22,0x27,0x26,
13391
+0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x37,0x36,0x35,0x34,0x26,
13392
+0x01,0x4d,0x3c,0xd0,0xfe,0xb4,0x43,0x02,0x24,0xe8,0x31,0x74,
13393
+0x80,0x59,0x58,0xa6,0x4a,0x46,0x46,0x46,0x47,0x06,0x6e,0x63,
13394
+0x61,0x38,0x37,0x72,0x03,0x89,0x39,0xf1,0x67,0xa3,0x30,0xfe,
13395
+0xf2,0x04,0x11,0x86,0x6c,0x83,0x46,0x45,0x0f,0x10,0x20,0xb5,
13396
+0x5a,0x5d,0x38,0x38,0x60,0x6e,0x72,0x00,0x00,0x03,0x00,0x40,
13397
+0x02,0x90,0x02,0xc7,0x06,0x10,0x00,0x08,0x00,0x11,0x00,0x1f,
13398
+0x00,0x00,0x01,0x26,0x27,0x26,0x23,0x22,0x07,0x06,0x07,0x05,
13399
+0x21,0x16,0x17,0x16,0x33,0x32,0x37,0x36,0x03,0x32,0x17,0x16,
13400
+0x10,0x07,0x06,0x23,0x22,0x27,0x26,0x10,0x37,0x36,0x02,0x3f,
13401
+0x04,0x2b,0x2f,0x5e,0x5c,0x30,0x2a,0x05,0x01,0x77,0xfe,0x89,
13402
+0x05,0x2b,0x2f,0x5c,0x5d,0x30,0x2b,0xb8,0x93,0x59,0x58,0x59,
13403
+0x58,0x93,0x91,0x59,0x59,0x59,0x58,0x04,0x6e,0xb4,0x5b,0x66,
13404
+0x66,0x5b,0xb4,0x3c,0xb3,0x5b,0x66,0x66,0x5b,0x02,0x91,0x7b,
13405
+0x7a,0xfe,0x6a,0x7b,0x7a,0x7a,0x7b,0x01,0x96,0x7a,0x7b,0x00,
13406
+0x00,0x01,0xfc,0xd5,0x04,0xee,0xff,0xe5,0x06,0x66,0x00,0x05,
13407
+0x00,0x00,0x01,0x37,0x33,0x01,0x21,0x35,0xfe,0xa2,0xce,0x75,
13408
+0xfe,0xfe,0xfd,0xf2,0x05,0x82,0xe4,0xfe,0x88,0x94,0x00,0x00,
13409
+0x00,0x01,0xfc,0x1b,0x04,0xee,0xff,0x2b,0x06,0x66,0x00,0x05,
13410
+0x00,0x00,0x01,0x21,0x15,0x21,0x01,0x33,0xfd,0x5e,0x01,0xcd,
13411
+0xfd,0xf2,0xfe,0xfe,0x75,0x05,0x82,0x94,0x01,0x78,0x00,0x00,
13412
+0x00,0x01,0xfc,0xd5,0x04,0xee,0xff,0xe5,0x06,0x66,0x00,0x05,
13413
+0x00,0x00,0x01,0x21,0x35,0x21,0x01,0x23,0xfe,0xa2,0xfe,0x33,
13414
+0x02,0x0e,0x01,0x02,0x75,0x05,0xd2,0x94,0xfe,0x88,0x00,0x00,
13415
+0x00,0x01,0xfc,0x1b,0x04,0xee,0xff,0x2b,0x06,0x66,0x00,0x05,
13416
+0x00,0x00,0x01,0x07,0x23,0x01,0x21,0x15,0xfd,0x5e,0xce,0x75,
13417
+0x01,0x02,0x02,0x0e,0x05,0xd2,0xe4,0x01,0x78,0x94,0x00,0x00,
13418
+0x00,0x01,0xfc,0x32,0x04,0xee,0xff,0xce,0x06,0x66,0x00,0x09,
13419
+0x00,0x00,0x01,0x33,0x13,0x23,0x0b,0x01,0x23,0x03,0x33,0x13,
13420
+0xfe,0x3c,0xa8,0xea,0x74,0xca,0xcc,0xa8,0xea,0x74,0xca,0x06,
13421
+0x66,0xfe,0x88,0x01,0x04,0xfe,0xfc,0x01,0x78,0xfe,0xfc,0x00,
13422
+0x00,0x01,0xfc,0x32,0x04,0xee,0xff,0xce,0x06,0x66,0x00,0x09,
13423
+0x00,0x00,0x01,0x1b,0x01,0x33,0x03,0x23,0x0b,0x01,0x23,0x13,
13424
+0xfd,0xc4,0xcc,0xca,0x74,0xea,0xa8,0xcc,0xca,0x74,0xea,0x06,
13425
+0x66,0xfe,0xfc,0x01,0x04,0xfe,0x88,0x01,0x04,0xfe,0xfc,0x01,
13426
+0x78,0x00,0x00,0x00,0xff,0xff,0xff,0xf4,0xfe,0x12,0x05,0xdb,
13427
+0x05,0xd5,0x12,0x26,0x00,0x24,0x00,0x00,0x10,0x07,0x02,0xd2,
13428
+0x04,0xe3,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x12,0x04,0x8b,
13429
+0x04,0x44,0x12,0x26,0x00,0x44,0x00,0x00,0x10,0x07,0x02,0xd2,
13430
+0x04,0x39,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x64,
13431
+0x07,0x5e,0x10,0x27,0x0d,0x80,0x04,0xe7,0x01,0x75,0x12,0x06,
13432
+0x00,0x25,0x00,0x00,0xff,0xff,0x00,0x3b,0xff,0xe3,0x04,0xb8,
13433
+0x07,0x5d,0x12,0x26,0x00,0x45,0x00,0x00,0x10,0x07,0x02,0xb4,
13434
+0x03,0x48,0x01,0x3c,0xff,0xff,0x00,0x71,0xfe,0x78,0x05,0x64,
13435
+0x05,0xd5,0x12,0x26,0x00,0x25,0x00,0x00,0x10,0x07,0x02,0xd0,
13436
+0x04,0xe7,0x00,0x00,0xff,0xff,0x00,0x3b,0xfe,0x78,0x04,0xb8,
13437
+0x06,0x14,0x10,0x27,0x02,0xd0,0x04,0xd9,0x00,0x00,0x12,0x06,
13438
+0x00,0x45,0x00,0x00,0xff,0xff,0x00,0x71,0xfe,0xd2,0x05,0x64,
13439
+0x05,0xd5,0x12,0x26,0x00,0x25,0x00,0x00,0x10,0x07,0x02,0xde,
13440
+0x04,0xe7,0x00,0x00,0xff,0xff,0x00,0x3b,0xfe,0xd2,0x04,0xb8,
13441
+0x06,0x14,0x10,0x27,0x02,0xde,0x04,0xd9,0x00,0x00,0x12,0x06,
13442
+0x00,0x45,0x00,0x00,0xff,0xff,0x00,0x73,0xfe,0x75,0x05,0xa4,
13443
+0x07,0x6b,0x12,0x26,0x00,0x89,0x00,0x00,0x10,0x07,0x0d,0x79,
13444
+0x05,0x35,0x01,0x75,0xff,0xff,0x00,0x66,0xfe,0x75,0x04,0x1d,
13445
+0x06,0x66,0x12,0x26,0x00,0xa9,0x00,0x00,0x10,0x07,0x02,0xae,
13446
+0x04,0x68,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x05,0xf4,
13447
+0x07,0x5e,0x10,0x27,0x0d,0x80,0x04,0xe7,0x01,0x75,0x12,0x06,
13448
+0x00,0x27,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0xe3,
13449
+0x07,0x5d,0x12,0x26,0x00,0x47,0x00,0x00,0x10,0x07,0x02,0xb4,
13450
+0x05,0xd7,0x01,0x3c,0xff,0xff,0x00,0x71,0xfe,0x78,0x05,0xf4,
13451
+0x05,0xd5,0x10,0x27,0x02,0xd0,0x04,0xe7,0x00,0x00,0x12,0x06,
13452
+0x00,0x27,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x78,0x04,0xe3,
13453
+0x06,0x14,0x10,0x27,0x02,0xd0,0x04,0x39,0x00,0x00,0x12,0x06,
13454
+0x00,0x47,0x00,0x00,0xff,0xff,0x00,0x71,0xfe,0xd2,0x05,0xf4,
13455
+0x05,0xd5,0x12,0x26,0x00,0x27,0x00,0x00,0x10,0x07,0x02,0xde,
13456
+0x04,0xe7,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0xd2,0x04,0xe3,
13457
+0x06,0x14,0x12,0x26,0x00,0x47,0x00,0x00,0x10,0x07,0x02,0xde,
13458
+0x04,0x39,0x00,0x00,0xff,0xff,0x00,0x71,0xfe,0x82,0x05,0xf4,
13459
+0x05,0xd5,0x10,0x26,0x00,0x7a,0x18,0x0d,0x12,0x06,0x00,0x27,
13460
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x75,0x04,0xe3,
13461
+0x06,0x14,0x12,0x26,0x00,0x47,0x00,0x00,0x10,0x07,0x02,0xd4,
13462
+0x05,0xc4,0x00,0x00,0xff,0xff,0x00,0x71,0xfe,0x14,0x05,0xf4,
13463
+0x05,0xd5,0x10,0x27,0x02,0xda,0x04,0xe7,0x00,0x00,0x12,0x06,
13464
+0x00,0x27,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x14,0x04,0xe3,
13465
+0x06,0x14,0x10,0x27,0x02,0xda,0x04,0x39,0x00,0x00,0x12,0x06,
13466
+0x00,0x47,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,
13467
+0x08,0x5a,0x10,0x26,0x0d,0x91,0x2f,0x00,0x12,0x06,0x00,0x28,
13468
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x56,
13469
+0x07,0x5b,0x10,0x27,0x0d,0x91,0xff,0xa1,0xff,0x01,0x12,0x06,
13470
+0x00,0x48,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,
13471
+0x08,0x5a,0x10,0x26,0x0d,0x90,0x2f,0x00,0x12,0x06,0x00,0x28,
13472
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x56,
13473
+0x07,0x5b,0x10,0x27,0x0d,0x90,0xff,0xa1,0xff,0x01,0x12,0x06,
13474
+0x00,0x48,0x00,0x00,0xff,0xff,0x00,0x71,0xfe,0x14,0x05,0x33,
13475
+0x05,0xd5,0x10,0x27,0x02,0xda,0x04,0xec,0x00,0x00,0x12,0x06,
13476
+0x00,0x28,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x14,0x04,0x56,
13477
+0x04,0x44,0x10,0x27,0x02,0xda,0x04,0x5e,0x00,0x00,0x12,0x06,
13478
+0x00,0x48,0x00,0x00,0xff,0xff,0x00,0x71,0xfe,0x4b,0x05,0x33,
13479
+0x05,0xd5,0x10,0x27,0x02,0xdd,0x04,0xec,0x00,0x00,0x12,0x06,
13480
+0x00,0x28,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x4b,0x04,0x56,
13481
+0x04,0x44,0x12,0x26,0x00,0x48,0x00,0x00,0x10,0x07,0x02,0xdd,
13482
+0x04,0x5e,0x00,0x00,0xff,0xff,0x00,0x71,0xfe,0x75,0x05,0x33,
13483
+0x07,0x6d,0x10,0x27,0x0d,0x7f,0x04,0xec,0x01,0x75,0x12,0x06,
13484
+0x01,0xea,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x75,0x04,0x56,
13485
+0x06,0x48,0x10,0x26,0x02,0x96,0x5e,0x00,0x12,0x06,0x01,0xeb,
13486
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x37,
13487
+0x07,0x5e,0x10,0x27,0x0d,0x80,0x04,0xf6,0x01,0x75,0x12,0x06,
13488
+0x00,0x29,0x00,0x00,0xff,0xff,0x00,0x4a,0x00,0x00,0x03,0x71,
13489
+0x07,0x5d,0x12,0x26,0x00,0x49,0x00,0x00,0x10,0x07,0x02,0xb4,
13490
+0x04,0x35,0x01,0x3c,0xff,0xff,0x00,0x73,0xff,0xe3,0x05,0xc3,
13491
+0x07,0x6b,0x12,0x26,0x00,0x2a,0x00,0x00,0x10,0x07,0x02,0xb1,
13492
+0x05,0x58,0x01,0x75,0xff,0xff,0x00,0x66,0xfe,0x39,0x04,0xe3,
13493
+0x05,0xf6,0x12,0x26,0x00,0x4a,0x00,0x00,0x10,0x07,0x02,0xb1,
13494
+0x04,0x5c,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x06,0x89,
13495
+0x07,0x5e,0x10,0x27,0x0d,0x80,0x05,0x7d,0x01,0x75,0x12,0x06,
13496
+0x00,0x2b,0x00,0x00,0xff,0xff,0x00,0x4a,0x00,0x00,0x04,0xee,
13497
+0x07,0x5d,0x12,0x26,0x00,0x4b,0x00,0x00,0x10,0x07,0x02,0xb4,
13498
+0x03,0x48,0x01,0x3c,0xff,0xff,0x00,0x71,0xfe,0x78,0x06,0x89,
13499
+0x05,0xd5,0x10,0x27,0x02,0xd0,0x05,0x7d,0x00,0x00,0x12,0x06,
13500
+0x00,0x2b,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x78,0x04,0xee,
13501
+0x06,0x14,0x10,0x27,0x02,0xd0,0x04,0xa1,0x00,0x00,0x12,0x06,
13502
+0x00,0x4b,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x06,0x89,
13503
+0x07,0x5c,0x10,0x27,0x0d,0x78,0x05,0x7d,0x01,0x75,0x12,0x06,
13504
+0x00,0x2b,0x00,0x00,0xff,0xff,0x00,0x0b,0x00,0x00,0x04,0xee,
13505
+0x07,0x5e,0x12,0x26,0x00,0x4b,0x00,0x00,0x10,0x07,0x02,0xb5,
13506
+0x03,0x48,0x01,0x3c,0xff,0xff,0x00,0x71,0xfe,0x75,0x06,0x89,
13507
+0x05,0xd5,0x12,0x26,0x00,0x2b,0x00,0x00,0x10,0x07,0x02,0xd4,
13508
+0x06,0xfa,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x75,0x04,0xee,
13509
+0x06,0x14,0x12,0x26,0x00,0x4b,0x00,0x00,0x10,0x07,0x02,0xd4,
13510
+0x05,0x27,0x00,0x00,0xff,0xff,0x00,0x71,0xfe,0x43,0x06,0x89,
13511
+0x05,0xd5,0x12,0x26,0x00,0x2b,0x00,0x00,0x10,0x07,0x02,0xdb,
13512
+0x05,0x7d,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x43,0x04,0xee,
13513
+0x06,0x14,0x12,0x26,0x00,0x4b,0x00,0x00,0x10,0x07,0x02,0xdb,
13514
+0x04,0xa1,0x00,0x00,0xff,0xff,0x00,0x46,0xfe,0x4b,0x02,0xda,
13515
+0x05,0xd5,0x12,0x26,0x00,0x2c,0x00,0x00,0x10,0x07,0x02,0xdd,
13516
+0x03,0x96,0x00,0x00,0xff,0xff,0xff,0xf8,0xfe,0x4b,0x02,0x8c,
13517
+0x05,0xe3,0x12,0x26,0x00,0x4c,0x00,0x00,0x10,0x07,0x02,0xdd,
13518
+0x03,0x48,0x00,0x00,0xff,0xff,0x00,0x5d,0x00,0x00,0x02,0xcc,
13519
+0x08,0x5a,0x10,0x27,0x0d,0x8e,0xfe,0xd8,0x00,0x00,0x12,0x06,
13520
+0x00,0x2c,0x00,0x00,0xff,0xff,0x00,0x10,0x00,0x00,0x02,0x7f,
13521
+0x07,0x16,0x10,0x27,0x0d,0x8e,0xfe,0x8b,0xfe,0xbc,0x12,0x06,
13522
+0x00,0xf3,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x06,0x19,
13523
+0x07,0x72,0x12,0x26,0x00,0x2e,0x00,0x00,0x10,0x07,0x0d,0x79,
13524
+0x05,0x4c,0x01,0x7c,0xff,0xff,0x00,0x3b,0x00,0x00,0x04,0xe7,
13525
+0x07,0xb1,0x12,0x26,0x00,0x4e,0x00,0x00,0x10,0x07,0x0d,0x79,
13526
+0x03,0x3f,0x01,0xbb,0xff,0xff,0x00,0x71,0xfe,0x78,0x06,0x19,
13527
+0x05,0xd5,0x12,0x26,0x00,0x2e,0x00,0x00,0x10,0x07,0x02,0xd0,
13528
+0x05,0x49,0x00,0x00,0xff,0xff,0x00,0x3b,0xfe,0x78,0x04,0xe7,
13529
+0x06,0x14,0x12,0x26,0x00,0x4e,0x00,0x00,0x10,0x07,0x02,0xd0,
13530
+0x04,0x92,0x00,0x00,0xff,0xff,0x00,0x71,0xfe,0xd2,0x06,0x19,
13531
+0x05,0xd5,0x12,0x26,0x00,0x2e,0x00,0x00,0x10,0x07,0x02,0xde,
13532
+0x05,0x49,0x00,0x00,0xff,0xff,0x00,0x3b,0xfe,0xd2,0x04,0xe7,
13533
+0x06,0x14,0x12,0x26,0x00,0x4e,0x00,0x00,0x10,0x07,0x02,0xde,
13534
+0x04,0x92,0x00,0x00,0xff,0xff,0x00,0x71,0xfe,0x78,0x05,0x1f,
13535
+0x05,0xd5,0x10,0x27,0x02,0xd0,0x04,0xc8,0x00,0x00,0x10,0x06,
13536
+0x00,0x2f,0x00,0x00,0xff,0xff,0x00,0x3b,0xfe,0x78,0x02,0x52,
13537
+0x06,0x14,0x10,0x27,0x02,0xd0,0x03,0x46,0x00,0x00,0x10,0x06,
13538
+0x00,0x4f,0x00,0x00,0xff,0xff,0x00,0x69,0xfe,0x78,0x05,0x1f,
13539
+0x07,0x32,0x10,0x26,0x05,0xbf,0x00,0x00,0x10,0x07,0x00,0x71,
13540
+0xff,0x94,0x01,0x3c,0xff,0xff,0x00,0x1b,0xfe,0x78,0x02,0x71,
13541
+0x07,0x33,0x10,0x26,0x05,0xc0,0x00,0x00,0x10,0x07,0x00,0x71,
13542
+0xff,0x46,0x01,0x3d,0xff,0xff,0x00,0x71,0xfe,0xd2,0x05,0x1f,
13543
+0x05,0xd5,0x12,0x26,0x00,0x2f,0x00,0x00,0x10,0x07,0x02,0xde,
13544
+0x04,0xf8,0x00,0x00,0xff,0xff,0x00,0x1d,0xfe,0xd2,0x02,0x73,
13545
+0x06,0x14,0x12,0x26,0x00,0x4f,0x00,0x00,0x10,0x07,0x02,0xde,
13546
+0x03,0x48,0x00,0x00,0xff,0xff,0x00,0x71,0xfe,0x14,0x05,0x1f,
13547
+0x05,0xd5,0x10,0x27,0x02,0xda,0x04,0xf8,0x00,0x00,0x12,0x06,
13548
+0x00,0x2f,0x00,0x00,0xff,0xff,0x00,0x09,0xfe,0x14,0x02,0x87,
13549
+0x06,0x14,0x10,0x27,0x02,0xda,0x03,0x48,0x00,0x00,0x12,0x06,
13550
+0x00,0x4f,0x00,0x00,0xff,0xff,0x00,0x66,0x00,0x00,0x07,0xc9,
13551
+0x07,0x6b,0x10,0x27,0x0d,0x79,0x06,0x18,0x01,0x75,0x12,0x06,
13552
+0x00,0x30,0x00,0x00,0xff,0xff,0x00,0x4a,0x00,0x00,0x07,0x5e,
13553
+0x06,0x66,0x10,0x27,0x02,0xae,0x05,0xd9,0x00,0x00,0x12,0x06,
13554
+0x00,0x50,0x00,0x00,0xff,0xff,0x00,0x66,0x00,0x00,0x07,0xc9,
13555
+0x07,0x5e,0x10,0x27,0x0d,0x80,0x06,0x18,0x01,0x75,0x12,0x06,
13556
+0x00,0x30,0x00,0x00,0xff,0xff,0x00,0x4a,0x00,0x00,0x07,0x5e,
13557
+0x06,0x21,0x12,0x26,0x00,0x50,0x00,0x00,0x10,0x07,0x02,0x97,
13558
+0x01,0xf8,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x78,0x07,0xc9,
13559
+0x05,0xd5,0x10,0x27,0x02,0xd0,0x06,0x18,0x00,0x00,0x12,0x06,
13560
+0x00,0x30,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x78,0x07,0x5e,
13561
+0x04,0x44,0x10,0x27,0x02,0xd0,0x05,0xd9,0x00,0x00,0x12,0x06,
13562
+0x00,0x50,0x00,0x00,0xff,0xff,0x00,0x64,0xff,0xe3,0x06,0xa6,
13563
+0x07,0x5e,0x10,0x27,0x0d,0x80,0x05,0x67,0x01,0x75,0x12,0x06,
13564
+0x00,0x31,0x00,0x00,0xff,0xff,0x00,0x4a,0x00,0x00,0x04,0xee,
13565
+0x06,0x21,0x10,0x27,0x02,0x97,0x00,0x9c,0x00,0x00,0x12,0x06,
13566
+0x00,0x51,0x00,0x00,0xff,0xff,0x00,0x64,0xfe,0x78,0x06,0xa6,
13567
+0x05,0xd5,0x10,0x27,0x02,0xd0,0x05,0x67,0x00,0x00,0x12,0x06,
13568
+0x00,0x31,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x78,0x04,0xee,
13569
+0x04,0x44,0x10,0x27,0x02,0xd0,0x04,0xa1,0x00,0x00,0x12,0x06,
13570
+0x00,0x51,0x00,0x00,0xff,0xff,0x00,0x64,0xfe,0xd2,0x06,0xa6,
13571
+0x05,0xd5,0x12,0x26,0x00,0x31,0x00,0x00,0x10,0x07,0x02,0xde,
13572
+0x05,0x67,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0xd2,0x04,0xee,
13573
+0x04,0x44,0x12,0x26,0x00,0x51,0x00,0x00,0x10,0x07,0x02,0xde,
13574
+0x04,0xa1,0x00,0x00,0xff,0xff,0x00,0x64,0xfe,0x14,0x06,0xa6,
13575
+0x05,0xd5,0x10,0x27,0x02,0xda,0x05,0x67,0x00,0x00,0x12,0x06,
13576
+0x00,0x31,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x14,0x04,0xee,
13577
+0x04,0x44,0x10,0x27,0x02,0xda,0x04,0xa1,0x00,0x00,0x12,0x06,
13578
+0x00,0x51,0x00,0x00,0xff,0xff,0x00,0x73,0xff,0xe3,0x06,0x1d,
13579
+0x08,0x5a,0x10,0x27,0x0d,0x96,0x00,0x88,0x00,0x00,0x12,0x06,
13580
+0x00,0x32,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,
13581
+0x07,0x0d,0x10,0x27,0x0d,0x96,0xff,0xa8,0xfe,0xb3,0x12,0x06,
13582
+0x00,0x52,0x00,0x00,0xff,0xff,0x00,0x73,0xff,0xe3,0x06,0x1d,
13583
+0x08,0x64,0x10,0x27,0x0d,0x94,0x00,0x88,0x00,0x00,0x12,0x06,
13584
+0x00,0x32,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,
13585
+0x07,0x20,0x10,0x27,0x0d,0x7a,0x04,0x68,0x00,0x12,0x10,0x27,
13586
+0x00,0x6a,0x00,0x66,0x00,0xff,0x12,0x06,0x00,0x52,0x00,0x00,
13587
+0xff,0xff,0x00,0x73,0xff,0xe3,0x06,0x1d,0x08,0x5a,0x10,0x27,
13588
+0x0d,0x91,0x00,0x8b,0x00,0x00,0x12,0x06,0x00,0x32,0x00,0x00,
13589
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,0x07,0x5b,0x10,0x27,
13590
+0x0d,0x91,0xff,0xab,0xff,0x01,0x12,0x06,0x00,0x52,0x00,0x00,
13591
+0xff,0xff,0x00,0x73,0xff,0xe3,0x06,0x1d,0x08,0x5a,0x10,0x27,
13592
+0x0d,0x90,0x00,0x8b,0x00,0x00,0x12,0x06,0x00,0x32,0x00,0x00,
13593
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,0x07,0x5b,0x10,0x27,
13594
+0x0d,0x90,0xff,0xab,0xff,0x01,0x12,0x06,0x00,0x52,0x00,0x00,
13595
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x19,0x07,0x6b,0x10,0x27,
13596
+0x0d,0x79,0x04,0xe7,0x01,0x75,0x12,0x06,0x00,0x33,0x00,0x00,
13597
+0xff,0xff,0x00,0x3b,0xfe,0x56,0x04,0xb8,0x06,0x66,0x10,0x27,
13598
+0x02,0xae,0x04,0xc5,0x00,0x00,0x12,0x06,0x00,0x53,0x00,0x00,
13599
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x19,0x07,0x5e,0x10,0x27,
13600
+0x0d,0x80,0x04,0xe7,0x01,0x75,0x12,0x06,0x00,0x33,0x00,0x00,
13601
+0xff,0xff,0x00,0x3b,0xfe,0x56,0x04,0xb8,0x06,0x21,0x12,0x26,
13602
+0x00,0x53,0x00,0x00,0x10,0x07,0x02,0x97,0x00,0xb1,0x00,0x00,
13603
+0xff,0xff,0x00,0x71,0x00,0x00,0x06,0x37,0x07,0x5e,0x10,0x27,
13604
+0x0d,0x80,0x04,0xdb,0x01,0x75,0x12,0x06,0x00,0x35,0x00,0x00,
13605
+0xff,0xff,0x00,0x4a,0x00,0x00,0x03,0xd3,0x06,0x21,0x12,0x26,
13606
+0x00,0x55,0x00,0x00,0x10,0x07,0x02,0xb4,0x04,0x28,0x00,0x00,
13607
+0xff,0xff,0x00,0x71,0xfe,0x78,0x06,0x37,0x05,0xd5,0x10,0x27,
13608
+0x02,0xd0,0x04,0xdb,0x00,0x00,0x12,0x06,0x00,0x35,0x00,0x00,
13609
+0xff,0xff,0x00,0x4a,0xfe,0x78,0x03,0xd3,0x04,0x44,0x10,0x27,
13610
+0x02,0xd0,0x03,0x48,0x00,0x00,0x12,0x06,0x00,0x55,0x00,0x00,
13611
+0xff,0xff,0x00,0x71,0xfe,0x78,0x06,0x37,0x07,0x32,0x12,0x26,
13612
+0x05,0xe3,0x00,0x00,0x10,0x07,0x00,0x71,0x00,0xdb,0x01,0x3c,
13613
+0xff,0xff,0x00,0x4a,0xfe,0x78,0x03,0xd3,0x05,0xf6,0x10,0x26,
13614
+0x05,0xe4,0x00,0x00,0x10,0x06,0x00,0x71,0x34,0x00,0x00,0x00,
13615
+0xff,0xff,0x00,0x71,0xfe,0xd2,0x06,0x37,0x05,0xd5,0x10,0x27,
13616
+0x02,0xde,0x04,0xdb,0x00,0x00,0x12,0x06,0x00,0x35,0x00,0x00,
13617
+0xff,0xff,0x00,0x1d,0xfe,0xd2,0x03,0xd3,0x04,0x44,0x12,0x26,
13618
+0x00,0x55,0x00,0x00,0x10,0x07,0x02,0xde,0x03,0x48,0x00,0x00,
13619
+0xff,0xff,0x00,0xac,0xff,0xe3,0x04,0xe5,0x07,0x5e,0x10,0x27,
13620
+0x0d,0x80,0x04,0xbe,0x01,0x75,0x12,0x06,0x00,0x36,0x00,0x00,
13621
+0xff,0xff,0x00,0x73,0xff,0xe3,0x03,0xb2,0x06,0x21,0x12,0x26,
13622
+0x00,0x56,0x00,0x00,0x10,0x06,0x02,0x97,0x08,0x00,0x00,0x00,
13623
+0xff,0xff,0x00,0xac,0xfe,0x78,0x04,0xe5,0x05,0xf0,0x10,0x27,
13624
+0x02,0xd0,0x04,0xbe,0x00,0x00,0x12,0x06,0x00,0x36,0x00,0x00,
13625
+0xff,0xff,0x00,0x73,0xfe,0x78,0x03,0xb2,0x04,0x44,0x10,0x27,
13626
+0x02,0xd0,0x04,0x0e,0x00,0x00,0x12,0x06,0x00,0x56,0x00,0x00,
13627
+0xff,0xff,0x00,0xac,0xff,0xe3,0x04,0xe5,0x07,0x8b,0x10,0x27,
13628
+0x0d,0x9f,0x04,0xf0,0x01,0x06,0x12,0x06,0x00,0x36,0x00,0x00,
13629
+0xff,0xff,0x00,0x73,0xff,0xe3,0x03,0xb2,0x06,0x15,0x10,0x27,
13630
+0x0d,0x9f,0x04,0x4d,0xff,0x90,0x12,0x06,0x00,0x56,0x00,0x00,
13631
+0xff,0xff,0x00,0xac,0xff,0xe3,0x04,0xe5,0x08,0x65,0x10,0x26,
13632
+0x0d,0x95,0x00,0x00,0x12,0x06,0x00,0x36,0x00,0x00,0x00,0x00,
13633
+0xff,0xff,0x00,0x73,0xff,0xe3,0x03,0xb2,0x06,0xf0,0x10,0x27,
13634
+0x0d,0x95,0xff,0x52,0xfe,0x8b,0x10,0x06,0x00,0x56,0x00,0x00,
13635
+0xff,0xff,0x00,0xac,0xfe,0x78,0x04,0xe5,0x07,0x5e,0x10,0x27,
13636
+0x0d,0x80,0x04,0xbe,0x01,0x75,0x12,0x06,0x05,0xeb,0x00,0x00,
13637
+0xff,0xff,0x00,0x73,0xfe,0x78,0x03,0xb2,0x06,0x21,0x10,0x27,
13638
+0x02,0xb4,0x04,0x0e,0x00,0x00,0x10,0x06,0x05,0xec,0x00,0x00,
13639
+0xff,0xff,0x00,0x14,0x00,0x00,0x05,0x42,0x07,0x5e,0x10,0x27,
13640
+0x0d,0x80,0x04,0xa5,0x01,0x75,0x12,0x06,0x00,0x37,0x00,0x00,
13641
+0xff,0xff,0x00,0x3b,0xff,0xe3,0x03,0x27,0x07,0x5d,0x10,0x27,
13642
+0x02,0x97,0xff,0x3a,0x01,0x3c,0x12,0x06,0x00,0x57,0x00,0x00,
13643
+0xff,0xff,0x00,0x14,0xfe,0x78,0x05,0x42,0x05,0xd5,0x10,0x26,
13644
+0x00,0x37,0x00,0x00,0x10,0x07,0x02,0xd0,0x04,0xab,0x00,0x00,
13645
+0xff,0xff,0x00,0x3b,0xfe,0x78,0x03,0x27,0x05,0x71,0x10,0x26,
13646
+0x00,0x57,0x00,0x00,0x10,0x07,0x02,0xd0,0x04,0x00,0x00,0x00,
13647
+0xff,0xff,0x00,0x14,0xfe,0xd2,0x05,0x42,0x05,0xd5,0x12,0x26,
13648
+0x00,0x37,0x00,0x00,0x10,0x07,0x02,0xde,0x04,0xa5,0x00,0x00,
13649
+0xff,0xff,0x00,0x3b,0xfe,0xd2,0x03,0x2d,0x05,0x71,0x12,0x26,
13650
+0x00,0x57,0x00,0x00,0x10,0x07,0x02,0xde,0x04,0x02,0x00,0x00,
13651
+0xff,0xff,0x00,0x14,0xfe,0x14,0x05,0x42,0x05,0xd5,0x10,0x27,
13652
+0x02,0xda,0x04,0xa5,0x00,0x00,0x12,0x06,0x00,0x37,0x00,0x00,
13653
+0xff,0xff,0x00,0x3b,0xfe,0x14,0x03,0x41,0x05,0x71,0x10,0x27,
13654
+0x02,0xda,0x04,0x02,0x00,0x00,0x12,0x06,0x00,0x57,0x00,0x00,
13655
+0xff,0xff,0x00,0x60,0xfe,0x78,0x06,0x62,0x05,0xd5,0x10,0x27,
13656
+0x02,0xd1,0x05,0x87,0x00,0x00,0x12,0x06,0x00,0x38,0x00,0x00,
13657
+0xff,0xff,0x00,0x37,0xfe,0x78,0x04,0xdb,0x04,0x27,0x10,0x27,
13658
+0x02,0xd1,0x04,0x52,0x00,0x00,0x12,0x06,0x00,0x58,0x00,0x00,
13659
+0xff,0xff,0x00,0x60,0xfe,0x4b,0x06,0x62,0x05,0xd5,0x12,0x26,
13660
+0x00,0x38,0x00,0x00,0x10,0x07,0x02,0xdd,0x05,0x87,0x00,0x00,
13661
+0xff,0xff,0x00,0x37,0xfe,0x4b,0x04,0xdb,0x04,0x27,0x12,0x26,
13662
+0x00,0x58,0x00,0x00,0x10,0x07,0x02,0xdd,0x04,0x52,0x00,0x00,
13663
+0xff,0xff,0x00,0x60,0xfe,0x14,0x06,0x62,0x05,0xd5,0x10,0x27,
13664
+0x02,0xda,0x05,0x87,0x00,0x00,0x12,0x06,0x00,0x38,0x00,0x00,
13665
+0xff,0xff,0x00,0x37,0xfe,0x14,0x04,0xdb,0x04,0x27,0x10,0x27,
13666
+0x02,0xda,0x04,0x52,0x00,0x00,0x12,0x06,0x00,0x58,0x00,0x00,
13667
+0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,0x08,0x5a,0x10,0x27,
13668
+0x0d,0x96,0x00,0xc9,0x00,0x00,0x12,0x06,0x00,0x38,0x00,0x00,
13669
+0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,0x07,0x0d,0x10,0x27,
13670
+0x0d,0x96,0xff,0x82,0xfe,0xb3,0x12,0x06,0x00,0x58,0x00,0x00,
13671
+0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,0x08,0x42,0x10,0x27,
13672
+0x0d,0x8c,0x00,0xca,0x00,0x00,0x12,0x06,0x00,0x38,0x00,0x00,
13673
+0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,0x07,0x43,0x10,0x27,
13674
+0x0d,0x8c,0xff,0x8b,0xff,0x01,0x12,0x06,0x00,0x58,0x00,0x00,
13675
+0xff,0xff,0xff,0xec,0x00,0x00,0x05,0xe5,0x07,0x6a,0x12,0x26,
13676
+0x00,0x39,0x00,0x00,0x10,0x07,0x0d,0x7a,0x04,0xde,0x01,0x81,
13677
+0xff,0xff,0xff,0xfa,0x00,0x00,0x04,0x7f,0x06,0x37,0x12,0x26,
13678
+0x00,0x59,0x00,0x00,0x10,0x07,0x02,0xb0,0x04,0x42,0x00,0x00,
13679
+0xff,0xff,0xff,0xec,0xfe,0x78,0x05,0xe5,0x05,0xd5,0x10,0x27,
13680
+0x02,0xd0,0x04,0xf2,0x00,0x00,0x10,0x06,0x00,0x39,0x00,0x00,
13681
+0xff,0xff,0xff,0xfa,0xfe,0x78,0x04,0x7f,0x04,0x27,0x10,0x27,
13682
+0x02,0xd0,0x04,0x44,0x00,0x00,0x10,0x06,0x00,0x59,0x00,0x00,
13683
+0xff,0xff,0x00,0x0a,0x00,0x00,0x08,0x33,0x07,0x6b,0x10,0x27,
13684
+0x0d,0x7b,0x06,0x1e,0x01,0x75,0x12,0x06,0x00,0x3a,0x00,0x00,
13685
+0xff,0xff,0x00,0x21,0x00,0x00,0x06,0xbe,0x06,0x64,0x10,0x27,
13686
+0x02,0xad,0x05,0x6f,0x00,0x00,0x12,0x06,0x00,0x5a,0x00,0x00,
13687
+0xff,0xff,0x00,0x0a,0x00,0x00,0x08,0x33,0x07,0x6b,0x10,0x27,
13688
+0x0d,0x79,0x06,0x1e,0x01,0x75,0x12,0x06,0x00,0x3a,0x00,0x00,
13689
+0xff,0xff,0x00,0x21,0x00,0x00,0x06,0xbe,0x06,0x66,0x10,0x27,
13690
+0x02,0xae,0x05,0x6f,0x00,0x00,0x12,0x06,0x00,0x5a,0x00,0x00,
13691
+0xff,0xff,0x00,0x0a,0x00,0x00,0x08,0x33,0x07,0x5c,0x10,0x27,
13692
+0x0d,0x78,0x06,0x1e,0x01,0x75,0x12,0x06,0x00,0x3a,0x00,0x00,
13693
+0xff,0xff,0x00,0x21,0x00,0x00,0x06,0xbe,0x06,0x21,0x10,0x27,
13694
+0x00,0x6a,0x01,0x70,0x00,0x00,0x12,0x06,0x00,0x5a,0x00,0x00,
13695
+0xff,0xff,0x00,0x0a,0x00,0x00,0x08,0x33,0x07,0x5e,0x10,0x27,
13696
+0x0d,0x80,0x06,0x1e,0x01,0x75,0x12,0x06,0x00,0x3a,0x00,0x00,
13697
+0xff,0xff,0x00,0x21,0x00,0x00,0x06,0xbe,0x06,0x21,0x12,0x26,
13698
+0x00,0x5a,0x00,0x00,0x10,0x07,0x02,0xb4,0x05,0x6f,0x00,0x00,
13699
+0xff,0xff,0x00,0x0a,0xfe,0x78,0x08,0x33,0x05,0xd5,0x12,0x26,
13700
+0x00,0x3a,0x00,0x00,0x10,0x07,0x02,0xd0,0x06,0x1e,0x00,0x00,
13701
+0xff,0xff,0x00,0x21,0xfe,0x78,0x06,0xbe,0x04,0x27,0x12,0x26,
13702
+0x00,0x5a,0x00,0x00,0x10,0x07,0x02,0xd0,0x05,0x6f,0x00,0x00,
13703
+0xff,0xff,0x00,0x0c,0x00,0x00,0x05,0xa8,0x07,0x5e,0x10,0x27,
13704
+0x0d,0x80,0x04,0xd9,0x01,0x75,0x12,0x06,0x00,0x3b,0x00,0x00,
13705
+0xff,0xff,0x00,0x19,0x00,0x00,0x04,0x6a,0x06,0x21,0x12,0x26,
13706
+0x00,0x5b,0x00,0x00,0x10,0x07,0x02,0xb4,0x04,0x42,0x00,0x00,
13707
+0xff,0xff,0x00,0x0c,0x00,0x00,0x05,0xa8,0x07,0x5c,0x10,0x27,
13708
+0x0d,0x78,0x04,0xd9,0x01,0x75,0x12,0x06,0x00,0x3b,0x00,0x00,
13709
+0xff,0xff,0x00,0x19,0x00,0x00,0x04,0x6a,0x06,0x21,0x12,0x26,
13710
+0x00,0x5b,0x00,0x00,0x10,0x07,0x02,0xb5,0x04,0x42,0x00,0x00,
13711
+0xff,0xff,0xff,0xe9,0x00,0x00,0x05,0x5a,0x07,0x5e,0x10,0x27,
13712
+0x0d,0x80,0x04,0xa1,0x01,0x75,0x12,0x06,0x00,0x3c,0x00,0x00,
13713
+0xff,0xff,0xff,0xfa,0xfe,0x39,0x04,0x7f,0x06,0x21,0x12,0x26,
13714
+0x00,0x5c,0x00,0x00,0x10,0x07,0x02,0xb4,0x04,0x3c,0x00,0x00,
13715
+0xff,0xff,0x00,0x5c,0x00,0x00,0x05,0x3f,0x07,0x6b,0x10,0x27,
13716
+0x0d,0x7c,0x04,0xc9,0x01,0x75,0x12,0x06,0x00,0x3d,0x00,0x00,
13717
+0xff,0xff,0x00,0x52,0x00,0x00,0x03,0xec,0x06,0x66,0x12,0x26,
13718
+0x00,0x5d,0x00,0x00,0x10,0x07,0x02,0xaf,0x04,0x11,0x00,0x00,
13719
+0xff,0xff,0x00,0x5c,0xfe,0x78,0x05,0x3f,0x05,0xd5,0x12,0x26,
13720
+0x00,0x3d,0x00,0x00,0x10,0x07,0x02,0xd0,0x04,0xc9,0x00,0x00,
13721
+0xff,0xff,0x00,0x52,0xfe,0x78,0x03,0xec,0x04,0x27,0x12,0x26,
13722
+0x00,0x5d,0x00,0x00,0x10,0x07,0x02,0xd0,0x04,0x11,0x00,0x00,
13723
+0xff,0xff,0x00,0x5c,0xfe,0xd2,0x05,0x3f,0x05,0xd5,0x12,0x26,
13724
+0x00,0x3d,0x00,0x00,0x10,0x07,0x02,0xde,0x04,0xc9,0x00,0x00,
13725
+0xff,0xff,0x00,0x52,0xfe,0xd2,0x03,0xec,0x04,0x27,0x12,0x26,
13726
+0x00,0x5d,0x00,0x00,0x10,0x07,0x02,0xde,0x04,0x11,0x00,0x00,
13727
+0xff,0xff,0x00,0x4a,0xfe,0xd2,0x04,0xee,0x06,0x14,0x12,0x26,
13728
+0x00,0x4b,0x00,0x00,0x10,0x07,0x02,0xde,0x04,0xa1,0x00,0x00,
13729
+0xff,0xff,0xff,0xfc,0xff,0xe3,0x03,0x27,0x07,0x5e,0x12,0x26,
13730
+0x00,0x57,0x00,0x00,0x10,0x07,0x02,0xb5,0x03,0x39,0x01,0x3c,
13731
+0xff,0xff,0x00,0x21,0x00,0x00,0x06,0xbe,0x07,0x06,0x12,0x26,
13732
+0x00,0x5a,0x00,0x00,0x10,0x07,0x02,0xb7,0x05,0x6f,0x00,0x00,
13733
+0xff,0xff,0xff,0xfa,0xfe,0x39,0x04,0x7f,0x07,0x06,0x12,0x26,
13734
+0x00,0x5c,0x00,0x00,0x10,0x07,0x02,0xb7,0x04,0x3c,0x00,0x00,
13735
+0xff,0xff,0x00,0x66,0xff,0xe3,0x06,0x4c,0x06,0x14,0x10,0x26,
13736
+0x00,0x44,0x00,0x00,0x10,0x07,0x02,0x80,0x04,0xc5,0x00,0x00,
13737
+0xff,0xff,0x00,0x4a,0x00,0x00,0x03,0x71,0x07,0x5d,0x10,0x27,
13738
+0x02,0xb4,0x04,0x35,0x01,0x3c,0x12,0x06,0x01,0x41,0x00,0x00,
13739
+0x00,0x01,0x00,0x33,0x00,0x00,0x03,0x71,0x06,0x14,0x00,0x21,
13740
+0x00,0x00,0x25,0x33,0x15,0x21,0x35,0x33,0x11,0x07,0x27,0x37,
13741
+0x35,0x23,0x35,0x33,0x35,0x34,0x36,0x33,0x32,0x16,0x17,0x15,
13742
+0x23,0x2e,0x01,0x23,0x22,0x07,0x06,0x15,0x11,0x37,0x17,0x07,
13743
+0x01,0xb2,0xec,0xfd,0xac,0xb0,0x8a,0x3d,0xc7,0xb0,0xb0,0xb9,
13744
+0xb3,0x43,0x86,0x42,0x61,0x01,0x53,0x4f,0x67,0x2a,0x2a,0x93,
13745
+0x3c,0xcf,0x6a,0x6a,0x6a,0x02,0x3e,0x60,0x56,0x8a,0x94,0x6b,
13746
+0x85,0xb2,0xb6,0x18,0x19,0xca,0x4b,0x4e,0x38,0x3a,0x90,0xfe,
13747
+0xf8,0x66,0x56,0x90,0x00,0x01,0x00,0x4a,0x00,0x00,0x03,0x71,
13748
+0x06,0x14,0x00,0x20,0x00,0x00,0x25,0x33,0x15,0x21,0x35,0x33,
13749
+0x11,0x23,0x35,0x33,0x35,0x23,0x35,0x33,0x36,0x37,0x36,0x33,
13750
+0x32,0x16,0x17,0x15,0x23,0x2e,0x01,0x23,0x22,0x07,0x06,0x07,
13751
+0x21,0x15,0x21,0x01,0xb2,0xec,0xfd,0xac,0xb0,0xb0,0xb0,0xb0,
13752
+0xb5,0x11,0x46,0x5c,0xb4,0x43,0x86,0x42,0x61,0x01,0x53,0x4f,
13753
+0x67,0x2a,0x1e,0x08,0x01,0x25,0xfe,0xd7,0x6a,0x6a,0x6a,0x03,
13754
+0x52,0x6b,0x6b,0x6b,0x77,0x45,0x5b,0x18,0x19,0xca,0x4b,0x4e,
13755
+0x38,0x29,0x54,0x6b,0x00,0x01,0x00,0x60,0xff,0xe3,0x06,0x0c,
13756
+0x05,0xf2,0x00,0x37,0x00,0x00,0x01,0x10,0x21,0x23,0x35,0x01,
13757
+0x21,0x22,0x0e,0x03,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,
13758
+0x34,0x3e,0x02,0x33,0x21,0x15,0x01,0x1e,0x06,0x15,0x14,0x0e,
13759
+0x02,0x23,0x22,0x26,0x27,0x11,0x33,0x1e,0x06,0x33,0x32,0x36,
13760
+0x05,0x39,0xfe,0x54,0x5f,0x01,0x8c,0xfe,0xcf,0x62,0x91,0x5e,
13761
+0x39,0x16,0xbf,0xfd,0xb8,0xbf,0x3b,0x89,0xde,0xa3,0x02,0x35,
13762
+0xfe,0x6b,0x30,0x59,0x6b,0x5a,0x58,0x3d,0x25,0x48,0x7d,0x9e,
13763
+0x5d,0x59,0xbe,0x53,0x76,0x03,0x16,0x1d,0x2e,0x25,0x36,0x1c,
13764
+0x17,0x67,0x88,0x01,0x94,0x01,0x65,0x66,0x02,0x18,0x2e,0x54,
13765
+0x84,0x9b,0x67,0xfc,0xfc,0x6b,0x6b,0x03,0x18,0xa5,0xe4,0x9d,
13766
+0x49,0x7d,0xfd,0xdf,0x02,0x0b,0x1c,0x2a,0x46,0x58,0x80,0x4d,
13767
+0x71,0xab,0x65,0x32,0x3f,0x32,0x01,0x14,0x39,0x5b,0x3a,0x29,
13768
+0x14,0x0b,0x01,0xb3,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,
13769
+0x06,0x1f,0x10,0x06,0x03,0x2c,0x00,0x00,0xff,0xff,0xff,0xf4,
13770
+0xfe,0x78,0x05,0xdb,0x05,0xd5,0x12,0x26,0x00,0x24,0x00,0x00,
13771
+0x10,0x07,0x02,0xd0,0x04,0xe3,0x00,0x00,0xff,0xff,0x00,0x66,
13772
+0xfe,0x78,0x04,0x8b,0x04,0x44,0x12,0x26,0x00,0x44,0x00,0x00,
13773
+0x10,0x07,0x02,0xd0,0x04,0x39,0x00,0x00,0xff,0xff,0xff,0xf4,
13774
+0x00,0x00,0x05,0xdb,0x08,0x45,0x12,0x26,0x00,0x24,0x00,0x00,
13775
+0x10,0x07,0x02,0xb6,0x04,0xe3,0x01,0x75,0xff,0xff,0x00,0x66,
13776
+0xff,0xe3,0x04,0x8b,0x06,0xd0,0x12,0x26,0x00,0x44,0x00,0x00,
13777
+0x10,0x07,0x02,0xb6,0x04,0x39,0x00,0x00,0xff,0xff,0xff,0xf4,
13778
+0x00,0x00,0x05,0xdb,0x08,0x3a,0x10,0x26,0x0d,0x97,0x00,0x00,
13779
+0x12,0x06,0x00,0x24,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,
13780
+0xff,0xe3,0x04,0xc3,0x06,0xc5,0x10,0x26,0x00,0x44,0x00,0x00,
13781
+0x10,0x07,0x0d,0x97,0xff,0x97,0xfe,0x8b,0xff,0xff,0xff,0xf4,
13782
+0x00,0x00,0x05,0xdb,0x08,0x3a,0x10,0x26,0x0d,0x98,0x00,0x00,
13783
+0x12,0x06,0x00,0x24,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,
13784
+0xff,0xe3,0x04,0x8b,0x06,0xc6,0x10,0x27,0x0d,0x98,0xff,0x94,
13785
+0xfe,0x8c,0x10,0x06,0x00,0x44,0x00,0x00,0xff,0xff,0xff,0xf4,
13786
+0x00,0x00,0x05,0xdb,0x08,0xb0,0x10,0x26,0x0d,0x9e,0x00,0x00,
13787
+0x12,0x06,0x00,0x24,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,
13788
+0xff,0xe3,0x04,0x8b,0x07,0x3b,0x10,0x26,0x00,0x44,0x00,0x00,
13789
+0x10,0x07,0x0d,0x9e,0xff,0x96,0xfe,0x8b,0xff,0xff,0xff,0xf4,
13790
+0x00,0x00,0x05,0xdb,0x08,0x75,0x10,0x26,0x0d,0x99,0x00,0x00,
13791
+0x12,0x06,0x00,0x24,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,
13792
+0xff,0xe3,0x04,0x8b,0x07,0x00,0x10,0x26,0x00,0x44,0x00,0x00,
13793
+0x10,0x07,0x0d,0x99,0xff,0x96,0xfe,0x8b,0xff,0xff,0xff,0xf4,
13794
+0xfe,0x78,0x05,0xdb,0x07,0xdb,0x12,0x26,0x00,0x24,0x00,0x00,
13795
+0x10,0x27,0x02,0xd0,0x04,0xe3,0x00,0x00,0x10,0x07,0x02,0xaf,
13796
+0x04,0xe3,0x01,0x75,0xff,0xff,0x00,0x66,0xfe,0x78,0x04,0x8b,
13797
+0x06,0x66,0x12,0x26,0x00,0x44,0x00,0x00,0x10,0x27,0x02,0xd0,
13798
+0x04,0x39,0x00,0x00,0x10,0x07,0x02,0xaf,0x04,0x39,0x00,0x00,
13799
+0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,0x08,0x5a,0x10,0x26,
13800
+0x0d,0x9b,0x2f,0x00,0x12,0x06,0x00,0x24,0x00,0x00,0x00,0x00,
13801
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x8b,0x07,0x04,0x10,0x27,
13802
+0x0d,0x9b,0xff,0x96,0xfe,0xaa,0x10,0x06,0x00,0x44,0x00,0x00,
13803
+0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,0x08,0x5a,0x10,0x26,
13804
+0x0d,0x9c,0x28,0x00,0x12,0x06,0x00,0x24,0x00,0x00,0x00,0x00,
13805
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x8b,0x07,0x04,0x10,0x27,
13806
+0x0d,0x9c,0xff,0x96,0xfe,0xaa,0x12,0x06,0x00,0x44,0x00,0x00,
13807
+0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,0x08,0xe0,0x10,0x26,
13808
+0x0d,0x9d,0x28,0x00,0x12,0x06,0x00,0x24,0x00,0x00,0x00,0x00,
13809
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x8b,0x07,0x8a,0x10,0x27,
13810
+0x0d,0x9d,0xff,0x96,0xfe,0xaa,0x12,0x06,0x00,0x44,0x00,0x00,
13811
+0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,0x08,0x59,0x10,0x26,
13812
+0x0d,0x9a,0x28,0x00,0x12,0x06,0x00,0x24,0x00,0x00,0x00,0x00,
13813
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x8b,0x07,0x03,0x10,0x27,
13814
+0x0d,0x9a,0xff,0x96,0xfe,0xaa,0x12,0x06,0x00,0x44,0x00,0x00,
13815
+0xff,0xff,0xff,0xf4,0xfe,0x78,0x05,0xdb,0x07,0xbd,0x12,0x26,
13816
+0x00,0x24,0x00,0x00,0x10,0x27,0x02,0xd0,0x04,0xe3,0x00,0x00,
13817
+0x10,0x07,0x02,0xb3,0x04,0xe3,0x01,0x75,0xff,0xff,0x00,0x66,
13818
+0xfe,0x78,0x04,0x8b,0x06,0x48,0x12,0x26,0x00,0x44,0x00,0x00,
13819
+0x10,0x27,0x02,0xd0,0x04,0x39,0x00,0x00,0x10,0x07,0x02,0xb3,
13820
+0x04,0x39,0x00,0x00,0xff,0xff,0x00,0x71,0xfe,0x78,0x05,0x33,
13821
+0x05,0xd5,0x10,0x26,0x00,0x28,0x00,0x00,0x10,0x07,0x02,0xd0,
13822
+0x04,0xec,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x78,0x04,0x56,
13823
+0x04,0x44,0x10,0x26,0x00,0x48,0x00,0x00,0x10,0x07,0x02,0xd0,
13824
+0x04,0x5e,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,
13825
+0x08,0x45,0x12,0x26,0x00,0x28,0x00,0x00,0x10,0x07,0x02,0xb6,
13826
+0x04,0xec,0x01,0x75,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x56,
13827
+0x06,0xd0,0x12,0x26,0x00,0x48,0x00,0x00,0x10,0x07,0x02,0xb6,
13828
+0x04,0x5e,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,
13829
+0x07,0x6a,0x12,0x26,0x00,0x28,0x00,0x00,0x10,0x07,0x0d,0x7a,
13830
+0x04,0xe5,0x01,0x81,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x56,
13831
+0x06,0x37,0x12,0x26,0x00,0x48,0x00,0x00,0x10,0x07,0x02,0xb0,
13832
+0x04,0x5e,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x5c,
13833
+0x08,0x3a,0x10,0x26,0x0d,0x97,0x30,0x00,0x12,0x06,0x00,0x28,
13834
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0xfc,
13835
+0x06,0xc5,0x10,0x26,0x00,0x48,0x00,0x00,0x10,0x07,0x0d,0x97,
13836
+0xff,0xd0,0xfe,0x8b,0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,
13837
+0x08,0x3a,0x10,0x26,0x0d,0x98,0x30,0x00,0x12,0x06,0x00,0x28,
13838
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x56,
13839
+0x06,0xc6,0x10,0x26,0x00,0x48,0x00,0x00,0x10,0x07,0x0d,0x98,
13840
+0xff,0xd0,0xfe,0x8c,0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,
13841
+0x08,0xb0,0x10,0x26,0x0d,0x9e,0x30,0x00,0x12,0x06,0x00,0x28,
13842
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0xc0,
13843
+0x07,0x3c,0x10,0x27,0x0d,0x9e,0xff,0xd0,0xfe,0x8c,0x10,0x06,
13844
+0x00,0x48,0x00,0x00,0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x33,
13845
+0x08,0x75,0x10,0x26,0x0d,0x99,0x30,0x00,0x12,0x06,0x00,0x28,
13846
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x56,
13847
+0x07,0x00,0x10,0x26,0x00,0x48,0x00,0x00,0x10,0x07,0x0d,0x99,
13848
+0xff,0xd1,0xfe,0x8b,0xff,0xff,0x00,0x71,0xfe,0x78,0x05,0x33,
13849
+0x07,0x6b,0x12,0x26,0x00,0x28,0x00,0x00,0x10,0x27,0x02,0xd0,
13850
+0x04,0xec,0x00,0x00,0x10,0x07,0x0d,0x7c,0x04,0xec,0x01,0x75,
13851
+0xff,0xff,0x00,0x66,0xfe,0x78,0x04,0x56,0x06,0x66,0x12,0x26,
13852
+0x00,0x48,0x00,0x00,0x10,0x27,0x02,0xd0,0x04,0x5e,0x00,0x00,
13853
+0x10,0x07,0x02,0xaf,0x04,0x5e,0x00,0x00,0xff,0xff,0x00,0x71,
13854
+0x00,0x00,0x02,0xb8,0x08,0x45,0x12,0x26,0x00,0x2c,0x00,0x00,
13855
+0x10,0x07,0x02,0xb6,0x03,0x96,0x01,0x75,0xff,0xff,0x00,0x4a,
13856
+0x00,0x00,0x02,0x60,0x06,0xd0,0x10,0x26,0x00,0xf3,0x00,0x00,
13857
+0x10,0x07,0x02,0xb6,0x03,0x3d,0x00,0x00,0xff,0xff,0x00,0x71,
13858
+0xfe,0x78,0x02,0xb8,0x05,0xd5,0x10,0x27,0x02,0xd0,0x03,0x94,
13859
+0x00,0x00,0x10,0x06,0x00,0x2c,0x00,0x00,0xff,0xff,0x00,0x4a,
13860
+0xfe,0x78,0x02,0x60,0x05,0xe3,0x10,0x27,0x02,0xd0,0x03,0x56,
13861
+0x00,0x00,0x10,0x06,0x00,0x4c,0x00,0x00,0xff,0xff,0x00,0x73,
13862
+0xfe,0x78,0x06,0x1d,0x05,0xf0,0x10,0x27,0x02,0xd0,0x05,0x48,
13863
+0x00,0x00,0x10,0x06,0x00,0x32,0x00,0x00,0xff,0xff,0x00,0x66,
13864
+0xfe,0x78,0x04,0x6a,0x04,0x44,0x10,0x27,0x02,0xd0,0x04,0x68,
13865
+0x00,0x00,0x10,0x06,0x00,0x52,0x00,0x00,0xff,0xff,0x00,0x73,
13866
+0xff,0xe3,0x06,0x1d,0x08,0x45,0x12,0x26,0x00,0x32,0x00,0x00,
13867
+0x10,0x07,0x02,0xb6,0x05,0x48,0x01,0x75,0xff,0xff,0x00,0x66,
13868
+0xff,0xe3,0x04,0x6a,0x06,0xd0,0x12,0x26,0x00,0x52,0x00,0x00,
13869
+0x10,0x07,0x02,0xb6,0x04,0x68,0x00,0x00,0xff,0xff,0x00,0x73,
13870
+0xff,0xe3,0x06,0x1d,0x08,0x3a,0x10,0x27,0x0d,0x97,0x00,0x8c,
13871
+0x00,0x00,0x12,0x06,0x00,0x32,0x00,0x00,0xff,0xff,0x00,0x66,
13872
+0xff,0xe3,0x04,0xe2,0x06,0xc5,0x10,0x26,0x00,0x52,0x00,0x00,
13873
+0x10,0x07,0x0d,0x97,0xff,0xb6,0xfe,0x8b,0xff,0xff,0x00,0x73,
13874
+0xff,0xe3,0x06,0x1d,0x08,0x3a,0x10,0x27,0x0d,0x98,0x00,0x8c,
13875
+0x00,0x00,0x12,0x06,0x00,0x32,0x00,0x00,0xff,0xff,0x00,0x66,
13876
+0xff,0xe3,0x04,0x6a,0x06,0xc5,0x10,0x26,0x00,0x52,0x00,0x00,
13877
+0x10,0x07,0x0d,0x98,0xff,0xb5,0xfe,0x8b,0xff,0xff,0x00,0x73,
13878
+0xff,0xe3,0x06,0x1d,0x08,0xb0,0x10,0x27,0x0d,0x9e,0x00,0x8c,
13879
+0x00,0x00,0x12,0x06,0x00,0x32,0x00,0x00,0xff,0xff,0x00,0x66,
13880
+0xff,0xe3,0x04,0xa6,0x07,0x3b,0x10,0x26,0x00,0x52,0x00,0x00,
13881
+0x10,0x07,0x0d,0x9e,0xff,0xb6,0xfe,0x8b,0xff,0xff,0x00,0x73,
13882
+0xff,0xe3,0x06,0x1d,0x08,0x75,0x10,0x27,0x0d,0x99,0x00,0x8c,
13883
+0x00,0x00,0x12,0x06,0x00,0x32,0x00,0x00,0xff,0xff,0x00,0x66,
13884
+0xff,0xe3,0x04,0x6a,0x07,0x00,0x10,0x26,0x00,0x52,0x00,0x00,
13885
+0x10,0x07,0x0d,0x99,0xff,0xb6,0xfe,0x8b,0xff,0xff,0x00,0x73,
13886
+0xfe,0x78,0x06,0x1d,0x07,0x6b,0x12,0x26,0x00,0x32,0x00,0x00,
13887
+0x10,0x27,0x02,0xd0,0x05,0x48,0x00,0x00,0x10,0x07,0x0d,0x7c,
13888
+0x05,0x48,0x01,0x75,0xff,0xff,0x00,0x66,0xfe,0x78,0x04,0x6a,
13889
+0x06,0x66,0x12,0x26,0x00,0x52,0x00,0x00,0x10,0x27,0x02,0xd0,
13890
+0x04,0x68,0x00,0x00,0x10,0x07,0x02,0xaf,0x04,0x68,0x00,0x00,
13891
+0xff,0xff,0x00,0x6e,0xff,0xe3,0x06,0x50,0x07,0x6b,0x10,0x27,
13892
+0x0d,0x79,0x05,0x48,0x01,0x75,0x12,0x06,0x01,0x62,0x00,0x00,
13893
+0xff,0xff,0x00,0x63,0xff,0xe3,0x05,0x2b,0x06,0x66,0x10,0x26,
13894
+0x00,0x76,0x68,0x00,0x12,0x06,0x01,0x63,0x00,0x00,0x00,0x00,
13895
+0xff,0xff,0x00,0x6e,0xff,0xe3,0x06,0x50,0x07,0x6b,0x10,0x27,
13896
+0x0d,0x7b,0x05,0x48,0x01,0x75,0x12,0x06,0x01,0x62,0x00,0x00,
13897
+0xff,0xff,0x00,0x63,0xff,0xe3,0x05,0x2b,0x06,0x64,0x10,0x26,
13898
+0x00,0x43,0x68,0x00,0x12,0x06,0x01,0x63,0x00,0x00,0x00,0x00,
13899
+0xff,0xff,0x00,0x6e,0xff,0xe3,0x06,0x50,0x08,0x45,0x10,0x27,
13900
+0x02,0xb6,0x05,0x27,0x01,0x75,0x12,0x06,0x01,0x62,0x00,0x00,
13901
+0xff,0xff,0x00,0x63,0xff,0xe3,0x05,0x2b,0x06,0xd0,0x10,0x27,
13902
+0x02,0xb6,0x04,0x7d,0x00,0x00,0x12,0x06,0x01,0x63,0x00,0x00,
13903
+0xff,0xff,0x00,0x6e,0xff,0xe3,0x06,0x50,0x07,0x5e,0x10,0x27,
13904
+0x0d,0x7a,0x05,0x48,0x01,0x75,0x12,0x06,0x01,0x62,0x00,0x00,
13905
+0xff,0xff,0x00,0x63,0xff,0xe3,0x05,0x2b,0x06,0x37,0x10,0x26,
13906
+0x02,0x9a,0x68,0x00,0x12,0x06,0x01,0x63,0x00,0x00,0x00,0x00,
13907
+0xff,0xff,0x00,0x6e,0xfe,0x78,0x06,0x50,0x06,0x15,0x10,0x27,
13908
+0x02,0xd0,0x05,0x48,0x00,0x00,0x12,0x06,0x01,0x62,0x00,0x00,
13909
+0xff,0xff,0x00,0x63,0xfe,0x78,0x05,0x2b,0x04,0x44,0x10,0x27,
13910
+0x02,0xd0,0x04,0x68,0x00,0x00,0x12,0x06,0x01,0x63,0x00,0x00,
13911
+0xff,0xff,0x00,0x60,0xfe,0x78,0x06,0x62,0x05,0xd5,0x10,0x27,
13912
+0x02,0xd0,0x05,0x87,0x00,0x00,0x10,0x06,0x00,0x38,0x00,0x00,
13913
+0xff,0xff,0x00,0x37,0xfe,0x78,0x04,0xdb,0x04,0x27,0x10,0x26,
13914
+0x00,0x58,0x00,0x00,0x10,0x07,0x02,0xd0,0x04,0x86,0x00,0x00,
13915
+0xff,0xff,0x00,0x60,0xff,0xe3,0x06,0x62,0x08,0x45,0x12,0x26,
13916
+0x00,0x38,0x00,0x00,0x10,0x07,0x02,0xb6,0x05,0x87,0x01,0x75,
13917
+0xff,0xff,0x00,0x37,0xff,0xe3,0x04,0xdb,0x06,0xd0,0x12,0x26,
13918
+0x00,0x58,0x00,0x00,0x10,0x07,0x02,0xb6,0x04,0x48,0x00,0x00,
13919
+0xff,0xff,0x00,0x5a,0xff,0xe3,0x07,0xe6,0x07,0x6b,0x10,0x27,
13920
+0x0d,0x79,0x05,0x87,0x01,0x75,0x12,0x06,0x01,0x71,0x00,0x00,
13921
+0xff,0xff,0x00,0x2c,0xff,0xe3,0x05,0x81,0x06,0x66,0x10,0x26,
13922
+0x00,0x76,0x48,0x00,0x12,0x06,0x01,0x72,0x00,0x00,0x00,0x00,
13923
+0xff,0xff,0x00,0x5a,0xff,0xe3,0x07,0xe6,0x07,0x6b,0x10,0x27,
13924
+0x0d,0x7b,0x05,0x87,0x01,0x75,0x12,0x06,0x01,0x71,0x00,0x00,
13925
+0xff,0xff,0x00,0x2c,0xff,0xe3,0x05,0x81,0x06,0x64,0x10,0x26,
13926
+0x00,0x43,0x48,0x00,0x12,0x06,0x01,0x72,0x00,0x00,0x00,0x00,
13927
+0xff,0xff,0x00,0x5a,0xff,0xe3,0x07,0xe6,0x08,0x45,0x10,0x27,
13928
+0x02,0xb6,0x05,0x87,0x01,0x75,0x12,0x06,0x01,0x71,0x00,0x00,
13929
+0xff,0xff,0x00,0x2c,0xff,0xe3,0x05,0x81,0x06,0xd0,0x10,0x27,
13930
+0x02,0xb6,0x04,0x48,0x00,0x00,0x12,0x06,0x01,0x72,0x00,0x00,
13931
+0xff,0xff,0x00,0x5a,0xff,0xe3,0x07,0xe6,0x07,0x5e,0x10,0x27,
13932
+0x0d,0x7a,0x05,0x87,0x01,0x75,0x12,0x06,0x01,0x71,0x00,0x00,
13933
+0xff,0xff,0x00,0x2c,0xff,0xe3,0x05,0x81,0x06,0x37,0x10,0x26,
13934
+0x02,0x9a,0x48,0x00,0x12,0x06,0x01,0x72,0x00,0x00,0x00,0x00,
13935
+0xff,0xff,0x00,0x5a,0xfe,0x78,0x07,0xe6,0x06,0x6b,0x10,0x27,
13936
+0x02,0xd0,0x05,0x87,0x00,0x00,0x12,0x06,0x01,0x71,0x00,0x00,
13937
+0xff,0xff,0x00,0x2c,0xfe,0x78,0x05,0x81,0x04,0x41,0x10,0x27,
13938
+0x02,0xd0,0x04,0x86,0x00,0x00,0x12,0x06,0x01,0x72,0x00,0x00,
13939
+0xff,0xff,0xff,0xe9,0x00,0x00,0x05,0x5a,0x07,0x72,0x12,0x26,
13940
+0x00,0x3c,0x00,0x00,0x10,0x07,0x0d,0x7b,0x04,0xa1,0x01,0x7c,
13941
+0xff,0xff,0xff,0xfa,0xfe,0x39,0x04,0x7f,0x06,0x36,0x12,0x26,
13942
+0x00,0x5c,0x00,0x00,0x10,0x06,0x00,0x43,0x04,0xd2,0x00,0x00,
13943
+0xff,0xff,0xff,0xe9,0xfe,0x78,0x05,0x5a,0x05,0xd5,0x10,0x27,
13944
+0x02,0xd0,0x04,0xa1,0x00,0x00,0x12,0x06,0x00,0x3c,0x00,0x00,
13945
+0xff,0xff,0xff,0xfa,0xfe,0x39,0x04,0x7f,0x04,0x27,0x10,0x27,
13946
+0x02,0xd0,0x05,0x68,0x00,0x00,0x12,0x06,0x00,0x5c,0x00,0x00,
13947
+0xff,0xff,0xff,0xe9,0x00,0x00,0x05,0x5a,0x08,0x4c,0x10,0x27,
13948
+0x02,0xb6,0x04,0xa1,0x01,0x7c,0x12,0x06,0x00,0x3c,0x00,0x00,
13949
+0xff,0xff,0xff,0xfa,0xfe,0x39,0x04,0x7f,0x06,0xd0,0x10,0x27,
13950
+0x02,0xb6,0x04,0x3c,0x00,0x00,0x12,0x06,0x00,0x5c,0x00,0x00,
13951
+0xff,0xff,0xff,0xe9,0x00,0x00,0x05,0x5a,0x07,0x6a,0x10,0x27,
13952
+0x0d,0x7a,0x04,0x98,0x01,0x81,0x12,0x06,0x00,0x3c,0x00,0x00,
13953
+0xff,0xff,0xff,0xfa,0xfe,0x39,0x04,0x7f,0x06,0x37,0x10,0x27,
13954
+0x02,0xb0,0x04,0x3c,0x00,0x00,0x12,0x06,0x00,0x5c,0x00,0x00,
13955
+0x00,0x02,0x00,0x71,0x00,0x00,0x07,0x66,0x05,0xd5,0x00,0x0d,
13956
+0x00,0x11,0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,0x21,0x15,
13957
+0x23,0x11,0x21,0x35,0x33,0x11,0x01,0x11,0x21,0x11,0x71,0xbe,
13958
+0xbe,0x04,0x8e,0xbe,0x02,0xaa,0x7b,0xfa,0x94,0x01,0x7c,0x6a,
13959
+0x05,0x00,0x6b,0x6b,0xfb,0x11,0xfa,0xfe,0x8b,0x05,0x6a,0xfb,
13960
+0x11,0x04,0xef,0x00,0x00,0x02,0x00,0x3b,0x00,0x00,0x04,0x69,
13961
+0x06,0x14,0x00,0x17,0x00,0x1b,0x00,0x00,0x25,0x33,0x15,0x21,
13962
+0x35,0x33,0x11,0x23,0x35,0x33,0x35,0x23,0x35,0x21,0x11,0x21,
13963
+0x35,0x23,0x35,0x21,0x11,0x33,0x15,0x23,0x03,0x11,0x21,0x11,
13964
+0x03,0xbb,0xae,0xfb,0xd2,0xb1,0xb1,0xb1,0xb1,0x01,0x69,0x01,
13965
+0x5f,0xb1,0x01,0x69,0xae,0xae,0xb8,0xfe,0xa1,0x6a,0x6a,0x6a,
13966
+0x04,0x28,0x6b,0xad,0x6a,0xfe,0xe9,0xad,0x6a,0xfe,0xe9,0x6b,
13967
+0xfb,0xd8,0x04,0x28,0xfb,0xd8,0x00,0x00,0xff,0xff,0x00,0x66,
13968
+0xff,0xe7,0x05,0x30,0x06,0xa2,0x10,0x26,0x03,0x29,0x00,0x00,
13969
+0x10,0x06,0x07,0x35,0x7c,0x00,0x00,0x00,0xff,0xff,0x00,0x66,
13970
+0xff,0xe7,0x05,0x30,0x06,0xa2,0x10,0x26,0x03,0x29,0x00,0x00,
13971
+0x10,0x07,0x07,0x6d,0x00,0x80,0x00,0x00,0xff,0xff,0x00,0x66,
13972
+0xff,0xe7,0x05,0x30,0x06,0xa2,0x10,0x26,0x03,0x29,0x00,0x00,
13973
+0x10,0x07,0x07,0x42,0x00,0xa0,0x00,0x00,0xff,0xff,0x00,0x66,
13974
+0xff,0xe7,0x05,0x30,0x06,0xa2,0x10,0x26,0x03,0x29,0x00,0x00,
13975
+0x10,0x07,0x07,0x4f,0x00,0x96,0x00,0x00,0xff,0xff,0x00,0x66,
13976
+0xff,0xe7,0x05,0x30,0x06,0xa2,0x10,0x26,0x03,0x29,0x00,0x00,
13977
+0x10,0x07,0x07,0x43,0x00,0xc4,0x00,0x00,0xff,0xff,0x00,0x66,
13978
+0xff,0xe7,0x05,0x30,0x06,0xa2,0x10,0x26,0x03,0x29,0x00,0x00,
13979
+0x10,0x07,0x07,0x50,0x00,0xc0,0x00,0x00,0xff,0xff,0x00,0x66,
13980
+0xff,0xe7,0x05,0x30,0x07,0xf4,0x10,0x26,0x03,0x29,0x00,0x00,
13981
+0x10,0x07,0x07,0x44,0x00,0x9c,0x00,0x00,0xff,0xff,0x00,0x66,
13982
+0xff,0xe7,0x05,0x30,0x07,0xf4,0x10,0x26,0x03,0x29,0x00,0x00,
13983
+0x10,0x07,0x07,0x51,0x00,0x90,0x00,0x00,0xff,0xff,0xff,0xf4,
13984
+0x00,0x00,0x05,0xdb,0x06,0xa2,0x10,0x26,0x03,0x0a,0x00,0x00,
13985
+0x10,0x06,0x07,0x35,0x82,0x00,0x00,0x00,0xff,0xff,0xff,0xf4,
13986
+0x00,0x00,0x05,0xdb,0x06,0xa2,0x10,0x26,0x03,0x0a,0x00,0x00,
13987
+0x10,0x07,0x07,0x6d,0xff,0x58,0x00,0x00,0xff,0xff,0x00,0x09,
13988
+0x00,0x00,0x07,0x07,0x06,0xa2,0x10,0x27,0x03,0x0a,0x01,0x2c,
13989
+0x00,0x00,0x10,0x07,0x07,0x42,0xff,0x7c,0x00,0x00,0x00,0x00,
13990
+0xff,0xff,0x00,0x0a,0x00,0x00,0x07,0x07,0x06,0xa2,0x10,0x27,
13991
+0x03,0x0a,0x01,0x2c,0x00,0x00,0x10,0x06,0x07,0x4f,0x82,0x00,
13992
+0xff,0xff,0x00,0x0c,0x00,0x00,0x05,0xf3,0x06,0xa2,0x10,0x26,
13993
+0x03,0x0a,0x18,0x00,0x10,0x07,0x07,0x43,0xff,0x64,0x00,0x00,
13994
+0xff,0xff,0x00,0x0d,0x00,0x00,0x06,0x2f,0x06,0xa2,0x10,0x26,
13995
+0x03,0x0a,0x54,0x00,0x10,0x06,0x07,0x50,0x88,0x00,0x00,0x00,
13996
+0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,0x07,0xf4,0x10,0x26,
13997
+0x03,0x0a,0x00,0x00,0x10,0x06,0x07,0x44,0x88,0x00,0x00,0x00,
13998
+0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,0x07,0xf4,0x10,0x26,
13999
+0x03,0x0a,0x00,0x00,0x10,0x07,0x07,0x51,0xff,0x73,0x00,0x00,
14000
+0xff,0xff,0x00,0x65,0xff,0xd9,0x03,0xc7,0x06,0xa2,0x10,0x26,
14001
+0x03,0x2d,0x00,0x00,0x10,0x06,0x07,0x35,0x24,0x00,0x00,0x00,
14002
+0xff,0xff,0x00,0x65,0xff,0xd9,0x03,0xc7,0x06,0xa2,0x10,0x26,
14003
+0x03,0x2d,0x00,0x00,0x10,0x06,0x07,0x6d,0x1b,0x00,0x00,0x00,
14004
+0xff,0xff,0x00,0x65,0xff,0xd9,0x03,0xc7,0x06,0xa2,0x10,0x26,
14005
+0x03,0x2d,0x00,0x00,0x10,0x06,0x07,0x42,0x21,0x00,0x00,0x00,
14006
+0xff,0xff,0x00,0x65,0xff,0xd9,0x03,0xc7,0x06,0xa2,0x10,0x26,
14007
+0x03,0x2d,0x00,0x00,0x10,0x06,0x07,0x4f,0x18,0x00,0x00,0x00,
14008
+0xff,0xff,0x00,0x65,0xff,0xd9,0x03,0xc7,0x06,0xa2,0x10,0x26,
14009
+0x03,0x2d,0x00,0x00,0x10,0x06,0x07,0x43,0x42,0x00,0x00,0x00,
14010
+0xff,0xff,0x00,0x65,0xff,0xd9,0x03,0xe2,0x06,0xa2,0x10,0x26,
14011
+0x03,0x2d,0x00,0x00,0x10,0x06,0x07,0x50,0x6c,0x00,0x00,0x00,
14012
+0xff,0xff,0x00,0x0d,0x00,0x00,0x06,0x2f,0x06,0xa2,0x10,0x27,
14013
+0x03,0x0e,0x00,0xfc,0x00,0x00,0x10,0x07,0x07,0x35,0xfe,0x8c,
14014
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x0d,0x00,0x00,0x06,0x17,
14015
+0x06,0xa2,0x10,0x27,0x03,0x0e,0x00,0xe4,0x00,0x00,0x10,0x07,
14016
+0x07,0x6d,0xfe,0x8c,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x09,
14017
+0x00,0x00,0x07,0xe5,0x06,0xa2,0x10,0x27,0x03,0x0e,0x02,0xb2,
14018
+0x00,0x00,0x10,0x07,0x07,0x42,0xff,0x7c,0x00,0x00,0x00,0x00,
14019
+0xff,0xff,0x00,0x0a,0x00,0x00,0x07,0xf9,0x06,0xa2,0x10,0x27,
14020
+0x03,0x0e,0x02,0xc6,0x00,0x00,0x10,0x06,0x07,0x4f,0x82,0x00,
14021
+0xff,0xff,0x00,0x0d,0x00,0x00,0x07,0x6d,0x06,0xa2,0x10,0x27,
14022
+0x03,0x0e,0x02,0x3a,0x00,0x00,0x10,0x07,0x07,0x43,0xff,0x64,
14023
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x0d,0x00,0x00,0x07,0xa3,
14024
+0x06,0xa2,0x10,0x27,0x03,0x0e,0x02,0x70,0x00,0x00,0x10,0x06,
14025
+0x07,0x50,0x88,0x00,0xff,0xff,0x00,0x4a,0xfe,0x56,0x04,0x4a,
14026
+0x06,0xa2,0x10,0x26,0x03,0x2f,0x00,0x00,0x10,0x06,0x07,0x35,
14027
+0x64,0x00,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x56,0x04,0x4a,
14028
+0x06,0xa2,0x10,0x26,0x03,0x2f,0x00,0x00,0x10,0x06,0x07,0x6d,
14029
+0x58,0x00,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x56,0x04,0x4a,
14030
+0x06,0xa2,0x10,0x26,0x03,0x2f,0x00,0x00,0x10,0x06,0x07,0x42,
14031
+0x5c,0x00,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x56,0x04,0x4a,
14032
+0x06,0xa2,0x10,0x26,0x03,0x2f,0x00,0x00,0x10,0x06,0x07,0x4f,
14033
+0x6c,0x00,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x56,0x04,0x4a,
14034
+0x06,0xa2,0x10,0x26,0x03,0x2f,0x00,0x00,0x10,0x07,0x07,0x43,
14035
+0x00,0x94,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x56,0x04,0x4a,
14036
+0x06,0xa2,0x10,0x26,0x03,0x2f,0x00,0x00,0x10,0x07,0x07,0x50,
14037
+0x00,0x94,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x56,0x04,0x4a,
14038
+0x07,0xf4,0x10,0x26,0x03,0x2f,0x00,0x00,0x10,0x06,0x07,0x44,
14039
+0x78,0x00,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x56,0x04,0x4a,
14040
+0x07,0xf4,0x10,0x26,0x03,0x2f,0x00,0x00,0x10,0x06,0x07,0x51,
14041
+0x78,0x00,0x00,0x00,0xff,0xff,0x00,0x0d,0x00,0x00,0x07,0x8b,
14042
+0x06,0xa2,0x10,0x27,0x03,0x10,0x01,0x02,0x00,0x00,0x10,0x07,
14043
+0x07,0x35,0xfe,0x8c,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x0d,
14044
+0x00,0x00,0x07,0x7f,0x06,0xa2,0x10,0x27,0x03,0x10,0x00,0xf6,
14045
+0x00,0x00,0x10,0x07,0x07,0x6d,0xfe,0x8c,0x00,0x00,0x00,0x00,
14046
+0xff,0xff,0x00,0x09,0x00,0x00,0x09,0x41,0x06,0xa2,0x10,0x27,
14047
+0x03,0x10,0x02,0xb8,0x00,0x00,0x10,0x07,0x07,0x42,0xff,0x7c,
14048
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x0a,0x00,0x00,0x09,0x59,
14049
+0x06,0xa2,0x10,0x27,0x03,0x10,0x02,0xd0,0x00,0x00,0x10,0x06,
14050
+0x07,0x4f,0x82,0x00,0xff,0xff,0x00,0x0d,0x00,0x00,0x08,0xd5,
14051
+0x06,0xa2,0x10,0x27,0x03,0x10,0x02,0x4c,0x00,0x00,0x10,0x07,
14052
+0x07,0x43,0xff,0x64,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x0d,
14053
+0x00,0x00,0x09,0x05,0x06,0xa2,0x10,0x27,0x03,0x10,0x02,0x7c,
14054
+0x00,0x00,0x10,0x06,0x07,0x50,0x88,0x00,0xff,0xff,0x00,0x0e,
14055
+0x00,0x00,0x08,0x57,0x07,0xf4,0x10,0x27,0x03,0x10,0x01,0xce,
14056
+0x00,0x00,0x10,0x07,0x07,0x44,0xff,0x58,0x00,0x00,0x00,0x00,
14057
+0xff,0xff,0x00,0x0e,0x00,0x00,0x08,0x51,0x07,0xf4,0x10,0x27,
14058
+0x03,0x10,0x01,0xc8,0x00,0x00,0x10,0x07,0x07,0x51,0xff,0x58,
14059
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x4a,0x00,0x2d,0x02,0xb0,
14060
+0x06,0xa2,0x10,0x26,0x03,0x31,0x00,0x00,0x10,0x07,0x07,0x35,
14061
+0xff,0x46,0x00,0x00,0xff,0xff,0x00,0x4a,0x00,0x2d,0x02,0xb0,
14062
+0x06,0xa2,0x10,0x26,0x03,0x31,0x00,0x00,0x10,0x07,0x07,0x6d,
14063
+0xff,0x4c,0x00,0x00,0xff,0xff,0xff,0xf4,0x00,0x2d,0x02,0xf0,
14064
+0x06,0xa2,0x10,0x26,0x03,0x31,0x00,0x00,0x10,0x07,0x07,0x42,
14065
+0xff,0x67,0x00,0x00,0xff,0xff,0xff,0xec,0x00,0x2d,0x02,0xed,
14066
+0x06,0xa2,0x10,0x26,0x03,0x31,0x00,0x00,0x10,0x07,0x07,0x4f,
14067
+0xff,0x64,0x00,0x00,0xff,0xff,0x00,0x40,0x00,0x2d,0x02,0xfb,
14068
+0x06,0xa2,0x10,0x26,0x03,0x31,0x00,0x00,0x10,0x06,0x07,0x43,
14069
+0x97,0x00,0x00,0x00,0xff,0xff,0x00,0x19,0x00,0x2d,0x03,0x0a,
14070
+0x06,0xa2,0x10,0x26,0x03,0x31,0x00,0x00,0x10,0x06,0x07,0x50,
14071
+0x94,0x00,0x00,0x00,0xff,0xff,0x00,0x02,0x00,0x2d,0x02,0xb0,
14072
+0x07,0xf4,0x10,0x26,0x03,0x31,0x00,0x00,0x10,0x07,0x07,0x44,
14073
+0xff,0x4c,0x00,0x00,0xff,0xff,0x00,0x05,0x00,0x2d,0x02,0xb0,
14074
+0x07,0xf4,0x10,0x26,0x03,0x31,0x00,0x00,0x10,0x07,0x07,0x51,
14075
+0xff,0x4f,0x00,0x00,0xff,0xff,0x00,0x0d,0x00,0x00,0x03,0xba,
14076
+0x06,0xa2,0x10,0x27,0x03,0x12,0x01,0x02,0x00,0x00,0x10,0x07,
14077
+0x07,0x35,0xfe,0x8c,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x0d,
14078
+0x00,0x00,0x03,0xa8,0x06,0xa2,0x10,0x27,0x03,0x12,0x00,0xf0,
14079
+0x00,0x00,0x10,0x07,0x07,0x6d,0xfe,0x8c,0x00,0x00,0x00,0x00,
14080
+0xff,0xff,0x00,0x09,0x00,0x00,0x05,0x70,0x06,0xa2,0x10,0x27,
14081
+0x03,0x12,0x02,0xb8,0x00,0x00,0x10,0x07,0x07,0x42,0xff,0x7c,
14082
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x0a,0x00,0x00,0x05,0x76,
14083
+0x06,0xa2,0x10,0x27,0x03,0x12,0x02,0xbe,0x00,0x00,0x10,0x06,
14084
+0x07,0x4f,0x82,0x00,0xff,0xff,0x00,0x0d,0x00,0x00,0x04,0xfe,
14085
+0x06,0xa2,0x10,0x27,0x03,0x12,0x02,0x46,0x00,0x00,0x10,0x07,
14086
+0x07,0x43,0xff,0x64,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x0d,
14087
+0x00,0x00,0x05,0x34,0x06,0xa2,0x10,0x27,0x03,0x12,0x02,0x7c,
14088
+0x00,0x00,0x10,0x06,0x07,0x50,0x88,0x00,0xff,0xff,0x00,0x0e,
14089
+0x00,0x00,0x04,0x8c,0x07,0xf4,0x10,0x27,0x03,0x12,0x01,0xd4,
14090
+0x00,0x00,0x10,0x07,0x07,0x44,0xff,0x58,0x00,0x00,0x00,0x00,
14091
+0xff,0xff,0x00,0x0e,0x00,0x00,0x04,0x7a,0x07,0xf4,0x10,0x27,
14092
+0x03,0x12,0x01,0xc2,0x00,0x00,0x10,0x07,0x07,0x51,0xff,0x58,
14093
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,
14094
+0x06,0xa2,0x10,0x26,0x03,0x37,0x00,0x00,0x10,0x06,0x07,0x35,
14095
+0x5d,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,
14096
+0x06,0xa2,0x10,0x26,0x03,0x37,0x00,0x00,0x10,0x06,0x07,0x6d,
14097
+0x5d,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,
14098
+0x06,0xa2,0x10,0x26,0x03,0x37,0x00,0x00,0x10,0x06,0x07,0x42,
14099
+0x4e,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,
14100
+0x06,0xa2,0x10,0x26,0x03,0x37,0x00,0x00,0x10,0x06,0x07,0x4f,
14101
+0x5d,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,
14102
+0x06,0xa2,0x10,0x26,0x03,0x37,0x00,0x00,0x10,0x07,0x07,0x43,
14103
+0x00,0xa8,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,
14104
+0x06,0xa2,0x10,0x26,0x03,0x37,0x00,0x00,0x10,0x07,0x07,0x50,
14105
+0x00,0x8d,0x00,0x00,0xff,0xff,0x00,0x0d,0xff,0xe3,0x06,0x1d,
14106
+0x06,0xa2,0x10,0x26,0x03,0x18,0x00,0x00,0x10,0x07,0x07,0x35,
14107
+0xfe,0x8c,0x00,0x00,0xff,0xff,0x00,0x0d,0xff,0xe3,0x06,0x6e,
14108
+0x06,0xa2,0x10,0x26,0x03,0x18,0x51,0x00,0x10,0x07,0x07,0x6d,
14109
+0xfe,0x8c,0x00,0x00,0xff,0xff,0x00,0x09,0xff,0xe3,0x08,0x84,
14110
+0x06,0xa2,0x10,0x27,0x03,0x18,0x02,0x67,0x00,0x00,0x10,0x07,
14111
+0x07,0x42,0xff,0x7c,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x0a,
14112
+0xff,0xe3,0x08,0x93,0x06,0xa2,0x10,0x27,0x03,0x18,0x02,0x76,
14113
+0x00,0x00,0x10,0x06,0x07,0x4f,0x82,0x00,0xff,0xff,0x00,0x0d,
14114
+0xff,0xe3,0x07,0x0d,0x06,0xa2,0x10,0x27,0x03,0x18,0x00,0xf0,
14115
+0x00,0x00,0x10,0x07,0x07,0x43,0xff,0x64,0x00,0x00,0x00,0x00,
14116
+0xff,0xff,0x00,0x0d,0xff,0xe3,0x07,0x44,0x06,0xa2,0x10,0x27,
14117
+0x03,0x18,0x01,0x27,0x00,0x00,0x10,0x06,0x07,0x50,0x88,0x00,
14118
+0xff,0xff,0x00,0x4a,0xff,0xf9,0x04,0x78,0x06,0xa2,0x10,0x26,
14119
+0x03,0x3d,0x00,0x00,0x10,0x06,0x07,0x35,0x4e,0x00,0x00,0x00,
14120
+0xff,0xff,0x00,0x4a,0xff,0xf9,0x04,0x78,0x06,0xa2,0x10,0x26,
14121
+0x03,0x3d,0x00,0x00,0x10,0x06,0x07,0x6d,0x3f,0x00,0x00,0x00,
14122
+0xff,0xff,0x00,0x4a,0xff,0xf9,0x04,0x78,0x06,0xa2,0x10,0x26,
14123
+0x03,0x3d,0x00,0x00,0x10,0x06,0x07,0x42,0x39,0x00,0x00,0x00,
14124
+0xff,0xff,0x00,0x4a,0xff,0xf9,0x04,0x78,0x06,0xa2,0x10,0x26,
14125
+0x03,0x3d,0x00,0x00,0x10,0x06,0x07,0x4f,0x57,0x00,0x00,0x00,
14126
+0xff,0xff,0x00,0x4a,0xff,0xf9,0x04,0x78,0x06,0xa2,0x10,0x26,
14127
+0x03,0x3d,0x00,0x00,0x10,0x06,0x07,0x43,0x7b,0x00,0x00,0x00,
14128
+0xff,0xff,0x00,0x4a,0xff,0xf9,0x04,0x78,0x06,0xa2,0x10,0x26,
14129
+0x03,0x3d,0x00,0x00,0x10,0x07,0x07,0x50,0x00,0x93,0x00,0x00,
14130
+0xff,0xff,0x00,0x4a,0xff,0xf9,0x04,0x78,0x07,0xf4,0x10,0x26,
14131
+0x03,0x3d,0x00,0x00,0x10,0x06,0x07,0x44,0x51,0x00,0x00,0x00,
14132
+0xff,0xff,0x00,0x4a,0xff,0xf9,0x04,0x78,0x07,0xf4,0x10,0x26,
14133
+0x03,0x3d,0x00,0x00,0x10,0x06,0x07,0x51,0x45,0x00,0x00,0x00,
14134
+0xff,0xff,0x00,0x0d,0x00,0x00,0x06,0xe0,0x06,0xa2,0x10,0x27,
14135
+0x03,0x1d,0x01,0x86,0x00,0x00,0x10,0x07,0x07,0x6d,0xfe,0x8c,
14136
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x0a,0x00,0x00,0x08,0xb4,
14137
+0x06,0xa2,0x10,0x27,0x03,0x1d,0x03,0x5a,0x00,0x00,0x10,0x06,
14138
+0x07,0x4f,0x82,0x00,0xff,0xff,0x00,0x0d,0x00,0x00,0x08,0x6c,
14139
+0x06,0xa2,0x10,0x27,0x03,0x1d,0x03,0x12,0x00,0x00,0x10,0x06,
14140
+0x07,0x50,0x88,0x00,0xff,0xff,0x00,0x0e,0x00,0x00,0x07,0xb2,
14141
+0x07,0xf4,0x10,0x27,0x03,0x1d,0x02,0x58,0x00,0x00,0x10,0x07,
14142
+0x07,0x51,0xff,0x58,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x5a,
14143
+0xff,0xf9,0x06,0x22,0x06,0xa2,0x10,0x26,0x03,0x41,0x00,0x00,
14144
+0x10,0x07,0x07,0x35,0x01,0x30,0x00,0x00,0xff,0xff,0x00,0x5a,
14145
+0xff,0xf9,0x06,0x22,0x06,0xa2,0x10,0x26,0x03,0x41,0x00,0x00,
14146
+0x10,0x07,0x07,0x6d,0x01,0x30,0x00,0x00,0xff,0xff,0x00,0x5a,
14147
+0xff,0xf9,0x06,0x22,0x06,0xa2,0x10,0x26,0x03,0x41,0x00,0x00,
14148
+0x10,0x07,0x07,0x42,0x01,0x20,0x00,0x00,0xff,0xff,0x00,0x5a,
14149
+0xff,0xf9,0x06,0x22,0x06,0xa2,0x10,0x26,0x03,0x41,0x00,0x00,
14150
+0x10,0x07,0x07,0x4f,0x01,0x2c,0x00,0x00,0xff,0xff,0x00,0x5a,
14151
+0xff,0xf9,0x06,0x22,0x06,0xa2,0x10,0x26,0x03,0x41,0x00,0x00,
14152
+0x10,0x07,0x07,0x43,0x01,0x3c,0x00,0x00,0xff,0xff,0x00,0x5a,
14153
+0xff,0xf9,0x06,0x22,0x06,0xa2,0x10,0x26,0x03,0x41,0x00,0x00,
14154
+0x10,0x07,0x07,0x50,0x01,0x44,0x00,0x00,0xff,0xff,0x00,0x5a,
14155
+0xff,0xf9,0x06,0x22,0x07,0xf4,0x10,0x26,0x03,0x41,0x00,0x00,
14156
+0x10,0x07,0x07,0x44,0x01,0x38,0x00,0x00,0xff,0xff,0x00,0x5a,
14157
+0xff,0xf9,0x06,0x22,0x07,0xf4,0x10,0x26,0x03,0x41,0x00,0x00,
14158
+0x10,0x07,0x07,0x51,0x01,0x40,0x00,0x00,0xff,0xff,0x00,0x0d,
14159
+0x00,0x00,0x06,0x27,0x06,0xa2,0x10,0x26,0x03,0x21,0x00,0x00,
14160
+0x10,0x07,0x07,0x35,0xfe,0x8c,0x00,0x00,0xff,0xff,0x00,0x0d,
14161
+0x00,0x00,0x06,0x7b,0x06,0xa2,0x10,0x26,0x03,0x21,0x54,0x00,
14162
+0x10,0x07,0x07,0x6d,0xfe,0x8c,0x00,0x00,0xff,0xff,0x00,0x09,
14163
+0x00,0x00,0x08,0x91,0x06,0xa2,0x10,0x27,0x03,0x21,0x02,0x6a,
14164
+0x00,0x00,0x10,0x07,0x07,0x42,0xff,0x7c,0x00,0x00,0x00,0x00,
14165
+0xff,0xff,0x00,0x0a,0x00,0x00,0x08,0x9d,0x06,0xa2,0x10,0x27,
14166
+0x03,0x21,0x02,0x76,0x00,0x00,0x10,0x06,0x07,0x4f,0x82,0x00,
14167
+0xff,0xff,0x00,0x0d,0x00,0x00,0x07,0x17,0x06,0xa2,0x10,0x27,
14168
+0x03,0x21,0x00,0xf0,0x00,0x00,0x10,0x07,0x07,0x43,0xff,0x64,
14169
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x0d,0x00,0x00,0x07,0x53,
14170
+0x06,0xa2,0x10,0x27,0x03,0x21,0x01,0x2c,0x00,0x00,0x10,0x06,
14171
+0x07,0x50,0x88,0x00,0xff,0xff,0x00,0x0e,0x00,0x00,0x07,0x05,
14172
+0x07,0xf4,0x10,0x27,0x03,0x21,0x00,0xde,0x00,0x00,0x10,0x07,
14173
+0x07,0x44,0xff,0x58,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x0e,
14174
+0x00,0x00,0x07,0x47,0x07,0xf4,0x10,0x27,0x03,0x21,0x01,0x20,
14175
+0x00,0x00,0x10,0x07,0x07,0x51,0xff,0x58,0x00,0x00,0x00,0x00,
14176
+0xff,0xff,0x00,0x66,0xff,0xe7,0x05,0x30,0x06,0x64,0x10,0x26,
14177
+0x03,0x29,0x00,0x00,0x10,0x07,0x07,0x61,0x00,0x8c,0x00,0x00,
14178
+0xff,0xff,0x00,0x66,0xff,0xe7,0x05,0x30,0x06,0x66,0x10,0x06,
14179
+0x03,0x24,0x00,0x00,0xff,0xff,0x00,0x65,0xff,0xd9,0x03,0xc7,
14180
+0x06,0x64,0x10,0x26,0x03,0x2d,0x00,0x00,0x10,0x06,0x07,0x61,
14181
+0x72,0x00,0x00,0x00,0xff,0xff,0x00,0x65,0xff,0xd9,0x03,0xc7,
14182
+0x06,0x66,0x10,0x06,0x03,0x25,0x00,0x00,0xff,0xff,0x00,0x4a,
14183
+0xfe,0x56,0x04,0x4a,0x06,0x64,0x10,0x26,0x03,0x2f,0x00,0x00,
14184
+0x10,0x07,0x07,0x61,0x00,0xa4,0x00,0x00,0xff,0xff,0x00,0x4a,
14185
+0xfe,0x56,0x04,0x4a,0x06,0x66,0x10,0x06,0x03,0x26,0x00,0x00,
14186
+0xff,0xff,0x00,0x02,0x00,0x2d,0x02,0xb0,0x06,0x64,0x10,0x26,
14187
+0x03,0x31,0x00,0x00,0x10,0x07,0x07,0x61,0xff,0x58,0x00,0x00,
14188
+0xff,0xff,0x00,0x4a,0x00,0x2d,0x02,0xb0,0x06,0x66,0x10,0x06,
14189
+0x03,0x27,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,
14190
+0x06,0x64,0x10,0x26,0x03,0x37,0x00,0x00,0x10,0x06,0x07,0x61,
14191
+0x7b,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x6a,
14192
+0x06,0x66,0x10,0x06,0x03,0x44,0x00,0x00,0xff,0xff,0x00,0x4a,
14193
+0xff,0xf9,0x04,0x78,0x06,0x64,0x10,0x26,0x03,0x3d,0x00,0x00,
14194
+0x10,0x06,0x07,0x61,0x63,0x00,0x00,0x00,0xff,0xff,0x00,0x4a,
14195
+0xff,0xf9,0x04,0x78,0x06,0x66,0x10,0x06,0x03,0x45,0x00,0x00,
14196
+0xff,0xff,0x00,0x5a,0xff,0xf9,0x06,0x22,0x06,0x64,0x10,0x26,
14197
+0x03,0x41,0x00,0x00,0x10,0x07,0x07,0x61,0x01,0x31,0x00,0x00,
14198
+0xff,0xff,0x00,0x5a,0xff,0xf9,0x06,0x22,0x06,0x66,0x10,0x06,
14199
+0x03,0x46,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x57,0x05,0x30,
14200
+0x06,0xa2,0x10,0x26,0x02,0xfa,0x32,0x00,0x12,0x06,0x06,0x85,
14201
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x57,0x05,0x30,
14202
+0x06,0xa2,0x10,0x26,0x02,0xfa,0x32,0x00,0x12,0x06,0x06,0x86,
14203
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x57,0x05,0x30,
14204
+0x06,0xa2,0x10,0x26,0x02,0xfa,0x32,0x00,0x12,0x06,0x06,0x87,
14205
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x57,0x05,0x30,
14206
+0x06,0xa2,0x10,0x26,0x02,0xfa,0x32,0x00,0x12,0x06,0x06,0x88,
14207
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x57,0x05,0x30,
14208
+0x06,0xa2,0x10,0x26,0x02,0xfa,0x32,0x00,0x12,0x06,0x06,0x89,
14209
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x57,0x05,0x30,
14210
+0x06,0xa2,0x10,0x26,0x02,0xfa,0x32,0x00,0x12,0x06,0x06,0x8a,
14211
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x57,0x05,0x30,
14212
+0x07,0xf4,0x10,0x26,0x02,0xfa,0x32,0x00,0x12,0x06,0x06,0x8b,
14213
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x57,0x05,0x30,
14214
+0x07,0xf4,0x10,0x26,0x02,0xfa,0x32,0x00,0x12,0x06,0x06,0x8c,
14215
+0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xf4,0xfe,0x57,0x05,0xdb,
14216
+0x06,0xa2,0x10,0x27,0x07,0x34,0x00,0xb3,0x00,0x00,0x10,0x06,
14217
+0x06,0x8d,0x00,0x00,0xff,0xff,0xff,0xf4,0xfe,0x57,0x05,0xdb,
14218
+0x06,0xa2,0x10,0x27,0x07,0x34,0x00,0xb3,0x00,0x00,0x10,0x06,
14219
+0x06,0x8e,0x00,0x00,0xff,0xff,0x00,0x09,0xfe,0x57,0x07,0x07,
14220
+0x06,0xa2,0x10,0x27,0x07,0x34,0x01,0xdf,0x00,0x00,0x10,0x06,
14221
+0x06,0x8f,0x00,0x00,0xff,0xff,0x00,0x0a,0xfe,0x57,0x07,0x07,
14222
+0x06,0xa2,0x10,0x27,0x07,0x34,0x01,0xdf,0x00,0x00,0x10,0x06,
14223
+0x06,0x90,0x00,0x00,0xff,0xff,0x00,0x0c,0xfe,0x57,0x05,0xf3,
14224
+0x06,0xa2,0x10,0x27,0x07,0x34,0x00,0xcb,0x00,0x00,0x10,0x06,
14225
+0x06,0x91,0x00,0x00,0xff,0xff,0x00,0x0d,0xfe,0x57,0x06,0x2f,
14226
+0x06,0xa2,0x10,0x27,0x07,0x34,0x01,0x07,0x00,0x00,0x10,0x06,
14227
+0x06,0x92,0x00,0x00,0xff,0xff,0xff,0xf4,0xfe,0x57,0x05,0xdb,
14228
+0x07,0xf4,0x10,0x27,0x07,0x34,0x00,0xb3,0x00,0x00,0x10,0x06,
14229
+0x06,0x93,0x00,0x00,0xff,0xff,0xff,0xf4,0xfe,0x57,0x05,0xdb,
14230
+0x07,0xf4,0x10,0x27,0x07,0x34,0x00,0xb3,0x00,0x00,0x10,0x06,
14231
+0x06,0x94,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x56,0x04,0x4a,
14232
+0x06,0xa2,0x10,0x27,0x02,0xfa,0xff,0x6a,0x00,0x00,0x12,0x06,
14233
+0x06,0xa1,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x56,0x04,0x4a,
14234
+0x06,0xa2,0x10,0x27,0x02,0xfa,0xff,0x6a,0x00,0x00,0x12,0x06,
14235
+0x06,0xa2,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x56,0x04,0x4a,
14236
+0x06,0xa2,0x10,0x27,0x02,0xfa,0xff,0x6a,0x00,0x00,0x12,0x06,
14237
+0x06,0xa3,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x56,0x04,0x4a,
14238
+0x06,0xa2,0x10,0x27,0x02,0xfa,0xff,0x6a,0x00,0x00,0x12,0x06,
14239
+0x06,0xa4,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x56,0x04,0x4a,
14240
+0x06,0xa2,0x10,0x27,0x02,0xfa,0xff,0x6a,0x00,0x00,0x12,0x06,
14241
+0x06,0xa5,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x56,0x04,0x4a,
14242
+0x06,0xa2,0x10,0x27,0x02,0xfa,0xff,0x6a,0x00,0x00,0x12,0x06,
14243
+0x06,0xa6,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x56,0x04,0x4a,
14244
+0x07,0xf4,0x10,0x27,0x02,0xfa,0xff,0x6a,0x00,0x00,0x12,0x06,
14245
+0x06,0xa7,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x56,0x04,0x4a,
14246
+0x07,0xf4,0x10,0x27,0x02,0xfa,0xff,0x6a,0x00,0x00,0x12,0x06,
14247
+0x06,0xa8,0x00,0x00,0xff,0xff,0x00,0x0d,0xfe,0x57,0x07,0x8b,
14248
+0x06,0xa2,0x10,0x27,0x07,0x34,0x02,0x7f,0x00,0x00,0x10,0x06,
14249
+0x06,0xa9,0x00,0x00,0xff,0xff,0x00,0x0d,0xfe,0x57,0x07,0x7f,
14250
+0x06,0xa2,0x10,0x27,0x07,0x34,0x02,0x73,0x00,0x00,0x10,0x06,
14251
+0x06,0xaa,0x00,0x00,0xff,0xff,0x00,0x09,0xfe,0x57,0x09,0x41,
14252
+0x06,0xa2,0x10,0x27,0x07,0x34,0x04,0x35,0x00,0x00,0x10,0x06,
14253
+0x06,0xab,0x00,0x00,0xff,0xff,0x00,0x0a,0xfe,0x57,0x09,0x59,
14254
+0x06,0xa2,0x10,0x27,0x07,0x34,0x04,0x4d,0x00,0x00,0x10,0x06,
14255
+0x06,0xac,0x00,0x00,0xff,0xff,0x00,0x0d,0xfe,0x57,0x08,0xd5,
14256
+0x06,0xa2,0x10,0x27,0x07,0x34,0x03,0xc9,0x00,0x00,0x10,0x06,
14257
+0x06,0xad,0x00,0x00,0xff,0xff,0x00,0x0d,0xfe,0x57,0x09,0x05,
14258
+0x06,0xa2,0x10,0x27,0x07,0x34,0x03,0xf9,0x00,0x00,0x10,0x06,
14259
+0x06,0xae,0x00,0x00,0xff,0xff,0x00,0x0e,0xfe,0x57,0x08,0x57,
14260
+0x07,0xf4,0x10,0x27,0x07,0x34,0x03,0x4b,0x00,0x00,0x10,0x06,
14261
+0x06,0xaf,0x00,0x00,0xff,0xff,0x00,0x0e,0xfe,0x57,0x08,0x51,
14262
+0x07,0xf4,0x10,0x27,0x07,0x34,0x03,0x45,0x00,0x00,0x10,0x06,
14263
+0x06,0xb0,0x00,0x00,0xff,0xff,0x00,0x5a,0xfe,0x57,0x06,0x22,
14264
+0x06,0xa2,0x10,0x27,0x02,0xfa,0x01,0x40,0x00,0x00,0x12,0x06,
14265
+0x06,0xd9,0x00,0x00,0xff,0xff,0x00,0x5a,0xfe,0x57,0x06,0x22,
14266
+0x06,0xa2,0x10,0x27,0x02,0xfa,0x01,0x40,0x00,0x00,0x12,0x06,
14267
+0x06,0xda,0x00,0x00,0xff,0xff,0x00,0x5a,0xfe,0x57,0x06,0x22,
14268
+0x06,0xa2,0x10,0x27,0x02,0xfa,0x01,0x40,0x00,0x00,0x12,0x06,
14269
+0x06,0xdb,0x00,0x00,0xff,0xff,0x00,0x5a,0xfe,0x57,0x06,0x22,
14270
+0x06,0xa2,0x10,0x27,0x02,0xfa,0x01,0x40,0x00,0x00,0x12,0x06,
14271
+0x06,0xdc,0x00,0x00,0xff,0xff,0x00,0x5a,0xfe,0x57,0x06,0x22,
14272
+0x06,0xa2,0x10,0x27,0x02,0xfa,0x01,0x40,0x00,0x00,0x12,0x06,
14273
+0x06,0xdd,0x00,0x00,0xff,0xff,0x00,0x5a,0xfe,0x57,0x06,0x22,
14274
+0x06,0xa2,0x10,0x27,0x02,0xfa,0x01,0x40,0x00,0x00,0x12,0x06,
14275
+0x06,0xde,0x00,0x00,0xff,0xff,0x00,0x5a,0xfe,0x57,0x06,0x22,
14276
+0x07,0xf4,0x10,0x27,0x02,0xfa,0x01,0x40,0x00,0x00,0x12,0x06,
14277
+0x06,0xdf,0x00,0x00,0xff,0xff,0x00,0x5a,0xfe,0x57,0x06,0x22,
14278
+0x07,0xf4,0x10,0x27,0x02,0xfa,0x01,0x40,0x00,0x00,0x12,0x06,
14279
+0x06,0xe0,0x00,0x00,0xff,0xff,0x00,0x0d,0xfe,0x57,0x06,0x27,
14280
+0x06,0xa2,0x10,0x27,0x07,0x34,0x01,0x52,0x00,0x00,0x10,0x06,
14281
+0x06,0xe1,0x00,0x00,0xff,0xff,0x00,0x0d,0xfe,0x57,0x06,0x7b,
14282
+0x06,0xa2,0x10,0x27,0x07,0x34,0x01,0xa6,0x00,0x00,0x10,0x06,
14283
+0x06,0xe2,0x00,0x00,0xff,0xff,0x00,0x09,0xfe,0x57,0x08,0x91,
14284
+0x06,0xa2,0x10,0x27,0x07,0x34,0x03,0xbc,0x00,0x00,0x10,0x06,
14285
+0x06,0xe3,0x00,0x00,0xff,0xff,0x00,0x0a,0xfe,0x57,0x08,0x9d,
14286
+0x06,0xa2,0x10,0x27,0x07,0x34,0x03,0xc8,0x00,0x00,0x10,0x06,
14287
+0x06,0xe4,0x00,0x00,0xff,0xff,0x00,0x0d,0xfe,0x57,0x07,0x17,
14288
+0x06,0xa2,0x10,0x27,0x07,0x34,0x02,0x42,0x00,0x00,0x10,0x06,
14289
+0x06,0xe5,0x00,0x00,0xff,0xff,0x00,0x0d,0xfe,0x57,0x07,0x53,
14290
+0x06,0xa2,0x10,0x27,0x07,0x34,0x02,0x7e,0x00,0x00,0x10,0x06,
14291
+0x06,0xe6,0x00,0x00,0xff,0xff,0x00,0x0e,0xfe,0x57,0x07,0x05,
14292
+0x07,0xf4,0x10,0x27,0x07,0x34,0x02,0x30,0x00,0x00,0x10,0x06,
14293
+0x06,0xe7,0x00,0x00,0xff,0xff,0x00,0x0e,0xfe,0x57,0x07,0x47,
14294
+0x07,0xf4,0x10,0x27,0x07,0x34,0x02,0x72,0x00,0x00,0x10,0x06,
14295
+0x06,0xe8,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe7,0x05,0x30,
14296
+0x06,0x48,0x10,0x26,0x03,0x29,0x00,0x00,0x10,0x07,0x02,0x96,
14297
+0x00,0x98,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe7,0x05,0x30,
14298
+0x05,0xf6,0x10,0x26,0x03,0x29,0x00,0x00,0x10,0x07,0x00,0x71,
14299
+0x00,0x90,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x57,0x05,0x30,
14300
+0x06,0x64,0x10,0x26,0x02,0xfa,0x32,0x00,0x12,0x06,0x06,0xe9,
14301
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x57,0x05,0x30,
14302
+0x04,0x43,0x10,0x26,0x02,0xfa,0x32,0x00,0x12,0x06,0x03,0x29,
14303
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x57,0x05,0x30,
14304
+0x06,0x66,0x10,0x26,0x02,0xfa,0x32,0x00,0x12,0x06,0x03,0x24,
14305
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe7,0x05,0x30,
14306
+0x06,0x37,0x10,0x26,0x03,0x29,0x00,0x00,0x10,0x07,0x07,0x36,
14307
+0x00,0x94,0x00,0x00,0xff,0xff,0x00,0x66,0xfe,0x57,0x05,0x30,
14308
+0x06,0x37,0x10,0x26,0x02,0xfa,0x32,0x00,0x12,0x06,0x07,0x2c,
14309
+0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,
14310
+0x07,0x69,0x10,0x26,0x03,0x0a,0x00,0x00,0x10,0x07,0x02,0x96,
14311
+0x00,0xec,0x01,0x21,0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,
14312
+0x07,0x31,0x10,0x26,0x03,0x0a,0x00,0x00,0x10,0x07,0x00,0x71,
14313
+0x00,0xdf,0x01,0x3b,0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,
14314
+0x06,0x64,0x10,0x26,0x03,0x0a,0x00,0x00,0x10,0x07,0x07,0x61,
14315
+0xff,0x64,0x00,0x00,0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,
14316
+0x06,0x66,0x10,0x06,0x03,0x01,0x00,0x00,0xff,0xff,0xff,0xf4,
14317
+0xfe,0x57,0x05,0xdb,0x05,0xd5,0x10,0x27,0x07,0x34,0x00,0xb3,
14318
+0x00,0x00,0x10,0x06,0x03,0x0a,0x00,0x00,0xff,0xff,0x01,0x81,
14319
+0x04,0xda,0x02,0x8c,0x06,0xa2,0x10,0x06,0x07,0x35,0x00,0x00,
14320
+0xff,0xff,0x01,0xb5,0xfe,0x57,0x02,0xb0,0xff,0x86,0x10,0x06,
14321
+0x02,0xfa,0x00,0x00,0x00,0x01,0x01,0x81,0x04,0xda,0x02,0x8c,
14322
+0x06,0xa2,0x00,0x13,0x00,0x00,0x01,0x32,0x17,0x16,0x1d,0x01,
14323
+0x16,0x07,0x06,0x07,0x27,0x36,0x37,0x26,0x27,0x26,0x35,0x34,
14324
+0x37,0x36,0x02,0x07,0x44,0x27,0x1a,0x09,0xa3,0x05,0x02,0x4a,
14325
+0x4f,0x0a,0x31,0x21,0x26,0x36,0x22,0x06,0xa2,0x37,0x23,0x2c,
14326
+0x10,0xa2,0x8a,0x04,0x02,0x1e,0x4c,0x53,0x04,0x23,0x26,0x38,
14327
+0x46,0x27,0x19,0x00,0xff,0xff,0x00,0xb6,0x05,0x1d,0x03,0x4a,
14328
+0x06,0x37,0x10,0x06,0x02,0x9a,0x00,0x00,0xff,0xff,0x00,0xb6,
14329
+0x05,0x37,0x03,0x4a,0x07,0x8d,0x10,0x26,0x00,0x6a,0x00,0x00,
14330
+0x10,0x07,0x07,0x36,0x00,0x00,0x01,0x56,0xff,0xff,0x00,0x4a,
14331
+0xfe,0x56,0x04,0x4a,0x06,0x64,0x10,0x27,0x02,0xfa,0xff,0x6a,
14332
+0x00,0x00,0x12,0x06,0x06,0xed,0x00,0x00,0xff,0xff,0x00,0x4a,
14333
+0xfe,0x56,0x04,0x4a,0x04,0x44,0x10,0x27,0x02,0xfa,0xff,0x6a,
14334
+0x00,0x00,0x12,0x06,0x03,0x2f,0x00,0x00,0xff,0xff,0x00,0x4a,
14335
+0xfe,0x56,0x04,0x4a,0x06,0x66,0x10,0x27,0x02,0xfa,0xff,0x6a,
14336
+0x00,0x00,0x12,0x06,0x03,0x26,0x00,0x00,0xff,0xff,0x00,0x4a,
14337
+0xfe,0x56,0x04,0x4a,0x06,0x37,0x10,0x26,0x03,0x2f,0x00,0x00,
14338
+0x10,0x06,0x07,0x36,0x78,0x00,0x00,0x00,0xff,0xff,0x00,0x4a,
14339
+0xfe,0x56,0x04,0x4a,0x06,0x37,0x10,0x27,0x02,0xfa,0xff,0x6a,
14340
+0x00,0x00,0x12,0x06,0x07,0x3b,0x00,0x00,0xff,0xff,0x00,0x08,
14341
+0x00,0x00,0x06,0xa7,0x06,0x64,0x10,0x27,0x03,0x0e,0x01,0x74,
14342
+0x00,0x00,0x10,0x07,0x07,0x61,0xff,0x5e,0x00,0x00,0x00,0x00,
14343
+0xff,0xff,0x00,0x0f,0x00,0x00,0x06,0x8f,0x06,0x66,0x10,0x06,
14344
+0x03,0x03,0x00,0x00,0xff,0xff,0x00,0x08,0x00,0x00,0x08,0x0f,
14345
+0x06,0x64,0x10,0x27,0x03,0x10,0x01,0x86,0x00,0x00,0x10,0x07,
14346
+0x07,0x61,0xff,0x5e,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x0f,
14347
+0x00,0x00,0x07,0xdf,0x06,0x66,0x10,0x06,0x03,0x04,0x00,0x00,
14348
+0xff,0xff,0x00,0x71,0xfe,0x57,0x06,0x89,0x05,0xd5,0x10,0x27,
14349
+0x07,0x34,0x01,0x7d,0x00,0x00,0x10,0x06,0x03,0x10,0x00,0x00,
14350
+0xff,0xff,0x00,0x8d,0x04,0xda,0x03,0x89,0x06,0xa2,0x10,0x27,
14351
+0x07,0x35,0xff,0x0c,0x00,0x00,0x10,0x07,0x07,0x61,0x01,0x16,
14352
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0xa9,0x04,0xda,0x03,0x64,
14353
+0x06,0xa2,0x10,0x27,0x07,0x35,0xff,0x28,0x00,0x00,0x10,0x06,
14354
+0x07,0x6c,0x12,0x00,0xff,0xff,0x00,0xb6,0x04,0xda,0x03,0x4a,
14355
+0x07,0xf4,0x10,0x27,0x07,0x36,0x00,0x00,0x01,0xbd,0x10,0x06,
14356
+0x07,0x35,0x00,0x00,0xff,0xff,0x00,0x1c,0x00,0x2d,0x02,0xb0,
14357
+0x06,0x48,0x10,0x26,0x03,0x31,0x00,0x00,0x10,0x07,0x02,0x96,
14358
+0xff,0x55,0x00,0x00,0xff,0xff,0x00,0x21,0x00,0x2d,0x02,0xb0,
14359
+0x05,0xf6,0x10,0x26,0x03,0x31,0x00,0x00,0x10,0x07,0x00,0x71,
14360
+0xff,0x4c,0x00,0x00,0xff,0xff,0xff,0xfc,0x00,0x2d,0x02,0xb0,
14361
+0x07,0xf8,0x10,0x26,0x03,0x31,0x00,0x00,0x10,0x07,0x07,0x5f,
14362
+0xff,0x52,0x00,0x00,0xff,0xff,0x00,0x11,0x00,0x2d,0x02,0xb0,
14363
+0x07,0xf8,0x10,0x06,0x03,0x09,0x00,0x00,0xff,0xff,0x00,0x1a,
14364
+0x00,0x2d,0x02,0xb0,0x06,0x37,0x10,0x26,0x03,0x31,0x00,0x00,
14365
+0x10,0x07,0x07,0x36,0xff,0x64,0x00,0x00,0xff,0xff,0x00,0x1a,
14366
+0x00,0x2d,0x02,0xb0,0x07,0x8d,0x10,0x26,0x03,0x31,0x00,0x00,
14367
+0x10,0x07,0x07,0x37,0xff,0x64,0x00,0x00,0xff,0xff,0x00,0x5d,
14368
+0x00,0x00,0x02,0xcb,0x07,0x6d,0x10,0x26,0x03,0x12,0x00,0x00,
14369
+0x10,0x07,0x0d,0x7f,0x03,0x94,0x01,0x75,0xff,0xff,0x00,0x69,
14370
+0x00,0x00,0x02,0xc0,0x07,0x32,0x10,0x26,0x03,0x12,0x00,0x00,
14371
+0x10,0x07,0x00,0x71,0xff,0x94,0x01,0x3c,0xff,0xff,0x00,0x08,
14372
+0x00,0x00,0x04,0x44,0x06,0x64,0x10,0x27,0x03,0x12,0x01,0x8c,
14373
+0x00,0x00,0x10,0x07,0x07,0x61,0xff,0x5e,0x00,0x00,0x00,0x00,
14374
+0xff,0xff,0x00,0x0f,0x00,0x00,0x04,0x0e,0x06,0x66,0x10,0x06,
14375
+0x03,0x05,0x00,0x00,0xff,0xff,0x00,0x88,0x04,0xda,0x03,0x89,
14376
+0x06,0xa2,0x10,0x27,0x07,0x61,0x01,0x16,0x00,0x00,0x10,0x07,
14377
+0x07,0x6d,0xff,0x07,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x85,
14378
+0x04,0xda,0x03,0x76,0x06,0xa2,0x10,0x26,0x07,0x6c,0x24,0x00,
14379
+0x10,0x07,0x07,0x6d,0xff,0x04,0x00,0x00,0xff,0xff,0x00,0xb6,
14380
+0x04,0xda,0x03,0x4a,0x07,0xf4,0x10,0x27,0x07,0x36,0x00,0x00,
14381
+0x01,0xbd,0x10,0x06,0x07,0x6d,0x00,0x00,0xff,0xff,0x00,0x4a,
14382
+0xff,0xf9,0x04,0x78,0x06,0x48,0x10,0x26,0x03,0x3d,0x00,0x00,
14383
+0x10,0x06,0x02,0x96,0x51,0x00,0x00,0x00,0xff,0xff,0x00,0x4a,
14384
+0xff,0xf9,0x04,0x78,0x05,0xf6,0x10,0x26,0x03,0x3d,0x00,0x00,
14385
+0x10,0x06,0x00,0x71,0x5d,0x00,0x00,0x00,0xff,0xff,0x00,0x4a,
14386
+0xff,0xf9,0x04,0x78,0x07,0xf8,0x10,0x26,0x03,0x3d,0x00,0x00,
14387
+0x10,0x06,0x07,0x5f,0x42,0x00,0x00,0x00,0xff,0xff,0x00,0x4a,
14388
+0xff,0xf9,0x04,0x78,0x07,0xf8,0x10,0x06,0x03,0x28,0x00,0x00,
14389
+0xff,0xff,0x00,0x81,0xfe,0x56,0x04,0x4d,0x06,0xa2,0x10,0x26,
14390
+0x03,0x39,0x00,0x00,0x10,0x06,0x07,0x35,0x44,0x00,0x00,0x00,
14391
+0xff,0xff,0x00,0x81,0xfe,0x56,0x04,0x4d,0x06,0xa2,0x10,0x26,
14392
+0x03,0x39,0x00,0x00,0x10,0x06,0x07,0x6d,0x44,0x00,0x00,0x00,
14393
+0xff,0xff,0x00,0x4a,0xff,0xf9,0x04,0x78,0x06,0x37,0x10,0x26,
14394
+0x03,0x3d,0x00,0x00,0x10,0x06,0x07,0x36,0x48,0x00,0x00,0x00,
14395
+0xff,0xff,0x00,0x4a,0xff,0xf9,0x04,0x78,0x07,0x8d,0x10,0x26,
14396
+0x03,0x3d,0x00,0x00,0x10,0x06,0x07,0x37,0x3c,0x00,0x00,0x00,
14397
+0xff,0xff,0xff,0xe9,0x00,0x00,0x05,0x5a,0x07,0x69,0x10,0x26,
14398
+0x03,0x1d,0x00,0x00,0x10,0x07,0x02,0x96,0x00,0xb8,0x01,0x21,
14399
+0xff,0xff,0xff,0xe9,0x00,0x00,0x05,0x5a,0x07,0x31,0x10,0x26,
14400
+0x03,0x1d,0x00,0x00,0x10,0x07,0x00,0x71,0x00,0xb1,0x01,0x3b,
14401
+0xff,0xff,0x00,0x08,0x00,0x00,0x07,0x70,0x06,0x64,0x10,0x27,
14402
+0x03,0x1d,0x02,0x16,0x00,0x00,0x10,0x07,0x07,0x61,0xff,0x5e,
14403
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x0f,0x00,0x00,0x07,0x40,
14404
+0x06,0x66,0x10,0x06,0x03,0x07,0x00,0x00,0xff,0xff,0x00,0x0d,
14405
+0x00,0x00,0x06,0x09,0x06,0xa2,0x10,0x27,0x03,0x1a,0x00,0xf0,
14406
+0x00,0x00,0x10,0x07,0x07,0x6d,0xfe,0x8c,0x00,0x00,0x00,0x00,
14407
+0xff,0xff,0x00,0xaa,0x05,0x37,0x03,0x37,0x07,0xf8,0x10,0x27,
14408
+0x07,0x61,0x00,0x00,0x01,0x94,0x10,0x06,0x00,0x6a,0x00,0x00,
14409
+0xff,0xff,0x00,0xc9,0x05,0x37,0x03,0x52,0x07,0xf8,0x10,0x06,
14410
+0x03,0x00,0x00,0x00,0xff,0xff,0x00,0xaa,0x04,0xec,0x02,0x73,
14411
+0x06,0x64,0x10,0x06,0x00,0x43,0x00,0x00,0xff,0xff,0x00,0x5a,
14412
+0xfe,0x57,0x06,0x22,0x06,0x64,0x10,0x27,0x02,0xfa,0x01,0x40,
14413
+0x00,0x00,0x12,0x06,0x06,0xf5,0x00,0x00,0xff,0xff,0x00,0x5a,
14414
+0xfe,0x57,0x06,0x22,0x04,0x27,0x10,0x27,0x02,0xfa,0x01,0x40,
14415
+0x00,0x00,0x12,0x06,0x03,0x41,0x00,0x00,0xff,0xff,0x00,0x5a,
14416
+0xfe,0x57,0x06,0x22,0x06,0x66,0x10,0x27,0x02,0xfa,0x01,0x40,
14417
+0x00,0x00,0x12,0x06,0x03,0x46,0x00,0x00,0xff,0xff,0x00,0x5a,
14418
+0xff,0xf9,0x06,0x22,0x05,0xd8,0x10,0x27,0x07,0x36,0x01,0x3e,
14419
+0xff,0xa1,0x12,0x06,0x03,0x41,0x00,0x00,0xff,0xff,0x00,0x5a,
14420
+0xfe,0x57,0x06,0x22,0x05,0xd8,0x10,0x27,0x02,0xfa,0x01,0x40,
14421
+0x00,0x00,0x12,0x06,0x07,0x65,0x00,0x00,0xff,0xff,0x00,0x08,
14422
+0xff,0xe3,0x07,0x3f,0x06,0x64,0x10,0x27,0x03,0x18,0x01,0x22,
14423
+0x00,0x00,0x10,0x07,0x07,0x61,0xff,0x5e,0x00,0x00,0x00,0x00,
14424
+0xff,0xff,0x00,0x0f,0xff,0xe3,0x06,0x3d,0x06,0x66,0x10,0x06,
14425
+0x03,0x06,0x00,0x00,0xff,0xff,0x00,0x08,0x00,0x00,0x07,0x65,
14426
+0x06,0x64,0x10,0x27,0x03,0x21,0x01,0x3e,0x00,0x00,0x10,0x07,
14427
+0x07,0x61,0xff,0x5e,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x0f,
14428
+0x00,0x00,0x06,0x57,0x06,0x66,0x10,0x06,0x03,0x08,0x00,0x00,
14429
+0xff,0xff,0x00,0x7d,0xfe,0x57,0x06,0x27,0x05,0xf0,0x10,0x27,
14430
+0x07,0x34,0x01,0x52,0x00,0x00,0x10,0x06,0x03,0x21,0x00,0x00,
14431
+0xff,0xff,0x01,0x89,0x04,0xee,0x03,0x52,0x06,0x66,0x10,0x06,
14432
+0x00,0x76,0x00,0x00,0x00,0x01,0x01,0x81,0x04,0xda,0x02,0x8c,
14433
+0x06,0xa2,0x00,0x13,0x00,0x00,0x01,0x32,0x17,0x16,0x15,0x14,
14434
+0x07,0x06,0x07,0x16,0x17,0x07,0x26,0x27,0x26,0x37,0x35,0x34,
14435
+0x37,0x36,0x02,0x07,0x2c,0x22,0x37,0x26,0x22,0x31,0x0a,0x4f,
14436
+0x4a,0x02,0x05,0xa3,0x0a,0x19,0x27,0x06,0xa2,0x19,0x27,0x46,
14437
+0x38,0x26,0x23,0x04,0x53,0x4c,0x1e,0x02,0x04,0x8a,0xa2,0x10,
14438
+0x2c,0x23,0x37,0x00,0x00,0x01,0x00,0x5a,0x01,0xd7,0x02,0x5a,
14439
+0x02,0x73,0x00,0x03,0x00,0x10,0xb5,0x02,0x00,0x04,0x01,0x00,
14440
+0x04,0x10,0xd4,0xcc,0x31,0x00,0x10,0xd4,0xcc,0x30,0x13,0x21,
14441
+0x15,0x21,0x5a,0x02,0x00,0xfe,0x00,0x02,0x73,0x9c,0x00,0x00,
14442
+0xff,0xff,0x00,0x5a,0x01,0xd7,0x02,0x5a,0x02,0x73,0x12,0x06,
14443
+0x07,0x7e,0x00,0x00,0x00,0x01,0x00,0x5a,0x01,0xdd,0x04,0xbd,
14444
+0x02,0x62,0x00,0x03,0x00,0x0e,0xb4,0x02,0x00,0x04,0x01,0x00,
14445
+0x2f,0xce,0x31,0x00,0x10,0xd4,0xcc,0x30,0x13,0x21,0x15,0x21,
14446
+0x5a,0x04,0x63,0xfb,0x9d,0x02,0x62,0x85,0x00,0x01,0x00,0x5a,
14447
+0x01,0xdd,0x03,0xa6,0x02,0x62,0x00,0x03,0x00,0x0e,0xb4,0x02,
14448
+0x00,0x04,0x01,0x00,0x2f,0xce,0x31,0x00,0x10,0xd4,0xcc,0x30,
14449
+0x13,0x21,0x15,0x21,0x5a,0x03,0x4c,0xfc,0xb4,0x02,0x62,0x85,
14450
+0x00,0x01,0x00,0x5a,0x01,0xdd,0x07,0xa6,0x02,0x62,0x00,0x03,
14451
+0x00,0x0e,0xb4,0x02,0x00,0x04,0x01,0x00,0x2f,0xcc,0x31,0x00,
14452
+0x10,0xd4,0xcc,0x30,0x13,0x21,0x15,0x21,0x5a,0x07,0x4c,0xf8,
14453
+0xb4,0x02,0x62,0x85,0x00,0x01,0x00,0x00,0x01,0xdd,0x08,0x00,
14454
+0x02,0x62,0x00,0x03,0x00,0x0e,0xb4,0x02,0x00,0x04,0x01,0x00,
14455
+0x2f,0xcc,0x31,0x00,0x10,0xd4,0xcc,0x30,0x11,0x21,0x15,0x21,
14456
+0x08,0x00,0xf8,0x00,0x02,0x62,0x85,0x00,0xff,0xff,0x01,0x08,
14457
+0xfe,0x1d,0x02,0xf4,0x06,0x1d,0x10,0x27,0x00,0x5f,0x01,0x4a,
14458
+0x00,0x00,0x10,0x06,0x00,0x5f,0x00,0x00,0xff,0xff,0x00,0x00,
14459
+0xfe,0x1d,0x04,0x00,0xff,0x5d,0x10,0x26,0x00,0x42,0x00,0x00,
14460
+0x10,0x07,0x00,0x42,0x00,0x00,0x00,0xf0,0x00,0x01,0x00,0xd1,
14461
+0x03,0xf6,0x02,0x25,0x05,0xf0,0x00,0x08,0x00,0x1b,0x40,0x0c,
14462
+0x03,0x00,0x04,0x08,0x69,0x09,0x08,0x00,0x03,0x12,0x05,0x09,
14463
+0x10,0xd4,0xfc,0xc4,0x39,0x31,0x00,0x10,0xf4,0xcc,0x39,0x39,
14464
+0x30,0x01,0x0e,0x01,0x1d,0x01,0x23,0x3e,0x01,0x37,0x02,0x25,
14465
+0x4d,0x45,0xc2,0x01,0x7d,0x88,0x05,0xa0,0x40,0xaa,0x81,0x3f,
14466
+0xae,0xf1,0x5b,0x00,0x00,0x01,0x00,0x91,0x03,0xdb,0x01,0xe7,
14467
+0x05,0xd5,0x00,0x08,0x00,0x1d,0x40,0x0d,0x03,0x00,0x08,0x04,
14468
+0x62,0x09,0x08,0x00,0x05,0x12,0x00,0x03,0x09,0x10,0xd4,0xc4,
14469
+0xec,0x12,0x39,0x31,0x00,0x10,0xf4,0xcc,0x39,0x39,0x30,0x13,
14470
+0x3e,0x01,0x3d,0x01,0x33,0x0e,0x01,0x07,0x91,0x4e,0x46,0xc2,
14471
+0x01,0x7e,0x89,0x04,0x2b,0x3f,0xac,0x82,0x3d,0xad,0xf2,0x5b,
14472
+0x00,0x01,0x00,0x5a,0xfe,0xe9,0x01,0xd5,0x00,0xe3,0x00,0x08,
14473
+0x00,0x1c,0x40,0x0c,0x03,0x00,0x08,0x04,0x09,0x08,0x00,0x05,
14474
+0x12,0x00,0x03,0x09,0x10,0xd4,0xc4,0xec,0x12,0x39,0x31,0x00,
14475
+0x10,0xd4,0xcc,0x39,0x39,0x30,0x17,0x3e,0x01,0x3d,0x01,0x33,
14476
+0x0e,0x01,0x07,0x5a,0x5f,0x57,0xc5,0x08,0x91,0x92,0xc7,0x45,
14477
+0xbb,0x85,0x25,0xab,0xf5,0x5a,0x00,0x00,0x00,0x01,0x00,0x91,
14478
+0x03,0xdb,0x01,0xe7,0x05,0xd5,0x00,0x08,0x00,0x00,0x01,0x07,
14479
+0x2e,0x01,0x27,0x33,0x15,0x14,0x16,0x01,0xe7,0x4e,0x89,0x7e,
14480
+0x01,0xc2,0x46,0x04,0x2b,0x50,0x5b,0xf2,0xad,0x3d,0x82,0xac,
14481
+0x00,0x02,0x00,0xd1,0x03,0xf6,0x03,0xb0,0x05,0xf0,0x00,0x08,
14482
+0x00,0x11,0x00,0x2f,0x40,0x18,0x0c,0x09,0x03,0x00,0x04,0x0d,
14483
+0x04,0x11,0x08,0x69,0x12,0x11,0x0c,0x09,0x08,0x00,0x03,0x12,
14484
+0x05,0x09,0x0c,0x12,0x0e,0x12,0x10,0xd4,0xfc,0xc4,0xd4,0xfc,
14485
+0xc4,0x39,0x11,0x12,0x39,0x31,0x00,0x10,0xf4,0x3c,0xcc,0x32,
14486
+0x17,0x39,0x30,0x01,0x0e,0x01,0x1d,0x01,0x23,0x3e,0x01,0x37,
14487
+0x05,0x0e,0x01,0x1d,0x01,0x23,0x3e,0x01,0x37,0x03,0xb0,0x4c,
14488
+0x45,0xc3,0x02,0x7c,0x88,0xfe,0xc3,0x4d,0x45,0xc2,0x01,0x7d,
14489
+0x88,0x05,0xa0,0x40,0xaa,0x81,0x3f,0xaf,0xf0,0x5b,0x50,0x40,
14490
+0xaa,0x81,0x3f,0xae,0xf1,0x5b,0x00,0x00,0x00,0x02,0x00,0x91,
14491
+0x03,0xdb,0x03,0x72,0x05,0xd5,0x00,0x08,0x00,0x11,0x00,0x33,
14492
+0x40,0x1a,0x0c,0x09,0x03,0x00,0x04,0x11,0x08,0x0d,0x04,0x62,
14493
+0x12,0x11,0x0c,0x09,0x08,0x03,0x00,0x0e,0x12,0x09,0x0c,0x05,
14494
+0x12,0x00,0x03,0x12,0x10,0xd4,0xc4,0xfc,0xd4,0xc4,0xec,0x11,
14495
+0x12,0x39,0x11,0x12,0x39,0x31,0x00,0x10,0xf4,0x3c,0xcc,0x32,
14496
+0x17,0x39,0x30,0x13,0x3e,0x01,0x3d,0x01,0x33,0x0e,0x01,0x07,
14497
+0x25,0x3e,0x01,0x3d,0x01,0x33,0x0e,0x01,0x07,0x91,0x4e,0x46,
14498
+0xc2,0x01,0x7e,0x89,0x01,0x40,0x4c,0x45,0xc2,0x01,0x7d,0x87,
14499
+0x04,0x2b,0x3f,0xac,0x82,0x3d,0xad,0xf2,0x5b,0x50,0x3f,0xab,
14500
+0x81,0x3f,0xaf,0xf0,0x5b,0x00,0x00,0x00,0x00,0x02,0x00,0x5a,
14501
+0xfe,0xe9,0x03,0x60,0x00,0xe3,0x00,0x08,0x00,0x11,0x00,0x32,
14502
+0x40,0x19,0x0c,0x03,0x09,0x00,0x04,0x11,0x08,0x0d,0x04,0x12,
14503
+0x11,0x0c,0x09,0x08,0x03,0x00,0x0e,0x12,0x09,0x0c,0x05,0x12,
14504
+0x00,0x03,0x12,0x10,0xd4,0xc4,0xfc,0xd4,0xc4,0xec,0x11,0x12,
14505
+0x39,0x11,0x12,0x39,0x31,0x00,0x10,0xd4,0x3c,0xcc,0x32,0x17,
14506
+0x39,0x30,0x17,0x3e,0x01,0x3d,0x01,0x33,0x0e,0x01,0x07,0x25,
14507
+0x3e,0x01,0x3d,0x01,0x33,0x0e,0x01,0x07,0x5a,0x5f,0x57,0xc5,
14508
+0x08,0x91,0x92,0x01,0x3b,0x5f,0x58,0xc4,0x07,0x91,0x93,0xc7,
14509
+0x45,0xbb,0x85,0x25,0xab,0xf5,0x5a,0x50,0x45,0xbb,0x85,0x25,
14510
+0xab,0xf5,0x5a,0x00,0x00,0x02,0x00,0x91,0x03,0xdb,0x03,0x72,
14511
+0x05,0xd5,0x00,0x08,0x00,0x11,0x00,0x00,0x01,0x07,0x2e,0x01,
14512
+0x27,0x33,0x15,0x14,0x16,0x05,0x07,0x2e,0x01,0x27,0x33,0x15,
14513
+0x14,0x16,0x03,0x72,0x4e,0x89,0x7e,0x01,0xc2,0x46,0xfe,0xc0,
14514
+0x4e,0x87,0x7d,0x01,0xc2,0x45,0x04,0x2b,0x50,0x5b,0xf2,0xad,
14515
+0x3d,0x82,0xac,0x3f,0x50,0x5b,0xf0,0xaf,0x3f,0x81,0xab,0x00,
14516
+0x00,0x01,0x00,0x39,0xff,0x3b,0x03,0xc7,0x05,0xd5,0x00,0x0b,
14517
+0x00,0x36,0x40,0x1b,0x0a,0x03,0xa4,0x0b,0x02,0x09,0x04,0xa4,
14518
+0x08,0x05,0x00,0x62,0x06,0x0c,0x03,0x06,0x01,0x48,0x05,0x02,
14519
+0x07,0x00,0x48,0x09,0x0b,0x08,0x0c,0x10,0xd4,0x3c,0xc4,0xe4,
14520
+0x32,0xdc,0x3c,0xe4,0x32,0xc4,0x31,0x00,0x10,0xc4,0xf4,0xd4,
14521
+0x3c,0xe4,0x32,0xdc,0x3c,0xe4,0x32,0x30,0x01,0x33,0x03,0x25,
14522
+0x15,0x25,0x13,0x23,0x13,0x05,0x35,0x05,0x01,0xa6,0xb4,0x23,
14523
+0x01,0x90,0xfe,0x70,0x23,0xb4,0x23,0xfe,0x70,0x01,0x90,0x05,
14524
+0xd5,0xfe,0x46,0x1c,0xa6,0x1d,0xfb,0x8d,0x04,0x73,0x1d,0xa6,
14525
+0x1c,0x00,0x00,0x00,0x00,0x01,0x00,0x39,0xff,0x3b,0x03,0xc7,
14526
+0x05,0xd5,0x00,0x15,0x00,0x5c,0x40,0x31,0x14,0x03,0xa4,0x15,
14527
+0x02,0x13,0x04,0xa4,0x05,0x0e,0x09,0xa4,0x0d,0x0a,0x0f,0x08,
14528
+0xa4,0x10,0x07,0x0b,0x12,0x05,0x00,0x62,0x0b,0x16,0x08,0x03,
14529
+0x0b,0x06,0x01,0x48,0x0a,0x07,0x05,0x03,0x02,0x11,0x0c,0x00,
14530
+0x48,0x13,0x0e,0x15,0x12,0x10,0x03,0x0d,0x16,0x10,0xd4,0x17,
14531
+0x3c,0xc4,0x32,0xe4,0x32,0x32,0xdc,0x17,0x3c,0xe4,0x32,0x32,
14532
+0xc4,0x32,0x31,0x00,0x10,0xc4,0xf4,0xc4,0x32,0x10,0xd6,0x3c,
14533
+0xe6,0x32,0xdc,0x3c,0xe4,0x32,0x10,0xe4,0x32,0xdc,0x3c,0xe6,
14534
+0x32,0x30,0x01,0x33,0x03,0x25,0x15,0x25,0x13,0x03,0x25,0x15,
14535
+0x25,0x13,0x23,0x13,0x05,0x35,0x05,0x03,0x13,0x05,0x35,0x05,
14536
+0x01,0xa6,0xb4,0x23,0x01,0x90,0xfe,0x70,0x23,0x23,0x01,0x90,
14537
+0xfe,0x70,0x23,0xb4,0x23,0xfe,0x70,0x01,0x90,0x23,0x23,0xfe,
14538
+0x70,0x01,0x90,0x05,0xd5,0xfe,0x46,0x1c,0xa6,0x1d,0xfe,0xd9,
14539
+0xfe,0xdb,0x1d,0xa6,0x1d,0xfe,0x45,0x01,0xbb,0x1d,0xa6,0x1d,
14540
+0x01,0x25,0x01,0x27,0x1d,0xa6,0x1c,0x00,0x00,0x01,0x01,0x33,
14541
+0x01,0xd1,0x03,0x85,0x04,0x21,0x00,0x0b,0x00,0x10,0xb5,0x09,
14542
+0x03,0x0c,0x06,0x00,0x0c,0x10,0xd4,0xcc,0x31,0x00,0x10,0xd4,
14543
+0xcc,0x30,0x01,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,
14544
+0x22,0x26,0x01,0x33,0xad,0x7e,0x7c,0xab,0xac,0x7d,0x7d,0xac,
14545
+0x02,0xfa,0x7c,0xab,0xab,0x7c,0x7d,0xac,0xac,0x00,0x00,0x00,
14546
+0x00,0x01,0x01,0x33,0x01,0x81,0x03,0xd5,0x04,0x71,0x00,0x02,
14547
+0x00,0x00,0x01,0x11,0x01,0x01,0x33,0x02,0xa2,0x01,0x81,0x02,
14548
+0xf0,0xfe,0x88,0x00,0x00,0x01,0x00,0xd1,0xff,0xe3,0x01,0xdb,
14549
+0x00,0xee,0x00,0x0a,0x00,0x00,0x36,0x34,0x36,0x33,0x32,0x16,
14550
+0x15,0x14,0x06,0x23,0x22,0xd1,0x4d,0x38,0x37,0x4e,0x4e,0x37,
14551
+0x39,0x30,0x70,0x4e,0x4e,0x38,0x37,0x4e,0x00,0x02,0x00,0xd1,
14552
+0xff,0xe3,0x04,0x85,0x00,0xee,0x00,0x0a,0x00,0x15,0x00,0x00,
14553
+0x24,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x24,
14554
+0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x03,0x7b,
14555
+0x4d,0x38,0x37,0x4e,0x4e,0x37,0x39,0xfd,0x0a,0x4d,0x38,0x37,
14556
+0x4e,0x4e,0x37,0x39,0x30,0x70,0x4e,0x4e,0x38,0x37,0x4e,0x4d,
14557
+0x70,0x4e,0x4e,0x38,0x37,0x4e,0x00,0x00,0x00,0x03,0x00,0xd1,
14558
+0xff,0xe3,0x07,0x2f,0x00,0xee,0x00,0x0b,0x00,0x17,0x00,0x23,
14559
+0x00,0x26,0x40,0x13,0x1b,0x0f,0x03,0x61,0x21,0x15,0x09,0x60,
14560
+0x24,0x00,0x00,0x06,0x0c,0x00,0x12,0x1e,0x00,0x18,0x24,0x10,
14561
+0xd4,0xfc,0xd4,0xec,0xd4,0xec,0x31,0x00,0x10,0xf4,0x3c,0x3c,
14562
+0xec,0x32,0x32,0x30,0x25,0x34,0x36,0x33,0x32,0x16,0x15,0x14,
14563
+0x06,0x23,0x22,0x26,0x25,0x34,0x36,0x33,0x32,0x16,0x15,0x14,
14564
+0x06,0x23,0x22,0x26,0x25,0x34,0x36,0x33,0x32,0x16,0x15,0x14,
14565
+0x06,0x23,0x22,0x26,0x06,0x25,0x4d,0x38,0x37,0x4e,0x4e,0x37,
14566
+0x39,0x4c,0xfd,0x56,0x4d,0x38,0x37,0x4e,0x4e,0x37,0x39,0x4c,
14567
+0xfd,0x56,0x4d,0x38,0x37,0x4e,0x4e,0x37,0x39,0x4c,0x68,0x38,
14568
+0x4e,0x4e,0x38,0x37,0x4e,0x4d,0x38,0x38,0x4e,0x4e,0x38,0x37,
14569
+0x4e,0x4d,0x38,0x38,0x4e,0x4e,0x38,0x37,0x4e,0x4d,0x00,0x00,
14570
+0x00,0x07,0x00,0x71,0xff,0xe3,0x0a,0x4c,0x05,0xf0,0x00,0x0b,
14571
+0x00,0x17,0x00,0x23,0x00,0x30,0x00,0x3c,0x00,0x40,0x00,0x4c,
14572
+0x00,0x7c,0x40,0x42,0x3f,0x03,0x40,0x3d,0x40,0x3d,0x03,0x3e,
14573
+0x3f,0x3e,0x4d,0x0c,0x47,0x24,0x6a,0x00,0x1e,0x6a,0x47,0x18,
14574
+0x6a,0x3d,0x2a,0x12,0x6a,0x31,0x00,0x3f,0x37,0x06,0x60,0x41,
14575
+0x3d,0x69,0x4d,0x24,0x3e,0x30,0x03,0x2d,0x27,0x40,0x21,0x1b,
14576
+0x27,0x0c,0x3a,0x15,0x0c,0x03,0x0f,0x0c,0x09,0x2d,0x0c,0x3a,
14577
+0x34,0x21,0x0c,0x44,0x34,0x1b,0x0c,0x4a,0x0b,0x4d,0x10,0xf4,
14578
+0xec,0xc4,0xd4,0xec,0x10,0xc6,0xee,0xd5,0xee,0xd6,0xee,0x10,
14579
+0xee,0x11,0x12,0x39,0x11,0x12,0x17,0x39,0x31,0x00,0x10,0xe4,
14580
+0x32,0xf4,0x3c,0x3c,0xc4,0x32,0xec,0x32,0x10,0xee,0xd6,0xee,
14581
+0x10,0xee,0x11,0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x05,0xed,
14582
+0x07,0x10,0x05,0xed,0x59,0x22,0x01,0x32,0x16,0x15,0x14,0x06,
14583
+0x23,0x22,0x26,0x35,0x34,0x36,0x17,0x22,0x06,0x15,0x14,0x16,
14584
+0x33,0x32,0x36,0x35,0x34,0x26,0x01,0x22,0x06,0x15,0x14,0x16,
14585
+0x33,0x32,0x36,0x35,0x34,0x26,0x01,0x22,0x06,0x15,0x14,0x16,
14586
+0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x27,0x32,0x16,0x15,0x14,
14587
+0x06,0x23,0x22,0x26,0x35,0x34,0x36,0x13,0x33,0x01,0x23,0x13,
14588
+0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x35,0x34,0x36,0x08,
14589
+0xf4,0x9e,0xba,0xbb,0x9d,0xa0,0xba,0xbb,0x9f,0x57,0x64,0x64,
14590
+0x57,0x56,0x62,0x63,0xf8,0x82,0x58,0x63,0x64,0x57,0x56,0x62,
14591
+0x63,0x03,0xb1,0x58,0x62,0x64,0x56,0x56,0x62,0x61,0x55,0x02,
14592
+0x9e,0xba,0xbb,0x9d,0xa0,0xba,0xbb,0x22,0x98,0xfc,0x5a,0x98,
14593
+0x1b,0x9e,0xbc,0xbb,0x9f,0x9f,0xb9,0xba,0x03,0x10,0xdc,0xbb,
14594
+0xbb,0xdb,0xdb,0xbb,0xbc,0xdb,0x5a,0xa8,0x95,0x93,0xa7,0xa7,
14595
+0x93,0x94,0xa9,0x02,0xdd,0xa6,0x95,0x92,0xa7,0xa6,0x93,0x94,
14596
+0xa7,0xfd,0x21,0xa6,0x95,0x93,0xa7,0xa7,0x93,0x93,0xa8,0x5c,
14597
+0xdc,0xbb,0xbb,0xdb,0xdb,0xbb,0xbc,0xdb,0x02,0xe0,0xf9,0xf3,
14598
+0x06,0x0d,0xdb,0xbb,0xbd,0xda,0xdb,0xbc,0xba,0xdc,0x00,0x00,
14599
+0x00,0x09,0x00,0x71,0xff,0xe3,0x0d,0x6f,0x05,0xf0,0x00,0x0a,
14600
+0x00,0x16,0x00,0x21,0x00,0x2d,0x00,0x39,0x00,0x44,0x00,0x4f,
14601
+0x00,0x53,0x00,0x5d,0x00,0x00,0x01,0x32,0x16,0x10,0x06,0x23,
14602
+0x22,0x26,0x35,0x34,0x36,0x17,0x22,0x06,0x15,0x14,0x16,0x33,
14603
+0x32,0x36,0x35,0x34,0x26,0x25,0x32,0x16,0x10,0x06,0x23,0x22,
14604
+0x26,0x35,0x34,0x36,0x17,0x22,0x06,0x15,0x14,0x16,0x33,0x32,
14605
+0x36,0x35,0x34,0x26,0x01,0x22,0x06,0x15,0x14,0x16,0x33,0x32,
14606
+0x36,0x35,0x34,0x26,0x01,0x22,0x06,0x15,0x14,0x16,0x32,0x36,
14607
+0x10,0x26,0x23,0x27,0x32,0x16,0x10,0x06,0x23,0x22,0x26,0x35,
14608
+0x34,0x36,0x13,0x33,0x01,0x23,0x02,0x20,0x16,0x15,0x14,0x06,
14609
+0x20,0x26,0x35,0x34,0x0c,0x17,0x9e,0xba,0xbb,0x9d,0xa0,0xba,
14610
+0xbb,0x9f,0x57,0x64,0x64,0x57,0x56,0x62,0x63,0xfc,0x88,0x9e,
14611
+0xba,0xbb,0x9d,0xa0,0xba,0xbb,0x9f,0x57,0x64,0x64,0x57,0x56,
14612
+0x62,0x63,0xf8,0x82,0x58,0x63,0x64,0x57,0x56,0x62,0x63,0x03,
14613
+0xb1,0x58,0x62,0x64,0xac,0x62,0x61,0x55,0x02,0x9e,0xba,0xbb,
14614
+0x9d,0xa0,0xba,0xbb,0x22,0x98,0xfc,0x5a,0x98,0x83,0x01,0x3c,
14615
+0xbc,0xbb,0xfe,0xc2,0xb9,0x03,0x10,0xdc,0xfe,0x8a,0xdb,0xdb,
14616
+0xbb,0xbc,0xdb,0x5a,0xa8,0x95,0x93,0xa7,0xa7,0x93,0x94,0xa9,
14617
+0x5a,0xdc,0xfe,0x8a,0xdb,0xdb,0xbb,0xbc,0xdb,0x5a,0xa8,0x95,
14618
+0x93,0xa7,0xa7,0x93,0x94,0xa9,0x02,0xdd,0xa6,0x95,0x92,0xa7,
14619
+0xa6,0x93,0x94,0xa7,0xfd,0x21,0xa6,0x95,0x93,0xa7,0xa7,0x01,
14620
+0x26,0xa8,0x5c,0xdc,0xfe,0x8a,0xdb,0xdb,0xbb,0xbc,0xdb,0x02,
14621
+0xe0,0xf9,0xf3,0x06,0x0d,0xdb,0xbb,0xbd,0xda,0xdb,0xbc,0xba,
14622
+0x00,0x01,0x00,0x28,0x04,0x60,0x01,0xa0,0x05,0xd5,0x00,0x03,
14623
+0x00,0x00,0x1b,0x01,0x33,0x01,0x28,0xad,0xcb,0xfe,0xdf,0x04,
14624
+0x60,0x01,0x75,0xfe,0x8b,0x00,0x00,0x00,0xff,0xff,0x00,0x28,
14625
+0x04,0x60,0x02,0xcc,0x05,0xd5,0x10,0x27,0x07,0x9d,0x01,0x2c,
14626
+0x00,0x00,0x10,0x06,0x07,0x9d,0x00,0x00,0xff,0xff,0x00,0x28,
14627
+0x04,0x60,0x03,0xf8,0x05,0xd5,0x10,0x27,0x07,0x9d,0x02,0x58,
14628
+0x00,0x00,0x10,0x26,0x07,0x9d,0x00,0x00,0x10,0x07,0x07,0x9d,
14629
+0x01,0x2c,0x00,0x00,0x00,0x01,0x00,0x28,0x04,0x60,0x01,0xa0,
14630
+0x05,0xd5,0x00,0x03,0x00,0x00,0x01,0x23,0x01,0x33,0x01,0xa0,
14631
+0x57,0xfe,0xdf,0xcb,0x04,0x60,0x01,0x75,0xff,0xff,0x00,0x28,
14632
+0x04,0x60,0x02,0xcc,0x05,0xd5,0x10,0x27,0x07,0xa0,0x01,0x2c,
14633
+0x00,0x00,0x10,0x06,0x07,0xa0,0x00,0x00,0xff,0xff,0x00,0x28,
14634
+0x04,0x60,0x03,0xf8,0x05,0xd5,0x10,0x27,0x07,0xa0,0x01,0x2c,
14635
+0x00,0x00,0x10,0x27,0x07,0xa0,0x02,0x58,0x00,0x00,0x10,0x06,
14636
+0x07,0xa0,0x00,0x00,0x00,0x01,0x00,0x0b,0xfe,0x1d,0x02,0xab,
14637
+0xff,0xc3,0x00,0x05,0x00,0x00,0x01,0x23,0x27,0x07,0x23,0x01,
14638
+0x02,0xab,0x94,0xbb,0xbc,0x95,0x01,0x52,0xfe,0x1d,0xf9,0xf9,
14639
+0x01,0xa6,0x00,0x00,0x00,0x01,0x00,0x9e,0x00,0x8d,0x02,0x73,
14640
+0x04,0x23,0x00,0x06,0x00,0x23,0x40,0x10,0x03,0x04,0x01,0x00,
14641
+0x05,0x06,0x04,0x02,0x07,0x03,0x00,0x5a,0x02,0x05,0x02,0x07,
14642
+0x10,0xf4,0xc4,0xec,0x32,0x31,0x00,0x10,0xd4,0xc4,0xc4,0xc4,
14643
+0xd4,0xc4,0x10,0xc6,0x30,0x01,0x15,0x09,0x01,0x15,0x01,0x35,
14644
+0x02,0x73,0xfe,0xd7,0x01,0x29,0xfe,0x2b,0x04,0x23,0x73,0xfe,
14645
+0xa8,0xfe,0xa8,0x73,0x01,0xa2,0x52,0x00,0x00,0x01,0x00,0xc1,
14646
+0x00,0x8d,0x02,0x96,0x04,0x23,0x00,0x06,0x00,0x23,0x40,0x10,
14647
+0x04,0x03,0x06,0x00,0x03,0x01,0x02,0x05,0x07,0x05,0x01,0x5a,
14648
+0x03,0x00,0x02,0x07,0x10,0xf4,0x3c,0xfc,0xc4,0x31,0x00,0x10,
14649
+0xd4,0xc4,0xc4,0xc4,0xd4,0xc4,0x10,0xc6,0x30,0x13,0x01,0x15,
14650
+0x01,0x35,0x09,0x01,0xc1,0x01,0xd5,0xfe,0x2b,0x01,0x28,0xfe,
14651
+0xd8,0x04,0x23,0xfe,0x5e,0x52,0xfe,0x5e,0x73,0x01,0x58,0x01,
14652
+0x58,0x00,0x00,0x00,0xff,0xff,0x00,0x8b,0xff,0xe3,0x03,0xad,
14653
+0x05,0xd5,0x10,0x27,0x00,0x04,0xff,0x74,0x00,0x00,0x10,0x07,
14654
+0x00,0x04,0x01,0x8c,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x8b,
14655
+0xff,0xe3,0x03,0xe7,0x05,0xf0,0x00,0x12,0x00,0x1d,0x00,0x26,
14656
+0x00,0x00,0x13,0x3e,0x01,0x33,0x32,0x04,0x15,0x14,0x06,0x07,
14657
+0x15,0x23,0x11,0x03,0x06,0x07,0x06,0x07,0x23,0x12,0x34,0x36,
14658
+0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x13,0x03,0x36,0x37,
14659
+0x36,0x35,0x34,0x27,0x26,0x8b,0x6a,0xbf,0x54,0xde,0x01,0x01,
14660
+0xdd,0xdf,0x7b,0x3a,0x18,0x14,0x49,0x15,0x61,0xdd,0x4d,0x39,
14661
+0x37,0x4e,0x4e,0x37,0x39,0xb3,0x35,0x53,0x34,0x5a,0x49,0x29,
14662
+0x05,0x93,0x2f,0x2e,0xd6,0xb6,0xba,0xec,0x33,0xfe,0x01,0x13,
14663
+0x02,0xcb,0x0d,0x12,0x42,0x7b,0xfb,0xa1,0x70,0x4e,0x4e,0x38,
14664
+0x37,0x4e,0x05,0x9b,0xfd,0x84,0x28,0x3b,0x65,0x9c,0x89,0x4f,
14665
+0x2d,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0x05,0xbb,0x04,0x00,
14666
+0x06,0x0b,0x10,0x07,0x00,0x42,0x00,0x00,0x07,0x9e,0x00,0x00,
14667
+0xff,0xff,0x00,0x21,0xff,0xc7,0x07,0xdf,0x06,0x83,0x10,0x27,
14668
+0x00,0x0d,0x02,0x00,0x00,0x93,0x10,0x27,0x00,0x0d,0x04,0x00,
14669
+0xfd,0x7b,0x10,0x07,0x00,0x0d,0x00,0x00,0xfd,0x7b,0x00,0x00,
14670
+0x00,0x01,0xfe,0x89,0xff,0xe3,0x02,0xcd,0x05,0xf0,0x00,0x03,
14671
+0x00,0x2b,0x40,0x13,0x02,0x03,0x03,0x00,0x03,0x00,0x03,0x01,
14672
+0x02,0x01,0x4d,0x02,0x60,0x00,0x69,0x04,0x01,0x03,0x04,0x10,
14673
+0xd4,0xcc,0x31,0x00,0x10,0xe4,0xe4,0x30,0x4b,0x53,0x58,0x07,
14674
+0x10,0x05,0xed,0x07,0x10,0x05,0xed,0x59,0x22,0x01,0x33,0x01,
14675
+0x23,0x02,0x37,0x96,0xfc,0x52,0x96,0x05,0xf0,0xf9,0xf3,0x00,
14676
+0x00,0x01,0x00,0xb0,0xfe,0xf2,0x02,0x81,0x06,0x14,0x00,0x0b,
14677
+0x00,0x00,0x13,0x11,0x21,0x15,0x21,0x11,0x33,0x15,0x23,0x11,
14678
+0x21,0x15,0xb0,0x01,0xd1,0xfe,0xee,0xe9,0xe9,0x01,0x12,0xfe,
14679
+0xf2,0x07,0x22,0x6a,0xfc,0xfe,0x4a,0xfc,0xfe,0x6a,0x00,0x00,
14680
+0x00,0x01,0x00,0x9e,0xfe,0xf2,0x02,0x6f,0x06,0x14,0x00,0x0b,
14681
+0x00,0x00,0x13,0x35,0x33,0x11,0x21,0x35,0x21,0x11,0x21,0x35,
14682
+0x21,0x11,0xc7,0xe9,0xfe,0xee,0x01,0xd1,0xfe,0x2f,0x01,0x12,
14683
+0x02,0x5e,0x4a,0x03,0x02,0x6a,0xf8,0xde,0x6a,0x03,0x02,0x00,
14684
+0xff,0xff,0x00,0x45,0xff,0xe3,0x07,0x89,0x05,0xf0,0x10,0x26,
14685
+0x00,0x22,0xba,0x00,0x10,0x07,0x00,0x22,0x03,0xa2,0x00,0x00,
14686
+0xff,0xff,0x00,0x8b,0xff,0xe3,0x05,0x7c,0x05,0xf0,0x10,0x26,
14687
+0x00,0x22,0x00,0x00,0x10,0x07,0x00,0x04,0x03,0x5b,0x00,0x00,
14688
+0xff,0xff,0x00,0x8b,0xff,0xe3,0x05,0x7c,0x05,0xf0,0x10,0x27,
14689
+0x00,0x04,0xff,0x74,0x00,0x00,0x10,0x07,0x00,0x22,0x01,0x95,
14690
+0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x84,0xff,0x3b,0x04,0x79,
14691
+0x05,0xd5,0x00,0x0f,0x00,0x00,0x01,0x32,0x04,0x15,0x14,0x06,
14692
+0x07,0x11,0x23,0x11,0x23,0x11,0x23,0x11,0x23,0x35,0x02,0x9e,
14693
+0xd7,0x01,0x04,0xeb,0xd7,0x6b,0xe7,0x6b,0x76,0x05,0xd5,0xe8,
14694
+0xbe,0xb8,0xdd,0x11,0xfc,0xb2,0x06,0x2f,0xf9,0xd1,0x06,0x2f,
14695
+0x6b,0x00,0x00,0x00,0x00,0x02,0x00,0xd8,0x01,0xc2,0x03,0x28,
14696
+0x04,0x12,0x00,0x03,0x00,0x0b,0x00,0x00,0x01,0x33,0x11,0x07,
14697
+0x2b,0x01,0x22,0x26,0x35,0x34,0x36,0x33,0x02,0x79,0xaf,0xaf,
14698
+0x76,0x02,0x7d,0xac,0xad,0x7e,0x04,0x12,0xfd,0xb1,0x01,0xac,
14699
+0x7d,0x7c,0xab,0x00,0x00,0x02,0x00,0xd8,0x01,0xc2,0x03,0x28,
14700
+0x04,0x12,0x00,0x03,0x00,0x0b,0x00,0x00,0x01,0x27,0x11,0x3b,
14701
+0x01,0x32,0x16,0x15,0x14,0x06,0x2b,0x01,0x01,0x87,0xaf,0xaf,
14702
+0x76,0x7e,0xad,0xac,0x7d,0x02,0x01,0xc2,0x01,0x02,0x4f,0xab,
14703
+0x7c,0x7d,0xac,0x00,0xff,0xff,0x00,0x21,0xff,0xc7,0x03,0xdf,
14704
+0x03,0x6b,0x12,0x07,0x00,0x0d,0x00,0x00,0xfd,0x7b,0x00,0x00,
14705
+0x00,0x02,0x00,0xcf,0xfe,0xe9,0x02,0x68,0x03,0x79,0x00,0x0a,
14706
+0x00,0x13,0x00,0x00,0x05,0x30,0x07,0x2e,0x01,0x27,0x30,0x33,
14707
+0x15,0x14,0x16,0x02,0x14,0x06,0x22,0x26,0x35,0x34,0x36,0x32,
14708
+0x02,0x68,0x50,0x92,0x91,0x08,0xc5,0x58,0x31,0x4d,0x70,0x4d,
14709
+0x4d,0x70,0xc7,0x50,0x5a,0xf5,0xab,0x25,0x85,0xbb,0x03,0xae,
14710
+0x70,0x4d,0x4d,0x38,0x37,0x4e,0x00,0x00,0xff,0xff,0x00,0x21,
14711
+0xff,0xf4,0x03,0xdf,0x07,0x6f,0x10,0x27,0x00,0x0d,0x00,0x00,
14712
+0x01,0x7f,0x12,0x07,0x00,0x0d,0x00,0x00,0xfd,0xa8,0x00,0x00,
14713
+0xff,0xff,0x00,0x91,0xff,0x42,0x03,0x59,0x05,0xd5,0x10,0x27,
14714
+0x00,0x11,0xff,0xd9,0x04,0x48,0x10,0x27,0x00,0x11,0x01,0x8e,
14715
+0x00,0x00,0x10,0x07,0x00,0x12,0x00,0x91,0x00,0x00,0x00,0x00,
14716
+0x00,0x01,0x00,0x64,0x01,0xdd,0x07,0x9c,0x03,0x27,0x00,0x1b,
14717
+0x00,0x00,0x01,0x15,0x0e,0x01,0x23,0x22,0x2f,0x01,0x26,0x27,
14718
+0x26,0x23,0x22,0x06,0x07,0x35,0x3e,0x01,0x33,0x32,0x1f,0x01,
14719
+0x16,0x17,0x16,0x33,0x32,0x36,0x07,0x9c,0x96,0xe8,0x8c,0x9e,
14720
+0xf7,0x0f,0x10,0x22,0xdc,0x8e,0x8a,0xde,0x86,0x96,0xe7,0x8d,
14721
+0x9e,0xf7,0x0f,0x10,0x1e,0xda,0x92,0x8a,0xe2,0x03,0x27,0x94,
14722
+0x58,0x54,0x42,0x04,0x04,0x09,0x39,0x49,0x4d,0x98,0x57,0x51,
14723
+0x42,0x04,0x04,0x08,0x3a,0x4a,0x00,0x00,0xff,0xff,0x00,0x28,
14724
+0x04,0x60,0x05,0x24,0x05,0xd5,0x10,0x27,0x07,0x9d,0x02,0x58,
14725
+0x00,0x00,0x10,0x27,0x07,0x9d,0x03,0x84,0x00,0x00,0x10,0x26,
14726
+0x07,0x9d,0x00,0x00,0x10,0x07,0x07,0x9d,0x01,0x2c,0x00,0x00,
14727
+0x00,0x02,0x00,0x34,0x02,0x8d,0x03,0x00,0x05,0xf0,0x00,0x09,
14728
+0x00,0x17,0x00,0x00,0x00,0x32,0x36,0x35,0x34,0x26,0x22,0x06,
14729
+0x15,0x14,0x04,0x20,0x27,0x26,0x35,0x34,0x37,0x36,0x20,0x17,
14730
+0x16,0x15,0x14,0x07,0x01,0x30,0xd4,0x6a,0x6a,0xd4,0x6a,0x01,
14731
+0x7d,0xfe,0xae,0x5f,0x5e,0x5e,0x5f,0x01,0x52,0x5f,0x5e,0x5e,
14732
+0x02,0xc4,0xbc,0xbf,0xbe,0xbc,0xbc,0xbe,0xbf,0xf3,0x72,0x72,
14733
+0xce,0xcd,0x72,0x72,0x72,0x72,0xcd,0xce,0x72,0x00,0x00,0x00,
14734
+0x00,0x02,0x00,0x2f,0x02,0x9c,0x01,0x7f,0x05,0xe8,0x00,0x08,
14735
+0x00,0x12,0x00,0x00,0x12,0x34,0x36,0x32,0x16,0x14,0x06,0x23,
14736
+0x22,0x13,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x33,0x7d,
14737
+0x2b,0x3a,0x2a,0x29,0x1e,0x1d,0x69,0x6e,0xfe,0xb0,0x6f,0x6f,
14738
+0xe2,0x05,0x8e,0x34,0x26,0x26,0x34,0x25,0xfd,0x6e,0x3b,0x3b,
14739
+0x01,0xdc,0x3c,0x00,0x00,0x02,0x00,0x35,0x02,0x9c,0x02,0xf6,
14740
+0x05,0xdf,0x00,0x02,0x00,0x11,0x00,0x50,0x40,0x27,0x02,0xc1,
14741
+0x09,0x0a,0x09,0x01,0xc1,0x0a,0x0a,0x09,0x4d,0x01,0x0a,0x0c,
14742
+0x00,0xc2,0x0e,0x07,0x10,0x05,0xc2,0x03,0xc0,0x0a,0x68,0x12,
14743
+0x02,0x08,0x04,0x0d,0x03,0x0f,0x0b,0x5c,0x08,0x04,0x06,0x00,
14744
+0x12,0x10,0xd4,0x3c,0xc4,0xc4,0xfc,0x3c,0xc4,0xc4,0x11,0x12,
14745
+0x39,0x31,0x00,0x10,0xf4,0xf4,0xfc,0x3c,0xd4,0x3c,0xec,0x32,
14746
+0x11,0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x04,0xed,0x07,0x10,
14747
+0x05,0xed,0x59,0x22,0x01,0x11,0x09,0x01,0x21,0x35,0x33,0x35,
14748
+0x21,0x35,0x01,0x33,0x11,0x33,0x15,0x23,0x15,0x33,0x01,0xc3,
14749
+0xfe,0xcc,0x02,0x54,0xfe,0x4e,0x92,0xfe,0x72,0x01,0x90,0x8d,
14750
+0xa4,0xa4,0x91,0x03,0xcb,0x01,0x97,0xfe,0x69,0xfe,0xd1,0x54,
14751
+0x89,0x54,0x02,0x12,0xfd,0xec,0x52,0x89,0x00,0x01,0x00,0x44,
14752
+0x02,0x8d,0x02,0xe6,0x05,0xdf,0x00,0x24,0x00,0x00,0x01,0x15,
14753
+0x21,0x15,0x36,0x37,0x36,0x33,0x32,0x17,0x16,0x15,0x14,0x07,
14754
+0x06,0x23,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,
14755
+0x35,0x34,0x27,0x26,0x23,0x22,0x07,0x06,0x07,0x23,0x11,0x02,
14756
+0x96,0xfe,0x25,0x24,0x30,0x31,0x3b,0xa8,0x62,0x61,0x63,0x62,
14757
+0xb1,0x48,0x96,0x4e,0x4e,0x06,0x72,0x66,0x6d,0x76,0x3a,0x3b,
14758
+0x6e,0x3f,0x2f,0x30,0x25,0x3b,0x05,0xdf,0x5c,0xee,0x14,0x0a,
14759
+0x0a,0x4b,0x4b,0x81,0x85,0x4a,0x4a,0x1c,0x1c,0xa2,0x4f,0x54,
14760
+0x74,0x6e,0x6c,0x3a,0x3a,0x12,0x12,0x25,0x01,0xa2,0x00,0x00,
14761
+0x00,0x02,0x00,0x28,0x02,0x8d,0x02,0xf8,0x05,0xf0,0x00,0x0d,
14762
+0x00,0x2c,0x00,0x00,0x00,0x32,0x37,0x36,0x35,0x34,0x27,0x26,
14763
+0x23,0x22,0x06,0x15,0x14,0x17,0x03,0x36,0x37,0x36,0x33,0x32,
14764
+0x17,0x16,0x15,0x14,0x06,0x23,0x22,0x27,0x26,0x35,0x34,0x36,
14765
+0x33,0x32,0x17,0x16,0x17,0x15,0x23,0x2e,0x01,0x23,0x22,0x07,
14766
+0x06,0x01,0x38,0xc4,0x35,0x34,0x34,0x35,0x62,0x63,0x68,0x34,
14767
+0x4b,0x26,0x45,0x47,0x3f,0x9a,0x5b,0x5a,0xc2,0xa2,0xb1,0x5d,
14768
+0x5e,0xe0,0xcb,0x37,0x3c,0x3d,0x3f,0x4f,0x08,0x5a,0x4d,0x86,
14769
+0x42,0x42,0x02,0xc4,0x3a,0x3a,0x6c,0x6d,0x3a,0x3a,0x70,0x6a,
14770
+0x6f,0x3c,0x01,0x6a,0x25,0x17,0x17,0x4c,0x4b,0x82,0x7f,0x98,
14771
+0x69,0x6a,0xc3,0xdd,0xf0,0x08,0x09,0x10,0x8a,0x38,0x3c,0x52,
14772
+0x53,0x00,0x00,0x00,0x00,0x01,0x00,0x4f,0x02,0x9c,0x02,0xfa,
14773
+0x05,0xdf,0x00,0x08,0x00,0x00,0x09,0x01,0x23,0x01,0x21,0x15,
14774
+0x23,0x35,0x21,0x02,0xfa,0xfe,0x6a,0x67,0x01,0x82,0xfe,0x22,
14775
+0x52,0x02,0xab,0x05,0xa6,0xfc,0xf6,0x02,0xe7,0x67,0xc3,0x00,
14776
+0x00,0x03,0x00,0x35,0x02,0x8d,0x02,0xff,0x05,0xf0,0x00,0x0b,
14777
+0x00,0x19,0x00,0x35,0x00,0x00,0x00,0x34,0x27,0x26,0x22,0x07,
14778
+0x06,0x14,0x17,0x16,0x32,0x37,0x13,0x34,0x27,0x26,0x22,0x07,
14779
+0x06,0x15,0x14,0x17,0x16,0x32,0x37,0x36,0x07,0x16,0x17,0x16,
14780
+0x15,0x14,0x07,0x06,0x20,0x27,0x26,0x35,0x34,0x37,0x36,0x37,
14781
+0x2e,0x01,0x35,0x34,0x36,0x33,0x32,0x17,0x16,0x15,0x14,0x06,
14782
+0x02,0x6c,0x37,0x37,0xc8,0x37,0x37,0x37,0x37,0xc8,0x37,0x1b,
14783
+0x30,0x30,0xac,0x30,0x30,0x30,0x30,0xac,0x30,0x30,0x4b,0x75,
14784
+0x43,0x42,0x5d,0x5c,0xfe,0xa8,0x5c,0x5d,0x42,0x43,0x76,0x69,
14785
+0x70,0xac,0x97,0x96,0x57,0x56,0x70,0x03,0x27,0xb4,0x31,0x32,
14786
+0x32,0x31,0xb4,0x31,0x32,0x32,0x02,0x22,0x4c,0x2a,0x2b,0x2b,
14787
+0x2a,0x4c,0x4d,0x2a,0x2b,0x2b,0x2a,0x70,0x0d,0x3b,0x39,0x59,
14788
+0x75,0x40,0x3f,0x3f,0x40,0x75,0x57,0x3b,0x3a,0x0e,0x0f,0x62,
14789
+0x4c,0x64,0x74,0x3a,0x3a,0x64,0x4c,0x62,0x00,0x02,0x00,0x33,
14790
+0x02,0x8d,0x03,0x02,0x05,0xf0,0x00,0x1e,0x00,0x2c,0x00,0x00,
14791
+0x01,0x06,0x07,0x06,0x23,0x22,0x26,0x35,0x34,0x37,0x36,0x33,
14792
+0x32,0x17,0x16,0x15,0x14,0x06,0x23,0x22,0x27,0x26,0x27,0x35,
14793
+0x33,0x16,0x17,0x16,0x33,0x32,0x36,0x02,0x22,0x07,0x06,0x15,
14794
+0x14,0x17,0x16,0x33,0x32,0x37,0x36,0x35,0x34,0x02,0x72,0x2f,
14795
+0x3c,0x3c,0x4c,0x9a,0xb2,0x60,0x61,0xa2,0xb1,0x5d,0x5e,0xe0,
14796
+0xcb,0x3e,0x35,0x3c,0x3f,0x4d,0x09,0x2e,0x2d,0x4b,0x87,0x84,
14797
+0x7e,0xc4,0x35,0x34,0x34,0x35,0x62,0x63,0x34,0x35,0x04,0x14,
14798
+0x2a,0x14,0x15,0x96,0x81,0x81,0x4b,0x4c,0x69,0x6a,0xc3,0xdd,
14799
+0xf0,0x08,0x09,0x10,0x8b,0x38,0x1f,0x1e,0xa4,0x02,0x51,0x3a,
14800
+0x3a,0x6d,0x6c,0x3a,0x3a,0x38,0x38,0x6a,0x6f,0x00,0x00,0x00,
14801
+0x00,0x01,0x00,0x89,0x02,0x9c,0x03,0xb0,0x05,0x6b,0x00,0x0b,
14802
+0x00,0x00,0x01,0x11,0x21,0x15,0x21,0x11,0x23,0x11,0x21,0x35,
14803
+0x21,0x11,0x02,0x4f,0x01,0x61,0xfe,0x9f,0x65,0xfe,0x9f,0x01,
14804
+0x61,0x05,0x6b,0xfe,0xc6,0x5b,0xfe,0xc6,0x01,0x3a,0x5b,0x01,
14805
+0x3a,0x00,0x00,0x00,0x00,0x01,0x00,0x89,0x03,0xd6,0x03,0xb0,
14806
+0x04,0x31,0x00,0x03,0x00,0x00,0x13,0x21,0x15,0x21,0x89,0x03,
14807
+0x27,0xfc,0xd9,0x04,0x31,0x5b,0x00,0x00,0x00,0x02,0x00,0x89,
14808
+0x03,0x64,0x03,0xb0,0x04,0xa3,0x00,0x03,0x00,0x07,0x00,0x00,
14809
+0x13,0x21,0x15,0x21,0x15,0x21,0x15,0x21,0x89,0x03,0x27,0xfc,
14810
+0xd9,0x03,0x27,0xfc,0xd9,0x04,0xa3,0x5a,0x8b,0x5a,0x00,0x00,
14811
+0x00,0x01,0x00,0x66,0x01,0xe9,0x01,0x9b,0x06,0x03,0x00,0x0c,
14812
+0x00,0x00,0x01,0x26,0x02,0x10,0x12,0x37,0x15,0x0e,0x01,0x15,
14813
+0x14,0x16,0x17,0x01,0x9b,0x99,0x9c,0x9c,0x99,0x61,0x54,0x54,
14814
+0x61,0x01,0xe9,0x3d,0x01,0x09,0x01,0x8e,0x01,0x09,0x3d,0x37,
14815
+0x3b,0xd7,0xc4,0xc3,0xd7,0x3c,0x00,0x00,0x00,0x01,0x00,0x5b,
14816
+0x01,0xe9,0x01,0x91,0x06,0x03,0x00,0x0c,0x00,0x00,0x13,0x35,
14817
+0x3e,0x01,0x35,0x34,0x26,0x27,0x35,0x16,0x12,0x10,0x02,0x5b,
14818
+0x61,0x55,0x55,0x61,0x9a,0x9c,0x9c,0x01,0xe9,0x37,0x3c,0xd7,
14819
+0xc3,0xc4,0xd7,0x3b,0x37,0x3d,0xfe,0xf7,0xfe,0x72,0xfe,0xf7,
14820
+0x00,0x01,0x00,0x2e,0x02,0x9c,0x03,0x0e,0x05,0x00,0x00,0x21,
14821
+0x00,0x00,0x13,0x35,0x33,0x11,0x23,0x35,0x33,0x15,0x36,0x37,
14822
+0x36,0x33,0x32,0x17,0x16,0x15,0x11,0x33,0x15,0x21,0x35,0x33,
14823
+0x11,0x34,0x27,0x26,0x23,0x22,0x07,0x06,0x15,0x11,0x33,0x15,
14824
+0x34,0x67,0x6d,0xdf,0x20,0x32,0x33,0x43,0x6d,0x33,0x34,0x65,
14825
+0xfe,0xc5,0x63,0x1e,0x1d,0x4b,0x50,0x29,0x2a,0x63,0x02,0x9c,
14826
+0x3b,0x01,0xdc,0x3c,0x6a,0x3d,0x1f,0x1f,0x39,0x39,0x77,0xfe,
14827
+0xc0,0x3b,0x3b,0x01,0x1f,0x6d,0x29,0x28,0x34,0x34,0x64,0xfe,
14828
+0xef,0x3b,0x00,0x00,0xff,0xff,0x00,0x34,0xff,0xf1,0x03,0x00,
14829
+0x03,0x54,0x12,0x07,0x07,0xc5,0x00,0x00,0xfd,0x64,0x00,0x00,
14830
+0xff,0xff,0x00,0x93,0x00,0x00,0x02,0x96,0x03,0x43,0x12,0x07,
14831
+0x00,0x7b,0x00,0x00,0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x5a,
14832
+0x00,0x00,0x02,0xb4,0x03,0x54,0x12,0x07,0x00,0x74,0x00,0x00,
14833
+0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x64,0xff,0xf1,0x02,0xcd,
14834
+0x03,0x54,0x12,0x07,0x00,0x75,0x00,0x00,0xfd,0x64,0x00,0x00,
14835
+0xff,0xff,0x00,0x35,0x00,0x00,0x02,0xf6,0x03,0x43,0x12,0x07,
14836
+0x07,0xc7,0x00,0x00,0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x44,
14837
+0xff,0xf1,0x02,0xe6,0x03,0x43,0x12,0x07,0x07,0xc8,0x00,0x00,
14838
+0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x28,0xff,0xf1,0x02,0xf8,
14839
+0x03,0x54,0x12,0x07,0x07,0xc9,0x00,0x00,0xfd,0x64,0x00,0x00,
14840
+0xff,0xff,0x00,0x4f,0x00,0x00,0x02,0xfa,0x03,0x43,0x12,0x07,
14841
+0x07,0xca,0x00,0x00,0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x35,
14842
+0xff,0xf1,0x02,0xff,0x03,0x54,0x12,0x07,0x07,0xcb,0x00,0x00,
14843
+0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x33,0xff,0xf1,0x03,0x02,
14844
+0x03,0x54,0x12,0x07,0x07,0xcc,0x00,0x00,0xfd,0x64,0x00,0x00,
14845
+0xff,0xff,0x00,0x89,0x00,0x00,0x03,0xb0,0x02,0xcf,0x12,0x07,
14846
+0x07,0xcd,0x00,0x00,0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x89,
14847
+0x01,0x3a,0x03,0xb0,0x01,0x95,0x12,0x07,0x07,0xce,0x00,0x00,
14848
+0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x89,0x00,0xc8,0x03,0xb0,
14849
+0x02,0x07,0x12,0x07,0x07,0xcf,0x00,0x00,0xfd,0x64,0x00,0x00,
14850
+0xff,0xff,0x00,0x66,0xff,0x4d,0x01,0x9b,0x03,0x67,0x12,0x07,
14851
+0x07,0xd0,0x00,0x00,0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x5b,
14852
+0xff,0x4d,0x01,0x91,0x03,0x67,0x12,0x07,0x07,0xd1,0x00,0x00,
14853
+0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x40,0xff,0xf0,0x02,0xdd,
14854
+0x02,0x64,0x12,0x07,0x05,0x2d,0x00,0x00,0xfd,0x64,0x00,0x00,
14855
+0xff,0xff,0x00,0x40,0xff,0xf0,0x02,0xbb,0x02,0x64,0x12,0x07,
14856
+0x05,0x33,0x00,0x00,0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x40,
14857
+0xff,0xf0,0x02,0xc8,0x02,0x64,0x12,0x07,0x05,0x3c,0x00,0x00,
14858
+0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x2e,0x00,0x00,0x02,0xfc,
14859
+0x02,0x54,0x12,0x07,0x02,0xa0,0x00,0x00,0xfd,0x64,0x00,0x00,
14860
+0xff,0xff,0x00,0x40,0xff,0xf0,0x02,0xbb,0x02,0x64,0x12,0x07,
14861
+0x05,0x34,0x00,0x00,0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x2e,
14862
+0x00,0x00,0x03,0x0e,0x03,0x67,0x12,0x07,0x02,0x72,0x00,0x00,
14863
+0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x25,0x00,0x00,0x03,0x17,
14864
+0x03,0x67,0x12,0x07,0x05,0x39,0x00,0x00,0xfd,0x64,0x00,0x00,
14865
+0xff,0xff,0x00,0x2e,0x00,0x00,0x01,0x8a,0x03,0x67,0x12,0x07,
14866
+0x02,0x9e,0x00,0x00,0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x2f,
14867
+0x00,0x00,0x04,0xa4,0x02,0x64,0x12,0x07,0x05,0x3a,0x00,0x00,
14868
+0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x2e,0x00,0x00,0x03,0x0e,
14869
+0x02,0x64,0x12,0x07,0x07,0xd2,0x00,0x00,0xfd,0x64,0x00,0x00,
14870
+0xff,0xff,0x00,0x25,0xff,0x11,0x02,0xf9,0x02,0x64,0x12,0x07,
14871
+0x05,0x40,0x00,0x00,0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x37,
14872
+0xff,0xf0,0x02,0x53,0x02,0x64,0x12,0x07,0x02,0x9f,0x00,0x00,
14873
+0xfd,0x64,0x00,0x00,0xff,0xff,0x00,0x25,0xff,0xf0,0x01,0xfc,
14874
+0x03,0x0c,0x12,0x07,0x05,0x41,0x00,0x00,0xfd,0x64,0x00,0x00,
14875
+0x00,0x03,0x00,0x38,0xff,0xe3,0x04,0xdc,0x05,0xd5,0x00,0x03,
14876
+0x00,0x29,0x00,0x2d,0x00,0x00,0x01,0x15,0x33,0x27,0x01,0x35,
14877
+0x33,0x11,0x23,0x35,0x33,0x35,0x23,0x35,0x33,0x11,0x23,0x35,
14878
+0x21,0x13,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x15,
14879
+0x23,0x15,0x33,0x15,0x23,0x11,0x23,0x01,0x23,0x11,0x33,0x15,
14880
+0x01,0x35,0x23,0x17,0x01,0xa2,0x93,0x6a,0xfe,0x93,0xca,0xf0,
14881
+0xf0,0xf0,0xf0,0xca,0x01,0x80,0xd4,0xc0,0xc8,0x02,0x0c,0xca,
14882
+0xf0,0xf0,0xf0,0xf0,0x78,0xfe,0xfa,0xcc,0xca,0x01,0x06,0x93,
14883
+0x6a,0x03,0x7e,0xf4,0xf4,0xfc,0x82,0x6a,0x01,0xb6,0x6a,0xf4,
14884
+0x6a,0x01,0x82,0x6b,0xfe,0x13,0x01,0x82,0x6b,0x6b,0xfe,0x7e,
14885
+0x6a,0xf4,0x6a,0xfd,0xc3,0x02,0x3d,0xfe,0x4a,0x6a,0x02,0x8a,
14886
+0xf4,0xf4,0x00,0x00,0x00,0x01,0xff,0xf8,0xff,0xe3,0x04,0x71,
14887
+0x05,0xf0,0x00,0x34,0x00,0x70,0x40,0x3b,0x2d,0x06,0x73,0x2b,
14888
+0x08,0x21,0x12,0x73,0x10,0x31,0x65,0x00,0x03,0x1a,0x7f,0x19,
14889
+0x64,0x1e,0x65,0x16,0x69,0x03,0x60,0x23,0x10,0x35,0x2d,0x2b,
14890
+0x24,0x03,0x28,0x23,0x2c,0x22,0x12,0x08,0x35,0x10,0x09,0x0d,
14891
+0x2e,0x21,0x2c,0x13,0x06,0x0d,0x22,0x2c,0x28,0x1b,0x19,0x34,
14892
+0x00,0x28,0x06,0x11,0x07,0x0d,0x35,0x10,0xd4,0xc4,0x32,0xec,
14893
+0xd4,0xc4,0xd4,0xc4,0x10,0xc4,0xc4,0x12,0x39,0x39,0x12,0x39,
14894
+0x39,0x12,0x39,0x39,0x11,0x39,0x39,0x11,0x12,0x39,0x11,0x17,
14895
+0x39,0x31,0x00,0x10,0xc4,0x32,0xe4,0xf4,0xec,0xfc,0xec,0x10,
14896
+0xc6,0xee,0x10,0xee,0x32,0xdd,0x3c,0xee,0x32,0x30,0x01,0x0e,
14897
+0x01,0x23,0x22,0x00,0x03,0x23,0x37,0x33,0x26,0x27,0x26,0x35,
14898
+0x34,0x36,0x37,0x23,0x37,0x33,0x12,0x00,0x33,0x32,0x16,0x17,
14899
+0x11,0x23,0x2e,0x01,0x23,0x22,0x06,0x07,0x21,0x07,0x21,0x06,
14900
+0x07,0x06,0x15,0x14,0x16,0x15,0x21,0x07,0x21,0x1e,0x01,0x33,
14901
+0x32,0x36,0x37,0x04,0x71,0x2b,0xe7,0xad,0xbd,0xfe,0xf0,0x2f,
14902
+0xbe,0x2d,0x87,0x01,0x01,0x02,0x02,0x02,0xb4,0x2d,0x91,0x2f,
14903
+0x01,0x0f,0xbe,0x63,0xc7,0x7c,0x6a,0x14,0x99,0x7a,0x88,0xa5,
14904
+0x15,0x01,0xf8,0x2f,0xfe,0x31,0x01,0x01,0x02,0x02,0x01,0x77,
14905
+0x2f,0xfe,0xc0,0x17,0xa4,0x87,0x74,0x97,0x1a,0x01,0x8b,0xcd,
14906
+0xdb,0x01,0x30,0x01,0x08,0x68,0x0f,0x18,0x31,0x0e,0x22,0x30,
14907
+0x17,0x68,0x01,0x08,0x01,0x2e,0x3e,0x45,0xfe,0xaa,0xb4,0xc2,
14908
+0xee,0xe5,0x68,0x0e,0x17,0x33,0x11,0x09,0x44,0x19,0x68,0xe6,
14909
+0xef,0xa7,0x9e,0x00,0x00,0x04,0x00,0x1b,0xfe,0x75,0x08,0x5a,
14910
+0x05,0xc8,0x00,0x17,0x00,0x23,0x00,0x30,0x00,0x3b,0x00,0x00,
14911
+0x33,0x37,0x33,0x36,0x37,0x13,0x22,0x06,0x1d,0x01,0x07,0x10,
14912
+0x37,0x36,0x21,0x33,0x32,0x00,0x15,0x10,0x03,0x06,0x04,0x21,
14913
+0x37,0x33,0x20,0x00,0x11,0x34,0x26,0x2b,0x01,0x03,0x02,0x06,
14914
+0x01,0x13,0x1a,0x01,0x33,0x20,0x11,0x10,0x00,0x23,0x22,0x27,
14915
+0x03,0x13,0x16,0x33,0x32,0x12,0x35,0x34,0x23,0x22,0x03,0x07,
14916
+0x1c,0x94,0x38,0x74,0x2a,0xac,0x82,0x96,0xc2,0xa0,0xa0,0x01,
14917
+0x8a,0x40,0xe2,0x01,0x04,0xee,0x7c,0xfe,0xac,0xfe,0xd4,0x30,
14918
+0x76,0x01,0x18,0x01,0x44,0x96,0x80,0x50,0x86,0x34,0x4a,0x02,
14919
+0x8c,0xa0,0x4a,0xe6,0xc0,0x01,0x48,0xfe,0xb2,0xe0,0x34,0x5c,
14920
+0x56,0x7c,0x4a,0x4a,0x84,0xb0,0x96,0x9c,0x44,0x1a,0xa0,0x52,
14921
+0xd3,0x03,0x5f,0xa6,0x91,0x18,0x5e,0x01,0x11,0x9f,0xa1,0xfe,
14922
+0xea,0xf1,0xfe,0x77,0xfe,0xda,0x98,0x7a,0xa0,0x01,0xa8,0x01,
14923
+0x6e,0xae,0xd0,0xfd,0x58,0xfe,0xff,0xa1,0xfd,0x8b,0x03,0x2c,
14924
+0x01,0x73,0x01,0x42,0xfe,0xa5,0xfe,0xce,0xfe,0x37,0x23,0xfe,
14925
+0x52,0x02,0x6d,0x4e,0x01,0x43,0xf6,0xf5,0xfe,0xb9,0x82,0x00,
14926
+0x00,0x04,0x00,0x71,0x00,0x00,0x05,0x5d,0x05,0xd5,0x00,0x24,
14927
+0x00,0x29,0x00,0x30,0x00,0x35,0x00,0x00,0x33,0x35,0x33,0x11,
14928
+0x23,0x35,0x33,0x35,0x23,0x35,0x33,0x35,0x23,0x35,0x21,0x32,
14929
+0x17,0x16,0x17,0x33,0x15,0x23,0x16,0x15,0x14,0x07,0x33,0x15,
14930
+0x23,0x06,0x07,0x06,0x23,0x21,0x11,0x33,0x15,0x03,0x21,0x32,
14931
+0x37,0x21,0x35,0x15,0x21,0x36,0x35,0x34,0x27,0x25,0x21,0x26,
14932
+0x23,0x21,0x71,0xbe,0x56,0x56,0x56,0x56,0xbe,0x02,0xc2,0xe0,
14933
+0x83,0x49,0x20,0x5e,0x46,0x02,0x01,0x45,0x5a,0x20,0x4d,0x83,
14934
+0xe0,0xfe,0xc7,0xe7,0xe7,0x01,0x08,0xda,0x40,0xfd,0xde,0x02,
14935
+0x38,0x01,0x02,0xfd,0xc9,0x02,0x1e,0x42,0xd4,0xfe,0xf8,0x6a,
14936
+0x03,0x36,0x6b,0x56,0x6b,0x9e,0x6b,0x71,0x40,0x58,0x6b,0x17,
14937
+0x19,0x13,0x13,0x6b,0x5e,0x43,0x72,0xfd,0xdd,0x6a,0x02,0xf8,
14938
+0xa8,0xc1,0x56,0x12,0x14,0x19,0x17,0x6b,0x9e,0x00,0x00,0x00,
14939
+0x00,0x01,0x00,0x52,0xff,0xe3,0x05,0xf6,0x05,0xf0,0x00,0x43,
14940
+0x00,0x00,0x01,0x06,0x07,0x06,0x15,0x14,0x17,0x16,0x33,0x32,
14941
+0x37,0x36,0x37,0x33,0x11,0x06,0x07,0x06,0x23,0x20,0x24,0x35,
14942
+0x34,0x37,0x23,0x35,0x33,0x36,0x37,0x36,0x3f,0x01,0x36,0x37,
14943
+0x21,0x35,0x21,0x36,0x35,0x34,0x27,0x26,0x23,0x22,0x07,0x06,
14944
+0x07,0x23,0x11,0x36,0x37,0x36,0x33,0x32,0x04,0x15,0x14,0x07,
14945
+0x33,0x15,0x23,0x06,0x07,0x06,0x0f,0x01,0x21,0x15,0x02,0x11,
14946
+0x11,0x0c,0x38,0x5e,0x5d,0xb2,0xbf,0x5e,0x5d,0x05,0x73,0x84,
14947
+0x7f,0x80,0x7b,0xfe,0xed,0xfe,0xea,0x13,0xab,0xe4,0x05,0x05,
14948
+0x55,0xcd,0xb9,0x24,0x21,0xfc,0xe8,0x03,0xe1,0x37,0x52,0x53,
14949
+0x9e,0xb5,0x58,0x59,0x11,0x71,0x8c,0x7c,0x7c,0x68,0xf4,0x01,
14950
+0x0e,0x0d,0xcc,0xf8,0x0d,0x11,0x59,0xd5,0x8c,0x02,0xda,0x02,
14951
+0x20,0x0c,0x0c,0x3a,0x6c,0x87,0x47,0x46,0x52,0x51,0xab,0xfe,
14952
+0xac,0x33,0x19,0x19,0xdc,0xd9,0x4b,0x3d,0x6a,0x06,0x06,0x5e,
14953
+0x3d,0x37,0x0b,0x0b,0x6a,0x3c,0x65,0x7b,0x40,0x41,0x47,0x48,
14954
+0x9c,0x01,0x3e,0x2b,0x17,0x16,0xd2,0xbe,0x41,0x37,0x6a,0x15,
14955
+0x13,0x62,0x40,0x2a,0x6a,0x00,0x00,0x00,0x00,0x02,0x00,0xac,
14956
+0xfe,0xd3,0x04,0x71,0x06,0x14,0x00,0x21,0x00,0x2a,0x00,0x00,
14957
+0x01,0x06,0x07,0x06,0x07,0x11,0x23,0x11,0x26,0x27,0x26,0x11,
14958
+0x10,0x37,0x36,0x37,0x35,0x33,0x15,0x16,0x17,0x16,0x17,0x11,
14959
+0x23,0x26,0x27,0x26,0x27,0x11,0x36,0x37,0x36,0x37,0x01,0x11,
14960
+0x06,0x07,0x06,0x11,0x10,0x17,0x16,0x04,0x71,0x2b,0x74,0x5d,
14961
+0x82,0x64,0x9a,0x88,0xc1,0xc0,0x7b,0xa8,0x64,0x43,0x42,0x64,
14962
+0x7c,0x6a,0x14,0x4c,0x3f,0x5c,0x57,0x3c,0x4c,0x1a,0xfe,0xa3,
14963
+0x64,0x3f,0x6d,0x6f,0x36,0x01,0x8b,0xcd,0x6e,0x58,0x11,0xfe,
14964
+0xec,0x01,0x12,0x0d,0x89,0xc2,0x01,0x46,0x01,0x30,0xd7,0x89,
14965
+0x0d,0xf4,0xf6,0x07,0x15,0x1f,0x45,0xfe,0xaa,0xb4,0x61,0x4f,
14966
+0x0f,0xfb,0x8e,0x0d,0x44,0x53,0x9e,0xfe,0xc0,0x04,0x6e,0x14,
14967
+0x5e,0x80,0xfe,0xbc,0xff,0x00,0xc5,0x60,0x00,0x02,0x00,0x14,
14968
+0x00,0x00,0x05,0x04,0x05,0xd5,0x00,0x03,0x00,0x0f,0x00,0x00,
14969
+0x13,0x35,0x21,0x15,0x01,0x35,0x33,0x11,0x21,0x35,0x21,0x15,
14970
+0x21,0x11,0x33,0x15,0x14,0x04,0xf0,0xfc,0x64,0xbf,0xfd,0xed,
14971
+0x04,0xf0,0xfd,0xed,0xbf,0x05,0x5e,0x77,0x77,0xfa,0xa2,0x6a,
14972
+0x03,0xd4,0x77,0x77,0xfc,0x2c,0x6a,0x00,0x00,0x01,0x00,0x5e,
14973
+0x00,0x00,0x04,0xb7,0x05,0xd5,0x00,0x28,0x00,0x00,0x01,0x07,
14974
+0x21,0x16,0x17,0x21,0x07,0x21,0x06,0x07,0x06,0x07,0x16,0x17,
14975
+0x16,0x17,0x13,0x33,0x15,0x21,0x03,0x26,0x27,0x26,0x2b,0x01,
14976
+0x35,0x33,0x32,0x37,0x36,0x37,0x21,0x37,0x21,0x26,0x27,0x26,
14977
+0x2b,0x01,0x37,0x04,0xb7,0x2f,0xfe,0x60,0x59,0x16,0x01,0x60,
14978
+0x2f,0xfe,0xd6,0x05,0x51,0x57,0xab,0x46,0x32,0x33,0x28,0xd9,
14979
+0xb6,0xfe,0xa0,0xe9,0x44,0x37,0x38,0x62,0x96,0xde,0x97,0x48,
14980
+0x44,0x04,0xfd,0xe5,0x2d,0x01,0xe7,0x10,0x31,0x48,0x97,0xf4,
14981
+0x2d,0x05,0xd5,0x68,0x4f,0x80,0x68,0x8f,0x53,0x59,0x16,0x13,
14982
+0x2e,0x2d,0x52,0xfe,0x45,0x6a,0x01,0xdb,0x8b,0x28,0x28,0x6b,
14983
+0x47,0x44,0x8a,0x68,0x55,0x31,0x49,0x68,0x00,0x01,0xff,0xfb,
14984
+0x00,0x00,0x04,0xe2,0x05,0xd5,0x00,0x22,0x00,0x00,0x33,0x35,
14985
+0x33,0x11,0x07,0x27,0x25,0x35,0x07,0x27,0x25,0x11,0x23,0x35,
14986
+0x21,0x15,0x23,0x15,0x37,0x17,0x05,0x15,0x37,0x17,0x05,0x11,
14987
+0x32,0x00,0x35,0x23,0x35,0x21,0x10,0x00,0x21,0x71,0xbe,0xe6,
14988
+0x4e,0x01,0x34,0xe8,0x4c,0x01,0x34,0xbe,0x02,0x47,0xbe,0xe5,
14989
+0x50,0xfe,0xcb,0xe7,0x50,0xfe,0xc9,0xe4,0x01,0x47,0xa9,0x01,
14990
+0x66,0xfe,0x59,0xfe,0xa0,0x6a,0x01,0xb9,0xa1,0x6e,0xd8,0x89,
14991
+0xa2,0x6e,0xd9,0x01,0x74,0x6b,0x6b,0xe5,0xa1,0x6f,0xd8,0x88,
14992
+0xa2,0x6f,0xd9,0xfd,0xca,0x01,0x25,0xe1,0x6b,0xfe,0x7e,0xfe,
14993
+0x96,0x00,0x00,0x00,0x00,0x02,0x00,0x71,0x00,0x00,0x04,0xce,
14994
+0x05,0xd5,0x00,0x1c,0x00,0x25,0x00,0x00,0x33,0x35,0x33,0x11,
14995
+0x23,0x35,0x33,0x35,0x23,0x35,0x33,0x11,0x23,0x35,0x21,0x32,
14996
+0x04,0x15,0x14,0x04,0x2b,0x01,0x15,0x21,0x15,0x21,0x11,0x33,
14997
+0x15,0x03,0x33,0x32,0x36,0x35,0x34,0x26,0x2b,0x01,0x71,0xbe,
14998
+0xbe,0xbe,0xbe,0xbe,0xbe,0x02,0x77,0xe0,0x01,0x06,0xfe,0xfa,
14999
+0xe0,0xee,0x02,0x13,0xfd,0xed,0xe7,0xe7,0xbd,0x95,0x9c,0x9c,
15000
+0x95,0xbd,0x6a,0x01,0x2f,0x6b,0x89,0x6b,0x02,0x72,0x6b,0xe3,
15001
+0xc1,0xc0,0xe4,0x89,0x6b,0xfe,0xd1,0x6a,0x02,0xf8,0xa1,0x98,
15002
+0x99,0xa0,0x00,0x00,0x00,0x02,0x00,0x56,0xff,0xe3,0x05,0xf6,
15003
+0x05,0xf0,0x00,0x19,0x00,0x26,0x00,0x00,0x01,0x06,0x04,0x21,
15004
+0x20,0x00,0x11,0x10,0x00,0x21,0x32,0x04,0x17,0x11,0x23,0x2e,
15005
+0x01,0x23,0x22,0x02,0x10,0x12,0x33,0x32,0x36,0x37,0x01,0x06,
15006
+0x07,0x06,0x11,0x10,0x17,0x16,0x17,0x27,0x26,0x10,0x37,0x05,
15007
+0xf6,0x3b,0xfe,0xce,0xfe,0xfe,0xfe,0x86,0xfe,0x49,0x01,0xb7,
15008
+0x01,0x7a,0x85,0x01,0x20,0xa1,0x7f,0x27,0xce,0xa9,0xda,0xd4,
15009
+0xd4,0xdc,0x95,0xbd,0x2b,0xfc,0xe4,0x4f,0x3f,0xb6,0xb6,0x3e,
15010
+0x50,0x0c,0x7e,0x7e,0x01,0xaa,0xe7,0xe0,0x01,0xa1,0x01,0x65,
15011
+0x01,0x66,0x01,0xa1,0x40,0x41,0xfe,0x91,0xbc,0xbb,0xfe,0xbf,
15012
+0xfd,0x66,0xfe,0xc0,0xa6,0xa8,0x03,0x81,0x28,0x3b,0xad,0xfe,
15013
+0xce,0xfe,0xcf,0xad,0x3b,0x27,0x10,0xbf,0x02,0xe2,0xbf,0x00,
15014
+0xff,0xff,0x00,0x5f,0xff,0xe3,0x08,0x78,0x05,0xf0,0x10,0x27,
15015
+0x00,0x26,0x02,0xd4,0x00,0x00,0x10,0x06,0x00,0x72,0x9c,0x00,
15016
+0xff,0xff,0x00,0x5f,0x00,0x00,0x08,0x0b,0x05,0xf0,0x10,0x27,
15017
+0x00,0x29,0x02,0xd4,0x00,0x00,0x10,0x06,0x00,0x72,0x9c,0x00,
15018
+0x00,0x03,0x00,0x60,0x00,0x00,0x07,0x33,0x05,0xd5,0x00,0x1b,
15019
+0x00,0x1f,0x00,0x23,0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,
15020
+0x21,0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x15,0x23,0x11,
15021
+0x33,0x15,0x21,0x35,0x33,0x11,0x21,0x11,0x33,0x15,0x01,0x11,
15022
+0x33,0x11,0x21,0x11,0x33,0x11,0x60,0xbf,0xbf,0x03,0x00,0xc0,
15023
+0x02,0x52,0xbf,0x03,0x00,0xc0,0xc0,0xfd,0x00,0xbf,0xfd,0xae,
15024
+0xc0,0xfe,0x38,0x8f,0x03,0x44,0x8f,0x79,0x04,0xe3,0x79,0x79,
15025
+0xfe,0x0a,0x01,0xf6,0x79,0x79,0xfb,0x1d,0x79,0x79,0x02,0x64,
15026
+0xfd,0x9c,0x79,0x05,0x5c,0xfb,0x1d,0x04,0xe3,0xfb,0x1d,0x04,
15027
+0xe3,0x00,0x00,0x00,0x00,0x01,0x00,0x62,0x00,0x00,0x04,0x6c,
15028
+0x06,0x14,0x00,0x1d,0x00,0x00,0x33,0x01,0x23,0x37,0x21,0x03,
15029
+0x3e,0x01,0x33,0x32,0x17,0x16,0x15,0x14,0x07,0x03,0x33,0x07,
15030
+0x21,0x13,0x36,0x35,0x34,0x27,0x26,0x23,0x22,0x06,0x07,0x03,
15031
+0x63,0x01,0x1a,0xb0,0x14,0x01,0x68,0x84,0x48,0xb8,0x6c,0xb0,
15032
+0x3f,0x27,0x11,0x6f,0xa4,0x14,0xfe,0xa3,0x78,0x14,0x10,0x21,
15033
+0x7a,0x80,0xab,0x22,0x73,0x05,0xaa,0x6a,0xfd,0x56,0x6c,0x6e,
15034
+0x65,0x3d,0x66,0x43,0x55,0xfd,0xc6,0x6a,0x02,0x6a,0x67,0x45,
15035
+0x3d,0x21,0x48,0xba,0xb2,0xfd,0xb0,0x00,0x00,0x01,0x00,0x63,
15036
+0x00,0x00,0x04,0x6b,0x06,0x14,0x00,0x21,0x00,0x00,0x01,0x36,
15037
+0x33,0x32,0x17,0x16,0x14,0x07,0x03,0x33,0x07,0x21,0x13,0x36,
15038
+0x34,0x27,0x26,0x22,0x06,0x07,0x03,0x23,0x13,0x07,0x27,0x3f,
15039
+0x01,0x23,0x37,0x21,0x07,0x25,0x17,0x05,0x01,0xc5,0x91,0xdb,
15040
+0xb0,0x3f,0x27,0x11,0x6f,0xa4,0x14,0xfe,0xa3,0x78,0x14,0x10,
15041
+0x21,0xfa,0xaa,0x23,0x73,0xb8,0xdc,0xc6,0x16,0xee,0x2c,0xb0,
15042
+0x14,0x01,0x68,0x2f,0x01,0x70,0x16,0xfe,0x67,0x03,0x6a,0xda,
15043
+0x65,0x3d,0xa7,0x57,0xfd,0xc6,0x6a,0x02,0x6a,0x67,0x82,0x21,
15044
+0x48,0xb9,0xb3,0xfd,0xb0,0x04,0x6a,0x54,0x4e,0x66,0xe0,0x6a,
15045
+0xf5,0x9d,0x4e,0xae,0x00,0x02,0x00,0x5a,0x00,0x00,0x06,0xfe,
15046
+0x05,0xd5,0x00,0x13,0x00,0x19,0x00,0x00,0x33,0x35,0x33,0x11,
15047
+0x23,0x35,0x21,0x01,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x21,
15048
+0x01,0x11,0x33,0x15,0x03,0x15,0x01,0x33,0x35,0x01,0x5a,0xbf,
15049
+0xbf,0x01,0xd3,0x03,0x85,0xbe,0x02,0x0a,0xbf,0xfe,0xfa,0xfc,
15050
+0x6d,0xbe,0xd2,0x03,0xdf,0x55,0xfc,0x2f,0x79,0x04,0xe3,0x79,
15051
+0xfb,0xdf,0x03,0xa8,0x79,0x79,0xfa,0xa4,0x04,0x37,0xfc,0x42,
15052
+0x79,0x05,0x5c,0x52,0xfb,0x6f,0x69,0x04,0x7a,0x00,0x00,0x00,
15053
+0x00,0x04,0x00,0x4c,0xff,0xe3,0x07,0x2b,0x05,0xd5,0x00,0x09,
15054
+0x00,0x11,0x00,0x15,0x00,0x2f,0x00,0x00,0x00,0x10,0x06,0x23,
15055
+0x22,0x26,0x10,0x36,0x33,0x32,0x02,0x36,0x34,0x26,0x22,0x06,
15056
+0x14,0x16,0x03,0x21,0x15,0x21,0x01,0x34,0x36,0x33,0x15,0x22,
15057
+0x07,0x06,0x15,0x11,0x23,0x01,0x11,0x14,0x06,0x23,0x35,0x32,
15058
+0x37,0x36,0x35,0x11,0x23,0x35,0x21,0x01,0x07,0x2b,0x90,0x67,
15059
+0x68,0x8f,0x8f,0x68,0x67,0x2d,0x4f,0x4f,0x75,0x4e,0x4e,0xbd,
15060
+0x01,0xee,0xfe,0x12,0xfe,0xcd,0x83,0xd4,0x97,0x23,0x22,0x79,
15061
+0xfd,0x98,0x83,0xd4,0x97,0x23,0x22,0xbe,0x01,0x74,0x02,0x2b,
15062
+0x02,0xf8,0xfe,0xec,0xc0,0xc0,0x01,0x14,0xbf,0xfe,0x01,0x69,
15063
+0x99,0x69,0x68,0x9b,0x68,0xfe,0xb0,0x68,0x04,0xae,0x8a,0x9d,
15064
+0x8b,0x1c,0x1d,0x50,0xfb,0x22,0x04,0xea,0xfc,0x3e,0x8b,0x9d,
15065
+0x8b,0x1c,0x1d,0x51,0x04,0x72,0x6b,0xfb,0x66,0x00,0x00,0x00,
15066
+0x00,0x04,0x00,0x60,0x00,0x00,0x05,0xd1,0x05,0xd5,0x00,0x10,
15067
+0x00,0x19,0x00,0x1d,0x00,0x29,0x00,0x00,0x33,0x35,0x33,0x11,
15068
+0x23,0x35,0x21,0x32,0x04,0x15,0x14,0x04,0x23,0x21,0x11,0x33,
15069
+0x15,0x03,0x33,0x32,0x36,0x35,0x34,0x26,0x2b,0x03,0x11,0x33,
15070
+0x01,0x16,0x15,0x14,0x07,0x36,0x37,0x36,0x35,0x34,0x27,0x26,
15071
+0x60,0xbf,0xbf,0x03,0x52,0xf9,0x01,0x26,0xfe,0xd9,0xf8,0xfe,
15072
+0xee,0xf1,0xf1,0x70,0x82,0x9b,0x9a,0x83,0x70,0x79,0x8f,0x8f,
15073
+0x02,0x1a,0x65,0x66,0x6a,0x47,0x67,0x66,0x47,0x79,0x04,0xe3,
15074
+0x79,0xed,0xc7,0xc8,0xef,0xfe,0x0f,0x79,0x02,0xe3,0xad,0x91,
15075
+0x90,0xab,0xfb,0x1d,0x04,0xd6,0x76,0xb8,0xb9,0x78,0x16,0x3a,
15076
+0x53,0x8e,0x8d,0x52,0x39,0x00,0x00,0x00,0x00,0x04,0x00,0x56,
15077
+0xfe,0x8f,0x06,0xa0,0x05,0xf0,0x00,0x14,0x00,0x20,0x00,0x32,
15078
+0x00,0x46,0x00,0x00,0x05,0x24,0x00,0x11,0x10,0x00,0x21,0x20,
15079
+0x00,0x11,0x10,0x00,0x05,0x1e,0x01,0x3b,0x01,0x15,0x23,0x22,
15080
+0x26,0x03,0x32,0x12,0x11,0x10,0x02,0x23,0x22,0x02,0x11,0x10,
15081
+0x12,0x01,0x16,0x11,0x10,0x07,0x3e,0x04,0x35,0x34,0x2e,0x05,
15082
+0x01,0x26,0x11,0x10,0x37,0x0e,0x06,0x15,0x14,0x1e,0x05,0x03,
15083
+0x75,0xfe,0x86,0xfe,0x5b,0x01,0xad,0x01,0x78,0x01,0x79,0x01,
15084
+0xac,0xfe,0xb7,0xfe,0xd0,0x35,0x98,0x79,0x33,0x1d,0xbe,0xfe,
15085
+0x4c,0xbf,0xba,0xba,0xbf,0xbe,0xbb,0xbb,0x02,0x35,0x7b,0x7a,
15086
+0x2f,0x53,0x53,0x3a,0x25,0x04,0x0f,0x18,0x2f,0x3f,0x60,0xfc,
15087
+0xd6,0x7b,0x7c,0x3b,0x61,0x3f,0x2f,0x19,0x0f,0x04,0x04,0x0f,
15088
+0x19,0x2f,0x3f,0x60,0x1d,0x06,0x01,0x98,0x01,0x68,0x01,0x6a,
15089
+0x01,0x9d,0xfe,0x64,0xfe,0x95,0xfe,0xc2,0xfe,0x74,0x2f,0x39,
15090
+0x32,0xf6,0xa4,0x01,0x29,0x01,0x42,0x01,0x4b,0x01,0x4c,0x01,
15091
+0x42,0xfe,0xbb,0xfe,0xb7,0xfe,0xb8,0xfe,0xbb,0x04,0xcc,0xbe,
15092
+0xfe,0x7f,0xfe,0x81,0xbf,0x18,0x3e,0x63,0x78,0xaa,0x63,0x23,
15093
+0x40,0x60,0x55,0x63,0x54,0x52,0xfb,0xa2,0xbf,0x01,0x7e,0x01,
15094
+0x80,0xc0,0x1f,0x52,0x53,0x64,0x55,0x5f,0x41,0x23,0x24,0x41,
15095
+0x5f,0x55,0x62,0x53,0x51,0x00,0x00,0x00,0x00,0x05,0x00,0x60,
15096
+0x00,0x00,0x06,0xb2,0x05,0xd5,0x00,0x1b,0x00,0x23,0x00,0x27,
15097
+0x00,0x31,0x00,0x42,0x00,0x00,0x01,0x1e,0x01,0x17,0x13,0x33,
15098
+0x15,0x21,0x03,0x2e,0x01,0x2b,0x01,0x11,0x33,0x15,0x21,0x35,
15099
+0x33,0x11,0x23,0x35,0x21,0x20,0x04,0x15,0x14,0x06,0x25,0x33,
15100
+0x32,0x36,0x10,0x26,0x2b,0x01,0x03,0x11,0x23,0x11,0x21,0x03,
15101
+0x26,0x27,0x26,0x2f,0x01,0x16,0x17,0x13,0x03,0x16,0x17,0x16,
15102
+0x07,0x0e,0x02,0x07,0x36,0x37,0x36,0x35,0x34,0x26,0x27,0x26,
15103
+0x04,0x3f,0x59,0x7a,0x2d,0xda,0x99,0xfe,0x15,0xee,0x45,0x61,
15104
+0x56,0x3d,0xc0,0xfd,0x00,0xbf,0xbf,0x03,0x54,0x01,0x04,0x01,
15105
+0x1b,0xc9,0xfd,0x96,0x83,0x8c,0x97,0x97,0x8c,0x83,0x79,0x8f,
15106
+0x03,0xf8,0xbc,0x22,0x26,0x24,0x3a,0x25,0x16,0x26,0xcb,0xa6,
15107
+0x16,0x14,0x2e,0x03,0x01,0x05,0x15,0x13,0x5c,0x31,0x3c,0x2c,
15108
+0x30,0x3a,0x02,0xd9,0x0d,0x5c,0x57,0xfe,0x60,0x79,0x01,0xc3,
15109
+0x8c,0x4d,0xfd,0xdd,0x79,0x79,0x04,0xe3,0x79,0xd1,0xc0,0x9c,
15110
+0xb5,0x21,0x98,0x01,0x1a,0x96,0xfb,0x1d,0x04,0xe3,0xfb,0x1d,
15111
+0x01,0x68,0x3f,0x1d,0x1c,0x08,0x06,0x23,0x4a,0xfe,0x7f,0x04,
15112
+0xd1,0x19,0x2a,0x5e,0x70,0x29,0x37,0x51,0x25,0x19,0x2b,0x37,
15113
+0x66,0x43,0x61,0x23,0x2b,0x00,0x00,0x00,0x00,0x02,0x00,0xf2,
15114
+0x03,0x93,0x06,0x9c,0x05,0xd5,0x00,0x18,0x00,0x28,0x00,0x7a,
15115
+0x40,0x44,0x01,0x0d,0x06,0x0f,0x0c,0x1b,0x04,0x23,0x1f,0x14,
15116
+0x10,0x0a,0x05,0x06,0x08,0x27,0x1b,0xac,0x25,0x1d,0x16,0x03,
15117
+0x04,0x21,0x12,0x08,0x19,0x02,0x00,0x62,0x29,0x01,0x11,0x09,
15118
+0x26,0x53,0x19,0x22,0x37,0x24,0x1c,0x53,0x1a,0x09,0x50,0x0b,
15119
+0x11,0x50,0x0f,0x07,0x03,0x50,0x0b,0x54,0x05,0x17,0x13,0x50,
15120
+0x0f,0x53,0x15,0x24,0x54,0x1a,0x20,0x37,0x1e,0x29,0x10,0xd4,
15121
+0xe4,0xc4,0xec,0xd4,0xec,0xe4,0x32,0xd4,0xec,0xe4,0x32,0x10,
15122
+0xe4,0x10,0xe4,0x10,0xee,0x10,0xe4,0xd4,0xee,0x11,0x12,0x39,
15123
+0x31,0x00,0x10,0xf4,0x3c,0x3c,0xc4,0x32,0x32,0xdc,0x17,0x3c,
15124
+0xe4,0x32,0x10,0xce,0x17,0x32,0x11,0x12,0x39,0x39,0x11,0x39,
15125
+0x39,0x30,0x01,0x1b,0x01,0x33,0x15,0x23,0x11,0x33,0x15,0x21,
15126
+0x35,0x33,0x11,0x03,0x23,0x03,0x11,0x33,0x15,0x23,0x35,0x33,
15127
+0x11,0x23,0x35,0x29,0x01,0x15,0x23,0x35,0x23,0x11,0x33,0x15,
15128
+0x21,0x35,0x33,0x11,0x23,0x15,0x23,0x04,0x5e,0xae,0xb5,0xdb,
15129
+0x56,0x56,0xfe,0xe3,0x56,0xd1,0x2b,0xc7,0x54,0xf1,0x56,0x56,
15130
+0xfd,0x7d,0x02,0x2d,0x44,0x99,0x56,0xfe,0xe1,0x56,0x9c,0x41,
15131
+0x05,0xd5,0xfe,0xf2,0x01,0x0e,0x42,0xfe,0x42,0x42,0x42,0x01,
15132
+0xaa,0xfe,0xc9,0x01,0x37,0xfe,0x56,0x42,0x42,0x01,0xbe,0x42,
15133
+0xaa,0x68,0xfe,0x42,0x42,0x42,0x01,0xbe,0x68,0x00,0x00,0x00,
15134
+0x00,0x02,0x00,0x4c,0x00,0x00,0x05,0x8d,0x05,0xd5,0x00,0x0d,
15135
+0x00,0x11,0x00,0x00,0x33,0x35,0x01,0x21,0x15,0x23,0x11,0x21,
15136
+0x15,0x01,0x21,0x35,0x33,0x11,0x09,0x01,0x33,0x01,0x4c,0x03,
15137
+0x7b,0xfd,0x35,0x89,0x05,0x10,0xfc,0x8f,0x02,0xf2,0x89,0xfe,
15138
+0xdc,0xfc,0x6a,0x9e,0x03,0x8b,0x8d,0x04,0xbf,0xdf,0x01,0x68,
15139
+0x8d,0xfb,0x41,0xd1,0xfe,0xa6,0x05,0x5c,0xfb,0x1d,0x04,0xe3,
15140
+0xff,0xff,0x00,0x7d,0x00,0x00,0x06,0x27,0x05,0xf0,0x10,0x06,
15141
+0x03,0x21,0x00,0x00,0x00,0x01,0x00,0x7d,0xff,0xe5,0x06,0x27,
15142
+0x05,0xd5,0x00,0x2e,0x00,0x00,0x01,0x21,0x15,0x23,0x11,0x21,
15143
+0x15,0x06,0x07,0x06,0x15,0x10,0x17,0x16,0x20,0x37,0x36,0x11,
15144
+0x34,0x02,0x27,0x35,0x21,0x11,0x23,0x35,0x21,0x16,0x12,0x15,
15145
+0x14,0x07,0x06,0x07,0x06,0x04,0x20,0x27,0x26,0x27,0x26,0x27,
15146
+0x26,0x35,0x34,0x37,0x36,0x02,0x44,0xfe,0xb0,0x75,0x02,0x50,
15147
+0xb4,0x5d,0x5c,0x89,0x89,0x01,0xbc,0x89,0x89,0xb8,0xb3,0x02,
15148
+0x4e,0x75,0xfe,0xb2,0xd1,0xf4,0x39,0x3a,0x6e,0x63,0xff,0x00,
15149
+0xfe,0xde,0x7f,0x7f,0x63,0x6f,0x3a,0x3a,0x7b,0x7a,0x05,0x31,
15150
+0x89,0x01,0x2d,0xb6,0x46,0x9c,0x9b,0xe8,0xfe,0xe9,0xaa,0xa9,
15151
+0xa9,0xaa,0x01,0x17,0xe9,0x01,0x36,0x46,0xb6,0xfe,0xd3,0x89,
15152
+0x57,0xfe,0xa0,0xd6,0x97,0x83,0x83,0x67,0x5b,0x60,0x30,0x2f,
15153
+0x5c,0x67,0x84,0x83,0x96,0xd5,0xb0,0xb1,0xff,0xff,0x00,0x71,
15154
+0x00,0x00,0x06,0x19,0x05,0xd5,0x10,0x06,0x00,0x2e,0x00,0x00,
15155
+0xff,0xff,0xff,0xf4,0x00,0x00,0x05,0xdb,0x07,0x6d,0x10,0x06,
15156
+0x00,0x87,0x00,0x00,0x00,0x01,0x00,0x56,0x00,0x00,0x05,0x1c,
15157
+0x05,0xd5,0x00,0x15,0x00,0x00,0x01,0x15,0x23,0x11,0x33,0x15,
15158
+0x21,0x11,0x33,0x15,0x21,0x11,0x21,0x15,0x23,0x11,0x33,0x15,
15159
+0x21,0x11,0x23,0x35,0x05,0x1c,0xbe,0xbe,0xfb,0x3a,0x7b,0x02,
15160
+0xc2,0xfe,0x02,0x7b,0x7b,0x01,0xfe,0xef,0x05,0xd5,0x6a,0xfb,
15161
+0x00,0x6b,0x01,0x4c,0xd1,0x01,0xf4,0xbb,0x01,0xf0,0xbb,0x02,
15162
+0x82,0x6a,0x00,0x00,0x00,0x03,0x00,0x46,0x00,0x00,0x05,0x96,
15163
+0x04,0x27,0x00,0x13,0x00,0x17,0x00,0x1b,0x00,0x00,0x33,0x35,
15164
+0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x15,0x21,0x35,
15165
+0x33,0x11,0x21,0x11,0x33,0x15,0x01,0x11,0x33,0x11,0x21,0x23,
15166
+0x11,0x33,0x46,0x97,0x97,0x05,0x50,0x98,0x98,0xfd,0x83,0x83,
15167
+0xfe,0xa3,0x82,0xfe,0x95,0x70,0x02,0xbf,0x70,0x70,0x79,0x03,
15168
+0x35,0x79,0x79,0xfc,0xcb,0x79,0x79,0x03,0x35,0xfc,0xcb,0x79,
15169
+0x03,0xae,0xfc,0xcb,0x03,0x35,0xfc,0xcb,0x00,0x03,0x00,0x32,
15170
+0xfe,0x54,0x04,0xeb,0x04,0x27,0x00,0x1a,0x00,0x24,0x00,0x34,
15171
+0x00,0x00,0x01,0x06,0x07,0x12,0x07,0x06,0x07,0x06,0x27,0x26,
15172
+0x37,0x01,0x23,0x35,0x21,0x13,0x12,0x37,0x36,0x27,0x26,0x27,
15173
+0x35,0x33,0x16,0x17,0x16,0x25,0x16,0x15,0x14,0x07,0x37,0x36,
15174
+0x35,0x34,0x26,0x01,0x14,0x16,0x33,0x32,0x37,0x36,0x26,0x2f,
15175
+0x01,0x37,0x01,0x23,0x01,0x07,0x06,0x04,0x63,0xc4,0x9a,0x41,
15176
+0x36,0x5c,0x6b,0x93,0x33,0x36,0x7c,0xfe,0xde,0x75,0x01,0xa9,
15177
+0xfa,0xba,0x2c,0x0b,0x1e,0x17,0x3e,0x81,0xcc,0x4b,0x68,0xfe,
15178
+0xc8,0x1c,0x4f,0x24,0x86,0x3c,0xfd,0x95,0x2e,0x29,0x33,0x37,
15179
+0x07,0x0e,0x16,0x0e,0x02,0xfe,0xfe,0x58,0x01,0x23,0x1c,0x45,
15180
+0x01,0xa8,0xcc,0xb8,0xfe,0xf0,0x47,0x77,0x02,0x03,0x67,0x6e,
15181
+0xca,0x03,0xcc,0x6b,0xfc,0xb5,0x01,0x21,0xcd,0x34,0x66,0x4d,
15182
+0x4a,0x2c,0x3a,0x8a,0xc0,0xe6,0x5d,0x42,0x60,0xb3,0x25,0x8b,
15183
+0x62,0x2a,0x56,0xfb,0x9a,0x1e,0x18,0x45,0x19,0x83,0x5a,0x3b,
15184
+0x03,0x03,0x68,0xfc,0x31,0x2e,0x70,0x00,0x00,0x02,0x00,0x60,
15185
+0x00,0x00,0x05,0x93,0x05,0xd5,0x00,0x0d,0x00,0x11,0x00,0x00,
15186
+0x25,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x11,0x23,
15187
+0x35,0x21,0x01,0x33,0x11,0x23,0x02,0xa2,0xeb,0xfc,0xd3,0xbf,
15188
+0xbf,0x05,0x33,0x89,0xfd,0x98,0xfe,0xf6,0x91,0x91,0x79,0x79,
15189
+0x79,0x04,0xe3,0x79,0xfe,0xa0,0xd7,0xfb,0x2d,0x04,0xe3,0x00,
15190
+0x00,0x03,0x00,0x60,0x00,0x00,0x07,0x32,0x05,0xd5,0x00,0x13,
15191
+0x00,0x17,0x00,0x1b,0x00,0x00,0x01,0x15,0x23,0x11,0x33,0x15,
15192
+0x21,0x35,0x33,0x11,0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,
15193
+0x23,0x35,0x01,0x11,0x23,0x11,0x21,0x11,0x23,0x11,0x07,0x32,
15194
+0xbf,0xbf,0xfd,0x01,0xbf,0xfd,0xae,0xbf,0xfd,0x01,0xbf,0xbf,
15195
+0x05,0x9a,0x8f,0xfc,0xbc,0x8f,0x05,0xd5,0x79,0xfb,0x1d,0x79,
15196
+0x79,0x04,0xd3,0xfb,0x2d,0x79,0x79,0x04,0xe3,0x79,0xfa,0xa4,
15197
+0x04,0xe3,0xfb,0x1d,0x04,0xe3,0xfb,0x1d,0x00,0x03,0x00,0x35,
15198
+0xfe,0x77,0x05,0x82,0x05,0xc1,0x00,0x03,0x00,0x07,0x00,0x15,
15199
+0x00,0x00,0x01,0x23,0x01,0x37,0x01,0x21,0x35,0x21,0x05,0x09,
15200
+0x01,0x21,0x11,0x23,0x35,0x21,0x09,0x01,0x21,0x35,0x33,0x11,
15201
+0x01,0xf8,0xd3,0x02,0x43,0x65,0xfd,0x6b,0x03,0xcf,0xfc,0x71,
15202
+0xfe,0xbd,0x02,0xf2,0xfd,0x0e,0x05,0x4d,0x7b,0xfd,0x72,0x01,
15203
+0xeb,0xfd,0x64,0x03,0x3f,0x7b,0x05,0x4c,0xfd,0x32,0x7e,0xfb,
15204
+0xf3,0x50,0xc8,0x03,0xa7,0x03,0xa3,0xfe,0xb4,0xc3,0xfd,0x92,
15205
+0xfc,0xc3,0x7f,0xfe,0x6b,0x00,0x00,0x00,0x00,0x01,0x00,0xa3,
15206
+0xff,0xe3,0x05,0xbb,0x05,0xf0,0x00,0x1d,0x00,0x00,0x01,0x11,
15207
+0x21,0x15,0x21,0x11,0x36,0x24,0x33,0x20,0x00,0x11,0x10,0x00,
15208
+0x21,0x22,0x24,0x27,0x35,0x1e,0x01,0x33,0x20,0x00,0x11,0x10,
15209
+0x00,0x21,0x22,0x06,0x01,0x6b,0x01,0x4a,0xfd,0xee,0x75,0x01,
15210
+0x1a,0xa0,0x01,0x5e,0x01,0x8b,0xfe,0x75,0xfe,0xa2,0x92,0xfe,
15211
+0xf9,0x6f,0x70,0xfc,0x8b,0x01,0x12,0x01,0x13,0xfe,0xed,0xfe,
15212
+0xee,0x6b,0xa8,0x04,0xfe,0xfe,0x6f,0xa6,0x02,0x81,0x53,0x55,
15213
+0xfe,0x67,0xfe,0x93,0xfe,0x92,0xfe,0x67,0x48,0x46,0xd7,0x5f,
15214
+0x60,0x01,0x32,0x01,0x2f,0x01,0x2e,0x01,0x32,0x25,0x00,0x00,
15215
+0x00,0x01,0x00,0x08,0x00,0x00,0x03,0xa9,0x05,0xd5,0x00,0x05,
15216
+0x00,0x00,0x21,0x23,0x11,0x21,0x35,0x21,0x03,0xa9,0xca,0xfd,
15217
+0x29,0x03,0xa1,0x05,0x2b,0xaa,0x00,0x00,0x00,0x01,0x00,0x07,
15218
+0x00,0x00,0x03,0xa8,0x05,0xd5,0x00,0x05,0x00,0x00,0x01,0x11,
15219
+0x21,0x35,0x21,0x11,0x03,0xa8,0xfc,0x5f,0x02,0xd7,0x05,0xd5,
15220
+0xfa,0x2b,0xaa,0x05,0x2b,0x00,0x00,0x00,0x00,0x01,0xff,0xfc,
15221
+0x00,0x00,0x04,0xe7,0x05,0xd5,0x00,0x08,0x00,0x00,0x21,0x23,
15222
+0x09,0x01,0x23,0x01,0x11,0x33,0x11,0x04,0xe7,0xd9,0xfe,0x62,
15223
+0xfe,0x65,0xd9,0x02,0x10,0xcb,0x02,0x66,0xfd,0x9a,0x03,0x0e,
15224
+0x02,0xc7,0xfd,0x39,0x00,0x04,0xff,0xcf,0x00,0x00,0x06,0xae,
15225
+0x05,0xd5,0x00,0x09,0x00,0x19,0x00,0x1d,0x00,0x27,0x00,0x00,
15226
+0x25,0x33,0x32,0x00,0x13,0x36,0x35,0x10,0x21,0x23,0x01,0x37,
15227
+0x33,0x13,0x23,0x37,0x21,0x20,0x17,0x16,0x15,0x14,0x07,0x02,
15228
+0x00,0x21,0x25,0x13,0x23,0x03,0x01,0x16,0x03,0x02,0x07,0x24,
15229
+0x13,0x36,0x35,0x10,0x02,0x26,0x8b,0xea,0x01,0x14,0x3f,0x1c,
15230
+0xfe,0x9b,0x8b,0xfc,0xb5,0x17,0xbf,0xf4,0xbf,0x17,0x02,0xfe,
15231
+0x01,0x92,0xb0,0x7d,0x14,0x46,0xfe,0x0a,0xfe,0x6f,0xfe,0xe0,
15232
+0xf4,0x8f,0xf4,0x04,0x29,0x6a,0x49,0x49,0xb3,0x01,0x62,0x53,
15233
+0x12,0x79,0x01,0x2c,0x01,0x47,0x90,0x7c,0x01,0x64,0xfa,0xa4,
15234
+0x79,0x04,0xe3,0x79,0xc0,0x89,0xe0,0x59,0x67,0xfe,0x95,0xfe,
15235
+0x7f,0x79,0x04,0xe3,0xfb,0x1d,0x04,0xa2,0xb5,0xfe,0x8c,0xfe,
15236
+0x81,0xb9,0x89,0x01,0xa9,0x5b,0x4d,0x01,0x1b,0x00,0x00,0x00,
15237
+0x00,0x04,0x00,0x16,0xff,0xe3,0x05,0x6b,0x06,0x14,0x00,0x0e,
15238
+0x00,0x22,0x00,0x26,0x00,0x34,0x00,0x00,0x01,0x34,0x23,0x22,
15239
+0x06,0x07,0x06,0x14,0x17,0x16,0x32,0x36,0x3f,0x01,0x36,0x24,
15240
+0x00,0x20,0x17,0x13,0x23,0x37,0x21,0x01,0x33,0x07,0x21,0x37,
15241
+0x06,0x20,0x27,0x26,0x35,0x34,0x37,0x09,0x01,0x33,0x09,0x01,
15242
+0x26,0x34,0x37,0x12,0x37,0x06,0x07,0x06,0x07,0x06,0x15,0x14,
15243
+0x16,0x03,0x5f,0x97,0x6e,0x7b,0x2d,0x1b,0x0a,0x1c,0xd6,0x81,
15244
+0x24,0x14,0x13,0xfc,0xfb,0x01,0x3d,0x01,0xbf,0x39,0x63,0x98,
15245
+0x17,0x01,0xfa,0xfe,0xe9,0x97,0x17,0xfe,0x07,0x1a,0x79,0xfe,
15246
+0x41,0x64,0x43,0x11,0x04,0x44,0xff,0x00,0x70,0x01,0x00,0xfc,
15247
+0x68,0x27,0x1d,0x3d,0x71,0x5b,0x48,0x7a,0x2a,0x0f,0x60,0x02,
15248
+0xf1,0xb7,0xaf,0xe5,0x8d,0x8e,0x22,0x58,0xa6,0xba,0x69,0x63,
15249
+0x6f,0x01,0x2a,0xa4,0x01,0xfc,0x78,0xfa,0x65,0x79,0x87,0xa4,
15250
+0x96,0x64,0x94,0x4b,0x58,0x03,0x87,0xfa,0xde,0x05,0x22,0xfa,
15251
+0xd0,0x3f,0xd4,0x96,0x01,0x38,0x70,0x19,0x43,0x73,0xd9,0x4c,
15252
+0x3f,0x76,0x8f,0x00,0x00,0x04,0x00,0x44,0xff,0xe3,0x04,0xbf,
15253
+0x04,0x44,0x00,0x08,0x00,0x20,0x00,0x2c,0x00,0x33,0x00,0x00,
15254
+0x01,0x36,0x34,0x27,0x26,0x22,0x07,0x06,0x0f,0x01,0x06,0x16,
15255
+0x33,0x32,0x37,0x33,0x06,0x04,0x23,0x20,0x27,0x26,0x35,0x34,
15256
+0x37,0x12,0x00,0x20,0x17,0x16,0x15,0x14,0x07,0x01,0x26,0x34,
15257
+0x3f,0x01,0x36,0x37,0x06,0x03,0x06,0x15,0x14,0x01,0x16,0x14,
15258
+0x07,0x33,0x35,0x34,0x03,0x42,0x1b,0x08,0x17,0xb9,0x38,0x3b,
15259
+0x26,0x17,0x2a,0x59,0x7e,0xf9,0x56,0xa6,0x4e,0xfe,0xdf,0xe6,
15260
+0xfe,0xec,0x77,0x53,0x10,0x33,0x01,0x68,0x02,0x15,0x6f,0x4c,
15261
+0x0f,0xfc,0xab,0x16,0x16,0x1c,0x25,0x39,0xd2,0x36,0x0e,0x03,
15262
+0x15,0x04,0x1c,0x88,0x02,0x58,0x87,0x81,0x1e,0x55,0x53,0x5c,
15263
+0xcc,0x77,0xd4,0xb9,0xee,0xb5,0xaa,0x91,0x66,0xa1,0x46,0x53,
15264
+0x01,0x08,0x01,0x28,0x9c,0x6b,0xb1,0x4f,0x5c,0xfe,0xa2,0x3a,
15265
+0xab,0x71,0x91,0xc0,0x68,0x6a,0xfe,0xec,0x47,0x3b,0xc7,0x02,
15266
+0xc2,0x1d,0x84,0x92,0x1b,0xc7,0x00,0x00,0x00,0x04,0xff,0xaf,
15267
+0x00,0x00,0x02,0xb1,0x06,0x14,0x00,0x09,0x00,0x13,0x00,0x1c,
15268
+0x00,0x20,0x00,0x00,0x01,0x34,0x36,0x32,0x16,0x15,0x14,0x06,
15269
+0x22,0x26,0x13,0x33,0x07,0x21,0x37,0x33,0x13,0x23,0x37,0x21,
15270
+0x26,0x3e,0x01,0x34,0x26,0x22,0x0e,0x01,0x16,0x03,0x33,0x13,
15271
+0x23,0x01,0x2a,0x99,0xa0,0x4e,0x98,0xa0,0x4f,0x95,0x98,0x17,
15272
+0xfd,0x6f,0x17,0x97,0xa0,0x97,0x17,0x01,0xf9,0x78,0x30,0x08,
15273
+0x1c,0x3c,0x31,0x0c,0x21,0xec,0x70,0xa0,0x70,0x05,0x2d,0x68,
15274
+0x7f,0x61,0x37,0x67,0x7f,0x60,0xfb,0x83,0x79,0x79,0x03,0x35,
15275
+0x79,0xe8,0x28,0x25,0x1c,0x23,0x28,0x3c,0x28,0xfb,0x6a,0x03,
15276
+0x35,0x00,0x00,0x00,0x00,0x04,0xfe,0xac,0xfe,0x39,0x02,0xd3,
15277
+0x06,0x14,0x00,0x09,0x00,0x1a,0x00,0x23,0x00,0x2b,0x00,0x00,
15278
+0x01,0x34,0x36,0x32,0x16,0x15,0x14,0x06,0x22,0x26,0x03,0x23,
15279
+0x37,0x21,0x03,0x02,0x21,0x22,0x27,0x37,0x17,0x06,0x14,0x16,
15280
+0x32,0x36,0x37,0x00,0x0e,0x01,0x16,0x32,0x36,0x35,0x34,0x23,
15281
+0x01,0x3e,0x01,0x37,0x13,0x23,0x03,0x06,0x01,0x4c,0x98,0xa0,
15282
+0x4f,0x98,0xa0,0x4f,0x25,0x97,0x18,0x01,0xf9,0xe7,0x40,0xfe,
15283
+0x38,0x78,0x8e,0x2c,0x71,0x05,0x25,0x8b,0x4c,0x18,0x01,0xa7,
15284
+0x30,0x0c,0x21,0x3d,0x37,0x39,0xfe,0x77,0x4a,0x52,0x0f,0xcf,
15285
+0x70,0xcf,0x16,0x05,0x2d,0x67,0x80,0x62,0x37,0x66,0x7f,0x60,
15286
+0xfe,0xb8,0x79,0xfb,0x5c,0xfe,0xb6,0x27,0xe2,0x01,0x1e,0x3f,
15287
+0x3a,0x5e,0x7b,0x06,0x18,0x28,0x3c,0x28,0x2e,0x1d,0x41,0xf9,
15288
+0x31,0x17,0x55,0x4b,0x04,0x2b,0xfb,0xd5,0x71,0x00,0x00,0x00,
15289
+0x00,0x02,0x00,0x61,0xff,0xe3,0x06,0x8c,0x05,0xf0,0x00,0x09,
15290
+0x00,0x37,0x00,0x00,0x09,0x01,0x3e,0x01,0x35,0x34,0x26,0x23,
15291
+0x22,0x06,0x25,0x21,0x17,0x3e,0x01,0x33,0x20,0x00,0x15,0x14,
15292
+0x06,0x07,0x1e,0x01,0x15,0x14,0x06,0x23,0x22,0x26,0x27,0x11,
15293
+0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x34,0x26,0x27,0x01,0x0e,
15294
+0x01,0x07,0x33,0x15,0x21,0x35,0x33,0x3e,0x01,0x37,0x27,0x23,
15295
+0x02,0xcd,0x02,0x46,0x57,0x57,0xe6,0xac,0x66,0xb5,0xfd,0x4d,
15296
+0x01,0x91,0x89,0x69,0xee,0x8a,0x01,0x02,0x01,0x2e,0x99,0x9b,
15297
+0x33,0x30,0xe5,0xc5,0x43,0xb3,0x73,0x71,0x0e,0x80,0x6e,0x67,
15298
+0x80,0x44,0x6c,0xfd,0xfc,0x45,0x4f,0x0a,0xb4,0xfe,0x27,0xac,
15299
+0x11,0x63,0x53,0xac,0xeb,0x04,0xec,0xfd,0x9b,0x4e,0xb5,0x66,
15300
+0xa6,0xe1,0x47,0xa3,0x91,0x58,0x56,0xfe,0xf8,0xe2,0x85,0xe7,
15301
+0x65,0x3d,0x79,0x42,0x9f,0xbb,0x22,0x22,0x01,0x02,0x6b,0x70,
15302
+0x71,0x5a,0x3d,0x79,0x71,0x02,0x20,0x50,0xb9,0x69,0x6b,0x6b,
15303
+0x82,0xe2,0x60,0xb7,0x00,0x01,0x00,0x31,0x00,0x00,0x03,0xe2,
15304
+0x04,0x27,0x00,0x15,0x00,0x00,0x33,0x11,0x33,0x15,0x21,0x11,
15305
+0x21,0x15,0x23,0x11,0x33,0x15,0x21,0x11,0x23,0x35,0x21,0x15,
15306
+0x23,0x11,0x33,0x15,0x31,0x6a,0x01,0xe8,0xfe,0xec,0x6a,0x6a,
15307
+0x01,0x14,0xa7,0x02,0x06,0xa7,0xa7,0x01,0x21,0xa6,0x01,0x41,
15308
+0x86,0x01,0x62,0x72,0x01,0x97,0x6a,0x6a,0xfc,0xad,0x6a,0x00,
15309
+0xff,0xff,0x00,0x93,0xff,0xe3,0x07,0x85,0x05,0xf0,0x10,0x27,
15310
+0x07,0xaa,0x03,0x35,0x00,0x00,0x10,0x26,0x00,0x7b,0x00,0x00,
15311
+0x10,0x07,0x07,0xca,0x04,0x8b,0xfd,0x64,0xff,0xff,0x00,0x93,
15312
+0xff,0xe3,0x07,0x8d,0x05,0xf0,0x10,0x27,0x07,0xaa,0x03,0x35,
15313
+0x00,0x00,0x10,0x26,0x00,0x7b,0x00,0x00,0x10,0x07,0x07,0xcc,
15314
+0x04,0x8b,0xfd,0x64,0xff,0xff,0x00,0x93,0xff,0xe3,0x0a,0xc0,
15315
+0x05,0xf0,0x10,0x27,0x07,0xaa,0x03,0x35,0x00,0x00,0x10,0x26,
15316
+0x00,0x7b,0x00,0x00,0x10,0x27,0x00,0x7b,0x04,0x8b,0xfd,0x64,
15317
+0x10,0x07,0x07,0xc5,0x07,0xc0,0xfd,0x64,0xff,0xff,0x00,0x93,
15318
+0xff,0xe3,0x07,0x58,0x05,0xf0,0x10,0x27,0x00,0x75,0x04,0x8b,
15319
+0xfd,0x64,0x10,0x27,0x07,0xaa,0x03,0x35,0x00,0x00,0x10,0x06,
15320
+0x00,0x7b,0x00,0x00,0xff,0xff,0x00,0x5a,0xff,0xe3,0x07,0x58,
15321
+0x05,0xf0,0x10,0x27,0x00,0x75,0x04,0x8b,0xfd,0x64,0x10,0x27,
15322
+0x07,0xaa,0x03,0x35,0x00,0x00,0x10,0x06,0x00,0x74,0x00,0x00,
15323
+0xff,0xff,0x00,0x93,0xff,0xe3,0x07,0x71,0x05,0xf0,0x10,0x27,
15324
+0x07,0xc8,0x04,0x8b,0xfd,0x64,0x10,0x27,0x07,0xaa,0x03,0x35,
15325
+0x00,0x00,0x10,0x06,0x00,0x7b,0x00,0x00,0xff,0xff,0x00,0x5a,
15326
+0xff,0xe3,0x07,0x71,0x05,0xf0,0x10,0x27,0x07,0xc8,0x04,0x8b,
15327
+0xfd,0x64,0x10,0x27,0x07,0xaa,0x03,0x35,0x00,0x00,0x10,0x06,
15328
+0x00,0x74,0x00,0x00,0xff,0xff,0x00,0x64,0xff,0xe3,0x07,0x71,
15329
+0x05,0xf0,0x10,0x27,0x07,0xc8,0x04,0x8b,0xfd,0x64,0x10,0x27,
15330
+0x07,0xaa,0x03,0x35,0x00,0x00,0x10,0x06,0x00,0x75,0x00,0x00,
15331
+0xff,0xff,0x00,0x35,0xff,0xe3,0x07,0x71,0x05,0xf0,0x10,0x27,
15332
+0x07,0xc8,0x04,0x8b,0xfd,0x64,0x10,0x27,0x07,0xaa,0x03,0x35,
15333
+0x00,0x00,0x10,0x06,0x07,0xc7,0x00,0x00,0xff,0xff,0x00,0x93,
15334
+0xff,0xe3,0x07,0x83,0x05,0xf0,0x10,0x27,0x07,0xc9,0x04,0x8b,
15335
+0xfd,0x64,0x10,0x27,0x07,0xaa,0x03,0x35,0x00,0x00,0x10,0x06,
15336
+0x00,0x7b,0x00,0x00,0xff,0xff,0x00,0x44,0xff,0xe3,0x07,0x83,
15337
+0x05,0xf0,0x10,0x27,0x07,0xc9,0x04,0x8b,0xfd,0x64,0x10,0x27,
15338
+0x07,0xaa,0x03,0x35,0x00,0x00,0x10,0x06,0x07,0xc8,0x00,0x00,
15339
+0xff,0xff,0x00,0x93,0xff,0xe3,0x07,0x8a,0x05,0xf0,0x10,0x27,
15340
+0x07,0xcb,0x04,0x8b,0xfd,0x64,0x10,0x27,0x07,0xaa,0x03,0x35,
15341
+0x00,0x00,0x10,0x06,0x00,0x7b,0x00,0x00,0xff,0xff,0x00,0x64,
15342
+0xff,0xe3,0x07,0x8a,0x05,0xf0,0x10,0x27,0x07,0xcb,0x04,0x8b,
15343
+0xfd,0x64,0x10,0x27,0x07,0xaa,0x03,0x35,0x00,0x00,0x10,0x06,
15344
+0x00,0x75,0x00,0x00,0xff,0xff,0x00,0x44,0xff,0xe3,0x07,0x8a,
15345
+0x05,0xf0,0x10,0x27,0x07,0xcb,0x04,0x8b,0xfd,0x64,0x10,0x27,
15346
+0x07,0xaa,0x03,0x35,0x00,0x00,0x10,0x06,0x07,0xc8,0x00,0x00,
15347
+0xff,0xff,0x00,0x4f,0xff,0xe3,0x07,0x8a,0x05,0xf0,0x10,0x27,
15348
+0x07,0xcb,0x04,0x8b,0xfd,0x64,0x10,0x27,0x07,0xaa,0x03,0x35,
15349
+0x00,0x00,0x10,0x06,0x07,0xca,0x00,0x00,0xff,0xff,0x00,0x93,
15350
+0xff,0xe3,0x06,0x02,0x05,0xf0,0x10,0x27,0x07,0xaa,0x03,0x35,
15351
+0x00,0x00,0x10,0x06,0x00,0x7b,0x00,0x00,0xff,0xff,0x00,0x71,
15352
+0x00,0x00,0x02,0xb8,0x05,0xd5,0x12,0x06,0x00,0x2c,0x00,0x00,
15353
+0x00,0x02,0x00,0x71,0x00,0x00,0x04,0x48,0x05,0xd5,0x00,0x0b,
15354
+0x00,0x0f,0x00,0x00,0x25,0x33,0x15,0x21,0x35,0x33,0x11,0x23,
15355
+0x35,0x21,0x15,0x2b,0x02,0x11,0x33,0x03,0x8a,0xbe,0xfc,0x29,
15356
+0xbe,0xbe,0x03,0xd7,0xbe,0xcb,0xc5,0xc5,0x6a,0x6a,0x6a,0x05,
15357
+0x00,0x6b,0x6b,0xfb,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x71,
15358
+0x00,0x00,0x05,0xd8,0x05,0xd5,0x00,0x0b,0x00,0x0f,0x00,0x13,
15359
+0x00,0x00,0x25,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,
15360
+0x15,0x2b,0x02,0x11,0x33,0x01,0x23,0x11,0x33,0x05,0x1a,0xbe,
15361
+0xfa,0x99,0xbe,0xbe,0x05,0x67,0xbe,0xcb,0xc5,0xc5,0xfe,0x70,
15362
+0xc5,0xc5,0x6a,0x6a,0x6a,0x05,0x00,0x6b,0x6b,0xfb,0x00,0x05,
15363
+0x00,0xfb,0x00,0x00,0x00,0x01,0x00,0x71,0x00,0x00,0x07,0xd9,
15364
+0x05,0xd5,0x00,0x16,0x00,0x00,0x09,0x02,0x23,0x35,0x21,0x15,
15365
+0x23,0x01,0x23,0x01,0x23,0x11,0x33,0x15,0x21,0x35,0x33,0x11,
15366
+0x23,0x35,0x21,0x15,0x03,0x5a,0x01,0xb9,0x01,0xb8,0xa8,0x01,
15367
+0xb6,0x91,0xfd,0xeb,0xac,0xfd,0xee,0x7b,0xbe,0xfd,0xb9,0xbe,
15368
+0xbe,0x03,0x8f,0x05,0x6a,0xfb,0x86,0x04,0x7a,0x6b,0x6b,0xfa,
15369
+0x96,0x05,0x6a,0xfb,0x00,0x6a,0x6a,0x05,0x00,0x6b,0x6b,0x00,
15370
+0xff,0xff,0xff,0xec,0x00,0x00,0x05,0xe5,0x05,0xd5,0x12,0x06,
15371
+0x00,0x39,0x00,0x00,0x00,0x01,0xff,0xec,0x00,0x00,0x07,0x68,
15372
+0x05,0xd5,0x00,0x16,0x00,0x00,0x25,0x33,0x15,0x21,0x35,0x33,
15373
+0x11,0x23,0x01,0x23,0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,
15374
+0x23,0x35,0x21,0x15,0x23,0x06,0xaa,0xbe,0xfd,0xb9,0xbe,0x8b,
15375
+0xfd,0xeb,0xac,0xfd,0xee,0x95,0x02,0x20,0xa6,0x01,0xb9,0x01,
15376
+0xb8,0xa8,0x03,0x39,0xbe,0x6a,0x6a,0x6a,0x05,0x00,0xfa,0x96,
15377
+0x05,0x6a,0x6b,0x6b,0xfb,0x86,0x04,0x7a,0x6b,0x6b,0x00,0x00,
15378
+0x00,0x02,0xff,0xec,0x00,0x00,0x08,0xf8,0x05,0xd5,0x00,0x16,
15379
+0x00,0x1a,0x00,0x00,0x25,0x33,0x15,0x21,0x35,0x33,0x11,0x23,
15380
+0x01,0x23,0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x23,0x35,
15381
+0x21,0x15,0x2b,0x02,0x11,0x33,0x08,0x3a,0xbe,0xfc,0x29,0xbe,
15382
+0x8b,0xfd,0xeb,0xac,0xfd,0xee,0x95,0x02,0x20,0xa6,0x01,0xb9,
15383
+0x01,0xb8,0xa8,0x04,0xc9,0xbe,0xcb,0xc5,0xc5,0x6a,0x6a,0x6a,
15384
+0x05,0x00,0xfa,0x96,0x05,0x6a,0x6b,0x6b,0xfb,0x86,0x04,0x7a,
15385
+0x6b,0x6b,0xfb,0x00,0x00,0x03,0xff,0xec,0x00,0x00,0x0a,0x88,
15386
+0x05,0xd5,0x00,0x16,0x00,0x1a,0x00,0x1e,0x00,0x00,0x25,0x33,
15387
+0x15,0x21,0x35,0x33,0x11,0x23,0x01,0x23,0x01,0x23,0x35,0x21,
15388
+0x15,0x23,0x09,0x01,0x23,0x35,0x21,0x15,0x23,0x21,0x23,0x11,
15389
+0x33,0x01,0x23,0x11,0x33,0x09,0xca,0xbe,0xfa,0x99,0xbe,0x8b,
15390
+0xfd,0xeb,0xac,0xfd,0xee,0x95,0x02,0x20,0xa6,0x01,0xb9,0x01,
15391
+0xb8,0xa8,0x06,0x59,0xbe,0xfd,0xa5,0xc5,0xc5,0x01,0x90,0xc5,
15392
+0xc5,0x6a,0x6a,0x6a,0x05,0x00,0xfa,0x96,0x05,0x6a,0x6b,0x6b,
15393
+0xfb,0x86,0x04,0x7a,0x6b,0x6b,0xfb,0x00,0x05,0x00,0xfb,0x00,
15394
+0x00,0x02,0x00,0x71,0x00,0x00,0x07,0x6a,0x05,0xd5,0x00,0x1a,
15395
+0x00,0x1f,0x00,0x00,0x09,0x01,0x33,0x15,0x21,0x35,0x33,0x11,
15396
+0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x23,0x35,0x21,0x15,0x23,
15397
+0x09,0x01,0x33,0x15,0x21,0x35,0x33,0x01,0x11,0x33,0x09,0x01,
15398
+0x04,0x68,0xfe,0x93,0xc1,0xfc,0xb5,0xbe,0xbe,0x03,0xb3,0xb0,
15399
+0x01,0x40,0x01,0x49,0xc0,0x01,0xe9,0xa8,0xfe,0x75,0x01,0xd7,
15400
+0xa0,0xfd,0xb0,0xb2,0xfc,0x2e,0x80,0x01,0xae,0xfe,0x4c,0x02,
15401
+0x7f,0xfd,0xeb,0x6a,0x6a,0x05,0x00,0x6b,0x6b,0xfe,0x1f,0x01,
15402
+0xe1,0x6b,0x6b,0xfd,0xc1,0xfd,0x3f,0x6a,0x6a,0x05,0x00,0xfb,
15403
+0x00,0x02,0x73,0x02,0x8d,0x00,0x00,0x00,0xff,0xff,0x00,0x0c,
15404
+0x00,0x00,0x05,0xa8,0x05,0xd5,0x12,0x06,0x00,0x3b,0x00,0x00,
15405
+0x00,0x02,0x00,0x0c,0x00,0x00,0x07,0x04,0x05,0xd5,0x00,0x1a,
15406
+0x00,0x1f,0x00,0x00,0x25,0x33,0x15,0x21,0x35,0x33,0x09,0x01,
15407
+0x33,0x15,0x21,0x35,0x33,0x09,0x01,0x23,0x35,0x21,0x15,0x23,
15408
+0x09,0x01,0x23,0x35,0x21,0x15,0x23,0x03,0x11,0x23,0x09,0x01,
15409
+0x06,0x46,0xbe,0xfc,0x54,0xb2,0xfe,0x9c,0xfe,0x93,0xc1,0xfe,
15410
+0x12,0xac,0x01,0xae,0xfe,0x4c,0xa0,0x02,0x50,0xb0,0x01,0x40,
15411
+0x01,0x49,0xc0,0x03,0x89,0xbe,0xcb,0xbf,0xfe,0x75,0x01,0xd7,
15412
+0x6a,0x6a,0x6a,0x02,0x15,0xfd,0xeb,0x6a,0x6a,0x02,0x73,0x02,
15413
+0x8d,0x6b,0x6b,0xfe,0x1f,0x01,0xe1,0x6b,0x6b,0xfb,0x00,0x05,
15414
+0x00,0xfd,0xc1,0xfd,0x3f,0x00,0x00,0x00,0x00,0x03,0x00,0x0c,
15415
+0x00,0x00,0x08,0x94,0x05,0xd5,0x00,0x1a,0x00,0x1e,0x00,0x23,
15416
+0x00,0x00,0x25,0x33,0x15,0x21,0x35,0x33,0x09,0x01,0x33,0x15,
15417
+0x21,0x35,0x33,0x09,0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,
15418
+0x23,0x35,0x21,0x15,0x2b,0x02,0x11,0x33,0x21,0x11,0x23,0x09,
15419
+0x01,0x07,0xd6,0xbe,0xfa,0xc4,0xb2,0xfe,0x9c,0xfe,0x93,0xc1,
15420
+0xfe,0x12,0xac,0x01,0xae,0xfe,0x4c,0xa0,0x02,0x50,0xb0,0x01,
15421
+0x40,0x01,0x49,0xc0,0x05,0x19,0xbe,0xcb,0xc5,0xc5,0xfe,0x70,
15422
+0xbf,0xfe,0x75,0x01,0xd7,0x6a,0x6a,0x6a,0x02,0x15,0xfd,0xeb,
15423
+0x6a,0x6a,0x02,0x73,0x02,0x8d,0x6b,0x6b,0xfe,0x1f,0x01,0xe1,
15424
+0x6b,0x6b,0xfb,0x00,0x05,0x00,0xfd,0xc1,0xfd,0x3f,0x00,0x00,
15425
+0xff,0xff,0x00,0x71,0x00,0x00,0x05,0x1f,0x05,0xd5,0x12,0x06,
15426
+0x00,0x2f,0x00,0x00,0xff,0xff,0x00,0x73,0xff,0xe3,0x05,0xa4,
15427
+0x05,0xf0,0x12,0x06,0x00,0x26,0x00,0x00,0xff,0xff,0x00,0x71,
15428
+0x00,0x00,0x05,0xf4,0x05,0xd5,0x12,0x06,0x00,0x27,0x00,0x00,
15429
+0xff,0xff,0x00,0x66,0x00,0x00,0x07,0xc9,0x05,0xd5,0x12,0x06,
15430
+0x00,0x30,0x00,0x00,0xff,0xff,0x00,0x4a,0x00,0x00,0x02,0x60,
15431
+0x05,0xe3,0x12,0x06,0x00,0x4c,0x00,0x00,0xff,0xff,0x00,0x4a,
15432
+0x00,0x00,0x04,0xef,0x05,0xe3,0x10,0x27,0x00,0x4c,0x02,0x8f,
15433
+0x00,0x00,0x10,0x06,0x00,0x4c,0x00,0x00,0xff,0xff,0x00,0x4a,
15434
+0x00,0x00,0x07,0x7e,0x05,0xe3,0x10,0x27,0x00,0x4c,0x05,0x1e,
15435
+0x00,0x00,0x10,0x27,0x00,0x4c,0x02,0x8f,0x00,0x00,0x10,0x06,
15436
+0x00,0x4c,0x00,0x00,0xff,0xff,0x00,0x4a,0x00,0x00,0x07,0x0e,
15437
+0x05,0xe3,0x10,0x27,0x00,0x59,0x02,0x8f,0x00,0x00,0x10,0x06,
15438
+0x00,0x4c,0x00,0x00,0xff,0xff,0xff,0xfa,0x00,0x00,0x04,0x7f,
15439
+0x04,0x27,0x12,0x06,0x00,0x59,0x00,0x00,0xff,0xff,0xff,0xfa,
15440
+0x00,0x00,0x06,0xe5,0x05,0xe3,0x10,0x27,0x00,0x4c,0x04,0x85,
15441
+0x00,0x00,0x10,0x06,0x00,0x59,0x00,0x00,0xff,0xff,0xff,0xfa,
15442
+0x00,0x00,0x09,0x74,0x05,0xe3,0x10,0x27,0x00,0x4c,0x04,0x85,
15443
+0x00,0x00,0x10,0x27,0x00,0x4c,0x07,0x14,0x00,0x00,0x10,0x06,
15444
+0x00,0x59,0x00,0x00,0xff,0xff,0xff,0xfa,0x00,0x00,0x0c,0x03,
15445
+0x05,0xe3,0x10,0x27,0x00,0x4c,0x04,0x85,0x00,0x00,0x10,0x27,
15446
+0x00,0x4c,0x07,0x14,0x00,0x00,0x10,0x27,0x00,0x4c,0x09,0xa3,
15447
+0x00,0x00,0x10,0x06,0x00,0x59,0x00,0x00,0xff,0xff,0x00,0x4a,
15448
+0x00,0x00,0x06,0xf9,0x05,0xe3,0x10,0x27,0x00,0x5b,0x02,0x8f,
15449
+0x00,0x00,0x10,0x06,0x00,0x4c,0x00,0x00,0xff,0xff,0x00,0x19,
15450
+0x00,0x00,0x04,0x6a,0x04,0x27,0x12,0x06,0x00,0x5b,0x00,0x00,
15451
+0xff,0xff,0x00,0x19,0x00,0x00,0x06,0xe3,0x05,0xe3,0x10,0x27,
15452
+0x00,0x4c,0x04,0x83,0x00,0x00,0x10,0x06,0x00,0x5b,0x00,0x00,
15453
+0xff,0xff,0x00,0x19,0x00,0x00,0x09,0x72,0x05,0xe3,0x10,0x27,
15454
+0x00,0x4c,0x04,0x83,0x00,0x00,0x10,0x27,0x00,0x4c,0x07,0x12,
15455
+0x00,0x00,0x10,0x06,0x00,0x5b,0x00,0x00,0xff,0xff,0x00,0x3b,
15456
+0x00,0x00,0x02,0x52,0x06,0x14,0x12,0x06,0x00,0x4f,0x00,0x00,
15457
+0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0x1d,0x04,0x44,0x12,0x06,
15458
+0x00,0x46,0x00,0x00,0xff,0xff,0x00,0x66,0xff,0xe3,0x04,0xe3,
15459
+0x06,0x14,0x12,0x06,0x00,0x47,0x00,0x00,0xff,0xff,0x00,0x4a,
15460
+0x00,0x00,0x07,0x5e,0x04,0x44,0x12,0x06,0x00,0x50,0x00,0x00,
15461
+0x00,0x03,0x00,0x71,0x00,0x00,0x09,0x30,0x05,0xd5,0x00,0x0b,
15462
+0x00,0x13,0x00,0x1b,0x00,0x00,0x29,0x01,0x20,0x00,0x10,0x00,
15463
+0x29,0x01,0x20,0x00,0x10,0x00,0x01,0x23,0x20,0x00,0x10,0x00,
15464
+0x21,0x33,0x13,0x11,0x33,0x20,0x00,0x10,0x00,0x21,0x05,0xff,
15465
+0xfd,0xa3,0xfe,0x7f,0xfe,0x50,0x01,0xaf,0x01,0x82,0x02,0x5d,
15466
+0x01,0x82,0x01,0xaf,0xfe,0x50,0xfc,0xeb,0xba,0xfe,0xdc,0xfe,
15467
+0xca,0x01,0x37,0x01,0x23,0xba,0xcb,0xba,0x01,0x23,0x01,0x37,
15468
+0xfe,0xca,0xfe,0xdc,0x01,0x8c,0x02,0xbf,0x01,0x8a,0xfe,0x76,
15469
+0xfd,0x41,0xfe,0x74,0x05,0x6a,0xfe,0xb8,0xfd,0x94,0xfe,0xb4,
15470
+0x05,0x00,0xfb,0x00,0x01,0x4c,0x02,0x6c,0x01,0x48,0x00,0x00,
15471
+0x00,0x03,0x00,0x71,0x00,0x00,0x05,0xf4,0x05,0xd5,0x00,0x0c,
15472
+0x00,0x1d,0x00,0x26,0x00,0x00,0x01,0x23,0x35,0x21,0x20,0x00,
15473
+0x11,0x10,0x00,0x29,0x01,0x35,0x3b,0x02,0x20,0x00,0x10,0x00,
15474
+0x21,0x23,0x15,0x16,0x17,0x16,0x15,0x14,0x07,0x06,0x07,0x19,
15475
+0x01,0x36,0x37,0x36,0x35,0x34,0x27,0x26,0x01,0x2f,0xbe,0x02,
15476
+0x52,0x01,0x82,0x01,0xaf,0xfe,0x50,0xfe,0x7f,0xfd,0xae,0xbe,
15477
+0xcb,0xba,0x01,0x23,0x01,0x37,0xfe,0xca,0xfe,0xdc,0xba,0xba,
15478
+0x78,0x8d,0x8d,0x78,0xba,0x63,0x39,0x4c,0x4c,0x39,0x05,0x6a,
15479
+0x6b,0xfe,0x76,0xfe,0xa1,0xfe,0xa0,0xfe,0x74,0x6a,0x01,0x4c,
15480
+0x02,0x6c,0x01,0x48,0x61,0x14,0x81,0x99,0xff,0xfe,0x9a,0x82,
15481
+0x14,0x03,0xf4,0xfc,0x73,0x15,0x58,0x75,0xe5,0xe6,0x74,0x57,
15482
+0x00,0x05,0x00,0x71,0x00,0x00,0x09,0x30,0x05,0xd5,0x00,0x04,
15483
+0x00,0x14,0x00,0x19,0x00,0x29,0x00,0x35,0x00,0x00,0x01,0x36,
15484
+0x11,0x10,0x27,0x11,0x15,0x33,0x20,0x00,0x10,0x00,0x21,0x23,
15485
+0x15,0x16,0x17,0x16,0x10,0x07,0x06,0x01,0x06,0x11,0x10,0x17,
15486
+0x11,0x35,0x23,0x04,0x00,0x10,0x00,0x05,0x33,0x35,0x26,0x27,
15487
+0x26,0x10,0x37,0x36,0x01,0x21,0x20,0x00,0x10,0x00,0x29,0x01,
15488
+0x20,0x00,0x10,0x00,0x05,0x36,0xe8,0xe8,0xba,0x01,0x23,0x01,
15489
+0x37,0xfe,0xca,0xfe,0xdc,0xba,0xba,0x78,0x8d,0x8d,0x78,0xfe,
15490
+0x7b,0xe8,0xe8,0xbe,0xfe,0xdf,0xfe,0xcb,0x01,0x36,0x01,0x20,
15491
+0xbe,0xba,0x78,0x8d,0x8d,0x78,0x02,0x4e,0xfd,0xa3,0xfe,0x7f,
15492
+0xfe,0x50,0x01,0xaf,0x01,0x82,0x02,0x5d,0x01,0x82,0x01,0xaf,
15493
+0xfe,0x50,0x01,0x15,0x32,0x01,0x95,0x01,0x94,0x32,0xfc,0x0c,
15494
+0x44,0x01,0x4c,0x02,0x6c,0x01,0x48,0x61,0x14,0x81,0x99,0xfe,
15495
+0x03,0x9a,0x82,0x03,0xe0,0x32,0xfe,0x6c,0xfe,0x6b,0x32,0x03,
15496
+0xf4,0x61,0x01,0xfe,0xb9,0xfd,0x94,0xfe,0xb5,0x01,0x44,0x14,
15497
+0x82,0x9a,0x01,0xfd,0x99,0x81,0xfb,0x0b,0x01,0x8c,0x02,0xbf,
15498
+0x01,0x8a,0xfe,0x76,0xfd,0x41,0xfe,0x74,0x00,0x01,0x00,0x73,
15499
+0xff,0xe3,0x05,0xa4,0x05,0xf0,0x00,0x1d,0x00,0x00,0x13,0x33,
15500
+0x1e,0x01,0x33,0x32,0x12,0x11,0x10,0x02,0x23,0x22,0x06,0x07,
15501
+0x23,0x11,0x36,0x24,0x33,0x20,0x00,0x11,0x14,0x02,0x07,0x0e,
15502
+0x01,0x23,0x22,0x24,0x73,0xb8,0x30,0xd8,0xa7,0xef,0xf6,0xf6,
15503
+0xef,0xc9,0xdf,0x25,0x71,0x9f,0x01,0x14,0x7a,0x01,0x49,0x01,
15504
+0x92,0x6d,0x70,0x61,0xfa,0x92,0xee,0xfe,0xc9,0x01,0x8b,0x9e,
15505
+0x9f,0x01,0x53,0x01,0x48,0x01,0x49,0x01,0x53,0xb2,0xbc,0x01,
15506
+0x58,0x41,0x40,0xfe,0x55,0xfe,0xa4,0xb4,0xfe,0xe3,0x70,0x61,
15507
+0x64,0xd7,0x00,0x00,0x00,0x01,0x00,0x66,0xff,0xe3,0x04,0x1d,
15508
+0x04,0x44,0x00,0x1f,0x00,0x00,0x13,0x33,0x1e,0x01,0x33,0x32,
15509
+0x37,0x36,0x10,0x27,0x26,0x23,0x22,0x07,0x06,0x07,0x23,0x11,
15510
+0x36,0x37,0x36,0x33,0x32,0x17,0x16,0x15,0x14,0x07,0x06,0x23,
15511
+0x22,0x26,0x66,0x94,0x1a,0x8e,0x77,0x96,0x4b,0x4c,0x4c,0x4c,
15512
+0x95,0x83,0x46,0x47,0x15,0x6b,0x65,0x64,0x64,0x65,0xe8,0x8d,
15513
+0x8d,0x8d,0x8d,0xe8,0xb0,0xde,0x01,0x3f,0x7d,0x7c,0x74,0x74,
15514
+0x01,0xcc,0x74,0x73,0x40,0x40,0x8c,0x01,0x10,0x30,0x17,0x18,
15515
+0x98,0x99,0xff,0xfe,0x9a,0x99,0xb2,0x00,0x00,0x01,0x00,0x73,
15516
+0xfe,0x56,0x05,0xa4,0x05,0xf0,0x00,0x20,0x00,0x00,0x25,0x07,
15517
+0x06,0x27,0x22,0x26,0x27,0x26,0x02,0x35,0x10,0x00,0x21,0x32,
15518
+0x04,0x17,0x11,0x23,0x2e,0x01,0x23,0x22,0x02,0x11,0x10,0x12,
15519
+0x33,0x32,0x36,0x37,0x33,0x11,0x23,0x04,0xd9,0x13,0x9c,0xed,
15520
+0x92,0xfa,0x61,0x70,0x6d,0x01,0x92,0x01,0x49,0x7a,0x01,0x14,
15521
+0x9f,0x71,0x25,0xdf,0xc9,0xef,0xf6,0xf6,0xef,0xa7,0xd8,0x30,
15522
+0xb8,0xcb,0x5c,0x0e,0x6c,0x01,0x64,0x61,0x70,0x01,0x1d,0xb4,
15523
+0x01,0x5c,0x01,0xab,0x40,0x41,0xfe,0xa8,0xbc,0xb2,0xfe,0xad,
15524
+0xfe,0xb7,0xfe,0xb8,0xfe,0xad,0x9f,0x9e,0xfc,0xcb,0x00,0x00,
15525
+0xff,0xff,0x00,0x34,0xff,0xe3,0x07,0x58,0x05,0xf0,0x10,0x27,
15526
+0x00,0x75,0x04,0x8b,0xfd,0x64,0x10,0x27,0x07,0xaa,0x03,0x35,
15527
+0x00,0x00,0x10,0x06,0x07,0xc5,0x00,0x00,0x00,0x01,0x00,0x4c,
15528
+0x00,0xf4,0x06,0x3f,0x04,0x38,0x00,0x09,0x00,0x4c,0x40,0x0a,
15529
+0x09,0x02,0x05,0x08,0x03,0x07,0x04,0x00,0x05,0x0a,0x10,0xd4,
15530
+0xc4,0xdc,0x3c,0xcc,0x32,0x11,0x39,0x39,0x31,0x40,0x09,0x08,
15531
+0x09,0x03,0x06,0x05,0x02,0x09,0x02,0x0a,0x00,0x10,0xd4,0xcc,
15532
+0x11,0x39,0x39,0xcc,0x10,0xcc,0x30,0x40,0x0c,0x44,0x09,0x44,
15533
+0x02,0x40,0x08,0x40,0x07,0x40,0x03,0x40,0x04,0x40,0x0d,0x54,
15534
+0x09,0x54,0x02,0x50,0x08,0x50,0x07,0x50,0x03,0x50,0x04,0x0c,
15535
+0x01,0x5d,0x01,0x15,0x21,0x13,0x23,0x01,0x35,0x01,0x33,0x03,
15536
+0x06,0x3f,0xfa,0xf8,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,
15537
+0x02,0xe7,0xa2,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,0xaf,
15538
+0x00,0x01,0x01,0xb8,0x00,0x00,0x04,0xfc,0x05,0xf3,0x00,0x09,
15539
+0x00,0x4a,0x40,0x09,0x06,0x08,0x03,0x04,0x05,0x01,0x08,0x01,
15540
+0x0a,0x10,0xd4,0xcc,0x11,0x39,0x39,0xcc,0x10,0xcc,0x31,0x40,
15541
+0x09,0x08,0x01,0x04,0x07,0x02,0x06,0x03,0x04,0x00,0x00,0x2f,
15542
+0xd4,0xdc,0x3c,0xcc,0x32,0x11,0x39,0x39,0x30,0x40,0x0c,0x4b,
15543
+0x08,0x4b,0x01,0x4f,0x06,0x4f,0x07,0x4f,0x03,0x4f,0x02,0x40,
15544
+0x0d,0x5b,0x08,0x5b,0x01,0x5f,0x06,0x5f,0x07,0x5f,0x03,0x5f,
15545
+0x02,0x0c,0x00,0x5d,0x21,0x11,0x05,0x35,0x01,0x33,0x01,0x15,
15546
+0x25,0x11,0x03,0x09,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,
15547
+0xaf,0x05,0x08,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfa,
15548
+0xf8,0x00,0x00,0x00,0x00,0x01,0x00,0x75,0x00,0xf4,0x06,0x68,
15549
+0x04,0x38,0x00,0x09,0x00,0x4c,0x40,0x0a,0x08,0x01,0x04,0x07,
15550
+0x02,0x06,0x03,0x04,0x00,0x0a,0x10,0xd4,0xd4,0xdc,0x3c,0xcc,
15551
+0x32,0x11,0x39,0x39,0x31,0x40,0x09,0x02,0x01,0x07,0x05,0x04,
15552
+0x08,0x01,0x08,0x0a,0x00,0x10,0xd4,0xcc,0x11,0x39,0x39,0xcc,
15553
+0x10,0xcc,0x30,0x40,0x0c,0x4b,0x08,0x4b,0x01,0x4f,0x06,0x4f,
15554
+0x07,0x4f,0x03,0x4f,0x02,0x40,0x0d,0x5b,0x08,0x5b,0x01,0x5f,
15555
+0x06,0x5f,0x07,0x5f,0x03,0x5f,0x02,0x0c,0x01,0x5d,0x13,0x21,
15556
+0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x21,0x75,0x05,0x08,0xc1,
15557
+0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfa,0xf8,0x02,0xe7,0x01,
15558
+0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0x00,0x01,0x01,0xb8,
15559
+0xff,0xd7,0x04,0xfc,0x05,0xca,0x00,0x09,0x00,0x4c,0x40,0x09,
15560
+0x03,0x01,0x06,0x04,0x05,0x08,0x01,0x08,0x0a,0x10,0xd4,0xcc,
15561
+0x11,0x39,0x39,0xcc,0x10,0xcc,0x31,0x40,0x0a,0x08,0x01,0x04,
15562
+0x07,0x02,0x06,0x03,0x04,0x00,0x0a,0x00,0x10,0xd4,0xd4,0xdc,
15563
+0x3c,0xcc,0x32,0x11,0x39,0x39,0x30,0x40,0x0c,0x44,0x08,0x44,
15564
+0x01,0x40,0x06,0x40,0x07,0x40,0x03,0x40,0x02,0x40,0x0d,0x54,
15565
+0x08,0x54,0x01,0x50,0x06,0x50,0x07,0x50,0x03,0x50,0x02,0x0c,
15566
+0x00,0x5d,0x01,0x11,0x25,0x15,0x01,0x23,0x01,0x35,0x05,0x11,
15567
+0x03,0xab,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0x05,
15568
+0xca,0xfa,0xf8,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x05,
15569
+0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x4c,0x00,0xf4,0x06,0x68,
15570
+0x04,0x38,0x00,0x0f,0x00,0x00,0x01,0x03,0x33,0x01,0x15,0x01,
15571
+0x23,0x13,0x21,0x13,0x23,0x01,0x35,0x01,0x33,0x03,0x05,0x7d,
15572
+0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfb,0xba,0xc1,0x0b,
15573
+0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x02,0xe7,0x01,0x51,0xfe,0x63,
15574
+0x0a,0xfe,0x63,0x01,0x51,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,
15575
+0xfe,0xaf,0x00,0x00,0x00,0x01,0x01,0xb8,0xff,0xd7,0x04,0xfc,
15576
+0x05,0xf3,0x00,0x0f,0x00,0x00,0x2d,0x01,0x15,0x01,0x23,0x01,
15577
+0x35,0x05,0x11,0x05,0x35,0x01,0x33,0x01,0x15,0x25,0x03,0xab,
15578
+0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0xfe,0xaf,0x01,
15579
+0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0xc2,0xc1,0x0b,0xfe,0x5f,0x01,
15580
+0xa1,0x0b,0xc1,0x04,0x46,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,
15581
+0xc1,0x00,0x00,0x00,0x00,0x01,0x01,0x2d,0x00,0x51,0x05,0x9f,
15582
+0x04,0xc3,0x00,0x09,0x00,0x00,0x25,0x07,0x01,0x03,0x27,0x03,
15583
+0x37,0x05,0x17,0x05,0x05,0x9f,0x73,0xfc,0x72,0x66,0x08,0x03,
15584
+0x07,0x02,0x4b,0x08,0xfe,0x89,0xc3,0x72,0x03,0x8f,0xfe,0x89,
15585
+0x08,0x02,0x4b,0x07,0x03,0x08,0x66,0x00,0x00,0x01,0x01,0x14,
15586
+0x00,0x50,0x05,0x86,0x04,0xc2,0x00,0x09,0x00,0x00,0x25,0x01,
15587
+0x25,0x37,0x25,0x17,0x03,0x07,0x03,0x01,0x01,0x14,0x03,0x8f,
15588
+0xfe,0x89,0x08,0x02,0x4b,0x07,0x03,0x08,0x66,0xfc,0x72,0xc2,
15589
+0x03,0x8f,0x66,0x08,0x03,0x07,0xfd,0xb5,0x08,0x01,0x77,0xfc,
15590
+0x71,0x00,0x00,0x00,0x00,0x01,0x01,0x14,0x00,0x6a,0x05,0x86,
15591
+0x04,0xdc,0x00,0x09,0x00,0x00,0x01,0x37,0x01,0x13,0x17,0x13,
15592
+0x07,0x25,0x27,0x25,0x01,0x14,0x73,0x03,0x8e,0x66,0x08,0x03,
15593
+0x07,0xfd,0xb5,0x08,0x01,0x77,0x04,0x6a,0x72,0xfc,0x71,0x01,
15594
+0x77,0x08,0xfd,0xb5,0x07,0x03,0x08,0x66,0x00,0x01,0x01,0x2e,
15595
+0x00,0x6a,0x05,0xa0,0x04,0xdc,0x00,0x09,0x00,0x00,0x01,0x17,
15596
+0x01,0x05,0x07,0x05,0x27,0x13,0x37,0x13,0x05,0x2e,0x72,0xfc,
15597
+0x71,0x01,0x77,0x08,0xfd,0xb5,0x07,0x03,0x08,0x66,0x04,0xdc,
15598
+0x73,0xfc,0x72,0x66,0x08,0x03,0x07,0x02,0x4b,0x08,0xfe,0x89,
15599
+0x00,0x01,0x00,0x4c,0x00,0xed,0x06,0x3f,0x04,0x3f,0x00,0x11,
15600
+0x00,0x00,0x01,0x15,0x21,0x03,0x27,0x13,0x21,0x13,0x23,0x01,
15601
+0x35,0x01,0x33,0x03,0x21,0x13,0x17,0x03,0x06,0x3f,0xfd,0xb0,
15602
+0xa1,0x92,0x80,0xfd,0xfb,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,
15603
+0xc1,0x02,0x51,0xa0,0x93,0x81,0x02,0xe7,0xa2,0xfe,0xa8,0x45,
15604
+0x01,0x13,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x01,
15605
+0x58,0x45,0xfe,0xed,0x00,0x01,0x00,0x75,0x00,0xed,0x06,0x68,
15606
+0x04,0x3f,0x00,0x11,0x00,0x00,0x13,0x35,0x21,0x13,0x17,0x03,
15607
+0x21,0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x21,0x03,0x27,0x13,
15608
+0x75,0x02,0x50,0xa1,0x92,0x80,0x02,0x05,0xc1,0x0b,0x01,0xa1,
15609
+0xfe,0x5f,0x0b,0xc1,0xfd,0xaf,0xa0,0x93,0x81,0x02,0x45,0xa2,
15610
+0x01,0x58,0x45,0xfe,0xed,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,
15611
+0x01,0x51,0xfe,0xa8,0x45,0x01,0x13,0x00,0x00,0x01,0x00,0x72,
15612
+0x01,0x46,0x06,0x66,0x03,0xa0,0x00,0x1d,0x00,0x00,0x13,0x03,
15613
+0x27,0x03,0x37,0x05,0x17,0x05,0x17,0x16,0x33,0x32,0x37,0x3e,
15614
+0x01,0x32,0x16,0x1f,0x01,0x07,0x27,0x26,0x22,0x07,0x0e,0x01,
15615
+0x22,0x27,0x26,0x27,0xe3,0x66,0x08,0x03,0x07,0x02,0x4b,0x08,
15616
+0xfe,0x89,0x5e,0x58,0x7b,0x7c,0x58,0x3e,0xaa,0xbc,0xaa,0x3e,
15617
+0x80,0x73,0x80,0x57,0xf8,0x58,0x3e,0xaa,0xbc,0x55,0x56,0x3d,
15618
+0x02,0xbd,0xfe,0x89,0x08,0x02,0x4b,0x07,0x03,0x08,0x66,0x5e,
15619
+0x58,0x58,0x3e,0x4a,0x4a,0x3e,0x80,0x73,0x81,0x58,0x58,0x3e,
15620
+0x4a,0x25,0x26,0x3d,0x00,0x01,0x00,0x4e,0x01,0x46,0x06,0x42,
15621
+0x03,0xa0,0x00,0x1d,0x00,0x00,0x01,0x07,0x06,0x07,0x06,0x22,
15622
+0x26,0x27,0x26,0x22,0x0f,0x01,0x27,0x37,0x3e,0x01,0x32,0x16,
15623
+0x17,0x16,0x33,0x32,0x3f,0x01,0x25,0x37,0x25,0x17,0x03,0x07,
15624
+0x05,0xd1,0x5d,0x3d,0x56,0x55,0xbc,0xaa,0x3e,0x58,0xf8,0x57,
15625
+0x80,0x73,0x80,0x3e,0xaa,0xbc,0xaa,0x3e,0x58,0x7c,0x7b,0x58,
15626
+0x5e,0xfe,0x89,0x08,0x02,0x4b,0x07,0x03,0x08,0x02,0xbd,0x5e,
15627
+0x3d,0x26,0x25,0x4a,0x3e,0x58,0x58,0x81,0x73,0x80,0x3e,0x4a,
15628
+0x4a,0x3e,0x58,0x58,0x5e,0x66,0x08,0x03,0x07,0xfd,0xb5,0x08,
15629
+0x00,0x01,0x00,0x4c,0x00,0xf4,0x06,0x3f,0x04,0x38,0x00,0x11,
15630
+0x00,0x00,0x01,0x15,0x21,0x13,0x23,0x01,0x23,0x13,0x23,0x01,
15631
+0x35,0x01,0x33,0x03,0x33,0x01,0x33,0x03,0x06,0x3f,0xfb,0xf2,
15632
+0xc1,0x0b,0xfe,0xac,0x5c,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,
15633
+0xc1,0x5c,0x01,0x54,0x0b,0xc1,0x02,0xe7,0xa2,0xfe,0xaf,0x01,
15634
+0x51,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x01,0x51,
15635
+0xfe,0xaf,0x00,0x00,0x00,0x01,0x01,0xb8,0x00,0x00,0x04,0xfc,
15636
+0x05,0xf3,0x00,0x11,0x00,0x00,0x21,0x23,0x11,0x05,0x35,0x01,
15637
+0x35,0x05,0x35,0x01,0x33,0x01,0x15,0x25,0x15,0x01,0x15,0x25,
15638
+0x03,0xab,0xa2,0xfe,0xaf,0x01,0x51,0xfe,0xaf,0x01,0x9d,0x0a,
15639
+0x01,0x9d,0xfe,0xaf,0x01,0x51,0xfe,0xaf,0x04,0x0e,0xc1,0x0b,
15640
+0x01,0x54,0x5c,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0x5c,
15641
+0xfe,0xac,0x0b,0xc1,0x00,0x01,0x00,0x75,0x00,0xf4,0x06,0x68,
15642
+0x04,0x38,0x00,0x11,0x00,0x00,0x13,0x35,0x21,0x03,0x33,0x01,
15643
+0x33,0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x23,0x01,0x23,0x13,
15644
+0x75,0x04,0x0e,0xc1,0x0b,0x01,0x54,0x5c,0xc1,0x0b,0x01,0xa1,
15645
+0xfe,0x5f,0x0b,0xc1,0x5c,0xfe,0xac,0x0b,0xc1,0x02,0x45,0xa2,
15646
+0x01,0x51,0xfe,0xaf,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,
15647
+0x51,0xfe,0xaf,0x01,0x51,0x00,0x00,0x00,0x00,0x01,0x01,0xb8,
15648
+0xff,0xd7,0x04,0xfc,0x05,0xca,0x00,0x11,0x00,0x00,0x01,0x33,
15649
+0x11,0x25,0x15,0x01,0x15,0x25,0x15,0x01,0x23,0x01,0x35,0x05,
15650
+0x35,0x01,0x35,0x05,0x03,0x09,0xa2,0x01,0x51,0xfe,0xaf,0x01,
15651
+0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0xfe,0xaf,0x01,0x51,
15652
+0x05,0xca,0xfb,0xf2,0xc1,0x0b,0xfe,0xac,0x5c,0xc1,0x0b,0xfe,
15653
+0x5f,0x01,0xa1,0x0b,0xc1,0x5c,0x01,0x54,0x0b,0xc1,0x00,0x00,
15654
+0x00,0x01,0x00,0x4c,0x00,0xf4,0x06,0x46,0x04,0x38,0x00,0x0f,
15655
+0x00,0x00,0x09,0x01,0x17,0x01,0x15,0x01,0x07,0x01,0x21,0x13,
15656
+0x23,0x01,0x35,0x01,0x33,0x03,0x04,0x80,0x01,0x54,0x72,0xfe,
15657
+0xd2,0x01,0x2e,0x72,0xfe,0xac,0xfc,0xb7,0xc1,0x0b,0xfe,0x5f,
15658
+0x01,0xa1,0x0b,0xc1,0x02,0xe7,0x01,0x51,0x73,0xfe,0xd6,0x0a,
15659
+0xfe,0xd6,0x73,0x01,0x51,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,
15660
+0xfe,0xaf,0x00,0x00,0x00,0x01,0x00,0x6e,0x00,0xf4,0x06,0x68,
15661
+0x04,0x38,0x00,0x0f,0x00,0x00,0x09,0x01,0x27,0x01,0x35,0x01,
15662
+0x37,0x01,0x21,0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x02,0x34,
15663
+0xfe,0xac,0x72,0x01,0x2e,0xfe,0xd2,0x72,0x01,0x54,0x03,0x49,
15664
+0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0x02,0x45,0xfe,0xaf,
15665
+0x73,0x01,0x2a,0x0a,0x01,0x2a,0x73,0xfe,0xaf,0x01,0x51,0xfe,
15666
+0x63,0x0a,0xfe,0x63,0x01,0x51,0x00,0x00,0x00,0x01,0x00,0x4c,
15667
+0x00,0xf4,0x06,0x3f,0x04,0x38,0x00,0x0d,0x00,0x00,0x01,0x11,
15668
+0x33,0x11,0x23,0x11,0x21,0x13,0x23,0x01,0x35,0x01,0x33,0x03,
15669
+0x05,0x9d,0xa2,0xa2,0xfb,0x9a,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,
15670
+0x0b,0xc1,0x02,0xe7,0x01,0x38,0xfc,0xee,0x01,0x38,0xfe,0xaf,
15671
+0x01,0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x00,0x00,0x01,0x01,0xb8,
15672
+0x00,0x00,0x04,0xfc,0x05,0xf3,0x00,0x0d,0x00,0x00,0x29,0x01,
15673
+0x35,0x21,0x11,0x05,0x35,0x01,0x33,0x01,0x15,0x25,0x11,0x21,
15674
+0x04,0xe3,0xfc,0xee,0x01,0x38,0xfe,0xaf,0x01,0x9d,0x0a,0x01,
15675
+0x9d,0xfe,0xaf,0x01,0x38,0xa2,0x04,0x66,0xc1,0x0b,0x01,0xa1,
15676
+0xfe,0x5f,0x0b,0xc1,0xfb,0x9a,0x00,0x00,0x00,0x01,0x00,0x75,
15677
+0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x0d,0x00,0x00,0x13,0x11,
15678
+0x33,0x11,0x21,0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x21,0x11,
15679
+0x75,0xa2,0x04,0x66,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,
15680
+0xfb,0x9a,0x01,0x0d,0x03,0x12,0xfe,0xc8,0x01,0x51,0xfe,0x63,
15681
+0x0a,0xfe,0x63,0x01,0x51,0xfe,0xc8,0x00,0x00,0x01,0x01,0xb8,
15682
+0xff,0xd7,0x04,0xfc,0x05,0xca,0x00,0x0d,0x00,0x00,0x01,0x21,
15683
+0x35,0x21,0x15,0x21,0x11,0x25,0x15,0x01,0x23,0x01,0x35,0x05,
15684
+0x03,0x09,0xfe,0xc8,0x03,0x12,0xfe,0xc8,0x01,0x51,0xfe,0x63,
15685
+0x0a,0xfe,0x63,0x01,0x51,0x05,0x28,0xa2,0xa2,0xfb,0x9a,0xc1,
15686
+0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x00,0x00,0x01,0x01,0xb8,
15687
+0x00,0x00,0x04,0xfc,0x05,0xf3,0x00,0x13,0x00,0x00,0x29,0x01,
15688
+0x35,0x21,0x01,0x35,0x05,0x11,0x05,0x35,0x01,0x33,0x01,0x15,
15689
+0x25,0x11,0x25,0x15,0x01,0x21,0x04,0xe3,0xfc,0xee,0x01,0x45,
15690
+0xfe,0xa2,0x01,0x51,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,
15691
+0xaf,0x01,0x51,0xfe,0xa2,0x01,0x45,0xa2,0x01,0x61,0x0b,0xc1,
15692
+0x03,0xbb,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfc,0x45,
15693
+0xc1,0x0b,0xfe,0x9f,0x00,0x01,0x00,0x4c,0x00,0xf4,0x06,0x3f,
15694
+0x04,0x63,0x00,0x13,0x00,0x00,0x01,0x32,0x36,0x34,0x26,0x23,
15695
+0x35,0x32,0x16,0x14,0x06,0x23,0x21,0x13,0x23,0x01,0x35,0x01,
15696
+0x33,0x03,0x05,0x30,0x2d,0x40,0x40,0x2d,0x71,0x9e,0x9e,0x71,
15697
+0xfc,0x07,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x02,0xe7,
15698
+0x40,0x5a,0x40,0xa2,0x9e,0xe2,0x9e,0xfe,0xaf,0x01,0x9d,0x0a,
15699
+0x01,0x9d,0xfe,0xaf,0x00,0x01,0x00,0x75,0x00,0xf4,0x06,0x68,
15700
+0x04,0x63,0x00,0x13,0x00,0x00,0x01,0x21,0x03,0x33,0x01,0x15,
15701
+0x01,0x23,0x13,0x21,0x22,0x26,0x34,0x36,0x33,0x15,0x22,0x06,
15702
+0x14,0x16,0x01,0x84,0x03,0xf9,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,
15703
+0x0b,0xc1,0xfc,0x07,0x71,0x9e,0x9e,0x71,0x2d,0x40,0x40,0x02,
15704
+0xe7,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0x9e,0xe2,
15705
+0x9e,0xa2,0x40,0x5a,0x40,0x00,0x00,0x00,0x00,0x02,0x00,0x4c,
15706
+0x00,0xf4,0x06,0x3f,0x04,0x63,0x00,0x14,0x00,0x1d,0x00,0x00,
15707
+0x01,0x23,0x11,0x21,0x13,0x23,0x01,0x35,0x01,0x33,0x03,0x21,
15708
+0x35,0x34,0x36,0x32,0x16,0x14,0x06,0x2b,0x01,0x37,0x32,0x36,
15709
+0x34,0x26,0x22,0x06,0x1d,0x01,0x04,0xc3,0xa2,0xfd,0x16,0xc1,
15710
+0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x02,0xea,0x9e,0xe2,0x9e,
15711
+0x9e,0x71,0x6d,0x6d,0x2d,0x40,0x40,0x5a,0x40,0x01,0x40,0x01,
15712
+0x05,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x6d,0x71,
15713
+0x9e,0x9e,0xe2,0x9e,0xa2,0x40,0x5a,0x40,0x40,0x2d,0x6d,0x00,
15714
+0x00,0x02,0x00,0x75,0x00,0xf4,0x06,0x68,0x04,0x63,0x00,0x14,
15715
+0x00,0x1d,0x00,0x00,0x01,0x11,0x23,0x22,0x26,0x34,0x36,0x32,
15716
+0x16,0x1d,0x01,0x21,0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x21,
15717
+0x11,0x01,0x33,0x35,0x34,0x26,0x22,0x06,0x14,0x16,0x01,0xf1,
15718
+0x6d,0x71,0x9e,0x9e,0xe2,0x9e,0x02,0xea,0xc1,0x0b,0x01,0xa1,
15719
+0xfe,0x5f,0x0b,0xc1,0xfd,0x16,0xfe,0xf1,0x6d,0x40,0x5a,0x40,
15720
+0x40,0x01,0x40,0x01,0x05,0x9e,0xe2,0x9e,0x9e,0x71,0x6d,0x01,
15721
+0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0xfe,0xfb,0x01,0xa7,
15722
+0x6d,0x2d,0x40,0x40,0x5a,0x40,0x00,0x00,0x00,0x01,0x00,0x4c,
15723
+0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x2f,0x00,0x00,0x00,0x20,
15724
+0x13,0x16,0x33,0x32,0x37,0x36,0x3b,0x01,0x03,0x33,0x01,0x15,
15725
+0x01,0x23,0x13,0x23,0x22,0x07,0x06,0x23,0x22,0x03,0x26,0x22,
15726
+0x07,0x02,0x23,0x22,0x27,0x26,0x2b,0x01,0x13,0x23,0x01,0x35,
15727
+0x01,0x33,0x03,0x33,0x32,0x17,0x16,0x33,0x32,0x37,0x02,0xaf,
15728
+0x01,0x56,0x2a,0x15,0x21,0x10,0x1c,0x4e,0x55,0x49,0xc1,0x0b,
15729
+0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0x36,0x25,0x1c,0x56,0x5a,0x8a,
15730
+0x2e,0x19,0x56,0x19,0x2e,0x8a,0x5a,0x56,0x1c,0x25,0x36,0xc1,
15731
+0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x49,0x55,0x4e,0x1c,0x10,
15732
+0x21,0x15,0x03,0xe8,0xfe,0xe2,0x8e,0x2d,0x7e,0x01,0x51,0xfe,
15733
+0x63,0x0a,0xfe,0x63,0x01,0x51,0x2a,0x81,0x01,0x1a,0x98,0x98,
15734
+0xfe,0xe6,0x81,0x2a,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,
15735
+0xaf,0x7e,0x2d,0x8e,0x00,0x01,0x00,0x4c,0x00,0xed,0x06,0x68,
15736
+0x04,0x3f,0x00,0x17,0x00,0x00,0x01,0x03,0x33,0x01,0x15,0x01,
15737
+0x23,0x13,0x21,0x03,0x27,0x13,0x21,0x13,0x23,0x01,0x35,0x01,
15738
+0x33,0x03,0x21,0x13,0x17,0x03,0x05,0x7d,0xc1,0x0b,0x01,0xa1,
15739
+0xfe,0x5f,0x0b,0xc1,0xfe,0x10,0xa0,0x92,0x80,0xfe,0x5c,0xc1,
15740
+0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x01,0xef,0xa0,0x93,0x80,
15741
+0x02,0xe7,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0xfe,
15742
+0xa8,0x45,0x01,0x13,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,
15743
+0xaf,0x01,0x58,0x45,0xfe,0xed,0x00,0x00,0x00,0x01,0x01,0x60,
15744
+0xff,0xe5,0x05,0x82,0x05,0xd7,0x00,0x0d,0x00,0x00,0x2d,0x01,
15745
+0x07,0x01,0x27,0x01,0x37,0x05,0x13,0x05,0x13,0x17,0x03,0x25,
15746
+0x04,0x16,0x01,0x6c,0x02,0xfe,0x21,0x0a,0xfe,0xb3,0x02,0x01,
15747
+0x29,0x65,0xfd,0x86,0xa5,0xa0,0x76,0x02,0x7c,0xbf,0x83,0x0b,
15748
+0xfe,0xae,0x01,0x01,0xe2,0x0b,0xf8,0x02,0x3d,0xea,0x03,0xa9,
15749
+0x1b,0xfd,0x66,0xeb,0x00,0x01,0x01,0xdc,0x00,0x00,0x04,0xbf,
15750
+0x05,0xf3,0x00,0x0b,0x00,0x00,0x01,0x21,0x11,0x23,0x11,0x21,
15751
+0x13,0x23,0x01,0x35,0x01,0x33,0x02,0xc7,0x01,0xf8,0xa2,0xfe,
15752
+0xaa,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0x04,0xa2,0xfb,0x5e,
15753
+0x04,0x00,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0x00,0x00,0x00,
15754
+0x00,0x01,0x01,0xf5,0x00,0x00,0x04,0xd8,0x05,0xf3,0x00,0x0b,
15755
+0x00,0x00,0x01,0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x21,0x11,
15756
+0x23,0x11,0x03,0xed,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,
15757
+0xfe,0xaa,0xa2,0x04,0xa2,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,
15758
+0x01,0x51,0xfc,0x00,0x04,0xa2,0x00,0x00,0x00,0x01,0x01,0xdc,
15759
+0xff,0xd7,0x04,0xbf,0x05,0xca,0x00,0x0b,0x00,0x00,0x01,0x13,
15760
+0x23,0x01,0x35,0x01,0x33,0x03,0x21,0x11,0x33,0x11,0x02,0xc7,
15761
+0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x01,0x56,0xa2,0x01,
15762
+0x28,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x04,0x00,
15763
+0xfb,0x5e,0x00,0x00,0x00,0x01,0x01,0xf5,0xff,0xd7,0x04,0xd8,
15764
+0x05,0xca,0x00,0x0b,0x00,0x00,0x01,0x21,0x11,0x33,0x11,0x21,
15765
+0x03,0x33,0x01,0x15,0x01,0x23,0x03,0xed,0xfe,0x08,0xa2,0x01,
15766
+0x56,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0x01,0x28,0x04,0xa2,
15767
+0xfc,0x00,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x00,0x00,0x00,
15768
+0x00,0x01,0x01,0x0b,0x00,0xd1,0x05,0xd2,0x04,0xe0,0x00,0x0b,
15769
+0x00,0x00,0x01,0x25,0x15,0x01,0x23,0x01,0x35,0x05,0x11,0x21,
15770
+0x35,0x21,0x04,0x81,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,
15771
+0x51,0xfd,0x2c,0x03,0x76,0x01,0xbc,0xc1,0x0b,0xfe,0x5f,0x01,
15772
+0xa1,0x0b,0xc1,0x02,0x82,0xa2,0x00,0x00,0x00,0x01,0x01,0x46,
15773
+0x00,0x6d,0x05,0x55,0x05,0x34,0x00,0x0b,0x00,0x00,0x01,0x13,
15774
+0x23,0x01,0x35,0x01,0x33,0x03,0x21,0x11,0x33,0x11,0x02,0x31,
15775
+0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x02,0x82,0xa2,0x01,
15776
+0xbe,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x02,0xd4,
15777
+0xfc,0x8a,0x00,0x00,0x00,0x01,0x00,0x5a,0x01,0x29,0x06,0x27,
15778
+0x04,0x52,0x00,0x19,0x00,0x00,0x01,0x23,0x34,0x2e,0x02,0x22,
15779
+0x0e,0x02,0x15,0x25,0x15,0x01,0x23,0x01,0x35,0x05,0x34,0x3e,
15780
+0x02,0x32,0x1e,0x02,0x06,0x27,0xa2,0x41,0x6e,0x99,0xa8,0x99,
15781
+0x6e,0x41,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0x5b,
15782
+0x9a,0xd4,0xea,0xd4,0x9a,0x5b,0x02,0x14,0x54,0x99,0x6e,0x41,
15783
+0x41,0x6e,0x99,0x54,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,
15784
+0x75,0xd4,0x9a,0x5b,0x5b,0x9a,0xd4,0x00,0x00,0x01,0x00,0x8d,
15785
+0x01,0x29,0x06,0x5a,0x04,0x52,0x00,0x19,0x00,0x00,0x13,0x34,
15786
+0x3e,0x02,0x32,0x1e,0x02,0x15,0x25,0x15,0x01,0x23,0x01,0x35,
15787
+0x05,0x34,0x2e,0x02,0x22,0x0e,0x02,0x15,0x8d,0x5b,0x9a,0xd4,
15788
+0xea,0xd4,0x9a,0x5b,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,
15789
+0x51,0x41,0x6e,0x99,0xa8,0x99,0x6e,0x41,0x02,0x14,0x75,0xd4,
15790
+0x9a,0x5b,0x5b,0x9a,0xd4,0x75,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,
15791
+0x0b,0xc1,0x54,0x99,0x6e,0x41,0x41,0x6e,0x99,0x54,0x00,0x00,
15792
+0x00,0x02,0x01,0x0f,0x00,0x51,0x05,0xa5,0x05,0xbd,0x00,0x09,
15793
+0x00,0x0d,0x00,0x00,0x25,0x07,0x01,0x03,0x27,0x03,0x37,0x05,
15794
+0x17,0x05,0x25,0x35,0x21,0x15,0x05,0x9f,0x73,0xfc,0x72,0x66,
15795
+0x08,0x03,0x07,0x02,0x4b,0x08,0xfe,0x89,0xfe,0xff,0x04,0x96,
15796
+0xc3,0x72,0x03,0x8f,0xfe,0x89,0x08,0x02,0x4b,0x07,0x03,0x08,
15797
+0x66,0xc9,0xa2,0xa2,0xff,0xff,0x00,0x75,0xff,0x96,0x06,0x3f,
15798
+0x05,0x96,0x10,0x27,0x08,0xa7,0x00,0x00,0xfe,0xa2,0x10,0x07,
15799
+0x08,0xa6,0x00,0x00,0x01,0x5e,0x00,0x00,0x00,0x01,0x00,0xbe,
15800
+0x00,0x91,0x06,0x09,0x04,0xd6,0x00,0x21,0x00,0x00,0x01,0x0e,
15801
+0x01,0x14,0x1e,0x02,0x32,0x3e,0x02,0x34,0x26,0x27,0x03,0x27,
15802
+0x03,0x37,0x05,0x17,0x05,0x1e,0x01,0x14,0x0e,0x02,0x22,0x2e,
15803
+0x02,0x34,0x36,0x37,0x01,0xd8,0x37,0x41,0x41,0x6e,0x99,0xa8,
15804
+0x99,0x6e,0x41,0x41,0x37,0x66,0x08,0x03,0x07,0x02,0x4b,0x08,
15805
+0xfe,0x89,0x4d,0x5b,0x5b,0x9a,0xd4,0xea,0xd4,0x9a,0x5b,0x5b,
15806
+0x4d,0x03,0xf3,0x37,0x99,0xa8,0x99,0x6e,0x41,0x41,0x6e,0x99,
15807
+0xa8,0x99,0x37,0xfe,0x89,0x08,0x02,0x4b,0x07,0x03,0x08,0x66,
15808
+0x4d,0xd4,0xea,0xd4,0x9a,0x5b,0x5b,0x9a,0xd4,0xea,0xd4,0x4d,
15809
+0x00,0x01,0x00,0xab,0x00,0x91,0x05,0xf6,0x04,0xd6,0x00,0x21,
15810
+0x00,0x00,0x01,0x37,0x1e,0x01,0x14,0x0e,0x02,0x22,0x2e,0x02,
15811
+0x34,0x36,0x37,0x25,0x37,0x25,0x17,0x03,0x07,0x03,0x0e,0x01,
15812
+0x14,0x1e,0x02,0x32,0x3e,0x02,0x34,0x26,0x04,0xdc,0x72,0x4d,
15813
+0x5b,0x5b,0x9a,0xd4,0xea,0xd4,0x9a,0x5b,0x5b,0x4d,0xfe,0x89,
15814
+0x08,0x02,0x4b,0x07,0x03,0x08,0x66,0x37,0x41,0x41,0x6e,0x99,
15815
+0xa8,0x99,0x6e,0x41,0x41,0x03,0xf3,0x72,0x4d,0xd4,0xea,0xd4,
15816
+0x9a,0x5b,0x5b,0x9a,0xd4,0xea,0xd4,0x4d,0x66,0x08,0x03,0x07,
15817
+0xfd,0xb5,0x08,0x01,0x77,0x37,0x99,0xa8,0x99,0x6e,0x41,0x41,
15818
+0x6e,0x99,0xa8,0x99,0x00,0x01,0x00,0x46,0x02,0x45,0x06,0x3f,
15819
+0x04,0x38,0x00,0x06,0x00,0x00,0x13,0x01,0x33,0x03,0x21,0x15,
15820
+0x21,0x46,0x01,0xed,0x0b,0xc1,0x04,0xc2,0xfa,0x07,0x02,0x51,
15821
+0x01,0xe7,0xfe,0xaf,0xa2,0x00,0x00,0x00,0x00,0x01,0x00,0x46,
15822
+0x00,0xf4,0x06,0x3f,0x02,0xe7,0x00,0x06,0x00,0x00,0x13,0x35,
15823
+0x21,0x15,0x21,0x13,0x23,0x46,0x05,0xf9,0xfb,0x3e,0xc1,0x0b,
15824
+0x02,0xdb,0x0c,0xa2,0xfe,0xaf,0x00,0x00,0x00,0x01,0x03,0x09,
15825
+0x00,0x00,0x04,0xfc,0x05,0xf9,0x00,0x06,0x00,0x00,0x09,0x01,
15826
+0x15,0x25,0x11,0x23,0x11,0x03,0x15,0x01,0xe7,0xfe,0xaf,0xa2,
15827
+0x05,0xf9,0xfe,0x13,0x0b,0xc1,0xfb,0x3e,0x05,0xf9,0x00,0x00,
15828
+0x00,0x01,0x01,0xb8,0x00,0x00,0x03,0xab,0x05,0xf9,0x00,0x06,
15829
+0x00,0x00,0x01,0x33,0x11,0x23,0x11,0x05,0x35,0x03,0x9f,0x0c,
15830
+0xa2,0xfe,0xaf,0x05,0xf9,0xfa,0x07,0x04,0xc2,0xc1,0x0b,0x00,
15831
+0x00,0x01,0x00,0x75,0x02,0x45,0x06,0x6e,0x04,0x38,0x00,0x06,
15832
+0x00,0x00,0x01,0x15,0x21,0x35,0x21,0x03,0x33,0x06,0x6e,0xfa,
15833
+0x07,0x04,0xc2,0xc1,0x0b,0x02,0x51,0x0c,0xa2,0x01,0x51,0x00,
15834
+0x00,0x01,0x00,0x75,0x00,0xf4,0x06,0x6e,0x02,0xe7,0x00,0x06,
15835
+0x00,0x00,0x09,0x01,0x23,0x13,0x21,0x35,0x21,0x06,0x6e,0xfe,
15836
+0x13,0x0b,0xc1,0xfb,0x3e,0x05,0xf9,0x02,0xdb,0xfe,0x19,0x01,
15837
+0x51,0xa2,0x00,0x00,0x00,0x01,0x03,0x09,0xff,0xd1,0x04,0xfc,
15838
+0x05,0xca,0x00,0x06,0x00,0x00,0x05,0x23,0x11,0x33,0x11,0x25,
15839
+0x15,0x03,0x15,0x0c,0xa2,0x01,0x51,0x2f,0x05,0xf9,0xfb,0x3e,
15840
+0xc1,0x0b,0x00,0x00,0x00,0x01,0x01,0xb8,0xff,0xd1,0x03,0xab,
15841
+0x05,0xca,0x00,0x06,0x00,0x00,0x05,0x01,0x35,0x05,0x11,0x33,
15842
+0x11,0x03,0x9f,0xfe,0x19,0x01,0x51,0xa2,0x2f,0x01,0xed,0x0b,
15843
+0xc1,0x04,0xc2,0xfa,0x07,0x00,0x00,0x00,0xff,0xff,0x00,0x4c,
15844
+0xff,0x96,0x06,0x68,0x05,0x96,0x10,0x27,0x08,0x54,0x00,0x00,
15845
+0x01,0x5e,0x10,0x07,0x08,0x52,0x00,0x00,0xfe,0xa2,0x00,0x00,
15846
+0xff,0xff,0x00,0x5a,0xff,0xd7,0x06,0x5a,0x05,0xf3,0x10,0x27,
15847
+0x08,0x55,0x01,0x5e,0x00,0x00,0x10,0x07,0x08,0x53,0xfe,0xa2,
15848
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x4c,0xff,0x96,0x06,0x68,
15849
+0x05,0x96,0x10,0x27,0x08,0x52,0x00,0x00,0x01,0x5e,0x10,0x07,
15850
+0x08,0x54,0x00,0x00,0xfe,0xa2,0x00,0x00,0xff,0xff,0x00,0x4c,
15851
+0xff,0x32,0x06,0x3f,0x05,0xfa,0x10,0x27,0x08,0x52,0x00,0x00,
15852
+0x01,0xc2,0x10,0x07,0x08,0x52,0x00,0x00,0xfe,0x3e,0x00,0x00,
15853
+0xff,0xff,0xff,0xf6,0x00,0x00,0x06,0xbe,0x05,0xf3,0x10,0x27,
15854
+0x08,0x53,0x01,0xc2,0x00,0x00,0x10,0x07,0x08,0x53,0xfe,0x3e,
15855
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x75,0xff,0x32,0x06,0x68,
15856
+0x05,0xfa,0x10,0x27,0x08,0x54,0x00,0x00,0xfe,0x3e,0x10,0x07,
15857
+0x08,0x54,0x00,0x00,0x01,0xc2,0x00,0x00,0xff,0xff,0xff,0xf6,
15858
+0xff,0xd7,0x06,0xbe,0x05,0xca,0x10,0x27,0x08,0x55,0xfe,0x3e,
15859
+0x00,0x00,0x10,0x07,0x08,0x55,0x01,0xc2,0x00,0x00,0x00,0x00,
15860
+0xff,0xff,0x00,0x46,0x00,0x2c,0x06,0x6e,0x05,0x00,0x10,0x27,
15861
+0x08,0x83,0x00,0x00,0xff,0x38,0x10,0x07,0x08,0x7e,0x00,0x00,
15862
+0x00,0xc8,0x00,0x00,0xff,0xff,0x00,0x46,0x00,0x2c,0x06,0x6e,
15863
+0x05,0x00,0x10,0x27,0x08,0x82,0x00,0x00,0x00,0xc8,0x10,0x07,
15864
+0x08,0x7f,0x00,0x00,0xff,0x38,0x00,0x00,0x00,0x02,0x00,0x4c,
15865
+0x00,0xab,0x06,0x3f,0x04,0x81,0x00,0x15,0x00,0x1a,0x00,0x00,
15866
+0x25,0x23,0x01,0x35,0x01,0x33,0x07,0x21,0x37,0x17,0x07,0x21,
15867
+0x15,0x21,0x07,0x21,0x15,0x21,0x07,0x27,0x37,0x21,0x25,0x37,
15868
+0x21,0x07,0x17,0x01,0xf8,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0x59,
15869
+0x02,0x26,0x56,0x98,0x42,0x01,0xce,0xfd,0xf7,0x44,0x02,0x4d,
15870
+0xfd,0x78,0x56,0x98,0x42,0xfe,0x94,0x01,0xa7,0x44,0xfd,0xbc,
15871
+0x33,0x33,0xf4,0x01,0x9d,0x0a,0x01,0x9d,0xa2,0xeb,0x37,0xb4,
15872
+0xa2,0xbc,0xa2,0xeb,0x37,0xb4,0xa2,0xbc,0x5e,0x5e,0x00,0x00,
15873
+0x00,0x03,0x00,0x4c,0x00,0xab,0x06,0x68,0x04,0x81,0x00,0x17,
15874
+0x00,0x1c,0x00,0x21,0x00,0x00,0x01,0x17,0x07,0x21,0x27,0x33,
15875
+0x01,0x15,0x01,0x23,0x37,0x21,0x07,0x27,0x37,0x21,0x17,0x23,
15876
+0x01,0x35,0x01,0x33,0x07,0x21,0x07,0x21,0x07,0x17,0x21,0x37,
15877
+0x07,0x21,0x37,0x27,0x03,0xb7,0x98,0x42,0x01,0x08,0x59,0x0b,
15878
+0x01,0xa1,0xfe,0x5f,0x0b,0x59,0xfe,0x3e,0x56,0x98,0x42,0xfe,
15879
+0xf8,0x59,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0x59,0x01,0xc2,0x3b,
15880
+0xfe,0x20,0x33,0x33,0x01,0x9c,0xf0,0x44,0x01,0xe0,0x33,0x33,
15881
+0x04,0x81,0x37,0xb4,0xa2,0xfe,0x63,0x0a,0xfe,0x63,0xa2,0xeb,
15882
+0x37,0xb4,0xa2,0x01,0x9d,0x0a,0x01,0x9d,0xa2,0xa2,0x5e,0x5e,
15883
+0xbc,0xbc,0x5e,0x5e,0x00,0x02,0x00,0x75,0x00,0xab,0x06,0x68,
15884
+0x04,0x81,0x00,0x15,0x00,0x1a,0x00,0x00,0x25,0x27,0x37,0x21,
15885
+0x35,0x21,0x37,0x21,0x35,0x21,0x37,0x17,0x07,0x21,0x27,0x33,
15886
+0x01,0x15,0x01,0x23,0x37,0x21,0x13,0x07,0x21,0x37,0x27,0x02,
15887
+0x99,0x98,0x42,0xfe,0x32,0x02,0x09,0x44,0xfd,0xb3,0x02,0x88,
15888
+0x56,0x98,0x42,0x01,0x6c,0x59,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,
15889
+0x59,0xfd,0xda,0x7f,0x44,0x02,0x44,0x33,0x33,0xab,0x37,0xb4,
15890
+0xa2,0xbc,0xa2,0xeb,0x37,0xb4,0xa2,0xfe,0x63,0x0a,0xfe,0x63,
15891
+0xa2,0x01,0x5e,0xbc,0x5e,0x5e,0x00,0x00,0x00,0x01,0x00,0x4c,
15892
+0x00,0xf4,0x06,0x3f,0x04,0x38,0x00,0x0e,0x00,0x00,0x25,0x23,
15893
+0x01,0x35,0x01,0x33,0x07,0x21,0x15,0x21,0x07,0x17,0x21,0x15,
15894
+0x21,0x01,0xf8,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0x59,0x04,0xa0,
15895
+0xfb,0x07,0x33,0x33,0x04,0xf9,0xfb,0x60,0xf4,0x01,0x9d,0x0a,
15896
+0x01,0x9d,0xa2,0xa2,0x5e,0x5e,0xa2,0x00,0x00,0x01,0x01,0xb8,
15897
+0x00,0x00,0x04,0xfc,0x05,0xf3,0x00,0x0e,0x00,0x00,0x01,0x35,
15898
+0x01,0x33,0x01,0x15,0x27,0x11,0x23,0x11,0x27,0x07,0x11,0x23,
15899
+0x11,0x01,0xb8,0x01,0x9d,0x0a,0x01,0x9d,0xa2,0xa2,0x5e,0x5e,
15900
+0xa2,0x04,0x47,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0x59,0xfb,0x60,
15901
+0x04,0xf9,0x33,0x33,0xfb,0x07,0x04,0xa0,0x00,0x01,0x00,0x75,
15902
+0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x0e,0x00,0x00,0x01,0x33,
15903
+0x01,0x15,0x01,0x23,0x37,0x21,0x35,0x21,0x37,0x27,0x21,0x35,
15904
+0x21,0x04,0xbc,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0x59,0xfb,0x60,
15905
+0x04,0xf9,0x33,0x33,0xfb,0x07,0x04,0xa0,0x04,0x38,0xfe,0x63,
15906
+0x0a,0xfe,0x63,0xa2,0xa2,0x5e,0x5e,0xa2,0x00,0x01,0x01,0xb8,
15907
+0xff,0xd7,0x04,0xfc,0x05,0xca,0x00,0x0e,0x00,0x00,0x01,0x15,
15908
+0x01,0x23,0x01,0x35,0x17,0x11,0x33,0x11,0x17,0x37,0x11,0x33,
15909
+0x11,0x04,0xfc,0xfe,0x63,0x0a,0xfe,0x63,0xa2,0xa2,0x5e,0x5e,
15910
+0xa2,0x01,0x83,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0x59,0x04,0xa0,
15911
+0xfb,0x07,0x33,0x33,0x04,0xf9,0xfb,0x60,0x00,0x02,0x00,0x4c,
15912
+0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x0f,0x00,0x15,0x00,0x00,
15913
+0x01,0x33,0x01,0x15,0x01,0x23,0x37,0x21,0x17,0x23,0x01,0x35,
15914
+0x01,0x33,0x07,0x21,0x01,0x21,0x37,0x27,0x21,0x07,0x04,0xbc,
15915
+0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0x59,0xfc,0x8a,0x59,0x0b,0xfe,
15916
+0x5f,0x01,0xa1,0x0b,0x59,0x03,0x76,0xfc,0x31,0x04,0x28,0x33,
15917
+0x33,0xfb,0xd8,0x33,0x04,0x38,0xfe,0x63,0x0a,0xfe,0x63,0xa2,
15918
+0xa2,0x01,0x9d,0x0a,0x01,0x9d,0xa2,0xfe,0xa2,0x5e,0x5e,0x5e,
15919
+0x00,0x02,0x01,0xb8,0xff,0xd7,0x04,0xfc,0x05,0xf3,0x00,0x0f,
15920
+0x00,0x15,0x00,0x00,0x01,0x35,0x01,0x33,0x01,0x15,0x27,0x11,
15921
+0x37,0x15,0x01,0x23,0x01,0x35,0x17,0x11,0x01,0x11,0x27,0x07,
15922
+0x11,0x17,0x01,0xb8,0x01,0x9d,0x0a,0x01,0x9d,0xa2,0xa2,0xfe,
15923
+0x63,0x0a,0xfe,0x63,0xa2,0x01,0x5e,0x5e,0x5e,0x5e,0x04,0x47,
15924
+0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0x59,0xfc,0x8a,0x59,0x0b,0xfe,
15925
+0x5f,0x01,0xa1,0x0b,0x59,0x03,0x76,0xfc,0x31,0x04,0x28,0x33,
15926
+0x33,0xfb,0xd8,0x33,0x00,0x01,0x01,0x2e,0xff,0xd5,0x06,0x1b,
15927
+0x04,0xc2,0x00,0x0e,0x00,0x00,0x01,0x27,0x03,0x37,0x05,0x17,
15928
+0x07,0x01,0x07,0x01,0x0f,0x01,0x01,0x07,0x01,0x01,0x38,0x07,
15929
+0x03,0x07,0x02,0x4b,0x07,0xb1,0x03,0x45,0x72,0xfc,0x7c,0x67,
15930
+0x1e,0x03,0x84,0x73,0xfc,0xbb,0x02,0x69,0x07,0x02,0x4b,0x07,
15931
+0x03,0x07,0x34,0xfc,0xbb,0x73,0x03,0x84,0x1e,0x67,0xfc,0x7c,
15932
+0x72,0x03,0x45,0x00,0x00,0x01,0x00,0x99,0xff,0xd5,0x05,0x86,
15933
+0x04,0xc2,0x00,0x0e,0x00,0x00,0x01,0x37,0x25,0x17,0x03,0x07,
15934
+0x27,0x01,0x27,0x01,0x2f,0x01,0x01,0x27,0x01,0x03,0x2d,0x07,
15935
+0x02,0x4b,0x07,0x03,0x07,0x34,0xfc,0xbb,0x73,0x03,0x84,0x1e,
15936
+0x67,0xfc,0x7c,0x72,0x03,0x45,0x04,0xb8,0x07,0x03,0x07,0xfd,
15937
+0xb5,0x07,0xb1,0xfc,0xbb,0x72,0x03,0x84,0x67,0x1e,0xfc,0x7c,
15938
+0x73,0x03,0x45,0x00,0x00,0x01,0x00,0x99,0x00,0x6a,0x05,0x86,
15939
+0x05,0x57,0x00,0x0e,0x00,0x00,0x01,0x17,0x13,0x07,0x25,0x27,
15940
+0x37,0x01,0x37,0x01,0x3f,0x01,0x01,0x37,0x01,0x05,0x7c,0x07,
15941
+0x03,0x07,0xfd,0xb5,0x07,0xb1,0xfc,0xbb,0x72,0x03,0x84,0x67,
15942
+0x1e,0xfc,0x7c,0x73,0x03,0x45,0x02,0xc3,0x07,0xfd,0xb5,0x07,
15943
+0x03,0x07,0x34,0x03,0x45,0x73,0xfc,0x7c,0x1e,0x67,0x03,0x84,
15944
+0x72,0xfc,0xbb,0x00,0x00,0x01,0x01,0x2e,0x00,0x6a,0x06,0x1b,
15945
+0x05,0x57,0x00,0x0e,0x00,0x00,0x25,0x07,0x05,0x27,0x13,0x37,
15946
+0x17,0x01,0x17,0x01,0x1f,0x01,0x01,0x17,0x01,0x03,0x87,0x07,
15947
+0xfd,0xb5,0x07,0x03,0x07,0x34,0x03,0x45,0x73,0xfc,0x7c,0x1e,
15948
+0x67,0x03,0x84,0x72,0xfc,0xbb,0x74,0x07,0x03,0x07,0x02,0x4b,
15949
+0x07,0xb1,0x03,0x45,0x72,0xfc,0x7c,0x67,0x1e,0x03,0x84,0x73,
15950
+0xfc,0xbb,0x00,0x00,0x00,0x01,0x00,0x4c,0x00,0x90,0x06,0x3f,
15951
+0x04,0x9c,0x00,0x11,0x00,0x00,0x25,0x23,0x01,0x35,0x01,0x33,
15952
+0x07,0x21,0x15,0x21,0x07,0x21,0x15,0x21,0x17,0x21,0x15,0x21,
15953
+0x01,0xf8,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0x3d,0x04,0x84,0xfb,
15954
+0x35,0x3d,0x05,0x08,0xfa,0xf8,0x3d,0x04,0xcb,0xfb,0x7c,0x90,
15955
+0x02,0x01,0x0a,0x02,0x01,0x89,0xa2,0x8a,0xa2,0x8a,0xa2,0x00,
15956
+0x00,0x01,0x00,0x75,0x00,0x90,0x06,0x68,0x04,0x9c,0x00,0x11,
15957
+0x00,0x00,0x01,0x33,0x01,0x15,0x01,0x23,0x37,0x21,0x35,0x21,
15958
+0x37,0x21,0x35,0x21,0x27,0x21,0x35,0x21,0x04,0xbc,0x0b,0x01,
15959
+0xa1,0xfe,0x5f,0x0b,0x3d,0xfb,0x7c,0x04,0xcb,0x3d,0xfa,0xf8,
15960
+0x05,0x08,0x3d,0xfb,0x35,0x04,0x84,0x04,0x9c,0xfd,0xff,0x0a,
15961
+0xfd,0xff,0x89,0xa2,0x8a,0xa2,0x8a,0xa2,0x00,0x01,0x00,0x4c,
15962
+0x00,0xf4,0x06,0x3f,0x04,0x38,0x00,0x17,0x00,0x00,0x01,0x23,
15963
+0x13,0x23,0x01,0x35,0x01,0x33,0x03,0x33,0x37,0x1b,0x03,0x17,
15964
+0x33,0x15,0x23,0x27,0x0b,0x03,0x02,0x2d,0xf6,0xc1,0x0b,0xfe,
15965
+0x5f,0x01,0xa1,0x0b,0xc1,0xbe,0x78,0xb7,0xb7,0xb7,0xb7,0x78,
15966
+0x7e,0xb7,0x3f,0xb7,0xb7,0xb7,0xb7,0x02,0x45,0xfe,0xaf,0x01,
15967
+0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0xcf,0xfe,0xc3,0x01,0x3d,0xfe,
15968
+0xc3,0x01,0x3d,0xcf,0xa2,0x6d,0xfe,0xc3,0x01,0x3d,0xfe,0xc3,
15969
+0x01,0x3d,0x00,0x00,0x00,0x01,0x00,0x75,0x00,0xf4,0x06,0x68,
15970
+0x04,0x38,0x00,0x17,0x00,0x00,0x01,0x27,0x0b,0x03,0x07,0x23,
15971
+0x35,0x33,0x37,0x1b,0x03,0x17,0x33,0x03,0x33,0x01,0x15,0x01,
15972
+0x23,0x13,0x04,0x87,0x40,0xb7,0xb7,0xb7,0xb7,0x3f,0xb7,0x7e,
15973
+0x78,0xb7,0xb7,0xb7,0xb7,0x78,0xbe,0xc1,0x0b,0x01,0xa1,0xfe,
15974
+0x5f,0x0b,0xc1,0x02,0x45,0x6d,0xfe,0xc3,0x01,0x3d,0xfe,0xc3,
15975
+0x01,0x3d,0x6d,0xa2,0xcf,0xfe,0xc3,0x01,0x3d,0xfe,0xc3,0x01,
15976
+0x3d,0xcf,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0x00,
15977
+0x00,0x01,0x01,0xb8,0x00,0x00,0x04,0xfc,0x05,0xf3,0x00,0x19,
15978
+0x00,0x00,0x21,0x23,0x11,0x21,0x35,0x21,0x35,0x21,0x35,0x21,
15979
+0x11,0x05,0x35,0x01,0x33,0x01,0x15,0x25,0x11,0x21,0x15,0x21,
15980
+0x15,0x21,0x15,0x21,0x03,0xab,0xa2,0xfe,0xc8,0x01,0x38,0xfe,
15981
+0xc8,0x01,0x38,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,0xaf,
15982
+0x01,0x38,0xfe,0xc8,0x01,0x38,0xfe,0xc8,0x01,0xb3,0xa2,0x58,
15983
+0xa2,0x01,0xb9,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfe,
15984
+0x47,0xa2,0x58,0xa2,0x00,0x01,0x01,0xb8,0xff,0xd7,0x04,0xfc,
15985
+0x05,0xca,0x00,0x19,0x00,0x00,0x01,0x33,0x11,0x21,0x15,0x21,
15986
+0x15,0x21,0x15,0x21,0x11,0x25,0x15,0x01,0x23,0x01,0x35,0x05,
15987
+0x11,0x21,0x35,0x21,0x35,0x21,0x35,0x21,0x03,0x09,0xa2,0x01,
15988
+0x38,0xfe,0xc8,0x01,0x38,0xfe,0xc8,0x01,0x51,0xfe,0x63,0x0a,
15989
+0xfe,0x63,0x01,0x51,0xfe,0xc8,0x01,0x38,0xfe,0xc8,0x01,0x38,
15990
+0x05,0xca,0xfe,0x4d,0xa2,0x58,0xa2,0xfe,0x47,0xc1,0x0b,0xfe,
15991
+0x5f,0x01,0xa1,0x0b,0xc1,0x01,0xb9,0xa2,0x58,0xa2,0x00,0x00,
15992
+0x00,0x04,0x00,0x4c,0x00,0xf4,0x06,0x3f,0x04,0x38,0x00,0x03,
15993
+0x00,0x07,0x00,0x11,0x00,0x15,0x00,0x00,0x01,0x15,0x23,0x35,
15994
+0x21,0x15,0x23,0x35,0x21,0x15,0x23,0x13,0x23,0x01,0x35,0x01,
15995
+0x33,0x03,0x21,0x15,0x23,0x35,0x03,0x77,0xe2,0x03,0xaa,0xe2,
15996
+0xfc,0xb6,0xdc,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x03,
15997
+0xa4,0xe2,0x02,0xe7,0xa2,0xa2,0xa2,0xa2,0xa2,0xfe,0xaf,0x01,
15998
+0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0xa2,0xa2,0x00,0x04,0x01,0xb8,
15999
+0x00,0x00,0x04,0xfc,0x05,0xf3,0x00,0x03,0x00,0x07,0x00,0x11,
16000
+0x00,0x15,0x00,0x00,0x01,0x23,0x35,0x33,0x11,0x23,0x35,0x33,
16001
+0x11,0x23,0x35,0x05,0x35,0x01,0x33,0x01,0x15,0x25,0x11,0x23,
16002
+0x35,0x33,0x03,0xab,0xa2,0xa2,0xa2,0xa2,0xa2,0xfe,0xaf,0x01,
16003
+0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0xa2,0xa2,0x02,0xc8,0xe2,0xfc,
16004
+0x56,0xe2,0x03,0x4a,0xdc,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,
16005
+0xc1,0xfc,0x5c,0xe2,0x00,0x04,0x00,0x75,0x00,0xf4,0x06,0x68,
16006
+0x04,0x38,0x00,0x03,0x00,0x07,0x00,0x11,0x00,0x15,0x00,0x00,
16007
+0x01,0x35,0x33,0x15,0x21,0x35,0x33,0x15,0x21,0x35,0x33,0x03,
16008
+0x33,0x01,0x15,0x01,0x23,0x13,0x21,0x35,0x33,0x15,0x03,0x3d,
16009
+0xe2,0xfc,0x56,0xe2,0x03,0x4a,0xdc,0xc1,0x0b,0x01,0xa1,0xfe,
16010
+0x5f,0x0b,0xc1,0xfc,0x5c,0xe2,0x02,0x45,0xa2,0xa2,0xa2,0xa2,
16011
+0xa2,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0xa2,0xa2,
16012
+0x00,0x04,0x01,0xb8,0xff,0xd7,0x04,0xfc,0x05,0xca,0x00,0x03,
16013
+0x00,0x07,0x00,0x11,0x00,0x15,0x00,0x00,0x01,0x33,0x15,0x23,
16014
+0x11,0x33,0x15,0x23,0x11,0x33,0x15,0x25,0x15,0x01,0x23,0x01,
16015
+0x35,0x05,0x11,0x33,0x15,0x23,0x03,0x09,0xa2,0xa2,0xa2,0xa2,
16016
+0xa2,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0xa2,0xa2,
16017
+0x03,0x02,0xe2,0x03,0xaa,0xe2,0xfc,0xb6,0xdc,0xc1,0x0b,0xfe,
16018
+0x5f,0x01,0xa1,0x0b,0xc1,0x03,0xa4,0xe2,0x00,0x01,0x00,0x75,
16019
+0x00,0xf4,0x06,0x3f,0x04,0x38,0x00,0x0d,0x00,0x00,0x01,0x21,
16020
+0x13,0x23,0x01,0x11,0x23,0x11,0x33,0x11,0x01,0x33,0x03,0x21,
16021
+0x06,0x3f,0xfb,0x83,0xc1,0x0b,0xfe,0x9f,0xa2,0xa2,0x01,0x61,
16022
+0x0b,0xc1,0x04,0x7d,0x02,0x45,0xfe,0xaf,0x01,0x5e,0xfe,0xbb,
16023
+0x03,0x12,0xfe,0xbb,0x01,0x5e,0xfe,0xaf,0x00,0x01,0x00,0x75,
16024
+0x00,0xf4,0x06,0x3f,0x04,0x38,0x00,0x0d,0x00,0x00,0x13,0x21,
16025
+0x03,0x33,0x01,0x11,0x33,0x11,0x23,0x11,0x01,0x23,0x13,0x21,
16026
+0x75,0x04,0x7d,0xc1,0x0b,0x01,0x61,0xa2,0xa2,0xfe,0x9f,0x0b,
16027
+0xc1,0xfb,0x83,0x02,0xe7,0x01,0x51,0xfe,0xa2,0x01,0x45,0xfc,
16028
+0xee,0x01,0x45,0xfe,0xa2,0x01,0x51,0x00,0x00,0x02,0x00,0x4c,
16029
+0x00,0xf4,0x06,0x3f,0x04,0x38,0x00,0x06,0x00,0x10,0x00,0x00,
16030
+0x01,0x21,0x35,0x07,0x17,0x35,0x21,0x13,0x11,0x21,0x15,0x23,
16031
+0x01,0x35,0x01,0x33,0x15,0x05,0xdb,0xfb,0xeb,0xec,0xec,0x04,
16032
+0x15,0x64,0xfb,0xeb,0x3d,0xfe,0x5f,0x01,0xa1,0x3d,0x03,0x3b,
16033
+0x45,0xea,0xea,0x45,0x01,0xae,0xfd,0xee,0x99,0x01,0x9d,0x0a,
16034
+0x01,0x9d,0x99,0x00,0x00,0x02,0x01,0xb8,0x00,0x00,0x04,0xfc,
16035
+0x05,0xf3,0x00,0x06,0x00,0x10,0x00,0x00,0x25,0x11,0x33,0x27,
16036
+0x07,0x33,0x11,0x05,0x21,0x11,0x23,0x35,0x01,0x33,0x01,0x15,
16037
+0x23,0x03,0xff,0x45,0xea,0xea,0x45,0x01,0xae,0xfd,0xee,0x99,
16038
+0x01,0x9d,0x0a,0x01,0x9d,0x99,0x64,0x04,0x15,0xec,0xec,0xfb,
16039
+0xeb,0x64,0x04,0x15,0x3d,0x01,0xa1,0xfe,0x5f,0x3d,0x00,0x00,
16040
+0x00,0x02,0x00,0x75,0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x06,
16041
+0x00,0x10,0x00,0x00,0x13,0x21,0x15,0x37,0x27,0x15,0x21,0x03,
16042
+0x11,0x21,0x35,0x33,0x01,0x15,0x01,0x23,0x35,0xd9,0x04,0x15,
16043
+0xec,0xec,0xfb,0xeb,0x64,0x04,0x15,0x3d,0x01,0xa1,0xfe,0x5f,
16044
+0x3d,0x01,0xf1,0x45,0xea,0xea,0x45,0xfe,0x52,0x02,0x12,0x99,
16045
+0xfe,0x63,0x0a,0xfe,0x63,0x99,0x00,0x00,0x00,0x02,0x01,0xb8,
16046
+0xff,0xd7,0x04,0xfc,0x05,0xca,0x00,0x06,0x00,0x10,0x00,0x00,
16047
+0x01,0x11,0x23,0x17,0x37,0x23,0x11,0x25,0x21,0x11,0x33,0x15,
16048
+0x01,0x23,0x01,0x35,0x33,0x02,0xb5,0x45,0xea,0xea,0x45,0xfe,
16049
+0x52,0x02,0x12,0x99,0xfe,0x63,0x0a,0xfe,0x63,0x99,0x05,0x66,
16050
+0xfb,0xeb,0xec,0xec,0x04,0x15,0x64,0xfb,0xeb,0x3d,0xfe,0x5f,
16051
+0x01,0xa1,0x3d,0x00,0x00,0x04,0x01,0xb8,0x00,0x00,0x04,0xfc,
16052
+0x05,0xf3,0x00,0x03,0x00,0x07,0x00,0x0e,0x00,0x18,0x00,0x00,
16053
+0x25,0x35,0x21,0x15,0x05,0x21,0x11,0x21,0x27,0x11,0x33,0x27,
16054
+0x07,0x33,0x11,0x05,0x21,0x11,0x23,0x35,0x01,0x33,0x01,0x15,
16055
+0x23,0x03,0xff,0xfe,0xb6,0x01,0xae,0xfd,0xee,0x02,0x12,0x64,
16056
+0x45,0xea,0xea,0x45,0x01,0xae,0xfd,0xee,0x99,0x01,0x9d,0x0a,
16057
+0x01,0x9d,0x99,0x64,0x96,0x96,0x64,0x01,0x5e,0xc8,0x02,0x53,
16058
+0xec,0xec,0xfd,0xad,0x64,0x02,0x53,0x3d,0x01,0xa1,0xfe,0x5f,
16059
+0x3d,0x00,0x00,0x00,0x00,0x02,0x01,0x89,0x00,0x00,0x05,0x2b,
16060
+0x05,0xf3,0x00,0x0d,0x00,0x18,0x00,0x00,0x25,0x33,0x15,0x21,
16061
+0x35,0x33,0x11,0x23,0x35,0x01,0x33,0x01,0x15,0x23,0x27,0x33,
16062
+0x27,0x07,0x33,0x11,0x23,0x15,0x21,0x35,0x23,0x04,0x63,0xc8,
16063
+0xfc,0x5e,0xc8,0x99,0x01,0x9d,0x0a,0x01,0x9d,0x99,0x64,0x45,
16064
+0xea,0xea,0x45,0xc8,0x02,0xda,0xc8,0xfa,0xfa,0xfa,0x03,0x1b,
16065
+0x3d,0x01,0xa1,0xfe,0x5f,0x3d,0x64,0xec,0xec,0xfc,0x1d,0x32,
16066
+0x32,0x00,0x00,0x00,0x00,0x03,0x01,0x89,0x00,0x00,0x05,0x2b,
16067
+0x05,0xf3,0x00,0x0b,0x00,0x19,0x00,0x1c,0x00,0x00,0x01,0x33,
16068
+0x27,0x21,0x07,0x33,0x11,0x23,0x15,0x21,0x35,0x23,0x37,0x33,
16069
+0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x01,0x33,0x01,0x15,0x23,
16070
+0x01,0x33,0x27,0x03,0xff,0x45,0x37,0xfe,0x9a,0x37,0x45,0xc8,
16071
+0x02,0xda,0xc8,0x64,0xc8,0xfc,0x5e,0xc8,0x99,0x01,0x9d,0x0a,
16072
+0x01,0x9d,0x99,0xfe,0xa7,0xa0,0x50,0x04,0x79,0x37,0x37,0xfc,
16073
+0x1d,0x32,0x32,0x64,0xfa,0xfa,0x03,0x1b,0x3d,0x01,0xa1,0xfe,
16074
+0x5f,0x3d,0x00,0xff,0x51,0x00,0x00,0x00,0x00,0x03,0x01,0x89,
16075
+0x00,0x00,0x05,0x2b,0x05,0xf3,0x00,0x06,0x00,0x14,0x00,0x1b,
16076
+0x00,0x00,0x01,0x33,0x27,0x11,0x21,0x35,0x23,0x37,0x33,0x15,
16077
+0x21,0x35,0x33,0x11,0x23,0x35,0x01,0x33,0x01,0x15,0x23,0x01,
16078
+0x11,0x07,0x33,0x11,0x23,0x15,0x03,0xff,0x45,0xb8,0x01,0x3b,
16079
+0xc8,0x64,0xc8,0xfc,0x5e,0xc8,0x99,0x01,0x9d,0x0a,0x01,0x9d,
16080
+0x99,0xfe,0xc5,0xb8,0x45,0xc8,0x04,0x79,0xba,0xfb,0x31,0x32,
16081
+0x64,0xfa,0xfa,0x03,0x1b,0x3d,0x01,0xa1,0xfe,0x5f,0x3d,0xfc,
16082
+0x4f,0x04,0xcf,0xba,0xfc,0x1d,0x32,0x00,0x00,0x03,0x01,0xb8,
16083
+0x00,0x00,0x04,0xfc,0x05,0xf3,0x00,0x0f,0x00,0x16,0x00,0x1d,
16084
+0x00,0x00,0x29,0x01,0x11,0x23,0x35,0x37,0x23,0x35,0x01,0x33,
16085
+0x01,0x15,0x23,0x17,0x15,0x23,0x03,0x33,0x27,0x07,0x33,0x37,
16086
+0x33,0x03,0x21,0x11,0x33,0x27,0x07,0x33,0x04,0x63,0xfd,0xee,
16087
+0x99,0x99,0x99,0x01,0x9d,0x0a,0x01,0x9d,0x99,0x99,0x99,0x63,
16088
+0x44,0xea,0xea,0x44,0xa1,0x0a,0xaa,0x01,0x4a,0x45,0xea,0xea,
16089
+0x45,0x03,0x3e,0x3d,0x9a,0x3d,0x01,0xa1,0xfe,0x5f,0x3d,0x9a,
16090
+0x3d,0x01,0x3b,0xec,0xec,0xa3,0xfb,0x48,0x03,0x3e,0xec,0xec,
16091
+0x00,0x03,0x01,0x89,0x00,0x00,0x05,0x2b,0x05,0xf3,0x00,0x13,
16092
+0x00,0x1a,0x00,0x25,0x00,0x00,0x25,0x33,0x15,0x21,0x35,0x33,
16093
+0x11,0x23,0x35,0x37,0x23,0x35,0x01,0x33,0x01,0x15,0x23,0x17,
16094
+0x15,0x23,0x03,0x33,0x27,0x07,0x33,0x37,0x33,0x13,0x11,0x33,
16095
+0x27,0x07,0x33,0x11,0x23,0x15,0x21,0x35,0x04,0x63,0xc8,0xfc,
16096
+0x5e,0xc8,0x99,0x99,0x99,0x01,0x9d,0x0a,0x01,0x9d,0x99,0x99,
16097
+0x99,0x63,0x44,0xea,0xea,0x44,0xa1,0x0a,0xa0,0x45,0xea,0xea,
16098
+0x45,0xc8,0x02,0xda,0xfa,0xfa,0xfa,0x02,0x44,0x3d,0x9a,0x3d,
16099
+0x01,0xa1,0xfe,0x5f,0x3d,0x9a,0x3d,0x01,0x3b,0xec,0xec,0xa3,
16100
+0xfb,0x7a,0x03,0x0c,0xec,0xec,0xfc,0xf4,0x32,0x32,0x00,0x00,
16101
+0x00,0x02,0x00,0x75,0x00,0xc5,0x06,0x68,0x04,0x67,0x00,0x0d,
16102
+0x00,0x18,0x00,0x00,0x01,0x15,0x23,0x11,0x33,0x15,0x21,0x35,
16103
+0x33,0x01,0x15,0x01,0x23,0x35,0x37,0x15,0x37,0x27,0x15,0x21,
16104
+0x35,0x23,0x11,0x33,0x35,0x01,0x6f,0xfa,0xfa,0x03,0x1b,0x3d,
16105
+0x01,0xa1,0xfe,0x5f,0x3d,0x64,0xec,0xec,0xfc,0x1d,0x32,0x32,
16106
+0x01,0x8d,0xc8,0x03,0xa2,0xc8,0x99,0xfe,0x63,0x0a,0xfe,0x63,
16107
+0x99,0x64,0x45,0xea,0xea,0x45,0xc8,0xfd,0x26,0xc8,0x00,0x00,
16108
+0x00,0x02,0x00,0xa7,0x00,0x00,0x06,0x22,0x05,0x83,0x00,0x09,
16109
+0x00,0x0f,0x00,0x00,0x25,0x07,0x01,0x03,0x27,0x03,0x37,0x05,
16110
+0x17,0x05,0x01,0x11,0x21,0x15,0x21,0x11,0x05,0xd2,0x73,0xfc,
16111
+0x72,0x66,0x08,0x03,0x07,0x02,0x4b,0x08,0xfe,0x89,0xfe,0x64,
16112
+0x05,0x7b,0xfa,0xe9,0xc2,0x72,0x03,0x8f,0xfe,0x89,0x08,0x02,
16113
+0x4b,0x07,0x03,0x08,0x66,0xfb,0xaf,0x05,0x83,0x64,0xfa,0xe1,
16114
+0x00,0x02,0x00,0x92,0x00,0x00,0x06,0x0d,0x05,0x83,0x00,0x09,
16115
+0x00,0x0f,0x00,0x00,0x13,0x37,0x01,0x13,0x17,0x13,0x07,0x25,
16116
+0x27,0x25,0x01,0x11,0x21,0x35,0x21,0x11,0xe2,0x73,0x03,0x8e,
16117
+0x66,0x08,0x03,0x07,0xfd,0xb5,0x08,0x01,0x77,0x01,0x9c,0xfa,
16118
+0x85,0x05,0x17,0x04,0xc1,0x72,0xfc,0x71,0x01,0x77,0x08,0xfd,
16119
+0xb5,0x07,0x03,0x08,0x66,0x04,0x51,0xfa,0x7d,0x64,0x05,0x1f,
16120
+0x00,0x02,0x01,0xb8,0xff,0xd7,0x04,0xfc,0x05,0xf3,0x00,0x0f,
16121
+0x00,0x19,0x00,0x00,0x01,0x11,0x33,0x15,0x01,0x23,0x01,0x35,
16122
+0x33,0x11,0x23,0x35,0x01,0x33,0x01,0x15,0x01,0x23,0x17,0x37,
16123
+0x23,0x11,0x33,0x27,0x07,0x33,0x04,0x63,0x99,0xfe,0x63,0x0a,
16124
+0xfe,0x63,0x99,0x99,0x01,0x9d,0x0a,0x01,0x9d,0xfd,0xb9,0x45,
16125
+0xea,0xea,0x45,0x45,0xea,0xea,0x45,0x04,0x15,0xfd,0xa0,0x3d,
16126
+0xfe,0x5f,0x01,0xa1,0x3d,0x02,0x60,0x3d,0x01,0xa1,0xfe,0x5f,
16127
+0x3d,0xfd,0x3c,0xec,0xec,0x03,0x28,0xec,0xec,0x00,0x00,0x00,
16128
+0x00,0x03,0x00,0x75,0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x19,
16129
+0x00,0x22,0x00,0x2b,0x00,0x00,0x13,0x21,0x36,0x37,0x36,0x32,
16130
+0x17,0x16,0x17,0x21,0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x21,
16131
+0x06,0x07,0x06,0x22,0x27,0x26,0x27,0x21,0x25,0x33,0x26,0x27,
16132
+0x26,0x23,0x22,0x07,0x06,0x17,0x23,0x16,0x17,0x16,0x33,0x32,
16133
+0x37,0x36,0x75,0x01,0x7a,0x13,0x32,0x50,0xe4,0x50,0x32,0x13,
16134
+0x01,0x80,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfe,0x80,
16135
+0x13,0x32,0x50,0xe4,0x50,0x32,0x13,0xfe,0x86,0x02,0x10,0xe2,
16136
+0x06,0x09,0x28,0x3a,0x34,0x2e,0x09,0xdc,0xe2,0x06,0x09,0x28,
16137
+0x3a,0x34,0x2e,0x09,0x02,0xe7,0x3f,0x32,0x50,0x50,0x32,0x3f,
16138
+0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0x3f,0x32,0x50,
16139
+0x50,0x32,0x3f,0xa2,0x09,0x08,0x29,0x29,0x08,0xab,0x09,0x08,
16140
+0x29,0x29,0x08,0x00,0xff,0xff,0x00,0x5a,0xff,0xd7,0x06,0x5a,
16141
+0x05,0xf3,0x10,0x27,0x08,0x53,0x01,0x5e,0x00,0x00,0x10,0x07,
16142
+0x08,0x55,0xfe,0xa2,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x75,
16143
+0xfe,0xe2,0x06,0x68,0x06,0x4a,0x00,0x09,0x00,0x13,0x00,0x1d,
16144
+0x00,0x00,0x13,0x21,0x27,0x33,0x01,0x15,0x01,0x23,0x37,0x21,
16145
+0x11,0x21,0x27,0x33,0x01,0x15,0x01,0x23,0x37,0x21,0x11,0x21,
16146
+0x27,0x33,0x01,0x15,0x01,0x23,0x37,0x21,0x75,0x05,0x08,0x7b,
16147
+0x0b,0x01,0x5b,0xfe,0xa5,0x0b,0x7b,0xfa,0xf8,0x05,0x08,0x7b,
16148
+0x0b,0x01,0x5b,0xfe,0xa5,0x0b,0x7b,0xfa,0xf8,0x05,0x08,0x7b,
16149
+0x0b,0x01,0x5b,0xfe,0xa5,0x0b,0x7b,0xfa,0xf8,0x05,0x71,0xd9,
16150
+0xfe,0xdb,0x0a,0xfe,0xdb,0xd9,0xfb,0x8e,0xd9,0xfe,0xdb,0x0a,
16151
+0xfe,0xdb,0xd9,0x03,0x2c,0xd9,0xfe,0xdb,0x0a,0xfe,0xdb,0xd9,
16152
+0x00,0x01,0x00,0x4c,0x00,0xf4,0x06,0x3f,0x04,0x38,0x00,0x11,
16153
+0x00,0x00,0x01,0x15,0x21,0x11,0x23,0x11,0x21,0x13,0x23,0x01,
16154
+0x35,0x01,0x33,0x03,0x21,0x11,0x33,0x11,0x06,0x3f,0xfd,0xd0,
16155
+0xa2,0xfd,0xca,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x02,
16156
+0x36,0xa2,0x02,0xe7,0xa2,0xfe,0xc8,0x01,0x38,0xfe,0xaf,0x01,
16157
+0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x01,0x38,0xfe,0xc8,0x00,0x00,
16158
+0x00,0x01,0x00,0x75,0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x11,
16159
+0x00,0x00,0x13,0x35,0x21,0x11,0x33,0x11,0x21,0x03,0x33,0x01,
16160
+0x15,0x01,0x23,0x13,0x21,0x11,0x23,0x11,0x75,0x02,0x30,0xa2,
16161
+0x02,0x36,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfd,0xca,
16162
+0xa2,0x02,0x45,0xa2,0x01,0x38,0xfe,0xc8,0x01,0x51,0xfe,0x63,
16163
+0x0a,0xfe,0x63,0x01,0x51,0xfe,0xc8,0x01,0x38,0x00,0x00,0x00,
16164
+0x00,0x01,0x00,0x4c,0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x17,
16165
+0x00,0x00,0x01,0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x21,0x11,
16166
+0x23,0x11,0x21,0x13,0x23,0x01,0x35,0x01,0x33,0x03,0x21,0x11,
16167
+0x33,0x11,0x05,0x7d,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,
16168
+0xfe,0x2e,0xa2,0xfe,0x2e,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,
16169
+0xc1,0x01,0xd2,0xa2,0x02,0xe7,0x01,0x51,0xfe,0x63,0x0a,0xfe,
16170
+0x63,0x01,0x51,0xfe,0xc8,0x01,0x38,0xfe,0xaf,0x01,0x9d,0x0a,
16171
+0x01,0x9d,0xfe,0xaf,0x01,0x38,0xfe,0xc8,0x00,0x01,0x00,0x4c,
16172
+0x00,0xf4,0x06,0x3f,0x04,0x38,0x00,0x19,0x00,0x00,0x01,0x15,
16173
+0x21,0x11,0x23,0x11,0x23,0x11,0x23,0x11,0x21,0x13,0x23,0x01,
16174
+0x35,0x01,0x33,0x03,0x21,0x11,0x33,0x11,0x33,0x11,0x33,0x11,
16175
+0x06,0x3f,0xfe,0x4d,0xa2,0x58,0xa2,0xfe,0x47,0xc1,0x0b,0xfe,
16176
+0x5f,0x01,0xa1,0x0b,0xc1,0x01,0xb9,0xa2,0x58,0xa2,0x02,0xe7,
16177
+0xa2,0xfe,0xc8,0x01,0x38,0xfe,0xc8,0x01,0x38,0xfe,0xaf,0x01,
16178
+0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x01,0x38,0xfe,0xc8,0x01,0x38,
16179
+0xfe,0xc8,0x00,0x00,0x00,0x01,0x00,0x75,0x00,0xf4,0x06,0x68,
16180
+0x04,0x38,0x00,0x19,0x00,0x00,0x13,0x35,0x21,0x11,0x33,0x11,
16181
+0x33,0x11,0x33,0x11,0x21,0x03,0x33,0x01,0x15,0x01,0x23,0x13,
16182
+0x21,0x11,0x23,0x11,0x23,0x11,0x23,0x11,0x75,0x01,0xb3,0xa2,
16183
+0x58,0xa2,0x01,0xb9,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,
16184
+0xfe,0x47,0xa2,0x58,0xa2,0x02,0x45,0xa2,0x01,0x38,0xfe,0xc8,
16185
+0x01,0x38,0xfe,0xc8,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,
16186
+0x51,0xfe,0xc8,0x01,0x38,0xfe,0xc8,0x01,0x38,0x00,0x00,0x00,
16187
+0x00,0x01,0x00,0x4c,0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x1f,
16188
+0x00,0x00,0x01,0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x21,0x11,
16189
+0x23,0x11,0x23,0x11,0x23,0x11,0x21,0x13,0x23,0x01,0x35,0x01,
16190
+0x33,0x03,0x21,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x05,0x7d,
16191
+0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfe,0xab,0xa2,0x58,
16192
+0xa2,0xfe,0xab,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x01,
16193
+0x55,0xa2,0x58,0xa2,0x02,0xe7,0x01,0x51,0xfe,0x63,0x0a,0xfe,
16194
+0x63,0x01,0x51,0xfe,0xc8,0x01,0x38,0xfe,0xc8,0x01,0x38,0xfe,
16195
+0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x01,0x38,0xfe,0xc8,
16196
+0x01,0x38,0xfe,0xc8,0x00,0x02,0x00,0x4c,0x00,0xf4,0x06,0x3f,
16197
+0x04,0x38,0x00,0x02,0x00,0x0c,0x00,0x00,0x01,0x11,0x07,0x05,
16198
+0x11,0x23,0x01,0x35,0x01,0x33,0x11,0x21,0x15,0x01,0xc6,0xec,
16199
+0x01,0x50,0x3d,0xfe,0x5f,0x01,0xa1,0x3d,0x04,0x15,0x01,0xac,
16200
+0x01,0xd4,0xea,0x51,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,
16201
+0xaf,0xa2,0x00,0x00,0x00,0x02,0x00,0x75,0x00,0xf4,0x06,0x68,
16202
+0x04,0x38,0x00,0x02,0x00,0x0c,0x00,0x00,0x01,0x11,0x37,0x25,
16203
+0x11,0x33,0x01,0x15,0x01,0x23,0x11,0x21,0x35,0x04,0xee,0xec,
16204
+0xfe,0xb0,0x3d,0x01,0xa1,0xfe,0x5f,0x3d,0xfb,0xeb,0x03,0x80,
16205
+0xfe,0x2c,0xea,0x51,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,
16206
+0x51,0xa2,0x00,0x00,0x00,0x03,0x00,0x4c,0x00,0xf4,0x06,0x68,
16207
+0x04,0x38,0x00,0x0f,0x00,0x12,0x00,0x15,0x00,0x00,0x01,0x11,
16208
+0x33,0x01,0x15,0x01,0x23,0x11,0x21,0x11,0x23,0x01,0x35,0x01,
16209
+0x33,0x11,0x25,0x11,0x37,0x05,0x11,0x07,0x04,0x8a,0x3d,0x01,
16210
+0xa1,0xfe,0x5f,0x3d,0xfd,0xa0,0x3d,0xfe,0x5f,0x01,0xa1,0x3d,
16211
+0x02,0xc4,0xec,0xfb,0xec,0xec,0x02,0xe7,0x01,0x51,0xfe,0x63,
16212
+0x0a,0xfe,0x63,0x01,0x51,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,
16213
+0xfe,0xaf,0x99,0xfe,0x2c,0xea,0xea,0x01,0xd4,0xea,0x00,0x00,
16214
+0x00,0x02,0x00,0x09,0x00,0x00,0x04,0xcb,0x05,0xd5,0x00,0x02,
16215
+0x00,0x0a,0x00,0x00,0x01,0x21,0x13,0x03,0x01,0x33,0x13,0x21,
16216
+0x13,0x33,0x01,0x03,0x2a,0xfe,0x80,0xc0,0x42,0xfd,0xe1,0xab,
16217
+0xbb,0x01,0xf6,0xbb,0xab,0xfd,0xe1,0x03,0x31,0xfd,0xf2,0xfe,
16218
+0xdd,0x05,0xd5,0xfd,0xfe,0x02,0x02,0xfa,0x2b,0x00,0x00,0x00,
16219
+0x00,0x02,0x00,0x68,0xff,0xe7,0x03,0xc1,0x05,0x2d,0x00,0x1d,
16220
+0x00,0x29,0x00,0x36,0x40,0x19,0x00,0x27,0x21,0x09,0x1b,0x06,
16221
+0x27,0x15,0x06,0x0f,0x21,0x1b,0x0f,0x15,0xb1,0x2a,0x0c,0x24,
16222
+0x03,0x00,0x1e,0x12,0x24,0x18,0x2a,0x10,0xd4,0xcc,0xdc,0xcc,
16223
+0x39,0x39,0x11,0x39,0x31,0x00,0x10,0xe4,0xcc,0xdc,0xcc,0x10,
16224
+0xce,0x10,0xce,0x11,0x12,0x39,0x11,0x12,0x39,0x30,0x01,0x3e,
16225
+0x01,0x35,0x34,0x26,0x23,0x22,0x06,0x23,0x22,0x26,0x35,0x34,
16226
+0x36,0x33,0x32,0x12,0x11,0x10,0x00,0x23,0x22,0x26,0x35,0x34,
16227
+0x12,0x33,0x32,0x16,0x07,0x34,0x26,0x23,0x22,0x02,0x15,0x14,
16228
+0x16,0x33,0x32,0x12,0x02,0xf4,0x0f,0x0f,0x49,0x48,0x37,0x90,
16229
+0x24,0x24,0x30,0x90,0x65,0xb4,0xd6,0xfe,0xdf,0xd5,0x98,0xcb,
16230
+0xdd,0xa2,0x65,0x82,0x0b,0x57,0x4f,0x6d,0x8d,0x56,0x50,0x6d,
16231
+0x8d,0x02,0x6d,0x57,0xa3,0x4b,0x81,0x83,0x74,0x2c,0x1f,0x3e,
16232
+0x62,0xfe,0xca,0xfe,0xf9,0xfe,0xb1,0xfe,0x46,0xd8,0xa3,0xc6,
16233
+0x01,0x01,0x5b,0xe0,0x74,0x7d,0xfe,0xfe,0xcf,0x74,0x7b,0x01,
16234
+0x04,0x00,0x00,0x00,0x00,0x01,0x00,0x7c,0x00,0x00,0x03,0xb7,
16235
+0x05,0xd5,0x00,0x0b,0x00,0x00,0x01,0x11,0x21,0x35,0x21,0x11,
16236
+0x21,0x35,0x21,0x11,0x21,0x35,0x03,0xb7,0xfc,0xc5,0x02,0x99,
16237
+0xfd,0x67,0x02,0x99,0xfd,0x67,0x05,0xd5,0xfa,0x2b,0xa2,0x01,
16238
+0xf8,0xa2,0x01,0xf7,0xa2,0x00,0x00,0x00,0x00,0x03,0x00,0x7c,
16239
+0xff,0x13,0x03,0xb7,0x06,0xc2,0x00,0x13,0x00,0x17,0x00,0x1b,
16240
+0x00,0x00,0x01,0x11,0x21,0x07,0x27,0x37,0x23,0x35,0x33,0x13,
16241
+0x23,0x35,0x21,0x13,0x21,0x35,0x21,0x37,0x17,0x0f,0x01,0x03,
16242
+0x33,0x11,0x0b,0x01,0x21,0x11,0x03,0xb7,0xfd,0xb2,0x40,0x9c,
16243
+0x34,0x45,0x71,0x86,0xf7,0x01,0x23,0x86,0xfe,0x57,0x01,0xd5,
16244
+0x3f,0x9d,0x34,0x2c,0x87,0xcf,0xfa,0x87,0x01,0x81,0x05,0xd5,
16245
+0xfa,0x2b,0xed,0x2a,0xc3,0xa2,0x01,0xf8,0xa2,0x01,0xf7,0xa2,
16246
+0xed,0x2a,0xc3,0xa2,0xfe,0x09,0x01,0xf7,0xfd,0x67,0xfe,0x08,
16247
+0x01,0xf8,0x00,0x00,0x00,0x02,0x00,0x33,0x00,0x00,0x05,0x56,
16248
+0x05,0xd5,0x00,0x02,0x00,0x06,0x00,0x4d,0x40,0x29,0x02,0x64,
16249
+0x03,0x04,0x03,0x01,0x64,0x00,0x01,0x04,0x04,0x03,0x01,0x10,
16250
+0x02,0x01,0x05,0x06,0x05,0x00,0x10,0x06,0x06,0x05,0x4d,0x01,
16251
+0x04,0x00,0x77,0x04,0x62,0x03,0x05,0x04,0x02,0x01,0x00,0x05,
16252
+0x06,0x03,0x07,0x10,0xd4,0xcc,0x17,0x39,0x31,0x00,0x2f,0xe4,
16253
+0xec,0x11,0x39,0x30,0x4b,0x53,0x58,0x07,0x10,0x05,0xed,0x07,
16254
+0x10,0x08,0xed,0x07,0x10,0x08,0xed,0x07,0x10,0x05,0xed,0x59,
16255
+0x22,0x25,0x09,0x01,0x07,0x01,0x33,0x01,0x04,0x33,0xfe,0x5e,
16256
+0xfe,0x5d,0xbb,0x02,0x3c,0xac,0x02,0x3b,0xa4,0x04,0x41,0xfb,
16257
+0xbf,0xa4,0x05,0xd5,0xfa,0x2b,0x00,0x00,0x00,0x02,0x00,0x33,
16258
+0x00,0x00,0x05,0x56,0x05,0xd5,0x00,0x02,0x00,0x06,0x00,0x00,
16259
+0x01,0x21,0x09,0x01,0x21,0x01,0x23,0x04,0x33,0xfc,0xbb,0x01,
16260
+0xa3,0xfd,0xa2,0x05,0x23,0xfd,0xc5,0xac,0x05,0x31,0xfb,0xbf,
16261
+0x04,0xe5,0xfa,0x2b,0x00,0x01,0x00,0xd9,0x00,0x00,0x05,0x13,
16262
+0x05,0x04,0x00,0x19,0x00,0x00,0x25,0x21,0x15,0x21,0x22,0x24,
16263
+0x02,0x10,0x12,0x24,0x33,0x21,0x15,0x21,0x22,0x06,0x07,0x06,
16264
+0x07,0x21,0x15,0x21,0x16,0x17,0x1e,0x01,0x03,0x5b,0x01,0xb8,
16265
+0xfe,0x48,0xae,0xfe,0xd8,0xac,0xac,0x01,0x28,0xae,0x01,0xb8,
16266
+0xfe,0x48,0x82,0xde,0x41,0x2c,0x0e,0x03,0x93,0xfc,0x6d,0x0e,
16267
+0x2c,0x41,0xde,0xa0,0xa0,0xac,0x01,0x28,0x01,0x5c,0x01,0x28,
16268
+0xac,0xa0,0x82,0x6f,0x4c,0x54,0xa2,0x54,0x4c,0x6f,0x82,0x00,
16269
+0x00,0x03,0x00,0xd9,0xfe,0xf1,0x05,0x13,0x06,0x13,0x00,0x1c,
16270
+0x00,0x22,0x00,0x2a,0x00,0x00,0x25,0x21,0x15,0x21,0x22,0x27,
16271
+0x03,0x27,0x13,0x26,0x27,0x26,0x10,0x12,0x24,0x3b,0x01,0x13,
16272
+0x17,0x07,0x33,0x15,0x23,0x03,0x21,0x15,0x21,0x03,0x16,0x27,
16273
+0x13,0x21,0x16,0x17,0x16,0x1b,0x01,0x23,0x22,0x06,0x07,0x06,
16274
+0x07,0x03,0x5b,0x01,0xb8,0xfe,0x48,0x63,0x5b,0x6d,0x98,0x71,
16275
+0x89,0x51,0x56,0xac,0x01,0x28,0xae,0x5e,0x63,0x98,0x4e,0xad,
16276
+0xe7,0x92,0x01,0x79,0xfe,0x4c,0x8b,0x41,0xd3,0x70,0xfe,0xce,
16277
+0x0e,0x2c,0x35,0xfe,0x92,0x24,0x82,0xde,0x41,0x2c,0x0e,0xa0,
16278
+0xa0,0x1c,0xfe,0xd5,0x38,0x01,0x37,0x54,0x8c,0x94,0x01,0x5c,
16279
+0x01,0x28,0xac,0x01,0x0f,0x38,0xd7,0xa0,0xfe,0x6f,0xa2,0xfe,
16280
+0x82,0x13,0x5b,0x01,0x36,0x54,0x4c,0x5a,0x01,0x9c,0x01,0x91,
16281
+0x82,0x6f,0x4c,0x54,0x00,0x01,0x00,0xd9,0x00,0x00,0x05,0x13,
16282
+0x05,0x04,0x00,0x19,0x00,0x00,0x01,0x21,0x35,0x21,0x32,0x04,
16283
+0x12,0x10,0x02,0x04,0x23,0x21,0x35,0x21,0x32,0x36,0x37,0x36,
16284
+0x37,0x21,0x35,0x21,0x26,0x27,0x2e,0x01,0x02,0x91,0xfe,0x48,
16285
+0x01,0xb8,0xae,0x01,0x28,0xac,0xac,0xfe,0xd8,0xae,0xfe,0x48,
16286
+0x01,0xb8,0x82,0xde,0x41,0x2c,0x0e,0xfc,0x6d,0x03,0x93,0x0e,
16287
+0x2c,0x41,0xde,0x04,0x64,0xa0,0xac,0xfe,0xd8,0xfe,0xa4,0xfe,
16288
+0xd8,0xac,0xa0,0x82,0x6f,0x4c,0x54,0xa2,0x54,0x4c,0x6f,0x82,
16289
+0x00,0x03,0x00,0xd9,0xfe,0xf1,0x05,0x13,0x06,0x13,0x00,0x1c,
16290
+0x00,0x22,0x00,0x2a,0x00,0x00,0x01,0x21,0x35,0x21,0x32,0x17,
16291
+0x13,0x17,0x03,0x16,0x17,0x16,0x10,0x02,0x04,0x2b,0x01,0x03,
16292
+0x27,0x37,0x23,0x35,0x33,0x13,0x21,0x35,0x21,0x13,0x26,0x17,
16293
+0x03,0x21,0x26,0x27,0x26,0x0b,0x01,0x33,0x32,0x36,0x37,0x36,
16294
+0x37,0x02,0x91,0xfe,0x48,0x01,0xb8,0x64,0x5b,0x6d,0x98,0x71,
16295
+0x88,0x51,0x56,0xac,0xfe,0xd8,0xae,0x5d,0x63,0x98,0x4e,0xae,
16296
+0xe8,0x92,0xfe,0x86,0x01,0xb5,0x8b,0x41,0xd3,0x70,0x01,0x31,
16297
+0x0e,0x2c,0x34,0xfe,0x92,0x23,0x82,0xde,0x41,0x2c,0x0e,0x04,
16298
+0x64,0xa0,0x1c,0x01,0x2b,0x38,0xfe,0xc9,0x55,0x8b,0x94,0xfe,
16299
+0xa4,0xfe,0xd8,0xac,0xfe,0xf1,0x38,0xd7,0xa0,0x01,0x91,0xa2,
16300
+0x01,0x7e,0x13,0x5c,0xfe,0xcb,0x54,0x4c,0x5a,0xfe,0x64,0xfe,
16301
+0x6f,0x82,0x6f,0x4c,0x54,0x00,0x00,0x00,0x00,0x01,0x00,0x35,
16302
+0xfe,0x77,0x06,0x27,0x05,0xc1,0x00,0x13,0x00,0x3d,0x40,0x22,
16303
+0x10,0x0c,0x08,0x03,0x04,0xb3,0x0e,0x06,0xb4,0x12,0x0a,0x02,
16304
+0xb3,0x00,0xb2,0x14,0x07,0x56,0x09,0x57,0x05,0x01,0x56,0x03,
16305
+0x0d,0x56,0x0b,0x57,0x03,0x0f,0x00,0x56,0x11,0x14,0x10,0xd4,
16306
+0xe4,0x32,0xc4,0xfc,0xe4,0x10,0xe4,0x32,0xfe,0xe4,0x31,0x00,
16307
+0x10,0xfc,0xec,0x32,0x32,0xfc,0x3c,0xec,0x17,0x32,0x30,0x13,
16308
+0x21,0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x21,0x11,
16309
+0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x05,0xf2,0xbf,0xbf,
16310
+0xfd,0xac,0xc0,0xfd,0x36,0xc0,0xfd,0xac,0xbf,0xbf,0x05,0xc1,
16311
+0x4a,0xf9,0x4a,0x4a,0x4a,0x06,0xb6,0xf9,0x4a,0x4a,0x4a,0x06,
16312
+0xb6,0x00,0x00,0x00,0x00,0x01,0x00,0x35,0xfe,0x77,0x06,0x27,
16313
+0x05,0xc1,0x00,0x13,0x00,0x00,0x01,0x21,0x35,0x33,0x11,0x23,
16314
+0x35,0x21,0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x15,0x23,
16315
+0x11,0x33,0x06,0x27,0xfa,0x0e,0xbf,0xbf,0x02,0x54,0xc0,0x02,
16316
+0xca,0xc0,0x02,0x54,0xbf,0xbf,0xfe,0x77,0x4a,0x06,0xb6,0x4a,
16317
+0x4a,0xf9,0x4a,0x06,0xb6,0x4a,0x4a,0xf9,0x4a,0x00,0x00,0x00,
16318
+0x00,0x01,0x00,0x10,0xfe,0x77,0x05,0x9c,0x05,0xc1,0x00,0x16,
16319
+0x00,0x4a,0x40,0x23,0x0f,0x0b,0x15,0x10,0x04,0x02,0x04,0x17,
16320
+0x07,0x0b,0x12,0xb4,0x07,0xb3,0x00,0xb2,0x17,0x15,0x12,0x10,
16321
+0x0f,0x0c,0x0b,0x09,0x08,0x07,0x04,0x03,0x02,0x01,0x0d,0x11,
16322
+0x13,0x00,0x17,0x10,0xd4,0x3c,0xc4,0x17,0x39,0x31,0x00,0x10,
16323
+0xfc,0xec,0xfc,0xcc,0x11,0x12,0x17,0x39,0x11,0x39,0x30,0x40,
16324
+0x0c,0x0a,0x02,0x0a,0x03,0x1c,0x02,0x1c,0x03,0x04,0x2a,0x15,
16325
+0x01,0x5d,0x01,0x5d,0x13,0x21,0x13,0x23,0x27,0x2e,0x01,0x23,
16326
+0x21,0x01,0x15,0x01,0x21,0x3e,0x01,0x3f,0x01,0x33,0x03,0x21,
16327
+0x35,0x09,0x01,0x10,0x04,0x8a,0x6e,0x4e,0x49,0x0b,0x3d,0x44,
16328
+0xfd,0x4e,0x03,0x29,0xfc,0xc7,0x03,0x75,0x3f,0x24,0x0b,0x48,
16329
+0x4e,0x94,0xfb,0x08,0x03,0x98,0xfc,0x68,0x05,0xc1,0xfe,0x93,
16330
+0xe3,0x22,0x1e,0xfc,0xc0,0x25,0xfd,0x21,0x01,0x19,0x25,0xe6,
16331
+0xfe,0x1f,0x29,0x03,0x2f,0x03,0xbc,0x00,0x00,0x01,0x00,0xd9,
16332
+0x02,0x31,0x05,0xdb,0x02,0xd3,0x00,0x03,0x00,0x14,0x40,0x09,
16333
+0x02,0x72,0x00,0x04,0x01,0x18,0x00,0x17,0x04,0x10,0xf4,0xec,
16334
+0x31,0x00,0x10,0xd4,0xec,0x30,0x13,0x21,0x15,0x21,0xd9,0x05,
16335
+0x02,0xfa,0xfe,0x02,0xd3,0xa2,0x00,0x00,0x00,0x02,0x00,0xd9,
16336
+0x00,0x00,0x05,0xdb,0x05,0x04,0x00,0x0b,0x00,0x0f,0x00,0x00,
16337
+0x01,0x11,0x21,0x15,0x21,0x11,0x23,0x11,0x21,0x35,0x21,0x11,
16338
+0x01,0x21,0x15,0x21,0x03,0xaa,0x02,0x31,0xfd,0xcf,0xa0,0xfd,
16339
+0xcf,0x02,0x31,0xfd,0xcf,0x05,0x02,0xfa,0xfe,0x03,0xb0,0xfe,
16340
+0x79,0xa2,0xfe,0x79,0x01,0x87,0xa2,0x01,0x87,0x01,0x54,0xa0,
16341
+0x00,0x02,0x00,0xd9,0x00,0x00,0x05,0xdb,0x05,0x46,0x00,0x0b,
16342
+0x00,0x17,0x00,0x00,0x01,0x34,0x36,0x33,0x32,0x16,0x15,0x14,
16343
+0x06,0x23,0x22,0x26,0x17,0x11,0x21,0x15,0x21,0x11,0x23,0x11,
16344
+0x21,0x35,0x21,0x11,0x02,0xd4,0x4d,0x39,0x37,0x4e,0x4e,0x37,
16345
+0x39,0x4d,0xd6,0x02,0x31,0xfd,0xcf,0xa0,0xfd,0xcf,0x02,0x31,
16346
+0x04,0xc1,0x38,0x4d,0x4e,0x37,0x38,0x4d,0x4c,0xd8,0xfe,0x79,
16347
+0xa2,0xfe,0x79,0x01,0x87,0xa2,0x01,0x87,0xff,0xff,0x00,0x00,
16348
+0xff,0x42,0x02,0xb2,0x05,0xd5,0x10,0x06,0x00,0x12,0x00,0x00,
16349
+0x00,0x01,0x00,0xd9,0x00,0xaf,0x04,0x97,0x04,0x53,0x00,0x11,
16350
+0x00,0x00,0x01,0x0d,0x01,0x07,0x25,0x13,0x23,0x13,0x05,0x27,
16351
+0x2d,0x01,0x37,0x05,0x03,0x33,0x03,0x25,0x04,0x97,0xfe,0x79,
16352
+0x01,0x87,0x4c,0xfe,0xa4,0x0d,0x88,0x0d,0xfe,0xa4,0x4c,0x01,
16353
+0x87,0xfe,0x79,0x4c,0x01,0x5c,0x0d,0x88,0x0d,0x01,0x5c,0x03,
16354
+0x38,0xb6,0xb9,0x76,0xd9,0xfe,0x83,0x01,0x7d,0xd9,0x76,0xb7,
16355
+0xb8,0x77,0xd9,0x01,0x7d,0xfe,0x83,0xd9,0x00,0x02,0x00,0xd9,
16356
+0x01,0x67,0x03,0x13,0x03,0xa2,0x00,0x08,0x00,0x11,0x00,0x00,
16357
+0x00,0x26,0x22,0x06,0x14,0x16,0x32,0x36,0x35,0x24,0x36,0x32,
16358
+0x17,0x16,0x14,0x06,0x22,0x26,0x02,0x88,0x56,0x7a,0x54,0x54,
16359
+0x7c,0x54,0xfe,0x51,0xa5,0xf3,0x4f,0x53,0xa6,0xf2,0xa2,0x02,
16360
+0xbf,0x57,0x55,0x7c,0x53,0x54,0x3c,0x79,0xa7,0x55,0x51,0xf1,
16361
+0xa4,0xa2,0x00,0x00,0x00,0x01,0x00,0xd9,0x01,0x67,0x03,0x13,
16362
+0x03,0xa2,0x00,0x08,0x00,0x00,0x12,0x36,0x32,0x17,0x16,0x14,
16363
+0x06,0x22,0x26,0xd9,0xa5,0xf3,0x4f,0x53,0xa6,0xf2,0xa2,0x02,
16364
+0xfb,0xa7,0x55,0x51,0xf1,0xa4,0xa2,0x00,0x00,0x01,0x00,0x3d,
16365
+0xff,0xd7,0x05,0x19,0x06,0x7d,0x00,0x0a,0x00,0x2a,0x40,0x19,
16366
+0x0a,0x09,0x08,0x07,0x06,0x05,0x0b,0x00,0xbe,0x02,0xbd,0x04,
16367
+0x0b,0x0a,0x09,0x07,0x06,0x05,0x04,0x03,0x00,0x08,0x01,0x08,
16368
+0x0b,0x10,0xd4,0xc4,0x17,0x39,0x31,0x00,0x10,0xc4,0xfc,0xec,
16369
+0x12,0x17,0x39,0x30,0x01,0x33,0x15,0x23,0x01,0x23,0x01,0x07,
16370
+0x27,0x25,0x01,0x04,0x5c,0xbd,0x73,0xfd,0xae,0x42,0xfe,0xc1,
16371
+0x7d,0x19,0x01,0x1b,0x01,0x00,0x06,0x7d,0x60,0xf9,0xba,0x03,
16372
+0x73,0x2d,0x50,0x62,0xfd,0x3b,0x00,0x00,0xff,0xff,0x00,0x3d,
16373
+0xff,0xd7,0x05,0x19,0x07,0x80,0x10,0x27,0x00,0x75,0x00,0x73,
16374
+0x01,0x90,0x12,0x06,0x08,0xd6,0x00,0x00,0xff,0xff,0x00,0x3d,
16375
+0xff,0xd7,0x05,0x19,0x07,0x6f,0x10,0x27,0x07,0xc7,0x00,0x4b,
16376
+0x01,0x90,0x12,0x06,0x08,0xd6,0x00,0x00,0x00,0x02,0x00,0xdd,
16377
+0x00,0xdd,0x04,0x8d,0x03,0xee,0x00,0x0b,0x00,0x25,0x00,0x00,
16378
+0x01,0x2e,0x01,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,
16379
+0x01,0x22,0x26,0x27,0x0e,0x01,0x23,0x22,0x26,0x35,0x34,0x36,
16380
+0x33,0x32,0x16,0x17,0x3e,0x01,0x33,0x15,0x22,0x06,0x07,0x1e,
16381
+0x01,0x33,0x03,0x19,0x31,0x85,0x55,0x65,0x80,0x76,0x59,0x51,
16382
+0x83,0x01,0xc1,0x4a,0x93,0x50,0x47,0x9b,0x5f,0x87,0xbb,0xa7,
16383
+0x86,0x5f,0x96,0x4b,0x44,0x9e,0x61,0x2a,0x83,0x4d,0x32,0x85,
16384
+0x43,0x02,0x9a,0x58,0x58,0x85,0x69,0x65,0x86,0x84,0xfe,0xec,
16385
+0x75,0x8d,0x88,0x7e,0xe0,0xa5,0xaf,0xd8,0x7b,0x8d,0x8a,0x83,
16386
+0x96,0x85,0xa4,0x59,0x59,0x00,0x00,0x00,0x00,0x03,0x00,0xdd,
16387
+0x00,0xdd,0x05,0xcf,0x03,0xee,0x00,0x0b,0x00,0x17,0x00,0x2f,
16388
+0x00,0x44,0x40,0x24,0x09,0x21,0x0f,0x15,0x2d,0x1b,0x00,0x0c,
16389
+0x24,0x18,0x04,0x0f,0x03,0x27,0x21,0x03,0xae,0x1b,0xaf,0x0f,
16390
+0xae,0x21,0xad,0x30,0x0c,0x00,0x24,0x18,0x12,0x06,0x55,0x2a,
16391
+0x12,0x55,0x1e,0x30,0x10,0xd4,0xec,0xd4,0xec,0x11,0x39,0x39,
16392
+0x39,0x39,0x31,0x00,0x10,0xfc,0xec,0xfc,0xec,0x10,0xc0,0x11,
16393
+0x12,0x17,0x39,0x12,0x39,0x39,0x11,0x12,0x39,0x30,0x01,0x1e,
16394
+0x01,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x22,0x06,0x07,0x2e,
16395
+0x01,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x17,0x0e,
16396
+0x01,0x23,0x22,0x26,0x35,0x34,0x36,0x33,0x32,0x16,0x17,0x3e,
16397
+0x01,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x03,0x93,
16398
+0x32,0x85,0x54,0x65,0x80,0x76,0x59,0x51,0x83,0xc7,0x31,0x85,
16399
+0x55,0x65,0x80,0x76,0x59,0x51,0x83,0x94,0x47,0x9b,0x5f,0x87,
16400
+0xbb,0xa7,0x86,0x5f,0x96,0x4b,0x44,0x9e,0x61,0x85,0xbd,0xa7,
16401
+0x86,0x5f,0x93,0x02,0x2f,0x59,0x59,0x87,0x69,0x65,0x86,0x85,
16402
+0x39,0x58,0x58,0x85,0x69,0x65,0x86,0x84,0x12,0x88,0x7e,0xe0,
16403
+0xa5,0xaf,0xd8,0x7b,0x8d,0x8a,0x83,0xe2,0xa6,0xae,0xd7,0x75,
16404
+0x00,0x01,0x01,0x1b,0x00,0xcb,0x05,0x99,0x05,0x49,0x00,0x05,
16405
+0x00,0x00,0x25,0x21,0x11,0x33,0x11,0x21,0x05,0x99,0xfb,0x82,
16406
+0xa2,0x03,0xdc,0xcb,0x04,0x7e,0xfc,0x24,0x00,0x01,0x01,0x1b,
16407
+0x00,0xcb,0x05,0x99,0x05,0x49,0x00,0x05,0x00,0x00,0x25,0x21,
16408
+0x01,0x33,0x01,0x21,0x05,0x99,0xfb,0x82,0x03,0xc8,0xa2,0xfc,
16409
+0xc0,0x03,0x54,0xcb,0x04,0x7e,0xfc,0x24,0x00,0x01,0x00,0xd9,
16410
+0xff,0x38,0x01,0x7b,0x06,0x9d,0x00,0x03,0x00,0x00,0x01,0x11,
16411
+0x23,0x11,0x01,0x7b,0xa2,0x06,0x9d,0xf8,0x9b,0x07,0x65,0x00,
16412
+0x00,0x01,0x00,0xb1,0xff,0x38,0x03,0x23,0x06,0x9d,0x00,0x0b,
16413
+0x00,0x00,0x01,0x11,0x33,0x11,0x37,0x17,0x07,0x11,0x23,0x11,
16414
+0x07,0x27,0x01,0x99,0xa2,0x75,0x73,0xe8,0xa2,0x75,0x73,0x03,
16415
+0x0d,0x03,0x90,0xfd,0x12,0x75,0x73,0xe8,0xfc,0x6f,0x02,0xef,
16416
+0x75,0x73,0x00,0x00,0x00,0x02,0x00,0xd9,0xff,0x38,0x02,0xd9,
16417
+0x06,0x9d,0x00,0x03,0x00,0x07,0x00,0x00,0x01,0x11,0x23,0x11,
16418
+0x23,0x11,0x23,0x11,0x02,0xd9,0xa2,0xbc,0xa2,0x06,0x9d,0xf8,
16419
+0x9b,0x07,0x65,0xf8,0x9b,0x07,0x65,0x00,0x00,0x01,0x00,0xb1,
16420
+0xff,0x38,0x04,0x61,0x06,0x9d,0x00,0x13,0x00,0x00,0x01,0x11,
16421
+0x33,0x11,0x37,0x11,0x33,0x11,0x37,0x17,0x07,0x11,0x23,0x11,
16422
+0x07,0x11,0x23,0x11,0x07,0x27,0x01,0x89,0xa2,0xbc,0xa2,0x65,
16423
+0x73,0xd8,0xa2,0xbc,0xa2,0x65,0x73,0x02,0x5e,0x04,0x3f,0xfc,
16424
+0x63,0xbc,0x02,0xe1,0xfd,0xc1,0x65,0x73,0xd8,0xfb,0xc0,0x03,
16425
+0x9e,0xbc,0xfd,0x1e,0x02,0x40,0x65,0x73,0x00,0x01,0x01,0x07,
16426
+0x00,0x00,0x04,0xd4,0x04,0xac,0x00,0x06,0x00,0x00,0x21,0x01,
16427
+0x33,0x01,0x23,0x09,0x01,0x01,0x08,0x01,0x69,0xfa,0x01,0x68,
16428
+0xc3,0xfe,0xde,0xfe,0xdd,0x04,0xac,0xfb,0x54,0x03,0xb6,0xfc,
16429
+0x4a,0x00,0x00,0x00,0x00,0x01,0x01,0x07,0x00,0x00,0x04,0xd4,
16430
+0x04,0xac,0x00,0x06,0x00,0x00,0x01,0x33,0x09,0x01,0x33,0x01,
16431
+0x23,0x01,0x08,0xc3,0x01,0x23,0x01,0x22,0xc3,0xfe,0x98,0xfa,
16432
+0x04,0xac,0xfc,0x4a,0x03,0xb6,0xfb,0x54,0x00,0x01,0x00,0xd8,
16433
+0x00,0x00,0x05,0xdc,0x05,0x04,0x00,0x13,0x00,0x00,0x01,0x11,
16434
+0x23,0x11,0x34,0x12,0x24,0x20,0x04,0x12,0x15,0x11,0x23,0x11,
16435
+0x34,0x2e,0x01,0x20,0x0e,0x01,0x01,0x78,0xa0,0xac,0x01,0x28,
16436
+0x01,0x5c,0x01,0x28,0xac,0xa0,0x82,0xde,0xfe,0xfc,0xde,0x82,
16437
+0x02,0x82,0xfd,0x7e,0x02,0x82,0xae,0x01,0x28,0xac,0xac,0xfe,
16438
+0xd8,0xae,0xfd,0x7e,0x02,0x82,0x82,0xde,0x82,0x82,0xde,0x00,
16439
+0x00,0x01,0x00,0xd8,0xff,0xe7,0x05,0xdc,0x04,0xeb,0x00,0x13,
16440
+0x00,0x00,0x01,0x11,0x33,0x11,0x14,0x02,0x04,0x20,0x24,0x02,
16441
+0x35,0x11,0x33,0x11,0x14,0x1e,0x01,0x20,0x3e,0x01,0x05,0x3c,
16442
+0xa0,0xac,0xfe,0xd8,0xfe,0xa4,0xfe,0xd8,0xac,0xa0,0x82,0xde,
16443
+0x01,0x04,0xde,0x82,0x02,0x69,0x02,0x82,0xfd,0x7e,0xae,0xfe,
16444
+0xd8,0xac,0xac,0x01,0x28,0xae,0x02,0x82,0xfd,0x7e,0x82,0xde,
16445
+0x82,0x82,0xde,0x00,0x00,0x01,0x00,0x2f,0xfe,0x8d,0x03,0xfa,
16446
+0x06,0x0e,0x00,0x25,0x00,0x23,0x40,0x12,0x20,0xb6,0x00,0x1a,
16447
+0xb7,0x0d,0xb6,0x13,0x07,0xb5,0x26,0x0a,0x58,0x17,0x1d,0x58,
16448
+0x04,0x26,0x10,0xdc,0xec,0xdc,0xec,0x31,0x00,0x10,0xfc,0xcc,
16449
+0xec,0xfc,0xcc,0xec,0x30,0x01,0x32,0x13,0x36,0x37,0x1a,0x01,
16450
+0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x27,0x2e,0x01,
16451
+0x23,0x22,0x03,0x06,0x07,0x0a,0x01,0x23,0x22,0x26,0x35,0x34,
16452
+0x36,0x33,0x32,0x16,0x17,0x1e,0x01,0x01,0x37,0x6a,0x0e,0x02,
16453
+0x01,0x0c,0xbe,0xca,0x50,0x64,0x40,0x37,0x2a,0x38,0x0c,0x06,
16454
+0x09,0x10,0x6b,0x0e,0x04,0x04,0x11,0xbd,0xc4,0x4f,0x65,0x44,
16455
+0x3d,0x21,0x30,0x0f,0x0a,0x0a,0xfe,0xfa,0x02,0xb0,0x6c,0x39,
16456
+0x02,0x03,0x01,0xbc,0x54,0x41,0x36,0x3f,0x26,0x23,0x0f,0x48,
16457
+0xfd,0x95,0xc1,0x6e,0xfe,0x21,0xfe,0x62,0x53,0x41,0x38,0x3f,
16458
+0x1d,0x1c,0x12,0x53,0xff,0xff,0x00,0x2f,0xfe,0x8d,0x06,0x9f,
16459
+0x06,0x0e,0x10,0x27,0x08,0xe5,0x02,0xa5,0x00,0x00,0x10,0x06,
16460
+0x08,0xe5,0x00,0x00,0xff,0xff,0x00,0x2f,0xfe,0x8d,0x09,0x44,
16461
+0x06,0x0e,0x10,0x27,0x08,0xe5,0x05,0x4a,0x00,0x00,0x10,0x27,
16462
+0x08,0xe5,0x02,0xa5,0x00,0x00,0x10,0x06,0x08,0xe5,0x00,0x00,
16463
+0x00,0x02,0x00,0xd9,0x02,0x31,0x05,0xdb,0x04,0x79,0x00,0x0b,
16464
+0x00,0x0f,0x00,0x00,0x01,0x34,0x36,0x33,0x32,0x16,0x15,0x14,
16465
+0x06,0x23,0x22,0x26,0x05,0x21,0x15,0x21,0x02,0xd5,0x4d,0x38,
16466
+0x37,0x4e,0x4e,0x37,0x39,0x4c,0xfe,0x04,0x05,0x02,0xfa,0xfe,
16467
+0x03,0xf4,0x38,0x4d,0x4e,0x37,0x38,0x4d,0x4c,0xe8,0xa2,0x00,
16468
+0x00,0x03,0x00,0xd9,0x00,0x8b,0x05,0xdb,0x04,0x79,0x00,0x0b,
16469
+0x00,0x16,0x00,0x1a,0x00,0x00,0x01,0x34,0x36,0x33,0x32,0x16,
16470
+0x15,0x14,0x06,0x23,0x22,0x26,0x10,0x34,0x36,0x33,0x32,0x16,
16471
+0x15,0x14,0x06,0x23,0x22,0x01,0x21,0x15,0x21,0x04,0xd1,0x4d,
16472
+0x38,0x37,0x4e,0x4e,0x37,0x39,0x4c,0x4d,0x38,0x37,0x4e,0x4e,
16473
+0x37,0x39,0xfb,0xbc,0x03,0x72,0xfc,0x8e,0x03,0xf4,0x38,0x4d,
16474
+0x4e,0x37,0x38,0x4d,0x4c,0xfd,0x1d,0x70,0x4e,0x4e,0x38,0x37,
16475
+0x4e,0x02,0x48,0xa2,0x00,0x05,0x00,0xd9,0x00,0x8b,0x05,0xdb,
16476
+0x04,0x79,0x00,0x0b,0x00,0x16,0x00,0x22,0x00,0x2d,0x00,0x31,
16477
+0x00,0x00,0x13,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,
16478
+0x22,0x26,0x10,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,
16479
+0x22,0x01,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,
16480
+0x26,0x10,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,
16481
+0x01,0x21,0x15,0x21,0xd9,0x4d,0x38,0x37,0x4e,0x4e,0x37,0x39,
16482
+0x4c,0x4d,0x38,0x37,0x4e,0x4e,0x37,0x39,0x03,0xac,0x4d,0x38,
16483
+0x37,0x4e,0x4e,0x37,0x39,0x4c,0x4d,0x38,0x37,0x4e,0x4e,0x37,
16484
+0x39,0xfb,0xbc,0x05,0x02,0xfa,0xfe,0x03,0xf4,0x38,0x4d,0x4e,
16485
+0x37,0x38,0x4d,0x4c,0xfd,0x1d,0x70,0x4e,0x4e,0x38,0x37,0x4e,
16486
+0x03,0x69,0x38,0x4d,0x4e,0x37,0x38,0x4d,0x4c,0xfd,0x1d,0x70,
16487
+0x4e,0x4e,0x38,0x37,0x4e,0x02,0x48,0xa2,0xff,0xff,0x00,0xd9,
16488
+0x00,0x8c,0x05,0xdb,0x04,0x79,0x10,0x27,0x09,0x26,0x01,0xfb,
16489
+0xfe,0x4a,0x10,0x27,0x09,0x26,0x01,0xfb,0x01,0x2d,0x12,0x06,
16490
+0x08,0xec,0x00,0x00,0x00,0x01,0x00,0xd9,0x01,0xde,0x05,0xdb,
16491
+0x03,0x27,0x00,0x13,0x00,0x00,0x01,0x15,0x06,0x23,0x22,0x2f,
16492
+0x01,0x26,0x23,0x22,0x07,0x35,0x36,0x33,0x32,0x1f,0x01,0x16,
16493
+0x33,0x32,0x05,0xdb,0xbf,0xb6,0x5c,0xa6,0x17,0xad,0x65,0xb4,
16494
+0xae,0xbf,0xb6,0x5c,0xa6,0x17,0xad,0x65,0xb4,0x03,0x27,0x93,
16495
+0xae,0x3f,0x09,0x45,0x95,0x93,0xae,0x3f,0x09,0x45,0x00,0x00,
16496
+0x00,0x01,0x00,0xd9,0x01,0xde,0x05,0xdb,0x03,0x27,0x00,0x13,
16497
+0x00,0x00,0x13,0x16,0x33,0x32,0x3f,0x01,0x36,0x33,0x32,0x17,
16498
+0x15,0x26,0x23,0x22,0x0f,0x01,0x06,0x23,0x22,0x27,0xd9,0xae,
16499
+0xb4,0x65,0xad,0x17,0xa6,0x5c,0xb6,0xbf,0xae,0xb4,0x65,0xad,
16500
+0x17,0xa6,0x5c,0xb6,0xbf,0x03,0x27,0x95,0x45,0x09,0x3f,0xae,
16501
+0x93,0x95,0x45,0x09,0x3f,0xae,0x00,0x00,0x00,0x02,0x00,0xd9,
16502
+0x01,0x1b,0x05,0xdb,0x03,0x9e,0x00,0x03,0x00,0x1f,0x00,0x00,
16503
+0x13,0x21,0x15,0x21,0x05,0x15,0x0e,0x01,0x23,0x22,0x2f,0x01,
16504
+0x26,0x27,0x26,0x23,0x22,0x06,0x07,0x35,0x3e,0x01,0x33,0x32,
16505
+0x1f,0x01,0x16,0x17,0x16,0x33,0x32,0x36,0xd9,0x05,0x02,0xfa,
16506
+0xfe,0x05,0x02,0x63,0xb5,0x5d,0x5c,0xa6,0x17,0x0a,0x16,0x93,
16507
+0x5f,0x5c,0xad,0x59,0x65,0xb3,0x5d,0x60,0xae,0x0a,0x0b,0x14,
16508
+0x91,0x61,0x5c,0xb0,0x03,0x9e,0xa0,0x9a,0x93,0x5a,0x54,0x3f,
16509
+0x09,0x04,0x08,0x39,0x49,0x4c,0x93,0x5a,0x52,0x42,0x04,0x03,
16510
+0x09,0x39,0x49,0x00,0x00,0x02,0x00,0xd9,0x01,0x66,0x05,0xdb,
16511
+0x03,0xe9,0x00,0x03,0x00,0x1e,0x00,0x00,0x13,0x21,0x15,0x21,
16512
+0x01,0x15,0x0e,0x01,0x23,0x22,0x2f,0x02,0x26,0x23,0x22,0x06,
16513
+0x07,0x35,0x3e,0x01,0x33,0x32,0x1f,0x01,0x16,0x17,0x16,0x33,
16514
+0x32,0x36,0xd9,0x05,0x02,0xfa,0xfe,0x05,0x02,0x62,0xb5,0x5e,
16515
+0x60,0xae,0x0a,0x21,0x93,0x5f,0x5c,0xad,0x59,0x65,0xb3,0x5d,
16516
+0x60,0xae,0x0a,0x0b,0x14,0x91,0x61,0x5c,0xb0,0x02,0x06,0xa0,
16517
+0x02,0x83,0x93,0x59,0x53,0x42,0x04,0x0c,0x39,0x49,0x4c,0x93,
16518
+0x5a,0x52,0x41,0x04,0x04,0x09,0x39,0x49,0x00,0x02,0x00,0xd9,
16519
+0x01,0x1b,0x05,0xdb,0x03,0xe9,0x00,0x1c,0x00,0x38,0x00,0x6c,
16520
+0x40,0x39,0x32,0x31,0x36,0x2f,0x24,0x23,0x28,0x21,0x16,0x15,
16521
+0x1a,0x13,0x1e,0x36,0x2f,0x2c,0x28,0x00,0x2b,0x21,0x01,0x1a,
16522
+0x13,0x10,0x0c,0x04,0x1d,0x2f,0x1a,0xa3,0x04,0x28,0xa3,0x2f,
16523
+0x36,0x04,0x0c,0xa3,0x13,0x36,0xa3,0x21,0x39,0x32,0x31,0x24,
16524
+0x23,0x16,0x15,0x06,0x1d,0x00,0x18,0x2b,0x0f,0x17,0x39,0x10,
16525
+0xf4,0x3c,0xec,0x32,0x17,0x39,0x31,0x00,0x10,0xd4,0xec,0xd4,
16526
+0xfc,0xc4,0x10,0xd4,0xee,0x10,0xee,0x10,0xc0,0x11,0x12,0x39,
16527
+0x11,0x12,0x39,0x12,0x39,0x39,0x11,0x39,0x11,0x12,0x39,0x11,
16528
+0x12,0x39,0x39,0x11,0x12,0x39,0x39,0x11,0x12,0x39,0x39,0x30,
16529
+0x01,0x15,0x0e,0x01,0x23,0x22,0x27,0x26,0x27,0x26,0x27,0x26,
16530
+0x23,0x22,0x06,0x07,0x35,0x3e,0x01,0x33,0x32,0x1f,0x01,0x16,
16531
+0x17,0x16,0x33,0x32,0x36,0x13,0x15,0x0e,0x01,0x23,0x22,0x2f,
16532
+0x01,0x26,0x27,0x26,0x23,0x22,0x06,0x07,0x35,0x3e,0x01,0x33,
16533
+0x32,0x1f,0x01,0x16,0x17,0x16,0x33,0x32,0x36,0x05,0xdb,0x63,
16534
+0xb5,0x5d,0x5c,0xa6,0x0f,0x08,0x0a,0x16,0x93,0x5f,0x5c,0xad,
16535
+0x59,0x65,0xb3,0x5d,0x60,0xae,0x0a,0x0b,0x14,0x91,0x61,0x5c,
16536
+0xb0,0x58,0x62,0xb5,0x5e,0x60,0xae,0x0a,0x0b,0x16,0x93,0x5f,
16537
+0x5c,0xad,0x59,0x65,0xb3,0x5d,0x60,0xae,0x0a,0x0b,0x14,0x91,
16538
+0x61,0x5c,0xb0,0x02,0x64,0x93,0x5a,0x54,0x3f,0x06,0x03,0x04,
16539
+0x08,0x39,0x49,0x4c,0x93,0x5a,0x52,0x42,0x04,0x03,0x09,0x39,
16540
+0x49,0x01,0xd1,0x93,0x59,0x53,0x42,0x04,0x04,0x08,0x39,0x49,
16541
+0x4c,0x93,0x5a,0x52,0x41,0x04,0x04,0x09,0x39,0x49,0x00,0x00,
16542
+0x00,0x03,0x00,0xd9,0x01,0x66,0x05,0xdb,0x05,0x44,0x00,0x0b,
16543
+0x00,0x0f,0x00,0x13,0x00,0x00,0x01,0x34,0x36,0x33,0x32,0x16,
16544
+0x15,0x14,0x06,0x23,0x22,0x26,0x05,0x21,0x15,0x21,0x15,0x21,
16545
+0x15,0x21,0x02,0xd4,0x4d,0x39,0x37,0x4e,0x4e,0x37,0x39,0x4d,
16546
+0xfe,0x05,0x05,0x02,0xfa,0xfe,0x05,0x02,0xfa,0xfe,0x04,0xbf,
16547
+0x38,0x4d,0x4e,0x37,0x38,0x4d,0x4c,0xe8,0xa0,0xf8,0xa0,0x00,
16548
+0x00,0x04,0x00,0xd9,0xff,0xc1,0x05,0xdb,0x05,0x44,0x00,0x0b,
16549
+0x00,0x17,0x00,0x1b,0x00,0x1f,0x00,0x00,0x25,0x34,0x36,0x33,
16550
+0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x11,0x34,0x36,0x33,
16551
+0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x05,0x21,0x15,0x21,
16552
+0x15,0x21,0x15,0x21,0x02,0xd4,0x4d,0x39,0x37,0x4e,0x4e,0x37,
16553
+0x39,0x4d,0x4d,0x39,0x37,0x4e,0x4e,0x37,0x39,0x4d,0xfe,0x05,
16554
+0x05,0x02,0xfa,0xfe,0x05,0x02,0xfa,0xfe,0x46,0x38,0x4d,0x4e,
16555
+0x37,0x38,0x4d,0x4c,0x04,0xb2,0x38,0x4d,0x4e,0x37,0x38,0x4d,
16556
+0x4c,0xe8,0xa0,0xf8,0xa0,0x00,0x00,0x00,0x00,0x04,0x00,0xd9,
16557
+0xff,0xc1,0x05,0xdb,0x05,0x44,0x00,0x0b,0x00,0x17,0x00,0x1b,
16558
+0x00,0x1f,0x00,0x00,0x25,0x34,0x36,0x33,0x32,0x16,0x15,0x14,
16559
+0x06,0x23,0x22,0x26,0x01,0x34,0x36,0x33,0x32,0x16,0x15,0x14,
16560
+0x06,0x23,0x22,0x26,0x15,0x21,0x15,0x21,0x15,0x21,0x15,0x21,
16561
+0x04,0xd0,0x4d,0x39,0x37,0x4e,0x4e,0x37,0x39,0x4d,0xfc,0x09,
16562
+0x4d,0x39,0x37,0x4e,0x4e,0x37,0x39,0x4d,0x05,0x02,0xfa,0xfe,
16563
+0x05,0x02,0xfa,0xfe,0x46,0x38,0x4d,0x4e,0x37,0x38,0x4d,0x4c,
16564
+0x04,0xb2,0x38,0x4d,0x4e,0x37,0x38,0x4d,0x4c,0xe8,0xa0,0xf8,
16565
+0xa0,0x00,0x00,0x00,0x00,0x04,0x00,0xd9,0xff,0xc1,0x05,0xdb,
16566
+0x05,0x44,0x00,0x0b,0x00,0x17,0x00,0x1b,0x00,0x1f,0x00,0x00,
16567
+0x01,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,
16568
+0x01,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,
16569
+0x11,0x21,0x15,0x21,0x15,0x21,0x15,0x21,0x04,0xd0,0x4d,0x39,
16570
+0x37,0x4e,0x4e,0x37,0x39,0x4d,0xfc,0x09,0x4d,0x39,0x37,0x4e,
16571
+0x4e,0x37,0x39,0x4d,0x05,0x02,0xfa,0xfe,0x05,0x02,0xfa,0xfe,
16572
+0x04,0xbf,0x38,0x4d,0x4e,0x37,0x38,0x4d,0x4c,0xfb,0xc0,0x38,
16573
+0x4d,0x4e,0x37,0x38,0x4d,0x4c,0x03,0x91,0xa0,0xf8,0xa0,0x00,
16574
+0x00,0x04,0x00,0xd9,0x01,0x31,0x07,0x6b,0x03,0xd3,0x00,0x0b,
16575
+0x00,0x17,0x00,0x1b,0x00,0x1f,0x00,0x00,0x13,0x34,0x36,0x33,
16576
+0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x11,0x34,0x36,0x33,
16577
+0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x01,0x21,0x15,0x21,
16578
+0x15,0x21,0x15,0x21,0xd9,0x4d,0x39,0x37,0x4e,0x4e,0x37,0x39,
16579
+0x4d,0x4d,0x39,0x37,0x4e,0x4e,0x37,0x39,0x4d,0x01,0x90,0x05,
16580
+0x02,0xfa,0xfe,0x05,0x02,0xfa,0xfe,0x03,0x4e,0x38,0x4d,0x4e,
16581
+0x37,0x38,0x4d,0x4c,0xfe,0xa1,0x38,0x4d,0x4e,0x37,0x38,0x4d,
16582
+0x4c,0x02,0x21,0xa0,0xf8,0xa0,0x00,0x00,0x00,0x04,0x00,0xd9,
16583
+0x01,0x31,0x07,0x6b,0x03,0xd3,0x00,0x0b,0x00,0x17,0x00,0x1b,
16584
+0x00,0x1f,0x00,0x00,0x01,0x34,0x36,0x33,0x32,0x16,0x15,0x14,
16585
+0x06,0x23,0x22,0x26,0x11,0x34,0x36,0x33,0x32,0x16,0x15,0x14,
16586
+0x06,0x23,0x22,0x26,0x01,0x21,0x15,0x21,0x15,0x21,0x15,0x21,
16587
+0x06,0x60,0x4d,0x39,0x37,0x4e,0x4e,0x37,0x39,0x4d,0x4d,0x39,
16588
+0x37,0x4e,0x4e,0x37,0x39,0x4d,0xfa,0x79,0x05,0x02,0xfa,0xfe,
16589
+0x05,0x02,0xfa,0xfe,0x03,0x4e,0x38,0x4d,0x4e,0x37,0x38,0x4d,
16590
+0x4c,0xfe,0xa1,0x38,0x4d,0x4e,0x37,0x38,0x4d,0x4c,0x02,0x21,
16591
+0xa0,0xf8,0xa0,0x00,0x00,0x01,0x00,0xd9,0x00,0x27,0x05,0xdb,
16592
+0x04,0xdd,0x00,0x13,0x00,0x3c,0x40,0x21,0x0d,0x0c,0x14,0x0a,
16593
+0x03,0x02,0x12,0x06,0x72,0x04,0x00,0x0e,0x0a,0x72,0x10,0x08,
16594
+0x14,0x12,0x0e,0x0d,0x0c,0x08,0x04,0x03,0x02,0x08,0x09,0x05,
16595
+0x18,0x0f,0x00,0x17,0x14,0x10,0xf4,0x3c,0xec,0x32,0x17,0x39,
16596
+0x31,0x00,0x10,0xd4,0x3c,0xec,0x32,0xd4,0x3c,0xec,0x32,0xc0,
16597
+0x39,0x11,0x12,0x39,0x39,0x30,0x13,0x21,0x01,0x17,0x07,0x21,
16598
+0x15,0x21,0x07,0x21,0x15,0x21,0x01,0x27,0x37,0x21,0x35,0x21,
16599
+0x37,0x21,0xd9,0x03,0x04,0x01,0x00,0x7d,0xae,0x01,0x2f,0xfe,
16600
+0x48,0xc3,0x02,0x7b,0xfc,0xfa,0xfe,0xfe,0x7d,0xae,0xfe,0xd5,
16601
+0x01,0xb6,0xc3,0xfd,0x87,0x03,0x9e,0x01,0x3f,0x66,0xd9,0xa0,
16602
+0xf8,0xa0,0xfe,0xc1,0x66,0xd9,0xa0,0xf8,0x00,0x03,0x00,0xd9,
16603
+0x00,0xbe,0x05,0xdb,0x04,0x46,0x00,0x03,0x00,0x07,0x00,0x0b,
16604
+0x00,0x00,0x13,0x21,0x15,0x21,0x11,0x21,0x15,0x21,0x11,0x21,
16605
+0x15,0x21,0xd9,0x05,0x02,0xfa,0xfe,0x05,0x02,0xfa,0xfe,0x05,
16606
+0x02,0xfa,0xfe,0x02,0xd2,0xa0,0x02,0x14,0xa0,0xfd,0xb8,0xa0,
16607
+0x00,0x02,0x00,0xd9,0x00,0x00,0x05,0xdb,0x04,0xa8,0x00,0x06,
16608
+0x00,0x0a,0x00,0x26,0x40,0x14,0x05,0x04,0x02,0x01,0x00,0x05,
16609
+0x03,0x06,0x07,0x72,0x09,0x01,0x08,0x02,0x00,0x18,0x07,0x04,
16610
+0x17,0x0b,0x10,0xf4,0x3c,0xec,0x32,0x32,0x39,0x31,0x00,0x2f,
16611
+0xec,0xd4,0xcc,0x17,0x39,0x30,0x09,0x02,0x15,0x01,0x35,0x09,
16612
+0x01,0x21,0x15,0x21,0x05,0xdb,0xfb,0xe1,0x04,0x1f,0xfa,0xfe,
16613
+0x05,0x02,0xfa,0xfe,0x05,0x02,0xfa,0xfe,0x04,0x02,0xfe,0xe1,
16614
+0xfe,0xe2,0xa6,0x01,0x70,0xaa,0x01,0x6f,0xfb,0xf4,0x9c,0x00,
16615
+0x00,0x02,0x00,0xd9,0x00,0x00,0x05,0xdb,0x04,0xa8,0x00,0x03,
16616
+0x00,0x0a,0x00,0x26,0x40,0x14,0x0a,0x09,0x07,0x06,0x04,0x05,
16617
+0x08,0x05,0x00,0x72,0x01,0x0a,0x06,0x00,0x18,0x08,0x04,0x02,
16618
+0x17,0x0b,0x10,0xf4,0x3c,0x3c,0xec,0x32,0x39,0x31,0x00,0x2f,
16619
+0xec,0xd4,0xcc,0x17,0x39,0x30,0x25,0x15,0x21,0x35,0x11,0x35,
16620
+0x01,0x15,0x01,0x35,0x01,0x05,0xdb,0xfa,0xfe,0x05,0x02,0xfa,
16621
+0xfe,0x04,0x1f,0x9c,0x9c,0x9c,0x03,0x66,0xa6,0xfe,0x91,0xaa,
16622
+0xfe,0x90,0xa6,0x01,0x1e,0x00,0x00,0x00,0x00,0x01,0x00,0xd9,
16623
+0x00,0x00,0x05,0xdb,0x05,0x04,0x00,0x13,0x00,0x00,0x25,0x21,
16624
+0x15,0x21,0x22,0x24,0x02,0x10,0x12,0x24,0x33,0x21,0x15,0x21,
16625
+0x22,0x0e,0x01,0x10,0x1e,0x01,0x03,0x5b,0x02,0x80,0xfd,0x80,
16626
+0xae,0xfe,0xd8,0xac,0xac,0x01,0x28,0xae,0x02,0x80,0xfd,0x80,
16627
+0x82,0xde,0x82,0x82,0xde,0xa0,0xa0,0xac,0x01,0x28,0x01,0x5c,
16628
+0x01,0x28,0xac,0xa0,0x82,0xde,0xfe,0xfc,0xde,0x82,0x00,0x00,
16629
+0x00,0x01,0x00,0xd9,0x00,0x00,0x05,0xdb,0x05,0x04,0x00,0x13,
16630
+0x00,0x00,0x01,0x21,0x35,0x21,0x32,0x04,0x12,0x10,0x02,0x04,
16631
+0x23,0x21,0x35,0x21,0x32,0x3e,0x01,0x10,0x2e,0x01,0x03,0x59,
16632
+0xfd,0x80,0x02,0x80,0xae,0x01,0x28,0xac,0xac,0xfe,0xd8,0xae,
16633
+0xfd,0x80,0x02,0x80,0x82,0xde,0x82,0x82,0xde,0x04,0x64,0xa0,
16634
+0xac,0xfe,0xd8,0xfe,0xa4,0xfe,0xd8,0xac,0xa0,0x82,0xde,0x01,
16635
+0x04,0xde,0x82,0x00,0x00,0x02,0x00,0xd9,0xfe,0xf1,0x05,0xdb,
16636
+0x06,0x13,0x00,0x19,0x00,0x24,0x00,0x00,0x25,0x21,0x15,0x21,
16637
+0x22,0x27,0x03,0x27,0x13,0x26,0x27,0x26,0x02,0x10,0x12,0x24,
16638
+0x3b,0x01,0x13,0x17,0x07,0x21,0x15,0x21,0x01,0x16,0x27,0x01,
16639
+0x23,0x22,0x0e,0x01,0x10,0x17,0x16,0x17,0x16,0x03,0x5b,0x02,
16640
+0x80,0xfd,0x80,0x32,0x30,0x65,0x98,0x61,0x23,0x21,0x94,0xac,
16641
+0xac,0x01,0x28,0xae,0xc2,0x63,0x98,0x4e,0x01,0x11,0xfe,0xb5,
16642
+0xfe,0xa1,0x15,0xb2,0x01,0x4f,0x88,0x82,0xde,0x82,0x41,0x42,
16643
+0x6e,0x15,0xa0,0xa0,0x07,0xfe,0xea,0x38,0x01,0x0b,0x0f,0x13,
16644
+0x56,0x01,0x28,0x01,0x5c,0x01,0x28,0xac,0x01,0x0f,0x38,0xd7,
16645
+0xa0,0xfc,0x3e,0x02,0x2b,0x03,0x99,0x82,0xde,0xfe,0xfc,0x6f,
16646
+0x71,0x3f,0x0c,0x00,0x00,0x02,0x00,0xd9,0xfe,0xf1,0x05,0xdb,
16647
+0x06,0x13,0x00,0x15,0x00,0x1f,0x00,0x00,0x01,0x17,0x07,0x16,
16648
+0x17,0x16,0x12,0x10,0x02,0x04,0x23,0x21,0x03,0x27,0x37,0x23,
16649
+0x35,0x33,0x01,0x21,0x35,0x21,0x17,0x01,0x33,0x32,0x3e,0x01,
16650
+0x10,0x26,0x27,0x26,0x03,0xac,0x98,0x54,0x59,0x52,0x94,0xac,
16651
+0xac,0xfe,0xd8,0xae,0xfe,0xca,0x63,0x98,0x4e,0x9d,0xd7,0x01,
16652
+0x5f,0xfd,0xca,0x02,0x70,0x6f,0xfe,0xa5,0xfc,0x82,0xde,0x82,
16653
+0x82,0x6f,0x45,0x06,0x13,0x38,0xe8,0x15,0x30,0x56,0xfe,0xd8,
16654
+0xfe,0xa4,0xfe,0xd8,0xac,0xfe,0xf1,0x38,0xd7,0xa0,0x03,0xc4,
16655
+0xa0,0xa9,0xfc,0x45,0x82,0xde,0x01,0x04,0xde,0x41,0x29,0x00,
16656
+0x00,0x02,0x00,0xd9,0xff,0x6a,0x05,0xdb,0x05,0x9a,0x00,0x03,
16657
+0x00,0x17,0x00,0x00,0x37,0x21,0x15,0x21,0x01,0x21,0x15,0x21,
16658
+0x22,0x24,0x02,0x10,0x12,0x24,0x33,0x21,0x15,0x21,0x22,0x0e,
16659
+0x01,0x10,0x1e,0x01,0xd9,0x05,0x02,0xfa,0xfe,0x02,0x82,0x02,
16660
+0x80,0xfd,0x80,0xae,0xfe,0xd8,0xac,0xac,0x01,0x28,0xae,0x02,
16661
+0x80,0xfd,0x80,0x82,0xde,0x82,0x82,0xde,0x0c,0xa2,0x01,0xcc,
16662
+0xa0,0xac,0x01,0x28,0x01,0x5c,0x01,0x28,0xac,0xa0,0x82,0xde,
16663
+0xfe,0xfc,0xde,0x82,0x00,0x02,0x00,0xd9,0xff,0x6a,0x05,0xdb,
16664
+0x05,0x9a,0x00,0x03,0x00,0x17,0x00,0x00,0x37,0x21,0x15,0x21,
16665
+0x01,0x21,0x35,0x21,0x32,0x04,0x12,0x10,0x02,0x04,0x23,0x21,
16666
+0x35,0x21,0x32,0x3e,0x01,0x10,0x2e,0x01,0xd9,0x05,0x02,0xfa,
16667
+0xfe,0x02,0x80,0xfd,0x80,0x02,0x80,0xae,0x01,0x28,0xac,0xac,
16668
+0xfe,0xd8,0xae,0xfd,0x80,0x02,0x80,0x82,0xde,0x82,0x82,0xde,
16669
+0x0c,0xa2,0x05,0x90,0xa0,0xac,0xfe,0xd8,0xfe,0xa4,0xfe,0xd8,
16670
+0xac,0xa0,0x82,0xde,0x01,0x04,0xde,0x82,0x00,0x02,0x00,0xd8,
16671
+0xff,0xe7,0x05,0xdc,0x04,0xeb,0x00,0x09,0x00,0x1d,0x00,0x00,
16672
+0x01,0x15,0x21,0x17,0x23,0x01,0x35,0x01,0x33,0x07,0x05,0x11,
16673
+0x33,0x11,0x14,0x02,0x04,0x20,0x24,0x02,0x35,0x11,0x33,0x11,
16674
+0x14,0x1e,0x01,0x20,0x3e,0x01,0x04,0xaf,0xfe,0x18,0x5d,0x0b,
16675
+0xfe,0xc3,0x01,0x3d,0x0b,0x5d,0x02,0x75,0xa0,0xac,0xfe,0xd8,
16676
+0xfe,0xa4,0xfe,0xd8,0xac,0xa0,0x82,0xde,0x01,0x04,0xde,0x82,
16677
+0x02,0xd3,0xa2,0xed,0x01,0x39,0x0a,0x01,0x39,0xed,0x6a,0x02,
16678
+0x82,0xfd,0x7e,0xae,0xfe,0xd8,0xac,0xac,0x01,0x28,0xae,0x02,
16679
+0x82,0xfd,0x7e,0x82,0xde,0x82,0x82,0xde,0x00,0x02,0x00,0xd8,
16680
+0xff,0xe7,0x05,0xdc,0x04,0xeb,0x00,0x0b,0x00,0x1f,0x00,0x00,
16681
+0x01,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,
16682
+0x25,0x11,0x33,0x11,0x14,0x02,0x04,0x20,0x24,0x02,0x35,0x11,
16683
+0x33,0x11,0x14,0x1e,0x01,0x20,0x3e,0x01,0x02,0xd4,0x4d,0x39,
16684
+0x37,0x4e,0x4e,0x37,0x39,0x4d,0x02,0x68,0xa0,0xac,0xfe,0xd8,
16685
+0xfe,0xa4,0xfe,0xd8,0xac,0xa0,0x82,0xde,0x01,0x04,0xde,0x82,
16686
+0x02,0x82,0x38,0x4d,0x4e,0x37,0x38,0x4d,0x4c,0x20,0x02,0x82,
16687
+0xfd,0x7e,0xae,0xfe,0xd8,0xac,0xac,0x01,0x28,0xae,0x02,0x82,
16688
+0xfd,0x7e,0x82,0xde,0x82,0x82,0xde,0x00,0x00,0x02,0x00,0xd8,
16689
+0xff,0xe7,0x05,0xdc,0x04,0xeb,0x00,0x0b,0x00,0x1f,0x00,0x00,
16690
+0x01,0x11,0x21,0x35,0x21,0x11,0x33,0x11,0x21,0x15,0x21,0x11,
16691
+0x01,0x11,0x33,0x11,0x14,0x02,0x04,0x20,0x24,0x02,0x35,0x11,
16692
+0x33,0x11,0x14,0x1e,0x01,0x20,0x3e,0x01,0x03,0x0a,0xfe,0xd4,
16693
+0x01,0x2c,0xa0,0x01,0x2c,0xfe,0xd4,0x01,0x92,0xa0,0xac,0xfe,
16694
+0xd8,0xfe,0xa4,0xfe,0xd8,0xac,0xa0,0x82,0xde,0x01,0x04,0xde,
16695
+0x82,0x01,0x06,0x01,0x2b,0xa2,0x01,0x2b,0xfe,0xd5,0xa2,0xfe,
16696
+0xd5,0x01,0x63,0x02,0x82,0xfd,0x7e,0xae,0xfe,0xd8,0xac,0xac,
16697
+0x01,0x28,0xae,0x02,0x82,0xfd,0x7e,0x82,0xde,0x82,0x82,0xde,
16698
+0x00,0x01,0x00,0xd9,0x00,0x00,0x05,0xec,0x05,0x04,0x00,0x07,
16699
+0x00,0x00,0x33,0x11,0x21,0x15,0x21,0x11,0x21,0x15,0xd9,0x05,
16700
+0x13,0xfb,0x8f,0x04,0x71,0x05,0x04,0xa0,0xfc,0x3c,0xa0,0x00,
16701
+0x00,0x01,0x00,0xd9,0x00,0x00,0x05,0xec,0x05,0x04,0x00,0x07,
16702
+0x00,0x00,0x01,0x11,0x21,0x35,0x21,0x11,0x21,0x35,0x05,0xec,
16703
+0xfa,0xed,0x04,0x71,0xfb,0x8f,0x05,0x04,0xfa,0xfc,0xa0,0x03,
16704
+0xc4,0xa0,0x00,0x00,0x00,0x02,0x00,0xd9,0xff,0x6a,0x05,0xec,
16705
+0x05,0x9a,0x00,0x03,0x00,0x0b,0x00,0x00,0x37,0x21,0x15,0x21,
16706
+0x19,0x01,0x21,0x15,0x21,0x11,0x21,0x15,0xd9,0x05,0x02,0xfa,
16707
+0xfe,0x05,0x13,0xfb,0x8f,0x04,0x71,0x0c,0xa2,0x01,0x2c,0x05,
16708
+0x04,0xa0,0xfc,0x3c,0xa0,0x00,0x00,0x00,0x00,0x02,0x00,0xd9,
16709
+0xff,0x6a,0x05,0xec,0x05,0x9a,0x00,0x03,0x00,0x0b,0x00,0x00,
16710
+0x37,0x21,0x15,0x21,0x01,0x11,0x21,0x35,0x21,0x11,0x21,0x35,
16711
+0xd9,0x05,0x02,0xfa,0xfe,0x05,0x13,0xfa,0xed,0x04,0x71,0xfb,
16712
+0x8f,0x0c,0xa2,0x06,0x30,0xfa,0xfc,0xa0,0x03,0xc4,0xa0,0x00,
16713
+0x00,0x01,0x00,0xd8,0x00,0x00,0x05,0xdc,0x05,0x14,0x00,0x07,
16714
+0x00,0x00,0x13,0x21,0x11,0x23,0x11,0x21,0x11,0x23,0xd8,0x05,
16715
+0x04,0xa0,0xfc,0x3c,0xa0,0x05,0x14,0xfa,0xec,0x04,0x72,0xfb,
16716
+0x8e,0x00,0x00,0x00,0x00,0x01,0x00,0xd8,0x00,0x00,0x05,0xdc,
16717
+0x05,0x14,0x00,0x07,0x00,0x00,0x29,0x01,0x11,0x33,0x11,0x21,
16718
+0x11,0x33,0x05,0xdc,0xfa,0xfc,0xa0,0x03,0xc4,0xa0,0x05,0x14,
16719
+0xfb,0x8e,0x04,0x72,0x00,0x05,0x00,0xd8,0x00,0x00,0x05,0xdc,
16720
+0x05,0x04,0x00,0x0b,0x00,0x13,0x00,0x1b,0x00,0x23,0x00,0x2b,
16721
+0x00,0x00,0x12,0x10,0x12,0x24,0x20,0x04,0x12,0x10,0x02,0x04,
16722
+0x20,0x24,0x03,0x21,0x11,0x06,0x07,0x06,0x07,0x06,0x01,0x11,
16723
+0x21,0x26,0x27,0x26,0x27,0x26,0x01,0x21,0x11,0x36,0x37,0x36,
16724
+0x37,0x36,0x01,0x11,0x21,0x16,0x17,0x16,0x17,0x16,0xd8,0xac,
16725
+0x01,0x28,0x01,0x5c,0x01,0x28,0xac,0xac,0xfe,0xd8,0xfe,0xa4,
16726
+0xfe,0xd8,0x05,0x01,0x8b,0x55,0x4c,0x6f,0x41,0x2c,0x02,0x1d,
16727
+0x01,0x8b,0x0e,0x2c,0x41,0x6f,0x4c,0x01,0x36,0xfe,0x75,0x55,
16728
+0x4c,0x6f,0x41,0x2c,0xfd,0xe3,0xfe,0x75,0x0e,0x2c,0x41,0x6f,
16729
+0x4c,0x01,0xd4,0x01,0x5c,0x01,0x28,0xac,0xac,0xfe,0xd8,0xfe,
16730
+0xa4,0xfe,0xd8,0xac,0xac,0x02,0x27,0x01,0x8b,0x0e,0x2d,0x41,
16731
+0x6f,0x4c,0x01,0x37,0xfe,0x75,0x54,0x4c,0x6f,0x41,0x2d,0xfd,
16732
+0xe1,0xfe,0x75,0x0e,0x2d,0x41,0x6f,0x4c,0xfe,0xc9,0x01,0x8b,
16733
+0x54,0x4c,0x6f,0x41,0x2d,0x00,0x00,0x00,0x00,0x03,0x00,0xd8,
16734
+0x00,0x00,0x05,0xdc,0x05,0x04,0x00,0x0b,0x00,0x15,0x00,0x1f,
16735
+0x00,0x00,0x12,0x10,0x12,0x24,0x20,0x04,0x12,0x10,0x02,0x04,
16736
+0x20,0x24,0x01,0x21,0x16,0x17,0x1e,0x01,0x20,0x36,0x37,0x36,
16737
+0x25,0x21,0x26,0x27,0x2e,0x01,0x20,0x06,0x07,0x06,0xd8,0xac,
16738
+0x01,0x28,0x01,0x5c,0x01,0x28,0xac,0xac,0xfe,0xd8,0xfe,0xa4,
16739
+0xfe,0xd8,0x03,0xb1,0xfc,0x4a,0x0e,0x2c,0x41,0xde,0x01,0x04,
16740
+0xde,0x41,0x2c,0xfc,0x58,0x03,0xb6,0x0e,0x2c,0x41,0xde,0xfe,
16741
+0xfc,0xde,0x41,0x2c,0x01,0xd4,0x01,0x5c,0x01,0x28,0xac,0xac,
16742
+0xfe,0xd8,0xfe,0xa4,0xfe,0xd8,0xac,0xac,0x01,0x85,0x54,0x4c,
16743
+0x6f,0x82,0x82,0x6f,0x4c,0xf6,0x54,0x4c,0x6f,0x82,0x82,0x6f,
16744
+0x4c,0x00,0x00,0x00,0x00,0x05,0x00,0xd8,0x00,0x00,0x05,0xdc,
16745
+0x05,0x04,0x00,0x0b,0x00,0x14,0x00,0x1d,0x00,0x26,0x00,0x2f,
16746
+0x00,0x00,0x12,0x10,0x12,0x24,0x20,0x04,0x12,0x10,0x02,0x04,
16747
+0x20,0x24,0x02,0x10,0x17,0x16,0x17,0x09,0x01,0x06,0x07,0x37,
16748
+0x09,0x01,0x26,0x27,0x26,0x20,0x07,0x06,0x05,0x09,0x01,0x36,
16749
+0x37,0x36,0x10,0x27,0x26,0x03,0x09,0x01,0x16,0x17,0x16,0x20,
16750
+0x37,0x36,0xd8,0xac,0x01,0x28,0x01,0x5c,0x01,0x28,0xac,0xac,
16751
+0xfe,0xd8,0xfe,0xa4,0xfe,0xd8,0x0c,0x41,0x0c,0x0d,0x01,0x15,
16752
+0xfe,0xea,0x0d,0x0b,0x8a,0x01,0x17,0x01,0x17,0x12,0x14,0x6f,
16753
+0xfe,0xfc,0x6f,0x14,0x02,0x8e,0xfe,0xe8,0x01,0x17,0x0d,0x0c,
16754
+0x41,0x41,0x0b,0x7f,0xfe,0xe9,0xfe,0xe9,0x12,0x14,0x6f,0x01,
16755
+0x04,0x6f,0x14,0x01,0xd4,0x01,0x5c,0x01,0x28,0xac,0xac,0xfe,
16756
+0xd8,0xfe,0xa4,0xfe,0xd8,0xac,0xac,0x02,0x58,0xfe,0xfc,0x6f,
16757
+0x14,0x12,0x01,0x16,0x01,0x18,0x13,0x13,0x98,0xfe,0xe9,0x01,
16758
+0x17,0x0d,0x0b,0x41,0x41,0x0b,0x7f,0xfe,0xe8,0xfe,0xea,0x12,
16759
+0x14,0x6f,0x01,0x04,0x6f,0x14,0xfd,0x73,0x01,0x16,0xfe,0xea,
16760
+0x0d,0x0c,0x41,0x41,0x0c,0x00,0x00,0x00,0x00,0x03,0x00,0xd8,
16761
+0x00,0x00,0x05,0xdc,0x05,0x04,0x00,0x0b,0x00,0x16,0x00,0x21,
16762
+0x00,0x00,0x12,0x10,0x12,0x24,0x20,0x04,0x12,0x10,0x02,0x04,
16763
+0x20,0x24,0x02,0x10,0x17,0x16,0x17,0x01,0x26,0x27,0x26,0x20,
16764
+0x06,0x05,0x01,0x16,0x17,0x16,0x20,0x3e,0x01,0x10,0x27,0x26,
16765
+0xd8,0xac,0x01,0x28,0x01,0x5c,0x01,0x28,0xac,0xac,0xfe,0xd8,
16766
+0xfe,0xa4,0xfe,0xd8,0x0c,0x41,0x0b,0x0d,0x02,0x9f,0x12,0x13,
16767
+0x6f,0xfe,0xfc,0xde,0x02,0xe9,0xfd,0x61,0x12,0x13,0x6f,0x01,
16768
+0x04,0xde,0x82,0x41,0x0b,0x01,0xd4,0x01,0x5c,0x01,0x28,0xac,
16769
+0xac,0xfe,0xd8,0xfe,0xa4,0xfe,0xd8,0xac,0xac,0x02,0x58,0xfe,
16770
+0xfc,0x6f,0x13,0x12,0x02,0x9f,0x0d,0x0b,0x41,0x82,0x4a,0xfd,
16771
+0x61,0x0d,0x0b,0x41,0x82,0xde,0x01,0x04,0x6f,0x13,0x00,0x00,
16772
+0x00,0x03,0x00,0xd8,0x00,0x00,0x05,0xdc,0x05,0x04,0x00,0x0b,
16773
+0x00,0x17,0x00,0x23,0x00,0x00,0x01,0x34,0x36,0x33,0x32,0x16,
16774
+0x15,0x14,0x06,0x23,0x22,0x26,0x24,0x10,0x1e,0x01,0x20,0x3e,
16775
+0x01,0x10,0x2e,0x01,0x20,0x06,0x00,0x10,0x12,0x24,0x20,0x04,
16776
+0x12,0x10,0x02,0x04,0x20,0x24,0x02,0xd4,0x4d,0x39,0x37,0x4e,
16777
+0x4e,0x37,0x39,0x4d,0xfe,0xa4,0x82,0xde,0x01,0x04,0xde,0x82,
16778
+0x82,0xde,0xfe,0xfc,0xde,0xfe,0xde,0xac,0x01,0x28,0x01,0x5c,
16779
+0x01,0x28,0xac,0xac,0xfe,0xd8,0xfe,0xa4,0xfe,0xd8,0x02,0x82,
16780
+0x38,0x4d,0x4e,0x37,0x38,0x4d,0x4c,0xbb,0xfe,0xfc,0xde,0x82,
16781
+0x82,0xde,0x01,0x04,0xde,0x82,0x82,0xfd,0xf2,0x01,0x5c,0x01,
16782
+0x28,0xac,0xac,0xfe,0xd8,0xfe,0xa4,0xfe,0xd8,0xac,0xac,0x00,
16783
+0x00,0x04,0x00,0xd8,0x00,0x00,0x05,0xdc,0x05,0x04,0x00,0x08,
16784
+0x00,0x11,0x00,0x1d,0x00,0x29,0x00,0x00,0x00,0x26,0x22,0x06,
16785
+0x14,0x16,0x32,0x36,0x35,0x24,0x36,0x32,0x17,0x16,0x14,0x06,
16786
+0x22,0x2e,0x01,0x10,0x1e,0x01,0x20,0x3e,0x01,0x10,0x2e,0x01,
16787
+0x20,0x06,0x00,0x10,0x12,0x24,0x20,0x04,0x12,0x10,0x02,0x04,
16788
+0x20,0x24,0x03,0xec,0x56,0x7a,0x54,0x54,0x7c,0x54,0xfe,0x51,
16789
+0xa5,0xf3,0x4f,0x53,0xa6,0xf2,0xa2,0xc5,0x82,0xde,0x01,0x04,
16790
+0xde,0x82,0x82,0xde,0xfe,0xfc,0xde,0xfe,0xde,0xac,0x01,0x28,
16791
+0x01,0x5c,0x01,0x28,0xac,0xac,0xfe,0xd8,0xfe,0xa4,0xfe,0xd8,
16792
+0x02,0xbf,0x57,0x55,0x7c,0x53,0x54,0x3c,0x79,0xa7,0x55,0x51,
16793
+0xf1,0xa4,0xa2,0xfb,0xfe,0xfc,0xde,0x82,0x82,0xde,0x01,0x04,
16794
+0xde,0x82,0x82,0xfd,0xf2,0x01,0x5c,0x01,0x28,0xac,0xac,0xfe,
16795
+0xd8,0xfe,0xa4,0xfe,0xd8,0xac,0xac,0x00,0x00,0x03,0x00,0xd8,
16796
+0x00,0x00,0x05,0xdc,0x05,0x04,0x00,0x11,0x00,0x1d,0x00,0x29,
16797
+0x00,0x00,0x01,0x0d,0x01,0x07,0x25,0x13,0x23,0x13,0x05,0x27,
16798
+0x2d,0x01,0x37,0x05,0x03,0x33,0x03,0x25,0x04,0x10,0x1e,0x01,
16799
+0x20,0x3e,0x01,0x10,0x2e,0x01,0x20,0x06,0x00,0x10,0x12,0x24,
16800
+0x20,0x04,0x12,0x10,0x02,0x04,0x20,0x24,0x04,0xe9,0xfe,0xc9,
16801
+0x01,0x37,0x4c,0xfe,0xf4,0x0d,0x88,0x0d,0xfe,0xf4,0x4c,0x01,
16802
+0x37,0xfe,0xc9,0x4c,0x01,0x0c,0x0d,0x88,0x0d,0x01,0x0c,0xfc,
16803
+0xdb,0x82,0xde,0x01,0x04,0xde,0x82,0x82,0xde,0xfe,0xfc,0xde,
16804
+0xfe,0xde,0xac,0x01,0x28,0x01,0x5c,0x01,0x28,0xac,0xac,0xfe,
16805
+0xd8,0xfe,0xa4,0xfe,0xd8,0x03,0x06,0x84,0x87,0x76,0xa7,0xfe,
16806
+0xb5,0x01,0x4b,0xa7,0x76,0x85,0x86,0x77,0xa7,0x01,0x4b,0xfe,
16807
+0xb5,0xa7,0x79,0xfe,0xfc,0xde,0x82,0x82,0xde,0x01,0x04,0xde,
16808
+0x82,0x82,0xfd,0xf2,0x01,0x5c,0x01,0x28,0xac,0xac,0xfe,0xd8,
16809
+0xfe,0xa4,0xfe,0xd8,0xac,0xac,0x00,0x00,0x00,0x04,0x00,0xd8,
16810
+0x00,0x00,0x05,0xdc,0x05,0x04,0x00,0x03,0x00,0x07,0x00,0x13,
16811
+0x00,0x1f,0x00,0x00,0x01,0x21,0x15,0x21,0x15,0x21,0x15,0x21,
16812
+0x02,0x10,0x1e,0x01,0x20,0x3e,0x01,0x10,0x2e,0x01,0x20,0x06,
16813
+0x00,0x10,0x12,0x24,0x20,0x04,0x12,0x10,0x02,0x04,0x20,0x24,
16814
+0x02,0x05,0x02,0xaa,0xfd,0x56,0x02,0xaa,0xfd,0x56,0x8d,0x82,
16815
+0xde,0x01,0x04,0xde,0x82,0x82,0xde,0xfe,0xfc,0xde,0xfe,0xde,
16816
+0xac,0x01,0x28,0x01,0x5c,0x01,0x28,0xac,0xac,0xfe,0xd8,0xfe,
16817
+0xa4,0xfe,0xd8,0x03,0x6c,0xa0,0x94,0xa0,0x01,0x6c,0xfe,0xfc,
16818
+0xde,0x82,0x82,0xde,0x01,0x04,0xde,0x82,0x82,0xfd,0xf2,0x01,
16819
+0x5c,0x01,0x28,0xac,0xac,0xfe,0xd8,0xfe,0xa4,0xfe,0xd8,0xac,
16820
+0xac,0x00,0x00,0x00,0x00,0x03,0x00,0xd8,0x00,0x00,0x05,0xdc,
16821
+0x05,0x04,0x00,0x03,0x00,0x0f,0x00,0x1b,0x00,0x00,0x01,0x21,
16822
+0x15,0x21,0x26,0x10,0x1e,0x01,0x20,0x3e,0x01,0x10,0x2e,0x01,
16823
+0x20,0x06,0x00,0x10,0x12,0x24,0x20,0x04,0x12,0x10,0x02,0x04,
16824
+0x20,0x24,0x02,0x05,0x02,0xaa,0xfd,0x56,0x8d,0x82,0xde,0x01,
16825
+0x04,0xde,0x82,0x82,0xde,0xfe,0xfc,0xde,0xfe,0xde,0xac,0x01,
16826
+0x28,0x01,0x5c,0x01,0x28,0xac,0xac,0xfe,0xd8,0xfe,0xa4,0xfe,
16827
+0xd8,0x02,0xd3,0xa2,0xd3,0xfe,0xfc,0xde,0x82,0x82,0xde,0x01,
16828
+0x04,0xde,0x82,0x82,0xfd,0xf2,0x01,0x5c,0x01,0x28,0xac,0xac,
16829
+0xfe,0xd8,0xfe,0xa4,0xfe,0xd8,0xac,0xac,0x00,0x05,0x00,0xd8,
16830
+0x00,0x00,0x05,0xdc,0x05,0x04,0x00,0x03,0x00,0x07,0x00,0x0b,
16831
+0x00,0x0f,0x00,0x13,0x00,0x00,0x33,0x11,0x21,0x11,0x25,0x11,
16832
+0x21,0x11,0x29,0x01,0x11,0x21,0x03,0x21,0x11,0x21,0x13,0x11,
16833
+0x21,0x11,0xd8,0x05,0x04,0xfd,0x2e,0xfe,0x70,0x02,0x30,0x01,
16834
+0x90,0xfe,0x70,0xa0,0xfe,0x70,0x01,0x90,0xa0,0x01,0x90,0x05,
16835
+0x04,0xfa,0xfc,0xa2,0x01,0x8f,0xfe,0x71,0x01,0x8f,0x02,0x31,
16836
+0xfe,0x71,0x01,0x8f,0xfe,0x71,0x01,0x8f,0x00,0x03,0x00,0xd8,
16837
+0x00,0x00,0x05,0xdc,0x05,0x04,0x00,0x03,0x00,0x07,0x00,0x0b,
16838
+0x00,0x00,0x33,0x11,0x21,0x11,0x01,0x11,0x21,0x11,0x25,0x21,
16839
+0x11,0x21,0xd8,0x05,0x04,0xfb,0x9e,0x03,0xc0,0xfc,0x40,0x03,
16840
+0xc0,0xfc,0x40,0x05,0x04,0xfa,0xfc,0x02,0x31,0xfe,0x71,0x01,
16841
+0x8f,0xa2,0x01,0x8f,0x00,0x05,0x00,0xd8,0x00,0x00,0x05,0xdc,
16842
+0x05,0x04,0x00,0x03,0x00,0x06,0x00,0x09,0x00,0x0c,0x00,0x0f,
16843
+0x00,0x00,0x33,0x11,0x21,0x11,0x25,0x21,0x09,0x01,0x11,0x09,
16844
+0x01,0x21,0x09,0x01,0x11,0x01,0xd8,0x05,0x04,0xfc,0x0f,0x02,
16845
+0xde,0xfe,0x91,0xfe,0x20,0x01,0x6d,0x01,0xe1,0xfd,0x24,0x01,
16846
+0x6e,0x01,0xe0,0xfe,0x91,0x05,0x04,0xfa,0xfc,0xa2,0x01,0x6e,
16847
+0x01,0xe0,0xfd,0x23,0x01,0x6e,0x01,0xe1,0xfe,0x92,0xfe,0x20,
16848
+0x02,0xdc,0xfe,0x91,0x00,0x03,0x00,0xd8,0x00,0x00,0x05,0xdc,
16849
+0x05,0x04,0x00,0x03,0x00,0x0f,0x00,0x13,0x00,0x00,0x33,0x11,
16850
+0x21,0x11,0x01,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,
16851
+0x22,0x26,0x01,0x11,0x21,0x11,0xd8,0x05,0x04,0xfc,0xf8,0x4d,
16852
+0x39,0x37,0x4e,0x4e,0x37,0x39,0x4d,0x02,0x66,0xfc,0x40,0x05,
16853
+0x04,0xfa,0xfc,0x02,0x82,0x38,0x4d,0x4e,0x37,0x38,0x4d,0x4c,
16854
+0xfe,0x59,0x03,0xc0,0xfc,0x40,0x00,0x00,0x00,0x01,0x00,0xd9,
16855
+0x00,0x00,0x06,0x08,0x05,0xd5,0x00,0x07,0x00,0x00,0x13,0x33,
16856
+0x11,0x21,0x15,0x21,0x11,0x23,0xd9,0xa2,0x04,0x8d,0xfb,0x73,
16857
+0xa2,0x05,0xd5,0xfd,0x67,0xa2,0xfd,0x66,0x00,0x01,0x00,0xd9,
16858
+0x00,0x00,0x06,0x08,0x05,0xd5,0x00,0x07,0x00,0x00,0x01,0x11,
16859
+0x23,0x11,0x21,0x35,0x21,0x11,0x06,0x08,0xa2,0xfb,0x73,0x04,
16860
+0x8d,0x05,0xd5,0xfa,0x2b,0x02,0x9a,0xa2,0x02,0x99,0x00,0x00,
16861
+0x00,0x01,0x00,0xd9,0x00,0x00,0x06,0xad,0x05,0x82,0x00,0x07,
16862
+0x00,0x00,0x13,0x21,0x15,0x21,0x11,0x23,0x11,0x21,0xd9,0x05,
16863
+0xd4,0xfd,0x67,0xa2,0xfd,0x67,0x05,0x82,0xa2,0xfb,0x20,0x04,
16864
+0xe0,0x00,0x00,0x00,0x00,0x01,0x00,0xd9,0x00,0x00,0x06,0xad,
16865
+0x05,0x82,0x00,0x07,0x00,0x00,0x33,0x35,0x21,0x11,0x33,0x11,
16866
+0x21,0x15,0xd9,0x02,0x99,0xa2,0x02,0x99,0xa2,0x04,0xe0,0xfb,
16867
+0x20,0xa2,0x00,0x00,0x00,0x01,0x00,0xd9,0x00,0x00,0x03,0xb0,
16868
+0x05,0xd5,0x00,0x07,0x00,0x00,0x13,0x33,0x11,0x21,0x15,0x21,
16869
+0x11,0x23,0xd9,0xa2,0x02,0x35,0xfd,0xcb,0xa2,0x05,0xd5,0xfd,
16870
+0x67,0xa2,0xfd,0x66,0x00,0x01,0x00,0xd9,0x00,0x00,0x03,0xb0,
16871
+0x05,0xd5,0x00,0x0b,0x00,0x00,0x13,0x33,0x11,0x21,0x15,0x21,
16872
+0x15,0x21,0x15,0x21,0x11,0x23,0xd9,0xa2,0x02,0x35,0xfd,0xcb,
16873
+0x02,0x35,0xfd,0xcb,0xa2,0x05,0xd5,0xfe,0x2f,0xa2,0xee,0xa2,
16874
+0xfe,0x2e,0x00,0x00,0x00,0x01,0x00,0xd9,0x00,0x00,0x06,0x08,
16875
+0x05,0xd5,0x00,0x0b,0x00,0x00,0x13,0x33,0x11,0x21,0x15,0x21,
16876
+0x15,0x21,0x15,0x21,0x11,0x23,0xd9,0xa2,0x04,0x8d,0xfb,0x73,
16877
+0x04,0x8d,0xfb,0x73,0xa2,0x05,0xd5,0xfe,0x16,0xa2,0xbc,0xa2,
16878
+0xfe,0x15,0x00,0x00,0x00,0x02,0x00,0xd9,0x00,0x00,0x06,0x08,
16879
+0x05,0xd5,0x00,0x03,0x00,0x0b,0x00,0x00,0x01,0x11,0x23,0x11,
16880
+0x21,0x33,0x11,0x21,0x15,0x21,0x11,0x23,0x01,0x7b,0xa2,0x01,
16881
+0x5e,0xa2,0x03,0x2f,0xfc,0xd1,0xa2,0x05,0xd5,0xfa,0x2b,0x05,
16882
+0xd5,0xfd,0x67,0xa2,0xfd,0x66,0x00,0x00,0x00,0x03,0x00,0xd9,
16883
+0x00,0x00,0x06,0x08,0x05,0xd5,0x00,0x03,0x00,0x07,0x00,0x0f,
16884
+0x00,0x00,0x01,0x11,0x23,0x11,0x21,0x11,0x23,0x11,0x21,0x33,
16885
+0x11,0x21,0x15,0x21,0x11,0x23,0x01,0x7b,0xa2,0x02,0x00,0xa2,
16886
+0x01,0x5e,0xa2,0x01,0xd1,0xfe,0x2f,0xa2,0x05,0xd5,0xfa,0x2b,
16887
+0x05,0xd5,0xfa,0x2b,0x05,0xd5,0xfd,0x67,0xa2,0xfd,0x66,0x00,
16888
+0x00,0x02,0x00,0xd9,0x00,0x00,0x07,0x66,0x05,0xd5,0x00,0x0b,
16889
+0x00,0x0f,0x00,0x00,0x01,0x33,0x11,0x21,0x15,0x21,0x15,0x21,
16890
+0x15,0x21,0x11,0x23,0x03,0x11,0x23,0x11,0x02,0x37,0xa2,0x04,
16891
+0x8d,0xfb,0x73,0x04,0x8d,0xfb,0x73,0xa2,0xbc,0xa2,0x05,0xd5,
16892
+0xfe,0x16,0xa2,0xbc,0xa2,0xfe,0x15,0x05,0xd5,0xfa,0x2b,0x05,
16893
+0xd5,0x00,0x00,0x00,0x00,0x01,0x00,0xd9,0xff,0x14,0x06,0x08,
16894
+0x06,0xc1,0x00,0x0f,0x00,0x00,0x13,0x33,0x11,0x21,0x01,0x17,
16895
+0x01,0x21,0x15,0x21,0x01,0x27,0x01,0x21,0x11,0x23,0xd9,0xa2,
16896
+0x01,0xeb,0x01,0xa4,0x93,0xfe,0x7b,0x01,0xf0,0xfd,0xc5,0xfe,
16897
+0x5b,0x93,0x01,0x85,0xfe,0x61,0xa2,0x05,0xd5,0xfd,0x67,0x03,
16898
+0x85,0x44,0xfc,0xbf,0xa2,0xfc,0x7a,0x44,0x03,0x42,0xfd,0x66,
16899
+0x00,0x02,0x00,0xd9,0xff,0x14,0x06,0x08,0x06,0xc1,0x00,0x13,
16900
+0x00,0x17,0x00,0x00,0x13,0x33,0x11,0x21,0x01,0x17,0x01,0x21,
16901
+0x15,0x21,0x07,0x21,0x15,0x21,0x01,0x27,0x01,0x21,0x11,0x23,
16902
+0x01,0x37,0x21,0x15,0xd9,0xa2,0x02,0x3c,0x01,0x53,0x93,0xfe,
16903
+0xcd,0x01,0x9e,0xfe,0x16,0x57,0x02,0x41,0xfd,0x73,0xfe,0xad,
16904
+0x93,0x01,0x33,0xfe,0xb3,0xa2,0x02,0x3b,0x58,0xfe,0x0f,0x05,
16905
+0xd5,0xfe,0x16,0x02,0xd6,0x44,0xfd,0x6e,0xa2,0xbc,0xa2,0xfd,
16906
+0x29,0x44,0x02,0x93,0xfe,0x15,0x02,0x8d,0xbc,0xbc,0x00,0x00,
16907
+0x00,0x03,0x00,0xd9,0xff,0x14,0x06,0x08,0x06,0xc1,0x00,0x03,
16908
+0x00,0x13,0x00,0x16,0x00,0x00,0x01,0x11,0x23,0x11,0x21,0x33,
16909
+0x11,0x33,0x01,0x17,0x01,0x21,0x15,0x21,0x03,0x15,0x23,0x07,
16910
+0x27,0x1b,0x01,0x37,0x23,0x01,0x7b,0xa2,0x01,0x5e,0xa2,0x8d,
16911
+0x01,0xa4,0x93,0xfe,0x7b,0x01,0xf0,0xfd,0xc5,0xf4,0x43,0x6e,
16912
+0x93,0xa2,0xa2,0x41,0x41,0x05,0xd5,0xfa,0x2b,0x05,0xd5,0xfd,
16913
+0x67,0x03,0x85,0x44,0xfc,0xbf,0xa2,0xfd,0xf5,0x8f,0xec,0x44,
16914
+0x01,0x5b,0x01,0x5b,0x8c,0x00,0x00,0x00,0x00,0x04,0x00,0xd9,
16915
+0xff,0x14,0x07,0x66,0x06,0xc1,0x00,0x03,0x00,0x15,0x00,0x18,
16916
+0x00,0x1c,0x00,0x00,0x01,0x11,0x23,0x11,0x21,0x33,0x11,0x21,
16917
+0x01,0x17,0x01,0x21,0x15,0x21,0x07,0x21,0x15,0x21,0x01,0x27,
16918
+0x37,0x23,0x37,0x13,0x23,0x25,0x37,0x21,0x15,0x01,0x7b,0xa2,
16919
+0x01,0x5e,0xa2,0x01,0xa6,0x01,0x53,0x93,0xfe,0xcd,0x02,0x34,
16920
+0xfd,0x80,0x57,0x02,0xd7,0xfc,0xdd,0xfe,0xad,0x93,0x4e,0x74,
16921
+0xa2,0xb7,0xb7,0x01,0x03,0x58,0xfe,0xa5,0x05,0xd5,0xfa,0x2b,
16922
+0x05,0xd5,0xfe,0x16,0x02,0xd6,0x44,0xfd,0x6e,0xa2,0xbc,0xa2,
16923
+0xfd,0x29,0x44,0xa8,0x62,0x01,0x89,0xa2,0xbc,0xbc,0x00,0x00,
16924
+0x00,0x02,0x00,0x82,0x00,0x82,0x04,0x80,0x04,0x80,0x00,0x03,
16925
+0x00,0x07,0x00,0x00,0x09,0x07,0x01,0x72,0x01,0x10,0x01,0x0e,
16926
+0xfe,0xf0,0xfe,0x02,0x01,0xfe,0x02,0x00,0xfe,0x02,0x02,0x82,
16927
+0xfe,0xf0,0x01,0x0e,0x01,0x10,0xfe,0xf2,0x01,0xfe,0xfe,0x00,
16928
+0xfe,0x02,0x00,0x00,0x00,0x01,0x00,0xd9,0x02,0x42,0x01,0xe4,
16929
+0x03,0x4c,0x00,0x0b,0x00,0x12,0xb7,0x09,0x61,0x03,0x0c,0x06,
16930
+0x00,0x00,0x0c,0x10,0xd4,0xec,0x31,0x00,0x10,0xd4,0xec,0x30,
16931
+0x13,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,
16932
+0xd9,0x4d,0x39,0x37,0x4e,0x4e,0x37,0x39,0x4d,0x02,0xc7,0x38,
16933
+0x4d,0x4e,0x37,0x38,0x4d,0x4c,0x00,0x00,0x00,0x02,0x00,0x92,
16934
+0x00,0x00,0x05,0x8a,0x04,0xc4,0x00,0x04,0x00,0x09,0x00,0x00,
16935
+0x33,0x11,0x09,0x01,0x11,0x25,0x21,0x11,0x09,0x01,0x92,0x02,
16936
+0x7c,0x02,0x7c,0xfb,0xa8,0x03,0xb8,0xfe,0x24,0xfe,0x24,0x02,
16937
+0xa0,0x02,0x24,0xfd,0xdc,0xfd,0x60,0xa2,0x01,0xdd,0x01,0x96,
16938
+0xfe,0x6a,0x00,0x00,0x00,0x01,0x00,0xb0,0xfe,0xf2,0x02,0x81,
16939
+0x06,0x14,0x00,0x05,0x00,0x00,0x13,0x21,0x15,0x21,0x11,0x23,
16940
+0xb0,0x01,0xd1,0xfe,0xee,0xbf,0x06,0x14,0x6a,0xf9,0x48,0x00,
16941
+0x00,0x01,0x00,0x9e,0xfe,0xf2,0x02,0x6f,0x06,0x14,0x00,0x05,
16942
+0x00,0x00,0x01,0x11,0x23,0x11,0x21,0x35,0x02,0x6f,0xbf,0xfe,
16943
+0xee,0x06,0x14,0xf8,0xde,0x06,0xb8,0x6a,0x00,0x01,0x00,0xb0,
16944
+0xfe,0xf2,0x02,0x81,0x06,0x14,0x00,0x05,0x00,0x00,0x13,0x11,
16945
+0x33,0x11,0x21,0x15,0xb0,0xbf,0x01,0x12,0xfe,0xf2,0x07,0x22,
16946
+0xf9,0x48,0x6a,0x00,0x00,0x01,0x00,0x9e,0xfe,0xf2,0x02,0x6f,
16947
+0x06,0x14,0x00,0x05,0x00,0x00,0x01,0x21,0x35,0x21,0x11,0x33,
16948
+0x02,0x6f,0xfe,0x2f,0x01,0x12,0xbf,0xfe,0xf2,0x6a,0x06,0xb8,
16949
+0x00,0x01,0x00,0xd9,0x01,0x1f,0x05,0xdb,0x03,0x5e,0x00,0x05,
16950
+0x00,0x00,0x01,0x15,0x21,0x11,0x23,0x11,0x05,0xdb,0xfb,0x9e,
16951
+0xa0,0x03,0x5e,0xa2,0xfe,0x63,0x02,0x3f,0x00,0x02,0x00,0x06,
16952
+0x01,0x02,0x04,0x15,0x05,0x12,0x00,0x07,0x00,0x0f,0x00,0x00,
16953
+0x13,0x24,0x05,0x02,0x13,0x04,0x25,0x12,0x01,0x12,0x03,0x04,
16954
+0x25,0x02,0x13,0x24,0x8c,0x01,0x81,0x01,0x81,0x89,0x89,0xfe,
16955
+0x7f,0xfe,0x7f,0x89,0xfe,0xf1,0xb8,0xb8,0x02,0x07,0x02,0x08,
16956
+0xb8,0xb8,0xfd,0xf8,0x01,0x8a,0x89,0x89,0x01,0x80,0x01,0x82,
16957
+0x8a,0x8a,0xfe,0x7e,0xfd,0xf8,0x01,0xf4,0x02,0x1c,0xb1,0xb1,
16958
+0xfe,0x0c,0xfd,0xe5,0xb1,0x00,0x00,0x00,0x00,0x06,0x00,0xf7,
16959
+0x00,0x01,0x07,0x09,0x06,0x13,0x00,0x03,0x00,0x31,0x00,0x3b,
16960
+0x00,0x46,0x00,0x4f,0x00,0x59,0x00,0x00,0x01,0x21,0x11,0x21,
16961
+0x11,0x15,0x14,0x06,0x20,0x26,0x35,0x34,0x36,0x3b,0x01,0x11,
16962
+0x23,0x22,0x26,0x35,0x34,0x36,0x20,0x16,0x1d,0x01,0x21,0x35,
16963
+0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x2b,0x01,0x11,0x33,
16964
+0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x3d,0x01,0x01,0x35,
16965
+0x34,0x26,0x23,0x22,0x06,0x14,0x16,0x33,0x13,0x23,0x22,0x06,
16966
+0x15,0x14,0x16,0x33,0x32,0x36,0x35,0x01,0x33,0x32,0x36,0x34,
16967
+0x26,0x22,0x06,0x15,0x11,0x15,0x14,0x16,0x32,0x36,0x35,0x34,
16968
+0x26,0x23,0x03,0x6c,0x01,0x28,0xfe,0xd8,0xb9,0xfe,0xfc,0xb8,
16969
+0xb8,0x7f,0xaa,0xaa,0x7f,0xb8,0xb8,0x01,0x04,0xb9,0x01,0x28,
16970
+0xb9,0x82,0x83,0xb7,0xb7,0x80,0xaa,0xaa,0x80,0xb7,0xb7,0x83,
16971
+0x82,0xb9,0xfe,0x44,0x62,0x45,0x44,0x62,0x62,0x45,0xa6,0xa6,
16972
+0x45,0x62,0x62,0x45,0x44,0x62,0x02,0x50,0xa7,0x44,0x62,0x61,
16973
+0x8a,0x62,0x62,0x8a,0x61,0x62,0x44,0x02,0x76,0x01,0x28,0xfe,
16974
+0x44,0xaa,0x80,0xb7,0xb8,0x83,0x80,0xba,0x01,0x28,0xba,0x81,
16975
+0x82,0xb8,0xb7,0x80,0xaa,0xaa,0x80,0xb7,0xb8,0x82,0x81,0xba,
16976
+0xfe,0xd8,0xba,0x80,0x83,0xb8,0xb7,0x80,0xaa,0x02,0x50,0xa7,
16977
+0x45,0x61,0x61,0x8a,0x62,0xfd,0xb0,0x62,0x44,0x45,0x62,0x62,
16978
+0x44,0x02,0xf7,0x62,0x8a,0x61,0x61,0x45,0xfd,0x09,0xa7,0x44,
16979
+0x62,0x62,0x45,0x44,0x62,0x00,0x00,0x00,0x00,0x01,0x00,0xd9,
16980
+0x01,0x1f,0x05,0xdb,0x03,0x5e,0x00,0x05,0x00,0x00,0x01,0x21,
16981
+0x11,0x33,0x11,0x21,0x05,0xdb,0xfa,0xfe,0xa0,0x04,0x62,0x01,
16982
+0x1f,0x02,0x3f,0xfe,0x63,0x00,0x00,0x00,0x00,0x01,0x01,0xaf,
16983
+0xfe,0x00,0x03,0xfa,0x07,0x6c,0x00,0x19,0x00,0x00,0x01,0x11,
16984
+0x34,0x37,0x1a,0x01,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,
16985
+0x27,0x26,0x27,0x2e,0x01,0x23,0x22,0x03,0x02,0x15,0x30,0x11,
16986
+0x01,0xaf,0x03,0x0c,0xbe,0xca,0x50,0x64,0x40,0x37,0x2b,0x1c,
16987
+0x18,0x0f,0x06,0x09,0x10,0x68,0x11,0x08,0xfe,0x00,0x05,0x08,
16988
+0x24,0x81,0x02,0x03,0x01,0xbc,0x54,0x41,0x36,0x3f,0x13,0x10,
16989
+0x26,0x0f,0x48,0xfd,0x95,0xfe,0xd3,0x02,0xfa,0x98,0x00,0x00,
16990
+0x00,0x01,0x00,0x2a,0xfe,0x1a,0x02,0x75,0x07,0x89,0x00,0x19,
16991
+0x00,0x00,0x01,0x11,0x14,0x07,0x0a,0x01,0x23,0x22,0x26,0x35,
16992
+0x34,0x36,0x33,0x32,0x17,0x16,0x17,0x1e,0x01,0x33,0x32,0x13,
16993
+0x12,0x35,0x30,0x11,0x02,0x75,0x03,0x0c,0xbe,0xca,0x50,0x64,
16994
+0x40,0x37,0x2b,0x1c,0x18,0x0f,0x06,0x09,0x10,0x68,0x11,0x08,
16995
+0x07,0x89,0xfa,0xf5,0x24,0x81,0xfd,0xfd,0xfe,0x44,0x54,0x41,
16996
+0x36,0x3f,0x13,0x10,0x26,0x0f,0x48,0x02,0x6b,0x01,0x2d,0x02,
16997
+0x05,0x6b,0x00,0x00,0x00,0x02,0x00,0xac,0x00,0x00,0x07,0x54,
16998
+0x05,0xc8,0x00,0x07,0x00,0x0b,0x00,0x00,0x13,0x21,0x01,0x21,
16999
+0x15,0x21,0x01,0x21,0x25,0x21,0x15,0x21,0xac,0x02,0x42,0x02,
17000
+0x9a,0x01,0xcc,0xfd,0xbc,0xfd,0x66,0xfe,0x36,0x03,0xf4,0x02,
17001
+0xb4,0xfd,0x4c,0x05,0xc8,0xfa,0xcc,0x94,0x05,0x34,0x94,0x94,
17002
+0x00,0x2b,0x00,0x78,0x00,0x00,0x0b,0x14,0x05,0xd5,0x00,0x0b,
17003
+0x00,0x17,0x00,0x23,0x00,0x2f,0x00,0x3b,0x00,0x47,0x00,0x53,
17004
+0x00,0x5f,0x00,0x6b,0x00,0x77,0x00,0x83,0x00,0x8f,0x00,0x9b,
17005
+0x00,0xa7,0x00,0xb3,0x00,0xbf,0x00,0xcb,0x00,0xd7,0x00,0xe3,
17006
+0x00,0xef,0x00,0xfb,0x01,0x07,0x01,0x13,0x01,0x1f,0x01,0x2b,
17007
+0x01,0x37,0x01,0x43,0x01,0x4f,0x01,0x5b,0x01,0x67,0x01,0x73,
17008
+0x01,0x7f,0x01,0x8b,0x01,0x97,0x01,0xa3,0x01,0xaf,0x01,0xbb,
17009
+0x01,0xc7,0x01,0xd3,0x01,0xe4,0x01,0xf0,0x01,0xfc,0x02,0x08,
17010
+0x00,0x00,0x01,0x21,0x32,0x15,0x11,0x14,0x23,0x21,0x22,0x35,
17011
+0x11,0x34,0x17,0x11,0x14,0x33,0x21,0x32,0x35,0x11,0x34,0x23,
17012
+0x21,0x22,0x01,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17013
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17014
+0x01,0x32,0x25,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17015
+0x01,0x32,0x05,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17016
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17017
+0x01,0x32,0x05,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17018
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17019
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17020
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17021
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17022
+0x01,0x32,0x05,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17023
+0x01,0x32,0x25,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17024
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17025
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17026
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17027
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17028
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17029
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17030
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17031
+0x01,0x32,0x27,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17032
+0x01,0x32,0x07,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17033
+0x01,0x32,0x07,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17034
+0x01,0x32,0x07,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17035
+0x01,0x32,0x07,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17036
+0x01,0x32,0x07,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17037
+0x01,0x32,0x07,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17038
+0x01,0x32,0x07,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17039
+0x01,0x32,0x27,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17040
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17041
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17042
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17043
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17044
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17045
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17046
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17047
+0x01,0x32,0x17,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17048
+0x01,0x32,0x05,0x15,0x14,0x2b,0x01,0x22,0x3d,0x01,0x34,0x3b,
17049
+0x01,0x32,0x07,0x32,0x15,0x11,0x14,0x2b,0x01,0x22,0x3d,0x01,
17050
+0x34,0x23,0x22,0x3d,0x01,0x34,0x33,0x13,0x15,0x14,0x2b,0x01,
17051
+0x22,0x3d,0x01,0x34,0x3b,0x01,0x32,0x17,0x15,0x14,0x2b,0x01,
17052
+0x22,0x3d,0x01,0x34,0x3b,0x01,0x32,0x05,0x22,0x3d,0x01,0x34,
17053
+0x33,0x21,0x32,0x1d,0x01,0x14,0x23,0x01,0x55,0x08,0xe2,0xdd,
17054
+0xdd,0xf7,0x1e,0xdd,0x93,0x4a,0x08,0xe2,0x49,0x49,0xf7,0x1e,
17055
+0x4a,0x01,0x03,0x25,0x4a,0x25,0x25,0x4a,0x25,0xdf,0x25,0x4b,
17056
+0x24,0x24,0x4b,0x25,0x01,0x4a,0x25,0x4a,0x25,0x25,0x4a,0x25,
17057
+0xfe,0x46,0x25,0x4a,0x25,0x25,0x4a,0x25,0xdd,0x25,0x4a,0x25,
17058
+0x25,0x4a,0x25,0x01,0xb9,0x25,0x4a,0x25,0x25,0x4a,0x25,0xdd,
17059
+0x25,0x4a,0x25,0x25,0x4a,0x25,0xdd,0x25,0x4a,0x25,0x25,0x4a,
17060
+0x25,0xdd,0x25,0x4a,0x25,0x25,0x4a,0x25,0xdd,0x25,0x4a,0x25,
17061
+0x25,0x4a,0x25,0x01,0x8e,0x25,0xfb,0x25,0x25,0xfb,0x25,0xf8,
17062
+0x43,0x25,0x4a,0x25,0x25,0x4a,0x25,0xdd,0x25,0x4a,0x25,0x25,
17063
+0x4a,0x25,0xdd,0x25,0x4a,0x25,0x25,0x4a,0x25,0xdc,0x25,0x4a,
17064
+0x25,0x25,0x4a,0x25,0xdd,0x25,0x4a,0x25,0x25,0x4a,0x25,0xdd,
17065
+0x25,0x4a,0x25,0x25,0x4a,0x25,0xdd,0x25,0x4a,0x25,0x25,0x4a,
17066
+0x25,0xdd,0x25,0x4a,0x25,0x25,0x4a,0x25,0x24,0x25,0x4a,0x25,
17067
+0x25,0x4a,0x25,0xdd,0x25,0x4a,0x25,0x25,0x4a,0x25,0xdd,0x25,
17068
+0x4a,0x25,0x25,0x4a,0x25,0xdd,0x25,0x4a,0x25,0x25,0x4a,0x25,
17069
+0xdc,0x25,0x4a,0x25,0x25,0x4a,0x25,0xdd,0x25,0x4a,0x25,0x25,
17070
+0x4a,0x25,0xdd,0x25,0x4a,0x25,0x25,0x4a,0x25,0xdd,0x25,0x4a,
17071
+0x25,0x25,0x4a,0x25,0x24,0x25,0x4a,0x25,0x25,0x4a,0x25,0xdd,
17072
+0x25,0x4a,0x25,0x25,0x4a,0x25,0xdd,0x25,0x4a,0x25,0x25,0x4a,
17073
+0x25,0xdd,0x25,0x4a,0x25,0x25,0x4a,0x25,0xdc,0x25,0x4a,0x25,
17074
+0x25,0x4a,0x25,0xdd,0x25,0x4a,0x25,0x25,0x4a,0x25,0xdd,0x25,
17075
+0x4a,0x25,0x25,0x4a,0x25,0xdd,0x25,0x4a,0x25,0x25,0x4a,0x25,
17076
+0xdd,0x25,0x4a,0x25,0x25,0x4a,0x25,0x01,0x1e,0x25,0x8b,0x25,
17077
+0x25,0x8b,0x25,0x25,0x25,0x25,0xf6,0x2a,0x24,0x25,0x25,0x94,
17078
+0x25,0x4a,0x25,0x25,0x4a,0x25,0xdf,0x25,0x4b,0x24,0x24,0x4b,
17079
+0x25,0xf9,0xa5,0x25,0x25,0x04,0x04,0x25,0x25,0x05,0xd5,0xdd,
17080
+0xfb,0xe5,0xdd,0xdd,0x04,0x1b,0xdd,0xdd,0xfb,0xe5,0x4a,0x4a,
17081
+0x04,0x1b,0x4a,0xfc,0x1c,0x49,0x25,0x25,0x49,0x26,0x25,0x4a,
17082
+0x25,0x25,0x4a,0x25,0xb7,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,
17083
+0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,
17084
+0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,
17085
+0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,
17086
+0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0xb7,0x4a,
17087
+0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,
17088
+0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,
17089
+0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,
17090
+0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0xb7,0x4a,
17091
+0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,
17092
+0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,
17093
+0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,
17094
+0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0xb4,0x4a,
17095
+0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,
17096
+0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,
17097
+0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,
17098
+0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,
17099
+0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0xdb,0x25,
17100
+0xfe,0xde,0x25,0x25,0x95,0x20,0x25,0x49,0x25,0xfd,0x48,0x4a,
17101
+0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x25,0x4a,0x25,0x94,0x25,
17102
+0x4a,0x25,0x25,0x4a,0x25,0x00,0x00,0x00,0x00,0x01,0x00,0x1a,
17103
+0xfe,0x2e,0x07,0x40,0x00,0xce,0x00,0x0b,0x00,0x00,0x37,0x21,
17104
+0x11,0x21,0x11,0x21,0x15,0x21,0x11,0x21,0x11,0x21,0x1a,0x01,
17105
+0xb7,0x03,0xb8,0x01,0xb7,0xfe,0xe9,0xfb,0x08,0xfe,0xe9,0xce,
17106
+0xfe,0x02,0x01,0xfe,0xa2,0xfe,0x02,0x01,0xfe,0x00,0x00,0x00,
17107
+0x00,0x01,0x00,0xb0,0xfd,0xfc,0x03,0x50,0x07,0x92,0x00,0x0b,
17108
+0x00,0x00,0x01,0x23,0x35,0x10,0x13,0x12,0x13,0x33,0x00,0x03,
17109
+0x02,0x11,0x01,0x73,0xc3,0xa0,0xba,0xa6,0xa0,0xfe,0xfc,0x5a,
17110
+0x7f,0xfd,0xfc,0xea,0x03,0x97,0x01,0xe2,0x02,0x30,0x01,0x03,
17111
+0xfd,0xf3,0xfe,0x86,0xfd,0xee,0xfc,0xed,0x00,0x01,0x00,0xb0,
17112
+0xfd,0xfc,0x01,0x73,0x07,0x89,0x00,0x03,0x00,0x00,0x13,0x33,
17113
+0x11,0x23,0xb0,0xc3,0xc3,0x07,0x89,0xf6,0x73,0x00,0x00,0x00,
17114
+0x00,0x01,0x00,0xb0,0xfe,0x14,0x03,0x50,0x07,0x89,0x00,0x0b,
17115
+0x00,0x00,0x01,0x15,0x10,0x13,0x12,0x13,0x23,0x02,0x03,0x02,
17116
+0x11,0x35,0x01,0x73,0x7f,0x93,0xcb,0xa0,0xd0,0x90,0xa0,0x07,
17117
+0x89,0xea,0xfc,0xa5,0xfe,0x57,0xfe,0x14,0xfe,0x65,0x01,0x45,
17118
+0x01,0xee,0x02,0x26,0x03,0x32,0xea,0x00,0x00,0x01,0x00,0xb0,
17119
+0xfd,0xfc,0x03,0x50,0x07,0x92,0x00,0x0b,0x00,0x00,0x01,0x35,
17120
+0x10,0x03,0x02,0x01,0x33,0x12,0x13,0x12,0x11,0x15,0x02,0x8d,
17121
+0x7f,0x5a,0xfe,0xfc,0xa0,0xa6,0xba,0xa0,0xfd,0xfc,0xea,0x03,
17122
+0x13,0x02,0x12,0x01,0x79,0x02,0x0e,0xfe,0xfd,0xfd,0xd0,0xfe,
17123
+0x1e,0xfc,0x69,0xea,0x00,0x01,0x02,0x8d,0xfd,0xfc,0x03,0x50,
17124
+0x07,0x89,0x00,0x04,0x00,0x00,0x01,0x11,0x23,0x11,0x30,0x03,
17125
+0x50,0xc3,0x07,0x89,0xf6,0x73,0x09,0x8d,0x00,0x01,0x00,0xb0,
17126
+0xfe,0x14,0x03,0x50,0x07,0x89,0x00,0x0b,0x00,0x00,0x01,0x33,
17127
+0x15,0x10,0x03,0x02,0x03,0x23,0x12,0x13,0x12,0x11,0x02,0x8d,
17128
+0xc3,0xa0,0x90,0xd0,0xa0,0xcb,0x93,0x7f,0x07,0x89,0xea,0xfc,
17129
+0xcd,0xfd,0xdb,0xfe,0x12,0xfe,0xbb,0x01,0x9b,0x01,0xec,0x01,
17130
+0xa9,0x03,0x5b,0x00,0x00,0x01,0x00,0xb0,0xfd,0xfc,0x03,0x50,
17131
+0x07,0x6d,0x00,0x05,0x00,0x00,0x01,0x23,0x11,0x21,0x15,0x21,
17132
+0x01,0x73,0xc3,0x02,0xa0,0xfe,0x23,0xfd,0xfc,0x09,0x71,0xc3,
17133
+0x00,0x01,0x00,0xb0,0xfd,0xfc,0x01,0x73,0x07,0x89,0x00,0x03,
17134
+0x00,0x00,0x13,0x33,0x11,0x23,0xb0,0xc3,0xc3,0x07,0x89,0xf6,
17135
+0x73,0x00,0x00,0x00,0x00,0x01,0x00,0xb0,0xfe,0x14,0x03,0x50,
17136
+0x07,0x89,0x00,0x05,0x00,0x00,0x01,0x11,0x21,0x15,0x21,0x11,
17137
+0x01,0x73,0x01,0xdd,0xfd,0x60,0x07,0x89,0xf7,0x4e,0xc3,0x09,
17138
+0x75,0x00,0x00,0x00,0x00,0x01,0x00,0xb0,0xfd,0xfc,0x03,0x50,
17139
+0x07,0x6d,0x00,0x05,0x00,0x00,0x01,0x11,0x21,0x35,0x21,0x11,
17140
+0x02,0x8d,0xfe,0x23,0x02,0xa0,0xfd,0xfc,0x08,0xae,0xc3,0xf6,
17141
+0x8f,0x00,0x00,0x00,0x00,0x01,0x02,0x8d,0xfd,0xfc,0x03,0x50,
17142
+0x07,0x7a,0x00,0x03,0x00,0x00,0x01,0x33,0x11,0x23,0x02,0x8d,
17143
+0xc3,0xc3,0x07,0x7a,0xf6,0x82,0x00,0x00,0x00,0x01,0x00,0xb0,
17144
+0xfe,0x14,0x03,0x50,0x07,0x7a,0x00,0x05,0x00,0x00,0x01,0x33,
17145
+0x11,0x21,0x35,0x21,0x02,0x8d,0xc3,0xfd,0x60,0x01,0xdd,0x07,
17146
+0x7a,0xf6,0x9a,0xc3,0x00,0x01,0x02,0xa3,0xfd,0xea,0x05,0x58,
17147
+0x07,0x6d,0x00,0x0d,0x00,0x00,0x01,0x23,0x11,0x34,0x37,0x36,
17148
+0x33,0x21,0x15,0x21,0x22,0x07,0x06,0x15,0x03,0x5d,0xba,0x6f,
17149
+0x79,0xba,0x01,0x13,0xfe,0xe7,0x65,0x44,0x39,0xfd,0xea,0x07,
17150
+0x75,0xdf,0x91,0x9e,0xb0,0x66,0x57,0x99,0x00,0x01,0x00,0xa8,
17151
+0xfd,0xfc,0x03,0x5d,0x07,0x86,0x00,0x18,0x00,0x00,0x01,0x16,
17152
+0x17,0x16,0x19,0x01,0x23,0x11,0x10,0x27,0x26,0x25,0x27,0x35,
17153
+0x33,0x20,0x37,0x36,0x19,0x01,0x33,0x11,0x10,0x07,0x06,0x02,
17154
+0x94,0x3a,0x2a,0x65,0xba,0x6e,0x4b,0xfe,0xfb,0x3d,0x3d,0x01,
17155
+0x03,0x4d,0x6e,0xba,0x65,0x28,0x02,0xc1,0x20,0x3d,0x93,0xfe,
17156
+0x43,0xfd,0xe8,0x02,0x0c,0x01,0xb7,0x5f,0x41,0x04,0x01,0xbb,
17157
+0x45,0x63,0x01,0xb3,0x02,0x0c,0xfd,0xe8,0xfe,0x48,0x98,0x3c,
17158
+0x00,0x01,0x02,0xa3,0xfe,0x14,0x05,0x58,0x07,0x86,0x00,0x0d,
17159
+0x00,0x00,0x01,0x11,0x14,0x17,0x16,0x33,0x21,0x15,0x21,0x22,
17160
+0x27,0x26,0x35,0x11,0x03,0x5d,0x39,0x44,0x65,0x01,0x19,0xfe,
17161
+0xed,0xb8,0x7b,0x6f,0x07,0x86,0xf8,0x94,0x9a,0x56,0x66,0xb0,
17162
+0x9e,0x8f,0xe1,0x07,0x64,0x00,0x00,0x00,0x00,0x01,0x02,0xa3,
17163
+0xfd,0xf4,0x03,0x5d,0x07,0x8c,0x00,0x03,0x00,0x00,0x01,0x23,
17164
+0x11,0x33,0x03,0x5d,0xba,0xba,0xfd,0xf4,0x09,0x98,0x00,0x00,
17165
+0x00,0x01,0x00,0xa8,0xfd,0xea,0x03,0x5d,0x07,0x6d,0x00,0x0d,
17166
+0x00,0x00,0x01,0x11,0x34,0x27,0x26,0x23,0x21,0x35,0x21,0x32,
17167
+0x17,0x16,0x15,0x11,0x02,0xa3,0x39,0x44,0x65,0xfe,0xe7,0x01,
17168
+0x13,0xba,0x79,0x6f,0xfd,0xea,0x07,0x7d,0x99,0x57,0x66,0xb0,
17169
+0x9e,0x91,0xdf,0xf8,0x8b,0x00,0x00,0x00,0x00,0x01,0x02,0xa3,
17170
+0xfd,0xfc,0x05,0x58,0x07,0x86,0x00,0x18,0x00,0x00,0x01,0x26,
17171
+0x27,0x26,0x19,0x01,0x33,0x11,0x10,0x17,0x16,0x21,0x33,0x15,
17172
+0x07,0x04,0x07,0x06,0x19,0x01,0x23,0x11,0x10,0x37,0x36,0x03,
17173
+0x6c,0x3c,0x28,0x65,0xba,0x6e,0x4d,0x01,0x03,0x3d,0x3d,0xfe,
17174
+0xfb,0x4b,0x6e,0xba,0x65,0x2a,0x02,0xc1,0x21,0x3c,0x98,0x01,
17175
+0xb8,0x02,0x18,0xfd,0xf4,0xfe,0x4d,0x63,0x45,0xbb,0x01,0x04,
17176
+0x41,0x5f,0xfe,0x49,0xfd,0xf4,0x02,0x18,0x01,0xbd,0x93,0x3d,
17177
+0x00,0x01,0x00,0xa8,0xfe,0x14,0x03,0x5d,0x07,0x86,0x00,0x0d,
17178
+0x00,0x00,0x01,0x33,0x11,0x14,0x07,0x06,0x23,0x21,0x35,0x21,
17179
+0x32,0x37,0x36,0x35,0x02,0xa3,0xba,0x6f,0x7b,0xb8,0xfe,0xed,
17180
+0x01,0x19,0x65,0x44,0x39,0x07,0x86,0xf8,0x9c,0xe1,0x8f,0x9e,
17181
+0xb0,0x66,0x56,0x9a,0x00,0x01,0x01,0xaf,0xfe,0x00,0x02,0x75,
17182
+0x07,0x89,0x00,0x03,0x00,0x00,0x01,0x11,0x33,0x11,0x01,0xaf,
17183
+0xc6,0xfe,0x00,0x09,0x89,0xf6,0x77,0x00,0x00,0x01,0x01,0x5f,
17184
+0x00,0x00,0x04,0x74,0x06,0x0e,0x00,0x08,0x00,0x00,0x21,0x23,
17185
+0x01,0x07,0x27,0x25,0x01,0x11,0x33,0x04,0x74,0xa0,0xfe,0x21,
17186
+0x7d,0x19,0x01,0x1b,0x01,0xa0,0x5a,0x05,0x2d,0x2d,0x50,0x62,
17187
+0xfb,0x82,0x04,0xda,0x00,0x02,0x00,0xba,0x00,0x00,0x06,0xd5,
17188
+0x04,0xc4,0x00,0x02,0x00,0x06,0x00,0x00,0x01,0x21,0x09,0x01,
17189
+0x21,0x11,0x21,0x06,0xd5,0xf9,0xe5,0x03,0x0d,0x03,0x0e,0xf9,
17190
+0xe5,0x06,0x1b,0x02,0xa0,0x02,0x24,0xfb,0x3c,0x01,0xf8,0x00,
17191
+0x00,0x01,0x00,0x92,0xfe,0x2e,0x05,0x8a,0x00,0xce,0x00,0x07,
17192
+0x00,0x00,0x37,0x33,0x11,0x21,0x11,0x33,0x11,0x21,0x92,0xa0,
17193
+0x03,0xb8,0xa0,0xfb,0x08,0xce,0xfe,0x02,0x01,0xfe,0xfd,0x60,
17194
+0x00,0x01,0xff,0xec,0x02,0x6a,0x04,0xe5,0x03,0x16,0x00,0x03,
17195
+0x00,0x00,0x03,0x35,0x21,0x15,0x14,0x04,0xf9,0x02,0x6a,0xac,
17196
+0xac,0x00,0x00,0x00,0x00,0x01,0xff,0xec,0x02,0x14,0x04,0xe5,
17197
+0x03,0x6c,0x00,0x03,0x00,0x00,0x03,0x11,0x21,0x11,0x14,0x04,
17198
+0xf9,0x02,0x14,0x01,0x58,0xfe,0xa8,0x00,0x00,0x01,0x02,0x18,
17199
+0xfe,0x00,0x02,0xb8,0x07,0x81,0x00,0x03,0x00,0x00,0x01,0x11,
17200
+0x33,0x11,0x02,0x18,0xa0,0xfe,0x00,0x09,0x81,0xf6,0x7f,0x00,
17201
+0x00,0x01,0x01,0xc8,0xfe,0x00,0x03,0x08,0x07,0x81,0x00,0x03,
17202
+0x00,0x00,0x01,0x11,0x21,0x11,0x01,0xc8,0x01,0x40,0xfe,0x00,
17203
+0x09,0x81,0xf6,0x7f,0x00,0x03,0x00,0x3c,0x02,0x6a,0x04,0x95,
17204
+0x03,0x16,0x00,0x03,0x00,0x07,0x00,0x0b,0x00,0x00,0x01,0x35,
17205
+0x21,0x15,0x21,0x35,0x21,0x15,0x21,0x35,0x21,0x15,0x03,0x72,
17206
+0x01,0x23,0xfd,0x42,0x01,0x23,0xfd,0x42,0x01,0x23,0x02,0x6a,
17207
+0xac,0xac,0xac,0xac,0xac,0xac,0x00,0x00,0x00,0x03,0x00,0x3c,
17208
+0x02,0x14,0x04,0x95,0x03,0x6c,0x00,0x03,0x00,0x07,0x00,0x0b,
17209
+0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x11,
17210
+0x21,0x11,0x03,0x72,0x01,0x23,0xfd,0x42,0x01,0x23,0xfd,0x42,
17211
+0x01,0x23,0x02,0x14,0x01,0x58,0xfe,0xa8,0x01,0x58,0xfe,0xa8,
17212
+0x01,0x58,0xfe,0xa8,0x00,0x03,0x02,0x18,0xfe,0x6d,0x02,0xb8,
17213
+0x07,0x13,0x00,0x03,0x00,0x07,0x00,0x0b,0x00,0x00,0x01,0x11,
17214
+0x33,0x11,0x03,0x11,0x33,0x11,0x03,0x11,0x33,0x11,0x02,0x18,
17215
+0xa0,0xa0,0xa0,0xa0,0xa0,0xfe,0x6d,0x02,0x6a,0xfd,0x96,0x03,
17216
+0x1e,0x02,0x6a,0xfd,0x96,0x03,0x1e,0x02,0x6a,0xfd,0x96,0x00,
17217
+0x00,0x03,0x01,0xc8,0xfe,0x6d,0x03,0x08,0x07,0x13,0x00,0x03,
17218
+0x00,0x07,0x00,0x0b,0x00,0x00,0x01,0x11,0x21,0x11,0x01,0x11,
17219
+0x21,0x11,0x01,0x11,0x21,0x11,0x01,0xc8,0x01,0x40,0xfe,0xc0,
17220
+0x01,0x40,0xfe,0xc0,0x01,0x40,0xfe,0x6d,0x02,0x6a,0xfd,0x96,
17221
+0x03,0x1e,0x02,0x6a,0xfd,0x96,0x03,0x1e,0x02,0x6a,0xfd,0x96,
17222
+0x00,0x04,0x00,0x3c,0x02,0x6a,0x04,0x95,0x03,0x16,0x00,0x03,
17223
+0x00,0x07,0x00,0x0b,0x00,0x0f,0x00,0x00,0x13,0x35,0x33,0x15,
17224
+0x33,0x35,0x33,0x15,0x33,0x35,0x33,0x15,0x33,0x35,0x33,0x15,
17225
+0x3c,0xbc,0x78,0xbc,0x78,0xbc,0x78,0xbd,0x02,0x6a,0xac,0xac,
17226
+0xac,0xac,0xac,0xac,0xac,0xac,0x00,0x00,0x00,0x04,0x00,0x3c,
17227
+0x02,0x14,0x04,0x95,0x03,0x6c,0x00,0x03,0x00,0x07,0x00,0x0b,
17228
+0x00,0x0f,0x00,0x00,0x13,0x11,0x33,0x11,0x33,0x11,0x33,0x11,
17229
+0x33,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x3c,0xbc,0x78,0xbc,
17230
+0x78,0xbc,0x78,0xbd,0x02,0x14,0x01,0x58,0xfe,0xa8,0x01,0x58,
17231
+0xfe,0xa8,0x01,0x58,0xfe,0xa8,0x01,0x58,0xfe,0xa8,0x00,0x00,
17232
+0x00,0x04,0x02,0x18,0xfe,0x6e,0x02,0xb8,0x07,0x12,0x00,0x03,
17233
+0x00,0x07,0x00,0x0b,0x00,0x0f,0x00,0x00,0x01,0x11,0x33,0x11,
17234
+0x03,0x11,0x33,0x11,0x03,0x11,0x33,0x11,0x03,0x11,0x33,0x11,
17235
+0x02,0x18,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0x05,0x70,0x01,
17236
+0xa2,0xfe,0x5e,0xf8,0xfe,0x01,0xa2,0xfe,0x5e,0x04,0xac,0x01,
17237
+0xa2,0xfe,0x5e,0xfd,0xaa,0x01,0xa2,0xfe,0x5e,0x00,0x00,0x00,
17238
+0x00,0x04,0x01,0xc8,0xfe,0x6e,0x03,0x08,0x07,0x12,0x00,0x03,
17239
+0x00,0x07,0x00,0x0b,0x00,0x0f,0x00,0x00,0x01,0x11,0x21,0x11,
17240
+0x01,0x11,0x21,0x11,0x01,0x11,0x21,0x11,0x01,0x11,0x21,0x11,
17241
+0x01,0xc8,0x01,0x40,0xfe,0xc0,0x01,0x40,0xfe,0xc0,0x01,0x40,
17242
+0xfe,0xc0,0x01,0x40,0x05,0x70,0x01,0xa2,0xfe,0x5e,0xf8,0xfe,
17243
+0x01,0xa2,0xfe,0x5e,0x04,0xac,0x01,0xa2,0xfe,0x5e,0xfd,0xaa,
17244
+0x01,0xa2,0xfe,0x5e,0x00,0x01,0x02,0x18,0xfe,0x00,0x04,0xe5,
17245
+0x03,0x16,0x00,0x05,0x00,0x00,0x01,0x11,0x21,0x15,0x21,0x11,
17246
+0x02,0x18,0x02,0xcd,0xfd,0xd3,0xfe,0x00,0x05,0x16,0xac,0xfb,
17247
+0x96,0x00,0x00,0x00,0x00,0x01,0x02,0x18,0xfe,0x00,0x04,0xe5,
17248
+0x03,0x6c,0x00,0x05,0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x11,
17249
+0x02,0x18,0x02,0xcd,0xfd,0xd3,0xfe,0x00,0x05,0x6c,0xfe,0xa8,
17250
+0xfb,0xec,0x00,0x00,0x00,0x01,0x01,0xc8,0xfe,0x00,0x04,0xe5,
17251
+0x03,0x16,0x00,0x05,0x00,0x00,0x01,0x11,0x21,0x15,0x21,0x11,
17252
+0x01,0xc8,0x03,0x1d,0xfe,0x23,0xfe,0x00,0x05,0x16,0xac,0xfb,
17253
+0x96,0x00,0x00,0x00,0x00,0x01,0x01,0xc8,0xfe,0x00,0x04,0xe5,
17254
+0x03,0x6c,0x00,0x05,0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x11,
17255
+0x01,0xc8,0x03,0x1d,0xfe,0x23,0xfe,0x00,0x05,0x6c,0xfe,0xa8,
17256
+0xfb,0xec,0x00,0x00,0x00,0x01,0xff,0xec,0xfe,0x00,0x02,0xb8,
17257
+0x03,0x16,0x00,0x05,0x00,0x00,0x01,0x11,0x21,0x35,0x21,0x11,
17258
+0x02,0x18,0xfd,0xd4,0x02,0xcc,0xfe,0x00,0x04,0x6a,0xac,0xfa,
17259
+0xea,0x00,0x00,0x00,0x00,0x01,0xff,0xec,0xfe,0x00,0x02,0xb8,
17260
+0x03,0x6c,0x00,0x05,0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x11,
17261
+0x02,0x18,0xfd,0xd4,0x02,0xcc,0xfe,0x00,0x04,0x14,0x01,0x58,
17262
+0xfa,0x94,0x00,0x00,0x00,0x01,0xff,0xec,0xfe,0x00,0x03,0x08,
17263
+0x03,0x16,0x00,0x05,0x00,0x00,0x01,0x11,0x21,0x35,0x21,0x11,
17264
+0x01,0xc8,0xfe,0x24,0x03,0x1c,0xfe,0x00,0x04,0x6a,0xac,0xfa,
17265
+0xea,0x00,0x00,0x00,0x00,0x01,0xff,0xec,0xfe,0x00,0x03,0x08,
17266
+0x03,0x6c,0x00,0x05,0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x11,
17267
+0x01,0xc8,0xfe,0x24,0x03,0x1c,0xfe,0x00,0x04,0x14,0x01,0x58,
17268
+0xfa,0x94,0x00,0x00,0x00,0x01,0x02,0x18,0x02,0x6a,0x04,0xe5,
17269
+0x07,0x81,0x00,0x05,0x00,0x00,0x01,0x11,0x33,0x11,0x21,0x15,
17270
+0x02,0x18,0xa0,0x02,0x2d,0x02,0x6a,0x05,0x17,0xfb,0x95,0xac,
17271
+0x00,0x01,0x02,0x18,0x02,0x14,0x04,0xe5,0x07,0x81,0x00,0x05,
17272
+0x00,0x00,0x01,0x11,0x33,0x11,0x21,0x11,0x02,0x18,0xa0,0x02,
17273
+0x2d,0x02,0x14,0x05,0x6d,0xfb,0xeb,0xfe,0xa8,0x00,0x00,0x00,
17274
+0x00,0x01,0x01,0xc8,0x02,0x6a,0x04,0xe5,0x07,0x81,0x00,0x05,
17275
+0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x15,0x01,0xc8,0x01,0x40,
17276
+0x01,0xdd,0x02,0x6a,0x05,0x17,0xfb,0x95,0xac,0x00,0x00,0x00,
17277
+0x00,0x01,0x01,0xc8,0x02,0x14,0x04,0xe5,0x07,0x81,0x00,0x05,
17278
+0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x11,0x01,0xc8,0x01,0x40,
17279
+0x01,0xdd,0x02,0x14,0x05,0x6d,0xfb,0xeb,0xfe,0xa8,0x00,0x00,
17280
+0x00,0x01,0xff,0xec,0x02,0x6a,0x02,0xb8,0x07,0x81,0x00,0x05,
17281
+0x00,0x00,0x03,0x35,0x21,0x11,0x33,0x11,0x14,0x02,0x2c,0xa0,
17282
+0x02,0x6a,0xac,0x04,0x6b,0xfa,0xe9,0x00,0x00,0x01,0xff,0xec,
17283
+0x02,0x14,0x02,0xb8,0x07,0x81,0x00,0x05,0x00,0x00,0x03,0x11,
17284
+0x21,0x11,0x33,0x11,0x14,0x02,0x2c,0xa0,0x02,0x14,0x01,0x58,
17285
+0x04,0x15,0xfa,0x93,0x00,0x01,0xff,0xec,0x02,0x6a,0x03,0x08,
17286
+0x07,0x81,0x00,0x05,0x00,0x00,0x03,0x35,0x21,0x11,0x21,0x11,
17287
+0x14,0x01,0xdc,0x01,0x40,0x02,0x6a,0xac,0x04,0x6b,0xfa,0xe9,
17288
+0x00,0x01,0xff,0xec,0x02,0x14,0x03,0x08,0x07,0x81,0x00,0x05,
17289
+0x00,0x00,0x03,0x11,0x21,0x11,0x21,0x11,0x14,0x01,0xdc,0x01,
17290
+0x40,0x02,0x14,0x01,0x58,0x04,0x15,0xfa,0x93,0x00,0x00,0x00,
17291
+0x00,0x01,0x02,0x18,0xfe,0x00,0x04,0xe5,0x07,0x81,0x00,0x07,
17292
+0x00,0x00,0x01,0x11,0x33,0x11,0x21,0x15,0x21,0x11,0x02,0x18,
17293
+0xa0,0x02,0x2d,0xfd,0xd3,0xfe,0x00,0x09,0x81,0xfb,0x95,0xac,
17294
+0xfb,0x96,0x00,0x00,0x00,0x01,0x02,0x18,0xfe,0x00,0x04,0xe5,
17295
+0x07,0x81,0x00,0x07,0x00,0x00,0x01,0x11,0x33,0x11,0x21,0x11,
17296
+0x21,0x11,0x02,0x18,0xa0,0x02,0x2d,0xfd,0xd3,0xfe,0x00,0x09,
17297
+0x81,0xfb,0xeb,0xfe,0xa8,0xfb,0xec,0x00,0x00,0x01,0x01,0xc8,
17298
+0xfe,0x00,0x04,0xe5,0x07,0x81,0x00,0x09,0x00,0x00,0x01,0x11,
17299
+0x23,0x11,0x21,0x11,0x21,0x15,0x21,0x11,0x02,0x18,0x50,0x01,
17300
+0x40,0x01,0xdd,0xfd,0xd3,0xfe,0x00,0x04,0x6a,0x05,0x17,0xfb,
17301
+0x95,0xac,0xfb,0x96,0x00,0x01,0x01,0xc8,0xfe,0x00,0x04,0xe5,
17302
+0x07,0x81,0x00,0x09,0x00,0x00,0x01,0x11,0x33,0x11,0x33,0x11,
17303
+0x21,0x15,0x21,0x11,0x01,0xc8,0x50,0xa0,0x02,0x2d,0xfe,0x23,
17304
+0xfe,0x00,0x05,0x16,0x04,0x6b,0xfb,0x95,0xac,0xfb,0x96,0x00,
17305
+0x00,0x01,0x01,0xc8,0xfe,0x00,0x04,0xe5,0x07,0x81,0x00,0x07,
17306
+0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x15,0x21,0x11,0x01,0xc8,
17307
+0x01,0x40,0x01,0xdd,0xfe,0x23,0xfe,0x00,0x09,0x81,0xfb,0x95,
17308
+0xac,0xfb,0x96,0x00,0x00,0x01,0x01,0xc8,0xfe,0x00,0x04,0xe5,
17309
+0x07,0x81,0x00,0x09,0x00,0x00,0x01,0x11,0x23,0x11,0x21,0x11,
17310
+0x21,0x11,0x21,0x11,0x02,0x18,0x50,0x01,0x40,0x01,0xdd,0xfd,
17311
+0xd3,0xfe,0x00,0x04,0x14,0x05,0x6d,0xfb,0xeb,0xfe,0xa8,0xfb,
17312
+0xec,0x00,0x00,0x00,0x00,0x01,0x01,0xc8,0xfe,0x00,0x04,0xe5,
17313
+0x07,0x81,0x00,0x09,0x00,0x00,0x01,0x11,0x33,0x11,0x33,0x11,
17314
+0x21,0x11,0x21,0x11,0x01,0xc8,0x50,0xa0,0x02,0x2d,0xfe,0x23,
17315
+0xfe,0x00,0x05,0x6c,0x04,0x15,0xfb,0xeb,0xfe,0xa8,0xfb,0xec,
17316
+0x00,0x01,0x01,0xc8,0xfe,0x00,0x04,0xe5,0x07,0x81,0x00,0x07,
17317
+0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x01,0xc8,
17318
+0x01,0x40,0x01,0xdd,0xfe,0x23,0xfe,0x00,0x09,0x81,0xfb,0xeb,
17319
+0xfe,0xa8,0xfb,0xec,0x00,0x01,0xff,0xec,0xfe,0x00,0x02,0xb8,
17320
+0x07,0x81,0x00,0x07,0x00,0x00,0x01,0x11,0x21,0x35,0x21,0x11,
17321
+0x33,0x11,0x02,0x18,0xfd,0xd4,0x02,0x2c,0xa0,0xfe,0x00,0x04,
17322
+0x6a,0xac,0x04,0x6b,0xf6,0x7f,0x00,0x00,0x00,0x01,0xff,0xec,
17323
+0xfe,0x00,0x02,0xb8,0x07,0x81,0x00,0x07,0x00,0x00,0x01,0x11,
17324
+0x21,0x11,0x21,0x11,0x33,0x11,0x02,0x18,0xfd,0xd4,0x02,0x2c,
17325
+0xa0,0xfe,0x00,0x04,0x14,0x01,0x58,0x04,0x15,0xf6,0x7f,0x00,
17326
+0x00,0x01,0xff,0xec,0xfe,0x00,0x03,0x08,0x07,0x81,0x00,0x09,
17327
+0x00,0x00,0x01,0x11,0x21,0x35,0x21,0x11,0x21,0x11,0x23,0x11,
17328
+0x02,0x18,0xfd,0xd4,0x01,0xdc,0x01,0x40,0x50,0xfe,0x00,0x04,
17329
+0x6a,0xac,0x04,0x6b,0xfa,0xe9,0xfb,0x96,0x00,0x01,0xff,0xec,
17330
+0xfe,0x00,0x03,0x08,0x07,0x81,0x00,0x09,0x00,0x00,0x01,0x11,
17331
+0x21,0x35,0x21,0x11,0x33,0x11,0x33,0x11,0x01,0xc8,0xfe,0x24,
17332
+0x02,0x2c,0xa0,0x50,0xfe,0x00,0x04,0x6a,0xac,0x04,0x6b,0xfb,
17333
+0x95,0xfa,0xea,0x00,0x00,0x01,0xff,0xec,0xfe,0x00,0x03,0x08,
17334
+0x07,0x81,0x00,0x07,0x00,0x00,0x01,0x11,0x21,0x35,0x21,0x11,
17335
+0x21,0x11,0x01,0xc8,0xfe,0x24,0x01,0xdc,0x01,0x40,0xfe,0x00,
17336
+0x04,0x6a,0xac,0x04,0x6b,0xf6,0x7f,0x00,0x00,0x01,0xff,0xec,
17337
+0xfe,0x00,0x03,0x08,0x07,0x81,0x00,0x09,0x00,0x00,0x01,0x11,
17338
+0x21,0x11,0x21,0x11,0x21,0x11,0x23,0x11,0x02,0x18,0xfd,0xd4,
17339
+0x01,0xdc,0x01,0x40,0x50,0xfe,0x00,0x04,0x14,0x01,0x58,0x04,
17340
+0x15,0xfa,0x93,0xfb,0xec,0x00,0x00,0x00,0x00,0x01,0xff,0xec,
17341
+0xfe,0x00,0x03,0x08,0x07,0x81,0x00,0x09,0x00,0x00,0x01,0x11,
17342
+0x21,0x11,0x21,0x11,0x33,0x11,0x33,0x11,0x01,0xc8,0xfe,0x24,
17343
+0x02,0x2c,0xa0,0x50,0xfe,0x00,0x04,0x14,0x01,0x58,0x04,0x15,
17344
+0xfb,0xeb,0xfa,0x94,0x00,0x01,0xff,0xec,0xfe,0x00,0x03,0x08,
17345
+0x07,0x81,0x00,0x07,0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x11,
17346
+0x21,0x11,0x01,0xc8,0xfe,0x24,0x01,0xdc,0x01,0x40,0xfe,0x00,
17347
+0x04,0x14,0x01,0x58,0x04,0x15,0xf6,0x7f,0x00,0x01,0xff,0xec,
17348
+0xfe,0x00,0x04,0xe5,0x03,0x16,0x00,0x07,0x00,0x00,0x01,0x11,
17349
+0x21,0x35,0x21,0x15,0x21,0x11,0x02,0x18,0xfd,0xd4,0x04,0xf9,
17350
+0xfd,0xd3,0xfe,0x00,0x04,0x6a,0xac,0xac,0xfb,0x96,0x00,0x00,
17351
+0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,0x03,0x6c,0x00,0x09,
17352
+0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x15,0x21,0x15,0x21,0x11,
17353
+0x02,0x18,0xfd,0xd4,0x02,0xcc,0x02,0x2d,0xfd,0xd3,0xfe,0x00,
17354
+0x04,0x14,0x01,0x58,0x56,0xac,0xfb,0x96,0x00,0x01,0xff,0xec,
17355
+0xfe,0x00,0x04,0xe5,0x03,0x6c,0x00,0x09,0x00,0x00,0x01,0x11,
17356
+0x21,0x35,0x21,0x35,0x21,0x11,0x21,0x11,0x02,0x18,0xfd,0xd4,
17357
+0x02,0x2c,0x02,0xcd,0xfd,0xd3,0xfe,0x00,0x04,0x6a,0xac,0x56,
17358
+0xfe,0xa8,0xfb,0xec,0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,
17359
+0x03,0x6c,0x00,0x07,0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x11,
17360
+0x21,0x11,0x02,0x18,0xfd,0xd4,0x04,0xf9,0xfd,0xd3,0xfe,0x00,
17361
+0x04,0x14,0x01,0x58,0xfe,0xa8,0xfb,0xec,0x00,0x01,0xff,0xec,
17362
+0xfe,0x00,0x04,0xe5,0x03,0x16,0x00,0x07,0x00,0x00,0x01,0x11,
17363
+0x21,0x35,0x21,0x15,0x21,0x11,0x01,0xc8,0xfe,0x24,0x04,0xf9,
17364
+0xfe,0x23,0xfe,0x00,0x04,0x6a,0xac,0xac,0xfb,0x96,0x00,0x00,
17365
+0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,0x03,0x6c,0x00,0x09,
17366
+0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x15,0x21,0x15,0x21,0x11,
17367
+0x01,0xc8,0xfe,0x24,0x03,0x1c,0x01,0xdd,0xfe,0x23,0xfe,0x00,
17368
+0x04,0x14,0x01,0x58,0x56,0xac,0xfb,0x96,0x00,0x01,0xff,0xec,
17369
+0xfe,0x00,0x04,0xe5,0x03,0x6c,0x00,0x09,0x00,0x00,0x01,0x11,
17370
+0x21,0x35,0x21,0x35,0x21,0x11,0x21,0x11,0x01,0xc8,0xfe,0x24,
17371
+0x01,0xdc,0x03,0x1d,0xfe,0x23,0xfe,0x00,0x04,0x6a,0xac,0x56,
17372
+0xfe,0xa8,0xfb,0xec,0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,
17373
+0x03,0x6c,0x00,0x07,0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x11,
17374
+0x21,0x11,0x01,0xc8,0xfe,0x24,0x04,0xf9,0xfe,0x23,0xfe,0x00,
17375
+0x04,0x14,0x01,0x58,0xfe,0xa8,0xfb,0xec,0x00,0x01,0xff,0xec,
17376
+0x02,0x6a,0x04,0xe5,0x07,0x81,0x00,0x07,0x00,0x00,0x03,0x35,
17377
+0x21,0x11,0x33,0x11,0x21,0x15,0x14,0x02,0x2c,0xa0,0x02,0x2d,
17378
+0x02,0x6a,0xac,0x04,0x6b,0xfb,0x95,0xac,0x00,0x01,0xff,0xec,
17379
+0x02,0x14,0x04,0xe5,0x07,0x81,0x00,0x09,0x00,0x00,0x03,0x11,
17380
+0x21,0x11,0x33,0x11,0x21,0x15,0x21,0x15,0x14,0x02,0x2c,0xa0,
17381
+0x02,0x2d,0xfd,0xd3,0x02,0x14,0x01,0x58,0x04,0x15,0xfb,0x95,
17382
+0xac,0x56,0x00,0x00,0x00,0x01,0xff,0xec,0x02,0x14,0x04,0xe5,
17383
+0x07,0x81,0x00,0x09,0x00,0x00,0x03,0x35,0x21,0x11,0x33,0x11,
17384
+0x21,0x11,0x21,0x35,0x14,0x02,0x2c,0xa0,0x02,0x2d,0xfd,0x33,
17385
+0x02,0x6a,0xac,0x04,0x6b,0xfb,0xeb,0xfe,0xa8,0x56,0x00,0x00,
17386
+0x00,0x01,0xff,0xec,0x02,0x14,0x04,0xe5,0x07,0x81,0x00,0x07,
17387
+0x00,0x00,0x03,0x11,0x21,0x11,0x33,0x11,0x21,0x11,0x14,0x02,
17388
+0x2c,0xa0,0x02,0x2d,0x02,0x14,0x01,0x58,0x04,0x15,0xfb,0xeb,
17389
+0xfe,0xa8,0x00,0x00,0x00,0x01,0xff,0xec,0x02,0x6a,0x04,0xe5,
17390
+0x07,0x81,0x00,0x07,0x00,0x00,0x03,0x35,0x21,0x11,0x21,0x11,
17391
+0x21,0x15,0x14,0x01,0xdc,0x01,0x40,0x01,0xdd,0x02,0x6a,0xac,
17392
+0x04,0x6b,0xfb,0x95,0xac,0x00,0x00,0x00,0x00,0x01,0xff,0xec,
17393
+0x02,0x14,0x04,0xe5,0x07,0x81,0x00,0x09,0x00,0x00,0x03,0x11,
17394
+0x21,0x11,0x21,0x11,0x21,0x15,0x21,0x15,0x14,0x01,0xdc,0x01,
17395
+0x40,0x01,0xdd,0xfe,0x23,0x02,0x14,0x01,0x58,0x04,0x15,0xfb,
17396
+0x95,0xac,0x56,0x00,0x00,0x01,0xff,0xec,0x02,0x14,0x04,0xe5,
17397
+0x07,0x81,0x00,0x09,0x00,0x00,0x03,0x35,0x21,0x11,0x21,0x11,
17398
+0x21,0x11,0x21,0x35,0x14,0x01,0xdc,0x01,0x40,0x01,0xdd,0xfc,
17399
+0xe3,0x02,0x6a,0xac,0x04,0x6b,0xfb,0xeb,0xfe,0xa8,0x56,0x00,
17400
+0x00,0x01,0xff,0xec,0x02,0x14,0x04,0xe5,0x07,0x81,0x00,0x07,
17401
+0x00,0x00,0x03,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x14,0x01,
17402
+0xdc,0x01,0x40,0x01,0xdd,0x02,0x14,0x01,0x58,0x04,0x15,0xfb,
17403
+0xeb,0xfe,0xa8,0x00,0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,
17404
+0x07,0x81,0x00,0x0b,0x00,0x00,0x01,0x11,0x23,0x11,0x21,0x35,
17405
+0x21,0x11,0x33,0x11,0x21,0x15,0x02,0xb8,0xa0,0xfd,0xd4,0x02,
17406
+0x2c,0xa0,0x02,0x2d,0x02,0x6a,0xfb,0x96,0x04,0x6a,0xac,0x04,
17407
+0x6b,0xfb,0x95,0xac,0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,
17408
+0x07,0x81,0x00,0x0b,0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x11,
17409
+0x33,0x11,0x21,0x15,0x21,0x11,0x02,0x18,0xfd,0xd4,0x02,0x2c,
17410
+0xa0,0x02,0x2d,0xfd,0xd3,0xfe,0x00,0x04,0x14,0x01,0x58,0x04,
17411
+0x15,0xfb,0x95,0xac,0xfb,0x96,0x00,0x00,0x00,0x01,0xff,0xec,
17412
+0xfe,0x00,0x04,0xe5,0x07,0x81,0x00,0x0b,0x00,0x00,0x01,0x11,
17413
+0x21,0x35,0x21,0x11,0x33,0x11,0x21,0x11,0x21,0x11,0x02,0x18,
17414
+0xfd,0xd4,0x02,0x2c,0xa0,0x02,0x2d,0xfd,0xd3,0xfe,0x00,0x04,
17415
+0x6a,0xac,0x04,0x6b,0xfb,0xeb,0xfe,0xa8,0xfb,0xec,0x00,0x00,
17416
+0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,0x07,0x81,0x00,0x0b,
17417
+0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x11,0x33,0x11,0x21,0x11,
17418
+0x21,0x11,0x02,0x18,0xfd,0xd4,0x02,0x2c,0xa0,0x02,0x2d,0xfd,
17419
+0xd3,0xfe,0x00,0x04,0x14,0x01,0x58,0x04,0x15,0xfb,0xeb,0xfe,
17420
+0xa8,0xfb,0xec,0x00,0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,
17421
+0x07,0x81,0x00,0x0b,0x00,0x00,0x01,0x11,0x21,0x35,0x21,0x11,
17422
+0x21,0x11,0x21,0x15,0x21,0x11,0x02,0x18,0xfd,0xd4,0x01,0xdc,
17423
+0x01,0x40,0x01,0xdd,0xfd,0xd3,0xfe,0x00,0x04,0x6a,0xac,0x04,
17424
+0x6b,0xfb,0x95,0xac,0xfb,0x96,0x00,0x00,0x00,0x01,0xff,0xec,
17425
+0xfe,0x00,0x04,0xe5,0x07,0x81,0x00,0x0b,0x00,0x00,0x01,0x11,
17426
+0x21,0x35,0x21,0x11,0x33,0x11,0x21,0x15,0x21,0x11,0x01,0xc8,
17427
+0xfe,0x24,0x02,0x2c,0xa0,0x02,0x2d,0xfe,0x23,0xfe,0x00,0x04,
17428
+0x6a,0xac,0x04,0x6b,0xfb,0x95,0xac,0xfb,0x96,0x00,0x00,0x00,
17429
+0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,0x07,0x81,0x00,0x0b,
17430
+0x00,0x00,0x01,0x11,0x21,0x35,0x21,0x11,0x21,0x11,0x21,0x15,
17431
+0x21,0x11,0x01,0xc8,0xfe,0x24,0x01,0xdc,0x01,0x40,0x01,0xdd,
17432
+0xfe,0x23,0xfe,0x00,0x04,0x6a,0xac,0x04,0x6b,0xfb,0x95,0xac,
17433
+0xfb,0x96,0x00,0x00,0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,
17434
+0x07,0x81,0x00,0x0d,0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x11,
17435
+0x21,0x11,0x21,0x15,0x21,0x15,0x23,0x11,0x02,0x18,0xfd,0xd4,
17436
+0x01,0xdc,0x01,0x40,0x01,0xdd,0xfe,0x23,0x50,0xfe,0x00,0x04,
17437
+0x14,0x01,0x58,0x04,0x15,0xfb,0x95,0xac,0x56,0xfb,0xec,0x00,
17438
+0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,0x07,0x81,0x00,0x0d,
17439
+0x00,0x00,0x01,0x11,0x23,0x35,0x21,0x35,0x21,0x11,0x21,0x11,
17440
+0x21,0x11,0x21,0x11,0x02,0x18,0x50,0xfe,0x24,0x01,0xdc,0x01,
17441
+0x40,0x01,0xdd,0xfd,0xd3,0xfe,0x00,0x04,0x14,0x56,0xac,0x04,
17442
+0x6b,0xfb,0xeb,0xfe,0xa8,0xfb,0xec,0x00,0x00,0x01,0xff,0xec,
17443
+0xfe,0x00,0x04,0xe5,0x07,0x81,0x00,0x0d,0x00,0x00,0x01,0x11,
17444
+0x21,0x11,0x21,0x11,0x33,0x11,0x33,0x15,0x21,0x15,0x21,0x11,
17445
+0x01,0xc8,0xfe,0x24,0x02,0x2c,0xa0,0x50,0x01,0xdd,0xfe,0x23,
17446
+0xfe,0x00,0x04,0x14,0x01,0x58,0x04,0x15,0xfb,0xeb,0x56,0xac,
17447
+0xfb,0x96,0x00,0x00,0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,
17448
+0x07,0x81,0x00,0x0d,0x00,0x00,0x01,0x11,0x21,0x35,0x21,0x35,
17449
+0x33,0x11,0x33,0x11,0x21,0x11,0x21,0x11,0x01,0xc8,0xfe,0x24,
17450
+0x01,0xdc,0x50,0xa0,0x02,0x2d,0xfe,0x23,0xfe,0x00,0x04,0x6a,
17451
+0xac,0x56,0x04,0x15,0xfb,0xeb,0xfe,0xa8,0xfb,0xec,0x00,0x00,
17452
+0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,0x07,0x81,0x00,0x0b,
17453
+0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x11,
17454
+0x21,0x11,0x02,0x18,0xfd,0xd4,0x01,0xdc,0x01,0x40,0x01,0xdd,
17455
+0xfd,0xd3,0xfe,0x00,0x04,0x14,0x01,0x58,0x04,0x15,0xfb,0xeb,
17456
+0xfe,0xa8,0xfb,0xec,0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,
17457
+0x07,0x81,0x00,0x0b,0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x11,
17458
+0x33,0x11,0x21,0x11,0x21,0x11,0x01,0xc8,0xfe,0x24,0x02,0x2c,
17459
+0xa0,0x02,0x2d,0xfe,0x23,0xfe,0x00,0x04,0x14,0x01,0x58,0x04,
17460
+0x15,0xfb,0xeb,0xfe,0xa8,0xfb,0xec,0x00,0x00,0x01,0xff,0xec,
17461
+0xfe,0x00,0x04,0xe5,0x07,0x81,0x00,0x0b,0x00,0x00,0x01,0x11,
17462
+0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x15,0x21,0x11,0x01,0xc8,
17463
+0xfe,0x24,0x01,0xdc,0x01,0x40,0x01,0xdd,0xfe,0x23,0xfe,0x00,
17464
+0x04,0x14,0x01,0x58,0x04,0x15,0xfb,0x95,0xac,0xfb,0x96,0x00,
17465
+0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,0x07,0x81,0x00,0x0b,
17466
+0x00,0x00,0x01,0x11,0x21,0x35,0x21,0x11,0x21,0x11,0x21,0x11,
17467
+0x21,0x11,0x01,0xc8,0xfe,0x24,0x01,0xdc,0x01,0x40,0x01,0xdd,
17468
+0xfe,0x23,0xfe,0x00,0x04,0x6a,0xac,0x04,0x6b,0xfb,0xeb,0xfe,
17469
+0xa8,0xfb,0xec,0x00,0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,
17470
+0x07,0x81,0x00,0x0b,0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x11,
17471
+0x21,0x11,0x21,0x11,0x21,0x11,0x01,0xc8,0xfe,0x24,0x01,0xdc,
17472
+0x01,0x40,0x01,0xdd,0xfe,0x23,0xfe,0x00,0x04,0x14,0x01,0x58,
17473
+0x04,0x15,0xfb,0xeb,0xfe,0xa8,0xfb,0xec,0x00,0x02,0x00,0x3c,
17474
+0x02,0x6a,0x04,0x95,0x03,0x16,0x00,0x03,0x00,0x07,0x00,0x00,
17475
+0x13,0x35,0x21,0x15,0x33,0x35,0x21,0x15,0x3c,0x01,0xf0,0x79,
17476
+0x01,0xf0,0x02,0x6a,0xac,0xac,0xac,0xac,0x00,0x02,0x00,0x3c,
17477
+0x02,0x14,0x04,0x95,0x03,0x6c,0x00,0x03,0x00,0x07,0x00,0x00,
17478
+0x01,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x02,0xa5,0x01,0xf0,
17479
+0xfb,0xa7,0x01,0xf0,0x02,0x14,0x01,0x58,0xfe,0xa8,0x01,0x58,
17480
+0xfe,0xa8,0x00,0x00,0x00,0x02,0x02,0x18,0xfe,0xc0,0x02,0xb8,
17481
+0x06,0xc1,0x00,0x03,0x00,0x07,0x00,0x00,0x01,0x11,0x33,0x11,
17482
+0x03,0x11,0x33,0x11,0x02,0x18,0xa0,0xa0,0xa0,0x03,0x6c,0x03,
17483
+0x55,0xfc,0xab,0xfb,0x54,0x03,0x54,0xfc,0xac,0x00,0x00,0x00,
17484
+0x00,0x02,0x01,0xc8,0xfe,0xc0,0x03,0x08,0x06,0xc1,0x00,0x03,
17485
+0x00,0x07,0x00,0x00,0x01,0x11,0x21,0x11,0x01,0x11,0x21,0x11,
17486
+0x01,0xc8,0x01,0x40,0xfe,0xc0,0x01,0x40,0x03,0x6c,0x03,0x55,
17487
+0xfc,0xab,0xfb,0x54,0x03,0x54,0xfc,0xac,0x00,0x02,0xff,0xec,
17488
+0x01,0xbe,0x04,0xe5,0x03,0xc2,0x00,0x03,0x00,0x07,0x00,0x00,
17489
+0x03,0x35,0x21,0x15,0x01,0x35,0x21,0x15,0x14,0x04,0xf9,0xfb,
17490
+0x07,0x04,0xf9,0x03,0x16,0xac,0xac,0xfe,0xa8,0xac,0xac,0x00,
17491
+0x00,0x02,0x01,0x78,0xfe,0x00,0x03,0x58,0x07,0x81,0x00,0x03,
17492
+0x00,0x07,0x00,0x00,0x01,0x11,0x33,0x11,0x33,0x11,0x33,0x11,
17493
+0x01,0x78,0xa0,0xa0,0xa0,0xfe,0x00,0x09,0x81,0xf6,0x7f,0x09,
17494
+0x81,0xf6,0x7f,0x00,0x00,0x01,0x02,0x18,0xfe,0x00,0x04,0xe5,
17495
+0x03,0xc2,0x00,0x09,0x00,0x00,0x01,0x11,0x21,0x15,0x21,0x15,
17496
+0x21,0x15,0x21,0x11,0x02,0x18,0x02,0xcd,0xfd,0xd3,0x02,0x2d,
17497
+0xfd,0xd3,0xfe,0x00,0x05,0xc2,0xac,0xac,0xac,0xfc,0x42,0x00,
17498
+0x00,0x01,0x01,0x78,0xfe,0x00,0x04,0xe5,0x03,0x16,0x00,0x09,
17499
+0x00,0x00,0x01,0x11,0x21,0x15,0x21,0x11,0x23,0x11,0x23,0x11,
17500
+0x01,0x78,0x03,0x6d,0xfe,0x73,0xa0,0xa0,0xfe,0x00,0x05,0x16,
17501
+0xac,0xfb,0x96,0x04,0x6a,0xfb,0x96,0x00,0x00,0x02,0x01,0x78,
17502
+0xfe,0x00,0x04,0xe5,0x03,0xc2,0x00,0x05,0x00,0x0b,0x00,0x00,
17503
+0x01,0x11,0x21,0x15,0x21,0x11,0x33,0x11,0x21,0x15,0x21,0x11,
17504
+0x01,0x78,0x03,0x6d,0xfd,0x33,0xa0,0x02,0x2d,0xfe,0x73,0xfe,
17505
+0x00,0x05,0xc2,0xac,0xfa,0xea,0x04,0x6a,0xac,0xfc,0x42,0x00,
17506
+0x00,0x01,0xff,0xec,0xfe,0x00,0x02,0xb8,0x03,0xc2,0x00,0x09,
17507
+0x00,0x00,0x01,0x11,0x21,0x35,0x21,0x35,0x21,0x35,0x21,0x11,
17508
+0x02,0x18,0xfd,0xd4,0x02,0x2c,0xfd,0xd4,0x02,0xcc,0xfe,0x00,
17509
+0x03,0xbe,0xac,0xac,0xac,0xfa,0x3e,0x00,0x00,0x01,0xff,0xec,
17510
+0xfe,0x00,0x03,0x58,0x03,0x16,0x00,0x09,0x00,0x00,0x03,0x35,
17511
+0x21,0x11,0x23,0x11,0x23,0x11,0x23,0x11,0x14,0x03,0x6c,0xa0,
17512
+0xa0,0xa0,0x02,0x6a,0xac,0xfa,0xea,0x04,0x6a,0xfb,0x96,0x04,
17513
+0x6a,0x00,0x00,0x00,0x00,0x02,0xff,0xec,0xfe,0x00,0x03,0x58,
17514
+0x03,0xc2,0x00,0x05,0x00,0x0b,0x00,0x00,0x01,0x11,0x21,0x35,
17515
+0x21,0x11,0x21,0x11,0x21,0x35,0x21,0x11,0x02,0xb8,0xfd,0x34,
17516
+0x03,0x6c,0xfe,0x20,0xfe,0x74,0x02,0x2c,0xfe,0x00,0x05,0x16,
17517
+0xac,0xfa,0x3e,0x03,0xbe,0xac,0xfb,0x96,0x00,0x01,0x02,0x18,
17518
+0x01,0xbe,0x04,0xe5,0x07,0x81,0x00,0x09,0x00,0x00,0x01,0x11,
17519
+0x33,0x11,0x21,0x15,0x21,0x15,0x21,0x15,0x02,0x18,0xa0,0x02,
17520
+0x2d,0xfd,0xd3,0x02,0x2d,0x01,0xbe,0x05,0xc3,0xfc,0x41,0xac,
17521
+0xac,0xac,0x00,0x00,0x00,0x01,0x01,0x78,0x02,0x6a,0x04,0xe5,
17522
+0x07,0x81,0x00,0x09,0x00,0x00,0x01,0x11,0x33,0x11,0x33,0x11,
17523
+0x33,0x11,0x21,0x15,0x01,0x78,0xa0,0xa0,0xa0,0x01,0x8d,0x02,
17524
+0x6a,0x05,0x17,0xfb,0x95,0x04,0x6b,0xfb,0x95,0xac,0x00,0x00,
17525
+0x00,0x02,0x01,0x78,0x01,0xbe,0x04,0xe5,0x07,0x81,0x00,0x05,
17526
+0x00,0x0b,0x00,0x00,0x01,0x11,0x33,0x11,0x21,0x15,0x01,0x11,
17527
+0x33,0x11,0x21,0x15,0x02,0xb8,0xa0,0x01,0x8d,0xfc,0x93,0xa0,
17528
+0x02,0xcd,0x03,0x16,0x04,0x6b,0xfc,0x41,0xac,0xfe,0xa8,0x05,
17529
+0xc3,0xfa,0xe9,0xac,0x00,0x01,0xff,0xec,0x01,0xbe,0x02,0xb8,
17530
+0x07,0x81,0x00,0x09,0x00,0x00,0x03,0x35,0x21,0x35,0x21,0x35,
17531
+0x21,0x11,0x33,0x11,0x14,0x02,0x2c,0xfd,0xd4,0x02,0x2c,0xa0,
17532
+0x01,0xbe,0xac,0xac,0xac,0x03,0xbf,0xfa,0x3d,0x00,0x00,0x00,
17533
+0x00,0x01,0xff,0xec,0x02,0x6a,0x03,0x58,0x07,0x81,0x00,0x09,
17534
+0x00,0x00,0x03,0x35,0x21,0x11,0x33,0x11,0x33,0x11,0x33,0x11,
17535
+0x14,0x01,0x8c,0xa0,0xa0,0xa0,0x02,0x6a,0xac,0x04,0x6b,0xfb,
17536
+0x95,0x04,0x6b,0xfa,0xe9,0x00,0x00,0x00,0x00,0x02,0xff,0xec,
17537
+0x01,0xbe,0x03,0x58,0x07,0x81,0x00,0x05,0x00,0x0b,0x00,0x00,
17538
+0x03,0x35,0x21,0x11,0x33,0x11,0x01,0x35,0x21,0x11,0x33,0x11,
17539
+0x14,0x01,0x8c,0xa0,0xfd,0xd4,0x02,0xcc,0xa0,0x03,0x16,0xac,
17540
+0x03,0xbf,0xfb,0x95,0xfe,0xa8,0xac,0x05,0x17,0xfa,0x3d,0x00,
17541
+0x00,0x01,0x02,0x18,0xfe,0x00,0x04,0xe5,0x07,0x81,0x00,0x0b,
17542
+0x00,0x00,0x01,0x11,0x33,0x11,0x21,0x15,0x21,0x15,0x21,0x15,
17543
+0x21,0x11,0x02,0x18,0xa0,0x02,0x2d,0xfd,0xd3,0x02,0x2d,0xfd,
17544
+0xd3,0xfe,0x00,0x09,0x81,0xfc,0x41,0xac,0xac,0xac,0xfc,0x42,
17545
+0x00,0x02,0x01,0x78,0xfe,0x00,0x04,0xe5,0x07,0x81,0x00,0x03,
17546
+0x00,0x0b,0x00,0x00,0x01,0x11,0x33,0x11,0x33,0x11,0x33,0x11,
17547
+0x21,0x15,0x21,0x11,0x01,0x78,0xa0,0xa0,0xa0,0x01,0x8d,0xfe,
17548
+0x73,0xfe,0x00,0x09,0x81,0xf6,0x7f,0x09,0x81,0xfb,0x95,0xac,
17549
+0xfb,0x96,0x00,0x00,0x00,0x03,0x01,0x78,0xfe,0x00,0x04,0xe5,
17550
+0x07,0x81,0x00,0x05,0x00,0x09,0x00,0x0f,0x00,0x00,0x01,0x11,
17551
+0x33,0x11,0x21,0x15,0x01,0x11,0x33,0x11,0x33,0x11,0x21,0x15,
17552
+0x21,0x11,0x02,0xb8,0xa0,0x01,0x8d,0xfc,0x93,0xa0,0xa0,0x02,
17553
+0x2d,0xfe,0x73,0x03,0x16,0x04,0x6b,0xfc,0x41,0xac,0xfa,0xea,
17554
+0x09,0x81,0xf6,0x7f,0x04,0x6a,0xac,0xfc,0x42,0x00,0x00,0x00,
17555
+0x00,0x01,0xff,0xec,0xfe,0x00,0x02,0xb8,0x07,0x81,0x00,0x0b,
17556
+0x00,0x00,0x01,0x11,0x21,0x35,0x21,0x35,0x21,0x35,0x21,0x11,
17557
+0x33,0x11,0x02,0x18,0xfd,0xd4,0x02,0x2c,0xfd,0xd4,0x02,0x2c,
17558
+0xa0,0xfe,0x00,0x03,0xbe,0xac,0xac,0xac,0x03,0xbf,0xf6,0x7f,
17559
+0x00,0x02,0xff,0xec,0xfe,0x00,0x03,0x58,0x07,0x81,0x00,0x07,
17560
+0x00,0x0b,0x00,0x00,0x01,0x11,0x21,0x35,0x21,0x11,0x33,0x11,
17561
+0x33,0x11,0x33,0x11,0x01,0x78,0xfe,0x74,0x01,0x8c,0xa0,0xa0,
17562
+0xa0,0xfe,0x00,0x04,0x6a,0xac,0x04,0x6b,0xf6,0x7f,0x09,0x81,
17563
+0xf6,0x7f,0x00,0x00,0x00,0x03,0xff,0xec,0xfe,0x00,0x03,0x58,
17564
+0x07,0x81,0x00,0x05,0x00,0x0b,0x00,0x0f,0x00,0x00,0x03,0x35,
17565
+0x21,0x11,0x33,0x11,0x03,0x11,0x21,0x35,0x21,0x11,0x33,0x11,
17566
+0x33,0x11,0x14,0x01,0x8c,0xa0,0xa0,0xfe,0x74,0x02,0x2c,0xa0,
17567
+0xa0,0x03,0x16,0xac,0x03,0xbf,0xfb,0x95,0xfa,0xea,0x03,0xbe,
17568
+0xac,0xfb,0x96,0x09,0x81,0xf6,0x7f,0x00,0x00,0x02,0xff,0xec,
17569
+0xfe,0x00,0x04,0xe5,0x03,0xc2,0x00,0x07,0x00,0x0b,0x00,0x00,
17570
+0x01,0x11,0x21,0x35,0x21,0x15,0x21,0x11,0x01,0x35,0x21,0x15,
17571
+0x02,0x18,0xfd,0xd4,0x04,0xf9,0xfd,0xd3,0xfd,0x34,0x04,0xf9,
17572
+0xfe,0x00,0x03,0xbe,0xac,0xac,0xfc,0x42,0x05,0x16,0xac,0xac,
17573
+0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,0x03,0x16,0x00,0x0b,
17574
+0x00,0x00,0x03,0x35,0x21,0x15,0x21,0x11,0x23,0x11,0x23,0x11,
17575
+0x23,0x11,0x14,0x04,0xf9,0xfe,0x73,0xa0,0xa0,0xa0,0x02,0x6a,
17576
+0xac,0xac,0xfb,0x96,0x04,0x6a,0xfb,0x96,0x04,0x6a,0x00,0x00,
17577
+0x00,0x03,0xff,0xec,0xfe,0x00,0x04,0xe5,0x03,0xc2,0x00,0x03,
17578
+0x00,0x09,0x00,0x0f,0x00,0x00,0x03,0x35,0x21,0x15,0x01,0x11,
17579
+0x21,0x35,0x21,0x11,0x33,0x11,0x21,0x15,0x21,0x11,0x14,0x04,
17580
+0xf9,0xfc,0x93,0xfe,0x74,0x02,0x2c,0xa0,0x02,0x2d,0xfe,0x73,
17581
+0x03,0x16,0xac,0xac,0xfa,0xea,0x03,0xbe,0xac,0xfb,0x96,0x04,
17582
+0x6a,0xac,0xfc,0x42,0x00,0x02,0xff,0xec,0x01,0xbe,0x04,0xe5,
17583
+0x07,0x81,0x00,0x03,0x00,0x0b,0x00,0x00,0x03,0x35,0x21,0x15,
17584
+0x01,0x35,0x21,0x11,0x33,0x11,0x21,0x15,0x14,0x04,0xf9,0xfb,
17585
+0x07,0x02,0x2c,0xa0,0x02,0x2d,0x01,0xbe,0xac,0xac,0x01,0x58,
17586
+0xac,0x03,0xbf,0xfc,0x41,0xac,0x00,0x00,0x00,0x01,0xff,0xec,
17587
+0x02,0x6a,0x04,0xe5,0x07,0x81,0x00,0x0b,0x00,0x00,0x03,0x35,
17588
+0x21,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x21,0x15,0x14,0x01,
17589
+0x8c,0xa0,0xa0,0xa0,0x01,0x8d,0x02,0x6a,0xac,0x04,0x6b,0xfb,
17590
+0x95,0x04,0x6b,0xfb,0x95,0xac,0x00,0x00,0x00,0x03,0xff,0xec,
17591
+0x01,0xbe,0x04,0xe5,0x07,0x81,0x00,0x03,0x00,0x09,0x00,0x0f,
17592
+0x00,0x00,0x03,0x35,0x21,0x15,0x01,0x35,0x21,0x11,0x33,0x11,
17593
+0x33,0x11,0x33,0x11,0x21,0x15,0x14,0x04,0xf9,0xfb,0x07,0x01,
17594
+0x8c,0xa0,0xa0,0xa0,0x01,0x8d,0x01,0xbe,0xac,0xac,0x01,0x58,
17595
+0xac,0x03,0xbf,0xfb,0x95,0x04,0x6b,0xfc,0x41,0xac,0x00,0x00,
17596
+0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,0x07,0x81,0x00,0x13,
17597
+0x00,0x00,0x01,0x11,0x21,0x35,0x21,0x35,0x21,0x35,0x21,0x11,
17598
+0x33,0x11,0x21,0x15,0x21,0x15,0x21,0x15,0x21,0x11,0x02,0x18,
17599
+0xfd,0xd4,0x02,0x2c,0xfd,0xd4,0x02,0x2c,0xa0,0x02,0x2d,0xfd,
17600
+0xd3,0x02,0x2d,0xfd,0xd3,0xfe,0x00,0x03,0xbe,0xac,0xac,0xac,
17601
+0x03,0xbf,0xfc,0x41,0xac,0xac,0xac,0xfc,0x42,0x00,0x00,0x00,
17602
+0x00,0x01,0xff,0xec,0xfe,0x00,0x04,0xe5,0x07,0x81,0x00,0x13,
17603
+0x00,0x00,0x03,0x35,0x21,0x11,0x33,0x11,0x33,0x11,0x33,0x11,
17604
+0x21,0x15,0x21,0x11,0x23,0x11,0x23,0x11,0x23,0x11,0x14,0x01,
17605
+0x8c,0xa0,0xa0,0xa0,0x01,0x8d,0xfe,0x73,0xa0,0xa0,0xa0,0x02,
17606
+0x6a,0xac,0x04,0x6b,0xfb,0x95,0x04,0x6b,0xfb,0x95,0xac,0xfb,
17607
+0x96,0x04,0x6a,0xfb,0x96,0x04,0x6a,0x00,0x00,0x04,0xff,0xec,
17608
+0xfe,0x00,0x04,0xe5,0x07,0x81,0x00,0x05,0x00,0x0b,0x00,0x11,
17609
+0x00,0x17,0x00,0x00,0x01,0x11,0x21,0x15,0x21,0x11,0x21,0x11,
17610
+0x21,0x35,0x21,0x11,0x01,0x35,0x21,0x11,0x33,0x11,0x33,0x11,
17611
+0x33,0x11,0x21,0x15,0x02,0xb8,0x02,0x2d,0xfe,0x73,0xfe,0x20,
17612
+0xfe,0x74,0x02,0x2c,0xfd,0xd4,0x01,0x8c,0xa0,0xa0,0xa0,0x01,
17613
+0x8d,0xfe,0x00,0x04,0x6a,0xac,0xfc,0x42,0x03,0xbe,0xac,0xfb,
17614
+0x96,0x05,0x16,0xac,0x03,0xbf,0xfb,0x95,0x04,0x6b,0xfc,0x41,
17615
+0xac,0x00,0x00,0x00,0x00,0x01,0x02,0x18,0xfe,0x00,0x04,0xe5,
17616
+0x03,0x16,0x00,0x0b,0x00,0x00,0x01,0x11,0x34,0x12,0x33,0x21,
17617
+0x15,0x21,0x22,0x06,0x15,0x11,0x02,0x18,0xaa,0xaa,0x01,0x79,
17618
+0xfe,0x87,0x59,0x5b,0xfe,0x00,0x03,0x70,0xa5,0x01,0x01,0xac,
17619
+0x7e,0x7c,0xfc,0x90,0x00,0x01,0xff,0xec,0xfe,0x00,0x02,0xb8,
17620
+0x03,0x16,0x00,0x0b,0x00,0x00,0x01,0x11,0x34,0x26,0x23,0x21,
17621
+0x35,0x21,0x32,0x16,0x15,0x11,0x02,0x18,0x5b,0x59,0xfe,0x88,
17622
+0x01,0x78,0xa8,0xac,0xfe,0x00,0x03,0x70,0x7e,0x7c,0xac,0xfe,
17623
+0xa8,0xfc,0x90,0x00,0x00,0x01,0xff,0xec,0x02,0x6a,0x02,0xb8,
17624
+0x07,0x81,0x00,0x0b,0x00,0x00,0x03,0x35,0x21,0x32,0x36,0x35,
17625
+0x11,0x33,0x11,0x14,0x06,0x23,0x14,0x01,0x78,0x59,0x5b,0xa0,
17626
+0xac,0xa8,0x02,0x6a,0xac,0x7e,0x7c,0x03,0x71,0xfc,0x8f,0xa8,
17627
+0xfe,0x00,0x00,0x00,0x00,0x01,0x02,0x18,0x02,0x6a,0x04,0xe5,
17628
+0x07,0x81,0x00,0x0b,0x00,0x00,0x01,0x21,0x22,0x26,0x35,0x11,
17629
+0x33,0x11,0x14,0x16,0x33,0x21,0x04,0xe5,0xfe,0x87,0xa8,0xac,
17630
+0xa0,0x5b,0x59,0x01,0x79,0x02,0x6a,0xfe,0xa8,0x03,0x71,0xfc,
17631
+0x8f,0x7c,0x7e,0x00,0x00,0x01,0xff,0xa7,0xfe,0x14,0x05,0x2a,
17632
+0x07,0x6d,0x00,0x03,0x00,0x00,0x03,0x01,0x33,0x01,0x59,0x04,
17633
+0xd1,0xb2,0xfb,0x2f,0xfe,0x14,0x09,0x59,0xf6,0xa7,0x00,0x00,
17634
+0x00,0x01,0xff,0xa7,0xfe,0x14,0x05,0x2a,0x07,0x6d,0x00,0x03,
17635
+0x00,0x00,0x01,0x23,0x01,0x33,0x05,0x2a,0xb2,0xfb,0x2f,0xb2,
17636
+0xfe,0x14,0x09,0x59,0x00,0x01,0xff,0xa7,0xfe,0x14,0x05,0x2a,
17637
+0x07,0x6d,0x00,0x0b,0x00,0x00,0x01,0x23,0x09,0x01,0x23,0x09,
17638
+0x01,0x33,0x09,0x01,0x33,0x01,0x05,0x2a,0xb2,0xfd,0xf0,0xfd,
17639
+0xf1,0xb2,0x02,0x69,0xfd,0x97,0xb2,0x02,0x0f,0x02,0x10,0xb2,
17640
+0xfd,0x98,0xfe,0x14,0x04,0x00,0xfc,0x00,0x04,0xac,0x04,0xad,
17641
+0xfc,0x00,0x04,0x00,0xfb,0x53,0x00,0x00,0x00,0x01,0xff,0xec,
17642
+0x02,0x6a,0x02,0x68,0x03,0x16,0x00,0x03,0x00,0x00,0x03,0x35,
17643
+0x21,0x15,0x14,0x02,0x7c,0x02,0x6a,0xac,0xac,0x00,0x00,0x00,
17644
+0x00,0x01,0x02,0x18,0x02,0xc0,0x02,0xb8,0x07,0x81,0x00,0x03,
17645
+0x00,0x00,0x01,0x11,0x33,0x11,0x02,0x18,0xa0,0x02,0xc0,0x04,
17646
+0xc1,0xfb,0x3f,0x00,0x00,0x01,0x02,0x68,0x02,0x6a,0x04,0xe5,
17647
+0x03,0x16,0x00,0x03,0x00,0x00,0x01,0x35,0x21,0x15,0x02,0x68,
17648
+0x02,0x7d,0x02,0x6a,0xac,0xac,0x00,0x00,0x00,0x01,0x02,0x18,
17649
+0xfe,0x00,0x02,0xb8,0x02,0xc0,0x00,0x03,0x00,0x00,0x01,0x11,
17650
+0x33,0x11,0x02,0x18,0xa0,0xfe,0x00,0x04,0xc0,0xfb,0x40,0x00,
17651
+0x00,0x01,0xff,0xec,0x02,0x13,0x02,0x68,0x03,0x6c,0x00,0x03,
17652
+0x00,0x00,0x03,0x11,0x05,0x11,0x14,0x02,0x7c,0x02,0x14,0x01,
17653
+0x58,0x01,0xfe,0xa8,0x00,0x01,0x01,0xc8,0x02,0xc0,0x03,0x08,
17654
+0x07,0x81,0x00,0x03,0x00,0x00,0x01,0x11,0x21,0x11,0x01,0xc8,
17655
+0x01,0x40,0x02,0xc0,0x04,0xc1,0xfb,0x3f,0x00,0x01,0x02,0x68,
17656
+0x02,0x14,0x04,0xe5,0x03,0x6c,0x00,0x03,0x00,0x00,0x01,0x11,
17657
+0x21,0x11,0x02,0x68,0x02,0x7d,0x02,0x14,0x01,0x58,0xfe,0xa8,
17658
+0x00,0x01,0x01,0xc8,0xfe,0x00,0x03,0x08,0x02,0xc0,0x00,0x03,
17659
+0x00,0x00,0x01,0x11,0x21,0x11,0x01,0xc8,0x01,0x40,0xfe,0x00,
17660
+0x04,0xc0,0xfb,0x40,0x00,0x01,0xff,0xec,0x02,0x14,0x04,0xe5,
17661
+0x03,0x6c,0x00,0x07,0x00,0x00,0x03,0x35,0x21,0x35,0x21,0x11,
17662
+0x21,0x35,0x14,0x02,0x90,0x02,0x69,0xfd,0x97,0x02,0x6a,0xac,
17663
+0x56,0xfe,0xa8,0x56,0x00,0x01,0x01,0xc8,0xfe,0x00,0x03,0x08,
17664
+0x07,0x81,0x00,0x07,0x00,0x00,0x01,0x11,0x33,0x11,0x33,0x11,
17665
+0x33,0x11,0x01,0xc8,0x50,0xa0,0x50,0xfe,0x00,0x04,0xc0,0x04,
17666
+0xc1,0xfb,0x3f,0xfb,0x40,0x00,0x00,0x00,0x00,0x01,0xff,0xec,
17667
+0x02,0x14,0x04,0xe5,0x03,0x6c,0x00,0x07,0x00,0x00,0x03,0x11,
17668
+0x21,0x15,0x21,0x15,0x21,0x15,0x14,0x02,0x90,0x02,0x69,0xfd,
17669
+0x97,0x02,0x14,0x01,0x58,0x56,0xac,0x56,0x00,0x01,0x01,0xc8,
17670
+0xfe,0x00,0x03,0x08,0x07,0x81,0x00,0x07,0x00,0x00,0x01,0x11,
17671
+0x23,0x11,0x21,0x11,0x23,0x11,0x02,0x18,0x50,0x01,0x40,0x50,
17672
+0xfe,0x00,0x04,0xc0,0x04,0xc1,0xfb,0x3f,0xfb,0x40,0x00,0x00,
17673
+0xff,0xff,0xff,0xec,0x02,0x14,0x06,0x3b,0x06,0x28,0x10,0x07,
17674
+0x09,0xd0,0x00,0x00,0x04,0x14,0x00,0x00,0x00,0x01,0xff,0xec,
17675
+0xfe,0x00,0x06,0x3b,0xff,0x05,0x00,0x03,0x00,0x00,0x03,0x11,
17676
+0x21,0x11,0x14,0x06,0x4f,0xfe,0x00,0x01,0x05,0xfe,0xfb,0x00,
17677
+0x00,0x01,0xff,0xec,0xfe,0x00,0x06,0x3b,0xff,0xf6,0x00,0x03,
17678
+0x00,0x00,0x03,0x11,0x21,0x11,0x14,0x06,0x4f,0xfe,0x00,0x01,
17679
+0xf6,0xfe,0x0a,0x00,0x00,0x01,0xff,0xec,0xfe,0x00,0x06,0x3b,
17680
+0x01,0x0f,0x00,0x03,0x00,0x00,0x03,0x11,0x21,0x11,0x14,0x06,
17681
+0x4f,0xfe,0x00,0x03,0x0f,0xfc,0xf1,0x00,0x00,0x01,0xff,0xec,
17682
+0xfe,0x00,0x06,0x3b,0x02,0x14,0x00,0x03,0x00,0x00,0x03,0x11,
17683
+0x21,0x11,0x14,0x06,0x4f,0xfe,0x00,0x04,0x14,0xfb,0xec,0x00,
17684
+0x00,0x01,0xff,0xec,0xfe,0x00,0x06,0x3b,0x03,0x19,0x00,0x03,
17685
+0x00,0x00,0x03,0x11,0x21,0x11,0x14,0x06,0x4f,0xfe,0x00,0x05,
17686
+0x19,0xfa,0xe7,0x00,0x00,0x01,0xff,0xec,0xfe,0x00,0x06,0x3b,
17687
+0x04,0x1e,0x00,0x03,0x00,0x00,0x03,0x11,0x21,0x11,0x14,0x06,
17688
+0x4f,0xfe,0x00,0x06,0x1e,0xf9,0xe2,0x00,0x00,0x01,0xff,0xec,
17689
+0xfe,0x00,0x06,0x3b,0x05,0x23,0x00,0x03,0x00,0x00,0x03,0x11,
17690
+0x21,0x11,0x14,0x06,0x4f,0xfe,0x00,0x07,0x23,0xf8,0xdd,0x00,
17691
+0x00,0x01,0xff,0xec,0xfe,0x00,0x06,0x3b,0x06,0x28,0x00,0x03,
17692
+0x00,0x00,0x03,0x11,0x21,0x11,0x14,0x06,0x4f,0xfe,0x00,0x08,
17693
+0x28,0xf7,0xd8,0x00,0x00,0x01,0xff,0xec,0xfe,0x00,0x05,0x71,
17694
+0x06,0x28,0x00,0x03,0x00,0x00,0x03,0x11,0x21,0x11,0x14,0x05,
17695
+0x85,0xfe,0x00,0x08,0x28,0xf7,0xd8,0x00,0x00,0x01,0xff,0xec,
17696
+0xfe,0x00,0x04,0xa7,0x06,0x28,0x00,0x03,0x00,0x00,0x03,0x11,
17697
+0x21,0x11,0x14,0x04,0xbb,0xfe,0x00,0x08,0x28,0xf7,0xd8,0x00,
17698
+0x00,0x01,0xff,0xec,0xfe,0x00,0x03,0xdd,0x06,0x28,0x00,0x03,
17699
+0x00,0x00,0x03,0x11,0x21,0x11,0x14,0x03,0xf1,0xfe,0x00,0x08,
17700
+0x28,0xf7,0xd8,0x00,0x00,0x01,0xff,0xec,0xfe,0x00,0x03,0x13,
17701
+0x06,0x28,0x00,0x03,0x00,0x00,0x03,0x11,0x21,0x11,0x14,0x03,
17702
+0x27,0xfe,0x00,0x08,0x28,0xf7,0xd8,0x00,0x00,0x01,0xff,0xec,
17703
+0xfe,0x00,0x02,0x49,0x06,0x28,0x00,0x03,0x00,0x00,0x03,0x11,
17704
+0x21,0x11,0x14,0x02,0x5d,0xfe,0x00,0x08,0x28,0xf7,0xd8,0x00,
17705
+0x00,0x01,0xff,0xec,0xfe,0x00,0x01,0x7f,0x06,0x28,0x00,0x03,
17706
+0x00,0x00,0x03,0x11,0x21,0x11,0x14,0x01,0x93,0xfe,0x00,0x08,
17707
+0x28,0xf7,0xd8,0x00,0x00,0x01,0xff,0xec,0xfe,0x00,0x00,0xb5,
17708
+0x06,0x28,0x00,0x03,0x00,0x00,0x03,0x11,0x33,0x11,0x14,0xc9,
17709
+0xfe,0x00,0x08,0x28,0xf7,0xd8,0x00,0x00,0xff,0xff,0x03,0x13,
17710
+0xfe,0x00,0x06,0x3a,0x06,0x28,0x10,0x07,0x09,0xd8,0x03,0x27,
17711
+0x00,0x00,0x00,0x00,0x00,0x0c,0xff,0xec,0xfe,0x00,0x05,0x71,
17712
+0x06,0x28,0x00,0x03,0x00,0x07,0x00,0x0b,0x00,0x0f,0x00,0x13,
17713
+0x00,0x17,0x00,0x1b,0x00,0x1f,0x00,0x23,0x00,0x27,0x00,0x2b,
17714
+0x00,0x2f,0x00,0x00,0x01,0x11,0x33,0x11,0x21,0x11,0x33,0x11,
17715
+0x13,0x11,0x33,0x11,0x21,0x11,0x33,0x11,0x01,0x11,0x33,0x11,
17716
+0x21,0x11,0x33,0x11,0x13,0x11,0x33,0x11,0x21,0x11,0x33,0x11,
17717
+0x01,0x11,0x33,0x11,0x21,0x11,0x33,0x11,0x13,0x11,0x33,0x11,
17718
+0x21,0x11,0x33,0x11,0x04,0xa7,0xca,0xfc,0x0e,0xca,0xca,0xca,
17719
+0xfc,0x0f,0xc9,0x03,0xf2,0xca,0xfc,0x0e,0xca,0xca,0xca,0xfc,
17720
+0x0f,0xc9,0x03,0xf2,0xca,0xfc,0x0e,0xca,0xca,0xca,0xfc,0x0f,
17721
+0xc9,0xfe,0x00,0x01,0x05,0xfe,0xfb,0x01,0x05,0xfe,0xfb,0x01,
17722
+0x6d,0x01,0x05,0xfe,0xfb,0x01,0x05,0xfe,0xfb,0x01,0x6e,0x01,
17723
+0x05,0xfe,0xfb,0x01,0x05,0xfe,0xfb,0x01,0x6d,0x01,0x05,0xfe,
17724
+0xfb,0x01,0x05,0xfe,0xfb,0x01,0x6e,0x01,0x05,0xfe,0xfb,0x01,
17725
+0x05,0xfe,0xfb,0x01,0x6d,0x01,0x05,0xfe,0xfb,0x01,0x05,0xfe,
17726
+0xfb,0x00,0x00,0x00,0x00,0x04,0xff,0xec,0xfe,0x00,0x06,0x3b,
17727
+0x06,0x28,0x00,0x12,0x00,0x25,0x00,0x38,0x00,0x4b,0x00,0x00,
17728
+0x01,0x11,0x23,0x11,0x21,0x11,0x31,0x21,0x11,0x21,0x11,0x21,
17729
+0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x23,0x11,0x21,
17730
+0x11,0x31,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x11,
17731
+0x21,0x11,0x21,0x11,0x23,0x11,0x21,0x11,0x31,0x21,0x11,0x21,
17732
+0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x11,0x23,
17733
+0x11,0x21,0x11,0x31,0x21,0x11,0x21,0x11,0x21,0x11,0x21,0x11,
17734
+0x21,0x11,0x21,0x11,0x05,0x71,0xca,0x01,0x94,0xfe,0x6c,0x01,
17735
+0x94,0xfe,0x6c,0x01,0x94,0xfe,0x6c,0x01,0x94,0xfd,0xa2,0xca,
17736
+0x01,0x94,0xfe,0x6c,0x01,0x94,0xfe,0x6c,0x01,0x94,0xfe,0x6c,
17737
+0x01,0x94,0xfd,0xa2,0xca,0x01,0x94,0xfe,0x6c,0x01,0x94,0xfe,
17738
+0x6c,0x01,0x94,0xfe,0x6c,0x01,0x94,0xfd,0xa2,0xc9,0x01,0x93,
17739
+0xfe,0x6d,0x01,0x93,0xfe,0x6d,0x01,0x93,0xfe,0x6d,0x01,0x93,
17740
+0xfe,0x00,0x08,0x28,0xfe,0xfb,0xfe,0xfb,0xfe,0xfb,0xfe,0xfb,
17741
+0xfe,0xfb,0xfe,0xfb,0xfe,0xfb,0xfe,0xfb,0x08,0x28,0xfe,0xfb,
17742
+0xfe,0xfb,0xfe,0xfb,0xfe,0xfb,0xfe,0xfb,0xfe,0xfb,0xfe,0xfb,
17743
+0xfe,0xfb,0x08,0x28,0xfe,0xfb,0xfe,0xfb,0xfe,0xfb,0xfe,0xfb,
17744
+0xfe,0xfb,0xfe,0xfb,0xfe,0xfb,0xfe,0xfb,0x08,0x28,0xfe,0xfb,
17745
+0xfe,0xfb,0xfe,0xfb,0xfe,0xfb,0xfe,0xfb,0xfe,0xfb,0xfe,0xfb,
17746
+0xfe,0xfb,0x00,0x00,0x00,0x07,0xff,0xec,0xfe,0x00,0x06,0x3b,
17747
+0x06,0x28,0x00,0x19,0x00,0x1d,0x00,0x21,0x00,0x25,0x00,0x29,
17748
+0x00,0x2d,0x00,0x31,0x00,0x00,0x03,0x11,0x33,0x11,0x23,0x11,
17749
+0x33,0x11,0x23,0x11,0x33,0x11,0x21,0x11,0x33,0x11,0x21,0x11,
17750
+0x23,0x11,0x23,0x11,0x21,0x11,0x23,0x19,0x01,0x33,0x11,0x23,
17751
+0x01,0x33,0x11,0x23,0x01,0x33,0x11,0x23,0x01,0x33,0x11,0x23,
17752
+0x01,0x33,0x11,0x23,0x01,0x33,0x11,0x23,0x14,0xc9,0xc9,0xc9,
17753
+0xc9,0xc9,0x02,0x5e,0xca,0x02,0x5e,0xca,0xca,0xfd,0xa2,0xca,
17754
+0xca,0xca,0x03,0x28,0xca,0xca,0xfe,0x6c,0xca,0xca,0xfe,0x6c,
17755
+0xca,0xca,0x03,0x28,0xca,0xca,0xfe,0x6c,0xca,0xca,0xfe,0x00,
17756
+0x01,0x6d,0x01,0x05,0x01,0xd6,0x01,0x05,0x01,0xd6,0x01,0x05,
17757
+0xfe,0xfb,0x01,0x05,0xf7,0xd8,0x01,0x05,0xfe,0xfb,0x01,0x05,
17758
+0xfe,0xfb,0x05,0xb6,0x01,0x05,0xfe,0xfb,0x01,0x05,0xfd,0x8d,
17759
+0x01,0x05,0xfd,0x8e,0x01,0x05,0xfe,0xfb,0x01,0x05,0xfd,0x8d,
17760
+0x01,0x05,0x00,0x00,0xff,0xff,0xff,0xec,0x05,0x23,0x06,0x3b,
17761
+0x06,0x28,0x10,0x07,0x09,0xcd,0x00,0x00,0x07,0x23,0x00,0x00,
17762
+0xff,0xff,0x05,0x71,0xfe,0x00,0x06,0x3a,0x06,0x28,0x10,0x07,
17763
+0x09,0xdb,0x05,0x85,0x00,0x00,0x00,0x00,0x00,0x01,0xff,0xec,
17764
+0xfe,0x00,0x03,0x14,0x02,0x14,0x00,0x03,0x00,0x00,0x03,0x11,
17765
+0x21,0x11,0x14,0x03,0x28,0xfe,0x00,0x04,0x14,0xfb,0xec,0x00,
17766
+0x00,0x01,0x03,0x13,0xfe,0x00,0x06,0x3b,0x02,0x14,0x00,0x03,
17767
+0x00,0x00,0x01,0x11,0x21,0x11,0x03,0x13,0x03,0x28,0xfe,0x00,
17768
+0x04,0x14,0xfb,0xec,0x00,0x01,0xff,0xec,0x02,0x14,0x03,0x14,
17769
+0x06,0x28,0x00,0x03,0x00,0x00,0x03,0x11,0x21,0x11,0x14,0x03,
17770
+0x28,0x02,0x14,0x04,0x14,0xfb,0xec,0x00,0x00,0x01,0xff,0xec,
17771
+0xfe,0x00,0x06,0x3b,0x06,0x28,0x00,0x05,0x00,0x00,0x01,0x21,
17772
+0x11,0x21,0x11,0x21,0x06,0x3b,0xf9,0xb1,0x03,0x28,0x03,0x27,
17773
+0xfe,0x00,0x08,0x28,0xfb,0xec,0x00,0x00,0x00,0x01,0xff,0xec,
17774
+0xfe,0x00,0x06,0x3b,0x06,0x28,0x00,0x07,0x00,0x00,0x03,0x11,
17775
+0x21,0x11,0x21,0x11,0x21,0x11,0x14,0x03,0x28,0x03,0x27,0xfc,
17776
+0xd8,0x02,0x14,0x04,0x14,0xfb,0xec,0xfb,0xec,0x04,0x14,0x00,
17777
+0x00,0x01,0xff,0xec,0xfe,0x00,0x06,0x3b,0x06,0x28,0x00,0x05,
17778
+0x00,0x00,0x01,0x11,0x21,0x11,0x21,0x11,0x06,0x3b,0xfc,0xd9,
17779
+0xfc,0xd8,0x06,0x28,0xfb,0xec,0xfb,0xec,0x08,0x28,0x00,0x00,
17780
+0x00,0x01,0xff,0xec,0xfe,0x00,0x06,0x3b,0x06,0x28,0x00,0x05,
17781
+0x00,0x00,0x03,0x21,0x11,0x21,0x11,0x21,0x14,0x06,0x4f,0xfc,
17782
+0xd8,0xfc,0xd9,0x06,0x28,0xf7,0xd8,0x04,0x14,0x00,0x00,0x00,
17783
+0x00,0x01,0x03,0x13,0x02,0x14,0x06,0x3b,0x06,0x28,0x00,0x03,
17784
+0x00,0x00,0x01,0x11,0x21,0x11,0x03,0x13,0x03,0x28,0x02,0x14,
17785
+0x04,0x14,0xfb,0xec,0x00,0x01,0xff,0xec,0xfe,0x00,0x06,0x3b,
17786
+0x06,0x28,0x00,0x07,0x00,0x00,0x03,0x21,0x11,0x21,0x11,0x21,
17787
+0x11,0x21,0x14,0x03,0x27,0x03,0x28,0xfc,0xd9,0xfc,0xd8,0x02,
17788
+0x14,0x04,0x14,0xfb,0xec,0xfb,0xec,0x00,0x00,0x01,0xff,0xec,
17789
+0xfe,0x00,0x06,0x3b,0x06,0x28,0x00,0x05,0x00,0x00,0x03,0x11,
17790
+0x21,0x11,0x21,0x11,0x14,0x03,0x27,0x03,0x28,0xfe,0x00,0x04,
17791
+0x14,0x04,0x14,0xf7,0xd8,0x00,0x00,0x00,0x00,0x01,0x00,0xba,
17792
+0xff,0x03,0x06,0xd5,0x05,0x25,0x00,0x03,0x00,0x00,0x17,0x11,
17793
+0x21,0x11,0xba,0x06,0x1b,0xfc,0x06,0x20,0xf9,0xe0,0x00,0x00,
17794
+0x00,0x02,0x00,0xba,0xff,0x03,0x06,0xd5,0x05,0x25,0x00,0x03,
17795
+0x00,0x07,0x00,0x00,0x05,0x21,0x11,0x21,0x03,0x11,0x21,0x11,
17796
+0x01,0x2c,0x05,0x37,0xfa,0xc9,0x72,0x06,0x1b,0x8a,0x05,0x3c,
17797
+0xfa,0x52,0x06,0x20,0xf9,0xe0,0x00,0x00,0x00,0x02,0x00,0xba,
17798
+0xff,0x03,0x06,0xd5,0x05,0x25,0x00,0x0b,0x00,0x17,0x00,0x00,
17799
+0x25,0x14,0x33,0x21,0x32,0x35,0x11,0x34,0x23,0x21,0x22,0x15,
17800
+0x03,0x11,0x10,0x29,0x01,0x20,0x19,0x01,0x10,0x29,0x01,0x20,
17801
+0x01,0x2c,0xe4,0x03,0x6f,0xe4,0xe4,0xfc,0x91,0xe4,0x72,0x01,
17802
+0x56,0x03,0x6f,0x01,0x56,0xfe,0xaa,0xfc,0x91,0xfe,0xaa,0x5a,
17803
+0xe4,0xe4,0x03,0x74,0xe4,0xe4,0xfc,0x8c,0x03,0x74,0x01,0x56,
17804
+0xfe,0xaa,0xfc,0x8c,0xfe,0xaa,0x00,0x00,0xff,0xff,0x00,0xba,
17805
+0xff,0x03,0x06,0xd5,0x05,0x25,0x10,0x26,0x09,0xed,0x00,0x00,
17806
+0x10,0x07,0x09,0xf6,0x01,0x11,0x00,0x00,0x00,0x06,0x00,0xba,
17807
+0xff,0x03,0x06,0xd5,0x05,0x25,0x00,0x03,0x00,0x07,0x00,0x0b,
17808
+0x00,0x0f,0x00,0x13,0x00,0x17,0x00,0x00,0x17,0x11,0x21,0x11,
17809
+0x25,0x21,0x35,0x21,0x35,0x21,0x35,0x21,0x35,0x21,0x35,0x21,
17810
+0x35,0x21,0x35,0x21,0x35,0x21,0x35,0x21,0xba,0x06,0x1b,0xfa,
17811
+0x57,0x05,0x37,0xfa,0xc9,0x05,0x37,0xfa,0xc9,0x05,0x37,0xfa,
17812
+0xc9,0x05,0x37,0xfa,0xc9,0x05,0x37,0xfa,0xc9,0xfc,0x06,0x20,
17813
+0xf9,0xe0,0x72,0xb0,0x72,0xb2,0x72,0xb0,0x72,0xb2,0x72,0xb0,
17814
+0x00,0x06,0x00,0xba,0xff,0x03,0x06,0xd5,0x05,0x25,0x00,0x03,
17815
+0x00,0x07,0x00,0x0b,0x00,0x0f,0x00,0x13,0x00,0x17,0x00,0x00,
17816
+0x17,0x11,0x21,0x11,0x25,0x33,0x11,0x23,0x01,0x33,0x11,0x23,
17817
+0x01,0x33,0x11,0x23,0x01,0x33,0x11,0x23,0x01,0x33,0x11,0x23,
17818
+0xba,0x06,0x1b,0xfe,0xe1,0xb0,0xb0,0xfe,0xdc,0xb2,0xb2,0xfe,
17819
+0xde,0xb0,0xb0,0xfe,0xdc,0xb2,0xb2,0xfe,0xde,0xb0,0xb0,0xfc,
17820
+0x06,0x20,0xf9,0xe0,0x74,0x05,0x38,0xfa,0xc8,0x05,0x38,0xfa,
17821
+0xc8,0x05,0x38,0xfa,0xc8,0x05,0x38,0xfa,0xc8,0x05,0x38,0x00,
17822
+0x00,0x1a,0x00,0xba,0xff,0x03,0x06,0xd5,0x05,0x25,0x00,0x03,
17823
+0x00,0x07,0x00,0x0b,0x00,0x0f,0x00,0x13,0x00,0x17,0x00,0x1b,
17824
+0x00,0x1f,0x00,0x23,0x00,0x27,0x00,0x2b,0x00,0x2f,0x00,0x33,
17825
+0x00,0x37,0x00,0x3b,0x00,0x3f,0x00,0x43,0x00,0x47,0x00,0x4b,
17826
+0x00,0x4f,0x00,0x53,0x00,0x57,0x00,0x5b,0x00,0x5f,0x00,0x63,
17827
+0x00,0x67,0x00,0x00,0x05,0x33,0x35,0x23,0x05,0x33,0x35,0x23,
17828
+0x05,0x33,0x35,0x23,0x01,0x33,0x35,0x23,0x11,0x33,0x35,0x23,
17829
+0x11,0x33,0x35,0x23,0x11,0x33,0x35,0x23,0x11,0x33,0x35,0x23,
17830
+0x01,0x33,0x35,0x23,0x11,0x33,0x35,0x23,0x11,0x33,0x35,0x23,
17831
+0x11,0x33,0x35,0x23,0x01,0x33,0x35,0x23,0x11,0x33,0x35,0x23,
17832
+0x11,0x33,0x35,0x23,0x11,0x33,0x35,0x23,0x01,0x33,0x35,0x23,
17833
+0x11,0x33,0x35,0x23,0x11,0x33,0x35,0x23,0x11,0x33,0x35,0x23,
17834
+0x01,0x33,0x35,0x23,0x11,0x33,0x35,0x23,0x11,0x33,0x35,0x23,
17835
+0x11,0x33,0x35,0x23,0x11,0x33,0x35,0x23,0x01,0x11,0x21,0x11,
17836
+0x02,0x4c,0xb2,0xb2,0x01,0x24,0xb0,0xb0,0x01,0x22,0xb2,0xb2,
17837
+0xfc,0x9a,0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,0xae,
17838
+0x01,0x20,0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0x01,0x24,
17839
+0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0xb0,0x01,0x22,0xb2,0xb2,
17840
+0xb2,0xb2,0xb2,0xb2,0xb2,0xb2,0x01,0x24,0xad,0xad,0xad,0xad,
17841
+0xad,0xad,0xad,0xad,0xad,0xad,0xfb,0x04,0x06,0x1b,0x88,0xae,
17842
+0xae,0xae,0xae,0xae,0x03,0xdc,0xae,0xfe,0x2e,0xb2,0xfe,0x2c,
17843
+0xb0,0xfe,0x2c,0xb2,0xfe,0x2e,0xae,0x03,0xdc,0xae,0xfe,0x2e,
17844
+0xb2,0xfe,0x2c,0xb0,0xfe,0x2c,0xb2,0x02,0xb8,0xae,0xfe,0x2e,
17845
+0xb2,0xfe,0x2c,0xb0,0xfe,0x2c,0xb2,0x02,0xb8,0xae,0xfe,0x2e,
17846
+0xb2,0xfe,0x2c,0xb0,0xfe,0x2c,0xb2,0x02,0xb8,0xae,0xfe,0x2e,
17847
+0xb2,0xfe,0x2c,0xb0,0xfe,0x2c,0xb2,0xfe,0x2e,0xae,0xfe,0xde,
17848
+0x06,0x20,0xf9,0xe0,0x00,0x08,0x00,0xba,0xff,0x03,0x06,0xd5,
17849
+0x05,0x25,0x00,0x03,0x00,0x06,0x00,0x0a,0x00,0x0e,0x00,0x14,
17850
+0x00,0x18,0x00,0x1c,0x00,0x1f,0x00,0x00,0x17,0x11,0x21,0x11,
17851
+0x01,0x15,0x33,0x03,0x15,0x01,0x33,0x01,0x15,0x01,0x37,0x01,
17852
+0x15,0x01,0x37,0x35,0x01,0x33,0x01,0x35,0x01,0x33,0x01,0x35,
17853
+0x01,0x33,0x17,0x35,0xba,0x06,0x1b,0xfa,0x57,0xe2,0xe2,0x01,
17854
+0x84,0xfb,0xfd,0x81,0x03,0x21,0xfb,0xfb,0xe4,0x04,0xbe,0x79,
17855
+0xfb,0x42,0xa2,0x04,0x1c,0xfc,0xdf,0xa2,0x02,0x7f,0xfe,0x7c,
17856
+0xa2,0xe2,0xfc,0x06,0x20,0xf9,0xe0,0x01,0x54,0xe2,0x02,0x7f,
17857
+0xfc,0xfe,0x7d,0x04,0x1c,0xfc,0xfc,0xdf,0x01,0x05,0x3c,0x7f,
17858
+0xfb,0x42,0x01,0x7f,0x04,0xbd,0xfb,0xe4,0xfc,0x03,0x20,0xfd,
17859
+0x81,0xfc,0x01,0x83,0xe2,0xe2,0x00,0x00,0x00,0x08,0x00,0xba,
17860
+0xff,0x03,0x06,0xd5,0x05,0x25,0x00,0x03,0x00,0x06,0x00,0x0a,
17861
+0x00,0x0e,0x00,0x14,0x00,0x18,0x00,0x1c,0x00,0x1f,0x00,0x00,
17862
+0x17,0x11,0x21,0x11,0x25,0x33,0x35,0x05,0x33,0x01,0x35,0x01,
17863
+0x17,0x01,0x35,0x01,0x17,0x01,0x35,0x23,0x01,0x35,0x01,0x23,
17864
+0x01,0x35,0x01,0x23,0x01,0x35,0x37,0x23,0xba,0x06,0x1b,0xfe,
17865
+0xac,0xe2,0xfd,0x81,0xfb,0x01,0x84,0xfb,0xe4,0xfb,0x03,0x21,
17866
+0xfa,0xc9,0x79,0x04,0xbe,0x79,0xfb,0x42,0x04,0x1c,0xfb,0xfc,
17867
+0xdf,0x02,0x7f,0xfb,0xfe,0x7c,0xe2,0xe2,0xfc,0x06,0x20,0xf9,
17868
+0xe0,0x72,0xe2,0xe2,0x01,0x83,0xfc,0xfd,0x81,0x01,0x03,0x21,
17869
+0xfc,0xfb,0xe4,0x01,0x04,0xbe,0x7f,0xfb,0x43,0xa1,0x04,0x1c,
17870
+0xfc,0xe0,0xa1,0x02,0x7f,0xfe,0x7d,0xa1,0xe2,0x00,0x00,0x00,
17871
+0x00,0x1a,0x00,0xba,0xff,0x03,0x06,0xd5,0x05,0x25,0x00,0x04,
17872
+0x00,0x09,0x00,0x0e,0x00,0x12,0x00,0x17,0x00,0x1c,0x00,0x20,
17873
+0x00,0x24,0x00,0x28,0x00,0x2d,0x00,0x31,0x00,0x35,0x00,0x39,
17874
+0x00,0x3d,0x00,0x41,0x00,0x46,0x00,0x4b,0x00,0x4f,0x00,0x53,
17875
+0x00,0x57,0x00,0x5c,0x00,0x61,0x00,0x65,0x00,0x6a,0x00,0x6f,
17876
+0x00,0x73,0x00,0x00,0x01,0x17,0x37,0x27,0x23,0x11,0x17,0x37,
17877
+0x27,0x07,0x01,0x17,0x37,0x27,0x23,0x01,0x17,0x37,0x27,0x03,
17878
+0x17,0x37,0x27,0x07,0x01,0x17,0x37,0x27,0x23,0x01,0x17,0x37,
17879
+0x27,0x01,0x17,0x37,0x27,0x01,0x17,0x37,0x27,0x01,0x17,0x37,
17880
+0x35,0x23,0x01,0x17,0x37,0x27,0x01,0x17,0x37,0x27,0x01,0x17,
17881
+0x37,0x27,0x01,0x17,0x37,0x27,0x01,0x17,0x37,0x27,0x01,0x33,
17882
+0x37,0x27,0x07,0x01,0x17,0x37,0x35,0x27,0x01,0x17,0x37,0x27,
17883
+0x01,0x17,0x37,0x27,0x01,0x17,0x37,0x27,0x01,0x17,0x33,0x37,
17884
+0x27,0x01,0x17,0x37,0x35,0x27,0x01,0x17,0x37,0x27,0x01,0x17,
17885
+0x33,0x37,0x27,0x05,0x17,0x33,0x35,0x27,0x01,0x11,0x21,0x11,
17886
+0x01,0x2c,0x32,0x7c,0x35,0x79,0x32,0x7e,0x7e,0x32,0x01,0x4f,
17887
+0x7e,0x7e,0x35,0x92,0xfe,0xfe,0x7e,0x7c,0x7e,0xfe,0x32,0x7e,
17888
+0x7e,0x32,0x02,0xec,0x7e,0x7e,0x35,0x92,0xfe,0xfd,0x7e,0x7d,
17889
+0x7d,0xfe,0xb5,0x7d,0x7d,0x7e,0xfe,0xb5,0x7e,0x7e,0x7e,0x03,
17890
+0x89,0x7d,0x31,0x79,0xfe,0xfd,0x7c,0x7e,0x7c,0xfe,0xb3,0x7c,
17891
+0x7e,0x7c,0xfe,0xb5,0x7d,0x7c,0x7c,0xfe,0xb5,0x7c,0x7e,0x7c,
17892
+0xfe,0xb3,0x7d,0x7d,0x7c,0xff,0x00,0x7a,0x34,0x7c,0x32,0x04,
17893
+0x88,0x7e,0x31,0x32,0xfe,0xb4,0x7e,0x7e,0x7e,0xfe,0xb5,0x7e,
17894
+0x7c,0x7e,0xfe,0xb6,0x7e,0x7e,0x7e,0xfe,0xb3,0x35,0x93,0x34,
17895
+0x7e,0x02,0xbb,0x7d,0x32,0x32,0xfe,0xb5,0x7e,0x7d,0x7e,0xfe,
17896
+0xb5,0x34,0x93,0x35,0x7e,0x01,0x1f,0x34,0x7a,0x32,0xfa,0x89,
17897
+0x06,0x1b,0x04,0x33,0x31,0x7c,0x34,0xfd,0xe4,0x32,0x7e,0x7e,
17898
+0x31,0x01,0x4f,0x7e,0x7e,0x34,0xfe,0xff,0x7e,0x7c,0x7e,0xfc,
17899
+0xcc,0x31,0x7e,0x7d,0x31,0x02,0xec,0x7e,0x7e,0x34,0xfe,0xfd,
17900
+0x7d,0x7d,0x7e,0xfe,0xb5,0x7e,0x7d,0x7d,0xfe,0xb6,0x7e,0x7e,
17901
+0x7e,0x01,0xec,0x7c,0x31,0x7f,0xfe,0xfd,0x7c,0x7e,0x7c,0xfe,
17902
+0xb4,0x7d,0x7e,0x7c,0xfe,0xb6,0x7c,0x7c,0x7c,0xfe,0xb5,0x7c,
17903
+0x7e,0x7c,0xfe,0xb4,0x7c,0x7d,0x7d,0xfe,0x81,0x34,0x7c,0x31,
17904
+0x02,0xed,0x7e,0x32,0x99,0x31,0xfe,0xb4,0x7e,0x7e,0x7e,0xfe,
17905
+0xb5,0x7e,0x7c,0x7e,0xfe,0xb5,0x7e,0x7e,0x7e,0xfe,0xb4,0x34,
17906
+0x34,0x7e,0x01,0x1e,0x7e,0x31,0x99,0x31,0xfe,0xb5,0x7d,0x7c,
17907
+0x7e,0xfe,0xb5,0x34,0x34,0x7e,0x7e,0x34,0x7f,0x31,0xfe,0xde,
17908
+0x06,0x20,0xf9,0xe0,0x00,0x01,0x00,0xba,0x00,0x16,0x04,0xb2,
17909
+0x04,0x12,0x00,0x03,0x00,0x00,0x37,0x11,0x21,0x11,0xba,0x03,
17910
+0xf8,0x16,0x03,0xfc,0xfc,0x04,0x00,0x00,0x00,0x02,0x00,0xba,
17911
+0x00,0x16,0x04,0xb2,0x04,0x12,0x00,0x03,0x00,0x07,0x00,0x00,
17912
+0x25,0x21,0x11,0x21,0x03,0x11,0x21,0x11,0x01,0x2c,0x03,0x14,
17913
+0xfc,0xec,0x72,0x03,0xf8,0x88,0x03,0x18,0xfc,0x76,0x03,0xfc,
17914
+0xfc,0x04,0x00,0x00,0x00,0x01,0x00,0xba,0x00,0x9a,0x06,0xd5,
17915
+0x03,0x8e,0x00,0x03,0x00,0x00,0x25,0x21,0x11,0x21,0x06,0xd5,
17916
+0xf9,0xe5,0x06,0x1b,0x9a,0x02,0xf4,0x00,0x00,0x02,0x00,0xba,
17917
+0x00,0x9a,0x06,0xd5,0x03,0x8e,0x00,0x03,0x00,0x07,0x00,0x00,
17918
+0x01,0x11,0x21,0x11,0x05,0x21,0x11,0x21,0x06,0x63,0xfa,0xc9,
17919
+0x05,0xa9,0xf9,0xe5,0x06,0x1b,0x01,0x0c,0x02,0x10,0xfd,0xf0,
17920
+0x72,0x02,0xf4,0x00,0x00,0x01,0x00,0xba,0xff,0x06,0x03,0xad,
17921
+0x05,0x22,0x00,0x03,0x00,0x00,0x17,0x11,0x21,0x11,0xba,0x02,
17922
+0xf3,0xfa,0x06,0x1c,0xf9,0xe4,0x00,0x00,0x00,0x02,0x00,0xba,
17923
+0xff,0x06,0x03,0xad,0x05,0x22,0x00,0x03,0x00,0x07,0x00,0x00,
17924
+0x05,0x21,0x11,0x21,0x03,0x11,0x21,0x11,0x01,0x2c,0x02,0x0f,
17925
+0xfd,0xf1,0x72,0x02,0xf3,0x88,0x05,0x38,0xfa,0x56,0x06,0x1c,
17926
+0xf9,0xe4,0x00,0x00,0x00,0x01,0x00,0x06,0x00,0x9a,0x06,0x21,
17927
+0x03,0x8e,0x00,0x03,0x00,0x00,0x25,0x21,0x01,0x21,0x04,0x98,
17928
+0xfb,0x6e,0x01,0x8a,0x04,0x91,0x9a,0x02,0xf4,0x00,0x00,0x00,
17929
+0x00,0x02,0x00,0x06,0x00,0x9a,0x06,0x21,0x03,0x8e,0x00,0x03,
17930
+0x00,0x07,0x00,0x00,0x09,0x01,0x21,0x01,0x05,0x21,0x01,0x21,
17931
+0x04,0x62,0x01,0x10,0xfc,0x53,0xfe,0xef,0x03,0xe4,0xfb,0x6e,
17932
+0x01,0x8a,0x04,0x91,0x01,0x0c,0x02,0x10,0xfd,0xf0,0x72,0x02,
17933
+0xf4,0x00,0x00,0x00,0x00,0x01,0x00,0x06,0xff,0x03,0x06,0x21,
17934
+0x05,0x25,0x00,0x02,0x00,0x00,0x17,0x09,0x01,0x06,0x03,0x0d,
17935
+0x03,0x0e,0xfc,0x06,0x20,0xf9,0xe0,0x00,0x00,0x02,0x00,0x06,
17936
+0xff,0x03,0x06,0x21,0x05,0x25,0x00,0x02,0x00,0x05,0x00,0x00,
17937
+0x17,0x21,0x09,0x03,0xb1,0x04,0xc5,0xfd,0x9d,0xfc,0xf3,0x03,
17938
+0x0d,0x03,0x0e,0x8a,0x04,0xca,0xfa,0xc4,0x06,0x20,0xf9,0xe0,
17939
+0x00,0x01,0x00,0x06,0x00,0x16,0x03,0xfe,0x04,0x12,0x00,0x02,
17940
+0x00,0x00,0x37,0x09,0x01,0x06,0x01,0xfc,0x01,0xfc,0x16,0x03,
17941
+0xfc,0xfc,0x04,0x00,0x00,0x02,0x00,0x06,0x00,0x16,0x03,0xfe,
17942
+0x04,0x12,0x00,0x02,0x00,0x05,0x00,0x00,0x37,0x21,0x09,0x03,
17943
+0xb1,0x02,0xa2,0xfe,0xaf,0xfe,0x04,0x01,0xfc,0x01,0xfc,0x88,
17944
+0x02,0xa6,0xfc,0xe8,0x03,0xfc,0xfc,0x04,0x00,0x01,0x00,0x06,
17945
+0xff,0x03,0x06,0x21,0x05,0x25,0x00,0x02,0x00,0x00,0x17,0x11,
17946
+0x01,0x06,0x06,0x1b,0xfc,0x06,0x20,0xfc,0xf0,0x00,0x00,0x00,
17947
+0x00,0x02,0x00,0x06,0xff,0x03,0x06,0x21,0x05,0x25,0x00,0x02,
17948
+0x00,0x05,0x00,0x00,0x17,0x09,0x01,0x03,0x11,0x01,0x78,0x04,
17949
+0xc5,0xfb,0x3b,0x72,0x06,0x1b,0x52,0x02,0x66,0x02,0x66,0xfa,
17950
+0x8a,0x06,0x20,0xfc,0xf0,0x00,0x00,0x00,0x00,0x01,0x00,0x06,
17951
+0x00,0x16,0x03,0xfe,0x04,0x12,0x00,0x02,0x00,0x00,0x37,0x11,
17952
+0x01,0x06,0x03,0xf8,0x16,0x03,0xfc,0xfe,0x02,0x00,0x00,0x00,
17953
+0x00,0x02,0x00,0x06,0x00,0x16,0x03,0xfe,0x04,0x12,0x00,0x02,
17954
+0x00,0x05,0x00,0x00,0x37,0x09,0x01,0x03,0x11,0x01,0x78,0x02,
17955
+0xa2,0xfd,0x5e,0x72,0x03,0xf8,0xc1,0x01,0x53,0x01,0x53,0xfc,
17956
+0xaf,0x03,0xfc,0xfe,0x02,0x00,0x00,0x00,0x00,0x01,0x00,0x06,
17957
+0x00,0x16,0x06,0x21,0x04,0x12,0x00,0x02,0x00,0x00,0x37,0x11,
17958
+0x01,0x06,0x06,0x1b,0x16,0x03,0xfc,0xfe,0x02,0x00,0x00,0x00,
17959
+0x00,0x02,0x00,0x06,0x00,0x16,0x06,0x21,0x04,0x12,0x00,0x02,
17960
+0x00,0x05,0x00,0x00,0x37,0x09,0x01,0x03,0x11,0x01,0x78,0x04,
17961
+0x8c,0xfb,0x74,0x72,0x06,0x1b,0xc1,0x01,0x53,0x01,0x53,0xfc,
17962
+0xaf,0x03,0xfc,0xfe,0x02,0x00,0x00,0x00,0x00,0x01,0x00,0x06,
17963
+0xff,0x03,0x06,0x21,0x05,0x25,0x00,0x02,0x00,0x00,0x13,0x21,
17964
+0x01,0x06,0x06,0x1b,0xfc,0xf2,0x05,0x24,0xf9,0xe0,0x00,0x00,
17965
+0x00,0x02,0x00,0x06,0xff,0x03,0x06,0x21,0x05,0x25,0x00,0x02,
17966
+0x00,0x05,0x00,0x00,0x13,0x09,0x01,0x25,0x21,0x01,0xb1,0x02,
17967
+0x62,0x02,0x63,0xfa,0x90,0x06,0x1b,0xfc,0xf2,0x04,0xb2,0xfb,
17968
+0x36,0x04,0xca,0x72,0xf9,0xe0,0x00,0x00,0x00,0x01,0x00,0x06,
17969
+0x00,0x16,0x03,0xfe,0x04,0x12,0x00,0x02,0x00,0x00,0x13,0x21,
17970
+0x01,0x06,0x03,0xf8,0xfe,0x04,0x04,0x12,0xfc,0x04,0x00,0x00,
17971
+0x00,0x02,0x00,0x06,0x00,0x16,0x03,0xfe,0x04,0x12,0x00,0x02,
17972
+0x00,0x05,0x00,0x00,0x13,0x09,0x01,0x25,0x21,0x01,0xb1,0x01,
17973
+0x51,0x01,0x51,0xfc,0xb3,0x03,0xf8,0xfe,0x04,0x03,0xa0,0xfd,
17974
+0x5a,0x02,0xa6,0x72,0xfc,0x04,0x00,0x00,0x00,0x01,0x00,0x06,
17975
+0xff,0x03,0x06,0x21,0x05,0x25,0x00,0x02,0x00,0x00,0x13,0x01,
17976
+0x11,0x06,0x06,0x1b,0x02,0x14,0x03,0x10,0xf9,0xe0,0x00,0x00,
17977
+0x00,0x02,0x00,0x06,0xff,0x03,0x06,0x21,0x05,0x25,0x00,0x02,
17978
+0x00,0x05,0x00,0x00,0x13,0x01,0x11,0x09,0x01,0x11,0xea,0x04,
17979
+0xc5,0xfa,0x57,0x06,0x1b,0x02,0x14,0xfd,0x9a,0x04,0xcc,0xfd,
17980
+0x9a,0x03,0x10,0xf9,0xe0,0x00,0x00,0x00,0x00,0x01,0x00,0x06,
17981
+0x00,0x16,0x03,0xfe,0x04,0x12,0x00,0x02,0x00,0x00,0x13,0x01,
17982
+0x11,0x06,0x03,0xf8,0x02,0x14,0x01,0xfe,0xfc,0x04,0x00,0x00,
17983
+0x00,0x02,0x00,0x06,0x00,0x16,0x03,0xfe,0x04,0x12,0x00,0x02,
17984
+0x00,0x05,0x00,0x00,0x13,0x01,0x11,0x09,0x01,0x11,0xea,0x02,
17985
+0xa2,0xfc,0x7a,0x03,0xf8,0x02,0x14,0xfe,0xad,0x02,0xa6,0xfe,
17986
+0xad,0x01,0xfe,0xfc,0x04,0x00,0x00,0x00,0x00,0x01,0x00,0x06,
17987
+0x00,0x16,0x06,0x21,0x04,0x12,0x00,0x02,0x00,0x00,0x13,0x01,
17988
+0x11,0x06,0x06,0x1b,0x02,0x14,0x01,0xfe,0xfc,0x04,0x00,0x00,
17989
+0x00,0x02,0x00,0x06,0x00,0x16,0x06,0x21,0x04,0x12,0x00,0x02,
17990
+0x00,0x05,0x00,0x00,0x09,0x01,0x11,0x09,0x01,0x11,0x01,0x23,
17991
+0x04,0x8c,0xfa,0x57,0x06,0x1b,0x02,0x14,0xfe,0xad,0x02,0xa6,
17992
+0xfe,0xad,0x01,0xfe,0xfc,0x04,0x00,0x00,0x00,0x01,0x00,0x06,
17993
+0xff,0x03,0x06,0x21,0x05,0x25,0x00,0x03,0x00,0x00,0x13,0x09,
17994
+0x02,0x06,0x03,0x0d,0x03,0x0e,0xfc,0xf2,0x02,0x14,0x03,0x10,
17995
+0xfc,0xf0,0xfc,0xf0,0x00,0x02,0x00,0x06,0xff,0x03,0x06,0x21,
17996
+0x05,0x25,0x00,0x03,0x00,0x07,0x00,0x00,0x13,0x09,0x06,0x9e,
17997
+0x02,0x75,0x02,0x76,0xfd,0x8a,0xfc,0xf3,0x03,0x0d,0x03,0x0e,
17998
+0xfc,0xf2,0x02,0x14,0xfd,0x88,0x02,0x78,0x02,0x78,0xfd,0x88,
17999
+0x03,0x10,0xfc,0xf0,0xfc,0xf0,0x00,0x00,0x00,0x03,0x00,0x06,
18000
+0xff,0x03,0x06,0x21,0x05,0x25,0x00,0x03,0x00,0x07,0x00,0x0b,
18001
+0x00,0x00,0x09,0x0b,0x01,0x3e,0x01,0xd5,0x01,0xd5,0xfe,0x2b,
18002
+0xfd,0x8b,0x02,0x75,0x02,0x76,0xfd,0x8a,0xfc,0xf3,0x03,0x0d,
18003
+0x03,0x0e,0xfc,0xf2,0x02,0x14,0x01,0xd7,0xfe,0x29,0xfe,0x29,
18004
+0x01,0xd7,0xfd,0x88,0x02,0x78,0x02,0x78,0xfd,0x88,0x03,0x10,
18005
+0xfc,0xf0,0xfc,0xf0,0x00,0x03,0x00,0x70,0xfe,0xff,0x06,0x8b,
18006
+0x05,0x29,0x00,0x0d,0x00,0x1b,0x00,0x29,0x00,0x00,0x24,0x10,
18007
+0x37,0x36,0x33,0x32,0x17,0x16,0x10,0x07,0x06,0x23,0x22,0x27,
18008
+0x00,0x10,0x05,0x16,0x33,0x32,0x37,0x24,0x10,0x25,0x26,0x23,
18009
+0x22,0x07,0x00,0x10,0x25,0x36,0x33,0x32,0x17,0x04,0x10,0x05,
18010
+0x06,0x23,0x22,0x27,0x01,0x82,0xfe,0x7e,0x7f,0x80,0x7e,0xfe,
18011
+0xfe,0x7e,0x80,0x7f,0x7e,0xfe,0x65,0x01,0x4d,0xa5,0xa6,0xa7,
18012
+0xa5,0x01,0x4d,0xfe,0xb3,0xa5,0xa7,0xa6,0xa5,0xfe,0x3e,0x01,
18013
+0x87,0xc3,0xc3,0xc4,0xc3,0x01,0x87,0xfe,0x79,0xc3,0xc4,0xc3,
18014
+0xc3,0xef,0x02,0x4a,0x92,0x4a,0x4a,0x92,0xfd,0xb6,0x92,0x4a,
18015
+0x4a,0x03,0x36,0xfd,0x02,0xc0,0x60,0x60,0xc0,0x02,0xfe,0xc0,
18016
+0x60,0x60,0xfb,0xff,0x03,0x84,0xe2,0x71,0x71,0xe2,0xfc,0x7c,
18017
+0xe2,0x71,0x71,0x00,0x00,0x02,0x00,0x06,0xfe,0x23,0x03,0xee,
18018
+0x06,0x75,0x00,0x03,0x00,0x07,0x00,0x22,0x40,0x11,0x02,0x06,
18019
+0x00,0x08,0x04,0x06,0x08,0x06,0x04,0x03,0x02,0x01,0x00,0x06,
18020
+0x05,0x07,0x08,0x10,0xd4,0xcc,0x17,0x39,0x31,0x00,0x10,0xd4,
18021
+0xcc,0x11,0x39,0x12,0x39,0x30,0x09,0x07,0x01,0xfa,0xfe,0x7f,
18022
+0x01,0x81,0x01,0x81,0xfe,0x7f,0x01,0xf4,0xfe,0x0c,0xfe,0x0c,
18023
+0x05,0x81,0xfc,0xcf,0xfc,0xc7,0x03,0x39,0x04,0x25,0xfb,0xdb,
18024
+0xfb,0xd3,0x04,0x2d,0x00,0x02,0x00,0x70,0xfe,0xff,0x06,0x8b,
18025
+0x05,0x29,0x00,0x0d,0x00,0x1b,0x00,0x00,0x12,0x10,0x05,0x16,
18026
+0x33,0x32,0x37,0x24,0x10,0x25,0x26,0x23,0x22,0x07,0x00,0x10,
18027
+0x25,0x36,0x33,0x32,0x17,0x04,0x10,0x05,0x06,0x23,0x22,0x27,
18028
+0xe5,0x01,0x4d,0xa5,0xa6,0xa7,0xa5,0x01,0x4d,0xfe,0xb3,0xa5,
18029
+0xa7,0xa6,0xa5,0xfe,0x3e,0x01,0x87,0xc3,0xc3,0xc4,0xc3,0x01,
18030
+0x87,0xfe,0x79,0xc3,0xc4,0xc3,0xc3,0x03,0x93,0xfd,0x02,0xc0,
18031
+0x60,0x60,0xc0,0x02,0xfe,0xc0,0x60,0x60,0xfb,0xff,0x03,0x84,
18032
+0xe2,0x71,0x71,0xe2,0xfc,0x7c,0xe2,0x71,0x71,0x00,0x00,0x00,
18033
+0x00,0x08,0x00,0x72,0xff,0x01,0x06,0x89,0x05,0x27,0x00,0x09,
18034
+0x00,0x13,0x00,0x1d,0x00,0x27,0x00,0x2f,0x00,0x37,0x00,0x3f,
18035
+0x00,0x47,0x00,0x00,0x25,0x16,0x17,0x16,0x17,0x07,0x26,0x27,
18036
+0x26,0x27,0x05,0x36,0x37,0x36,0x37,0x17,0x06,0x07,0x06,0x07,
18037
+0x13,0x26,0x27,0x26,0x27,0x37,0x16,0x17,0x16,0x17,0x25,0x06,
18038
+0x07,0x06,0x07,0x27,0x36,0x37,0x36,0x37,0x13,0x16,0x32,0x37,
18039
+0x17,0x06,0x22,0x27,0x01,0x36,0x34,0x27,0x37,0x16,0x14,0x07,
18040
+0x01,0x26,0x22,0x07,0x27,0x36,0x32,0x17,0x01,0x06,0x14,0x17,
18041
+0x07,0x26,0x34,0x37,0x01,0x5c,0x2b,0x3b,0x2e,0x38,0x31,0x46,
18042
+0x39,0x4b,0x35,0x03,0xda,0x38,0x2e,0x34,0x32,0x64,0x3b,0x45,
18043
+0x39,0x47,0x9c,0x2c,0x3a,0x2e,0x38,0x30,0x47,0x39,0x4a,0x36,
18044
+0xfc,0x26,0x38,0x2e,0x3b,0x2b,0x64,0x31,0x4f,0x39,0x46,0xed,
18045
+0x4c,0x9a,0x4c,0x26,0x5f,0xc0,0x60,0x03,0x4a,0x10,0x10,0x6e,
18046
+0x14,0x14,0xfd,0xa1,0x4c,0x9a,0x4c,0x27,0x60,0xc0,0x5f,0xfc,
18047
+0xb8,0x10,0x10,0x6e,0x14,0x14,0x8f,0x3c,0x31,0x26,0x20,0x6a,
18048
+0x28,0x30,0x3d,0x4a,0x75,0x20,0x26,0x2c,0x41,0x3d,0x4e,0x3a,
18049
+0x30,0x28,0x04,0x27,0x3c,0x31,0x26,0x20,0x6a,0x28,0x30,0x3d,
18050
+0x4a,0x75,0x20,0x26,0x31,0x3c,0x3e,0x45,0x42,0x30,0x28,0xfa,
18051
+0xd4,0x16,0x16,0x6e,0x1b,0x1b,0x02,0x5f,0x49,0xa0,0x49,0x27,
18052
+0x5b,0xca,0x5b,0x03,0x4a,0x16,0x16,0x6e,0x1b,0x1b,0xfd,0xa1,
18053
+0x49,0xa0,0x49,0x27,0x5b,0xca,0x5b,0x00,0x00,0x06,0x00,0x70,
18054
+0xfe,0xff,0x06,0x8b,0x05,0x29,0x00,0x0d,0x00,0x17,0x00,0x1b,
18055
+0x00,0x25,0x00,0x2f,0x00,0x33,0x00,0x00,0x36,0x10,0x25,0x36,
18056
+0x33,0x32,0x17,0x04,0x10,0x05,0x06,0x23,0x22,0x27,0x13,0x11,
18057
+0x16,0x17,0x16,0x17,0x11,0x06,0x07,0x06,0x07,0x06,0x10,0x17,
18058
+0x01,0x11,0x16,0x33,0x32,0x37,0x11,0x26,0x23,0x22,0x17,0x11,
18059
+0x36,0x37,0x36,0x37,0x11,0x26,0x27,0x26,0x17,0x11,0x36,0x10,
18060
+0x70,0x01,0x87,0xc3,0xc3,0xc4,0xc3,0x01,0x87,0xfe,0x79,0xc3,
18061
+0xc4,0xc3,0xc3,0x0b,0x17,0x19,0x41,0x41,0x41,0x41,0x19,0x89,
18062
+0xab,0xab,0x01,0x96,0x2c,0x2b,0x2d,0x2c,0x2c,0x2d,0x2b,0xf6,
18063
+0x41,0x40,0x1a,0x17,0x17,0x1a,0x40,0xe3,0xaa,0x52,0x03,0x84,
18064
+0xe2,0x71,0x71,0xe2,0xfc,0x7c,0xe2,0x71,0x71,0x04,0xc5,0xfb,
18065
+0xbe,0x0f,0x0f,0x25,0x17,0x04,0xf6,0x17,0x25,0x0f,0x6d,0xb1,
18066
+0xfd,0xdc,0xb1,0x04,0x5b,0xfa,0xd0,0x07,0x07,0x05,0x30,0x07,
18067
+0x24,0xfb,0x0a,0x17,0x25,0x0f,0x10,0x04,0x40,0x10,0x0f,0x25,
18068
+0xa2,0xfc,0x7c,0xb1,0x02,0x22,0x00,0x00,0x00,0x04,0x00,0x70,
18069
+0xfe,0xff,0x06,0x8b,0x05,0x29,0x00,0x0d,0x00,0x1b,0x00,0x29,
18070
+0x00,0x37,0x00,0x00,0x00,0x10,0x17,0x16,0x33,0x32,0x37,0x36,
18071
+0x10,0x27,0x26,0x23,0x22,0x07,0x02,0x10,0x37,0x36,0x33,0x32,
18072
+0x17,0x16,0x10,0x07,0x06,0x23,0x22,0x27,0x00,0x10,0x05,0x16,
18073
+0x33,0x32,0x37,0x24,0x10,0x25,0x26,0x23,0x22,0x07,0x00,0x10,
18074
+0x25,0x36,0x33,0x32,0x17,0x04,0x10,0x05,0x06,0x23,0x22,0x27,
18075
+0x02,0x99,0x72,0x39,0x39,0x3a,0x39,0x72,0x72,0x39,0x3a,0x39,
18076
+0x39,0xed,0xb0,0x58,0x57,0x58,0x58,0xb0,0xb0,0x58,0x58,0x57,
18077
+0x58,0xfe,0x17,0x01,0x4d,0xa5,0xa6,0xa7,0xa5,0x01,0x4d,0xfe,
18078
+0xb3,0xa5,0xa7,0xa6,0xa5,0xfe,0x3e,0x01,0x87,0xc3,0xc3,0xc4,
18079
+0xc3,0x01,0x87,0xfe,0x79,0xc3,0xc4,0xc3,0xc3,0x02,0x98,0xfe,
18080
+0xf8,0x42,0x21,0x21,0x42,0x01,0x08,0x42,0x21,0x21,0xfe,0x6f,
18081
+0x01,0x96,0x65,0x33,0x33,0x65,0xfe,0x6a,0x65,0x33,0x33,0x02,
18082
+0xaf,0xfd,0x02,0xc0,0x60,0x60,0xc0,0x02,0xfe,0xc0,0x60,0x60,
18083
+0xfb,0xff,0x03,0x84,0xe2,0x71,0x71,0xe2,0xfc,0x7c,0xe2,0x71,
18084
+0x71,0x00,0x00,0x00,0x00,0x01,0x00,0x70,0xff,0x04,0x06,0x8b,
18085
+0x05,0x20,0x00,0x0b,0x00,0x00,0x12,0x10,0x12,0x24,0x20,0x04,
18086
+0x12,0x10,0x02,0x04,0x20,0x24,0x70,0xd1,0x01,0x6b,0x01,0xa3,
18087
+0x01,0x6b,0xd1,0xd1,0xfe,0x95,0xfe,0x5d,0xfe,0x95,0x01,0x41,
18088
+0x01,0xa2,0x01,0x6b,0xd2,0xd2,0xfe,0x95,0xfe,0x5e,0xfe,0x95,
18089
+0xd2,0xd2,0x00,0x00,0x00,0x02,0x00,0x70,0xff,0x04,0x06,0x8b,
18090
+0x05,0x20,0x00,0x0b,0x00,0x13,0x00,0x00,0x12,0x10,0x12,0x24,
18091
+0x20,0x04,0x12,0x10,0x02,0x04,0x20,0x24,0x05,0x32,0x37,0x24,
18092
+0x10,0x25,0x26,0x23,0x70,0xd1,0x01,0x6b,0x01,0xa3,0x01,0x6b,
18093
+0xd1,0xd1,0xfe,0x95,0xfe,0x5d,0xfe,0x95,0x02,0x3c,0xa7,0xa5,
18094
+0x01,0x4d,0xfe,0xb3,0xa5,0xa7,0x01,0x41,0x01,0xa2,0x01,0x6b,
18095
+0xd2,0xd2,0xfe,0x95,0xfe,0x5e,0xfe,0x95,0xd2,0xd2,0x61,0x60,
18096
+0xc0,0x02,0xfe,0xc0,0x60,0x00,0x00,0x00,0x00,0x02,0x00,0x70,
18097
+0xff,0x04,0x06,0x8b,0x05,0x20,0x00,0x0b,0x00,0x13,0x00,0x00,
18098
+0x12,0x10,0x12,0x24,0x20,0x04,0x12,0x10,0x02,0x04,0x20,0x24,
18099
+0x01,0x22,0x07,0x04,0x10,0x05,0x16,0x33,0x70,0xd1,0x01,0x6b,
18100
+0x01,0xa3,0x01,0x6b,0xd1,0xd1,0xfe,0x95,0xfe,0x5d,0xfe,0x95,
18101
+0x02,0x3c,0xa6,0xa5,0xfe,0xb3,0x01,0x4d,0xa5,0xa6,0x01,0x41,
18102
+0x01,0xa2,0x01,0x6b,0xd2,0xd2,0xfe,0x95,0xfe,0x5e,0xfe,0x95,
18103
+0xd2,0xd2,0x04,0xdd,0x60,0xc0,0xfd,0x02,0xc0,0x60,0x00,0x00,
18104
+0x00,0x02,0x00,0x70,0xff,0x04,0x06,0x8b,0x05,0x20,0x00,0x0b,
18105
+0x00,0x14,0x00,0x00,0x12,0x10,0x12,0x24,0x20,0x04,0x12,0x10,
18106
+0x02,0x04,0x20,0x24,0x01,0x10,0x25,0x26,0x23,0x22,0x07,0x04,
18107
+0x03,0x70,0xd1,0x01,0x6b,0x01,0xa3,0x01,0x6b,0xd1,0xd1,0xfe,
18108
+0x95,0xfe,0x5d,0xfe,0x95,0x04,0xd5,0xfe,0xb3,0xa6,0xa6,0xa5,
18109
+0xa6,0xfe,0xb4,0x01,0x01,0x41,0x01,0xa2,0x01,0x6b,0xd2,0xd2,
18110
+0xfe,0x95,0xfe,0x5e,0xfe,0x95,0xd2,0xd2,0x02,0x3e,0x01,0x7f,
18111
+0xc0,0x60,0x60,0xc0,0xfe,0x81,0x00,0x00,0x00,0x02,0x00,0x70,
18112
+0xff,0x04,0x06,0x8b,0x05,0x20,0x00,0x0b,0x00,0x14,0x00,0x00,
18113
+0x12,0x10,0x12,0x24,0x20,0x04,0x12,0x10,0x02,0x04,0x20,0x24,
18114
+0x03,0x12,0x05,0x16,0x33,0x32,0x37,0x24,0x13,0x70,0xd1,0x01,
18115
+0x6b,0x01,0xa3,0x01,0x6b,0xd1,0xd1,0xfe,0x95,0xfe,0x5d,0xfe,
18116
+0x95,0x5c,0x01,0x01,0x4c,0xa6,0xa5,0xa7,0xa5,0x01,0x4c,0x01,
18117
+0x01,0x41,0x01,0xa2,0x01,0x6b,0xd2,0xd2,0xfe,0x95,0xfe,0x5e,
18118
+0xfe,0x95,0xd2,0xd2,0x02,0x3e,0xfe,0x81,0xc0,0x60,0x60,0xc0,
18119
+0x01,0x7f,0x00,0x00,0x00,0x02,0x00,0x70,0xff,0x04,0x06,0x8b,
18120
+0x05,0x20,0x00,0x0b,0x00,0x18,0x00,0x00,0x12,0x10,0x12,0x24,
18121
+0x20,0x04,0x12,0x10,0x02,0x04,0x20,0x24,0x01,0x22,0x07,0x04,
18122
+0x10,0x05,0x16,0x33,0x32,0x37,0x24,0x11,0x21,0x70,0xd1,0x01,
18123
+0x6b,0x01,0xa3,0x01,0x6b,0xd1,0xd1,0xfe,0x95,0xfe,0x5d,0xfe,
18124
+0x95,0x02,0x3c,0xa6,0xa5,0xfe,0xb3,0x01,0x4d,0xa5,0xa6,0xa7,
18125
+0xa5,0x01,0x4d,0xfd,0x67,0x01,0x41,0x01,0xa2,0x01,0x6b,0xd2,
18126
+0xd2,0xfe,0x95,0xfe,0x5e,0xfe,0x95,0xd2,0xd2,0x04,0xdd,0x60,
18127
+0xc0,0xfd,0x02,0xc0,0x60,0x60,0xc0,0x01,0x7f,0x00,0x00,0x00,
18128
+0x00,0x02,0x00,0x70,0xff,0x04,0x06,0x8b,0x05,0x20,0x00,0x0b,
18129
+0x00,0x11,0x00,0x00,0x12,0x10,0x12,0x24,0x20,0x04,0x12,0x10,
18130
+0x02,0x04,0x20,0x24,0x01,0x22,0x07,0x04,0x11,0x21,0x70,0xd1,
18131
+0x01,0x6b,0x01,0xa3,0x01,0x6b,0xd1,0xd1,0xfe,0x95,0xfe,0x5d,
18132
+0xfe,0x95,0x02,0x3c,0xa6,0xa5,0xfe,0xb3,0x02,0x98,0x01,0x41,
18133
+0x01,0xa2,0x01,0x6b,0xd2,0xd2,0xfe,0x95,0xfe,0x5e,0xfe,0x95,
18134
+0xd2,0xd2,0x04,0xdd,0x60,0xc0,0xfe,0x81,0x00,0x01,0x00,0x70,
18135
+0xfe,0xff,0x03,0x7d,0x05,0x29,0x00,0x07,0x00,0x00,0x36,0x10,
18136
+0x25,0x36,0x33,0x11,0x22,0x27,0x70,0x01,0x87,0xc3,0xc3,0xc3,
18137
+0xc3,0x52,0x03,0x84,0xe2,0x71,0xf9,0xd6,0x71,0x00,0x00,0x00,
18138
+0x00,0x01,0x00,0xba,0xfe,0xff,0x03,0xc7,0x05,0x29,0x00,0x07,
18139
+0x00,0x00,0x00,0x10,0x05,0x06,0x23,0x11,0x32,0x17,0x03,0xc7,
18140
+0xfe,0x79,0xc3,0xc3,0xc3,0xc3,0x03,0xd6,0xfc,0x7c,0xe2,0x71,
18141
+0x06,0x2a,0x71,0x00,0x00,0x02,0x00,0xba,0xff,0xec,0x05,0x9a,
18142
+0x06,0x28,0x00,0x0a,0x00,0x0e,0x00,0x00,0x01,0x14,0x16,0x32,
18143
+0x36,0x35,0x34,0x26,0x23,0x22,0x06,0x01,0x11,0x21,0x11,0x02,
18144
+0x01,0xac,0xfa,0xac,0xab,0x7c,0x7e,0xad,0xfe,0xb9,0x04,0xe0,
18145
+0x02,0xfa,0x7d,0xac,0xac,0x7d,0x7c,0xab,0xab,0xfc,0x76,0x06,
18146
+0x3c,0xf9,0xc4,0x00,0x00,0x03,0x00,0xba,0xfe,0x00,0x07,0x09,
18147
+0x06,0x28,0x00,0x0d,0x00,0x1b,0x00,0x1f,0x00,0x00,0x24,0x10,
18148
+0x25,0x36,0x33,0x32,0x17,0x04,0x10,0x05,0x06,0x23,0x22,0x27,
18149
+0x00,0x10,0x05,0x16,0x33,0x32,0x37,0x24,0x10,0x25,0x26,0x23,
18150
+0x22,0x07,0x01,0x11,0x21,0x11,0x01,0x49,0x01,0x4d,0xa5,0xa6,
18151
+0xa7,0xa5,0x01,0x4d,0xfe,0xb3,0xa5,0xa7,0xa6,0xa5,0xfe,0x3e,
18152
+0x01,0x87,0xc3,0xc3,0xc4,0xc3,0x01,0x87,0xfe,0x79,0xc3,0xc4,
18153
+0xc3,0xc3,0xfe,0x5f,0x06,0x4f,0x95,0x02,0xfe,0xc0,0x60,0x60,
18154
+0xc0,0xfd,0x02,0xc0,0x60,0x60,0x04,0x01,0xfc,0x7c,0xe2,0x71,
18155
+0x71,0xe2,0x03,0x84,0xe2,0x71,0x71,0xf9,0x48,0x08,0x28,0xf7,
18156
+0xd8,0x00,0x00,0x00,0x00,0x02,0x00,0xba,0x02,0x14,0x07,0x09,
18157
+0x06,0x28,0x00,0x0c,0x00,0x15,0x00,0x00,0x13,0x11,0x21,0x11,
18158
+0x23,0x10,0x25,0x26,0x23,0x22,0x07,0x04,0x11,0x29,0x01,0x10,
18159
+0x25,0x36,0x33,0x32,0x17,0x04,0xba,0x06,0x4f,0x1a,0xfe,0x79,
18160
+0xc3,0xc4,0xc3,0xc3,0xfe,0x79,0x05,0xa6,0xfa,0xcf,0x01,0x4d,
18161
+0xa6,0xa5,0xa6,0xa6,0x01,0x4d,0x02,0x14,0x04,0x14,0xfb,0xec,
18162
+0x01,0xc2,0xe2,0x71,0x71,0xe2,0xfe,0x3e,0x01,0x7e,0xc1,0x60,
18163
+0x60,0xc1,0x00,0x00,0x00,0x02,0x00,0xba,0xfe,0x00,0x07,0x09,
18164
+0x02,0x14,0x00,0x0c,0x00,0x15,0x00,0x00,0x13,0x11,0x33,0x10,
18165
+0x05,0x16,0x33,0x32,0x37,0x24,0x11,0x33,0x11,0x01,0x21,0x10,
18166
+0x05,0x06,0x23,0x22,0x27,0x24,0xba,0x1a,0x01,0x87,0xc3,0xc3,
18167
+0xc4,0xc3,0x01,0x87,0x1a,0xfa,0x40,0x05,0x31,0xfe,0xb3,0xa6,
18168
+0xa6,0xa5,0xa6,0xfe,0xb3,0xfe,0x00,0x04,0x14,0xfe,0x3e,0xe2,
18169
+0x71,0x71,0xe2,0x01,0xc2,0xfb,0xec,0x04,0x14,0xfe,0x82,0xc1,
18170
+0x60,0x60,0xc1,0x00,0x00,0x01,0x00,0x06,0x02,0x14,0x03,0x14,
18171
+0x05,0x29,0x00,0x09,0x00,0x00,0x13,0x10,0x25,0x36,0x33,0x15,
18172
+0x22,0x07,0x04,0x11,0x06,0x01,0x87,0xc3,0xc3,0xa6,0xa5,0xfe,
18173
+0xb3,0x02,0x14,0x01,0xc2,0xe2,0x71,0x76,0x60,0xc0,0xfe,0x81,
18174
+0x00,0x01,0x00,0x06,0x02,0x14,0x03,0x13,0x05,0x29,0x00,0x09,
18175
+0x00,0x00,0x13,0x32,0x17,0x04,0x11,0x23,0x10,0x25,0x26,0x23,
18176
+0x06,0xc3,0xc3,0x01,0x87,0x75,0xfe,0xb3,0xa5,0xa6,0x05,0x29,
18177
+0x71,0xe2,0xfe,0x3e,0x01,0x7f,0xc0,0x60,0x00,0x01,0x00,0x06,
18178
+0xfe,0xff,0x03,0x13,0x02,0x14,0x00,0x09,0x00,0x00,0x13,0x35,
18179
+0x32,0x37,0x24,0x11,0x33,0x10,0x05,0x06,0x06,0xa6,0xa5,0x01,
18180
+0x4d,0x75,0xfe,0x79,0xc3,0xfe,0xff,0x76,0x60,0xc0,0x01,0x7f,
18181
+0xfe,0x3e,0xe2,0x71,0x00,0x01,0x00,0x06,0xfe,0xff,0x03,0x14,
18182
+0x02,0x14,0x00,0x09,0x00,0x00,0x01,0x22,0x27,0x24,0x11,0x33,
18183
+0x10,0x05,0x16,0x33,0x03,0x13,0xc3,0xc3,0xfe,0x79,0x75,0x01,
18184
+0x4d,0xa5,0xa6,0xfe,0xff,0x71,0xe2,0x01,0xc2,0xfe,0x81,0xc0,
18185
+0x60,0x00,0x00,0x00,0x00,0x01,0x00,0x70,0x02,0x14,0x06,0x8b,
18186
+0x05,0x29,0x00,0x11,0x00,0x00,0x13,0x10,0x25,0x36,0x33,0x32,
18187
+0x17,0x04,0x11,0x23,0x10,0x25,0x26,0x23,0x22,0x07,0x04,0x11,
18188
+0x70,0x01,0x87,0xc3,0xc3,0xc4,0xc3,0x01,0x87,0x75,0xfe,0xb3,
18189
+0xa5,0xa7,0xa6,0xa5,0xfe,0xb3,0x02,0x14,0x01,0xc2,0xe2,0x71,
18190
+0x71,0xe2,0xfe,0x3e,0x01,0x7f,0xc0,0x60,0x60,0xc0,0xfe,0x81,
18191
+0x00,0x01,0x00,0x70,0xfe,0xff,0x06,0x8b,0x02,0x14,0x00,0x12,
18192
+0x00,0x00,0x13,0x30,0x33,0x10,0x05,0x16,0x33,0x32,0x37,0x24,
18193
+0x11,0x33,0x10,0x05,0x06,0x23,0x22,0x27,0x24,0x70,0x75,0x01,
18194
+0x4d,0xa5,0xa6,0xa7,0xa5,0x01,0x4d,0x75,0xfe,0x79,0xc3,0xc4,
18195
+0xc3,0xc3,0xfe,0x79,0x02,0x14,0xfe,0x81,0xc0,0x60,0x60,0xc0,
18196
+0x01,0x7f,0xfe,0x3e,0xe2,0x71,0x71,0xe2,0x00,0x01,0x00,0x06,
18197
+0xff,0x03,0x06,0x21,0x05,0x25,0x00,0x02,0x00,0x00,0x17,0x01,
18198
+0x11,0x06,0x06,0x1b,0xfc,0x06,0x20,0xf9,0xe0,0x00,0x00,0x00,
18199
+0x00,0x01,0x00,0x06,0xff,0x03,0x06,0x21,0x05,0x25,0x00,0x02,
18200
+0x00,0x00,0x17,0x11,0x01,0x06,0x06,0x1b,0xfc,0x06,0x20,0xf9,
18201
+0xe0,0x00,0x00,0x00,0x00,0x01,0x00,0x06,0xff,0x03,0x06,0x21,
18202
+0x05,0x25,0x00,0x02,0x00,0x00,0x17,0x11,0x21,0x06,0x06,0x1b,
18203
+0xfc,0x06,0x20,0x00,0x00,0x01,0x00,0x06,0xff,0x03,0x06,0x21,
18204
+0x05,0x25,0x00,0x02,0x00,0x00,0x13,0x21,0x11,0x06,0x06,0x1b,
18205
+0x05,0x24,0xf9,0xe0,0x00,0x02,0x01,0x33,0x01,0xd1,0x03,0x85,
18206
+0x04,0x21,0x00,0x0a,0x00,0x15,0x00,0x00,0x01,0x14,0x16,0x32,
18207
+0x36,0x35,0x34,0x26,0x23,0x22,0x06,0x07,0x34,0x36,0x33,0x32,
18208
+0x16,0x15,0x14,0x06,0x22,0x26,0x01,0x6e,0x8a,0xc8,0x8a,0x89,
18209
+0x63,0x65,0x8b,0x3b,0xad,0x7e,0x7c,0xab,0xac,0xfa,0xac,0x02,
18210
+0xfa,0x64,0x8a,0x8a,0x64,0x63,0x89,0x89,0x63,0x7c,0xab,0xab,
18211
+0x7c,0x7d,0xac,0xac,0x00,0x02,0x00,0xba,0xff,0x03,0x06,0xd5,
18212
+0x05,0x25,0x00,0x03,0x00,0x07,0x00,0x00,0x17,0x11,0x21,0x11,
18213
+0x25,0x21,0x11,0x21,0xba,0x06,0x1b,0xfc,0xf2,0x02,0x9c,0xfd,
18214
+0x64,0xfc,0x06,0x20,0xf9,0xe0,0x72,0x05,0x3c,0x00,0x00,0x00,
18215
+0x00,0x02,0x00,0xba,0xff,0x03,0x06,0xd5,0x05,0x25,0x00,0x03,
18216
+0x00,0x07,0x00,0x00,0x17,0x11,0x21,0x11,0x25,0x21,0x11,0x21,
18217
+0xba,0x06,0x1b,0xfa,0x57,0x02,0x9b,0xfd,0x65,0xfc,0x06,0x20,
18218
+0xf9,0xe0,0x72,0x05,0x3c,0x00,0x00,0x00,0x00,0x02,0x00,0xba,
18219
+0xff,0x03,0x06,0xd5,0x05,0x25,0x00,0x03,0x00,0x06,0x00,0x00,
18220
+0x17,0x11,0x21,0x11,0x25,0x21,0x11,0xba,0x06,0x1b,0xfa,0x57,
18221
+0x05,0x37,0xfc,0x06,0x20,0xf9,0xe0,0x72,0x05,0x3c,0x00,0x00,
18222
+0x00,0x02,0x00,0xba,0xff,0x03,0x06,0xd5,0x05,0x25,0x00,0x03,
18223
+0x00,0x06,0x00,0x00,0x17,0x11,0x21,0x11,0x25,0x01,0x21,0xba,
18224
+0x06,0x1b,0xfa,0x57,0x05,0x37,0xfa,0xc9,0xfc,0x06,0x20,0xf9,
18225
+0xe0,0x72,0x05,0x3c,0x00,0x03,0x00,0xba,0xff,0x03,0x06,0xd5,
18226
+0x05,0x25,0x00,0x03,0x00,0x07,0x00,0x0b,0x00,0x00,0x17,0x11,
18227
+0x21,0x11,0x25,0x21,0x11,0x21,0x01,0x21,0x11,0x21,0xba,0x06,
18228
+0x1b,0xfd,0x2b,0x02,0x63,0xfd,0x9d,0xfd,0x2c,0x02,0x62,0xfd,
18229
+0x9e,0xfc,0x06,0x20,0xf9,0xe0,0x72,0x05,0x3c,0xfa,0xc4,0x05,
18230
+0x3c,0x00,0x00,0x00,0x00,0x03,0x00,0x06,0xff,0x03,0x06,0x21,
18231
+0x05,0x25,0x00,0x0a,0x00,0x0d,0x00,0x10,0x00,0x00,0x01,0x34,
18232
+0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x22,0x26,0x01,0x21,0x09,
18233
+0x03,0x02,0x7f,0x57,0x3e,0x3e,0x56,0x56,0x7d,0x56,0xfe,0x32,
18234
+0x04,0xc5,0xfd,0x9d,0xfc,0xf3,0x03,0x0d,0x03,0x0e,0x01,0x6a,
18235
+0x3e,0x56,0x56,0x3e,0x3e,0x56,0x56,0xfe,0x4a,0x04,0xca,0xfa,
18236
+0xc4,0x06,0x20,0xf9,0xe0,0x00,0x00,0x00,0x00,0x02,0x00,0x06,
18237
+0xff,0x03,0x06,0x21,0x05,0x25,0x00,0x02,0x00,0x05,0x00,0x00,
18238
+0x05,0x21,0x09,0x03,0x03,0x13,0x02,0x63,0xfd,0x9d,0xfc,0xf3,
18239
+0x03,0x0d,0x03,0x0e,0x8a,0x04,0xca,0xfa,0xc4,0x06,0x20,0xf9,
18240
+0xe0,0x00,0x00,0x00,0x00,0x02,0x00,0x06,0xff,0x03,0x06,0x21,
18241
+0x05,0x25,0x00,0x02,0x00,0x05,0x00,0x00,0x17,0x21,0x11,0x09,
18242
+0x02,0xb1,0x02,0x62,0xfc,0xf3,0x03,0x0d,0x03,0x0e,0x8a,0x04,
18243
+0xca,0xfa,0xc4,0x06,0x20,0xf9,0xe0,0x00,0x00,0x02,0x00,0x70,
18244
+0xfe,0x00,0x08,0x84,0x06,0x28,0x00,0x0b,0x00,0x17,0x00,0x00,
18245
+0x12,0x10,0x01,0x16,0x20,0x37,0x00,0x10,0x01,0x26,0x20,0x07,
18246
+0x00,0x10,0x01,0x24,0x20,0x05,0x00,0x10,0x01,0x04,0x20,0x25,
18247
+0xf1,0x01,0xc5,0xe2,0x01,0xc4,0xe2,0x01,0xc5,0xfe,0x3b,0xe2,
18248
+0xfe,0x3c,0xe2,0xfd,0xba,0x02,0x05,0x01,0x03,0x02,0x04,0x01,
18249
+0x03,0x02,0x05,0xfd,0xfb,0xfe,0xfd,0xfd,0xfc,0xfe,0xfd,0x04,
18250
+0x1e,0xfb,0xec,0xfe,0xfb,0x83,0x83,0x01,0x05,0x04,0x14,0x01,
18251
+0x05,0x83,0x83,0xfa,0x9d,0x04,0xa8,0x01,0x2a,0x96,0x96,0xfe,
18252
+0xd6,0xfb,0x58,0xfe,0xd6,0x96,0x96,0x00,0x00,0x03,0x00,0xba,
18253
+0xff,0x03,0x06,0xd5,0x05,0x25,0x00,0x05,0x00,0x09,0x00,0x0d,
18254
+0x00,0x00,0x05,0x21,0x11,0x21,0x11,0x21,0x03,0x11,0x21,0x11,
18255
+0x01,0x21,0x11,0x21,0x01,0x2c,0x05,0x37,0xfd,0x9d,0xfd,0x2c,
18256
+0x72,0x06,0x1b,0xfa,0x57,0x02,0x62,0xfd,0x9e,0x8a,0x05,0x3c,
18257
+0xfd,0x29,0xfd,0x29,0x06,0x20,0xf9,0xe0,0x03,0x49,0x02,0x65,
18258
+0x00,0x03,0x00,0xba,0xff,0x03,0x06,0xd5,0x05,0x25,0x00,0x05,
18259
+0x00,0x09,0x00,0x0d,0x00,0x00,0x01,0x21,0x11,0x21,0x11,0x21,
18260
+0x03,0x11,0x21,0x11,0x25,0x21,0x11,0x21,0x01,0x2c,0x02,0xd4,
18261
+0x02,0x63,0xfa,0xc9,0x72,0x06,0x1b,0xfa,0x57,0x02,0x62,0xfd,
18262
+0x9e,0x02,0x4d,0xfd,0x29,0x05,0x3c,0xfa,0x52,0x06,0x20,0xf9,
18263
+0xe0,0x72,0x02,0x65,0x00,0x03,0x00,0xba,0xff,0x03,0x06,0xd5,
18264
+0x05,0x25,0x00,0x05,0x00,0x09,0x00,0x0d,0x00,0x00,0x05,0x21,
18265
+0x11,0x21,0x11,0x21,0x03,0x11,0x21,0x11,0x25,0x21,0x11,0x21,
18266
+0x01,0x2c,0x02,0x62,0x02,0xd5,0xfa,0xc9,0x72,0x06,0x1b,0xfd,
18267
+0x2b,0x02,0x63,0xfd,0x9d,0x8a,0x02,0xd7,0x02,0x65,0xfa,0x52,
18268
+0x06,0x20,0xf9,0xe0,0x72,0x02,0x65,0x00,0x00,0x03,0x00,0xba,
18269
+0xff,0x03,0x06,0xd5,0x05,0x25,0x00,0x05,0x00,0x09,0x00,0x0d,
18270
+0x00,0x00,0x05,0x21,0x11,0x21,0x11,0x21,0x03,0x11,0x21,0x11,
18271
+0x01,0x21,0x11,0x21,0x01,0x2c,0x05,0x37,0xfd,0x2b,0xfd,0x9e,
18272
+0x72,0x06,0x1b,0xfd,0x2b,0x02,0x63,0xfd,0x9d,0x8a,0x02,0x65,
18273
+0x02,0xd7,0xfa,0x52,0x06,0x20,0xf9,0xe0,0x03,0x49,0x02,0x65,
18274
+0x00,0x03,0x00,0x70,0xff,0x04,0x06,0x8b,0x05,0x20,0x00,0x0b,
18275
+0x00,0x11,0x00,0x1e,0x00,0x00,0x12,0x10,0x12,0x24,0x20,0x04,
18276
+0x12,0x10,0x02,0x04,0x20,0x24,0x01,0x06,0x07,0x04,0x03,0x21,
18277
+0x05,0x12,0x05,0x16,0x33,0x32,0x37,0x24,0x10,0x25,0x26,0x27,
18278
+0x11,0x70,0xd1,0x01,0x6b,0x01,0xa3,0x01,0x6b,0xd1,0xd1,0xfe,
18279
+0x95,0xfe,0x5d,0xfe,0x95,0x02,0x03,0x89,0x89,0xfe,0xcc,0x17,
18280
+0x02,0x5d,0xfd,0xa3,0x17,0x01,0x34,0xa6,0xa5,0xa6,0xa6,0x01,
18281
+0x4d,0xfe,0xb3,0x89,0x8a,0x01,0x41,0x01,0xa2,0x01,0x6b,0xd2,
18282
+0xd2,0xfe,0x95,0xfe,0x5e,0xfe,0x95,0xd2,0xd2,0x04,0xda,0x0e,
18283
+0x4f,0xb2,0xfe,0xac,0x72,0xfe,0xac,0xb2,0x60,0x60,0xc1,0x02,
18284
+0xfc,0xc1,0x4f,0x0e,0xfd,0x2b,0x00,0x00,0x00,0x03,0x00,0x70,
18285
+0xff,0x04,0x06,0x8b,0x05,0x20,0x00,0x0b,0x00,0x18,0x00,0x1e,
18286
+0x00,0x00,0x12,0x10,0x12,0x24,0x20,0x04,0x12,0x10,0x02,0x04,
18287
+0x20,0x24,0x05,0x36,0x37,0x24,0x10,0x25,0x26,0x23,0x22,0x07,
18288
+0x04,0x03,0x21,0x05,0x12,0x05,0x16,0x17,0x11,0x70,0xd1,0x01,
18289
+0x6b,0x01,0xa3,0x01,0x6b,0xd1,0xd1,0xfe,0x95,0xfe,0x5d,0xfe,
18290
+0x95,0x02,0x75,0x8a,0x89,0x01,0x4d,0xfe,0xb3,0xa6,0xa6,0xa5,
18291
+0xa6,0xfe,0xcc,0x17,0x02,0xcf,0xfd,0x31,0x17,0x01,0x34,0x89,
18292
+0x89,0x01,0x41,0x01,0xa2,0x01,0x6b,0xd2,0xd2,0xfe,0x95,0xfe,
18293
+0x5e,0xfe,0x95,0xd2,0xd2,0x5e,0x0e,0x4f,0xc1,0x02,0xfc,0xc1,
18294
+0x60,0x60,0xb2,0xfe,0xac,0x72,0xfe,0xac,0xb2,0x4f,0x0e,0x02,
18295
+0x63,0x00,0x00,0x00,0x00,0x03,0x00,0x70,0xff,0x04,0x06,0x8b,
18296
+0x05,0x20,0x00,0x0b,0x00,0x18,0x00,0x1e,0x00,0x00,0x12,0x10,
18297
+0x12,0x24,0x20,0x04,0x12,0x10,0x02,0x04,0x20,0x24,0x02,0x10,
18298
+0x05,0x16,0x17,0x11,0x21,0x02,0x25,0x26,0x23,0x22,0x07,0x01,
18299
+0x36,0x37,0x24,0x13,0x21,0x70,0xd1,0x01,0x6b,0x01,0xa3,0x01,
18300
+0x6b,0xd1,0xd1,0xfe,0x95,0xfe,0x5d,0xfe,0x95,0x5c,0x01,0x4d,
18301
+0x89,0x89,0x02,0xd0,0x17,0xfe,0xcc,0xa6,0xa6,0xa5,0xa6,0x01,
18302
+0x84,0x8a,0x89,0x01,0x34,0x17,0xfd,0xa2,0x01,0x41,0x01,0xa2,
18303
+0x01,0x6b,0xd2,0xd2,0xfe,0x95,0xfe,0x5e,0xfe,0x95,0xd2,0xd2,
18304
+0x03,0xbc,0xfd,0x04,0xc1,0x4f,0x0e,0x02,0xd5,0x01,0x54,0xb2,
18305
+0x60,0x60,0xfb,0x25,0x0e,0x4f,0xb2,0x01,0x54,0x00,0x00,0x00,
18306
+0x00,0x03,0x00,0x70,0xff,0x04,0x06,0x8b,0x05,0x20,0x00,0x0b,
18307
+0x00,0x18,0x00,0x1e,0x00,0x00,0x12,0x10,0x12,0x24,0x20,0x04,
18308
+0x12,0x10,0x02,0x04,0x20,0x24,0x02,0x10,0x05,0x16,0x33,0x32,
18309
+0x37,0x24,0x13,0x21,0x11,0x06,0x07,0x01,0x02,0x25,0x26,0x27,
18310
+0x11,0x70,0xd1,0x01,0x6b,0x01,0xa3,0x01,0x6b,0xd1,0xd1,0xfe,
18311
+0x95,0xfe,0x5d,0xfe,0x95,0x5c,0x01,0x4d,0xa6,0xa5,0xa6,0xa6,
18312
+0x01,0x34,0x17,0xfd,0x30,0x89,0x89,0x03,0xe2,0x17,0xfe,0xcc,
18313
+0x89,0x8a,0x01,0x41,0x01,0xa2,0x01,0x6b,0xd2,0xd2,0xfe,0x95,
18314
+0xfe,0x5e,0xfe,0x95,0xd2,0xd2,0x03,0xbc,0xfd,0x04,0xc1,0x60,
18315
+0x60,0xb2,0x01,0x54,0x02,0xd5,0x0e,0x4f,0xfd,0xfa,0x01,0x54,
18316
+0xb2,0x4f,0x0e,0xfd,0x9d,0x00,0x00,0x00,0x00,0x02,0x00,0x06,
18317
+0xff,0x03,0x06,0x21,0x05,0x25,0x00,0x02,0x00,0x05,0x00,0x00,
18318
+0x37,0x01,0x21,0x03,0x11,0x21,0x78,0x04,0x8c,0xfb,0x74,0x72,
18319
+0x06,0x1b,0x20,0x04,0x92,0xfa,0x52,0x06,0x20,0x00,0x00,0x00,
18320
+0x00,0x02,0x00,0x06,0xff,0x03,0x06,0x21,0x05,0x25,0x00,0x02,
18321
+0x00,0x05,0x00,0x00,0x09,0x01,0x11,0x25,0x21,0x11,0x01,0x23,
18322
+0x04,0x8c,0xfa,0x57,0x06,0x1b,0x04,0xb2,0xfb,0x6e,0x04,0x92,
18323
+0x72,0xf9,0xe0,0x00,0x00,0x02,0x00,0x06,0xff,0x03,0x06,0x21,
18324
+0x05,0x25,0x00,0x02,0x00,0x05,0x00,0x00,0x17,0x21,0x01,0x03,
18325
+0x11,0x01,0x78,0x04,0x8c,0xfb,0x74,0x72,0x06,0x1b,0x8a,0x04,
18326
+0x92,0xfa,0xfc,0x06,0x20,0xf9,0xe0,0x00,0x00,0x02,0x00,0xba,
18327
+0xff,0x79,0x05,0xea,0x04,0xaf,0x00,0x03,0x00,0x07,0x00,0x00,
18328
+0x05,0x21,0x11,0x21,0x03,0x11,0x21,0x11,0x01,0x2c,0x04,0x4c,
18329
+0xfb,0xb4,0x72,0x05,0x30,0x15,0x04,0x52,0xfb,0x3c,0x05,0x36,
18330
+0xfa,0xca,0x00,0x00,0x00,0x01,0x00,0xba,0xff,0x79,0x05,0xea,
18331
+0x04,0xaf,0x00,0x03,0x00,0x00,0x17,0x11,0x21,0x11,0xba,0x05,
18332
+0x30,0x87,0x05,0x36,0xfa,0xca,0x00,0x00,0x00,0x02,0x00,0xba,
18333
+0xff,0xdd,0x05,0x22,0x04,0x4b,0x00,0x03,0x00,0x07,0x00,0x00,
18334
+0x25,0x21,0x11,0x21,0x03,0x11,0x21,0x11,0x01,0x2c,0x03,0x84,
18335
+0xfc,0x7c,0x72,0x04,0x68,0x4f,0x03,0x8a,0xfc,0x04,0x04,0x6e,
18336
+0xfb,0x92,0x00,0x00,0x00,0x01,0x00,0xba,0xff,0xdd,0x05,0x22,
18337
+0x04,0x4b,0x00,0x03,0x00,0x00,0x17,0x11,0x21,0x11,0xba,0x04,
18338
+0x68,0x23,0x04,0x6e,0xfb,0x92,0x00,0x00,0x00,0x02,0x00,0x06,
18339
+0xff,0x03,0x06,0x21,0x05,0x25,0x00,0x02,0x00,0x05,0x00,0x00,
18340
+0x05,0x21,0x11,0x09,0x01,0x11,0x01,0x23,0x04,0x8c,0xfa,0x57,
18341
+0x06,0x1b,0x8a,0x04,0x92,0xfa,0xfc,0x06,0x20,0xf9,0xe0,0x00,
18342
+0x00,0x09,0x00,0xab,0x00,0x00,0x06,0x80,0x05,0xd5,0x00,0x07,
18343
+0x00,0x0c,0x00,0x13,0x00,0x22,0x00,0x2a,0x00,0x32,0x00,0x3a,
18344
+0x00,0x41,0x00,0x49,0x00,0x43,0xba,0x00,0x03,0x00,0x06,0x00,
18345
+0x03,0x2b,0xb8,0x00,0x03,0x10,0xb8,0x00,0x44,0xd0,0xb8,0x00,
18346
+0x06,0x10,0xb8,0x00,0x48,0xd0,0x00,0xb8,0x00,0x00,0x2f,0xb8,
18347
+0x00,0x02,0x2f,0xb8,0x00,0x46,0x2f,0xb8,0x00,0x48,0x2f,0xba,
18348
+0x00,0x24,0x00,0x27,0x00,0x03,0x2b,0xb8,0x00,0x24,0x10,0xb8,
18349
+0x00,0x2b,0xd0,0xb8,0x00,0x27,0x10,0xb8,0x00,0x2f,0xd0,0x30,
18350
+0x31,0x01,0x33,0x17,0x11,0x07,0x23,0x27,0x11,0x05,0x17,0x15,
18351
+0x07,0x27,0x25,0x17,0x07,0x23,0x26,0x27,0x35,0x05,0x32,0x1f,
18352
+0x01,0x14,0x07,0x06,0x23,0x22,0x27,0x26,0x35,0x34,0x37,0x36,
18353
+0x01,0x21,0x17,0x15,0x07,0x21,0x27,0x35,0x25,0x21,0x17,0x15,
18354
+0x07,0x21,0x27,0x35,0x03,0x33,0x16,0x17,0x15,0x07,0x27,0x35,
18355
+0x25,0x33,0x17,0x15,0x07,0x27,0x35,0x25,0x33,0x17,0x11,0x07,
18356
+0x23,0x27,0x11,0x03,0x73,0x4d,0x06,0x06,0x4d,0x06,0x02,0x37,
18357
+0x3a,0xf8,0x3d,0xfc,0xfd,0xfc,0x3d,0x03,0xc8,0x2d,0x02,0x30,
18358
+0xd0,0x59,0x0d,0xbe,0x47,0x2e,0xaf,0x62,0x23,0xb7,0x43,0xfd,
18359
+0x4b,0x01,0x53,0x06,0x06,0xfe,0xad,0x06,0x04,0x75,0x01,0x59,
18360
+0x07,0x07,0xfe,0xa7,0x06,0x47,0x03,0x86,0x72,0x3d,0xf8,0xfd,
18361
+0xb5,0x03,0x3b,0xf6,0x3e,0x02,0x1b,0x4d,0x06,0x06,0x4d,0x06,
18362
+0x05,0xd5,0x06,0xfe,0xa2,0x06,0x06,0x01,0x5e,0x9b,0x3f,0x03,
18363
+0xfe,0x3f,0xee,0xfe,0x40,0xc7,0x37,0x04,0xb5,0xe1,0x60,0xbd,
18364
+0x64,0x17,0xa7,0x3f,0x5c,0xb5,0x67,0x1b,0xfe,0xed,0x06,0x4f,
18365
+0x06,0x06,0x4f,0x06,0x06,0x4f,0x06,0x06,0x4f,0xfe,0xe8,0x82,
18366
+0x79,0x03,0x3e,0xfd,0x04,0x2a,0x3c,0x03,0xfe,0x3f,0x04,0x76,
18367
+0x06,0xfe,0xa2,0x06,0x06,0x01,0x5e,0x00,0x00,0x0a,0x00,0xa3,
18368
+0x00,0x06,0x06,0x89,0x05,0xc5,0x00,0x0c,0x00,0x3c,0x00,0x42,
18369
+0x00,0x48,0x00,0x4e,0x00,0x54,0x00,0x5a,0x00,0x60,0x00,0x66,
18370
+0x00,0x6c,0x00,0x00,0x00,0x14,0x17,0x16,0x33,0x32,0x36,0x34,
18371
+0x27,0x26,0x23,0x22,0x07,0x05,0x26,0x37,0x33,0x36,0x37,0x27,
18372
+0x36,0x37,0x17,0x36,0x37,0x35,0x36,0x17,0x15,0x16,0x17,0x37,
18373
+0x16,0x17,0x07,0x16,0x17,0x33,0x16,0x07,0x23,0x06,0x07,0x17,
18374
+0x06,0x07,0x27,0x06,0x07,0x15,0x06,0x27,0x35,0x26,0x27,0x07,
18375
+0x26,0x27,0x37,0x26,0x27,0x01,0x36,0x37,0x03,0x06,0x07,0x05,
18376
+0x16,0x17,0x37,0x26,0x27,0x01,0x36,0x37,0x27,0x06,0x07,0x25,
18377
+0x16,0x17,0x25,0x26,0x27,0x01,0x26,0x27,0x05,0x16,0x17,0x25,
18378
+0x06,0x07,0x17,0x36,0x37,0x05,0x06,0x07,0x13,0x36,0x37,0x25,
18379
+0x26,0x27,0x07,0x16,0x17,0x02,0xf4,0x30,0x2f,0x43,0x42,0x5e,
18380
+0x30,0x2f,0x41,0x43,0x2f,0xfd,0x7f,0x38,0x38,0x70,0x1b,0x6b,
18381
+0x54,0x0f,0x63,0x52,0x7c,0xc2,0x4e,0x4f,0xb6,0x89,0x4f,0x66,
18382
+0x11,0x55,0x69,0x1c,0x70,0x38,0x38,0x70,0x14,0x71,0x55,0x11,
18383
+0x66,0x4f,0x8a,0xb6,0x4e,0x4e,0xb5,0x8a,0x51,0x61,0x11,0x51,
18384
+0x68,0x1b,0x01,0xfb,0x21,0x24,0x0c,0x8e,0x62,0x01,0x80,0x29,
18385
+0x1d,0xb7,0x64,0x8c,0xfe,0xaf,0x08,0x16,0xcb,0x4c,0x17,0x02,
18386
+0xf7,0x18,0x06,0x01,0x12,0x13,0x51,0xfd,0x6b,0x14,0x0a,0xfe,
18387
+0xf0,0x16,0x4b,0x02,0xb4,0x08,0x16,0xcc,0x52,0x11,0xfe,0x74,
18388
+0x21,0x25,0x0c,0x8d,0x63,0xfe,0x7f,0x1d,0x27,0xb8,0x64,0x8d,
18389
+0x03,0x26,0x84,0x2f,0x2f,0x5e,0x84,0x30,0x30,0x30,0xc3,0x4e,
18390
+0x4e,0xb7,0x7c,0x50,0x5f,0x10,0x50,0x66,0x1e,0x70,0x38,0x38,
18391
+0x70,0x16,0x6f,0x51,0x0f,0x60,0x51,0x79,0xb9,0x4e,0x4e,0xb0,
18392
+0x83,0x50,0x5c,0x0b,0x51,0x67,0x1d,0x70,0x38,0x38,0x70,0x17,
18393
+0x6d,0x51,0x0b,0x5c,0x50,0x79,0xba,0x01,0x2c,0x13,0x0a,0x01,
18394
+0x0d,0x16,0x4d,0xaa,0x0a,0x13,0xc6,0x4e,0x15,0xfe,0x3e,0x26,
18395
+0x1a,0xab,0x60,0x82,0x37,0x1e,0x22,0x0a,0x7f,0x62,0xfe,0x4b,
18396
+0x1e,0x2a,0x11,0x8c,0x56,0xf4,0x26,0x22,0xac,0x67,0x7b,0x89,
18397
+0x12,0x0b,0xfe,0xf0,0x1e,0x4d,0xa5,0x09,0x14,0xc2,0x4d,0x1e,
18398
+0x00,0x05,0x00,0xaa,0x00,0x00,0x06,0x82,0x05,0xd8,0x00,0x0b,
18399
+0x00,0x17,0x00,0x21,0x00,0x29,0x00,0x31,0x01,0x61,0xba,0x00,
18400
+0x0c,0x00,0x00,0x00,0x03,0x2b,0xb8,0x00,0x0c,0x10,0xba,0x00,
18401
+0x30,0x00,0x2c,0x00,0x03,0x2b,0xb8,0x00,0x30,0x10,0xba,0x00,
18402
+0x1f,0x00,0x24,0x00,0x03,0x2b,0xb8,0x00,0x1f,0x10,0xba,0x00,
18403
+0x06,0x00,0x12,0x00,0x03,0x2b,0xb8,0x00,0x06,0x10,0x41,0x1b,
18404
+0x00,0x16,0x00,0x0c,0x00,0x26,0x00,0x0c,0x00,0x36,0x00,0x0c,
18405
+0x00,0x46,0x00,0x0c,0x00,0x56,0x00,0x0c,0x00,0x66,0x00,0x0c,
18406
+0x00,0x76,0x00,0x0c,0x00,0x86,0x00,0x0c,0x00,0x96,0x00,0x0c,
18407
+0x00,0xa6,0x00,0x0c,0x00,0xb6,0x00,0x0c,0x00,0xc6,0x00,0x0c,
18408
+0x00,0xd6,0x00,0x0c,0x00,0x0d,0x5d,0x41,0x05,0x00,0xe5,0x00,
18409
+0x0c,0x00,0xf5,0x00,0x0c,0x00,0x02,0x5d,0x41,0x05,0x00,0xea,
18410
+0x00,0x12,0x00,0xfa,0x00,0x12,0x00,0x02,0x5d,0x41,0x1b,0x00,
18411
+0x19,0x00,0x12,0x00,0x29,0x00,0x12,0x00,0x39,0x00,0x12,0x00,
18412
+0x49,0x00,0x12,0x00,0x59,0x00,0x12,0x00,0x69,0x00,0x12,0x00,
18413
+0x79,0x00,0x12,0x00,0x89,0x00,0x12,0x00,0x99,0x00,0x12,0x00,
18414
+0xa9,0x00,0x12,0x00,0xb9,0x00,0x12,0x00,0xc9,0x00,0x12,0x00,
18415
+0xd9,0x00,0x12,0x00,0x0d,0x5d,0xb8,0x00,0x2c,0x10,0xb8,0x00,
18416
+0x1b,0xd0,0xb8,0x00,0x1f,0x10,0xb8,0x00,0x28,0xd0,0xb8,0x00,
18417
+0x28,0x2f,0x41,0x1b,0x00,0x16,0x00,0x30,0x00,0x26,0x00,0x30,
18418
+0x00,0x36,0x00,0x30,0x00,0x46,0x00,0x30,0x00,0x56,0x00,0x30,
18419
+0x00,0x66,0x00,0x30,0x00,0x76,0x00,0x30,0x00,0x86,0x00,0x30,
18420
+0x00,0x96,0x00,0x30,0x00,0xa6,0x00,0x30,0x00,0xb6,0x00,0x30,
18421
+0x00,0xc6,0x00,0x30,0x00,0xd6,0x00,0x30,0x00,0x0d,0x5d,0x41,
18422
+0x05,0x00,0xe5,0x00,0x30,0x00,0xf5,0x00,0x30,0x00,0x02,0x5d,
18423
+0xb8,0x00,0x06,0x10,0xb8,0x00,0x33,0xdc,0x00,0xba,0x00,0x0f,
18424
+0x00,0x09,0x00,0x03,0x2b,0xb8,0x00,0x0f,0x10,0xba,0x00,0x03,
18425
+0x00,0x15,0x00,0x03,0x2b,0xb8,0x00,0x03,0x10,0xba,0x00,0x1d,
18426
+0x00,0x18,0x00,0x03,0x2b,0xb8,0x00,0x1d,0x10,0xba,0x00,0x26,
18427
+0x00,0x22,0x00,0x03,0x2b,0xb8,0x00,0x26,0x10,0xb8,0x00,0x22,
18428
+0x10,0xb8,0x00,0x2a,0xd0,0xb8,0x00,0x26,0x10,0xb8,0x00,0x2e,
18429
+0xd0,0x30,0x31,0x13,0x10,0x00,0x21,0x20,0x00,0x11,0x10,0x00,
18430
+0x21,0x20,0x00,0x13,0x14,0x00,0x33,0x32,0x00,0x35,0x34,0x00,
18431
+0x23,0x22,0x00,0x01,0x26,0x03,0x23,0x12,0x25,0x04,0x13,0x23,
18432
+0x02,0x37,0x26,0x27,0x36,0x37,0x16,0x17,0x06,0x05,0x26,0x27,
18433
+0x36,0x37,0x16,0x17,0x06,0xaa,0x01,0xb6,0x01,0x36,0x01,0x37,
18434
+0x01,0xb5,0xfe,0x4b,0xfe,0xc9,0xfe,0xca,0xfe,0x4a,0x98,0x01,
18435
+0x5d,0xf7,0xf7,0x01,0x5f,0xfe,0xa1,0xf7,0xf7,0xfe,0xa3,0x02,
18436
+0x56,0xd2,0x4e,0x45,0x13,0x01,0x57,0x01,0x4d,0x13,0x43,0x65,
18437
+0x32,0x6e,0x04,0x06,0x74,0x6a,0x06,0x06,0xfd,0xac,0x6e,0x04,
18438
+0x06,0x74,0x69,0x07,0x07,0x02,0xea,0x01,0x37,0x01,0xb7,0xfe,
18439
+0x49,0xfe,0xc9,0xfe,0xca,0xfe,0x4c,0x01,0xb4,0x01,0x36,0xf5,
18440
+0xfe,0x9f,0x01,0x61,0xf5,0xf9,0x01,0x5d,0xfe,0xa3,0xfe,0x8d,
18441
+0x0d,0xfe,0xfa,0x01,0x5d,0x12,0x18,0xfe,0xab,0x01,0x02,0xe0,
18442
+0x06,0x70,0x75,0x07,0x09,0x6f,0x74,0x06,0x06,0x70,0x75,0x07,
18443
+0x09,0x6f,0x74,0x00,0x00,0x05,0x00,0xaa,0x00,0x00,0x06,0x82,
18444
+0x05,0xd8,0x00,0x0b,0x00,0x17,0x00,0x21,0x00,0x29,0x00,0x31,
18445
+0x01,0x61,0xba,0x00,0x0c,0x00,0x00,0x00,0x03,0x2b,0xb8,0x00,
18446
+0x0c,0x10,0xba,0x00,0x30,0x00,0x2c,0x00,0x03,0x2b,0xb8,0x00,
18447
+0x30,0x10,0xba,0x00,0x1b,0x00,0x24,0x00,0x03,0x2b,0xb8,0x00,
18448
+0x1b,0x10,0xba,0x00,0x06,0x00,0x12,0x00,0x03,0x2b,0xb8,0x00,
18449
+0x06,0x10,0x41,0x1b,0x00,0x16,0x00,0x0c,0x00,0x26,0x00,0x0c,
18450
+0x00,0x36,0x00,0x0c,0x00,0x46,0x00,0x0c,0x00,0x56,0x00,0x0c,
18451
+0x00,0x66,0x00,0x0c,0x00,0x76,0x00,0x0c,0x00,0x86,0x00,0x0c,
18452
+0x00,0x96,0x00,0x0c,0x00,0xa6,0x00,0x0c,0x00,0xb6,0x00,0x0c,
18453
+0x00,0xc6,0x00,0x0c,0x00,0xd6,0x00,0x0c,0x00,0x0d,0x5d,0x41,
18454
+0x05,0x00,0xe5,0x00,0x0c,0x00,0xf5,0x00,0x0c,0x00,0x02,0x5d,
18455
+0x41,0x05,0x00,0xea,0x00,0x12,0x00,0xfa,0x00,0x12,0x00,0x02,
18456
+0x5d,0x41,0x1b,0x00,0x19,0x00,0x12,0x00,0x29,0x00,0x12,0x00,
18457
+0x39,0x00,0x12,0x00,0x49,0x00,0x12,0x00,0x59,0x00,0x12,0x00,
18458
+0x69,0x00,0x12,0x00,0x79,0x00,0x12,0x00,0x89,0x00,0x12,0x00,
18459
+0x99,0x00,0x12,0x00,0xa9,0x00,0x12,0x00,0xb9,0x00,0x12,0x00,
18460
+0xc9,0x00,0x12,0x00,0xd9,0x00,0x12,0x00,0x0d,0x5d,0xb8,0x00,
18461
+0x2c,0x10,0xb8,0x00,0x1f,0xd0,0xb8,0x00,0x1b,0x10,0xb8,0x00,
18462
+0x28,0xd0,0xb8,0x00,0x28,0x2f,0x41,0x1b,0x00,0x16,0x00,0x30,
18463
+0x00,0x26,0x00,0x30,0x00,0x36,0x00,0x30,0x00,0x46,0x00,0x30,
18464
+0x00,0x56,0x00,0x30,0x00,0x66,0x00,0x30,0x00,0x76,0x00,0x30,
18465
+0x00,0x86,0x00,0x30,0x00,0x96,0x00,0x30,0x00,0xa6,0x00,0x30,
18466
+0x00,0xb6,0x00,0x30,0x00,0xc6,0x00,0x30,0x00,0xd6,0x00,0x30,
18467
+0x00,0x0d,0x5d,0x41,0x05,0x00,0xe5,0x00,0x30,0x00,0xf5,0x00,
18468
+0x30,0x00,0x02,0x5d,0xb8,0x00,0x06,0x10,0xb8,0x00,0x33,0xdc,
18469
+0x00,0xba,0x00,0x0f,0x00,0x09,0x00,0x03,0x2b,0xb8,0x00,0x0f,
18470
+0x10,0xba,0x00,0x03,0x00,0x15,0x00,0x03,0x2b,0xb8,0x00,0x03,
18471
+0x10,0xba,0x00,0x18,0x00,0x1d,0x00,0x03,0x2b,0xb8,0x00,0x18,
18472
+0x10,0xba,0x00,0x26,0x00,0x22,0x00,0x03,0x2b,0xb8,0x00,0x26,
18473
+0x10,0xb8,0x00,0x22,0x10,0xb8,0x00,0x2a,0xd0,0xb8,0x00,0x26,
18474
+0x10,0xb8,0x00,0x2e,0xd0,0x30,0x31,0x13,0x10,0x00,0x21,0x20,
18475
+0x00,0x11,0x10,0x00,0x21,0x20,0x00,0x13,0x14,0x00,0x33,0x32,
18476
+0x00,0x35,0x34,0x00,0x23,0x22,0x00,0x01,0x16,0x13,0x33,0x02,
18477
+0x05,0x24,0x03,0x33,0x12,0x01,0x26,0x27,0x36,0x37,0x16,0x17,
18478
+0x06,0x05,0x26,0x27,0x36,0x37,0x16,0x17,0x06,0xaa,0x01,0xb6,
18479
+0x01,0x36,0x01,0x37,0x01,0xb5,0xfe,0x4b,0xfe,0xc9,0xfe,0xca,
18480
+0xfe,0x4a,0x98,0x01,0x5d,0xf7,0xf7,0x01,0x5f,0xfe,0xa1,0xf7,
18481
+0xf7,0xfe,0xa3,0x02,0x54,0xd4,0x4e,0x45,0x13,0xfe,0xa8,0xfe,
18482
+0xb4,0x13,0x41,0x67,0x01,0xac,0x6e,0x04,0x06,0x74,0x6a,0x06,
18483
+0x06,0xfd,0xac,0x6e,0x04,0x06,0x74,0x69,0x07,0x07,0x02,0xea,
18484
+0x01,0x37,0x01,0xb7,0xfe,0x49,0xfe,0xc9,0xfe,0xca,0xfe,0x4c,
18485
+0x01,0xb4,0x01,0x36,0xf5,0xfe,0x9f,0x01,0x61,0xf5,0xf9,0x01,
18486
+0x5d,0xfe,0xa3,0xfe,0x09,0x0c,0x01,0x06,0xfe,0xa3,0x12,0x18,
18487
+0x01,0x55,0xfe,0xfe,0x01,0x79,0x06,0x70,0x75,0x07,0x09,0x6f,
18488
+0x74,0x06,0x06,0x70,0x75,0x07,0x09,0x6f,0x74,0x00,0x00,0x00,
18489
+0x00,0x04,0x00,0xaa,0x00,0x00,0x06,0x82,0x05,0xd8,0x00,0x0b,
18490
+0x00,0x15,0x00,0x1d,0x00,0x25,0x00,0xcd,0xba,0x00,0x0d,0x00,
18491
+0x00,0x00,0x03,0x2b,0xb8,0x00,0x0d,0x10,0xba,0x00,0x1a,0x00,
18492
+0x1e,0x00,0x03,0x2b,0xb8,0x00,0x1a,0x10,0xba,0x00,0x06,0x00,
18493
+0x11,0x00,0x03,0x2b,0xb8,0x00,0x06,0x10,0xb8,0x00,0x11,0x10,
18494
+0xb8,0x00,0x16,0xd0,0xb8,0x00,0x16,0x2f,0x41,0x05,0x00,0xea,
18495
+0x00,0x1e,0x00,0xfa,0x00,0x1e,0x00,0x02,0x5d,0x41,0x1b,0x00,
18496
+0x19,0x00,0x1e,0x00,0x29,0x00,0x1e,0x00,0x39,0x00,0x1e,0x00,
18497
+0x49,0x00,0x1e,0x00,0x59,0x00,0x1e,0x00,0x69,0x00,0x1e,0x00,
18498
+0x79,0x00,0x1e,0x00,0x89,0x00,0x1e,0x00,0x99,0x00,0x1e,0x00,
18499
+0xa9,0x00,0x1e,0x00,0xb9,0x00,0x1e,0x00,0xc9,0x00,0x1e,0x00,
18500
+0xd9,0x00,0x1e,0x00,0x0d,0x5d,0xb8,0x00,0x0d,0x10,0xb8,0x00,
18501
+0x22,0xd0,0xb8,0x00,0x22,0x2f,0xb8,0x00,0x06,0x10,0xb8,0x00,
18502
+0x27,0xdc,0x00,0xba,0x00,0x0f,0x00,0x09,0x00,0x03,0x2b,0xb8,
18503
+0x00,0x0f,0x10,0xba,0x00,0x03,0x00,0x20,0x00,0x03,0x2b,0xb8,
18504
+0x00,0x03,0x10,0xba,0x00,0x1c,0x00,0x11,0x00,0x03,0x2b,0xb8,
18505
+0x00,0x1c,0x10,0xb8,0x00,0x11,0x10,0xb8,0x00,0x0c,0xd0,0xb8,
18506
+0x00,0x0c,0x2f,0xb8,0x00,0x20,0x10,0xb8,0x00,0x18,0xd0,0xb8,
18507
+0x00,0x1c,0x10,0xb8,0x00,0x24,0xd0,0x30,0x31,0x13,0x10,0x00,
18508
+0x21,0x20,0x00,0x11,0x10,0x00,0x21,0x20,0x00,0x01,0x23,0x12,
18509
+0x05,0x24,0x13,0x27,0x02,0x27,0x06,0x01,0x26,0x27,0x06,0x07,
18510
+0x16,0x17,0x36,0x25,0x26,0x27,0x06,0x07,0x16,0x17,0x36,0xaa,
18511
+0x01,0xb6,0x01,0x36,0x01,0x37,0x01,0xb5,0xfe,0x4b,0xfe,0xc9,
18512
+0xfe,0xca,0xfe,0x4a,0x01,0x8b,0x4f,0x17,0x01,0x93,0x01,0xa0,
18513
+0x17,0x52,0x60,0xff,0xe5,0x02,0x98,0x08,0x7f,0x8c,0x08,0x06,
18514
+0x84,0x89,0xfd,0xc1,0x06,0x80,0x8d,0x07,0x05,0x85,0x8a,0x02,
18515
+0xea,0x01,0x37,0x01,0xb7,0xfe,0x49,0xfe,0xc9,0xfe,0xca,0xfe,
18516
+0x4c,0x01,0xb4,0x01,0x30,0xfe,0x63,0x1d,0x16,0x01,0xa6,0x02,
18517
+0xfe,0xc2,0x0e,0x0c,0x02,0x5a,0x89,0x0a,0x08,0x8f,0x86,0x09,
18518
+0x09,0x8c,0x87,0x0a,0x08,0x8f,0x86,0x09,0x09,0x00,0x00,0x00,
18519
+0x00,0x0a,0x00,0xaa,0x00,0x00,0x06,0x82,0x05,0xd8,0x00,0x07,
18520
+0x00,0x0c,0x00,0x13,0x00,0x22,0x00,0x2a,0x00,0x32,0x00,0x3a,
18521
+0x00,0x41,0x00,0x49,0x00,0x58,0x00,0xe9,0xb8,0x00,0x59,0x2f,
18522
+0xb8,0x00,0x5a,0x2f,0xb8,0x00,0x03,0xdc,0xb8,0x00,0x06,0xdc,
18523
+0xb8,0x00,0x00,0xd0,0xb8,0x00,0x00,0x2f,0xb8,0x00,0x03,0x10,
18524
+0xb8,0x00,0x01,0xd0,0xb8,0x00,0x01,0x2f,0xb8,0x00,0x59,0x10,
18525
+0xb8,0x00,0x1f,0xd0,0xb8,0x00,0x1f,0x2f,0xb8,0x00,0x0f,0xd0,
18526
+0xb8,0x00,0x0f,0x2f,0xb8,0x00,0x06,0x10,0xb8,0x00,0x42,0xd0,
18527
+0xb8,0x00,0x42,0x2f,0xb8,0x00,0x03,0x10,0xb8,0x00,0x43,0xd0,
18528
+0xb8,0x00,0x43,0x2f,0xb8,0x00,0x03,0x10,0xb8,0x00,0x45,0xd0,
18529
+0xb8,0x00,0x06,0x10,0xb8,0x00,0x47,0xd0,0xb8,0x00,0x47,0x2f,
18530
+0xb8,0x00,0x1f,0x10,0xb8,0x00,0x4c,0xdc,0x41,0x1b,0x00,0x16,
18531
+0x00,0x4c,0x00,0x26,0x00,0x4c,0x00,0x36,0x00,0x4c,0x00,0x46,
18532
+0x00,0x4c,0x00,0x56,0x00,0x4c,0x00,0x66,0x00,0x4c,0x00,0x76,
18533
+0x00,0x4c,0x00,0x86,0x00,0x4c,0x00,0x96,0x00,0x4c,0x00,0xa6,
18534
+0x00,0x4c,0x00,0xb6,0x00,0x4c,0x00,0xc6,0x00,0x4c,0x00,0xd6,
18535
+0x00,0x4c,0x00,0x0d,0x5d,0x41,0x05,0x00,0xe5,0x00,0x4c,0x00,
18536
+0xf5,0x00,0x4c,0x00,0x02,0x5d,0x00,0xb8,0x00,0x46,0x2f,0xb8,
18537
+0x00,0x48,0x2f,0xb8,0x00,0x00,0x2f,0xb8,0x00,0x02,0x2f,0xba,
18538
+0x00,0x14,0x00,0x57,0x00,0x03,0x2b,0xb8,0x00,0x14,0x10,0xba,
18539
+0x00,0x24,0x00,0x27,0x00,0x03,0x2b,0xb8,0x00,0x24,0x10,0xb8,
18540
+0x00,0x2b,0xd0,0xb8,0x00,0x27,0x10,0xb8,0x00,0x2f,0xd0,0x30,
18541
+0x31,0x01,0x33,0x17,0x11,0x07,0x23,0x27,0x11,0x05,0x17,0x15,
18542
+0x07,0x27,0x25,0x17,0x07,0x23,0x26,0x27,0x35,0x05,0x32,0x1f,
18543
+0x01,0x14,0x07,0x06,0x23,0x22,0x27,0x26,0x35,0x34,0x37,0x36,
18544
+0x01,0x21,0x17,0x15,0x07,0x21,0x27,0x35,0x25,0x21,0x17,0x15,
18545
+0x07,0x21,0x27,0x35,0x03,0x33,0x16,0x17,0x15,0x07,0x27,0x35,
18546
+0x25,0x33,0x17,0x15,0x07,0x27,0x35,0x25,0x33,0x17,0x11,0x07,
18547
+0x23,0x27,0x11,0x03,0x06,0x15,0x14,0x17,0x16,0x33,0x32,0x37,
18548
+0x36,0x35,0x27,0x26,0x23,0x22,0x03,0x73,0x4e,0x06,0x06,0x4e,
18549
+0x06,0x02,0x39,0x39,0xf8,0x3d,0xfc,0xfb,0xfd,0x3e,0x03,0xc8,
18550
+0x2d,0x02,0x31,0xd7,0x5c,0x0d,0xc4,0x48,0x30,0xb5,0x65,0x25,
18551
+0xbd,0x46,0xfd,0x4b,0x01,0x53,0x06,0x06,0xfe,0xad,0x06,0x04,
18552
+0x77,0x01,0x5a,0x07,0x07,0xfe,0xa6,0x06,0x47,0x03,0x86,0x72,
18553
+0x3d,0xf8,0xfd,0xb4,0x03,0x3b,0xf7,0x3d,0x02,0x1b,0x4e,0x06,
18554
+0x06,0x4e,0x06,0x24,0x82,0x19,0x45,0x7c,0x20,0x31,0x86,0x09,
18555
+0x3f,0x92,0x27,0x05,0xd8,0x06,0xfe,0xa1,0x06,0x06,0x01,0x5f,
18556
+0x9c,0x3e,0x03,0xff,0x3f,0xee,0xfe,0x40,0xc7,0x37,0x04,0xb5,
18557
+0xe2,0x60,0xbd,0x64,0x18,0xa8,0x40,0x5c,0xb4,0x68,0x1b,0xfe,
18558
+0xed,0x06,0x50,0x06,0x06,0x50,0x06,0x06,0x50,0x06,0x06,0x50,
18559
+0xfe,0xe7,0x82,0x79,0x03,0x3f,0xfd,0x04,0x2b,0x3c,0x03,0xfe,
18560
+0x3e,0x04,0x77,0x06,0xfe,0xa1,0x06,0x06,0x01,0x5f,0x02,0x56,
18561
+0x47,0x7b,0x3f,0x2c,0x72,0x11,0x43,0x82,0x41,0x9a,0x00,0x00,
18562
+0x00,0x02,0x00,0xaf,0xff,0x30,0x04,0x3a,0x05,0xdb,0x00,0x31,
18563
+0x00,0x40,0x01,0x21,0xba,0x00,0x37,0x00,0x17,0x00,0x03,0x2b,
18564
+0xb8,0x00,0x37,0x10,0xba,0x00,0x09,0x00,0x0f,0x00,0x03,0x2b,
18565
+0xb8,0x00,0x09,0x10,0xba,0x00,0x2e,0x00,0x2b,0x00,0x03,0x2b,
18566
+0xb8,0x00,0x2e,0x10,0xba,0x00,0x00,0x00,0x17,0x00,0x2e,0x11,
18567
+0x12,0x39,0xb8,0x00,0x04,0xd0,0xb8,0x00,0x09,0x10,0xb8,0x00,
18568
+0x0c,0xd0,0xb8,0x00,0x0c,0x2f,0xb8,0x00,0x0f,0x10,0xb8,0x00,
18569
+0x12,0xd0,0xba,0x00,0x1b,0x00,0x17,0x00,0x2e,0x11,0x12,0x39,
18570
+0xb8,0x00,0x17,0x10,0xb8,0x00,0x1f,0xd0,0x41,0x1b,0x00,0x16,
18571
+0x00,0x37,0x00,0x26,0x00,0x37,0x00,0x36,0x00,0x37,0x00,0x46,
18572
+0x00,0x37,0x00,0x56,0x00,0x37,0x00,0x66,0x00,0x37,0x00,0x76,
18573
+0x00,0x37,0x00,0x86,0x00,0x37,0x00,0x96,0x00,0x37,0x00,0xa6,
18574
+0x00,0x37,0x00,0xb6,0x00,0x37,0x00,0xc6,0x00,0x37,0x00,0xd6,
18575
+0x00,0x37,0x00,0x0d,0x5d,0x41,0x05,0x00,0xe5,0x00,0x37,0x00,
18576
+0xf5,0x00,0x37,0x00,0x02,0x5d,0xb8,0x00,0x37,0x10,0xb8,0x00,
18577
+0x21,0xd0,0xb8,0x00,0x2b,0x10,0xb8,0x00,0x3d,0xd0,0xb8,0x00,
18578
+0x2e,0x10,0xb8,0x00,0x42,0xdc,0x00,0xb8,0x00,0x20,0x2f,0xb8,
18579
+0x00,0x22,0x2f,0xb8,0x00,0x2b,0x2f,0xb8,0x00,0x2d,0x2f,0xb8,
18580
+0x00,0x0d,0x2f,0xba,0x00,0x0a,0x00,0x0b,0x00,0x03,0x2b,0xb8,
18581
+0x00,0x0a,0x10,0xba,0x00,0x27,0x00,0x32,0x00,0x03,0x2b,0xb8,
18582
+0x00,0x27,0x10,0xba,0x00,0x3a,0x00,0x13,0x00,0x03,0x2b,0xb8,
18583
+0x00,0x3a,0x10,0xba,0x00,0x00,0x00,0x32,0x00,0x27,0x11,0x12,
18584
+0x39,0xb8,0x00,0x13,0x10,0xb8,0x00,0x08,0xd0,0xb8,0x00,0x0b,
18585
+0x10,0xb8,0x00,0x0f,0xd0,0xb8,0x00,0x0a,0x10,0xb8,0x00,0x11,
18586
+0xd0,0xb8,0x00,0x11,0x2f,0xba,0x00,0x1b,0x00,0x32,0x00,0x27,
18587
+0x11,0x12,0x39,0x30,0x31,0x01,0x16,0x17,0x16,0x15,0x14,0x07,
18588
+0x06,0x07,0x15,0x37,0x15,0x07,0x17,0x23,0x27,0x23,0x35,0x33,
18589
+0x27,0x26,0x27,0x26,0x35,0x34,0x37,0x36,0x37,0x26,0x27,0x26,
18590
+0x3d,0x01,0x33,0x15,0x14,0x17,0x16,0x17,0x33,0x36,0x37,0x36,
18591
+0x3d,0x01,0x33,0x15,0x14,0x07,0x06,0x05,0x23,0x06,0x07,0x06,
18592
+0x15,0x14,0x16,0x33,0x32,0x36,0x35,0x34,0x27,0x26,0x03,0x69,
18593
+0x28,0x24,0x85,0x84,0x6c,0x8f,0xd8,0xdc,0x01,0x81,0x01,0xca,
18594
+0xca,0x02,0x93,0x6d,0x85,0x85,0x24,0x28,0x28,0x24,0x85,0x8e,
18595
+0x5b,0x55,0x75,0x26,0x74,0x55,0x5b,0x8e,0x85,0x24,0xfe,0xf7,
18596
+0x26,0x75,0x55,0x5b,0xb7,0x82,0x7f,0xb7,0x5b,0x55,0x04,0x56,
18597
+0x1a,0x24,0x83,0xbd,0xbc,0x7c,0x64,0x0e,0xd1,0x02,0x64,0x01,
18598
+0xca,0xcb,0x62,0xd1,0x0d,0x65,0x7c,0xbc,0xbd,0x83,0x24,0x1a,
18599
+0x19,0x25,0x83,0xbc,0x08,0x0a,0x82,0x5a,0x53,0x07,0x07,0x53,
18600
+0x5a,0x82,0x0a,0x08,0xbc,0x83,0x25,0x5f,0x06,0x54,0x59,0x82,
18601
+0x82,0xaa,0xaa,0x82,0x82,0x59,0x54,0x00,0x00,0x02,0x00,0xaf,
18602
+0xfe,0xff,0x05,0x2a,0x05,0xda,0x00,0x0b,0x00,0x24,0x01,0x13,
18603
+0xba,0x00,0x06,0x00,0x0e,0x00,0x03,0x2b,0xb8,0x00,0x06,0x10,
18604
+0xba,0x00,0x19,0x00,0x1f,0x00,0x03,0x2b,0xb8,0x00,0x19,0x10,
18605
+0xba,0x00,0x14,0x00,0x00,0x00,0x03,0x2b,0xb8,0x00,0x14,0x10,
18606
+0x41,0x05,0x00,0xea,0x00,0x00,0x00,0xfa,0x00,0x00,0x00,0x02,
18607
+0x5d,0x41,0x1b,0x00,0x19,0x00,0x00,0x00,0x29,0x00,0x00,0x00,
18608
+0x39,0x00,0x00,0x00,0x49,0x00,0x00,0x00,0x59,0x00,0x00,0x00,
18609
+0x69,0x00,0x00,0x00,0x79,0x00,0x00,0x00,0x89,0x00,0x00,0x00,
18610
+0x99,0x00,0x00,0x00,0xa9,0x00,0x00,0x00,0xb9,0x00,0x00,0x00,
18611
+0xc9,0x00,0x00,0x00,0xd9,0x00,0x00,0x00,0x0d,0x5d,0x41,0x1b,
18612
+0x00,0x16,0x00,0x06,0x00,0x26,0x00,0x06,0x00,0x36,0x00,0x06,
18613
+0x00,0x46,0x00,0x06,0x00,0x56,0x00,0x06,0x00,0x66,0x00,0x06,
18614
+0x00,0x76,0x00,0x06,0x00,0x86,0x00,0x06,0x00,0x96,0x00,0x06,
18615
+0x00,0xa6,0x00,0x06,0x00,0xb6,0x00,0x06,0x00,0xc6,0x00,0x06,
18616
+0x00,0xd6,0x00,0x06,0x00,0x0d,0x5d,0x41,0x05,0x00,0xe5,0x00,
18617
+0x06,0x00,0xf5,0x00,0x06,0x00,0x02,0x5d,0xb8,0x00,0x19,0x10,
18618
+0xb8,0x00,0x1c,0xd0,0xb8,0x00,0x1c,0x2f,0xb8,0x00,0x1f,0x10,
18619
+0xb8,0x00,0x22,0xd0,0xb8,0x00,0x14,0x10,0xb8,0x00,0x26,0xdc,
18620
+0x00,0xb8,0x00,0x1d,0x2f,0xba,0x00,0x11,0x00,0x03,0x00,0x03,
18621
+0x2b,0xb8,0x00,0x11,0x10,0xba,0x00,0x1a,0x00,0x1b,0x00,0x03,
18622
+0x2b,0xb8,0x00,0x1a,0x10,0xba,0x00,0x09,0x00,0x23,0x00,0x03,
18623
+0x2b,0xb8,0x00,0x09,0x10,0xb8,0x00,0x23,0x10,0xb8,0x00,0x18,
18624
+0xd0,0xb8,0x00,0x1b,0x10,0xb8,0x00,0x1f,0xd0,0xb8,0x00,0x1a,
18625
+0x10,0xb8,0x00,0x21,0xd0,0xb8,0x00,0x21,0x2f,0x30,0x31,0x01,
18626
+0x34,0x26,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x05,
18627
+0x26,0x35,0x34,0x00,0x33,0x32,0x00,0x15,0x14,0x07,0x06,0x07,
18628
+0x11,0x25,0x15,0x05,0x17,0x23,0x03,0x23,0x35,0x21,0x03,0x26,
18629
+0x04,0x77,0xe8,0xa1,0xa4,0xe7,0xe7,0xa4,0xa1,0xe8,0xfc,0xe1,
18630
+0xa9,0x01,0x50,0xef,0xec,0x01,0x50,0xa7,0x89,0xb3,0x01,0x10,
18631
+0xfe,0xea,0x02,0xa4,0x02,0xff,0x00,0xff,0x02,0xba,0x03,0xa2,
18632
+0xa4,0xe4,0xe4,0xa4,0xa3,0xd8,0xd8,0xeb,0x9d,0xee,0xef,0x01,
18633
+0x4c,0xfe,0xb4,0xef,0xee,0x9d,0x7e,0x12,0xfe,0xf7,0x02,0x7e,
18634
+0x02,0xfe,0x01,0x00,0x7c,0x01,0x09,0x10,0x00,0x02,0x00,0xaf,
18635
+0xfe,0xff,0x05,0x2a,0x05,0xda,0x00,0x0b,0x00,0x24,0x01,0x1b,
18636
+0xba,0x00,0x03,0x00,0x21,0x00,0x03,0x2b,0xb8,0x00,0x03,0x10,
18637
+0xba,0x00,0x17,0x00,0x0c,0x00,0x03,0x2b,0xb8,0x00,0x17,0x10,
18638
+0xba,0x00,0x1b,0x00,0x09,0x00,0x03,0x2b,0xb8,0x00,0x1b,0x10,
18639
+0x41,0x1b,0x00,0x16,0x00,0x03,0x00,0x26,0x00,0x03,0x00,0x36,
18640
+0x00,0x03,0x00,0x46,0x00,0x03,0x00,0x56,0x00,0x03,0x00,0x66,
18641
+0x00,0x03,0x00,0x76,0x00,0x03,0x00,0x86,0x00,0x03,0x00,0x96,
18642
+0x00,0x03,0x00,0xa6,0x00,0x03,0x00,0xb6,0x00,0x03,0x00,0xc6,
18643
+0x00,0x03,0x00,0xd6,0x00,0x03,0x00,0x0d,0x5d,0x41,0x05,0x00,
18644
+0xe5,0x00,0x03,0x00,0xf5,0x00,0x03,0x00,0x02,0x5d,0x41,0x05,
18645
+0x00,0xea,0x00,0x09,0x00,0xfa,0x00,0x09,0x00,0x02,0x5d,0x41,
18646
+0x1b,0x00,0x19,0x00,0x09,0x00,0x29,0x00,0x09,0x00,0x39,0x00,
18647
+0x09,0x00,0x49,0x00,0x09,0x00,0x59,0x00,0x09,0x00,0x69,0x00,
18648
+0x09,0x00,0x79,0x00,0x09,0x00,0x89,0x00,0x09,0x00,0x99,0x00,
18649
+0x09,0x00,0xa9,0x00,0x09,0x00,0xb9,0x00,0x09,0x00,0xc9,0x00,
18650
+0x09,0x00,0xd9,0x00,0x09,0x00,0x0d,0x5d,0xb8,0x00,0x0c,0x10,
18651
+0xb8,0x00,0x10,0xd0,0xb8,0x00,0x10,0x2f,0xb8,0x00,0x17,0x10,
18652
+0xb8,0x00,0x12,0xd0,0xb8,0x00,0x12,0x2f,0xb8,0x00,0x1b,0x10,
18653
+0xb8,0x00,0x26,0xdc,0x00,0xb8,0x00,0x11,0x2f,0xba,0x00,0x06,
18654
+0x00,0x1e,0x00,0x03,0x2b,0xb8,0x00,0x06,0x10,0xba,0x00,0x10,
18655
+0x00,0x0d,0x00,0x03,0x2b,0xb8,0x00,0x10,0x10,0xba,0x00,0x0c,
18656
+0x00,0x00,0x00,0x03,0x2b,0xb8,0x00,0x0c,0x10,0xb8,0x00,0x10,
18657
+0x10,0xb8,0x00,0x13,0xd0,0xb8,0x00,0x13,0x2f,0xb8,0x00,0x0d,
18658
+0x10,0xb8,0x00,0x15,0xd0,0xb8,0x00,0x15,0x2f,0xb8,0x00,0x0c,
18659
+0x10,0xb8,0x00,0x17,0xd0,0x30,0x31,0x01,0x22,0x06,0x15,0x14,
18660
+0x16,0x33,0x32,0x36,0x35,0x34,0x26,0x27,0x13,0x23,0x35,0x21,
18661
+0x13,0x33,0x07,0x05,0x15,0x25,0x11,0x16,0x17,0x16,0x15,0x14,
18662
+0x00,0x23,0x22,0x00,0x35,0x34,0x37,0x36,0x02,0xee,0xa4,0xe7,
18663
+0xe7,0xa4,0xa1,0xe8,0xe8,0xf4,0x02,0xff,0x00,0xff,0x02,0xa4,
18664
+0x02,0x01,0x16,0xfe,0xf0,0xb3,0x89,0xa7,0xfe,0xb0,0xec,0xef,
18665
+0xfe,0xb0,0xa9,0x89,0x02,0xb1,0xd7,0xa4,0xa4,0xe3,0xe3,0xa4,
18666
+0xa4,0xd7,0xa3,0x01,0x09,0x7c,0x01,0x01,0xff,0x02,0x7e,0x02,
18667
+0xfe,0xf7,0x12,0x7e,0x9d,0xee,0xee,0xfe,0xb4,0x01,0x4c,0xee,
18668
+0xee,0x9d,0x80,0x00,0x00,0x02,0x00,0xaf,0xff,0xf5,0x06,0xa5,
18669
+0x05,0xd5,0x00,0x0b,0x00,0x23,0x00,0x1f,0xba,0x00,0x1e,0x00,
18670
+0x1f,0x00,0x03,0x2b,0xb8,0x00,0x1e,0x10,0xb8,0x00,0x25,0xdc,
18671
+0x00,0xba,0x00,0x1c,0x00,0x1a,0x00,0x03,0x2b,0xb8,0x00,0x1c,
18672
+0x10,0x30,0x31,0x01,0x26,0x24,0x07,0x06,0x10,0x17,0x16,0x04,
18673
+0x37,0x36,0x02,0x13,0x06,0x2b,0x01,0x22,0x27,0x26,0x35,0x27,
18674
+0x34,0x37,0x36,0x04,0x17,0x01,0x25,0x37,0x21,0x11,0x07,0x11,
18675
+0x01,0x16,0x12,0x03,0xf4,0x74,0xfe,0xc6,0x74,0x73,0x73,0x74,
18676
+0x01,0x45,0x75,0x73,0x0b,0x15,0xa8,0xe9,0x02,0xed,0xa6,0xa6,
18677
+0x02,0xa8,0xa6,0x01,0xc8,0x70,0x01,0x69,0xfe,0x8d,0x8c,0x01,
18678
+0xee,0x8f,0xfe,0x98,0x64,0x10,0x03,0x35,0x73,0x0a,0x71,0x74,
18679
+0xfe,0xba,0x74,0x72,0x02,0x74,0x74,0x01,0x3c,0xfd,0xd6,0xa4,
18680
+0xa4,0xa5,0xeb,0x03,0xea,0xa7,0xa6,0x11,0x67,0x01,0x5c,0x02,
18681
+0x8c,0xfe,0x14,0x8f,0x01,0x75,0xfe,0xa2,0x6c,0xfe,0x39,0x00,
18682
+0x00,0x01,0x01,0x53,0x00,0x00,0x05,0xd7,0x05,0xd8,0x00,0x1c,
18683
+0x00,0x9f,0xb8,0x00,0x1d,0x2f,0xb8,0x00,0x1e,0x2f,0xb8,0x00,
18684
+0x1d,0x10,0xb8,0x00,0x04,0xd0,0xb8,0x00,0x04,0x2f,0xb8,0x00,
18685
+0x12,0xdc,0x41,0x1b,0x00,0x16,0x00,0x12,0x00,0x26,0x00,0x12,
18686
+0x00,0x36,0x00,0x12,0x00,0x46,0x00,0x12,0x00,0x56,0x00,0x12,
18687
+0x00,0x66,0x00,0x12,0x00,0x76,0x00,0x12,0x00,0x86,0x00,0x12,
18688
+0x00,0x96,0x00,0x12,0x00,0xa6,0x00,0x12,0x00,0xb6,0x00,0x12,
18689
+0x00,0xc6,0x00,0x12,0x00,0xd6,0x00,0x12,0x00,0x0d,0x5d,0x41,
18690
+0x05,0x00,0xe5,0x00,0x12,0x00,0xf5,0x00,0x12,0x00,0x02,0x5d,
18691
+0xba,0x00,0x14,0x00,0x04,0x00,0x12,0x11,0x12,0x39,0xb8,0x00,
18692
+0x1e,0x10,0xb8,0x00,0x18,0xdc,0xb8,0x00,0x19,0xdc,0xb8,0x00,
18693
+0x15,0xd0,0x00,0xb8,0x00,0x18,0x2f,0xb8,0x00,0x16,0x2f,0xba,
18694
+0x00,0x0f,0x00,0x07,0x00,0x03,0x2b,0xb8,0x00,0x0f,0x10,0xba,
18695
+0x00,0x15,0x00,0x1a,0x00,0x03,0x2b,0xb8,0x00,0x15,0x10,0xb8,
18696
+0x00,0x00,0xd0,0x30,0x31,0x01,0x35,0x32,0x36,0x35,0x34,0x26,
18697
+0x23,0x22,0x06,0x1d,0x01,0x23,0x34,0x00,0x33,0x32,0x00,0x15,
18698
+0x14,0x07,0x33,0x11,0x33,0x11,0x23,0x11,0x21,0x35,0x03,0x0d,
18699
+0x7a,0xaa,0xa9,0x7b,0x79,0xab,0x96,0x01,0x02,0xb8,0xbb,0x01,
18700
+0x02,0x6d,0xe3,0x97,0x97,0xfc,0x13,0x02,0x13,0x01,0xab,0x79,
18701
+0x79,0xab,0xab,0x79,0x02,0xb9,0x01,0x04,0xfe,0xfc,0xb9,0xa8,
18702
+0x7b,0x03,0xc5,0xfa,0x28,0x01,0x7c,0x97,0x00,0x01,0x01,0xc0,
18703
+0x00,0x00,0x05,0x6a,0x05,0xd8,0x00,0x1f,0x00,0xc7,0xb8,0x00,
18704
+0x20,0x2f,0xb8,0x00,0x21,0x2f,0xb8,0x00,0x20,0x10,0xb8,0x00,
18705
+0x00,0xd0,0xb8,0x00,0x00,0x2f,0xb8,0x00,0x03,0xd0,0xb8,0x00,
18706
+0x00,0x10,0xb8,0x00,0x09,0xdc,0xb8,0x00,0x05,0xd0,0xb8,0x00,
18707
+0x21,0x10,0xb8,0x00,0x0f,0xdc,0xb8,0x00,0x17,0xdc,0x41,0x05,
18708
+0x00,0xea,0x00,0x17,0x00,0xfa,0x00,0x17,0x00,0x02,0x5d,0x41,
18709
+0x1b,0x00,0x19,0x00,0x17,0x00,0x29,0x00,0x17,0x00,0x39,0x00,
18710
+0x17,0x00,0x49,0x00,0x17,0x00,0x59,0x00,0x17,0x00,0x69,0x00,
18711
+0x17,0x00,0x79,0x00,0x17,0x00,0x89,0x00,0x17,0x00,0x99,0x00,
18712
+0x17,0x00,0xa9,0x00,0x17,0x00,0xb9,0x00,0x17,0x00,0xc9,0x00,
18713
+0x17,0x00,0xd9,0x00,0x17,0x00,0x0d,0x5d,0xb8,0x00,0x12,0xd0,
18714
+0xb8,0x00,0x12,0x2f,0xb8,0x00,0x09,0x10,0xb8,0x00,0x1d,0xd0,
18715
+0x00,0xb8,0x00,0x13,0x2f,0xb8,0x00,0x1e,0x2f,0xb8,0x00,0x04,
18716
+0x2f,0xba,0x00,0x03,0x00,0x00,0x00,0x03,0x2b,0xb8,0x00,0x03,
18717
+0x10,0xba,0x00,0x0c,0x00,0x1a,0x00,0x03,0x2b,0xb8,0x00,0x0c,
18718
+0x10,0xb8,0x00,0x03,0x10,0xb8,0x00,0x06,0xd0,0xb8,0x00,0x00,
18719
+0x10,0xb8,0x00,0x08,0xd0,0xba,0x00,0x0a,0x00,0x1a,0x00,0x0c,
18720
+0x11,0x12,0x39,0x30,0x31,0x01,0x23,0x35,0x33,0x35,0x33,0x15,
18721
+0x33,0x15,0x23,0x11,0x36,0x33,0x32,0x12,0x15,0x14,0x06,0x1d,
18722
+0x01,0x23,0x34,0x36,0x35,0x34,0x26,0x23,0x22,0x06,0x15,0x11,
18723
+0x23,0x02,0x2a,0x6a,0x6a,0x98,0xb2,0xb2,0x6f,0x98,0xb2,0xef,
18724
+0x8c,0x97,0x8d,0x9b,0x6f,0x6e,0x9a,0x98,0x04,0x8d,0x97,0xb4,
18725
+0xb4,0x97,0xfe,0x7d,0x6d,0xfe,0xfe,0xbb,0x5a,0xe5,0x79,0x02,
18726
+0x84,0xee,0x48,0x7b,0xa9,0xaa,0x7a,0xfe,0x46,0x00,0x00,0x00,
18727
+0x00,0x02,0x00,0xf8,0x00,0x00,0x06,0x32,0x05,0xd8,0x00,0x0b,
18728
+0x00,0x34,0x00,0xcb,0xba,0x00,0x1d,0x00,0x1e,0x00,0x03,0x2b,
18729
+0xb8,0x00,0x1d,0x10,0xba,0x00,0x0c,0x00,0x1a,0x00,0x03,0x2b,
18730
+0xb8,0x00,0x0c,0x10,0xba,0x00,0x2e,0x00,0x2b,0x00,0x03,0x2b,
18731
+0xb8,0x00,0x2e,0x10,0xb8,0x00,0x1d,0x10,0xb8,0x00,0x20,0xdc,
18732
+0xb8,0x00,0x1e,0x10,0xb8,0x00,0x22,0xd0,0xb8,0x00,0x1d,0x10,
18733
+0xb8,0x00,0x24,0xd0,0xb8,0x00,0x1a,0x10,0xb8,0x00,0x26,0xd0,
18734
+0xb8,0x00,0x0c,0x10,0xb8,0x00,0x28,0xd0,0xb8,0x00,0x2b,0x10,
18735
+0xb8,0x00,0x2d,0xdc,0xb8,0x00,0x30,0xd0,0xb8,0x00,0x2b,0x10,
18736
+0xb8,0x00,0x32,0xd0,0xb8,0x00,0x2e,0x10,0xb8,0x00,0x36,0xdc,
18737
+0x00,0xb8,0x00,0x13,0x2f,0xba,0x00,0x24,0x00,0x21,0x00,0x03,
18738
+0x2b,0xb8,0x00,0x24,0x10,0xba,0x00,0x20,0x00,0x1d,0x00,0x03,
18739
+0x2b,0xb8,0x00,0x20,0x10,0xba,0x00,0x26,0x00,0x1b,0x00,0x03,
18740
+0x2b,0xb8,0x00,0x26,0x10,0xb8,0x00,0x24,0x10,0xb8,0x00,0x27,
18741
+0xd0,0xb8,0x00,0x26,0x10,0xb8,0x00,0x29,0xd0,0xb8,0x00,0x24,
18742
+0x10,0xb8,0x00,0x2b,0xd0,0xb8,0x00,0x21,0x10,0xb8,0x00,0x2d,
18743
+0xd0,0xb8,0x00,0x20,0x10,0xb8,0x00,0x2f,0xd0,0xb8,0x00,0x1d,
18744
+0x10,0xb8,0x00,0x31,0xd0,0xb8,0x00,0x1b,0x10,0xb8,0x00,0x33,
18745
+0xd0,0x30,0x31,0x01,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,
18746
+0x35,0x34,0x26,0x37,0x16,0x17,0x16,0x15,0x14,0x06,0x23,0x22,
18747
+0x26,0x35,0x34,0x37,0x36,0x37,0x11,0x21,0x11,0x21,0x35,0x33,
18748
+0x11,0x23,0x35,0x21,0x11,0x21,0x11,0x33,0x11,0x21,0x11,0x21,
18749
+0x15,0x23,0x11,0x33,0x15,0x21,0x11,0x21,0x03,0x95,0x38,0x4f,
18750
+0x4f,0x38,0x37,0x4f,0x4e,0x14,0x3d,0x30,0x4c,0x98,0x6d,0x6b,
18751
+0x99,0x4c,0x2f,0x3e,0xfe,0xe0,0xfe,0xce,0x9b,0x9b,0x01,0x32,
18752
+0x01,0x20,0x97,0x01,0x20,0x01,0x31,0x99,0x99,0xfe,0xcf,0xfe,
18753
+0xe0,0x01,0x8c,0x4f,0x37,0x39,0x4e,0x4e,0x39,0x37,0x4f,0x73,
18754
+0x12,0x30,0x4c,0x6c,0x6c,0x99,0x99,0x6c,0x6c,0x4c,0x31,0x11,
18755
+0x01,0x8c,0xfe,0x4b,0x97,0x02,0xd3,0x98,0xfe,0x4a,0x01,0xb6,
18756
+0xfe,0x4a,0x01,0xb6,0x98,0xfd,0x2d,0x97,0x01,0xb5,0x00,0x00,
18757
+0x00,0x01,0x01,0x04,0x00,0x00,0x06,0x27,0x05,0xd8,0x00,0x3c,
18758
+0x01,0x83,0xba,0x00,0x14,0x00,0x0b,0x00,0x03,0x2b,0xb8,0x00,
18759
+0x14,0x10,0xba,0x00,0x01,0x00,0x02,0x00,0x03,0x2b,0xb8,0x00,
18760
+0x01,0x10,0xba,0x00,0x34,0x00,0x29,0x00,0x03,0x2b,0xb8,0x00,
18761
+0x34,0x10,0xb8,0x00,0x02,0x10,0xb8,0x00,0x06,0xd0,0xba,0x00,
18762
+0x12,0x00,0x0b,0x00,0x34,0x11,0x12,0x39,0xb8,0x00,0x14,0x10,
18763
+0xb8,0x00,0x17,0xd0,0xb8,0x00,0x02,0x10,0xb8,0x00,0x1b,0xd0,
18764
+0xba,0x00,0x1c,0x00,0x0b,0x00,0x34,0x11,0x12,0x39,0xba,0x00,
18765
+0x1d,0x00,0x0b,0x00,0x34,0x11,0x12,0x39,0xba,0x00,0x22,0x00,
18766
+0x0b,0x00,0x34,0x11,0x12,0x39,0xb8,0x00,0x01,0x10,0xb8,0x00,
18767
+0x23,0xd0,0x41,0x05,0x00,0xea,0x00,0x29,0x00,0xfa,0x00,0x29,
18768
+0x00,0x02,0x5d,0x41,0x1b,0x00,0x19,0x00,0x29,0x00,0x29,0x00,
18769
+0x29,0x00,0x39,0x00,0x29,0x00,0x49,0x00,0x29,0x00,0x59,0x00,
18770
+0x29,0x00,0x69,0x00,0x29,0x00,0x79,0x00,0x29,0x00,0x89,0x00,
18771
+0x29,0x00,0x99,0x00,0x29,0x00,0xa9,0x00,0x29,0x00,0xb9,0x00,
18772
+0x29,0x00,0xc9,0x00,0x29,0x00,0xd9,0x00,0x29,0x00,0x0d,0x5d,
18773
+0xb8,0x00,0x29,0x10,0xb8,0x00,0x2b,0xd0,0xb8,0x00,0x2b,0x2f,
18774
+0xba,0x00,0x2c,0x00,0x0b,0x00,0x34,0x11,0x12,0x39,0xb8,0x00,
18775
+0x34,0x10,0xb8,0x00,0x32,0xd0,0xb8,0x00,0x32,0x2f,0xb8,0x00,
18776
+0x01,0x10,0xb8,0x00,0x39,0xd0,0xb8,0x00,0x34,0x10,0xb8,0x00,
18777
+0x3e,0xdc,0x00,0xb8,0x00,0x1f,0x2f,0xb8,0x00,0x01,0x2f,0xba,
18778
+0x00,0x3a,0x00,0x00,0x00,0x03,0x2b,0xb8,0x00,0x3a,0x10,0xb8,
18779
+0x00,0x00,0x10,0xb8,0x00,0x03,0xd0,0xb8,0x00,0x3a,0x10,0xb8,
18780
+0x00,0x05,0xd0,0xba,0x00,0x0c,0x00,0x01,0x00,0x1f,0x11,0x12,
18781
+0x39,0xba,0x00,0x0d,0x00,0x01,0x00,0x1f,0x11,0x12,0x39,0xba,
18782
+0x00,0x12,0x00,0x01,0x00,0x1f,0x11,0x12,0x39,0xba,0x00,0x13,
18783
+0x00,0x01,0x00,0x1f,0x11,0x12,0x39,0xba,0x00,0x1c,0x00,0x01,
18784
+0x00,0x1f,0x11,0x12,0x39,0xba,0x00,0x1d,0x00,0x01,0x00,0x1f,
18785
+0x11,0x12,0x39,0xba,0x00,0x22,0x00,0x01,0x00,0x1f,0x11,0x12,
18786
+0x39,0xba,0x00,0x23,0x00,0x01,0x00,0x1f,0x11,0x12,0x39,0xba,
18787
+0x00,0x2b,0x00,0x01,0x00,0x1f,0x11,0x12,0x39,0xba,0x00,0x2c,
18788
+0x00,0x01,0x00,0x1f,0x11,0x12,0x39,0xba,0x00,0x31,0x00,0x01,
18789
+0x00,0x1f,0x11,0x12,0x39,0xba,0x00,0x32,0x00,0x01,0x00,0x1f,
18790
+0x11,0x12,0x39,0x30,0x31,0x25,0x15,0x23,0x35,0x23,0x35,0x33,
18791
+0x35,0x26,0x27,0x26,0x27,0x35,0x07,0x27,0x37,0x33,0x17,0x15,
18792
+0x27,0x15,0x33,0x15,0x23,0x16,0x17,0x16,0x17,0x11,0x07,0x27,
18793
+0x37,0x33,0x17,0x15,0x27,0x11,0x36,0x37,0x36,0x3d,0x01,0x33,
18794
+0x35,0x07,0x27,0x37,0x33,0x17,0x15,0x27,0x15,0x33,0x15,0x06,
18795
+0x07,0x06,0x07,0x15,0x33,0x15,0x03,0xe2,0x97,0xb0,0xb0,0xa5,
18796
+0x7a,0x96,0x01,0x90,0x01,0x91,0x98,0x90,0x90,0x02,0x02,0x01,
18797
+0x68,0x4e,0x67,0x91,0x01,0x92,0x97,0x91,0x91,0x65,0x4d,0x6a,
18798
+0x01,0x90,0x01,0x91,0x98,0x90,0x90,0x01,0x01,0x96,0x7a,0xa5,
18799
+0xaf,0xbb,0xbb,0xbb,0x97,0x8b,0x16,0x7a,0x96,0xd7,0x54,0x8e,
18800
+0x8c,0x99,0x99,0x8c,0x8e,0x54,0x02,0x97,0x68,0x4f,0x14,0x02,
18801
+0xca,0x8d,0x8b,0x9a,0x9a,0x8b,0x8d,0xfd,0x37,0x14,0x4e,0x6a,
18802
+0x96,0x01,0x59,0x8e,0x8c,0x99,0x99,0x8c,0x8e,0x59,0x04,0xd3,
18803
+0x96,0x79,0x17,0x8b,0x97,0x00,0x00,0x00,0x00,0x02,0x01,0xec,
18804
+0x00,0x00,0x05,0x3f,0x05,0xd8,0x00,0x12,0x00,0x1d,0x00,0xa5,
18805
+0xb8,0x00,0x1e,0x2f,0xb8,0x00,0x1f,0x2f,0xb8,0x00,0x1e,0x10,
18806
+0xb8,0x00,0x11,0xd0,0xb8,0x00,0x11,0x2f,0xb8,0x00,0x00,0xd0,
18807
+0xb8,0x00,0x00,0x2f,0xb8,0x00,0x1f,0x10,0xb8,0x00,0x05,0xdc,
18808
+0xb8,0x00,0x11,0x10,0xb8,0x00,0x0b,0xdc,0xb8,0x00,0x13,0xd0,
18809
+0xb8,0x00,0x05,0x10,0xb8,0x00,0x19,0xdc,0x41,0x05,0x00,0xea,
18810
+0x00,0x19,0x00,0xfa,0x00,0x19,0x00,0x02,0x5d,0x41,0x1b,0x00,
18811
+0x19,0x00,0x19,0x00,0x29,0x00,0x19,0x00,0x39,0x00,0x19,0x00,
18812
+0x49,0x00,0x19,0x00,0x59,0x00,0x19,0x00,0x69,0x00,0x19,0x00,
18813
+0x79,0x00,0x19,0x00,0x89,0x00,0x19,0x00,0x99,0x00,0x19,0x00,
18814
+0xa9,0x00,0x19,0x00,0xb9,0x00,0x19,0x00,0xc9,0x00,0x19,0x00,
18815
+0xd9,0x00,0x19,0x00,0x0d,0x5d,0x00,0xba,0x00,0x0c,0x00,0x0f,
18816
+0x00,0x03,0x2b,0xb8,0x00,0x0c,0x10,0xba,0x00,0x00,0x00,0x13,
18817
+0x00,0x03,0x2b,0xb8,0x00,0x00,0x10,0xba,0x00,0x15,0x00,0x09,
18818
+0x00,0x03,0x2b,0xb8,0x00,0x15,0x10,0x30,0x31,0x01,0x21,0x20,
18819
+0x17,0x16,0x15,0x10,0x07,0x06,0x23,0x21,0x11,0x21,0x17,0x15,
18820
+0x07,0x21,0x27,0x11,0x17,0x11,0x21,0x32,0x37,0x36,0x37,0x34,
18821
+0x27,0x26,0x23,0x01,0xf4,0x01,0x99,0x01,0x2e,0x64,0x20,0xfb,
18822
+0x3b,0x36,0xfe,0xaa,0x02,0x7a,0x08,0x08,0xfc,0xfd,0x08,0x91,
18823
+0x01,0x46,0x82,0x48,0x10,0x08,0xa2,0x25,0x51,0x05,0xd8,0xd0,
18824
+0x4d,0x5f,0xfe,0xf6,0x5c,0x11,0xfd,0xad,0x08,0x82,0x08,0x08,
18825
+0x05,0xc7,0x83,0xfe,0x24,0x82,0x1a,0x50,0xa4,0x3c,0x10,0x00,
18826
+0x00,0x01,0x01,0x43,0x00,0x00,0x05,0xe8,0x05,0xd4,0x00,0x23,
18827
+0x00,0x1f,0xba,0x00,0x0e,0x00,0x15,0x00,0x03,0x2b,0xb8,0x00,
18828
+0x0e,0x10,0x00,0xb8,0x00,0x11,0x2f,0xb8,0x00,0x13,0x2f,0xb8,
18829
+0x00,0x00,0x2f,0xb8,0x00,0x22,0x2f,0x30,0x31,0x01,0x16,0x13,
18830
+0x12,0x17,0x16,0x1d,0x01,0x14,0x07,0x06,0x23,0x22,0x27,0x23,
18831
+0x15,0x10,0x17,0x23,0x35,0x36,0x11,0x27,0x23,0x07,0x06,0x23,
18832
+0x22,0x2f,0x01,0x35,0x34,0x37,0x00,0x3f,0x01,0x03,0x98,0x5e,
18833
+0xd8,0xed,0x06,0x27,0xa2,0x35,0x40,0x9a,0x5f,0x2a,0x53,0xd7,
18834
+0x55,0x03,0x26,0x2f,0x55,0x7f,0xbb,0x4c,0x09,0xbb,0x01,0x3b,
18835
+0x59,0x03,0x05,0xd4,0xa7,0xfe,0xec,0xfe,0xea,0x39,0x55,0x50,
18836
+0x28,0xa7,0x60,0x16,0xdd,0x0c,0xfe,0xe5,0x96,0x06,0x97,0x01,
18837
+0x1d,0x03,0x58,0x85,0xd1,0x49,0x2e,0xb7,0xcb,0x01,0x82,0xa5,
18838
+0x03,0x00,0x00,0x00,0x00,0x02,0x00,0xb9,0x00,0x01,0x06,0x73,
18839
+0x05,0xd1,0x00,0x18,0x00,0x32,0x00,0x51,0xb8,0x00,0x33,0x2f,
18840
+0xb8,0x00,0x34,0x2f,0xb8,0x00,0x0d,0xdc,0xb8,0x00,0x21,0xdc,
18841
+0xb8,0x00,0x0a,0xd0,0xb8,0x00,0x0a,0x2f,0xb8,0x00,0x33,0x10,
18842
+0xb8,0x00,0x15,0xd0,0xb8,0x00,0x15,0x2f,0xb8,0x00,0x1a,0xdc,
18843
+0xba,0x00,0x2b,0x00,0x15,0x00,0x0d,0x11,0x12,0x39,0x00,0xb8,
18844
+0x00,0x11,0x2f,0xba,0x00,0x08,0x00,0x26,0x00,0x03,0x2b,0xb8,
18845
+0x00,0x08,0x10,0xb8,0x00,0x00,0xd0,0xb8,0x00,0x26,0x10,0xb8,
18846
+0x00,0x2f,0xd0,0x30,0x31,0x01,0x32,0x13,0x16,0x15,0x32,0x37,
18847
+0x12,0x33,0x32,0x17,0x16,0x1d,0x01,0x10,0x07,0x00,0x07,0x23,
18848
+0x01,0x26,0x35,0x34,0x37,0x36,0x03,0x15,0x14,0x17,0x01,0x33,
18849
+0x01,0x36,0x3d,0x01,0x34,0x27,0x26,0x23,0x20,0x03,0x06,0x15,
18850
+0x23,0x34,0x27,0x26,0x23,0x22,0x07,0x06,0x02,0x2a,0xda,0x74,
18851
+0x1c,0x06,0x0d,0x70,0xeb,0xd1,0x7a,0x26,0xdd,0xfe,0x3d,0x3c,
18852
+0x06,0xfd,0xa0,0x78,0xc7,0x51,0xe5,0xd0,0x01,0xdb,0x03,0x02,
18853
+0x3e,0x68,0xbd,0x47,0x3a,0xfe,0xf8,0x56,0x0a,0x06,0x48,0x65,
18854
+0xbd,0xae,0x6b,0x25,0x05,0xd1,0xfe,0xed,0x50,0x18,0x46,0x01,
18855
+0x35,0xd3,0x4e,0x50,0x0d,0xfe,0xfe,0xe7,0xfd,0xd9,0x42,0x02,
18856
+0xed,0xb2,0xb6,0xd2,0x7c,0x2d,0xfe,0x8f,0x10,0xdb,0xe4,0xfd,
18857
+0xbc,0x02,0xbb,0xa1,0x97,0x26,0xac,0x70,0x1c,0xfe,0x41,0x26,
18858
+0x1a,0x4e,0xd1,0xe0,0xb1,0x46,0x00,0x00,0x00,0x02,0x01,0x58,
18859
+0x00,0x00,0x05,0xd2,0x05,0xd4,0x00,0x08,0x00,0x0d,0x00,0x15,
18860
+0x00,0xb8,0x00,0x00,0x2f,0xb8,0x00,0x04,0x2f,0xba,0x00,0x0b,
18861
+0x00,0x04,0x00,0x00,0x11,0x12,0x39,0x30,0x31,0x09,0x01,0x15,
18862
+0x00,0x07,0x26,0x01,0x26,0x35,0x09,0x04,0x03,0x96,0x02,0x3c,
18863
+0xfd,0xe3,0x1f,0x0f,0xfe,0x17,0x46,0x02,0x3a,0xfe,0x03,0x02,
18864
+0x01,0x02,0x01,0xfe,0x5e,0x05,0xd4,0xfd,0x1a,0x07,0xfd,0x3b,
18865
+0x22,0x0b,0x02,0x80,0x56,0x0d,0x02,0x96,0xfd,0x67,0xfd,0x64,
18866
+0x02,0x9c,0x02,0x1e,0x00,0x01,0x00,0xe4,0x00,0x00,0x06,0x47,
18867
+0x05,0xd4,0x00,0x37,0x00,0x43,0xba,0x00,0x16,0x00,0x1e,0x00,
18868
+0x03,0x2b,0xb8,0x00,0x16,0x10,0x00,0xb8,0x00,0x1a,0x2f,0xb8,
18869
+0x00,0x1c,0x2f,0xb8,0x00,0x00,0x2f,0xba,0x00,0x08,0x00,0x1a,
18870
+0x00,0x00,0x11,0x12,0x39,0xba,0x00,0x16,0x00,0x1a,0x00,0x00,
18871
+0x11,0x12,0x39,0xba,0x00,0x20,0x00,0x1a,0x00,0x00,0x11,0x12,
18872
+0x39,0xba,0x00,0x2f,0x00,0x1a,0x00,0x00,0x11,0x12,0x39,0x30,
18873
+0x31,0x01,0x32,0x17,0x16,0x17,0x14,0x0f,0x01,0x33,0x36,0x3b,
18874
+0x01,0x32,0x17,0x16,0x15,0x14,0x07,0x06,0x07,0x22,0x03,0x23,
18875
+0x15,0x10,0x17,0x15,0x23,0x27,0x36,0x11,0x35,0x23,0x02,0x23,
18876
+0x22,0x27,0x26,0x35,0x34,0x37,0x36,0x3b,0x01,0x32,0x17,0x33,
18877
+0x35,0x26,0x27,0x26,0x3d,0x01,0x34,0x37,0x36,0x03,0x97,0xd6,
18878
+0x65,0x0d,0x03,0x78,0x3c,0x03,0x4a,0x54,0x13,0xee,0x60,0x17,
18879
+0xd1,0x28,0x47,0xf2,0x65,0x03,0x52,0xd0,0x06,0x55,0x03,0x64,
18880
+0xf5,0xbf,0x66,0x19,0xf6,0x42,0x33,0x09,0x56,0x4e,0x03,0x54,
18881
+0x1d,0x3c,0xd7,0x47,0x05,0xd4,0xe3,0x34,0x38,0x75,0xa0,0x3c,
18882
+0x1c,0xca,0x42,0x3c,0xcd,0x68,0x0c,0x06,0x01,0x12,0x09,0xfe,
18883
+0xa9,0x6d,0x06,0x06,0x80,0x01,0x4d,0x03,0xfe,0xeb,0xc9,0x44,
18884
+0x3a,0xe9,0x53,0x0c,0x1c,0x03,0x47,0x45,0x6e,0x51,0x0e,0xc9,
18885
+0x68,0x13,0x00,0x00,0x00,0x03,0x01,0x42,0x00,0x01,0x05,0xea,
18886
+0x05,0xd5,0x00,0x22,0x00,0x3c,0x00,0x42,0x00,0xad,0xba,0x00,
18887
+0x27,0x00,0x1e,0x00,0x03,0x2b,0xb8,0x00,0x27,0x10,0xba,0x00,
18888
+0x0d,0x00,0x14,0x00,0x03,0x2b,0xb8,0x00,0x0d,0x10,0xba,0x00,
18889
+0x05,0x00,0x38,0x00,0x03,0x2b,0xb8,0x00,0x05,0x10,0xba,0x00,
18890
+0x00,0x00,0x14,0x00,0x0d,0x11,0x12,0x39,0xba,0x00,0x10,0x00,
18891
+0x1e,0x00,0x05,0x11,0x12,0x39,0xba,0x00,0x12,0x00,0x1e,0x00,
18892
+0x05,0x11,0x12,0x39,0xba,0x00,0x23,0x00,0x14,0x00,0x0d,0x11,
18893
+0x12,0x39,0xba,0x00,0x3d,0x00,0x1e,0x00,0x05,0x11,0x12,0x39,
18894
+0xba,0x00,0x3e,0x00,0x1e,0x00,0x05,0x11,0x12,0x39,0xb8,0x00,
18895
+0x44,0xdc,0x00,0xb8,0x00,0x00,0x2f,0xb8,0x00,0x10,0x2f,0xb8,
18896
+0x00,0x12,0x2f,0xba,0x00,0x34,0x00,0x09,0x00,0x03,0x2b,0xb8,
18897
+0x00,0x34,0x10,0xb8,0x00,0x09,0x10,0xb8,0x00,0x18,0xd0,0xba,
18898
+0x00,0x23,0x00,0x10,0x00,0x00,0x11,0x12,0x39,0xb8,0x00,0x34,
18899
+0x10,0xb8,0x00,0x2b,0xd0,0xba,0x00,0x3d,0x00,0x10,0x00,0x00,
18900
+0x11,0x12,0x39,0xba,0x00,0x3e,0x00,0x10,0x00,0x00,0x11,0x12,
18901
+0x39,0x30,0x31,0x01,0x16,0x01,0x16,0x1d,0x01,0x14,0x07,0x06,
18902
+0x2b,0x01,0x22,0x27,0x23,0x15,0x10,0x17,0x23,0x35,0x36,0x11,
18903
+0x23,0x07,0x06,0x2b,0x01,0x22,0x27,0x26,0x35,0x37,0x35,0x34,
18904
+0x37,0x00,0x37,0x06,0x01,0x06,0x15,0x16,0x17,0x16,0x3b,0x01,
18905
+0x32,0x37,0x33,0x32,0x17,0x16,0x3b,0x01,0x32,0x37,0x36,0x3d,
18906
+0x01,0x34,0x27,0x02,0x03,0x33,0x26,0x27,0x22,0x07,0x03,0x97,
18907
+0x7e,0x01,0x7f,0x56,0xb5,0x22,0x30,0x16,0x91,0x62,0x2a,0x53,
18908
+0xd7,0x56,0x2a,0x38,0x55,0x69,0x16,0xa0,0x51,0x19,0x03,0xce,
18909
+0x01,0x22,0x5f,0x7c,0xfe,0xae,0x51,0x0a,0x94,0x16,0x29,0x10,
18910
+0x77,0x60,0xb7,0x07,0x1f,0x53,0x67,0x13,0x89,0x41,0x0a,0xcb,
18911
+0xe6,0x8e,0x3f,0x0d,0x0f,0x06,0x10,0x05,0xd5,0xe1,0xfe,0x36,
18912
+0x8b,0x86,0x03,0xd1,0x4e,0x10,0xda,0x0d,0xfe,0xe8,0x9b,0x06,
18913
+0x97,0x01,0x23,0x65,0x75,0xae,0x42,0x3f,0x0d,0x03,0xc8,0xd4,
18914
+0x01,0x67,0x49,0xc7,0xfe,0x6f,0x82,0x85,0xbb,0x35,0x09,0xda,
18915
+0x46,0x94,0xa7,0x28,0x1e,0x1f,0xb0,0xcf,0x01,0x1f,0xfb,0x70,
18916
+0x17,0x5a,0x52,0x00,0x00,0x01,0x00,0xb6,0x00,0x00,0x06,0x77,
18917
+0x05,0xd4,0x00,0x17,0x00,0x19,0x00,0xb8,0x00,0x10,0x2f,0xb8,
18918
+0x00,0x00,0x2f,0xb8,0x00,0x09,0x2f,0xba,0x00,0x05,0x00,0x10,
18919
+0x00,0x00,0x11,0x12,0x39,0x30,0x31,0x01,0x32,0x17,0x16,0x17,
18920
+0x33,0x36,0x37,0x36,0x33,0x32,0x17,0x16,0x15,0x14,0x07,0x01,
18921
+0x23,0x01,0x26,0x35,0x34,0x37,0x36,0x02,0x28,0xcb,0x74,0x2a,
18922
+0x02,0x03,0x23,0x5c,0x6c,0x87,0xd1,0x7e,0x20,0xd0,0xfd,0xef,
18923
+0x06,0xfd,0xce,0xa8,0xc7,0x54,0x05,0xd4,0xeb,0x5d,0x31,0xa2,
18924
+0x6b,0x6c,0xe0,0x53,0x49,0xfa,0xe3,0xfd,0x85,0x02,0xb1,0xcd,
18925
+0xda,0xd3,0x7c,0x2d,0x00,0x01,0x01,0x58,0x00,0x00,0x05,0xd2,
18926
+0x05,0xd4,0x00,0x08,0x00,0x0b,0x00,0xb8,0x00,0x00,0x2f,0xb8,
18927
+0x00,0x04,0x2f,0x30,0x31,0x09,0x01,0x16,0x15,0x01,0x26,0x01,
18928
+0x34,0x37,0x03,0x96,0x01,0xf7,0x45,0xfd,0xc4,0x0c,0xfd,0xce,
18929
+0x6f,0x05,0xd4,0xfd,0x73,0x55,0x0d,0xfd,0x1b,0x08,0x02,0xdd,
18930
+0x0e,0x8a,0x00,0x00,0x00,0x03,0x00,0xe4,0x00,0x00,0x06,0x48,
18931
+0x05,0xdc,0x00,0x32,0x00,0x60,0x00,0x67,0x01,0x1d,0xba,0x00,
18932
+0x15,0x00,0x1d,0x00,0x03,0x2b,0xb8,0x00,0x15,0x10,0xba,0x00,
18933
+0x04,0x00,0x5a,0x00,0x03,0x2b,0xb8,0x00,0x04,0x10,0xba,0x00,
18934
+0x0e,0x00,0x4e,0x00,0x03,0x2b,0xb8,0x00,0x0e,0x10,0xba,0x00,
18935
+0x07,0x00,0x1d,0x00,0x0e,0x11,0x12,0x39,0xba,0x00,0x19,0x00,
18936
+0x1d,0x00,0x0e,0x11,0x12,0x39,0xba,0x00,0x56,0x00,0x1d,0x00,
18937
+0x0e,0x11,0x12,0x39,0x41,0x05,0x00,0xea,0x00,0x5a,0x00,0xfa,
18938
+0x00,0x5a,0x00,0x02,0x5d,0x41,0x1b,0x00,0x19,0x00,0x5a,0x00,
18939
+0x29,0x00,0x5a,0x00,0x39,0x00,0x5a,0x00,0x49,0x00,0x5a,0x00,
18940
+0x59,0x00,0x5a,0x00,0x69,0x00,0x5a,0x00,0x79,0x00,0x5a,0x00,
18941
+0x89,0x00,0x5a,0x00,0x99,0x00,0x5a,0x00,0xa9,0x00,0x5a,0x00,
18942
+0xb9,0x00,0x5a,0x00,0xc9,0x00,0x5a,0x00,0xd9,0x00,0x5a,0x00,
18943
+0x0d,0x5d,0xb8,0x00,0x69,0xdc,0x00,0xb8,0x00,0x19,0x2f,0xb8,
18944
+0x00,0x1b,0x2f,0xba,0x00,0x00,0x00,0x5e,0x00,0x03,0x2b,0xb8,
18945
+0x00,0x00,0x10,0xba,0x00,0x4a,0x00,0x12,0x00,0x03,0x2b,0xb8,
18946
+0x00,0x4a,0x10,0xba,0x00,0x29,0x00,0x3a,0x00,0x03,0x2b,0xb8,
18947
+0x00,0x29,0x10,0xb8,0x00,0x07,0xd0,0xb8,0x00,0x07,0x2f,0xb8,
18948
+0x00,0x29,0x10,0xb8,0x00,0x09,0xd0,0xb8,0x00,0x12,0x10,0xb8,
18949
+0x00,0x21,0xd0,0xb8,0x00,0x29,0x10,0xb8,0x00,0x2c,0xd0,0xb8,
18950
+0x00,0x2c,0x2f,0xb8,0x00,0x3a,0x10,0xb8,0x00,0x37,0xd0,0xb8,
18951
+0x00,0x37,0x2f,0xb8,0x00,0x4a,0x10,0xb8,0x00,0x41,0xd0,0xb8,
18952
+0x00,0x3a,0x10,0xb8,0x00,0x51,0xd0,0xb8,0x00,0x51,0x2f,0xb8,
18953
+0x00,0x3a,0x10,0xb8,0x00,0x53,0xd0,0xb8,0x00,0x3a,0x10,0xb8,
18954
+0x00,0x55,0xd0,0xb8,0x00,0x55,0x2f,0xba,0x00,0x56,0x00,0x3a,
18955
+0x00,0x37,0x11,0x12,0x39,0x30,0x31,0x01,0x32,0x17,0x16,0x15,
18956
+0x14,0x0f,0x01,0x36,0x3b,0x01,0x32,0x17,0x16,0x15,0x14,0x07,
18957
+0x06,0x07,0x22,0x03,0x23,0x15,0x10,0x17,0x15,0x23,0x27,0x36,
18958
+0x11,0x35,0x23,0x02,0x23,0x22,0x27,0x26,0x35,0x34,0x37,0x36,
18959
+0x3b,0x01,0x32,0x17,0x26,0x27,0x35,0x34,0x37,0x36,0x03,0x14,
18960
+0x1f,0x01,0x15,0x26,0x2b,0x01,0x22,0x0f,0x01,0x14,0x17,0x16,
18961
+0x33,0x32,0x13,0x36,0x37,0x33,0x16,0x17,0x16,0x33,0x32,0x37,
18962
+0x36,0x3d,0x01,0x34,0x2f,0x01,0x23,0x22,0x07,0x35,0x36,0x37,
18963
+0x36,0x35,0x34,0x27,0x26,0x23,0x22,0x07,0x01,0x14,0x07,0x33,
18964
+0x35,0x26,0x35,0x03,0x9b,0xcb,0x68,0x19,0x72,0x16,0x1f,0x3d,
18965
+0x29,0xf8,0x5c,0x10,0xd2,0x22,0x49,0xf1,0x66,0x03,0x52,0xd1,
18966
+0x06,0x55,0x03,0x64,0xf6,0xc0,0x67,0x19,0xf7,0x43,0x33,0x26,
18967
+0x3d,0x1f,0x63,0x1c,0xd8,0x47,0xf0,0xa9,0x0c,0x6b,0x76,0x09,
18968
+0xf3,0x3d,0x07,0x88,0x3d,0x4e,0xd2,0x72,0x10,0x16,0x07,0x25,
18969
+0x53,0x5a,0x9e,0xa8,0x55,0x0c,0xfd,0x36,0x06,0x76,0x6b,0x81,
18970
+0x20,0x1a,0xbb,0x36,0x29,0xb8,0x53,0x01,0x07,0x1c,0x3c,0x1c,
18971
+0x05,0xdc,0xce,0x46,0x39,0x84,0xa6,0x17,0x06,0xd7,0x38,0x3a,
18972
+0xd3,0x64,0x0c,0x07,0x01,0x14,0x09,0xfe,0xa7,0x6d,0x06,0x06,
18973
+0x80,0x01,0x4f,0x04,0xfe,0xe8,0xcb,0x45,0x3a,0xeb,0x52,0x0c,
18974
+0x06,0x70,0xb1,0x26,0xcb,0x69,0x13,0xfe,0xb3,0x9b,0xcc,0x0c,
18975
+0x03,0x09,0xd4,0x43,0x94,0x5d,0x26,0x01,0x27,0x1b,0x41,0x78,
18976
+0x86,0x85,0xbe,0x2e,0x2b,0x06,0xde,0x30,0x03,0x09,0x03,0x89,
18977
+0x6e,0x4d,0x2c,0xb6,0x57,0x10,0xc8,0xfb,0xce,0x1c,0x60,0x03,
18978
+0x63,0x16,0x00,0x00,0x00,0x01,0x00,0xac,0xff,0xf6,0x02,0xb7,
18979
+0x05,0xd5,0x00,0x11,0x00,0x25,0xba,0x00,0x03,0x00,0x10,0x00,
18980
+0x03,0x2b,0xb8,0x00,0x03,0x10,0x00,0xb8,0x00,0x00,0x2f,0xb8,
18981
+0x00,0x02,0x2f,0xb8,0x00,0x06,0x2f,0xba,0x00,0x10,0x00,0x06,
18982
+0x00,0x00,0x11,0x12,0x39,0x30,0x31,0x01,0x33,0x17,0x11,0x14,
18983
+0x0f,0x01,0x23,0x22,0x2f,0x01,0x34,0x3f,0x01,0x32,0x17,0x33,
18984
+0x11,0x02,0x68,0x48,0x07,0xc4,0x30,0x23,0xd4,0x1c,0x04,0xd3,
18985
+0x21,0x63,0x5a,0x04,0x05,0xd5,0x08,0xfa,0xfd,0xa3,0x2d,0x04,
18986
+0x85,0x1f,0x82,0x18,0x05,0x40,0x04,0xd4,0x00,0x01,0x00,0xac,
18987
+0xff,0xf6,0x04,0x6f,0x05,0xd5,0x00,0x1d,0x00,0x33,0xba,0x00,
18988
+0x12,0x00,0x1c,0x00,0x03,0x2b,0xb8,0x00,0x12,0x10,0xb8,0x00,
18989
+0x02,0xd0,0x00,0xb8,0x00,0x00,0x2f,0xb8,0x00,0x02,0x2f,0xb8,
18990
+0x00,0x14,0x2f,0xba,0x00,0x11,0x00,0x14,0x00,0x00,0x11,0x12,
18991
+0x39,0xba,0x00,0x1c,0x00,0x14,0x00,0x00,0x11,0x12,0x39,0x30,
18992
+0x31,0x01,0x33,0x17,0x15,0x16,0x17,0x16,0x15,0x14,0x07,0x23,
18993
+0x27,0x36,0x35,0x34,0x27,0x26,0x27,0x11,0x14,0x07,0x23,0x22,
18994
+0x35,0x34,0x37,0x33,0x32,0x17,0x11,0x02,0x58,0x57,0x08,0x1b,
18995
+0xad,0xf0,0x7a,0x04,0x1e,0x3d,0xe4,0x5c,0x19,0xe0,0x39,0xf2,
18996
+0xd4,0x17,0x60,0x59,0x05,0xd5,0x07,0x27,0x36,0x3f,0x46,0x8a,
18997
+0x92,0x60,0x20,0x31,0x54,0x46,0x47,0x2a,0x1a,0xfb,0xd6,0x99,
18998
+0x2d,0xa8,0x83,0x17,0x40,0x04,0xd6,0x00,0x00,0x01,0x01,0x78,
18999
+0xff,0x2f,0x05,0xb3,0x05,0xd5,0x00,0x1e,0x00,0x65,0xb8,0x00,
19000
+0x1f,0x2f,0xb8,0x00,0x20,0x2f,0xb8,0x00,0x1f,0x10,0xb8,0x00,
19001
+0x1d,0xd0,0xb8,0x00,0x1d,0x2f,0xb8,0x00,0x00,0xd0,0xb8,0x00,
19002
+0x00,0x2f,0xb8,0x00,0x20,0x10,0xb8,0x00,0x03,0xdc,0xb8,0x00,
19003
+0x01,0xd0,0xb8,0x00,0x01,0x2f,0xb8,0x00,0x03,0x10,0xb8,0x00,
19004
+0x0e,0xdc,0xb8,0x00,0x1d,0x10,0xb8,0x00,0x11,0xdc,0x00,0xb8,
19005
+0x00,0x00,0x2f,0xb8,0x00,0x05,0x2f,0xba,0x00,0x0e,0x00,0x05,
19006
+0x00,0x00,0x11,0x12,0x39,0xba,0x00,0x10,0x00,0x05,0x00,0x00,
19007
+0x11,0x12,0x39,0xba,0x00,0x1d,0x00,0x05,0x00,0x00,0x11,0x12,
19008
+0x39,0x30,0x31,0x01,0x05,0x17,0x11,0x14,0x07,0x23,0x22,0x3d,
19009
+0x01,0x34,0x3f,0x01,0x32,0x17,0x11,0x25,0x11,0x14,0x0f,0x01,
19010
+0x23,0x22,0x3d,0x01,0x34,0x3f,0x01,0x32,0x17,0x11,0x02,0xfd,
19011
+0x02,0xb3,0x03,0xc0,0x36,0xd5,0xb1,0x27,0x56,0x51,0xfd,0xdc,
19012
+0x96,0x43,0x1a,0xd8,0xaa,0x2b,0x59,0x50,0x05,0xd5,0xca,0x04,
19013
+0xfa,0xed,0x9b,0x2a,0xa4,0x04,0x7e,0x16,0x03,0x3a,0x04,0x0b,
19014
+0xa9,0xfb,0xdb,0x89,0x38,0x08,0x9b,0x07,0x7a,0x22,0x04,0x43,
19015
+0x04,0xd3,0x00,0x00,0x00,0x02,0x00,0xbc,0xff,0xf6,0x06,0x6f,
19016
+0x05,0xd5,0x00,0x18,0x00,0x1c,0x00,0x8b,0xb8,0x00,0x1d,0x2f,
19017
+0xb8,0x00,0x1e,0x2f,0xb8,0x00,0x02,0xdc,0xb8,0x00,0x00,0xd0,
19018
+0xb8,0x00,0x00,0x2f,0xb8,0x00,0x02,0x10,0xb8,0x00,0x0b,0xdc,
19019
+0xb8,0x00,0x1d,0x10,0xb8,0x00,0x17,0xd0,0xb8,0x00,0x17,0x2f,
19020
+0xb8,0x00,0x0e,0xdc,0xb8,0x00,0x19,0xd0,0xb8,0x00,0x0b,0x10,
19021
+0xb8,0x00,0x1b,0xd0,0x00,0xba,0x00,0x15,0x00,0x11,0x00,0x03,
19022
+0x2b,0xb8,0x00,0x15,0x10,0xba,0x00,0x18,0x00,0x19,0x00,0x03,
19023
+0x2b,0xb8,0x00,0x18,0x10,0xba,0x00,0x1b,0x00,0x0c,0x00,0x03,
19024
+0x2b,0xb8,0x00,0x1b,0x10,0xb8,0x00,0x11,0x10,0xb8,0x00,0x04,
19025
+0xd0,0xb8,0x00,0x04,0x2f,0xb8,0x00,0x15,0x10,0xb8,0x00,0x08,
19026
+0xd0,0xb8,0x00,0x08,0x2f,0xba,0x00,0x0b,0x00,0x11,0x00,0x15,
19027
+0x11,0x12,0x39,0xba,0x00,0x17,0x00,0x11,0x00,0x15,0x11,0x12,
19028
+0x39,0x30,0x31,0x01,0x17,0x11,0x14,0x05,0x22,0x27,0x34,0x37,
19029
+0x32,0x17,0x33,0x11,0x21,0x11,0x06,0x07,0x23,0x20,0x35,0x34,
19030
+0x37,0x32,0x17,0x11,0x17,0x15,0x21,0x35,0x06,0x6b,0x04,0xfe,
19031
+0xfb,0xe9,0x12,0xe9,0x6d,0x4f,0x03,0xfc,0xa5,0x08,0xf2,0x04,
19032
+0xfe,0xfe,0xec,0x64,0x58,0x58,0x03,0x5b,0x05,0xd5,0x04,0xfb,
19033
+0x12,0xd5,0x15,0xa4,0x8a,0x0e,0x3b,0x02,0x95,0xfd,0x5a,0xcf,
19034
+0x24,0xb1,0x7d,0x10,0x40,0x04,0xe1,0xcf,0x9c,0x9c,0x00,0x00,
19035
+0x00,0x02,0x00,0xb5,0xff,0xfa,0x03,0x22,0x05,0xd9,0x00,0x0c,
19036
+0x00,0x13,0x00,0x9d,0xba,0x00,0x0e,0x00,0x0b,0x00,0x03,0x2b,
19037
+0xb8,0x00,0x0e,0x10,0xba,0x00,0x08,0x00,0x10,0x00,0x03,0x2b,
19038
+0xb8,0x00,0x08,0x10,0xb8,0x00,0x0e,0x10,0xb8,0x00,0x02,0xd0,
19039
+0xba,0x00,0x04,0x00,0x0b,0x00,0x08,0x11,0x12,0x39,0x41,0x05,
19040
+0x00,0xea,0x00,0x10,0x00,0xfa,0x00,0x10,0x00,0x02,0x5d,0x41,
19041
+0x1b,0x00,0x19,0x00,0x10,0x00,0x29,0x00,0x10,0x00,0x39,0x00,
19042
+0x10,0x00,0x49,0x00,0x10,0x00,0x59,0x00,0x10,0x00,0x69,0x00,
19043
+0x10,0x00,0x79,0x00,0x10,0x00,0x89,0x00,0x10,0x00,0x99,0x00,
19044
+0x10,0x00,0xa9,0x00,0x10,0x00,0xb9,0x00,0x10,0x00,0xc9,0x00,
19045
+0x10,0x00,0xd9,0x00,0x10,0x00,0x0d,0x5d,0xb8,0x00,0x08,0x10,
19046
+0xb8,0x00,0x15,0xdc,0x00,0xb8,0x00,0x00,0x2f,0xb8,0x00,0x02,
19047
+0x2f,0xb8,0x00,0x0a,0x2f,0xba,0x00,0x06,0x00,0x12,0x00,0x03,
19048
+0x2b,0xb8,0x00,0x06,0x10,0xba,0x00,0x04,0x00,0x0a,0x00,0x00,
19049
+0x11,0x12,0x39,0x30,0x31,0x13,0x33,0x17,0x11,0x33,0x36,0x33,
19050
+0x16,0x13,0x02,0x05,0x27,0x11,0x13,0x11,0x24,0x11,0x36,0x27,
19051
+0x22,0xbb,0x2d,0x05,0x03,0xaa,0x91,0xe3,0x14,0x1d,0xfd,0xb3,
19052
+0x03,0x38,0x01,0xa2,0x0d,0xa1,0x77,0x05,0xd9,0x06,0xfc,0x3f,
19053
+0xed,0x03,0xfe,0xff,0xfe,0x57,0x58,0x03,0x05,0xd6,0xfb,0xd4,
19054
+0xfe,0x9d,0x63,0x01,0x31,0xac,0x09,0x00,0x00,0x02,0x00,0xac,
19055
+0x00,0x00,0x02,0x30,0x05,0xd9,0x00,0x0d,0x00,0x13,0x00,0xab,
19056
+0xb8,0x00,0x14,0x2f,0xb8,0x00,0x15,0x2f,0xb8,0x00,0x14,0x10,
19057
+0xb8,0x00,0x0c,0xd0,0xb8,0x00,0x0c,0x2f,0xb8,0x00,0x00,0xd0,
19058
+0xb8,0x00,0x00,0x2f,0xb8,0x00,0x0c,0x10,0xb8,0x00,0x0f,0xdc,
19059
+0xb8,0x00,0x01,0xd0,0xb8,0x00,0x01,0x2f,0xb8,0x00,0x0f,0x10,
19060
+0xb8,0x00,0x03,0xd0,0xb8,0x00,0x15,0x10,0xb8,0x00,0x06,0xdc,
19061
+0xb8,0x00,0x04,0xd0,0xb8,0x00,0x04,0x2f,0xb8,0x00,0x06,0x10,
19062
+0xb8,0x00,0x09,0xdc,0xb8,0x00,0x11,0xd0,0xb8,0x00,0x09,0x10,
19063
+0xb8,0x00,0x13,0xd0,0xb8,0x00,0x13,0x2f,0x00,0xb8,0x00,0x00,
19064
+0x2f,0xb8,0x00,0x02,0x2f,0xb8,0x00,0x07,0x2f,0xb8,0x00,0x09,
19065
+0x2f,0xba,0x00,0x03,0x00,0x07,0x00,0x00,0x11,0x12,0x39,0xba,
19066
+0x00,0x05,0x00,0x07,0x00,0x00,0x11,0x12,0x39,0xba,0x00,0x0a,
19067
+0x00,0x07,0x00,0x00,0x11,0x12,0x39,0xba,0x00,0x0c,0x00,0x07,
19068
+0x00,0x00,0x11,0x12,0x39,0xba,0x00,0x10,0x00,0x07,0x00,0x00,
19069
+0x11,0x12,0x39,0xba,0x00,0x13,0x00,0x07,0x00,0x00,0x11,0x12,
19070
+0x39,0x30,0x31,0x13,0x33,0x17,0x11,0x25,0x17,0x11,0x07,0x23,
19071
+0x27,0x11,0x05,0x23,0x11,0x13,0x11,0x33,0x25,0x11,0x23,0xb1,
19072
+0x29,0x06,0x01,0x4e,0x02,0x04,0x28,0x05,0xfe,0xaf,0x02,0x34,
19073
+0x02,0x01,0x1d,0x02,0x05,0xd9,0x05,0xfe,0x2f,0xa1,0x02,0xfb,
19074
+0x63,0x05,0x05,0x01,0xe5,0xa0,0x04,0x8a,0xfd,0x99,0xfe,0x7d,
19075
+0x90,0x01,0x7f,0x00,0x00,0x02,0x00,0xad,0x00,0x00,0x03,0x34,
19076
+0x05,0xd9,0x00,0x28,0x00,0x2c,0x01,0x3d,0xba,0x00,0x13,0x00,
19077
+0x1a,0x00,0x03,0x2b,0xb8,0x00,0x13,0x10,0xba,0x00,0x0e,0x00,
19078
+0x11,0x00,0x03,0x2b,0xb8,0x00,0x0e,0x10,0xb8,0x00,0x02,0xd0,
19079
+0xb8,0x00,0x11,0x10,0xb8,0x00,0x0b,0xdc,0xba,0x00,0x03,0x00,
19080
+0x11,0x00,0x0b,0x11,0x12,0x39,0xb8,0x00,0x05,0xd0,0xb8,0x00,
19081
+0x0e,0x10,0xb8,0x00,0x08,0xd0,0xba,0x00,0x09,0x00,0x11,0x00,
19082
+0x0b,0x11,0x12,0x39,0xb8,0x00,0x13,0x10,0xb8,0x00,0x17,0xdc,
19083
+0xba,0x00,0x18,0x00,0x1a,0x00,0x13,0x11,0x12,0x39,0xb8,0x00,
19084
+0x1c,0xd0,0xba,0x00,0x1e,0x00,0x1a,0x00,0x13,0x11,0x12,0x39,
19085
+0xb8,0x00,0x1a,0x10,0xb8,0x00,0x1f,0xd0,0xb8,0x00,0x17,0x10,
19086
+0xb8,0x00,0x21,0xd0,0xb8,0x00,0x13,0x10,0xb8,0x00,0x25,0xd0,
19087
+0xb8,0x00,0x14,0x10,0xb8,0x00,0x26,0xd0,0xb8,0x00,0x11,0x10,
19088
+0xb8,0x00,0x27,0xd0,0xb8,0x00,0x11,0x10,0xb8,0x00,0x2b,0xd0,
19089
+0xb8,0x00,0x28,0xd0,0xb8,0x00,0x13,0x10,0xb8,0x00,0x29,0xd0,
19090
+0xb8,0x00,0x14,0x10,0xb8,0x00,0x2a,0xd0,0xba,0x00,0x2c,0x00,
19091
+0x1a,0x00,0x0b,0x11,0x12,0x39,0x00,0xb8,0x00,0x00,0x2f,0xb8,
19092
+0x00,0x02,0x2f,0xb8,0x00,0x15,0x2f,0xb8,0x00,0x17,0x2f,0xba,
19093
+0x00,0x03,0x00,0x15,0x00,0x00,0x11,0x12,0x39,0xba,0x00,0x05,
19094
+0x00,0x15,0x00,0x00,0x11,0x12,0x39,0xba,0x00,0x09,0x00,0x15,
19095
+0x00,0x00,0x11,0x12,0x39,0xba,0x00,0x0a,0x00,0x15,0x00,0x00,
19096
+0x11,0x12,0x39,0xba,0x00,0x12,0x00,0x15,0x00,0x00,0x11,0x12,
19097
+0x39,0xba,0x00,0x18,0x00,0x15,0x00,0x00,0x11,0x12,0x39,0xba,
19098
+0x00,0x19,0x00,0x15,0x00,0x00,0x11,0x12,0x39,0xba,0x00,0x1e,
19099
+0x00,0x15,0x00,0x00,0x11,0x12,0x39,0xba,0x00,0x1f,0x00,0x15,
19100
+0x00,0x00,0x11,0x12,0x39,0xba,0x00,0x26,0x00,0x15,0x00,0x00,
19101
+0x11,0x12,0x39,0xba,0x00,0x2a,0x00,0x15,0x00,0x00,0x11,0x12,
19102
+0x39,0xba,0x00,0x2c,0x00,0x15,0x00,0x00,0x11,0x12,0x39,0x30,
19103
+0x31,0x01,0x33,0x17,0x11,0x37,0x17,0x15,0x06,0x07,0x11,0x37,
19104
+0x15,0x06,0x07,0x11,0x07,0x23,0x27,0x11,0x05,0x11,0x07,0x23,
19105
+0x27,0x11,0x07,0x35,0x34,0x37,0x11,0x23,0x07,0x35,0x37,0x11,
19106
+0x37,0x33,0x17,0x11,0x25,0x11,0x01,0x11,0x25,0x11,0x02,0x87,
19107
+0x2e,0x05,0x77,0x03,0x03,0x77,0x7a,0x01,0x79,0x05,0x2e,0x05,
19108
+0xfe,0xe0,0x05,0x2a,0x05,0x81,0x81,0x02,0x7f,0x81,0x05,0x2a,
19109
+0x05,0x01,0x20,0xfe,0xe0,0x01,0x20,0x05,0xd9,0x05,0xfe,0xd0,
19110
+0x3c,0x02,0x8d,0x07,0x3c,0xfe,0x8b,0x37,0x87,0x04,0x43,0xfe,
19111
+0xd7,0x04,0x04,0x01,0x11,0x8c,0xfe,0xa6,0x04,0x04,0x01,0x41,
19112
+0x3c,0x8e,0x06,0x3c,0x01,0x7b,0x38,0x8b,0x41,0x01,0x1f,0x04,
19113
+0x04,0xfe,0xfa,0x86,0x01,0x4d,0xfd,0x96,0xfe,0x87,0x8b,0x01,
19114
+0x74,0x00,0x00,0x00,0x00,0x01,0x00,0x75,0x00,0xf4,0x06,0x68,
19115
+0x04,0x38,0x00,0x09,0x00,0x00,0x13,0x11,0x21,0x35,0x33,0x01,
19116
+0x15,0x01,0x23,0x35,0x75,0x04,0x15,0x3d,0x01,0xa1,0xfe,0x5f,
19117
+0x3d,0x01,0x8d,0x02,0x12,0x99,0xfe,0x63,0x0a,0xfe,0x63,0x99,
19118
+0x00,0x01,0x00,0x6e,0xfe,0xb2,0x02,0xd0,0x06,0x26,0x00,0x1b,
19119
+0x00,0x00,0x01,0x2a,0x01,0x27,0x24,0x03,0x26,0x13,0x12,0x37,
19120
+0x36,0x27,0x26,0x07,0x27,0x36,0x37,0x36,0x15,0x14,0x03,0x02,
19121
+0x07,0x02,0x05,0x1e,0x01,0x37,0x02,0xd0,0x09,0x68,0x37,0xfe,
19122
+0x48,0x02,0x01,0xb7,0xae,0x04,0x05,0x55,0x45,0x42,0x79,0x33,
19123
+0xd5,0xde,0xa8,0xa5,0x0a,0x13,0x01,0x29,0x52,0x3f,0x14,0xfe,
19124
+0xb2,0x0b,0x53,0x01,0x52,0xae,0x01,0xfa,0x01,0xe4,0x68,0x7d,
19125
+0x09,0x07,0xca,0x34,0xd8,0x01,0x01,0xcc,0xa1,0xfe,0x26,0xfe,
19126
+0x2e,0x97,0xfe,0xec,0x4d,0x15,0x0a,0x02,0x00,0x01,0x00,0x6e,
19127
+0xfe,0xb2,0x02,0xd0,0x06,0x26,0x00,0x1b,0x00,0x00,0x13,0x35,
19128
+0x16,0x36,0x37,0x24,0x03,0x26,0x03,0x02,0x35,0x34,0x17,0x16,
19129
+0x17,0x07,0x26,0x07,0x06,0x17,0x16,0x13,0x12,0x07,0x02,0x05,
19130
+0x06,0x22,0x6e,0x14,0x3f,0x52,0x01,0x29,0x13,0x0a,0xa5,0xa8,
19131
+0xde,0xd5,0x33,0x79,0x42,0x45,0x55,0x05,0x04,0xae,0xb7,0x01,
19132
+0x02,0xfe,0x48,0x37,0x68,0xfe,0xb2,0x47,0x02,0x0a,0x15,0x4d,
19133
+0x01,0x14,0x97,0x01,0xd2,0x01,0xda,0xa1,0xcc,0x01,0x01,0xd8,
19134
+0x34,0xca,0x07,0x09,0x7d,0x68,0xfe,0x1c,0xfe,0x06,0xae,0xfe,
19135
+0xae,0x53,0x0b,0x00,0x00,0x03,0x00,0x06,0xfe,0x23,0x03,0xee,
19136
+0x06,0x75,0x00,0x03,0x00,0x06,0x00,0x09,0x00,0x00,0x09,0x05,
19137
+0x21,0x09,0x01,0x21,0x01,0xf9,0x01,0xf5,0xfe,0x0b,0xfe,0x0d,
19138
+0x01,0xf3,0xfe,0x98,0x02,0xd2,0xfe,0x96,0x01,0x6a,0xfd,0x2e,
19139
+0x06,0x75,0xfb,0xdb,0xfb,0xd3,0x04,0x2d,0x03,0x31,0xfd,0x08,
19140
+0xfc,0x8e,0x03,0x00,0x00,0x01,0x00,0xb7,0xfe,0xf2,0x02,0x7b,
19141
+0x06,0x12,0x00,0x05,0x00,0x00,0x13,0x01,0x33,0x09,0x01,0x23,
19142
+0xb7,0x01,0x1a,0xaa,0xfe,0xe6,0x01,0x1a,0xaa,0x02,0x82,0x03,
19143
+0x90,0xfc,0x70,0xfc,0x70,0x00,0x00,0x00,0x00,0x01,0x00,0xa4,
19144
+0xfe,0xf2,0x02,0x68,0x06,0x12,0x00,0x05,0x00,0x00,0x09,0x01,
19145
+0x23,0x09,0x01,0x33,0x02,0x68,0xfe,0xe6,0xaa,0x01,0x1a,0xfe,
19146
+0xe6,0xaa,0x02,0x82,0xfc,0x70,0x03,0x90,0x03,0x90,0x00,0x00,
19147
+0x00,0x01,0x00,0x8c,0x00,0x00,0x06,0x28,0x05,0xf3,0x00,0x16,
19148
+0x00,0x00,0x13,0x35,0x01,0x33,0x01,0x15,0x27,0x11,0x23,0x11,
19149
+0x27,0x11,0x23,0x11,0x27,0x07,0x11,0x23,0x11,0x07,0x11,0x23,
19150
+0x11,0x8c,0x02,0xc9,0x0a,0x02,0xc9,0xbb,0xa2,0x8a,0xa2,0x45,
19151
+0x45,0xa2,0x8a,0xa2,0x04,0x47,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,
19152
+0x41,0xfb,0x78,0x04,0xc0,0x2f,0xfb,0x11,0x05,0x27,0x18,0x18,
19153
+0xfa,0xd9,0x04,0xef,0x2f,0xfb,0x40,0x04,0x88,0x00,0x00,0x00,
19154
+0x00,0x01,0x00,0x8c,0xff,0xd7,0x06,0x28,0x05,0xca,0x00,0x16,
19155
+0x00,0x00,0x01,0x15,0x01,0x23,0x01,0x35,0x17,0x11,0x33,0x11,
19156
+0x17,0x11,0x33,0x11,0x17,0x37,0x11,0x33,0x11,0x37,0x11,0x33,
19157
+0x11,0x06,0x28,0xfd,0x37,0x0a,0xfd,0x37,0xbb,0xa2,0x8a,0xa2,
19158
+0x45,0x45,0xa2,0x8a,0xa2,0x01,0x83,0x0b,0xfe,0x5f,0x01,0xa1,
19159
+0x0b,0x41,0x04,0x88,0xfb,0x40,0x2f,0x04,0xef,0xfa,0xd9,0x18,
19160
+0x18,0x05,0x27,0xfb,0x11,0x2f,0x04,0xc0,0xfb,0x78,0x00,0x00,
19161
+0x00,0x01,0x00,0x65,0x00,0x6c,0x06,0x32,0x04,0xe8,0x00,0x25,
19162
+0x00,0x00,0x01,0x1e,0x01,0x32,0x3e,0x02,0x34,0x2e,0x02,0x22,
19163
+0x0e,0x02,0x15,0x25,0x15,0x01,0x23,0x01,0x35,0x05,0x34,0x3e,
19164
+0x02,0x32,0x1e,0x02,0x14,0x0e,0x02,0x22,0x26,0x27,0x02,0xd0,
19165
+0x37,0x99,0xa8,0x99,0x6e,0x41,0x41,0x6e,0x99,0xa8,0x99,0x6e,
19166
+0x41,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0x5b,0x9a,
19167
+0xd4,0xea,0xd4,0x9a,0x5b,0x5b,0x9a,0xd4,0xea,0xd4,0x4d,0x01,
19168
+0x86,0x37,0x41,0x41,0x6e,0x99,0xa8,0x99,0x6e,0x41,0x41,0x6e,
19169
+0x99,0x54,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x75,0xd4,
19170
+0x9a,0x5b,0x5b,0x9a,0xd4,0xea,0xd4,0x9a,0x5b,0x5b,0x4d,0x00,
19171
+0x00,0x01,0x00,0x82,0x00,0x6c,0x06,0x4f,0x04,0xe8,0x00,0x25,
19172
+0x00,0x00,0x01,0x17,0x0e,0x01,0x22,0x2e,0x02,0x34,0x3e,0x02,
19173
+0x32,0x1e,0x02,0x15,0x25,0x15,0x01,0x23,0x01,0x35,0x05,0x34,
19174
+0x2e,0x02,0x22,0x0e,0x02,0x14,0x1e,0x02,0x32,0x36,0x03,0xe4,
19175
+0x72,0x4d,0xd4,0xea,0xd4,0x9a,0x5b,0x5b,0x9a,0xd4,0xea,0xd4,
19176
+0x9a,0x5b,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0x41,
19177
+0x6e,0x99,0xa8,0x99,0x6e,0x41,0x41,0x6e,0x99,0xa8,0x99,0x01,
19178
+0x86,0x72,0x4d,0x5b,0x5b,0x9a,0xd4,0xea,0xd4,0x9a,0x5b,0x5b,
19179
+0x9a,0xd4,0x75,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x54,
19180
+0x99,0x6e,0x41,0x41,0x6e,0x99,0xa8,0x99,0x6e,0x41,0x41,0x00,
19181
+0x00,0x05,0x00,0x75,0x00,0x14,0x07,0xf8,0x05,0x18,0x00,0x1d,
19182
+0x00,0x25,0x00,0x2d,0x00,0x35,0x00,0x3d,0x00,0x00,0x13,0x35,
19183
+0x33,0x36,0x37,0x36,0x24,0x20,0x04,0x17,0x16,0x17,0x33,0x03,
19184
+0x33,0x01,0x15,0x01,0x23,0x13,0x23,0x06,0x07,0x06,0x04,0x20,
19185
+0x24,0x27,0x26,0x27,0x33,0x16,0x17,0x16,0x17,0x16,0x17,0x11,
19186
+0x33,0x11,0x36,0x37,0x36,0x37,0x36,0x37,0x35,0x26,0x27,0x26,
19187
+0x27,0x26,0x27,0x11,0x23,0x11,0x06,0x07,0x06,0x07,0x06,0x07,
19188
+0x75,0xbc,0x0f,0x42,0x56,0x01,0x28,0x01,0x5c,0x01,0x28,0x56,
19189
+0x42,0x0f,0xe2,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xe2,
19190
+0x0f,0x42,0x56,0xfe,0xd8,0xfe,0xa4,0xfe,0xd8,0x56,0x42,0x0f,
19191
+0xa2,0x0e,0x2c,0x41,0x6f,0x4d,0x54,0xa0,0x54,0x4d,0x6f,0x41,
19192
+0x2c,0x0e,0x0e,0x2c,0x41,0x6f,0x4d,0x54,0xa0,0x54,0x4d,0x6f,
19193
+0x41,0x2c,0x0e,0x02,0x45,0xa2,0x80,0x71,0x94,0xac,0xac,0x94,
19194
+0x71,0x80,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0x80,
19195
+0x71,0x94,0xac,0xac,0x94,0x71,0x80,0x54,0x4c,0x6e,0x42,0x2d,
19196
+0x0e,0x01,0x8b,0xfe,0x75,0x0e,0x2d,0x42,0x6e,0x4c,0x54,0xa2,
19197
+0x54,0x4c,0x6e,0x42,0x2d,0x0e,0xfe,0x75,0x01,0x8b,0x0e,0x2d,
19198
+0x42,0x6e,0x4c,0x54,0x00,0x01,0x00,0x4c,0x00,0xf4,0x0b,0x03,
19199
+0x04,0x38,0x00,0x09,0x00,0x00,0x01,0x15,0x21,0x13,0x23,0x01,
19200
+0x35,0x01,0x33,0x03,0x0b,0x03,0xf6,0x34,0xc1,0x0b,0xfe,0x5f,
19201
+0x01,0xa1,0x0b,0xc1,0x02,0xe7,0xa2,0xfe,0xaf,0x01,0x9d,0x0a,
19202
+0x01,0x9d,0xfe,0xaf,0x00,0x01,0x00,0x75,0x00,0xf4,0x0b,0x2c,
19203
+0x04,0x38,0x00,0x09,0x00,0x00,0x13,0x21,0x03,0x33,0x01,0x15,
19204
+0x01,0x23,0x13,0x21,0x75,0x09,0xcc,0xc1,0x0b,0x01,0xa1,0xfe,
19205
+0x5f,0x0b,0xc1,0xf6,0x34,0x02,0xe7,0x01,0x51,0xfe,0x63,0x0a,
19206
+0xfe,0x63,0x01,0x51,0x00,0x01,0x00,0x4c,0x00,0xf4,0x0b,0x2c,
19207
+0x04,0x38,0x00,0x0f,0x00,0x00,0x01,0x03,0x33,0x01,0x15,0x01,
19208
+0x23,0x13,0x21,0x13,0x23,0x01,0x35,0x01,0x33,0x03,0x0a,0x41,
19209
+0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xf6,0xf6,0xc1,0x0b,
19210
+0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x02,0xe7,0x01,0x51,0xfe,0x63,
19211
+0x0a,0xfe,0x63,0x01,0x51,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,
19212
+0xfe,0xaf,0x00,0x00,0x00,0x01,0x00,0x4c,0x00,0xf4,0x0b,0x03,
19213
+0x04,0x38,0x00,0x0e,0x00,0x00,0x25,0x23,0x01,0x35,0x01,0x33,
19214
+0x07,0x21,0x15,0x21,0x07,0x17,0x21,0x15,0x21,0x01,0xf8,0x0b,
19215
+0xfe,0x5f,0x01,0xa1,0x0b,0x59,0x09,0x64,0xf6,0x43,0x33,0x33,
19216
+0x09,0xbd,0xf6,0x9c,0xf4,0x01,0x9d,0x0a,0x01,0x9d,0xa2,0xa2,
19217
+0x5e,0x5e,0xa2,0x00,0x00,0x01,0x00,0x75,0x00,0xf4,0x0b,0x2c,
19218
+0x04,0x38,0x00,0x0e,0x00,0x00,0x01,0x33,0x01,0x15,0x01,0x23,
19219
+0x37,0x21,0x35,0x21,0x37,0x27,0x21,0x35,0x21,0x09,0x80,0x0b,
19220
+0x01,0xa1,0xfe,0x5f,0x0b,0x59,0xf6,0x9c,0x09,0xbd,0x33,0x33,
19221
+0xf6,0x43,0x09,0x64,0x04,0x38,0xfe,0x63,0x0a,0xfe,0x63,0xa2,
19222
+0xa2,0x5e,0x5e,0xa2,0x00,0x02,0x00,0x4c,0x00,0xf4,0x0b,0x2c,
19223
+0x04,0x38,0x00,0x0f,0x00,0x15,0x00,0x00,0x01,0x33,0x01,0x15,
19224
+0x01,0x23,0x37,0x21,0x17,0x23,0x01,0x35,0x01,0x33,0x07,0x21,
19225
+0x01,0x21,0x37,0x27,0x21,0x07,0x09,0x80,0x0b,0x01,0xa1,0xfe,
19226
+0x5f,0x0b,0x59,0xf7,0xc6,0x59,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,
19227
+0x59,0x08,0x3a,0xf7,0x6d,0x08,0xec,0x33,0x33,0xf7,0x14,0x33,
19228
+0x04,0x38,0xfe,0x63,0x0a,0xfe,0x63,0xa2,0xa2,0x01,0x9d,0x0a,
19229
+0x01,0x9d,0xa2,0xfe,0xa2,0x5e,0x5e,0x5e,0x00,0x01,0x00,0x4c,
19230
+0x00,0xf4,0x0b,0x03,0x04,0x38,0x00,0x0d,0x00,0x00,0x01,0x11,
19231
+0x33,0x11,0x23,0x11,0x21,0x13,0x23,0x01,0x35,0x01,0x33,0x03,
19232
+0x0a,0x61,0xa2,0xa2,0xf6,0xd6,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,
19233
+0x0b,0xc1,0x02,0xe7,0x01,0x38,0xfc,0xee,0x01,0x38,0xfe,0xaf,
19234
+0x01,0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x00,0x00,0x01,0x00,0x75,
19235
+0x00,0xf4,0x0b,0x2c,0x04,0x38,0x00,0x0d,0x00,0x00,0x13,0x11,
19236
+0x33,0x11,0x21,0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x21,0x11,
19237
+0x75,0xa2,0x09,0x2a,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,
19238
+0xf6,0xd6,0x01,0x0d,0x03,0x12,0xfe,0xc8,0x01,0x51,0xfe,0x63,
19239
+0x0a,0xfe,0x63,0x01,0x51,0xfe,0xc8,0x00,0x00,0x02,0x00,0x4c,
19240
+0x00,0xf4,0x0b,0x03,0x04,0x38,0x00,0x0d,0x00,0x12,0x00,0x00,
19241
+0x01,0x33,0x11,0x23,0x35,0x21,0x17,0x23,0x01,0x35,0x01,0x33,
19242
+0x07,0x21,0x11,0x35,0x21,0x07,0x17,0x0a,0x61,0xa2,0xa2,0xf7,
19243
+0x3e,0x59,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0x59,0x08,0xc2,0xf6,
19244
+0xe5,0x33,0x33,0x04,0x1f,0xfc,0xee,0x89,0xa2,0x01,0x9d,0x0a,
19245
+0x01,0x9d,0xa2,0xfe,0xa2,0xbc,0x5e,0x5e,0x00,0x02,0x00,0x75,
19246
+0x00,0xf4,0x0b,0x2c,0x04,0x38,0x00,0x0d,0x00,0x12,0x00,0x00,
19247
+0x01,0x23,0x11,0x33,0x15,0x21,0x27,0x33,0x01,0x15,0x01,0x23,
19248
+0x37,0x21,0x11,0x15,0x21,0x37,0x27,0x01,0x17,0xa2,0xa2,0x08,
19249
+0xc2,0x59,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0x59,0xf7,0x3e,0x09,
19250
+0x1b,0x33,0x33,0x01,0x0d,0x03,0x12,0x89,0xa2,0xfe,0x63,0x0a,
19251
+0xfe,0x63,0xa2,0x01,0x5e,0xbc,0x5e,0x5e,0x00,0x01,0x00,0x75,
19252
+0x00,0xf4,0x0b,0x2c,0x04,0x38,0x00,0x23,0x00,0x00,0x01,0x1b,
19253
+0x03,0x17,0x21,0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x21,0x27,
19254
+0x0b,0x09,0x07,0x23,0x35,0x33,0x37,0x1b,0x04,0x05,0xe9,0xb7,
19255
+0xb7,0xb7,0xb7,0x78,0x01,0x04,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,
19256
+0x0b,0xc1,0xfe,0xc3,0x3f,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,0xb7,
19257
+0xb7,0xb7,0xb7,0x3f,0xeb,0xb2,0x78,0xb7,0xb7,0xb7,0xb7,0xb7,
19258
+0x03,0xb6,0xfe,0xc3,0x01,0x3d,0xfe,0xc3,0x01,0x3d,0xcf,0x01,
19259
+0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0x6d,0xfe,0xc3,0x01,
19260
+0x3d,0xfe,0xc3,0x01,0x3d,0xfe,0xc3,0x01,0x3d,0xfe,0xc3,0x01,
19261
+0x3d,0xfe,0xc3,0x01,0x3d,0x6d,0xa2,0xcf,0xfe,0xc3,0x01,0x3d,
19262
+0xfe,0xc3,0x01,0x3d,0xfe,0xc3,0x00,0x00,0xff,0xff,0x01,0x1d,
19263
+0x05,0x05,0x02,0x67,0x06,0x50,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19264
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0x02,0xce,0x02,0x67,
19265
+0x04,0x19,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
19266
+0xff,0xff,0x01,0x1d,0x02,0xce,0x02,0x67,0x06,0x50,0x10,0x27,
19267
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19268
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x02,0x67,
19269
+0x01,0xe3,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,
19270
+0xff,0xff,0x01,0x1d,0x00,0x98,0x02,0x67,0x06,0x50,0x10,0x27,
19271
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19272
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x02,0x67,
19273
+0x04,0x19,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19274
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19275
+0x00,0x98,0x02,0x67,0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19276
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
19277
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x03,0x75,
19278
+0x05,0x05,0x04,0xbf,0x06,0x50,0x10,0x07,0x0d,0x8a,0x03,0x84,
19279
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0x05,0x05,0x04,0xbf,
19280
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,
19281
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19282
+0x02,0xce,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19283
+0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
19284
+0xff,0xff,0x01,0x1d,0x02,0xce,0x04,0xbf,0x06,0x50,0x10,0x27,
19285
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19286
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19287
+0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,
19288
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19289
+0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,
19290
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19291
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19292
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,
19293
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19294
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19295
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,
19296
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19297
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19298
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19299
+0xff,0xff,0x03,0x75,0x02,0xce,0x04,0xbf,0x04,0x19,0x10,0x07,
19300
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19301
+0x02,0xce,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19302
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19303
+0xff,0xff,0x01,0x1d,0x02,0xce,0x04,0xbf,0x04,0x19,0x10,0x27,
19304
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19305
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0x02,0xce,0x04,0xbf,
19306
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19307
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19308
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,
19309
+0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,
19310
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,
19311
+0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19312
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19313
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19314
+0x00,0x98,0x04,0xbf,0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,
19315
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19316
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19317
+0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19318
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,
19319
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19320
+0x05,0x14,0x00,0x00,0xff,0xff,0x03,0x75,0x02,0xce,0x04,0xbf,
19321
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,
19322
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19323
+0x02,0xce,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19324
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,
19325
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19326
+0x02,0xce,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19327
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,
19328
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19329
+0x02,0xce,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19330
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19331
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19332
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,
19333
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19334
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19335
+0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,
19336
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19337
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19338
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19339
+0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,
19340
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,
19341
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19342
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19343
+0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19344
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19345
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19346
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19347
+0xff,0xff,0x03,0x75,0x00,0x98,0x04,0xbf,0x01,0xe3,0x10,0x07,
19348
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,
19349
+0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19350
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19351
+0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,0x04,0x19,0x10,0x27,
19352
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19353
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,
19354
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19355
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19356
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,
19357
+0x01,0xe3,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x07,
19358
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,
19359
+0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19360
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19361
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19362
+0x00,0x98,0x04,0xbf,0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,
19363
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19364
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19365
+0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19366
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,
19367
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19368
+0x05,0x14,0x00,0x00,0xff,0xff,0x03,0x75,0x00,0x98,0x04,0xbf,
19369
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x07,
19370
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19371
+0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19372
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,
19373
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19374
+0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19375
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,
19376
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19377
+0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19378
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19379
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19380
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,
19381
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19382
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19383
+0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,
19384
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19385
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19386
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19387
+0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,
19388
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19389
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19390
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19391
+0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19392
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19393
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19394
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19395
+0xff,0xff,0x03,0x75,0x00,0x98,0x04,0xbf,0x04,0x19,0x10,0x27,
19396
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x03,0x84,
19397
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,
19398
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19399
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19400
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,
19401
+0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19402
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19403
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,
19404
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19405
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19406
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19407
+0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,0x04,0x19,0x10,0x27,
19408
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19409
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,
19410
+0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,
19411
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19412
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19413
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19414
+0x00,0x98,0x04,0xbf,0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,
19415
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19416
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19417
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,
19418
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19419
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19420
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
19421
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x03,0x75,
19422
+0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19423
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,
19424
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19425
+0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19426
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19427
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19428
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,
19429
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19430
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,
19431
+0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
19432
+0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,
19433
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19434
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19435
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19436
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,
19437
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19438
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,
19439
+0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,
19440
+0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,
19441
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19442
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19443
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19444
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0x00,0x98,0x04,0xbf,
19445
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19446
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,
19447
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19448
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19449
+0x00,0x98,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19450
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19451
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19452
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
19453
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19454
+0xfe,0x61,0x02,0x67,0xff,0xac,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19455
+0xfe,0x70,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x02,0x67,
19456
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x07,
19457
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19458
+0xfe,0x61,0x02,0x67,0x04,0x19,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19459
+0xfe,0x70,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
19460
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x02,0x67,0x06,0x50,0x10,0x27,
19461
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19462
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19463
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x02,0x67,0x01,0xe3,0x10,0x27,
19464
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19465
+0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x02,0x67,
19466
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19467
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19468
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x02,0x67,
19469
+0x04,0x19,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19470
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19471
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x02,0x67,
19472
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19473
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19474
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19475
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19476
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x07,0x0d,0x8a,0x03,0x84,
19477
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19478
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19479
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19480
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19481
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19482
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19483
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19484
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19485
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19486
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19487
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19488
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19489
+0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,
19490
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19491
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19492
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19493
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19494
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19495
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19496
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19497
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19498
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19499
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19500
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
19501
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19502
+0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19503
+0xfe,0x70,0x10,0x07,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x00,0x00,
19504
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19505
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19506
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19507
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,
19508
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19509
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
19510
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19511
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19512
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
19513
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19514
+0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19515
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,
19516
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,
19517
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19518
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19519
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19520
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19521
+0x04,0x19,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19522
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19523
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
19524
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19525
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19526
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,
19527
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19528
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19529
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19530
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x03,0x84,
19531
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19532
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19533
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,
19534
+0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19535
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19536
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19537
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,
19538
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19539
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19540
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19541
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19542
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19543
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19544
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19545
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,
19546
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,
19547
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19548
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19549
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19550
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19551
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19552
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19553
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19554
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19555
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19556
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19557
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,
19558
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,
19559
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19560
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19561
+0x01,0xe3,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x07,
19562
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,
19563
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19564
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x07,
19565
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19566
+0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19567
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x07,
19568
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19569
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19570
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19571
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19572
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19573
+0x01,0xe3,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19574
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19575
+0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19576
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19577
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19578
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19579
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,
19580
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19581
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19582
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19583
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19584
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19585
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19586
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19587
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19588
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19589
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x03,0x84,0x05,0x14,0x00,0x00,
19590
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19591
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19592
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,
19593
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19594
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19595
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19596
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19597
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19598
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19599
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19600
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
19601
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19602
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19603
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19604
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19605
+0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19606
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19607
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19608
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19609
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19610
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19611
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19612
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19613
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
19614
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19615
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19616
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19617
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19618
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19619
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,
19620
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19621
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x00,0x00,
19622
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19623
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19624
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,
19625
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19626
+0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19627
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19628
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19629
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19630
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19631
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19632
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
19633
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19634
+0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19635
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19636
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19637
+0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19638
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19639
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19640
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19641
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19642
+0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19643
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19644
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19645
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
19646
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19647
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19648
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19649
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19650
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19651
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19652
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19653
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,
19654
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19655
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19656
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19657
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,
19658
+0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19659
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19660
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19661
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19662
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19663
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19664
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19665
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19666
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19667
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19668
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19669
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19670
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19671
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,
19672
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,
19673
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19674
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19675
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,
19676
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19677
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19678
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19679
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19680
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,
19681
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19682
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19683
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19684
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19685
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,
19686
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,
19687
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19688
+0x05,0x14,0x00,0x00,0xff,0xff,0x03,0x75,0xfe,0x61,0x04,0xbf,
19689
+0xff,0xac,0x10,0x07,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x00,0x00,
19690
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19691
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19692
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19693
+0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x07,
19694
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19695
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19696
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
19697
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19698
+0xfe,0x61,0x04,0xbf,0x01,0xe3,0x10,0x27,0x0d,0x8a,0x03,0x84,
19699
+0xfe,0x70,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,
19700
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19701
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19702
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19703
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,
19704
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19705
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
19706
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19707
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19708
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
19709
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x03,0x75,
19710
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19711
+0xfe,0x70,0x10,0x07,0x0d,0x8a,0x03,0x84,0x05,0x14,0x00,0x00,
19712
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19713
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19714
+0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19715
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19716
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19717
+0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
19718
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19719
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19720
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
19721
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19722
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19723
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,
19724
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,
19725
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19726
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19727
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19728
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19729
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19730
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19731
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
19732
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19733
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19734
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,
19735
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19736
+0x05,0x14,0x00,0x00,0xff,0xff,0x03,0x75,0xfe,0x61,0x04,0xbf,
19737
+0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x07,
19738
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19739
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19740
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,
19741
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19742
+0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,
19743
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,
19744
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19745
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19746
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19747
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19748
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19749
+0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19750
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19751
+0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19752
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19753
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19754
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19755
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,
19756
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19757
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19758
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19759
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19760
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19761
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19762
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19763
+0xff,0xff,0x03,0x75,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19764
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19765
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x03,0x84,0x05,0x14,0x00,0x00,
19766
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19767
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19768
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,
19769
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19770
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19771
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19772
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19773
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19774
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19775
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,
19776
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
19777
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19778
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19779
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19780
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19781
+0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19782
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19783
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,
19784
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19785
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19786
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19787
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19788
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19789
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
19790
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19791
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19792
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19793
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19794
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19795
+0xff,0xff,0x03,0x75,0xfe,0x61,0x04,0xbf,0x01,0xe3,0x10,0x27,
19796
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x07,0x0d,0x8a,0x03,0x84,
19797
+0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19798
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19799
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19800
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19801
+0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19802
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19803
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19804
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19805
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19806
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19807
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x01,0xe3,0x10,0x27,
19808
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19809
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,
19810
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19811
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19812
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19813
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19814
+0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,
19815
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19816
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19817
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19818
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19819
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19820
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
19821
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x03,0x75,
19822
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19823
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x07,
19824
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19825
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19826
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19827
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19828
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19829
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19830
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19831
+0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
19832
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19833
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19834
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19835
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19836
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19837
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19838
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19839
+0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,
19840
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19841
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19842
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19843
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19844
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19845
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19846
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19847
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19848
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19849
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19850
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19851
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19852
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
19853
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x03,0x75,
19854
+0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,
19855
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x07,
19856
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19857
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19858
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19859
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19860
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19861
+0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19862
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19863
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
19864
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19865
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19866
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19867
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19868
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19869
+0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19870
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19871
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,
19872
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19873
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19874
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19875
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19876
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19877
+0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19878
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19879
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19880
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19881
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19882
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19883
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19884
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
19885
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x03,0x75,
19886
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19887
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19888
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x03,0x84,
19889
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19890
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19891
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19892
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,
19893
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19894
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19895
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
19896
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,
19897
+0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
19898
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19899
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19900
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19901
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19902
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19903
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19904
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19905
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19906
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19907
+0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19908
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19909
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19910
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19911
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19912
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19913
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19914
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19915
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19916
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19917
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19918
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19919
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
19920
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19921
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19922
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19923
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0xff,0xac,0x10,0x27,
19924
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19925
+0xfe,0x70,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19926
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19927
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19928
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19929
+0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19930
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19931
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19932
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19933
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19934
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
19935
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x01,0xe3,0x10,0x27,
19936
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19937
+0xfe,0x70,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,
19938
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19939
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19940
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19941
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19942
+0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,
19943
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19944
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19945
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19946
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19947
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19948
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
19949
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19950
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19951
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x07,
19952
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19953
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19954
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19955
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19956
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19957
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19958
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19959
+0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
19960
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19961
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19962
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19963
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19964
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19965
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19966
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19967
+0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,
19968
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19969
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19970
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
19971
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19972
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19973
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19974
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19975
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
19976
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19977
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19978
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19979
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19980
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
19981
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
19982
+0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,
19983
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x07,
19984
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
19985
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
19986
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
19987
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19988
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19989
+0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19990
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19991
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
19992
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
19993
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
19994
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
19995
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
19996
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
19997
+0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
19998
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
19999
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,
20000
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
20001
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20002
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
20003
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
20004
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
20005
+0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
20006
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
20007
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
20008
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
20009
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
20010
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
20011
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20012
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
20013
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
20014
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
20015
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
20016
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x03,0x84,
20017
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
20018
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
20019
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
20020
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,
20021
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
20022
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
20023
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
20024
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,
20025
+0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
20026
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
20027
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20028
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
20029
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20030
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
20031
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
20032
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20033
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
20034
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,
20035
+0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
20036
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
20037
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
20038
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
20039
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
20040
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
20041
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
20042
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
20043
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
20044
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
20045
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
20046
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
20047
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
20048
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
20049
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20050
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
20051
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x01,0xe3,0x10,0x27,
20052
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20053
+0xfe,0x70,0x10,0x07,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x00,0x00,
20054
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
20055
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20056
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x07,
20057
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
20058
+0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,
20059
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
20060
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
20061
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
20062
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
20063
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
20064
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
20065
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
20066
+0xfe,0x61,0x04,0xbf,0x01,0xe3,0x10,0x27,0x0d,0x8a,0x03,0x84,
20067
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
20068
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
20069
+0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
20070
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
20071
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
20072
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
20073
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
20074
+0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,
20075
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
20076
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20077
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
20078
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
20079
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20080
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
20081
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20082
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
20083
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
20084
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20085
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x07,
20086
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
20087
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
20088
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
20089
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
20090
+0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
20091
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
20092
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20093
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
20094
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,
20095
+0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
20096
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
20097
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
20098
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
20099
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
20100
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
20101
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
20102
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
20103
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,
20104
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,
20105
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
20106
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
20107
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
20108
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
20109
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
20110
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
20111
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
20112
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
20113
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,
20114
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
20115
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
20116
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
20117
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
20118
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,
20119
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
20120
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
20121
+0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
20122
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
20123
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x00,0x00,
20124
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
20125
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20126
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
20127
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
20128
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
20129
+0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
20130
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
20131
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x07,
20132
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,0xff,0xff,0x01,0x1d,
20133
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
20134
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
20135
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
20136
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
20137
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
20138
+0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,0x0d,0x8a,0x03,0x84,
20139
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
20140
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
20141
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,
20142
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
20143
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20144
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
20145
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20146
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
20147
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x04,0x19,0x10,0x27,
20148
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20149
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
20150
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20151
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
20152
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
20153
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20154
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
20155
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20156
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
20157
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
20158
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
20159
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
20160
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
20161
+0x02,0xdd,0x10,0x07,0x0d,0x8a,0x03,0x84,0x05,0x14,0x00,0x00,
20162
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
20163
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20164
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
20165
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,
20166
+0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,
20167
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
20168
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20169
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
20170
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,
20171
+0x05,0x14,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
20172
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
20173
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20174
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
20175
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,
20176
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,
20177
+0x0d,0x8a,0x01,0x2c,0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,
20178
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
20179
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
20180
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
20181
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x07,
20182
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x00,0x00,0xff,0xff,0x01,0x1d,
20183
+0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,
20184
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,
20185
+0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,
20186
+0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,
20187
+0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,
20188
+0x05,0x14,0x00,0x00,0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,
20189
+0x06,0x50,0x10,0x27,0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,
20190
+0x0d,0x8a,0x01,0x2c,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,
20191
+0x00,0xa7,0x10,0x27,0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,
20192
+0x0d,0x8a,0x03,0x84,0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20193
+0x00,0xa7,0x10,0x07,0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x00,0x00,
20194
+0xff,0xff,0x01,0x1d,0xfe,0x61,0x04,0xbf,0x06,0x50,0x10,0x27,
20195
+0x0d,0x8a,0x03,0x84,0xfe,0x70,0x10,0x27,0x0d,0x8a,0x01,0x2c,
20196
+0xfe,0x70,0x10,0x27,0x0d,0x8a,0x03,0x84,0x00,0xa7,0x10,0x27,
20197
+0x0d,0x8a,0x03,0x84,0x02,0xdd,0x10,0x27,0x0d,0x8a,0x03,0x84,
20198
+0x05,0x14,0x10,0x27,0x0d,0x8a,0x01,0x2c,0x00,0xa7,0x10,0x27,
20199
+0x0d,0x8a,0x01,0x2c,0x02,0xdd,0x10,0x07,0x0d,0x8a,0x01,0x2c,
20200
+0x05,0x14,0x00,0x00,0x00,0x01,0x00,0x75,0x00,0xf4,0x06,0x68,
20201
+0x04,0x38,0x00,0x19,0x00,0x00,0x01,0x23,0x11,0x21,0x35,0x21,
20202
+0x11,0x33,0x11,0x21,0x03,0x33,0x01,0x33,0x03,0x33,0x01,0x15,
20203
+0x01,0x23,0x13,0x23,0x01,0x23,0x13,0x21,0x02,0xe3,0xa2,0xfe,
20204
+0x34,0x01,0xcc,0xa2,0x01,0xa0,0xc1,0x0b,0x01,0x64,0x4c,0xc1,
20205
+0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0x4c,0xfe,0x9c,0x0b,0xc1,
20206
+0xfe,0x60,0x01,0x0d,0x01,0x38,0xa2,0x01,0x38,0xfe,0xc8,0x01,
20207
+0x51,0xfe,0xaf,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,
20208
+0xfe,0xaf,0x01,0x51,0x00,0x01,0x00,0x75,0x00,0xf4,0x06,0x68,
20209
+0x04,0x38,0x00,0x21,0x00,0x00,0x01,0x23,0x11,0x23,0x11,0x23,
20210
+0x11,0x21,0x35,0x21,0x11,0x33,0x11,0x33,0x11,0x33,0x11,0x21,
20211
+0x03,0x33,0x01,0x33,0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x23,
20212
+0x01,0x23,0x13,0x21,0x03,0x60,0xa2,0x58,0xa2,0xfe,0xb1,0x01,
20213
+0x4f,0xa2,0x58,0xa2,0x01,0x23,0xc1,0x0b,0x01,0x64,0x4c,0xc1,
20214
+0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0x4c,0xfe,0x9c,0x0b,0xc1,
20215
+0xfe,0xdd,0x01,0x0d,0x01,0x38,0xfe,0xc8,0x01,0x38,0xa2,0x01,
20216
+0x38,0xfe,0xc8,0x01,0x38,0xfe,0xc8,0x01,0x51,0xfe,0xaf,0x01,
20217
+0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0xfe,0xaf,0x01,0x51,
20218
+0x00,0x02,0x00,0x4c,0x00,0xf4,0x06,0x3f,0x04,0x38,0x00,0x15,
20219
+0x00,0x1a,0x00,0x00,0x01,0x33,0x15,0x21,0x15,0x21,0x15,0x21,
20220
+0x15,0x21,0x15,0x23,0x35,0x21,0x17,0x23,0x01,0x35,0x01,0x33,
20221
+0x07,0x21,0x11,0x35,0x21,0x07,0x17,0x03,0x6d,0xa2,0x02,0x30,
20222
+0xfd,0xd0,0x02,0x30,0xfd,0xd0,0xa2,0xfe,0x32,0x59,0x0b,0xfe,
20223
+0x5f,0x01,0xa1,0x0b,0x59,0x01,0xce,0xfd,0xd9,0x33,0x33,0x04,
20224
+0x1f,0x89,0xa2,0xbc,0xa2,0x89,0x89,0xa2,0x01,0x9d,0x0a,0x01,
20225
+0x9d,0xa2,0xfe,0xa2,0xbc,0x5e,0x5e,0x00,0x00,0x02,0x00,0x75,
20226
+0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x15,0x00,0x1a,0x00,0x00,
20227
+0x01,0x23,0x35,0x21,0x35,0x21,0x35,0x21,0x35,0x21,0x35,0x33,
20228
+0x15,0x21,0x27,0x33,0x01,0x15,0x01,0x23,0x37,0x21,0x11,0x15,
20229
+0x21,0x37,0x27,0x03,0x47,0xa2,0xfd,0xd0,0x02,0x30,0xfd,0xd0,
20230
+0x02,0x30,0xa2,0x01,0xce,0x59,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,
20231
+0x59,0xfe,0x32,0x02,0x27,0x33,0x33,0x01,0x0d,0x89,0xa2,0xbc,
20232
+0xa2,0x89,0x89,0xa2,0xfe,0x63,0x0a,0xfe,0x63,0xa2,0x01,0x5e,
20233
+0xbc,0x5e,0x5e,0x00,0x00,0x03,0x00,0x4c,0x00,0xf4,0x06,0x68,
20234
+0x04,0x38,0x00,0x17,0x00,0x1c,0x00,0x21,0x00,0x00,0x01,0x23,
20235
+0x35,0x21,0x17,0x23,0x01,0x35,0x01,0x33,0x07,0x21,0x35,0x33,
20236
+0x15,0x21,0x27,0x33,0x01,0x15,0x01,0x23,0x37,0x21,0x11,0x15,
20237
+0x21,0x37,0x27,0x29,0x01,0x07,0x17,0x21,0x03,0xab,0xa2,0xfe,
20238
+0x96,0x59,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0x59,0x01,0x6a,0xa2,
20239
+0x01,0x6a,0x59,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0x59,0xfe,0x96,
20240
+0x01,0xc3,0x33,0x33,0xfd,0x9b,0xfe,0x3d,0x33,0x33,0x01,0xc3,
20241
+0x01,0x0d,0x89,0xa2,0x01,0x9d,0x0a,0x01,0x9d,0xa2,0x89,0x89,
20242
+0xa2,0xfe,0x63,0x0a,0xfe,0x63,0xa2,0x01,0x5e,0xbc,0x5e,0x5e,
20243
+0x5e,0x5e,0x00,0x00,0x00,0x01,0x00,0x75,0x00,0xf4,0x06,0x68,
20244
+0x04,0x38,0x00,0x15,0x00,0x00,0x09,0x01,0x23,0x13,0x21,0x11,
20245
+0x23,0x11,0x33,0x11,0x21,0x03,0x33,0x01,0x33,0x03,0x33,0x01,
20246
+0x15,0x01,0x23,0x13,0x05,0x31,0xfe,0x9c,0x0b,0xc1,0xfc,0x94,
20247
+0xa2,0xa2,0x03,0x6c,0xc1,0x0b,0x01,0x64,0x4c,0xc1,0x0b,0x01,
20248
+0xa1,0xfe,0x5f,0x0b,0xc1,0x02,0x45,0xfe,0xaf,0x01,0x51,0xfe,
20249
+0xc8,0x03,0x12,0xfe,0xc8,0x01,0x51,0xfe,0xaf,0x01,0x51,0xfe,
20250
+0x63,0x0a,0xfe,0x63,0x01,0x51,0x00,0x00,0x00,0x02,0x00,0x4c,
20251
+0x00,0xf4,0x06,0x3f,0x04,0x38,0x00,0x0d,0x00,0x12,0x00,0x00,
20252
+0x01,0x33,0x11,0x23,0x35,0x21,0x17,0x23,0x01,0x35,0x01,0x33,
20253
+0x07,0x21,0x11,0x35,0x21,0x07,0x17,0x05,0x9d,0xa2,0xa2,0xfc,
20254
+0x02,0x59,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0x59,0x03,0xfe,0xfb,
20255
+0xa9,0x33,0x33,0x04,0x1f,0xfc,0xee,0x89,0xa2,0x01,0x9d,0x0a,
20256
+0x01,0x9d,0xa2,0xfe,0xa2,0xbc,0x5e,0x5e,0x00,0x02,0x00,0x75,
20257
+0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x0d,0x00,0x12,0x00,0x00,
20258
+0x01,0x23,0x11,0x33,0x15,0x21,0x27,0x33,0x01,0x15,0x01,0x23,
20259
+0x37,0x21,0x11,0x15,0x21,0x37,0x27,0x01,0x17,0xa2,0xa2,0x03,
20260
+0xfe,0x59,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0x59,0xfc,0x02,0x04,
20261
+0x57,0x33,0x33,0x01,0x0d,0x03,0x12,0x89,0xa2,0xfe,0x63,0x0a,
20262
+0xfe,0x63,0xa2,0x01,0x5e,0xbc,0x5e,0x5e,0x00,0x01,0x01,0xb8,
20263
+0xff,0xd7,0x04,0xfc,0x05,0xca,0x00,0x11,0x00,0x00,0x01,0x33,
20264
+0x11,0x21,0x15,0x21,0x11,0x25,0x15,0x01,0x23,0x01,0x35,0x05,
20265
+0x11,0x21,0x35,0x21,0x03,0x09,0xa2,0x01,0x38,0xfe,0xc8,0x01,
20266
+0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0xfe,0xc8,0x01,0x38,
20267
+0x05,0xca,0xfd,0xd0,0xa2,0xfd,0xca,0xc1,0x0b,0xfe,0x5f,0x01,
20268
+0xa1,0x0b,0xc1,0x02,0x36,0xa2,0x00,0x00,0x00,0x01,0x01,0xb8,
20269
+0x00,0x00,0x04,0xfc,0x05,0xf3,0x00,0x11,0x00,0x00,0x21,0x23,
20270
+0x11,0x21,0x35,0x21,0x11,0x05,0x35,0x01,0x33,0x01,0x15,0x25,
20271
+0x11,0x21,0x15,0x21,0x03,0xab,0xa2,0xfe,0xc8,0x01,0x38,0xfe,
20272
+0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x01,0x38,0xfe,0xc8,
20273
+0x02,0x30,0xa2,0x02,0x36,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,
20274
+0xc1,0xfd,0xca,0xa2,0x00,0x01,0x01,0x54,0x00,0x00,0x05,0x60,
20275
+0x05,0xf3,0x00,0x11,0x00,0x00,0x01,0x35,0x01,0x33,0x01,0x15,
20276
+0x27,0x11,0x23,0x11,0x27,0x11,0x23,0x11,0x07,0x11,0x23,0x11,
20277
+0x01,0x54,0x02,0x01,0x0a,0x02,0x01,0x89,0xa2,0x8a,0xa2,0x8a,
20278
+0xa2,0x04,0x47,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0x3d,0xfb,0x7c,
20279
+0x04,0xcb,0x3d,0xfa,0xf8,0x05,0x08,0x3d,0xfb,0x35,0x04,0x84,
20280
+0x00,0x01,0x01,0x54,0xff,0xd7,0x05,0x60,0x05,0xca,0x00,0x11,
20281
+0x00,0x00,0x01,0x15,0x01,0x23,0x01,0x35,0x17,0x11,0x33,0x11,
20282
+0x17,0x11,0x33,0x11,0x37,0x11,0x33,0x11,0x05,0x60,0xfd,0xff,
20283
+0x0a,0xfd,0xff,0x89,0xa2,0x8a,0xa2,0x8a,0xa2,0x01,0x83,0x0b,
20284
+0xfe,0x5f,0x01,0xa1,0x0b,0x3d,0x04,0x84,0xfb,0x35,0x3d,0x05,
20285
+0x08,0xfa,0xf8,0x3d,0x04,0xcb,0xfb,0x7c,0x00,0x02,0x00,0x4c,
20286
+0x00,0xf4,0x06,0x3f,0x04,0x38,0x00,0x03,0x00,0x0d,0x00,0x00,
20287
+0x01,0x15,0x21,0x35,0x23,0x15,0x21,0x13,0x23,0x01,0x35,0x01,
20288
+0x33,0x03,0x06,0x3f,0xfd,0x8e,0x82,0xfd,0xec,0xc1,0x0b,0xfe,
20289
+0x5f,0x01,0xa1,0x0b,0xc1,0x02,0xe7,0xa2,0xa2,0xa2,0xfe,0xaf,
20290
+0x01,0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x00,0x00,0x02,0x00,0x75,
20291
+0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x03,0x00,0x0d,0x00,0x00,
20292
+0x13,0x35,0x21,0x15,0x33,0x35,0x21,0x03,0x33,0x01,0x15,0x01,
20293
+0x23,0x13,0x75,0x02,0x72,0x82,0x02,0x14,0xc1,0x0b,0x01,0xa1,
20294
+0xfe,0x5f,0x0b,0xc1,0x02,0x45,0xa2,0xa2,0xa2,0x01,0x51,0xfe,
20295
+0x63,0x0a,0xfe,0x63,0x01,0x51,0x00,0x00,0x00,0x03,0x00,0x4c,
20296
+0x00,0xf4,0x06,0x3f,0x04,0x38,0x00,0x09,0x00,0x0d,0x00,0x11,
20297
+0x00,0x00,0x01,0x15,0x21,0x13,0x23,0x01,0x35,0x01,0x33,0x03,
20298
+0x21,0x15,0x21,0x35,0x23,0x15,0x21,0x35,0x02,0x73,0xfe,0xc4,
20299
+0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x05,0x08,0xfe,0x9c,
20300
+0x82,0xfe,0x9c,0x02,0xe7,0xa2,0xfe,0xaf,0x01,0x9d,0x0a,0x01,
20301
+0x9d,0xfe,0xaf,0xa2,0xa2,0xa2,0xa2,0x00,0x00,0x03,0x00,0x75,
20302
+0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x09,0x00,0x0d,0x00,0x11,
20303
+0x00,0x00,0x01,0x35,0x21,0x03,0x33,0x01,0x15,0x01,0x23,0x13,
20304
+0x21,0x35,0x21,0x15,0x33,0x35,0x21,0x15,0x04,0x41,0x01,0x3c,
20305
+0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfa,0xf8,0x01,0x64,
20306
+0x82,0x01,0x64,0x02,0x45,0xa2,0x01,0x51,0xfe,0x63,0x0a,0xfe,
20307
+0x63,0x01,0x51,0xa2,0xa2,0xa2,0xa2,0x00,0x00,0x03,0x00,0x6e,
20308
+0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x03,0x00,0x15,0x00,0x1f,
20309
+0x00,0x00,0x01,0x15,0x23,0x35,0x05,0x01,0x23,0x13,0x23,0x35,
20310
+0x33,0x03,0x33,0x01,0x33,0x03,0x33,0x01,0x15,0x01,0x23,0x13,
20311
+0x21,0x01,0x27,0x01,0x35,0x01,0x37,0x01,0x33,0x15,0x03,0x7d,
20312
+0x96,0x02,0x4a,0xfe,0x9c,0x0b,0xc1,0x84,0x84,0xc1,0x0b,0x01,
20313
+0x64,0x4c,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfc,0xb7,
20314
+0xfe,0xac,0x72,0x01,0x2e,0xfe,0xd2,0x72,0x01,0x54,0x31,0x02,
20315
+0xe7,0xa2,0xa2,0xa2,0xfe,0xaf,0x01,0x51,0xa2,0x01,0x51,0xfe,
20316
+0xaf,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0xfe,0xaf,
20317
+0x73,0x01,0x2a,0x0a,0x01,0x2a,0x73,0xfe,0xaf,0xa2,0x00,0x00,
20318
+0x00,0x06,0x00,0x6e,0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x0a,
20319
+0x00,0x15,0x00,0x20,0x00,0x2b,0x00,0x36,0x00,0x3d,0x00,0x00,
20320
+0x00,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x24,
20321
+0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x24,0x34,
20322
+0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x24,0x34,0x36,
20323
+0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x24,0x34,0x36,0x33,
20324
+0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x01,0x33,0x01,0x15,0x01,
20325
+0x23,0x13,0x04,0x7e,0x35,0x28,0x26,0x37,0x37,0x26,0x28,0xfe,
20326
+0xc7,0x35,0x28,0x26,0x37,0x37,0x26,0x28,0xfe,0xc7,0x35,0x28,
20327
+0x26,0x37,0x37,0x26,0x28,0xfe,0xc7,0x35,0x28,0x26,0x37,0x37,
20328
+0x26,0x28,0xfe,0xc7,0x35,0x28,0x26,0x37,0x37,0x26,0x28,0x04,
20329
+0x19,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xe5,0x02,0x6f,0x4e,0x37,
20330
+0x37,0x27,0x26,0x37,0x36,0x4e,0x37,0x37,0x27,0x26,0x37,0x36,
20331
+0x4e,0x37,0x37,0x27,0x26,0x37,0x36,0x4e,0x37,0x37,0x27,0x26,
20332
+0x37,0x36,0x4e,0x37,0x37,0x27,0x26,0x37,0x01,0xff,0xfe,0x63,
20333
+0x0a,0xfe,0x63,0x01,0xa2,0x00,0x00,0x00,0x00,0x01,0x01,0xb8,
20334
+0x00,0x00,0x04,0xfc,0x05,0xca,0x00,0x0d,0x00,0x00,0x21,0x11,
20335
+0x05,0x35,0x01,0x21,0x35,0x21,0x15,0x21,0x01,0x15,0x25,0x11,
20336
+0x03,0x09,0xfe,0xaf,0x01,0x5e,0xfe,0xbb,0x03,0x12,0xfe,0xbb,
20337
+0x01,0x5e,0xfe,0xaf,0x04,0x7d,0xc1,0x0b,0x01,0x61,0xa2,0xa2,
20338
+0xfe,0x9f,0x0b,0xc1,0xfb,0x83,0x00,0x00,0x00,0x01,0x01,0xb8,
20339
+0x00,0x00,0x04,0xfc,0x05,0xca,0x00,0x0d,0x00,0x00,0x01,0x11,
20340
+0x25,0x15,0x01,0x21,0x15,0x21,0x35,0x21,0x01,0x35,0x05,0x11,
20341
+0x03,0xab,0x01,0x51,0xfe,0xa2,0x01,0x45,0xfc,0xee,0x01,0x45,
20342
+0xfe,0xa2,0x01,0x51,0x05,0xca,0xfb,0x83,0xc1,0x0b,0xfe,0x9f,
20343
+0xa2,0xa2,0x01,0x61,0x0b,0xc1,0x04,0x7d,0x00,0x01,0x00,0x6e,
20344
+0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x17,0x00,0x00,0x01,0x33,
20345
+0x11,0x21,0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x21,0x11,0x23,
20346
+0x11,0x23,0x01,0x27,0x01,0x35,0x01,0x37,0x01,0x33,0x03,0x09,
20347
+0xa2,0x01,0xd2,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfe,
20348
+0x2e,0xa2,0xd5,0xfe,0xac,0x72,0x01,0x2e,0xfe,0xd2,0x72,0x01,
20349
+0x54,0xd5,0x04,0x1f,0xfe,0xc8,0x01,0x51,0xfe,0x63,0x0a,0xfe,
20350
+0x63,0x01,0x51,0xfe,0xc8,0x01,0x38,0xfe,0xaf,0x73,0x01,0x2a,
20351
+0x0a,0x01,0x2a,0x73,0xfe,0xaf,0x00,0x00,0x00,0x01,0x00,0x6e,
20352
+0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x1f,0x00,0x00,0x01,0x33,
20353
+0x11,0x21,0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x21,0x11,0x23,
20354
+0x11,0x23,0x11,0x23,0x11,0x23,0x01,0x27,0x01,0x35,0x01,0x37,
20355
+0x01,0x33,0x11,0x33,0x11,0x33,0x03,0x86,0xa2,0x01,0x55,0xc1,
20356
+0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfe,0xab,0xa2,0x58,0xa2,
20357
+0x58,0xfe,0xac,0x72,0x01,0x2e,0xfe,0xd2,0x72,0x01,0x54,0x58,
20358
+0xa2,0x58,0x04,0x1f,0xfe,0xc8,0x01,0x51,0xfe,0x63,0x0a,0xfe,
20359
+0x63,0x01,0x51,0xfe,0xc8,0x01,0x38,0xfe,0xc8,0x01,0x38,0xfe,
20360
+0xaf,0x73,0x01,0x2a,0x0a,0x01,0x2a,0x73,0xfe,0xaf,0x01,0x38,
20361
+0xfe,0xc8,0x00,0x00,0x00,0x01,0x00,0x6e,0x00,0xf4,0x06,0x68,
20362
+0x04,0x38,0x00,0x17,0x00,0x00,0x01,0x03,0x33,0x01,0x33,0x03,
20363
+0x33,0x01,0x15,0x01,0x23,0x13,0x23,0x01,0x23,0x13,0x21,0x01,
20364
+0x27,0x01,0x35,0x01,0x37,0x01,0x04,0x83,0xc1,0x0b,0x01,0x64,
20365
+0x4c,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0x4c,0xfe,0x9c,
20366
+0x0b,0xc1,0xfd,0xb1,0xfe,0xac,0x72,0x01,0x2e,0xfe,0xd2,0x72,
20367
+0x01,0x54,0x02,0xe7,0x01,0x51,0xfe,0xaf,0x01,0x51,0xfe,0x63,
20368
+0x0a,0xfe,0x63,0x01,0x51,0xfe,0xaf,0x01,0x51,0xfe,0xaf,0x73,
20369
+0x01,0x2a,0x0a,0x01,0x2a,0x73,0xfe,0xaf,0x00,0x01,0x00,0x6e,
20370
+0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x1f,0x00,0x00,0x01,0x33,
20371
+0x11,0x21,0x03,0x33,0x01,0x33,0x03,0x33,0x01,0x15,0x01,0x23,
20372
+0x13,0x23,0x01,0x23,0x13,0x21,0x11,0x23,0x11,0x23,0x01,0x27,
20373
+0x01,0x35,0x01,0x37,0x01,0x33,0x02,0xa5,0xa2,0x01,0x3c,0xc1,
20374
+0x0b,0x01,0x64,0x4c,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,
20375
+0x4c,0xfe,0x9c,0x0b,0xc1,0xfe,0xc4,0xa2,0x71,0xfe,0xac,0x72,
20376
+0x01,0x2e,0xfe,0xd2,0x72,0x01,0x54,0x71,0x04,0x1f,0xfe,0xc8,
20377
+0x01,0x51,0xfe,0xaf,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,
20378
+0x51,0xfe,0xaf,0x01,0x51,0xfe,0xc8,0x01,0x38,0xfe,0xaf,0x73,
20379
+0x01,0x2a,0x0a,0x01,0x2a,0x73,0xfe,0xaf,0x00,0x01,0x00,0x6e,
20380
+0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x25,0x00,0x00,0x01,0x33,
20381
+0x11,0x33,0x03,0x33,0x01,0x33,0x03,0x33,0x01,0x15,0x01,0x23,
20382
+0x13,0x23,0x01,0x23,0x13,0x23,0x11,0x23,0x11,0x23,0x11,0x23,
20383
+0x11,0x01,0x27,0x01,0x35,0x01,0x37,0x01,0x11,0x33,0x11,0x33,
20384
+0x03,0x12,0xa2,0xcf,0xc1,0x0b,0x01,0x64,0x4c,0xc1,0x0b,0x01,
20385
+0xa1,0xfe,0x5f,0x0b,0xc1,0x4c,0xfe,0x9c,0x0b,0xc1,0xcf,0xa2,
20386
+0x58,0xa2,0xfe,0xc8,0x72,0x01,0x2e,0xfe,0xd2,0x72,0x01,0x38,
20387
+0xa2,0x58,0x04,0x1f,0xfe,0xc8,0x01,0x51,0xfe,0xaf,0x01,0x51,
20388
+0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0xfe,0xaf,0x01,0x51,0xfe,
20389
+0xc8,0x01,0x38,0xfe,0xc8,0x01,0x1c,0xfe,0xcb,0x73,0x01,0x2a,
20390
+0x0a,0x01,0x2a,0x73,0xfe,0xcb,0x01,0x1c,0xfe,0xc8,0x00,0x00,
20391
+0x00,0x01,0x00,0x75,0x00,0xf4,0x06,0x46,0x04,0x38,0x00,0x09,
20392
+0x00,0x00,0x01,0x21,0x35,0x21,0x01,0x17,0x01,0x15,0x01,0x07,
20393
+0x04,0x80,0xfb,0xf5,0x04,0x0b,0x01,0x54,0x72,0xfe,0xd2,0x01,
20394
+0x2e,0x72,0x02,0x45,0xa2,0x01,0x51,0x73,0xfe,0xd6,0x0a,0xfe,
20395
+0xd6,0x73,0x00,0x00,0x00,0x01,0x00,0x6e,0x00,0xf4,0x06,0x3f,
20396
+0x04,0x38,0x00,0x09,0x00,0x00,0x01,0x21,0x15,0x21,0x01,0x27,
20397
+0x01,0x35,0x01,0x37,0x02,0x34,0x04,0x0b,0xfb,0xf5,0xfe,0xac,
20398
+0x72,0x01,0x2e,0xfe,0xd2,0x72,0x02,0xe7,0xa2,0xfe,0xaf,0x73,
20399
+0x01,0x2a,0x0a,0x01,0x2a,0x73,0x00,0x00,0x00,0x01,0x00,0x75,
20400
+0x00,0xf4,0x06,0x46,0x04,0x38,0x00,0x11,0x00,0x00,0x01,0x17,
20401
+0x07,0x01,0x21,0x35,0x21,0x01,0x17,0x07,0x33,0x01,0x17,0x01,
20402
+0x15,0x01,0x07,0x01,0x04,0x17,0xe1,0x72,0xfe,0xac,0xfd,0x43,
20403
+0x02,0xbd,0x01,0x54,0x72,0xe1,0x69,0x01,0x54,0x72,0xfe,0xd2,
20404
+0x01,0x2e,0x72,0xfe,0xac,0x02,0x45,0xde,0x73,0x01,0x51,0xa2,
20405
+0x01,0x51,0x73,0xde,0x01,0x51,0x73,0xfe,0xd6,0x0a,0xfe,0xd6,
20406
+0x73,0x01,0x51,0x00,0x00,0x01,0x00,0x6e,0x00,0xf4,0x06,0x3f,
20407
+0x04,0x38,0x00,0x11,0x00,0x00,0x01,0x27,0x37,0x01,0x21,0x15,
20408
+0x21,0x01,0x27,0x37,0x23,0x01,0x27,0x01,0x35,0x01,0x37,0x01,
20409
+0x02,0x9d,0xe1,0x72,0x01,0x54,0x02,0xbd,0xfd,0x43,0xfe,0xac,
20410
+0x72,0xe1,0x69,0xfe,0xac,0x72,0x01,0x2e,0xfe,0xd2,0x72,0x01,
20411
+0x54,0x02,0xe7,0xde,0x73,0xfe,0xaf,0xa2,0xfe,0xaf,0x73,0xde,
20412
+0xfe,0xaf,0x73,0x01,0x2a,0x0a,0x01,0x2a,0x73,0xfe,0xaf,0x00,
20413
+0x00,0x01,0x00,0x4c,0x00,0xf4,0x06,0x3f,0x04,0x38,0x00,0x0f,
20414
+0x00,0x00,0x01,0x03,0x21,0x1d,0x02,0x21,0x13,0x23,0x01,0x07,
20415
+0x01,0x35,0x01,0x17,0x01,0x03,0xec,0xc1,0x03,0x14,0xfc,0xec,
20416
+0xc1,0x0b,0xfe,0x6b,0xfa,0xfe,0xfa,0x01,0x06,0xfa,0x01,0x95,
20417
+0x04,0x38,0xfe,0xaf,0x10,0x82,0x10,0xfe,0xaf,0x01,0x92,0xf8,
20418
+0x01,0x04,0x08,0x01,0x04,0xf8,0x01,0x92,0x00,0x01,0x00,0x74,
20419
+0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x0f,0x00,0x00,0x25,0x13,
20420
+0x21,0x3d,0x02,0x21,0x03,0x33,0x01,0x37,0x01,0x15,0x01,0x27,
20421
+0x01,0x02,0xc8,0xc1,0xfc,0xec,0x03,0x14,0xc1,0x0b,0x01,0x95,
20422
+0xfa,0x01,0x06,0xfe,0xfa,0xfa,0xfe,0x6b,0xf4,0x01,0x51,0x10,
20423
+0x82,0x10,0x01,0x51,0xfe,0x6e,0xf8,0xfe,0xfc,0x08,0xfe,0xfc,
20424
+0xf8,0xfe,0x6e,0x00,0x00,0x01,0x00,0x4c,0x00,0xf4,0x06,0x3f,
20425
+0x04,0x38,0x00,0x11,0x00,0x00,0x01,0x33,0x11,0x23,0x11,0x21,
20426
+0x13,0x23,0x01,0x07,0x01,0x35,0x01,0x17,0x01,0x33,0x03,0x21,
20427
+0x05,0x9d,0xa2,0xa2,0xfd,0x8e,0xc1,0x0b,0xfe,0x6b,0xfa,0xfe,
20428
+0xfa,0x01,0x06,0xfa,0x01,0x95,0x0b,0xc1,0x02,0x72,0x04,0x1f,
20429
+0xfc,0xee,0x01,0x38,0xfe,0xaf,0x01,0x92,0xf8,0x01,0x04,0x08,
20430
+0x01,0x04,0xf8,0x01,0x92,0xfe,0xaf,0x00,0x00,0x01,0x00,0x75,
20431
+0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x11,0x00,0x00,0x01,0x23,
20432
+0x11,0x33,0x11,0x21,0x03,0x33,0x01,0x37,0x01,0x15,0x01,0x27,
20433
+0x01,0x23,0x13,0x21,0x01,0x17,0xa2,0xa2,0x02,0x72,0xc1,0x0b,
20434
+0x01,0x95,0xfa,0x01,0x06,0xfe,0xfa,0xfa,0xfe,0x6b,0x0b,0xc1,
20435
+0xfd,0x8e,0x01,0x0d,0x03,0x12,0xfe,0xc8,0x01,0x51,0xfe,0x6e,
20436
+0xf8,0xfe,0xfc,0x08,0xfe,0xfc,0xf8,0xfe,0x6e,0x01,0x51,0x00,
20437
+0x00,0x01,0x01,0x2e,0x00,0x69,0x05,0x88,0x04,0xc2,0x00,0x0f,
20438
+0x00,0x00,0x01,0x13,0x17,0x13,0x07,0x25,0x27,0x25,0x01,0x03,
20439
+0x27,0x03,0x37,0x05,0x17,0x05,0x05,0x17,0x66,0x08,0x03,0x07,
20440
+0xfd,0xb5,0x08,0x01,0x77,0xfc,0xf9,0x66,0x07,0x03,0x07,0x02,
20441
+0x4b,0x08,0xfe,0x89,0x01,0x4c,0x01,0x77,0x08,0xfd,0xb5,0x07,
20442
+0x03,0x08,0x65,0x03,0x06,0xfe,0x89,0x08,0x02,0x4b,0x07,0x03,
20443
+0x08,0x65,0x00,0x00,0x00,0x01,0x01,0x2e,0x00,0x68,0x05,0x86,
20444
+0x04,0xc2,0x00,0x0f,0x00,0x00,0x25,0x05,0x07,0x05,0x27,0x13,
20445
+0x37,0x13,0x01,0x25,0x37,0x25,0x17,0x03,0x07,0x03,0x02,0x10,
20446
+0x01,0x78,0x08,0xfd,0xb4,0x06,0x02,0x08,0x66,0x03,0x06,0xfe,
20447
+0x88,0x08,0x02,0x4c,0x06,0x02,0x08,0x66,0xda,0x66,0x08,0x04,
20448
+0x08,0x02,0x4a,0x08,0xfe,0x8a,0x03,0x06,0x66,0x08,0x02,0x06,
20449
+0xfd,0xb4,0x08,0x01,0x78,0x00,0x00,0x00,0x00,0x01,0x01,0x2d,
20450
+0xff,0xb4,0x05,0x2f,0x04,0xc3,0x00,0x13,0x00,0x00,0x09,0x01,
20451
+0x03,0x27,0x03,0x37,0x05,0x17,0x05,0x01,0x16,0x14,0x06,0x22,
20452
+0x27,0x37,0x16,0x32,0x36,0x34,0x04,0x6d,0xfd,0x30,0x65,0x08,
20453
+0x03,0x07,0x02,0x4b,0x08,0xfe,0x89,0x02,0xcf,0x50,0xa0,0xdf,
20454
+0x50,0x72,0x20,0x5b,0x3f,0x01,0x11,0x02,0xcf,0xfe,0x89,0x08,
20455
+0x02,0x4b,0x07,0x03,0x08,0x66,0xfd,0x31,0x50,0xdf,0xa0,0x50,
20456
+0x73,0x20,0x3f,0x5b,0x00,0x01,0x01,0x84,0xff,0xb3,0x05,0x86,
20457
+0x04,0xc2,0x00,0x13,0x00,0x00,0x01,0x06,0x14,0x16,0x32,0x37,
20458
+0x17,0x06,0x22,0x26,0x34,0x37,0x01,0x25,0x37,0x25,0x17,0x03,
20459
+0x07,0x03,0x02,0x46,0x1f,0x3f,0x5b,0x20,0x72,0x50,0xdf,0xa0,
20460
+0x50,0x02,0xcf,0xfe,0x89,0x08,0x02,0x4b,0x07,0x03,0x08,0x65,
20461
+0x01,0x10,0x20,0x5a,0x40,0x20,0x73,0x50,0xa0,0xe0,0x50,0x02,
20462
+0xcf,0x65,0x08,0x03,0x07,0xfd,0xb5,0x08,0x01,0x77,0x00,0x00,
20463
+0x00,0x01,0x01,0x84,0x00,0x6a,0x05,0x86,0x05,0x79,0x00,0x13,
20464
+0x00,0x00,0x09,0x01,0x13,0x17,0x13,0x07,0x25,0x27,0x25,0x01,
20465
+0x26,0x34,0x36,0x32,0x17,0x07,0x26,0x22,0x06,0x14,0x02,0x46,
20466
+0x02,0xd0,0x65,0x08,0x03,0x07,0xfd,0xb5,0x08,0x01,0x77,0xfd,
20467
+0x31,0x50,0xa0,0xdf,0x50,0x72,0x20,0x5b,0x3f,0x04,0x1c,0xfd,
20468
+0x31,0x01,0x77,0x08,0xfd,0xb5,0x07,0x03,0x08,0x65,0x02,0xcf,
20469
+0x50,0xe0,0xa0,0x50,0x73,0x20,0x40,0x5a,0x00,0x01,0x01,0x2e,
20470
+0x00,0x6a,0x05,0x30,0x05,0x79,0x00,0x13,0x00,0x00,0x01,0x36,
20471
+0x34,0x26,0x22,0x07,0x27,0x36,0x32,0x16,0x14,0x07,0x01,0x05,
20472
+0x07,0x05,0x27,0x13,0x37,0x13,0x04,0x6d,0x20,0x3f,0x5b,0x20,
20473
+0x72,0x50,0xdf,0xa0,0x50,0xfd,0x31,0x01,0x77,0x08,0xfd,0xb5,
20474
+0x07,0x03,0x08,0x65,0x04,0x1c,0x20,0x5a,0x40,0x20,0x73,0x50,
20475
+0xa0,0xe0,0x4f,0xfd,0x30,0x65,0x08,0x03,0x07,0x02,0x4b,0x08,
20476
+0xfe,0x89,0x00,0x00,0x00,0x01,0x01,0x15,0x00,0x51,0x05,0x9f,
20477
+0x04,0xc3,0x00,0x17,0x00,0x00,0x25,0x07,0x09,0x01,0x27,0x09,
20478
+0x01,0x03,0x27,0x03,0x37,0x05,0x17,0x05,0x09,0x01,0x25,0x37,
20479
+0x25,0x17,0x03,0x07,0x03,0x01,0x05,0x9f,0x73,0xfe,0x2e,0xfe,
20480
+0x2e,0x73,0x01,0xd3,0xfe,0xb6,0x66,0x08,0x03,0x07,0x01,0xe7,
20481
+0x08,0xfe,0xed,0x01,0x4a,0x01,0x4a,0xfe,0xed,0x08,0x01,0xe7,
20482
+0x07,0x03,0x08,0x66,0xfe,0xb6,0xc3,0x72,0x01,0xd3,0xfe,0x2d,
20483
+0x72,0x01,0xd3,0x01,0x4a,0xfe,0xed,0x08,0x01,0xe7,0x07,0x03,
20484
+0x08,0x66,0xfe,0xb6,0x01,0x4a,0x66,0x08,0x03,0x07,0xfe,0x19,
20485
+0x08,0x01,0x13,0xfe,0xb6,0x00,0x00,0x00,0x00,0x01,0x01,0x15,
20486
+0x00,0x51,0x05,0x87,0x04,0xdc,0x00,0x17,0x00,0x00,0x25,0x27,
20487
+0x09,0x01,0x37,0x09,0x01,0x25,0x37,0x25,0x17,0x03,0x07,0x03,
20488
+0x09,0x01,0x13,0x17,0x13,0x07,0x25,0x27,0x25,0x01,0x01,0x87,
20489
+0x72,0x01,0xd3,0xfe,0x2d,0x72,0x01,0xd3,0x01,0x4a,0xfe,0xed,
20490
+0x08,0x01,0xe7,0x07,0x03,0x08,0x66,0xfe,0xb6,0x01,0x4a,0x66,
20491
+0x08,0x03,0x07,0xfe,0x19,0x08,0x01,0x13,0xfe,0xb6,0x51,0x73,
20492
+0x01,0xd2,0x01,0xd3,0x73,0xfe,0x2d,0x01,0x49,0x66,0x08,0x03,
20493
+0x07,0xfe,0x19,0x08,0x01,0x13,0xfe,0xb6,0xfe,0xb7,0x01,0x13,
20494
+0x08,0xfe,0x19,0x07,0x03,0x08,0x66,0x01,0x49,0x00,0x00,0x00,
20495
+0x00,0x01,0x01,0x15,0x00,0x6a,0x05,0x9f,0x04,0xdc,0x00,0x17,
20496
+0x00,0x00,0x01,0x37,0x09,0x01,0x17,0x09,0x01,0x13,0x17,0x13,
20497
+0x07,0x25,0x27,0x25,0x09,0x01,0x05,0x07,0x05,0x27,0x13,0x37,
20498
+0x13,0x01,0x01,0x15,0x73,0x01,0xd2,0x01,0xd2,0x73,0xfe,0x2d,
20499
+0x01,0x4a,0x66,0x08,0x03,0x07,0xfe,0x19,0x08,0x01,0x13,0xfe,
20500
+0xb6,0xfe,0xb6,0x01,0x13,0x08,0xfe,0x19,0x07,0x03,0x08,0x66,
20501
+0x01,0x4a,0x04,0x6a,0x72,0xfe,0x2d,0x01,0xd3,0x72,0xfe,0x2d,
20502
+0xfe,0xb6,0x01,0x13,0x08,0xfe,0x19,0x07,0x03,0x08,0x66,0x01,
20503
+0x4a,0xfe,0xb6,0x66,0x08,0x03,0x07,0x01,0xe7,0x08,0xfe,0xed,
20504
+0x01,0x4a,0x00,0x00,0x00,0x01,0x01,0x2d,0x00,0x51,0x05,0x9f,
20505
+0x04,0xdc,0x00,0x17,0x00,0x00,0x01,0x17,0x09,0x01,0x07,0x09,
20506
+0x01,0x05,0x07,0x05,0x27,0x13,0x37,0x13,0x09,0x01,0x03,0x27,
20507
+0x03,0x37,0x05,0x17,0x05,0x01,0x05,0x2d,0x72,0xfe,0x2d,0x01,
20508
+0xd3,0x72,0xfe,0x2d,0xfe,0xb6,0x01,0x13,0x08,0xfe,0x19,0x07,
20509
+0x03,0x08,0x66,0x01,0x4a,0xfe,0xb6,0x66,0x08,0x03,0x07,0x01,
20510
+0xe7,0x08,0xfe,0xed,0x01,0x4a,0x04,0xdc,0x73,0xfe,0x2d,0xfe,
20511
+0x2e,0x73,0x01,0xd3,0xfe,0xb7,0x66,0x08,0x03,0x07,0x01,0xe7,
20512
+0x08,0xfe,0xed,0x01,0x49,0x01,0x4a,0xfe,0xed,0x08,0x01,0xe7,
20513
+0x07,0x03,0x08,0x66,0xfe,0xb7,0x00,0x00,0x00,0x03,0x01,0x15,
20514
+0x00,0x51,0x05,0x9f,0x04,0xdc,0x00,0x03,0x00,0x07,0x00,0x0b,
20515
+0x00,0x00,0x01,0x37,0x01,0x07,0x25,0x01,0x17,0x09,0x01,0x07,
20516
+0x01,0x37,0x03,0xab,0x72,0x01,0x82,0x72,0xfb,0xe8,0x04,0x18,
20517
+0x72,0xfb,0xe9,0x01,0x81,0x72,0xfe,0x7e,0x73,0x01,0xd3,0x72,
20518
+0xfe,0x7f,0x73,0x73,0x04,0x18,0x72,0xfb,0xe7,0x03,0x08,0x72,
20519
+0x01,0x83,0x72,0x00,0x00,0x03,0x01,0x15,0x00,0x51,0x05,0x9f,
20520
+0x04,0xdc,0x00,0x03,0x00,0x07,0x00,0x0b,0x00,0x00,0x09,0x01,
20521
+0x27,0x09,0x01,0x07,0x01,0x37,0x09,0x01,0x17,0x01,0x03,0x09,
20522
+0xfe,0x7e,0x72,0x01,0x82,0x03,0x08,0x73,0xfb,0xe9,0x72,0x02,
20523
+0x24,0x01,0x81,0x73,0xfe,0x7e,0x01,0xd3,0xfe,0x7e,0x73,0x01,
20524
+0x81,0xfe,0x7f,0x73,0x04,0x19,0x72,0xfe,0x7d,0x01,0x83,0x72,
20525
+0xfe,0x7d,0x00,0x00,0x00,0x03,0x01,0x15,0x00,0x51,0x05,0x87,
20526
+0x04,0xdc,0x00,0x03,0x00,0x0d,0x00,0x17,0x00,0x00,0x01,0x17,
20527
+0x01,0x27,0x01,0x27,0x37,0x25,0x37,0x25,0x17,0x03,0x07,0x03,
20528
+0x25,0x01,0x13,0x17,0x13,0x07,0x25,0x27,0x25,0x01,0x02,0x97,
20529
+0x72,0xfe,0x7e,0x72,0x03,0x08,0x72,0xf9,0xfe,0xed,0x08,0x01,
20530
+0xe7,0x07,0x03,0x08,0x66,0xfc,0x71,0x03,0x8f,0x66,0x08,0x03,
20531
+0x07,0xfe,0x19,0x08,0x01,0x13,0xfc,0x71,0x02,0x45,0x72,0xfe,
20532
+0x7e,0x73,0x02,0x23,0x72,0xf9,0x66,0x08,0x03,0x07,0xfe,0x19,
20533
+0x08,0x01,0x13,0xfc,0xfc,0x71,0x01,0x13,0x08,0xfe,0x19,0x07,
20534
+0x03,0x08,0x66,0x03,0x8e,0x00,0x00,0x00,0x00,0x03,0x01,0x15,
20535
+0x00,0x51,0x05,0x87,0x04,0xdc,0x00,0x03,0x00,0x0d,0x00,0x17,
20536
+0x00,0x00,0x09,0x01,0x37,0x09,0x01,0x17,0x13,0x17,0x13,0x07,
20537
+0x25,0x27,0x25,0x27,0x01,0x27,0x01,0x25,0x37,0x25,0x17,0x03,
20538
+0x07,0x03,0x02,0x97,0xfe,0x7e,0x72,0x01,0x82,0x01,0x14,0xf9,
20539
+0x66,0x08,0x03,0x07,0xfe,0x19,0x08,0x01,0x13,0xf9,0xfd,0xdc,
20540
+0x72,0x03,0x8f,0xfe,0xed,0x08,0x01,0xe7,0x07,0x03,0x08,0x66,
20541
+0x02,0xe8,0x01,0x81,0x73,0xfe,0x7e,0xfe,0xec,0xf9,0x01,0x13,
20542
+0x08,0xfe,0x19,0x07,0x03,0x08,0x66,0xf9,0xfe,0x7d,0x73,0x03,
20543
+0x8e,0x66,0x08,0x03,0x07,0xfe,0x19,0x08,0x01,0x13,0x00,0x00,
20544
+0x00,0x03,0x01,0x15,0x00,0x51,0x05,0x9f,0x04,0xdc,0x00,0x09,
20545
+0x00,0x0d,0x00,0x11,0x00,0x00,0x01,0x27,0x37,0x25,0x37,0x25,
20546
+0x17,0x03,0x07,0x03,0x09,0x01,0x27,0x09,0x01,0x07,0x01,0x37,
20547
+0x04,0x1d,0x72,0xf9,0xfe,0xed,0x08,0x01,0xe7,0x07,0x03,0x08,
20548
+0x66,0xfd,0xf3,0xfe,0x7e,0x72,0x01,0x82,0x03,0x08,0x73,0xfb,
20549
+0xe9,0x72,0x02,0xe7,0x72,0xf9,0x66,0x08,0x03,0x07,0xfe,0x19,
20550
+0x08,0x01,0x13,0xfd,0xf3,0xfe,0x7e,0x73,0x01,0x81,0xfe,0x7f,
20551
+0x73,0x04,0x19,0x72,0x00,0x03,0x01,0x15,0x00,0x51,0x05,0x9f,
20552
+0x04,0xdc,0x00,0x09,0x00,0x0d,0x00,0x11,0x00,0x00,0x01,0x17,
20553
+0x13,0x17,0x13,0x07,0x25,0x27,0x25,0x27,0x09,0x01,0x17,0x09,
20554
+0x01,0x07,0x01,0x37,0x04,0x1d,0xf9,0x66,0x08,0x03,0x07,0xfe,
20555
+0x19,0x08,0x01,0x13,0xf9,0xfd,0x6a,0x04,0x18,0x72,0xfb,0xe9,
20556
+0x01,0x81,0x72,0xfe,0x7e,0x73,0x02,0x46,0xf9,0x01,0x13,0x08,
20557
+0xfe,0x19,0x07,0x03,0x08,0x66,0xf9,0xfe,0xf0,0x04,0x18,0x72,
20558
+0xfb,0xe7,0x03,0x08,0x72,0x01,0x83,0x72,0x00,0x03,0x01,0x15,
20559
+0x00,0x51,0x05,0x9f,0x04,0xc3,0x00,0x03,0x00,0x0d,0x00,0x17,
20560
+0x00,0x00,0x01,0x37,0x01,0x07,0x01,0x03,0x27,0x03,0x37,0x05,
20561
+0x17,0x05,0x17,0x07,0x09,0x01,0x25,0x37,0x25,0x17,0x03,0x07,
20562
+0x03,0x01,0x03,0xab,0x72,0x01,0x82,0x73,0xfc,0x72,0x66,0x08,
20563
+0x03,0x07,0x01,0xe7,0x08,0xfe,0xed,0xf9,0x72,0xfe,0x7e,0x03,
20564
+0x8f,0xfe,0xed,0x08,0x01,0xe7,0x07,0x03,0x08,0x66,0xfc,0x72,
20565
+0x01,0xd3,0x72,0xfe,0x7e,0x72,0x03,0x8f,0xfe,0xed,0x08,0x01,
20566
+0xe7,0x07,0x03,0x08,0x66,0xf9,0x72,0xfd,0xdc,0x03,0x8f,0x66,
20567
+0x08,0x03,0x07,0xfe,0x19,0x08,0x01,0x13,0xfc,0x71,0x00,0x00,
20568
+0x00,0x03,0x01,0x15,0x00,0x51,0x05,0x9f,0x04,0xc3,0x00,0x09,
20569
+0x00,0x0d,0x00,0x17,0x00,0x00,0x01,0x27,0x37,0x25,0x37,0x25,
20570
+0x17,0x03,0x07,0x03,0x09,0x01,0x27,0x09,0x01,0x07,0x01,0x03,
20571
+0x27,0x03,0x37,0x05,0x17,0x05,0x04,0x1d,0x72,0xf9,0xfe,0xed,
20572
+0x08,0x01,0xe7,0x07,0x03,0x08,0x66,0xfd,0xf3,0xfe,0x7e,0x72,
20573
+0x01,0x82,0x03,0x08,0x73,0xfc,0x72,0x66,0x08,0x03,0x07,0x01,
20574
+0xe7,0x08,0xfe,0xed,0x02,0xe7,0x72,0xf9,0x66,0x08,0x03,0x07,
20575
+0xfe,0x19,0x08,0x01,0x13,0xfd,0xf3,0xfe,0x7e,0x73,0x01,0x81,
20576
+0xfe,0x7e,0x72,0x03,0x8f,0xfe,0xed,0x08,0x01,0xe7,0x07,0x03,
20577
+0x08,0x66,0x00,0x00,0x00,0x01,0x00,0x4c,0x00,0xf4,0x06,0x68,
20578
+0x04,0x38,0x00,0x18,0x00,0x00,0x01,0x21,0x03,0x33,0x01,0x15,
20579
+0x01,0x23,0x13,0x21,0x22,0x26,0x27,0x26,0x22,0x0f,0x01,0x27,
20580
+0x37,0x3e,0x01,0x32,0x16,0x17,0x16,0x04,0x2c,0x01,0x51,0xc1,
20581
+0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfe,0xaf,0x5e,0xaa,0x3e,
20582
+0x58,0xf8,0x57,0x80,0x73,0x80,0x3e,0xaa,0xbc,0xaa,0x3e,0x58,
20583
+0x02,0xe7,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0x49,
20584
+0x3e,0x58,0x58,0x81,0x73,0x80,0x3e,0x4a,0x4a,0x3e,0x57,0x00,
20585
+0x00,0x01,0x01,0x2c,0x00,0xc9,0x05,0xa6,0x04,0xe1,0x00,0x11,
20586
+0x00,0x00,0x25,0x21,0x35,0x21,0x32,0x36,0x35,0x11,0x05,0x35,
20587
+0x01,0x33,0x01,0x15,0x25,0x11,0x14,0x06,0x02,0xd6,0xfe,0x56,
20588
+0x01,0xaa,0x5b,0x81,0xfe,0xb0,0x01,0x9c,0x0a,0x01,0x9e,0xfe,
20589
+0xae,0xe0,0xc9,0xa2,0x7f,0x5d,0x01,0xb0,0xc2,0x0c,0x01,0xa0,
20590
+0xfe,0x60,0x0c,0xc2,0xfe,0x50,0xa0,0xde,0x00,0x01,0x01,0x2e,
20591
+0x00,0xb9,0x05,0xa8,0x04,0xd1,0x00,0x11,0x00,0x00,0x01,0x32,
20592
+0x16,0x15,0x11,0x25,0x15,0x01,0x23,0x01,0x35,0x05,0x11,0x34,
20593
+0x26,0x23,0x21,0x35,0x02,0xd8,0x9e,0xe0,0x01,0x52,0xfe,0x62,
20594
+0x0a,0xfe,0x64,0x01,0x50,0x81,0x5b,0xfe,0x56,0x04,0xd1,0xde,
20595
+0xa0,0xfe,0x50,0xc2,0x0c,0xfe,0x60,0x01,0xa0,0x0c,0xc2,0x01,
20596
+0xb0,0x5d,0x7f,0xa2,0x00,0x01,0x01,0x46,0x00,0x8f,0x05,0x5e,
20597
+0x05,0x09,0x00,0x11,0x00,0x00,0x01,0x14,0x06,0x23,0x21,0x13,
20598
+0x23,0x01,0x35,0x01,0x33,0x03,0x21,0x32,0x36,0x35,0x11,0x33,
20599
+0x05,0x5e,0xde,0xa0,0xfe,0x50,0xc2,0x0c,0xfe,0x60,0x01,0xa0,
20600
+0x0c,0xc2,0x01,0xb0,0x5d,0x7f,0xa2,0x03,0x5f,0x9e,0xe0,0xfe,
20601
+0xae,0x01,0x9e,0x0a,0x01,0x9c,0xfe,0xb0,0x81,0x5b,0x01,0xaa,
20602
+0x00,0x01,0x01,0x56,0x00,0x8f,0x05,0x6e,0x05,0x09,0x00,0x11,
20603
+0x00,0x00,0x01,0x11,0x33,0x11,0x14,0x16,0x33,0x21,0x03,0x33,
20604
+0x01,0x15,0x01,0x23,0x13,0x21,0x22,0x26,0x01,0x56,0xa2,0x7f,
20605
+0x5d,0x01,0xb0,0xc2,0x0c,0x01,0xa0,0xfe,0x60,0x0c,0xc2,0xfe,
20606
+0x50,0xa0,0xde,0x03,0x5f,0x01,0xaa,0xfe,0x56,0x5b,0x81,0x01,
20607
+0x50,0xfe,0x64,0x0a,0xfe,0x62,0x01,0x52,0xe0,0x00,0x00,0x00,
20608
+0x00,0x01,0x02,0x57,0xff,0xff,0x04,0xb1,0x05,0xdc,0x00,0x15,
20609
+0x00,0x00,0x25,0x3e,0x02,0x34,0x2e,0x01,0x27,0x37,0x1e,0x02,
20610
+0x10,0x0e,0x01,0x07,0x05,0x07,0x05,0x27,0x13,0x37,0x02,0xc8,
20611
+0x4b,0x6a,0x3b,0x3b,0x6a,0x4b,0x72,0x5b,0x7f,0x46,0x46,0x7f,
20612
+0x5b,0x01,0x77,0x08,0xfd,0xb5,0x07,0x03,0x08,0xe2,0x4c,0xb4,
20613
+0xd4,0xe0,0xd4,0xb4,0x4c,0x72,0x5a,0xd8,0xff,0xfe,0xf6,0xff,
20614
+0xd8,0x5a,0x66,0x08,0x03,0x07,0x02,0x4b,0x08,0x00,0x00,0x00,
20615
+0x00,0x01,0x02,0x03,0xff,0xff,0x04,0x5d,0x05,0xdc,0x00,0x15,
20616
+0x00,0x00,0x25,0x13,0x17,0x13,0x07,0x25,0x27,0x25,0x2e,0x01,
20617
+0x02,0x10,0x12,0x36,0x37,0x17,0x0e,0x02,0x14,0x1e,0x01,0x03,
20618
+0xec,0x66,0x08,0x03,0x07,0xfd,0xb5,0x08,0x01,0x77,0x5b,0x7f,
20619
+0x46,0x46,0x7f,0x5b,0x72,0x4b,0x6a,0x3b,0x3b,0x6a,0xe2,0x01,
20620
+0x77,0x08,0xfd,0xb5,0x07,0x03,0x08,0x66,0x5a,0xd8,0x00,0xff,
20621
+0x01,0x0a,0x00,0xff,0xd8,0x5a,0x72,0x4c,0xb4,0xd4,0xe0,0xd4,
20622
+0xb4,0x00,0x00,0x00,0x00,0x01,0x00,0x72,0x01,0x93,0x06,0x4f,
20623
+0x03,0xed,0x00,0x15,0x00,0x00,0x01,0x05,0x07,0x05,0x27,0x13,
20624
+0x37,0x13,0x3e,0x01,0x24,0x20,0x04,0x16,0x17,0x07,0x2e,0x02,
20625
+0x22,0x0e,0x01,0x01,0x55,0x01,0x77,0x08,0xfd,0xb5,0x07,0x03,
20626
+0x08,0x66,0x5a,0xd8,0x00,0xff,0x01,0x0a,0x00,0xff,0xd8,0x5a,
20627
+0x72,0x4c,0xb4,0xd4,0xe0,0xd4,0xb4,0x02,0x04,0x66,0x08,0x03,
20628
+0x07,0x02,0x4b,0x08,0xfe,0x89,0x5b,0x7f,0x46,0x46,0x7f,0x5b,
20629
+0x72,0x4b,0x6a,0x3b,0x3b,0x6a,0x00,0x00,0x00,0x01,0x00,0x68,
20630
+0x01,0x3f,0x06,0x45,0x03,0x99,0x00,0x15,0x00,0x00,0x01,0x25,
20631
+0x37,0x25,0x17,0x03,0x07,0x03,0x0e,0x02,0x20,0x2e,0x01,0x27,
20632
+0x37,0x1e,0x02,0x32,0x3e,0x01,0x05,0x62,0xfe,0x89,0x08,0x02,
20633
+0x4b,0x07,0x03,0x08,0x66,0x5a,0xd8,0xff,0xfe,0xf6,0xff,0xd8,
20634
+0x5a,0x72,0x4c,0xb4,0xd4,0xe0,0xd4,0xb4,0x03,0x28,0x66,0x08,
20635
+0x03,0x07,0xfd,0xb5,0x08,0x01,0x77,0x5b,0x7f,0x46,0x46,0x7f,
20636
+0x5b,0x72,0x4b,0x6a,0x3b,0x3b,0x6a,0x00,0x00,0x02,0x00,0x65,
20637
+0x00,0xa8,0x06,0x42,0x03,0xed,0x00,0x03,0x00,0x19,0x00,0x00,
20638
+0x25,0x21,0x35,0x21,0x25,0x2e,0x02,0x22,0x0e,0x01,0x07,0x27,
20639
+0x3e,0x01,0x24,0x20,0x04,0x16,0x17,0x13,0x17,0x13,0x07,0x25,
20640
+0x27,0x04,0x14,0xfe,0x0e,0x01,0xf2,0x01,0x4b,0x4c,0xb4,0xd4,
20641
+0xe0,0xd4,0xb4,0x4c,0x72,0x5a,0xd8,0x00,0xff,0x01,0x0a,0x00,
20642
+0xff,0xd8,0x5a,0x66,0x08,0x03,0x07,0xfd,0xb5,0x08,0xa8,0xa2,
20643
+0xba,0x4b,0x6a,0x3b,0x3b,0x6a,0x4b,0x72,0x5b,0x7f,0x46,0x46,
20644
+0x7f,0x5b,0x01,0x77,0x08,0xfd,0xb5,0x07,0x03,0x08,0x00,0x00,
20645
+0x00,0x02,0x00,0x72,0x00,0x00,0x06,0x4f,0x03,0xed,0x00,0x0b,
20646
+0x00,0x21,0x00,0x00,0x01,0x35,0x33,0x15,0x33,0x15,0x23,0x15,
20647
+0x23,0x35,0x23,0x35,0x25,0x05,0x07,0x05,0x27,0x13,0x37,0x13,
20648
+0x3e,0x01,0x24,0x20,0x04,0x16,0x17,0x07,0x2e,0x02,0x22,0x0e,
20649
+0x01,0x03,0x48,0xa2,0xa8,0xa8,0xa2,0xa8,0xfe,0xb5,0x01,0x77,
20650
+0x08,0xfd,0xb5,0x07,0x03,0x08,0x66,0x5a,0xd8,0x00,0xff,0x01,
20651
+0x0a,0x00,0xff,0xd8,0x5a,0x72,0x4c,0xb4,0xd4,0xe0,0xd4,0xb4,
20652
+0x01,0x4a,0xa8,0xa8,0xa2,0xa8,0xa8,0xa2,0xba,0x66,0x08,0x03,
20653
+0x07,0x02,0x4b,0x08,0xfe,0x89,0x5b,0x7f,0x46,0x46,0x7f,0x5b,
20654
+0x72,0x4b,0x6a,0x3b,0x3b,0x6a,0x00,0x00,0x00,0x01,0x01,0x28,
20655
+0x00,0x3d,0x05,0x6d,0x04,0xe0,0x00,0x19,0x00,0x00,0x01,0x37,
20656
+0x1e,0x01,0x14,0x0e,0x02,0x22,0x26,0x27,0x03,0x27,0x03,0x37,
20657
+0x05,0x17,0x05,0x1e,0x01,0x32,0x3e,0x02,0x34,0x26,0x04,0x53,
20658
+0x72,0x4d,0x5b,0x5b,0x9a,0xd4,0xea,0xd4,0x4d,0x66,0x08,0x03,
20659
+0x07,0x02,0x4b,0x08,0xfe,0x89,0x37,0x99,0xa8,0x99,0x6e,0x41,
20660
+0x41,0x04,0x6e,0x72,0x4d,0xd4,0xea,0xd4,0x9a,0x5b,0x5b,0x4d,
20661
+0xfe,0x89,0x08,0x02,0x4b,0x07,0x03,0x08,0x66,0x37,0x41,0x41,
20662
+0x6e,0x99,0xa8,0x99,0x00,0x01,0x01,0x47,0x00,0x3d,0x05,0x8c,
20663
+0x04,0xe0,0x00,0x19,0x00,0x00,0x01,0x0e,0x01,0x14,0x1e,0x02,
20664
+0x32,0x36,0x37,0x25,0x37,0x25,0x17,0x03,0x07,0x03,0x0e,0x01,
20665
+0x22,0x2e,0x02,0x34,0x36,0x37,0x02,0x61,0x37,0x41,0x41,0x6e,
20666
+0x99,0xa8,0x99,0x37,0xfe,0x89,0x08,0x02,0x4b,0x07,0x03,0x08,
20667
+0x66,0x4d,0xd4,0xea,0xd4,0x9a,0x5b,0x5b,0x4d,0x04,0x6e,0x37,
20668
+0x99,0xa8,0x99,0x6e,0x41,0x41,0x37,0x66,0x08,0x03,0x07,0xfd,
20669
+0xb5,0x08,0x01,0x77,0x4d,0x5b,0x5b,0x9a,0xd4,0xea,0xd4,0x4d,
20670
+0x00,0x02,0x01,0x1c,0x00,0x6c,0x05,0x98,0x06,0x39,0x00,0x14,
20671
+0x00,0x29,0x00,0x00,0x00,0x14,0x1e,0x02,0x32,0x3e,0x02,0x34,
20672
+0x2e,0x02,0x23,0x13,0x23,0x01,0x06,0x07,0x0e,0x01,0x04,0x14,
20673
+0x0e,0x02,0x22,0x2e,0x02,0x34,0x3e,0x01,0x37,0x36,0x37,0x01,
20674
+0x33,0x03,0x32,0x1e,0x01,0x01,0xbe,0x41,0x6e,0x99,0xa8,0x99,
20675
+0x6e,0x41,0x41,0x6e,0x99,0x54,0xc1,0x0b,0xfe,0xc3,0x0d,0x0c,
20676
+0x4d,0x6e,0x03,0x99,0x5b,0x9a,0xd4,0xea,0xd4,0x9a,0x5b,0x5b,
20677
+0x9a,0x6a,0x10,0x0f,0x01,0x76,0x0b,0xc1,0x75,0xd4,0x9a,0x02,
20678
+0xfe,0xa8,0x99,0x6e,0x41,0x41,0x6e,0x99,0xa8,0x99,0x6e,0x41,
20679
+0xfe,0xaf,0x01,0x3a,0x04,0x05,0x21,0x6e,0x78,0xea,0xd4,0x9a,
20680
+0x5b,0x5b,0x9a,0xd4,0xea,0xd4,0x9a,0x2d,0x07,0x06,0x01,0x72,
20681
+0xfe,0xaf,0x5b,0x9a,0x00,0x02,0x01,0x1c,0x00,0x6c,0x05,0x98,
20682
+0x06,0x39,0x00,0x14,0x00,0x29,0x00,0x00,0x00,0x14,0x1e,0x02,
20683
+0x32,0x3e,0x02,0x34,0x2e,0x01,0x27,0x26,0x27,0x01,0x23,0x13,
20684
+0x22,0x0e,0x01,0x04,0x14,0x0e,0x02,0x22,0x2e,0x02,0x34,0x3e,
20685
+0x02,0x33,0x03,0x33,0x01,0x16,0x17,0x1e,0x01,0x01,0xbe,0x41,
20686
+0x6e,0x99,0xa8,0x99,0x6e,0x41,0x41,0x6e,0x4d,0x0c,0x0d,0xfe,
20687
+0xc3,0x0b,0xc1,0x54,0x99,0x6e,0x03,0x99,0x5b,0x9a,0xd4,0xea,
20688
+0xd4,0x9a,0x5b,0x5b,0x9a,0xd4,0x75,0xc1,0x0b,0x01,0x76,0x0f,
20689
+0x10,0x6a,0x9a,0x02,0xfe,0xa8,0x99,0x6e,0x41,0x41,0x6e,0x99,
20690
+0xa8,0x99,0x6e,0x21,0x05,0x04,0xfe,0xc6,0x01,0x51,0x41,0x6e,
20691
+0x78,0xea,0xd4,0x9a,0x5b,0x5b,0x9a,0xd4,0xea,0xd4,0x9a,0x5b,
20692
+0x01,0x51,0xfe,0x8e,0x06,0x07,0x2d,0x9a,0x00,0x02,0x00,0x4c,
20693
+0xff,0x96,0x06,0x68,0x05,0x96,0x00,0x09,0x00,0x13,0x00,0x00,
20694
+0x01,0x15,0x21,0x13,0x23,0x01,0x35,0x01,0x33,0x0b,0x01,0x21,
20695
+0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x21,0x03,0x5a,0xfd,0xdd,
20696
+0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0xc2,0x05,0x08,0xc1,
20697
+0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfa,0xf8,0x01,0x89,0xa2,
20698
+0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x02,0xbc,0x01,
20699
+0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0x00,0x02,0x00,0x4c,
20700
+0xff,0x96,0x06,0x68,0x05,0x96,0x00,0x09,0x00,0x13,0x00,0x00,
20701
+0x01,0x21,0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x21,0x01,0x15,
20702
+0x21,0x13,0x23,0x01,0x35,0x01,0x33,0x03,0x03,0x5a,0x02,0x23,
20703
+0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfd,0xdd,0x02,0xe5,
20704
+0xfa,0xf8,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x01,0x89,
20705
+0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0x03,0x5e,0xa2,
20706
+0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x00,0x00,0x00,
20707
+0x00,0x02,0x00,0x4c,0xff,0x96,0x06,0x68,0x05,0x96,0x00,0x09,
20708
+0x00,0x13,0x00,0x00,0x01,0x21,0x03,0x33,0x01,0x15,0x01,0x23,
20709
+0x13,0x21,0x01,0x15,0x21,0x13,0x23,0x01,0x35,0x01,0x33,0x03,
20710
+0x03,0x5a,0x02,0x23,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,
20711
+0xfd,0xdd,0x02,0xe5,0xfa,0xf8,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,
20712
+0x0b,0xc1,0x04,0x45,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,
20713
+0x51,0xfd,0xe6,0xa2,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,
20714
+0xaf,0x00,0x00,0x00,0x00,0x02,0x00,0x75,0x00,0x00,0x06,0x68,
20715
+0x04,0x38,0x00,0x0b,0x00,0x15,0x00,0x00,0x01,0x35,0x33,0x15,
20716
+0x33,0x15,0x23,0x15,0x23,0x35,0x23,0x35,0x03,0x21,0x03,0x33,
20717
+0x01,0x15,0x01,0x23,0x13,0x21,0x01,0x81,0xa2,0xa8,0xa8,0xa2,
20718
+0xa8,0x64,0x05,0x08,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,
20719
+0xfa,0xf8,0x01,0x4a,0xa8,0xa8,0xa2,0xa8,0xa8,0xa2,0x01,0x9d,
20720
+0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0x00,0x00,0x00,
20721
+0x00,0x02,0x00,0x4c,0x00,0x00,0x06,0x3f,0x04,0x38,0x00,0x0b,
20722
+0x00,0x15,0x00,0x00,0x01,0x35,0x33,0x15,0x33,0x15,0x23,0x15,
20723
+0x23,0x35,0x23,0x35,0x01,0x15,0x21,0x13,0x23,0x01,0x35,0x01,
20724
+0x33,0x03,0x04,0xaa,0xa2,0xa8,0xa8,0xa2,0xa8,0x02,0x3d,0xfa,
20725
+0xf8,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x01,0x4a,0xa8,
20726
+0xa8,0xa2,0xa8,0xa8,0xa2,0x01,0x9d,0xa2,0xfe,0xaf,0x01,0x9d,
20727
+0x0a,0x01,0x9d,0xfe,0xaf,0x00,0x00,0x00,0x00,0x01,0x00,0x75,
20728
+0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x17,0x00,0x00,0x01,0x21,
20729
+0x35,0x21,0x27,0x37,0x17,0x37,0x17,0x07,0x21,0x03,0x33,0x01,
20730
+0x15,0x01,0x23,0x13,0x21,0x17,0x07,0x27,0x07,0x27,0x02,0x1b,
20731
+0xfe,0x5a,0x01,0xa6,0x8f,0x72,0xe1,0xe1,0x72,0x8f,0x01,0xda,
20732
+0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfe,0x26,0x8f,0x72,
20733
+0xe1,0xe1,0x72,0x02,0x45,0xa2,0x90,0x72,0xe0,0xe0,0x72,0x90,
20734
+0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0x90,0x72,0xe0,
20735
+0xe0,0x72,0x00,0x00,0x00,0x03,0x00,0x4c,0x00,0xf4,0x06,0x68,
20736
+0x04,0x38,0x00,0x1f,0x00,0x27,0x00,0x2f,0x00,0x00,0x01,0x03,
20737
+0x33,0x01,0x15,0x01,0x23,0x13,0x21,0x06,0x07,0x06,0x22,0x27,
20738
+0x26,0x27,0x21,0x13,0x23,0x01,0x35,0x01,0x33,0x03,0x21,0x36,
20739
+0x37,0x36,0x32,0x17,0x16,0x17,0x21,0x33,0x26,0x27,0x26,0x22,
20740
+0x07,0x06,0x17,0x23,0x16,0x17,0x16,0x32,0x37,0x36,0x05,0x7d,
20741
+0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfe,0xe4,0x13,0x32,
20742
+0x50,0xe4,0x50,0x32,0x13,0xfe,0xe4,0xc1,0x0b,0xfe,0x5f,0x01,
20743
+0xa1,0x0b,0xc1,0x01,0x1c,0x13,0x32,0x50,0xe4,0x50,0x32,0x13,
20744
+0xfe,0x88,0xe2,0x06,0x09,0x28,0x74,0x28,0x09,0xdc,0xe2,0x06,
20745
+0x09,0x28,0x74,0x28,0x09,0x02,0xe7,0x01,0x51,0xfe,0x63,0x0a,
20746
+0xfe,0x63,0x01,0x51,0x3f,0x32,0x50,0x50,0x32,0x3f,0xfe,0xaf,
20747
+0x01,0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x3f,0x32,0x50,0x50,0x32,
20748
+0x3f,0x09,0x08,0x29,0x29,0x08,0xab,0x09,0x08,0x29,0x29,0x08,
20749
+0x00,0x02,0x01,0xb8,0xff,0xec,0x04,0xfc,0x05,0xf3,0x00,0x07,
20750
+0x00,0x23,0x00,0x00,0x00,0x14,0x16,0x32,0x36,0x34,0x26,0x22,
20751
+0x37,0x16,0x17,0x16,0x14,0x06,0x22,0x26,0x34,0x37,0x36,0x37,
20752
+0x11,0x05,0x35,0x01,0x35,0x05,0x35,0x01,0x33,0x01,0x15,0x25,
20753
+0x15,0x01,0x15,0x25,0x02,0xcf,0x51,0x74,0x51,0x51,0x74,0x8b,
20754
+0x3f,0x32,0x50,0xa0,0xe4,0xa0,0x50,0x32,0x3f,0xfe,0xaf,0x01,
20755
+0x51,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x01,0x51,
20756
+0xfe,0xaf,0x01,0x38,0x74,0x51,0x51,0x74,0x51,0x7c,0x13,0x32,
20757
+0x50,0xe4,0xa0,0xa0,0xe4,0x50,0x32,0x13,0x02,0x09,0xc1,0x0b,
20758
+0x01,0x54,0x5c,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0x5c,
20759
+0xfe,0xac,0x0b,0xc1,0x00,0x01,0x00,0x46,0x00,0xf4,0x06,0x6e,
20760
+0x04,0x38,0x00,0x09,0x00,0x00,0x13,0x01,0x33,0x03,0x21,0x15,
20761
+0x01,0x23,0x13,0x21,0x46,0x01,0xed,0x0b,0xc1,0x04,0xf1,0xfe,
20762
+0x13,0x0b,0xc1,0xfb,0x0f,0x02,0x51,0x01,0xe7,0xfe,0xaf,0x0c,
20763
+0xfe,0x19,0x01,0x51,0x00,0x01,0x00,0x46,0x00,0xf4,0x06,0x6e,
20764
+0x04,0x38,0x00,0x09,0x00,0x00,0x01,0x15,0x21,0x13,0x23,0x01,
20765
+0x35,0x21,0x03,0x33,0x06,0x6e,0xfb,0x0f,0xc1,0x0b,0xfe,0x13,
20766
+0x04,0xf1,0xc1,0x0b,0x02,0x51,0x0c,0xfe,0xaf,0x01,0xe7,0x0c,
20767
+0x01,0x51,0x00,0x00,0x00,0x01,0x01,0xb8,0xff,0xd1,0x04,0xfc,
20768
+0x05,0xf9,0x00,0x09,0x00,0x00,0x09,0x01,0x15,0x25,0x11,0x23,
20769
+0x01,0x35,0x05,0x11,0x03,0x15,0x01,0xe7,0xfe,0xaf,0x0c,0xfe,
20770
+0x19,0x01,0x51,0x05,0xf9,0xfe,0x13,0x0b,0xc1,0xfb,0x0f,0x01,
20771
+0xed,0x0b,0xc1,0x04,0xf1,0x00,0x00,0x00,0x00,0x01,0x01,0xb8,
20772
+0xff,0xd1,0x04,0xfc,0x05,0xf9,0x00,0x09,0x00,0x00,0x01,0x33,
20773
+0x11,0x25,0x15,0x01,0x23,0x11,0x05,0x35,0x03,0x9f,0x0c,0x01,
20774
+0x51,0xfe,0x19,0x0c,0xfe,0xaf,0x05,0xf9,0xfb,0x0f,0xc1,0x0b,
20775
+0xfe,0x13,0x04,0xf1,0xc1,0x0b,0x00,0x00,0x00,0x01,0x00,0x46,
20776
+0x02,0x45,0x06,0x6e,0x04,0x38,0x00,0x09,0x00,0x00,0x13,0x01,
20777
+0x33,0x03,0x21,0x03,0x33,0x01,0x15,0x21,0x46,0x01,0xed,0x0b,
20778
+0xc1,0x03,0xba,0xc1,0x0b,0x01,0xed,0xf9,0xd8,0x02,0x51,0x01,
20779
+0xe7,0xfe,0xaf,0x01,0x51,0xfe,0x19,0x0c,0x00,0x01,0x03,0x09,
20780
+0xff,0xd1,0x04,0xfc,0x05,0xf9,0x00,0x09,0x00,0x00,0x05,0x23,
20781
+0x11,0x33,0x01,0x15,0x25,0x11,0x25,0x15,0x03,0x15,0x0c,0x0c,
20782
+0x01,0xe7,0xfe,0xaf,0x01,0x51,0x2f,0x06,0x28,0xfe,0x13,0x0b,
20783
+0xc1,0xfc,0x46,0xc1,0x0b,0x00,0x00,0x00,0x00,0x01,0x00,0x46,
20784
+0x00,0xf4,0x06,0x6e,0x02,0xe7,0x00,0x09,0x00,0x00,0x09,0x01,
20785
+0x23,0x13,0x21,0x13,0x23,0x01,0x35,0x21,0x06,0x6e,0xfe,0x13,
20786
+0x0b,0xc1,0xfc,0x46,0xc1,0x0b,0xfe,0x13,0x06,0x28,0x02,0xdb,
20787
+0xfe,0x19,0x01,0x51,0xfe,0xaf,0x01,0xe7,0x0c,0x00,0x00,0x00,
20788
+0x00,0x01,0x01,0xb8,0xff,0xd1,0x03,0xab,0x05,0xf9,0x00,0x09,
20789
+0x00,0x00,0x01,0x33,0x11,0x23,0x01,0x35,0x05,0x11,0x05,0x35,
20790
+0x03,0x9f,0x0c,0x0c,0xfe,0x19,0x01,0x51,0xfe,0xaf,0x05,0xf9,
20791
+0xf9,0xd8,0x01,0xed,0x0b,0xc1,0x03,0xba,0xc1,0x0b,0x00,0x00,
20792
+0x00,0x01,0x00,0x75,0x01,0x0d,0x06,0x3f,0x04,0x38,0x00,0x0a,
20793
+0x00,0x00,0x01,0x11,0x23,0x11,0x33,0x11,0x01,0x33,0x03,0x21,
20794
+0x15,0x01,0x17,0xa2,0xa2,0x01,0x61,0x0b,0xc1,0x04,0x7d,0x02,
20795
+0x45,0xfe,0xc8,0x03,0x12,0xfe,0xbb,0x01,0x5e,0xfe,0xaf,0xa2,
20796
+0x00,0x01,0x00,0x75,0x01,0x0d,0x06,0x3f,0x04,0x38,0x00,0x0a,
20797
+0x00,0x00,0x01,0x21,0x35,0x21,0x03,0x33,0x01,0x11,0x33,0x11,
20798
+0x23,0x05,0x9d,0xfa,0xd8,0x04,0x7d,0xc1,0x0b,0x01,0x61,0xa2,
20799
+0xa2,0x02,0x45,0xa2,0x01,0x51,0xfe,0xa2,0x01,0x45,0xfc,0xee,
20800
+0x00,0x01,0x01,0xd1,0x00,0x00,0x04,0xfc,0x05,0xca,0x00,0x0a,
20801
+0x00,0x00,0x01,0x21,0x35,0x21,0x15,0x21,0x01,0x15,0x25,0x11,
20802
+0x23,0x03,0x09,0xfe,0xc8,0x03,0x12,0xfe,0xbb,0x01,0x5e,0xfe,
20803
+0xaf,0xa2,0x05,0x28,0xa2,0xa2,0xfe,0x9f,0x0b,0xc1,0xfb,0x83,
20804
+0x00,0x01,0x01,0xd1,0x00,0x00,0x04,0xfc,0x05,0xca,0x00,0x0a,
20805
+0x00,0x00,0x25,0x11,0x33,0x11,0x25,0x15,0x01,0x21,0x15,0x21,
20806
+0x35,0x03,0x09,0xa2,0x01,0x51,0xfe,0xa2,0x01,0x45,0xfc,0xee,
20807
+0xa2,0x05,0x28,0xfb,0x83,0xc1,0x0b,0xfe,0x9f,0xa2,0xa2,0x00,
20808
+0x00,0x01,0x00,0x75,0x00,0xf4,0x06,0x3f,0x04,0x1f,0x00,0x0a,
20809
+0x00,0x00,0x01,0x21,0x15,0x21,0x13,0x23,0x01,0x11,0x23,0x11,
20810
+0x33,0x01,0x17,0x05,0x28,0xfb,0x83,0xc1,0x0b,0xfe,0x9f,0xa2,
20811
+0xa2,0x02,0xe7,0xa2,0xfe,0xaf,0x01,0x5e,0xfe,0xbb,0x03,0x12,
20812
+0x00,0x01,0x00,0x75,0x00,0xf4,0x06,0x3f,0x04,0x1f,0x00,0x0a,
20813
+0x00,0x00,0x01,0x11,0x33,0x11,0x23,0x11,0x01,0x23,0x13,0x21,
20814
+0x35,0x05,0x9d,0xa2,0xa2,0xfe,0x9f,0x0b,0xc1,0xfb,0x83,0x02,
20815
+0xe7,0x01,0x38,0xfc,0xee,0x01,0x45,0xfe,0xa2,0x01,0x51,0xa2,
20816
+0x00,0x01,0x01,0xb8,0x00,0x00,0x04,0xe3,0x05,0xca,0x00,0x0a,
20817
+0x00,0x00,0x01,0x11,0x23,0x11,0x05,0x35,0x01,0x21,0x35,0x21,
20818
+0x15,0x03,0xab,0xa2,0xfe,0xaf,0x01,0x5e,0xfe,0xbb,0x03,0x12,
20819
+0x05,0x28,0xfa,0xd8,0x04,0x7d,0xc1,0x0b,0x01,0x61,0xa2,0xa2,
20820
+0x00,0x01,0x01,0xb8,0x00,0x00,0x04,0xe3,0x05,0xca,0x00,0x0a,
20821
+0x00,0x00,0x25,0x21,0x15,0x21,0x35,0x21,0x01,0x35,0x05,0x11,
20822
+0x33,0x03,0xab,0x01,0x38,0xfc,0xee,0x01,0x45,0xfe,0xa2,0x01,
20823
+0x51,0xa2,0xa2,0xa2,0xa2,0x01,0x61,0x0b,0xc1,0x04,0x7d,0x00,
20824
+0x00,0x01,0x00,0x46,0x01,0x0d,0x06,0x3f,0x04,0x38,0x00,0x0a,
20825
+0x00,0x00,0x13,0x01,0x33,0x03,0x21,0x11,0x33,0x11,0x23,0x11,
20826
+0x21,0x46,0x01,0xed,0x0b,0xc1,0x04,0x20,0xa2,0xa2,0xfa,0xa9,
20827
+0x02,0x51,0x01,0xe7,0xfe,0xaf,0x01,0x38,0xfc,0xee,0x01,0x38,
20828
+0x00,0x01,0x00,0x75,0x01,0x0d,0x06,0x6e,0x04,0x38,0x00,0x0a,
20829
+0x00,0x00,0x01,0x15,0x21,0x11,0x23,0x11,0x33,0x11,0x21,0x03,
20830
+0x33,0x06,0x6e,0xfa,0xa9,0xa2,0xa2,0x04,0x20,0xc1,0x0b,0x02,
20831
+0x51,0x0c,0xfe,0xc8,0x03,0x12,0xfe,0xc8,0x01,0x51,0x00,0x00,
20832
+0x00,0x01,0x01,0xd1,0x00,0x00,0x04,0xfc,0x05,0xf9,0x00,0x0a,
20833
+0x00,0x00,0x09,0x01,0x15,0x25,0x11,0x21,0x15,0x21,0x35,0x21,
20834
+0x11,0x03,0x15,0x01,0xe7,0xfe,0xaf,0x01,0x38,0xfc,0xee,0x01,
20835
+0x38,0x05,0xf9,0xfe,0x13,0x0b,0xc1,0xfb,0xe0,0xa2,0xa2,0x05,
20836
+0x57,0x00,0x00,0x00,0x00,0x01,0x01,0xd1,0xff,0xd1,0x04,0xfc,
20837
+0x05,0xca,0x00,0x0a,0x00,0x00,0x05,0x23,0x11,0x21,0x35,0x21,
20838
+0x15,0x21,0x11,0x25,0x15,0x03,0x15,0x0c,0xfe,0xc8,0x03,0x12,
20839
+0xfe,0xc8,0x01,0x51,0x2f,0x05,0x57,0xa2,0xa2,0xfb,0xe0,0xc1,
20840
+0x0b,0x00,0x00,0x00,0x00,0x01,0x00,0x46,0x00,0xf4,0x06,0x3f,
20841
+0x04,0x1f,0x00,0x0a,0x00,0x00,0x13,0x35,0x21,0x11,0x33,0x11,
20842
+0x23,0x11,0x21,0x13,0x23,0x46,0x05,0x57,0xa2,0xa2,0xfb,0xe0,
20843
+0xc1,0x0b,0x02,0xdb,0x0c,0x01,0x38,0xfc,0xee,0x01,0x38,0xfe,
20844
+0xaf,0x00,0x00,0x00,0x00,0x01,0x00,0x75,0x00,0xf4,0x06,0x6e,
20845
+0x04,0x1f,0x00,0x0a,0x00,0x00,0x09,0x01,0x23,0x13,0x21,0x11,
20846
+0x23,0x11,0x33,0x11,0x21,0x06,0x6e,0xfe,0x13,0x0b,0xc1,0xfb,
20847
+0xe0,0xa2,0xa2,0x05,0x57,0x02,0xdb,0xfe,0x19,0x01,0x51,0xfe,
20848
+0xc8,0x03,0x12,0xfe,0xc8,0x00,0x00,0x00,0x00,0x01,0x01,0xb8,
20849
+0x00,0x00,0x04,0xe3,0x05,0xf9,0x00,0x0a,0x00,0x00,0x01,0x33,
20850
+0x11,0x21,0x15,0x21,0x35,0x21,0x11,0x05,0x35,0x03,0x9f,0x0c,
20851
+0x01,0x38,0xfc,0xee,0x01,0x38,0xfe,0xaf,0x05,0xf9,0xfa,0xa9,
20852
+0xa2,0xa2,0x04,0x20,0xc1,0x0b,0x00,0x00,0x00,0x01,0x01,0xb8,
20853
+0xff,0xd1,0x04,0xe3,0x05,0xca,0x00,0x0a,0x00,0x00,0x05,0x01,
20854
+0x35,0x05,0x11,0x21,0x35,0x21,0x15,0x21,0x11,0x03,0x9f,0xfe,
20855
+0x19,0x01,0x51,0xfe,0xc8,0x03,0x12,0xfe,0xc8,0x2f,0x01,0xed,
20856
+0x0b,0xc1,0x04,0x20,0xa2,0xa2,0xfa,0xa9,0xff,0xff,0x00,0x46,
20857
+0x00,0x2c,0x06,0x3f,0x05,0x00,0x10,0x27,0x08,0x7f,0x00,0x00,
20858
+0xff,0x38,0x10,0x07,0x08,0x7e,0x00,0x00,0x00,0xc8,0x00,0x00,
20859
+0xff,0xff,0x00,0xf0,0x00,0x00,0x05,0xc4,0x05,0xf9,0x10,0x27,
20860
+0x08,0x81,0xff,0x38,0x00,0x00,0x10,0x07,0x08,0x80,0x00,0xc8,
20861
+0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x75,0x00,0x2c,0x06,0x6e,
20862
+0x05,0x00,0x10,0x27,0x08,0x83,0x00,0x00,0xff,0x38,0x10,0x07,
20863
+0x08,0x82,0x00,0x00,0x00,0xc8,0x00,0x00,0xff,0xff,0x00,0xf0,
20864
+0xff,0xd1,0x05,0xc4,0x05,0xca,0x10,0x27,0x08,0x84,0x00,0xc8,
20865
+0x00,0x00,0x10,0x07,0x08,0x85,0xff,0x38,0x00,0x00,0x00,0x00,
20866
+0x00,0x02,0x00,0x46,0x01,0x7d,0x06,0x6e,0x05,0x00,0x00,0x06,
20867
+0x00,0x0d,0x00,0x00,0x13,0x01,0x33,0x03,0x21,0x15,0x21,0x01,
20868
+0x15,0x21,0x35,0x21,0x27,0x33,0x46,0x01,0xed,0x0b,0xc1,0x04,
20869
+0xc2,0xfa,0x07,0x06,0x28,0xfa,0x07,0x04,0xc2,0x68,0x50,0x03,
20870
+0x19,0x01,0xe7,0xfe,0xaf,0xa2,0xfe,0x7c,0x0c,0xa2,0xb5,0x00,
20871
+0x00,0x02,0x00,0x46,0x00,0x2c,0x06,0x6e,0x03,0xaf,0x00,0x06,
20872
+0x00,0x0d,0x00,0x00,0x09,0x01,0x23,0x13,0x21,0x35,0x21,0x01,
20873
+0x35,0x21,0x15,0x21,0x17,0x23,0x06,0x6e,0xfe,0x13,0x0b,0xc1,
20874
+0xfb,0x3e,0x05,0xf9,0xf9,0xd8,0x05,0xf9,0xfb,0x3e,0x68,0x50,
20875
+0x02,0x13,0xfe,0x19,0x01,0x51,0xa2,0x01,0x84,0x0c,0xa2,0xb5,
20876
+0x00,0x02,0x00,0x46,0x01,0x7d,0x06,0x6e,0x05,0x00,0x00,0x06,
20877
+0x00,0x0d,0x00,0x00,0x01,0x15,0x21,0x35,0x21,0x03,0x33,0x01,
20878
+0x07,0x21,0x15,0x21,0x35,0x01,0x06,0x6e,0xfa,0x07,0x04,0xc2,
20879
+0xc1,0x0b,0xfd,0x64,0x68,0x04,0xc2,0xfa,0x07,0x01,0x4f,0x03,
20880
+0x19,0x0c,0xa2,0x01,0x51,0xfd,0xd4,0xb5,0xa2,0x0c,0x01,0x4b,
20881
+0x00,0x02,0x00,0x46,0x00,0x2c,0x06,0x6e,0x03,0xaf,0x00,0x06,
20882
+0x00,0x0d,0x00,0x00,0x13,0x35,0x21,0x15,0x21,0x13,0x23,0x01,
20883
+0x37,0x21,0x35,0x21,0x15,0x01,0x46,0x05,0xf9,0xfb,0x3e,0xc1,
20884
+0x0b,0x02,0x9c,0x68,0xfb,0x3e,0x05,0xf9,0xfe,0xb1,0x02,0x13,
20885
+0x0c,0xa2,0xfe,0xaf,0x02,0x2c,0xb5,0xa2,0x0c,0xfe,0xb5,0x00,
20886
+0x00,0x02,0x00,0x46,0x01,0x9f,0x06,0x3f,0x04,0xde,0x00,0x03,
20887
+0x00,0x0a,0x00,0x00,0x01,0x15,0x21,0x35,0x27,0x01,0x33,0x03,
20888
+0x21,0x15,0x21,0x06,0x3f,0xfa,0x36,0x2f,0x01,0xed,0x0b,0xc1,
20889
+0x04,0xc2,0xfa,0x07,0x02,0x41,0xa2,0xa2,0xb6,0x01,0xe7,0xfe,
20890
+0xaf,0xa2,0x00,0x00,0x00,0x02,0x00,0x46,0x00,0x4e,0x06,0x3f,
20891
+0x03,0x8d,0x00,0x03,0x00,0x0a,0x00,0x00,0x01,0x15,0x21,0x35,
20892
+0x03,0x35,0x21,0x15,0x21,0x13,0x23,0x06,0x3f,0xfa,0x36,0x2f,
20893
+0x05,0xf9,0xfb,0x3e,0xc1,0x0b,0x03,0x8d,0xa2,0xa2,0xfe,0xa8,
20894
+0x0c,0xa2,0xfe,0xaf,0x00,0x02,0x00,0x75,0x01,0x9f,0x06,0x6e,
20895
+0x04,0xde,0x00,0x03,0x00,0x0a,0x00,0x00,0x01,0x15,0x21,0x35,
20896
+0x25,0x15,0x21,0x35,0x21,0x03,0x33,0x06,0x3f,0xfa,0x36,0x05,
20897
+0xf9,0xfa,0x07,0x04,0xc2,0xc1,0x0b,0x02,0x41,0xa2,0xa2,0xb6,
20898
+0x0c,0xa2,0x01,0x51,0x00,0x02,0x00,0x75,0x00,0x4e,0x06,0x6e,
20899
+0x03,0x8d,0x00,0x06,0x00,0x0a,0x00,0x00,0x09,0x01,0x23,0x13,
20900
+0x21,0x35,0x21,0x03,0x15,0x21,0x35,0x06,0x6e,0xfe,0x13,0x0b,
20901
+0xc1,0xfb,0x3e,0x05,0xf9,0x2f,0xfa,0x36,0x02,0x35,0xfe,0x19,
20902
+0x01,0x51,0xa2,0x01,0x4c,0xa2,0xa2,0x00,0xff,0xff,0x00,0xf0,
20903
+0xff,0xd1,0x05,0xc4,0x05,0xf9,0x10,0x27,0x08,0x84,0x00,0xc8,
20904
+0x00,0x00,0x10,0x07,0x08,0x81,0xff,0x38,0x00,0x00,0x00,0x00,
20905
+0xff,0xff,0x00,0xf0,0xff,0xd1,0x05,0xc4,0x05,0xf9,0x10,0x27,
20906
+0x08,0x85,0xff,0x38,0x00,0x00,0x10,0x07,0x08,0x80,0x00,0xc8,
20907
+0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x75,0x01,0x87,0x06,0x3f,
20908
+0x03,0xa5,0x00,0x0f,0x00,0x00,0x13,0x21,0x32,0x36,0x34,0x26,
20909
+0x23,0x21,0x35,0x21,0x32,0x16,0x14,0x06,0x23,0x21,0x75,0x04,
20910
+0xbb,0x2d,0x40,0x40,0x2d,0xfb,0x45,0x04,0xbb,0x71,0x9e,0x9e,
20911
+0x71,0xfb,0x45,0x02,0x29,0x40,0x5a,0x40,0xa2,0x9e,0xe2,0x9e,
20912
+0x00,0x03,0x00,0x75,0x00,0xf4,0x06,0x68,0x05,0x71,0x00,0x03,
20913
+0x00,0x07,0x00,0x11,0x00,0x00,0x13,0x21,0x15,0x21,0x15,0x21,
20914
+0x15,0x21,0x07,0x21,0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x21,
20915
+0xdc,0x03,0x34,0xfc,0xcc,0x03,0x34,0xfc,0xcc,0x67,0x05,0x08,
20916
+0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfa,0xf8,0x05,0x71,
20917
+0xa0,0x96,0xa0,0xb4,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,
20918
+0x51,0x00,0x00,0x00,0x00,0x02,0x00,0x75,0x00,0xf4,0x06,0x68,
20919
+0x04,0x94,0x00,0x13,0x00,0x1d,0x00,0x00,0x01,0x15,0x06,0x23,
20920
+0x22,0x2f,0x01,0x26,0x23,0x22,0x07,0x35,0x36,0x33,0x32,0x1f,
20921
+0x01,0x16,0x33,0x32,0x01,0x21,0x03,0x33,0x01,0x15,0x01,0x23,
20922
+0x13,0x21,0x04,0x10,0x7a,0x75,0x3b,0x6a,0x0f,0x6e,0x41,0x73,
20923
+0x6f,0x7a,0x74,0x3b,0x6a,0x0f,0x6f,0x40,0x73,0xfc,0xd5,0x05,
20924
+0x08,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfa,0xf8,0x04,
20925
+0x94,0x93,0xae,0x3f,0x09,0x45,0x95,0x93,0xae,0x3f,0x09,0x45,
20926
+0xfe,0xe8,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0x00,
20927
+0x00,0x02,0x00,0x4c,0x00,0x98,0x06,0x3f,0x04,0x38,0x00,0x13,
20928
+0x00,0x1d,0x00,0x00,0x01,0x15,0x06,0x23,0x22,0x2f,0x01,0x26,
20929
+0x23,0x22,0x07,0x35,0x36,0x33,0x32,0x1f,0x01,0x16,0x33,0x32,
20930
+0x13,0x15,0x21,0x13,0x23,0x01,0x35,0x01,0x33,0x03,0x05,0xd8,
20931
+0x7a,0x75,0x3b,0x6a,0x0f,0x6e,0x41,0x73,0x6f,0x7a,0x74,0x3b,
20932
+0x6a,0x0f,0x6f,0x40,0x73,0xd7,0xfa,0xf8,0xc1,0x0b,0xfe,0x5f,
20933
+0x01,0xa1,0x0b,0xc1,0x01,0xe1,0x93,0xae,0x3f,0x09,0x45,0x95,
20934
+0x93,0xae,0x3f,0x09,0x45,0x01,0x9b,0xa2,0xfe,0xaf,0x01,0x9d,
20935
+0x0a,0x01,0x9d,0xfe,0xaf,0x00,0x00,0x00,0x00,0x02,0x00,0x75,
20936
+0x00,0x98,0x06,0x68,0x04,0x38,0x00,0x13,0x00,0x1d,0x00,0x00,
20937
+0x01,0x15,0x06,0x23,0x22,0x2f,0x01,0x26,0x23,0x22,0x07,0x35,
20938
+0x36,0x33,0x32,0x1f,0x01,0x16,0x33,0x32,0x01,0x21,0x03,0x33,
20939
+0x01,0x15,0x01,0x23,0x13,0x21,0x04,0x10,0x7a,0x75,0x3b,0x6a,
20940
+0x0f,0x6e,0x41,0x73,0x6f,0x7a,0x74,0x3b,0x6a,0x0f,0x6f,0x40,
20941
+0x73,0xfc,0xd5,0x05,0x08,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,
20942
+0xc1,0xfa,0xf8,0x01,0xe1,0x93,0xae,0x3f,0x09,0x45,0x95,0x93,
20943
+0xae,0x3f,0x09,0x45,0x01,0x9b,0x01,0x51,0xfe,0x63,0x0a,0xfe,
20944
+0x63,0x01,0x51,0x00,0x00,0x03,0x00,0x75,0xff,0x6f,0x06,0x68,
20945
+0x04,0x38,0x00,0x13,0x00,0x27,0x00,0x31,0x00,0x00,0x25,0x15,
20946
+0x06,0x23,0x22,0x2f,0x01,0x26,0x23,0x22,0x07,0x35,0x36,0x33,
20947
+0x32,0x1f,0x01,0x16,0x33,0x32,0x13,0x15,0x06,0x23,0x22,0x2f,
20948
+0x01,0x26,0x23,0x22,0x07,0x35,0x36,0x33,0x32,0x1f,0x01,0x16,
20949
+0x33,0x32,0x01,0x21,0x03,0x33,0x01,0x15,0x01,0x23,0x13,0x21,
20950
+0x04,0x10,0x7a,0x75,0x3b,0x6a,0x0f,0x6e,0x41,0x73,0x6f,0x7a,
20951
+0x74,0x3b,0x6a,0x0f,0x6f,0x40,0x73,0x70,0x7a,0x75,0x3b,0x6a,
20952
+0x0f,0x6e,0x41,0x73,0x6f,0x7a,0x74,0x3b,0x6a,0x0f,0x6f,0x40,
20953
+0x73,0xfc,0xd5,0x05,0x08,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,
20954
+0xc1,0xfa,0xf8,0xb8,0x93,0xae,0x3f,0x09,0x45,0x95,0x93,0xae,
20955
+0x3f,0x09,0x45,0x01,0xbe,0x93,0xae,0x3f,0x09,0x45,0x95,0x93,
20956
+0xae,0x3f,0x09,0x45,0x01,0x9b,0x01,0x51,0xfe,0x63,0x0a,0xfe,
20957
+0x63,0x01,0x51,0x00,0x00,0x02,0x00,0x4c,0xff,0x64,0x06,0x3f,
20958
+0x06,0x36,0x00,0x06,0x00,0x10,0x00,0x00,0x09,0x02,0x15,0x01,
20959
+0x35,0x01,0x13,0x15,0x21,0x13,0x23,0x01,0x35,0x01,0x33,0x03,
20960
+0x05,0xdb,0xfb,0xf2,0x04,0x0e,0xfa,0xfe,0x05,0x02,0x64,0xfa,
20961
+0xf8,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x05,0x8c,0xfe,
20962
+0x85,0xfe,0x87,0xaa,0x01,0xd1,0xa6,0x01,0xd1,0xfb,0x21,0xa2,
20963
+0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x00,0x00,0x00,
20964
+0x00,0x01,0x00,0x4c,0x00,0x72,0x07,0x65,0x04,0xba,0x00,0x11,
20965
+0x00,0x00,0x01,0x15,0x21,0x01,0x15,0x01,0x21,0x13,0x23,0x01,
20966
+0x35,0x01,0x33,0x03,0x21,0x01,0x15,0x01,0x06,0x3f,0xfd,0xf4,
20967
+0x03,0x32,0xfa,0xf9,0xfe,0xd9,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,
20968
+0x0b,0xc1,0x01,0x27,0x05,0x07,0xfc,0xd3,0x02,0xe7,0xa2,0xfe,
20969
+0xd7,0xaa,0x01,0xd3,0xfe,0xaf,0x01,0x9d,0x0a,0x01,0x9d,0xfe,
20970
+0xaf,0x01,0xd3,0xaa,0xfe,0xd7,0x00,0x00,0x00,0x02,0x00,0x75,
20971
+0xff,0x64,0x06,0x68,0x06,0x36,0x00,0x06,0x00,0x10,0x00,0x00,
20972
+0x13,0x35,0x01,0x15,0x01,0x35,0x09,0x01,0x21,0x03,0x33,0x01,
20973
+0x15,0x01,0x23,0x13,0x21,0xd9,0x05,0x02,0xfa,0xfe,0x04,0x0e,
20974
+0xfb,0x8e,0x05,0x08,0xc1,0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,
20975
+0xfa,0xf8,0x05,0x8c,0xaa,0xfe,0x2f,0xa6,0xfe,0x2f,0xaa,0x01,
20976
+0x79,0xfd,0x46,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,
20977
+0x00,0x02,0x00,0x75,0xff,0x64,0x06,0x68,0x05,0xc9,0x00,0x09,
20978
+0x00,0x19,0x00,0x00,0x13,0x21,0x03,0x33,0x01,0x15,0x01,0x23,
20979
+0x13,0x21,0x01,0x21,0x15,0x21,0x22,0x26,0x10,0x36,0x33,0x21,
20980
+0x15,0x21,0x22,0x06,0x14,0x16,0x75,0x05,0x08,0xc1,0x0b,0x01,
20981
+0xa1,0xfe,0x5f,0x0b,0xc1,0xfa,0xf8,0x02,0x11,0x03,0x20,0xfc,
20982
+0xe0,0x91,0xcd,0xcd,0x91,0x03,0x20,0xfc,0xe0,0x4e,0x6e,0x6e,
20983
+0x01,0x57,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x01,0x51,0x02,
20984
+0xfa,0xa2,0xcd,0x01,0x22,0xcd,0xa2,0x6e,0x9c,0x6e,0x00,0x00,
20985
+0x00,0x01,0x00,0x4c,0x00,0x14,0x07,0x6b,0x05,0x18,0x00,0x25,
20986
+0x00,0x00,0x25,0x21,0x15,0x21,0x22,0x24,0x27,0x26,0x27,0x21,
20987
+0x13,0x23,0x01,0x35,0x01,0x33,0x03,0x21,0x36,0x37,0x36,0x24,
20988
+0x33,0x21,0x15,0x21,0x22,0x06,0x07,0x06,0x07,0x21,0x15,0x21,
20989
+0x16,0x17,0x1e,0x01,0x04,0xeb,0x02,0x80,0xfd,0x80,0xae,0xfe,
20990
+0xd8,0x56,0x42,0x0f,0xfe,0xc9,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,
20991
+0x0b,0xc1,0x01,0x37,0x0f,0x42,0x56,0x01,0x28,0xae,0x02,0x80,
20992
+0xfd,0x80,0x82,0xde,0x41,0x2c,0x0e,0x03,0x2f,0xfc,0xd1,0x0e,
20993
+0x2c,0x41,0xde,0xb4,0xa0,0xac,0x94,0x71,0x80,0xfe,0xaf,0x01,
20994
+0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x80,0x71,0x94,0xac,0xa0,0x82,
20995
+0x6f,0x4c,0x54,0xa2,0x54,0x4c,0x6f,0x82,0x00,0x02,0x00,0x4c,
20996
+0xff,0x64,0x06,0x3f,0x05,0xc9,0x00,0x09,0x00,0x19,0x00,0x00,
20997
+0x01,0x15,0x21,0x13,0x23,0x01,0x35,0x01,0x33,0x03,0x01,0x32,
20998
+0x36,0x34,0x26,0x23,0x21,0x35,0x21,0x32,0x16,0x10,0x06,0x23,
20999
+0x21,0x35,0x06,0x3f,0xfa,0xf8,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,
21000
+0x0b,0xc1,0x02,0xf7,0x4e,0x6e,0x6e,0x4e,0xfc,0xe0,0x03,0x20,
21001
+0x91,0xcd,0xcd,0x91,0xfc,0xe0,0x01,0x57,0xa2,0xfe,0xaf,0x01,
21002
+0x9d,0x0a,0x01,0x9d,0xfe,0xaf,0x02,0x58,0x6e,0x9c,0x6e,0xa2,
21003
+0xcd,0xfe,0xde,0xcd,0xa2,0x00,0x00,0x00,0x00,0x01,0x01,0x5a,
21004
+0x00,0x2b,0x05,0x74,0x05,0x01,0x00,0x1a,0x00,0x00,0x25,0x22,
21005
+0x26,0x10,0x37,0x36,0x37,0x26,0x27,0x26,0x10,0x36,0x33,0x15,
21006
+0x22,0x06,0x14,0x16,0x33,0x21,0x15,0x21,0x22,0x06,0x14,0x16,
21007
+0x33,0x02,0xb8,0x91,0xcd,0x66,0x0c,0x0c,0x0c,0x0c,0x66,0xcd,
21008
+0x91,0x4e,0x6e,0x6e,0x4e,0x02,0xbc,0xfd,0x44,0x4e,0x6e,0x6e,
21009
+0x4e,0x2b,0xcd,0x01,0x22,0x66,0x0c,0x0a,0x0a,0x0c,0x66,0x01,
21010
+0x22,0xcd,0xa2,0x6e,0x9c,0x6e,0xa2,0x6e,0x9c,0x6e,0x00,0x00,
21011
+0x00,0x01,0x01,0x40,0x00,0x2b,0x05,0x5a,0x05,0x01,0x00,0x1a,
21012
+0x00,0x00,0x01,0x32,0x16,0x10,0x07,0x06,0x07,0x16,0x17,0x16,
21013
+0x10,0x06,0x23,0x35,0x32,0x36,0x34,0x26,0x23,0x21,0x35,0x21,
21014
+0x32,0x36,0x34,0x26,0x23,0x03,0xfc,0x91,0xcd,0x66,0x0c,0x0c,
21015
+0x0c,0x0c,0x66,0xcd,0x91,0x4e,0x6e,0x6e,0x4e,0xfd,0x44,0x02,
21016
+0xbc,0x4e,0x6e,0x6e,0x4e,0x05,0x01,0xcd,0xfe,0xde,0x66,0x0c,
21017
+0x0a,0x0a,0x0c,0x66,0xfe,0xde,0xcd,0xa2,0x6e,0x9c,0x6e,0xa2,
21018
+0x6e,0x9c,0x6e,0x00,0x00,0x01,0x00,0xef,0x00,0x89,0x05,0xc5,
21019
+0x04,0xa3,0x00,0x1a,0x00,0x00,0x13,0x34,0x36,0x20,0x17,0x16,
21020
+0x17,0x36,0x37,0x36,0x20,0x16,0x15,0x23,0x34,0x26,0x22,0x06,
21021
+0x15,0x11,0x23,0x11,0x34,0x26,0x22,0x06,0x15,0xef,0xcd,0x01,
21022
+0x22,0x66,0x0c,0x0a,0x0a,0x0c,0x66,0x01,0x22,0xcd,0xa2,0x6e,
21023
+0x9c,0x6e,0xa2,0x6e,0x9c,0x6e,0x03,0x45,0x91,0xcd,0x67,0x0b,
21024
+0x0c,0x0c,0x0b,0x67,0xcd,0x91,0x4e,0x6e,0x6e,0x4e,0xfd,0x44,
21025
+0x02,0xbc,0x4e,0x6e,0x6e,0x4e,0x00,0x00,0x00,0x01,0x00,0xef,
21026
+0x00,0x78,0x05,0xc5,0x04,0x92,0x00,0x1a,0x00,0x00,0x01,0x14,
21027
+0x06,0x20,0x27,0x26,0x27,0x06,0x07,0x06,0x20,0x26,0x35,0x33,
21028
+0x14,0x16,0x32,0x36,0x35,0x11,0x33,0x11,0x14,0x16,0x32,0x36,
21029
+0x35,0x05,0xc5,0xcd,0xfe,0xde,0x66,0x0c,0x0a,0x0a,0x0c,0x66,
21030
+0xfe,0xde,0xcd,0xa2,0x6e,0x9c,0x6e,0xa2,0x6e,0x9c,0x6e,0x01,
21031
+0xd6,0x91,0xcd,0x67,0x0b,0x0c,0x0c,0x0b,0x67,0xcd,0x91,0x4e,
21032
+0x6e,0x6e,0x4e,0x02,0xbc,0xfd,0x44,0x4e,0x6e,0x6e,0x4e,0x00,
21033
+0x00,0x01,0x00,0x06,0xfe,0x23,0x03,0xee,0x06,0x75,0x00,0x03,
21034
+0x00,0x00,0x09,0x03,0x01,0xfa,0x01,0xf4,0xfe,0x0c,0xfe,0x0c,
21035
+0x06,0x75,0xfb,0xdb,0xfb,0xd3,0x04,0x2d,0xff,0xff,0x00,0x2f,
21036
+0xfe,0x8d,0x0b,0xe9,0x06,0x0e,0x10,0x27,0x08,0xe5,0x05,0x4a,
21037
+0x00,0x00,0x10,0x27,0x08,0xe5,0x02,0xa5,0x00,0x00,0x10,0x26,
21038
+0x08,0xe5,0x00,0x00,0x10,0x07,0x08,0xe5,0x07,0xef,0x00,0x00,
21039
+0x00,0x01,0x00,0x2f,0xfe,0x8d,0x03,0xfa,0x06,0x0e,0x00,0x2d,
21040
+0x00,0x00,0x01,0x32,0x13,0x37,0x21,0x35,0x21,0x12,0x37,0x36,
21041
+0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x27,0x2e,0x01,
21042
+0x23,0x22,0x03,0x07,0x21,0x15,0x21,0x14,0x07,0x02,0x07,0x06,
21043
+0x23,0x22,0x26,0x35,0x34,0x36,0x33,0x32,0x16,0x17,0x1e,0x01,
21044
+0x01,0x37,0x6a,0x0e,0x02,0xfe,0xff,0x01,0x07,0x14,0x52,0x5f,
21045
+0xca,0x50,0x64,0x40,0x37,0x2a,0x38,0x0c,0x06,0x09,0x10,0x6b,
21046
+0x0e,0x02,0x01,0x08,0xfe,0xf3,0x01,0x11,0x5e,0x5f,0xc4,0x4f,
21047
+0x65,0x44,0x3d,0x21,0x30,0x0f,0x0a,0x0a,0xfe,0xfa,0x02,0xb0,
21048
+0x82,0xaa,0x01,0x9a,0xc0,0xde,0x54,0x41,0x36,0x3f,0x26,0x23,
21049
+0x0f,0x48,0xfd,0x95,0x63,0xaa,0x12,0x10,0xfe,0x21,0xcf,0xcf,
21050
+0x53,0x41,0x38,0x3f,0x1d,0x1c,0x12,0x53,0x00,0x01,0x00,0x2f,
21051
+0xfe,0x8d,0x03,0xfa,0x06,0x0e,0x00,0x34,0x00,0x00,0x01,0x02,
21052
+0x07,0x06,0x23,0x22,0x26,0x35,0x34,0x36,0x33,0x32,0x16,0x17,
21053
+0x1e,0x01,0x33,0x32,0x13,0x23,0x35,0x21,0x37,0x36,0x37,0x21,
21054
+0x35,0x21,0x12,0x37,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,
21055
+0x22,0x26,0x27,0x2e,0x01,0x23,0x22,0x03,0x21,0x15,0x21,0x06,
21056
+0x07,0x21,0x15,0x02,0x6c,0x1a,0x4c,0x5f,0xc4,0x4f,0x65,0x44,
21057
+0x3d,0x21,0x30,0x0f,0x0a,0x0a,0x13,0x64,0x12,0xfd,0x01,0x01,
21058
+0x01,0x02,0x05,0xfe,0xf7,0x01,0x16,0x1b,0x3c,0x5f,0xca,0x50,
21059
+0x64,0x40,0x37,0x2a,0x38,0x0c,0x06,0x09,0x10,0x62,0x14,0x01,
21060
+0x03,0xfe,0xf9,0x04,0x03,0x01,0x0e,0x01,0x60,0xfe,0xa4,0xa8,
21061
+0xcf,0x53,0x41,0x38,0x3f,0x1d,0x1c,0x12,0x53,0x02,0x66,0xaa,
21062
+0x45,0x5a,0x51,0xa8,0x01,0x02,0x8c,0xde,0x54,0x41,0x36,0x3f,
21063
+0x26,0x23,0x0f,0x48,0xfd,0xfe,0xa8,0xa3,0x4d,0xaa,0x00,0x00,
21064
+0xff,0xff,0x01,0x1b,0x00,0x44,0x05,0x9a,0x04,0xc1,0x10,0x06,
21065
+0x00,0x99,0x00,0x00,0xff,0xff,0x00,0xd9,0x01,0xde,0x05,0xdb,
21066
+0x04,0x79,0x10,0x27,0x09,0x26,0x01,0xfb,0x01,0x2d,0x12,0x06,
21067
+0x08,0xec,0x00,0x00,0xff,0xff,0x00,0xd9,0x00,0x8c,0x05,0xdb,
21068
+0x04,0x79,0x10,0x27,0x09,0x26,0x00,0xcf,0xfe,0x4a,0x10,0x27,
21069
+0x09,0x26,0x03,0x27,0x01,0x2d,0x12,0x06,0x08,0xec,0x00,0x00,
21070
+0x00,0x02,0x00,0x92,0xff,0xc7,0x05,0x85,0x04,0xbb,0x00,0x06,
21071
+0x00,0x10,0x00,0x00,0x25,0x01,0x17,0x13,0x05,0x17,0x01,0x13,
21072
+0x09,0x01,0x27,0x37,0x25,0x17,0x03,0x07,0x27,0x02,0x08,0x02,
21073
+0xe3,0x31,0x02,0xfe,0xb3,0x31,0xfd,0x1d,0xe9,0xfe,0x8a,0x02,
21074
+0xe3,0x6d,0x2c,0x02,0x4a,0x07,0x02,0x2b,0x6d,0x55,0x02,0xe3,
21075
+0x31,0x01,0x4c,0x01,0x31,0xfd,0x1d,0xfe,0x89,0x01,0x77,0x02,
21076
+0xe3,0x6c,0x2b,0x03,0x07,0xfd,0xb5,0x2b,0x6c,0x00,0x00,0x00,
21077
+0x00,0x02,0x01,0x2f,0xff,0xc7,0x06,0x22,0x04,0xbb,0x00,0x06,
21078
+0x00,0x10,0x00,0x00,0x25,0x37,0x01,0x37,0x25,0x13,0x37,0x09,
21079
+0x01,0x07,0x27,0x03,0x37,0x05,0x17,0x07,0x01,0x04,0xac,0xe9,
21080
+0xfd,0x1d,0x31,0xfe,0xb3,0x02,0x31,0x02,0xe3,0xfd,0x1d,0x6d,
21081
+0x2b,0x02,0x07,0x02,0x4a,0x2c,0x6d,0x02,0xe3,0x55,0xe9,0x02,
21082
+0xe3,0x31,0x01,0xfe,0xb4,0x31,0xfc,0x8f,0x02,0xe3,0x6c,0x2b,
21083
+0x02,0x4b,0x07,0x03,0x2b,0x6c,0xfd,0x1d,0x00,0x02,0x00,0x92,
21084
+0x00,0x6a,0x05,0x85,0x05,0x5e,0x00,0x06,0x00,0x10,0x00,0x00,
21085
+0x01,0x07,0x01,0x07,0x05,0x03,0x07,0x09,0x01,0x37,0x17,0x13,
21086
+0x07,0x25,0x27,0x37,0x01,0x02,0x08,0xe9,0x02,0xe3,0x31,0x01,
21087
+0x4d,0x02,0x31,0xfd,0x1d,0x02,0xe3,0x6d,0x2b,0x02,0x07,0xfd,
21088
+0xb6,0x2c,0x6d,0xfd,0x1d,0x04,0xd0,0xe9,0xfd,0x1d,0x31,0x01,
21089
+0x01,0x4c,0x31,0x03,0x71,0xfd,0x1d,0x6c,0x2b,0xfd,0xb5,0x07,
21090
+0x03,0x2b,0x6c,0x02,0xe3,0x00,0x00,0x00,0x00,0x02,0x01,0x2f,
21091
+0x00,0x6a,0x06,0x22,0x05,0x5e,0x00,0x06,0x00,0x10,0x00,0x00,
21092
+0x09,0x01,0x27,0x03,0x25,0x27,0x01,0x03,0x09,0x01,0x17,0x07,
21093
+0x05,0x27,0x13,0x37,0x17,0x04,0xac,0xfd,0x1d,0x31,0x02,0x01,
21094
+0x4d,0x31,0x02,0xe3,0xe9,0x01,0x76,0xfd,0x1d,0x6d,0x2c,0xfd,
21095
+0xb6,0x07,0x02,0x2b,0x6d,0x04,0xd0,0xfd,0x1d,0x31,0xfe,0xb4,
21096
+0x01,0x31,0x02,0xe3,0x01,0x77,0xfe,0x89,0xfd,0x1d,0x6c,0x2b,
21097
+0x03,0x07,0x02,0x4b,0x2b,0x6c,0x00,0x00,0x00,0x02,0x00,0x4c,
21098
+0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x0f,0x00,0x19,0x00,0x00,
21099
+0x01,0x21,0x35,0x33,0x01,0x15,0x01,0x23,0x35,0x21,0x15,0x23,
21100
+0x01,0x35,0x01,0x33,0x01,0x15,0x37,0x27,0x15,0x21,0x35,0x07,
21101
+0x17,0x35,0x02,0x2a,0x02,0x60,0x3d,0x01,0xa1,0xfe,0x5f,0x3d,
21102
+0xfd,0xa0,0x3d,0xfe,0x5f,0x01,0xa1,0x3d,0x02,0xc4,0xec,0xec,
21103
+0xfc,0xd8,0xec,0xec,0x03,0x9f,0x99,0xfe,0x63,0x0a,0xfe,0x63,
21104
+0x99,0x99,0x01,0x9d,0x0a,0x01,0x9d,0xfd,0xb9,0x45,0xea,0xea,
21105
+0x45,0x45,0xea,0xea,0x45,0x00,0x00,0x00,0x00,0x01,0x00,0x4c,
21106
+0x00,0xf4,0x06,0x3f,0x04,0x38,0x00,0x09,0x00,0x00,0x01,0x11,
21107
+0x21,0x15,0x23,0x01,0x35,0x01,0x33,0x15,0x06,0x3f,0xfb,0xeb,
21108
+0x3d,0xfe,0x5f,0x01,0xa1,0x3d,0x03,0x9f,0xfd,0xee,0x99,0x01,
21109
+0x9d,0x0a,0x01,0x9d,0x99,0x00,0x00,0x00,0x00,0x01,0x01,0xb8,
21110
+0x00,0x00,0x04,0xfc,0x05,0xf3,0x00,0x09,0x00,0x00,0x29,0x01,
21111
+0x11,0x23,0x35,0x01,0x33,0x01,0x15,0x23,0x04,0x63,0xfd,0xee,
21112
+0x99,0x01,0x9d,0x0a,0x01,0x9d,0x99,0x04,0x15,0x3d,0x01,0xa1,
21113
+0xfe,0x5f,0x3d,0x00,0x00,0x01,0x01,0xb8,0xff,0xd7,0x04,0xfc,
21114
+0x05,0xca,0x00,0x09,0x00,0x00,0x01,0x21,0x11,0x33,0x15,0x01,
21115
+0x23,0x01,0x35,0x33,0x02,0x51,0x02,0x12,0x99,0xfe,0x63,0x0a,
21116
+0xfe,0x63,0x99,0x05,0xca,0xfb,0xeb,0x3d,0xfe,0x5f,0x01,0xa1,
21117
+0x3d,0x00,0x00,0x00,0x00,0x01,0x00,0x92,0xff,0xc7,0x05,0x85,
21118
+0x04,0xbb,0x00,0x09,0x00,0x00,0x05,0x09,0x01,0x27,0x37,0x25,
21119
+0x17,0x03,0x07,0x27,0x02,0x08,0xfe,0x8a,0x02,0xe3,0x6d,0x2c,
21120
+0x02,0x4a,0x07,0x02,0x2b,0x6d,0x39,0x01,0x77,0x02,0xe3,0x6c,
21121
+0x2b,0x03,0x07,0xfd,0xb5,0x2b,0x6c,0x00,0x00,0x01,0x01,0x2f,
21122
+0xff,0xc7,0x06,0x22,0x04,0xbb,0x00,0x09,0x00,0x00,0x05,0x01,
21123
+0x07,0x27,0x03,0x37,0x05,0x17,0x07,0x01,0x04,0xac,0xfd,0x1d,
21124
+0x6d,0x2b,0x02,0x07,0x02,0x4a,0x2c,0x6d,0x02,0xe3,0x39,0x02,
21125
+0xe3,0x6c,0x2b,0x02,0x4b,0x07,0x03,0x2b,0x6c,0xfd,0x1d,0x00,
21126
+0x00,0x01,0x00,0x92,0x00,0x6a,0x05,0x85,0x05,0x5e,0x00,0x09,
21127
+0x00,0x00,0x09,0x01,0x37,0x17,0x13,0x07,0x25,0x27,0x37,0x01,
21128
+0x02,0x08,0x02,0xe3,0x6d,0x2b,0x02,0x07,0xfd,0xb6,0x2c,0x6d,
21129
+0xfd,0x1d,0x05,0x5e,0xfd,0x1d,0x6c,0x2b,0xfd,0xb5,0x07,0x03,
21130
+0x2b,0x6c,0x02,0xe3,0x00,0x01,0x01,0x2f,0x00,0x6a,0x06,0x22,
21131
+0x05,0x5e,0x00,0x09,0x00,0x00,0x09,0x02,0x17,0x07,0x05,0x27,
21132
+0x13,0x37,0x17,0x04,0xac,0x01,0x76,0xfd,0x1d,0x6d,0x2c,0xfd,
21133
+0xb6,0x07,0x02,0x2b,0x6d,0x05,0x5e,0xfe,0x89,0xfd,0x1d,0x6c,
21134
+0x2b,0x03,0x07,0x02,0x4b,0x2b,0x6c,0x00,0x00,0x01,0x00,0x4c,
21135
+0x00,0xf4,0x06,0x68,0x04,0x38,0x00,0x0f,0x00,0x00,0x01,0x21,
21136
+0x35,0x33,0x01,0x15,0x01,0x23,0x35,0x21,0x15,0x23,0x01,0x35,
21137
+0x01,0x33,0x02,0x2a,0x02,0x60,0x3d,0x01,0xa1,0xfe,0x5f,0x3d,
21138
+0xfd,0xa0,0x3d,0xfe,0x5f,0x01,0xa1,0x3d,0x03,0x9f,0x99,0xfe,
21139
+0x63,0x0a,0xfe,0x63,0x99,0x99,0x01,0x9d,0x0a,0x01,0x9d,0x00,
21140
+0x00,0x01,0x01,0xb8,0xff,0xd7,0x04,0xfc,0x05,0xf3,0x00,0x0f,
21141
+0x00,0x00,0x01,0x11,0x33,0x15,0x01,0x23,0x01,0x35,0x33,0x11,
21142
+0x23,0x35,0x01,0x33,0x01,0x15,0x04,0x63,0x99,0xfe,0x63,0x0a,
21143
+0xfe,0x63,0x99,0x99,0x01,0x9d,0x0a,0x01,0x9d,0x04,0x15,0xfd,
21144
+0xa0,0x3d,0xfe,0x5f,0x01,0xa1,0x3d,0x02,0x60,0x3d,0x01,0xa1,
21145
+0xfe,0x5f,0x3d,0x00,0x00,0x01,0x00,0x75,0x01,0x18,0x06,0x68,
21146
+0x03,0xfb,0x00,0x0b,0x00,0x00,0x01,0x25,0x15,0x01,0x23,0x01,
21147
+0x35,0x05,0x11,0x21,0x35,0x21,0x05,0x17,0x01,0x51,0xfe,0x63,
21148
+0x0a,0xfe,0x63,0x01,0x51,0xfc,0x00,0x04,0xa2,0x02,0x03,0xc1,
21149
+0x0b,0xfe,0x5f,0x01,0xa1,0x0b,0xc1,0x01,0x56,0xa2,0x00,0x00,
21150
+0x00,0x01,0x00,0x75,0x01,0x31,0x06,0x68,0x04,0x14,0x00,0x0b,
21151
+0x00,0x00,0x01,0x11,0x21,0x35,0x21,0x11,0x05,0x35,0x01,0x33,
21152
+0x01,0x15,0x05,0x17,0xfb,0x5e,0x04,0x00,0xfe,0xaf,0x01,0x9d,
21153
+0x0a,0x01,0x9d,0x03,0x29,0xfe,0x08,0xa2,0x01,0x56,0xc1,0x0b,
21154
+0x01,0xa1,0xfe,0x5f,0x0b,0x00,0x00,0x00,0x00,0x01,0x00,0x4c,
21155
+0x01,0x18,0x06,0x3f,0x03,0xfb,0x00,0x0b,0x00,0x00,0x01,0x11,
21156
+0x21,0x15,0x21,0x11,0x25,0x15,0x01,0x23,0x01,0x35,0x01,0x9d,
21157
+0x04,0xa2,0xfc,0x00,0x01,0x51,0xfe,0x63,0x0a,0xfe,0x63,0x02,
21158
+0x03,0x01,0xf8,0xa2,0xfe,0xaa,0xc1,0x0b,0xfe,0x5f,0x01,0xa1,
21159
+0x0b,0x00,0x00,0x00,0x00,0x01,0x00,0x4c,0x01,0x31,0x06,0x3f,
21160
+0x04,0x14,0x00,0x0b,0x00,0x00,0x01,0x05,0x35,0x01,0x33,0x01,
21161
+0x15,0x25,0x11,0x21,0x15,0x21,0x01,0x9d,0xfe,0xaf,0x01,0x9d,
21162
+0x0a,0x01,0x9d,0xfe,0xaf,0x04,0x00,0xfb,0x5e,0x03,0x29,0xc1,
21163
+0x0b,0x01,0xa1,0xfe,0x5f,0x0b,0xc1,0xfe,0xaa,0xa2,0x00,0x00,
21164
+0x00,0x02,0x00,0xba,0xff,0x03,0x06,0xd5,0x05,0x25,0x00,0x03,
21165
+0x00,0x07,0x00,0x00,0x17,0x11,0x21,0x11,0x25,0x21,0x11,0x21,
21166
+0xba,0x06,0x1b,0xfa,0x57,0x05,0x37,0xfa,0xc9,0xfc,0x06,0x20,
21167
+0xf9,0xe0,0x72,0x02,0x9e,0x00,0x00,0x00,0x00,0x02,0x00,0xba,
21168
+0xff,0x03,0x06,0xd5,0x05,0x25,0x00,0x03,0x00,0x07,0x00,0x00,
21169
+0x17,0x11,0x21,0x11,0x01,0x21,0x11,0x21,0xba,0x06,0x1b,0xfa,
21170
+0x57,0x05,0x37,0xfa,0xc9,0xfc,0x06,0x20,0xf9,0xe0,0x03,0x10,
21171
+0x02,0x9e,0x00,0x00,0x00,0x02,0x00,0xba,0xff,0x03,0x06,0xd5,
21172
+0x05,0x25,0x00,0x02,0x00,0x06,0x00,0x00,0x05,0x21,0x01,0x03,
21173
+0x11,0x21,0x11,0x01,0x2c,0x05,0x37,0xfa,0xc9,0x72,0x06,0x1b,
21174
+0x8a,0x05,0x3c,0xfa,0x52,0x06,0x20,0xf9,0xe0,0x00,0x00,0x00,
21175
+0x00,0x02,0x00,0xba,0xff,0x03,0x06,0xd5,0x05,0x25,0x00,0x02,
21176
+0x00,0x06,0x00,0x00,0x05,0x11,0x21,0x03,0x11,0x21,0x11,0x06,
21177
+0x63,0xfa,0xc9,0x72,0x06,0x1b,0x8a,0x05,0x3c,0xfa,0x52,0x06,
21178
+0x20,0xf9,0xe0,0x00,0x00,0x02,0x00,0x06,0xff,0x03,0x06,0x21,
21179
+0x05,0x25,0x00,0x02,0x00,0x06,0x00,0x00,0x05,0x09,0x05,0x03,
21180
+0x13,0x02,0x76,0xfd,0x8a,0xfc,0xf3,0x03,0x0d,0x03,0x0e,0xfc,
21181
+0xf2,0x64,0x02,0x78,0x02,0x78,0xfd,0x88,0x03,0x10,0xfc,0xf0,
21182
+0xfc,0xf0,0x00,0x00,0x00,0x02,0x00,0x06,0xff,0x03,0x06,0x21,
21183
+0x05,0x25,0x00,0x02,0x00,0x06,0x00,0x00,0x13,0x01,0x11,0x09,
21184
+0x03,0x9e,0x02,0x75,0xfc,0xf3,0x03,0x0d,0x03,0x0e,0xfc,0xf2,
21185
+0x02,0x14,0xfd,0x88,0x04,0xf0,0xfd,0x88,0x03,0x10,0xfc,0xf0,
21186
+0xfc,0xf0,0x00,0x00,0x00,0x02,0x00,0x06,0xff,0x03,0x06,0x21,
21187
+0x05,0x25,0x00,0x02,0x00,0x06,0x00,0x00,0x13,0x09,0x01,0x21,
21188
+0x09,0x02,0x9e,0x02,0x75,0x02,0x76,0xfa,0x7d,0x03,0x0d,0x03,
21189
+0x0e,0xfc,0xf2,0x02,0x14,0xfd,0x88,0x02,0x78,0x03,0x10,0xfc,
21190
+0xf0,0xfc,0xf0,0x00,0x00,0x02,0x00,0x06,0xff,0x03,0x06,0x21,
21191
+0x05,0x25,0x00,0x02,0x00,0x06,0x00,0x00,0x13,0x21,0x09,0x04,
21192
+0x9e,0x04,0xeb,0xfd,0x8a,0xfc,0xf3,0x03,0x0d,0x03,0x0e,0xfc,
21193
+0xf2,0x02,0x14,0x02,0x78,0xfd,0x88,0x03,0x10,0xfc,0xf0,0xfc,
21194
+0xf0,0x00,0x00,0x00,0x00,0x0c,0x00,0xba,0xff,0x03,0x06,0xd5,
21195
+0x05,0x25,0x00,0x05,0x00,0x09,0x00,0x0d,0x00,0x11,0x00,0x15,
21196
+0x00,0x1b,0x00,0x1f,0x00,0x23,0x00,0x29,0x00,0x2d,0x00,0x31,
21197
+0x00,0x37,0x00,0x00,0x05,0x15,0x23,0x35,0x33,0x35,0x13,0x15,
21198
+0x23,0x35,0x13,0x15,0x23,0x35,0x01,0x15,0x23,0x35,0x23,0x15,
21199
+0x23,0x35,0x01,0x15,0x23,0x35,0x23,0x35,0x23,0x15,0x23,0x35,
21200
+0x23,0x15,0x23,0x35,0x01,0x15,0x33,0x15,0x23,0x35,0x13,0x15,
21201
+0x23,0x35,0x13,0x15,0x23,0x35,0x13,0x15,0x23,0x15,0x23,0x35,
21202
+0x06,0xd5,0xe3,0x71,0x72,0x72,0x72,0x72,0xfe,0xa5,0xcc,0xea,
21203
+0xca,0x04,0x4d,0x72,0x71,0xea,0xcc,0xea,0xca,0xfe,0xa4,0x72,
21204
+0xe4,0x72,0x72,0x72,0x72,0xe4,0x72,0x72,0x16,0xe6,0x74,0x72,
21205
+0x01,0xb6,0xcc,0xcc,0x01,0xb4,0xca,0xca,0xfc,0x24,0x74,0x74,
21206
+0x74,0x74,0x05,0xac,0xe6,0x72,0x74,0x74,0x74,0x74,0x74,0xfa,
21207
+0xc6,0x72,0x74,0xe6,0x01,0xb6,0xcc,0xcc,0x01,0xb4,0xca,0xca,
21208
+0x01,0xd0,0x74,0x72,0xe6,0x00,0x00,0x00,0x00,0x01,0x00,0x67,
21209
+0x00,0x00,0x05,0x1f,0x05,0xd5,0x00,0x1d,0x00,0x00,0x33,0x35,
21210
+0x33,0x11,0x23,0x35,0x33,0x35,0x23,0x35,0x33,0x11,0x23,0x35,
21211
+0x21,0x15,0x23,0x11,0x21,0x15,0x21,0x15,0x21,0x15,0x21,0x11,
21212
+0x21,0x35,0x33,0x11,0x71,0xbe,0xc8,0xc8,0xc8,0xc8,0xbe,0x02,
21213
+0x47,0xbe,0x01,0x50,0xfe,0xb0,0x01,0x50,0xfe,0xb0,0x02,0xaa,
21214
+0x7b,0x6a,0x01,0xc0,0x7d,0xcd,0x7d,0x01,0x79,0x6b,0x6b,0xfe,
21215
+0x87,0x7d,0xcd,0x7d,0xfe,0x51,0xfa,0xfe,0x8b,0x00,0x00,0x00,
21216
+0x00,0x01,0x00,0x24,0x00,0x00,0x02,0x6c,0x06,0x14,0x00,0x19,
21217
+0x00,0x00,0x25,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x33,
21218
+0x35,0x23,0x35,0x33,0x11,0x23,0x35,0x21,0x11,0x33,0x15,0x23,
21219
+0x15,0x33,0x15,0x23,0x01,0xa4,0xae,0xfd,0xe9,0xb1,0xc8,0xc8,
21220
+0xc8,0xc8,0xb1,0x01,0x69,0xc8,0xc8,0xc8,0xc8,0x6a,0x6a,0x6a,
21221
+0x01,0xd2,0x6b,0xcd,0x6b,0x01,0xcb,0x6a,0xfd,0xcb,0x6b,0xcd,
21222
+0x6b,0x00,0x00,0x00,0x00,0x02,0x00,0x67,0x00,0x00,0x05,0x19,
21223
+0x05,0xd5,0x00,0x14,0x00,0x21,0x00,0x00,0x33,0x35,0x33,0x11,
21224
+0x23,0x35,0x33,0x35,0x23,0x35,0x21,0x32,0x04,0x15,0x14,0x04,
21225
+0x23,0x21,0x11,0x33,0x15,0x03,0x21,0x32,0x36,0x35,0x34,0x26,
21226
+0x23,0x21,0x15,0x21,0x15,0x21,0x71,0xbe,0xc8,0xc8,0xbe,0x02,
21227
+0xc2,0xe0,0x01,0x06,0xfe,0xfa,0xe0,0xfe,0xc7,0xe7,0xe7,0x01,
21228
+0x08,0x95,0x9c,0x9c,0x95,0xfe,0xf8,0x01,0x50,0xfe,0xb0,0x6a,
21229
+0x03,0x89,0x7d,0xfa,0x6b,0xe3,0xc1,0xc0,0xe4,0xfd,0xdd,0x6a,
21230
+0x02,0xf8,0xa1,0x98,0x99,0xa0,0xfa,0x7d,0x00,0x02,0x00,0x71,
21231
+0xfe,0x56,0x06,0x37,0x05,0xd5,0x00,0x26,0x00,0x2e,0x00,0x00,
21232
+0x01,0x16,0x17,0x16,0x17,0x13,0x33,0x15,0x21,0x03,0x26,0x27,
21233
+0x26,0x2b,0x01,0x11,0x14,0x16,0x33,0x32,0x36,0x37,0x33,0x15,
21234
+0x0e,0x01,0x23,0x22,0x26,0x35,0x11,0x23,0x35,0x21,0x32,0x16,
21235
+0x15,0x14,0x06,0x25,0x21,0x32,0x36,0x10,0x26,0x23,0x21,0x03,
21236
+0xd5,0x46,0x33,0x32,0x28,0xd9,0xb6,0xfe,0xa0,0xe9,0x44,0x37,
21237
+0x38,0x62,0xdf,0x5e,0x77,0x58,0x58,0x03,0x72,0x49,0x93,0x47,
21238
+0xdc,0xc6,0xbe,0x02,0xf5,0xda,0xed,0xad,0xfd,0x7a,0x01,0x27,
21239
+0x97,0x90,0x90,0x97,0xfe,0xd9,0x02,0xe5,0x13,0x2e,0x2d,0x52,
21240
+0xfe,0x45,0x6a,0x01,0xdb,0x8b,0x28,0x28,0xfd,0x7b,0xda,0x96,
21241
+0x61,0x63,0xeb,0x22,0x22,0xdc,0xf7,0x05,0x41,0x6b,0xd0,0xbf,
21242
+0x9a,0xb1,0x26,0x8f,0x01,0x2c,0x8e,0x00,0x00,0x01,0x00,0x71,
21243
+0xfe,0xbf,0x06,0x89,0x05,0xd5,0x00,0x1f,0x00,0x00,0x33,0x35,
21244
+0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x11,0x23,0x35,
21245
+0x21,0x15,0x23,0x11,0x33,0x11,0x23,0x34,0x02,0x23,0x21,0x35,
21246
+0x33,0x11,0x21,0x11,0x33,0x15,0x71,0xbe,0xbe,0x02,0x47,0xbe,
21247
+0x03,0x06,0xbe,0x02,0x47,0xbe,0xbe,0x6a,0x24,0x64,0xfe,0xab,
21248
+0xbe,0xfc,0xfa,0xbe,0x6a,0x05,0x00,0x6b,0x6b,0xfd,0xfc,0x02,
21249
+0x04,0x6b,0x6b,0xfb,0x00,0xfe,0x55,0x03,0x01,0x3e,0x6a,0x02,
21250
+0x82,0xfd,0x7e,0x6a,0x00,0x01,0x00,0x4a,0xfe,0xe5,0x04,0xee,
21251
+0x06,0x14,0x00,0x21,0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,
21252
+0x21,0x11,0x3e,0x01,0x33,0x32,0x16,0x15,0x11,0x33,0x11,0x23,
21253
+0x27,0x26,0x23,0x21,0x35,0x33,0x11,0x34,0x26,0x23,0x22,0x06,
21254
+0x15,0x11,0x33,0x15,0x54,0xa6,0xb0,0x01,0x68,0x33,0xa3,0x6c,
21255
+0xb0,0xa6,0xa4,0x68,0x10,0x10,0x64,0xfe,0xf0,0x9f,0x5f,0x7a,
21256
+0x80,0x86,0xa0,0x6a,0x05,0x40,0x6a,0xfd,0x56,0x6c,0x6e,0xca,
21257
+0xd6,0xfd,0xc6,0xfe,0x7b,0x8d,0x8e,0x6a,0x02,0x00,0xc3,0x8f,
21258
+0xba,0xb2,0xfe,0x1a,0x6a,0x00,0x00,0x00,0x00,0x01,0x00,0x71,
21259
+0xfe,0xbf,0x06,0x19,0x05,0xd5,0x00,0x1c,0x00,0x00,0x33,0x35,
21260
+0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x01,0x23,0x35,0x21,
21261
+0x15,0x23,0x09,0x01,0x33,0x11,0x23,0x34,0x02,0x2b,0x01,0x01,
21262
+0x11,0x33,0x15,0x71,0xbe,0xbe,0x02,0x47,0xbe,0x02,0x83,0xa2,
21263
+0x01,0xf0,0xa8,0xfd,0x7f,0x02,0xcd,0xaa,0x6a,0x24,0x64,0x69,
21264
+0xfd,0x3c,0xbe,0x6a,0x05,0x00,0x6b,0x6b,0xfd,0xcb,0x02,0x35,
21265
+0x6b,0x6b,0xfd,0xcd,0xfd,0x33,0xfe,0x55,0x03,0x01,0x3e,0x02,
21266
+0xc5,0xfd,0xa5,0x6a,0x00,0x01,0x00,0x3b,0xfe,0xe5,0x04,0xe7,
21267
+0x06,0x14,0x00,0x1d,0x00,0x00,0x29,0x01,0x35,0x33,0x11,0x23,
21268
+0x35,0x21,0x11,0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x33,
21269
+0x11,0x23,0x27,0x26,0x23,0x21,0x35,0x33,0x01,0x07,0x11,0x33,
21270
+0x02,0x4a,0xfd,0xfc,0xa6,0xb1,0x01,0x69,0x01,0xc0,0x99,0x01,
21271
+0xe1,0xb6,0xfe,0xc4,0x01,0x94,0x99,0x68,0x10,0x10,0x64,0xfe,
21272
+0xe0,0x98,0xfe,0xc2,0x91,0xa6,0x6a,0x05,0x40,0x6a,0xfc,0x0b,
21273
+0x01,0x9d,0x6b,0x6b,0xfe,0xdc,0xfd,0xd2,0xfe,0x7b,0x8d,0x8e,
21274
+0x6a,0x01,0xb5,0x87,0xfe,0xd2,0x00,0x00,0x00,0x01,0x00,0x5c,
21275
+0xfe,0xbf,0x05,0x3f,0x05,0xd5,0x00,0x0f,0x00,0x00,0x33,0x35,
21276
+0x01,0x21,0x15,0x23,0x11,0x21,0x15,0x01,0x21,0x11,0x23,0x34,
21277
+0x02,0x23,0x5c,0x03,0xa2,0xfc,0xfc,0x7b,0x04,0x9c,0xfc,0x5e,
21278
+0x03,0xc6,0x6a,0x24,0x64,0x48,0x05,0x12,0xdf,0x01,0x5a,0x48,
21279
+0xfa,0xee,0xfe,0x44,0x03,0x01,0x3e,0x00,0x00,0x01,0x00,0x52,
21280
+0xfe,0xe5,0x03,0xec,0x04,0x27,0x00,0x0f,0x00,0x00,0x33,0x35,
21281
+0x01,0x21,0x15,0x23,0x11,0x21,0x15,0x01,0x21,0x11,0x23,0x27,
21282
+0x26,0x23,0x52,0x02,0x9a,0xfd,0xf1,0x6a,0x03,0x66,0xfd,0x66,
21283
+0x02,0xad,0x68,0x10,0x10,0x64,0x56,0x03,0x66,0xb8,0x01,0x23,
21284
+0x56,0xfc,0x99,0xfe,0x7b,0x8d,0x8e,0x00,0x00,0x02,0x00,0x73,
21285
+0xff,0xe3,0x05,0xe8,0x05,0xf0,0x00,0x18,0x00,0x33,0x00,0x00,
21286
+0x01,0x32,0x16,0x17,0x35,0x21,0x15,0x23,0x11,0x33,0x15,0x21,
21287
+0x35,0x0e,0x03,0x23,0x22,0x27,0x26,0x11,0x34,0x12,0x24,0x13,
21288
+0x32,0x3e,0x02,0x3d,0x01,0x34,0x2e,0x02,0x23,0x22,0x0e,0x03,
21289
+0x15,0x14,0x1e,0x07,0x02,0xa9,0xa3,0xcf,0x43,0x01,0x7b,0xb0,
21290
+0xbf,0xfe,0x76,0x1b,0x41,0x66,0x95,0x5e,0xf9,0x9f,0x9e,0x8c,
21291
+0x01,0x02,0xcd,0x6c,0x9d,0x5c,0x2b,0x2b,0x5c,0x9e,0x6b,0x5b,
21292
+0x8c,0x59,0x38,0x17,0x11,0x1d,0x2c,0x2f,0x3c,0x36,0x43,0x32,
21293
+0x05,0xf0,0x74,0x74,0xcd,0x6b,0xfb,0x01,0x6b,0xca,0x2f,0x49,
21294
+0x48,0x27,0xd7,0xd5,0x01,0x5b,0xe4,0x01,0x5f,0xc3,0xfa,0x5e,
21295
+0x5b,0xa7,0xd5,0x85,0x80,0x84,0xd4,0xa8,0x5b,0x43,0x74,0xac,
21296
+0xc1,0x77,0x66,0xac,0x7f,0x66,0x44,0x32,0x1b,0x10,0x04,0x00,
21297
+0x00,0x01,0x00,0x66,0xfe,0x56,0x07,0xc9,0x05,0xd5,0x00,0x21,
21298
+0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,0x21,0x09,0x01,0x21,
21299
+0x15,0x23,0x11,0x14,0x06,0x23,0x22,0x26,0x27,0x35,0x33,0x1e,
21300
+0x01,0x33,0x32,0x36,0x35,0x11,0x01,0x23,0x01,0x11,0x33,0x15,
21301
+0x71,0xbe,0xc9,0x01,0xb3,0x02,0x0c,0x02,0x0c,0x01,0x98,0xc7,
21302
+0xc6,0xdc,0x47,0x93,0x49,0x72,0x03,0x58,0x58,0x77,0x5e,0xfe,
21303
+0x00,0x8d,0xfe,0x00,0xbe,0x6a,0x05,0x00,0x6b,0xfb,0xd9,0x04,
21304
+0x27,0x6b,0xfa,0xbf,0xf7,0xdc,0x22,0x22,0xeb,0x63,0x61,0x96,
21305
+0xda,0x04,0xbb,0xfb,0xef,0x04,0x11,0xfb,0x7e,0x6a,0x00,0x00,
21306
+0x00,0x02,0xff,0xf4,0x00,0x00,0x05,0xdb,0x05,0xd5,0x00,0x02,
21307
+0x00,0x12,0x00,0x00,0x01,0x21,0x09,0x01,0x15,0x23,0x01,0x23,
21308
+0x01,0x23,0x35,0x21,0x15,0x23,0x13,0x21,0x13,0x23,0x35,0x04,
21309
+0x35,0xfd,0xdc,0x01,0x12,0x02,0xb8,0x83,0xfd,0xec,0xa8,0xfd,
21310
+0xeb,0x93,0x02,0x1f,0xa6,0x7d,0x02,0x74,0x7d,0xa4,0x03,0xb8,
21311
+0xfd,0x3a,0x04,0xe3,0x6a,0xfa,0x95,0x05,0x6b,0x6a,0x6a,0xfe,
21312
+0xb8,0x01,0x48,0x6a,0x00,0x02,0x00,0x73,0xff,0xe3,0x05,0xe8,
21313
+0x05,0xf0,0x00,0x18,0x00,0x33,0x00,0x00,0x05,0x22,0x26,0x27,
21314
+0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x3e,0x03,0x33,
21315
+0x32,0x17,0x16,0x11,0x14,0x02,0x04,0x03,0x22,0x0e,0x02,0x1d,
21316
+0x01,0x14,0x1e,0x02,0x33,0x32,0x3e,0x03,0x35,0x34,0x2e,0x07,
21317
+0x03,0xb2,0xa3,0xcf,0x43,0xfe,0x85,0xb0,0xbf,0x01,0x8a,0x1b,
21318
+0x41,0x66,0x95,0x5e,0xf9,0x9f,0x9e,0x8c,0xfe,0xfe,0xcd,0x6c,
21319
+0x9d,0x5c,0x2b,0x2b,0x5c,0x9e,0x6b,0x5b,0x8c,0x59,0x38,0x17,
21320
+0x11,0x1d,0x2c,0x2f,0x3c,0x36,0x43,0x32,0x1d,0x74,0x74,0xcb,
21321
+0x6b,0x04,0xff,0x6b,0xcc,0x2f,0x49,0x48,0x27,0xd7,0xd5,0xfe,
21322
+0xa5,0xe4,0xfe,0xa1,0xc3,0x05,0xa2,0x5b,0xa7,0xd5,0x85,0x80,
21323
+0x84,0xd4,0xa8,0x5b,0x43,0x74,0xac,0xc1,0x77,0x66,0xac,0x7f,
21324
+0x66,0x44,0x32,0x1b,0x10,0x04,0x00,0x00,0x00,0x01,0xff,0xfa,
21325
+0x00,0x00,0x05,0x4d,0x04,0x3d,0x00,0x18,0x00,0x00,0x21,0x23,
21326
+0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x36,0x37,0x36,0x33,
21327
+0x32,0x16,0x17,0x15,0x23,0x2e,0x01,0x23,0x22,0x06,0x07,0x02,
21328
+0x81,0x87,0xfe,0x79,0x79,0x01,0xe9,0xaa,0x01,0x2b,0x01,0x0a,
21329
+0x33,0x3c,0x3d,0x6f,0x2f,0x63,0x32,0x5e,0x06,0x39,0x3c,0x37,
21330
+0x43,0x25,0x03,0xbc,0x6b,0x6b,0xfd,0x25,0x02,0x85,0x7c,0x2e,
21331
+0x2d,0x10,0x0f,0xcb,0x44,0x3b,0x3d,0x5c,0x00,0x01,0x00,0x0a,
21332
+0x00,0x00,0x09,0x0a,0x05,0xd5,0x00,0x21,0x00,0x00,0x09,0x01,
21333
+0x23,0x09,0x01,0x23,0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,
21334
+0x33,0x09,0x01,0x3e,0x03,0x33,0x32,0x16,0x17,0x15,0x23,0x2e,
21335
+0x01,0x23,0x22,0x0e,0x02,0x07,0x7d,0xfe,0x9c,0xa4,0xfe,0xaa,
21336
+0xfe,0xaa,0xa4,0xfe,0x79,0x94,0x02,0x21,0xba,0x01,0x37,0x01,
21337
+0x54,0xa2,0x01,0x5a,0x01,0x16,0x12,0x3c,0x47,0x47,0x25,0x4d,
21338
+0x6f,0x3f,0x5f,0x07,0x47,0x54,0x1e,0x32,0x21,0x15,0x04,0xeb,
21339
+0xfb,0x15,0x04,0xbe,0xfb,0x42,0x05,0x6a,0x6b,0x6b,0xfb,0xb1,
21340
+0x04,0xba,0xfb,0x39,0x03,0xdd,0x40,0x5e,0x34,0x18,0x21,0x21,
21341
+0xdb,0x5f,0x5b,0x1a,0x2b,0x2b,0x00,0x00,0x00,0x01,0x00,0x21,
21342
+0x00,0x00,0x07,0x84,0x04,0x3d,0x00,0x1d,0x00,0x00,0x21,0x23,
21343
+0x09,0x01,0x23,0x01,0x23,0x35,0x21,0x15,0x23,0x13,0x01,0x33,
21344
+0x01,0x13,0x3e,0x02,0x33,0x32,0x17,0x15,0x23,0x2e,0x01,0x23,
21345
+0x22,0x06,0x07,0x05,0x0c,0x99,0xfe,0xfa,0xfe,0xf9,0x93,0xfe,
21346
+0xc5,0x77,0x01,0xe1,0xac,0xee,0x01,0x12,0x81,0x01,0x10,0xd3,
21347
+0x1b,0x3c,0x63,0x4c,0x5d,0x67,0x5e,0x06,0x37,0x3e,0x36,0x36,
21348
+0x1e,0x03,0x1b,0xfc,0xe5,0x03,0xbc,0x6b,0x6b,0xfd,0x2d,0x03,
21349
+0x3e,0xfc,0xc2,0x02,0x7d,0x4f,0x59,0x2f,0x1f,0xcb,0x40,0x3f,
21350
+0x42,0x57,0x00,0x00,0x00,0x01,0x00,0x71,0x00,0x00,0x05,0x7b,
21351
+0x05,0xd5,0x00,0x13,0x00,0x00,0x01,0x21,0x11,0x33,0x15,0x21,
21352
+0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x35,0x33,
21353
+0x11,0x23,0x05,0x00,0xfc,0xfa,0xbe,0xfd,0xb9,0xbe,0xbe,0x02,
21354
+0x47,0xbe,0x03,0x06,0x7b,0x7b,0x02,0xec,0xfd,0x7e,0x6a,0x6a,
21355
+0x05,0x00,0x6b,0x6b,0xfd,0xfc,0xbb,0xfe,0x10,0x00,0x00,0x00,
21356
+0x00,0x01,0x00,0x46,0x00,0x00,0x04,0x06,0x04,0x27,0x00,0x13,
21357
+0x00,0x00,0x01,0x35,0x33,0x11,0x23,0x35,0x21,0x11,0x33,0x15,
21358
+0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x03,0x8b,
21359
+0x7b,0x7b,0xfe,0x19,0xa6,0xfd,0xfc,0xa6,0xa6,0x02,0x04,0xa6,
21360
+0x02,0x80,0xb9,0xfe,0x10,0xbb,0xfe,0x66,0x6a,0x6a,0x03,0x53,
21361
+0x6a,0x6a,0xfe,0xc3,0x00,0x02,0x00,0x5a,0xff,0xe2,0x05,0x40,
21362
+0x04,0x2c,0x00,0x25,0x00,0x33,0x00,0x00,0x25,0x26,0x27,0x26,
21363
+0x27,0x26,0x35,0x34,0x37,0x36,0x37,0x33,0x15,0x06,0x07,0x06,
21364
+0x11,0x14,0x17,0x16,0x17,0x11,0x34,0x37,0x36,0x33,0x32,0x17,
21365
+0x16,0x15,0x14,0x07,0x06,0x07,0x06,0x07,0x06,0x24,0x25,0x36,
21366
+0x37,0x36,0x35,0x34,0x27,0x26,0x23,0x22,0x07,0x06,0x07,0x10,
21367
+0x01,0x6f,0x39,0x55,0x41,0x2d,0x19,0x42,0x3c,0xa9,0x70,0x62,
21368
+0x43,0x25,0x37,0x34,0xdf,0x2d,0x4e,0xe4,0xc7,0x67,0x42,0x19,
21369
+0x2d,0x41,0x56,0x38,0xb9,0xfe,0xb5,0x01,0x02,0xe1,0x32,0x37,
21370
+0x25,0x27,0x57,0x4c,0x36,0x24,0x01,0x1d,0x12,0x54,0x40,0x6c,
21371
+0x3c,0x93,0xe8,0x7f,0x73,0x4f,0x3b,0x2f,0x66,0x38,0xfe,0xef,
21372
+0xba,0x6f,0x69,0x13,0x01,0xa5,0xe1,0x76,0xc7,0xc7,0x7f,0xe8,
21373
+0x93,0x3c,0x6c,0x40,0x54,0x12,0x3b,0x01,0x87,0x17,0x64,0x6c,
21374
+0xbd,0xdd,0x6c,0x71,0x71,0x4b,0xfe,0xfe,0xe6,0x00,0x00,0x00,
21375
+0x00,0x01,0x00,0x4a,0xff,0xe3,0x03,0xd3,0x06,0x14,0x00,0x24,
21376
+0x00,0x00,0x17,0x11,0x33,0x1e,0x01,0x33,0x32,0x37,0x36,0x35,
21377
+0x11,0x34,0x26,0x23,0x22,0x06,0x07,0x23,0x35,0x3e,0x01,0x33,
21378
+0x32,0x16,0x15,0x11,0x33,0x15,0x21,0x35,0x06,0x07,0x06,0x23,
21379
+0x22,0x27,0x26,0x4a,0x6a,0x05,0x4e,0x4b,0x88,0x48,0x49,0x57,
21380
+0x5b,0x52,0x55,0x07,0x5f,0x3e,0x83,0x48,0xab,0xc3,0xb0,0xfe,
21381
+0x98,0x36,0x55,0x55,0x7a,0x2d,0x32,0x31,0x02,0x01,0x0a,0x4f,
21382
+0x4e,0x5e,0x5f,0xaf,0x02,0xde,0x81,0x7b,0x5a,0x60,0xdb,0x21,
21383
+0x21,0xbb,0xa4,0xfb,0xb4,0x69,0xbd,0x6f,0x36,0x35,0x07,0x07,
21384
+0x00,0x03,0x00,0x66,0xff,0xe3,0x04,0x6a,0x04,0x44,0x00,0x0e,
21385
+0x00,0x16,0x00,0x1e,0x00,0x00,0x00,0x20,0x11,0x14,0x17,0x36,
21386
+0x37,0x36,0x33,0x32,0x17,0x16,0x17,0x36,0x35,0x06,0x26,0x22,
21387
+0x06,0x14,0x16,0x32,0x36,0x24,0x00,0x20,0x00,0x10,0x00,0x20,
21388
+0x00,0x03,0x93,0xfd,0xaa,0x06,0x17,0x2f,0x5c,0x85,0x88,0x59,
21389
+0x2b,0x17,0x06,0x75,0x6a,0x96,0x68,0x67,0x99,0x68,0x01,0x4c,
21390
+0xfe,0xe7,0xfe,0x2f,0xfe,0xe6,0x01,0x19,0x01,0xd2,0x01,0x19,
21391
+0x03,0xe1,0xfe,0x33,0x43,0x39,0x3a,0x2f,0x5d,0x5f,0x2a,0x36,
21392
+0x37,0x3e,0x9c,0x82,0x7f,0xb9,0x7c,0x7d,0x53,0xfe,0xcd,0x01,
21393
+0x33,0x01,0xfc,0x01,0x32,0xfe,0xce,0x00,0x00,0x01,0x00,0x75,
21394
+0x00,0x00,0x04,0x32,0x04,0x27,0x00,0x17,0x00,0x00,0x13,0x21,
21395
+0x15,0x23,0x11,0x33,0x15,0x21,0x11,0x33,0x15,0x21,0x11,0x21,
21396
+0x15,0x23,0x11,0x33,0x15,0x21,0x11,0x21,0x15,0x23,0x81,0x03,
21397
+0xb1,0xa7,0xa7,0xfc,0x43,0x6a,0x01,0xf4,0xfe,0xec,0x6a,0x6a,
21398
+0x01,0x14,0xfe,0x18,0x6a,0x04,0x27,0x6a,0xfc,0xad,0x6a,0x01,
21399
+0x21,0xa6,0x01,0x86,0x72,0x01,0x62,0x86,0x01,0x41,0xa6,0x00,
21400
+0xff,0xff,0x00,0x2e,0xff,0x02,0x01,0xb5,0x03,0x4d,0x12,0x07,
21401
+0x02,0x74,0x00,0x00,0xfd,0x64,0x00,0x00,0x00,0x01,0xff,0xf3,
21402
+0x02,0x9c,0x03,0xb7,0x05,0xe0,0x00,0x0e,0x00,0x00,0x13,0x09,
21403
+0x01,0x23,0x35,0x21,0x15,0x23,0x01,0x23,0x01,0x23,0x35,0x21,
21404
+0x15,0xe2,0x01,0x15,0x01,0x16,0x6a,0x01,0x14,0x5c,0xfe,0xb1,
21405
+0x6d,0xfe,0xb2,0x5e,0x01,0x57,0x05,0xa4,0xfd,0x7e,0x02,0x82,
21406
+0x3c,0x3c,0xfc,0xf8,0x03,0x08,0x3c,0x3c,0x00,0x01,0x00,0xac,
21407
+0xfe,0x56,0x04,0xe5,0x05,0xf0,0x00,0x40,0x00,0x00,0x37,0x11,
21408
+0x17,0x1e,0x01,0x33,0x32,0x36,0x35,0x34,0x26,0x2f,0x01,0x2e,
21409
+0x01,0x35,0x34,0x24,0x33,0x32,0x16,0x17,0x11,0x23,0x2e,0x01,
21410
+0x23,0x22,0x06,0x15,0x14,0x16,0x1f,0x01,0x1e,0x01,0x15,0x14,
21411
+0x04,0x21,0x22,0x27,0x1e,0x05,0x33,0x32,0x36,0x37,0x33,0x15,
21412
+0x0e,0x01,0x23,0x22,0x2e,0x05,0x27,0xbe,0x73,0x05,0xbb,0xbf,
21413
+0xb2,0xbb,0x71,0xb6,0xc5,0xd6,0xaf,0x01,0x0e,0xf4,0x68,0xf8,
21414
+0x8c,0x71,0x11,0xb1,0xb5,0x9e,0xa5,0x7c,0xc9,0xb9,0xcb,0xad,
21415
+0xfe,0xea,0xfe,0xed,0x4d,0x4f,0x12,0x2e,0x1f,0x30,0x30,0x49,
21416
+0x2c,0x48,0x6e,0x10,0x6c,0x38,0xa9,0x59,0x46,0x7b,0x5a,0x4f,
21417
+0x44,0x3e,0x49,0x25,0x48,0x01,0x54,0x01,0xaa,0xa3,0x8d,0x87,
21418
+0x6c,0x74,0x37,0x3b,0x41,0xc2,0xa9,0xbe,0xd2,0x2d,0x2b,0xfe,
21419
+0xc2,0x9e,0x8d,0x81,0x7b,0x6b,0x7a,0x3c,0x37,0x3d,0xbd,0x9f,
21420
+0xd9,0xdc,0x0a,0x1c,0x55,0x38,0x42,0x27,0x1a,0x67,0x4b,0xa8,
21421
+0x32,0x43,0x2d,0x4a,0x5b,0x62,0x56,0x46,0x0f,0x00,0x00,0x00,
21422
+0x00,0x01,0x00,0x5c,0xfe,0x56,0x05,0x8f,0x05,0xd5,0x00,0x29,
21423
+0x00,0x00,0x33,0x35,0x01,0x21,0x15,0x23,0x11,0x21,0x15,0x01,
21424
+0x33,0x32,0x1e,0x03,0x1f,0x01,0x16,0x17,0x1e,0x04,0x33,0x32,
21425
+0x36,0x37,0x33,0x15,0x06,0x23,0x22,0x2e,0x02,0x2f,0x01,0x2e,
21426
+0x01,0x23,0x5c,0x03,0xa2,0xfc,0xfc,0x7b,0x04,0x9c,0xfc,0x5e,
21427
+0x23,0x26,0x4a,0x32,0x44,0x1b,0x20,0x77,0x04,0x07,0x1f,0x22,
21428
+0x3c,0x2d,0x3f,0x20,0x4a,0x81,0x10,0x6c,0x82,0xcd,0x39,0x67,
21429
+0x5b,0x47,0x2a,0x6c,0x42,0x82,0x4c,0x48,0x05,0x12,0xdf,0x01,
21430
+0x5a,0x48,0xfa,0xee,0x16,0x19,0x37,0x1a,0x20,0x76,0x03,0x07,
21431
+0x20,0x20,0x30,0x17,0x13,0x6a,0x48,0xa8,0x75,0x1c,0x39,0x39,
21432
+0x29,0x6b,0x41,0x47,0x00,0x01,0x00,0x78,0xff,0x92,0x05,0xb7,
21433
+0x04,0x18,0x00,0x1b,0x00,0x00,0x01,0x05,0x03,0x25,0x37,0x33,
21434
+0x03,0x23,0x37,0x05,0x07,0x23,0x13,0x0f,0x01,0x23,0x13,0x33,
21435
+0x07,0x3f,0x01,0x17,0x07,0x25,0x37,0x33,0x03,0x23,0x04,0xc5,
21436
+0xfe,0x3e,0x94,0x01,0xc0,0x11,0xd0,0x4c,0xd8,0x34,0xfe,0x3d,
21437
+0x0d,0xd2,0xc1,0xee,0x0f,0xca,0x38,0xc6,0x13,0xed,0x0c,0xd4,
21438
+0x18,0x01,0xc3,0x0b,0xd1,0x56,0xd4,0x03,0x95,0x42,0xfd,0x31,
21439
+0x3f,0x3c,0xfe,0x93,0xdf,0x3d,0x34,0x03,0x92,0x2f,0x59,0x01,
21440
+0x0d,0x6c,0x32,0x3b,0x01,0x74,0x3b,0x3a,0xfe,0x6c,0x00,0x00,
21441
+0x00,0x01,0x00,0x78,0xfe,0x3b,0x04,0x9c,0x04,0x18,0x00,0x22,
21442
+0x00,0x00,0x05,0x02,0x05,0x20,0x03,0x37,0x33,0x07,0x16,0x21,
21443
+0x24,0x37,0x2e,0x01,0x37,0x05,0x07,0x23,0x13,0x23,0x35,0x33,
21444
+0x37,0x33,0x03,0x25,0x13,0x23,0x35,0x3f,0x01,0x33,0x03,0x06,
21445
+0x16,0x04,0x83,0x01,0xfd,0xfd,0xfe,0x3c,0x40,0x01,0xe3,0x01,
21446
+0x14,0x01,0x26,0x01,0x18,0x01,0x05,0x9a,0x0e,0xfe,0x3f,0x17,
21447
+0xd0,0xae,0x76,0x87,0x0a,0xd3,0xa2,0x01,0xc0,0x7a,0x74,0x85,
21448
+0x0c,0xd3,0x96,0x1c,0x94,0x5c,0xfe,0x98,0x01,0x01,0x04,0x33,
21449
+0x33,0x87,0x01,0xce,0x97,0xac,0x33,0x3a,0x67,0x03,0x39,0x4a,
21450
+0x39,0xfd,0x06,0x36,0x02,0x41,0x49,0x01,0x39,0xfd,0x4a,0x87,
21451
+0xa5,0x00,0x00,0x00,0x00,0x01,0x00,0x12,0xfe,0x3c,0x04,0x98,
21452
+0x04,0x18,0x00,0x25,0x00,0x00,0x01,0x06,0x16,0x07,0x02,0x05,
21453
+0x20,0x03,0x26,0x37,0x33,0x06,0x17,0x16,0x21,0x04,0x37,0x36,
21454
+0x26,0x37,0x13,0x05,0x03,0x37,0x07,0x23,0x07,0x23,0x13,0x23,
21455
+0x35,0x33,0x37,0x33,0x07,0x25,0x37,0x17,0x04,0x0c,0x1e,0xa3,
21456
+0x28,0x3d,0xfe,0x18,0xfd,0xe7,0x19,0x0e,0x2c,0x9f,0x18,0x0f,
21457
+0x31,0x01,0x48,0x01,0x43,0x23,0x2f,0xb0,0x16,0x6c,0xfe,0x3e,
21458
+0x62,0x5c,0x01,0x6d,0x0c,0xd2,0x8e,0x77,0x87,0x0c,0xd3,0x18,
21459
+0x01,0xc2,0x09,0xd6,0x01,0x90,0x97,0xcd,0xce,0xfe,0xdf,0x01,
21460
+0x01,0x15,0x6c,0x3b,0x46,0x64,0xa2,0x01,0xb3,0xd1,0xe2,0x80,
21461
+0x02,0x00,0x46,0xfe,0x39,0x04,0x5c,0x36,0x02,0x9f,0x4a,0x39,
21462
+0x84,0x4b,0x39,0x01,0x00,0x02,0x00,0xbd,0xff,0xfd,0x04,0xb9,
21463
+0x06,0x15,0x00,0x0b,0x00,0x25,0x00,0x00,0x01,0x36,0x0f,0x01,
21464
+0x06,0x07,0x03,0x02,0x37,0x25,0x36,0x37,0x13,0x07,0x11,0x24,
21465
+0x0b,0x01,0x02,0x07,0x05,0x04,0x1b,0x01,0x12,0x25,0x11,0x07,
21466
+0x15,0x23,0x11,0x33,0x15,0x25,0x35,0x33,0x11,0x23,0x03,0xd4,
21467
+0x31,0xde,0xa9,0x87,0x2a,0x47,0x35,0x69,0x01,0x4b,0x5f,0x1b,
21468
+0x98,0xe5,0x01,0xca,0x58,0x49,0x3d,0xd4,0xfe,0x61,0xfe,0xb9,
21469
+0x59,0x39,0x38,0x01,0x69,0xec,0xa2,0xa2,0x02,0x6c,0xa2,0xa2,
21470
+0x02,0xc3,0xf0,0x26,0x17,0x15,0xb2,0xfe,0xb3,0xfe,0xf5,0x11,
21471
+0x35,0x0e,0x9c,0x04,0x50,0x31,0xfe,0x83,0x4a,0xfe,0x92,0xfe,
21472
+0xaa,0xfe,0xee,0x21,0x3f,0x1f,0x01,0xa2,0x01,0x0e,0x01,0x07,
21473
+0x3d,0x01,0x77,0x31,0x36,0x01,0x33,0xa0,0x77,0x29,0xfe,0xdb,
21474
+0x00,0x01,0x00,0x71,0xfe,0x3b,0x04,0xa9,0x04,0x18,0x00,0x19,
21475
+0x00,0x00,0x01,0x26,0x3d,0x01,0x13,0x05,0x03,0x33,0x07,0x23,
21476
+0x07,0x23,0x13,0x23,0x35,0x33,0x37,0x17,0x07,0x25,0x37,0x33,
21477
+0x03,0x07,0x16,0x17,0x03,0x9a,0xa4,0xc2,0xfe,0x3e,0x95,0x63,
21478
+0x04,0x73,0x0a,0xd2,0xc0,0x76,0x86,0x0c,0xd1,0x19,0x01,0xc5,
21479
+0x0c,0xd3,0xe0,0x02,0x01,0xaf,0xfe,0x3b,0x7f,0xf1,0x55,0x03,
21480
+0x95,0x4b,0xfd,0x3d,0x54,0x33,0x03,0x95,0x4a,0x39,0x01,0x82,
21481
+0x4a,0x39,0xfb,0xe8,0x4b,0xc9,0xb1,0x00,0x00,0x01,0x00,0x78,
21482
+0xfe,0x3e,0x07,0x3a,0x04,0x18,0x00,0x25,0x00,0x00,0x21,0x13,
21483
+0x05,0x03,0x33,0x15,0x23,0x07,0x23,0x13,0x23,0x35,0x33,0x37,
21484
+0x33,0x07,0x25,0x37,0x33,0x07,0x25,0x3f,0x01,0x03,0x17,0x15,
21485
+0x23,0x07,0x23,0x13,0x05,0x03,0x15,0x14,0x17,0x23,0x26,0x35,
21486
+0x02,0xfe,0xc4,0xfe,0x3b,0x96,0x72,0x84,0x0b,0xd2,0xc3,0x76,
21487
+0x86,0x0c,0xd1,0x1a,0x01,0xc4,0x0b,0xd5,0x1c,0x01,0xc6,0x0a,
21488
+0xd4,0xc1,0x74,0x87,0x0a,0xd2,0xc1,0xfe,0x3c,0xb5,0xa7,0xe8,
21489
+0x92,0x03,0x93,0x49,0xfd,0x3d,0x54,0x33,0x03,0x95,0x4a,0x39,
21490
+0x83,0x4a,0x39,0x83,0x4a,0x38,0x01,0xfc,0x70,0x01,0x54,0x33,
21491
+0x03,0x93,0x49,0xfc,0xb6,0xa8,0x7d,0x9d,0x93,0x8a,0x00,0x00,
21492
+0x00,0x02,0x00,0x78,0x00,0x00,0x05,0x94,0x06,0x15,0x00,0x03,
21493
+0x00,0x1d,0x00,0x00,0x25,0x13,0x05,0x03,0x05,0x23,0x37,0x05,
21494
+0x07,0x23,0x13,0x37,0x05,0x15,0x23,0x03,0x33,0x11,0x25,0x35,
21495
+0x33,0x03,0x07,0x25,0x3f,0x01,0x03,0x33,0x15,0x23,0x04,0x0c,
21496
+0x99,0xfe,0x3b,0x98,0x02,0x6d,0xd3,0x19,0xfe,0x3c,0x0b,0xd4,
21497
+0xea,0x01,0xfe,0xf9,0xc3,0x01,0xc4,0x01,0x07,0xcb,0x03,0x1c,
21498
+0x01,0xc6,0x0c,0xd3,0xc3,0x72,0x84,0xc3,0x02,0xd2,0x4b,0xfd,
21499
+0x3d,0x87,0x73,0x40,0x33,0x04,0x48,0x7d,0x01,0x5f,0x01,0xb0,
21500
+0xff,0x00,0x01,0x86,0xfe,0x7c,0x83,0x4a,0x38,0x01,0xfc,0x6f,
21501
+0x54,0x00,0x00,0x00,0x00,0x02,0x00,0x78,0x00,0x00,0x07,0x37,
21502
+0x04,0x17,0x00,0x03,0x00,0x1f,0x00,0x00,0x25,0x13,0x05,0x03,
21503
+0x05,0x13,0x05,0x03,0x23,0x37,0x05,0x07,0x23,0x13,0x27,0x35,
21504
+0x17,0x3f,0x01,0x07,0x25,0x37,0x33,0x07,0x25,0x37,0x33,0x03,
21505
+0x33,0x15,0x23,0x07,0x03,0x28,0x9a,0xfe,0x3b,0x97,0x04,0x22,
21506
+0xc2,0xfe,0x3b,0xb4,0xd3,0x17,0xfe,0x3f,0x08,0xd4,0xc3,0x77,
21507
+0x88,0x0b,0xd0,0x1a,0x01,0xc4,0x0c,0xd4,0x1b,0x01,0xc6,0x0b,
21508
+0xd0,0xc0,0x75,0x85,0x0b,0xc3,0x02,0xd2,0x4b,0xfd,0x3e,0x88,
21509
+0x03,0x95,0x4b,0xfc,0xb6,0x73,0x40,0x33,0x03,0x93,0x02,0x4a,
21510
+0x02,0x39,0x01,0x82,0x48,0x3a,0x82,0x4a,0x38,0xfc,0x70,0x54,
21511
+0x33,0x00,0x00,0x00,0x00,0x01,0x00,0x8c,0x00,0x00,0x04,0x78,
21512
+0x04,0x18,0x00,0x17,0x00,0x00,0x21,0x13,0x05,0x07,0x33,0x15,
21513
+0x23,0x07,0x23,0x13,0x23,0x35,0x33,0x37,0x33,0x07,0x25,0x37,
21514
+0x33,0x03,0x33,0x15,0x23,0x07,0x02,0xc8,0xc1,0xfe,0x3b,0x2d,
21515
+0x71,0x83,0x0b,0xd2,0x5a,0x76,0x85,0x0d,0xd2,0x1c,0x01,0xc5,
21516
+0x0c,0xd3,0xc2,0x75,0x86,0x0c,0x03,0x95,0x4b,0xcf,0x54,0x34,
21517
+0x01,0xa2,0x4a,0x39,0x83,0x4a,0x39,0xfc,0x6f,0x54,0x33,0x00,
21518
+0x00,0x02,0x00,0x78,0xfe,0x3d,0x04,0xb3,0x05,0xd6,0x00,0x03,
21519
+0x00,0x1b,0x00,0x00,0x25,0x13,0x05,0x03,0x01,0x26,0x3d,0x01,
21520
+0x37,0x05,0x07,0x23,0x13,0x37,0x23,0x35,0x33,0x35,0x33,0x13,
21521
+0x07,0x25,0x37,0x33,0x03,0x15,0x14,0x17,0x03,0x2a,0x98,0xfe,
21522
+0x3d,0x97,0x02,0x43,0x9e,0x0b,0xfe,0x3d,0x0b,0xd2,0xec,0x03,
21523
+0x84,0x84,0xc0,0x03,0x1b,0x01,0xc3,0x0c,0xd5,0xe0,0xbf,0xc3,
21524
+0x02,0xd2,0x4b,0xfd,0x3d,0xfd,0xb6,0x9a,0x81,0xdb,0x40,0x40,
21525
+0x33,0x04,0x51,0xfe,0x47,0x40,0xfe,0x41,0x82,0x4a,0x39,0xfb,
21526
+0xe8,0x98,0x6f,0xbc,0x00,0x02,0x00,0x6b,0x00,0x00,0x07,0x2e,
21527
+0x04,0x18,0x00,0x03,0x00,0x23,0x00,0x00,0x25,0x13,0x05,0x03,
21528
+0x05,0x23,0x07,0x23,0x37,0x05,0x07,0x23,0x13,0x05,0x03,0x33,
21529
+0x15,0x23,0x07,0x23,0x13,0x23,0x35,0x17,0x37,0x33,0x07,0x25,
21530
+0x37,0x33,0x07,0x25,0x3f,0x01,0x03,0x33,0x05,0xa6,0x9b,0xfe,
21531
+0x3a,0x97,0x02,0xfd,0x85,0x0c,0xd2,0x17,0xfe,0x3e,0x0a,0xd6,
21532
+0xc4,0xfe,0x3b,0x97,0x72,0x82,0x0e,0xd2,0xc4,0x76,0x87,0x0b,
21533
+0xd1,0x1a,0x01,0xc4,0x0b,0xd5,0x1b,0x01,0xc5,0x0c,0xd2,0xc0,
21534
+0x73,0xc3,0x02,0xd2,0x4b,0xfd,0x3d,0x54,0x33,0x73,0x40,0x33,
21535
+0x03,0x95,0x4b,0xfd,0x3d,0x54,0x33,0x03,0x95,0x4a,0x02,0x3a,
21536
+0x82,0x48,0x3a,0x82,0x4a,0x38,0x01,0xfc,0x6f,0x00,0x00,0x00,
21537
+0x00,0x02,0x00,0xc4,0xff,0xfd,0x04,0xd7,0x06,0x15,0x00,0x09,
21538
+0x00,0x22,0x00,0x00,0x01,0x06,0x07,0x03,0x06,0x3f,0x01,0x36,
21539
+0x37,0x1b,0x01,0x06,0x07,0x05,0x04,0x1b,0x01,0x36,0x37,0x25,
21540
+0x11,0x05,0x15,0x23,0x13,0x33,0x15,0x25,0x35,0x33,0x11,0x37,
21541
+0x15,0x07,0x15,0x02,0x52,0x4f,0x1e,0x65,0x28,0x76,0xe6,0x5e,
21542
+0x28,0x86,0x49,0x30,0xdc,0xfe,0xa8,0xfe,0xbb,0x64,0x53,0x22,
21543
+0xf2,0x01,0xa9,0xfe,0x55,0xc6,0x01,0xc5,0x01,0xab,0xc0,0x43,
21544
+0x43,0x03,0x8e,0x0b,0x8d,0xfe,0x25,0xbe,0x03,0x27,0x0d,0xba,
21545
+0x02,0x79,0xfd,0x68,0xd7,0x25,0x36,0x34,0x01,0xc5,0x01,0x83,
21546
+0xa5,0x22,0x40,0x01,0x3d,0x5b,0x36,0x01,0x51,0xc7,0x51,0x3c,
21547
+0xfe,0x59,0x08,0x50,0x09,0x26,0x00,0x00,0x00,0x01,0x00,0x78,
21548
+0x00,0x00,0x04,0xb3,0x06,0x15,0x00,0x1d,0x00,0x00,0x01,0x05,
21549
+0x11,0x07,0x25,0x3f,0x01,0x03,0x33,0x15,0x23,0x07,0x23,0x13,
21550
+0x05,0x03,0x33,0x15,0x23,0x07,0x23,0x13,0x11,0x33,0x15,0x25,
21551
+0x37,0x33,0x15,0x23,0x03,0x60,0xfe,0xc3,0x16,0x01,0xc5,0x0c,
21552
+0xd5,0xc3,0x71,0x85,0x0a,0xd3,0xc2,0xfe,0x3d,0x98,0x71,0x83,
21553
+0x0b,0xd1,0xde,0xcd,0x01,0x39,0x04,0xd4,0xd4,0x05,0xa6,0x40,
21554
+0xfe,0xb2,0x83,0x4a,0x38,0x01,0xfc,0x6f,0x54,0x33,0x03,0x95,
21555
+0x4b,0xfd,0x3d,0x54,0x33,0x04,0x18,0x01,0xfd,0x62,0x31,0x31,
21556
+0xfd,0x00,0x00,0x00,0x00,0x01,0x00,0x78,0xff,0xfd,0x07,0x3b,
21557
+0x04,0x18,0x00,0x23,0x00,0x00,0x21,0x23,0x37,0x05,0x07,0x23,
21558
+0x37,0x05,0x0f,0x01,0x13,0x27,0x35,0x3f,0x01,0x33,0x03,0x25,
21559
+0x13,0x23,0x35,0x3f,0x01,0x33,0x03,0x25,0x13,0x23,0x35,0x33,
21560
+0x3f,0x01,0x03,0x33,0x15,0x23,0x06,0x5c,0xd1,0x17,0xfe,0x3d,
21561
+0x0a,0xd6,0x15,0xfe,0x41,0x0a,0xd3,0xc7,0x79,0x87,0x11,0xd0,
21562
+0xc6,0x01,0xbe,0x9e,0x7a,0x8b,0x0b,0xd2,0xc1,0x01,0xc1,0x99,
21563
+0x76,0x88,0x0c,0xd2,0xc2,0x75,0x88,0x71,0x3e,0x33,0x71,0x3e,
21564
+0x33,0x03,0x03,0x93,0x05,0x4a,0x01,0x37,0xfc,0x6f,0x3c,0x02,
21565
+0xd3,0x4a,0x01,0x37,0xfc,0x6f,0x3c,0x02,0xd3,0x4a,0x38,0x01,
21566
+0xfc,0x6f,0x54,0x00,0x00,0x01,0x00,0x78,0x00,0x00,0x04,0xb1,
21567
+0x04,0x18,0x00,0x17,0x00,0x00,0x21,0x37,0x05,0x07,0x23,0x13,
21568
+0x23,0x35,0x33,0x37,0x33,0x03,0x25,0x13,0x23,0x35,0x33,0x3f,
21569
+0x01,0x03,0x33,0x15,0x23,0x07,0x03,0x01,0x17,0xfe,0x40,0x0f,
21570
+0xd1,0xc2,0x75,0x85,0x0c,0xd3,0xc0,0x01,0xc4,0x98,0x74,0x83,
21571
+0x0c,0xd1,0xc1,0x74,0x86,0x0c,0x73,0x40,0x33,0x03,0x95,0x4a,
21572
+0x38,0xfc,0x6f,0x3e,0x02,0xd2,0x4a,0x37,0x01,0xfc,0x6f,0x54,
21573
+0x33,0x00,0x00,0x00,0x00,0x01,0x00,0x73,0xfe,0x3b,0x06,0x75,
21574
+0x06,0x15,0x00,0x22,0x00,0x00,0x01,0x26,0x35,0x13,0x05,0x07,
21575
+0x23,0x13,0x05,0x07,0x27,0x13,0x23,0x35,0x33,0x37,0x33,0x03,
21576
+0x25,0x37,0x33,0x03,0x25,0x13,0x11,0x23,0x35,0x33,0x35,0x33,
21577
+0x11,0x03,0x17,0x14,0x17,0x05,0x85,0xad,0x04,0xfe,0x5b,0x0c,
21578
+0xd4,0x7f,0xfe,0x95,0x23,0xd0,0x70,0x75,0x86,0x0c,0xd1,0x5a,
21579
+0x01,0x6b,0x2f,0xd4,0xa1,0x01,0xa4,0xc2,0x85,0x85,0xc6,0xcd,
21580
+0x01,0xb2,0xfe,0x3b,0x77,0xbd,0x01,0x04,0x40,0x33,0x02,0x5c,
21581
+0x43,0x99,0x01,0x02,0x14,0x4a,0x39,0xfe,0x52,0x46,0xde,0xfc,
21582
+0xf9,0x3c,0x03,0x8e,0x01,0x35,0x48,0x47,0xfe,0x03,0xfc,0x3a,
21583
+0xe0,0x86,0xb1,0x00,0x00,0x01,0x00,0x78,0x00,0x00,0x07,0x38,
21584
+0x06,0x15,0x00,0x25,0x00,0x00,0x21,0x13,0x05,0x03,0x33,0x15,
21585
+0x23,0x07,0x23,0x37,0x05,0x07,0x23,0x13,0x23,0x35,0x33,0x37,
21586
+0x33,0x03,0x25,0x1b,0x01,0x23,0x35,0x33,0x35,0x33,0x13,0x07,
21587
+0x25,0x37,0x33,0x03,0x33,0x15,0x23,0x07,0x05,0x89,0xc1,0xfe,
21588
+0x3d,0x98,0x73,0x85,0x0a,0xd5,0x18,0xfe,0x40,0x10,0xce,0xc2,
21589
+0x76,0x87,0x0b,0xd2,0xc2,0x01,0xc1,0xb9,0x02,0x83,0x83,0xce,
21590
+0x01,0x1c,0x01,0xc7,0x09,0xd3,0xc1,0x75,0x86,0x0d,0x03,0x95,
21591
+0x4b,0xfd,0x3d,0x54,0x33,0x73,0x40,0x33,0x03,0x95,0x4a,0x38,
21592
+0xfc,0x70,0x3c,0x03,0x54,0x01,0x6e,0x49,0x47,0xfe,0x02,0x82,
21593
+0x4a,0x38,0xfc,0x70,0x54,0x33,0x00,0x00,0x00,0x01,0x00,0x78,
21594
+0x00,0x00,0x04,0xb1,0x06,0x15,0x00,0x19,0x00,0x00,0x21,0x37,
21595
+0x05,0x07,0x23,0x1b,0x01,0x23,0x35,0x33,0x35,0x33,0x0b,0x01,
21596
+0x25,0x13,0x23,0x35,0x33,0x37,0x33,0x03,0x33,0x15,0x23,0x07,
21597
+0x02,0xff,0x18,0xfe,0x40,0x0d,0xd2,0xe7,0x01,0x86,0x86,0xca,
21598
+0x01,0xc2,0x01,0xc1,0x9a,0x75,0x83,0x0d,0xd4,0xc2,0x74,0x86,
21599
+0x09,0x73,0x40,0x33,0x04,0x3d,0x01,0x49,0x48,0x47,0xfe,0x03,
21600
+0xfc,0x70,0x3b,0x02,0xd2,0x49,0x3a,0xfc,0x6f,0x54,0x33,0x00,
21601
+0x00,0x02,0x00,0x78,0xfe,0x3e,0x04,0x8e,0x04,0x17,0x00,0x07,
21602
+0x00,0x1e,0x00,0x00,0x01,0x36,0x07,0x05,0x03,0x25,0x36,0x37,
21603
+0x17,0x06,0x07,0x05,0x07,0x14,0x3b,0x01,0x15,0x23,0x20,0x11,
21604
+0x35,0x13,0x27,0x35,0x33,0x37,0x33,0x07,0x25,0x36,0x07,0x03,
21605
+0xa4,0x1e,0x5e,0xfe,0xa2,0xaf,0x01,0x5f,0x6c,0x14,0xd3,0x36,
21606
+0xa5,0xfe,0x10,0x01,0xc5,0xef,0xe3,0xfe,0x6a,0xbd,0x76,0x85,
21607
+0x0b,0xd4,0x0e,0x01,0xb9,0xed,0x2d,0x03,0x22,0x91,0x02,0x26,
21608
+0xfc,0xcb,0x2b,0x12,0x8b,0x06,0xd1,0x11,0x36,0x99,0xa7,0x82,
21609
+0x01,0x1f,0xbc,0x03,0x77,0x05,0x4a,0x38,0x38,0x38,0x19,0xa0,
21610
+0x00,0x01,0x00,0x78,0xfe,0x35,0x07,0x35,0x05,0x16,0x00,0x27,
21611
+0x00,0x00,0x01,0x26,0x3d,0x01,0x37,0x05,0x07,0x23,0x37,0x05,
21612
+0x07,0x23,0x13,0x27,0x35,0x3f,0x01,0x33,0x03,0x25,0x13,0x23,
21613
+0x35,0x33,0x3f,0x01,0x03,0x25,0x13,0x27,0x23,0x35,0x33,0x35,
21614
+0x33,0x11,0x03,0x07,0x14,0x17,0x06,0x1f,0x91,0x14,0xfe,0x3a,
21615
+0x07,0xd3,0x16,0xfe,0x3f,0x0d,0xd2,0xc2,0x74,0x85,0x0c,0xd2,
21616
+0xc0,0x01,0xc3,0x97,0x7a,0x8c,0x07,0xd7,0xc1,0x01,0xc2,0xb4,
21617
+0x02,0x85,0x85,0xcf,0xd6,0x01,0xb1,0xfe,0x35,0x62,0xbd,0xac,
21618
+0x73,0x40,0x33,0x73,0x40,0x33,0x03,0x90,0x05,0x4a,0x03,0x35,
21619
+0xfc,0x70,0x3d,0x02,0xd1,0x4a,0x38,0x01,0xfc,0x6f,0x3c,0x03,
21620
+0x55,0x78,0x49,0x3d,0xfe,0xe7,0xfc,0x03,0xb6,0x9b,0x7a,0x00,
21621
+0x00,0x03,0x00,0xae,0xfe,0x3e,0x06,0xce,0x04,0x6c,0x00,0x07,
21622
+0x00,0x0f,0x00,0x27,0x00,0x00,0x01,0x36,0x0f,0x01,0x03,0x25,
21623
+0x36,0x37,0x01,0x06,0x07,0x03,0x06,0x3f,0x01,0x13,0x01,0x06,
21624
+0x07,0x05,0x15,0x16,0x17,0x23,0x26,0x2f,0x01,0x05,0x04,0x1b,
21625
+0x01,0x36,0x2d,0x01,0x27,0x33,0x17,0x25,0x24,0x03,0x06,0x1e,
21626
+0x2a,0xea,0xdb,0xb8,0x01,0x29,0xa0,0x26,0xfc,0x88,0x4d,0x1f,
21627
+0x5b,0x35,0xc5,0xfe,0xb3,0x02,0xc6,0x22,0xdb,0xfe,0x59,0x11,
21628
+0x71,0xdb,0x61,0x0e,0x01,0xfe,0x91,0xfe,0xb9,0x4f,0x56,0x2b,
21629
+0x01,0x00,0x01,0x9c,0x09,0xc5,0x0c,0x01,0x2e,0x01,0x70,0x63,
21630
+0x03,0x0e,0xc3,0x25,0x22,0xfc,0xba,0x28,0x1b,0xaf,0x02,0x5b,
21631
+0x1b,0x94,0xfe,0x54,0xff,0x27,0x21,0x03,0x48,0xfd,0x40,0xa9,
21632
+0x1a,0x44,0xb0,0x7d,0x95,0x93,0x83,0xe6,0x3a,0x35,0x01,0x83,
21633
+0x01,0x94,0xcd,0x2e,0x3c,0x53,0x96,0x2f,0x3b,0xfe,0x2f,0x00,
21634
+0x00,0x01,0x00,0x78,0xfe,0x3c,0x06,0x70,0x06,0x15,0x00,0x27,
21635
+0x00,0x00,0x25,0x13,0x05,0x03,0x11,0x14,0x17,0x23,0x26,0x35,
21636
+0x11,0x13,0x05,0x07,0x23,0x13,0x23,0x35,0x33,0x37,0x33,0x03,
21637
+0x25,0x1b,0x01,0x23,0x35,0x33,0x35,0x33,0x11,0x03,0x25,0x37,
21638
+0x33,0x03,0x33,0x15,0x23,0x07,0x05,0x02,0x65,0xfe,0x6c,0x55,
21639
+0x94,0xe2,0x85,0x4f,0xfe,0x70,0x20,0xd2,0x82,0x76,0x85,0x0c,
21640
+0xd2,0x6b,0x01,0x90,0x63,0x01,0x86,0x86,0xce,0x55,0x01,0x90,
21641
+0x27,0xd0,0x7e,0x56,0x68,0x0c,0x87,0x01,0xe2,0x3e,0xfe,0x5c,
21642
+0xfe,0xf6,0xae,0x93,0x5d,0xb3,0x01,0x3b,0x01,0x80,0x3d,0x97,
21643
+0x02,0x62,0x4a,0x38,0xfe,0x08,0x3c,0x01,0xd3,0x01,0x67,0x48,
21644
+0x38,0xfe,0x03,0xfe,0x6c,0x3b,0xad,0xfd,0xaf,0x58,0x3c,0x00,
21645
+0x00,0x01,0x00,0x78,0x00,0x00,0x04,0xaf,0x04,0x18,0x00,0x17,
21646
+0x00,0x00,0x21,0x13,0x05,0x03,0x17,0x15,0x23,0x07,0x23,0x13,
21647
+0x23,0x35,0x33,0x37,0x33,0x07,0x25,0x3f,0x01,0x03,0x33,0x15,
21648
+0x23,0x07,0x02,0xf8,0xc7,0xfe,0x3d,0x98,0x73,0x84,0x09,0xd2,
21649
+0xc1,0x76,0x86,0x0b,0xd2,0x19,0x01,0xc3,0x0a,0xd5,0xc1,0x73,
21650
+0x85,0x0c,0x03,0x92,0x48,0xfd,0x3e,0x01,0x54,0x33,0x03,0x95,
21651
+0x4a,0x39,0x83,0x4c,0x35,0x02,0xfc,0x6f,0x54,0x33,0x00,0x00,
21652
+0x00,0x01,0x00,0x78,0xfe,0x3e,0x04,0xb3,0x04,0x18,0x00,0x18,
21653
+0x00,0x00,0x01,0x26,0x11,0x35,0x05,0x07,0x23,0x13,0x23,0x35,
21654
+0x33,0x37,0x17,0x03,0x25,0x13,0x23,0x35,0x33,0x37,0x33,0x03,
21655
+0x15,0x10,0x17,0x03,0xc0,0xa7,0xfe,0x3c,0x07,0xd6,0xc3,0x75,
21656
+0x88,0x0a,0xd4,0xc3,0x01,0xc1,0x99,0x74,0x84,0x0c,0xd4,0xc7,
21657
+0xa8,0xfe,0x3e,0xd2,0x01,0x18,0x4b,0x40,0x33,0x03,0x95,0x4a,
21658
+0x39,0x01,0xfc,0x70,0x3c,0x02,0xd2,0x4a,0x39,0xfc,0x66,0x54,
21659
+0xfe,0xf4,0xe0,0x00,0x00,0x01,0x00,0x78,0xfe,0x3c,0x04,0xb1,
21660
+0x04,0x18,0x00,0x18,0x00,0x00,0x25,0x02,0x21,0x07,0x35,0x33,
21661
+0x20,0x13,0x05,0x07,0x23,0x13,0x23,0x35,0x33,0x37,0x33,0x03,
21662
+0x25,0x13,0x23,0x35,0x33,0x37,0x33,0x04,0x02,0x90,0xfd,0xec,
21663
+0x27,0x2a,0x01,0x13,0xa3,0xfe,0x3f,0x0b,0xd3,0xc3,0x76,0x85,
21664
+0x0d,0xd2,0xc2,0x01,0xc2,0x99,0x74,0x83,0x0d,0xd3,0xe2,0xfd,
21665
+0x5c,0x02,0x7c,0x01,0xbb,0x40,0x33,0x03,0x95,0x4a,0x39,0xfc,
21666
+0x6f,0x3c,0x02,0xd2,0x49,0x3a,0x00,0x00,0x00,0x01,0x00,0xa8,
21667
+0xfe,0x3d,0x04,0xba,0x06,0x15,0x00,0x19,0x00,0x00,0x21,0x13,
21668
+0x05,0x03,0x02,0x05,0x21,0x00,0x1b,0x01,0x11,0x23,0x35,0x33,
21669
+0x35,0x33,0x11,0x07,0x25,0x3f,0x01,0x03,0x33,0x15,0x23,0x07,
21670
+0x03,0x08,0xc1,0xfe,0x3c,0x8e,0x51,0x01,0x44,0xfe,0xfd,0xfe,
21671
+0xf3,0x4e,0xb7,0x86,0x86,0xd1,0x1b,0x01,0xc4,0x0b,0xd6,0xc2,
21672
+0x73,0x85,0x0d,0x03,0x95,0x4b,0xfd,0x65,0xfe,0x83,0xf5,0x01,
21673
+0x10,0x01,0x76,0x03,0x52,0x01,0x78,0x48,0x40,0xfe,0x00,0x80,
21674
+0x4a,0x38,0x01,0xfc,0x6f,0x54,0x33,0x00,0x00,0x01,0x00,0xcd,
21675
+0xfe,0x3e,0x05,0x08,0x04,0x18,0x00,0x17,0x00,0x00,0x21,0x23,
21676
+0x13,0x05,0x03,0x02,0x21,0x15,0x04,0x1b,0x01,0x23,0x35,0x33,
21677
+0x37,0x33,0x07,0x25,0x3f,0x01,0x03,0x33,0x15,0x23,0x04,0x27,
21678
+0xd1,0xc2,0xfe,0x3b,0xb4,0x41,0x02,0x5f,0xfc,0xb1,0x5f,0xc2,
21679
+0x74,0x85,0x09,0xd6,0x1c,0x01,0xc4,0x0d,0xd4,0xc2,0x73,0x85,
21680
+0x03,0x95,0x4b,0xfc,0xb6,0xfe,0xc0,0x82,0x03,0x01,0xc3,0x03,
21681
+0x97,0x4a,0x38,0x82,0x4a,0x38,0x01,0xfc,0x6f,0x54,0x00,0x00,
21682
+0x00,0x02,0x00,0xaf,0x00,0x00,0x04,0xdc,0x06,0x15,0x00,0x09,
21683
+0x00,0x1e,0x00,0x00,0x01,0x06,0x07,0x03,0x06,0x3f,0x01,0x36,
21684
+0x37,0x13,0x3f,0x01,0x15,0x07,0x15,0x03,0x06,0x07,0x05,0x22,
21685
+0x1b,0x01,0x36,0x37,0x25,0x11,0x23,0x35,0x33,0x35,0x33,0x02,
21686
+0x4a,0x4e,0x1c,0x5d,0x37,0x89,0xe7,0x54,0x33,0x7c,0xc3,0x5a,
21687
+0x59,0x75,0x32,0xdb,0xfe,0x61,0xf4,0x41,0x56,0x2b,0xd9,0x01,
21688
+0xbf,0x84,0x84,0xb8,0x03,0x70,0x07,0x7a,0xfe,0x4e,0xfb,0x15,
21689
+0x24,0x0c,0xe2,0x02,0x3e,0x6e,0x0d,0x52,0x0c,0x51,0xfd,0xd0,
21690
+0xdd,0x24,0x42,0x01,0x33,0x01,0x94,0xce,0x21,0x42,0x01,0x95,
21691
+0x48,0x40,0x00,0x00,0x00,0x01,0x00,0xcf,0xfe,0x3e,0x07,0x63,
21692
+0x04,0x18,0x00,0x23,0x00,0x00,0x21,0x13,0x05,0x03,0x17,0x15,
21693
+0x23,0x07,0x27,0x13,0x05,0x03,0x02,0x05,0x21,0x00,0x1b,0x01,
21694
+0x23,0x35,0x33,0x37,0x33,0x07,0x25,0x37,0x33,0x07,0x25,0x37,
21695
+0x33,0x03,0x33,0x15,0x23,0x07,0x05,0xb2,0xc1,0xfe,0x3d,0x97,
21696
+0x73,0x86,0x0c,0xd1,0xc1,0xfe,0x3c,0x8a,0x58,0x01,0x59,0xfe,
21697
+0xe5,0xfe,0xf6,0x57,0x93,0x74,0x85,0x0d,0xd1,0x1b,0x01,0xc4,
21698
+0x0c,0xcf,0x15,0x01,0xc4,0x0e,0xd1,0xc2,0x72,0x83,0x0c,0x03,
21699
+0x95,0x4b,0xfd,0x3e,0x01,0x54,0x33,0x04,0x03,0x91,0x4b,0xfd,
21700
+0x79,0xfe,0x62,0xe7,0x00,0xff,0x01,0x9b,0x02,0xbd,0x4a,0x39,
21701
+0x83,0x4a,0x39,0x83,0x4a,0x39,0xfc,0x6f,0x54,0x33,0x00,0x00,
21702
+0x00,0x01,0x00,0x78,0xfe,0x3d,0x04,0xfb,0x04,0x19,0x00,0x25,
21703
+0x00,0x00,0x05,0x02,0x21,0x20,0x03,0x27,0x33,0x17,0x16,0x33,
21704
+0x20,0x37,0x26,0x21,0x20,0x37,0x13,0x27,0x35,0x33,0x37,0x33,
21705
+0x07,0x25,0x37,0x33,0x03,0x17,0x15,0x23,0x07,0x23,0x13,0x05,
21706
+0x03,0x06,0x33,0x20,0x04,0x41,0x02,0xfe,0x13,0xfe,0x4a,0x21,
21707
+0x03,0xd3,0x04,0x12,0xe5,0x01,0x47,0x02,0x02,0xfe,0x7b,0xfe,
21708
+0xca,0x2c,0x84,0x74,0x84,0x0d,0xd2,0x1c,0x01,0xc5,0x0d,0xd4,
21709
+0x7b,0x72,0x85,0x09,0xd4,0x78,0xfe,0x3d,0x6b,0x1f,0xa7,0x01,
21710
+0xe0,0x7f,0xfe,0xbc,0x01,0x0d,0x19,0x22,0x83,0xc4,0xd0,0xbf,
21711
+0x02,0x85,0x01,0x48,0x3a,0x82,0x4a,0x38,0xfd,0xc3,0x01,0x54,
21712
+0x34,0x02,0x44,0x4b,0xfe,0x04,0x8b,0x00,0x00,0x01,0x00,0xb8,
21713
+0xfe,0x3e,0x04,0xf1,0x04,0x18,0x00,0x1d,0x00,0x00,0x21,0x37,
21714
+0x05,0x07,0x02,0x25,0x33,0x15,0x23,0x04,0x1b,0x01,0x23,0x35,
21715
+0x33,0x37,0x33,0x03,0x25,0x13,0x23,0x35,0x33,0x37,0x33,0x03,
21716
+0x33,0x15,0x23,0x07,0x03,0x3e,0x16,0xfe,0x3e,0x09,0x2a,0x01,
21717
+0xe7,0x8f,0x81,0xfd,0x24,0x40,0xc1,0x75,0x84,0x0e,0xd2,0xc2,
21718
+0x01,0xc3,0x97,0x72,0x82,0x0d,0xd4,0xc1,0x72,0x86,0x0a,0x73,
21719
+0x40,0x33,0xfe,0xa9,0x17,0x82,0x01,0x01,0xc3,0x03,0x95,0x4a,
21720
+0x39,0xfc,0x6f,0x3c,0x02,0xd2,0x4a,0x39,0xfc,0x6f,0x54,0x33,
21721
+0x00,0x02,0x00,0x78,0xfe,0x3c,0x06,0x58,0x04,0x1f,0x00,0x03,
21722
+0x00,0x1d,0x00,0x00,0x01,0x37,0x05,0x1b,0x01,0x17,0x07,0x25,
21723
+0x03,0x01,0x15,0x23,0x35,0x01,0x03,0x05,0x07,0x27,0x37,0x23,
21724
+0x35,0x33,0x37,0x33,0x07,0x25,0x37,0x33,0x03,0x01,0x04,0xf9,
21725
+0x54,0xfd,0xfc,0xa4,0xf3,0xb2,0x0f,0xfe,0xe8,0xc4,0xfd,0x9f,
21726
+0xb4,0x02,0xd4,0xca,0xfe,0xfa,0x0f,0xca,0x31,0x76,0x87,0x0b,
21727
+0xd4,0x2c,0x03,0xc0,0x18,0xce,0xa1,0xfe,0x74,0x02,0x8e,0xdf,
21728
+0x5b,0xfe,0x9f,0xfd,0xe1,0x2b,0xb3,0x3e,0x01,0xba,0xfe,0x38,
21729
+0xa8,0xdb,0x02,0x2b,0x01,0xbb,0x2a,0x4d,0x04,0xe6,0x4a,0x3a,
21730
+0xc4,0x9c,0x53,0xfe,0x36,0xfe,0xc6,0x00,0x00,0x01,0x00,0x82,
21731
+0x00,0x00,0x07,0x44,0x04,0x18,0x00,0x23,0x00,0x00,0x01,0x23,
21732
+0x35,0x3f,0x01,0x33,0x07,0x25,0x37,0x33,0x03,0x25,0x13,0x23,
21733
+0x35,0x33,0x3f,0x01,0x03,0x33,0x15,0x23,0x07,0x23,0x37,0x05,
21734
+0x07,0x23,0x13,0x05,0x03,0x33,0x15,0x23,0x07,0x23,0x01,0x42,
21735
+0x74,0x85,0x0b,0xd3,0x18,0x01,0xc3,0x0a,0xd7,0xc2,0x01,0xc1,
21736
+0x9a,0x74,0x84,0x0c,0xd2,0xc3,0x72,0x81,0x0c,0xd0,0x15,0xfe,
21737
+0x3b,0x09,0xd4,0xc1,0xfe,0x3e,0x98,0x73,0x85,0x0b,0xd1,0x03,
21738
+0x96,0x48,0x01,0x38,0x80,0x48,0x38,0xfc,0x71,0x3b,0x02,0xd3,
21739
+0x48,0x39,0x01,0xfc,0x6f,0x54,0x33,0x73,0x40,0x33,0x03,0x95,
21740
+0x4b,0xfd,0x3c,0x53,0x33,0x00,0x00,0x00,0x00,0x01,0x00,0x78,
21741
+0xfe,0x3d,0x04,0x9c,0x06,0x15,0x00,0x15,0x00,0x00,0x01,0x13,
21742
+0x05,0x03,0x01,0x23,0x01,0x1b,0x01,0x21,0x15,0x21,0x13,0x07,
21743
+0x25,0x37,0x33,0x03,0x33,0x15,0x23,0x07,0x03,0x37,0x6e,0xfe,
21744
+0x3e,0x95,0x01,0xb6,0xec,0xfe,0x60,0xc2,0x01,0x01,0xfe,0xfe,
21745
+0xd2,0x02,0x1b,0x01,0xc3,0x0d,0xd5,0x6e,0x73,0x86,0x0c,0x01,
21746
+0x82,0x02,0x13,0x4b,0xfd,0x3e,0xfd,0xb5,0x02,0x4b,0x03,0x8f,
21747
+0x01,0xfe,0x58,0xfe,0x5a,0x82,0x4a,0x38,0xfd,0xf2,0x54,0x33,
21748
+0x00,0x01,0x00,0x9b,0xff,0xfb,0x04,0x79,0x04,0x9f,0x00,0x16,
21749
+0x00,0x00,0x01,0x06,0x07,0x05,0x04,0x3f,0x01,0x17,0x07,0x06,
21750
+0x37,0x25,0x36,0x37,0x13,0x36,0x05,0x23,0x13,0x33,0x07,0x24,
21751
+0x07,0x04,0x09,0x2f,0xdc,0xfe,0x8c,0xfe,0xe4,0x2d,0x41,0xcd,
21752
+0x3c,0x19,0x63,0x01,0x02,0x60,0x1c,0x6e,0x1b,0xfe,0xab,0xda,
21753
+0x4f,0xcd,0x46,0x02,0x45,0x31,0x01,0x1b,0xbd,0x2b,0x38,0x0f,
21754
+0xd7,0xf4,0x01,0xf3,0x79,0x0b,0x29,0x0f,0x8b,0x02,0x1f,0x76,
21755
+0x61,0x01,0x53,0xff,0x89,0xef,0x00,0x00,0x00,0x01,0x00,0x78,
21756
+0xfe,0x3e,0x04,0xb4,0x06,0x15,0x00,0x19,0x00,0x00,0x01,0x26,
21757
+0x3f,0x01,0x05,0x07,0x23,0x13,0x23,0x35,0x33,0x37,0x33,0x03,
21758
+0x25,0x1b,0x01,0x23,0x35,0x33,0x35,0x33,0x11,0x03,0x06,0x17,
21759
+0x03,0xa6,0xd7,0x32,0x15,0xfe,0x42,0x0c,0xd4,0xc2,0x74,0x84,
21760
+0x0e,0xd4,0xc3,0x01,0xc2,0xb4,0x02,0x83,0x83,0xd3,0xe1,0x30,
21761
+0xf5,0xfe,0x3e,0xdd,0xe5,0x73,0x40,0x33,0x03,0x95,0x4a,0x38,
21762
+0xfc,0x70,0x3c,0x03,0x54,0x01,0x76,0x49,0x3f,0xfe,0x03,0xfb,
21763
+0xe8,0xe5,0xdd,0x00,0x00,0x01,0x00,0x78,0xfe,0x3e,0x05,0x86,
21764
+0x04,0x18,0x00,0x23,0x00,0x00,0x21,0x37,0x07,0x15,0x14,0x17,
21765
+0x23,0x26,0x35,0x11,0x0f,0x01,0x23,0x13,0x23,0x35,0x33,0x37,
21766
+0x33,0x03,0x3f,0x01,0x33,0x07,0x37,0x13,0x23,0x35,0x33,0x3f,
21767
+0x01,0x03,0x33,0x15,0x23,0x07,0x03,0xd6,0x12,0xe3,0x94,0xe0,
21768
+0x6f,0xf2,0x0c,0xd4,0xc5,0x76,0x85,0x08,0xd7,0xc2,0xec,0x23,
21769
+0xbf,0x2d,0xee,0x9f,0x7b,0x8a,0x0d,0xd3,0xc2,0x73,0x85,0x0c,
21770
+0x5b,0x22,0xda,0xa4,0x7d,0x77,0x9f,0x01,0x00,0x21,0x33,0x03,
21771
+0x95,0x4a,0x38,0xfc,0x71,0x1c,0xaf,0xcb,0x1d,0x02,0xf0,0x4a,
21772
+0x38,0x01,0xfc,0x6f,0x54,0x33,0x00,0x00,0x00,0x02,0x00,0xc5,
21773
+0xff,0xfb,0x06,0x94,0x06,0x15,0x00,0x21,0x00,0x2b,0x00,0x00,
21774
+0x01,0x05,0x03,0x37,0x24,0x0b,0x01,0x33,0x15,0x23,0x07,0x23,
21775
+0x13,0x12,0x05,0x07,0x03,0x06,0x07,0x05,0x04,0x1b,0x01,0x36,
21776
+0x37,0x25,0x11,0x33,0x15,0x25,0x27,0x33,0x11,0x23,0x01,0x06,
21777
+0x07,0x03,0x06,0x3f,0x01,0x36,0x37,0x13,0x05,0x93,0xfe,0xf4,
21778
+0x01,0x5e,0x01,0xfa,0x4a,0x5b,0x3b,0x4c,0x0c,0xd1,0x75,0x36,
21779
+0xfe,0xd2,0x34,0x89,0x28,0xe6,0xfe,0xa5,0xfe,0xcc,0x57,0x5c,
21780
+0x1b,0xd5,0x01,0xc4,0xb2,0x01,0x0c,0x01,0xbc,0xbc,0xfc,0xdc,
21781
+0x70,0x17,0x64,0x2a,0x7c,0xcb,0x7e,0x16,0x8e,0x05,0xa2,0x43,
21782
+0xfe,0xa4,0x0f,0x51,0xfe,0x86,0xfe,0x5c,0x54,0x3f,0x02,0x2d,
21783
+0x01,0x00,0x2e,0x0e,0xfd,0x6b,0xbd,0x1e,0x38,0x27,0x01,0x9b,
21784
+0x01,0xb0,0x7d,0x18,0x44,0x02,0x1d,0x65,0x40,0x25,0xfe,0xd7,
21785
+0xfe,0x78,0x0f,0x70,0xfe,0x2c,0xc7,0x05,0x1e,0x14,0x7f,0x02,
21786
+0x98,0x00,0x00,0x00,0x00,0x03,0x00,0x8b,0xfe,0x70,0x03,0xe7,
21787
+0x04,0x7d,0x00,0x12,0x00,0x1d,0x00,0x26,0x00,0x00,0x01,0x0e,
21788
+0x01,0x23,0x22,0x24,0x35,0x34,0x36,0x37,0x35,0x33,0x11,0x13,
21789
+0x36,0x37,0x36,0x37,0x33,0x02,0x14,0x06,0x23,0x22,0x26,0x35,
21790
+0x34,0x36,0x33,0x32,0x03,0x13,0x06,0x07,0x06,0x15,0x14,0x17,
21791
+0x16,0x03,0xe7,0x6a,0xbf,0x54,0xde,0xfe,0xff,0xdd,0xdf,0x7b,
21792
+0x3a,0x18,0x14,0x48,0x16,0x61,0xdd,0x4d,0x39,0x37,0x4e,0x4e,
21793
+0x37,0x39,0xb3,0x35,0x53,0x34,0x5a,0x49,0x29,0xfe,0xcd,0x2f,
21794
+0x2e,0xd6,0xb6,0xba,0xec,0x33,0xfe,0xfe,0xed,0xfd,0x35,0x0d,
21795
+0x12,0x42,0x7b,0x04,0x5f,0x70,0x4e,0x4e,0x38,0x37,0x4e,0xfa,
21796
+0x65,0x02,0x7c,0x27,0x3c,0x65,0x9c,0x89,0x4f,0x2d,0x00,0x00,
21797
+0xff,0xff,0x00,0xd9,0x00,0x8c,0x05,0xdb,0x03,0x27,0x10,0x27,
21798
+0x09,0x26,0x01,0xfb,0xfe,0x4a,0x12,0x06,0x08,0xec,0x00,0x00,
21799
+0x00,0x01,0x00,0xb0,0x03,0x3a,0x02,0x81,0x06,0x14,0x00,0x05,
21800
+0x00,0x00,0x13,0x21,0x15,0x21,0x11,0x23,0xb0,0x01,0xd1,0xfe,
21801
+0xee,0xbf,0x06,0x14,0x6a,0xfd,0x90,0x00,0x00,0x01,0x00,0x9e,
21802
+0x03,0x3a,0x02,0x6f,0x06,0x14,0x00,0x05,0x00,0x00,0x01,0x21,
21803
+0x35,0x21,0x11,0x23,0x01,0xb0,0xfe,0xee,0x01,0xd1,0xbf,0x05,
21804
+0xaa,0x6a,0xfd,0x26,0x00,0x01,0x00,0xb0,0xfe,0xf2,0x02,0x81,
21805
+0x01,0xcc,0x00,0x05,0x00,0x00,0x05,0x21,0x15,0x21,0x11,0x33,
21806
+0x01,0x6f,0x01,0x12,0xfe,0x2f,0xbf,0xa4,0x6a,0x02,0xda,0x00,
21807
+0x00,0x01,0x00,0x9e,0xfe,0xf2,0x02,0x6f,0x01,0xcc,0x00,0x05,
21808
+0x00,0x00,0x01,0x21,0x35,0x21,0x11,0x33,0x02,0x6f,0xfe,0x2f,
21809
+0x01,0x12,0xbf,0xfe,0xf2,0x6a,0x02,0x70,0x00,0x02,0x00,0x8b,
21810
+0xff,0xe3,0x03,0xe7,0x05,0xf0,0x00,0x0a,0x00,0x21,0x00,0x00,
21811
+0x24,0x14,0x06,0x23,0x22,0x26,0x35,0x34,0x36,0x33,0x32,0x01,
21812
+0x11,0x23,0x2e,0x01,0x23,0x22,0x06,0x15,0x14,0x16,0x17,0x11,
21813
+0x23,0x35,0x2e,0x01,0x35,0x34,0x24,0x33,0x32,0x16,0x03,0x0a,
21814
+0x4d,0x39,0x37,0x4e,0x4e,0x37,0x39,0x01,0x2a,0x61,0x15,0x91,
21815
+0x72,0x7e,0x92,0xb3,0xb1,0x7b,0xdf,0xdd,0x01,0x01,0xde,0x54,
21816
+0xbf,0xa0,0x70,0x4d,0x4e,0x37,0x38,0x4e,0x04,0xa5,0xfe,0xfc,
21817
+0x7b,0x83,0x9e,0x89,0x9c,0xca,0x2b,0xfe,0xb8,0xfe,0x33,0xec,
21818
+0xba,0xb6,0xd6,0x2e,0xff,0xff,0x00,0xac,0xff,0xe3,0x04,0xe5,
21819
+0x05,0xf0,0x10,0x06,0x01,0x69,0x00,0x00,0xff,0xff,0x00,0x73,
21820
+0xff,0xe3,0x03,0xb2,0x04,0x44,0x10,0x06,0x01,0x6a,0x00,0x00,
21821
+0xff,0xff,0x00,0x71,0x00,0x00,0x02,0xb8,0x05,0xd5,0x10,0x06,
21822
+0x01,0x58,0x00,0x00,0xff,0xff,0x00,0x4a,0x00,0x00,0x02,0x63,
21823
+0x04,0x27,0x10,0x06,0x02,0x2b,0x00,0x00,0xff,0xff,0x00,0x46,
21824
+0x00,0x00,0x08,0x65,0x05,0xd5,0x10,0x26,0x03,0x94,0x00,0x00,
21825
+0x10,0x07,0x00,0x2c,0x05,0xad,0x00,0x00,0x00,0x03,0x00,0x3c,
21826
+0x00,0x00,0x06,0xd1,0x04,0x27,0x00,0x10,0x00,0x18,0x00,0x24,
21827
+0x00,0x00,0x01,0x23,0x15,0x23,0x11,0x21,0x15,0x23,0x11,0x33,
21828
+0x20,0x11,0x10,0x29,0x01,0x35,0x3b,0x02,0x32,0x36,0x34,0x26,
21829
+0x2b,0x01,0x01,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,
21830
+0x21,0x15,0x01,0xa8,0xf4,0x78,0x02,0xca,0xa6,0xc3,0x01,0x9e,
21831
+0xfe,0x81,0xfd,0xb6,0xb0,0xb8,0xe3,0x65,0x76,0x77,0x64,0xe3,
21832
+0x03,0xcb,0xa6,0xfd,0xfc,0xa6,0xa6,0x02,0x04,0x03,0xbd,0xa2,
21833
+0x01,0x0c,0x6a,0xfe,0xb2,0xfe,0xc5,0xfe,0xcc,0x6a,0x70,0xb8,
21834
+0x6f,0x01,0xba,0xfc,0xaf,0x6a,0x6a,0x03,0x53,0x6a,0x6c,0x00,
21835
+0x00,0x02,0x00,0x86,0xff,0xe3,0x09,0x1b,0x05,0xf0,0x00,0x1c,
21836
+0x00,0x28,0x00,0x00,0x25,0x11,0x21,0x02,0x07,0x06,0x21,0x20,
21837
+0x00,0x11,0x10,0x00,0x21,0x20,0x17,0x16,0x13,0x21,0x11,0x23,
21838
+0x35,0x21,0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x05,0x32,0x12,
21839
+0x11,0x10,0x02,0x23,0x22,0x02,0x11,0x10,0x12,0x07,0x92,0xfe,
21840
+0x9d,0x0f,0xcd,0xc5,0xfe,0xcd,0xfe,0xce,0xfe,0x5d,0x01,0x90,
21841
+0x01,0x45,0x01,0x33,0xc0,0xc1,0x1c,0x01,0x67,0xbe,0x02,0x47,
21842
+0xbe,0xbe,0xfd,0xb9,0xfc,0x87,0xf6,0xfa,0xfa,0xf6,0xf5,0xfa,
21843
+0xfa,0x6a,0x02,0x4c,0xfe,0xbf,0xcd,0xc5,0x01,0xa1,0x01,0x65,
21844
+0x01,0x5d,0x01,0xaa,0xc0,0xc1,0xfe,0xe3,0x02,0x18,0x6b,0x6b,
21845
+0xfb,0x00,0x6a,0x6a,0x1c,0x01,0x51,0x01,0x4b,0x01,0x4a,0x01,
21846
+0x51,0xfe,0xaf,0xfe,0xb6,0xfe,0xb5,0xfe,0xaf,0x00,0x00,0x00,
21847
+0x00,0x02,0x00,0x5d,0xff,0xe3,0x06,0xbc,0x04,0x44,0x00,0x1a,
21848
+0x00,0x23,0x00,0x00,0x01,0x23,0x06,0x07,0x06,0x23,0x22,0x00,
21849
+0x10,0x00,0x20,0x17,0x16,0x17,0x33,0x11,0x23,0x35,0x21,0x15,
21850
+0x23,0x11,0x33,0x15,0x21,0x35,0x33,0x05,0x32,0x36,0x10,0x26,
21851
+0x20,0x06,0x10,0x16,0x05,0x53,0xf6,0x0f,0x7a,0x8b,0xea,0xe9,
21852
+0xfe,0xe7,0x01,0x19,0x01,0xd2,0x8d,0x7e,0x0b,0xf5,0xa6,0x02,
21853
+0x0f,0xb1,0xa6,0xfd,0xfc,0xa6,0xfd,0x0c,0x93,0x98,0x97,0xfe,
21854
+0xd8,0x97,0x97,0x01,0xcf,0xcc,0x87,0x99,0x01,0x33,0x01,0xfc,
21855
+0x01,0x32,0x99,0x8c,0xd9,0x01,0x76,0x6b,0x69,0xfc,0xac,0x6a,
21856
+0x6a,0x24,0xea,0x01,0xc8,0xe9,0xe9,0xfe,0x38,0xea,0x00,0x00,
21857
+0x00,0x02,0x00,0x71,0x00,0x00,0x09,0x32,0x05,0xd5,0x00,0x1f,
21858
+0x00,0x22,0x00,0x00,0x21,0x35,0x33,0x13,0x21,0x11,0x33,0x15,
21859
+0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x13,
21860
+0x33,0x01,0x33,0x15,0x21,0x35,0x33,0x03,0x21,0x03,0x33,0x15,
21861
+0x13,0x21,0x01,0x03,0x4b,0x83,0xe2,0xfd,0x4a,0xbe,0xfd,0xb9,
21862
+0xbe,0xbe,0x02,0x47,0xbe,0x02,0xf1,0xf7,0xa8,0x02,0x15,0x93,
21863
+0xfd,0xe1,0xa6,0x7d,0xfd,0x8c,0x7d,0xa4,0x02,0x02,0x24,0xfe,
21864
+0xee,0x6a,0x02,0x4c,0xfd,0xb4,0x6a,0x6a,0x05,0x00,0x6b,0x6b,
21865
+0xfd,0xe8,0x02,0x83,0xfa,0x95,0x6a,0x6a,0x01,0x48,0xfe,0xb8,
21866
+0x6a,0x02,0x1d,0x02,0xc6,0x00,0x00,0x00,0x00,0x02,0x00,0x3b,
21867
+0xff,0xe3,0x06,0xf7,0x04,0x44,0x00,0x2d,0x00,0x38,0x00,0x00,
21868
+0x01,0x11,0x33,0x15,0x21,0x35,0x0e,0x01,0x23,0x22,0x26,0x35,
21869
+0x34,0x37,0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,
21870
+0x21,0x15,0x23,0x11,0x21,0x36,0x33,0x21,0x35,0x34,0x26,0x23,
21871
+0x22,0x06,0x07,0x23,0x35,0x3e,0x01,0x33,0x32,0x16,0x03,0x35,
21872
+0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x06,0x53,0xa4,
21873
+0xfe,0xa4,0x3d,0xa0,0x6b,0xb1,0xd0,0x1d,0xfe,0xb5,0xa6,0xfd,
21874
+0xfc,0xa6,0xb1,0x02,0x0f,0xa6,0x01,0xae,0x77,0xd0,0x01,0x02,
21875
+0x93,0x85,0x6e,0x82,0x10,0x5f,0x60,0xb5,0x56,0xdd,0xe7,0xb8,
21876
+0xed,0x89,0x86,0x88,0x74,0x73,0x8d,0x02,0x98,0xfd,0xd2,0x6a,
21877
+0x73,0x4a,0x46,0xbc,0xa0,0x51,0x3f,0xfe,0x9b,0x6a,0x6a,0x03,
21878
+0x54,0x69,0x6b,0xfe,0x8a,0x54,0x49,0x79,0x85,0x64,0x62,0xd7,
21879
+0x29,0x29,0xdb,0xfd,0xe5,0xe1,0x76,0x7a,0x6f,0x82,0x8e,0x00,
21880
+0x00,0x02,0x00,0xd6,0x00,0x00,0x03,0x1d,0x05,0x58,0x00,0x03,
21881
+0x00,0x07,0x00,0x00,0x13,0x33,0x15,0x23,0x01,0x11,0x33,0x11,
21882
+0xd6,0xaa,0xaa,0x01,0xbf,0x88,0x05,0x58,0x88,0xfb,0x30,0x05,
21883
+0x58,0xfa,0xa8,0x00,0x00,0x02,0x00,0xd6,0x00,0x00,0x03,0x1d,
21884
+0x05,0x58,0x00,0x03,0x00,0x07,0x00,0x00,0x13,0x33,0x15,0x23,
21885
+0x01,0x11,0x33,0x11,0xd6,0xaa,0xaa,0x01,0xbf,0x88,0x04,0x24,
21886
+0x88,0xfc,0x64,0x05,0x58,0xfa,0xa8,0x00,0x00,0x02,0x00,0xd6,
21887
+0x00,0x00,0x03,0x1d,0x05,0x58,0x00,0x03,0x00,0x07,0x00,0x00,
21888
+0x13,0x33,0x15,0x23,0x01,0x11,0x33,0x11,0xd6,0xaa,0xaa,0x01,
21889
+0xbf,0x88,0x02,0xf0,0x88,0xfd,0x98,0x05,0x58,0xfa,0xa8,0x00,
21890
+0x00,0x02,0x00,0xd6,0x00,0x00,0x03,0x1d,0x05,0x58,0x00,0x03,
21891
+0x00,0x07,0x00,0x00,0x13,0x33,0x15,0x23,0x01,0x11,0x33,0x11,
21892
+0xd6,0xaa,0xaa,0x01,0xbf,0x88,0x01,0xbc,0x88,0xfe,0xcc,0x05,
21893
+0x58,0xfa,0xa8,0x00,0x00,0x02,0x00,0xd6,0x00,0x00,0x03,0x1d,
21894
+0x05,0x58,0x00,0x03,0x00,0x07,0x00,0x00,0x37,0x33,0x15,0x23,
21895
+0x01,0x33,0x11,0x23,0xd6,0xaa,0xaa,0x01,0xbf,0x88,0x88,0x88,
21896
+0x88,0x05,0x58,0xfa,0xa8,0x00,0x00,0x00,0x00,0x02,0x00,0xd6,
21897
+0x00,0x00,0x03,0x1d,0x05,0x58,0x00,0x03,0x00,0x07,0x00,0x00,
21898
+0x01,0x33,0x15,0x23,0x01,0x23,0x11,0x33,0x02,0x73,0xaa,0xaa,
21899
+0xfe,0xeb,0x88,0x88,0x05,0x58,0x88,0xfb,0x30,0x05,0x58,0x00,
21900
+0x00,0x02,0x00,0xd6,0x00,0x00,0x03,0x1d,0x05,0x58,0x00,0x03,
21901
+0x00,0x07,0x00,0x00,0x01,0x33,0x15,0x23,0x01,0x23,0x11,0x33,
21902
+0x02,0x73,0xaa,0xaa,0xfe,0xeb,0x88,0x88,0x04,0x24,0x88,0xfc,
21903
+0x64,0x05,0x58,0x00,0x00,0x02,0x00,0xd6,0x00,0x00,0x03,0x1d,
21904
+0x05,0x58,0x00,0x03,0x00,0x07,0x00,0x00,0x01,0x33,0x15,0x23,
21905
+0x01,0x23,0x11,0x33,0x02,0x73,0xaa,0xaa,0xfe,0xeb,0x88,0x88,
21906
+0x02,0xf0,0x88,0xfd,0x98,0x05,0x58,0x00,0x00,0x02,0x00,0xd6,
21907
+0x00,0x00,0x03,0x1d,0x05,0x58,0x00,0x03,0x00,0x07,0x00,0x00,
21908
+0x01,0x33,0x15,0x23,0x01,0x23,0x11,0x33,0x02,0x73,0xaa,0xaa,
21909
+0xfe,0xeb,0x88,0x88,0x01,0xbc,0x88,0xfe,0xcc,0x05,0x58,0x00,
21910
+0x00,0x02,0x00,0xd6,0x00,0x00,0x03,0x1d,0x05,0x58,0x00,0x03,
21911
+0x00,0x07,0x00,0x00,0x25,0x33,0x15,0x23,0x21,0x23,0x11,0x33,
21912
+0x02,0x73,0xaa,0xaa,0xfe,0xeb,0x88,0x88,0x88,0x88,0x05,0x58,
21913
+0x00,0x01,0x00,0xd6,0x00,0x00,0x03,0x1d,0x05,0x58,0x00,0x05,
21914
+0x00,0x00,0x21,0x23,0x11,0x21,0x15,0x21,0x01,0x5e,0x88,0x02,
21915
+0x47,0xfe,0x41,0x05,0x58,0x88,0x00,0x00,0x00,0x01,0x00,0xd6,
21916
+0x00,0x00,0x03,0x1d,0x05,0x58,0x00,0x07,0x00,0x00,0x21,0x23,
21917
+0x11,0x33,0x11,0x21,0x15,0x21,0x01,0x5e,0x88,0x88,0x01,0xbf,
21918
+0xfe,0x41,0x05,0x58,0xfe,0xcc,0x88,0x00,0x00,0x01,0x00,0xd6,
21919
+0x00,0x00,0x03,0x1d,0x05,0x58,0x00,0x07,0x00,0x00,0x21,0x23,
21920
+0x11,0x33,0x11,0x21,0x15,0x21,0x01,0x5e,0x88,0x88,0x01,0xbf,
21921
+0xfe,0x41,0x05,0x58,0xfd,0x98,0x88,0x00,0x00,0x01,0x00,0xd6,
21922
+0x00,0x00,0x03,0x1d,0x05,0x58,0x00,0x07,0x00,0x00,0x21,0x23,
21923
+0x11,0x33,0x11,0x21,0x15,0x21,0x01,0x5e,0x88,0x88,0x01,0xbf,
21924
+0xfe,0x41,0x05,0x58,0xfc,0x64,0x88,0x00,0x00,0x01,0x00,0xd6,
21925
+0x00,0x00,0x03,0x1d,0x05,0x58,0x00,0x05,0x00,0x00,0x25,0x21,
21926
+0x15,0x21,0x11,0x33,0x01,0x5e,0x01,0xbf,0xfd,0xb9,0x88,0x88,
21927
+0x88,0x05,0x58,0x00,0x00,0x01,0x00,0x73,0x02,0x9c,0x02,0x81,
21928
+0x05,0xf1,0x00,0x09,0x00,0x00,0x01,0x11,0x07,0x35,0x25,0x33,
21929
+0x05,0x15,0x27,0x11,0x01,0x47,0xd4,0x01,0x04,0x06,0x01,0x04,
21930
+0xd4,0x02,0x9c,0x02,0xd1,0x6c,0x06,0xea,0xea,0x06,0x6c,0xfd,
21931
+0x2f,0x00,0x00,0x00,0x00,0x01,0x00,0x73,0x02,0x85,0x02,0x81,
21932
+0x05,0xda,0x00,0x09,0x00,0x00,0x01,0x11,0x37,0x15,0x05,0x23,
21933
+0x25,0x35,0x17,0x11,0x01,0xad,0xd4,0xfe,0xfc,0x06,0xfe,0xfc,
21934
+0xd4,0x05,0xda,0xfd,0x2f,0x6c,0x06,0xea,0xea,0x06,0x6c,0x02,
21935
+0xd1,0x00,0x00,0x00,0x00,0x02,0x00,0xb0,0x02,0x8c,0x01,0x57,
21936
+0x05,0xe0,0x00,0x0b,0x00,0x11,0x00,0x00,0x13,0x34,0x36,0x33,
21937
+0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x13,0x33,0x03,0x15,
21938
+0x23,0x35,0xb0,0x30,0x24,0x22,0x31,0x31,0x22,0x24,0x30,0x02,
21939
+0xa3,0x2b,0x4e,0x02,0xd6,0x20,0x2b,0x2b,0x20,0x1f,0x2b,0x2b,
21940
+0x03,0x29,0xfe,0x34,0x8d,0x8d,0x00,0x00,0x00,0x02,0x00,0xb0,
21941
+0x02,0x9c,0x01,0x57,0x05,0xf0,0x00,0x0b,0x00,0x11,0x00,0x00,
21942
+0x13,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,
21943
+0x1b,0x01,0x35,0x33,0x15,0x13,0xb0,0x30,0x24,0x22,0x31,0x31,
21944
+0x22,0x24,0x30,0x02,0x2a,0x4e,0x2b,0x05,0xa6,0x1f,0x2b,0x2b,
21945
+0x1f,0x20,0x2b,0x2b,0xfd,0x16,0x01,0xcc,0x8d,0x8d,0xfe,0x34,
21946
+0xff,0xff,0x00,0xb0,0x00,0x00,0x01,0x57,0x03,0x54,0x10,0x07,
21947
+0x0c,0x86,0x00,0x00,0xfd,0x64,0x00,0x00,0x00,0x01,0x00,0x71,
21948
+0xfe,0x56,0x06,0x89,0x05,0xd5,0x00,0x24,0x00,0x00,0x33,0x35,
21949
+0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x11,0x23,0x35,
21950
+0x21,0x15,0x23,0x11,0x14,0x06,0x23,0x22,0x26,0x27,0x35,0x33,
21951
+0x1e,0x01,0x33,0x32,0x36,0x35,0x11,0x21,0x11,0x33,0x15,0x71,
21952
+0xbe,0xbe,0x02,0x47,0xbe,0x03,0x06,0xbe,0x02,0x47,0xbe,0xc6,
21953
+0xdc,0x47,0x93,0x49,0x72,0x03,0x58,0x58,0x77,0x5e,0xfc,0xfa,
21954
+0xbe,0x6a,0x05,0x00,0x6b,0x6b,0xfd,0xfc,0x02,0x04,0x6b,0x6b,
21955
+0xfa,0xbf,0xf7,0xdc,0x22,0x22,0xeb,0x63,0x61,0x96,0xda,0x02,
21956
+0xbb,0xfd,0x7e,0x6a,0x00,0x01,0x00,0x4a,0xfe,0x39,0x04,0x4a,
21957
+0x06,0x14,0x00,0x26,0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,
21958
+0x21,0x11,0x3e,0x01,0x33,0x32,0x16,0x15,0x11,0x14,0x06,0x23,
21959
+0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x11,
21960
+0x34,0x26,0x23,0x22,0x06,0x15,0x11,0x33,0x15,0x54,0xa6,0xb0,
21961
+0x01,0x68,0x33,0xa3,0x6c,0xb0,0xa6,0xc3,0xab,0x48,0x83,0x3e,
21962
+0x5f,0x07,0x55,0x52,0x5b,0x56,0x5f,0x7a,0x80,0x86,0xa0,0x6a,
21963
+0x05,0x40,0x6a,0xfd,0x56,0x6c,0x6e,0xca,0xd6,0xfc,0xf4,0xa4,
21964
+0xbb,0x21,0x21,0xdb,0x60,0x5a,0x7b,0x81,0x02,0xd2,0xc3,0x8f,
21965
+0xba,0xb2,0xfe,0x1a,0x6a,0x00,0x00,0x00,0x00,0x01,0x00,0x14,
21966
+0xfe,0x36,0x06,0x83,0x05,0xd5,0x00,0x2c,0x00,0x00,0x21,0x35,
21967
+0x33,0x11,0x21,0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x11,
21968
+0x21,0x15,0x01,0x17,0x1e,0x01,0x15,0x14,0x04,0x21,0x22,0x26,
21969
+0x27,0x11,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x34,0x26,0x2b,
21970
+0x01,0x35,0x01,0x21,0x11,0x33,0x15,0x01,0x87,0xbf,0xfe,0x49,
21971
+0x7b,0x05,0x2e,0x7b,0xfe,0x49,0x03,0x12,0xfe,0x8f,0x4f,0xb8,
21972
+0xcb,0xfe,0xe7,0xfe,0xf8,0x75,0xdf,0x6e,0x70,0x0a,0xae,0x9e,
21973
+0x99,0xb1,0xb6,0xb0,0x5f,0x01,0x4a,0xfd,0xdb,0xbf,0x6a,0x04,
21974
+0xf4,0xe9,0x01,0x60,0xfe,0xa0,0xe9,0xfe,0xc9,0x56,0xfe,0x1d,
21975
+0x07,0x1d,0xf1,0xc0,0xea,0xf9,0x38,0x39,0x01,0x44,0xa1,0xa6,
21976
+0xc7,0xac,0xc5,0xcb,0x66,0x01,0xaf,0xfc,0xae,0x6a,0x00,0x00,
21977
+0x00,0x02,0x00,0x3b,0xfe,0x36,0x05,0xce,0x05,0x71,0x00,0x1a,
21978
+0x00,0x36,0x00,0x00,0x01,0x23,0x35,0x01,0x21,0x11,0x14,0x16,
21979
+0x33,0x32,0x36,0x37,0x33,0x06,0x07,0x06,0x07,0x1e,0x01,0x33,
21980
+0x32,0x37,0x36,0x35,0x34,0x27,0x26,0x01,0x23,0x35,0x33,0x11,
21981
+0x33,0x11,0x21,0x15,0x01,0x17,0x16,0x17,0x16,0x15,0x14,0x07,
21982
+0x06,0x21,0x22,0x27,0x26,0x27,0x11,0x26,0x27,0x26,0x35,0x03,
21983
+0x95,0x5f,0x01,0x4a,0xfd,0x16,0x34,0x46,0x48,0x42,0x02,0x8b,
21984
+0x08,0x47,0x2f,0x4e,0x0a,0xae,0x9e,0x99,0x59,0x58,0x5b,0x5b,
21985
+0xfc,0x98,0xa2,0xa2,0xb9,0x03,0xd7,0xfe,0x8f,0x4f,0xb8,0x66,
21986
+0x65,0x8d,0x8c,0xfe,0xf8,0x75,0x6f,0x70,0x6e,0x8e,0x3e,0x42,
21987
+0x01,0xa7,0x66,0x01,0xaf,0xfd,0x5d,0x87,0x4c,0x55,0x5f,0x91,
21988
+0x43,0x2c,0x0f,0xa1,0xa6,0x64,0x63,0xac,0xc5,0x66,0x65,0x02,
21989
+0x15,0x6b,0x01,0x4a,0xfe,0xb6,0x56,0xfe,0x1d,0x07,0x1d,0x79,
21990
+0x78,0xc0,0xea,0x7d,0x7c,0x1c,0x1c,0x39,0x01,0x3c,0x05,0x42,
21991
+0x46,0xa9,0x00,0x00,0x00,0x01,0x00,0x58,0xff,0xe3,0x04,0x4d,
21992
+0x05,0xf0,0x00,0x2d,0x00,0x00,0x13,0x34,0x24,0x21,0x32,0x16,
21993
+0x17,0x11,0x23,0x34,0x26,0x23,0x22,0x06,0x15,0x14,0x17,0x36,
21994
+0x35,0x33,0x14,0x07,0x16,0x33,0x15,0x22,0x27,0x06,0x15,0x14,
21995
+0x16,0x33,0x32,0x36,0x37,0x33,0x11,0x0e,0x01,0x23,0x20,0x24,
21996
+0x35,0x34,0x37,0x26,0x88,0x01,0x19,0x01,0x08,0x75,0xa3,0x6e,
21997
+0x70,0x7c,0x9e,0x99,0x9f,0x46,0xb5,0x70,0xb8,0x66,0x9a,0xd5,
21998
+0x90,0x7e,0x9d,0xad,0x9e,0xae,0x0a,0x70,0x6e,0xdf,0x75,0xfe,
21999
+0xe4,0xfe,0xe9,0xdf,0xaf,0x04,0x42,0xd1,0xdd,0x32,0x33,0xfe,
22000
+0xde,0x90,0x94,0xb1,0x9a,0xca,0x2b,0xa1,0x54,0x94,0xa8,0x29,
22001
+0x66,0x2f,0x8b,0xa8,0x9d,0x90,0x94,0x90,0xfe,0xde,0x33,0x32,
22002
+0xce,0xc4,0xa7,0xc8,0x72,0x00,0x00,0x00,0x00,0x01,0x00,0x66,
22003
+0xff,0xe3,0x04,0x08,0x05,0xf0,0x00,0x29,0x00,0x00,0x05,0x22,
22004
+0x24,0x35,0x34,0x36,0x37,0x2e,0x01,0x35,0x34,0x36,0x33,0x32,
22005
+0x16,0x17,0x11,0x23,0x2e,0x01,0x23,0x22,0x06,0x15,0x14,0x16,
22006
+0x3b,0x01,0x15,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,
22007
+0x37,0x33,0x0e,0x01,0x02,0x59,0xee,0xfe,0xfb,0xe0,0xa7,0x8a,
22008
+0xbc,0xde,0xc1,0x5e,0xa5,0x75,0x70,0x0d,0x63,0x87,0x71,0x68,
22009
+0x84,0x9c,0x32,0x5f,0x99,0x9b,0x94,0x84,0x77,0x8e,0x1a,0x94,
22010
+0x27,0xd8,0x1d,0xee,0xc2,0x9c,0xdd,0x23,0x21,0xbe,0x7d,0x9a,
22011
+0xcb,0x2e,0x2c,0xfe,0xf9,0x7e,0x80,0x9c,0x72,0x7c,0xa7,0x66,
22012
+0xc6,0x9f,0x87,0xc4,0x7c,0x7d,0xaa,0xb2,0x00,0x02,0x00,0x3f,
22013
+0xff,0xe3,0x04,0x31,0x05,0xd5,0x00,0x02,0x00,0x18,0x00,0x00,
22014
+0x09,0x01,0x21,0x01,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x37,
22015
+0x21,0x35,0x01,0x33,0x11,0x33,0x15,0x23,0x0e,0x01,0x23,0x22,
22016
+0x26,0x02,0xa8,0xfe,0x25,0x01,0xdb,0xfe,0x06,0x72,0x03,0x58,
22017
+0x58,0x77,0x5c,0x02,0xfd,0x97,0x02,0x69,0xcb,0xbe,0xbe,0x02,
22018
+0xc4,0xdc,0x47,0x93,0x04,0xfc,0xfd,0x1d,0xfe,0x0e,0xeb,0x63,
22019
+0x61,0x93,0xcd,0x6d,0x03,0xba,0xfc,0x44,0x6b,0xf1,0xda,0x22,
22020
+0x00,0x02,0x00,0x3f,0xfe,0x39,0x04,0x0e,0x04,0x27,0x00,0x17,
22021
+0x00,0x1a,0x00,0x00,0x21,0x15,0x14,0x06,0x23,0x22,0x26,0x27,
22022
+0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x3d,0x01,0x21,0x35,0x01,
22023
+0x33,0x11,0x33,0x15,0x25,0x11,0x01,0x03,0x60,0xc3,0xab,0x48,
22024
+0x83,0x3e,0x5f,0x07,0x55,0x52,0x5b,0x57,0xfd,0x97,0x02,0x69,
22025
+0xb8,0xae,0xfe,0x9a,0xfe,0x25,0x68,0xa4,0xbb,0x21,0x21,0xdb,
22026
+0x60,0x5a,0x7b,0x81,0x68,0x6d,0x03,0xba,0xfc,0x44,0x6b,0x6b,
22027
+0x02,0xe3,0xfd,0x1d,0x00,0x03,0x00,0x3f,0xff,0x43,0x04,0xd6,
22028
+0x05,0xd5,0x00,0x10,0x00,0x13,0x00,0x29,0x00,0x00,0x01,0x32,
22029
+0x17,0x16,0x15,0x14,0x07,0x27,0x36,0x37,0x26,0x27,0x26,0x35,
22030
+0x34,0x37,0x36,0x09,0x01,0x21,0x01,0x35,0x33,0x1e,0x01,0x33,
22031
+0x32,0x36,0x37,0x21,0x35,0x01,0x33,0x11,0x21,0x15,0x21,0x0e,
22032
+0x01,0x23,0x22,0x26,0x04,0x3d,0x44,0x28,0x19,0xa1,0x4a,0x4f,
22033
+0x0b,0x31,0x22,0x26,0x36,0x22,0xfe,0x98,0xfe,0x25,0x01,0xdb,
22034
+0xfe,0x06,0x72,0x03,0x58,0x58,0x77,0x5c,0x02,0xfd,0x97,0x02,
22035
+0x69,0xcb,0x01,0x63,0xfe,0x9d,0x02,0xc4,0xdc,0x47,0x93,0x01,
22036
+0x0b,0x37,0x23,0x2c,0xcd,0x75,0x1d,0x4c,0x54,0x04,0x22,0x26,
22037
+0x39,0x46,0x27,0x19,0x03,0xf1,0xfd,0x1d,0xfe,0x0e,0xeb,0x63,
22038
+0x61,0x93,0xcd,0x6d,0x03,0xba,0xfc,0x44,0x6b,0xf1,0xda,0x22,
22039
+0x00,0x03,0x00,0x3f,0xfe,0x10,0x04,0xaf,0x04,0x27,0x00,0x10,
22040
+0x00,0x28,0x00,0x2b,0x00,0x00,0x05,0x32,0x17,0x16,0x15,0x14,
22041
+0x07,0x27,0x36,0x37,0x26,0x27,0x26,0x27,0x34,0x37,0x36,0x27,
22042
+0x15,0x14,0x06,0x23,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,
22043
+0x32,0x36,0x3d,0x01,0x21,0x35,0x01,0x33,0x11,0x21,0x15,0x25,
22044
+0x11,0x01,0x04,0x31,0x36,0x20,0x14,0x81,0x3b,0x3f,0x09,0x27,
22045
+0x1b,0x1e,0x01,0x2c,0x1b,0xad,0xc3,0xab,0x48,0x83,0x3e,0x5f,
22046
+0x07,0x55,0x52,0x5b,0x57,0xfd,0x97,0x02,0x69,0xb8,0x01,0x4f,
22047
+0xfd,0xf9,0xfe,0x25,0x83,0x2c,0x1c,0x23,0xa1,0x61,0x17,0x3d,
22048
+0x43,0x03,0x1c,0x1e,0x2e,0x36,0x21,0x14,0x83,0x68,0xa4,0xbb,
22049
+0x21,0x21,0xdb,0x60,0x5a,0x7b,0x81,0x68,0x6d,0x03,0xba,0xfc,
22050
+0x44,0x6b,0x6b,0x02,0xe3,0xfd,0x1d,0x00,0x00,0x01,0x00,0x3b,
22051
+0x00,0x00,0x03,0xec,0x04,0x27,0x00,0x15,0x00,0x00,0x01,0x11,
22052
+0x23,0x35,0x21,0x11,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x11,
22053
+0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x03,0xec,0x6a,0xfe,
22054
+0x18,0x01,0x14,0x6a,0x6a,0xfe,0xec,0xa7,0xfd,0xfa,0xa7,0xa7,
22055
+0x04,0x27,0xfe,0xdf,0xa6,0xfe,0xbf,0x86,0xfe,0x9e,0x72,0xfe,
22056
+0x69,0x6a,0x6a,0x03,0x53,0x6a,0x00,0x00,0x00,0x01,0x00,0x73,
22057
+0xff,0xe3,0x03,0xb2,0x04,0x44,0x00,0x2d,0x00,0x00,0x17,0x11,
22058
+0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x34,0x26,0x2f,0x01,0x2e,
22059
+0x01,0x35,0x34,0x36,0x33,0x32,0x16,0x17,0x35,0x33,0x11,0x23,
22060
+0x2e,0x01,0x23,0x22,0x06,0x15,0x14,0x16,0x1f,0x01,0x1e,0x01,
22061
+0x15,0x14,0x06,0x23,0x22,0x26,0x27,0x15,0x73,0x6a,0x04,0x8d,
22062
+0x8a,0x7c,0x82,0x5f,0x99,0x85,0x89,0x7b,0xd6,0xbd,0x54,0x87,
22063
+0x2c,0x6a,0x6a,0x04,0x88,0x75,0x74,0x77,0x5b,0x86,0x92,0x96,
22064
+0x86,0xe7,0xcb,0x67,0x8f,0x2d,0x1d,0x01,0x50,0x77,0x76,0x5d,
22065
+0x59,0x46,0x56,0x31,0x2d,0x2c,0x84,0x66,0x92,0xa6,0x20,0x0e,
22066
+0x2e,0xfe,0xc2,0x67,0x74,0x52,0x52,0x43,0x52,0x29,0x2d,0x2e,
22067
+0x8e,0x6f,0x97,0xad,0x20,0x0f,0x2f,0x00,0x00,0x03,0xff,0xf4,
22068
+0x00,0x00,0x09,0xa3,0x05,0xd5,0x00,0x1b,0x00,0x1e,0x00,0x21,
22069
+0x00,0x00,0x23,0x35,0x33,0x01,0x33,0x09,0x01,0x33,0x01,0x33,
22070
+0x15,0x21,0x35,0x33,0x03,0x21,0x07,0x17,0x33,0x15,0x21,0x35,
22071
+0x33,0x03,0x21,0x03,0x33,0x15,0x13,0x21,0x09,0x01,0x21,0x01,
22072
+0x0c,0x83,0x02,0x14,0xa8,0x01,0x90,0x01,0x90,0xa8,0x02,0x15,
22073
+0x93,0xfd,0xe1,0xa6,0x7d,0xfd,0x8c,0x37,0x46,0x93,0xfd,0xe1,
22074
+0xa6,0x7d,0xfd,0x8c,0x7d,0xa4,0x02,0x02,0x24,0xfe,0xee,0x02,
22075
+0xb6,0x02,0x24,0xfe,0xee,0x6a,0x05,0x6b,0xfb,0xee,0x04,0x12,
22076
+0xfa,0x95,0x6a,0x6a,0x01,0x48,0x91,0xb7,0x6a,0x6a,0x01,0x48,
22077
+0xfe,0xb8,0x6a,0x02,0x1d,0x02,0xc6,0xfd,0x3a,0x02,0xc6,0x00,
22078
+0x00,0x04,0x00,0x66,0xff,0xe3,0x07,0x54,0x04,0x44,0x00,0x29,
22079
+0x00,0x36,0x00,0x41,0x00,0x4c,0x00,0x00,0x13,0x34,0x36,0x33,
22080
+0x21,0x35,0x34,0x26,0x23,0x22,0x06,0x07,0x23,0x35,0x3e,0x01,
22081
+0x33,0x20,0x1f,0x01,0x3e,0x01,0x33,0x32,0x16,0x15,0x11,0x33,
22082
+0x15,0x21,0x35,0x0e,0x01,0x23,0x22,0x26,0x27,0x0e,0x01,0x23,
22083
+0x22,0x26,0x01,0x15,0x36,0x33,0x21,0x35,0x34,0x26,0x23,0x22,
22084
+0x06,0x07,0x16,0x01,0x35,0x23,0x22,0x06,0x15,0x14,0x16,0x33,
22085
+0x32,0x36,0x25,0x35,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,
22086
+0x36,0x66,0xee,0xd9,0x01,0x02,0x93,0x85,0x6e,0x82,0x10,0x5f,
22087
+0x60,0xb5,0x56,0x01,0x08,0x48,0x0e,0x60,0xb5,0x56,0xdd,0xe7,
22088
+0xa4,0xfe,0xa4,0x3d,0xa0,0x6b,0xb1,0x85,0x14,0x48,0x9f,0x7d,
22089
+0xc5,0xd7,0x03,0x81,0x6c,0xa3,0x01,0x02,0x93,0x85,0x6e,0x82,
22090
+0x10,0x07,0x02,0x11,0xed,0x89,0x86,0x88,0x74,0x73,0x8d,0xfd,
22091
+0x37,0xed,0x89,0x86,0x88,0x74,0x73,0x8d,0x01,0x3f,0xa5,0xb6,
22092
+0x49,0x79,0x85,0x64,0x62,0xd7,0x29,0x29,0x44,0x0e,0x29,0x29,
22093
+0xdb,0xd1,0xfd,0xd2,0x6a,0x73,0x4a,0x46,0x78,0x1f,0x46,0x51,
22094
+0xb6,0x01,0xff,0x31,0x33,0x49,0x79,0x85,0x64,0x62,0x3c,0xfe,
22095
+0x6f,0xe1,0x76,0x7a,0x6f,0x82,0x8e,0x72,0xe1,0x76,0x7a,0x6f,
22096
+0x82,0x8e,0x00,0x00,0x00,0x03,0xff,0xf4,0xff,0xe3,0x09,0x5d,
22097
+0x05,0xf0,0x00,0x1c,0x00,0x1f,0x00,0x2b,0x00,0x00,0x23,0x35,
22098
+0x33,0x01,0x33,0x13,0x36,0x37,0x3e,0x01,0x33,0x20,0x00,0x11,
22099
+0x14,0x02,0x07,0x0e,0x01,0x23,0x22,0x26,0x27,0x26,0x27,0x21,
22100
+0x03,0x33,0x15,0x13,0x21,0x09,0x01,0x32,0x12,0x11,0x10,0x02,
22101
+0x23,0x22,0x02,0x11,0x10,0x12,0x0c,0x83,0x02,0x14,0xa8,0xad,
22102
+0x2e,0x82,0x62,0xfc,0x9a,0x01,0x45,0x01,0x90,0x6e,0x70,0x63,
22103
+0xfb,0x99,0x98,0xff,0x61,0x67,0x44,0xfd,0x8c,0x7d,0xa4,0x02,
22104
+0x02,0x24,0xfe,0xee,0x03,0xdc,0xf5,0xfa,0xfa,0xf5,0xf6,0xfa,
22105
+0xfa,0x6a,0x05,0x6b,0xfe,0x3e,0x95,0x83,0x62,0x63,0xfe,0x56,
22106
+0xfe,0xa3,0xb3,0xfe,0xe1,0x6f,0x62,0x63,0x64,0x61,0x67,0xa3,
22107
+0xfe,0xb8,0x6a,0x02,0x1d,0x02,0xc6,0xfb,0x6b,0x01,0x51,0x01,
22108
+0x4a,0x01,0x4b,0x01,0x51,0xfe,0xaf,0xfe,0xb5,0xfe,0xb6,0xfe,
22109
+0xaf,0x00,0x00,0x00,0x00,0x03,0x00,0x66,0xff,0xe3,0x07,0x33,
22110
+0x04,0x44,0x00,0x23,0x00,0x2c,0x00,0x37,0x00,0x00,0x05,0x22,
22111
+0x26,0x27,0x0e,0x01,0x23,0x22,0x26,0x35,0x34,0x36,0x33,0x21,
22112
+0x35,0x34,0x26,0x23,0x22,0x06,0x07,0x23,0x35,0x3e,0x01,0x33,
22113
+0x32,0x16,0x17,0x3e,0x01,0x33,0x32,0x00,0x10,0x00,0x27,0x32,
22114
+0x36,0x10,0x26,0x20,0x06,0x10,0x16,0x01,0x23,0x22,0x06,0x15,
22115
+0x14,0x16,0x33,0x32,0x36,0x35,0x05,0x33,0x7a,0xcf,0x4e,0x53,
22116
+0xca,0x7d,0xc5,0xd7,0xee,0xd9,0x01,0x02,0x93,0x85,0x6e,0x82,
22117
+0x10,0x5f,0x60,0xb5,0x56,0x8d,0xc1,0x37,0x4a,0xca,0x75,0xe9,
22118
+0x01,0x19,0xfe,0xe9,0xeb,0x94,0x97,0x97,0xfe,0xd8,0x97,0x98,
22119
+0xfe,0x91,0xed,0x89,0x86,0x88,0x74,0x73,0x8d,0x1d,0x5b,0x58,
22120
+0x5b,0x58,0xb6,0xa6,0xa5,0xb6,0x49,0x79,0x85,0x64,0x62,0xd7,
22121
+0x29,0x29,0x57,0x5a,0x58,0x59,0xfe,0xce,0xfe,0x04,0xfe,0xcd,
22122
+0x63,0xea,0x01,0xc8,0xe9,0xe9,0xfe,0x38,0xea,0x01,0xe9,0x76,
22123
+0x7a,0x6f,0x82,0x8e,0x72,0x00,0x00,0x00,0x00,0x02,0xff,0xdd,
22124
+0xff,0xe3,0x08,0xd6,0x05,0xd5,0x00,0x1f,0x00,0x23,0x00,0x00,
22125
+0x01,0x03,0x33,0x15,0x21,0x35,0x33,0x01,0x23,0x35,0x21,0x15,
22126
+0x23,0x11,0x10,0x16,0x20,0x36,0x19,0x01,0x23,0x35,0x21,0x15,
22127
+0x23,0x11,0x10,0x00,0x20,0x27,0x26,0x27,0x25,0x21,0x11,0x23,
22128
+0x01,0x79,0x98,0xa4,0xfe,0x58,0x83,0x02,0x4e,0xd7,0x03,0x45,
22129
+0xbf,0xbb,0x01,0xca,0xbb,0xbf,0x01,0xf8,0xbe,0xfe,0xfa,0xfd,
22130
+0x8c,0x86,0x63,0x19,0xfe,0x0e,0x01,0xe9,0x64,0x01,0xb2,0xfe,
22131
+0xb8,0x6a,0x6a,0x05,0x00,0x6b,0x6b,0xfc,0xfc,0xfe,0xe2,0xe2,
22132
+0xe2,0x01,0x1e,0x03,0x04,0x6b,0x6b,0xfc,0xe8,0xfe,0xab,0xfe,
22133
+0xe6,0x8e,0x6a,0xd7,0x6b,0x03,0x4d,0x00,0x00,0x02,0x00,0x66,
22134
+0xff,0xe3,0x07,0x2d,0x04,0x44,0x00,0x0a,0x00,0x3a,0x00,0x00,
22135
+0x01,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x35,0x05,
22136
+0x34,0x36,0x33,0x21,0x35,0x34,0x26,0x23,0x22,0x06,0x07,0x23,
22137
+0x35,0x3e,0x01,0x33,0x32,0x16,0x15,0x17,0x16,0x17,0x16,0x33,
22138
+0x32,0x36,0x35,0x11,0x23,0x35,0x21,0x11,0x33,0x15,0x21,0x35,
22139
+0x0e,0x01,0x23,0x22,0x26,0x27,0x0e,0x01,0x23,0x22,0x26,0x03,
22140
+0x2f,0xed,0x89,0x86,0x88,0x74,0x73,0x8d,0xfd,0x37,0xee,0xd9,
22141
+0x01,0x02,0x93,0x85,0x6e,0x82,0x10,0x5f,0x60,0xb5,0x56,0xdd,
22142
+0xe7,0x01,0x02,0x2e,0x30,0x79,0x80,0x86,0xa0,0x01,0x58,0xae,
22143
+0xfe,0x9a,0x33,0xa2,0x6b,0xb1,0x60,0x0a,0x3f,0xae,0x7d,0xc5,
22144
+0xd7,0x02,0x2f,0x76,0x7a,0x6f,0x82,0x8e,0x72,0x0f,0xa5,0xb6,
22145
+0x49,0x79,0x85,0x64,0x62,0xd7,0x29,0x29,0xdb,0xd1,0xdc,0xc3,
22146
+0x47,0x48,0xbc,0xb3,0x01,0xe3,0x6b,0xfc,0x43,0x6a,0xbc,0x6a,
22147
+0x6f,0x73,0x11,0x38,0x4c,0xb6,0x00,0x00,0x00,0x02,0xff,0xf4,
22148
+0x00,0x00,0x07,0xdd,0x05,0xd5,0x00,0x12,0x00,0x15,0x00,0x00,
22149
+0x23,0x35,0x33,0x01,0x33,0x09,0x01,0x23,0x35,0x21,0x15,0x23,
22150
+0x01,0x23,0x03,0x21,0x03,0x33,0x15,0x13,0x21,0x01,0x0c,0x83,
22151
+0x02,0x14,0xa8,0x01,0xe4,0x01,0xb8,0xa8,0x01,0xb6,0x91,0xfd,
22152
+0xeb,0xac,0xa6,0xfd,0x8c,0x7d,0xa4,0x02,0x02,0x24,0xfe,0xee,
22153
+0x6a,0x05,0x6b,0xfb,0x1b,0x04,0x7a,0x6b,0x6b,0xfa,0x96,0x01,
22154
+0xb2,0xfe,0xb8,0x6a,0x02,0x1d,0x02,0xc6,0x00,0x02,0x00,0x66,
22155
+0xff,0xe3,0x06,0x3f,0x04,0x44,0x00,0x0a,0x00,0x2d,0x00,0x00,
22156
+0x01,0x35,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x15,
22157
+0x35,0x0e,0x01,0x23,0x22,0x26,0x35,0x34,0x36,0x33,0x21,0x35,
22158
+0x34,0x26,0x23,0x22,0x06,0x07,0x23,0x35,0x3e,0x01,0x33,0x32,
22159
+0x16,0x15,0x11,0x01,0x23,0x35,0x21,0x15,0x23,0x01,0x03,0x2f,
22160
+0xed,0x89,0x86,0x88,0x74,0x73,0x8d,0x3d,0xa0,0x6b,0xb1,0xd0,
22161
+0xee,0xd9,0x01,0x02,0x93,0x85,0x6e,0x82,0x10,0x5f,0x60,0xb5,
22162
+0x56,0xdd,0xe7,0x01,0x68,0x9f,0x01,0x8f,0x77,0xfe,0x79,0x01,
22163
+0x4e,0xe1,0x76,0x7a,0x6f,0x82,0x8e,0xdc,0x73,0x4a,0x46,0xbc,
22164
+0xa0,0xa5,0xb6,0x49,0x79,0x85,0x64,0x62,0xd7,0x29,0x29,0xdb,
22165
+0xd1,0xfd,0xd2,0x03,0x52,0x6b,0x6b,0xfc,0x44,0x00,0x00,0x00,
22166
+0x00,0x03,0xff,0xf4,0x00,0x00,0x07,0xdd,0x05,0xd5,0x00,0x17,
22167
+0x00,0x1a,0x00,0x1d,0x00,0x00,0x01,0x21,0x03,0x33,0x15,0x21,
22168
+0x35,0x33,0x01,0x33,0x01,0x21,0x01,0x23,0x35,0x21,0x15,0x23,
22169
+0x01,0x21,0x15,0x21,0x03,0x23,0x01,0x23,0x13,0x01,0x0b,0x01,
22170
+0x03,0xbc,0xfd,0xdf,0xa7,0xa4,0xfe,0x5c,0x83,0x02,0x14,0xa8,
22171
+0x01,0x46,0x01,0x3b,0x01,0x1b,0xa8,0x01,0xb6,0x91,0xfe,0xe4,
22172
+0x01,0xad,0xfe,0x2a,0xd0,0xac,0x01,0x00,0xe8,0x74,0xfe,0x7c,
22173
+0xe7,0xe8,0x02,0x1d,0xfe,0x4d,0x6a,0x6a,0x05,0x6b,0xfc,0xb3,
22174
+0x02,0xe2,0x6b,0x6b,0xfd,0x1e,0x6b,0xfd,0xe3,0x02,0x1d,0xfe,
22175
+0xd3,0x01,0x98,0x02,0x5b,0xfd,0xa5,0x00,0x00,0x03,0x00,0x66,
22176
+0xff,0xe3,0x06,0x3f,0x04,0x44,0x00,0x27,0x00,0x2a,0x00,0x35,
22177
+0x00,0x00,0x21,0x35,0x0e,0x01,0x23,0x22,0x26,0x35,0x34,0x36,
22178
+0x33,0x21,0x35,0x34,0x26,0x23,0x22,0x06,0x07,0x23,0x35,0x3e,
22179
+0x01,0x33,0x32,0x17,0x16,0x15,0x33,0x13,0x23,0x35,0x21,0x15,
22180
+0x23,0x03,0x33,0x15,0x21,0x03,0x13,0x23,0x11,0x03,0x23,0x22,
22181
+0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x35,0x03,0x2f,0x3d,0xa0,
22182
+0x6b,0xb1,0xd0,0xee,0xd9,0x01,0x02,0x93,0x85,0x6e,0x82,0x10,
22183
+0x5f,0x60,0xb5,0x56,0xdd,0x74,0x73,0xed,0x7b,0x9f,0x01,0x8f,
22184
+0x77,0x77,0xee,0xfe,0xe7,0xe5,0x66,0xc0,0xb8,0xed,0x89,0x86,
22185
+0x88,0x74,0x73,0x8d,0x73,0x4a,0x46,0xbc,0xa0,0xa5,0xb6,0x49,
22186
+0x79,0x85,0x64,0x62,0xd7,0x29,0x29,0x6e,0x6d,0xcf,0x01,0x22,
22187
+0x6b,0x6b,0xfe,0xde,0x6b,0xfd,0xd1,0x02,0x2f,0xfe,0x3b,0x01,
22188
+0xc5,0x76,0x7a,0x6f,0x82,0x8e,0x72,0x00,0x00,0x02,0xff,0xf4,
22189
+0xfe,0x56,0x07,0xd1,0x05,0xd5,0x00,0x1f,0x00,0x22,0x00,0x00,
22190
+0x23,0x35,0x33,0x01,0x33,0x09,0x01,0x23,0x35,0x21,0x15,0x23,
22191
+0x01,0x0e,0x01,0x23,0x22,0x26,0x27,0x35,0x33,0x14,0x16,0x33,
22192
+0x32,0x36,0x37,0x03,0x21,0x03,0x33,0x15,0x13,0x21,0x01,0x0c,
22193
+0x83,0x02,0x14,0xa8,0x01,0xd2,0x01,0xa7,0xc0,0x01,0xe5,0xa8,
22194
+0xfd,0xa8,0x12,0x98,0x84,0x29,0x91,0x4a,0x72,0x5d,0x37,0x54,
22195
+0x5f,0x3b,0xae,0xfd,0x8c,0x7d,0xa4,0x02,0x02,0x24,0xfe,0xee,
22196
+0x6a,0x05,0x6b,0xfb,0x44,0x04,0x51,0x6b,0x6b,0xf9,0xd5,0x2f,
22197
+0xba,0x22,0x22,0xa7,0x1c,0x64,0x96,0x9b,0x01,0xc0,0xfe,0xb8,
22198
+0x6a,0x02,0x1d,0x02,0xc6,0x00,0x00,0x00,0x00,0x02,0x00,0x66,
22199
+0xfe,0x39,0x06,0x92,0x04,0x44,0x00,0x0a,0x00,0x3f,0x00,0x00,
22200
+0x01,0x35,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x13,
22201
+0x17,0x1e,0x01,0x17,0x01,0x23,0x35,0x21,0x15,0x23,0x01,0x0e,
22202
+0x01,0x23,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,
22203
+0x3f,0x01,0x26,0x27,0x0e,0x01,0x23,0x22,0x26,0x35,0x34,0x36,
22204
+0x33,0x21,0x35,0x34,0x26,0x23,0x22,0x06,0x07,0x23,0x35,0x3e,
22205
+0x01,0x33,0x32,0x16,0x03,0x2f,0xed,0x89,0x86,0x88,0x74,0x73,
22206
+0x8d,0xb8,0x01,0x02,0x43,0x24,0x01,0x51,0x9f,0x01,0x8f,0x77,
22207
+0xfe,0x19,0x33,0x79,0x6f,0x2f,0x63,0x32,0x5e,0x06,0x39,0x3c,
22208
+0x36,0x43,0x26,0x47,0x6a,0x3e,0x3f,0xae,0x7d,0xc5,0xd7,0xee,
22209
+0xd9,0x01,0x02,0x93,0x85,0x6e,0x82,0x10,0x5f,0x60,0xb5,0x56,
22210
+0xdd,0xe6,0x01,0x4e,0xe1,0x76,0x7a,0x6f,0x82,0x8e,0x01,0xbc,
22211
+0xdc,0xc3,0x67,0x12,0x03,0x3c,0x6b,0x6b,0xfb,0x54,0x7e,0x59,
22212
+0x10,0x0f,0xcb,0x44,0x3b,0x3c,0x5d,0xae,0x13,0x69,0x38,0x4c,
22213
+0xb6,0xa6,0xa5,0xb6,0x49,0x79,0x85,0x64,0x62,0xd7,0x29,0x29,
22214
+0xda,0x00,0x00,0x00,0xff,0xff,0x00,0x73,0xff,0xe3,0x05,0xa4,
22215
+0x05,0xf0,0x12,0x06,0x03,0x69,0x00,0x00,0xff,0xff,0x00,0x66,
22216
+0xff,0xe3,0x04,0x1d,0x04,0x44,0x12,0x06,0x02,0xfd,0x00,0x00,
22217
+0xff,0xff,0x00,0x64,0x00,0x00,0x06,0x19,0x05,0xd5,0x10,0x06,
22218
+0x03,0xe8,0x00,0x00,0xff,0xff,0x00,0x32,0x00,0x00,0x04,0xe7,
22219
+0x06,0x14,0x10,0x06,0x03,0xe9,0x00,0x00,0x00,0x01,0x00,0x71,
22220
+0x00,0x00,0x06,0x1a,0x05,0xd5,0x00,0x11,0x00,0x00,0x21,0x35,
22221
+0x33,0x11,0x07,0x11,0x23,0x35,0x21,0x15,0x23,0x03,0x37,0x11,
22222
+0x21,0x35,0x33,0x11,0x01,0x6c,0xbe,0xfb,0xbe,0x02,0x47,0xbe,
22223
+0x01,0xfc,0x02,0xaa,0x7b,0x6a,0x02,0x90,0x4d,0x02,0xbd,0x6b,
22224
+0x6b,0xfd,0xc9,0x4d,0xfc,0xfb,0xfa,0xfe,0x8b,0x00,0x00,0x00,
22225
+0x00,0x01,0x00,0x3b,0x00,0x00,0x03,0x3c,0x06,0x14,0x00,0x0d,
22226
+0x00,0x00,0x25,0x33,0x15,0x21,0x35,0x33,0x11,0x07,0x11,0x23,
22227
+0x35,0x21,0x11,0x37,0x02,0x8e,0xae,0xfd,0xe9,0xb1,0xea,0xb1,
22228
+0x01,0x69,0xea,0x6a,0x6a,0x6a,0x02,0x7b,0x49,0x03,0x0e,0x6a,
22229
+0xfd,0x05,0x49,0x00,0x00,0x03,0xff,0xf6,0xff,0xe3,0x07,0x7e,
22230
+0x05,0xf0,0x00,0x1e,0x00,0x27,0x00,0x30,0x00,0x00,0x05,0x22,
22231
+0x26,0x27,0x26,0x27,0x26,0x27,0x23,0x35,0x33,0x36,0x37,0x36,
22232
+0x37,0x3e,0x01,0x33,0x20,0x17,0x16,0x13,0x33,0x15,0x23,0x06,
22233
+0x07,0x06,0x07,0x0e,0x01,0x27,0x32,0x37,0x36,0x13,0x21,0x12,
22234
+0x17,0x16,0x03,0x21,0x02,0x27,0x26,0x23,0x22,0x07,0x06,0x03,
22235
+0xba,0x98,0xff,0x61,0x70,0x36,0x2f,0x07,0xf0,0xf1,0x09,0x2c,
22236
+0x36,0x70,0x62,0xfc,0x9a,0x01,0x45,0xc8,0xb3,0x13,0xf1,0xf0,
22237
+0x07,0x2f,0x37,0x70,0x65,0xf9,0x99,0xf5,0x7d,0x73,0x09,0xfc,
22238
+0x23,0x09,0x73,0x7d,0xf8,0x03,0xdb,0x0c,0x6f,0x7e,0xf4,0xf6,
22239
+0x7d,0x6f,0x1d,0x64,0x61,0x70,0x8e,0x7a,0x96,0x7a,0x8a,0x72,
22240
+0x8e,0x71,0x62,0x63,0xd5,0xbf,0xfe,0xd4,0x7a,0x96,0x7a,0x8f,
22241
+0x6f,0x64,0x61,0x6b,0xa8,0x9b,0x01,0x25,0xfe,0xdc,0x9c,0xa8,
22242
+0x02,0xe2,0x01,0x17,0x95,0xa9,0xa9,0x96,0x00,0x03,0xff,0xf6,
22243
+0xff,0xe3,0x05,0xba,0x04,0x44,0x00,0x14,0x00,0x1d,0x00,0x25,
22244
+0x00,0x00,0x05,0x22,0x27,0x26,0x27,0x23,0x35,0x33,0x36,0x37,
22245
+0x36,0x20,0x17,0x16,0x17,0x33,0x15,0x23,0x06,0x07,0x06,0x27,
22246
+0x32,0x37,0x36,0x37,0x21,0x16,0x17,0x16,0x03,0x21,0x26,0x27,
22247
+0x26,0x20,0x07,0x06,0x02,0xd8,0xe8,0x8d,0x7e,0x0d,0xe2,0xe2,
22248
+0x0e,0x7c,0x8c,0x01,0xd4,0x8c,0x7d,0x0d,0xe2,0xe2,0x0c,0x7e,
22249
+0x8a,0xec,0x94,0x4c,0x42,0x08,0xfd,0xac,0x08,0x43,0x4c,0x97,
22250
+0x02,0x54,0x08,0x42,0x4c,0xfe,0xd8,0x4c,0x42,0x1d,0x99,0x89,
22251
+0xda,0x6b,0xd9,0x88,0x99,0x99,0x88,0xd9,0x6b,0xd7,0x8c,0x99,
22252
+0x63,0x75,0x67,0xbd,0xbd,0x67,0x75,0x02,0x04,0xbc,0x66,0x74,
22253
+0x74,0x66,0x00,0x00,0x00,0x03,0x00,0x73,0xff,0xe3,0x0a,0xe2,
22254
+0x05,0xf0,0x00,0x29,0x00,0x35,0x00,0x41,0x00,0x00,0x05,0x22,
22255
+0x26,0x27,0x26,0x02,0x10,0x12,0x37,0x3e,0x01,0x33,0x20,0x17,
22256
+0x16,0x17,0x36,0x37,0x3e,0x01,0x33,0x20,0x00,0x11,0x14,0x07,
22257
+0x06,0x07,0x06,0x07,0x06,0x23,0x22,0x26,0x27,0x26,0x27,0x06,
22258
+0x07,0x06,0x07,0x06,0x27,0x32,0x12,0x11,0x10,0x02,0x23,0x22,
22259
+0x02,0x11,0x10,0x12,0x21,0x32,0x12,0x11,0x10,0x02,0x23,0x22,
22260
+0x02,0x11,0x10,0x12,0x03,0x48,0x98,0xff,0x61,0x70,0x6d,0x6d,
22261
+0x70,0x62,0xfc,0x9a,0x01,0x45,0xc8,0x32,0x25,0x2c,0x3d,0x62,
22262
+0xfc,0x9a,0x01,0x45,0x01,0x90,0x37,0x37,0x70,0x65,0x7b,0x7e,
22263
+0x99,0x98,0xff,0x61,0x3e,0x2d,0x2d,0x3e,0x65,0x7b,0x7e,0x99,
22264
+0xf5,0xfa,0xfa,0xf5,0xf6,0xfa,0xfa,0x05,0xbb,0xf5,0xfa,0xfa,
22265
+0xf5,0xf6,0xfa,0xfa,0x1d,0x64,0x61,0x70,0x01,0x1c,0x01,0x6a,
22266
+0x01,0x1d,0x70,0x62,0x63,0xd5,0x35,0x3e,0x46,0x3d,0x62,0x63,
22267
+0xfe,0x56,0xfe,0xa3,0xb3,0x90,0x8f,0x6f,0x64,0x30,0x31,0x64,
22268
+0x61,0x3e,0x48,0x48,0x3e,0x64,0x30,0x31,0x6b,0x01,0x51,0x01,
22269
+0x4a,0x01,0x4b,0x01,0x51,0xfe,0xaf,0xfe,0xb5,0xfe,0xb6,0xfe,
22270
+0xaf,0x01,0x51,0x01,0x4a,0x01,0x4b,0x01,0x51,0xfe,0xaf,0xfe,
22271
+0xb5,0xfe,0xb6,0xfe,0xaf,0x00,0x00,0x00,0x00,0x03,0x00,0x66,
22272
+0xff,0xe3,0x07,0x97,0x04,0x44,0x00,0x18,0x00,0x21,0x00,0x2a,
22273
+0x00,0x00,0x05,0x22,0x00,0x10,0x00,0x33,0x32,0x17,0x16,0x17,
22274
+0x36,0x37,0x36,0x20,0x00,0x10,0x00,0x23,0x22,0x27,0x26,0x27,
22275
+0x06,0x07,0x06,0x27,0x32,0x36,0x10,0x26,0x20,0x06,0x10,0x16,
22276
+0x21,0x32,0x36,0x10,0x26,0x20,0x06,0x10,0x16,0x02,0x68,0xe8,
22277
+0xfe,0xe6,0x01,0x19,0xe9,0xea,0x8c,0x12,0x0e,0x10,0x12,0x8c,
22278
+0x01,0xd2,0x01,0x19,0xfe,0xe7,0xe9,0xe8,0x8d,0x13,0x0e,0x10,
22279
+0x11,0x8c,0xea,0x94,0x97,0x97,0xfe,0xd8,0x97,0x98,0x03,0xc0,
22280
+0x94,0x97,0x97,0xfe,0xd8,0x97,0x98,0x1d,0x01,0x33,0x01,0xfc,
22281
+0x01,0x32,0x99,0x13,0x15,0x15,0x13,0x99,0xfe,0xce,0xfe,0x04,
22282
+0xfe,0xcd,0x99,0x15,0x14,0x16,0x13,0x99,0x63,0xea,0x01,0xc8,
22283
+0xe9,0xe9,0xfe,0x38,0xea,0xea,0x01,0xc8,0xe9,0xe9,0xfe,0x38,
22284
+0xea,0x00,0x00,0x00,0x00,0x01,0x00,0x71,0xfe,0x56,0x05,0x37,
22285
+0x05,0xd5,0x00,0x13,0x00,0x00,0x01,0x20,0x11,0x10,0x01,0x11,
22286
+0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x11,0x00,0x11,
22287
+0x10,0x23,0x03,0x6f,0x01,0xc8,0xfc,0xc3,0xe7,0xfd,0x90,0xbe,
22288
+0xbe,0x01,0x89,0x02,0x6f,0xfa,0x05,0xd5,0xfe,0x85,0xfe,0x1b,
22289
+0xfe,0x27,0xfe,0x24,0x6a,0x6a,0x06,0xaa,0x6b,0xfb,0x44,0x01,
22290
+0xae,0x01,0x93,0x01,0x10,0x00,0x00,0x00,0x00,0x01,0x00,0x3b,
22291
+0xfe,0x56,0x04,0x71,0x04,0x27,0x00,0x14,0x00,0x00,0x01,0x20,
22292
+0x11,0x10,0x01,0x15,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,
22293
+0x21,0x11,0x00,0x11,0x10,0x23,0x34,0x02,0xfb,0x01,0x76,0xfd,
22294
+0x33,0xae,0xfd,0xe9,0xb1,0xb1,0x01,0x69,0x02,0x15,0xbe,0x04,
22295
+0x27,0xfe,0x76,0xfe,0x82,0xfe,0x67,0xc5,0x6b,0x6b,0x04,0xfb,
22296
+0x6b,0xfb,0xcf,0x01,0x70,0x01,0x37,0x01,0x1f,0x35,0x00,0x00,
22297
+0x00,0x01,0x00,0x6f,0xfe,0x56,0x04,0x8f,0x05,0xf1,0x00,0x14,
22298
+0x00,0x00,0x01,0x11,0x23,0x26,0x20,0x06,0x15,0x11,0x21,0x15,
22299
+0x21,0x11,0x23,0x11,0x23,0x35,0x21,0x15,0x3e,0x01,0x32,0x04,
22300
+0x8f,0x71,0x10,0xfe,0x90,0xb4,0x02,0x65,0xfd,0x9b,0xcb,0xb0,
22301
+0x01,0x7b,0x4a,0xe8,0xfa,0x05,0xd8,0xfe,0xc2,0xb0,0xec,0x79,
22302
+0xfd,0xc3,0x6a,0xfd,0x18,0x07,0x14,0x6b,0xc9,0x72,0x73,0x00,
22303
+0x00,0x01,0x00,0x4a,0xfe,0x56,0x03,0xd3,0x04,0x44,0x00,0x18,
22304
+0x00,0x00,0x01,0x11,0x23,0x2e,0x01,0x23,0x22,0x06,0x15,0x11,
22305
+0x21,0x15,0x21,0x11,0x23,0x11,0x23,0x35,0x21,0x15,0x3e,0x01,
22306
+0x33,0x32,0x16,0x03,0xd3,0x6a,0x05,0x4e,0x4b,0x88,0x91,0x01,
22307
+0xe5,0xfe,0x1b,0xb8,0xb0,0x01,0x68,0x36,0xaa,0x7a,0x2d,0x63,
22308
+0x04,0x29,0xfe,0xf6,0x4f,0x4e,0xbc,0xb0,0xfe,0x1a,0x6a,0xfe,
22309
+0x56,0x05,0x68,0x69,0xbd,0x6f,0x6b,0x0e,0x00,0x01,0x00,0x31,
22310
+0x00,0x00,0x04,0xdf,0x05,0xd5,0x00,0x0d,0x00,0x00,0x01,0x15,
22311
+0x23,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x21,0x15,0x23,0x11,
22312
+0x04,0xdf,0xbe,0xbe,0xfd,0xb9,0xbe,0xfd,0x56,0x7b,0x05,0xd5,
22313
+0x6a,0xfb,0x00,0x6b,0x6b,0x04,0xef,0xfa,0x01,0x75,0x00,0x00,
22314
+0x00,0x01,0x00,0x3b,0xfe,0x14,0x02,0x52,0x04,0x27,0x00,0x09,
22315
+0x00,0x00,0x01,0x33,0x15,0x21,0x11,0x23,0x35,0x21,0x15,0x23,
22316
+0x01,0xa4,0xae,0xfe,0x9a,0xb1,0x02,0x17,0xae,0xfe,0x7e,0x6a,
22317
+0x05,0xa9,0x6a,0x6a,0x00,0x01,0x00,0x6f,0xfe,0x56,0x06,0x55,
22318
+0x05,0xf2,0x00,0x1b,0x00,0x00,0x01,0x11,0x23,0x35,0x21,0x15,
22319
+0x3e,0x01,0x33,0x32,0x12,0x19,0x01,0x14,0x16,0x33,0x15,0x22,
22320
+0x26,0x35,0x11,0x10,0x26,0x23,0x22,0x02,0x15,0x11,0x01,0x1f,
22321
+0xb0,0x01,0x7b,0x4a,0xea,0x9b,0xfd,0xee,0x56,0x5b,0xbf,0xbf,
22322
+0x96,0xbe,0xc8,0xd1,0xfe,0x56,0x07,0x14,0x6b,0xc9,0x72,0x74,
22323
+0xfe,0xdd,0xfe,0xcb,0xfd,0xd1,0x7b,0x79,0x77,0xb8,0xa7,0x02,
22324
+0x12,0x01,0x24,0xda,0xfe,0xff,0xf7,0xfa,0xdf,0x00,0x00,0x00,
22325
+0x00,0x01,0x00,0x4a,0xfe,0x56,0x04,0xfb,0x04,0x44,0x00,0x1b,
22326
+0x00,0x00,0x13,0x11,0x23,0x35,0x21,0x15,0x3e,0x01,0x33,0x32,
22327
+0x16,0x15,0x11,0x14,0x16,0x33,0x15,0x22,0x26,0x35,0x11,0x34,
22328
+0x26,0x23,0x22,0x06,0x15,0x11,0xfa,0xb0,0x01,0x68,0x33,0xa3,
22329
+0x6c,0xb0,0xa6,0x56,0x5b,0xab,0xbf,0x60,0x79,0x80,0x86,0xfe,
22330
+0x56,0x05,0x66,0x6b,0xbd,0x6c,0x6e,0xca,0xd6,0xfe,0xbb,0x83,
22331
+0x79,0x63,0xb8,0xa7,0x01,0x0b,0xc3,0x91,0xbb,0xb3,0xfc,0x06,
22332
+0x00,0x01,0x00,0x6f,0xfe,0x56,0x04,0x8f,0x05,0xf1,0x00,0x10,
22333
+0x00,0x00,0x01,0x11,0x23,0x26,0x20,0x06,0x15,0x11,0x23,0x11,
22334
+0x23,0x35,0x21,0x15,0x3e,0x01,0x32,0x04,0x8f,0x71,0x10,0xfe,
22335
+0x90,0xb4,0xcb,0xb0,0x01,0x7b,0x4a,0xe8,0xfa,0x05,0xd8,0xfe,
22336
+0xc2,0xb0,0xec,0x79,0xfa,0x71,0x07,0x14,0x6b,0xc9,0x72,0x73,
22337
+0x00,0x01,0x00,0x4a,0xfe,0x56,0x03,0xd3,0x04,0x44,0x00,0x14,
22338
+0x00,0x00,0x01,0x11,0x23,0x2e,0x01,0x23,0x22,0x06,0x15,0x11,
22339
+0x23,0x11,0x23,0x35,0x21,0x15,0x3e,0x01,0x33,0x32,0x16,0x03,
22340
+0xd3,0x6a,0x05,0x4e,0x4b,0x88,0x91,0xb8,0xb0,0x01,0x68,0x36,
22341
+0xaa,0x7a,0x2d,0x63,0x04,0x29,0xfe,0xf6,0x4f,0x4e,0xbc,0xb0,
22342
+0xfc,0x06,0x05,0x68,0x69,0xbd,0x6f,0x6b,0x0e,0x00,0x00,0x00,
22343
+0x00,0x01,0x00,0x41,0xff,0xe3,0x05,0xb8,0x05,0xd5,0x00,0x1c,
22344
+0x00,0x00,0x13,0x35,0x21,0x15,0x21,0x06,0x07,0x06,0x11,0x10,
22345
+0x12,0x33,0x32,0x36,0x37,0x33,0x06,0x04,0x23,0x22,0x26,0x27,
22346
+0x26,0x02,0x35,0x10,0x37,0x36,0x37,0x41,0x05,0x77,0xfc,0xba,
22347
+0x5f,0x40,0x7b,0xf6,0xef,0xa7,0xd8,0x30,0xb8,0x42,0xfe,0xc9,
22348
+0xee,0x92,0xfa,0x61,0x70,0x6d,0xc9,0x23,0x26,0x05,0x5e,0x77,
22349
+0x77,0x2a,0x58,0xaa,0xfe,0xb7,0xfe,0xb8,0xfe,0xad,0x9f,0x9e,
22350
+0xd1,0xd7,0x64,0x61,0x70,0x01,0x1d,0xb4,0x01,0x5b,0xd6,0x25,
22351
+0x1f,0x00,0x00,0x00,0x00,0x01,0x00,0x34,0xff,0xe3,0x04,0x31,
22352
+0x04,0x27,0x00,0x16,0x00,0x00,0x13,0x35,0x21,0x15,0x21,0x06,
22353
+0x07,0x06,0x10,0x16,0x33,0x32,0x36,0x37,0x33,0x0e,0x01,0x23,
22354
+0x22,0x00,0x35,0x10,0x37,0x34,0x03,0xfd,0xfd,0xa8,0x2f,0x21,
22355
+0x4c,0x97,0x96,0x77,0x8e,0x1a,0x94,0x27,0xde,0xb0,0xe8,0xfe,
22356
+0xe6,0x9d,0x03,0xbc,0x6b,0x6b,0x1c,0x32,0x74,0xfe,0x34,0xe8,
22357
+0x7c,0x7d,0xaa,0xb2,0x01,0x33,0xfe,0x01,0x0b,0x9d,0x00,0x00,
22358
+0x00,0x01,0x01,0x1b,0x01,0xa4,0x02,0x1d,0x05,0xd5,0x00,0x05,
22359
+0x00,0x00,0x01,0x21,0x03,0x15,0x23,0x35,0x01,0x1b,0x01,0x02,
22360
+0x44,0x7b,0x05,0xd5,0xfc,0xcb,0xfc,0xfc,0x00,0x01,0x00,0xc9,
22361
+0x03,0xaa,0x01,0x68,0x05,0xd5,0x00,0x03,0x00,0x11,0xb6,0x01,
22362
+0x00,0x62,0x04,0x00,0x02,0x04,0x10,0xd4,0xcc,0x31,0x00,0x10,
22363
+0xf4,0xcc,0x30,0x01,0x11,0x23,0x11,0x01,0x68,0x9f,0x05,0xd5,
22364
+0xfd,0xd5,0x02,0x2b,0xff,0xff,0x00,0x14,0x00,0x00,0x05,0xc6,
22365
+0x05,0xd5,0x12,0x06,0x03,0x91,0x00,0x00,0x00,0x01,0x00,0x64,
22366
+0xfe,0xbf,0x06,0xa6,0x05,0xd5,0x00,0x19,0x00,0x00,0x33,0x35,
22367
+0x33,0x11,0x23,0x35,0x21,0x01,0x11,0x23,0x35,0x21,0x15,0x23,
22368
+0x11,0x33,0x11,0x23,0x34,0x02,0x2b,0x01,0x01,0x11,0x33,0x15,
22369
+0x64,0xc9,0xc9,0x01,0x7f,0x03,0x7f,0xc8,0x02,0x0c,0xc9,0xbe,
22370
+0x6a,0x24,0x64,0x45,0xfc,0x44,0xc9,0x6a,0x05,0x00,0x6b,0xfb,
22371
+0x66,0x04,0x2f,0x6b,0x6b,0xfb,0x01,0xfe,0x54,0x03,0x01,0x21,
22372
+0x04,0xea,0xfb,0x9d,0x6a,0x00,0x00,0x00,0x00,0x01,0x00,0x4a,
22373
+0xfe,0xe5,0x04,0xf0,0x04,0x44,0x00,0x21,0x00,0x00,0x33,0x35,
22374
+0x33,0x11,0x23,0x35,0x21,0x15,0x3e,0x01,0x33,0x32,0x16,0x15,
22375
+0x11,0x33,0x11,0x23,0x27,0x26,0x23,0x21,0x35,0x33,0x11,0x34,
22376
+0x26,0x23,0x22,0x06,0x15,0x11,0x33,0x15,0x54,0xa6,0xb0,0x01,
22377
+0x68,0x33,0xa3,0x6c,0xb0,0xa6,0xa6,0x68,0x10,0x10,0x64,0xfe,
22378
+0xee,0x9f,0x60,0x79,0x80,0x86,0xa0,0x6a,0x03,0x52,0x6b,0xbd,
22379
+0x6c,0x6e,0xca,0xd6,0xfd,0xc6,0xfe,0x7b,0x8d,0x8e,0x6a,0x02,
22380
+0x00,0xc3,0x91,0xbb,0xb3,0xfe,0x1a,0x6a,0x00,0x01,0xff,0x40,
22381
+0x00,0x00,0x06,0x89,0x05,0xd5,0x00,0x23,0x00,0x00,0x01,0x22,
22382
+0x07,0x06,0x15,0x23,0x11,0x36,0x37,0x36,0x33,0x21,0x15,0x23,
22383
+0x11,0x21,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x15,0x21,
22384
+0x35,0x33,0x11,0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x01,0x2f,
22385
+0xe3,0x44,0x47,0x81,0x66,0xb4,0x73,0x62,0x01,0x89,0xbe,0x03,
22386
+0x06,0xbe,0x02,0x47,0xbe,0xbe,0xfd,0xb9,0xbe,0xfc,0xfa,0xbe,
22387
+0xfd,0xb9,0xbe,0x05,0x6a,0x59,0x5b,0xba,0x01,0x58,0x4c,0x24,
22388
+0x11,0x6b,0xfd,0xfc,0x02,0x04,0x6b,0x6b,0xfb,0x00,0x6a,0x6a,
22389
+0x02,0x82,0xfd,0x7e,0x6a,0x6a,0x00,0x00,0x00,0x02,0x00,0x47,
22390
+0x02,0x9c,0x04,0x1e,0x05,0xe0,0x00,0x03,0x00,0x27,0x00,0x00,
22391
+0x01,0x21,0x35,0x21,0x03,0x35,0x33,0x11,0x23,0x35,0x33,0x35,
22392
+0x23,0x35,0x21,0x15,0x23,0x15,0x21,0x35,0x23,0x35,0x21,0x15,
22393
+0x23,0x15,0x33,0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x33,0x11,
22394
+0x21,0x11,0x33,0x15,0x01,0x3f,0x01,0xe7,0xfe,0x19,0xf8,0x78,
22395
+0x78,0x78,0x78,0x01,0x6f,0x77,0x01,0xe7,0x77,0x01,0x6f,0x78,
22396
+0x78,0x78,0x78,0xfe,0x91,0x77,0xfe,0x19,0x77,0x04,0x83,0x6f,
22397
+0xfd,0xaa,0x3b,0x02,0x1b,0x44,0x6e,0x3c,0x3c,0x6e,0x6e,0x3c,
22398
+0x3c,0x6e,0x44,0xfd,0xe5,0x3b,0x3b,0x01,0x68,0xfe,0x98,0x3b,
22399
+0x00,0x03,0x00,0x40,0x02,0x8c,0x04,0xbb,0x05,0x00,0x00,0x07,
22400
+0x00,0x27,0x00,0x2e,0x00,0x00,0x00,0x32,0x36,0x10,0x26,0x22,
22401
+0x06,0x10,0x25,0x21,0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x33,
22402
+0x0e,0x01,0x23,0x22,0x26,0x27,0x0e,0x01,0x23,0x22,0x26,0x10,
22403
+0x36,0x33,0x32,0x16,0x17,0x3e,0x01,0x33,0x32,0x16,0x07,0x2e,
22404
+0x01,0x23,0x22,0x06,0x07,0x01,0x27,0xba,0x5f,0x5f,0xba,0x5f,
22405
+0x03,0xf3,0xfe,0x0d,0x66,0x64,0x4c,0x61,0x14,0x5d,0x1c,0x95,
22406
+0x79,0x52,0x82,0x2e,0x2b,0x83,0x52,0x92,0xb2,0xb1,0x93,0x53,
22407
+0x82,0x2c,0x2e,0x7e,0x4d,0x98,0xa2,0x85,0x04,0x5b,0x56,0x50,
22408
+0x5c,0x0a,0x02,0xc3,0x83,0x01,0x00,0x82,0x82,0xff,0x00,0x75,
22409
+0x05,0x78,0x7b,0x47,0x46,0x62,0x62,0x37,0x36,0x36,0x37,0xac,
22410
+0x01,0x1c,0xac,0x38,0x36,0x36,0x38,0xa7,0x63,0x68,0x6a,0x6a,
22411
+0x68,0x00,0x00,0x00,0x00,0x01,0x00,0x4a,0x00,0x00,0x07,0x5e,
22412
+0x04,0x27,0x00,0x17,0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,
22413
+0x21,0x11,0x21,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x11,
22414
+0x21,0x15,0x23,0x11,0x33,0x15,0x4a,0xa6,0xa6,0x01,0x5e,0x01,
22415
+0xcb,0xa0,0x01,0xf8,0xa0,0x01,0xcb,0x01,0x68,0xb0,0xb0,0x69,
22416
+0x03,0x54,0x6a,0xfc,0x51,0x03,0x45,0x6a,0x6a,0xfc,0xbb,0x03,
22417
+0xaf,0x6a,0xfc,0xac,0x69,0x00,0x00,0x00,0x00,0x01,0x00,0x56,
22418
+0x00,0x00,0x05,0x1c,0x05,0xd5,0x00,0x15,0x00,0x00,0x29,0x01,
22419
+0x35,0x33,0x11,0x21,0x15,0x23,0x11,0x33,0x15,0x21,0x11,0x21,
22420
+0x15,0x23,0x11,0x21,0x15,0x23,0x11,0x33,0x05,0x1c,0xfd,0x88,
22421
+0xef,0xfe,0x02,0x7b,0x7b,0x01,0xfe,0xfd,0x3e,0x7b,0x04,0xc6,
22422
+0xbe,0xbe,0x6a,0x02,0x82,0xbb,0x01,0xf0,0xbb,0x01,0xf4,0xd1,
22423
+0x01,0x4c,0x6b,0xfb,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x49,
22424
+0x00,0x00,0x04,0xf1,0x05,0xd5,0x00,0x08,0x00,0x19,0x00,0x00,
22425
+0x01,0x11,0x21,0x22,0x06,0x15,0x14,0x16,0x33,0x01,0x21,0x35,
22426
+0x33,0x11,0x21,0x22,0x24,0x35,0x34,0x24,0x33,0x21,0x15,0x23,
22427
+0x11,0x33,0x03,0x68,0xfe,0xf8,0x95,0x9c,0x9c,0x95,0x02,0x91,
22428
+0xfd,0x90,0xe7,0xfe,0xc7,0xe0,0xfe,0xfa,0x01,0x06,0xe0,0x02,
22429
+0xc2,0xbe,0xbe,0x02,0xf8,0x02,0x72,0xa0,0x99,0x98,0xa1,0xfd,
22430
+0x08,0x6a,0x02,0x23,0xe4,0xc0,0xc1,0xe3,0x6b,0xfb,0x00,0x00,
22431
+0x00,0x01,0x00,0x66,0x00,0x00,0x07,0xc9,0x05,0xd5,0x00,0x18,
22432
+0x00,0x00,0x01,0x15,0x23,0x11,0x33,0x15,0x21,0x09,0x01,0x21,
22433
+0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x01,0x33,0x01,
22434
+0x11,0x23,0x35,0x07,0xbe,0xbe,0xc9,0xfe,0x4d,0xfd,0xf4,0xfd,
22435
+0xf4,0xfe,0x68,0xc7,0xbf,0x02,0x48,0xbe,0x02,0x00,0x8d,0x02,
22436
+0x00,0xbe,0x05,0xd5,0x6a,0xfb,0x00,0x6b,0x04,0x27,0xfb,0xd9,
22437
+0x6b,0x05,0x00,0x6a,0x6a,0xfb,0x7e,0x04,0x11,0xfb,0xef,0x04,
22438
+0x82,0x6a,0x00,0x00,0x00,0x01,0x00,0x71,0x00,0x00,0x02,0xb8,
22439
+0x07,0x6d,0x00,0x0b,0x00,0x00,0x25,0x33,0x15,0x21,0x35,0x33,
22440
+0x11,0x23,0x35,0x21,0x15,0x23,0x01,0xfa,0xbe,0xfd,0xb9,0xbe,
22441
+0xbe,0x02,0x47,0xbe,0x6a,0x6a,0x6a,0x06,0x98,0x6b,0x6b,0x00,
22442
+0x00,0x01,0xff,0xf4,0x00,0x00,0x09,0x95,0x05,0xd5,0x00,0x17,
22443
+0x00,0x00,0x09,0x01,0x33,0x15,0x21,0x35,0x33,0x01,0x33,0x09,
22444
+0x01,0x33,0x09,0x01,0x23,0x35,0x21,0x15,0x23,0x01,0x23,0x09,
22445
+0x01,0x23,0x02,0x31,0xfe,0xc5,0xac,0xfe,0x52,0x93,0x01,0x87,
22446
+0xa2,0x01,0x5a,0x01,0x54,0xa2,0x01,0x5a,0x01,0x39,0xac,0x01,
22447
+0xae,0x93,0xfe,0x79,0xa4,0xfe,0xaa,0xfe,0xaa,0xa4,0x04,0xbe,
22448
+0xfb,0xad,0x6b,0x6b,0x05,0x6a,0xfb,0x39,0x04,0xc7,0xfb,0x39,
22449
+0x04,0x5c,0x6b,0x6b,0xfa,0x96,0x04,0xbe,0xfb,0x42,0x00,0x00,
22450
+0x00,0x01,0x00,0x6c,0xff,0xd8,0x04,0xcf,0x06,0xc8,0x00,0x37,
22451
+0x00,0x00,0x01,0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x34,
22452
+0x36,0x37,0x17,0x0e,0x01,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,
22453
+0x02,0x35,0x34,0x2e,0x02,0x27,0x2e,0x03,0x3d,0x01,0x33,0x0e,
22454
+0x03,0x15,0x14,0x1e,0x02,0x17,0x1e,0x05,0x04,0xcf,0x4f,0x94,
22455
+0xd3,0x84,0x81,0xce,0x8e,0x4c,0x5f,0x64,0xd9,0x80,0x71,0x2a,
22456
+0x5b,0x8d,0x63,0x5b,0x78,0x48,0x1e,0x31,0x4f,0x65,0x33,0x30,
22457
+0x5b,0x46,0x2a,0xfa,0x21,0x27,0x13,0x06,0x26,0x3f,0x52,0x2c,
22458
+0x2e,0x62,0x5d,0x52,0x3e,0x24,0x02,0x26,0x77,0xd6,0xa2,0x5f,
22459
+0x45,0x8b,0xd0,0x8a,0x86,0xdf,0x5a,0xc1,0x40,0x88,0x42,0x57,
22460
+0x8f,0x66,0x38,0x4f,0x7f,0xa1,0x52,0x51,0x97,0x8f,0x89,0x43,
22461
+0x3d,0x7a,0x7c,0x80,0x45,0x5a,0x31,0x3f,0x27,0x17,0x0a,0x20,
22462
+0x46,0x49,0x4d,0x27,0x29,0x5b,0x66,0x72,0x83,0x94,0x00,0x00,
22463
+0x00,0x02,0x00,0x78,0xff,0xd8,0x04,0xda,0x06,0xc6,0x00,0x13,
22464
+0x00,0x44,0x00,0x00,0x01,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,
22465
+0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x25,0x14,0x0e,0x02,
22466
+0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x04,0x37,0x3e,0x01,0x35,
22467
+0x34,0x2e,0x02,0x27,0x2e,0x03,0x35,0x33,0x14,0x1e,0x02,0x17,
22468
+0x1e,0x03,0x15,0x14,0x06,0x07,0x1e,0x03,0x03,0xd0,0x19,0x42,
22469
+0x72,0x59,0x5d,0x75,0x40,0x17,0x13,0x3f,0x75,0x62,0x5d,0x73,
22470
+0x40,0x16,0x01,0x0a,0x58,0x98,0xce,0x76,0x74,0xcb,0x98,0x57,
22471
+0x11,0x2a,0x48,0x6f,0x9b,0x68,0x12,0x10,0x16,0x25,0x2f,0x18,
22472
+0x20,0x42,0x35,0x22,0xe6,0x0e,0x17,0x1f,0x11,0x18,0x33,0x28,
22473
+0x1a,0x13,0x13,0x5c,0xaf,0x87,0x52,0x02,0x36,0x65,0xaf,0x82,
22474
+0x4a,0x4a,0x80,0xad,0x62,0x59,0xa5,0x80,0x4e,0x4e,0x80,0xa3,
22475
+0x47,0x83,0xda,0x9d,0x57,0x56,0x9c,0xdb,0x84,0x3f,0x8a,0x85,
22476
+0x79,0x60,0x40,0x08,0x2f,0x44,0x1a,0x1c,0x2a,0x1f,0x17,0x0b,
22477
+0x0e,0x25,0x3f,0x5f,0x49,0x17,0x22,0x1c,0x18,0x0c,0x12,0x2a,
22478
+0x39,0x4c,0x36,0x27,0x62,0x37,0x09,0x51,0x97,0xe2,0x00,0x00,
22479
+0x00,0x02,0x00,0x6e,0xff,0xd8,0x05,0x47,0x06,0xc4,0x00,0x13,
22480
+0x00,0x51,0x00,0x00,0x01,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,
22481
+0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x37,0x14,0x0e,0x04,
22482
+0x23,0x22,0x2e,0x04,0x35,0x34,0x3e,0x02,0x37,0x3e,0x03,0x35,
22483
+0x34,0x26,0x27,0x22,0x0e,0x02,0x15,0x14,0x16,0x17,0x07,0x2e,
22484
+0x03,0x35,0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,0x15,0x14,0x06,
22485
+0x07,0x15,0x1e,0x05,0x04,0x4b,0x37,0x5e,0x7e,0x47,0x59,0x8d,
22486
+0x63,0x34,0x38,0x66,0x8f,0x58,0x4f,0x7e,0x57,0x2e,0xfc,0x30,
22487
+0x54,0x72,0x83,0x8f,0x46,0x53,0xa1,0x90,0x7b,0x5a,0x32,0x45,
22488
+0x7c,0xad,0x68,0x5f,0x7d,0x4b,0x1e,0x66,0x5c,0x32,0x53,0x3d,
22489
+0x22,0x1c,0x28,0xb3,0x17,0x1b,0x0f,0x04,0x2e,0x63,0x9b,0x6c,
22490
+0x55,0x93,0x6a,0x3d,0x95,0x99,0x3f,0x81,0x79,0x6a,0x4e,0x2e,
22491
+0x02,0x1e,0x6f,0xa3,0x6c,0x34,0x33,0x6c,0xa6,0x73,0x6c,0x9e,
22492
+0x69,0x33,0x29,0x63,0xa5,0x92,0x62,0xa6,0x87,0x66,0x45,0x23,
22493
+0x23,0x44,0x63,0x80,0x9b,0x5a,0x82,0xb4,0x82,0x5f,0x2d,0x2a,
22494
+0x4f,0x4a,0x46,0x22,0x55,0x51,0x01,0x0b,0x1b,0x2b,0x1f,0x20,
22495
+0x38,0x16,0x56,0x15,0x32,0x2e,0x23,0x08,0x3c,0x6c,0x52,0x31,
22496
+0x30,0x53,0x71,0x41,0x64,0x94,0x3d,0x05,0x0d,0x2a,0x3f,0x56,
22497
+0x71,0x8d,0x00,0x00,0x00,0x02,0x00,0x7f,0xff,0xd9,0x07,0x15,
22498
+0x06,0xc6,0x00,0x12,0x00,0x69,0x00,0x00,0x01,0x34,0x2e,0x02,
22499
+0x23,0x22,0x0e,0x02,0x07,0x06,0x1e,0x02,0x32,0x3e,0x02,0x03,
22500
+0x2e,0x03,0x23,0x22,0x0e,0x02,0x07,0x27,0x3e,0x03,0x37,0x2e,
22501
+0x05,0x35,0x34,0x3e,0x04,0x33,0x32,0x1e,0x02,0x17,0x3e,0x03,
22502
+0x33,0x32,0x1e,0x02,0x15,0x14,0x0e,0x02,0x23,0x22,0x2e,0x04,
22503
+0x37,0x3e,0x01,0x37,0x2e,0x03,0x23,0x22,0x0e,0x02,0x15,0x14,
22504
+0x1e,0x02,0x17,0x1e,0x01,0x17,0x35,0x1e,0x05,0x07,0x06,0x13,
22505
+0x17,0x39,0x5e,0x46,0x48,0x67,0x41,0x1f,0x01,0x01,0x1d,0x40,
22506
+0x65,0x8e,0x60,0x3b,0x1a,0xc7,0x0f,0x59,0x7d,0x98,0x4f,0x35,
22507
+0x6a,0x61,0x58,0x23,0x85,0x1c,0x40,0x4b,0x5a,0x36,0x64,0xa2,
22508
+0x7f,0x5b,0x3c,0x1c,0x18,0x35,0x52,0x73,0x96,0x5e,0x3a,0x56,
22509
+0x45,0x3a,0x1e,0x26,0x58,0x5e,0x62,0x2f,0x6c,0xb8,0x86,0x4c,
22510
+0x4e,0x87,0xb7,0x69,0x49,0x86,0x76,0x61,0x45,0x26,0x01,0x01,
22511
+0x37,0x28,0x17,0x31,0x39,0x45,0x2c,0x4a,0x5f,0x37,0x15,0x2b,
22512
+0x67,0xab,0x81,0x17,0x39,0x20,0x36,0x79,0x74,0x69,0x4c,0x28,
22513
+0x06,0x04,0x2e,0x80,0xc0,0x80,0x40,0x3d,0x7e,0xc1,0x84,0x79,
22514
+0xaa,0x6c,0x32,0x31,0x6b,0xab,0xfc,0x25,0x24,0x43,0x34,0x20,
22515
+0x11,0x25,0x3b,0x2a,0x87,0x1c,0x2d,0x23,0x16,0x06,0x24,0x6c,
22516
+0x83,0x95,0x9c,0x9f,0x4a,0x4e,0x9e,0x92,0x7f,0x5e,0x36,0x14,
22517
+0x27,0x37,0x22,0x22,0x37,0x26,0x15,0x55,0xa7,0xf6,0xa0,0x88,
22518
+0xde,0x9f,0x57,0x33,0x58,0x76,0x84,0x8d,0x44,0x88,0xdf,0x4e,
22519
+0x10,0x1c,0x14,0x0b,0x44,0x84,0xc0,0x7c,0x7e,0xd5,0xaa,0x7e,
22520
+0x27,0x08,0x0d,0x08,0x01,0x0c,0x1d,0x2a,0x3b,0x52,0x6c,0x47,
22521
+0x00,0x01,0x00,0x6c,0xff,0xd8,0x04,0xb7,0x06,0xc6,0x00,0x40,
22522
+0x00,0x00,0x01,0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x34,
22523
+0x3e,0x04,0x37,0x17,0x0e,0x03,0x15,0x14,0x16,0x33,0x32,0x36,
22524
+0x35,0x11,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,
22525
+0x02,0x17,0x1e,0x01,0x17,0x07,0x2e,0x03,0x35,0x34,0x3e,0x02,
22526
+0x33,0x32,0x1e,0x02,0x15,0x04,0xb7,0x4e,0x8e,0xc8,0x7b,0x76,
22527
+0xcb,0x96,0x55,0x22,0x38,0x47,0x4b,0x48,0x1c,0x22,0x12,0x25,
22528
+0x1e,0x13,0x98,0x8a,0x89,0x95,0x32,0x52,0x69,0x36,0x31,0x62,
22529
+0x50,0x31,0x21,0x32,0x3c,0x1b,0x08,0x1d,0x08,0x4f,0x2f,0x6a,
22530
+0x5a,0x3c,0x48,0x7e,0xab,0x63,0x70,0xc0,0x8c,0x4f,0x01,0x9a,
22531
+0x73,0xaa,0x6f,0x36,0x46,0x7e,0xac,0x66,0x44,0x6d,0x54,0x3d,
22532
+0x29,0x16,0x04,0x66,0x0e,0x37,0x4b,0x5c,0x34,0x98,0xa3,0x74,
22533
+0x85,0x03,0xf2,0x3d,0x50,0x30,0x14,0x1d,0x37,0x4f,0x31,0x23,
22534
+0x38,0x2d,0x24,0x0d,0x03,0x0d,0x05,0xd8,0x0f,0x44,0x63,0x81,
22535
+0x4c,0x6c,0x98,0x60,0x2b,0x35,0x67,0x98,0x64,0x00,0x00,0x00,
22536
+0x00,0x01,0x00,0x6c,0xff,0xd8,0x04,0xcf,0x06,0xc8,0x00,0x56,
22537
+0x00,0x00,0x01,0x14,0x0e,0x02,0x23,0x22,0x2e,0x04,0x35,0x34,
22538
+0x3e,0x02,0x37,0x17,0x0e,0x03,0x15,0x14,0x1e,0x02,0x33,0x32,
22539
+0x3e,0x02,0x35,0x34,0x2e,0x02,0x2b,0x01,0x35,0x33,0x32,0x3e,
22540
+0x02,0x35,0x34,0x26,0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,
22541
+0x37,0x07,0x2e,0x03,0x35,0x34,0x3e,0x02,0x33,0x32,0x1e,0x04,
22542
+0x15,0x14,0x0e,0x02,0x07,0x1e,0x03,0x04,0xcf,0x55,0x93,0xc7,
22543
+0x71,0x41,0x89,0x80,0x72,0x55,0x32,0x33,0x57,0x70,0x3e,0x30,
22544
+0x1f,0x25,0x14,0x06,0x32,0x55,0x72,0x40,0x42,0x67,0x47,0x26,
22545
+0x37,0x59,0x70,0x3a,0x25,0x2e,0x28,0x5b,0x4e,0x33,0x7e,0x81,
22546
+0x39,0x72,0x5a,0x38,0x1b,0x2c,0x36,0x1a,0x32,0x33,0x5e,0x48,
22547
+0x2b,0x4c,0x83,0xae,0x63,0x3a,0x79,0x70,0x63,0x4a,0x2b,0x39,
22548
+0x5a,0x70,0x36,0x49,0x85,0x66,0x3c,0x01,0xd7,0x76,0xbd,0x85,
22549
+0x47,0x1a,0x32,0x4a,0x5f,0x75,0x43,0x45,0x7a,0x60,0x43,0x0e,
22550
+0x60,0x18,0x38,0x43,0x50,0x2f,0x51,0x69,0x3e,0x19,0x20,0x55,
22551
+0x95,0x75,0x62,0x88,0x54,0x25,0x97,0x1e,0x49,0x7d,0x5f,0x75,
22552
+0x8b,0x0a,0x2d,0x5c,0x52,0x17,0x1a,0x0d,0x02,0x02,0xe5,0x05,
22553
+0x2d,0x49,0x62,0x3a,0x63,0x94,0x63,0x31,0x14,0x29,0x40,0x58,
22554
+0x70,0x45,0x5f,0x86,0x5e,0x3b,0x13,0x14,0x40,0x6b,0xa2,0x00,
22555
+0x00,0x03,0x00,0x36,0xff,0xd8,0x05,0x52,0x06,0xc6,0x00,0x11,
22556
+0x00,0x25,0x00,0x62,0x00,0x00,0x01,0x34,0x26,0x27,0x22,0x0e,
22557
+0x02,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x01,0x34,0x2e,
22558
+0x02,0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,
22559
+0x02,0x25,0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,
22560
+0x02,0x37,0x06,0x2b,0x01,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,
22561
+0x33,0x32,0x1e,0x02,0x15,0x14,0x06,0x07,0x3e,0x01,0x32,0x16,
22562
+0x17,0x3e,0x01,0x33,0x3a,0x01,0x17,0x15,0x2e,0x01,0x23,0x22,
22563
+0x0e,0x02,0x07,0x1e,0x03,0x02,0x6d,0x60,0x57,0x24,0x42,0x32,
22564
+0x1d,0x1c,0x30,0x42,0x26,0x2f,0x45,0x2e,0x16,0x01,0xdb,0x28,
22565
+0x4b,0x6e,0x46,0x41,0x6d,0x50,0x2c,0x17,0x3f,0x71,0x5a,0x61,
22566
+0x77,0x42,0x16,0x01,0x0a,0x5a,0x99,0xce,0x73,0x74,0xcd,0x98,
22567
+0x58,0x1e,0x34,0x45,0x28,0x0b,0x0b,0x16,0x4a,0x7a,0x57,0x2f,
22568
+0x40,0x6b,0x8c,0x4c,0x5f,0x89,0x58,0x29,0x1b,0x10,0x0d,0x22,
22569
+0x24,0x23,0x0e,0x2b,0x9f,0x7e,0x08,0x12,0x0f,0x23,0x3b,0x19,
22570
+0x1d,0x36,0x2d,0x20,0x07,0x4b,0x8c,0x6c,0x41,0x05,0x78,0x61,
22571
+0x53,0x01,0x0e,0x27,0x48,0x3a,0x3c,0x4b,0x2a,0x0f,0x10,0x2a,
22572
+0x4c,0xfd,0x33,0x7e,0xb5,0x74,0x36,0x37,0x78,0xbf,0x88,0x59,
22573
+0xae,0x89,0x54,0x59,0x90,0xb6,0x6a,0x9c,0xfa,0xaf,0x5e,0x60,
22574
+0xaa,0xeb,0x8a,0x4e,0x8a,0x77,0x63,0x26,0x01,0x34,0x5b,0x7c,
22575
+0x47,0x57,0x7b,0x4f,0x25,0x41,0x61,0x70,0x2f,0x3f,0x64,0x1d,
22576
+0x02,0x01,0x02,0x01,0xae,0xa7,0x02,0xe1,0x09,0x0a,0x11,0x23,
22577
+0x36,0x26,0x1d,0x68,0x91,0xba,0x00,0x00,0x00,0x02,0x00,0x80,
22578
+0xff,0xda,0x07,0x63,0x06,0xc5,0x00,0x13,0x00,0x4d,0x00,0x00,
22579
+0x01,0x34,0x02,0x2e,0x01,0x23,0x22,0x0e,0x01,0x02,0x15,0x14,
22580
+0x12,0x1e,0x01,0x33,0x32,0x3e,0x01,0x12,0x25,0x34,0x12,0x3e,
22581
+0x01,0x33,0x32,0x16,0x17,0x3e,0x03,0x33,0x32,0x1e,0x04,0x15,
22582
+0x14,0x0e,0x04,0x2b,0x01,0x35,0x33,0x32,0x3e,0x01,0x12,0x35,
22583
+0x34,0x02,0x2e,0x01,0x23,0x22,0x0e,0x02,0x07,0x16,0x12,0x15,
22584
+0x14,0x02,0x0e,0x01,0x23,0x22,0x2e,0x01,0x02,0x03,0xae,0x12,
22585
+0x3c,0x72,0x61,0x5c,0x68,0x33,0x0c,0x11,0x37,0x66,0x55,0x5c,
22586
+0x72,0x3e,0x15,0xfc,0xd2,0x39,0x7e,0xca,0x92,0x88,0xc0,0x42,
22587
+0x21,0x51,0x51,0x4b,0x1c,0x55,0x93,0x78,0x5c,0x40,0x20,0x28,
22588
+0x46,0x5d,0x6c,0x73,0x39,0x46,0x3d,0x2a,0x55,0x46,0x2c,0x2c,
22589
+0x4f,0x6d,0x42,0x0b,0x32,0x41,0x45,0x1d,0x2e,0x2a,0x38,0x81,
22590
+0xd1,0x99,0x8d,0xca,0x80,0x3c,0x03,0x5b,0xa4,0x01,0x0b,0xbd,
22591
+0x67,0x67,0xbd,0xfe,0xf5,0xa4,0xa1,0xfe,0xef,0xc7,0x70,0x69,
22592
+0xc2,0x01,0x13,0xad,0xd0,0x01,0x45,0xdf,0x74,0x5a,0x58,0x2e,
22593
+0x43,0x2c,0x15,0x20,0x4b,0x7d,0xbb,0xff,0xa7,0x82,0xef,0xcf,
22594
+0xa8,0x78,0x42,0x9a,0x6b,0xc9,0x01,0x20,0xb4,0xcb,0x01,0x0a,
22595
+0x9e,0x3f,0x0a,0x1e,0x38,0x2f,0x6c,0xfe,0xdf,0xb7,0xc3,0xfe,
22596
+0xb6,0xee,0x86,0x86,0xef,0x01,0x4a,0x00,0x00,0x01,0x00,0x78,
22597
+0xff,0xd8,0x04,0xda,0x06,0xc6,0x00,0x37,0x00,0x00,0x01,0x14,
22598
+0x0e,0x04,0x07,0x23,0x35,0x3e,0x03,0x35,0x34,0x2e,0x04,0x23,
22599
+0x22,0x0e,0x02,0x15,0x14,0x1e,0x04,0x17,0x15,0x23,0x2e,0x05,
22600
+0x35,0x34,0x3e,0x04,0x33,0x32,0x1e,0x04,0x04,0xda,0x03,0x11,
22601
+0x25,0x45,0x6a,0x4d,0x7a,0x3e,0x43,0x1f,0x05,0x08,0x16,0x29,
22602
+0x44,0x61,0x43,0x5e,0x72,0x3d,0x13,0x02,0x0a,0x15,0x28,0x3d,
22603
+0x2c,0x7b,0x50,0x6e,0x47,0x26,0x12,0x03,0x16,0x33,0x53,0x7b,
22604
+0xa6,0x6c,0x6e,0xa9,0x7f,0x56,0x36,0x17,0x03,0x98,0x40,0x8d,
22605
+0x98,0xa3,0xaa,0xb2,0x5b,0x92,0x2c,0x9a,0xcc,0xf8,0x8b,0x3f,
22606
+0x98,0x98,0x8f,0x6e,0x42,0x6d,0xbb,0xf9,0x8d,0x3c,0x94,0x9c,
22607
+0x9c,0x88,0x69,0x1b,0x94,0x5a,0xc4,0xc0,0xb5,0x97,0x72,0x1d,
22608
+0x5a,0xc1,0xb6,0xa3,0x7a,0x47,0x48,0x7b,0xa3,0xb5,0xbc,0x00,
22609
+0x00,0x01,0x00,0x78,0xff,0xd8,0x04,0xda,0x06,0xc6,0x00,0x4d,
22610
+0x00,0x00,0x01,0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x34,
22611
+0x3e,0x02,0x37,0x17,0x0e,0x03,0x15,0x14,0x1e,0x02,0x33,0x32,
22612
+0x3e,0x02,0x35,0x34,0x2e,0x02,0x23,0x21,0x35,0x32,0x3e,0x04,
22613
+0x35,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x07,0x0e,0x01,0x07,
22614
+0x11,0x33,0x32,0x1e,0x02,0x15,0x14,0x0e,0x02,0x07,0x06,0x23,
22615
+0x33,0x32,0x1e,0x02,0x04,0xda,0x5d,0x9c,0xcc,0x6f,0x69,0xc8,
22616
+0x9d,0x60,0x41,0x61,0x6f,0x2d,0x29,0x19,0x24,0x16,0x0b,0x1e,
22617
+0x47,0x73,0x55,0x59,0x71,0x40,0x18,0x28,0x41,0x52,0x29,0xfe,
22618
+0xdd,0x2a,0x6c,0x71,0x6d,0x56,0x33,0x04,0x12,0x24,0x21,0x20,
22619
+0x32,0x30,0x31,0x1e,0x0b,0x25,0x0e,0xa9,0x64,0x8a,0x57,0x27,
22620
+0x3f,0x66,0x81,0x42,0x02,0x04,0x18,0x61,0xa5,0x76,0x43,0x02,
22621
+0x0e,0x9f,0xd9,0x84,0x3a,0x3a,0x78,0xba,0x80,0x58,0x82,0x59,
22622
+0x34,0x0a,0x44,0x18,0x44,0x51,0x5b,0x2f,0x50,0x7a,0x53,0x2b,
22623
+0x2f,0x6f,0xb7,0x89,0x6d,0x84,0x47,0x17,0xa5,0x18,0x2b,0x3d,
22624
+0x4b,0x56,0x2e,0x27,0x37,0x23,0x0f,0x0b,0x15,0x1e,0x14,0x07,
22625
+0x1b,0x08,0x01,0x1f,0x21,0x47,0x6f,0x4d,0x4f,0x72,0x55,0x40,
22626
+0x1c,0x02,0x51,0x90,0xc8,0x00,0x00,0x00,0x00,0x01,0x00,0x88,
22627
+0xff,0xd8,0x09,0x86,0x06,0xc6,0x00,0x84,0x00,0x00,0x01,0x14,
22628
+0x0e,0x04,0x23,0x27,0x32,0x3e,0x02,0x35,0x34,0x2e,0x02,0x23,
22629
+0x22,0x0e,0x02,0x1d,0x01,0x14,0x16,0x17,0x15,0x21,0x35,0x3e,
22630
+0x01,0x3d,0x01,0x34,0x26,0x23,0x22,0x0e,0x02,0x1d,0x01,0x14,
22631
+0x16,0x17,0x15,0x21,0x35,0x3e,0x01,0x3d,0x01,0x34,0x26,0x07,
22632
+0x0e,0x05,0x15,0x14,0x1e,0x04,0x17,0x1e,0x03,0x17,0x23,0x2e,
22633
+0x03,0x23,0x22,0x0e,0x02,0x07,0x27,0x3e,0x03,0x37,0x2e,0x05,
22634
+0x35,0x34,0x3e,0x04,0x33,0x32,0x1e,0x02,0x17,0x3e,0x03,0x33,
22635
+0x32,0x1e,0x02,0x17,0x3e,0x03,0x33,0x32,0x1e,0x04,0x09,0x86,
22636
+0x2e,0x4f,0x66,0x71,0x74,0x34,0x06,0x3a,0x5b,0x3f,0x20,0x26,
22637
+0x41,0x56,0x2f,0x32,0x53,0x3e,0x22,0x1a,0x1c,0xfe,0xe1,0x1c,
22638
+0x1a,0x6e,0x73,0x37,0x57,0x3d,0x20,0x20,0x1d,0xfe,0xdb,0x1c,
22639
+0x1d,0x80,0x7b,0x2b,0x44,0x35,0x25,0x19,0x0b,0x4e,0x86,0xb5,
22640
+0xce,0xdd,0x6c,0x7e,0xd3,0xa0,0x68,0x14,0x54,0x25,0x84,0xb2,
22641
+0xda,0x7b,0x54,0xa1,0x92,0x7d,0x2f,0x74,0x20,0x4c,0x52,0x56,
22642
+0x29,0x58,0xa9,0x97,0x7f,0x5d,0x34,0x2a,0x48,0x62,0x70,0x79,
22643
+0x3b,0x2b,0x62,0x5c,0x4d,0x16,0x11,0x4b,0x5d,0x61,0x27,0x26,
22644
+0x5f,0x5c,0x4e,0x14,0x13,0x48,0x5b,0x65,0x30,0x3a,0x75,0x6e,
22645
+0x5f,0x46,0x29,0x04,0x74,0x6f,0xaf,0x85,0x5d,0x3a,0x1b,0x86,
22646
+0x42,0x7b,0xae,0x6c,0x61,0x9d,0x6e,0x3b,0x18,0x38,0x5c,0x43,
22647
+0xa0,0x2a,0x48,0x2f,0x4a,0x4a,0x2f,0x48,0x2a,0xa3,0x73,0x84,
22648
+0x22,0x40,0x5c,0x39,0xa5,0x29,0x48,0x2e,0x4a,0x4a,0x2f,0x48,
22649
+0x2b,0xa2,0x73,0x79,0x02,0x01,0x2a,0x47,0x5f,0x6c,0x72,0x37,
22650
+0x91,0xd1,0x93,0x5d,0x3a,0x20,0x0c,0x0e,0x2b,0x5a,0x9a,0x7e,
22651
+0x2b,0x52,0x40,0x28,0x16,0x2f,0x4c,0x36,0xb7,0x16,0x21,0x18,
22652
+0x0f,0x05,0x19,0x5f,0x7e,0x99,0xaa,0xb4,0x5a,0x81,0xbf,0x88,
22653
+0x57,0x32,0x13,0x16,0x30,0x4d,0x38,0x38,0x51,0x34,0x19,0x19,
22654
+0x34,0x50,0x37,0x34,0x4c,0x31,0x18,0x23,0x44,0x65,0x81,0x9e,
22655
+0x00,0x02,0x00,0x78,0xff,0xd8,0x04,0xdb,0x06,0xc6,0x00,0x11,
22656
+0x00,0x42,0x00,0x00,0x01,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,
22657
+0x15,0x14,0x1e,0x02,0x33,0x32,0x36,0x37,0x14,0x0e,0x02,0x23,
22658
+0x22,0x2e,0x02,0x35,0x34,0x3e,0x04,0x33,0x32,0x1e,0x02,0x17,
22659
+0x11,0x34,0x26,0x23,0x22,0x0e,0x02,0x15,0x1e,0x01,0x17,0x07,
22660
+0x2e,0x01,0x35,0x34,0x3e,0x04,0x33,0x20,0x04,0x15,0x03,0xea,
22661
+0x36,0x5a,0x75,0x3f,0x42,0x6c,0x4d,0x2a,0x2f,0x55,0x76,0x47,
22662
+0x9d,0x8b,0xf1,0x5d,0x95,0xba,0x5e,0x83,0xdd,0xa0,0x59,0x2f,
22663
+0x50,0x6d,0x7b,0x85,0x40,0x25,0x5e,0x5c,0x50,0x17,0x97,0x98,
22664
+0x3b,0x6d,0x54,0x33,0x02,0x2c,0x31,0xbd,0x2b,0x33,0x29,0x47,
22665
+0x5d,0x67,0x6b,0x31,0x01,0x20,0x01,0x1b,0x02,0x0e,0x96,0xbe,
22666
+0x6a,0x27,0x37,0x6d,0xa4,0x6d,0x7a,0xae,0x6f,0x35,0xce,0x98,
22667
+0x90,0xc4,0x78,0x34,0x5a,0xa1,0xde,0x85,0x5f,0xa2,0x85,0x67,
22668
+0x45,0x24,0x17,0x23,0x2a,0x12,0x01,0x79,0x4b,0x54,0x0b,0x1f,
22669
+0x37,0x2b,0x11,0x31,0x24,0x9a,0x30,0x62,0x3c,0x38,0x5f,0x4c,
22670
+0x39,0x27,0x13,0xb9,0xc3,0x00,0x00,0x00,0x00,0x02,0x00,0x9a,
22671
+0xff,0xd8,0x04,0xfd,0x06,0xc8,0x00,0x13,0x00,0x54,0x00,0x00,
22672
+0x01,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,
22673
+0x33,0x32,0x3e,0x02,0x25,0x14,0x0e,0x02,0x23,0x22,0x2e,0x04,
22674
+0x35,0x11,0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,0x17,0x1e,0x01,
22675
+0x33,0x32,0x3e,0x02,0x37,0x17,0x0e,0x03,0x23,0x22,0x26,0x27,
22676
+0x2e,0x01,0x23,0x22,0x0e,0x02,0x15,0x1c,0x01,0x06,0x14,0x15,
22677
+0x3e,0x03,0x33,0x32,0x1e,0x04,0x03,0xf2,0x33,0x55,0x6d,0x39,
22678
+0x3c,0x70,0x57,0x34,0x2f,0x52,0x72,0x44,0x3c,0x6d,0x54,0x31,
22679
+0x01,0x0b,0x57,0x99,0xd0,0x79,0x4d,0x8d,0x7b,0x65,0x48,0x28,
22680
+0x2d,0x58,0x83,0x57,0x21,0x48,0x48,0x44,0x1e,0x2b,0x48,0x1b,
22681
+0x25,0x40,0x3c,0x3b,0x20,0x2a,0x19,0x3f,0x4a,0x55,0x2f,0x33,
22682
+0x79,0x3d,0x35,0x5f,0x24,0x21,0x30,0x1f,0x0f,0x01,0x21,0x59,
22683
+0x5b,0x53,0x1b,0x43,0x8a,0x80,0x70,0x54,0x30,0x02,0x5d,0x81,
22684
+0x9e,0x58,0x1e,0x31,0x69,0xa6,0x74,0x8e,0xb3,0x66,0x25,0x24,
22685
+0x69,0xc1,0x9d,0xbe,0xf9,0x93,0x3b,0x18,0x38,0x5e,0x8e,0xc0,
22686
+0x7f,0x02,0xd5,0x6b,0x99,0x61,0x2e,0x0b,0x12,0x15,0x09,0x0e,
22687
+0x15,0x10,0x1d,0x27,0x17,0x31,0x2d,0x53,0x3f,0x26,0x27,0x16,
22688
+0x12,0x20,0x14,0x2f,0x4f,0x3b,0x37,0x61,0x5f,0x61,0x37,0x38,
22689
+0x4d,0x2f,0x14,0x1f,0x3e,0x5c,0x7d,0x9c,0x00,0x01,0x00,0x81,
22690
+0xff,0x00,0x07,0x1e,0x06,0xc6,0x00,0x5d,0x00,0x00,0x01,0x14,
22691
+0x0e,0x04,0x07,0x1e,0x03,0x17,0x07,0x2e,0x03,0x23,0x35,0x3e,
22692
+0x05,0x10,0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,0x11,0x14,0x16,
22693
+0x17,0x15,0x21,0x35,0x3e,0x01,0x35,0x11,0x34,0x2e,0x02,0x23,
22694
+0x22,0x0e,0x01,0x02,0x15,0x14,0x1e,0x04,0x17,0x15,0x23,0x2e,
22695
+0x05,0x37,0x34,0x3e,0x04,0x33,0x32,0x1e,0x02,0x17,0x3e,0x03,
22696
+0x33,0x32,0x1e,0x01,0x12,0x07,0x1e,0x20,0x39,0x50,0x60,0x6d,
22697
+0x3a,0x2d,0x43,0x3c,0x3e,0x27,0x84,0x28,0x49,0x4b,0x4f,0x2d,
22698
+0x21,0x4c,0x4b,0x45,0x35,0x1f,0x1a,0x3b,0x5e,0x45,0x38,0x59,
22699
+0x3e,0x21,0x20,0x1d,0xfe,0xd9,0x1d,0x15,0x2c,0x4b,0x64,0x38,
22700
+0x44,0x53,0x2e,0x10,0x21,0x34,0x42,0x43,0x3d,0x15,0x51,0x34,
22701
+0x70,0x6d,0x61,0x4a,0x2b,0x01,0x1a,0x34,0x4f,0x6b,0x88,0x53,
22702
+0x38,0x6d,0x5f,0x4e,0x19,0x18,0x4a,0x58,0x60,0x2d,0x75,0xc0,
22703
+0x89,0x4a,0x03,0x8f,0x90,0xdb,0xa8,0x7b,0x61,0x4e,0x26,0x02,
22704
+0x0c,0x1e,0x36,0x2c,0x9e,0x3c,0x52,0x33,0x16,0x8b,0x07,0x2f,
22705
+0x54,0x7f,0xaf,0xe5,0x01,0x20,0xf6,0xb4,0x65,0x29,0x4b,0x6a,
22706
+0x40,0xfe,0x6e,0x27,0x4a,0x2a,0x4a,0x4a,0x2a,0x49,0x28,0x01,
22707
+0x92,0x40,0x6a,0x4b,0x29,0x4f,0xb8,0xfe,0xd1,0xdf,0x72,0xbb,
22708
+0x97,0x72,0x50,0x2f,0x08,0x85,0x1a,0x4c,0x6d,0x8f,0xb8,0xe5,
22709
+0x8c,0x7a,0xe0,0xc1,0x9d,0x6f,0x3d,0x20,0x40,0x5e,0x3e,0x3d,
22710
+0x5f,0x3f,0x21,0x64,0xcc,0xfe,0xcb,0x00,0x00,0x01,0x00,0x78,
22711
+0xff,0xd8,0x04,0xda,0x06,0xc6,0x00,0x4c,0x00,0x00,0x01,0x14,
22712
+0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x37,0x17,
22713
+0x0e,0x05,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x27,0x2e,
22714
+0x03,0x2b,0x01,0x35,0x33,0x32,0x3e,0x02,0x35,0x34,0x2e,0x06,
22715
+0x3d,0x01,0x33,0x15,0x14,0x1e,0x06,0x15,0x14,0x0e,0x02,0x07,
22716
+0x1e,0x03,0x04,0xda,0x58,0x98,0xce,0x76,0x74,0xcb,0x98,0x57,
22717
+0x34,0x5b,0x7a,0x45,0x14,0x11,0x1a,0x13,0x0e,0x09,0x04,0x2b,
22718
+0x4f,0x6d,0x42,0x54,0x72,0x46,0x1d,0x01,0x01,0x37,0x55,0x67,
22719
+0x31,0x9f,0x9c,0x32,0x60,0x4c,0x2e,0x2f,0x4c,0x62,0x66,0x62,
22720
+0x4c,0x2f,0x74,0x3a,0x5e,0x79,0x7d,0x79,0x5e,0x3a,0x3b,0x5c,
22721
+0x71,0x35,0x4e,0x86,0x62,0x38,0x01,0xe3,0x80,0xc3,0x84,0x44,
22722
+0x42,0x7d,0xb2,0x70,0x49,0x71,0x57,0x3f,0x17,0x74,0x05,0x21,
22723
+0x2d,0x35,0x33,0x2d,0x0e,0x5a,0x7c,0x4d,0x21,0x2d,0x5d,0x8e,
22724
+0x62,0x6b,0xa0,0x6a,0x34,0x96,0x18,0x30,0x49,0x30,0x33,0x3d,
22725
+0x25,0x16,0x15,0x1e,0x36,0x56,0x43,0x2d,0x2f,0x2d,0x32,0x1c,
22726
+0x0f,0x11,0x1c,0x38,0x5c,0x49,0x4a,0x69,0x48,0x2a,0x0b,0x18,
22727
+0x4d,0x76,0xa5,0x00,0x00,0x01,0x00,0x78,0xff,0xd8,0x04,0xda,
22728
+0x06,0xc9,0x00,0x52,0x00,0x00,0x01,0x14,0x0e,0x02,0x23,0x22,
22729
+0x2e,0x02,0x35,0x34,0x3e,0x02,0x37,0x17,0x0e,0x01,0x17,0x06,
22730
+0x1e,0x02,0x17,0x16,0x3e,0x02,0x35,0x13,0x0e,0x01,0x23,0x22,
22731
+0x26,0x27,0x1e,0x03,0x07,0x0e,0x03,0x07,0x0e,0x01,0x23,0x22,
22732
+0x26,0x27,0x11,0x1e,0x03,0x37,0x3e,0x03,0x35,0x34,0x2e,0x02,
22733
+0x23,0x22,0x07,0x03,0x1e,0x03,0x33,0x32,0x3e,0x02,0x35,0x33,
22734
+0x04,0xda,0x52,0x93,0xcd,0x7a,0x70,0xcd,0x9c,0x5d,0x35,0x59,
22735
+0x72,0x3d,0x29,0x29,0x33,0x02,0x01,0x22,0x4a,0x71,0x4e,0x3d,
22736
+0x71,0x56,0x33,0x02,0x31,0x6b,0x36,0x29,0x55,0x29,0x21,0x3d,
22737
+0x2f,0x1b,0x01,0x02,0x27,0x4a,0x6a,0x43,0x0f,0x20,0x0f,0x36,
22738
+0x65,0x31,0x21,0x43,0x41,0x3b,0x18,0x29,0x34,0x1d,0x0b,0x1f,
22739
+0x3c,0x58,0x39,0x37,0x4d,0x04,0x2a,0x68,0x73,0x7a,0x3c,0x53,
22740
+0x9c,0x78,0x48,0x7c,0x02,0x4a,0xad,0xef,0x94,0x42,0x41,0x72,
22741
+0x9b,0x5a,0x53,0x79,0x55,0x34,0x0e,0x41,0x2a,0x8d,0x5c,0x4e,
22742
+0x6b,0x41,0x1e,0x02,0x01,0x1a,0x3f,0x6b,0x51,0x04,0x55,0x11,
22743
+0x11,0x07,0x05,0x15,0x38,0x48,0x5b,0x38,0x35,0x62,0x50,0x39,
22744
+0x0b,0x02,0x01,0x22,0x29,0x01,0x2d,0x29,0x53,0x41,0x26,0x03,
22745
+0x05,0x21,0x30,0x39,0x1d,0x23,0x50,0x45,0x2d,0x1f,0x01,0x18,
22746
+0x10,0x17,0x0f,0x08,0x0f,0x1c,0x2b,0x1d,0x00,0x01,0x00,0x81,
22747
+0xff,0xd7,0x07,0x7c,0x06,0xb3,0x00,0x71,0x00,0x00,0x01,0x14,
22748
+0x0e,0x02,0x07,0x23,0x35,0x32,0x3e,0x02,0x35,0x34,0x2e,0x02,
22749
+0x23,0x22,0x0e,0x04,0x1d,0x01,0x14,0x1e,0x02,0x17,0x15,0x21,
22750
+0x35,0x3e,0x03,0x3d,0x01,0x34,0x2e,0x04,0x23,0x22,0x0e,0x02,
22751
+0x15,0x14,0x1e,0x02,0x33,0x15,0x23,0x2e,0x03,0x35,0x34,0x3e,
22752
+0x04,0x33,0x32,0x1e,0x02,0x33,0x32,0x3e,0x02,0x37,0x17,0x0e,
22753
+0x03,0x23,0x22,0x2e,0x02,0x23,0x22,0x0e,0x02,0x07,0x3e,0x01,
22754
+0x33,0x32,0x1e,0x02,0x17,0x3e,0x03,0x33,0x32,0x1e,0x02,0x07,
22755
+0x7c,0x37,0x68,0x96,0x60,0x70,0x41,0x5e,0x3c,0x1d,0x12,0x33,
22756
+0x5d,0x4b,0x19,0x3c,0x3d,0x39,0x2c,0x1b,0x07,0x0d,0x14,0x0e,
22757
+0xfe,0xe5,0x0d,0x12,0x0b,0x05,0x20,0x33,0x42,0x43,0x3f,0x17,
22758
+0x43,0x61,0x3f,0x1e,0x30,0x50,0x69,0x39,0x7b,0x68,0xa1,0x6e,
22759
+0x3a,0x20,0x44,0x6a,0x95,0xc2,0x79,0x1f,0x45,0x44,0x43,0x1e,
22760
+0x4c,0x7f,0x67,0x4f,0x1b,0x66,0x3c,0x72,0x6e,0x6d,0x38,0x2a,
22761
+0x62,0x65,0x64,0x2d,0x5b,0x90,0x6b,0x46,0x12,0x43,0xaf,0x6a,
22762
+0x39,0x73,0x66,0x53,0x1a,0x19,0x51,0x64,0x6f,0x36,0x66,0xb6,
22763
+0x89,0x50,0x02,0x60,0x6a,0xc9,0xac,0x85,0x25,0x9b,0x49,0x84,
22764
+0xb8,0x6f,0x5b,0xa1,0x78,0x46,0x0a,0x17,0x27,0x3a,0x50,0x35,
22765
+0x77,0x15,0x34,0x35,0x33,0x14,0x4a,0x4a,0x14,0x33,0x35,0x34,
22766
+0x15,0x77,0x35,0x51,0x3b,0x26,0x17,0x09,0x46,0x7a,0xa6,0x5f,
22767
+0x90,0xbc,0x70,0x2d,0x9b,0x22,0x85,0xb1,0xd3,0x71,0x75,0xf0,
22768
+0xdf,0xc2,0x90,0x53,0x06,0x06,0x06,0x13,0x1e,0x25,0x13,0x51,
22769
+0x3c,0x56,0x37,0x1a,0x13,0x17,0x13,0x4a,0x74,0x8e,0x44,0x49,
22770
+0x44,0x18,0x37,0x59,0x41,0x41,0x59,0x37,0x18,0x3d,0x8d,0xe6,
22771
+0x00,0x01,0x00,0x09,0xff,0xd8,0x05,0x7c,0x06,0xc6,0x00,0x4d,
22772
+0x00,0x00,0x01,0x14,0x0e,0x04,0x23,0x22,0x2e,0x04,0x35,0x11,
22773
+0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,0x07,0x23,0x35,0x34,
22774
+0x3e,0x02,0x33,0x32,0x16,0x15,0x11,0x14,0x1e,0x02,0x33,0x32,
22775
+0x3e,0x02,0x35,0x34,0x2e,0x02,0x27,0x2e,0x03,0x35,0x34,0x3e,
22776
+0x02,0x33,0x15,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,0x17,0x1e,
22777
+0x03,0x05,0x7c,0x2d,0x4f,0x6b,0x7c,0x87,0x43,0x45,0x89,0x7e,
22778
+0x6c,0x50,0x2e,0x07,0x14,0x24,0x1d,0x15,0x21,0x16,0x0c,0x01,
22779
+0x5b,0x1a,0x37,0x57,0x3c,0x89,0x97,0x29,0x4f,0x76,0x4d,0x50,
22780
+0x71,0x48,0x22,0x1f,0x30,0x3b,0x1d,0x18,0x2e,0x24,0x16,0x20,
22781
+0x43,0x66,0x46,0x1a,0x37,0x2d,0x1c,0x18,0x29,0x37,0x1f,0x31,
22782
+0x67,0x55,0x37,0x02,0x24,0x6b,0xab,0x82,0x5d,0x3b,0x1c,0x1f,
22783
+0x3b,0x55,0x6b,0x80,0x49,0x03,0x99,0x46,0x59,0x33,0x12,0x15,
22784
+0x22,0x2a,0x15,0xa3,0xcf,0x2c,0x4f,0x3b,0x22,0xb0,0xae,0xfc,
22785
+0xa6,0x75,0x9e,0x60,0x29,0x23,0x64,0xb4,0x90,0x49,0x69,0x4c,
22786
+0x35,0x17,0x13,0x29,0x34,0x44,0x2d,0x31,0x64,0x51,0x33,0xd7,
22787
+0x04,0x0d,0x1b,0x16,0x15,0x26,0x24,0x25,0x14,0x1f,0x48,0x63,
22788
+0x86,0x00,0x00,0x00,0x00,0x02,0x00,0x7b,0xff,0xd8,0x05,0xe8,
22789
+0x06,0xc6,0x00,0x13,0x00,0x73,0x00,0x00,0x01,0x34,0x2e,0x02,
22790
+0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,0x17,0x3e,0x03,0x03,
22791
+0x2e,0x03,0x35,0x34,0x3e,0x02,0x37,0x2e,0x03,0x35,0x34,0x3e,
22792
+0x02,0x33,0x32,0x1e,0x02,0x15,0x14,0x06,0x07,0x1e,0x03,0x15,
22793
+0x14,0x0e,0x04,0x23,0x22,0x2e,0x04,0x35,0x34,0x3e,0x02,0x37,
22794
+0x0e,0x01,0x23,0x22,0x26,0x27,0x35,0x1e,0x01,0x33,0x32,0x36,
22795
+0x37,0x33,0x17,0x0e,0x05,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,
22796
+0x02,0x35,0x34,0x2e,0x02,0x27,0x0e,0x01,0x15,0x14,0x16,0x17,
22797
+0x03,0xc1,0x08,0x17,0x2b,0x23,0x1e,0x28,0x18,0x09,0x09,0x17,
22798
+0x27,0x1e,0x21,0x2b,0x19,0x0a,0x5f,0x4d,0x71,0x49,0x24,0x17,
22799
+0x2d,0x41,0x2a,0x29,0x3a,0x24,0x11,0x27,0x45,0x61,0x39,0x3d,
22800
+0x61,0x44,0x24,0x3a,0x4b,0x8c,0xc9,0x81,0x3d,0x29,0x4e,0x72,
22801
+0x91,0xb0,0x66,0x80,0xd0,0xa3,0x77,0x4d,0x26,0x1b,0x3c,0x60,
22802
+0x44,0x1d,0x32,0x18,0x22,0x3e,0x1d,0x33,0x7b,0x3c,0x0b,0x1c,
22803
+0x0b,0x23,0x06,0x13,0x1c,0x12,0x0b,0x05,0x02,0x3a,0x73,0xad,
22804
+0x74,0x71,0x99,0x5d,0x27,0x2f,0x61,0x94,0x64,0x49,0x4e,0x4f,
22805
+0x52,0x05,0xd5,0x1e,0x2b,0x1a,0x0c,0x09,0x19,0x2b,0x22,0x20,
22806
+0x29,0x1e,0x17,0x0d,0x0f,0x1c,0x20,0x26,0xfc,0xd9,0x07,0x38,
22807
+0x53,0x68,0x37,0x2c,0x59,0x54,0x4a,0x1c,0x10,0x26,0x31,0x40,
22808
+0x2a,0x46,0x5c,0x38,0x17,0x17,0x38,0x5c,0x46,0x39,0x63,0x23,
22809
+0x24,0x73,0x9f,0xc9,0x7a,0x5c,0xb0,0x9e,0x85,0x60,0x36,0x36,
22810
+0x62,0x88,0xa5,0xbc,0x64,0x75,0xb6,0x99,0x88,0x48,0x0a,0x08,
22811
+0x14,0x17,0xd9,0x3d,0x3f,0x08,0x08,0x6d,0x13,0x52,0x6d,0x7d,
22812
+0x7c,0x72,0x2a,0xac,0xf8,0xa1,0x4c,0x4b,0x99,0xeb,0xa0,0x45,
22813
+0x94,0x88,0x70,0x20,0x2d,0x75,0x38,0x34,0x59,0x17,0x00,0x00,
22814
+0x00,0x01,0x00,0x41,0xff,0xd8,0x05,0x5f,0x06,0xc6,0x00,0x71,
22815
+0x00,0x00,0x01,0x14,0x0e,0x02,0x23,0x22,0x2e,0x04,0x35,0x34,
22816
+0x3e,0x02,0x37,0x17,0x0e,0x03,0x15,0x14,0x1e,0x02,0x33,0x32,
22817
+0x3e,0x04,0x35,0x11,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x1d,
22818
+0x01,0x14,0x1e,0x02,0x17,0x15,0x07,0x35,0x3e,0x03,0x35,0x27,
22819
+0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x07,0x0e,0x03,0x23,0x22,
22820
+0x2e,0x02,0x35,0x37,0x17,0x07,0x0e,0x01,0x15,0x14,0x16,0x33,
22821
+0x32,0x3e,0x02,0x37,0x3e,0x03,0x33,0x32,0x16,0x17,0x3e,0x03,
22822
+0x33,0x32,0x1e,0x02,0x15,0x05,0x5f,0x43,0x8c,0xda,0x96,0x46,
22823
+0x87,0x7a,0x68,0x4c,0x2b,0x33,0x60,0x89,0x57,0x01,0x1d,0x27,
22824
+0x1a,0x0b,0x32,0x51,0x65,0x33,0x4e,0x6b,0x44,0x25,0x11,0x02,
22825
+0x0c,0x1c,0x2f,0x22,0x2c,0x33,0x19,0x07,0x03,0x08,0x0f,0x0c,
22826
+0xee,0x0b,0x0e,0x07,0x02,0x01,0x09,0x18,0x2b,0x22,0x1b,0x22,
22827
+0x15,0x0b,0x04,0x13,0x27,0x30,0x3c,0x27,0x2f,0x50,0x3a,0x20,
22828
+0x01,0xa9,0x1a,0x02,0x02,0x2a,0x26,0x0e,0x1d,0x18,0x11,0x02,
22829
+0x06,0x2c,0x3f,0x48,0x21,0x41,0x62,0x1d,0x12,0x2b,0x38,0x47,
22830
+0x2f,0x4b,0x83,0x61,0x38,0x02,0x0e,0x70,0xcd,0x9c,0x5d,0x20,
22831
+0x3c,0x59,0x71,0x89,0x4f,0x51,0x93,0x73,0x4b,0x09,0x74,0x0c,
22832
+0x3a,0x54,0x6b,0x3c,0x5d,0x83,0x54,0x26,0x20,0x36,0x46,0x4a,
22833
+0x4b,0x1f,0x03,0xcd,0x2c,0x3d,0x25,0x11,0x23,0x2f,0x2c,0x09,
22834
+0x35,0x12,0x42,0x48,0x41,0x12,0x49,0x02,0x4a,0x12,0x42,0x49,
22835
+0x42,0x12,0x31,0x1f,0x33,0x24,0x14,0x07,0x0f,0x18,0x12,0x3f,
22836
+0x50,0x2f,0x11,0x21,0x3c,0x56,0x35,0xa3,0x01,0x9d,0x0e,0x14,
22837
+0x08,0x23,0x14,0x05,0x0e,0x1a,0x16,0x4d,0x57,0x2a,0x0a,0x54,
22838
+0x51,0x30,0x40,0x25,0x10,0x29,0x61,0x9f,0x75,0x00,0x00,0x00,
22839
+0x00,0x02,0x00,0x7f,0xff,0xd8,0x07,0x0f,0x06,0xc6,0x00,0x11,
22840
+0x00,0x6c,0x00,0x00,0x01,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,
22841
+0x15,0x14,0x1e,0x02,0x33,0x32,0x36,0x03,0x14,0x1e,0x02,0x33,
22842
+0x32,0x3e,0x04,0x35,0x34,0x2e,0x02,0x23,0x35,0x32,0x3e,0x02,
22843
+0x35,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x07,0x1e,0x03,0x15,
22844
+0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x04,0x33,
22845
+0x32,0x1e,0x02,0x17,0x3e,0x03,0x33,0x32,0x1e,0x02,0x15,0x14,
22846
+0x0e,0x02,0x07,0x1e,0x03,0x15,0x14,0x0e,0x02,0x23,0x22,0x2e,
22847
+0x02,0x35,0x03,0x80,0x20,0x3f,0x5d,0x3f,0x48,0x60,0x3b,0x19,
22848
+0x19,0x3b,0x61,0x47,0x89,0x73,0x6e,0x1b,0x4d,0x8a,0x70,0x57,
22849
+0x7c,0x54,0x31,0x1a,0x07,0x0c,0x3a,0x77,0x6c,0x62,0x7a,0x43,
22850
+0x17,0x1a,0x37,0x58,0x3e,0x25,0x3a,0x33,0x32,0x1d,0x0d,0x1c,
22851
+0x16,0x0e,0x5d,0x93,0xb4,0x57,0x5f,0xba,0x93,0x5a,0x21,0x3f,
22852
+0x5a,0x71,0x86,0x4b,0x29,0x69,0x6a,0x60,0x20,0x21,0x4e,0x4f,
22853
+0x48,0x1a,0x77,0xbb,0x82,0x44,0x33,0x57,0x74,0x42,0x40,0x75,
22854
+0x57,0x33,0x66,0xb4,0xf8,0x92,0x94,0xea,0xa3,0x56,0x04,0x73,
22855
+0x74,0xa7,0x6c,0x34,0x33,0x69,0xa2,0x6f,0x74,0xae,0x73,0x39,
22856
+0xdf,0xfe,0x02,0x53,0x70,0x43,0x1c,0x0e,0x1c,0x2c,0x3c,0x4d,
22857
+0x2f,0x5e,0x7c,0x49,0x1d,0x83,0x30,0x69,0xa8,0x78,0x5a,0x76,
22858
+0x46,0x1c,0x06,0x15,0x28,0x21,0x17,0x4e,0x5f,0x67,0x2f,0x83,
22859
+0xda,0x9d,0x58,0x5a,0x9f,0xdb,0x81,0x4d,0x94,0x84,0x6f,0x51,
22860
+0x2e,0x10,0x25,0x3f,0x2f,0x2c,0x3e,0x27,0x12,0x3d,0x78,0xb2,
22861
+0x75,0x60,0x9b,0x77,0x53,0x19,0x0d,0x3b,0x61,0x88,0x5b,0x5d,
22862
+0x9b,0x71,0x3f,0x3e,0x73,0xa5,0x66,0x00,0x00,0x01,0x00,0x78,
22863
+0xff,0xd8,0x04,0xd9,0x06,0xac,0x00,0x45,0x00,0x00,0x01,0x14,
22864
+0x0e,0x02,0x23,0x22,0x2e,0x04,0x35,0x34,0x3e,0x04,0x37,0x17,
22865
+0x0e,0x03,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,0x11,
22866
+0x2e,0x03,0x23,0x22,0x0e,0x02,0x15,0x14,0x16,0x17,0x07,0x2e,
22867
+0x01,0x35,0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,0x17,0x11,0x22,
22868
+0x26,0x23,0x27,0x25,0x04,0xd9,0x48,0x87,0xc1,0x79,0x45,0x8e,
22869
+0x85,0x76,0x57,0x33,0x1f,0x36,0x49,0x56,0x5e,0x2f,0x14,0x1f,
22870
+0x33,0x25,0x15,0x3c,0x5e,0x75,0x39,0x4f,0x6c,0x42,0x1d,0x35,
22871
+0x60,0x5d,0x5f,0x33,0x25,0x48,0x39,0x23,0x30,0x35,0x8c,0x47,
22872
+0x46,0x3e,0x67,0x86,0x47,0x3c,0x71,0x69,0x60,0x29,0x39,0x7a,
22873
+0x38,0x30,0x02,0x01,0x01,0xf2,0x8a,0xca,0x85,0x41,0x10,0x25,
22874
+0x3b,0x57,0x75,0x4b,0x48,0x6a,0x4c,0x32,0x20,0x12,0x06,0x6d,
22875
+0x0c,0x26,0x3a,0x55,0x3a,0x42,0x5b,0x38,0x18,0x3f,0x66,0x83,
22876
+0x44,0x02,0x23,0x43,0x5c,0x39,0x1a,0x13,0x20,0x2d,0x19,0x37,
22877
+0x42,0x1e,0x8f,0x2e,0x89,0x6a,0x47,0x6d,0x49,0x25,0x21,0x3b,
22878
+0x53,0x32,0x01,0x52,0x03,0x8c,0x15,0x00,0x00,0x01,0x00,0x7f,
22879
+0xff,0xd8,0x06,0xfe,0x06,0xc5,0x00,0x5f,0x00,0x00,0x01,0x14,
22880
+0x0e,0x02,0x07,0x27,0x3e,0x03,0x35,0x34,0x2e,0x02,0x23,0x22,
22881
+0x0e,0x02,0x1d,0x01,0x14,0x16,0x17,0x15,0x21,0x35,0x3e,0x01,
22882
+0x3d,0x01,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,
22883
+0x04,0x17,0x1e,0x05,0x17,0x23,0x2e,0x03,0x23,0x22,0x06,0x07,
22884
+0x27,0x3e,0x03,0x37,0x2e,0x05,0x35,0x34,0x3e,0x02,0x33,0x32,
22885
+0x16,0x17,0x3e,0x03,0x33,0x32,0x1e,0x02,0x06,0xfe,0x28,0x5b,
22886
+0x96,0x6e,0x29,0x42,0x4b,0x25,0x09,0x1c,0x3b,0x5d,0x42,0x3f,
22887
+0x5e,0x3f,0x1f,0x17,0x1a,0xfe,0xf2,0x1a,0x15,0x1d,0x3f,0x62,
22888
+0x44,0x41,0x56,0x33,0x15,0x2d,0x4f,0x6c,0x7f,0x8a,0x47,0x3a,
22889
+0x73,0x6a,0x60,0x50,0x3d,0x12,0x5d,0x44,0x87,0x84,0x7f,0x3d,
22890
+0x5e,0xa9,0x49,0x5d,0x16,0x2f,0x3c,0x4b,0x31,0x4f,0x93,0x80,
22891
+0x69,0x4c,0x29,0x4d,0x87,0xb7,0x6b,0x70,0xae,0x2e,0x16,0x50,
22892
+0x64,0x73,0x3a,0x66,0xa7,0x78,0x41,0x04,0x78,0x5c,0xb4,0xa4,
22893
+0x8d,0x36,0x72,0x2d,0x6c,0x7f,0x91,0x50,0x69,0xa7,0x74,0x3e,
22894
+0x2b,0x4d,0x68,0x3d,0x67,0x26,0x4b,0x29,0x49,0x49,0x29,0x4b,
22895
+0x26,0x67,0x3d,0x68,0x4d,0x2b,0x2d,0x6a,0xaf,0x82,0x5b,0x9c,
22896
+0x86,0x70,0x5b,0x48,0x1b,0x17,0x2e,0x39,0x47,0x5c,0x76,0x4c,
22897
+0x39,0x5d,0x42,0x24,0x5f,0x6b,0x9a,0x1c,0x38,0x30,0x24,0x09,
22898
+0x1f,0x67,0x81,0x95,0x99,0x98,0x44,0xab,0xe9,0x8e,0x3d,0x74,
22899
+0x73,0x35,0x56,0x3c,0x20,0x34,0x84,0xe4,0x00,0x01,0x00,0x78,
22900
+0xff,0xd8,0x04,0xd7,0x06,0xc4,0x00,0x40,0x00,0x00,0x01,0x14,
22901
+0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x37,0x15,
22902
+0x0e,0x03,0x15,0x14,0x16,0x33,0x32,0x3e,0x02,0x35,0x11,0x0e,
22903
+0x03,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x37,0x33,0x17,
22904
+0x0e,0x03,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,0x11,
22905
+0x33,0x04,0xd7,0x57,0x9a,0xd1,0x7b,0x6f,0xc6,0x96,0x57,0x39,
22906
+0x64,0x89,0x51,0x25,0x2b,0x17,0x07,0x84,0x95,0x49,0x78,0x55,
22907
+0x2f,0x19,0x4c,0x58,0x5e,0x2b,0x61,0xb4,0x8a,0x53,0x21,0x4d,
22908
+0x7f,0x5e,0xbe,0x04,0x41,0x63,0x42,0x21,0x18,0x34,0x55,0x3d,
22909
+0x37,0x78,0x64,0x41,0xf8,0x01,0xf9,0x85,0xcc,0x8a,0x46,0x3c,
22910
+0x6d,0x98,0x5c,0x51,0x83,0x60,0x3b,0x09,0x76,0x0e,0x35,0x42,
22911
+0x48,0x22,0x8f,0x87,0x19,0x35,0x54,0x3c,0x02,0xc4,0x2a,0x48,
22912
+0x36,0x1e,0x35,0x66,0x94,0x5f,0x53,0x8e,0x78,0x65,0x2a,0x22,
22913
+0x23,0x4a,0x5f,0x7c,0x55,0x2f,0x67,0x57,0x38,0x37,0x56,0x6a,
22914
+0x32,0x01,0xa4,0x00,0x00,0x02,0x00,0x34,0xff,0xd8,0x04,0xe6,
22915
+0x06,0xc6,0x00,0x13,0x00,0x52,0x00,0x00,0x01,0x34,0x2e,0x02,
22916
+0x23,0x22,0x0e,0x02,0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,
22917
+0x37,0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,
22918
+0x33,0x32,0x1e,0x02,0x17,0x11,0x34,0x2e,0x02,0x23,0x22,0x06,
22919
+0x1d,0x01,0x23,0x35,0x34,0x26,0x27,0x26,0x06,0x15,0x14,0x16,
22920
+0x17,0x07,0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,0x17,0x3e,0x03,
22921
+0x33,0x32,0x1e,0x02,0x15,0x03,0xf2,0x35,0x57,0x72,0x3c,0x49,
22922
+0x70,0x4c,0x27,0x1f,0x43,0x6a,0x4c,0x43,0x7a,0x5b,0x36,0xf4,
22923
+0x58,0x99,0xcf,0x78,0x7b,0xcc,0x93,0x52,0x5c,0x98,0xc5,0x69,
22924
+0x2a,0x64,0x61,0x52,0x18,0x1f,0x33,0x40,0x20,0x47,0x39,0xbe,
22925
+0x4f,0x4f,0x43,0x39,0x11,0x10,0xe0,0x21,0x45,0x6b,0x4a,0x31,
22926
+0x59,0x4b,0x39,0x11,0x10,0x38,0x48,0x56,0x2e,0x4a,0x82,0x60,
22927
+0x38,0x02,0x45,0x5d,0x9e,0x73,0x40,0x2c,0x64,0xa2,0x76,0x81,
22928
+0xb4,0x71,0x33,0x25,0x67,0xb6,0x42,0x80,0xc9,0x8b,0x4a,0x53,
22929
+0xa0,0xe9,0x96,0x89,0xd7,0x94,0x4e,0x25,0x3b,0x48,0x23,0x01,
22930
+0xee,0x21,0x30,0x1f,0x0f,0x5e,0x66,0x51,0x51,0x66,0x5a,0x02,
22931
+0x01,0x32,0x2d,0x19,0x49,0x30,0x03,0x5d,0x93,0x67,0x36,0x14,
22932
+0x2c,0x46,0x31,0x2e,0x45,0x2e,0x16,0x38,0x5e,0x7c,0x44,0x00,
22933
+0x00,0x01,0x00,0x9a,0xff,0xd8,0x04,0xfd,0x06,0xc6,0x00,0x43,
22934
+0x00,0x00,0x01,0x3e,0x01,0x27,0x34,0x2e,0x02,0x23,0x22,0x0e,
22935
+0x02,0x15,0x11,0x36,0x33,0x32,0x1e,0x04,0x15,0x14,0x0e,0x04,
22936
+0x2b,0x01,0x27,0x33,0x32,0x3e,0x02,0x35,0x34,0x2e,0x02,0x23,
22937
+0x22,0x0e,0x02,0x15,0x11,0x23,0x13,0x34,0x3e,0x02,0x33,0x32,
22938
+0x1e,0x04,0x14,0x0e,0x02,0x07,0x03,0x08,0x1c,0x1b,0x02,0x29,
22939
+0x44,0x58,0x2f,0x26,0x46,0x34,0x1f,0x76,0xdd,0x3f,0x82,0x79,
22940
+0x6a,0x4f,0x2d,0x31,0x50,0x69,0x6e,0x6d,0x2d,0x31,0x01,0x36,
22941
+0x16,0x4d,0x4a,0x37,0x2d,0x4e,0x6b,0x3d,0x3b,0x72,0x5c,0x38,
22942
+0xf5,0x01,0x41,0x77,0xa5,0x63,0x2b,0x62,0x5f,0x57,0x43,0x27,
22943
+0x28,0x43,0x5a,0x31,0x05,0x4a,0x19,0x2e,0x1f,0x1f,0x30,0x1f,
22944
+0x10,0x1d,0x38,0x52,0x34,0xfe,0x76,0xc3,0x19,0x37,0x57,0x7d,
22945
+0xa4,0x69,0x68,0xb0,0x8f,0x6d,0x4a,0x25,0x81,0x2f,0x73,0xc4,
22946
+0x95,0x75,0x9f,0x61,0x2a,0x33,0x51,0x66,0x33,0xfd,0x23,0x04,
22947
+0xf1,0x8f,0xb8,0x6b,0x2a,0x10,0x1e,0x2d,0x39,0x45,0x50,0x43,
22948
+0x36,0x2a,0x0f,0x00,0x00,0x01,0x00,0x7b,0xff,0xd8,0x05,0x5a,
22949
+0x06,0xba,0x00,0x60,0x00,0x00,0x01,0x14,0x0e,0x04,0x23,0x22,
22950
+0x2e,0x02,0x37,0x34,0x36,0x35,0x34,0x3e,0x02,0x37,0x0e,0x01,
22951
+0x07,0x35,0x32,0x16,0x17,0x1e,0x01,0x33,0x32,0x36,0x37,0x33,
22952
+0x15,0x0e,0x03,0x15,0x11,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,
22953
+0x35,0x34,0x2e,0x02,0x27,0x0e,0x01,0x07,0x35,0x17,0x3e,0x03,
22954
+0x35,0x34,0x2e,0x02,0x27,0x2e,0x03,0x35,0x33,0x1e,0x03,0x17,
22955
+0x1e,0x03,0x15,0x14,0x0e,0x02,0x07,0x1e,0x03,0x05,0x5a,0x32,
22956
+0x57,0x76,0x86,0x91,0x47,0x8b,0xec,0xac,0x60,0x01,0x02,0x1d,
22957
+0x3a,0x58,0x3b,0x36,0x75,0x3f,0x13,0x1f,0x11,0x14,0x2f,0x17,
22958
+0x2d,0x50,0x1c,0x5d,0x34,0x38,0x1a,0x04,0x3a,0x66,0x8a,0x50,
22959
+0x51,0x7e,0x55,0x2c,0x30,0x4f,0x65,0x35,0x23,0x53,0x22,0x97,
22960
+0x3a,0x54,0x38,0x1b,0x1a,0x2a,0x35,0x1a,0x1c,0x36,0x2a,0x1a,
22961
+0x75,0x01,0x22,0x38,0x46,0x25,0x2b,0x56,0x44,0x2a,0x1a,0x40,
22962
+0x6d,0x52,0x3d,0x7b,0x64,0x3f,0x02,0x30,0x6c,0xad,0x86,0x5f,
22963
+0x3d,0x1d,0x61,0xae,0xf3,0x92,0x47,0x8b,0x47,0x58,0xb5,0xad,
22964
+0x9c,0x40,0x02,0x2a,0x36,0xc7,0x03,0x02,0x03,0x06,0x1d,0x2b,
22965
+0x96,0x0d,0x60,0x9b,0xd0,0x7e,0xfe,0x81,0x7e,0xb5,0x73,0x37,
22966
+0x31,0x68,0xa2,0x71,0x4f,0x81,0x5d,0x34,0x01,0x0e,0x20,0x0e,
22967
+0xe8,0x3e,0x01,0x2c,0x4b,0x64,0x3b,0x1f,0x35,0x30,0x2c,0x14,
22968
+0x15,0x2e,0x38,0x47,0x2e,0x24,0x37,0x2c,0x24,0x11,0x14,0x2d,
22969
+0x3c,0x4f,0x34,0x36,0x5d,0x51,0x42,0x1b,0x11,0x3e,0x60,0x85,
22970
+0x00,0x02,0x00,0x78,0xff,0xd8,0x04,0xda,0x06,0xc6,0x00,0x13,
22971
+0x00,0x38,0x00,0x00,0x01,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,
22972
+0x15,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x25,0x14,0x0e,0x02,
22973
+0x23,0x22,0x2e,0x04,0x35,0x34,0x3e,0x04,0x33,0x32,0x1e,0x02,
22974
+0x17,0x11,0x34,0x2e,0x02,0x23,0x35,0x32,0x1e,0x02,0x15,0x03,
22975
+0xd0,0x29,0x4b,0x6c,0x42,0x3a,0x6c,0x53,0x33,0x27,0x4d,0x72,
22976
+0x4b,0x46,0x6b,0x48,0x24,0x01,0x0a,0x57,0x95,0xc9,0x72,0x57,
22977
+0x97,0x7f,0x64,0x45,0x25,0x2d,0x4f,0x6c,0x7c,0x87,0x43,0x33,
22978
+0x61,0x56,0x46,0x1a,0x21,0x45,0x68,0x48,0x72,0xbc,0x87,0x4b,
22979
+0x01,0xfb,0x8e,0xc1,0x76,0x33,0x22,0x60,0xad,0x8b,0x6b,0xa9,
22980
+0x75,0x3e,0x37,0x66,0x92,0x3b,0x6e,0xbd,0x8a,0x4f,0x32,0x57,
22981
+0x76,0x87,0x93,0x48,0x63,0xa6,0x84,0x63,0x42,0x21,0x1f,0x36,
22982
+0x4a,0x2c,0x01,0xac,0x3a,0x4b,0x2b,0x11,0x98,0x33,0x64,0x93,
22983
+0x5f,0x00,0x00,0x00,0x00,0x02,0x00,0x9b,0xff,0xd8,0x05,0x4d,
22984
+0x06,0xc6,0x00,0x3e,0x00,0x52,0x00,0x00,0x13,0x34,0x3e,0x02,
22985
+0x33,0x32,0x1e,0x02,0x17,0x3e,0x03,0x33,0x32,0x1e,0x02,0x15,
22986
+0x27,0x3e,0x01,0x35,0x34,0x26,0x07,0x0e,0x01,0x1d,0x01,0x23,
22987
+0x35,0x34,0x26,0x23,0x22,0x0e,0x02,0x15,0x11,0x3e,0x03,0x33,
22988
+0x32,0x1e,0x02,0x15,0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,
22989
+0x37,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,0x34,0x2e,0x02,
22990
+0x23,0x22,0x0e,0x02,0x9b,0x38,0x60,0x82,0x4a,0x2e,0x55,0x48,
22991
+0x38,0x11,0x11,0x39,0x4b,0x59,0x31,0x56,0x6e,0x3f,0x18,0xe1,
22992
+0x10,0x11,0x38,0x43,0x4f,0x50,0xbd,0x39,0x47,0x20,0x40,0x33,
22993
+0x1f,0x17,0x52,0x60,0x65,0x2b,0x69,0xc5,0x98,0x5c,0x52,0x93,
22994
+0xcc,0x7b,0x78,0xd0,0x99,0x57,0xf4,0x36,0x5b,0x79,0x44,0x4c,
22995
+0x6b,0x43,0x1e,0x27,0x4c,0x70,0x49,0x3c,0x72,0x57,0x35,0x05,
22996
+0x70,0x44,0x7c,0x5e,0x38,0x17,0x2d,0x45,0x2e,0x31,0x46,0x2c,
22997
+0x14,0x36,0x67,0x93,0x5d,0x03,0x30,0x4a,0x19,0x2c,0x32,0x01,
22998
+0x02,0x5a,0x66,0x51,0x51,0x66,0x5e,0x0f,0x1f,0x30,0x21,0xfe,
22999
+0x12,0x23,0x48,0x3b,0x25,0x4e,0x94,0xd7,0x89,0x96,0xe9,0xa0,
23000
+0x53,0x4a,0x8b,0xc9,0x80,0x4f,0x91,0xb6,0x67,0x25,0x33,0x71,
23001
+0xb4,0x81,0x76,0xa2,0x64,0x2c,0x40,0x73,0x9e,0x00,0x00,0x00,
23002
+0x00,0x02,0x00,0x78,0xff,0xd8,0x04,0xdb,0x06,0xd1,0x00,0x13,
23003
+0x00,0x8f,0x00,0x00,0x01,0x2e,0x03,0x23,0x22,0x0e,0x02,0x14,
23004
+0x1e,0x02,0x33,0x32,0x3e,0x02,0x37,0x01,0x25,0x1e,0x03,0x17,
23005
+0x1e,0x03,0x15,0x14,0x0e,0x04,0x23,0x22,0x2e,0x04,0x35,0x34,
23006
+0x3e,0x02,0x37,0x17,0x0e,0x03,0x15,0x14,0x1e,0x02,0x33,0x32,
23007
+0x3e,0x02,0x35,0x34,0x2e,0x02,0x27,0x2e,0x03,0x35,0x34,0x36,
23008
+0x37,0x0e,0x01,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x33,
23009
+0x32,0x16,0x17,0x3e,0x01,0x35,0x34,0x26,0x27,0x0e,0x01,0x23,
23010
+0x22,0x26,0x27,0x35,0x1e,0x03,0x33,0x32,0x3e,0x02,0x37,0x33,
23011
+0x14,0x16,0x17,0x35,0x1e,0x03,0x14,0x0e,0x02,0x07,0x0e,0x01,
23012
+0x07,0x3e,0x01,0x37,0x17,0x05,0x1e,0x01,0x17,0x02,0x5e,0x11,
23013
+0x37,0x3c,0x3c,0x16,0x1b,0x21,0x12,0x07,0x07,0x11,0x1e,0x17,
23014
+0x1a,0x40,0x3e,0x35,0x11,0x02,0x0b,0xfe,0xb4,0x03,0x29,0x3f,
23015
+0x4d,0x28,0x2a,0x50,0x3e,0x26,0x37,0x5b,0x75,0x7d,0x7c,0x35,
23016
+0x38,0x7f,0x7c,0x71,0x57,0x33,0x3f,0x63,0x79,0x3b,0x2e,0x23,
23017
+0x2f,0x1d,0x0c,0x2d,0x4c,0x65,0x39,0x41,0x72,0x54,0x31,0x20,
23018
+0x33,0x40,0x20,0x1b,0x31,0x27,0x17,0x02,0x04,0x4d,0x8e,0x46,
23019
+0x3a,0x58,0x3b,0x1e,0x1e,0x3d,0x5d,0x3f,0x3c,0x9c,0x56,0x17,
23020
+0x1c,0x0e,0x14,0x33,0x6f,0x36,0x41,0x73,0x2a,0x15,0x38,0x40,
23021
+0x45,0x21,0x22,0x40,0x36,0x27,0x09,0x65,0x19,0x10,0x0e,0x1f,
23022
+0x19,0x11,0x12,0x1b,0x21,0x0f,0x0c,0x16,0x07,0x53,0xaa,0x51,
23023
+0x29,0xfe,0x89,0x59,0xb9,0x58,0x04,0x6f,0x13,0x18,0x0d,0x04,
23024
+0x0e,0x19,0x23,0x28,0x22,0x1a,0x0f,0x07,0x13,0x20,0x1a,0xfe,
23025
+0xdd,0xdf,0x37,0x52,0x41,0x36,0x1a,0x1c,0x3a,0x49,0x5f,0x41,
23026
+0x55,0x86,0x66,0x49,0x2e,0x15,0x14,0x2b,0x42,0x5b,0x74,0x48,
23027
+0x51,0x80,0x60,0x42,0x13,0x64,0x18,0x33,0x41,0x56,0x3b,0x47,
23028
+0x63,0x3d,0x1c,0x1e,0x3c,0x5a,0x3d,0x42,0x68,0x56,0x48,0x21,
23029
+0x1c,0x38,0x3c,0x45,0x2a,0x11,0x1d,0x11,0x56,0x57,0x29,0x43,
23030
+0x54,0x2b,0x33,0x59,0x42,0x26,0x56,0x48,0x4b,0x81,0x38,0x26,
23031
+0x43,0x20,0x3a,0x3c,0x52,0x51,0x79,0x12,0x1c,0x13,0x09,0x08,
23032
+0x10,0x17,0x10,0x17,0x1f,0x0f,0x01,0x0d,0x20,0x2a,0x38,0x48,
23033
+0x3e,0x35,0x2f,0x15,0x10,0x1e,0x0b,0x2e,0x62,0x2f,0xa4,0x7a,
23034
+0x20,0x44,0x1f,0x00,0x00,0x02,0x00,0x08,0xff,0xd8,0x05,0x5a,
23035
+0x06,0xc6,0x00,0x14,0x00,0x4a,0x00,0x00,0x01,0x14,0x1e,0x02,
23036
+0x33,0x32,0x3e,0x02,0x35,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,
23037
+0x17,0x05,0x14,0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x11,0x34,
23038
+0x26,0x23,0x22,0x0e,0x02,0x1d,0x01,0x23,0x35,0x34,0x3e,0x02,
23039
+0x33,0x32,0x1e,0x02,0x15,0x11,0x3e,0x03,0x37,0x3e,0x01,0x37,
23040
+0x15,0x0e,0x03,0x07,0x1e,0x05,0x01,0xf4,0x20,0x49,0x75,0x56,
23041
+0x54,0x72,0x46,0x1f,0x1f,0x45,0x6f,0x51,0x39,0x72,0x5a,0x38,
23042
+0x02,0x03,0x66,0x5a,0x9a,0xcc,0x72,0x89,0xd1,0x8d,0x49,0x1e,
23043
+0x29,0x16,0x1a,0x0e,0x05,0x66,0x1b,0x39,0x5a,0x3f,0x39,0x5c,
23044
+0x41,0x24,0x16,0x37,0x3f,0x44,0x23,0x04,0xbc,0xc5,0x3c,0x59,
23045
+0x41,0x2c,0x10,0x38,0x79,0x72,0x67,0x4e,0x2d,0x01,0xa7,0x44,
23046
+0x71,0x52,0x2e,0x4d,0x80,0xa4,0x56,0x82,0xab,0x65,0x28,0x24,
23047
+0x42,0x5e,0x3a,0xb0,0xa0,0xea,0x99,0x4a,0x50,0x8f,0xc7,0x78,
23048
+0x04,0x02,0x22,0x28,0x1b,0x2b,0x36,0x1b,0x60,0x66,0x52,0x6b,
23049
+0x3f,0x19,0x3d,0x6d,0x97,0x59,0xfe,0xcd,0x18,0x33,0x2a,0x1c,
23050
+0x02,0xb4,0xc4,0x13,0xe4,0x04,0x22,0x2f,0x38,0x1a,0x02,0x19,
23051
+0x36,0x57,0x81,0xad,0x00,0x01,0x00,0x75,0xff,0xc4,0x06,0xa1,
23052
+0x06,0xc3,0x00,0x98,0x00,0x00,0x01,0x14,0x0e,0x02,0x23,0x22,
23053
+0x2e,0x01,0x02,0x27,0x0e,0x03,0x07,0x1e,0x03,0x15,0x14,0x0e,
23054
+0x02,0x23,0x22,0x2e,0x02,0x37,0x17,0x06,0x1e,0x02,0x17,0x32,
23055
+0x3e,0x02,0x35,0x34,0x2e,0x02,0x23,0x22,0x06,0x07,0x27,0x3e,
23056
+0x03,0x37,0x2e,0x05,0x23,0x22,0x0e,0x02,0x07,0x14,0x1e,0x02,
23057
+0x17,0x07,0x2e,0x03,0x37,0x3e,0x03,0x33,0x32,0x1e,0x02,0x17,
23058
+0x36,0x37,0x3e,0x05,0x35,0x34,0x2e,0x02,0x23,0x22,0x06,0x17,
23059
+0x1e,0x01,0x17,0x07,0x2e,0x01,0x35,0x34,0x3e,0x02,0x33,0x32,
23060
+0x1e,0x02,0x15,0x14,0x0e,0x02,0x07,0x1e,0x01,0x17,0x1e,0x05,
23061
+0x33,0x32,0x3e,0x02,0x35,0x34,0x2e,0x02,0x23,0x13,0x1e,0x03,
23062
+0x06,0xa1,0x33,0x56,0x75,0x42,0x60,0x9c,0x7e,0x62,0x25,0x41,
23063
+0x72,0x66,0x5b,0x2b,0x55,0x8e,0x66,0x39,0x2a,0x68,0xb0,0x85,
23064
+0x36,0x62,0x49,0x29,0x03,0x5f,0x01,0x24,0x38,0x43,0x1d,0x2d,
23065
+0x3e,0x26,0x11,0x0d,0x27,0x46,0x39,0x0e,0x21,0x11,0x5f,0x34,
23066
+0x7a,0x92,0xaf,0x6a,0x0d,0x25,0x30,0x3b,0x43,0x4b,0x29,0x1d,
23067
+0x29,0x1b,0x0c,0x01,0x17,0x2e,0x47,0x2f,0xba,0x20,0x3a,0x2d,
23068
+0x1a,0x01,0x02,0x29,0x49,0x68,0x41,0x51,0xab,0x9c,0x7f,0x24,
23069
+0x23,0x2b,0x28,0x5b,0x58,0x50,0x3d,0x24,0x11,0x21,0x30,0x20,
23070
+0x38,0x3e,0x01,0x01,0x3c,0x3a,0xc8,0x2f,0x2c,0x3d,0x59,0x62,
23071
+0x26,0x39,0x62,0x49,0x2a,0x48,0x90,0xd7,0x8e,0x0c,0x16,0x0c,
23072
+0x0c,0x1a,0x1e,0x25,0x2d,0x38,0x22,0x26,0x41,0x2f,0x1a,0x14,
23073
+0x2d,0x4b,0x36,0x52,0x41,0x5a,0x39,0x1a,0x01,0x60,0x3e,0x66,
23074
+0x4a,0x29,0x70,0xcf,0x01,0x26,0xb5,0x0a,0x1b,0x24,0x2f,0x1e,
23075
+0x03,0x42,0x6d,0x94,0x55,0x38,0x80,0x6e,0x48,0x2f,0x51,0x6c,
23076
+0x3d,0x04,0x1d,0x33,0x26,0x16,0x01,0x2c,0x46,0x57,0x2b,0x33,
23077
+0x62,0x4c,0x2e,0x03,0x05,0x20,0x62,0x7c,0x51,0x35,0x1b,0x40,
23078
+0x86,0x7e,0x6f,0x52,0x30,0x12,0x1e,0x28,0x17,0x1b,0x25,0x1b,
23079
+0x16,0x0d,0xd0,0x1e,0x4b,0x53,0x57,0x29,0x3b,0x66,0x4c,0x2c,
23080
+0x5c,0xab,0xf5,0x97,0x0d,0x0c,0x0c,0x1e,0x26,0x2f,0x3c,0x49,
23081
+0x2c,0x1e,0x3d,0x30,0x1f,0x22,0x27,0x18,0x39,0x1a,0x85,0x3e,
23082
+0x77,0x43,0x42,0x54,0x31,0x12,0x26,0x50,0x7c,0x56,0x52,0x87,
23083
+0x72,0x60,0x2a,0x2c,0x6b,0x3b,0x3a,0x77,0x6f,0x60,0x48,0x29,
23084
+0x0e,0x20,0x33,0x24,0x2d,0x38,0x20,0x0c,0x01,0x06,0x23,0x49,
23085
+0x5d,0x7a,0x00,0x00,0x00,0x01,0x00,0x78,0xff,0xd8,0x04,0xd9,
23086
+0x06,0xcf,0x00,0x6f,0x00,0x00,0x01,0x14,0x0e,0x02,0x23,0x22,
23087
+0x2e,0x02,0x35,0x34,0x3e,0x02,0x37,0x17,0x07,0x0e,0x03,0x15,
23088
+0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,0x34,0x2e,0x04,0x23,
23089
+0x37,0x0e,0x01,0x07,0x35,0x17,0x32,0x16,0x33,0x32,0x3e,0x02,
23090
+0x35,0x34,0x2e,0x02,0x2b,0x01,0x0e,0x01,0x07,0x35,0x17,0x16,
23091
+0x3e,0x04,0x35,0x34,0x2e,0x02,0x27,0x2e,0x03,0x35,0x17,0x14,
23092
+0x1e,0x02,0x33,0x32,0x04,0x1e,0x01,0x15,0x14,0x0e,0x02,0x07,
23093
+0x1e,0x03,0x15,0x14,0x0e,0x02,0x07,0x1e,0x03,0x04,0xd9,0x57,
23094
+0x96,0xc8,0x71,0x79,0xd0,0x9a,0x58,0x2e,0x55,0x78,0x4b,0x07,
23095
+0x0b,0x0a,0x14,0x11,0x0a,0x2e,0x52,0x74,0x45,0x46,0x69,0x45,
23096
+0x22,0x1c,0x2d,0x38,0x39,0x34,0x12,0x04,0x21,0x51,0x22,0x90,
23097
+0x08,0x17,0x0a,0x1d,0x48,0x3e,0x2a,0x33,0x4a,0x51,0x1f,0x14,
23098
+0x1f,0x4a,0x1d,0x87,0x11,0x32,0x37,0x36,0x2c,0x1b,0x2e,0x5a,
23099
+0x87,0x59,0x5d,0x8a,0x5a,0x2d,0x58,0x18,0x32,0x4c,0x35,0xc8,
23100
+0x01,0x08,0x9d,0x40,0x23,0x3b,0x4c,0x29,0x2d,0x51,0x3d,0x24,
23101
+0x1d,0x36,0x4f,0x33,0x32,0x56,0x3f,0x24,0x01,0xb9,0x83,0xb7,
23102
+0x73,0x34,0x2c,0x6a,0xaf,0x84,0x3c,0x5c,0x47,0x34,0x14,0x63,
23103
+0x0a,0x0b,0x18,0x26,0x37,0x28,0x5c,0x7b,0x4b,0x1f,0x21,0x49,
23104
+0x76,0x55,0x4a,0x67,0x45,0x28,0x14,0x05,0x02,0x0e,0x22,0x0e,
23105
+0xdf,0x2b,0x02,0x08,0x1c,0x35,0x2c,0x36,0x39,0x1a,0x02,0x0c,
23106
+0x1f,0x0c,0xe0,0x37,0x01,0x02,0x0a,0x13,0x21,0x2f,0x21,0x25,
23107
+0x29,0x13,0x04,0x02,0x02,0x17,0x39,0x63,0x4e,0x0a,0x16,0x28,
23108
+0x1e,0x12,0x19,0x37,0x5b,0x42,0x24,0x3a,0x2e,0x25,0x0e,0x0c,
23109
+0x1f,0x2f,0x41,0x2d,0x2f,0x41,0x2d,0x1d,0x0c,0x16,0x42,0x59,
23110
+0x70,0x00,0x00,0x00,0x00,0x02,0x00,0x78,0xff,0xd8,0x05,0x2b,
23111
+0x06,0xc6,0x00,0x0d,0x00,0x6d,0x00,0x00,0x01,0x34,0x26,0x23,
23112
+0x22,0x0e,0x02,0x1d,0x01,0x3e,0x03,0x05,0x14,0x06,0x07,0x1e,
23113
+0x03,0x15,0x14,0x0e,0x02,0x07,0x1e,0x03,0x15,0x14,0x0e,0x02,
23114
+0x23,0x22,0x2e,0x04,0x35,0x11,0x34,0x12,0x3e,0x01,0x33,0x32,
23115
+0x16,0x15,0x14,0x0e,0x02,0x07,0x11,0x14,0x1e,0x02,0x33,0x32,
23116
+0x3e,0x02,0x35,0x34,0x2e,0x02,0x27,0x0e,0x01,0x07,0x11,0x17,
23117
+0x3e,0x03,0x35,0x34,0x2e,0x02,0x27,0x0e,0x01,0x07,0x35,0x17,
23118
+0x16,0x3e,0x02,0x35,0x34,0x2e,0x02,0x27,0x37,0x1e,0x03,0x02,
23119
+0xa0,0x3e,0x4f,0x2f,0x3a,0x1f,0x0b,0x59,0x70,0x40,0x17,0x02,
23120
+0x8b,0x55,0x40,0x1f,0x37,0x28,0x17,0x19,0x29,0x37,0x1e,0x1f,
23121
+0x37,0x29,0x18,0x55,0x9c,0xda,0x85,0x4f,0x97,0x88,0x73,0x53,
23122
+0x2f,0x35,0x67,0x98,0x64,0x9b,0x8f,0x2c,0x68,0xa9,0x7d,0x38,
23123
+0x5f,0x7e,0x46,0x50,0x7c,0x54,0x2b,0x08,0x28,0x52,0x49,0x14,
23124
+0x37,0x14,0x5f,0x47,0x51,0x29,0x0b,0x08,0x28,0x52,0x49,0x14,
23125
+0x38,0x14,0x5e,0x4b,0x53,0x27,0x08,0x14,0x2a,0x44,0x30,0x40,
23126
+0x41,0x85,0x6c,0x44,0x05,0xa0,0x49,0x45,0x2e,0x59,0x80,0x51,
23127
+0x5e,0x1b,0x30,0x40,0x59,0x9d,0x57,0x7a,0x25,0x0f,0x2a,0x35,
23128
+0x40,0x25,0x24,0x38,0x2d,0x22,0x0f,0x13,0x32,0x44,0x59,0x39,
23129
+0x54,0x7c,0x51,0x28,0x18,0x37,0x5b,0x86,0xb5,0x76,0x01,0xac,
23130
+0xcd,0x01,0x1c,0xb0,0x4e,0xa9,0xa7,0x53,0x76,0x59,0x48,0x25,
23131
+0xfe,0x60,0x99,0xb9,0x63,0x20,0x24,0x38,0x41,0x1e,0x30,0x4b,
23132
+0x35,0x1d,0x01,0x0f,0x28,0x0f,0x01,0x0a,0x45,0x01,0x12,0x20,
23133
+0x2d,0x1d,0x1c,0x37,0x2a,0x1b,0x01,0x0f,0x25,0x0e,0xf8,0x3c,
23134
+0x01,0x21,0x35,0x43,0x21,0x61,0x8b,0x69,0x51,0x26,0x37,0x1c,
23135
+0x6c,0x8b,0xa2,0x00,0x00,0x02,0x00,0x78,0xff,0x85,0x04,0xda,
23136
+0x06,0xc6,0x00,0x15,0x00,0x43,0x00,0x00,0x01,0x34,0x02,0x2e,
23137
+0x01,0x23,0x22,0x0e,0x01,0x02,0x15,0x14,0x1e,0x04,0x37,0x16,
23138
+0x3e,0x02,0x25,0x14,0x0e,0x02,0x07,0x1e,0x03,0x33,0x15,0x2e,
23139
+0x03,0x27,0x0e,0x03,0x23,0x35,0x32,0x3e,0x02,0x37,0x2e,0x03,
23140
+0x35,0x34,0x3e,0x04,0x33,0x32,0x1e,0x04,0x03,0xd2,0x18,0x42,
23141
+0x75,0x5c,0x56,0x70,0x44,0x1b,0x1d,0x2f,0x3d,0x40,0x3e,0x18,
23142
+0x31,0x6c,0x5a,0x3a,0x01,0x08,0x2f,0x59,0x81,0x51,0x2a,0x4e,
23143
+0x49,0x44,0x20,0x60,0x8f,0x75,0x67,0x38,0x38,0x63,0x70,0x89,
23144
+0x5e,0x1d,0x44,0x4c,0x52,0x2b,0x54,0x84,0x5b,0x2f,0x28,0x49,
23145
+0x66,0x7c,0x8f,0x4d,0x4f,0x91,0x7d,0x66,0x49,0x27,0x03,0x80,
23146
+0xcb,0x01,0x09,0x9c,0x3e,0x40,0x9e,0xfe,0xf6,0xca,0x67,0xb1,
23147
+0x91,0x70,0x4c,0x26,0x01,0x02,0x58,0xaa,0xf4,0x9a,0x5e,0xd3,
23148
+0xc9,0xae,0x39,0x11,0x12,0x09,0x01,0xed,0x01,0x1e,0x36,0x4c,
23149
+0x2f,0x2f,0x4c,0x35,0x1c,0xe9,0x02,0x09,0x13,0x11,0x3c,0xaf,
23150
+0xc7,0xcf,0x5a,0xa6,0xfd,0xbc,0x7e,0x4c,0x21,0x22,0x4d,0x7f,
23151
+0xba,0xfb,0x00,0x00,0x00,0x01,0x00,0x78,0xff,0xd8,0x04,0xda,
23152
+0x06,0xe0,0x00,0x5b,0x00,0x00,0x01,0x32,0x3e,0x04,0x37,0x23,
23153
+0x0e,0x05,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x3f,0x01,
23154
+0x17,0x0e,0x03,0x17,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x37,
23155
+0x33,0x14,0x0e,0x04,0x07,0x1e,0x03,0x15,0x14,0x0e,0x02,0x23,
23156
+0x22,0x2e,0x02,0x35,0x34,0x36,0x37,0x17,0x0e,0x03,0x15,0x14,
23157
+0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,0x34,0x2e,0x02,0x2b,0x01,
23158
+0x27,0x02,0x79,0x4b,0x7c,0x63,0x4a,0x33,0x1c,0x02,0x17,0x17,
23159
+0x47,0x52,0x5a,0x54,0x4a,0x19,0x57,0x91,0x69,0x3a,0x0a,0x12,
23160
+0x19,0x0f,0x10,0xfb,0x23,0x31,0x1e,0x0c,0x01,0x0b,0x25,0x48,
23161
+0x3c,0x4f,0x89,0x74,0x60,0x28,0xa5,0x1b,0x2f,0x41,0x4d,0x55,
23162
+0x2b,0x61,0x83,0x51,0x23,0x5e,0x9d,0xce,0x70,0x6b,0xc7,0x9a,
23163
+0x5d,0x95,0x8c,0x2d,0x15,0x1b,0x0e,0x05,0x23,0x48,0x6c,0x4a,
23164
+0x4d,0x71,0x4a,0x24,0x35,0x5a,0x78,0x43,0x74,0x01,0x04,0x1c,
23165
+0x2b,0x48,0x5e,0x68,0x6a,0x2f,0x17,0x2f,0x2d,0x28,0x1e,0x11,
23166
+0x16,0x39,0x60,0x4b,0x29,0x37,0x27,0x1c,0x0f,0x10,0x59,0x11,
23167
+0x1e,0x1d,0x1e,0x11,0x11,0x21,0x19,0x10,0x28,0x4a,0x65,0x3e,
23168
+0x88,0xd1,0x9d,0x70,0x4d,0x30,0x0f,0x26,0x63,0x77,0x89,0x4a,
23169
+0x9b,0xd4,0x82,0x38,0x34,0x71,0xb0,0x7c,0x9e,0xbc,0x26,0x73,
23170
+0x0e,0x40,0x4e,0x52,0x1f,0x41,0x71,0x54,0x31,0x31,0x5e,0x86,
23171
+0x56,0x53,0x9a,0x77,0x47,0x94,0x00,0x00,0x00,0x01,0x00,0x78,
23172
+0xff,0xd8,0x04,0xda,0x06,0xc6,0x00,0x68,0x00,0x00,0x00,0x14,
23173
+0x0e,0x02,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,0x37,0x17,
23174
+0x0e,0x03,0x15,0x14,0x16,0x15,0x14,0x16,0x15,0x14,0x1e,0x02,
23175
+0x33,0x32,0x3e,0x02,0x35,0x34,0x2e,0x02,0x27,0x37,0x0e,0x01,
23176
+0x07,0x27,0x17,0x32,0x3e,0x02,0x35,0x34,0x2e,0x02,0x23,0x22,
23177
+0x06,0x07,0x0e,0x01,0x23,0x22,0x2e,0x02,0x35,0x34,0x3e,0x02,
23178
+0x33,0x21,0x15,0x21,0x22,0x0e,0x02,0x15,0x14,0x16,0x33,0x32,
23179
+0x36,0x37,0x3e,0x03,0x33,0x32,0x1e,0x02,0x15,0x14,0x06,0x07,
23180
+0x1e,0x02,0x04,0xda,0x56,0x93,0xc1,0x6a,0x80,0xd8,0x9d,0x59,
23181
+0x1a,0x3e,0x68,0x4f,0x34,0x13,0x17,0x0d,0x04,0x01,0x01,0x33,
23182
+0x58,0x77,0x42,0x3a,0x61,0x47,0x28,0x16,0x3e,0x6c,0x56,0x03,
23183
+0x20,0x52,0x21,0x01,0x91,0x4b,0x69,0x43,0x1f,0x19,0x2d,0x3f,
23184
+0x25,0x34,0x79,0x3f,0x40,0x7e,0x39,0x2c,0x4a,0x36,0x1f,0x36,
23185
+0x5d,0x7e,0x47,0x01,0x73,0xfe,0x90,0x2a,0x47,0x33,0x1d,0x3b,
23186
+0x32,0x39,0x91,0x50,0x2d,0x5d,0x5a,0x56,0x26,0x31,0x53,0x3c,
23187
+0x21,0x82,0x7d,0x45,0x60,0x3e,0x01,0xf5,0xd8,0xa2,0x6c,0x37,
23188
+0x36,0x68,0x98,0x63,0x39,0x61,0x51,0x44,0x1e,0x6b,0x0c,0x24,
23189
+0x29,0x2d,0x16,0x0b,0x15,0x0a,0x09,0x12,0x08,0x4b,0x61,0x37,
23190
+0x15,0x22,0x44,0x66,0x45,0x6b,0x8d,0x55,0x26,0x03,0x02,0x11,
23191
+0x27,0x10,0xf5,0x30,0x23,0x3f,0x57,0x34,0x2f,0x3e,0x26,0x0f,
23192
+0x16,0x0e,0x0e,0x15,0x14,0x31,0x55,0x41,0x58,0x74,0x44,0x1b,
23193
+0x98,0x10,0x24,0x3c,0x2c,0x3c,0x2e,0x29,0x1c,0x0f,0x1e,0x18,
23194
+0x0f,0x1c,0x42,0x6f,0x53,0x76,0xb5,0x38,0x19,0x3e,0x61,0x00,
23195
+0x00,0x03,0x00,0x79,0xff,0xd8,0x05,0x4e,0x06,0xc6,0x00,0x0f,
23196
+0x00,0x1d,0x00,0x4a,0x00,0x00,0x01,0x22,0x0e,0x02,0x15,0x14,
23197
+0x1e,0x02,0x33,0x32,0x3e,0x02,0x35,0x13,0x34,0x26,0x23,0x22,
23198
+0x0e,0x02,0x15,0x14,0x1e,0x02,0x33,0x01,0x27,0x23,0x11,0x14,
23199
+0x06,0x23,0x22,0x2e,0x02,0x35,0x34,0x24,0x25,0x35,0x26,0x24,
23200
+0x2e,0x01,0x35,0x34,0x3e,0x02,0x33,0x32,0x1e,0x02,0x15,0x11,
23201
+0x33,0x3e,0x01,0x37,0x15,0x27,0x23,0x15,0x33,0x07,0x3e,0x01,
23202
+0x37,0x03,0x77,0x8b,0xbf,0x77,0x34,0x25,0x48,0x69,0x44,0x2b,
23203
+0x4f,0x3c,0x23,0x02,0x6c,0x6f,0x3c,0x67,0x4b,0x2b,0x33,0x77,
23204
+0xbf,0x8b,0x01,0xd7,0x63,0x6f,0xf2,0xee,0x7c,0xca,0x8f,0x4e,
23205
+0x01,0x7a,0x01,0x84,0xc2,0xfe,0xe0,0xbe,0x5e,0x54,0x93,0xc8,
23206
+0x74,0x81,0xb6,0x74,0x35,0x70,0x15,0x38,0x15,0x6a,0x68,0x6f,
23207
+0x04,0x16,0x3a,0x17,0x02,0x4e,0x1b,0x3b,0x5d,0x43,0x3f,0x58,
23208
+0x36,0x19,0x11,0x21,0x32,0x22,0x04,0xbb,0x3c,0x3f,0x14,0x32,
23209
+0x54,0x40,0x4d,0x63,0x3a,0x17,0xfd,0xda,0x21,0xfe,0xf8,0xb9,
23210
+0xb5,0x30,0x5e,0x8b,0x5a,0xce,0xd1,0x03,0xcb,0x01,0x2f,0x64,
23211
+0x9c,0x6c,0x5a,0x8b,0x5d,0x30,0x27,0x56,0x87,0x61,0xfe,0xf2,
23212
+0x08,0x17,0x08,0xe9,0x27,0xcb,0x03,0x0b,0x1b,0x0b,0x00,0x00,
23213
+0x00,0x02,0x00,0x80,0xff,0xd9,0x07,0x30,0x06,0xc6,0x00,0x14,
23214
+0x00,0x58,0x00,0x00,0x01,0x34,0x2e,0x02,0x23,0x22,0x0e,0x02,
23215
+0x15,0x11,0x14,0x1e,0x02,0x33,0x32,0x3e,0x02,0x01,0x22,0x2e,
23216
+0x02,0x35,0x34,0x12,0x3e,0x01,0x33,0x32,0x1e,0x02,0x17,0x36,
23217
+0x34,0x35,0x33,0x15,0x3e,0x03,0x33,0x32,0x1e,0x01,0x12,0x07,
23218
+0x0e,0x03,0x23,0x22,0x26,0x27,0x15,0x14,0x0e,0x02,0x23,0x37,
23219
+0x33,0x32,0x3e,0x02,0x35,0x13,0x34,0x2e,0x02,0x23,0x22,0x0e,
23220
+0x02,0x15,0x14,0x1e,0x02,0x33,0x06,0x25,0x0d,0x2f,0x5c,0x50,
23221
+0x27,0x5a,0x4d,0x34,0x30,0x4c,0x5f,0x30,0x35,0x53,0x39,0x1e,
23222
+0xfc,0x79,0x6e,0xc5,0x94,0x57,0x42,0x7c,0xb2,0x71,0x13,0x41,
23223
+0x4e,0x52,0x23,0x01,0xb7,0x22,0x46,0x46,0x43,0x20,0x85,0xbe,
23224
+0x78,0x36,0x02,0x03,0x44,0x7d,0xb4,0x72,0x41,0x85,0x45,0x32,
23225
+0x6a,0xa4,0x72,0x01,0x63,0x24,0x2e,0x19,0x0a,0x01,0x28,0x46,
23226
+0x5d,0x34,0x32,0x51,0x38,0x1e,0x2c,0x4b,0x63,0x38,0x03,0xfb,
23227
+0x85,0xd2,0x90,0x4b,0x1d,0x42,0x6d,0x50,0xfd,0xd2,0x38,0x51,
23228
+0x34,0x18,0x34,0x75,0xbc,0xfe,0x01,0x4b,0x9e,0xf2,0xa7,0xb8,
23229
+0x01,0x0f,0xb2,0x57,0x04,0x18,0x35,0x32,0x20,0x49,0x1a,0x7b,
23230
+0x2e,0x32,0x17,0x04,0x68,0xba,0xfe,0xfc,0x9c,0xad,0xf8,0x9f,
23231
+0x4c,0x1b,0x1d,0x8d,0x5e,0x7d,0x4b,0x20,0x97,0x1b,0x2e,0x40,
23232
+0x26,0x03,0xee,0x4e,0x6d,0x45,0x20,0x39,0x86,0xd9,0x9f,0x88,
23233
+0xbd,0x75,0x34,0x00,0x00,0x03,0x00,0xa8,0xfe,0x3e,0x06,0x8a,
23234
+0x06,0x15,0x00,0x07,0x00,0x0f,0x00,0x27,0x00,0x00,0x01,0x36,
23235
+0x23,0x05,0x03,0x25,0x36,0x37,0x01,0x06,0x07,0x03,0x06,0x37,
23236
+0x25,0x1b,0x01,0x23,0x35,0x33,0x35,0x33,0x11,0x25,0x24,0x0b,
23237
+0x01,0x06,0x07,0x05,0x11,0x23,0x11,0x05,0x06,0x37,0x13,0x36,
23238
+0x37,0x25,0x05,0xba,0x29,0x66,0xfe,0xd8,0xb4,0x01,0x2e,0x63,
23239
+0x10,0xfd,0x5a,0x8e,0x1c,0x66,0x27,0x80,0x01,0x10,0xad,0x10,
23240
+0x85,0x85,0xb9,0x01,0x43,0x01,0x15,0x39,0x7f,0x1a,0x97,0xfe,
23241
+0x51,0xc8,0xfe,0x6c,0xd7,0x30,0x79,0x2a,0x98,0x01,0xce,0x03,
23242
+0x25,0xa6,0x35,0xfc,0xca,0x2c,0x18,0x50,0x02,0xb3,0x31,0x87,
23243
+0xfe,0x22,0xb6,0x0d,0x28,0x03,0x3b,0x01,0xc2,0x48,0x40,0xfd,
23244
+0xde,0x32,0x47,0xfe,0xb9,0xfd,0xbb,0x91,0x11,0x3e,0xfe,0x3e,
23245
+0x01,0xf9,0x44,0x18,0xe8,0x02,0x33,0xc7,0x20,0x46,0x00,0x00,
23246
+0x00,0x02,0x00,0x66,0xff,0xe3,0x04,0x6a,0x05,0xfa,0x00,0x23,
23247
+0x00,0x2b,0x00,0x00,0x13,0x10,0x37,0x2e,0x01,0x35,0x10,0x25,
23248
+0x36,0x33,0x17,0x32,0x36,0x37,0x0f,0x01,0x06,0x23,0x27,0x22,
23249
+0x07,0x06,0x15,0x14,0x17,0x16,0x17,0x36,0x33,0x32,0x00,0x10,
23250
+0x00,0x23,0x22,0x00,0x37,0x14,0x16,0x33,0x20,0x11,0x10,0x20,
23251
+0x66,0xe4,0x27,0x68,0x01,0x75,0x55,0x51,0xa2,0x19,0x73,0x11,
23252
+0x0f,0x58,0x3c,0x3e,0xba,0xb1,0x56,0x22,0x48,0x29,0x32,0x37,
23253
+0x3d,0xe9,0x01,0x19,0xfe,0xe7,0xe9,0xe8,0xfe,0xe6,0xd7,0x98,
23254
+0x93,0x01,0x2b,0xfd,0xaa,0x02,0x14,0x01,0x4c,0x96,0x05,0x64,
23255
+0x50,0x01,0x0c,0x23,0x08,0x08,0x19,0x03,0x96,0x0b,0x05,0x08,
23256
+0x5b,0x24,0x21,0x39,0x29,0x18,0x09,0x0b,0xfe,0xce,0xfe,0x04,
23257
+0xfe,0xcd,0x01,0x33,0xfe,0xe4,0xea,0x01,0xce,0x01,0xcd,0x00,
23258
+0x00,0x01,0x00,0x7d,0x05,0x01,0x03,0x83,0x06,0x33,0x00,0x1b,
23259
+0x00,0x50,0xb4,0x0e,0x14,0x07,0x00,0x1c,0x10,0xd4,0xcc,0xd4,
23260
+0xcc,0x31,0x00,0xb5,0x11,0x03,0x18,0xbf,0x0a,0x1c,0x30,0x10,
23261
+0xd4,0xec,0xc4,0x32,0x30,0xb0,0x0c,0x4b,0x54,0xb0,0x09,0x4b,
23262
+0x54,0x5b,0x58,0x00,0xbd,0x00,0x1c,0xff,0xc0,0x00,0x00,0x00,
23263
+0x1c,0x00,0x1c,0x00,0x40,0x38,0x12,0x34,0x38,0x59,0xb0,0x0e,
23264
+0x4b,0x54,0x58,0x00,0xbd,0x00,0x1c,0x00,0x40,0x00,0x00,0x00,
23265
+0x1c,0x00,0x1c,0xff,0xc0,0x38,0x12,0x34,0x38,0x59,0x13,0x34,
23266
+0x36,0x33,0x32,0x16,0x15,0x14,0x07,0x16,0x33,0x32,0x37,0x26,
23267
+0x35,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x0e,0x01,0x23,0x22,
23268
+0x2e,0x01,0x7d,0x45,0x30,0x30,0x45,0x06,0x32,0x6d,0x6d,0x32,
23269
+0x06,0x45,0x30,0x30,0x45,0x2d,0xad,0xa6,0xa6,0xb6,0x2a,0x05,
23270
+0xc0,0x2e,0x45,0x45,0x30,0x0a,0x16,0x13,0x13,0x10,0x10,0x30,
23271
+0x45,0x45,0x2e,0x2d,0x30,0x62,0x5e,0x32,0x00,0x01,0x00,0xc7,
23272
+0x05,0x5d,0x03,0x39,0x06,0x66,0x00,0x19,0x00,0x55,0xb4,0x0e,
23273
+0x14,0x06,0x00,0x1a,0x10,0xd4,0xcc,0xd4,0xcc,0x31,0x00,0xb5,
23274
+0x11,0x03,0x17,0xbf,0x0a,0x1a,0x30,0x10,0xd4,0xec,0xc4,0x32,
23275
+0x30,0xb0,0x09,0x4b,0x54,0x58,0x00,0xbd,0x00,0x1a,0xff,0xc0,
23276
+0x00,0x00,0x00,0x1a,0x00,0x1a,0x00,0x40,0x38,0x12,0x34,0x38,
23277
+0x59,0xb0,0x0f,0x4b,0x54,0xb0,0x12,0x4b,0x54,0x5b,0xb0,0x13,
23278
+0x4b,0x54,0x5b,0x58,0x00,0xbd,0x00,0x1a,0x00,0x40,0x00,0x00,
23279
+0x00,0x1a,0x00,0x1a,0xff,0xc0,0x38,0x12,0x34,0x38,0x59,0x13,
23280
+0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x07,0x16,0x33,0x32,0x37,
23281
+0x26,0x35,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x21,0x20,
23282
+0x26,0xc7,0x30,0x22,0x22,0x30,0x19,0x32,0x7c,0x7c,0x32,0x19,
23283
+0x30,0x22,0x22,0x30,0x34,0xfe,0xfb,0xfe,0xfb,0x34,0x06,0x1b,
23284
+0x1b,0x30,0x30,0x24,0x24,0x17,0x23,0x23,0x17,0x24,0x24,0x30,
23285
+0x30,0x1b,0x1b,0xa3,0xa3,0x00,0x00,0x00,0x00,0x01,0x00,0x4a,
23286
+0xff,0xff,0x06,0x2a,0x06,0x14,0x00,0x35,0x00,0x76,0x40,0x20,
23287
+0x2d,0x31,0x25,0x2d,0x24,0x31,0x2c,0x2f,0x27,0x24,0x36,0x34,
23288
+0x2c,0x1c,0x00,0x07,0x14,0x2d,0x13,0x03,0x01,0x1a,0x27,0x13,
23289
+0x36,0x09,0x05,0x2c,0x0b,0x07,0x30,0x36,0x10,0xf4,0x3c,0xe4,
23290
+0x32,0xe4,0xfc,0x3c,0xc4,0x10,0xee,0x10,0xd4,0x3c,0xe4,0xe4,
23291
+0xfc,0x3c,0xc4,0x10,0xee,0x11,0x39,0x31,0x00,0x40,0x21,0x2b,
23292
+0x1d,0x1a,0x0c,0x04,0x24,0x2f,0x01,0x08,0x7a,0x1b,0x24,0x13,
23293
+0x23,0x12,0x28,0x17,0x8f,0x20,0x0f,0x71,0x30,0x35,0x02,0x03,
23294
+0x07,0x7a,0x0b,0x1b,0x2c,0x9c,0x33,0x05,0x2f,0x3c,0xee,0x32,
23295
+0x32,0xee,0x17,0x32,0xfe,0x3c,0xee,0x32,0xd6,0x3c,0xc6,0x32,
23296
+0x10,0xee,0x32,0x32,0x12,0x17,0x39,0x30,0x01,0x25,0x11,0x33,
23297
+0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x33,0x35,0x34,0x36,0x33,
23298
+0x32,0x16,0x17,0x15,0x23,0x2e,0x01,0x23,0x22,0x06,0x1d,0x01,
23299
+0x21,0x35,0x34,0x36,0x33,0x32,0x16,0x17,0x15,0x23,0x2e,0x01,
23300
+0x23,0x22,0x06,0x1d,0x01,0x21,0x15,0x21,0x11,0x33,0x15,0x21,
23301
+0x35,0x33,0x03,0xb4,0xfd,0xfe,0xec,0xfd,0xac,0xb0,0xb0,0xb0,
23302
+0xb8,0xb4,0x42,0x86,0x42,0x60,0x02,0x52,0x50,0x66,0x54,0x02,
23303
+0x02,0xb8,0xb4,0x42,0x86,0x42,0x60,0x02,0x52,0x50,0x66,0x54,
23304
+0x01,0x28,0xfe,0xd8,0xec,0xfd,0xac,0xb0,0x03,0xbb,0x01,0xfc,
23305
+0xae,0x6a,0x6a,0x03,0x52,0x6b,0x85,0xb2,0xb6,0x18,0x19,0xca,
23306
+0x4b,0x4e,0x71,0x91,0x89,0x84,0xb2,0xb6,0x18,0x19,0xca,0x4b,
23307
+0x4e,0x71,0x91,0x89,0x6b,0xfc,0xae,0x6a,0x6a,0x00,0x00,0x00,
23308
+0x00,0x01,0x00,0x4a,0x00,0x00,0x05,0x27,0x06,0x14,0x00,0x22,
23309
+0x00,0x7d,0x40,0x31,0x07,0x1c,0x00,0x18,0x10,0x7a,0x08,0x00,
23310
+0x22,0x04,0x8f,0x1f,0x71,0x16,0x12,0x0e,0x03,0x0a,0x7a,0x1a,
23311
+0x08,0x9c,0x14,0x0c,0x01,0x2d,0x00,0x0d,0x3d,0x0f,0x13,0x2c,
23312
+0x07,0x0f,0x27,0x0b,0x2c,0x00,0x09,0x19,0x15,0x2c,0x11,0x07,
23313
+0x27,0x1b,0x17,0x30,0x23,0x10,0xf4,0x3c,0xec,0x32,0xe4,0x32,
23314
+0xd4,0xc4,0xe4,0xec,0x10,0xe4,0x10,0xe4,0x10,0xee,0x31,0x00,
23315
+0x2f,0x3c,0xee,0x32,0xee,0x17,0x32,0xfe,0xee,0xd6,0xc6,0x10,
23316
+0xee,0x32,0x12,0x39,0x39,0x30,0x40,0x09,0x10,0x24,0x2f,0x24,
23317
+0x6f,0x24,0xa0,0x24,0x04,0x01,0x5d,0x01,0x4b,0xb0,0x15,0x54,
23318
+0x58,0xbd,0x00,0x23,0xff,0xc0,0x00,0x01,0x00,0x23,0x00,0x23,
23319
+0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x01,0x27,0x2e,0x01,0x23,
23320
+0x22,0x06,0x1d,0x01,0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,
23321
+0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x33,0x35,
23322
+0x34,0x36,0x33,0x32,0x16,0x17,0x04,0x2f,0x5e,0x03,0x7a,0x7b,
23323
+0x99,0x8e,0x02,0xc7,0xae,0xfd,0xe9,0xb1,0xfd,0xf1,0xae,0xfd,
23324
+0xea,0xb0,0xb0,0xb0,0xea,0xe5,0x57,0xb6,0x59,0x05,0x06,0x01,
23325
+0x56,0x55,0x8e,0x99,0x64,0xfc,0x43,0x6a,0x6a,0x03,0x52,0xfc,
23326
+0xae,0x6a,0x6a,0x03,0x52,0x6b,0x60,0xc5,0xc8,0x1a,0x1b,0x00,
23327
+0x00,0x01,0x00,0x4a,0x00,0x00,0x05,0x19,0x06,0x14,0x00,0x1d,
23328
+0x00,0x75,0x40,0x2e,0x0c,0x1b,0x08,0x17,0x0f,0x7a,0x0d,0x08,
23329
+0x7a,0x00,0x71,0x15,0x11,0x06,0x03,0x02,0x7a,0x19,0x0d,0x9c,
23330
+0x13,0x04,0x09,0x00,0x0e,0x05,0x3d,0x07,0x27,0x03,0x2c,0x01,
23331
+0x12,0x2c,0x0e,0x10,0x0c,0x27,0x01,0x18,0x14,0x2c,0x1a,0x16,
23332
+0x30,0x1e,0x10,0xf4,0x3c,0xe4,0x32,0xc4,0xfc,0x3c,0xc4,0xe4,
23333
+0x10,0xe4,0xfe,0xe4,0x11,0x39,0x39,0x31,0x00,0x2f,0x3c,0xee,
23334
+0x32,0xee,0x17,0x32,0xfe,0xee,0x10,0xee,0x32,0x12,0x39,0x39,
23335
+0x30,0xb6,0x10,0x1f,0x2f,0x1f,0xa0,0x1f,0x03,0x01,0x5d,0x01,
23336
+0x4b,0xb0,0x15,0x54,0x58,0xbd,0x00,0x1e,0xff,0xc0,0x00,0x01,
23337
+0x00,0x1e,0x00,0x1e,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x01,
23338
+0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x22,0x06,0x1d,
23339
+0x01,0x21,0x15,0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,
23340
+0x35,0x33,0x35,0x34,0x36,0x02,0xdd,0x01,0x8d,0xaf,0xfd,0xe9,
23341
+0xb0,0xd7,0xa3,0x86,0x01,0x27,0xfe,0xd9,0xae,0xfd,0xea,0xb0,
23342
+0xb0,0xb0,0xef,0x06,0x14,0xfa,0x56,0x6a,0x6a,0x05,0x40,0x82,
23343
+0x9d,0x64,0x6b,0xfc,0xae,0x6a,0x6a,0x03,0x52,0x6b,0x60,0xc9,
23344
+0xc4,0x00,0x00,0x00,0x00,0x01,0x00,0x48,0x00,0x00,0x08,0x0a,
23345
+0x06,0x14,0x00,0x3b,0x00,0x8c,0x40,0x25,0x2f,0x2c,0x2d,0x27,
23346
+0x32,0x2d,0x34,0x00,0x25,0x2d,0x24,0x37,0x2c,0x35,0x27,0x24,
23347
+0x3a,0x2c,0x1c,0x00,0x07,0x14,0x2d,0x13,0x03,0x01,0x1a,0x27,
23348
+0x13,0x36,0x09,0x05,0x2c,0x0b,0x07,0x30,0x3c,0x10,0xf4,0x3c,
23349
+0xe4,0x32,0xe4,0xfc,0x3c,0xc4,0x10,0xee,0x10,0xd4,0x3c,0xe4,
23350
+0xc4,0xfc,0x3c,0xc4,0x10,0xee,0x10,0xd4,0xe4,0xfc,0xe4,0x31,
23351
+0x00,0x40,0x24,0x2b,0x1d,0x1a,0x0c,0x04,0x24,0x35,0x01,0x08,
23352
+0x7a,0x1b,0x24,0x13,0x23,0x12,0x28,0x17,0x8f,0x20,0x0f,0x71,
23353
+0x2e,0x33,0x36,0x3b,0x02,0x05,0x07,0x7a,0x0b,0x1b,0x2c,0x9c,
23354
+0x31,0x39,0x05,0x2f,0x3c,0x3c,0xee,0x32,0x32,0xee,0x17,0x32,
23355
+0xfe,0x3c,0xee,0x32,0xd6,0x3c,0xc6,0x32,0x10,0xee,0x32,0x32,
23356
+0x12,0x17,0x39,0x30,0xb6,0x2f,0x3d,0x1f,0x31,0x1f,0x32,0x03,
23357
+0x01,0x5d,0x01,0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,
23358
+0x35,0x33,0x35,0x34,0x36,0x33,0x32,0x16,0x17,0x15,0x23,0x2e,
23359
+0x01,0x23,0x22,0x06,0x1d,0x01,0x21,0x35,0x34,0x36,0x33,0x32,
23360
+0x16,0x17,0x15,0x27,0x2e,0x01,0x23,0x22,0x06,0x1d,0x01,0x21,
23361
+0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x21,0x11,0x33,0x15,0x21,
23362
+0x35,0x33,0x03,0xdd,0xfd,0xd3,0xec,0xfd,0xac,0xb0,0xb0,0xb0,
23363
+0xb9,0xb3,0x43,0x86,0x42,0x61,0x01,0x53,0x4f,0x67,0x54,0x02,
23364
+0x2d,0xea,0xe5,0x57,0xb6,0x59,0x5e,0x03,0x7a,0x7b,0x99,0x8e,
23365
+0x02,0xc7,0xae,0xfd,0xe9,0xb1,0xfd,0xf1,0xae,0xfd,0xea,0xb0,
23366
+0x03,0xbc,0xfc,0xae,0x6a,0x6a,0x03,0x52,0x6b,0x85,0xb2,0xb6,
23367
+0x18,0x19,0xca,0x4b,0x4e,0x71,0x91,0x89,0x60,0xc5,0xc8,0x1a,
23368
+0x1b,0xd9,0x01,0x56,0x55,0x8e,0x99,0x64,0xfc,0x43,0x6a,0x6a,
23369
+0x03,0x52,0xfc,0xae,0x6a,0x6a,0x00,0x00,0x00,0x01,0x00,0x46,
23370
+0x00,0x00,0x07,0xf8,0x06,0x14,0x00,0x36,0x00,0x79,0x40,0x10,
23371
+0x14,0x2d,0x13,0x03,0x01,0x1a,0x27,0x13,0x36,0x0a,0x05,0x2c,
23372
+0x0b,0x07,0x30,0x37,0x10,0xf4,0x3c,0xe4,0x32,0xe4,0xfc,0x3c,
23373
+0xc4,0x10,0xee,0x40,0x0a,0x32,0x2c,0x31,0x2c,0x27,0x35,0x2c,
23374
+0x1c,0x00,0x13,0x10,0xd4,0x3c,0xe4,0xfc,0x3c,0xe4,0x40,0x08,
23375
+0x23,0x2c,0x21,0x27,0x26,0x2c,0x2f,0x27,0xdc,0x39,0xe4,0xfc,
23376
+0xe4,0x31,0x00,0x40,0x0f,0x22,0x26,0x31,0x35,0x02,0x05,0x06,
23377
+0x7a,0x2e,0x1b,0x0a,0x9c,0x25,0x34,0x05,0x2f,0x3c,0x3c,0xee,
23378
+0x32,0x32,0xee,0x17,0x32,0x40,0x10,0x30,0x01,0x09,0x7a,0x0a,
23379
+0x28,0x7a,0x21,0x71,0x05,0x13,0x12,0x17,0x8f,0x0f,0x71,0xfe,
23380
+0xee,0xd6,0xc6,0x10,0xfc,0xee,0x10,0xee,0x32,0x32,0x30,0x01,
23381
+0x21,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x33,0x35,
23382
+0x34,0x36,0x33,0x32,0x16,0x17,0x15,0x23,0x2e,0x01,0x23,0x22,
23383
+0x06,0x1d,0x01,0x21,0x35,0x34,0x36,0x33,0x21,0x11,0x33,0x15,
23384
+0x21,0x35,0x33,0x11,0x23,0x22,0x06,0x1d,0x01,0x21,0x15,0x21,
23385
+0x11,0x33,0x15,0x21,0x35,0x33,0x03,0xd9,0xfd,0xd5,0xec,0xfd,
23386
+0xac,0xb0,0xb0,0xb0,0xb9,0xb3,0x43,0x86,0x42,0x61,0x01,0x53,
23387
+0x4f,0x67,0x54,0x02,0x2b,0xef,0xf4,0x01,0x8d,0xaf,0xfd,0xe9,
23388
+0xb0,0xd7,0xa3,0x86,0x01,0x27,0xfe,0xd9,0xae,0xfd,0xea,0xb0,
23389
+0x03,0xbc,0xfc,0xae,0x6a,0x6a,0x03,0x52,0x6b,0x85,0xb2,0xb6,
23390
+0x18,0x19,0xca,0x4b,0x4e,0x71,0x91,0x89,0x60,0xc9,0xc4,0xfa,
23391
+0x56,0x6a,0x6a,0x05,0x40,0x82,0x9d,0x64,0x6b,0xfc,0xae,0x6a,
23392
+0x6a,0x00,0x00,0x00,0x00,0x01,0x00,0x4f,0xff,0xe2,0x05,0xdd,
23393
+0x06,0x14,0x00,0x2e,0x00,0x00,0x01,0x26,0x23,0x22,0x06,0x1d,
23394
+0x01,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x33,0x35,
23395
+0x34,0x36,0x33,0x32,0x17,0x16,0x17,0x03,0x21,0x15,0x21,0x11,
23396
+0x14,0x16,0x33,0x32,0x36,0x37,0x33,0x0e,0x01,0x23,0x22,0x26,
23397
+0x35,0x11,0x23,0x35,0x33,0x03,0x93,0x43,0x72,0x99,0x8e,0xae,
23398
+0xfd,0xea,0xb0,0xb0,0xb0,0xea,0xe5,0x57,0x5b,0x8a,0x43,0x01,
23399
+0x01,0x5a,0xfe,0xa6,0x34,0x46,0x48,0x42,0x02,0x8b,0x08,0x8e,
23400
+0x91,0x9f,0x84,0xa2,0xa2,0x05,0x84,0x2e,0x8e,0x99,0x64,0xfc,
23401
+0x43,0x6a,0x6a,0x03,0x52,0x6b,0x60,0xc5,0xc8,0x0d,0x14,0x4e,
23402
+0xfe,0x81,0x6b,0xfd,0x5d,0x87,0x4c,0x55,0x5f,0x91,0x86,0x8d,
23403
+0xa9,0x02,0xa3,0x6b,0x00,0x01,0x00,0x64,0xff,0xe3,0x07,0x12,
23404
+0x05,0xe6,0x00,0x56,0x00,0x00,0x01,0x15,0x23,0x2e,0x01,0x23,
23405
+0x22,0x06,0x15,0x14,0x17,0x16,0x1f,0x01,0x16,0x17,0x16,0x15,
23406
+0x14,0x06,0x23,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,
23407
+0x36,0x35,0x34,0x26,0x2f,0x01,0x2e,0x01,0x35,0x34,0x36,0x33,
23408
+0x32,0x17,0x26,0x35,0x34,0x36,0x33,0x32,0x16,0x17,0x1e,0x01,
23409
+0x1d,0x01,0x21,0x15,0x21,0x11,0x14,0x16,0x33,0x32,0x36,0x37,
23410
+0x33,0x0e,0x01,0x23,0x22,0x26,0x35,0x11,0x23,0x35,0x33,0x35,
23411
+0x34,0x26,0x23,0x22,0x06,0x15,0x14,0x17,0x16,0x03,0x6a,0x6a,
23412
+0x04,0x88,0x75,0x74,0x77,0x2d,0x2e,0x86,0x92,0x96,0x43,0x43,
23413
+0xe7,0xcb,0x67,0xc4,0x62,0x6a,0x04,0x8d,0x8a,0x7c,0x82,0x5f,
23414
+0x99,0x85,0x89,0x7b,0xd6,0xbd,0x1d,0x1d,0x0a,0xf8,0xb4,0x56,
23415
+0x9b,0x3f,0x40,0x3c,0x01,0x5a,0xfe,0xa6,0x34,0x46,0x48,0x42,
23416
+0x02,0x8b,0x08,0x8e,0x91,0x9f,0x84,0xa2,0xa2,0x8b,0x68,0x48,
23417
+0xab,0x45,0x2b,0x03,0xee,0xe8,0x67,0x74,0x52,0x52,0x43,0x28,
23418
+0x2a,0x29,0x2d,0x2e,0x48,0x46,0x6f,0x97,0xad,0x2c,0x2c,0xf8,
23419
+0x77,0x76,0x5d,0x59,0x46,0x56,0x31,0x2d,0x2c,0x84,0x66,0x92,
23420
+0xa6,0x03,0x01,0x57,0xac,0xa1,0x29,0x29,0x2b,0x60,0x70,0x72,
23421
+0x6b,0xfd,0x5d,0x87,0x4c,0x55,0x5f,0x91,0x86,0x8d,0xa9,0x02,
23422
+0xa3,0x6b,0x72,0x65,0x89,0x6f,0x7f,0x58,0x2d,0x1b,0x00,0x00,
23423
+0x00,0x03,0x00,0x1e,0xff,0x54,0x08,0x16,0x07,0x4c,0x00,0x0a,
23424
+0x00,0x21,0x00,0x25,0x00,0x00,0x24,0x14,0x16,0x33,0x32,0x36,
23425
+0x35,0x34,0x26,0x23,0x22,0x01,0x11,0x33,0x3e,0x01,0x33,0x32,
23426
+0x16,0x15,0x14,0x06,0x07,0x11,0x33,0x35,0x3e,0x01,0x35,0x34,
23427
+0x24,0x23,0x22,0x06,0x13,0x09,0x02,0x03,0x94,0x4d,0x39,0x37,
23428
+0x4e,0x4e,0x37,0x39,0xfe,0xd6,0x61,0x15,0x91,0x72,0x7e,0x92,
23429
+0xb3,0xb1,0x7b,0xdf,0xdd,0xfe,0xff,0xde,0x54,0xbf,0xf9,0x03,
23430
+0xfc,0xfc,0x04,0xfc,0x04,0xa0,0x70,0x4d,0x4e,0x37,0x38,0x4e,
23431
+0x04,0xa5,0xfe,0xfc,0x7b,0x83,0x9e,0x89,0x9c,0xca,0x2b,0xfe,
23432
+0xb8,0xfe,0x33,0xec,0xba,0xb6,0xd6,0x2e,0x01,0x8a,0xfc,0x04,
23433
+0xfc,0x04,0x03,0xfc,0x00,0x02,0xff,0x62,0x00,0x00,0x05,0x5f,
23434
+0x05,0xd5,0x00,0x02,0x00,0x12,0x00,0x00,0x01,0x21,0x03,0x01,
23435
+0x37,0x33,0x01,0x33,0x01,0x33,0x07,0x21,0x37,0x33,0x03,0x21,
23436
+0x03,0x33,0x07,0x01,0x72,0x02,0x24,0x88,0xfc,0x55,0x14,0x83,
23437
+0x03,0x22,0xa8,0x01,0x08,0x92,0x14,0xfd,0xe1,0x14,0xa6,0x3d,
23438
+0xfd,0x8c,0xbd,0xa4,0x14,0x02,0x1d,0x02,0xc6,0xfb,0x1d,0x6a,
23439
+0x05,0x6b,0xfa,0x95,0x6a,0x6a,0x01,0x48,0xfe,0xb8,0x6a,0x00,
23440
+0x00,0x03,0xff,0xdf,0x00,0x00,0x05,0x63,0x05,0xd5,0x00,0x08,
23441
+0x00,0x11,0x00,0x24,0x00,0x00,0x25,0x21,0x32,0x36,0x37,0x36,
23442
+0x26,0x23,0x21,0x37,0x33,0x32,0x36,0x37,0x36,0x26,0x2b,0x01,
23443
+0x01,0x37,0x33,0x13,0x23,0x37,0x21,0x32,0x16,0x07,0x0e,0x01,
23444
+0x07,0x1e,0x01,0x07,0x06,0x04,0x21,0x01,0x7d,0x01,0x2b,0xb4,
23445
+0xc5,0x21,0x21,0x87,0xb5,0xfe,0xd5,0x14,0xfe,0xa4,0xb0,0x1a,
23446
+0x1b,0x7f,0xa4,0xfe,0xfd,0x6a,0x14,0xbe,0xf9,0xbe,0x15,0x02,
23447
+0xe1,0xe2,0xc1,0x24,0x19,0xbe,0x9d,0xba,0x9f,0x20,0x2b,0xfe,
23448
+0xbf,0xfe,0xd7,0x6a,0x9c,0xaa,0xa9,0x9b,0x6a,0x7e,0x88,0x89,
23449
+0x7d,0xfa,0x96,0x6a,0x05,0x00,0x6b,0xb9,0xb8,0x85,0x9e,0x12,
23450
+0x18,0xc3,0xa4,0xde,0xd2,0x00,0x00,0x00,0x00,0x01,0x00,0x6a,
23451
+0xff,0xe3,0x05,0xf9,0x05,0xf0,0x00,0x1d,0x00,0x00,0x01,0x06,
23452
+0x04,0x23,0x22,0x26,0x27,0x26,0x02,0x37,0x12,0x00,0x21,0x32,
23453
+0x04,0x17,0x03,0x23,0x2e,0x01,0x23,0x22,0x00,0x03,0x02,0x12,
23454
+0x33,0x32,0x36,0x37,0x05,0x60,0x6b,0xfe,0x9f,0xee,0x92,0xe6,
23455
+0x4e,0x5a,0x36,0x23,0x44,0x01,0xe5,0x01,0x49,0x7a,0x01,0x07,
23456
+0x92,0x42,0x71,0x01,0xbc,0xc9,0xef,0xfe,0xc8,0x40,0x40,0xb4,
23457
+0xef,0xa7,0xf7,0x4f,0x01,0x8b,0xd1,0xd7,0x64,0x61,0x70,0x01,
23458
+0x1d,0xb4,0x01,0x5c,0x01,0xab,0x40,0x41,0xfe,0xa8,0xbc,0xb2,
23459
+0xfe,0xad,0xfe,0xb7,0xfe,0xb8,0xfe,0xad,0x9f,0x9e,0x00,0x00,
23460
+0x00,0x02,0xff,0xdf,0x00,0x00,0x05,0xf5,0x05,0xd5,0x00,0x07,
23461
+0x00,0x14,0x00,0x00,0x25,0x33,0x20,0x00,0x12,0x02,0x21,0x23,
23462
+0x01,0x37,0x33,0x13,0x23,0x37,0x21,0x20,0x00,0x03,0x02,0x00,
23463
+0x21,0x01,0x7d,0xba,0x01,0x23,0x01,0x78,0x79,0xf7,0xfe,0xdc,
23464
+0xba,0xfd,0x6a,0x14,0xbe,0xf9,0xbe,0x15,0x02,0x52,0x01,0x82,
23465
+0x01,0x63,0x45,0x44,0xfe,0x03,0xfe,0x7f,0x6a,0x01,0x4c,0x02,
23466
+0x6c,0x01,0x48,0xfa,0x96,0x6a,0x05,0x00,0x6b,0xfe,0x76,0xfe,
23467
+0xa1,0xfe,0xa0,0xfe,0x74,0x00,0x00,0x00,0x00,0x01,0xff,0xdf,
23468
+0x00,0x00,0x05,0xb5,0x05,0xd5,0x00,0x17,0x00,0x00,0x23,0x37,
23469
+0x33,0x13,0x23,0x37,0x21,0x03,0x23,0x37,0x21,0x03,0x21,0x37,
23470
+0x33,0x03,0x23,0x37,0x21,0x03,0x21,0x37,0x33,0x03,0x20,0x14,
23471
+0xbe,0xf9,0xbe,0x15,0x04,0xb2,0x40,0x7b,0x28,0xfd,0x52,0x61,
23472
+0x01,0xe9,0x24,0x7b,0x60,0x7b,0x24,0xfe,0x17,0x79,0x02,0xbe,
23473
+0x28,0x7b,0x40,0x6a,0x05,0x00,0x6b,0xfe,0xb4,0xd1,0xfe,0x0c,
23474
+0xbb,0xfe,0x10,0xbb,0xfd,0x8f,0xd1,0xfe,0xb4,0x00,0x00,0x00,
23475
+0x00,0x01,0xff,0xdf,0x00,0x00,0x05,0xc9,0x05,0xd5,0x00,0x15,
23476
+0x00,0x00,0x23,0x37,0x33,0x13,0x23,0x37,0x21,0x03,0x23,0x37,
23477
+0x21,0x03,0x21,0x37,0x33,0x03,0x23,0x37,0x21,0x03,0x33,0x07,
23478
+0x20,0x14,0xbe,0xf9,0xbe,0x15,0x04,0xc6,0x40,0x7b,0x28,0xfd,
23479
+0x3e,0x61,0x01,0xfe,0x24,0x7b,0x60,0x7b,0x24,0xfe,0x02,0x7d,
23480
+0xef,0x14,0x6a,0x05,0x00,0x6b,0xfe,0xb4,0xd1,0xfe,0x0c,0xbb,
23481
+0xfe,0x10,0xbb,0xfd,0x7e,0x6a,0x00,0x00,0x00,0x01,0x00,0x72,
23482
+0xff,0xe3,0x06,0x0f,0x05,0xf0,0x00,0x1e,0x00,0x00,0x01,0x36,
23483
+0x26,0x23,0x20,0x00,0x03,0x02,0x12,0x33,0x32,0x36,0x37,0x13,
23484
+0x21,0x37,0x21,0x03,0x06,0x04,0x23,0x20,0x00,0x13,0x12,0x00,
23485
+0x21,0x32,0x04,0x17,0x03,0x05,0x5a,0x01,0xbb,0xc6,0xfe,0xfe,
23486
+0xfe,0xc1,0x41,0x40,0xc4,0xfe,0x71,0xd9,0x68,0x4b,0xfe,0xe7,
23487
+0x15,0x01,0xe4,0x6d,0x94,0xfe,0xbe,0xaf,0xfe,0xae,0xfe,0xbc,
23488
+0x44,0x45,0x01,0xea,0x01,0x59,0x80,0x01,0x05,0x8e,0x44,0x04,
23489
+0x17,0xbb,0xb3,0xfe,0xb4,0xfe,0xb0,0xfe,0xb7,0xfe,0xae,0x38,
23490
+0x38,0x01,0x81,0x6b,0xfd,0xd3,0x4d,0x4d,0x01,0xa7,0x01,0x5f,
23491
+0x01,0x62,0x01,0xa5,0x3b,0x3c,0xfe,0x9e,0x00,0x01,0xff,0xdf,
23492
+0x00,0x00,0x07,0x1b,0x05,0xd5,0x00,0x1b,0x00,0x00,0x23,0x37,
23493
+0x33,0x13,0x23,0x37,0x21,0x07,0x23,0x03,0x21,0x13,0x23,0x37,
23494
+0x21,0x07,0x23,0x03,0x33,0x07,0x21,0x37,0x33,0x13,0x21,0x03,
23495
+0x33,0x07,0x20,0x14,0xbe,0xf9,0xbe,0x15,0x02,0x47,0x15,0xbe,
23496
+0x64,0x03,0x06,0x64,0xbe,0x15,0x02,0x47,0x15,0xbe,0xf9,0xbe,
23497
+0x14,0xfd,0xb9,0x14,0xbf,0x7c,0xfc,0xfa,0x7d,0xbe,0x14,0x6a,
23498
+0x05,0x00,0x6b,0x6b,0xfd,0xfc,0x02,0x04,0x6b,0x6b,0xfb,0x00,
23499
+0x6a,0x6a,0x02,0x82,0xfd,0x7e,0x6a,0x00,0x00,0x01,0xff,0xdf,
23500
+0x00,0x00,0x03,0x4a,0x05,0xd5,0x00,0x0b,0x00,0x00,0x25,0x33,
23501
+0x07,0x21,0x37,0x33,0x13,0x23,0x37,0x21,0x07,0x23,0x01,0x7d,
23502
+0xbe,0x14,0xfd,0xb9,0x14,0xbe,0xf9,0xbe,0x15,0x02,0x47,0x15,
23503
+0xbe,0x6a,0x6a,0x6a,0x05,0x00,0x6b,0x6b,0x00,0x01,0xfe,0xa6,
23504
+0xfe,0x56,0x03,0x92,0x05,0xd5,0x00,0x14,0x00,0x00,0x01,0x37,
23505
+0x33,0x06,0x16,0x33,0x32,0x36,0x37,0x01,0x23,0x37,0x21,0x07,
23506
+0x23,0x01,0x0e,0x01,0x23,0x22,0x26,0xfe,0xa7,0x2d,0x72,0x10,
23507
+0x45,0x58,0x77,0x7b,0x2b,0x01,0x04,0xe8,0x15,0x02,0x71,0x15,
23508
+0xbe,0xfe,0xfa,0x30,0xf1,0xdc,0x47,0x8c,0xfe,0x9a,0xeb,0x63,
23509
+0x61,0x96,0xda,0x05,0x39,0x6b,0x6b,0xfa,0xbf,0xf7,0xdc,0x22,
23510
+0x00,0x01,0xff,0xdf,0x00,0x00,0x06,0x5d,0x05,0xd5,0x00,0x18,
23511
+0x00,0x00,0x23,0x37,0x33,0x13,0x23,0x37,0x21,0x07,0x23,0x03,
23512
+0x01,0x23,0x37,0x21,0x07,0x23,0x09,0x01,0x33,0x07,0x21,0x01,
23513
+0x03,0x33,0x07,0x20,0x14,0xbe,0xf9,0xbe,0x15,0x02,0x47,0x15,
23514
+0xbe,0x6e,0x02,0xf1,0xa2,0x15,0x01,0xf0,0x15,0xa8,0xfd,0x12,
23515
+0x02,0x41,0xaa,0x14,0xfe,0xa5,0xfd,0xc6,0x76,0xbe,0x14,0x6a,
23516
+0x05,0x00,0x6b,0x6b,0xfd,0xcb,0x02,0x35,0x6b,0x6b,0xfd,0xcd,
23517
+0xfd,0x33,0x6a,0x02,0xc5,0xfd,0xa5,0x6a,0x00,0x01,0xff,0xdf,
23518
+0x00,0x00,0x04,0xd7,0x05,0xd5,0x00,0x0d,0x00,0x00,0x23,0x37,
23519
+0x33,0x13,0x23,0x37,0x21,0x07,0x23,0x03,0x21,0x37,0x33,0x03,
23520
+0x20,0x14,0xbe,0xf9,0xbe,0x15,0x02,0x47,0x15,0xbe,0xf5,0x02,
23521
+0xaa,0x30,0x7b,0x48,0x6a,0x05,0x00,0x6b,0x6b,0xfb,0x11,0xfa,
23522
+0xfe,0x8b,0x00,0x00,0x00,0x01,0xff,0xdf,0x00,0x00,0x08,0x5b,
23523
+0x05,0xd5,0x00,0x18,0x00,0x00,0x23,0x37,0x33,0x13,0x23,0x37,
23524
+0x21,0x09,0x01,0x21,0x07,0x23,0x03,0x33,0x07,0x21,0x37,0x33,
23525
+0x13,0x01,0x23,0x01,0x03,0x33,0x07,0x20,0x14,0xbe,0xf9,0xc9,
23526
+0x15,0x01,0xb3,0x01,0x3d,0x02,0xdb,0x01,0x98,0x15,0xc7,0xf8,
23527
+0xbe,0x14,0xfd,0xb8,0x14,0xbe,0xe1,0xfd,0x35,0x8d,0xfe,0xcb,
23528
+0xe1,0xbe,0x14,0x6a,0x05,0x00,0x6b,0xfb,0xd9,0x04,0x27,0x6b,
23529
+0xfb,0x00,0x6a,0x6a,0x04,0x82,0xfb,0xef,0x04,0x11,0xfb,0x7e,
23530
+0x6a,0x00,0x00,0x00,0x00,0x01,0xff,0xd5,0xff,0xe3,0x07,0x3a,
23531
+0x05,0xd5,0x00,0x13,0x00,0x00,0x23,0x37,0x33,0x13,0x23,0x37,
23532
+0x21,0x01,0x13,0x23,0x37,0x21,0x07,0x23,0x01,0x23,0x01,0x03,
23533
+0x33,0x07,0x2a,0x14,0xc9,0xf9,0xc9,0x15,0x01,0x7f,0x02,0x9a,
23534
+0xd0,0xc8,0x15,0x02,0x0c,0x15,0xc9,0xfe,0xed,0x79,0xfd,0x39,
23535
+0xdb,0xc9,0x14,0x6a,0x05,0x00,0x6b,0xfb,0x66,0x04,0x2f,0x6b,
23536
+0x6b,0xfa,0x79,0x04,0xea,0xfb,0x9d,0x6a,0x00,0x02,0x00,0x6a,
23537
+0xff,0xe3,0x06,0x1d,0x05,0xf0,0x00,0x0b,0x00,0x1f,0x00,0x00,
23538
+0x25,0x32,0x00,0x13,0x12,0x02,0x23,0x22,0x00,0x03,0x02,0x12,
23539
+0x17,0x22,0x26,0x27,0x26,0x02,0x1a,0x01,0x37,0x36,0x24,0x33,
23540
+0x20,0x00,0x03,0x06,0x02,0x07,0x06,0x04,0x02,0xc6,0xf5,0x01,
23541
+0x3c,0x40,0x40,0xb8,0xf5,0xf6,0xfe,0xc4,0x40,0x40,0xb8,0xe1,
23542
+0x98,0xeb,0x4e,0x5a,0x36,0x46,0xa4,0x86,0x75,0x01,0x10,0x9a,
23543
+0x01,0x45,0x01,0x3d,0x44,0x23,0xa6,0x85,0x75,0xfe,0xf0,0x4e,
23544
+0x01,0x51,0x01,0x4a,0x01,0x4b,0x01,0x51,0xfe,0xaf,0xfe,0xb5,
23545
+0xfe,0xb6,0xfe,0xaf,0x6b,0x64,0x61,0x70,0x01,0x1c,0x01,0x6a,
23546
+0x01,0x1d,0x70,0x62,0x63,0xfe,0x56,0xfe,0xa3,0xb3,0xfe,0xe1,
23547
+0x6f,0x62,0x63,0x00,0x00,0x02,0xff,0xdf,0x00,0x00,0x05,0x59,
23548
+0x05,0xd5,0x00,0x08,0x00,0x19,0x00,0x00,0x01,0x21,0x32,0x36,
23549
+0x37,0x36,0x26,0x23,0x21,0x01,0x37,0x33,0x13,0x23,0x37,0x21,
23550
+0x32,0x16,0x07,0x06,0x04,0x23,0x21,0x03,0x33,0x07,0x01,0xfd,
23551
+0x01,0x08,0x95,0xbb,0x1d,0x1e,0x7d,0x95,0xfe,0xf8,0xfd,0x6a,
23552
+0x14,0xbe,0xf9,0xbe,0x15,0x02,0xc2,0xe0,0xda,0x26,0x25,0xfe,
23553
+0xce,0xe0,0xfe,0xc7,0x6b,0xe7,0x14,0x02,0xf8,0xa1,0x98,0x99,
23554
+0xa0,0xfa,0x96,0x6a,0x05,0x00,0x6b,0xe3,0xc1,0xc0,0xe4,0xfd,
23555
+0xdd,0x6a,0x00,0x00,0x00,0x02,0x00,0x7b,0xfe,0xb8,0x06,0x4f,
23556
+0x05,0xf0,0x00,0x1e,0x00,0x30,0x00,0x00,0x05,0x20,0x27,0x26,
23557
+0x35,0x34,0x37,0x36,0x12,0x37,0x36,0x24,0x33,0x20,0x17,0x16,
23558
+0x15,0x14,0x07,0x02,0x00,0x05,0x1e,0x01,0x3b,0x01,0x07,0x23,
23559
+0x20,0x27,0x26,0x27,0x32,0x00,0x13,0x36,0x35,0x34,0x27,0x26,
23560
+0x23,0x22,0x00,0x03,0x06,0x15,0x14,0x17,0x16,0x02,0xe7,0xfe,
23561
+0xa9,0xa3,0x71,0x14,0x23,0xa5,0x85,0x75,0x01,0x10,0x9a,0x01,
23562
+0x45,0x9e,0x6f,0x14,0x3a,0xfe,0x86,0xfe,0xed,0x29,0x8e,0x6d,
23563
+0xfa,0x24,0x75,0xfe,0xf7,0x6e,0x6c,0x32,0xf5,0x01,0x3c,0x40,
23564
+0x1a,0x36,0x5c,0xf5,0xf6,0xfe,0xc4,0x40,0x1a,0x36,0x5c,0x1d,
23565
+0xd3,0x93,0xdb,0x5c,0x69,0xb5,0x01,0x1d,0x70,0x62,0x63,0xd5,
23566
+0x95,0xd8,0x5c,0x69,0xfe,0xd8,0xfe,0x6d,0x3a,0x43,0x40,0xb9,
23567
+0x52,0x52,0xf2,0x01,0x51,0x01,0x4a,0x88,0x6d,0x9b,0x63,0xa9,
23568
+0xfe,0xaf,0xfe,0xb5,0x87,0x6d,0x9b,0x64,0xa8,0x00,0x00,0x00,
23569
+0x00,0x02,0xff,0xdf,0x00,0x00,0x05,0xbb,0x05,0xd5,0x00,0x1b,
23570
+0x00,0x23,0x00,0x00,0x01,0x1e,0x01,0x17,0x13,0x33,0x07,0x21,
23571
+0x03,0x2e,0x01,0x2b,0x01,0x03,0x33,0x07,0x21,0x37,0x33,0x13,
23572
+0x23,0x37,0x21,0x32,0x16,0x07,0x0e,0x01,0x25,0x21,0x32,0x36,
23573
+0x12,0x26,0x23,0x21,0x03,0xd4,0x42,0x54,0x18,0x82,0xb6,0x14,
23574
+0xfe,0xa0,0x8d,0x28,0x60,0x62,0xdf,0x73,0xd3,0x14,0xfd,0xa4,
23575
+0x14,0xbe,0xf9,0xbe,0x15,0x02,0xf5,0xda,0xc5,0x25,0x1e,0xd0,
23576
+0xfd,0x82,0x01,0x27,0x97,0xab,0x3b,0x75,0x97,0xfe,0xd9,0x02,
23577
+0xe5,0x13,0x5b,0x52,0xfe,0x45,0x6a,0x01,0xdb,0x8a,0x51,0xfd,
23578
+0xb4,0x6a,0x6a,0x05,0x00,0x6b,0xd0,0xbf,0x9a,0xb1,0x26,0x8f,
23579
+0x01,0x2c,0x8e,0x00,0x00,0x01,0x00,0x3b,0xff,0xe3,0x05,0x20,
23580
+0x05,0xf0,0x00,0x29,0x00,0x00,0x37,0x13,0x17,0x06,0x16,0x33,
23581
+0x32,0x36,0x37,0x36,0x26,0x2f,0x01,0x2e,0x01,0x37,0x36,0x24,
23582
+0x33,0x32,0x16,0x17,0x03,0x23,0x36,0x26,0x23,0x22,0x06,0x07,
23583
+0x06,0x16,0x1f,0x01,0x1e,0x01,0x07,0x06,0x04,0x21,0x22,0x26,
23584
+0x3b,0x42,0x73,0x1c,0x9b,0xbf,0xb2,0xd7,0x1a,0x15,0x5b,0xab,
23585
+0xb9,0xca,0x89,0x21,0x25,0x01,0x37,0xf4,0x68,0xef,0x83,0x3d,
23586
+0x71,0x0d,0x95,0xb5,0x9e,0xbe,0x18,0x15,0x64,0xbe,0xae,0xbf,
23587
+0x88,0x1f,0x2a,0xfe,0xbf,0xfe,0xed,0x7b,0xf5,0x48,0x01,0x54,
23588
+0x01,0xaa,0xa3,0x8d,0x87,0x6c,0x74,0x37,0x3b,0x41,0xc2,0xa9,
23589
+0xbe,0xd2,0x2d,0x2b,0xfe,0xc2,0x9e,0x8d,0x81,0x7b,0x6b,0x7a,
23590
+0x3c,0x37,0x3d,0xbd,0x9f,0xd9,0xdc,0x32,0x00,0x01,0x00,0x60,
23591
+0x00,0x00,0x05,0xd4,0x05,0xd5,0x00,0x0f,0x00,0x00,0x33,0x37,
23592
+0x33,0x13,0x21,0x07,0x23,0x13,0x21,0x03,0x23,0x37,0x21,0x03,
23593
+0x33,0x07,0xf6,0x14,0xbf,0xf7,0xfe,0x49,0x2d,0x7b,0x44,0x05,
23594
+0x2e,0x44,0x7b,0x2d,0xfe,0x49,0xf7,0xbf,0x14,0x6a,0x04,0xf4,
23595
+0xe9,0x01,0x60,0xfe,0xa0,0xe9,0xfb,0x0c,0x6a,0x00,0x00,0x00,
23596
+0x00,0x01,0x00,0xdf,0xff,0xe3,0x06,0xf6,0x05,0xd5,0x00,0x17,
23597
+0x00,0x00,0x01,0x23,0x37,0x21,0x07,0x23,0x03,0x02,0x16,0x20,
23598
+0x36,0x1b,0x01,0x23,0x37,0x21,0x07,0x23,0x03,0x02,0x00,0x20,
23599
+0x02,0x13,0x01,0x9e,0xbf,0x15,0x02,0x48,0x15,0xbf,0x96,0x38,
23600
+0x90,0x01,0xca,0xe6,0x38,0x96,0xbf,0x15,0x01,0xf8,0x15,0xbe,
23601
+0x9a,0x42,0xfe,0xc3,0xfd,0x8c,0xd4,0x42,0x05,0x6a,0x6b,0x6b,
23602
+0xfc,0xfc,0xfe,0xe2,0xe2,0xe2,0x01,0x1e,0x03,0x04,0x6b,0x6b,
23603
+0xfc,0xe8,0xfe,0xab,0xfe,0xe6,0x01,0x1c,0x01,0x53,0x00,0x00,
23604
+0x00,0x01,0x00,0x68,0x00,0x00,0x06,0x77,0x05,0xd5,0x00,0x0e,
23605
+0x00,0x00,0x01,0x13,0x01,0x23,0x37,0x21,0x07,0x23,0x01,0x23,
23606
+0x01,0x23,0x37,0x21,0x07,0x01,0xe2,0xdb,0x02,0x96,0xa8,0x15,
23607
+0x01,0xb6,0x15,0x91,0xfc,0xde,0xac,0xfe,0xfb,0x95,0x15,0x02,
23608
+0x20,0x15,0x05,0x6a,0xfb,0x86,0x04,0x7a,0x6b,0x6b,0xfa,0x96,
23609
+0x05,0x6a,0x6b,0x6b,0x00,0x01,0x00,0x86,0x00,0x00,0x08,0xc5,
23610
+0x05,0xd5,0x00,0x14,0x00,0x00,0x21,0x23,0x03,0x01,0x23,0x03,
23611
+0x23,0x37,0x21,0x07,0x23,0x13,0x01,0x33,0x13,0x01,0x23,0x37,
23612
+0x21,0x07,0x23,0x05,0x88,0xa4,0x6a,0xfd,0xbe,0xa4,0x7a,0x94,
23613
+0x15,0x02,0x21,0x15,0xba,0x61,0x02,0x3f,0xa2,0x6c,0x02,0x12,
23614
+0xac,0x15,0x01,0xae,0x15,0x93,0x04,0xbe,0xfb,0x42,0x05,0x6a,
23615
+0x6b,0x6b,0xfb,0xb1,0x04,0xba,0xfb,0x39,0x04,0x5c,0x6b,0x6b,
23616
+0x00,0x01,0xff,0x7a,0x00,0x00,0x05,0xf6,0x05,0xd5,0x00,0x1b,
23617
+0x00,0x00,0x09,0x01,0x33,0x07,0x21,0x37,0x33,0x09,0x01,0x23,
23618
+0x37,0x21,0x07,0x23,0x13,0x01,0x23,0x37,0x21,0x07,0x23,0x09,
23619
+0x01,0x33,0x07,0x21,0x37,0x33,0x02,0x91,0xfe,0x2b,0xc1,0x14,
23620
+0xfe,0x12,0x14,0xac,0x02,0x28,0xfe,0xcb,0xa0,0x15,0x02,0x50,
23621
+0x15,0xb0,0xe3,0x01,0xa6,0xc0,0x15,0x01,0xe9,0x15,0xa8,0xfe,
23622
+0x06,0x01,0x4e,0xa0,0x15,0xfd,0xb0,0x14,0xb2,0x02,0x7f,0xfd,
23623
+0xeb,0x6a,0x6a,0x02,0x73,0x02,0x8d,0x6b,0x6b,0xfe,0x1f,0x01,
23624
+0xe1,0x6b,0x6b,0xfd,0xc1,0xfd,0x3f,0x6a,0x6a,0x00,0x00,0x00,
23625
+0x00,0x01,0x00,0x65,0x00,0x00,0x05,0xec,0x05,0xd5,0x00,0x14,
23626
+0x00,0x00,0x33,0x37,0x33,0x13,0x01,0x23,0x37,0x21,0x07,0x23,
23627
+0x09,0x01,0x23,0x37,0x21,0x07,0x23,0x01,0x03,0x33,0x07,0xf2,
23628
+0x14,0xbf,0x69,0xfe,0xc3,0x8c,0x15,0x02,0x2b,0x15,0xae,0x01,
23629
+0x00,0x01,0xea,0xa8,0x15,0x01,0xb2,0x15,0x8d,0xfd,0xb3,0x6d,
23630
+0xbf,0x14,0x6a,0x02,0x19,0x02,0xe7,0x6b,0x6b,0xfd,0xa4,0x02,
23631
+0x5c,0x6b,0x6b,0xfd,0x2c,0xfd,0xd4,0x6a,0x00,0x01,0xff,0xcb,
23632
+0x00,0x00,0x05,0xac,0x05,0xd5,0x00,0x0d,0x00,0x00,0x23,0x37,
23633
+0x01,0x21,0x07,0x23,0x13,0x21,0x07,0x01,0x21,0x37,0x33,0x03,
23634
+0x35,0x0e,0x04,0x9e,0xfc,0xfc,0x2b,0x7b,0x43,0x04,0x9c,0x0e,
23635
+0xfb,0x62,0x03,0x4c,0x28,0x7a,0x40,0x48,0x05,0x12,0xdf,0x01,
23636
+0x5a,0x48,0xfa,0xee,0xd1,0xfe,0xb4,0x00,0x00,0x02,0x00,0x44,
23637
+0xff,0xe3,0x04,0x3d,0x04,0x45,0x00,0x12,0x00,0x21,0x00,0x00,
23638
+0x25,0x06,0x23,0x22,0x27,0x26,0x35,0x34,0x37,0x12,0x37,0x36,
23639
+0x33,0x32,0x17,0x03,0x33,0x07,0x21,0x01,0x14,0x33,0x32,0x36,
23640
+0x37,0x13,0x31,0x34,0x23,0x22,0x07,0x06,0x03,0x06,0x02,0xe8,
23641
+0x85,0xd7,0xb0,0x59,0x3e,0x0b,0x44,0xf6,0xd1,0xfd,0xaa,0x3a,
23642
+0xba,0x9e,0x14,0xfe,0xbc,0xfe,0x3f,0xcf,0x7e,0xab,0x26,0x5d,
23643
+0x50,0xc0,0x95,0x94,0x35,0x0d,0xa6,0xc3,0x77,0x54,0x78,0x33,
23644
+0x39,0x01,0x61,0xb6,0x9b,0x1d,0xfc,0x43,0x6a,0x01,0x2c,0xd6,
23645
+0xc9,0xc0,0x01,0xe2,0x1d,0x96,0x97,0xfe,0xee,0x40,0x00,0x00,
23646
+0x00,0x02,0x00,0x57,0xff,0xe3,0x04,0x9c,0x06,0x14,0x00,0x15,
23647
+0x00,0x28,0x00,0x00,0x01,0x23,0x37,0x21,0x03,0x3e,0x01,0x33,
23648
+0x32,0x17,0x16,0x15,0x14,0x07,0x06,0x00,0x23,0x22,0x26,0x27,
23649
+0x07,0x23,0x01,0x06,0x15,0x14,0x17,0x16,0x33,0x32,0x36,0x37,
23650
+0x36,0x35,0x34,0x27,0x26,0x23,0x22,0x06,0x07,0x01,0x71,0xb1,
23651
+0x15,0x01,0x69,0x80,0x49,0xba,0x7b,0xc4,0x5e,0x3e,0x11,0x31,
23652
+0xfe,0xcc,0xc4,0x7b,0x95,0x22,0x20,0xb8,0x01,0x15,0x10,0x20,
23653
+0x36,0x8c,0x8d,0xbd,0x2b,0x14,0x1c,0x32,0x8e,0x8c,0xba,0x25,
23654
+0x05,0xaa,0x6a,0xfd,0x6d,0x64,0x5f,0x9b,0x66,0x8f,0x4b,0x55,
23655
+0xfa,0xfe,0xc9,0x5f,0x64,0xa6,0x01,0xdf,0x4f,0x3f,0x5b,0x3c,
23656
+0x64,0xe2,0xdc,0x65,0x4f,0x5c,0x3d,0x70,0xca,0xbf,0x00,0x00,
23657
+0x00,0x01,0x00,0x56,0xff,0xe3,0x04,0x55,0x04,0x44,0x00,0x23,
23658
+0x00,0x00,0x01,0x06,0x04,0x23,0x22,0x27,0x26,0x35,0x34,0x37,
23659
+0x12,0x00,0x33,0x32,0x16,0x17,0x03,0x23,0x34,0x35,0x34,0x27,
23660
+0x26,0x23,0x22,0x06,0x07,0x06,0x15,0x14,0x17,0x16,0x33,0x32,
23661
+0x36,0x37,0x03,0xf4,0x48,0xfe,0xff,0xb0,0xe8,0x6f,0x4d,0x0f,
23662
+0x32,0x01,0x55,0xe8,0x65,0xbf,0x5b,0x34,0x6b,0x34,0x3a,0x83,
23663
+0x95,0xc5,0x2d,0x14,0x1c,0x35,0x96,0x77,0xa6,0x33,0x01,0x3f,
23664
+0xaa,0xb2,0x99,0x6b,0x9a,0x45,0x4e,0x00,0xff,0x01,0x31,0x2f,
23665
+0x30,0xfe,0xf0,0x0e,0x0c,0x78,0x3a,0x40,0xe7,0xe6,0x69,0x52,
23666
+0x60,0x3f,0x74,0x7c,0x7d,0x00,0x00,0x00,0x00,0x02,0x00,0x28,
23667
+0xff,0xe3,0x04,0xce,0x06,0x14,0x00,0x15,0x00,0x28,0x00,0x00,
23668
+0x09,0x01,0x23,0x37,0x0e,0x01,0x23,0x22,0x27,0x26,0x35,0x34,
23669
+0x37,0x36,0x00,0x33,0x32,0x16,0x17,0x13,0x23,0x37,0x03,0x37,
23670
+0x36,0x35,0x34,0x27,0x26,0x23,0x22,0x06,0x07,0x06,0x15,0x14,
23671
+0x17,0x16,0x33,0x32,0x36,0x04,0xcd,0xfe,0xd2,0xb8,0x20,0x4a,
23672
+0xb9,0x7b,0xc4,0x5e,0x3f,0x11,0x31,0x01,0x34,0xc5,0x7b,0x94,
23673
+0x23,0x6b,0xae,0x15,0x23,0x14,0x0f,0x20,0x35,0x8c,0x8e,0xbd,
23674
+0x2b,0x14,0x1c,0x32,0x8e,0x8c,0xba,0x06,0x14,0xf9,0xec,0xa6,
23675
+0x64,0x5f,0x9b,0x67,0x90,0x4a,0x55,0xfa,0x01,0x36,0x5f,0x64,
23676
+0x02,0x29,0x6a,0xfb,0xcb,0x69,0x4e,0x3f,0x5b,0x3c,0x65,0xe0,
23677
+0xdd,0x65,0x4e,0x5d,0x3d,0x71,0xc9,0x00,0x00,0x02,0x00,0x57,
23678
+0xff,0xe3,0x04,0x60,0x04,0x44,0x00,0x1c,0x00,0x25,0x00,0x00,
23679
+0x01,0x06,0x15,0x14,0x17,0x16,0x33,0x32,0x37,0x36,0x37,0x33,
23680
+0x06,0x07,0x06,0x20,0x27,0x26,0x35,0x34,0x37,0x36,0x00,0x33,
23681
+0x20,0x11,0x14,0x07,0x06,0x37,0x36,0x35,0x34,0x23,0x22,0x06,
23682
+0x03,0x24,0x01,0x2c,0x04,0x22,0x3b,0x9e,0x74,0x39,0x66,0x18,
23683
+0x87,0x28,0x95,0x68,0xfe,0x64,0x6f,0x4e,0x0f,0x31,0x01,0x52,
23684
+0xf0,0x01,0x87,0xcd,0xd1,0x6b,0x70,0xe3,0x86,0xba,0x39,0x01,
23685
+0x41,0x01,0x98,0x26,0x22,0x5e,0x3e,0x6e,0x23,0x3f,0x51,0x7f,
23686
+0x59,0x3e,0x99,0x6b,0x9b,0x44,0x4d,0xfd,0x01,0x34,0xfe,0xeb,
23687
+0xcb,0x63,0x65,0xdc,0x42,0x7c,0xab,0xcc,0xfe,0xed,0x0f,0x00,
23688
+0x00,0x01,0xff,0x80,0xfe,0x56,0x04,0x24,0x06,0x14,0x00,0x23,
23689
+0x00,0x00,0x01,0x23,0x36,0x35,0x34,0x27,0x26,0x23,0x22,0x06,
23690
+0x0f,0x01,0x21,0x07,0x21,0x03,0x0e,0x01,0x23,0x37,0x32,0x37,
23691
+0x36,0x37,0x13,0x23,0x37,0x33,0x37,0x36,0x37,0x36,0x33,0x32,
23692
+0x16,0x17,0x03,0xfc,0x61,0x04,0x18,0x22,0x4f,0x67,0x6a,0x1c,
23693
+0x1b,0x01,0x29,0x15,0xfe,0xd7,0xc6,0x23,0xdc,0xb3,0x0c,0x69,
23694
+0x33,0x35,0x1d,0xc6,0xb0,0x15,0xb0,0x1a,0x23,0x6e,0x6e,0xb3,
23695
+0x43,0x81,0x3e,0x05,0x19,0x15,0x13,0x2e,0x1c,0x27,0x71,0x91,
23696
+0x89,0x6b,0xfc,0x02,0xb2,0xb6,0x62,0x38,0x3c,0x92,0x03,0xfe,
23697
+0x6b,0x85,0xb3,0x5a,0x5b,0x18,0x19,0x00,0x00,0x02,0x00,0x48,
23698
+0xfe,0x39,0x04,0xc7,0x04,0x44,0x00,0x20,0x00,0x31,0x00,0x00,
23699
+0x01,0x03,0x06,0x07,0x06,0x23,0x22,0x26,0x27,0x37,0x33,0x06,
23700
+0x16,0x33,0x32,0x37,0x36,0x3f,0x01,0x0e,0x01,0x23,0x22,0x27,
23701
+0x26,0x27,0x26,0x37,0x12,0x37,0x36,0x37,0x36,0x07,0x26,0x23,
23702
+0x22,0x07,0x06,0x03,0x06,0x17,0x16,0x17,0x16,0x33,0x32,0x36,
23703
+0x3f,0x01,0x04,0xc7,0xcb,0x2e,0x94,0xa1,0xdf,0x69,0xb8,0x51,
23704
+0x2c,0x60,0x03,0x74,0x7d,0xa2,0x5d,0x5d,0x26,0x1c,0x49,0xba,
23705
+0x75,0xb0,0x59,0x38,0x06,0x04,0x0e,0x45,0xf5,0xd1,0xf4,0xe0,
23706
+0x8f,0x01,0x6c,0xc3,0x93,0x93,0x36,0x0f,0x04,0x04,0x19,0x31,
23707
+0x80,0x8c,0xba,0x25,0x14,0x04,0x27,0xfb,0xf0,0xee,0x73,0x7d,
23708
+0x26,0x26,0xdf,0x68,0x60,0x5c,0x5a,0xc5,0x8f,0x64,0x5f,0x77,
23709
+0x4b,0x68,0x3d,0x48,0x01,0x61,0xb6,0x9a,0x01,0x01,0x89,0x22,
23710
+0x96,0x97,0xfe,0xee,0x51,0x3d,0x3e,0x2a,0x53,0xc9,0xc0,0x69,
23711
+0x00,0x02,0x00,0x67,0x00,0x00,0x02,0x29,0x05,0xe3,0x00,0x10,
23712
+0x00,0x18,0x00,0x00,0x01,0x3e,0x01,0x33,0x32,0x17,0x16,0x15,
23713
+0x14,0x07,0x0e,0x01,0x22,0x27,0x26,0x35,0x34,0x03,0x33,0x07,
23714
+0x21,0x13,0x23,0x37,0x21,0x01,0x43,0x09,0x50,0x2f,0x2e,0x1b,
23715
+0x15,0x03,0x09,0x4f,0x5e,0x1b,0x14,0x0d,0xae,0x14,0xfe,0x9a,
23716
+0xb9,0xb0,0x15,0x01,0x68,0x05,0x71,0x2e,0x44,0x22,0x1a,0x20,
23717
+0x0b,0x0b,0x2f,0x42,0x21,0x19,0x20,0x0b,0xfb,0x05,0x6a,0x03,
23718
+0xbc,0x6b,0x00,0x00,0x00,0x02,0xfe,0x89,0xfe,0x39,0x02,0x5b,
23719
+0x05,0xe3,0x00,0x11,0x00,0x27,0x00,0x00,0x01,0x3e,0x01,0x33,
23720
+0x32,0x17,0x16,0x15,0x14,0x07,0x0e,0x01,0x23,0x22,0x27,0x26,
23721
+0x35,0x34,0x03,0x23,0x37,0x21,0x03,0x0e,0x01,0x23,0x22,0x26,
23722
+0x27,0x37,0x33,0x06,0x15,0x14,0x17,0x16,0x33,0x32,0x36,0x37,
23723
+0x01,0x76,0x08,0x51,0x2f,0x2e,0x1b,0x14,0x02,0x0a,0x4d,0x30,
23724
+0x2f,0x1c,0x14,0x25,0xae,0x14,0x01,0x66,0xe2,0x20,0xe8,0xab,
23725
+0x48,0x7c,0x38,0x2b,0x5f,0x03,0x19,0x22,0x52,0x5b,0x6e,0x1a,
23726
+0x05,0x71,0x2e,0x44,0x22,0x1a,0x20,0x0b,0x0b,0x2f,0x42,0x21,
23727
+0x19,0x20,0x0b,0xfe,0x57,0x6b,0xfb,0x71,0xa4,0xbb,0x21,0x21,
23728
+0xdb,0x19,0x15,0x3e,0x21,0x2d,0x7b,0x81,0x00,0x01,0x00,0x54,
23729
+0x00,0x00,0x04,0x65,0x06,0x14,0x00,0x12,0x00,0x00,0x09,0x01,
23730
+0x33,0x07,0x21,0x01,0x07,0x03,0x23,0x01,0x23,0x37,0x21,0x03,
23731
+0x01,0x23,0x37,0x21,0x07,0x02,0xa4,0x01,0x27,0x99,0x14,0xfe,
23732
+0xd9,0xfe,0xde,0xab,0x4f,0xb8,0x01,0x1a,0xb1,0x14,0x01,0x69,
23733
+0xc5,0x02,0x11,0x99,0x14,0x01,0x2b,0x14,0x02,0x98,0xfd,0xd2,
23734
+0x6a,0x02,0x1f,0x87,0xfe,0x68,0x05,0xaa,0x6a,0xfc,0x0b,0x01,
23735
+0x9d,0x6b,0x6b,0x00,0x00,0x01,0x00,0x54,0x00,0x00,0x02,0x3c,
23736
+0x06,0x14,0x00,0x07,0x00,0x00,0x25,0x33,0x07,0x21,0x01,0x23,
23737
+0x37,0x21,0x01,0x21,0xae,0x14,0xfe,0x9a,0x01,0x1a,0xb1,0x14,
23738
+0x01,0x69,0x6a,0x6a,0x05,0xaa,0x6a,0x00,0x00,0x01,0x00,0x8f,
23739
+0x00,0x00,0x07,0x09,0x04,0x44,0x00,0x2f,0x00,0x00,0x01,0x3e,
23740
+0x01,0x33,0x32,0x17,0x16,0x15,0x14,0x07,0x03,0x33,0x07,0x21,
23741
+0x13,0x36,0x35,0x34,0x27,0x26,0x23,0x22,0x06,0x07,0x03,0x23,
23742
+0x13,0x36,0x35,0x34,0x27,0x26,0x23,0x22,0x06,0x07,0x03,0x23,
23743
+0x13,0x23,0x37,0x21,0x07,0x3e,0x01,0x33,0x32,0x16,0x04,0x61,
23744
+0x4c,0xbc,0x6e,0xa7,0x3e,0x25,0x10,0x6f,0xa6,0x14,0xfe,0xa2,
23745
+0x7f,0x0f,0x12,0x22,0x6f,0x7b,0xa5,0x23,0x73,0xb8,0x81,0x0e,
23746
+0x12,0x23,0x6f,0x7b,0xa5,0x23,0x73,0xb8,0xba,0xb0,0x14,0x01,
23747
+0x68,0x24,0x47,0xb4,0x64,0x7c,0x8e,0x03,0x58,0x75,0x77,0x68,
23748
+0x3e,0x65,0x42,0x53,0xfd,0xc6,0x6a,0x02,0x8f,0x4e,0x38,0x3e,
23749
+0x24,0x45,0xba,0xb2,0xfd,0xb0,0x02,0x96,0x4b,0x36,0x3e,0x23,
23750
+0x44,0xba,0xb2,0xfd,0xb0,0x03,0xbe,0x69,0xbd,0x6a,0x70,0x7b,
23751
+0x00,0x01,0x00,0x8f,0x00,0x00,0x04,0x99,0x04,0x44,0x00,0x1d,
23752
+0x00,0x00,0x33,0x13,0x23,0x37,0x21,0x07,0x3e,0x01,0x33,0x32,
23753
+0x17,0x16,0x15,0x14,0x07,0x03,0x33,0x07,0x21,0x13,0x36,0x35,
23754
+0x34,0x27,0x26,0x23,0x22,0x06,0x07,0x03,0x90,0xba,0xb0,0x14,
23755
+0x01,0x68,0x24,0x48,0xb8,0x6c,0xb0,0x40,0x26,0x11,0x6f,0xa4,
23756
+0x14,0xfe,0xa3,0x78,0x14,0x10,0x22,0x79,0x80,0xaa,0x23,0x73,
23757
+0x03,0xbc,0x6b,0xbd,0x6c,0x6e,0x65,0x3d,0x66,0x43,0x55,0xfd,
23758
+0xc6,0x6a,0x02,0x6a,0x67,0x45,0x3d,0x23,0x48,0xbb,0xb3,0xfd,
23759
+0xb0,0x00,0x00,0x00,0x00,0x02,0x00,0x56,0xff,0xe3,0x04,0x7a,
23760
+0x04,0x44,0x00,0x10,0x00,0x21,0x00,0x00,0x25,0x32,0x36,0x37,
23761
+0x36,0x35,0x34,0x27,0x26,0x20,0x06,0x07,0x06,0x15,0x14,0x17,
23762
+0x16,0x17,0x22,0x27,0x26,0x35,0x34,0x37,0x36,0x00,0x20,0x17,
23763
+0x16,0x15,0x14,0x07,0x06,0x00,0x02,0x0e,0x94,0xc5,0x2c,0x14,
23764
+0x1c,0x35,0xfe,0xd8,0xc5,0x2c,0x14,0x1d,0x35,0x80,0xe8,0x6f,
23765
+0x4d,0x0f,0x31,0x01,0x55,0x01,0xd2,0x6f,0x4c,0x0f,0x31,0xfe,
23766
+0xab,0x46,0xea,0xe4,0x68,0x51,0x60,0x3f,0x75,0xe9,0xe4,0x68,
23767
+0x50,0x61,0x40,0x75,0x63,0x99,0x6b,0x9a,0x45,0x4e,0xfe,0x01,
23768
+0x32,0x99,0x6a,0x9a,0x45,0x4e,0xfe,0xfe,0xcd,0x00,0x00,0x00,
23769
+0x00,0x02,0x00,0x58,0xfe,0x56,0x04,0xf0,0x04,0x44,0x00,0x12,
23770
+0x00,0x28,0x00,0x00,0x01,0x07,0x06,0x15,0x14,0x17,0x16,0x33,
23771
+0x32,0x36,0x37,0x36,0x35,0x34,0x27,0x26,0x23,0x22,0x06,0x27,
23772
+0x23,0x37,0x21,0x07,0x3e,0x01,0x33,0x32,0x17,0x16,0x15,0x14,
23773
+0x07,0x06,0x00,0x23,0x22,0x26,0x27,0x03,0x23,0x01,0xd5,0x15,
23774
+0x0f,0x20,0x36,0x8c,0x8d,0xbd,0x2b,0x13,0x1b,0x33,0x8d,0x8c,
23775
+0xba,0x95,0xb1,0x15,0x01,0x69,0x20,0x49,0xba,0x7b,0xc4,0x5d,
23776
+0x3e,0x10,0x31,0xfe,0xcc,0xc4,0x7b,0x95,0x22,0x74,0xb8,0x02,
23777
+0x48,0x69,0x4f,0x3f,0x5b,0x3c,0x64,0xe2,0xdc,0x65,0x4f,0x5c,
23778
+0x3d,0x70,0xca,0xb5,0x6b,0xa6,0x64,0x5f,0x9b,0x66,0x8f,0x4b,
23779
+0x55,0xfa,0xfe,0xc9,0x5f,0x64,0xfd,0xb0,0x00,0x02,0x00,0xb8,
23780
+0xfe,0x56,0x04,0xc1,0x04,0x44,0x00,0x14,0x00,0x24,0x00,0x00,
23781
+0x25,0x06,0x07,0x06,0x23,0x22,0x27,0x26,0x27,0x26,0x37,0x12,
23782
+0x37,0x36,0x37,0x36,0x17,0x01,0x33,0x07,0x21,0x13,0x22,0x07,
23783
+0x06,0x03,0x06,0x17,0x16,0x17,0x16,0x33,0x32,0x36,0x37,0x13,
23784
+0x36,0x03,0x5b,0x45,0x54,0x54,0x6f,0xb0,0x59,0x38,0x06,0x04,
23785
+0x0e,0x45,0xf5,0xd1,0xf5,0xc2,0x3d,0xfe,0xf3,0xb1,0x15,0xfe,
23786
+0x97,0xbe,0xc0,0x95,0x94,0x36,0x0f,0x04,0x04,0x19,0x31,0x80,
23787
+0x7e,0xab,0x25,0x5e,0x01,0xa6,0x64,0x30,0x2f,0x77,0x4b,0x68,
23788
+0x3d,0x48,0x01,0x61,0xb6,0x9a,0x01,0x01,0x1e,0xfa,0x99,0x6a,
23789
+0x05,0x88,0x96,0x97,0xfe,0xee,0x51,0x3d,0x3e,0x2a,0x53,0xc9,
23790
+0xc0,0x01,0xe2,0x1d,0x00,0x01,0x00,0x8f,0x00,0x00,0x04,0x38,
23791
+0x04,0x44,0x00,0x17,0x00,0x00,0x01,0x03,0x23,0x36,0x35,0x34,
23792
+0x27,0x26,0x23,0x22,0x06,0x07,0x03,0x23,0x13,0x23,0x37,0x21,
23793
+0x07,0x3e,0x01,0x33,0x32,0x16,0x04,0x38,0x34,0x6a,0x03,0x18,
23794
+0x1f,0x4b,0x88,0xb6,0x22,0x73,0xb8,0xba,0xb0,0x14,0x01,0x68,
23795
+0x24,0x4b,0xbf,0x7a,0x2d,0x60,0x04,0x29,0xfe,0xf6,0x14,0x11,
23796
+0x34,0x1d,0x27,0xbc,0xb0,0xfd,0xb0,0x03,0xbe,0x69,0xbd,0x6f,
23797
+0x6b,0x0e,0x00,0x00,0x00,0x01,0x00,0x17,0xff,0xe3,0x03,0xd5,
23798
+0x04,0x44,0x00,0x2f,0x00,0x00,0x13,0x33,0x06,0x15,0x14,0x33,
23799
+0x32,0x37,0x36,0x35,0x34,0x26,0x2f,0x01,0x2e,0x01,0x35,0x34,
23800
+0x37,0x3e,0x01,0x33,0x32,0x17,0x07,0x23,0x36,0x35,0x34,0x26,
23801
+0x23,0x22,0x07,0x06,0x15,0x14,0x16,0x1f,0x01,0x16,0x17,0x16,
23802
+0x15,0x14,0x07,0x06,0x20,0x27,0x47,0x6a,0x04,0xf7,0xf8,0x24,
23803
+0x03,0x44,0x8f,0x7d,0x80,0x53,0x05,0x1d,0xf6,0xb2,0xb1,0xba,
23804
+0x2d,0x6a,0x04,0x65,0x75,0xeb,0x20,0x04,0x41,0x7f,0x89,0x8e,
23805
+0x35,0x25,0xa8,0x84,0xfe,0x6c,0xb3,0x01,0x33,0x1d,0x1a,0xb6,
23806
+0xb6,0x12,0x20,0x1f,0x4b,0x31,0x2d,0x2c,0x71,0x41,0x1a,0x1e,
23807
+0x92,0xa6,0x56,0xe8,0x17,0x14,0x49,0x67,0xa4,0x11,0x1e,0x1f,
23808
+0x46,0x2a,0x2d,0x2f,0x47,0x32,0x31,0xd2,0x6d,0x57,0x58,0x00,
23809
+0x00,0x01,0x00,0x70,0xff,0xe3,0x03,0x3b,0x05,0x71,0x00,0x1d,
23810
+0x00,0x00,0x01,0x23,0x37,0x33,0x13,0x33,0x03,0x21,0x07,0x21,
23811
+0x03,0x06,0x15,0x14,0x17,0x16,0x33,0x32,0x36,0x37,0x33,0x0e,
23812
+0x01,0x23,0x22,0x27,0x26,0x35,0x34,0x37,0x01,0x12,0xa2,0x15,
23813
+0xa2,0x40,0xb9,0x40,0x01,0x5a,0x15,0xfe,0xa6,0x83,0x0f,0x07,
23814
+0x13,0x46,0x48,0x53,0x14,0x8b,0x24,0xa8,0x91,0x9f,0x35,0x20,
23815
+0x0d,0x03,0xbc,0x6b,0x01,0x4a,0xfe,0xb6,0x6b,0xfd,0x5d,0x4f,
23816
+0x2e,0x20,0x10,0x26,0x55,0x5f,0x91,0x86,0x47,0x2b,0x50,0x33,
23817
+0x41,0x00,0x00,0x00,0x00,0x01,0x00,0x8c,0xff,0xe3,0x04,0x98,
23818
+0x04,0x27,0x00,0x1d,0x00,0x00,0x01,0x33,0x03,0x33,0x07,0x21,
23819
+0x37,0x0e,0x01,0x23,0x22,0x27,0x26,0x35,0x34,0x37,0x13,0x23,
23820
+0x37,0x21,0x03,0x06,0x15,0x14,0x17,0x16,0x33,0x32,0x36,0x37,
23821
+0x03,0xdf,0xb8,0xba,0xae,0x14,0xfe,0x9a,0x24,0x48,0xb7,0x6b,
23822
+0xb1,0x40,0x27,0x11,0x6e,0xa6,0x15,0x01,0x5f,0x78,0x14,0x10,
23823
+0x21,0x7a,0x80,0xab,0x22,0x04,0x27,0xfc,0x43,0x6a,0xbc,0x6a,
23824
+0x6f,0x65,0x3c,0x67,0x43,0x55,0x02,0x39,0x6b,0xfd,0x95,0x67,
23825
+0x44,0x3d,0x22,0x48,0xbc,0xb3,0x00,0x00,0x00,0x01,0x00,0x4d,
23826
+0x00,0x00,0x04,0x6f,0x04,0x27,0x00,0x10,0x00,0x00,0x21,0x23,
23827
+0x03,0x23,0x37,0x21,0x13,0x36,0x37,0x12,0x37,0x23,0x37,0x21,
23828
+0x02,0x07,0x06,0x02,0x1a,0x87,0xcd,0x79,0x14,0x01,0x13,0xb4,
23829
+0x73,0x4d,0xa0,0x39,0x7a,0x15,0x01,0x13,0x6d,0x8a,0x78,0x03,
23830
+0xbc,0x6b,0xfc,0xba,0x64,0x7f,0x01,0x08,0xf0,0x6b,0xfe,0x64,
23831
+0xe7,0xc8,0x00,0x00,0x00,0x01,0x00,0x73,0x00,0x00,0x06,0xb0,
23832
+0x04,0x27,0x00,0x18,0x00,0x00,0x25,0x36,0x37,0x36,0x13,0x07,
23833
+0x37,0x21,0x07,0x23,0x02,0x07,0x06,0x07,0x23,0x03,0x01,0x23,
23834
+0x03,0x07,0x37,0x21,0x13,0x01,0x33,0x04,0xad,0x85,0x1e,0x6e,
23835
+0x6c,0x9b,0x15,0x01,0x0b,0x15,0x01,0x66,0x61,0x8f,0x9d,0x99,
23836
+0x6d,0xfe,0x5f,0x93,0x81,0x78,0x15,0x01,0x12,0x70,0x01,0xb3,
23837
+0x81,0xe9,0x90,0x35,0xc8,0x01,0x46,0x01,0x6c,0x6c,0xfe,0x8d,
23838
+0xb3,0xff,0x96,0x03,0x1b,0xfc,0xe5,0x03,0xbc,0x02,0x6d,0xfc,
23839
+0xc2,0x03,0x3e,0x00,0x00,0x01,0x00,0x05,0x00,0x00,0x04,0x66,
23840
+0x04,0x27,0x00,0x0f,0x00,0x00,0x33,0x23,0x01,0x03,0x23,0x37,
23841
+0x21,0x13,0x01,0x33,0x01,0x13,0x33,0x07,0x21,0x03,0x83,0x7d,
23842
+0x01,0xd5,0xec,0x83,0x14,0x01,0x0e,0xdd,0x01,0x7d,0x7d,0xfe,
23843
+0x34,0xf3,0x8b,0x14,0xfe,0xe9,0xe2,0x01,0xfe,0x01,0xbe,0x6b,
23844
+0xfe,0x62,0x01,0x9e,0xfe,0x0c,0xfe,0x37,0x6a,0x01,0xa8,0x00,
23845
+0x00,0x01,0xff,0xb4,0xfe,0x39,0x04,0x9a,0x04,0x27,0x00,0x1e,
23846
+0x00,0x00,0x01,0x02,0x03,0x02,0x07,0x06,0x23,0x22,0x26,0x27,
23847
+0x37,0x33,0x06,0x15,0x14,0x17,0x16,0x33,0x32,0x37,0x03,0x23,
23848
+0x37,0x21,0x13,0x36,0x37,0x12,0x13,0x23,0x37,0x04,0x9a,0x63,
23849
+0xae,0xff,0xcd,0x5b,0xf0,0x2f,0x5f,0x30,0x28,0x5e,0x02,0x12,
23850
+0x19,0x41,0xb0,0x99,0xfb,0x79,0x15,0x01,0x13,0xec,0xa1,0x27,
23851
+0x7e,0x19,0x79,0x15,0x04,0x1e,0xfd,0xc4,0xfe,0xd2,0xfe,0x45,
23852
+0x85,0x3b,0x10,0x0f,0xcb,0x10,0x0f,0x2a,0x18,0x22,0x99,0x04,
23853
+0x83,0x6b,0xfb,0xe1,0xf1,0x63,0x01,0x37,0x01,0x20,0x6b,0x00,
23854
+0x00,0x01,0xff,0xea,0xff,0xcc,0x04,0x41,0x04,0x5b,0x00,0x27,
23855
+0x00,0x00,0x01,0x32,0x37,0x33,0x07,0x01,0x16,0x17,0x16,0x1f,
23856
+0x01,0x16,0x33,0x32,0x37,0x07,0x06,0x23,0x2e,0x01,0x23,0x22,
23857
+0x07,0x23,0x37,0x01,0x26,0x27,0x26,0x2f,0x01,0x26,0x23,0x22,
23858
+0x07,0x37,0x36,0x33,0x1e,0x01,0x03,0x2f,0x6c,0x69,0x3c,0x10,
23859
+0xfd,0x29,0x0a,0x1d,0x22,0x22,0x31,0x5e,0x44,0x83,0x9a,0x18,
23860
+0xab,0x82,0x4f,0xde,0x46,0x6c,0x69,0x3c,0x10,0x02,0xd8,0x0b,
23861
+0x1d,0x22,0x22,0x31,0x5e,0x44,0x83,0x9a,0x18,0xab,0x82,0x4f,
23862
+0xde,0x03,0xcf,0x58,0x56,0xfd,0x0a,0x03,0x09,0x0b,0x16,0x1e,
23863
+0x39,0x96,0x79,0xa8,0x02,0x8a,0x58,0x56,0x02,0xf5,0x04,0x09,
23864
+0x0b,0x16,0x1e,0x39,0x96,0x79,0xa8,0x02,0x8a,0x00,0x00,0x00,
23865
+0x00,0x03,0xff,0xf0,0x00,0x00,0x06,0x4c,0x05,0xd5,0x00,0x0f,
23866
+0x00,0x12,0x00,0x17,0x00,0x00,0x23,0x35,0x33,0x01,0x33,0x01,
23867
+0x33,0x15,0x21,0x35,0x33,0x03,0x21,0x03,0x33,0x15,0x03,0x21,
23868
+0x03,0x37,0x01,0x33,0x01,0x23,0x10,0x7a,0x02,0x32,0xef,0x02,
23869
+0x33,0x8e,0xfd,0x45,0x92,0x7b,0xfd,0xcf,0x7d,0xb2,0x04,0x01,
23870
+0xcf,0xe6,0x3c,0x01,0xd8,0x96,0xfd,0xff,0x4d,0x79,0x05,0x5c,
23871
+0xfa,0xa4,0x79,0x79,0x01,0x31,0xfe,0xcf,0x79,0x02,0x23,0x02,
23872
+0x3b,0xaf,0xfb,0x6c,0x04,0xe3,0x00,0x00,0x00,0x06,0x00,0x60,
23873
+0x00,0x00,0x06,0x52,0x05,0xd5,0x00,0x12,0x00,0x1b,0x00,0x24,
23874
+0x00,0x28,0x00,0x3a,0x00,0x48,0x00,0x00,0x33,0x35,0x33,0x11,
23875
+0x23,0x35,0x21,0x20,0x04,0x15,0x14,0x06,0x07,0x1e,0x01,0x15,
23876
+0x14,0x04,0x21,0x03,0x33,0x32,0x36,0x35,0x34,0x26,0x2b,0x01,
23877
+0x11,0x33,0x32,0x36,0x35,0x34,0x26,0x2b,0x01,0x03,0x11,0x23,
23878
+0x11,0x01,0x16,0x07,0x0e,0x01,0x07,0x06,0x07,0x36,0x37,0x3e,
23879
+0x03,0x35,0x34,0x27,0x26,0x03,0x36,0x37,0x36,0x35,0x34,0x27,
23880
+0x26,0x27,0x16,0x07,0x14,0x07,0x06,0x60,0xbf,0xbf,0x03,0x75,
23881
+0x01,0x11,0x01,0x12,0xbd,0xba,0xe1,0xf0,0xfe,0xb1,0xfe,0x9b,
23882
+0xfe,0x83,0xac,0xa6,0xa1,0xb1,0x83,0x8f,0xbf,0xb8,0xba,0xbd,
23883
+0x8f,0x79,0x8f,0x03,0x48,0x42,0x03,0x02,0x10,0x19,0x15,0x1d,
23884
+0x69,0x3f,0x17,0x23,0x22,0x13,0x4c,0x3f,0x86,0x57,0x2d,0x33,
23885
+0x53,0x33,0x51,0x47,0x01,0x05,0x08,0x79,0x04,0xe3,0x79,0xb8,
23886
+0xb9,0x85,0x9c,0x14,0x15,0xc6,0xa4,0xde,0xd2,0x03,0x66,0x7d,
23887
+0x81,0x82,0x76,0xfb,0x1d,0x98,0x9f,0xa0,0x9e,0xfd,0x8b,0x04,
23888
+0xe3,0xfb,0x1d,0x02,0x2d,0x69,0x8d,0x43,0x5a,0x35,0x2a,0x22,
23889
+0x16,0x28,0x0e,0x21,0x34,0x4d,0x30,0x6b,0x3f,0x34,0x01,0x27,
23890
+0x14,0x25,0x2a,0x4c,0x79,0x38,0x21,0x12,0x5a,0x8a,0x24,0x1e,
23891
+0x3b,0x00,0x00,0x00,0x00,0x04,0x00,0x60,0x00,0x00,0x06,0x9a,
23892
+0x05,0xd5,0x00,0x08,0x00,0x15,0x00,0x19,0x00,0x27,0x00,0x00,
23893
+0x25,0x33,0x32,0x12,0x11,0x10,0x02,0x2b,0x01,0x01,0x35,0x33,
23894
+0x11,0x23,0x35,0x21,0x20,0x00,0x11,0x10,0x00,0x21,0x25,0x11,
23895
+0x23,0x11,0x01,0x17,0x16,0x11,0x10,0x0f,0x01,0x36,0x37,0x36,
23896
+0x11,0x10,0x27,0x26,0x02,0xa0,0x8b,0xea,0xd9,0xd8,0xeb,0x8b,
23897
+0xfd,0xc0,0xbf,0xbf,0x02,0xfe,0x01,0x92,0x01,0xaa,0xfe,0x55,
23898
+0xfe,0x6f,0xfe,0xc9,0x8f,0x03,0x42,0x0a,0x83,0x83,0x0b,0x59,
23899
+0x41,0xae,0xad,0x42,0x79,0x01,0x2c,0x01,0x47,0x01,0x45,0x01,
23900
+0x2b,0xfa,0xa4,0x79,0x04,0xe3,0x79,0xfe,0x80,0xfe,0x97,0xfe,
23901
+0x95,0xfe,0x7f,0x79,0x04,0xe3,0xfb,0x1d,0x04,0xa2,0x0e,0xb5,
23902
+0xfe,0x94,0xfe,0x92,0xb6,0x0e,0x25,0x3b,0x9d,0x01,0x35,0x01,
23903
+0x33,0x9c,0x3b,0x00,0x00,0x02,0x00,0x60,0x00,0x00,0x05,0xb0,
23904
+0x05,0xd5,0x00,0x17,0x00,0x1b,0x00,0x00,0x33,0x35,0x33,0x11,
23905
+0x23,0x35,0x21,0x11,0x23,0x35,0x21,0x11,0x21,0x35,0x33,0x11,
23906
+0x23,0x35,0x21,0x11,0x21,0x35,0x33,0x11,0x01,0x11,0x33,0x11,
23907
+0x60,0xbf,0xbf,0x05,0x3e,0x8a,0xfd,0x8c,0x01,0x87,0x89,0x89,
23908
+0xfe,0x79,0x02,0x87,0x89,0xfb,0xe8,0x8f,0x79,0x04,0xe3,0x79,
23909
+0xfe,0xa0,0xd7,0xfe,0x21,0xbe,0xfd,0xfc,0xbe,0xfd,0xa4,0xd7,
23910
+0xfe,0xa0,0x05,0x5c,0xfb,0x1d,0x04,0xe3,0x00,0x02,0x00,0x60,
23911
+0x00,0x00,0x05,0x93,0x05,0xd5,0x00,0x15,0x00,0x19,0x00,0x00,
23912
+0x33,0x35,0x33,0x11,0x23,0x35,0x21,0x11,0x23,0x35,0x21,0x11,
23913
+0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x11,0x33,0x15,0x01,0x11,
23914
+0x33,0x11,0x60,0xbf,0xbf,0x05,0x33,0x89,0xfd,0x98,0x01,0x7b,
23915
+0x89,0x89,0xfe,0x85,0xeb,0xfe,0x0b,0x91,0x79,0x04,0xe3,0x79,
23916
+0xfe,0xa0,0xd7,0xfe,0x21,0xbe,0xfd,0xfc,0xbe,0xfd,0x94,0x79,
23917
+0x05,0x5c,0xfb,0x1d,0x04,0xe3,0x00,0x00,0x00,0x03,0x00,0x56,
23918
+0xff,0xe3,0x06,0x33,0x05,0xf0,0x00,0x1e,0x00,0x24,0x00,0x32,
23919
+0x00,0x00,0x01,0x2e,0x01,0x23,0x22,0x02,0x11,0x10,0x12,0x33,
23920
+0x32,0x36,0x37,0x11,0x23,0x35,0x21,0x11,0x06,0x04,0x23,0x20,
23921
+0x00,0x11,0x10,0x00,0x21,0x32,0x04,0x17,0x11,0x03,0x11,0x15,
23922
+0x36,0x37,0x11,0x01,0x27,0x26,0x11,0x10,0x3f,0x01,0x06,0x07,
23923
+0x06,0x11,0x10,0x17,0x16,0x05,0x81,0x2d,0xd2,0xbf,0xe8,0xd9,
23924
+0xd0,0xdc,0x54,0x90,0x3b,0xb4,0x02,0x1a,0xa8,0xfe,0xb1,0xaf,
23925
+0xfe,0x80,0xfe,0x49,0x01,0xb7,0x01,0x80,0xa0,0x01,0x36,0x9d,
23926
+0xba,0x3a,0x3a,0xfc,0x54,0x09,0x7c,0x82,0x0a,0x51,0x3f,0xb6,
23927
+0xb6,0x3d,0x04,0x00,0xc6,0xb1,0xfe,0xc5,0xfe,0xad,0xfe,0xb0,
23928
+0xfe,0xc3,0x26,0x26,0x01,0x9a,0x78,0xfd,0xc3,0x4e,0x4c,0x01,
23929
+0x9e,0x01,0x68,0x01,0x69,0x01,0x9e,0x40,0x41,0xfe,0x91,0xfe,
23930
+0x41,0xfe,0x67,0x07,0x13,0x18,0x01,0x75,0xfe,0x69,0x0e,0xbd,
23931
+0x01,0x74,0x01,0x79,0xbc,0x0e,0x27,0x3c,0xab,0xfe,0xcb,0xfe,
23932
+0xcc,0xab,0x3a,0x00,0x00,0x02,0x00,0x60,0x00,0x00,0x03,0x60,
23933
+0x05,0xd5,0x00,0x0b,0x00,0x0f,0x00,0x00,0x33,0x35,0x33,0x11,
23934
+0x23,0x35,0x21,0x15,0x23,0x11,0x33,0x15,0x01,0x11,0x33,0x11,
23935
+0x60,0xbf,0xbf,0x03,0x00,0xc0,0xc0,0xfe,0x38,0x8f,0x79,0x04,
23936
+0xe3,0x79,0x79,0xfb,0x1d,0x79,0x05,0x5c,0xfb,0x1d,0x04,0xe3,
23937
+0x00,0x02,0xff,0x6a,0xfe,0x56,0x03,0x7b,0x05,0xd5,0x00,0x14,
23938
+0x00,0x1d,0x00,0x00,0x03,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,
23939
+0x35,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x14,0x06,0x21,0x22,
23940
+0x26,0x01,0x11,0x14,0x07,0x36,0x37,0x36,0x35,0x11,0x96,0x82,
23941
+0x06,0x4d,0x4c,0x61,0x4d,0xd9,0x03,0x1b,0xbf,0xf5,0xfe,0xf5,
23942
+0x53,0xa8,0x01,0xf1,0x32,0x47,0x29,0x53,0xfe,0x9a,0xeb,0x5e,
23943
+0x58,0x95,0xcd,0x05,0x2b,0x79,0x79,0xfa,0xcd,0xf3,0xe0,0x22,
23944
+0x06,0xe4,0xfa,0xd5,0xe6,0x65,0x14,0x25,0x4c,0xbe,0x05,0x33,
23945
+0x00,0x03,0x00,0x60,0x00,0x00,0x07,0x33,0x05,0xd5,0x00,0x18,
23946
+0x00,0x1c,0x00,0x20,0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,
23947
+0x21,0x15,0x23,0x11,0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,
23948
+0x33,0x15,0x21,0x01,0x11,0x33,0x15,0x01,0x11,0x33,0x11,0x01,
23949
+0x07,0x01,0x33,0x60,0xbf,0xbf,0x03,0x00,0xc0,0x02,0x79,0xa0,
23950
+0x02,0x2d,0xc7,0xfd,0xe8,0x02,0xd9,0x93,0xfe,0x06,0xfd,0x67,
23951
+0xc0,0xfe,0x38,0x8f,0x01,0x3f,0x4d,0x02,0x55,0x8d,0x79,0x04,
23952
+0xe3,0x79,0x79,0xfd,0xdf,0x02,0x21,0x79,0x79,0xfe,0x33,0xfc,
23953
+0xea,0x79,0x02,0xd5,0xfd,0xa4,0x79,0x05,0x5c,0xfb,0x1d,0x04,
23954
+0xe3,0xfd,0xea,0x42,0xfd,0x75,0x00,0x00,0x00,0x02,0x00,0x60,
23955
+0x00,0x00,0x05,0x73,0x05,0xd5,0x00,0x0d,0x00,0x11,0x00,0x00,
23956
+0x33,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x23,0x11,0x21,0x35,
23957
+0x33,0x11,0x01,0x11,0x33,0x11,0x60,0xbf,0xbf,0x03,0x00,0xc0,
23958
+0x02,0x4c,0x87,0xfc,0x25,0x8f,0x79,0x04,0xe3,0x79,0x79,0xfb,
23959
+0x2d,0xec,0xfe,0x8b,0x05,0x5c,0xfb,0x1d,0x04,0xe3,0x00,0x00,
23960
+0x00,0x03,0x00,0x56,0x00,0x00,0x08,0x7b,0x05,0xd5,0x00,0x18,
23961
+0x00,0x1c,0x00,0x21,0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,
23962
+0x21,0x09,0x01,0x21,0x15,0x23,0x11,0x33,0x15,0x21,0x35,0x33,
23963
+0x11,0x01,0x23,0x01,0x11,0x33,0x15,0x01,0x23,0x11,0x33,0x25,
23964
+0x01,0x23,0x01,0x33,0x56,0xbe,0xbe,0x02,0x68,0x01,0xaa,0x01,
23965
+0xac,0x02,0x67,0xbf,0xbf,0xfd,0x00,0xbe,0xfe,0x31,0xfd,0xfe,
23966
+0x33,0xbe,0x04,0xe5,0x91,0x91,0xfc,0xe8,0xfe,0x44,0x7c,0x01,
23967
+0xc9,0x5f,0x79,0x04,0xe3,0x79,0xfc,0x42,0x03,0xbe,0x79,0xfb,
23968
+0x1d,0x79,0x79,0x04,0x73,0xfb,0xef,0x04,0x11,0xfb,0x8d,0x79,
23969
+0x05,0x5c,0xfb,0x1d,0xfe,0x03,0xe5,0xfb,0xf8,0x00,0x00,0x00,
23970
+0x00,0x08,0x00,0x56,0xff,0xe3,0x06,0xa0,0x05,0xf0,0x00,0x0b,
23971
+0x00,0x16,0x00,0x17,0x00,0x18,0x00,0x2a,0x00,0x41,0x00,0x42,
23972
+0x00,0x43,0x00,0x00,0x25,0x32,0x12,0x11,0x10,0x02,0x23,0x22,
23973
+0x02,0x11,0x10,0x12,0x17,0x20,0x00,0x10,0x00,0x21,0x20,0x00,
23974
+0x11,0x10,0x00,0x03,0x25,0x13,0x26,0x10,0x37,0x0e,0x06,0x14,
23975
+0x1e,0x05,0x05,0x3e,0x06,0x34,0x2e,0x05,0x27,0x32,0x1e,0x03,
23976
+0x15,0x10,0x05,0x25,0x03,0x7b,0xbf,0xba,0xba,0xbf,0xbe,0xbb,
23977
+0xbb,0xbe,0xfe,0x87,0xfe,0x54,0x01,0xad,0x01,0x78,0x01,0x79,
23978
+0x01,0xac,0xfe,0x53,0x01,0xfd,0x13,0x01,0x7d,0x7c,0x3b,0x61,
23979
+0x3f,0x2f,0x19,0x0f,0x04,0x04,0x0f,0x19,0x2f,0x40,0x60,0x03,
23980
+0x29,0x3b,0x60,0x3f,0x2f,0x18,0x0f,0x04,0x04,0x0f,0x18,0x2f,
23981
+0x3f,0x60,0x3c,0x01,0x1d,0x21,0x25,0x17,0xfc,0x99,0x02,0xed,
23982
+0x5c,0x01,0x42,0x01,0x4b,0x01,0x4c,0x01,0x42,0xfe,0xbb,0xfe,
23983
+0xb7,0xfe,0xb8,0xfe,0xbb,0x79,0x01,0x9c,0x02,0xd4,0x01,0x9d,
23984
+0xfe,0x64,0xfe,0x95,0xfe,0x96,0xfe,0x64,0x05,0x45,0x01,0xfb,
23985
+0x80,0xc0,0x03,0x00,0xc0,0x1f,0x52,0x53,0x64,0x54,0x60,0x41,
23986
+0x46,0x42,0x5f,0x55,0x63,0x54,0x51,0x1d,0x1f,0x52,0x53,0x63,
23987
+0x55,0x5f,0x40,0x46,0x40,0x60,0x55,0x63,0x54,0x52,0x1e,0x31,
23988
+0x50,0x7c,0xca,0x78,0xfe,0x80,0xc0,0x02,0x00,0x02,0x00,0x87,
23989
+0xff,0xe3,0x05,0x4c,0x05,0xf0,0x00,0x29,0x00,0x48,0x00,0x00,
23990
+0x37,0x11,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x34,0x26,0x2f,
23991
+0x01,0x2e,0x01,0x35,0x34,0x24,0x21,0x32,0x04,0x17,0x11,0x23,
23992
+0x2e,0x01,0x23,0x22,0x06,0x15,0x14,0x16,0x1f,0x01,0x1e,0x01,
23993
+0x15,0x14,0x04,0x21,0x22,0x24,0x13,0x06,0x15,0x14,0x17,0x16,
23994
+0x1f,0x01,0x16,0x17,0x16,0x15,0x14,0x07,0x36,0x35,0x34,0x27,
23995
+0x26,0x2f,0x01,0x2e,0x05,0x27,0x26,0x35,0x34,0x9e,0x7f,0x1d,
23996
+0xd8,0xbf,0x9b,0xa2,0x6e,0xac,0xe0,0xdb,0xb2,0x01,0x27,0x01,
23997
+0x0a,0x83,0x01,0x1b,0x98,0x7f,0x1d,0xc4,0xb5,0x94,0x97,0x68,
23998
+0xcb,0xe0,0xd0,0xbb,0xfe,0xc8,0xfe,0xd1,0x92,0xfe,0xe0,0x07,
23999
+0x3a,0x3a,0x41,0xb6,0xe0,0xc7,0x50,0x5f,0x17,0x63,0x41,0x44,
24000
+0xaa,0xe0,0x3b,0x60,0x3c,0x31,0x16,0x15,0x02,0x5a,0x48,0x01,
24001
+0x62,0xa8,0xa6,0x76,0x72,0x5a,0x64,0x2b,0x37,0x38,0xc7,0xb8,
24002
+0xde,0xf7,0x2c,0x2c,0xfe,0xb6,0x9a,0x8f,0x67,0x66,0x5d,0x61,
24003
+0x34,0x37,0x34,0xdc,0xc1,0xe2,0xeb,0x32,0x04,0xd2,0x4f,0x7d,
24004
+0x8a,0x41,0x48,0x2f,0x37,0x31,0x47,0x54,0x92,0x48,0x3c,0x50,
24005
+0xa0,0x95,0x4c,0x50,0x2b,0x37,0x0f,0x1e,0x19,0x18,0x10,0x10,
24006
+0x03,0x4f,0x97,0x20,0x00,0x02,0x00,0x17,0x00,0x00,0x05,0xdf,
24007
+0x05,0xd5,0x00,0x0f,0x00,0x13,0x00,0x00,0x21,0x35,0x33,0x11,
24008
+0x21,0x15,0x23,0x11,0x21,0x11,0x23,0x35,0x21,0x11,0x33,0x15,
24009
+0x01,0x11,0x33,0x11,0x01,0x73,0xc6,0xfe,0x67,0x89,0x05,0xc8,
24010
+0x87,0xfe,0x64,0xc7,0xfe,0x2f,0x91,0x79,0x04,0xd3,0xec,0x01,
24011
+0x75,0xfe,0x8b,0xec,0xfb,0x2d,0x79,0x05,0x5c,0xfb,0x1d,0x04,
24012
+0xe3,0x00,0x00,0x00,0x00,0x02,0x00,0x46,0xff,0xe3,0x06,0xcd,
24013
+0x05,0xd5,0x00,0x19,0x00,0x26,0x00,0x00,0x01,0x23,0x35,0x21,
24014
+0x15,0x23,0x11,0x10,0x16,0x33,0x32,0x36,0x19,0x01,0x23,0x35,
24015
+0x21,0x15,0x23,0x11,0x10,0x00,0x21,0x20,0x00,0x11,0x01,0x23,
24016
+0x11,0x10,0x17,0x16,0x17,0x2e,0x04,0x35,0x01,0x04,0xbe,0x03,
24017
+0x00,0xbf,0xae,0xd3,0xce,0xad,0xbe,0x02,0x08,0xbf,0xfe,0xd8,
24018
+0xfe,0xa3,0xfe,0xa5,0xfe,0xd6,0x01,0x0a,0x91,0x71,0x40,0x7c,
24019
+0x18,0x26,0x2c,0x1e,0x14,0x05,0x5c,0x79,0x79,0xfd,0x15,0xfe,
24020
+0xe9,0xdf,0xe1,0x01,0x15,0x02,0xeb,0x79,0x79,0xfd,0x00,0xfe,
24021
+0xaa,0xfe,0xdd,0x01,0x26,0x01,0x55,0x02,0xfe,0xfd,0x02,0xfe,
24022
+0xde,0x70,0x3f,0x1c,0x16,0x2f,0x56,0x68,0x9e,0x5f,0x00,0x00,
24023
+0x00,0x02,0xff,0xf4,0x00,0x00,0x06,0x52,0x05,0xd5,0x00,0x0e,
24024
+0x00,0x13,0x00,0x00,0x01,0x15,0x23,0x01,0x23,0x01,0x23,0x35,
24025
+0x21,0x15,0x23,0x09,0x01,0x23,0x35,0x05,0x01,0x33,0x37,0x01,
24026
+0x06,0x52,0x7d,0xfd,0xcd,0xee,0xfd,0xcd,0x8d,0x02,0xbc,0x91,
24027
+0x01,0x93,0x01,0x96,0xb2,0xfc,0x6e,0x02,0x01,0x4c,0x25,0xfe,
24028
+0x26,0x05,0xd5,0x79,0xfa,0xa4,0x05,0x5c,0x79,0x79,0xfc,0x23,
24029
+0x03,0xdd,0x79,0x79,0xfb,0x1d,0x5a,0x04,0x89,0x00,0x00,0x00,
24030
+0x00,0x03,0xff,0xee,0x00,0x00,0x09,0x14,0x05,0xd5,0x00,0x14,
24031
+0x00,0x19,0x00,0x1f,0x00,0x00,0x29,0x01,0x09,0x01,0x21,0x01,
24032
+0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x21,0x09,0x01,0x23,0x35,
24033
+0x21,0x15,0x23,0x21,0x01,0x33,0x37,0x01,0x05,0x01,0x33,0x37,
24034
+0x01,0x23,0x06,0xd1,0xfe,0xfe,0xfe,0xae,0xfe,0xae,0xfe,0xfe,
24035
+0xfe,0x56,0x91,0x02,0xc4,0xa0,0x01,0x1d,0x01,0x42,0x01,0x1c,
24036
+0x01,0x48,0x01,0x23,0xb2,0x01,0xce,0x99,0xf8,0x83,0x01,0x84,
24037
+0x50,0x23,0xfe,0x9e,0x03,0x24,0x01,0x71,0x50,0x20,0xfe,0x9c,
24038
+0x6a,0x04,0x3f,0xfb,0xc1,0x05,0x5c,0x79,0x79,0xfc,0x6b,0x04,
24039
+0x0e,0xfb,0xe1,0x03,0xa6,0x79,0x79,0xfb,0x1d,0x71,0x04,0x72,
24040
+0x3f,0xfb,0x5c,0x69,0x04,0x7a,0x00,0x00,0x00,0x02,0x00,0x0a,
24041
+0x00,0x00,0x06,0x33,0x05,0xd5,0x00,0x1b,0x00,0x1f,0x00,0x00,
24042
+0x09,0x01,0x33,0x15,0x21,0x35,0x33,0x09,0x01,0x23,0x35,0x21,
24043
+0x15,0x23,0x09,0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x33,
24044
+0x15,0x21,0x35,0x33,0x09,0x01,0x33,0x01,0x02,0xb6,0xfe,0xc9,
24045
+0xb8,0xfd,0xee,0xb8,0x01,0x89,0xfe,0x2d,0x89,0x02,0xe6,0xa4,
24046
+0x01,0x21,0x01,0x1e,0xae,0x02,0x08,0xb8,0xfe,0x8f,0x01,0xea,
24047
+0x8d,0xfd,0x17,0xa6,0xfd,0x36,0x03,0x5d,0x90,0xfc,0xa6,0x02,
24048
+0x3f,0xfe,0x3a,0x79,0x79,0x02,0x3b,0x02,0xa8,0x79,0x79,0xfe,
24049
+0x5c,0x01,0xa4,0x79,0x79,0xfd,0xe8,0xfd,0x35,0x79,0x79,0x04,
24050
+0xe3,0xfb,0x1d,0x04,0xe3,0x00,0x00,0x00,0x00,0x02,0xff,0xee,
24051
+0x00,0x00,0x05,0xc9,0x05,0xd5,0x00,0x14,0x00,0x1a,0x00,0x00,
24052
+0x21,0x35,0x33,0x11,0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x01,
24053
+0x23,0x35,0x21,0x15,0x23,0x01,0x11,0x33,0x15,0x09,0x01,0x11,
24054
+0x33,0x11,0x01,0x01,0x60,0xc9,0xfe,0x44,0x7f,0x02,0xcc,0xa6,
24055
+0x01,0x50,0x01,0x4e,0x95,0x01,0xac,0x7f,0xfe,0x62,0xc9,0xfc,
24056
+0x84,0x01,0xa9,0x91,0xfe,0x54,0x79,0x01,0xf1,0x02,0xf2,0x79,
24057
+0x79,0xfd,0xc7,0x02,0x39,0x79,0x79,0xfd,0x42,0xfd,0xdb,0x79,
24058
+0x05,0x5c,0xfd,0x2f,0xfd,0xee,0x02,0x0f,0x02,0xd4,0x00,0x00,
24059
+0x00,0x04,0x00,0x54,0xff,0xe3,0x05,0x00,0x04,0x44,0x00,0x1d,
24060
+0x00,0x27,0x00,0x31,0x00,0x3b,0x00,0x00,0x01,0x11,0x33,0x15,
24061
+0x21,0x35,0x0e,0x01,0x23,0x22,0x26,0x35,0x34,0x36,0x3b,0x01,
24062
+0x35,0x34,0x26,0x23,0x22,0x06,0x07,0x23,0x35,0x3e,0x01,0x33,
24063
+0x20,0x04,0x01,0x35,0x23,0x22,0x06,0x14,0x16,0x33,0x32,0x36,
24064
+0x13,0x11,0x33,0x11,0x34,0x2e,0x01,0x27,0x1e,0x01,0x01,0x26,
24065
+0x35,0x34,0x37,0x0e,0x01,0x15,0x14,0x16,0x04,0x68,0x98,0xfe,
24066
+0x06,0x46,0xac,0x6e,0xa3,0xaf,0xfb,0xfd,0xba,0x7a,0x80,0x6a,
24067
+0x73,0x18,0x71,0x5f,0xcc,0x71,0x01,0x1d,0x01,0x09,0xfe,0x9e,
24068
+0x85,0x63,0x6a,0x4d,0x4f,0x52,0x64,0x79,0x70,0x28,0x40,0x31,
24069
+0x19,0x10,0xfe,0x0c,0x50,0x29,0x4e,0x49,0x60,0x02,0x8d,0xfd,
24070
+0xec,0x79,0x87,0x54,0x50,0xaf,0xa3,0xb3,0xb2,0x3f,0x81,0x7b,
24071
+0x57,0x63,0xe5,0x22,0x22,0xd4,0xfd,0xde,0xd5,0x6c,0xca,0x64,
24072
+0x6c,0x01,0xe4,0xfd,0xa0,0x02,0x14,0x52,0x72,0x3c,0x14,0x33,
24073
+0x5e,0xfd,0x4d,0x55,0xa0,0x66,0x4b,0x19,0x60,0x55,0x6e,0x64,
24074
+0x00,0x04,0x00,0x2f,0xff,0xe3,0x05,0x46,0x06,0x14,0x00,0x13,
24075
+0x00,0x1f,0x00,0x23,0x00,0x37,0x00,0x00,0x37,0x11,0x23,0x35,
24076
+0x21,0x11,0x3e,0x01,0x33,0x32,0x00,0x10,0x00,0x23,0x22,0x26,
24077
+0x27,0x15,0x21,0x35,0x01,0x14,0x16,0x33,0x32,0x36,0x10,0x26,
24078
+0x23,0x22,0x06,0x15,0x03,0x11,0x23,0x11,0x01,0x1e,0x01,0x15,
24079
+0x14,0x06,0x07,0x3e,0x04,0x35,0x34,0x2e,0x05,0xc7,0x98,0x01,
24080
+0xfa,0x2d,0x98,0x70,0xe3,0x01,0x05,0xfe,0xfb,0xe3,0x70,0x98,
24081
+0x2d,0xfe,0x06,0x01,0xfa,0x5f,0x6a,0x6d,0x59,0x59,0x6d,0x6a,
24082
+0x5f,0x79,0x70,0x02,0x95,0x2c,0x30,0x30,0x2c,0x20,0x3b,0x47,
24083
+0x33,0x23,0x15,0x20,0x2f,0x2b,0x34,0x23,0x79,0x05,0x23,0x78,
24084
+0xfd,0x8c,0x53,0x51,0xfe,0xd5,0xfd,0xf6,0xfe,0xd4,0x51,0x53,
24085
+0x87,0x79,0x01,0x66,0xba,0xa6,0xb0,0x01,0xca,0xaf,0xa6,0xba,
24086
+0xfe,0x31,0x05,0x22,0xfa,0xde,0x03,0x43,0x35,0xbe,0xb5,0xb3,
24087
+0xc0,0x36,0x09,0x1f,0x41,0x59,0x8f,0x58,0x44,0x75,0x51,0x43,
24088
+0x28,0x20,0x0e,0x00,0x00,0x02,0x00,0x54,0xff,0xe3,0x04,0x83,
24089
+0x04,0x44,0x00,0x1a,0x00,0x26,0x00,0x00,0x01,0x0e,0x01,0x23,
24090
+0x20,0x00,0x11,0x10,0x00,0x21,0x32,0x16,0x17,0x11,0x23,0x2e,
24091
+0x01,0x23,0x22,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x37,0x01,
24092
+0x06,0x07,0x06,0x15,0x14,0x17,0x16,0x17,0x26,0x11,0x10,0x04,
24093
+0x83,0x26,0xeb,0xca,0xfe,0xe4,0xfe,0xc8,0x01,0x34,0x01,0x12,
24094
+0x6f,0xe2,0x75,0x70,0x10,0x7e,0x72,0x94,0x7d,0x7a,0x8a,0x6b,
24095
+0x81,0x0e,0xfd,0xd1,0x3e,0x2e,0x75,0x76,0x2e,0x3d,0x48,0x01,
24096
+0x4c,0xb6,0xb3,0x01,0x26,0x01,0x0b,0x01,0x08,0x01,0x28,0x2a,
24097
+0x2a,0xfe,0xd9,0x87,0x83,0xc8,0xf7,0xf1,0xcf,0x80,0x78,0x02,
24098
+0x54,0x1b,0x2c,0x71,0xd4,0xd7,0x6f,0x2b,0x1b,0x84,0x01,0x08,
24099
+0x01,0x0b,0x00,0x00,0x00,0x04,0x00,0x54,0xff,0xe3,0x05,0x68,
24100
+0x06,0x14,0x00,0x0b,0x00,0x20,0x00,0x24,0x00,0x33,0x00,0x00,
24101
+0x01,0x35,0x34,0x26,0x23,0x22,0x06,0x10,0x16,0x33,0x32,0x36,
24102
+0x05,0x33,0x15,0x21,0x35,0x0e,0x01,0x23,0x22,0x00,0x11,0x10,
24103
+0x00,0x33,0x32,0x16,0x17,0x11,0x23,0x35,0x21,0x07,0x11,0x33,
24104
+0x11,0x01,0x26,0x27,0x26,0x10,0x37,0x36,0x37,0x06,0x07,0x06,
24105
+0x15,0x14,0x17,0x16,0x03,0x6f,0x60,0x69,0x6e,0x59,0x5a,0x6d,
24106
+0x69,0x60,0x01,0x62,0x97,0xfe,0x07,0x2d,0x99,0x70,0xe2,0xfe,
24107
+0xfd,0x01,0x03,0xe2,0x70,0x99,0x2d,0x98,0x01,0xfa,0xe9,0x70,
24108
+0xfd,0x6b,0x14,0x0f,0x3a,0x3a,0x0e,0x14,0x57,0x3a,0x64,0x64,
24109
+0x3b,0x01,0xdf,0x69,0xba,0xa6,0xaf,0xfe,0x36,0xb0,0xa6,0xac,
24110
+0x79,0x87,0x53,0x51,0x01,0x2c,0x01,0x05,0x01,0x06,0x01,0x2a,
24111
+0x51,0x53,0x01,0xfc,0x78,0x79,0xfa,0xde,0x05,0x22,0xfa,0xd0,
24112
+0x18,0x1d,0x72,0x02,0x04,0x71,0x1d,0x18,0x19,0x43,0x73,0xd9,
24113
+0xd8,0x74,0x44,0x00,0x00,0x04,0x00,0x54,0xff,0xe3,0x04,0xba,
24114
+0x04,0x44,0x00,0x07,0x00,0x1c,0x00,0x25,0x00,0x2a,0x00,0x00,
24115
+0x01,0x34,0x26,0x23,0x22,0x06,0x1d,0x01,0x05,0x21,0x15,0x14,
24116
+0x16,0x33,0x32,0x36,0x37,0x33,0x06,0x04,0x23,0x20,0x00,0x11,
24117
+0x10,0x00,0x21,0x20,0x00,0x01,0x26,0x3d,0x01,0x34,0x37,0x06,
24118
+0x11,0x10,0x01,0x16,0x15,0x33,0x26,0x03,0x35,0x4e,0x5e,0x5b,
24119
+0x4f,0x02,0xdb,0xfd,0x25,0x7c,0x8a,0x73,0x8e,0x14,0xa6,0x2b,
24120
+0xff,0x00,0xe6,0xfe,0xec,0xfe,0xd9,0x01,0x2e,0x01,0x0d,0x01,
24121
+0x08,0x01,0x1a,0xfc,0xf8,0x43,0x25,0xbe,0x02,0xbd,0x24,0x88,
24122
+0x23,0x02,0x58,0xd2,0xa9,0xa6,0xc3,0x12,0x77,0x08,0xce,0xb7,
24123
+0x7a,0x74,0xb5,0xaa,0x01,0x23,0x01,0x0e,0x01,0x08,0x01,0x28,
24124
+0xfe,0xc9,0xfd,0x76,0x73,0xe3,0x91,0xc0,0x68,0x6a,0xfe,0xec,
24125
+0xfe,0xcc,0x02,0xad,0x68,0xcb,0xdc,0x00,0x00,0x02,0x00,0x3f,
24126
+0x00,0x00,0x03,0xdf,0x06,0x14,0x00,0x1c,0x00,0x24,0x00,0x00,
24127
+0x01,0x23,0x2e,0x01,0x23,0x22,0x06,0x1d,0x01,0x21,0x15,0x21,
24128
+0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x33,0x35,0x34,
24129
+0x36,0x33,0x32,0x16,0x17,0x05,0x0e,0x01,0x15,0x11,0x33,0x11,
24130
+0x34,0x03,0xdf,0x70,0x08,0x4b,0x45,0x50,0x48,0x01,0x0b,0xfe,
24131
+0xf5,0xcd,0xfd,0x3a,0x97,0x9e,0x9e,0xe2,0xdb,0x55,0xa2,0x4e,
24132
+0xfe,0x09,0x52,0x40,0x70,0x05,0x0a,0x4e,0x4c,0x73,0x81,0x89,
24133
+0x79,0xfc,0xcb,0x79,0x79,0x03,0x35,0x79,0x85,0xb1,0xb7,0x13,
24134
+0x13,0x6b,0x1b,0x6c,0x50,0xfb,0xcd,0x04,0x37,0x82,0x00,0x00,
24135
+0x00,0x04,0x00,0x54,0xfe,0x39,0x05,0x68,0x04,0x44,0x00,0x1f,
24136
+0x00,0x2b,0x00,0x32,0x00,0x41,0x00,0x00,0x01,0x11,0x14,0x04,
24137
+0x21,0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x3d,
24138
+0x01,0x0e,0x01,0x23,0x22,0x00,0x11,0x10,0x00,0x33,0x32,0x16,
24139
+0x17,0x35,0x21,0x15,0x01,0x34,0x26,0x23,0x22,0x06,0x10,0x16,
24140
+0x33,0x32,0x36,0x35,0x13,0x36,0x35,0x11,0x23,0x11,0x14,0x01,
24141
+0x06,0x07,0x06,0x15,0x14,0x17,0x16,0x17,0x26,0x27,0x26,0x10,
24142
+0x37,0x36,0x04,0xd1,0xfe,0xc1,0xfe,0xdd,0x6a,0xda,0x73,0x71,
24143
+0x0f,0x8b,0x81,0xa4,0x87,0x2d,0x99,0x70,0xe2,0xfe,0xfd,0x01,
24144
+0x03,0xe2,0x70,0x99,0x2d,0x01,0xf9,0xfe,0x07,0x60,0x69,0x6e,
24145
+0x59,0x5a,0x6d,0x69,0x60,0x48,0xa1,0x70,0xfd,0xda,0x57,0x3a,
24146
+0x64,0x64,0x3b,0x57,0x14,0x0f,0x3a,0x3a,0x0e,0x03,0xae,0xfc,
24147
+0x60,0xe0,0xf5,0x21,0x21,0xfe,0x69,0x66,0x9d,0xc7,0x79,0x53,
24148
+0x51,0x01,0x2c,0x01,0x05,0x01,0x06,0x01,0x2a,0x51,0x53,0x87,
24149
+0x79,0xfe,0x9a,0xba,0xa6,0xaf,0xfe,0x36,0xb0,0xa6,0xba,0xfd,
24150
+0x15,0x56,0xc4,0x03,0xa0,0xfc,0x60,0xb0,0x04,0x5e,0x19,0x43,
24151
+0x73,0xd9,0xd8,0x74,0x44,0x19,0x18,0x1d,0x72,0x02,0x04,0x71,
24152
+0x1d,0x00,0x00,0x00,0x00,0x03,0x00,0x3f,0x00,0x00,0x05,0xa2,
24153
+0x06,0x14,0x00,0x1d,0x00,0x21,0x00,0x31,0x00,0x00,0x33,0x35,
24154
+0x33,0x11,0x23,0x35,0x21,0x11,0x3e,0x01,0x33,0x32,0x16,0x15,
24155
+0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x34,0x26,0x23,0x22,0x06,
24156
+0x15,0x11,0x33,0x15,0x01,0x11,0x33,0x11,0x01,0x1e,0x05,0x15,
24157
+0x11,0x33,0x11,0x34,0x2e,0x03,0x46,0x97,0x9e,0x02,0x00,0x40,
24158
+0xa4,0x7d,0xb3,0xb7,0x98,0xfd,0x85,0x81,0x45,0x55,0x6b,0x64,
24159
+0x82,0xfe,0x95,0x70,0x02,0x0f,0x11,0x1b,0x0f,0x0b,0x03,0x03,
24160
+0x70,0x17,0x23,0x35,0x2f,0x79,0x05,0x23,0x78,0xfd,0x7d,0x5f,
24161
+0x54,0xd3,0xcd,0xfd,0xd5,0x79,0x79,0x02,0x35,0x87,0x69,0x9d,
24162
+0xab,0xfe,0x23,0x79,0x05,0x9b,0xfa,0xde,0x05,0x22,0xfe,0x2d,
24163
+0x15,0x2f,0x2e,0x33,0x2f,0x31,0x15,0xfd,0xcb,0x02,0x2b,0x44,
24164
+0x67,0x3c,0x29,0x10,0x00,0x04,0x00,0x46,0x00,0x00,0x02,0xd7,
24165
+0x06,0x14,0x00,0x0b,0x00,0x15,0x00,0x23,0x00,0x27,0x00,0x00,
24166
+0x13,0x34,0x36,0x33,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,
24167
+0x01,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x01,0x14,
24168
+0x17,0x16,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x22,0x07,0x06,
24169
+0x13,0x33,0x11,0x23,0xbc,0x70,0x51,0x4f,0x6f,0x6f,0x4f,0x51,
24170
+0x70,0x01,0x83,0x98,0xfd,0x6f,0x97,0x97,0x01,0xf9,0xfe,0xf6,
24171
+0x14,0x14,0x20,0x1d,0x28,0x28,0x1d,0x1f,0x15,0x14,0x21,0x70,
24172
+0x70,0x05,0x54,0x51,0x6f,0x6f,0x51,0x4f,0x6f,0x6e,0xfb,0x75,
24173
+0x79,0x79,0x03,0x35,0x79,0x01,0x2d,0x1d,0x14,0x14,0x28,0x1d,
24174
+0x1f,0x28,0x14,0x14,0xfb,0x06,0x03,0x35,0x00,0x04,0xff,0x68,
24175
+0xfe,0x39,0x02,0x3d,0x06,0x14,0x00,0x0b,0x00,0x1e,0x00,0x2b,
24176
+0x00,0x33,0x00,0x00,0x13,0x34,0x36,0x33,0x32,0x16,0x15,0x14,
24177
+0x06,0x23,0x22,0x26,0x13,0x23,0x35,0x21,0x11,0x14,0x06,0x23,
24178
+0x22,0x26,0x27,0x35,0x17,0x1e,0x01,0x33,0x32,0x36,0x35,0x13,
24179
+0x14,0x17,0x16,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x22,0x06,
24180
+0x13,0x3e,0x01,0x35,0x11,0x23,0x11,0x14,0xb2,0x6f,0x52,0x4e,
24181
+0x70,0x6f,0x4f,0x51,0x70,0x29,0x97,0x01,0xf9,0xe7,0xe1,0x3c,
24182
+0x88,0x49,0x71,0x02,0x3b,0x42,0x49,0x3a,0x50,0x14,0x14,0x20,
24183
+0x1d,0x28,0x29,0x1c,0x20,0x28,0x12,0x45,0x42,0x70,0x05,0x54,
24184
+0x51,0x6f,0x70,0x50,0x4f,0x6f,0x6e,0xfe,0xaa,0x79,0xfb,0x5c,
24185
+0xa3,0xa7,0x14,0x13,0xe2,0x01,0x50,0x47,0x5e,0x7b,0x05,0xd1,
24186
+0x1d,0x14,0x14,0x28,0x1d,0x1e,0x29,0x28,0xf9,0x59,0x17,0x55,
24187
+0x4b,0x04,0x2b,0xfb,0xd5,0x71,0x00,0x00,0x00,0x03,0x00,0x46,
24188
+0x00,0x00,0x05,0xae,0x06,0x14,0x00,0x19,0x00,0x1d,0x00,0x21,
24189
+0x00,0x00,0x29,0x01,0x35,0x33,0x11,0x23,0x35,0x21,0x11,0x01,
24190
+0x23,0x35,0x21,0x15,0x23,0x05,0x01,0x33,0x15,0x21,0x35,0x33,
24191
+0x01,0x07,0x11,0x33,0x21,0x33,0x11,0x23,0x01,0x07,0x01,0x33,
24192
+0x02,0xc5,0xfd,0x81,0x97,0x97,0x01,0xf9,0x01,0xad,0x7f,0x01,
24193
+0xe5,0xc5,0xfe,0xee,0x01,0xc0,0x73,0xfd,0x9e,0x7d,0xfe,0xd9,
24194
+0x63,0x86,0xfe,0x91,0x70,0x70,0x01,0xd3,0x25,0x01,0x5e,0x40,
24195
+0x79,0x05,0x23,0x78,0xfc,0x19,0x01,0x81,0x79,0x79,0xf6,0xfd,
24196
+0xc1,0x79,0x79,0x01,0x7b,0x58,0xfe,0xdd,0x05,0x22,0xfc,0xc1,
24197
+0x21,0xfe,0x3e,0x00,0x00,0x02,0x00,0x46,0x00,0x00,0x02,0xd7,
24198
+0x06,0x14,0x00,0x09,0x00,0x0d,0x00,0x00,0x25,0x33,0x15,0x21,
24199
+0x35,0x33,0x11,0x23,0x35,0x21,0x03,0x33,0x11,0x23,0x02,0x3f,
24200
+0x98,0xfd,0x6f,0x97,0x97,0x01,0xf9,0xe9,0x70,0x70,0x79,0x79,
24201
+0x79,0x05,0x23,0x78,0xfa,0x65,0x05,0x22,0x00,0x04,0x00,0x46,
24202
+0x00,0x00,0x08,0x48,0x04,0x44,0x00,0x30,0x00,0x3d,0x00,0x4c,
24203
+0x00,0x50,0x00,0x00,0x01,0x3e,0x01,0x33,0x32,0x16,0x15,0x11,
24204
+0x33,0x15,0x21,0x35,0x33,0x11,0x34,0x26,0x23,0x22,0x06,0x15,
24205
+0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x34,0x26,0x23,0x22,0x06,
24206
+0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,
24207
+0x3e,0x01,0x33,0x32,0x16,0x05,0x1e,0x02,0x17,0x11,0x33,0x11,
24208
+0x34,0x2e,0x03,0x25,0x1e,0x02,0x17,0x11,0x33,0x11,0x34,0x2e,
24209
+0x05,0x01,0x11,0x23,0x11,0x04,0xdb,0x4a,0xac,0x73,0xb7,0xb5,
24210
+0x98,0xfd,0x87,0x7f,0x3d,0x53,0x5e,0x68,0x7f,0xfd,0xa0,0x7f,
24211
+0x3e,0x52,0x5f,0x68,0x7f,0xfd,0x88,0x97,0x97,0x01,0xf9,0x3e,
24212
+0xa0,0x6e,0x82,0xa2,0x01,0xd0,0x1b,0x1a,0x11,0x02,0x70,0x16,
24213
+0x22,0x34,0x2e,0xfd,0x29,0x1c,0x1a,0x11,0x02,0x70,0x02,0x07,
24214
+0x0f,0x1b,0x26,0x3a,0xfd,0xda,0x70,0x03,0x79,0x6a,0x61,0xcf,
24215
+0xd1,0xfd,0xd5,0x79,0x79,0x01,0xf6,0xc7,0x68,0x91,0x86,0xfd,
24216
+0xf2,0x79,0x79,0x01,0xf6,0xc7,0x68,0x91,0x86,0xfd,0xf2,0x79,
24217
+0x79,0x03,0x35,0x79,0x96,0x5d,0x56,0x63,0x1a,0x22,0x39,0x84,
24218
+0x79,0xfe,0x0a,0x02,0x2b,0x45,0x67,0x3c,0x27,0x10,0x04,0x22,
24219
+0x3c,0x83,0x77,0xfe,0x0a,0x02,0x0e,0x29,0x33,0x47,0x2c,0x34,
24220
+0x1f,0x19,0xfc,0xb7,0x03,0x35,0xfc,0xcb,0x00,0x03,0x00,0x46,
24221
+0x00,0x00,0x05,0xa2,0x04,0x44,0x00,0x1d,0x00,0x21,0x00,0x31,
24222
+0x00,0x00,0x33,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x3e,0x01,
24223
+0x33,0x32,0x16,0x15,0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x34,
24224
+0x26,0x23,0x22,0x06,0x15,0x11,0x33,0x15,0x01,0x11,0x33,0x11,
24225
+0x25,0x1e,0x05,0x15,0x11,0x33,0x11,0x34,0x2e,0x03,0x46,0x97,
24226
+0x97,0x01,0xf9,0x40,0xa4,0x7d,0xb3,0xb7,0x98,0xfd,0x85,0x81,
24227
+0x45,0x55,0x6b,0x64,0x82,0xfe,0x95,0x70,0x02,0x0f,0x11,0x1b,
24228
+0x0f,0x0b,0x03,0x03,0x70,0x17,0x23,0x35,0x2f,0x79,0x03,0x35,
24229
+0x79,0x96,0x5f,0x54,0xd3,0xcd,0xfd,0xd5,0x79,0x79,0x02,0x35,
24230
+0x87,0x69,0x9d,0xab,0xfe,0x23,0x79,0x03,0xae,0xfc,0xcb,0x03,
24231
+0x35,0x1a,0x15,0x2f,0x2e,0x33,0x2f,0x31,0x15,0xfd,0xcb,0x02,
24232
+0x2b,0x44,0x67,0x3c,0x29,0x10,0x00,0x00,0x00,0x04,0x00,0x54,
24233
+0xff,0xe3,0x05,0x04,0x04,0x44,0x00,0x08,0x00,0x13,0x00,0x1f,
24234
+0x00,0x2b,0x00,0x00,0x25,0x32,0x36,0x10,0x26,0x22,0x06,0x10,
24235
+0x16,0x04,0x20,0x00,0x11,0x10,0x00,0x21,0x20,0x00,0x11,0x10,
24236
+0x05,0x36,0x37,0x36,0x35,0x34,0x27,0x26,0x27,0x16,0x11,0x10,
24237
+0x01,0x06,0x07,0x06,0x15,0x14,0x17,0x16,0x17,0x26,0x11,0x10,
24238
+0x02,0xac,0x70,0x5b,0x5a,0xe2,0x5c,0x5c,0x01,0x8a,0xfd,0xce,
24239
+0xfe,0xc1,0x01,0x3f,0x01,0x19,0x01,0x1a,0x01,0x3e,0xfe,0xbd,
24240
+0x2d,0x24,0x79,0x79,0x24,0x2d,0x2f,0xfd,0xa6,0x2c,0x24,0x79,
24241
+0x79,0x24,0x2c,0x30,0x54,0xc0,0x02,0x00,0xbf,0xc1,0xfe,0x04,
24242
+0xc2,0x71,0x01,0x2b,0x01,0x06,0x01,0x07,0x01,0x29,0xfe,0xd7,
24243
+0xfe,0xf9,0xfe,0xfa,0x77,0x18,0x22,0x71,0xd2,0xd2,0x71,0x22,
24244
+0x18,0x78,0xfe,0xfb,0xfe,0xfc,0x02,0x80,0x18,0x21,0x71,0xd2,
24245
+0xd2,0x71,0x22,0x17,0x7a,0x01,0x02,0x01,0x03,0x00,0x00,0x00,
24246
+0x00,0x04,0x00,0x2f,0xfe,0x56,0x05,0x46,0x04,0x44,0x00,0x0b,
24247
+0x00,0x21,0x00,0x25,0x00,0x33,0x00,0x00,0x01,0x15,0x14,0x16,
24248
+0x33,0x32,0x36,0x10,0x26,0x23,0x22,0x06,0x25,0x23,0x35,0x21,
24249
+0x15,0x3e,0x01,0x33,0x32,0x00,0x10,0x00,0x23,0x22,0x26,0x27,
24250
+0x11,0x33,0x15,0x21,0x35,0x3b,0x01,0x11,0x23,0x11,0x01,0x16,
24251
+0x17,0x16,0x10,0x07,0x06,0x07,0x36,0x37,0x36,0x10,0x27,0x26,
24252
+0x02,0x29,0x5f,0x6a,0x6d,0x59,0x59,0x6d,0x6a,0x5f,0xfe,0x9e,
24253
+0x98,0x01,0xfa,0x2d,0x98,0x70,0xe3,0x01,0x05,0xfe,0xfb,0xe3,
24254
+0x70,0x98,0x2d,0xa4,0xfd,0x62,0x98,0xe9,0x70,0x02,0x95,0x14,
24255
+0x0e,0x3a,0x3a,0x0e,0x14,0x58,0x3b,0x65,0x65,0x3b,0x02,0x48,
24256
+0x69,0xba,0xa6,0xb0,0x01,0xca,0xaf,0xa6,0xac,0x79,0x87,0x53,
24257
+0x51,0xfe,0xd5,0xfd,0xf6,0xfe,0xd4,0x51,0x53,0xfe,0x48,0x79,
24258
+0x79,0x04,0xdf,0xfb,0x21,0x04,0xed,0x18,0x1d,0x71,0xfd,0xfc,
24259
+0x72,0x1c,0x19,0x19,0x44,0x74,0x01,0xb0,0x73,0x44,0x00,0x00,
24260
+0x00,0x04,0x00,0x54,0xfe,0x56,0x05,0x68,0x04,0x44,0x00,0x16,
24261
+0x00,0x22,0x00,0x26,0x00,0x35,0x00,0x00,0x01,0x11,0x33,0x15,
24262
+0x21,0x35,0x33,0x11,0x0e,0x01,0x23,0x22,0x00,0x11,0x10,0x00,
24263
+0x33,0x32,0x16,0x17,0x35,0x21,0x15,0x01,0x34,0x26,0x23,0x22,
24264
+0x06,0x10,0x16,0x33,0x32,0x36,0x35,0x13,0x11,0x33,0x11,0x25,
24265
+0x06,0x07,0x06,0x15,0x14,0x17,0x16,0x17,0x26,0x27,0x26,0x10,
24266
+0x37,0x36,0x04,0xd1,0x97,0xfd,0x63,0xa4,0x2d,0x99,0x70,0xe2,
24267
+0xfe,0xfd,0x01,0x03,0xe2,0x70,0x99,0x2d,0x01,0xf9,0xfe,0x07,
24268
+0x60,0x69,0x6e,0x59,0x5a,0x6d,0x69,0x60,0x79,0x70,0xfd,0x6a,
24269
+0x57,0x3a,0x64,0x64,0x3b,0x57,0x14,0x0f,0x3a,0x3a,0x0e,0x03,
24270
+0xae,0xfb,0x21,0x79,0x79,0x01,0xb8,0x53,0x51,0x01,0x2c,0x01,
24271
+0x05,0x01,0x06,0x01,0x2a,0x51,0x53,0x87,0x79,0xfe,0x9a,0xba,
24272
+0xa6,0xaf,0xfe,0x36,0xb0,0xa6,0xba,0x01,0xcf,0xfb,0x21,0x04,
24273
+0xdf,0x0e,0x19,0x43,0x73,0xd9,0xd8,0x74,0x44,0x19,0x18,0x1d,
24274
+0x72,0x02,0x04,0x71,0x1d,0x00,0x00,0x00,0x00,0x02,0x00,0x3b,
24275
+0x00,0x00,0x04,0x4c,0x04,0x44,0x00,0x18,0x00,0x1c,0x00,0x00,
24276
+0x01,0x11,0x23,0x2e,0x01,0x23,0x22,0x06,0x15,0x11,0x33,0x15,
24277
+0x21,0x35,0x33,0x11,0x23,0x35,0x21,0x15,0x3e,0x01,0x33,0x32,
24278
+0x16,0x01,0x11,0x23,0x11,0x04,0x4c,0x71,0x06,0x50,0x4c,0x74,
24279
+0x86,0xc1,0xfd,0x46,0x97,0xa2,0x02,0x04,0x34,0xab,0x7c,0x1f,
24280
+0x59,0xfd,0xb4,0x70,0x04,0x33,0xfe,0xc3,0x55,0x53,0xcc,0xb5,
24281
+0xfe,0x5c,0x79,0x79,0x03,0x35,0x79,0xbd,0x6f,0x6b,0x09,0xfc,
24282
+0x3e,0x03,0x35,0xfc,0xcb,0x00,0x00,0x00,0x00,0x02,0x00,0x58,
24283
+0xff,0xe3,0x04,0x2d,0x04,0x44,0x00,0x29,0x00,0x53,0x00,0x00,
24284
+0x37,0x11,0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x34,0x26,0x2f,
24285
+0x01,0x2e,0x01,0x35,0x34,0x36,0x33,0x32,0x16,0x17,0x11,0x23,
24286
+0x2e,0x01,0x23,0x22,0x06,0x15,0x14,0x16,0x1f,0x01,0x1e,0x01,
24287
+0x15,0x14,0x04,0x21,0x22,0x26,0x13,0x06,0x07,0x06,0x15,0x14,
24288
+0x17,0x16,0x1f,0x01,0x16,0x17,0x1e,0x01,0x17,0x16,0x17,0x1e,
24289
+0x01,0x17,0x16,0x07,0x36,0x37,0x3e,0x01,0x35,0x34,0x27,0x26,
24290
+0x2f,0x01,0x26,0x27,0x2e,0x03,0x27,0x26,0x35,0x34,0x60,0x71,
24291
+0x0e,0x96,0x81,0x6c,0x73,0x49,0x69,0x92,0xa5,0x94,0xf0,0xfa,
24292
+0x5e,0xd5,0x81,0x71,0x09,0x89,0x80,0x6c,0x6f,0x40,0x53,0x91,
24293
+0xd1,0xa0,0xfe,0xff,0xfe,0xf1,0x63,0xde,0x4f,0x0c,0x09,0x45,
24294
+0x28,0x31,0x84,0x92,0x51,0x31,0x16,0x0c,0x20,0x1c,0x15,0x0f,
24295
+0x08,0x02,0x02,0x11,0x18,0x12,0x27,0x24,0x2b,0x39,0xb2,0x91,
24296
+0x2c,0x22,0x15,0x20,0x11,0x11,0x04,0x45,0x1f,0x01,0x29,0x77,
24297
+0x7d,0x4b,0x46,0x40,0x46,0x1a,0x25,0x29,0x99,0x82,0xad,0xa9,
24298
+0x1f,0x21,0xfe,0xf4,0x6d,0x6e,0x45,0x42,0x36,0x3e,0x15,0x25,
24299
+0x35,0x9c,0x8b,0xb4,0xab,0x1e,0x03,0x99,0x07,0x06,0x31,0x6e,
24300
+0x51,0x29,0x33,0x22,0x25,0x14,0x19,0x0b,0x08,0x1b,0x16,0x2e,
24301
+0x1f,0x29,0x2e,0x33,0x2b,0x0a,0x0c,0x1a,0x4f,0x3c,0x58,0x2a,
24302
+0x37,0x2e,0x25,0x0b,0x0e,0x09,0x11,0x0d,0x0d,0x05,0x3f,0x6d,
24303
+0x29,0x00,0x00,0x00,0x00,0x02,0x00,0x31,0xff,0xe3,0x03,0xa8,
24304
+0x05,0x71,0x00,0x17,0x00,0x25,0x00,0x00,0x13,0x23,0x35,0x33,
24305
+0x11,0x21,0x11,0x21,0x15,0x21,0x11,0x14,0x16,0x33,0x32,0x36,
24306
+0x37,0x33,0x0e,0x01,0x23,0x22,0x26,0x35,0x17,0x2e,0x01,0x34,
24307
+0x27,0x11,0x23,0x11,0x14,0x1e,0x04,0xcb,0x9a,0x9a,0x01,0x62,
24308
+0x01,0x27,0xfe,0xd9,0x2c,0x3a,0x40,0x3e,0x02,0x95,0x09,0x9d,
24309
+0xc0,0xdb,0x9c,0xfd,0x0a,0x09,0x01,0x70,0x06,0x11,0x12,0x23,
24310
+0x1d,0x03,0xae,0x79,0x01,0x4a,0xfe,0xb6,0x79,0xfd,0x75,0x8b,
24311
+0x44,0x56,0x5a,0xa0,0x81,0x89,0xb7,0xbf,0x1e,0x51,0x38,0x18,
24312
+0x03,0xd5,0xfc,0x2b,0x29,0x3b,0x29,0x18,0x10,0x07,0x00,0x00,
24313
+0x00,0x03,0x00,0x2f,0xff,0xe3,0x05,0x8b,0x04,0x27,0x00,0x19,
24314
+0x00,0x1d,0x00,0x29,0x00,0x00,0x01,0x11,0x33,0x15,0x21,0x35,
24315
+0x0e,0x01,0x23,0x22,0x26,0x35,0x11,0x23,0x35,0x21,0x11,0x14,
24316
+0x16,0x33,0x32,0x36,0x35,0x11,0x23,0x35,0x01,0x11,0x23,0x11,
24317
+0x05,0x2e,0x01,0x27,0x11,0x23,0x11,0x14,0x1e,0x03,0x04,0xf4,
24318
+0x97,0xfe,0x06,0x3f,0xa4,0x7d,0xb3,0xb7,0x98,0x01,0xfa,0x42,
24319
+0x58,0x6b,0x63,0x81,0x01,0x6b,0x71,0xfd,0xf1,0x2a,0x1e,0x03,
24320
+0x70,0x17,0x22,0x34,0x30,0x04,0x27,0xfc,0x52,0x79,0x96,0x5f,
24321
+0x54,0xd3,0xcd,0x02,0x2b,0x79,0xfd,0x93,0xc6,0x6b,0x9e,0xac,
24322
+0x01,0xdb,0x79,0xfc,0x52,0x03,0x35,0xfc,0xcb,0x1a,0x31,0x8b,
24323
+0x9f,0x01,0xf4,0xfd,0xd5,0x43,0x67,0x3c,0x29,0x10,0x00,0x00,
24324
+0x00,0x02,0xff,0xdb,0x00,0x00,0x04,0xd9,0x04,0x27,0x00,0x0e,
24325
+0x00,0x12,0x00,0x00,0x21,0x01,0x23,0x35,0x21,0x15,0x23,0x09,
24326
+0x01,0x23,0x35,0x21,0x15,0x23,0x09,0x02,0x33,0x01,0x01,0xc9,
24327
+0xfe,0x87,0x75,0x02,0x62,0x81,0x01,0x0d,0x01,0x0c,0x8b,0x01,
24328
+0x8f,0x7b,0xfe,0x87,0xfd,0xed,0x01,0x49,0x67,0xfe,0xb8,0x03,
24329
+0xae,0x79,0x79,0xfd,0x60,0x02,0xa0,0x79,0x79,0xfc,0x52,0x03,
24330
+0xae,0xfc,0xcb,0x03,0x35,0x00,0x00,0x00,0x00,0x03,0xff,0xee,
24331
+0x00,0x00,0x07,0x0c,0x04,0x27,0x00,0x14,0x00,0x1a,0x00,0x1f,
24332
+0x00,0x00,0x01,0x1b,0x01,0x23,0x35,0x21,0x15,0x23,0x01,0x23,
24333
+0x0b,0x01,0x23,0x01,0x23,0x35,0x21,0x15,0x23,0x1b,0x01,0x17,
24334
+0x23,0x07,0x13,0x33,0x37,0x09,0x01,0x33,0x37,0x01,0x04,0x50,
24335
+0xf2,0xc8,0x8b,0x01,0x8d,0x7d,0xfe,0xbf,0xf4,0xe1,0xe3,0xf2,
24336
+0xfe,0xbe,0x74,0x02,0x5a,0x7d,0xc4,0xee,0x7c,0x25,0x1d,0xfa,
24337
+0x46,0x0e,0xfb,0xdd,0x01,0x19,0x44,0x12,0xfe,0xfa,0x04,0x27,
24338
+0xfd,0x3b,0x02,0x4c,0x79,0x79,0xfc,0x52,0x02,0x9a,0xfd,0x66,
24339
+0x03,0xae,0x79,0x79,0xfd,0xc1,0x02,0xb8,0x79,0x52,0xfd,0x1d,
24340
+0x27,0x03,0x0e,0xfc,0xcb,0x34,0x03,0x01,0x00,0x02,0x00,0x00,
24341
+0x00,0x00,0x04,0xd3,0x04,0x27,0x00,0x1b,0x00,0x1f,0x00,0x00,
24342
+0x01,0x13,0x23,0x35,0x21,0x15,0x23,0x09,0x01,0x33,0x15,0x21,
24343
+0x35,0x33,0x0b,0x01,0x33,0x15,0x21,0x35,0x33,0x09,0x01,0x23,
24344
+0x35,0x21,0x15,0x23,0x09,0x01,0x23,0x01,0x02,0xcf,0xbc,0x83,
24345
+0x01,0x9e,0x8d,0xfe,0xf1,0x01,0x3c,0x8d,0xfd,0x5c,0x89,0xc8,
24346
+0xc9,0x8f,0xfe,0x4a,0x98,0x01,0x1a,0xfe,0xcf,0x77,0x02,0x89,
24347
+0x81,0x01,0xab,0xfd,0xb4,0x67,0x02,0x4f,0x02,0xa6,0x01,0x08,
24348
+0x79,0x79,0xfe,0x85,0xfe,0x46,0x79,0x79,0x01,0x18,0xfe,0xe8,
24349
+0x79,0x79,0x01,0x8d,0x01,0xa8,0x79,0x79,0xfc,0xcb,0x03,0x35,
24350
+0xfc,0xcb,0x00,0x00,0x00,0x02,0xff,0xe5,0xfe,0x39,0x04,0xd7,
24351
+0x04,0x27,0x00,0x1c,0x00,0x20,0x00,0x00,0x05,0x0e,0x01,0x23,
24352
+0x22,0x26,0x27,0x35,0x17,0x1e,0x01,0x33,0x32,0x36,0x3f,0x01,
24353
+0x01,0x23,0x35,0x21,0x15,0x23,0x01,0x13,0x23,0x35,0x21,0x15,
24354
+0x23,0x21,0x01,0x37,0x01,0x02,0x7f,0x30,0x88,0x73,0x31,0x78,
24355
+0x47,0x71,0x03,0x43,0x43,0x41,0x50,0x28,0x10,0xfe,0x31,0x73,
24356
+0x02,0x65,0x7f,0x01,0x0e,0xfc,0x8d,0x01,0x8f,0x81,0xfc,0x86,
24357
+0x01,0x8a,0x34,0xfe,0xad,0xf0,0x75,0x62,0x16,0x15,0xde,0x01,
24358
+0x4d,0x4a,0x47,0x63,0x25,0x04,0x35,0x79,0x79,0xfd,0x8b,0x02,
24359
+0x75,0x79,0x79,0xfc,0x6a,0x82,0x03,0x14,0x00,0x02,0x00,0x48,
24360
+0x00,0x00,0x04,0x46,0x04,0x27,0x00,0x0d,0x00,0x12,0x00,0x00,
24361
+0x33,0x35,0x01,0x21,0x15,0x23,0x11,0x21,0x15,0x01,0x21,0x35,
24362
+0x33,0x11,0x09,0x01,0x33,0x37,0x01,0x48,0x02,0x62,0xfe,0x35,
24363
+0x77,0x03,0xde,0xfd,0x9d,0x01,0xec,0x77,0xfe,0xf8,0xfd,0xa0,
24364
+0x70,0x34,0x02,0x2c,0x79,0x03,0x39,0xb6,0x01,0x2b,0x77,0xfc,
24365
+0xc7,0xc0,0xfe,0xc9,0x03,0xae,0xfc,0xcb,0x46,0x02,0xef,0x00,
24366
+0x00,0x01,0x00,0x93,0x00,0x00,0x02,0x19,0x04,0x27,0x00,0x07,
24367
+0x00,0x00,0x25,0x33,0x07,0x21,0x13,0x23,0x37,0x21,0x01,0x5f,
24368
+0xae,0x14,0xfe,0x9a,0xba,0xb0,0x14,0x01,0x68,0x6a,0x6a,0x03,
24369
+0xbc,0x6b,0x00,0x00,0x00,0x01,0xfe,0xb4,0xfe,0x39,0x02,0x46,
24370
+0x04,0x27,0x00,0x12,0x00,0x00,0x01,0x23,0x37,0x21,0x03,0x0e,
24371
+0x01,0x23,0x22,0x26,0x27,0x37,0x33,0x06,0x16,0x33,0x32,0x36,
24372
+0x37,0x01,0x79,0xae,0x15,0x01,0x66,0xe3,0x20,0xe8,0xab,0x48,
24373
+0x7c,0x38,0x2b,0x5f,0x0c,0x44,0x52,0x5b,0x6f,0x19,0x03,0xbc,
24374
+0x6b,0xfb,0x71,0xa4,0xbb,0x21,0x21,0xdb,0x60,0x5a,0x7b,0x81,
24375
+0x00,0x04,0x00,0x60,0xff,0xe3,0x05,0x31,0x05,0xf0,0x00,0x09,
24376
+0x00,0x13,0x00,0x1e,0x00,0x29,0x00,0x00,0x24,0x32,0x36,0x11,
24377
+0x10,0x26,0x22,0x06,0x11,0x10,0x13,0x20,0x00,0x10,0x00,0x21,
24378
+0x20,0x00,0x10,0x00,0x27,0x36,0x37,0x36,0x10,0x27,0x26,0x27,
24379
+0x16,0x11,0x10,0x01,0x06,0x07,0x06,0x10,0x17,0x16,0x17,0x26,
24380
+0x11,0x10,0x02,0x51,0xf0,0x59,0x59,0xf0,0x59,0xd1,0xfe,0xd5,
24381
+0xfe,0xc2,0x01,0x3e,0x01,0x2b,0x01,0x2a,0x01,0x3e,0xfe,0xc2,
24382
+0x0e,0x2b,0x23,0x85,0x85,0x23,0x2c,0x2f,0xfd,0x9b,0x2d,0x23,
24383
+0x85,0x85,0x23,0x2d,0x2f,0x58,0xda,0x01,0xb7,0x01,0xb4,0xde,
24384
+0xda,0xfe,0x48,0xfe,0x49,0xfe,0xb1,0x01,0x8f,0x02,0xee,0x01,
24385
+0x90,0xfe,0x70,0xfd,0x12,0xfe,0x71,0xc8,0x1f,0x2c,0xa6,0x02,
24386
+0x9a,0xa7,0x2c,0x20,0x8c,0xfe,0x4c,0xfe,0x4d,0x03,0xf3,0x1f,
24387
+0x2d,0xa7,0xfd,0x66,0xa6,0x2d,0x1f,0x8c,0x01,0xb3,0x01,0xb4,
24388
+0x00,0x02,0x00,0xfa,0x00,0x00,0x04,0xc5,0x05,0xf0,0x00,0x0a,
24389
+0x00,0x0e,0x00,0x00,0x21,0x35,0x21,0x11,0x05,0x35,0x25,0x21,
24390
+0x11,0x21,0x15,0x01,0x11,0x33,0x11,0x01,0x19,0x01,0x18,0xfe,
24391
+0xc9,0x01,0x77,0x01,0x3b,0x01,0x19,0xfd,0xe5,0x89,0x79,0x04,
24392
+0xb8,0xb8,0x95,0xe2,0xfa,0x89,0x79,0x05,0x77,0xfb,0x02,0x04,
24393
+0xfe,0x00,0x00,0x00,0x00,0x03,0x00,0x89,0x00,0x00,0x04,0xd9,
24394
+0x05,0xf0,0x00,0x1b,0x00,0x1f,0x00,0x2c,0x00,0x00,0x01,0x23,
24395
+0x11,0x3e,0x01,0x33,0x20,0x04,0x15,0x14,0x06,0x07,0x01,0x21,
24396
+0x35,0x33,0x11,0x21,0x35,0x37,0x24,0x12,0x35,0x34,0x26,0x23,
24397
+0x22,0x06,0x01,0x21,0x15,0x21,0x03,0x36,0x37,0x36,0x35,0x34,
24398
+0x26,0x27,0x26,0x27,0x16,0x15,0x14,0x01,0x0e,0x78,0x7a,0xef,
24399
+0x7a,0x01,0x1d,0x01,0x3f,0xb0,0xf8,0xfe,0x60,0x02,0xc3,0x89,
24400
+0xfb,0xb0,0xdd,0x01,0x1b,0xbc,0x8f,0x89,0x76,0x8e,0x03,0x3f,
24401
+0xfc,0xa2,0x03,0x5e,0xf7,0x80,0x33,0x40,0x34,0x3a,0x3a,0x54,
24402
+0x56,0x04,0x64,0x01,0x42,0x25,0x25,0xe9,0xd0,0x94,0xeb,0xa1,
24403
+0xfe,0xef,0xb0,0xfe,0x4a,0xf4,0x99,0xc3,0x01,0x12,0xb7,0xad,
24404
+0xb5,0x8f,0xfb,0xb6,0x3d,0x02,0x6f,0x5e,0x44,0x55,0x6c,0x4a,
24405
+0x6f,0x2a,0x2a,0x18,0x7a,0xc9,0xb4,0x00,0x00,0x03,0x00,0x8f,
24406
+0xff,0xe3,0x05,0x0e,0x05,0xf0,0x00,0x2a,0x00,0x37,0x00,0x48,
24407
+0x00,0x00,0x13,0x3e,0x01,0x33,0x20,0x04,0x15,0x14,0x06,0x07,
24408
+0x1e,0x01,0x15,0x14,0x04,0x21,0x22,0x26,0x27,0x11,0x33,0x1e,
24409
+0x01,0x33,0x32,0x36,0x35,0x34,0x26,0x2b,0x01,0x35,0x33,0x32,
24410
+0x36,0x35,0x34,0x26,0x23,0x22,0x06,0x07,0x23,0x01,0x36,0x37,
24411
+0x3e,0x01,0x35,0x34,0x27,0x26,0x27,0x16,0x15,0x14,0x03,0x36,
24412
+0x37,0x36,0x35,0x34,0x26,0x27,0x26,0x27,0x16,0x17,0x16,0x17,
24413
+0x16,0x07,0x06,0xb0,0x84,0xf8,0x76,0x01,0x0e,0x01,0x21,0xa6,
24414
+0xa0,0xc3,0xc0,0xfe,0xb5,0xfe,0xc6,0x76,0xfb,0x89,0x79,0x0b,
24415
+0x9c,0x8a,0x98,0xa6,0xad,0x9f,0x42,0x34,0x93,0x94,0x8b,0x82,
24416
+0x76,0x8a,0x0e,0x79,0x02,0xe8,0x54,0x39,0x3b,0x35,0x3f,0x39,
24417
+0x76,0x49,0x5f,0x66,0x31,0x30,0x2a,0x31,0x34,0x4f,0x23,0x11,
24418
+0x0d,0x02,0x02,0x1c,0x08,0x05,0xaa,0x23,0x23,0xc1,0xb4,0x87,
24419
+0xa8,0x1d,0x1f,0xcc,0xb1,0xd1,0xdf,0x28,0x28,0x01,0x48,0x8e,
24420
+0x95,0xa9,0x9b,0xa2,0xb0,0x78,0x88,0x87,0x7f,0x87,0x81,0x7b,
24421
+0xfb,0xfb,0x16,0x27,0x28,0x6c,0x48,0x81,0x43,0x3c,0x1b,0x6f,
24422
+0xa3,0xaf,0x02,0xbf,0x17,0x32,0x31,0x55,0x3a,0x55,0x21,0x23,
24423
+0x13,0x31,0x3f,0x32,0x4a,0x53,0x4d,0x16,0x00,0x03,0x00,0x54,
24424
+0x00,0x00,0x05,0x3d,0x05,0xf0,0x00,0x0e,0x00,0x11,0x00,0x15,
24425
+0x00,0x00,0x29,0x01,0x35,0x33,0x11,0x21,0x35,0x01,0x21,0x11,
24426
+0x21,0x15,0x21,0x11,0x33,0x01,0x11,0x09,0x01,0x33,0x11,0x23,
24427
+0x05,0x1b,0xfc,0xca,0xde,0xfd,0x91,0x02,0x71,0x01,0x78,0x01,
24428
+0x00,0xff,0x00,0xde,0xfd,0xa8,0xfe,0x43,0x02,0x36,0x88,0x88,
24429
+0x79,0x01,0x10,0x73,0x03,0xf4,0xfc,0x1a,0x81,0xfe,0xf0,0x01,
24430
+0x91,0x02,0xd5,0xfd,0x2b,0xfe,0x6f,0x04,0xfe,0x00,0x00,0x00,
24431
+0x00,0x03,0x00,0xa8,0xff,0xe3,0x04,0xf6,0x05,0xd5,0x00,0x1f,
24432
+0x00,0x23,0x00,0x2f,0x00,0x00,0x01,0x11,0x21,0x11,0x3e,0x01,
24433
+0x33,0x20,0x00,0x15,0x14,0x00,0x21,0x22,0x26,0x27,0x11,0x33,
24434
+0x1e,0x01,0x33,0x32,0x36,0x35,0x34,0x26,0x23,0x22,0x06,0x07,
24435
+0x23,0x11,0x05,0x21,0x15,0x21,0x03,0x36,0x37,0x36,0x35,0x34,
24436
+0x27,0x26,0x27,0x16,0x15,0x14,0x04,0x83,0xfc,0xe1,0x42,0xa2,
24437
+0x5a,0x01,0x14,0x01,0x40,0xfe,0xc0,0xfe,0xe0,0x7a,0xf1,0x83,
24438
+0x78,0x06,0x8d,0x8a,0x93,0x8e,0x8b,0x8d,0x4c,0x77,0x33,0x64,
24439
+0x03,0x1e,0xfd,0x5b,0x02,0xa5,0x8b,0x50,0x39,0x75,0x77,0x3a,
24440
+0x50,0x5b,0x05,0xd5,0xfe,0xfa,0xfe,0xb8,0x33,0x34,0xfe,0xe9,
24441
+0xf0,0xf4,0xfe,0xf0,0x28,0x2a,0x01,0x46,0x93,0x90,0xc5,0xca,
24442
+0xc7,0xc5,0x3f,0x42,0x02,0xe3,0x65,0x3c,0xfb,0x49,0x1a,0x30,
24443
+0x64,0xbc,0xb9,0x67,0x33,0x1b,0x7d,0xf1,0xe9,0x00,0x00,0x00,
24444
+0x00,0x04,0x00,0x81,0xff,0xe3,0x05,0x23,0x05,0xf0,0x00,0x19,
24445
+0x00,0x21,0x00,0x2b,0x00,0x39,0x00,0x00,0x01,0x3e,0x01,0x33,
24446
+0x32,0x00,0x15,0x14,0x00,0x21,0x20,0x00,0x11,0x10,0x00,0x21,
24447
+0x32,0x16,0x17,0x11,0x23,0x2e,0x01,0x23,0x22,0x06,0x12,0x32,
24448
+0x36,0x10,0x26,0x22,0x06,0x10,0x05,0x36,0x11,0x34,0x26,0x27,
24449
+0x1e,0x01,0x15,0x14,0x05,0x26,0x02,0x35,0x37,0x12,0x37,0x06,
24450
+0x07,0x06,0x11,0x10,0x17,0x16,0x01,0xf8,0x41,0xa1,0x5f,0xe5,
24451
+0x01,0x05,0xfe,0xda,0xfe,0xf1,0xfe,0xce,0xfe,0xc5,0x01,0x5e,
24452
+0x01,0x58,0x5a,0xce,0x76,0x79,0x19,0x8b,0x6e,0xb2,0x9f,0x77,
24453
+0xce,0x58,0x58,0xce,0x57,0x01,0xc3,0xce,0x76,0x62,0x1c,0x21,
24454
+0xfd,0xb6,0x15,0x32,0x01,0x01,0x43,0x1d,0x1a,0x92,0x81,0x21,
24455
+0x03,0x75,0x34,0x34,0xfe,0xf4,0xea,0xf7,0xfe,0xf3,0x01,0x71,
24456
+0x01,0x66,0x01,0x97,0x01,0x9f,0x1e,0x1e,0xfe,0xf8,0x66,0x69,
24457
+0xf4,0xfb,0xd1,0xaf,0x01,0xb0,0xaf,0xaf,0xfe,0x50,0x82,0x57,
24458
+0x01,0x0b,0x95,0xb0,0x21,0x37,0xa6,0x91,0xea,0x4e,0x40,0x01,
24459
+0x25,0x6d,0xfc,0x01,0x01,0x93,0x18,0x1f,0xad,0xfe,0x95,0xfe,
24460
+0xc7,0x97,0x27,0x00,0x00,0x02,0x00,0xa2,0x00,0x00,0x04,0xe7,
24461
+0x05,0xd5,0x00,0x08,0x00,0x0c,0x00,0x00,0x09,0x01,0x23,0x01,
24462
+0x21,0x15,0x23,0x11,0x21,0x05,0x21,0x37,0x21,0x04,0xe7,0xfd,
24463
+0x98,0xcb,0x02,0x58,0xfd,0x1f,0x89,0x04,0x45,0xfc,0x34,0x03,
24464
+0x2b,0x28,0xfc,0xad,0x04,0xd7,0xfb,0x29,0x04,0xba,0xca,0x01,
24465
+0xe5,0xb5,0x50,0x00,0x00,0x07,0x00,0x6a,0xff,0xe3,0x05,0x23,
24466
+0x05,0xf0,0x00,0x16,0x00,0x21,0x00,0x2d,0x00,0x37,0x00,0x41,
24467
+0x00,0x4b,0x00,0x57,0x00,0x00,0x01,0x1e,0x01,0x15,0x14,0x04,
24468
+0x20,0x24,0x35,0x34,0x36,0x37,0x2e,0x01,0x35,0x34,0x24,0x21,
24469
+0x20,0x04,0x15,0x14,0x06,0x03,0x34,0x26,0x23,0x22,0x06,0x15,
24470
+0x14,0x16,0x32,0x36,0x13,0x34,0x26,0x23,0x22,0x06,0x15,0x14,
24471
+0x16,0x33,0x32,0x36,0x13,0x3e,0x01,0x35,0x34,0x26,0x27,0x16,
24472
+0x15,0x14,0x05,0x26,0x35,0x34,0x37,0x0e,0x01,0x15,0x14,0x16,
24473
+0x13,0x26,0x35,0x34,0x37,0x0e,0x01,0x15,0x14,0x16,0x01,0x16,
24474
+0x15,0x14,0x07,0x3e,0x01,0x35,0x34,0x2e,0x02,0x03,0xb8,0xb2,
24475
+0xb9,0xfe,0xc9,0xfd,0xb6,0xfe,0xc8,0xba,0xb1,0x9d,0x9c,0x01,
24476
+0x1c,0x01,0x0f,0x01,0x0e,0x01,0x1d,0x9d,0xe6,0x4c,0x5c,0x5d,
24477
+0x4b,0x4b,0xba,0x4b,0x27,0x5d,0x72,0x73,0x5c,0x5d,0x72,0x71,
24478
+0x5e,0x3d,0x56,0x50,0x50,0x63,0x22,0xfd,0xd3,0x15,0x22,0x62,
24479
+0x51,0x50,0x46,0x2d,0x1f,0x5b,0x5f,0x5a,0x02,0xb3,0x20,0x2e,
24480
+0x6e,0x5a,0x11,0x29,0x4a,0x03,0x1b,0x1d,0xcc,0xa5,0xce,0xdc,
24481
+0xdc,0xce,0xa5,0xcc,0x1d,0x24,0xa9,0x82,0xbe,0xc8,0xc8,0xbe,
24482
+0x82,0xa9,0x01,0x27,0x9e,0x77,0x77,0x9e,0x9d,0x75,0x75,0xfd,
24483
+0xd5,0xb7,0x8a,0x8a,0xb7,0xb9,0x8d,0x8d,0x02,0xbb,0x1d,0x61,
24484
+0x4c,0x54,0x75,0x21,0x49,0xa6,0x78,0x4d,0x4f,0x75,0x9b,0x55,
24485
+0x21,0x75,0x54,0x4d,0x61,0xfc,0xc8,0x65,0xb2,0x99,0x5e,0x1e,
24486
+0x7c,0x6b,0x5c,0x86,0x01,0xe7,0x5e,0x97,0xb2,0x67,0x26,0x87,
24487
+0x5c,0x2d,0x4a,0x46,0x37,0x00,0x00,0x00,0x00,0x04,0x00,0x6f,
24488
+0xff,0xe3,0x05,0x10,0x05,0xf0,0x00,0x07,0x00,0x21,0x00,0x2b,
24489
+0x00,0x38,0x00,0x00,0x00,0x22,0x06,0x10,0x16,0x32,0x36,0x10,
24490
+0x13,0x0e,0x01,0x23,0x22,0x00,0x35,0x34,0x00,0x21,0x20,0x00,
24491
+0x11,0x10,0x00,0x21,0x22,0x26,0x27,0x11,0x33,0x1e,0x01,0x33,
24492
+0x32,0x36,0x01,0x2e,0x01,0x35,0x34,0x37,0x06,0x11,0x14,0x16,
24493
+0x01,0x16,0x0f,0x01,0x02,0x07,0x36,0x37,0x36,0x11,0x10,0x27,
24494
+0x26,0x03,0x21,0xce,0x57,0x57,0xce,0x58,0x20,0x42,0xa1,0x5e,
24495
+0xe4,0xfe,0xfb,0x01,0x24,0x01,0x0f,0x01,0x32,0x01,0x3c,0xfe,
24496
+0xa2,0xfe,0xa8,0x5a,0xce,0x76,0x79,0x19,0x8b,0x6f,0xb0,0xa0,
24497
+0xfe,0x28,0x1d,0x20,0x33,0xce,0x75,0x02,0x70,0x47,0x01,0x01,
24498
+0x01,0x44,0x1e,0x19,0x93,0x81,0x20,0x05,0x7b,0xaf,0xfe,0x50,
24499
+0xaf,0xaf,0x01,0xb0,0xfd,0x94,0x35,0x35,0x01,0x0b,0xeb,0xf8,
24500
+0x01,0x0c,0xfe,0x8e,0xfe,0x9b,0xfe,0x69,0xfe,0x61,0x1e,0x1e,
24501
+0x01,0x08,0x66,0x69,0xf5,0x01,0x39,0x37,0xa6,0x91,0xeb,0x70,
24502
+0x55,0xfe,0xf2,0x95,0xb0,0x02,0x83,0xd1,0xfc,0xfd,0xfe,0xfd,
24503
+0x94,0x19,0x1f,0xad,0x01,0x6b,0x01,0x38,0x97,0x26,0x00,0x00,
24504
+0x00,0x01,0xfd,0x89,0x04,0xee,0xfe,0x8e,0x06,0x66,0x00,0x03,
24505
+0x00,0x1c,0xb4,0x01,0x00,0x02,0x03,0x04,0x10,0xd4,0xcc,0xd4,
24506
+0xcc,0xb2,0x00,0x03,0x04,0x00,0x10,0xd4,0xcc,0x30,0xb4,0x78,
24507
+0x00,0x7f,0x00,0x02,0x01,0x5d,0x01,0x33,0x03,0x23,0xfd,0xc7,
24508
+0xc7,0x90,0x75,0x06,0x66,0xfe,0x88,0x00,0x00,0x02,0xfc,0xc9,
24509
+0x04,0xfe,0xff,0x37,0x05,0xe7,0x00,0x0b,0x00,0x17,0x00,0x6b,
24510
+0x40,0x0a,0x12,0x06,0x0c,0x00,0x18,0x0f,0x15,0x03,0x09,0x18,
24511
+0x10,0xd4,0xdc,0xd4,0xcc,0x31,0x00,0x10,0xd4,0x3c,0xcc,0x32,
24512
+0x30,0x00,0x4b,0xb0,0x0d,0x54,0x4b,0xb0,0x15,0x54,0x5b,0x58,
24513
+0xbd,0x00,0x18,0x00,0x40,0x00,0x01,0x00,0x18,0x00,0x18,0xff,
24514
+0xc0,0x38,0x11,0x37,0x38,0x59,0x01,0x4b,0xb0,0x0d,0x54,0x4b,
24515
+0xb0,0x0c,0x54,0x5b,0x58,0xbd,0x00,0x18,0xff,0xc0,0x00,0x01,
24516
+0x00,0x18,0x00,0x18,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x01,
24517
+0x4b,0xb0,0x10,0x54,0x58,0xbd,0x00,0x18,0x00,0x40,0x00,0x01,
24518
+0x00,0x18,0x00,0x18,0xff,0xc0,0x38,0x11,0x37,0x38,0x59,0x01,
24519
+0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x35,0x34,0x36,0x21,
24520
+0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x35,0x34,0x36,0xfd,
24521
+0x3d,0x30,0x45,0x43,0x32,0x31,0x43,0x45,0x01,0xb5,0x2f,0x45,
24522
+0x43,0x31,0x32,0x43,0x45,0x05,0xe7,0x46,0x2e,0x32,0x43,0x43,
24523
+0x32,0x2e,0x46,0x46,0x2e,0x32,0x43,0x43,0x32,0x2e,0x46,0x00,
24524
+0x00,0x01,0xfd,0x89,0x04,0xee,0xff,0x04,0x05,0xf6,0x00,0x03,
24525
+0x00,0x50,0xb5,0x02,0x00,0x04,0x01,0x03,0x04,0x10,0xd4,0xc4,
24526
+0x31,0x00,0x10,0xd4,0xc4,0x30,0x40,0x0d,0x0f,0x00,0x0f,0x01,
24527
+0x1f,0x00,0x1f,0x01,0x2f,0x00,0x2f,0x01,0x06,0x5d,0x00,0x4b,
24528
+0xb0,0x0c,0x54,0x58,0xbd,0x00,0x04,0xff,0xc0,0x00,0x01,0x00,
24529
+0x04,0x00,0x04,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x01,0x4b,
24530
+0xb0,0x0c,0x54,0x58,0xbd,0x00,0x04,0xff,0xc0,0x00,0x01,0x00,
24531
+0x04,0x00,0x04,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x01,0x33,
24532
+0x01,0x23,0xfe,0x3f,0xc5,0xfe,0xfa,0x75,0x05,0xf6,0xfe,0xf8,
24533
+0x00,0x01,0xfc,0xb6,0x05,0x0e,0xff,0x4a,0x05,0xe9,0x00,0x1b,
24534
+0x01,0x07,0x40,0x21,0x0e,0x0f,0x12,0x0b,0x1b,0x01,0x04,0x12,
24535
+0xbf,0x19,0x07,0x04,0xbf,0x15,0x0b,0x1c,0x01,0x0f,0x15,0x07,
24536
+0x1b,0x16,0x00,0x0e,0x00,0x07,0x15,0x5b,0x16,0x07,0x5b,0x08,
24537
+0x1c,0x10,0xd4,0xec,0xd4,0xec,0x11,0x39,0x39,0x11,0x12,0x39,
24538
+0x11,0x12,0x39,0x39,0x31,0x00,0x10,0xd4,0x3c,0xfc,0xd4,0x3c,
24539
+0xec,0x12,0x39,0x39,0x11,0x12,0x39,0x39,0x30,0x40,0x32,0x0b,
24540
+0x00,0x0b,0x01,0x0b,0x02,0x0f,0x0a,0x0f,0x0b,0x0f,0x0c,0x0f,
24541
+0x0e,0x0f,0x0f,0x0f,0x10,0x0f,0x11,0x0f,0x12,0x0f,0x13,0x0f,
24542
+0x14,0x0f,0x15,0x0f,0x16,0x0b,0x1b,0x10,0x0f,0x03,0x0f,0x04,
24543
+0x0f,0x05,0x0f,0x0a,0x0f,0x0b,0x0f,0x0c,0x0f,0x15,0x0f,0x16,
24544
+0x08,0x5d,0x01,0x5d,0x01,0x4b,0xb0,0x09,0x54,0x4b,0xb0,0x0a,
24545
+0x54,0x5b,0x4b,0xb0,0x0e,0x54,0x5b,0x58,0xbd,0x00,0x1c,0x00,
24546
+0x40,0x00,0x01,0x00,0x1c,0x00,0x1c,0xff,0xc0,0x38,0x11,0x37,
24547
+0x38,0x59,0x40,0x29,0x1a,0x00,0x1a,0x01,0x1a,0x02,0x1a,0x03,
24548
+0x1a,0x04,0x1a,0x05,0x1c,0x0a,0x1c,0x0b,0x1c,0x0c,0x1c,0x0e,
24549
+0x1c,0x0f,0x1c,0x10,0x1c,0x11,0x1c,0x12,0x1c,0x13,0x1f,0x14,
24550
+0x1f,0x15,0x1f,0x16,0x1f,0x17,0x1a,0x1b,0x14,0x5d,0x00,0x4b,
24551
+0xb0,0x0a,0x54,0x4b,0xb0,0x0b,0x54,0x5b,0x4b,0xb0,0x0c,0x54,
24552
+0x5b,0x58,0xbd,0x00,0x1c,0xff,0xc0,0x00,0x01,0x00,0x1c,0x00,
24553
+0x1c,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x00,0x4b,0xb0,0x14,
24554
+0x54,0x4b,0xb0,0x15,0x54,0x5b,0x58,0xbd,0x00,0x1c,0x00,0x40,
24555
+0x00,0x01,0x00,0x1c,0x00,0x1c,0xff,0xc0,0x38,0x11,0x37,0x38,
24556
+0x59,0x01,0x27,0x2e,0x01,0x23,0x22,0x06,0x07,0x27,0x3e,0x01,
24557
+0x33,0x32,0x16,0x1f,0x01,0x1e,0x01,0x33,0x32,0x36,0x35,0x33,
24558
+0x0e,0x01,0x23,0x22,0x27,0xfd,0xf3,0x30,0x14,0x29,0x11,0x27,
24559
+0x34,0x04,0x60,0x02,0x66,0x55,0x24,0x3e,0x37,0x31,0x17,0x2c,
24560
+0x11,0x29,0x2f,0x61,0x02,0x67,0x5e,0x43,0x48,0x05,0x3e,0x1c,
24561
+0x0d,0x0e,0x39,0x2e,0x01,0x64,0x76,0x12,0x1f,0x1a,0x0d,0x0e,
24562
+0x37,0x2f,0x69,0x72,0x2d,0x00,0x00,0x00,0x00,0x01,0xfc,0xf6,
24563
+0x04,0xee,0xfe,0x71,0x05,0xf6,0x00,0x03,0x00,0x50,0xb5,0x01,
24564
+0x00,0x04,0x01,0x03,0x04,0x10,0xd4,0xc4,0x31,0x00,0x10,0xd4,
24565
+0xc4,0x30,0x40,0x0d,0x0f,0x00,0x0f,0x03,0x1f,0x00,0x1f,0x03,
24566
+0x2f,0x00,0x2f,0x03,0x06,0x5d,0x00,0x4b,0xb0,0x0c,0x54,0x58,
24567
+0xbd,0x00,0x04,0xff,0xc0,0x00,0x01,0x00,0x04,0x00,0x04,0x00,
24568
+0x40,0x38,0x11,0x37,0x38,0x59,0x01,0x4b,0xb0,0x0e,0x54,0x58,
24569
+0xbd,0x00,0x04,0x00,0x40,0x00,0x01,0x00,0x04,0x00,0x04,0xff,
24570
+0xc0,0x38,0x11,0x37,0x38,0x59,0x01,0x13,0x23,0x01,0xfd,0xba,
24571
+0xb7,0x75,0xfe,0xfa,0x05,0xf6,0xfe,0xf8,0x01,0x08,0x00,0x00,
24572
+0x00,0x01,0xfc,0xc1,0x04,0xee,0xff,0x3f,0x05,0xf6,0x00,0x06,
24573
+0x00,0x75,0x40,0x09,0x04,0x05,0x02,0x00,0x07,0x04,0x02,0x06,
24574
+0x07,0x10,0xd4,0xc4,0x39,0x31,0x00,0x10,0xd4,0xc4,0x32,0x39,
24575
+0x30,0x00,0x4b,0xb0,0x0c,0x54,0x58,0xbd,0x00,0x07,0xff,0xc0,
24576
+0x00,0x01,0x00,0x07,0x00,0x07,0x00,0x40,0x38,0x11,0x37,0x38,
24577
+0x59,0x40,0x13,0x0f,0x00,0x0f,0x01,0x0f,0x04,0x1f,0x00,0x1f,
24578
+0x01,0x1f,0x04,0x2f,0x00,0x2f,0x01,0x2f,0x04,0x09,0x5d,0x01,
24579
+0x4b,0xb0,0x0e,0x54,0x58,0xbd,0x00,0x07,0xff,0xc0,0x00,0x01,
24580
+0x00,0x07,0x00,0x07,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x01,
24581
+0x4b,0xb0,0x10,0x54,0x58,0xbd,0x00,0x07,0x00,0x40,0x00,0x01,
24582
+0x00,0x07,0x00,0x07,0xff,0xc0,0x38,0x11,0x37,0x38,0x59,0x01,
24583
+0x33,0x13,0x23,0x27,0x07,0x23,0xfd,0xa8,0xb0,0xe7,0x74,0xcb,
24584
+0xcb,0x74,0x05,0xf6,0xfe,0xf8,0xa1,0xa1,0x00,0x01,0xfc,0xc1,
24585
+0x04,0xee,0xff,0x3f,0x05,0xf6,0x00,0x06,0x00,0x63,0x40,0x09,
24586
+0x03,0x00,0x04,0x01,0x07,0x03,0x05,0x01,0x07,0x10,0xd4,0xc4,
24587
+0x39,0x31,0x00,0x10,0xd4,0x3c,0xc4,0x39,0x30,0x00,0x4b,0xb0,
24588
+0x0c,0x54,0x58,0xbd,0x00,0x07,0xff,0xc0,0x00,0x01,0x00,0x07,
24589
+0x00,0x07,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x40,0x19,0x0f,
24590
+0x01,0x0f,0x02,0x0f,0x04,0x0f,0x05,0x1f,0x01,0x1f,0x02,0x1f,
24591
+0x04,0x1f,0x05,0x2f,0x01,0x2f,0x02,0x2f,0x04,0x2f,0x05,0x0c,
24592
+0x5d,0x01,0x4b,0xb0,0x0e,0x54,0x58,0xbd,0x00,0x07,0xff,0xc0,
24593
+0x00,0x01,0x00,0x07,0x00,0x07,0x00,0x40,0x38,0x11,0x37,0x38,
24594
+0x59,0x01,0x03,0x33,0x17,0x37,0x33,0x03,0xfd,0xa8,0xe7,0x74,
24595
+0xcb,0xcb,0x74,0xe7,0x04,0xee,0x01,0x08,0xa2,0xa2,0xfe,0xf8,
24596
+0x00,0x01,0xfc,0xc9,0x05,0x06,0xff,0x37,0x05,0xf8,0x00,0x0c,
24597
+0x00,0x00,0x03,0x23,0x2e,0x01,0x22,0x06,0x07,0x23,0x3e,0x01,
24598
+0x33,0x32,0x16,0xc9,0x5e,0x12,0x6b,0xb8,0x6b,0x12,0x5e,0x14,
24599
+0xa0,0x83,0x84,0x9f,0x05,0x06,0x37,0x36,0x36,0x37,0x75,0x7d,
24600
+0x7c,0x00,0x00,0x00,0x00,0x01,0xfc,0xc9,0x05,0x06,0xff,0x37,
24601
+0x05,0xf8,0x00,0x0d,0x00,0x4e,0x40,0x0d,0x0b,0xbf,0x04,0x07,
24602
+0x00,0x0e,0x07,0x5b,0x08,0x01,0x5b,0x00,0x0e,0x10,0xd4,0xec,
24603
+0xd4,0xec,0x31,0x00,0x10,0xd4,0x3c,0xd4,0xec,0x30,0x00,0x4b,
24604
+0xb0,0x0c,0x54,0x4b,0xb0,0x0b,0x54,0x5b,0x4b,0xb0,0x0a,0x54,
24605
+0x5b,0x58,0xbd,0x00,0x0e,0xff,0xc0,0x00,0x01,0x00,0x0e,0x00,
24606
+0x0e,0x00,0x40,0x38,0x11,0x37,0x38,0x59,0x40,0x0d,0x0f,0x00,
24607
+0x0f,0x01,0x0f,0x07,0x0f,0x08,0x0d,0x09,0x0d,0x0d,0x06,0x5d,
24608
+0x01,0x33,0x1e,0x01,0x33,0x32,0x36,0x37,0x33,0x0e,0x01,0x23,
24609
+0x22,0x26,0xfc,0xc9,0x5e,0x12,0x6b,0x5c,0x5c,0x6b,0x12,0x5e,
24610
+0x14,0xa0,0x83,0x84,0x9f,0x05,0xf8,0x37,0x36,0x36,0x37,0x75,
24611
+0x7d,0x7c,0x00,0x00,0x00,0x01,0xfd,0x8b,0x05,0x00,0xfe,0x75,
24612
+0x05,0xe9,0x00,0x0b,0x00,0x2d,0xb5,0x06,0x00,0x0c,0x03,0x09,
24613
+0x0c,0x10,0xd4,0xcc,0x31,0x00,0x10,0xd4,0xcc,0x30,0x01,0x4b,
24614
+0xb0,0x0c,0x54,0x4b,0xb0,0x0b,0x54,0x5b,0x58,0xbd,0x00,0x0c,
24615
+0xff,0xc0,0x00,0x01,0x00,0x0c,0x00,0x0c,0x00,0x40,0x38,0x11,
24616
+0x37,0x38,0x59,0x01,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,
24617
+0x35,0x34,0x36,0xfe,0x00,0x2f,0x46,0x43,0x32,0x32,0x43,0x46,
24618
+0x05,0xe9,0x46,0x2e,0x32,0x43,0x43,0x32,0x2e,0x46,0x00,0x00,
24619
+0x00,0x02,0xfc,0xf4,0x04,0xee,0xff,0xac,0x05,0xf6,0x00,0x03,
24620
+0x00,0x07,0x00,0x00,0x01,0x33,0x01,0x23,0x03,0x33,0x01,0x23,
24621
+0xfe,0xe7,0xc5,0xfe,0xfa,0x75,0x87,0xc5,0xfe,0xfa,0x75,0x05,
24622
+0xf6,0xfe,0xf8,0x01,0x08,0xfe,0xf8,0x00,0x00,0x02,0xfc,0x54,
24623
+0x04,0xee,0xff,0x0c,0x05,0xf6,0x00,0x03,0x00,0x07,0x00,0x00,
24624
+0x01,0x13,0x23,0x01,0x21,0x13,0x23,0x01,0xfd,0x19,0xb6,0x75,
24625
+0xfe,0xfa,0x02,0x02,0xb6,0x75,0xfe,0xfa,0x05,0xf6,0xfe,0xf8,
24626
+0x01,0x08,0xfe,0xf8,0x01,0x08,0x00,0x00,0xff,0xff,0x00,0x4a,
24627
+0xfe,0x77,0x02,0x60,0x04,0x27,0x10,0x26,0x00,0xf3,0x00,0x00,
24628
+0x10,0x06,0x02,0x99,0x87,0x00,0x00,0x00,0x00,0x01,0x00,0x4a,
24629
+0x00,0x00,0x02,0x60,0x04,0x27,0x00,0x11,0x00,0x00,0x25,0x33,
24630
+0x15,0x21,0x35,0x33,0x11,0x23,0x35,0x33,0x11,0x23,0x35,0x21,
24631
+0x11,0x33,0x15,0x23,0x01,0xb2,0xae,0xfd,0xea,0xb0,0xb0,0xb0,
24632
+0xb0,0x01,0x68,0xae,0xae,0x6a,0x6a,0x6a,0x01,0x66,0x6a,0x01,
24633
+0x82,0x6b,0xfe,0x13,0x6a,0x00,0x00,0x00,0x00,0x01,0x00,0xc7,
24634
+0x05,0x00,0x01,0xaa,0x05,0xe3,0x00,0x0d,0x00,0x00,0x13,0x34,
24635
+0x37,0x36,0x33,0x32,0x17,0x16,0x15,0x14,0x06,0x22,0x27,0x26,
24636
+0xc7,0x21,0x22,0x2f,0x2e,0x21,0x22,0x42,0x5e,0x22,0x21,0x05,
24637
+0x71,0x2e,0x22,0x22,0x22,0x22,0x2e,0x2f,0x42,0x21,0x21,0x00,
24638
+0x00,0x02,0xff,0x3b,0xfe,0x39,0x02,0x33,0x04,0x27,0x00,0x12,
24639
+0x00,0x1a,0x00,0x00,0x01,0x16,0x17,0x23,0x27,0x06,0x23,0x20,
24640
+0x35,0x34,0x21,0x32,0x17,0x11,0x23,0x35,0x21,0x11,0x14,0x27,
24641
+0x26,0x23,0x22,0x15,0x14,0x33,0x32,0x02,0x02,0x2b,0x06,0x71,
24642
+0x11,0x64,0x97,0xfe,0x85,0x01,0x04,0xbe,0x6f,0xae,0x01,0x66,
24643
+0xc6,0x38,0xa2,0x6f,0xa5,0x7e,0xfe,0xde,0x62,0x42,0x4b,0x4c,
24644
+0xc7,0xe6,0x3c,0x04,0x12,0x6b,0xfb,0x71,0x71,0x01,0x5a,0x7b,
24645
+0x5f,0x00,0x00,0x00,0xff,0xff,0xff,0xf8,0xfe,0x4b,0x02,0x8c,
24646
+0x04,0x27,0x10,0x26,0x00,0xf3,0x00,0x00,0x10,0x07,0x02,0xdd,
24647
+0x03,0x48,0x00,0x00,0xff,0xff,0x00,0x4a,0xfe,0x78,0x02,0x60,
24648
+0x04,0x27,0x10,0x26,0x00,0xf3,0x00,0x00,0x10,0x07,0x02,0xd0,
24649
+0x03,0x56,0x00,0x00,0x00,0x01,0x00,0x64,0xfe,0x39,0x06,0xa6,
24650
+0x05,0xd5,0x00,0x24,0x00,0x8c,0x40,0x14,0x09,0x24,0x07,0x23,
24651
+0x24,0x21,0x0b,0x24,0x20,0x07,0x0f,0x0d,0x04,0x00,0x24,0x21,
24652
+0x0f,0x02,0x21,0x25,0x10,0xf4,0xec,0xe4,0x32,0xd4,0xec,0x32,
24653
+0xe4,0x10,0xe4,0x10,0xe4,0xb3,0x18,0x0f,0x16,0x07,0x10,0xd4,
24654
+0xec,0x31,0x40,0x0f,0x21,0x07,0x01,0x0c,0x08,0x03,0x6f,0x0a,
24655
+0x05,0x62,0x22,0x01,0x6f,0x0e,0x00,0x00,0x2f,0xc6,0xee,0x32,
24656
+0xf6,0x3c,0xee,0x32,0x32,0x11,0x39,0x39,0xb7,0x17,0x16,0x64,
24657
+0x1c,0x6e,0x12,0x9d,0x25,0x10,0xfc,0xec,0xf4,0xc4,0x30,0x40,
24658
+0x0b,0x21,0x10,0x06,0x07,0x06,0x07,0x10,0x20,0x21,0x20,0x4d,
24659
+0x4b,0x53,0x58,0x07,0x10,0x04,0xed,0x07,0x10,0x04,0xed,0x59,
24660
+0x22,0xb2,0x20,0x15,0x01,0x01,0x5d,0x40,0x0e,0x05,0x07,0x01,
24661
+0x30,0x26,0x4f,0x26,0x70,0x26,0x80,0x26,0x9f,0x26,0x05,0x5d,
24662
+0x00,0x5d,0x33,0x35,0x33,0x11,0x23,0x35,0x21,0x01,0x11,0x23,
24663
+0x35,0x21,0x15,0x23,0x11,0x14,0x07,0x06,0x23,0x22,0x27,0x26,
24664
+0x27,0x35,0x33,0x16,0x17,0x16,0x33,0x36,0x37,0x36,0x35,0x01,
24665
+0x11,0x33,0x15,0x64,0xc9,0xc9,0x01,0x7f,0x03,0x7f,0xc8,0x02,
24666
+0x0c,0xc9,0x40,0x4e,0x81,0x74,0x42,0x41,0x3e,0x5f,0x07,0x2b,
24667
+0x2a,0x7d,0x41,0x2a,0x26,0xfc,0x46,0xc9,0x6a,0x05,0x00,0x6b,
24668
+0xfb,0x66,0x04,0x2f,0x6b,0x6b,0xfa,0x79,0xf7,0x50,0x63,0x11,
24669
+0x10,0x21,0xdb,0x60,0x2d,0x2d,0x01,0x3f,0x39,0xce,0x04,0xea,
24670
+0xfb,0x9d,0x6a,0x00,0x00,0x01,0xff,0xf1,0xff,0xf1,0x01,0x3b,
24671
+0x01,0x3c,0x00,0x0b,0x00,0x00,0x27,0x34,0x36,0x33,0x32,0x16,
24672
+0x15,0x14,0x06,0x23,0x22,0x26,0x0f,0x5e,0x47,0x44,0x61,0x61,
24673
+0x44,0x47,0x5e,0x96,0x46,0x60,0x60,0x46,0x44,0x61,0x60,0x00,
24674
+0xff,0xff,0x01,0x85,0x06,0x53,0x03,0xf3,0x08,0x33,0x10,0x27,
24675
+0x0d,0x78,0x04,0xbc,0x01,0x55,0x10,0x07,0x00,0x71,0x00,0xbd,
24676
+0x02,0x3d,0x00,0x00,0xff,0xff,0x01,0x85,0x06,0x61,0x03,0xf3,
24677
+0x08,0x42,0x10,0x27,0x0d,0x78,0x04,0xbc,0x02,0x5b,0x10,0x07,
24678
+0x00,0x71,0x00,0xbd,0x00,0xff,0x00,0x00,0xff,0xff,0x01,0x92,
24679
+0x06,0x50,0x03,0xe8,0x08,0x33,0x10,0x27,0x00,0x71,0x00,0xbd,
24680
+0x02,0x3d,0x10,0x07,0x0d,0x80,0x04,0xbc,0x01,0x50,0x00,0x00,
24681
+0xff,0xff,0x01,0x85,0x06,0x53,0x03,0xf4,0x08,0x5a,0x10,0x27,
24682
+0x0d,0x78,0x04,0xbc,0x01,0x55,0x10,0x07,0x0d,0x79,0x04,0xf0,
24683
+0x02,0x64,0x00,0x00,0xff,0xff,0x01,0x82,0x06,0x53,0x03,0xf3,
24684
+0x08,0x5a,0x10,0x27,0x0d,0x78,0x04,0xbc,0x01,0x55,0x10,0x07,
24685
+0x0d,0x7b,0x04,0x8c,0x02,0x64,0x00,0x00,0xff,0xff,0x01,0x92,
24686
+0x06,0x61,0x03,0xf4,0x08,0x5a,0x10,0x27,0x00,0x71,0x00,0xbd,
24687
+0x00,0xff,0x10,0x07,0x0d,0x79,0x04,0xf0,0x02,0x64,0x00,0x00,
24688
+0xff,0xff,0x01,0x82,0x06,0x61,0x03,0xe8,0x08,0x5a,0x10,0x27,
24689
+0x00,0x71,0x00,0xbd,0x00,0xff,0x10,0x07,0x0d,0x7b,0x04,0x8c,
24690
+0x02,0x64,0x00,0x00,0xff,0xff,0x01,0x76,0x06,0x6a,0x04,0x0a,
24691
+0x08,0x33,0x10,0x27,0x00,0x71,0x00,0xbd,0x02,0x3d,0x10,0x07,
24692
+0x0d,0x7a,0x04,0xc0,0x01,0x5c,0x00,0x00,0xff,0xff,0x01,0x7d,
24693
+0x06,0x53,0x03,0xfb,0x08,0x58,0x10,0x27,0x0d,0x78,0x04,0xbc,
24694
+0x01,0x55,0x10,0x07,0x0d,0x7d,0x04,0xbc,0x02,0x62,0x00,0x00,
24695
+0xff,0xff,0x01,0x76,0x06,0x6a,0x04,0x0a,0x08,0x64,0x10,0x27,
24696
+0x0d,0x7a,0x04,0xc0,0x01,0x5c,0x10,0x07,0x0d,0x78,0x04,0xbc,
24697
+0x02,0x7d,0x00,0x00,0xff,0xff,0x01,0x7d,0x06,0x63,0x03,0xfb,
24698
+0x08,0x65,0x10,0x27,0x0d,0x80,0x04,0xbc,0x02,0x7c,0x10,0x07,
24699
+0x0d,0x7d,0x04,0xbc,0x01,0x75,0x00,0x00,0xff,0xff,0x01,0x76,
24700
+0x06,0x6a,0x04,0x44,0x08,0x5a,0x10,0x27,0x0d,0x7a,0x04,0xc0,
24701
+0x01,0x5c,0x10,0x07,0x0d,0x79,0x05,0x40,0x02,0x64,0x00,0x00,
24702
+0xff,0xff,0x01,0x7d,0x06,0x63,0x05,0x2c,0x08,0x3a,0x10,0x27,
24703
+0x0d,0x79,0x06,0x28,0x02,0x44,0x10,0x07,0x0d,0x7c,0x04,0xbc,
24704
+0x01,0x75,0x00,0x00,0xff,0xff,0x01,0x7d,0x06,0x63,0x04,0x53,
24705
+0x08,0x3a,0x10,0x27,0x0d,0x7c,0x04,0xbc,0x01,0x75,0x10,0x07,
24706
+0x0d,0x7b,0x05,0xe2,0x02,0x44,0x00,0x00,0xff,0xff,0x01,0x76,
24707
+0x06,0x63,0x04,0x0a,0x08,0x75,0x10,0x27,0x0d,0x7a,0x04,0xc0,
24708
+0x02,0x8c,0x10,0x07,0x0d,0x7c,0x04,0xbc,0x01,0x75,0x00,0x00,
24709
+0xff,0xff,0x01,0x76,0x06,0x56,0x04,0x0a,0x08,0x59,0x10,0x27,
24710
+0x0d,0x7a,0x04,0xc0,0x02,0x70,0x10,0x07,0x0d,0x7f,0x04,0xbc,
24711
+0x01,0x50,0x00,0x00,0xff,0xff,0x01,0x85,0x06,0x56,0x03,0xf4,
24712
+0x08,0x5a,0x10,0x27,0x0d,0x79,0x04,0xf0,0x02,0x64,0x10,0x07,
24713
+0x0d,0x7f,0x04,0xbc,0x01,0x50,0x00,0x00,0xff,0xff,0x01,0x82,
24714
+0x06,0x56,0x03,0xf3,0x08,0x5a,0x10,0x27,0x0d,0x7b,0x04,0x8c,
24715
+0x02,0x64,0x10,0x07,0x0d,0x7f,0x04,0xbc,0x01,0x50,0x00,0x00,
24716
+0xff,0xff,0x01,0x85,0x06,0x56,0x03,0xf3,0x08,0xe0,0x10,0x27,
24717
+0x0d,0x7f,0x04,0xbc,0x01,0x50,0x10,0x07,0x02,0xb6,0x04,0xab,
24718
+0x02,0x10,0x00,0x00,0xff,0xff,0x01,0x7d,0x06,0x63,0x04,0xf0,
24719
+0x08,0xb0,0x10,0x27,0x0d,0x7c,0x04,0xbc,0x01,0x75,0x10,0x07,
24720
+0x02,0xb6,0x06,0x10,0x01,0xe0,0x00,0x00,0xff,0xff,0xfc,0x83,
24721
+0x05,0x5e,0xff,0x51,0x06,0x85,0x10,0x26,0x0d,0x79,0x4d,0x70,
24722
+0x10,0x07,0x02,0xb4,0xfe,0xf8,0x00,0x64,0x00,0x03,0x00,0x6d,
24723
+0xfe,0x39,0x04,0xe3,0x04,0x44,0x00,0x0b,0x00,0x30,0x00,0x3c,
24724
+0x00,0x00,0x01,0x34,0x26,0x23,0x22,0x06,0x15,0x14,0x16,0x33,
24725
+0x32,0x36,0x25,0x34,0x36,0x33,0x32,0x17,0x21,0x15,0x21,0x16,
24726
+0x15,0x14,0x06,0x23,0x22,0x27,0x06,0x15,0x14,0x21,0x20,0x11,
24727
+0x14,0x04,0x23,0x20,0x26,0x35,0x34,0x37,0x26,0x27,0x26,0x37,
24728
+0x26,0x27,0x26,0x13,0x06,0x15,0x14,0x16,0x33,0x32,0x36,0x35,
24729
+0x34,0x21,0x22,0x03,0x62,0x8a,0x7c,0x7b,0x8b,0x8b,0x7b,0x7c,
24730
+0x8a,0xfd,0x29,0xf8,0xd9,0x73,0x59,0x01,0xbb,0xfe,0xf0,0x5a,
24731
+0xf8,0xd9,0x73,0x59,0x3a,0x01,0x06,0x02,0x46,0xfe,0x89,0xcf,
24732
+0xfe,0xeb,0xda,0xa2,0x3a,0x03,0x03,0x7c,0x25,0x1f,0x7c,0xc8,
24733
+0x21,0x9e,0x8c,0xc6,0xeb,0xfe,0x4f,0xa6,0x02,0xc1,0x88,0x98,
24734
+0x98,0x88,0x89,0x98,0x98,0x89,0xb4,0xcf,0x1d,0x6b,0x62,0x99,
24735
+0xb4,0xcf,0x1d,0x41,0x42,0x3c,0xfe,0xec,0xbc,0x93,0xaa,0x4d,
24736
+0x92,0x74,0x2c,0x4f,0x56,0x71,0x14,0x1a,0x68,0xfe,0x04,0x38,
24737
+0x6c,0x55,0x7e,0x8e,0x5f,0x66,0x00,0x00,0x00,0x01,0x00,0x64,
24738
+0xff,0xe3,0x06,0xa6,0x05,0xd5,0x00,0x1c,0x00,0x00,0x01,0x11,
24739
+0x01,0x21,0x15,0x23,0x11,0x14,0x06,0x23,0x22,0x26,0x27,0x35,
24740
+0x33,0x1e,0x01,0x33,0x32,0x36,0x35,0x11,0x01,0x23,0x11,0x23,
24741
+0x35,0x21,0x15,0x01,0xf8,0x03,0x2f,0x01,0x7f,0xc9,0xc6,0xdc,
24742
+0x47,0x93,0x49,0x72,0x03,0x58,0x58,0x77,0x5e,0xfc,0x94,0x79,
24743
+0xc9,0x02,0x52,0x05,0x6a,0xfb,0xb7,0x04,0xb4,0x6b,0xfc,0x4c,
24744
+0xf7,0xdc,0x22,0x22,0xeb,0x63,0x61,0x96,0xda,0x03,0x29,0xfa,
24745
+0xfc,0x05,0x87,0x6b,0x6b,0x00,0x00,0x00,0x00,0x01,0x00,0x8a,
24746
+0x00,0x00,0x05,0x55,0x05,0xd5,0x00,0x0d,0x00,0x00,0x09,0x01,
24747
+0x21,0x15,0x23,0x11,0x21,0x09,0x01,0x21,0x11,0x33,0x15,0x21,
24748
+0x01,0xe8,0x01,0xd4,0xfd,0x49,0x7b,0x04,0xcb,0xfd,0x68,0x02,
24749
+0x98,0xfb,0x35,0x7b,0x03,0x0c,0x03,0x2e,0x02,0x2c,0xd1,0x01,
24750
+0x4c,0xfd,0x17,0xfd,0x14,0x01,0x4c,0x90,0x00,0x02,0x00,0x66,
24751
+0xfe,0xd6,0x04,0x6a,0x04,0x44,0x00,0x08,0x00,0x1a,0x00,0x00,
24752
+0x25,0x32,0x36,0x10,0x26,0x20,0x06,0x10,0x16,0x17,0x22,0x00,
24753
+0x10,0x00,0x20,0x00,0x10,0x07,0x06,0x07,0x1e,0x01,0x3b,0x01,
24754
+0x15,0x2e,0x01,0x02,0x68,0x94,0x97,0x97,0xfe,0xd8,0x97,0x98,
24755
+0x93,0xe8,0xfe,0xe6,0x01,0x19,0x01,0xd2,0x01,0x19,0x8c,0x60,
24756
+0x8c,0x36,0x9a,0x6d,0x1f,0xa9,0xf1,0x46,0xea,0x01,0xc8,0xe9,
24757
+0xe9,0xfe,0x38,0xea,0x63,0x01,0x33,0x01,0xfc,0x01,0x32,0xfe,
24758
+0xce,0xfe,0x04,0x9a,0x69,0x21,0x42,0x3f,0x9b,0x08,0x77,0x00,
24759
+0x00,0x02,0x00,0x45,0x00,0x00,0x04,0x32,0x04,0x27,0x00,0x03,
24760
+0x00,0x06,0x00,0x00,0x29,0x01,0x01,0x33,0x13,0x09,0x01,0x04,
24761
+0x32,0xfc,0x13,0x01,0xb3,0x87,0xc1,0xfe,0xd5,0xfe,0xd5,0x04,
24762
+0x27,0xfc,0x44,0x02,0xdb,0xfd,0x25,0x00,0x00,0x03,0x00,0x66,
24763
+0xff,0xe3,0x04,0x6a,0x04,0x44,0x00,0x0b,0x00,0x14,0x00,0x1d,
24764
+0x00,0x00,0x01,0x15,0x23,0x11,0x33,0x15,0x33,0x35,0x33,0x11,
24765
+0x23,0x35,0x03,0x32,0x36,0x10,0x26,0x20,0x06,0x10,0x16,0x17,
24766
+0x22,0x00,0x10,0x00,0x20,0x00,0x10,0x00,0x02,0x13,0x6b,0x6b,
24767
+0xaa,0x6b,0x6b,0x55,0x94,0x97,0x97,0xfe,0xd8,0x97,0x98,0x93,
24768
+0xe8,0xfe,0xe6,0x01,0x19,0x01,0xd2,0x01,0x19,0xfe,0xe7,0x01,
24769
+0xe4,0x6a,0x01,0x3e,0x6a,0x6a,0xfe,0xc2,0x6a,0xfe,0x62,0xea,
24770
+0x01,0xc8,0xe9,0xe9,0xfe,0x38,0xea,0x63,0x01,0x33,0x01,0xfc,
24771
+0x01,0x32,0xfe,0xce,0xfe,0x04,0xfe,0xcd,0x00,0x03,0x00,0x69,
24772
+0x00,0x00,0x04,0x03,0x04,0x27,0x00,0x07,0x00,0x0f,0x00,0x1b,
24773
+0x00,0x00,0x25,0x35,0x33,0x11,0x21,0x11,0x33,0x15,0x01,0x21,
24774
+0x15,0x23,0x11,0x21,0x11,0x23,0x01,0x15,0x23,0x11,0x33,0x15,
24775
+0x33,0x35,0x33,0x11,0x23,0x35,0x03,0x98,0x6b,0xfc,0x66,0x6b,
24776
+0x02,0xba,0xfd,0x50,0x6b,0x03,0x86,0x6b,0xfe,0x53,0x6b,0x6b,
24777
+0xaa,0x6b,0x6b,0xb8,0x6a,0xfe,0xde,0x01,0x22,0x6a,0x02,0xb7,
24778
+0x6a,0x01,0x22,0xfe,0xde,0xfe,0xdf,0x6a,0x01,0x3e,0x6a,0x6a,
24779
+0xfe,0xc2,0x6a,0x00,0x00,0x01,0x00,0x53,0x00,0x00,0x03,0xd9,
24780
+0x04,0x27,0x00,0x0d,0x00,0x00,0x09,0x01,0x21,0x35,0x33,0x11,
24781
+0x21,0x09,0x01,0x21,0x15,0x23,0x35,0x21,0x02,0xf6,0xfe,0x8a,
24782
+0x01,0xe3,0x6a,0xfc,0x86,0x01,0xe9,0xfe,0x37,0x03,0x66,0x6a,
24783
+0xfe,0x4f,0x02,0x60,0xfe,0x58,0x6a,0xfe,0xde,0x02,0x27,0x02,
24784
+0x00,0xd5,0x6a,0x00,0x00,0x03,0x00,0x68,0x00,0x00,0x04,0xa6,
24785
+0x04,0x27,0x00,0x1b,0x00,0x21,0x00,0x27,0x00,0x00,0x25,0x33,
24786
+0x15,0x21,0x35,0x33,0x35,0x26,0x27,0x26,0x10,0x37,0x36,0x33,
24787
+0x35,0x23,0x35,0x21,0x15,0x23,0x15,0x32,0x17,0x16,0x10,0x07,
24788
+0x06,0x07,0x27,0x11,0x22,0x06,0x14,0x16,0x21,0x32,0x36,0x34,
24789
+0x26,0x23,0x02,0xe3,0xae,0xfd,0xea,0xb0,0xb8,0x79,0x92,0x92,
24790
+0x7a,0xb7,0xb0,0x02,0x16,0xae,0xb7,0x7a,0x92,0x92,0x79,0xb8,
24791
+0xb8,0x7b,0x8f,0x83,0x01,0x3f,0x7b,0x8f,0x83,0x87,0x6a,0x6a,
24792
+0x6a,0x64,0x01,0x57,0x69,0x01,0x08,0x69,0x58,0x64,0x6b,0x67,
24793
+0x68,0x58,0x69,0xfe,0xf8,0x69,0x57,0x01,0x53,0x01,0xe4,0x8e,
24794
+0xc8,0x8e,0x8e,0xc8,0x8e,0x00,0x00,0x00,0x00,0x01,0x00,0x66,
24795
+0x00,0x00,0x04,0x90,0x04,0x44,0x00,0x22,0x00,0x00,0x25,0x33,
24796
+0x35,0x33,0x15,0x21,0x35,0x3e,0x01,0x35,0x34,0x26,0x20,0x06,
24797
+0x15,0x14,0x16,0x17,0x15,0x21,0x35,0x33,0x15,0x33,0x2e,0x01,
24798
+0x35,0x34,0x00,0x33,0x32,0x00,0x15,0x14,0x06,0x03,0x42,0xe3,
24799
+0x6a,0xfe,0x43,0x77,0x7a,0xb5,0xfe,0xda,0xb5,0x7a,0x76,0xfe,
24800
+0x43,0x6a,0xe3,0x99,0xb4,0x01,0x3a,0xdb,0xd7,0x01,0x3e,0xb4,
24801
+0x92,0x42,0xd4,0xcd,0x2e,0xb5,0x99,0xb9,0xc6,0xc6,0xb9,0x9a,
24802
+0xb4,0x2e,0xcd,0xd4,0x42,0x40,0xea,0x9d,0xe1,0x01,0x0a,0xfe,
24803
+0xf7,0xe2,0x9d,0xea,0x00,0x02,0x01,0x17,0x00,0x00,0x02,0x21,
24804
+0x05,0xf2,0x00,0x0b,0x00,0x11,0x00,0x21,0x40,0x10,0x0e,0x09,
24805
+0x61,0x03,0x69,0x0c,0x0f,0x01,0x0d,0x11,0x06,0x00,0x0c,0x00,
24806
+0x0d,0x12,0x10,0xc4,0xd4,0xc4,0xfc,0xc4,0x10,0xee,0x31,0x00,
24807
+0x2f,0xf6,0xfe,0xc5,0x30,0x01,0x34,0x36,0x33,0x32,0x16,0x15,
24808
+0x14,0x06,0x23,0x22,0x26,0x1b,0x01,0x35,0x33,0x15,0x13,0x01,
24809
+0x17,0x4c,0x39,0x37,0x4e,0x4e,0x37,0x39,0x4c,0x04,0x43,0x7b,
24810
+0x44,0x05,0x6d,0x38,0x4d,0x4e,0x37,0x38,0x4e,0x4e,0xfa,0xcb,
24811
+0x03,0x35,0xfc,0xfc,0xfc,0xcb,0x00,0x00,0x00,0x02,0x00,0x8b,
24812
+0xff,0xe5,0x03,0xe7,0x05,0xf2,0x00,0x0b,0x00,0x22,0x00,0x38,
24813
+0x40,0x1e,0x18,0x15,0x16,0x03,0x61,0x09,0x21,0x0c,0x15,0x1e,
24814
+0x65,0x0f,0x60,0x09,0x69,0x23,0x06,0x00,0x00,0x15,0x01,0x17,
24815
+0x21,0x01,0x0c,0x1b,0x1a,0x12,0x02,0x23,0x10,0xf4,0xec,0xd4,
24816
+0xec,0xd4,0xec,0xd4,0xec,0x31,0x00,0x10,0xe4,0xf4,0xec,0xc4,
24817
+0xd4,0xc4,0x10,0xfe,0xc5,0x10,0xce,0x30,0x01,0x14,0x06,0x23,
24818
+0x22,0x26,0x35,0x34,0x36,0x33,0x32,0x16,0x13,0x0e,0x01,0x23,
24819
+0x22,0x24,0x35,0x34,0x36,0x37,0x35,0x33,0x11,0x0e,0x01,0x15,
24820
+0x14,0x16,0x33,0x32,0x36,0x37,0x33,0x03,0x0a,0x4d,0x38,0x37,
24821
+0x4e,0x4e,0x37,0x39,0x4c,0xdd,0x6a,0xbe,0x55,0xdd,0xfe,0xfe,
24822
+0xde,0xdf,0x7b,0xb1,0xb4,0x93,0x7e,0x71,0x92,0x15,0x60,0x05,
24823
+0x6d,0x38,0x4e,0x4e,0x38,0x37,0x4e,0x4d,0xfa,0x9d,0x2f,0x2e,
24824
+0xd6,0xb6,0xba,0xec,0x33,0xfe,0xfe,0xb8,0x2b,0xca,0x9c,0x89,
24825
+0x9e,0x83,0x7b,0x00,0xff,0xff,0x00,0x8b,0xff,0xe5,0x03,0xe7,
24826
+0x05,0xf2,0x12,0x07,0x0c,0x63,0x00,0x00,0x01,0x75,0x00,0x00,
24827
+0x00,0x01,0x00,0x43,0xff,0xec,0x04,0xf1,0x04,0x27,0x00,0x26,
24828
+0x00,0x00,0x01,0x34,0x2b,0x01,0x35,0x13,0x23,0x22,0x06,0x15,
24829
+0x11,0x33,0x15,0x21,0x35,0x33,0x11,0x34,0x36,0x33,0x21,0x15,
24830
+0x03,0x1e,0x01,0x15,0x14,0x06,0x23,0x22,0x26,0x27,0x35,0x33,
24831
+0x1e,0x01,0x33,0x32,0x36,0x04,0x1a,0xf9,0x42,0xeb,0xfc,0x87,
24832
+0x9b,0xae,0xfd,0xe9,0xb1,0xc8,0xf8,0x01,0xcc,0xed,0x8e,0xd0,
24833
+0xba,0xb9,0x3e,0x8f,0x39,0x6a,0x06,0x4a,0x4b,0x47,0x56,0x01,
24834
+0x27,0xed,0x6a,0x01,0x3e,0x8a,0xd9,0xfe,0x11,0x6a,0x6a,0x02,
24835
+0x0a,0xe2,0xd1,0x6b,0xfe,0xc1,0x0b,0x9f,0xac,0x9e,0x9d,0x2c,
24836
+0x23,0xc0,0x72,0x3a,0x73,0x00,0x00,0x00,0x00,0x01,0x00,0x60,
24837
+0xff,0xe3,0x06,0x62,0x05,0xd5,0x00,0x19,0x00,0x6e,0x40,0x25,
24838
+0x0c,0x06,0x19,0x13,0x00,0x09,0x85,0x16,0x11,0x0d,0x04,0x03,
24839
+0x00,0x6f,0x0f,0x02,0x62,0x16,0x60,0x1a,0x03,0x24,0x05,0x0e,
24840
+0x24,0x0c,0x0f,0x10,0x24,0x12,0x01,0x24,0x05,0x11,0x00,0x21,
24841
+0x1a,0x10,0xf4,0xec,0xe4,0xd4,0xe4,0xfc,0xe4,0x10,0xe4,0x31,
24842
+0x00,0x10,0xe4,0xf4,0x3c,0xec,0x17,0x32,0x10,0xee,0x11,0x39,
24843
+0x39,0x39,0x39,0x30,0xb4,0x1f,0x1b,0x60,0x1b,0x02,0x01,0x5d,
24844
+0x01,0x4b,0xb0,0x12,0x54,0x4b,0xb0,0x13,0x54,0x5b,0x58,0xbd,
24845
+0x00,0x1a,0x00,0x40,0x00,0x01,0x00,0x1a,0x00,0x1a,0xff,0xc0,
24846
+0x38,0x11,0x37,0x38,0x59,0xb4,0x90,0x1b,0xa0,0x1b,0x02,0x5d,
24847
+0x01,0x23,0x35,0x21,0x15,0x23,0x11,0x10,0x16,0x33,0x32,0x36,
24848
+0x19,0x01,0x23,0x35,0x21,0x15,0x23,0x11,0x10,0x00,0x21,0x20,
24849
+0x00,0x11,0x01,0x1f,0xbf,0x02,0x04,0x7b,0xbb,0xe5,0xe5,0xbb,
24850
+0xb3,0x01,0xec,0xbe,0xfe,0xfa,0xfe,0xc6,0xfe,0xc6,0xfe,0xf5,
24851
+0x05,0x6a,0x6b,0x6b,0xfc,0xfc,0xfe,0xe2,0xe2,0xe2,0x01,0x1e,
24852
+0x03,0x04,0x6b,0x6b,0xfc,0xe8,0xfe,0xab,0xfe,0xe6,0x01,0x1c,
24853
+0x01,0x53,0x00,0x00,0x00,0x03,0x00,0x71,0x00,0x00,0x06,0x7c,
24854
+0x05,0xd5,0x00,0x15,0x00,0x1c,0x00,0x23,0x00,0x00,0x33,0x35,
24855
+0x33,0x11,0x23,0x35,0x33,0x11,0x23,0x35,0x21,0x20,0x17,0x16,
24856
+0x13,0x33,0x15,0x23,0x02,0x07,0x06,0x21,0x27,0x33,0x20,0x37,
24857
+0x36,0x13,0x21,0x25,0x26,0x27,0x26,0x21,0x23,0x11,0x7b,0xbe,
24858
+0xc8,0xc8,0xbe,0x02,0x52,0x01,0x81,0xd8,0xb9,0x1b,0x82,0x7e,
24859
+0x09,0xcf,0xd8,0xfe,0x7f,0xcb,0xbc,0x01,0x23,0x9c,0x95,0x07,
24860
+0xfc,0xe9,0x03,0x13,0x15,0x82,0x9c,0xfe,0xdc,0xbc,0x6a,0x02,
24861
+0x65,0x7d,0x02,0x1e,0x6b,0xc5,0xa9,0xfe,0xe5,0x7d,0xfe,0xb5,
24862
+0xbe,0xc6,0x6a,0xa6,0x9e,0x01,0x21,0x7d,0xf0,0x8a,0xa4,0xfd,
24863
+0xe2,0x00,0x00,0x00,0x00,0x03,0xff,0xed,0xff,0xe3,0x04,0xe3,
24864
+0x06,0x14,0x00,0x1d,0x00,0x26,0x00,0x2e,0x00,0x00,0x25,0x33,
24865
+0x15,0x21,0x35,0x0e,0x01,0x23,0x06,0x27,0x26,0x27,0x23,0x35,
24866
+0x33,0x36,0x37,0x36,0x33,0x32,0x16,0x17,0x11,0x23,0x35,0x21,
24867
+0x11,0x33,0x15,0x23,0x21,0x16,0x17,0x16,0x33,0x32,0x37,0x36,
24868
+0x3d,0x01,0x36,0x26,0x23,0x22,0x07,0x06,0x07,0x04,0x33,0xb0,
24869
+0xfe,0x98,0x36,0xa7,0x7b,0xc5,0x7c,0x6f,0x0b,0x7b,0x7a,0x0c,
24870
+0x6f,0x7c,0xc5,0x7b,0xa7,0x36,0xae,0x01,0x66,0xb0,0xb0,0xfd,
24871
+0x0b,0x08,0x40,0x48,0x8e,0x8c,0x4a,0x49,0x01,0x94,0x8c,0x8e,
24872
+0x48,0x40,0x08,0x6a,0x6a,0xa6,0x64,0x5f,0x01,0x9c,0x8a,0xd6,
24873
+0x6b,0xd6,0x8a,0x9b,0x5f,0x64,0x02,0x29,0x6a,0xfc,0x35,0x6b,
24874
+0xb4,0x63,0x71,0x64,0x64,0xc0,0x6b,0xbe,0xca,0x70,0x62,0xb6,
24875
+0x00,0x01,0x00,0x14,0xff,0xe3,0x06,0x1e,0x05,0xf0,0x00,0x2a,
24876
+0x00,0x00,0x01,0x2e,0x01,0x23,0x20,0x02,0x11,0x14,0x17,0x21,
24877
+0x15,0x21,0x16,0x17,0x16,0x33,0x32,0x36,0x37,0x11,0x21,0x35,
24878
+0x21,0x11,0x06,0x04,0x23,0x04,0x27,0x26,0x27,0x23,0x35,0x33,
24879
+0x26,0x35,0x10,0x00,0x21,0x32,0x04,0x17,0x11,0x05,0x7a,0x23,
24880
+0xde,0xc6,0xfe,0xfe,0xfe,0x01,0x01,0x8c,0xfe,0x7e,0x1b,0x5d,
24881
+0x83,0xfe,0x71,0xce,0x5d,0xfe,0xe7,0x01,0xe4,0x85,0xfe,0xcd,
24882
+0xaf,0xfe,0xaf,0xcc,0x95,0x28,0xc9,0xbb,0x01,0x01,0x98,0x01,
24883
+0x59,0x80,0x01,0x11,0x9a,0x04,0x17,0xbb,0xb3,0xfe,0xb4,0xfe,
24884
+0xb0,0x1c,0x1a,0x7d,0xc7,0x78,0xa9,0x38,0x38,0x01,0x81,0x6b,
24885
+0xfd,0xd3,0x4d,0x4d,0x01,0xd4,0x9b,0xe5,0x7d,0x1b,0x1b,0x01,
24886
+0x62,0x01,0xa5,0x3b,0x3c,0xfe,0x9e,0x00,0x00,0x03,0xff,0xed,
24887
+0xfe,0x39,0x04,0xe3,0x04,0x44,0x00,0x28,0x00,0x31,0x00,0x39,
24888
+0x00,0x00,0x03,0x35,0x33,0x36,0x37,0x36,0x33,0x32,0x16,0x17,
24889
+0x35,0x21,0x15,0x23,0x11,0x33,0x15,0x23,0x11,0x14,0x06,0x23,
24890
+0x22,0x26,0x27,0x35,0x33,0x1e,0x01,0x33,0x32,0x36,0x3d,0x01,
24891
+0x0e,0x01,0x23,0x06,0x27,0x26,0x27,0x33,0x16,0x17,0x16,0x33,
24892
+0x32,0x37,0x36,0x3d,0x01,0x36,0x26,0x23,0x22,0x07,0x06,0x07,
24893
+0x13,0x7a,0x0c,0x6f,0x7c,0xc5,0x7b,0xa7,0x36,0x01,0x68,0xb0,
24894
+0xb0,0xb0,0xfc,0xe9,0x69,0xc0,0x58,0x60,0x12,0x86,0x7d,0xa2,
24895
+0x97,0x36,0xa7,0x7b,0xc5,0x7c,0x6f,0x0b,0xd6,0x08,0x40,0x48,
24896
+0x8e,0x8c,0x4a,0x49,0x01,0x94,0x8c,0x8e,0x48,0x40,0x08,0x01,
24897
+0xde,0x6b,0xd6,0x8a,0x9b,0x5f,0x64,0xa6,0x6b,0xfe,0x8d,0x6b,
24898
+0xfe,0x39,0xe5,0xf9,0x26,0x26,0xdf,0x68,0x60,0xb7,0xc4,0x8f,
24899
+0x64,0x5f,0x01,0x9c,0x8a,0xd6,0xb4,0x63,0x71,0x64,0x64,0xc0,
24900
+0x6b,0xbe,0xca,0x70,0x62,0xb6,0x00,0x00,0x00,0x01,0x00,0x4b,
24901
+0xfd,0xd4,0x08,0xb3,0x08,0x23,0x00,0x13,0x00,0x00,0x13,0x21,
24902
+0x15,0x21,0x11,0x21,0x15,0x21,0x35,0x21,0x11,0x21,0x11,0x21,
24903
+0x15,0x21,0x35,0x21,0x11,0x21,0x4b,0x08,0x68,0xfe,0xf2,0x01,
24904
+0x0e,0xfc,0xb6,0x01,0x0f,0xfc,0x0e,0x01,0x10,0xfc,0xb5,0x01,
24905
+0x0e,0xfe,0xf2,0x08,0x23,0x69,0xf6,0x83,0x69,0x69,0x09,0x7d,
24906
+0xf6,0x83,0x69,0x69,0x09,0x7d,0x00,0x00,0x00,0x01,0x00,0x4b,
24907
+0xfd,0xd4,0x08,0xb3,0x08,0x23,0x00,0x13,0x00,0x00,0x01,0x21,
24908
+0x35,0x21,0x11,0x21,0x35,0x21,0x15,0x21,0x11,0x21,0x11,0x21,
24909
+0x35,0x21,0x15,0x21,0x11,0x21,0x08,0xb3,0xf7,0x98,0x01,0x0e,
24910
+0xfe,0xf2,0x03,0x4b,0xfe,0xf0,0x03,0xf2,0xfe,0xf1,0x03,0x4a,
24911
+0xfe,0xf2,0x01,0x0e,0xfd,0xd4,0x69,0x09,0x7d,0x69,0x69,0xf6,
24912
+0x83,0x09,0x7d,0x69,0x69,0xf6,0x83,0x00,0x00,0x01,0x00,0x17,
24913
+0xfd,0xd4,0x07,0xef,0x08,0x23,0x00,0x16,0x00,0x00,0x13,0x21,
24914
+0x13,0x23,0x03,0x2e,0x01,0x23,0x21,0x01,0x15,0x01,0x21,0x3e,
24915
+0x01,0x37,0x13,0x33,0x03,0x21,0x35,0x09,0x01,0x17,0x06,0x6b,
24916
+0x9c,0x6f,0x67,0x10,0x56,0x60,0xfc,0x30,0x04,0x78,0xfb,0x72,
24917
+0x04,0xe3,0x59,0x33,0x10,0x66,0x6e,0xd1,0xf8,0xf9,0x05,0x15,
24918
+0xfa,0xeb,0x08,0x23,0xfd,0xfc,0x01,0x41,0x30,0x2a,0xfb,0x68,
24919
+0x34,0xfb,0xf0,0x01,0x24,0x34,0x01,0x45,0xfd,0x58,0x3a,0x04,
24920
+0x81,0x05,0x48,0x00,0x00,0x01,0x00,0x42,0xfd,0xf3,0x05,0xa0,
24921
+0x08,0x90,0x00,0x25,0x00,0x00,0x01,0x32,0x13,0x36,0x37,0x12,
24922
+0x00,0x21,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x27,0x2e,
24923
+0x01,0x23,0x22,0x03,0x02,0x07,0x02,0x00,0x21,0x22,0x26,0x35,
24924
+0x34,0x36,0x33,0x32,0x16,0x17,0x1e,0x01,0x01,0xb8,0x96,0x14,
24925
+0x03,0x01,0x11,0x01,0x0c,0x01,0x1e,0x71,0x8e,0x5b,0x4e,0x3b,
24926
+0x4f,0x11,0x08,0x0d,0x17,0x97,0x14,0x06,0x05,0x18,0xfe,0xf4,
24927
+0xfe,0xeb,0x70,0x8f,0x61,0x56,0x2f,0x43,0x16,0x0e,0x0e,0xfe,
24928
+0x8d,0x03,0xcd,0x99,0x51,0x02,0xd8,0x02,0x74,0x77,0x5c,0x4c,
24929
+0x59,0x36,0x31,0x15,0x66,0xfc,0x95,0xfe,0xef,0x9c,0xfd,0x5b,
24930
+0xfd,0xb6,0x76,0x5c,0x4f,0x59,0x29,0x28,0x19,0x76,0x00,0x00,
24931
+0xff,0xff,0x00,0x42,0xfd,0xf3,0x09,0x5d,0x08,0x90,0x10,0x26,
24932
+0x0d,0xb6,0x00,0x00,0x10,0x07,0x0d,0xb6,0x03,0xbd,0x00,0x00,
24933
+0xff,0xff,0x00,0x42,0xfd,0xf3,0x0d,0x1b,0x08,0x90,0x10,0x26,
24934
+0x0d,0xb6,0x00,0x00,0x10,0x27,0x0d,0xb6,0x03,0xbd,0x00,0x00,
24935
+0x10,0x07,0x0d,0xb6,0x07,0x7b,0x00,0x00,0xff,0xff,0x00,0x42,
24936
+0xfd,0xf3,0x10,0xd8,0x08,0x90,0x10,0x26,0x0d,0xb6,0x00,0x00,
24937
+0x10,0x27,0x0d,0xb6,0x03,0xbd,0x00,0x00,0x10,0x27,0x0d,0xb6,
24938
+0x07,0x7b,0x00,0x00,0x10,0x07,0x0d,0xb6,0x0b,0x38,0x00,0x00,
24939
+0x00,0x01,0x00,0x42,0xfd,0xf3,0x05,0xa0,0x08,0x90,0x00,0x2d,
24940
+0x00,0x00,0x01,0x32,0x13,0x37,0x21,0x35,0x21,0x12,0x13,0x12,
24941
+0x21,0x32,0x16,0x15,0x14,0x06,0x23,0x22,0x26,0x27,0x2e,0x01,
24942
+0x23,0x22,0x03,0x07,0x21,0x15,0x21,0x06,0x15,0x02,0x03,0x02,
24943
+0x21,0x22,0x26,0x35,0x34,0x36,0x33,0x32,0x16,0x17,0x1e,0x01,
24944
+0x01,0xb8,0x96,0x14,0x03,0xfe,0x94,0x01,0x74,0x1c,0x74,0x86,
24945
+0x01,0x1e,0x71,0x8e,0x5b,0x4e,0x3b,0x4f,0x11,0x08,0x0d,0x17,
24946
+0x97,0x14,0x03,0x01,0x75,0xfe,0x84,0x01,0x18,0x86,0x86,0xfe,
24947
+0xeb,0x70,0x8f,0x61,0x56,0x2f,0x43,0x16,0x0e,0x0e,0xfe,0x8d,
24948
+0x03,0xcd,0xb8,0xf1,0x02,0x44,0x01,0x0f,0x01,0x3a,0x77,0x5c,
24949
+0x4c,0x59,0x36,0x31,0x15,0x66,0xfc,0x95,0x8c,0xf1,0x1a,0x16,
24950
+0xfd,0x5a,0xfe,0xdc,0xfe,0xdb,0x76,0x5c,0x4f,0x59,0x29,0x28,
24951
+0x19,0x76,0x00,0x00,0x00,0x01,0x00,0x42,0xfd,0xf3,0x05,0xa0,
24952
+0x08,0x90,0x00,0x37,0x00,0x00,0x01,0x02,0x07,0x02,0x21,0x22,
24953
+0x26,0x27,0x34,0x37,0x36,0x33,0x32,0x16,0x17,0x1e,0x01,0x33,
24954
+0x32,0x13,0x21,0x35,0x21,0x37,0x36,0x37,0x21,0x35,0x21,0x12,
24955
+0x37,0x12,0x21,0x32,0x16,0x15,0x14,0x07,0x06,0x27,0x22,0x26,
24956
+0x27,0x26,0x27,0x26,0x23,0x22,0x03,0x21,0x15,0x21,0x06,0x07,
24957
+0x21,0x15,0x03,0x6d,0x24,0x6d,0x86,0xfe,0xeb,0x70,0x8e,0x01,
24958
+0x31,0x30,0x56,0x2f,0x44,0x15,0x0e,0x0e,0x1b,0x8e,0x19,0xfe,
24959
+0x9a,0x01,0x6b,0x02,0x03,0x06,0xfe,0x8a,0x01,0x89,0x26,0x55,
24960
+0x86,0x01,0x1e,0x71,0x8e,0x2e,0x2d,0x4e,0x3b,0x50,0x10,0x08,
24961
+0x07,0x06,0x17,0x8a,0x1d,0x01,0x6e,0xfe,0x8c,0x05,0x04,0x01,
24962
+0x7d,0x01,0xf2,0xfe,0x14,0xee,0xfe,0xdb,0x76,0x5c,0x4f,0x2c,
24963
+0x2d,0x2a,0x27,0x19,0x76,0x03,0x65,0xf0,0x62,0x7f,0x73,0xed,
24964
+0x01,0x6c,0xc7,0x01,0x3a,0x76,0x5d,0x4c,0x2d,0x2d,0x01,0x36,
24965
+0x31,0x15,0x33,0x33,0xfd,0x29,0xed,0xe6,0x6e,0xf0,0x00,0x00,
24966
+0x00,0x01,0x04,0x1a,0x00,0x00,0x04,0x74,0x06,0x0e,0x00,0x03,
24967
+0x00,0x00,0x01,0x33,0x11,0x23,0x04,0x1a,0x5a,0x5a,0x06,0x0e,
24968
+0xf9,0xf2,0x00,0x00,0x00,0x01,0x04,0x1a,0x02,0x21,0x05,0x19,
24969
+0x06,0x3b,0x00,0x05,0x00,0x00,0x01,0x11,0x23,0x11,0x21,0x15,
24970
+0x04,0x74,0x5a,0x00,0xff,0x05,0xe1,0xfc,0x40,0x04,0x1a,0x5a,
24971
+0x00,0x01,0x00,0x00,0x00,0x00,0x01,0xd6,0x01,0xd3,0x00,0x03,
24972
+0x00,0x00,0x31,0x13,0x33,0x01,0xd8,0xfe,0xfe,0x97,0x01,0xd3,
24973
+0xfe,0x2d,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x03,0x02,
24974
+0x01,0xd3,0x10,0x27,0x0d,0xbe,0x01,0x2c,0x00,0x00,0x10,0x06,
24975
+0x0d,0xbe,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x04,0x2e,
24976
+0x01,0xd3,0x10,0x27,0x0d,0xbe,0x02,0x58,0x00,0x00,0x10,0x27,
24977
+0x0d,0xbe,0x01,0x2c,0x00,0x00,0x10,0x06,0x0d,0xbe,0x00,0x00,
24978
+0x00,0x01,0x00,0x00,0x00,0x00,0x01,0xd6,0x01,0xd3,0x00,0x03,
24979
+0x00,0x00,0x21,0x03,0x23,0x01,0x01,0xd6,0xd8,0xfe,0x01,0x69,
24980
+0x01,0xd3,0xfe,0x2d,0xff,0xff,0x00,0x00,0x00,0x00,0x03,0x02,
24981
+0x01,0xd3,0x10,0x27,0x0d,0xc1,0x01,0x2c,0x00,0x00,0x10,0x06,
24982
+0x0d,0xc1,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x00,0x04,0x2e,
24983
+0x01,0xd3,0x10,0x27,0x0d,0xc1,0x02,0x58,0x00,0x00,0x10,0x27,
24984
+0x0d,0xc1,0x01,0x2c,0x00,0x00,0x10,0x06,0x0d,0xc1,0x00,0x00,
24985
+0xff,0xff,0x00,0x00,0x00,0x00,0x05,0x5a,0x01,0xd3,0x10,0x27,
24986
+0x0d,0xbe,0x02,0x58,0x00,0x00,0x10,0x27,0x0d,0xbe,0x01,0x2c,
24987
+0x00,0x00,0x10,0x27,0x0d,0xbe,0x03,0x84,0x00,0x00,0x10,0x06,
24988
+0x0d,0xbe,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x02,0x59,0x99,
24989
+0x6b,0xef,0x1b,0x9f,0x5f,0x0f,0x3c,0xf5,0x00,0x1f,0x08,0x00,
24990
+0x00,0x00,0x00,0x00,0xd1,0x7e,0x0e,0xe1,0x00,0x00,0x00,0x00,
24991
+0xd1,0x7e,0x0e,0xe1,0xf9,0xd8,0xfd,0x3a,0x10,0xd8,0x08,0xe0,
24992
+0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,
24993
+0x00,0x01,0x00,0x00,0x07,0x6d,0xfe,0x1d,0x00,0x00,0x11,0x1d,
24994
+0xf9,0xd8,0xfc,0x70,0x10,0xd8,0x00,0x01,0x00,0x00,0x00,0x00,
24995
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0xc5,
24996
+0x04,0xcd,0x00,0x66,0x00,0x00,0x00,0x00,0x02,0xaa,0x00,0x00,
24997
+0x02,0x8b,0x00,0x00,0x03,0x37,0x01,0x17,0x03,0xae,0x00,0xc9,
24998
+0x06,0xb4,0x00,0x9e,0x05,0x17,0x00,0xae,0x07,0x9a,0x00,0x71,
24999
+0x07,0x1f,0x00,0x93,0x02,0x33,0x00,0xc9,0x03,0x1f,0x00,0xa2,
25000
+0x03,0x1f,0x00,0x91,0x04,0x00,0x00,0x21,0x06,0xb4,0x00,0xd9,
25001
+0x02,0x8b,0x00,0x4a,0x02,0xb4,0x00,0x5a,0x02,0x8b,0x00,0xc1,
25002
+0x02,0xb2,0x00,0x00,0x05,0x17,0x00,0x87,0x05,0x17,0x00,0xfa,
25003
+0x05,0x17,0x00,0x8b,0x05,0x17,0x00,0x9c,0x05,0x17,0x00,0x3f,
25004
+0x05,0x17,0x00,0xae,0x05,0x17,0x00,0x89,0x05,0x17,0x00,0xac,
25005
+0x05,0x17,0x00,0x89,0x05,0x17,0x00,0x81,0x02,0xb2,0x00,0xd5,
25006
+0x02,0xb2,0x00,0x4a,0x06,0xb4,0x00,0xd9,0x06,0xb4,0x00,0xd9,
25007
+0x06,0xb4,0x00,0xd9,0x04,0x4a,0x00,0x8b,0x08,0x00,0x00,0x87,
25008
+0x05,0xc7,0xff,0xf4,0x05,0xe1,0x00,0x71,0x06,0x1f,0x00,0x73,
25009
+0x06,0x6a,0x00,0x71,0x05,0xd7,0x00,0x71,0x05,0x8d,0x00,0x71,
25010
+0x06,0x64,0x00,0x73,0x06,0xfa,0x00,0x71,0x03,0x29,0x00,0x71,
25011
+0x03,0x35,0xff,0x54,0x05,0xfa,0x00,0x71,0x05,0x50,0x00,0x71,
25012
+0x08,0x31,0x00,0x66,0x07,0x00,0x00,0x64,0x06,0x8f,0x00,0x73,
25013
+0x05,0x62,0x00,0x71,0x06,0x8f,0x00,0x73,0x06,0x06,0x00,0x71,
25014
+0x05,0x7b,0x00,0xac,0x05,0x56,0x00,0x14,0x06,0xbe,0x00,0x60,
25015
+0x05,0xc7,0xff,0xec,0x08,0x39,0x00,0x0a,0x05,0xb2,0x00,0x0c,
25016
+0x05,0x48,0xff,0xe9,0x05,0x8f,0x00,0x5c,0x03,0x1f,0x00,0xb0,
25017
+0x02,0xb2,0x00,0x00,0x03,0x1f,0x00,0x9e,0x06,0xb4,0x00,0xd9,
25018
+0x04,0x00,0x00,0x00,0x04,0x00,0x00,0xaa,0x04,0xc5,0x00,0x66,
25019
+0x05,0x1f,0x00,0x3b,0x04,0x7b,0x00,0x66,0x05,0x1f,0x00,0x66,
25020
+0x04,0xbc,0x00,0x66,0x02,0xf6,0x00,0x4a,0x05,0x1f,0x00,0x66,
25021
+0x05,0x27,0x00,0x4a,0x02,0x8f,0x00,0x4a,0x02,0x7b,0xff,0x3b,
25022
+0x04,0xd9,0x00,0x3b,0x02,0x8f,0x00,0x3b,0x07,0x96,0x00,0x4a,
25023
+0x05,0x27,0x00,0x4a,0x04,0xd1,0x00,0x66,0x05,0x1f,0x00,0x3b,
25024
+0x05,0x1f,0x00,0x66,0x03,0xd3,0x00,0x4a,0x04,0x1b,0x00,0x73,
25025
+0x03,0x37,0x00,0x3b,0x05,0x27,0x00,0x37,0x04,0x85,0xff,0xfa,
25026
+0x06,0xd9,0x00,0x21,0x04,0x83,0x00,0x19,0x04,0x85,0xff,0xfa,
25027
+0x04,0x37,0x00,0x52,0x05,0x17,0x01,0x00,0x02,0xb2,0x01,0x08,
25028
+0x05,0x17,0x01,0x00,0x06,0xb4,0x00,0xd9,0x02,0x8b,0x00,0x00,
25029
+0x03,0x37,0x01,0x17,0x05,0x17,0x00,0x9a,0x05,0x17,0x00,0x89,
25030
+0x05,0x17,0x00,0x68,0x05,0x17,0xff,0xf0,0x02,0xb2,0x01,0x08,
25031
+0x04,0x00,0x00,0x5c,0x04,0x00,0x00,0xc9,0x08,0x00,0x01,0x1b,
25032
+0x03,0xcd,0x00,0x7d,0x04,0xe5,0x00,0x9e,0x06,0xb4,0x00,0xd9,
25033
+0x02,0xb4,0x00,0x5a,0x08,0x00,0x01,0x1b,0x04,0x00,0x00,0xd5,
25034
+0x04,0x00,0x00,0xc3,0x06,0xb4,0x00,0xd9,0x03,0x35,0x00,0x5a,
25035
+0x03,0x35,0x00,0x64,0x04,0x00,0x01,0x89,0x05,0x33,0x00,0x3b,
25036
+0x05,0x17,0x00,0x9e,0x02,0x8b,0x00,0xbe,0x04,0x00,0x01,0x23,
25037
+0x03,0x35,0x00,0x93,0x03,0xc3,0x00,0x5e,0x04,0xe5,0x00,0xc1,
25038
+0x07,0xc1,0x00,0x93,0x07,0xc1,0x00,0x93,0x07,0xc1,0x00,0x64,
25039
+0x04,0x4a,0x00,0x8b,0x05,0xc7,0xff,0xf4,0x05,0xc7,0xff,0xf4,
25040
+0x05,0xc7,0xff,0xf4,0x05,0xc7,0xff,0xf4,0x05,0xc7,0xff,0xf4,
25041
+0x05,0xc7,0xff,0xf4,0x08,0x02,0xff,0xdd,0x06,0x1f,0x00,0x73,
25042
+0x05,0xd7,0x00,0x71,0x05,0xd7,0x00,0x71,0x05,0xd7,0x00,0x71,
25043
+0x05,0xd7,0x00,0x71,0x03,0x29,0x00,0x71,0x03,0x29,0x00,0x71,
25044
+0x03,0x29,0x00,0x57,0x03,0x29,0x00,0x5f,0x06,0x75,0x00,0x71,
25045
+0x07,0x00,0x00,0x64,0x06,0x8f,0x00,0x73,0x06,0x8f,0x00,0x73,
25046
+0x06,0x8f,0x00,0x73,0x06,0x8f,0x00,0x73,0x06,0x8f,0x00,0x73,
25047
+0x06,0xb4,0x01,0x1b,0x06,0x8f,0x00,0x64,0x06,0xbe,0x00,0x60,
25048
+0x06,0xbe,0x00,0x60,0x06,0xbe,0x00,0x60,0x06,0xbe,0x00,0x60,
25049
+0x05,0x48,0xff,0xe9,0x05,0x68,0x00,0x71,0x05,0x58,0x00,0x3b,
25050
+0x04,0xc5,0x00,0x66,0x04,0xc5,0x00,0x66,0x04,0xc5,0x00,0x66,
25051
+0x04,0xc5,0x00,0x66,0x04,0xc5,0x00,0x66,0x04,0xc5,0x00,0x66,
25052
+0x07,0x85,0x00,0x66,0x04,0x7b,0x00,0x66,0x04,0xbc,0x00,0x66,
25053
+0x04,0xbc,0x00,0x66,0x04,0xbc,0x00,0x66,0x04,0xbc,0x00,0x66,
25054
+0x02,0x8f,0xff,0xf2,0x02,0x8f,0x00,0x4a,0x02,0x8f,0x00,0x09,
25055
+0x02,0x8f,0x00,0x11,0x04,0xd1,0x00,0x66,0x05,0x27,0x00,0x4a,
25056
+0x04,0xd1,0x00,0x66,0x04,0xd1,0x00,0x66,0x04,0xd1,0x00,0x66,
25057
+0x04,0xd1,0x00,0x66,0x04,0xd1,0x00,0x66,0x06,0xb4,0x00,0xd9,
25058
+0x04,0xd1,0x00,0x4c,0x05,0x27,0x00,0x37,0x05,0x27,0x00,0x37,
25059
+0x05,0x27,0x00,0x37,0x05,0x27,0x00,0x37,0x04,0x85,0xff,0xfa,
25060
+0x05,0x1f,0x00,0x3b,0x04,0x85,0xff,0xfa,0x05,0xc7,0xff,0xf4,
25061
+0x04,0xc5,0x00,0x66,0x05,0xc7,0xff,0xf4,0x04,0xc5,0x00,0x66,
25062
+0x05,0xc7,0xff,0xf4,0x04,0xc5,0x00,0x66,0x06,0x1f,0x00,0x73,
25063
+0x04,0x7b,0x00,0x66,0x06,0x1f,0x00,0x73,0x04,0x7b,0x00,0x66,
25064
+0x06,0x1f,0x00,0x73,0x04,0x7b,0x00,0x66,0x06,0x1f,0x00,0x73,
25065
+0x04,0x7b,0x00,0x66,0x06,0x6a,0x00,0x71,0x05,0x1f,0x00,0x66,
25066
+0x06,0x75,0x00,0x71,0x05,0x1f,0x00,0x66,0x05,0xd7,0x00,0x71,
25067
+0x04,0xbc,0x00,0x66,0x05,0xd7,0x00,0x71,0x04,0xbc,0x00,0x66,
25068
+0x05,0xd7,0x00,0x71,0x04,0xbc,0x00,0x66,0x05,0xd7,0x00,0x71,
25069
+0x04,0xbc,0x00,0x66,0x05,0xd7,0x00,0x71,0x04,0xbc,0x00,0x66,
25070
+0x06,0x64,0x00,0x73,0x05,0x1f,0x00,0x66,0x06,0x64,0x00,0x73,
25071
+0x05,0x1f,0x00,0x66,0x06,0x64,0x00,0x73,0x05,0x1f,0x00,0x66,
25072
+0x06,0x64,0x00,0x73,0x05,0x1f,0x00,0x66,0x06,0xfa,0x00,0x71,
25073
+0x05,0x27,0xff,0xc3,0x06,0xfa,0x00,0x71,0x05,0x27,0x00,0x4a,
25074
+0x03,0x29,0x00,0x4a,0x02,0x8f,0xff,0xfd,0x03,0x29,0x00,0x69,
25075
+0x02,0x8f,0xff,0xd3,0x03,0x29,0x00,0x5d,0x02,0x8f,0x00,0x0e,
25076
+0x03,0x29,0x00,0x71,0x02,0x8f,0x00,0x4a,0x03,0x29,0x00,0x71,
25077
+0x02,0x8f,0x00,0x4a,0x06,0x69,0x00,0x71,0x04,0x44,0x00,0x4a,
25078
+0x03,0x35,0xff,0x54,0x02,0x7b,0xff,0x3b,0x05,0xfa,0x00,0x71,
25079
+0x04,0xd9,0x00,0x3b,0x04,0xd9,0x00,0x3b,0x05,0x50,0x00,0x71,
25080
+0x02,0x8f,0x00,0x3b,0x05,0x50,0x00,0x71,0x02,0x8f,0x00,0x3b,
25081
+0x05,0x50,0x00,0x71,0x02,0x8f,0x00,0x3b,0x05,0x50,0x00,0x71,
25082
+0x02,0x8f,0x00,0x3b,0x05,0x5a,0x00,0x56,0x02,0x98,0x00,0x2d,
25083
+0x07,0x00,0x00,0x64,0x05,0x27,0x00,0x4a,0x07,0x00,0x00,0x64,
25084
+0x05,0x27,0x00,0x4a,0x07,0x00,0x00,0x64,0x05,0x27,0x00,0x4a,
25085
+0x06,0xee,0x00,0x71,0x06,0xbe,0x00,0x60,0x05,0x27,0x00,0x4a,
25086
+0x06,0x8f,0x00,0x73,0x04,0xd1,0x00,0x66,0x06,0x8f,0x00,0x73,
25087
+0x04,0xd1,0x00,0x66,0x06,0x8f,0x00,0x73,0x04,0xd1,0x00,0x66,
25088
+0x09,0x19,0x00,0x77,0x07,0xe9,0x00,0x66,0x06,0x06,0x00,0x71,
25089
+0x03,0xd3,0x00,0x4a,0x06,0x06,0x00,0x71,0x03,0xd3,0x00,0x4a,
25090
+0x06,0x06,0x00,0x71,0x03,0xd3,0x00,0x4a,0x05,0x7b,0x00,0xac,
25091
+0x04,0x1b,0x00,0x73,0x05,0x7b,0x00,0xac,0x04,0x1b,0x00,0x73,
25092
+0x05,0x7b,0x00,0xac,0x04,0x1b,0x00,0x73,0x05,0x7b,0x00,0xac,
25093
+0x04,0x1b,0x00,0x73,0x05,0x56,0x00,0x14,0x03,0x37,0x00,0x3b,
25094
+0x05,0x56,0x00,0x14,0x03,0x37,0x00,0x3b,0x05,0x56,0x00,0x14,
25095
+0x03,0x37,0x00,0x3b,0x06,0xbe,0x00,0x60,0x05,0x27,0x00,0x37,
25096
+0x06,0xbe,0x00,0x60,0x05,0x27,0x00,0x37,0x06,0xbe,0x00,0x60,
25097
+0x05,0x27,0x00,0x37,0x06,0xbe,0x00,0x60,0x05,0x27,0x00,0x37,
25098
+0x06,0xbe,0x00,0x60,0x05,0x27,0x00,0x37,0x06,0xbe,0x00,0x60,
25099
+0x05,0x27,0x00,0x37,0x08,0x39,0x00,0x0a,0x06,0xd9,0x00,0x21,
25100
+0x05,0x48,0xff,0xe9,0x04,0x85,0xff,0xfa,0x05,0x48,0xff,0xe9,
25101
+0x05,0x8f,0x00,0x5c,0x04,0x37,0x00,0x52,0x05,0x8f,0x00,0x5c,
25102
+0x04,0x37,0x00,0x52,0x05,0x8f,0x00,0x5c,0x04,0x37,0x00,0x52,
25103
+0x02,0xf6,0x00,0x4a,0x05,0x1f,0x00,0x3b,0x05,0xe1,0xff,0x40,
25104
+0x05,0xe1,0x00,0x71,0x05,0x1f,0x00,0x3b,0x05,0xe1,0x00,0x71,
25105
+0x05,0x1f,0x00,0x3b,0x06,0x1f,0x00,0x73,0x06,0x1f,0x00,0x73,
25106
+0x04,0x7b,0x00,0x66,0x06,0x75,0x00,0x71,0x06,0x6a,0xff,0x40,
25107
+0x05,0xe1,0x00,0x71,0x05,0x1f,0x00,0x3b,0x04,0xd1,0x00,0x66,
25108
+0x05,0xd7,0x00,0x71,0x06,0x8f,0x00,0x73,0x04,0xfc,0x00,0x7d,
25109
+0x05,0x8d,0xff,0x35,0x02,0xf6,0xff,0x3b,0x06,0x64,0x00,0x73,
25110
+0x05,0xb2,0x00,0x12,0x07,0x75,0x00,0x4a,0x03,0x29,0x00,0x71,
25111
+0x03,0x29,0x00,0x67,0x05,0xfa,0x00,0x71,0x04,0xd9,0x00,0x46,
25112
+0x02,0x8f,0x00,0x3b,0x05,0x12,0x00,0x54,0x07,0x96,0x00,0x4a,
25113
+0x07,0x00,0xff,0x33,0x05,0x27,0x00,0x4a,0x06,0x8f,0x00,0x73,
25114
+0x06,0x8f,0x00,0x6e,0x04,0xd1,0x00,0x63,0x08,0x51,0x00,0x73,
25115
+0x06,0x75,0x00,0x66,0x05,0x62,0xff,0x40,0x05,0x1f,0x00,0x3b,
25116
+0x06,0x06,0x00,0x71,0x05,0x7b,0x00,0xac,0x04,0x1b,0x00,0x73,
25117
+0x05,0xa8,0x00,0x53,0x02,0x98,0xff,0x3c,0x03,0x37,0x00,0x3b,
25118
+0x05,0x56,0x00,0x57,0x03,0x37,0x00,0x3b,0x05,0x56,0x00,0x14,
25119
+0x06,0xbe,0x00,0x5a,0x05,0x27,0x00,0x2c,0x06,0xa2,0x00,0x7d,
25120
+0x06,0x14,0x00,0x71,0x05,0xe8,0xff,0xe9,0x05,0x4d,0xff,0xfa,
25121
+0x05,0x8f,0x00,0x5c,0x04,0x37,0x00,0x52,0x04,0x84,0x00,0x66,
25122
+0x04,0x84,0x00,0x66,0x04,0x84,0x00,0x66,0x04,0x84,0x00,0x82,
25123
+0x05,0x17,0x00,0x8b,0x05,0x7e,0x00,0x71,0x04,0x84,0x00,0x27,
25124
+0x04,0x4a,0x00,0xde,0x05,0x14,0x00,0x3b,0x02,0x5c,0x00,0xdd,
25125
+0x03,0xf0,0x00,0xdd,0x03,0xac,0x00,0x12,0x02,0x5c,0x00,0xdd,
25126
+0x0b,0xf9,0x00,0x71,0x0a,0xa1,0x00,0x71,0x09,0x56,0x00,0x66,
25127
+0x08,0x85,0x00,0x71,0x07,0xcb,0x00,0x71,0x05,0x0a,0x00,0x3b,
25128
+0x0a,0x35,0x00,0x64,0x09,0x7b,0x00,0x64,0x07,0xa2,0x00,0x4a,
25129
+0x05,0xc7,0xff,0xf4,0x04,0xc5,0x00,0x66,0x03,0x29,0x00,0x56,
25130
+0x02,0x8f,0x00,0x08,0x06,0x8f,0x00,0x73,0x04,0xd1,0x00,0x66,
25131
+0x06,0xbe,0x00,0x60,0x05,0x27,0x00,0x37,0x06,0xbe,0x00,0x60,
25132
+0x05,0x27,0x00,0x37,0x06,0xbe,0x00,0x60,0x05,0x27,0x00,0x37,
25133
+0x06,0xbe,0x00,0x60,0x05,0x27,0x00,0x37,0x06,0xbe,0x00,0x60,
25134
+0x05,0x27,0x00,0x37,0x04,0xbc,0x00,0x66,0x05,0xc7,0xff,0xf4,
25135
+0x04,0xc5,0x00,0x66,0x05,0xc7,0xff,0xf4,0x04,0xc5,0x00,0x66,
25136
+0x08,0x02,0xff,0xdd,0x07,0x85,0x00,0x66,0x06,0xc8,0x00,0x73,
25137
+0x05,0x1f,0xff,0xed,0x06,0x64,0x00,0x73,0x05,0x1f,0x00,0x66,
25138
+0x05,0xfa,0x00,0x71,0x04,0xd9,0x00,0x0c,0x06,0x8f,0x00,0x73,
25139
+0x04,0xd1,0x00,0x66,0x06,0x8f,0x00,0x73,0x04,0xd1,0x00,0x66,
25140
+0x04,0x84,0x00,0x66,0x04,0x84,0x00,0x66,0x02,0x8f,0xff,0x3b,
25141
+0x0b,0xf9,0x00,0x71,0x0a,0xa1,0x00,0x71,0x09,0x56,0x00,0x66,
25142
+0x06,0x64,0x00,0x73,0x05,0x1f,0x00,0x66,0x09,0x3b,0x00,0x71,
25143
+0x05,0xa7,0x00,0x71,0x07,0x00,0x00,0x64,0x05,0x27,0x00,0x4a,
25144
+0x05,0xc7,0xff,0xf4,0x04,0xc5,0x00,0x66,0x08,0x02,0xff,0xdd,
25145
+0x07,0x85,0x00,0x66,0x06,0x8f,0x00,0x64,0x04,0xd1,0x00,0x4c,
25146
+0x05,0xc7,0xff,0xf4,0x04,0xc5,0x00,0x66,0x05,0xc7,0xff,0xf4,
25147
+0x04,0xc5,0x00,0x66,0x05,0xd7,0x00,0x71,0x04,0xbc,0x00,0x66,
25148
+0x05,0xd7,0x00,0x71,0x04,0xbc,0x00,0x66,0x03,0x29,0xff,0xda,
25149
+0x02,0x8f,0xff,0x86,0x03,0x29,0x00,0x5f,0x02,0x8f,0x00,0x0f,
25150
+0x06,0x8f,0x00,0x73,0x04,0xd1,0x00,0x66,0x06,0x8f,0x00,0x73,
25151
+0x04,0xd1,0x00,0x66,0x06,0x06,0x00,0x71,0x03,0xd3,0x00,0x4a,
25152
+0x06,0x06,0x00,0x71,0x03,0xd3,0x00,0x4a,0x06,0xbe,0x00,0x60,
25153
+0x05,0x27,0x00,0x37,0x06,0xbe,0x00,0x60,0x05,0x27,0x00,0x37,
25154
+0x05,0x7b,0x00,0xac,0x04,0x1b,0x00,0x73,0x05,0x56,0x00,0x14,
25155
+0x03,0x37,0x00,0x3b,0x05,0x04,0x00,0x9c,0x04,0x2c,0x00,0x47,
25156
+0x06,0xfa,0x00,0x71,0x05,0x27,0x00,0x0c,0x06,0xbe,0x00,0x60,
25157
+0x06,0x83,0x00,0x66,0x04,0x93,0x00,0x52,0x04,0x6b,0x00,0x66,
25158
+0x05,0x8f,0x00,0x5c,0x04,0x37,0x00,0x52,0x05,0xc7,0xff,0xf4,
25159
+0x04,0xc5,0x00,0x66,0x05,0xd7,0x00,0x71,0x04,0xbc,0x00,0x66,
25160
+0x06,0x8f,0x00,0x73,0x04,0xd1,0x00,0x66,0x06,0x8f,0x00,0x73,
25161
+0x04,0xd1,0x00,0x66,0x06,0x8f,0x00,0x73,0x04,0xd1,0x00,0x66,
25162
+0x06,0x8f,0x00,0x73,0x04,0xd1,0x00,0x66,0x05,0x48,0xff,0xe9,
25163
+0x04,0x85,0xff,0xfa,0x04,0x01,0x00,0x3b,0x06,0xa7,0x00,0x4a,
25164
+0x03,0xf3,0x00,0x3b,0x02,0x7b,0xff,0x3b,0x07,0xae,0x00,0x66,
25165
+0x07,0xae,0x00,0x66,0x05,0xc7,0xff,0xf4,0x06,0x1f,0x00,0x2e,
25166
+0x04,0x7b,0x00,0x25,0x05,0x50,0x00,0x67,0x05,0x56,0xff,0xca,
25167
+0x04,0x1b,0x00,0x73,0x04,0x37,0x00,0x52,0x04,0xab,0x00,0x4c,
25168
+0x03,0xb6,0x00,0x4c,0x05,0xe1,0x00,0x67,0x06,0xbe,0x00,0x56,
25169
+0x05,0xc7,0xff,0xf4,0x05,0xd7,0x00,0x71,0x04,0xbc,0x00,0x66,
25170
+0x03,0x35,0xff,0x54,0x02,0x85,0xff,0x3b,0x06,0x42,0x00,0x73,
25171
+0x05,0x1f,0x00,0x66,0x06,0x06,0x00,0x67,0x03,0xd3,0x00,0x4a,
25172
+0x05,0x48,0xff,0xe9,0x04,0x85,0xff,0xfa,0x04,0xc5,0x00,0x66,
25173
+0x05,0x1f,0x00,0x66,0x05,0x1f,0x00,0x66,0x05,0x1f,0x00,0x3b,
25174
+0x04,0x7b,0x00,0x66,0x04,0x7b,0x00,0x66,0x05,0x2d,0x00,0x66,
25175
+0x05,0x76,0x00,0x66,0x04,0xbc,0x00,0x66,0x04,0xbc,0x00,0x66,
25176
+0x06,0xbf,0x00,0x78,0x04,0x25,0x00,0x65,0x04,0x12,0x00,0x68,
25177
+0x06,0x2f,0x00,0x65,0x04,0xe8,0x00,0x66,0x02,0x85,0xff,0x3b,
25178
+0x05,0x77,0x00,0x66,0x05,0x1f,0x00,0x66,0x04,0xa3,0x00,0x66,
25179
+0x04,0xcb,0x00,0x19,0x04,0x83,0x00,0x90,0x05,0x27,0x00,0x37,
25180
+0x05,0x27,0x00,0x54,0x05,0x27,0x00,0x54,0x02,0x8f,0x00,0x4a,
25181
+0x03,0x23,0x00,0x4a,0x02,0x8f,0x00,0x4a,0x03,0x0b,0x00,0x49,
25182
+0x03,0xa2,0x00,0x4a,0x02,0xe7,0x00,0x3b,0x05,0xa2,0x00,0x3b,
25183
+0x07,0x96,0x00,0x37,0x07,0x96,0x00,0x37,0x07,0x96,0x00,0x4a,
25184
+0x05,0x26,0xff,0x3b,0x05,0x8d,0x00,0x4a,0x05,0x2b,0x00,0x45,
25185
+0x04,0xd1,0x00,0x66,0x06,0x52,0x00,0x66,0x06,0x92,0x00,0x66,
25186
+0x05,0x89,0x00,0x66,0x04,0x02,0x00,0x4a,0x04,0x02,0x00,0x4a,
25187
+0x04,0x69,0x00,0x4a,0x03,0xd3,0x00,0x4a,0x03,0xd3,0x00,0x4a,
25188
+0x03,0x9f,0x00,0x54,0x03,0x9f,0x00,0x54,0x04,0xa6,0x00,0x4a,
25189
+0x04,0xa6,0x00,0x4a,0x04,0x1b,0x00,0x73,0x02,0x2c,0xff,0x3b,
25190
+0x02,0xf6,0xff,0x3b,0x03,0xe5,0x00,0x4a,0x02,0x98,0xff,0x3c,
25191
+0x03,0x37,0x00,0x3b,0x03,0x37,0x00,0x3b,0x05,0x27,0x00,0x37,
25192
+0x04,0xf6,0x00,0x66,0x04,0xdd,0x00,0x4a,0x04,0x85,0xff,0xfa,
25193
+0x06,0xd9,0x00,0x21,0x04,0x85,0xff,0xfa,0x05,0x3e,0x00,0x54,
25194
+0x04,0xc7,0x00,0x52,0x04,0x7b,0x00,0x52,0x04,0x84,0x00,0x66,
25195
+0x04,0x7b,0x00,0x82,0x04,0x4a,0x00,0x9b,0x04,0x4a,0x00,0x9b,
25196
+0x04,0x4a,0x00,0x9b,0x03,0x5d,0x00,0x92,0x06,0x8f,0x00,0x73,
25197
+0x04,0x81,0x00,0x49,0x04,0xe8,0x00,0x66,0x05,0x47,0x00,0x66,
25198
+0x05,0x55,0x00,0x46,0x02,0xed,0xff,0x3b,0x04,0xd9,0x00,0x3b,
25199
+0x04,0x58,0x00,0x54,0x05,0x77,0x00,0x66,0x04,0x4a,0x00,0x9b,
25200
+0x04,0x4a,0x00,0x9b,0x07,0xf8,0x00,0x66,0x08,0x44,0x00,0x66,
25201
+0x07,0xfc,0x00,0x66,0x06,0x96,0x00,0x3b,0x04,0xc8,0x00,0x3b,
25202
+0x06,0x9a,0x00,0x3b,0x07,0x26,0x00,0x4a,0x05,0xcc,0x00,0x3b,
25203
+0x05,0x68,0x00,0x3b,0x04,0xc8,0x00,0x47,0x03,0x8b,0x00,0x47,
25204
+0x06,0x3f,0x00,0x3b,0x06,0x22,0x00,0x3b,0x03,0x76,0x00,0x2e,
25205
+0x03,0x70,0x00,0x2e,0x02,0x1d,0x00,0x2e,0x02,0xc7,0x00,0x2e,
25206
+0x02,0xc7,0x00,0x2e,0x03,0x71,0x00,0x2e,0x03,0x22,0x00,0x2e,
25207
+0x04,0xaf,0x00,0x2e,0x03,0x63,0x00,0x2e,0x02,0x3a,0x00,0xa0,
25208
+0x03,0xae,0x00,0xa0,0x02,0x8b,0x00,0xd1,0x02,0x8b,0x00,0xd1,
25209
+0x02,0x8b,0x00,0xd1,0x02,0x75,0x00,0x75,0x02,0x75,0x00,0x75,
25210
+0x02,0x3e,0x00,0x2e,0x02,0x3f,0x00,0x2e,0x04,0x00,0x01,0x0b,
25211
+0x04,0x00,0x01,0x0b,0x04,0x00,0x00,0xc1,0x04,0x00,0x00,0xc1,
25212
+0x04,0x00,0x00,0xc1,0x04,0x00,0x00,0xc1,0x02,0x33,0x00,0xd4,
25213
+0x04,0x00,0x00,0xd5,0x04,0x00,0x01,0x89,0x04,0x00,0x00,0xaa,
25214
+0x02,0x33,0x00,0xd4,0x04,0x00,0x00,0xd5,0x02,0xb2,0x00,0xd8,
25215
+0x02,0xb2,0x00,0xd8,0x02,0x75,0x00,0x75,0x02,0x75,0x00,0x75,
25216
+0x02,0xa1,0x00,0x5a,0x02,0xa1,0x00,0x5a,0x04,0x00,0x00,0xc7,
25217
+0x04,0x00,0x01,0x8b,0x04,0x00,0x00,0xee,0x04,0x00,0x01,0x4c,
25218
+0x04,0x00,0x00,0xb6,0x04,0x00,0x00,0xf4,0x03,0x57,0x00,0x02,
25219
+0x03,0x05,0x00,0x10,0x01,0xf1,0x00,0x2e,0x02,0xb2,0x00,0x37,
25220
+0x03,0x64,0x00,0x2e,0x02,0x3f,0x00,0x2e,0x03,0xf2,0x00,0xd6,
25221
+0x03,0xf2,0x00,0xd6,0x03,0xf2,0x00,0xd6,0x03,0xf2,0x00,0xd6,
25222
+0x03,0xf2,0x00,0xd6,0x04,0x00,0x00,0xc1,0x03,0xdf,0x00,0xd1,
25223
+0x04,0x00,0x00,0xc1,0x04,0x00,0x00,0xc1,0x04,0x00,0x00,0xee,
25224
+0x04,0x00,0x00,0xb6,0x00,0x00,0xfc,0xb0,0x00,0x00,0xfd,0x89,
25225
+0x00,0x00,0xfc,0xc1,0x00,0x00,0xfc,0xb0,0x00,0x00,0xfc,0xd5,
25226
+0x00,0x00,0xfc,0x00,0x00,0x00,0xfc,0xc7,0x00,0x00,0xfd,0x8b,
25227
+0x00,0x00,0xfc,0xc3,0x00,0x00,0xfd,0x42,0x00,0x00,0xfc,0xe2,
25228
+0x00,0x00,0xfc,0xf4,0x00,0x00,0xfc,0xc1,0x00,0x00,0xfd,0xb8,
25229
+0x00,0x00,0xfc,0xda,0x00,0x00,0xfc,0x41,0x00,0x00,0xfc,0xc7,
25230
+0x00,0x00,0xfc,0xc7,0x00,0x00,0xfd,0xbc,0x00,0x00,0xfd,0x87,
25231
+0x00,0x00,0xfd,0x6c,0x00,0x00,0xff,0x7e,0x00,0x00,0xfc,0xb4,
25232
+0x00,0x00,0xfd,0x8a,0x00,0x00,0xfd,0x5b,0x00,0x00,0xfd,0x6c,
25233
+0x00,0x00,0xfe,0x70,0x00,0x00,0xfe,0xd0,0x00,0x00,0xfd,0x84,
25234
+0x00,0x00,0xfd,0x13,0x00,0x00,0xfd,0x13,0x00,0x00,0xfd,0x15,
25235
+0x00,0x00,0xfd,0x13,0x00,0x00,0xfc,0xa7,0x00,0x00,0xfc,0xdd,
25236
+0x00,0x00,0xfd,0x8b,0x00,0x00,0xfc,0xc7,0x00,0x00,0xfd,0x28,
25237
+0x00,0x00,0xfd,0x37,0x00,0x00,0xfd,0x23,0x00,0x00,0xfd,0x4c,
25238
+0x00,0x00,0xfd,0xb6,0x00,0x00,0xfc,0xd5,0x00,0x00,0xfc,0xc3,
25239
+0x00,0x00,0xfc,0xc1,0x00,0x00,0xfc,0xc1,0x00,0x00,0xfc,0xc7,
25240
+0x00,0x00,0xfc,0xc7,0x00,0x00,0xfc,0xb0,0x00,0x00,0xfc,0xd5,
25241
+0x00,0x00,0xfc,0x00,0x00,0x00,0xfc,0x00,0x00,0x00,0xfa,0x1c,
25242
+0x00,0x00,0xfd,0xad,0x00,0x00,0xfb,0x13,0x00,0x00,0xfb,0x88,
25243
+0x00,0x00,0xf9,0xd8,0x00,0x00,0xfd,0x7f,0x00,0x00,0xfc,0xd0,
25244
+0x00,0x00,0xfc,0xed,0x00,0x00,0xfc,0xc3,0x00,0x00,0xfd,0x22,
25245
+0x00,0x00,0xfd,0x81,0x00,0x00,0xfc,0x00,0x00,0x00,0xfd,0x87,
25246
+0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x1f,0x00,0x00,0xfc,0x8f,
25247
+0x00,0x00,0xfc,0x70,0x05,0xec,0x00,0x71,0x04,0x40,0x00,0x46,
25248
+0x05,0x56,0x00,0x14,0x04,0x6d,0x00,0x53,0x02,0x3a,0x00,0xa0,
25249
+0x02,0x3a,0x00,0xa0,0x07,0x00,0x00,0x64,0x05,0x55,0x00,0x46,
25250
+0x04,0x00,0x01,0xb5,0x04,0x7b,0x00,0x66,0x04,0x7b,0x00,0x66,
25251
+0x04,0x7b,0x00,0x66,0x02,0xb2,0x00,0x4a,0x04,0x00,0x01,0x89,
25252
+0x04,0x00,0x00,0xc9,0x05,0xc7,0xff,0xf4,0x02,0x8b,0x00,0xbe,
25253
+0x07,0x33,0x00,0x0f,0x08,0x50,0x00,0x0f,0x04,0x7f,0x00,0x0f,
25254
+0x06,0xaf,0x00,0x0f,0x07,0x2e,0x00,0x0f,0x06,0xd2,0x00,0x0f,
25255
+0x03,0x23,0x00,0x11,0x05,0xc7,0xff,0xf4,0x05,0xe1,0x00,0x71,
25256
+0x05,0x8d,0x00,0x71,0x05,0xc7,0x00,0x4e,0x05,0xd7,0x00,0x71,
25257
+0x05,0x8f,0x00,0x5c,0x06,0xfa,0x00,0x71,0x06,0x8f,0x00,0x73,
25258
+0x03,0x29,0x00,0x71,0x05,0xfa,0x00,0x71,0x05,0xc7,0xff,0xf4,
25259
+0x08,0x31,0x00,0x66,0x07,0x00,0x00,0x64,0x05,0xa1,0x00,0x71,
25260
+0x06,0x8f,0x00,0x73,0x06,0xfa,0x00,0x71,0x05,0x62,0x00,0x71,
25261
+0x05,0xa8,0x00,0x53,0x05,0x56,0x00,0x14,0x05,0x48,0xff,0xe9,
25262
+0x06,0x8f,0x00,0x73,0x05,0xb2,0x00,0x0c,0x07,0x04,0x00,0x60,
25263
+0x06,0xa2,0x00,0x7d,0x03,0x29,0x00,0x62,0x05,0x48,0xff,0xe9,
25264
+0x05,0x67,0x00,0x66,0x04,0x25,0x00,0x65,0x04,0xcb,0x00,0x4a,
25265
+0x03,0x23,0x00,0x4a,0x04,0xdd,0x00,0x4a,0x05,0x67,0x00,0x66,
25266
+0x04,0xa0,0x00,0x81,0x04,0xc8,0x00,0x4a,0x04,0xd1,0x00,0x66,
25267
+0x04,0x25,0x00,0x65,0x04,0x56,0x00,0x53,0x04,0xcb,0x00,0x4a,
25268
+0x04,0xd1,0x00,0x66,0x03,0x23,0x00,0x4a,0x05,0x00,0x00,0x46,
25269
+0x05,0x12,0x00,0x54,0x05,0x33,0x00,0x46,0x04,0xdd,0x00,0x4a,
25270
+0x04,0x68,0x00,0x53,0x04,0xd1,0x00,0x66,0x05,0x42,0x00,0x4a,
25271
+0x04,0xb4,0x00,0x81,0x04,0x7b,0x00,0x66,0x05,0x76,0x00,0x66,
25272
+0x04,0x6d,0x00,0x53,0x04,0xdd,0x00,0x4a,0x05,0x9a,0x00,0x5a,
25273
+0x04,0xd9,0x00,0x19,0x06,0x46,0x00,0x81,0x06,0x86,0x00,0x5a,
25274
+0x03,0x23,0x00,0x15,0x04,0xdd,0x00,0x4a,0x04,0xd1,0x00,0x66,
25275
+0x04,0xdd,0x00,0x4a,0x06,0x86,0x00,0x5a,0x05,0xfa,0x00,0x71,
25276
+0x04,0xa9,0x00,0x66,0x05,0xb8,0x00,0x46,0x05,0x7e,0x00,0x3d,
25277
+0x06,0xfe,0x00,0x0f,0x05,0x7e,0x00,0x3d,0x05,0x74,0x00,0x4d,
25278
+0x06,0x86,0x00,0x2c,0x04,0xfd,0x00,0x60,0x06,0x8f,0x00,0x73,
25279
+0x04,0xd1,0x00,0x66,0x06,0x1f,0x00,0x73,0x04,0x7b,0x00,0x66,
25280
+0x05,0x8d,0x00,0x71,0x03,0xb4,0xff,0x47,0x04,0xb8,0x00,0x6b,
25281
+0x05,0x47,0x00,0xbf,0x06,0x42,0x00,0x9c,0x04,0x9d,0x00,0x5c,
25282
+0x04,0xfd,0x00,0x60,0x04,0xb4,0x00,0x81,0x04,0x7b,0x00,0x66,
25283
+0x02,0x7b,0xff,0x3b,0x06,0x8f,0x00,0x73,0x04,0x7b,0x00,0x66,
25284
+0x04,0x7b,0x00,0x66,0x05,0x68,0x00,0x71,0x05,0x1f,0x00,0x3b,
25285
+0x06,0x1f,0x00,0x73,0x08,0x31,0x00,0x66,0x05,0xaa,0x00,0x63,
25286
+0x04,0xb4,0x00,0x55,0x06,0x1f,0x00,0x73,0x06,0x1f,0x00,0x73,
25287
+0x06,0x1f,0x00,0x73,0x05,0xd7,0x00,0x71,0x05,0xd7,0x00,0x71,
25288
+0x06,0x64,0xff,0xb1,0x05,0x4c,0x00,0x71,0x06,0x1f,0x00,0x73,
25289
+0x05,0x7b,0x00,0xac,0x03,0x29,0x00,0x71,0x03,0x29,0x00,0x5f,
25290
+0x03,0x35,0xff,0x54,0x08,0xad,0x00,0x34,0x08,0xf2,0x00,0x71,
25291
+0x06,0xfa,0xff,0xb1,0x06,0x31,0x00,0x71,0x06,0xfa,0x00,0x71,
25292
+0x05,0xc8,0x00,0x18,0x06,0xfa,0x00,0x71,0x06,0x0f,0x00,0x18,
25293
+0x05,0xe1,0x00,0x71,0x05,0xe1,0x00,0x71,0x05,0x4c,0x00,0x71,
25294
+0x06,0x81,0x00,0x66,0x05,0xd7,0x00,0x71,0x08,0xfd,0x00,0x18,
25295
+0x04,0xfc,0x00,0x6f,0x06,0xfa,0x00,0x71,0x06,0xfa,0x00,0x71,
25296
+0x06,0x31,0x00,0x71,0x06,0xad,0x00,0x34,0x08,0x31,0x00,0x66,
25297
+0x06,0xfa,0x00,0x71,0x06,0x8f,0x00,0x73,0x06,0xfa,0x00,0x71,
25298
+0x05,0x62,0x00,0x71,0x06,0x1f,0x00,0x73,0x05,0x56,0x00,0x14,
25299
+0x05,0xc8,0x00,0x18,0x06,0xa4,0x00,0x75,0x05,0xb2,0x00,0x0c,
25300
+0x06,0xfa,0x00,0x71,0x06,0x2f,0x00,0x14,0x09,0x21,0x00,0x71,
25301
+0x09,0x21,0x00,0x71,0x06,0x5b,0x00,0x46,0x07,0xdf,0x00,0x71,
25302
+0x05,0x64,0x00,0x71,0x06,0x1f,0x00,0x73,0x09,0x8c,0x00,0x71,
25303
+0x06,0x76,0x00,0x46,0x04,0xc5,0x00,0x66,0x04,0xd1,0x00,0x57,
25304
+0x04,0x81,0x00,0x49,0x04,0x31,0x00,0x3b,0x04,0xed,0x00,0x4a,
25305
+0x04,0xbc,0x00,0x66,0x07,0x5c,0x00,0x19,0x04,0x5d,0x00,0x5a,
25306
+0x05,0x55,0x00,0x46,0x05,0x55,0x00,0x46,0x05,0x00,0x00,0x46,
25307
+0x05,0x15,0x00,0x24,0x06,0x39,0x00,0x4a,0x05,0x55,0x00,0x46,
25308
+0x04,0xd1,0x00,0x66,0x05,0x55,0x00,0x46,0x05,0x1f,0x00,0x3b,
25309
+0x04,0x7b,0x00,0x66,0x04,0x6d,0x00,0x53,0x04,0xb5,0x00,0x18,
25310
+0x06,0x43,0x00,0x4f,0x04,0x83,0x00,0x19,0x05,0x25,0x00,0x4a,
25311
+0x05,0x4a,0x00,0x46,0x07,0x70,0x00,0x4a,0x07,0x70,0x00,0x4a,
25312
+0x05,0x17,0x00,0x3c,0x06,0x5e,0x00,0x3c,0x04,0x5b,0x00,0x3c,
25313
+0x04,0x7b,0x00,0x66,0x06,0xf7,0x00,0x3b,0x05,0x0c,0x00,0x41,
25314
+0x04,0xbc,0x00,0x66,0x04,0xbc,0x00,0x66,0x04,0xfd,0x00,0x2b,
25315
+0x04,0x31,0x00,0x3b,0x04,0x7b,0x00,0x66,0x04,0x1b,0x00,0x73,
25316
+0x02,0x8f,0x00,0x4a,0x02,0x8f,0x00,0x11,0x02,0x7b,0xff,0x3b,
25317
+0x06,0xbf,0x00,0x24,0x06,0xe2,0x00,0x46,0x05,0x27,0x00,0x2b,
25318
+0x05,0x00,0x00,0x46,0x05,0x55,0x00,0x46,0x04,0xb5,0x00,0x18,
25319
+0x05,0x40,0x00,0x3c,0x06,0x18,0x00,0x46,0x04,0xd3,0x00,0x3c,
25320
+0x09,0x08,0x00,0x71,0x06,0xac,0x00,0x3b,0x08,0xfd,0x00,0x18,
25321
+0x07,0x5c,0x00,0x19,0x0a,0xdf,0x00,0x71,0x08,0xe7,0x00,0x3b,
25322
+0x07,0x8d,0x00,0x18,0x07,0x38,0xff,0xd6,0x06,0x8f,0x00,0x73,
25323
+0x04,0x6b,0x00,0x66,0x06,0xe0,0x00,0x18,0x05,0x6d,0x00,0x18,
25324
+0x06,0xe0,0x00,0x18,0x05,0x6d,0x00,0x18,0x05,0xa7,0x00,0x32,
25325
+0x04,0x5b,0x00,0x24,0x05,0x60,0x00,0x71,0x04,0x3b,0x00,0x3b,
25326
+0x05,0x4c,0x00,0x67,0x04,0x30,0x00,0x3b,0x05,0xd3,0x00,0x71,
25327
+0x04,0xe9,0x00,0x3b,0x08,0xfd,0x00,0x18,0x07,0x5c,0x00,0x19,
25328
+0x05,0x17,0x00,0x6f,0x04,0x4b,0x00,0x5a,0x06,0x31,0x00,0x71,
25329
+0x04,0xd9,0x00,0x3b,0x06,0x31,0x00,0x64,0x05,0x00,0x00,0x32,
25330
+0x07,0x20,0x00,0x46,0x05,0xbc,0x00,0x3c,0x06,0xfa,0x00,0x71,
25331
+0x05,0x21,0x00,0x46,0x09,0x1d,0x00,0x71,0x06,0xd1,0x00,0x46,
25332
+0x09,0xa4,0x00,0x71,0x07,0x87,0x00,0x3b,0x06,0x1f,0x00,0x73,
25333
+0x04,0x7b,0x00,0x66,0x05,0x56,0x00,0x14,0x04,0x6d,0x00,0x53,
25334
+0x05,0x48,0xff,0xe9,0x04,0x85,0xff,0xfa,0x05,0x48,0xff,0xe9,
25335
+0x04,0x85,0xff,0xfa,0x05,0xb2,0x00,0x0c,0x04,0x83,0x00,0x19,
25336
+0x07,0x9d,0x00,0x14,0x05,0xdc,0x00,0x53,0x05,0xfe,0xff,0xc8,
25337
+0x05,0x85,0x00,0x46,0x05,0xfe,0xff,0xc8,0x05,0x27,0x00,0x4a,
25338
+0x03,0x29,0x00,0x71,0x08,0xfd,0x00,0x18,0x07,0x5c,0x00,0x19,
25339
+0x05,0xfa,0x00,0x71,0x04,0xd9,0x00,0x3b,0x06,0xfa,0x00,0x71,
25340
+0x05,0x55,0x00,0x46,0x05,0xfe,0xff,0xc8,0x05,0x55,0x00,0x46,
25341
+0x02,0x8f,0x00,0x3b,0x06,0x0f,0x00,0x18,0x04,0xc5,0x00,0x66,
25342
+0x06,0x0f,0x00,0x18,0x04,0xc5,0x00,0x66,0x08,0x02,0xff,0xdd,
25343
+0x07,0x85,0x00,0x66,0x05,0xd7,0x00,0x71,0x04,0xbc,0x00,0x66,
25344
+0x06,0x8f,0x00,0x73,0x04,0xbc,0x00,0x66,0x06,0x8f,0x00,0x73,
25345
+0x04,0xbc,0x00,0x66,0x08,0xfd,0x00,0x18,0x07,0x5c,0x00,0x19,
25346
+0x04,0xfc,0x00,0x6f,0x04,0x5d,0x00,0x5a,0x04,0x84,0x00,0x66,
25347
+0x04,0x84,0x00,0x66,0x06,0xfa,0x00,0x71,0x05,0x55,0x00,0x46,
25348
+0x06,0xfa,0x00,0x71,0x05,0x55,0x00,0x46,0x06,0x8f,0x00,0x73,
25349
+0x04,0xd1,0x00,0x66,0x06,0x8f,0x00,0x73,0x04,0xd1,0x00,0x66,
25350
+0x06,0x8f,0x00,0x73,0x04,0xd1,0x00,0x66,0x06,0x1f,0x00,0x73,
25351
+0x04,0x7b,0x00,0x66,0x05,0xc8,0x00,0x18,0x04,0xb5,0x00,0x18,
25352
+0x05,0xc8,0x00,0x18,0x04,0xb5,0x00,0x18,0x05,0xc8,0x00,0x18,
25353
+0x04,0xb5,0x00,0x18,0x06,0x2f,0x00,0x14,0x05,0x4a,0x00,0x46,
25354
+0x05,0x4c,0x00,0x71,0x04,0x31,0x00,0x3b,0x07,0xdf,0x00,0x71,
25355
+0x06,0x5e,0x00,0x3c,0x04,0xfc,0x00,0x7d,0x04,0x5d,0x00,0x66,
25356
+0x06,0xad,0x00,0x34,0x05,0x15,0x00,0x24,0x09,0x95,0x00,0x34,
25357
+0x07,0x5a,0x00,0x24,0x06,0x8f,0x00,0x73,0x05,0x1f,0x00,0x66,
25358
+0x08,0x39,0x00,0x0a,0x06,0xd9,0x00,0x21,0x06,0x7b,0x00,0x46,
25359
+0x06,0x7d,0x00,0x46,0x06,0x9b,0x00,0x64,0x06,0xc7,0x00,0x28,
25360
+0x06,0x73,0x00,0x46,0x06,0x9c,0x00,0xec,0x06,0x17,0x00,0xa0,
25361
+0x06,0x7d,0x00,0x46,0x07,0xbe,0x00,0x46,0x06,0x87,0x00,0x64,
25362
+0x06,0x2e,0x00,0xa0,0x05,0x75,0x00,0xa0,0x08,0xc7,0x00,0xa0,
25363
+0x06,0xc2,0x00,0xbe,0x06,0x6e,0x00,0x14,0x05,0xc1,0x00,0x6d,
25364
+0x06,0x7b,0x00,0xcb,0x06,0xab,0x00,0x3d,0x06,0xbf,0x00,0x9d,
25365
+0x07,0x2e,0x00,0x60,0x06,0x1b,0x00,0x83,0x06,0x5a,0xff,0xcf,
25366
+0x06,0x08,0x00,0xab,0x06,0x64,0x00,0x46,0x06,0x60,0x00,0xc5,
25367
+0x06,0xff,0x00,0x14,0x06,0xa4,0x00,0xe3,0x07,0x12,0x00,0x46,
25368
+0x06,0x64,0x00,0x46,0x06,0x6a,0x00,0x14,0x05,0xda,0x00,0x71,
25369
+0x06,0x32,0x00,0x46,0x05,0xfe,0x00,0x6c,0x05,0x11,0x00,0xa0,
25370
+0x06,0xc3,0x00,0x82,0x06,0xbf,0x00,0x00,0x06,0xae,0x00,0x82,
25371
+0x06,0x91,0x00,0x7b,0x02,0x75,0x00,0x75,0x02,0x1c,0x00,0x5a,
25372
+0x01,0xd6,0x00,0x00,0x03,0x20,0x00,0x05,0x02,0xea,0x00,0xaa,
25373
+0x03,0x17,0x00,0x14,0x04,0x00,0x00,0x5a,0x07,0x97,0x00,0x39,
25374
+0x04,0xf1,0x00,0x4a,0x05,0x90,0x00,0x66,0x05,0x90,0x00,0x4a,
25375
+0x05,0x06,0x00,0x2f,0x05,0x80,0x00,0x66,0x04,0x14,0x00,0x39,
25376
+0x05,0x16,0x00,0x39,0x06,0x53,0x00,0x39,0x05,0x5e,0x00,0x66,
25377
+0x05,0x14,0x00,0x39,0x02,0x70,0x00,0x2f,0x07,0xc8,0x00,0x39,
25378
+0x04,0xea,0x00,0x78,0x05,0x06,0x00,0x39,0x05,0x16,0x00,0x39,
25379
+0x05,0x0b,0x00,0x8c,0x05,0x16,0x00,0x39,0x05,0x3b,0x00,0xa0,
25380
+0x05,0x27,0x00,0x39,0x02,0x79,0xff,0xc8,0x05,0x16,0x00,0x6d,
25381
+0x03,0xb0,0xff,0xe2,0x05,0x31,0x00,0x54,0x02,0xec,0x00,0x24,
25382
+0x07,0x86,0x00,0x39,0x04,0x7e,0x00,0x6f,0x05,0x42,0x00,0x54,
25383
+0x05,0x27,0x00,0x39,0x05,0x0a,0x00,0x39,0x07,0x70,0x00,0x39,
25384
+0x05,0x27,0x00,0x4a,0x05,0x24,0x00,0x6e,0x03,0xde,0x00,0x54,
25385
+0x07,0x70,0x00,0x39,0x05,0x16,0x00,0x18,0x04,0xe0,0x00,0x6e,
25386
+0x06,0x79,0x00,0x28,0x06,0x4f,0x00,0x39,0x02,0xb8,0x00,0xd5,
25387
+0x02,0xac,0x00,0x5a,0x05,0x17,0x00,0x52,0x05,0xc8,0x00,0x6e,
25388
+0x06,0xcd,0x00,0x6e,0x06,0x9f,0x00,0x6e,0x06,0xdf,0x00,0x83,
25389
+0x05,0xdd,0x00,0x6e,0x07,0xda,0x00,0x6e,0x07,0x53,0x00,0x1a,
25390
+0x08,0xcf,0x00,0x83,0x04,0x88,0x00,0x1a,0x06,0x00,0x00,0x6e,
25391
+0x07,0xb3,0x00,0x59,0x07,0x88,0x00,0x8e,0x05,0xf2,0x00,0x6e,
25392
+0x08,0x99,0x00,0x79,0x07,0x2c,0x00,0x1a,0x06,0xa1,0x00,0x1a,
25393
+0x08,0x51,0x00,0x6e,0x05,0xde,0x00,0x6e,0x05,0x5b,0x00,0x6e,
25394
+0x08,0x1f,0x00,0x79,0x07,0x7e,0x00,0x6e,0x08,0x28,0x00,0x44,
25395
+0x05,0xda,0x00,0x6e,0x05,0xdd,0x00,0x6e,0x05,0xdc,0x00,0x6e,
25396
+0x05,0xde,0x00,0x6e,0x07,0x09,0x00,0x6e,0x07,0x7e,0x00,0x6e,
25397
+0x05,0xb6,0x00,0x6e,0x06,0x0a,0x00,0x6e,0x05,0xde,0x00,0x6e,
25398
+0x07,0xaa,0x00,0x6e,0x08,0x01,0x00,0x59,0x05,0x9e,0x00,0x6e,
25399
+0x06,0xe9,0x00,0x6e,0x05,0xdf,0x00,0x6e,0x06,0xb2,0x00,0x6e,
25400
+0x07,0x9b,0x00,0x8e,0x04,0x53,0x00,0x6e,0x04,0x92,0x00,0x6e,
25401
+0x04,0xb7,0x00,0x50,0x06,0xab,0x00,0x6e,0x04,0x7d,0x00,0x46,
25402
+0x04,0x75,0x00,0x50,0x04,0xf2,0x00,0x28,0x06,0xe3,0x00,0x6e,
25403
+0x04,0x7a,0x00,0x6e,0x04,0x5e,0x00,0x32,0x08,0x88,0x00,0x6e,
25404
+0x04,0xb0,0x00,0x6e,0x04,0xb0,0x00,0x8c,0x06,0x9a,0x00,0x6e,
25405
+0x04,0x8f,0x00,0x6e,0x04,0xa5,0x00,0x6e,0x06,0x97,0x00,0x6e,
25406
+0x04,0xdb,0xff,0xe2,0x05,0xfc,0x00,0x5a,0x05,0x95,0x00,0x28,
25407
+0x06,0x85,0x00,0x6e,0x04,0xae,0x00,0x6e,0x06,0xdd,0x00,0x6e,
25408
+0x04,0x8b,0x00,0x50,0x04,0xc0,0x00,0x14,0x04,0xb0,0x00,0x8c,
25409
+0x05,0x67,0x00,0x6e,0x04,0xb3,0x00,0x6e,0x04,0xa7,0x00,0x64,
25410
+0x04,0x9b,0x00,0x5a,0x04,0xe5,0xff,0xe2,0x05,0x77,0x00,0x32,
25411
+0x04,0x93,0x00,0x6e,0x04,0xd3,0x00,0x6e,0x04,0x92,0x00,0x6e,
25412
+0x04,0x93,0x00,0x6e,0x04,0x90,0x00,0x6e,0x05,0x31,0x00,0x6e,
25413
+0x07,0x17,0x00,0x6e,0x05,0x03,0x00,0x6e,0x04,0xa8,0x00,0x82,
25414
+0x04,0xf3,0x00,0x6e,0x04,0x91,0x00,0x6e,0x03,0x7e,0x00,0x5a,
25415
+0x02,0xd4,0x00,0x5a,0x04,0x85,0xff,0xfa,0x06,0x32,0xff,0xd5,
25416
+0x07,0x85,0x00,0x66,0x04,0x81,0x00,0x49,0x04,0x7b,0x00,0x66,
25417
+0x04,0xaf,0x00,0x49,0x04,0xaf,0x00,0x49,0x04,0x6d,0x00,0x3b,
25418
+0x04,0x12,0x00,0x66,0x02,0x8f,0x00,0x4a,0x03,0xfd,0x00,0x1c,
25419
+0x05,0x00,0x00,0x46,0x04,0x58,0x00,0x2f,0x06,0x39,0x00,0x4a,
25420
+0x05,0x55,0x00,0x46,0x04,0xd1,0x00,0x66,0x04,0x7b,0x00,0x81,
25421
+0x05,0x2d,0x00,0x66,0x05,0x2d,0x00,0x65,0x05,0x2d,0x00,0x24,
25422
+0x07,0xe9,0x00,0x66,0x04,0x19,0x00,0x3c,0x04,0xd1,0x00,0x66,
25423
+0x04,0xd1,0x00,0x66,0x04,0x6d,0x00,0x6c,0x04,0xc0,0x00,0x18,
25424
+0x04,0xc0,0x00,0x18,0x04,0x6d,0x00,0x53,0x04,0xae,0x00,0x06,
25425
+0x05,0x4f,0x00,0x83,0x07,0x63,0x00,0x9d,0x05,0x3e,0x00,0x86,
25426
+0x04,0x85,0xff,0xfa,0x06,0xd9,0x00,0x21,0x04,0x37,0x00,0x52,
25427
+0x04,0x37,0x00,0x68,0x04,0x3f,0x00,0x64,0x05,0xf2,0x00,0x3c,
25428
+0x04,0x31,0x00,0x3b,0x04,0x85,0xff,0xfa,0x05,0x42,0x00,0x4a,
25429
+0x04,0x6d,0x00,0x6c,0x05,0x9f,0x00,0x4b,0x05,0x15,0x00,0x24,
25430
+0x03,0xa3,0xff,0xf8,0x05,0x0b,0xff,0xea,0x03,0xb4,0x00,0x47,
25431
+0x03,0xb4,0x00,0x41,0x04,0x0a,0x00,0x47,0x03,0xad,0x00,0x47,
25432
+0x03,0xad,0x00,0x47,0x04,0x06,0x00,0x48,0x04,0x65,0x00,0x47,
25433
+0x01,0xfd,0x00,0x47,0x02,0x05,0xff,0x94,0x03,0xc3,0x00,0x47,
25434
+0x03,0x58,0x00,0x47,0x05,0x29,0x00,0x40,0x04,0x68,0x00,0x3f,
25435
+0x04,0x68,0x00,0x3f,0x04,0x21,0x00,0x48,0x02,0xf4,0x00,0x34,
25436
+0x03,0x64,0x00,0x47,0x03,0xcb,0x00,0x47,0x03,0x5c,0x00,0x0d,
25437
+0x04,0x3f,0x00,0x3c,0x05,0x2e,0x00,0x06,0x03,0x16,0x00,0x40,
25438
+0x03,0x16,0x00,0x40,0x03,0x33,0x00,0x40,0x04,0xf2,0x00,0x40,
25439
+0x03,0x33,0x00,0x25,0x03,0x33,0x00,0x40,0x03,0x19,0x00,0x40,
25440
+0x03,0x19,0x00,0x40,0x02,0xb9,0x00,0x40,0x02,0xb9,0x00,0x40,
25441
+0x03,0x33,0x00,0x40,0x01,0x66,0x00,0x2f,0x02,0xeb,0x00,0x25,
25442
+0x04,0xe8,0x00,0x2f,0x03,0x31,0x00,0x2f,0x03,0x15,0x00,0x40,
25443
+0x02,0xc5,0x00,0x40,0x03,0x15,0x00,0x40,0x03,0x15,0x00,0x40,
25444
+0x03,0x33,0x00,0x25,0x01,0xf9,0x00,0x25,0x03,0x31,0x00,0x23,
25445
+0x03,0x58,0x00,0x53,0x04,0xe8,0x00,0x2f,0x02,0xfb,0xff,0xfc,
25446
+0x03,0xbe,0x00,0x26,0x02,0xe9,0x00,0x51,0x03,0x03,0x00,0x2f,
25447
+0x03,0x08,0x00,0x40,0x03,0x87,0x00,0x39,0x03,0x0d,0x00,0x10,
25448
+0x01,0x9c,0x00,0x2f,0x02,0xc7,0x00,0x2e,0x03,0x31,0x00,0x23,
25449
+0x02,0xfb,0xff,0xfc,0x02,0xe9,0x00,0x51,0x03,0x03,0x00,0x2f,
25450
+0x02,0xf6,0x00,0x51,0x03,0x87,0x00,0x39,0x03,0x0d,0x00,0x10,
25451
+0x07,0xcb,0x00,0x37,0x05,0x1f,0x00,0x66,0x04,0x65,0x00,0x47,
25452
+0x02,0x8f,0x00,0x4a,0x03,0x23,0x00,0x4a,0x05,0x1f,0x00,0x3b,
25453
+0x04,0xae,0x00,0x06,0x04,0xf6,0xff,0xe0,0x02,0x8f,0xff,0xdb,
25454
+0x03,0x33,0x00,0x40,0x02,0xc5,0x00,0x40,0x02,0xc5,0x00,0x40,
25455
+0x03,0x15,0x00,0x40,0x02,0xb9,0x00,0x40,0x01,0xc6,0x00,0x2f,
25456
+0x01,0xd4,0xff,0x84,0x03,0x33,0x00,0x40,0x03,0x31,0x00,0x23,
25457
+0x01,0xdf,0x00,0x2f,0x01,0xf3,0x00,0x2f,0x01,0xdf,0x00,0x2f,
25458
+0x01,0xdf,0x00,0x48,0x01,0xd8,0xff,0x84,0x01,0x67,0x00,0x25,
25459
+0x01,0x66,0xff,0xe9,0x02,0xf0,0x00,0x35,0x04,0xe8,0x00,0x2f,
25460
+0x04,0xe8,0x00,0x2f,0x03,0x41,0xff,0x84,0x03,0x3c,0x00,0x2f,
25461
+0x03,0x31,0x00,0x35,0x03,0x15,0x00,0x40,0x03,0x15,0x00,0x40,
25462
+0x02,0xa0,0x00,0x48,0x01,0xb1,0xff,0x84,0x01,0xf9,0x00,0x25,
25463
+0x03,0x31,0x00,0x23,0x03,0x1c,0x00,0x40,0x02,0xf2,0x00,0x04,
25464
+0x03,0x03,0x00,0x2f,0x02,0xfb,0xff,0xfc,0x02,0xa5,0x00,0x34,
25465
+0x02,0xa5,0x00,0x34,0x02,0xa5,0x00,0x34,0x02,0xe9,0x00,0x40,
25466
+0x03,0x15,0x00,0x40,0x00,0x00,0xfc,0xd5,0x00,0x00,0xfc,0x1b,
25467
+0x00,0x00,0xfc,0xd5,0x00,0x00,0xfc,0x1b,0x00,0x00,0xfc,0x32,
25468
+0x00,0x00,0xfc,0x32,0x05,0xc7,0xff,0xf4,0x04,0xc5,0x00,0x66,
25469
+0x05,0xe1,0x00,0x71,0x05,0x1f,0x00,0x3b,0x05,0xe1,0x00,0x71,
25470
+0x05,0x1f,0x00,0x3b,0x05,0xe1,0x00,0x71,0x05,0x1f,0x00,0x3b,
25471
+0x06,0x1f,0x00,0x73,0x04,0x7b,0x00,0x66,0x06,0x6a,0x00,0x71,
25472
+0x05,0x1f,0x00,0x66,0x06,0x6a,0x00,0x71,0x05,0x1f,0x00,0x66,
25473
+0x06,0x6a,0x00,0x71,0x05,0x1f,0x00,0x66,0x06,0x6a,0x00,0x71,
25474
+0x05,0x1f,0x00,0x66,0x06,0x6a,0x00,0x71,0x05,0x1f,0x00,0x66,
25475
+0x05,0xd7,0x00,0x71,0x04,0xbc,0x00,0x66,0x05,0xd7,0x00,0x71,
25476
+0x04,0xbc,0x00,0x66,0x05,0xd7,0x00,0x71,0x04,0xbc,0x00,0x66,
25477
+0x05,0xd7,0x00,0x71,0x04,0xbc,0x00,0x66,0x05,0xd7,0x00,0x71,
25478
+0x04,0xbc,0x00,0x66,0x05,0x8d,0x00,0x71,0x02,0xf6,0x00,0x4a,
25479
+0x06,0x64,0x00,0x73,0x05,0x1f,0x00,0x66,0x06,0xfa,0x00,0x71,
25480
+0x05,0x27,0x00,0x4a,0x06,0xfa,0x00,0x71,0x05,0x27,0x00,0x4a,
25481
+0x06,0xfa,0x00,0x71,0x05,0x27,0x00,0x0b,0x06,0xfa,0x00,0x71,
25482
+0x05,0x27,0x00,0x4a,0x06,0xfa,0x00,0x71,0x05,0x27,0x00,0x4a,
25483
+0x03,0x29,0x00,0x46,0x02,0x8f,0xff,0xf8,0x03,0x29,0x00,0x5d,
25484
+0x02,0x8f,0x00,0x10,0x05,0xfa,0x00,0x71,0x04,0xd9,0x00,0x3b,
25485
+0x05,0xfa,0x00,0x71,0x04,0xd9,0x00,0x3b,0x05,0xfa,0x00,0x71,
25486
+0x04,0xd9,0x00,0x3b,0x05,0x50,0x00,0x71,0x02,0x8f,0x00,0x3b,
25487
+0x05,0x50,0x00,0x69,0x02,0x8f,0x00,0x1b,0x05,0x50,0x00,0x71,
25488
+0x02,0x8f,0x00,0x1d,0x05,0x50,0x00,0x71,0x02,0x8f,0x00,0x09,
25489
+0x08,0x31,0x00,0x66,0x07,0x96,0x00,0x4a,0x08,0x31,0x00,0x66,
25490
+0x07,0x96,0x00,0x4a,0x08,0x31,0x00,0x66,0x07,0x96,0x00,0x4a,
25491
+0x07,0x00,0x00,0x64,0x05,0x27,0x00,0x4a,0x07,0x00,0x00,0x64,
25492
+0x05,0x27,0x00,0x4a,0x07,0x00,0x00,0x64,0x05,0x27,0x00,0x4a,
25493
+0x07,0x00,0x00,0x64,0x05,0x27,0x00,0x4a,0x06,0x8f,0x00,0x73,
25494
+0x04,0xd1,0x00,0x66,0x06,0x8f,0x00,0x73,0x04,0xd1,0x00,0x66,
25495
+0x06,0x8f,0x00,0x73,0x04,0xd1,0x00,0x66,0x06,0x8f,0x00,0x73,
25496
+0x04,0xd1,0x00,0x66,0x05,0x62,0x00,0x71,0x05,0x1f,0x00,0x3b,
25497
+0x05,0x62,0x00,0x71,0x05,0x1f,0x00,0x3b,0x06,0x06,0x00,0x71,
25498
+0x03,0xd3,0x00,0x4a,0x06,0x06,0x00,0x71,0x03,0xd3,0x00,0x4a,
25499
+0x06,0x06,0x00,0x71,0x03,0xd3,0x00,0x4a,0x06,0x06,0x00,0x71,
25500
+0x03,0xd3,0x00,0x1d,0x05,0x7b,0x00,0xac,0x04,0x1b,0x00,0x73,
25501
+0x05,0x7b,0x00,0xac,0x04,0x1b,0x00,0x73,0x05,0x7b,0x00,0xac,
25502
+0x04,0x1b,0x00,0x73,0x05,0x7b,0x00,0xac,0x04,0x2b,0x00,0x73,
25503
+0x05,0x7b,0x00,0xac,0x04,0x1b,0x00,0x73,0x05,0x56,0x00,0x14,
25504
+0x03,0x37,0x00,0x3b,0x05,0x56,0x00,0x14,0x03,0x37,0x00,0x3b,
25505
+0x05,0x56,0x00,0x14,0x03,0x37,0x00,0x3b,0x05,0x56,0x00,0x14,
25506
+0x03,0x37,0x00,0x3b,0x06,0xbe,0x00,0x60,0x05,0x27,0x00,0x37,
25507
+0x06,0xbe,0x00,0x60,0x05,0x27,0x00,0x37,0x06,0xbe,0x00,0x60,
25508
+0x05,0x27,0x00,0x37,0x06,0xbe,0x00,0x60,0x05,0x27,0x00,0x37,
25509
+0x06,0xbe,0x00,0x60,0x05,0x27,0x00,0x37,0x05,0xc7,0xff,0xec,
25510
+0x04,0x85,0xff,0xfa,0x05,0xc7,0xff,0xec,0x04,0x85,0xff,0xfa,
25511
+0x08,0x39,0x00,0x0a,0x06,0xd9,0x00,0x21,0x08,0x39,0x00,0x0a,
25512
+0x06,0xd9,0x00,0x21,0x08,0x39,0x00,0x0a,0x06,0xd9,0x00,0x21,
25513
+0x08,0x39,0x00,0x0a,0x06,0xd9,0x00,0x21,0x08,0x39,0x00,0x0a,
25514
+0x06,0xd9,0x00,0x21,0x05,0xb2,0x00,0x0c,0x04,0x83,0x00,0x19,
25515
+0x05,0xb2,0x00,0x0c,0x04,0x83,0x00,0x19,0x05,0x48,0xff,0xe9,
25516
+0x04,0x85,0xff,0xfa,0x05,0x8f,0x00,0x5c,0x04,0x37,0x00,0x52,
25517
+0x05,0x8f,0x00,0x5c,0x04,0x37,0x00,0x52,0x05,0x8f,0x00,0x5c,
25518
+0x04,0x37,0x00,0x52,0x05,0x27,0x00,0x4a,0x03,0x37,0xff,0xfc,
25519
+0x06,0xd9,0x00,0x21,0x04,0x85,0xff,0xfa,0x07,0x3a,0x00,0x66,
25520
+0x02,0xf6,0x00,0x4a,0x02,0xf6,0x00,0x33,0x02,0xf6,0x00,0x4a,
25521
+0x06,0xa2,0x00,0x60,0x04,0xd1,0x00,0x66,0x05,0xc7,0xff,0xf4,
25522
+0x04,0xc5,0x00,0x66,0x05,0xc7,0xff,0xf4,0x04,0xc5,0x00,0x66,
25523
+0x05,0xc7,0xff,0xf4,0x04,0xe7,0x00,0x66,0x05,0xc7,0xff,0xf4,
25524
+0x04,0xe7,0x00,0x66,0x05,0xc7,0xff,0xf4,0x04,0xe7,0x00,0x66,
25525
+0x05,0xc7,0xff,0xf4,0x04,0xe7,0x00,0x66,0x05,0xc7,0xff,0xf4,
25526
+0x04,0xc5,0x00,0x66,0x05,0xc7,0xff,0xf4,0x04,0xc5,0x00,0x66,
25527
+0x05,0xc7,0xff,0xf4,0x04,0xc5,0x00,0x66,0x05,0xc7,0xff,0xf4,
25528
+0x04,0xc5,0x00,0x66,0x05,0xc7,0xff,0xf4,0x04,0xc5,0x00,0x66,
25529
+0x05,0xc7,0xff,0xf4,0x04,0xc5,0x00,0x66,0x05,0xd7,0x00,0x71,
25530
+0x04,0xbc,0x00,0x66,0x05,0xd7,0x00,0x71,0x04,0xbc,0x00,0x66,
25531
+0x05,0xd7,0x00,0x71,0x04,0xbc,0x00,0x66,0x05,0xd7,0x00,0x71,
25532
+0x04,0xec,0x00,0x66,0x05,0xd7,0x00,0x71,0x04,0xec,0x00,0x66,
25533
+0x05,0xd7,0x00,0x71,0x04,0xec,0x00,0x66,0x05,0xd7,0x00,0x71,
25534
+0x04,0xec,0x00,0x66,0x05,0xd7,0x00,0x71,0x04,0xbc,0x00,0x66,
25535
+0x03,0x29,0x00,0x71,0x02,0x8f,0x00,0x4a,0x03,0x29,0x00,0x71,
25536
+0x02,0x8f,0x00,0x4a,0x06,0x8f,0x00,0x73,0x04,0xd1,0x00,0x66,
25537
+0x06,0x8f,0x00,0x73,0x04,0xd1,0x00,0x66,0x06,0x8f,0x00,0x73,
25538
+0x04,0xe5,0x00,0x66,0x06,0x8f,0x00,0x73,0x04,0xe5,0x00,0x66,
25539
+0x06,0x8f,0x00,0x73,0x04,0xe5,0x00,0x66,0x06,0x8f,0x00,0x73,
25540
+0x04,0xe5,0x00,0x66,0x06,0x8f,0x00,0x73,0x04,0xd1,0x00,0x66,
25541
+0x06,0x8f,0x00,0x6e,0x04,0xd1,0x00,0x63,0x06,0x8f,0x00,0x6e,
25542
+0x04,0xd1,0x00,0x63,0x06,0x8f,0x00,0x6e,0x04,0xd1,0x00,0x63,
25543
+0x06,0x8f,0x00,0x6e,0x04,0xd1,0x00,0x63,0x06,0x8f,0x00,0x6e,
25544
+0x04,0xd1,0x00,0x63,0x06,0xbe,0x00,0x60,0x05,0x27,0x00,0x37,
25545
+0x06,0xbe,0x00,0x60,0x05,0x27,0x00,0x37,0x06,0xbe,0x00,0x5a,
25546
+0x05,0x27,0x00,0x2c,0x06,0xbe,0x00,0x5a,0x05,0x27,0x00,0x2c,
25547
+0x06,0xbe,0x00,0x5a,0x05,0x27,0x00,0x2c,0x06,0xbe,0x00,0x5a,
25548
+0x05,0x27,0x00,0x2c,0x06,0xbe,0x00,0x5a,0x05,0x27,0x00,0x2c,
25549
+0x05,0x48,0xff,0xe9,0x04,0x85,0xff,0xfa,0x05,0x48,0xff,0xe9,
25550
+0x04,0x85,0xff,0xfa,0x05,0x48,0xff,0xe9,0x04,0x85,0xff,0xfa,
25551
+0x05,0x48,0xff,0xe9,0x04,0x85,0xff,0xfa,0x07,0x97,0x00,0x71,
25552
+0x04,0xa6,0x00,0x3b,0x05,0x67,0x00,0x66,0x05,0x67,0x00,0x66,
25553
+0x05,0x67,0x00,0x66,0x05,0x67,0x00,0x66,0x05,0x67,0x00,0x66,
25554
+0x05,0x67,0x00,0x66,0x05,0x67,0x00,0x66,0x05,0x67,0x00,0x66,
25555
+0x05,0xc7,0xff,0xf4,0x05,0xc7,0xff,0xf4,0x06,0xf3,0x00,0x09,
25556
+0x06,0xf3,0x00,0x0a,0x05,0xdf,0x00,0x0c,0x06,0x1b,0x00,0x0d,
25557
+0x05,0xc7,0xff,0xf4,0x05,0xc7,0xff,0xf4,0x04,0x4b,0x00,0x65,
25558
+0x04,0x4b,0x00,0x65,0x04,0x4b,0x00,0x65,0x04,0x4b,0x00,0x65,
25559
+0x04,0x4b,0x00,0x65,0x04,0x4b,0x00,0x65,0x06,0xd3,0x00,0x0d,
25560
+0x06,0xbb,0x00,0x0d,0x08,0x89,0x00,0x09,0x08,0x9d,0x00,0x0a,
25561
+0x08,0x11,0x00,0x0d,0x08,0x47,0x00,0x0d,0x04,0xcb,0x00,0x4a,
25562
+0x04,0xcb,0x00,0x4a,0x04,0xcb,0x00,0x4a,0x04,0xcb,0x00,0x4a,
25563
+0x04,0xcb,0x00,0x4a,0x04,0xcb,0x00,0x4a,0x04,0xcb,0x00,0x4a,
25564
+0x04,0xcb,0x00,0x4a,0x07,0xfc,0x00,0x0d,0x07,0xf0,0x00,0x0d,
25565
+0x09,0xb2,0x00,0x09,0x09,0xca,0x00,0x0a,0x09,0x46,0x00,0x0d,
25566
+0x09,0x76,0x00,0x0d,0x08,0xc8,0x00,0x0e,0x08,0xc2,0x00,0x0e,
25567
+0x03,0x23,0x00,0x4a,0x03,0x23,0x00,0x4a,0x03,0x23,0xff,0xf5,
25568
+0x03,0x23,0xff,0xed,0x03,0x23,0x00,0x40,0x03,0x23,0x00,0x19,
25569
+0x03,0x23,0x00,0x02,0x03,0x23,0x00,0x05,0x04,0x2b,0x00,0x0d,
25570
+0x04,0x19,0x00,0x0d,0x05,0xe1,0x00,0x09,0x05,0xe7,0x00,0x0a,
25571
+0x05,0x6f,0x00,0x0d,0x05,0xa5,0x00,0x0d,0x04,0xfd,0x00,0x0e,
25572
+0x04,0xeb,0x00,0x0e,0x04,0xd1,0x00,0x66,0x04,0xd1,0x00,0x66,
25573
+0x04,0xd1,0x00,0x66,0x04,0xd1,0x00,0x66,0x04,0xd1,0x00,0x66,
25574
+0x04,0xd1,0x00,0x66,0x06,0x8f,0x00,0x0d,0x06,0xe0,0x00,0x0d,
25575
+0x08,0xf6,0x00,0x09,0x09,0x05,0x00,0x0a,0x07,0x7f,0x00,0x0d,
25576
+0x07,0xb6,0x00,0x0d,0x04,0xdd,0x00,0x4a,0x04,0xdd,0x00,0x4a,
25577
+0x04,0xdd,0x00,0x4a,0x04,0xdd,0x00,0x4a,0x04,0xdd,0x00,0x4a,
25578
+0x04,0xdd,0x00,0x4a,0x04,0xdd,0x00,0x4a,0x04,0xdd,0x00,0x4a,
25579
+0x06,0xce,0x00,0x0d,0x08,0xa2,0x00,0x0a,0x08,0x5a,0x00,0x0d,
25580
+0x07,0xa0,0x00,0x0e,0x06,0x86,0x00,0x5a,0x06,0x86,0x00,0x5a,
25581
+0x06,0x86,0x00,0x5a,0x06,0x86,0x00,0x5a,0x06,0x86,0x00,0x5a,
25582
+0x06,0x86,0x00,0x5a,0x06,0x86,0x00,0x5a,0x06,0x86,0x00,0x5a,
25583
+0x06,0xa2,0x00,0x0d,0x06,0xf6,0x00,0x0d,0x09,0x0c,0x00,0x09,
25584
+0x09,0x18,0x00,0x0a,0x07,0x92,0x00,0x0d,0x07,0xce,0x00,0x0d,
25585
+0x07,0x80,0x00,0x0e,0x07,0xc2,0x00,0x0e,0x05,0x67,0x00,0x66,
25586
+0x05,0x67,0x00,0x66,0x04,0x4b,0x00,0x65,0x04,0x4b,0x00,0x65,
25587
+0x04,0xcb,0x00,0x4a,0x04,0xcb,0x00,0x4a,0x03,0x23,0x00,0x02,
25588
+0x03,0x23,0x00,0x4a,0x04,0xd1,0x00,0x66,0x04,0xd1,0x00,0x66,
25589
+0x04,0xdd,0x00,0x4a,0x04,0xdd,0x00,0x4a,0x06,0x86,0x00,0x5a,
25590
+0x06,0x86,0x00,0x5a,0x05,0x67,0x00,0x66,0x05,0x67,0x00,0x66,
25591
+0x05,0x67,0x00,0x66,0x05,0x67,0x00,0x66,0x05,0x67,0x00,0x66,
25592
+0x05,0x67,0x00,0x66,0x05,0x67,0x00,0x66,0x05,0x67,0x00,0x66,
25593
+0x05,0xc7,0xff,0xf4,0x05,0xc7,0xff,0xf4,0x06,0xf3,0x00,0x09,
25594
+0x06,0xf3,0x00,0x0a,0x05,0xdf,0x00,0x0c,0x06,0x1b,0x00,0x0d,
25595
+0x05,0xc7,0xff,0xf4,0x05,0xc7,0xff,0xf4,0x04,0xcb,0x00,0x4a,
25596
+0x04,0xcb,0x00,0x4a,0x04,0xcb,0x00,0x4a,0x04,0xcb,0x00,0x4a,
25597
+0x04,0xcb,0x00,0x4a,0x04,0xcb,0x00,0x4a,0x04,0xcb,0x00,0x4a,
25598
+0x04,0xcb,0x00,0x4a,0x07,0xfc,0x00,0x0d,0x07,0xf0,0x00,0x0d,
25599
+0x09,0xb2,0x00,0x09,0x09,0xca,0x00,0x0a,0x09,0x46,0x00,0x0d,
25600
+0x09,0x76,0x00,0x0d,0x08,0xc8,0x00,0x0e,0x08,0xc2,0x00,0x0e,
25601
+0x06,0x86,0x00,0x5a,0x06,0x86,0x00,0x5a,0x06,0x86,0x00,0x5a,
25602
+0x06,0x86,0x00,0x5a,0x06,0x86,0x00,0x5a,0x06,0x86,0x00,0x5a,
25603
+0x06,0x86,0x00,0x5a,0x06,0x86,0x00,0x5a,0x06,0xa2,0x00,0x0d,
25604
+0x06,0xf6,0x00,0x0d,0x09,0x0c,0x00,0x09,0x09,0x18,0x00,0x0a,
25605
+0x07,0x92,0x00,0x0d,0x07,0xce,0x00,0x0d,0x07,0x80,0x00,0x0e,
25606
+0x07,0xc2,0x00,0x0e,0x05,0x67,0x00,0x66,0x05,0x67,0x00,0x66,
25607
+0x05,0x67,0x00,0x66,0x05,0x67,0x00,0x66,0x05,0x67,0x00,0x66,
25608
+0x05,0x67,0x00,0x66,0x05,0x67,0x00,0x66,0x05,0xc7,0xff,0xf4,
25609
+0x05,0xc7,0xff,0xf4,0x05,0xc7,0xff,0xf4,0x05,0xc7,0xff,0xf4,
25610
+0x05,0xc7,0xff,0xf4,0x04,0x00,0x01,0x81,0x04,0x00,0x01,0xb5,
25611
+0x04,0x00,0x01,0x81,0x04,0x00,0x00,0xb6,0x04,0x00,0x00,0xb6,
25612
+0x04,0xcb,0x00,0x4a,0x04,0xcb,0x00,0x4a,0x04,0xcb,0x00,0x4a,
25613
+0x04,0xcb,0x00,0x4a,0x04,0xcb,0x00,0x4a,0x07,0x4b,0x00,0x08,
25614
+0x07,0x33,0x00,0x0f,0x08,0x80,0x00,0x08,0x08,0x50,0x00,0x0f,
25615
+0x06,0xfa,0x00,0x71,0x04,0x00,0x00,0x8d,0x04,0x00,0x00,0xa9,
25616
+0x04,0x00,0x00,0xb6,0x03,0x23,0x00,0x1c,0x03,0x23,0x00,0x21,
25617
+0x03,0x23,0xff,0xfc,0x03,0x23,0x00,0x11,0x03,0x23,0x00,0x1a,
25618
+0x03,0x23,0x00,0x1a,0x03,0x29,0x00,0x5d,0x03,0x29,0x00,0x69,
25619
+0x04,0xb5,0x00,0x08,0x04,0x7f,0x00,0x0f,0x04,0x00,0x00,0x88,
25620
+0x04,0x00,0x00,0x85,0x04,0x00,0x00,0xb6,0x04,0xdd,0x00,0x4a,
25621
+0x04,0xdd,0x00,0x4a,0x04,0xdd,0x00,0x4a,0x04,0xdd,0x00,0x4a,
25622
+0x04,0xb4,0x00,0x81,0x04,0xb4,0x00,0x81,0x04,0xdd,0x00,0x4a,
25623
+0x04,0xdd,0x00,0x4a,0x05,0x48,0xff,0xe9,0x05,0x48,0xff,0xe9,
25624
+0x07,0x5e,0x00,0x08,0x07,0x2e,0x00,0x0f,0x06,0x52,0x00,0x0d,
25625
+0x04,0x00,0x00,0xaa,0x04,0x00,0x00,0xc9,0x04,0x00,0x00,0xaa,
25626
+0x06,0x86,0x00,0x5a,0x06,0x86,0x00,0x5a,0x06,0x86,0x00,0x5a,
25627
+0x06,0x86,0x00,0x5a,0x06,0x86,0x00,0x5a,0x07,0xb1,0x00,0x08,
25628
+0x06,0xaf,0x00,0x0f,0x07,0xe0,0x00,0x08,0x06,0xd2,0x00,0x0f,
25629
+0x06,0xa2,0x00,0x7d,0x04,0x00,0x01,0x89,0x04,0x00,0x01,0x81,
25630
+0x04,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,
25631
+0x08,0x00,0x00,0x00,0x02,0xa3,0x00,0x00,0x02,0x00,0x00,0x00,
25632
+0x01,0x56,0x00,0x00,0x05,0x17,0x00,0x00,0x02,0x8b,0x00,0x00,
25633
+0x01,0x99,0x00,0x00,0x00,0xcc,0x00,0x00,0x00,0x00,0x00,0x00,
25634
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
25635
+0x00,0x00,0x00,0x00,0x02,0xb4,0x00,0x5a,0x02,0xb4,0x00,0x5a,
25636
+0x05,0x17,0x00,0x5a,0x04,0x00,0x00,0x5a,0x08,0x00,0x00,0x5a,
25637
+0x08,0x00,0x00,0x00,0x04,0x00,0x01,0x08,0x04,0x00,0x00,0x00,
25638
+0x02,0x8b,0x00,0xd1,0x02,0x8b,0x00,0x91,0x02,0x8b,0x00,0x5a,
25639
+0x02,0x8b,0x00,0x91,0x04,0x17,0x00,0xd1,0x04,0x17,0x00,0x91,
25640
+0x04,0x25,0x00,0x5a,0x04,0x17,0x00,0x91,0x04,0x00,0x00,0x39,
25641
+0x04,0x00,0x00,0x39,0x04,0xb8,0x01,0x33,0x04,0xb8,0x01,0x33,
25642
+0x02,0xac,0x00,0xd1,0x05,0x56,0x00,0xd1,0x08,0x00,0x00,0xd1,
25643
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
25644
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x99,0x00,0x00,
25645
+0x0a,0xbc,0x00,0x71,0x0d,0xdf,0x00,0x71,0x01,0xd1,0x00,0x28,
25646
+0x02,0xfd,0x00,0x28,0x04,0x29,0x00,0x28,0x01,0xd1,0x00,0x28,
25647
+0x02,0xfd,0x00,0x28,0x04,0x29,0x00,0x28,0x02,0xb6,0x00,0x0b,
25648
+0x03,0x33,0x00,0x9e,0x03,0x33,0x00,0xc1,0x04,0x38,0x00,0x8b,
25649
+0x04,0x4a,0x00,0x8b,0x04,0x00,0x00,0x00,0x08,0x00,0x00,0x21,
25650
+0x01,0x56,0xfe,0x89,0x03,0x1f,0x00,0xb0,0x03,0x1f,0x00,0x9e,
25651
+0x07,0xce,0x00,0x45,0x06,0x07,0x00,0x8b,0x06,0x07,0x00,0x8b,
25652
+0x05,0x17,0x00,0x84,0x04,0x00,0x00,0xd8,0x04,0x00,0x00,0xd8,
25653
+0x04,0x00,0x00,0x21,0x02,0xb2,0x00,0xcf,0x04,0x00,0x00,0x21,
25654
+0x03,0x99,0x00,0x91,0x08,0x00,0x00,0x64,0x05,0x4e,0x00,0x28,
25655
+0x01,0xc7,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
25656
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
25657
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
25658
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
25659
+0x03,0x35,0x00,0x34,0x01,0x9c,0x00,0x2f,0x03,0x35,0x00,0x35,
25660
+0x03,0x35,0x00,0x44,0x03,0x35,0x00,0x28,0x03,0x35,0x00,0x4f,
25661
+0x03,0x35,0x00,0x35,0x03,0x35,0x00,0x33,0x04,0x39,0x00,0x89,
25662
+0x04,0x39,0x00,0x89,0x04,0x39,0x00,0x89,0x01,0xf7,0x00,0x66,
25663
+0x01,0xf7,0x00,0x5b,0x03,0x76,0x00,0x2e,0x03,0x35,0x00,0x34,
25664
+0x03,0x35,0x00,0x93,0x03,0x35,0x00,0x5a,0x03,0x35,0x00,0x64,
25665
+0x03,0x35,0x00,0x35,0x03,0x35,0x00,0x44,0x03,0x35,0x00,0x28,
25666
+0x03,0x35,0x00,0x4f,0x03,0x35,0x00,0x35,0x03,0x35,0x00,0x33,
25667
+0x04,0x39,0x00,0x89,0x04,0x39,0x00,0x89,0x04,0x39,0x00,0x89,
25668
+0x01,0xf7,0x00,0x66,0x01,0xf7,0x00,0x5b,0x03,0x16,0x00,0x40,
25669
+0x03,0x19,0x00,0x40,0x03,0x15,0x00,0x40,0x03,0x64,0x00,0x2e,
25670
+0x03,0x19,0x00,0x40,0x03,0x76,0x00,0x2e,0x02,0xeb,0x00,0x25,
25671
+0x01,0xf1,0x00,0x2e,0x04,0xe8,0x00,0x2f,0x03,0x76,0x00,0x2e,
25672
+0x03,0x33,0x00,0x25,0x02,0xb2,0x00,0x37,0x01,0xf9,0x00,0x25,
25673
+0x05,0x17,0x00,0x38,0x05,0x17,0xff,0xf8,0x08,0x75,0x00,0x1b,
25674
+0x05,0xa6,0x00,0x71,0x06,0x3e,0x00,0x52,0x05,0x17,0x00,0xac,
25675
+0x05,0x17,0x00,0x14,0x05,0x17,0x00,0x5e,0x05,0x17,0xff,0xfb,
25676
+0x05,0x17,0x00,0x71,0x06,0x5e,0x00,0x56,0x08,0xf3,0x00,0x5f,
25677
+0x08,0x61,0x00,0x5f,0x07,0x8f,0x00,0x60,0x05,0x27,0x00,0x62,
25678
+0x05,0x27,0x00,0x63,0x07,0x50,0x00,0x5a,0x07,0x92,0x00,0x4c,
25679
+0x06,0x04,0x00,0x60,0x06,0xf8,0x00,0x56,0x06,0xa6,0x00,0x60,
25680
+0x08,0x00,0x00,0xf2,0x05,0xd7,0x00,0x4c,0x06,0xa2,0x00,0x7d,
25681
+0x06,0xa2,0x00,0x7d,0x05,0xfa,0x00,0x71,0x05,0xc7,0xff,0xf4,
25682
+0x05,0x8d,0x00,0x56,0x05,0xdb,0x00,0x46,0x05,0x48,0x00,0x32,
25683
+0x05,0xae,0x00,0x60,0x07,0x8e,0x00,0x60,0x05,0xb6,0x00,0x35,
25684
+0x06,0x33,0x00,0xa3,0x04,0x75,0x00,0x08,0x04,0x75,0x00,0x07,
25685
+0x04,0xe3,0xff,0xfc,0x06,0xf0,0xff,0xcf,0x05,0x98,0x00,0x16,
25686
+0x05,0x17,0x00,0x44,0x03,0x0a,0xff,0xaf,0x02,0xe5,0xfe,0xac,
25687
+0x07,0x1f,0x00,0x61,0x04,0x1d,0x00,0x31,0x07,0xc1,0x00,0x93,
25688
+0x07,0xc1,0x00,0x93,0x0a,0xf6,0x00,0x93,0x07,0xc1,0x00,0x93,
25689
+0x07,0xc1,0x00,0x5a,0x07,0xc1,0x00,0x93,0x07,0xc1,0x00,0x5a,
25690
+0x07,0xc1,0x00,0x64,0x07,0xc1,0x00,0x35,0x07,0xc1,0x00,0x93,
25691
+0x07,0xc1,0x00,0x44,0x07,0xc1,0x00,0x93,0x07,0xc1,0x00,0x64,
25692
+0x07,0xc1,0x00,0x44,0x07,0xc1,0x00,0x4f,0x04,0x8b,0x00,0x93,
25693
+0x03,0x29,0x00,0x71,0x04,0xb9,0x00,0x71,0x06,0x49,0x00,0x71,
25694
+0x07,0xbb,0x00,0x71,0x05,0xc7,0xff,0xec,0x07,0xd9,0xff,0xec,
25695
+0x09,0x69,0xff,0xec,0x0a,0xf9,0xff,0xec,0x07,0x74,0x00,0x71,
25696
+0x05,0xb2,0x00,0x0c,0x07,0x75,0x00,0x0c,0x09,0x05,0x00,0x0c,
25697
+0x05,0x50,0x00,0x71,0x06,0x1f,0x00,0x73,0x06,0x6a,0x00,0x71,
25698
+0x08,0x31,0x00,0x66,0x02,0x8f,0x00,0x4a,0x05,0x1e,0x00,0x4a,
25699
+0x07,0xad,0x00,0x4a,0x07,0x14,0x00,0x4a,0x04,0x85,0xff,0xfa,
25700
+0x07,0x14,0xff,0xfa,0x09,0xa3,0xff,0xfa,0x0c,0x32,0xff,0xfa,
25701
+0x07,0x12,0x00,0x4a,0x04,0x83,0x00,0x19,0x07,0x12,0x00,0x19,
25702
+0x09,0xa1,0x00,0x19,0x02,0x8f,0x00,0x3b,0x04,0x7b,0x00,0x66,
25703
+0x05,0x1f,0x00,0x66,0x07,0x96,0x00,0x4a,0x09,0xa6,0x00,0x71,
25704
+0x06,0x6a,0x00,0x71,0x09,0xa6,0x00,0x71,0x06,0x1f,0x00,0x73,
25705
+0x04,0x7b,0x00,0x66,0x06,0x1f,0x00,0x73,0x07,0xc1,0x00,0x34,
25706
+0x06,0xb4,0x00,0x4c,0x06,0xb4,0x01,0xb8,0x06,0xb4,0x00,0x75,
25707
+0x06,0xb4,0x01,0xb8,0x06,0xb4,0x00,0x4c,0x06,0xb4,0x01,0xb8,
25708
+0x06,0xb4,0x01,0x2d,0x06,0xb4,0x01,0x14,0x06,0xb4,0x01,0x14,
25709
+0x06,0xb4,0x01,0x2e,0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x75,
25710
+0x06,0xb4,0x00,0x72,0x06,0xb4,0x00,0x4e,0x06,0xb4,0x00,0x4c,
25711
+0x06,0xb4,0x01,0xb8,0x06,0xb4,0x00,0x75,0x06,0xb4,0x01,0xb8,
25712
+0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x6e,0x06,0xb4,0x00,0x4c,
25713
+0x06,0xb4,0x01,0xb8,0x06,0xb4,0x00,0x75,0x06,0xb4,0x01,0xb8,
25714
+0x06,0xb4,0x01,0xb8,0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x75,
25715
+0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x4c,
25716
+0x06,0xb4,0x00,0x4c,0x06,0xb4,0x01,0x60,0x06,0xb4,0x01,0xdc,
25717
+0x06,0xb4,0x01,0xf5,0x06,0xb4,0x01,0xdc,0x06,0xb4,0x01,0xf5,
25718
+0x06,0xb4,0x01,0x0b,0x06,0xb4,0x01,0x46,0x06,0xb4,0x00,0x5a,
25719
+0x06,0xb4,0x00,0x8d,0x06,0xb4,0x01,0x0f,0x06,0xb4,0x00,0x75,
25720
+0x06,0xb4,0x00,0xbe,0x06,0xb4,0x00,0xab,0x06,0xb4,0x00,0x46,
25721
+0x06,0xb4,0x00,0x46,0x06,0xb4,0x03,0x09,0x06,0xb4,0x01,0xb8,
25722
+0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x75,0x06,0xb4,0x03,0x09,
25723
+0x06,0xb4,0x01,0xb8,0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x5a,
25724
+0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x4c,0x06,0xb4,0xff,0xf6,
25725
+0x06,0xb4,0x00,0x75,0x06,0xb4,0xff,0xf6,0x06,0xb4,0x00,0x46,
25726
+0x06,0xb4,0x00,0x46,0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x4c,
25727
+0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x4c,0x06,0xb4,0x01,0xb8,
25728
+0x06,0xb4,0x00,0x75,0x06,0xb4,0x01,0xb8,0x06,0xb4,0x00,0x4c,
25729
+0x06,0xb4,0x01,0xb8,0x06,0xb4,0x01,0x2e,0x06,0xb4,0x00,0x99,
25730
+0x06,0xb4,0x00,0x99,0x06,0xb4,0x01,0x2e,0x06,0xb4,0x00,0x4c,
25731
+0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x75,
25732
+0x06,0xb4,0x01,0xb8,0x06,0xb4,0x01,0xb8,0x06,0xb4,0x00,0x4c,
25733
+0x06,0xb4,0x01,0xb8,0x06,0xb4,0x00,0x75,0x06,0xb4,0x01,0xb8,
25734
+0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x4c,
25735
+0x06,0xb4,0x01,0xb8,0x06,0xb4,0x00,0x75,0x06,0xb4,0x01,0xb8,
25736
+0x06,0xb4,0x01,0xb8,0x06,0xb4,0x01,0x89,0x06,0xb4,0x01,0x89,
25737
+0x06,0xb4,0x01,0x89,0x06,0xb4,0x01,0xb8,0x06,0xb4,0x01,0x89,
25738
+0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0xa7,0x06,0xb4,0x00,0x92,
25739
+0x06,0xb4,0x01,0xb8,0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x5a,
25740
+0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x75,
25741
+0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x75,
25742
+0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x75,
25743
+0x06,0xb4,0x00,0x4c,0x04,0xd4,0x00,0x09,0x04,0x23,0x00,0x68,
25744
+0x04,0x57,0x00,0x7c,0x04,0x57,0x00,0x7c,0x05,0x96,0x00,0x33,
25745
+0x05,0x96,0x00,0x33,0x05,0xec,0x00,0xd9,0x05,0xec,0x00,0xd9,
25746
+0x05,0xec,0x00,0xd9,0x05,0xec,0x00,0xd9,0x06,0x5e,0x00,0x35,
25747
+0x06,0x5e,0x00,0x35,0x05,0xb6,0x00,0x10,0x06,0xb4,0x00,0xd9,
25748
+0x06,0xb4,0x00,0xd9,0x06,0xb4,0x00,0xd9,0x02,0xb2,0x00,0x00,
25749
+0x05,0x70,0x00,0xd9,0x03,0xec,0x00,0xd9,0x03,0xec,0x00,0xd9,
25750
+0x05,0x19,0x00,0x3d,0x05,0x19,0x00,0x3d,0x05,0x19,0x00,0x3d,
25751
+0x05,0x6a,0x00,0xdd,0x06,0xaa,0x00,0xdd,0x06,0xb4,0x01,0x1b,
25752
+0x06,0xb4,0x01,0x1b,0x02,0x54,0x00,0xd9,0x03,0xd4,0x00,0xb1,
25753
+0x03,0xb2,0x00,0xd9,0x05,0x12,0x00,0xb1,0x05,0xdb,0x01,0x07,
25754
+0x05,0xdb,0x01,0x07,0x06,0xb4,0x00,0xd8,0x06,0xb4,0x00,0xd8,
25755
+0x04,0x2b,0x00,0x2f,0x06,0xd0,0x00,0x2f,0x09,0x75,0x00,0x2f,
25756
+0x06,0xb4,0x00,0xd9,0x06,0xb4,0x00,0xd9,0x06,0xb4,0x00,0xd9,
25757
+0x06,0xb4,0x00,0xd9,0x06,0xb4,0x00,0xd9,0x06,0xb4,0x00,0xd9,
25758
+0x06,0xb4,0x00,0xd9,0x06,0xb4,0x00,0xd9,0x06,0xb4,0x00,0xd9,
25759
+0x06,0xb4,0x00,0xd9,0x06,0xb4,0x00,0xd9,0x06,0xb4,0x00,0xd9,
25760
+0x06,0xb4,0x00,0xd9,0x08,0x44,0x00,0xd9,0x08,0x44,0x00,0xd9,
25761
+0x06,0xb4,0x00,0xd9,0x06,0xb4,0x00,0xd9,0x06,0xb4,0x00,0xd9,
25762
+0x06,0xb4,0x00,0xd9,0x06,0xb4,0x00,0xd9,0x06,0xb4,0x00,0xd9,
25763
+0x06,0xb4,0x00,0xd9,0x06,0xb4,0x00,0xd9,0x06,0xb4,0x00,0xd9,
25764
+0x06,0xb4,0x00,0xd9,0x06,0xb4,0x00,0xd8,0x06,0xb4,0x00,0xd8,
25765
+0x06,0xb4,0x00,0xd8,0x06,0xc5,0x00,0xd9,0x06,0xc5,0x00,0xd9,
25766
+0x06,0xc5,0x00,0xd9,0x06,0xc5,0x00,0xd9,0x06,0xb4,0x00,0xd8,
25767
+0x06,0xb4,0x00,0xd8,0x06,0xb4,0x00,0xd8,0x06,0xb4,0x00,0xd8,
25768
+0x06,0xb4,0x00,0xd8,0x06,0xb4,0x00,0xd8,0x06,0xb4,0x00,0xd8,
25769
+0x06,0xb4,0x00,0xd8,0x06,0xb4,0x00,0xd8,0x06,0xb4,0x00,0xd8,
25770
+0x06,0xb4,0x00,0xd8,0x06,0xb4,0x00,0xd8,0x06,0xb4,0x00,0xd8,
25771
+0x06,0xb4,0x00,0xd8,0x06,0xb4,0x00,0xd8,0x06,0xe1,0x00,0xd9,
25772
+0x06,0xe1,0x00,0xd9,0x07,0x86,0x00,0xd9,0x07,0x86,0x00,0xd9,
25773
+0x04,0x89,0x00,0xd9,0x04,0x89,0x00,0xd9,0x06,0xe1,0x00,0xd9,
25774
+0x06,0xe1,0x00,0xd9,0x06,0xe1,0x00,0xd9,0x08,0x3f,0x00,0xd9,
25775
+0x06,0xe1,0x00,0xd9,0x06,0xe1,0x00,0xd9,0x06,0xe1,0x00,0xd9,
25776
+0x08,0x3f,0x00,0xd9,0x05,0x02,0x00,0x82,0x02,0xbd,0x00,0xd9,
25777
+0x06,0x1c,0x00,0x92,0x03,0x1f,0x00,0xb0,0x03,0x1f,0x00,0x9e,
25778
+0x03,0x1f,0x00,0xb0,0x03,0x1f,0x00,0x9e,0x06,0xb4,0x00,0xd9,
25779
+0x04,0x1b,0x00,0x06,0x08,0x00,0x00,0xf7,0x06,0xb4,0x00,0xd9,
25780
+0x04,0x2b,0x01,0xaf,0x04,0x2b,0x00,0x2a,0x08,0x00,0x00,0xac,
25781
+0x0b,0x8c,0x00,0x78,0x07,0x5a,0x00,0x1a,0x04,0x00,0x00,0xb0,
25782
+0x04,0x00,0x00,0xb0,0x04,0x00,0x00,0xb0,0x04,0x00,0x00,0xb0,
25783
+0x04,0x00,0x02,0x8d,0x04,0x00,0x00,0xb0,0x04,0x00,0x00,0xb0,
25784
+0x04,0x00,0x00,0xb0,0x04,0x00,0x00,0xb0,0x04,0x00,0x00,0xb0,
25785
+0x04,0x00,0x02,0x8d,0x04,0x00,0x00,0xb0,0x06,0x00,0x02,0xa3,
25786
+0x06,0x00,0x00,0xa8,0x06,0x00,0x02,0xa3,0x06,0x00,0x02,0xa3,
25787
+0x06,0x00,0x00,0xa8,0x06,0x00,0x02,0xa3,0x06,0x00,0x00,0xa8,
25788
+0x04,0x2b,0x01,0xaf,0x05,0x19,0x01,0x5f,0x07,0x8f,0x00,0xba,
25789
+0x06,0x1c,0x00,0x92,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25790
+0x04,0xd1,0x02,0x18,0x04,0xd1,0x01,0xc8,0x04,0xd1,0x00,0x3c,
25791
+0x04,0xd1,0x00,0x3c,0x04,0xd1,0x02,0x18,0x04,0xd1,0x01,0xc8,
25792
+0x04,0xd1,0x00,0x3c,0x04,0xd1,0x00,0x3c,0x04,0xd1,0x02,0x18,
25793
+0x04,0xd1,0x01,0xc8,0x04,0xd1,0x02,0x18,0x04,0xd1,0x02,0x18,
25794
+0x04,0xd1,0x01,0xc8,0x04,0xd1,0x01,0xc8,0x04,0xd1,0xff,0xec,
25795
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25796
+0x04,0xd1,0x02,0x18,0x04,0xd1,0x02,0x18,0x04,0xd1,0x01,0xc8,
25797
+0x04,0xd1,0x01,0xc8,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25798
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0x02,0x18,
25799
+0x04,0xd1,0x02,0x18,0x04,0xd1,0x01,0xc8,0x04,0xd1,0x01,0xc8,
25800
+0x04,0xd1,0x01,0xc8,0x04,0xd1,0x01,0xc8,0x04,0xd1,0x01,0xc8,
25801
+0x04,0xd1,0x01,0xc8,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25802
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25803
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25804
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25805
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25806
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25807
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25808
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25809
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25810
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25811
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25812
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25813
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25814
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0x00,0x3c,
25815
+0x04,0xd1,0x00,0x3c,0x04,0xd1,0x02,0x18,0x04,0xd1,0x01,0xc8,
25816
+0x04,0xd1,0xff,0xec,0x04,0xd1,0x01,0x78,0x04,0xd1,0x02,0x18,
25817
+0x04,0xd1,0x01,0x78,0x04,0xd1,0x01,0x78,0x04,0xd1,0xff,0xec,
25818
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0x02,0x18,
25819
+0x04,0xd1,0x01,0x78,0x04,0xd1,0x01,0x78,0x04,0xd1,0xff,0xec,
25820
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0x02,0x18,
25821
+0x04,0xd1,0x01,0x78,0x04,0xd1,0x01,0x78,0x04,0xd1,0xff,0xec,
25822
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25823
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25824
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,
25825
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0x02,0x18,
25826
+0x04,0xd1,0xff,0xec,0x04,0xd1,0xff,0xec,0x04,0xd1,0x02,0x18,
25827
+0x04,0xd1,0xff,0xa7,0x04,0xd1,0xff,0xa7,0x04,0xd1,0xff,0xa7,
25828
+0x04,0xd1,0xff,0xec,0x04,0xd1,0x02,0x18,0x04,0xd1,0x02,0x68,
25829
+0x04,0xd1,0x02,0x18,0x04,0xd1,0xff,0xec,0x04,0xd1,0x01,0xc8,
25830
+0x04,0xd1,0x02,0x68,0x04,0xd1,0x01,0xc8,0x04,0xd1,0xff,0xec,
25831
+0x04,0xd1,0x01,0xc8,0x04,0xd1,0xff,0xec,0x04,0xd1,0x01,0xc8,
25832
+0x06,0x27,0xff,0xec,0x06,0x27,0xff,0xec,0x06,0x27,0xff,0xec,
25833
+0x06,0x27,0xff,0xec,0x06,0x27,0xff,0xec,0x06,0x27,0xff,0xec,
25834
+0x06,0x27,0xff,0xec,0x06,0x27,0xff,0xec,0x06,0x27,0xff,0xec,
25835
+0x06,0x27,0xff,0xec,0x06,0x27,0xff,0xec,0x06,0x27,0xff,0xec,
25836
+0x06,0x27,0xff,0xec,0x06,0x27,0xff,0xec,0x06,0x27,0xff,0xec,
25837
+0x06,0x27,0xff,0xec,0x06,0x27,0x03,0x13,0x06,0x27,0xff,0xec,
25838
+0x06,0x27,0xff,0xec,0x06,0x27,0xff,0xec,0x06,0x27,0xff,0xec,
25839
+0x06,0x27,0x05,0x71,0x06,0x27,0xff,0xec,0x06,0x27,0x03,0x13,
25840
+0x06,0x27,0xff,0xec,0x06,0x27,0xff,0xec,0x06,0x27,0xff,0xec,
25841
+0x06,0x27,0xff,0xec,0x06,0x27,0xff,0xec,0x06,0x27,0x03,0x13,
25842
+0x06,0x27,0xff,0xec,0x06,0x27,0xff,0xec,0x07,0x8f,0x00,0xba,
25843
+0x07,0x8f,0x00,0xba,0x07,0x8f,0x00,0xba,0x07,0x8f,0x00,0xba,
25844
+0x07,0x8f,0x00,0xba,0x07,0x8f,0x00,0xba,0x07,0x8f,0x00,0xba,
25845
+0x07,0x8f,0x00,0xba,0x07,0x8f,0x00,0xba,0x07,0x8f,0x00,0xba,
25846
+0x05,0x6c,0x00,0xba,0x05,0x6c,0x00,0xba,0x07,0x8f,0x00,0xba,
25847
+0x07,0x8f,0x00,0xba,0x04,0x67,0x00,0xba,0x04,0x67,0x00,0xba,
25848
+0x06,0x27,0x00,0x06,0x06,0x27,0x00,0x06,0x06,0x27,0x00,0x06,
25849
+0x06,0x27,0x00,0x06,0x04,0x04,0x00,0x06,0x04,0x04,0x00,0x06,
25850
+0x06,0x27,0x00,0x06,0x06,0x27,0x00,0x06,0x04,0x04,0x00,0x06,
25851
+0x04,0x04,0x00,0x06,0x06,0x27,0x00,0x06,0x06,0x27,0x00,0x06,
25852
+0x06,0x27,0x00,0x06,0x06,0x27,0x00,0x06,0x04,0x04,0x00,0x06,
25853
+0x04,0x04,0x00,0x06,0x06,0x27,0x00,0x06,0x06,0x27,0x00,0x06,
25854
+0x04,0x04,0x00,0x06,0x04,0x04,0x00,0x06,0x06,0x27,0x00,0x06,
25855
+0x06,0x27,0x00,0x06,0x06,0x27,0x00,0x06,0x06,0x27,0x00,0x06,
25856
+0x06,0x27,0x00,0x06,0x06,0xfb,0x00,0x70,0x03,0xf4,0x00,0x06,
25857
+0x06,0xfb,0x00,0x70,0x06,0xfb,0x00,0x72,0x06,0xfb,0x00,0x70,
25858
+0x06,0xfb,0x00,0x70,0x06,0xfb,0x00,0x70,0x06,0xfb,0x00,0x70,
25859
+0x06,0xfb,0x00,0x70,0x06,0xfb,0x00,0x70,0x06,0xfb,0x00,0x70,
25860
+0x06,0xfb,0x00,0x70,0x06,0xfb,0x00,0x70,0x04,0x37,0x00,0x70,
25861
+0x04,0x37,0x00,0xba,0x06,0x54,0x00,0xba,0x07,0xc3,0x00,0xba,
25862
+0x07,0xc3,0x00,0xba,0x07,0xc3,0x00,0xba,0x03,0x19,0x00,0x06,
25863
+0x03,0x19,0x00,0x06,0x03,0x19,0x00,0x06,0x03,0x19,0x00,0x06,
25864
+0x06,0xfb,0x00,0x70,0x06,0xfb,0x00,0x70,0x06,0x27,0x00,0x06,
25865
+0x06,0x27,0x00,0x06,0x06,0x27,0x00,0x06,0x06,0x27,0x00,0x06,
25866
+0x04,0xb8,0x01,0x33,0x07,0x8f,0x00,0xba,0x07,0x8f,0x00,0xba,
25867
+0x07,0x8f,0x00,0xba,0x07,0x8f,0x00,0xba,0x07,0x8f,0x00,0xba,
25868
+0x06,0x27,0x00,0x06,0x06,0x27,0x00,0x06,0x06,0x27,0x00,0x06,
25869
+0x08,0xf4,0x00,0x70,0x07,0x8f,0x00,0xba,0x07,0x8f,0x00,0xba,
25870
+0x07,0x8f,0x00,0xba,0x07,0x8f,0x00,0xba,0x06,0xfb,0x00,0x70,
25871
+0x06,0xfb,0x00,0x70,0x06,0xfb,0x00,0x70,0x06,0xfb,0x00,0x70,
25872
+0x06,0x27,0x00,0x06,0x06,0x27,0x00,0x06,0x06,0x27,0x00,0x06,
25873
+0x06,0xa4,0x00,0xba,0x06,0xa4,0x00,0xba,0x05,0xdc,0x00,0xba,
25874
+0x05,0xdc,0x00,0xba,0x06,0x27,0x00,0x06,0x07,0x2c,0x00,0xab,
25875
+0x07,0x2c,0x00,0xa3,0x07,0x2c,0x00,0xaa,0x07,0x2c,0x00,0xaa,
25876
+0x07,0x2c,0x00,0xaa,0x07,0x2c,0x00,0xaa,0x04,0xe9,0x00,0xaf,
25877
+0x05,0xd9,0x00,0xaf,0x05,0xd9,0x00,0xaf,0x07,0x2c,0x00,0xaf,
25878
+0x07,0x2c,0x01,0x53,0x07,0x2c,0x01,0xc0,0x07,0x2c,0x00,0xf8,
25879
+0x07,0x2c,0x01,0x04,0x07,0x2c,0x01,0xec,0x07,0x2c,0x01,0x43,
25880
+0x07,0x2c,0x00,0xb9,0x07,0x2c,0x01,0x58,0x07,0x2c,0x00,0xe4,
25881
+0x07,0x2c,0x01,0x42,0x07,0x2c,0x00,0xb6,0x07,0x2c,0x01,0x58,
25882
+0x07,0x2c,0x00,0xe4,0x03,0xc6,0x00,0xac,0x05,0x1b,0x00,0xac,
25883
+0x07,0x2c,0x01,0x78,0x07,0x2c,0x00,0xbc,0x03,0xc6,0x00,0xb5,
25884
+0x02,0xdc,0x00,0xac,0x03,0xdf,0x00,0xad,0x06,0xb4,0x00,0x75,
25885
+0x03,0x1f,0x00,0x6e,0x03,0x1f,0x00,0x6e,0x03,0xf4,0x00,0x06,
25886
+0x03,0x1f,0x00,0xb7,0x03,0x1f,0x00,0xa4,0x06,0xb4,0x00,0x8c,
25887
+0x06,0xb4,0x00,0x8c,0x06,0xb4,0x00,0x65,0x06,0xb4,0x00,0x82,
25888
+0x08,0x44,0x00,0x75,0x0b,0x78,0x00,0x4c,0x0b,0x78,0x00,0x75,
25889
+0x0b,0x78,0x00,0x4c,0x0b,0x78,0x00,0x4c,0x0b,0x78,0x00,0x75,
25890
+0x0b,0x78,0x00,0x4c,0x0b,0x78,0x00,0x4c,0x0b,0x78,0x00,0x75,
25891
+0x0b,0x78,0x00,0x4c,0x0b,0x78,0x00,0x75,0x0b,0x78,0x00,0x75,
25892
+0x05,0xdc,0x00,0x00,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25893
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25894
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x03,0x75,
25895
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25896
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25897
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x03,0x75,0x05,0xdc,0x01,0x1d,
25898
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25899
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25900
+0x05,0xdc,0x03,0x75,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25901
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25902
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x03,0x75,
25903
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25904
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25905
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x03,0x75,0x05,0xdc,0x01,0x1d,
25906
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25907
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25908
+0x05,0xdc,0x03,0x75,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25909
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25910
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x03,0x75,
25911
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25912
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25913
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25914
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25915
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25916
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25917
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25918
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25919
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25920
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25921
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25922
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25923
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25924
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25925
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25926
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25927
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25928
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25929
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25930
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25931
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25932
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25933
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25934
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x03,0x75,
25935
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25936
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25937
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x03,0x75,0x05,0xdc,0x01,0x1d,
25938
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25939
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25940
+0x05,0xdc,0x03,0x75,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25941
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25942
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x03,0x75,
25943
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25944
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25945
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x03,0x75,0x05,0xdc,0x01,0x1d,
25946
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25947
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25948
+0x05,0xdc,0x03,0x75,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25949
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25950
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x03,0x75,
25951
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25952
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25953
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x03,0x75,0x05,0xdc,0x01,0x1d,
25954
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25955
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25956
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25957
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25958
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25959
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25960
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25961
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25962
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25963
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25964
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25965
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25966
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25967
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25968
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25969
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25970
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25971
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25972
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25973
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25974
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25975
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25976
+0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,0x05,0xdc,0x01,0x1d,
25977
+0x05,0xdc,0x01,0x1d,0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x75,
25978
+0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x4c,
25979
+0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x75,
25980
+0x06,0xb4,0x01,0xb8,0x06,0xb4,0x01,0xb8,0x06,0xb4,0x01,0x54,
25981
+0x06,0xb4,0x01,0x54,0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x75,
25982
+0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x6e,
25983
+0x06,0xb4,0x00,0x6e,0x06,0xb4,0x01,0xb8,0x06,0xb4,0x01,0xb8,
25984
+0x06,0xb4,0x00,0x6e,0x06,0xb4,0x00,0x6e,0x06,0xb4,0x00,0x6e,
25985
+0x06,0xb4,0x00,0x6e,0x06,0xb4,0x00,0x6e,0x06,0xb4,0x00,0x75,
25986
+0x06,0xb4,0x00,0x6e,0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x6e,
25987
+0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x74,0x06,0xb4,0x00,0x4c,
25988
+0x06,0xb4,0x00,0x75,0x06,0xb4,0x01,0x2e,0x06,0xb4,0x01,0x2e,
25989
+0x06,0xb4,0x01,0x2d,0x06,0xb4,0x01,0x84,0x06,0xb4,0x01,0x84,
25990
+0x06,0xb4,0x01,0x2e,0x06,0xb4,0x01,0x15,0x06,0xb4,0x01,0x15,
25991
+0x06,0xb4,0x01,0x15,0x06,0xb4,0x01,0x2d,0x06,0xb4,0x01,0x15,
25992
+0x06,0xb4,0x01,0x15,0x06,0xb4,0x01,0x15,0x06,0xb4,0x01,0x15,
25993
+0x06,0xb4,0x01,0x15,0x06,0xb4,0x01,0x15,0x06,0xb4,0x01,0x15,
25994
+0x06,0xb4,0x01,0x15,0x06,0xb4,0x00,0x4c,0x06,0xb4,0x01,0x2c,
25995
+0x06,0xb4,0x01,0x2e,0x06,0xb4,0x01,0x46,0x06,0xb4,0x01,0x56,
25996
+0x06,0xb4,0x02,0x57,0x06,0xb4,0x02,0x03,0x06,0xb4,0x00,0x72,
25997
+0x06,0xb4,0x00,0x68,0x06,0xb4,0x00,0x65,0x06,0xb4,0x00,0x72,
25998
+0x06,0xb4,0x01,0x28,0x06,0xb4,0x01,0x47,0x06,0xb4,0x01,0x1c,
25999
+0x06,0xb4,0x01,0x1c,0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x4c,
26000
+0x06,0xb4,0x00,0x4c,0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x4c,
26001
+0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x4c,0x06,0xb4,0x01,0xb8,
26002
+0x06,0xb4,0x00,0x46,0x06,0xb4,0x00,0x46,0x06,0xb4,0x01,0xb8,
26003
+0x06,0xb4,0x01,0xb8,0x06,0xb4,0x00,0x46,0x06,0xb4,0x03,0x09,
26004
+0x06,0xb4,0x00,0x46,0x06,0xb4,0x01,0xb8,0x06,0xb4,0x00,0x75,
26005
+0x06,0xb4,0x00,0x75,0x06,0xb4,0x01,0xd1,0x06,0xb4,0x01,0xd1,
26006
+0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x75,0x06,0xb4,0x01,0xb8,
26007
+0x06,0xb4,0x01,0xb8,0x06,0xb4,0x00,0x46,0x06,0xb4,0x00,0x75,
26008
+0x06,0xb4,0x01,0xd1,0x06,0xb4,0x01,0xd1,0x06,0xb4,0x00,0x46,
26009
+0x06,0xb4,0x00,0x75,0x06,0xb4,0x01,0xb8,0x06,0xb4,0x01,0xb8,
26010
+0x06,0xb4,0x00,0x46,0x06,0xb4,0x00,0xf0,0x06,0xb4,0x00,0x75,
26011
+0x06,0xb4,0x00,0xf0,0x06,0xb4,0x00,0x46,0x06,0xb4,0x00,0x46,
26012
+0x06,0xb4,0x00,0x46,0x06,0xb4,0x00,0x46,0x06,0xb4,0x00,0x46,
26013
+0x06,0xb4,0x00,0x46,0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x75,
26014
+0x06,0xb4,0x00,0xf0,0x06,0xb4,0x00,0xf0,0x06,0xb4,0x00,0x75,
26015
+0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x4c,
26016
+0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x4c,
26017
+0x07,0xda,0x00,0x4c,0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x75,
26018
+0x07,0xe0,0x00,0x4c,0x06,0xb4,0x00,0x4c,0x06,0xb4,0x01,0x5a,
26019
+0x06,0xb4,0x01,0x40,0x06,0xb4,0x00,0xef,0x06,0xb4,0x00,0xef,
26020
+0x03,0xf4,0x00,0x06,0x0c,0x1a,0x00,0x2f,0x04,0x2b,0x00,0x2f,
26021
+0x04,0x2b,0x00,0x2f,0x06,0xb4,0x01,0x1b,0x06,0xb4,0x00,0xd9,
26022
+0x06,0xb4,0x00,0xd9,0x06,0xb4,0x00,0x92,0x06,0xb4,0x01,0x2f,
26023
+0x06,0xb4,0x00,0x92,0x06,0xb4,0x01,0x2f,0x06,0xb4,0x00,0x4c,
26024
+0x06,0xb4,0x00,0x4c,0x06,0xb4,0x01,0xb8,0x06,0xb4,0x01,0xb8,
26025
+0x06,0xb4,0x00,0x92,0x06,0xb4,0x01,0x2f,0x06,0xb4,0x00,0x92,
26026
+0x06,0xb4,0x01,0x2f,0x06,0xb4,0x00,0x4c,0x06,0xb4,0x01,0xb8,
26027
+0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x75,0x06,0xb4,0x00,0x4c,
26028
+0x06,0xb4,0x00,0x4c,0x07,0x8f,0x00,0xba,0x07,0x8f,0x00,0xba,
26029
+0x07,0x8f,0x00,0xba,0x07,0x8f,0x00,0xba,0x06,0x27,0x00,0x06,
26030
+0x06,0x27,0x00,0x06,0x06,0x27,0x00,0x06,0x06,0x27,0x00,0x06,
26031
+0x07,0x8f,0x00,0xba,0x05,0x50,0x00,0x67,0x02,0x8f,0x00,0x24,
26032
+0x05,0x62,0x00,0x67,0x06,0x06,0x00,0x71,0x06,0xfa,0x00,0x71,
26033
+0x05,0x27,0x00,0x4a,0x05,0xfa,0x00,0x71,0x04,0xd9,0x00,0x3b,
26034
+0x05,0x8f,0x00,0x5c,0x04,0x37,0x00,0x52,0x06,0x42,0x00,0x73,
26035
+0x08,0x31,0x00,0x66,0x05,0xc7,0xff,0xf4,0x06,0x42,0x00,0x73,
26036
+0x05,0x4d,0xff,0xfa,0x09,0x0a,0x00,0x0a,0x07,0x84,0x00,0x21,
26037
+0x05,0xec,0x00,0x71,0x04,0x72,0x00,0x46,0x05,0x9a,0x00,0x5a,
26038
+0x04,0x02,0x00,0x4a,0x04,0xd1,0x00,0x66,0x04,0x6d,0x00,0x75,
26039
+0x02,0x1d,0x00,0x2e,0x03,0xa3,0xff,0xf3,0x05,0x7b,0x00,0xac,
26040
+0x05,0x8f,0x00,0x5c,0x06,0x2f,0x00,0x78,0x05,0x14,0x00,0x78,
26041
+0x05,0x10,0x00,0x12,0x05,0x43,0x00,0xbd,0x05,0x0d,0x00,0x71,
26042
+0x07,0xb2,0x00,0x78,0x06,0x0c,0x00,0x78,0x07,0xaf,0x00,0x78,
26043
+0x04,0xf0,0x00,0x8c,0x05,0x2b,0x00,0x78,0x07,0xb3,0x00,0x6b,
26044
+0x05,0x0e,0x00,0xc4,0x05,0x2b,0x00,0x78,0x07,0xb3,0x00,0x78,
26045
+0x05,0x29,0x00,0x78,0x06,0xed,0x00,0x73,0x07,0xb0,0x00,0x78,
26046
+0x05,0x29,0x00,0x78,0x05,0x29,0x00,0x78,0x07,0xad,0x00,0x78,
26047
+0x07,0x90,0x00,0xae,0x06,0xe8,0x00,0x78,0x05,0x27,0x00,0x78,
26048
+0x05,0x2b,0x00,0x78,0x05,0x29,0x00,0x78,0x05,0x32,0x00,0xa8,
26049
+0x05,0x80,0x00,0xcd,0x05,0x13,0x00,0xaf,0x07,0xdb,0x00,0xcf,
26050
+0x05,0x73,0x00,0x78,0x05,0x69,0x00,0xb8,0x06,0xd0,0x00,0x78,
26051
+0x07,0xa8,0x00,0x82,0x05,0x0f,0x00,0x78,0x05,0x28,0x00,0x9b,
26052
+0x05,0x2c,0x00,0x78,0x05,0xfe,0x00,0x78,0x07,0x50,0x00,0xc5,
26053
+0x04,0x4a,0x00,0x8b,0x06,0xb4,0x00,0xd9,0x03,0x1f,0x00,0xb0,
26054
+0x03,0x1f,0x00,0x9e,0x03,0x1f,0x00,0xb0,0x03,0x1f,0x00,0x9e,
26055
+0x04,0x4a,0x00,0x8b,0x05,0x7b,0x00,0xac,0x04,0x1b,0x00,0x73,
26056
+0x03,0x29,0x00,0x71,0x03,0x23,0x00,0x4a,0x08,0xd6,0x00,0x46,
26057
+0x07,0x1a,0x00,0x3c,0x09,0x8c,0x00,0x86,0x06,0xf7,0x00,0x5d,
26058
+0x09,0x1e,0x00,0x71,0x07,0x31,0x00,0x3b,0x03,0xf2,0x00,0xd6,
26059
+0x03,0xf2,0x00,0xd6,0x03,0xf2,0x00,0xd6,0x03,0xf2,0x00,0xd6,
26060
+0x03,0xf2,0x00,0xd6,0x03,0xf2,0x00,0xd6,0x03,0xf2,0x00,0xd6,
26061
+0x03,0xf2,0x00,0xd6,0x03,0xf2,0x00,0xd6,0x03,0xf2,0x00,0xd6,
26062
+0x03,0xf2,0x00,0xd6,0x03,0xf2,0x00,0xd6,0x03,0xf2,0x00,0xd6,
26063
+0x03,0xf2,0x00,0xd6,0x03,0xf2,0x00,0xd6,0x02,0xf4,0x00,0x73,
26064
+0x02,0xf4,0x00,0x73,0x02,0x06,0x00,0xb0,0x02,0x06,0x00,0xb0,
26065
+0x02,0x06,0x00,0xb0,0x06,0xfa,0x00,0x71,0x05,0x13,0x00,0x4a,
26066
+0x06,0xbe,0x00,0x14,0x06,0x09,0x00,0x3b,0x04,0xe5,0x00,0x58,
26067
+0x04,0x7b,0x00,0x66,0x04,0x63,0x00,0x3f,0x04,0x40,0x00,0x3f,
26068
+0x05,0x08,0x00,0x3f,0x04,0xe1,0x00,0x3f,0x04,0x1d,0x00,0x3b,
26069
+0x04,0x1b,0x00,0x73,0x09,0x8f,0xff,0xf4,0x07,0x8e,0x00,0x66,
26070
+0x09,0xcf,0xff,0xf4,0x07,0x9a,0x00,0x66,0x09,0x32,0xff,0xdd,
26071
+0x07,0x79,0x00,0x66,0x07,0xbf,0xff,0xf4,0x06,0x45,0x00,0x66,
26072
+0x07,0xbf,0xff,0xf4,0x06,0x45,0x00,0x66,0x07,0xb3,0xff,0xf4,
26073
+0x06,0x98,0x00,0x66,0x06,0x1f,0x00,0x73,0x04,0x7b,0x00,0x66,
26074
+0x06,0x31,0x00,0x64,0x05,0x00,0x00,0x32,0x06,0x4b,0x00,0x71,
26075
+0x03,0x79,0x00,0x3b,0x07,0x74,0xff,0xf6,0x05,0xb0,0xff,0xf6,
26076
+0x0b,0x54,0x00,0x73,0x07,0xfe,0x00,0x66,0x05,0xa7,0x00,0x71,
26077
+0x04,0xe2,0x00,0x3b,0x04,0xe5,0x00,0x6f,0x03,0xd3,0x00,0x4a,
26078
+0x05,0x50,0x00,0x31,0x02,0x8f,0x00,0x3b,0x06,0xbe,0x00,0x6f,
26079
+0x05,0x27,0x00,0x4a,0x04,0xe5,0x00,0x6f,0x03,0xd3,0x00,0x4a,
26080
+0x06,0x1f,0x00,0x41,0x04,0x7b,0x00,0x34,0x03,0x37,0x01,0x1b,
26081
+0x02,0x33,0x00,0xc9,0x06,0x2f,0x00,0x14,0x07,0x00,0x00,0x64,
26082
+0x05,0x27,0x00,0x4a,0x06,0xfa,0xff,0x40,0x04,0x65,0x00,0x47,
26083
+0x04,0xfb,0x00,0x40,0x07,0xa8,0x00,0x4a,0x05,0x8d,0x00,0x56,
26084
+0x05,0x62,0x00,0x49,0x08,0x31,0x00,0x66,0x03,0x29,0x00,0x71,
26085
+0x09,0x9b,0xff,0xf4,0x05,0x3b,0x00,0x6c,0x05,0x52,0x00,0x78,
26086
+0x05,0xb6,0x00,0x6e,0x07,0x94,0x00,0x7f,0x05,0x52,0x00,0x6c,
26087
+0x05,0x46,0x00,0x6c,0x05,0xcc,0x00,0x36,0x07,0xe4,0x00,0x80,
26088
+0x05,0x52,0x00,0x78,0x05,0x52,0x00,0x78,0x0a,0x0f,0x00,0x88,
26089
+0x05,0x76,0x00,0x78,0x05,0x74,0x00,0x9a,0x07,0x9f,0x00,0x81,
26090
+0x05,0x52,0x00,0x78,0x05,0x74,0x00,0x78,0x07,0xfd,0x00,0x81,
26091
+0x05,0xf8,0x00,0x09,0x06,0x63,0x00,0x7b,0x05,0xfb,0x00,0x41,
26092
+0x07,0x8e,0x00,0x7f,0x05,0x73,0x00,0x78,0x07,0x7d,0x00,0x7f,
26093
+0x05,0x71,0x00,0x78,0x05,0x81,0x00,0x34,0x05,0x74,0x00,0x9a,
26094
+0x05,0xd4,0x00,0x7b,0x05,0x74,0x00,0x78,0x05,0x81,0x00,0x9b,
26095
+0x05,0x54,0x00,0x78,0x05,0xd5,0x00,0x08,0x07,0x13,0x00,0x75,
26096
+0x05,0x51,0x00,0x78,0x05,0xa5,0x00,0x78,0x05,0x53,0x00,0x78,
26097
+0x05,0x52,0x00,0x78,0x05,0x52,0x00,0x78,0x05,0xc6,0x00,0x79,
26098
+0x07,0xb1,0x00,0x80,0x07,0x3b,0x00,0xa8,0x04,0xd1,0x00,0x66,
26099
+0x04,0x00,0x00,0x7d,0x04,0x00,0x00,0xc7,0x05,0xaf,0x00,0x4a,
26100
+0x05,0x56,0x00,0x4a,0x05,0x56,0x00,0x4a,0x08,0x39,0x00,0x48,
26101
+0x08,0x3e,0x00,0x46,0x06,0x2c,0x00,0x4f,0x07,0x76,0x00,0x64,
26102
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
26103
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
26104
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
26105
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
26106
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
26107
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
26108
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x34,0x00,0x1e,
26109
+0x05,0xc7,0xff,0x63,0x05,0xe1,0xff,0xe0,0x06,0x1f,0x00,0x6a,
26110
+0x06,0x6a,0xff,0xe0,0x05,0xd7,0xff,0xe0,0x05,0x8d,0xff,0xe0,
26111
+0x06,0x64,0x00,0x72,0x06,0xfa,0xff,0xe0,0x03,0x29,0xff,0xe0,
26112
+0x03,0x35,0xfe,0xa7,0x05,0xfa,0xff,0xe0,0x05,0x50,0xff,0xe0,
26113
+0x08,0x31,0xff,0xe0,0x07,0x00,0xff,0xd6,0x06,0x8f,0x00,0x6a,
26114
+0x05,0x62,0xff,0xe0,0x06,0x8f,0x00,0x7b,0x06,0x06,0xff,0xe0,
26115
+0x05,0x7b,0x00,0x3b,0x05,0x56,0x00,0x60,0x06,0xbe,0x00,0xdf,
26116
+0x05,0xc7,0x00,0x68,0x08,0x39,0x00,0x86,0x05,0xb2,0xff,0x7b,
26117
+0x05,0x48,0x00,0x65,0x05,0x8f,0xff,0xcb,0x04,0xc5,0x00,0x44,
26118
+0x05,0x1f,0x00,0x57,0x04,0x7b,0x00,0x56,0x05,0x1f,0x00,0x28,
26119
+0x04,0xbc,0x00,0x57,0x02,0xf6,0xff,0x81,0x05,0x1f,0x00,0x48,
26120
+0x02,0x8f,0x00,0x67,0x02,0x7b,0xfe,0x8a,0x04,0xd9,0x00,0x54,
26121
+0x02,0x8f,0x00,0x54,0x07,0x96,0x00,0x8f,0x05,0x27,0x00,0x8f,
26122
+0x04,0xd1,0x00,0x56,0x05,0x1f,0x00,0x58,0x05,0x1f,0x00,0xb8,
26123
+0x03,0xd3,0x00,0x8f,0x04,0x1b,0x00,0x17,0x03,0x37,0x00,0x70,
26124
+0x05,0x27,0x00,0x8c,0x04,0x85,0x00,0x4d,0x06,0xd9,0x00,0x73,
26125
+0x04,0x83,0x00,0x05,0x04,0x85,0xff,0xb4,0x04,0x37,0xff,0xeb,
26126
+0x06,0x35,0xff,0xf0,0x06,0xc3,0x00,0x60,0x06,0xf0,0x00,0x60,
26127
+0x06,0x19,0x00,0x60,0x05,0xae,0x00,0x60,0x06,0xd5,0x00,0x56,
26128
+0x03,0xbe,0x00,0x60,0x03,0xc9,0xff,0x6a,0x06,0xf4,0x00,0x60,
26129
+0x05,0xa0,0x00,0x60,0x08,0xdb,0x00,0x56,0x06,0xf8,0x00,0x56,
26130
+0x05,0xc7,0x00,0x87,0x05,0xf4,0x00,0x17,0x06,0xfa,0x00,0x46,
26131
+0x06,0x35,0xff,0xf4,0x08,0xfc,0xff,0xee,0x06,0x35,0x00,0x0a,
26132
+0x05,0xb6,0xff,0xee,0x05,0x2f,0x00,0x54,0x05,0x98,0x00,0x2f,
26133
+0x04,0xdf,0x00,0x54,0x05,0x98,0x00,0x54,0x05,0x17,0x00,0x54,
26134
+0x03,0x71,0x00,0x3f,0x05,0x98,0x00,0x54,0x05,0xd1,0x00,0x3f,
26135
+0x03,0x0a,0x00,0x46,0x02,0xe5,0xff,0x68,0x05,0x8b,0x00,0x46,
26136
+0x03,0x0a,0x00,0x46,0x08,0x77,0x00,0x46,0x05,0xd1,0x00,0x46,
26137
+0x05,0x56,0x00,0x54,0x05,0x98,0x00,0x2f,0x05,0x98,0x00,0x54,
26138
+0x04,0x37,0x00,0x3b,0x04,0x81,0x00,0x58,0x03,0xb2,0x00,0x31,
26139
+0x05,0xd1,0x00,0x2f,0x04,0xa6,0xff,0xdb,0x06,0xe3,0xff,0xee,
26140
+0x04,0xc5,0x00,0x00,0x04,0xa6,0xff,0xe5,0x04,0x8b,0x00,0x48,
26141
+0x02,0x8f,0x00,0x93,0x02,0x7b,0xfe,0xb5,0x05,0x91,0x00,0x60,
26142
+0x05,0x91,0x00,0xfa,0x05,0x91,0x00,0x89,0x05,0x91,0x00,0x8f,
26143
+0x05,0x91,0x00,0x54,0x05,0x91,0x00,0xa8,0x05,0x91,0x00,0x81,
26144
+0x05,0x91,0x00,0xa2,0x05,0x91,0x00,0x6a,0x05,0x91,0x00,0x6f,
26145
+0x00,0x00,0xfd,0x89,0x00,0x00,0xfc,0xc9,0x00,0x00,0xfd,0x89,
26146
+0x00,0x00,0xfc,0xb6,0x00,0x00,0xfc,0xf6,0x00,0x00,0xfc,0xc1,
26147
+0x00,0x00,0xfc,0xc1,0x00,0x00,0xfc,0xc9,0x00,0x00,0xfc,0xc9,
26148
+0x00,0x00,0xfd,0x8b,0x00,0x00,0xfc,0xf4,0x00,0x00,0xfc,0x54,
26149
+0x02,0x8f,0x00,0x4a,0x02,0x8f,0x00,0x4a,0x02,0x8f,0x00,0xc7,
26150
+0x02,0xed,0xff,0x3b,0x02,0x8f,0xff,0xf8,0x02,0x8f,0x00,0x4a,
26151
+0x07,0x00,0x00,0x64,0x01,0x2c,0xff,0xf1,0x05,0x78,0x01,0x85,
26152
+0x05,0x78,0x01,0x85,0x05,0x78,0x01,0x92,0x05,0x78,0x01,0x85,
26153
+0x05,0x78,0x01,0x82,0x05,0x78,0x01,0x92,0x05,0x78,0x01,0x82,
26154
+0x05,0x78,0x01,0x76,0x05,0x78,0x01,0x7d,0x05,0x78,0x01,0x76,
26155
+0x05,0x78,0x01,0x7d,0x05,0x78,0x01,0x76,0x05,0x78,0x01,0x7d,
26156
+0x05,0x78,0x01,0x7d,0x05,0x78,0x01,0x76,0x05,0x78,0x01,0x76,
26157
+0x05,0x78,0x01,0x85,0x05,0x78,0x01,0x82,0x05,0x78,0x01,0x85,
26158
+0x05,0x78,0x01,0x7d,0x00,0x00,0xfc,0x83,0x05,0x1f,0x00,0x6d,
26159
+0x07,0x00,0x00,0x64,0x05,0xa8,0x00,0x8a,0x04,0xd1,0x00,0x66,
26160
+0x04,0x85,0x00,0x45,0x04,0xd1,0x00,0x66,0x04,0x6c,0x00,0x69,
26161
+0x04,0x63,0x00,0x53,0x05,0x0e,0x00,0x68,0x04,0xf6,0x00,0x66,
26162
+0x03,0x37,0x01,0x17,0x04,0x4a,0x00,0x8b,0x04,0x4a,0x00,0x8b,
26163
+0x05,0x27,0x00,0x43,0x06,0xbe,0x00,0x60,0x06,0x89,0x00,0x71,
26164
+0x05,0x1f,0xff,0xed,0x06,0xbf,0x00,0x14,0x05,0x1f,0xff,0xed,
26165
+0x09,0x01,0x00,0x4b,0x09,0x01,0x00,0x4b,0x08,0x13,0x00,0x17,
26166
+0x05,0xe4,0x00,0x42,0x09,0xa2,0x00,0x42,0x0d,0x5f,0x00,0x42,
26167
+0x11,0x1d,0x00,0x42,0x05,0xe4,0x00,0x42,0x05,0xe4,0x00,0x42,
26168
+0x05,0x19,0x04,0x1a,0x05,0x19,0x04,0x1a,0x01,0xd6,0x00,0x00,
26169
+0x03,0x02,0x00,0x00,0x04,0x2e,0x00,0x00,0x01,0xd6,0x00,0x00,
26170
+0x03,0x02,0x00,0x00,0x04,0x2e,0x00,0x00,0x05,0x5a,0x00,0x00,
26171
+0x00,0x00,0x00,0x01,0x00,0x00,0x20,0x18,0x00,0x01,0x05,0x57,
26172
+0x18,0x00,0x00,0x0a,0x08,0x0a,0x00,0x10,0x00,0x37,0xff,0xb7,
26173
+0x00,0x10,0x00,0x39,0xff,0x6b,0x00,0x10,0x00,0x3a,0xff,0x90,
26174
+0x00,0x10,0x00,0x3b,0xff,0xb7,0x00,0x10,0x00,0x3c,0xff,0x1f,
26175
+0x00,0x10,0x00,0x9f,0xff,0x1f,0x00,0x10,0x01,0x26,0xff,0xb7,
26176
+0x00,0x10,0x01,0x3a,0xff,0x1f,0x00,0x24,0x00,0x37,0xff,0x90,
26177
+0x00,0x24,0x00,0x39,0xff,0x9a,0x00,0x24,0x00,0x3a,0xff,0xad,
26178
+0x00,0x24,0x00,0x3c,0xff,0xad,0x00,0x24,0x00,0x49,0xff,0xdc,
26179
+0x00,0x24,0x00,0x57,0xff,0xdc,0x00,0x24,0x00,0x59,0xff,0xad,
26180
+0x00,0x24,0x00,0x5a,0xff,0xa4,0x00,0x24,0x00,0x5c,0xff,0xad,
26181
+0x00,0x24,0x00,0x9f,0xff,0xad,0x00,0x24,0x00,0xbf,0xff,0xad,
26182
+0x00,0x24,0x00,0xc1,0xff,0xad,0x00,0x24,0x01,0x24,0xff,0x90,
26183
+0x00,0x24,0x01,0x25,0xff,0xdc,0x00,0x24,0x01,0x26,0xff,0x90,
26184
+0x00,0x24,0x01,0x27,0xff,0xdc,0x00,0x24,0x01,0x36,0xff,0xad,
26185
+0x00,0x24,0x01,0x37,0xff,0xa4,0x00,0x24,0x01,0x38,0xff,0xad,
26186
+0x00,0x24,0x01,0x39,0xff,0xad,0x00,0x24,0x01,0x3a,0xff,0xad,
26187
+0x00,0x24,0x01,0xdc,0xff,0x90,0x00,0x24,0x01,0xdd,0xff,0xdc,
26188
+0x00,0x24,0x01,0xf4,0xff,0xad,0x00,0x24,0x06,0x09,0xff,0xad,
26189
+0x00,0x24,0x06,0x0a,0xff,0xa4,0x00,0x24,0x06,0x0b,0xff,0xad,
26190
+0x00,0x24,0x06,0x0c,0xff,0xa4,0x00,0x24,0x06,0x0d,0xff,0xad,
26191
+0x00,0x24,0x06,0x0e,0xff,0xa4,0x00,0x24,0x06,0x7b,0xff,0xad,
26192
+0x00,0x24,0x06,0x7c,0xff,0xad,0x00,0x24,0x07,0x87,0xfe,0xd3,
26193
+0x00,0x24,0x07,0x8b,0xfe,0xd3,0x00,0x24,0x0c,0xef,0xff,0xdc,
26194
+0x00,0x24,0x0c,0xf0,0xff,0xdc,0x00,0x24,0x0c,0xf1,0xff,0xdc,
26195
+0x00,0x25,0x00,0x10,0x00,0x26,0x00,0x25,0x00,0x26,0x00,0x26,
26196
+0x00,0x25,0x00,0x2a,0x00,0x26,0x00,0x25,0x00,0x32,0x00,0x26,
26197
+0x00,0x25,0x00,0x3c,0xff,0xdc,0x00,0x25,0x00,0x89,0x00,0x26,
26198
+0x00,0x25,0x00,0x94,0x00,0x26,0x00,0x25,0x00,0x95,0x00,0x26,
26199
+0x00,0x25,0x00,0x96,0x00,0x26,0x00,0x25,0x00,0x97,0x00,0x26,
26200
+0x00,0x25,0x00,0x98,0x00,0x26,0x00,0x25,0x00,0x9a,0x00,0x26,
26201
+0x00,0x25,0x00,0x9f,0xff,0xdc,0x00,0x25,0x00,0xc8,0x00,0x26,
26202
+0x00,0x25,0x00,0xca,0x00,0x26,0x00,0x25,0x00,0xcc,0x00,0x26,
26203
+0x00,0x25,0x00,0xce,0x00,0x26,0x00,0x25,0x00,0xde,0x00,0x26,
26204
+0x00,0x25,0x00,0xe0,0x00,0x26,0x00,0x25,0x00,0xe2,0x00,0x26,
26205
+0x00,0x25,0x00,0xe4,0x00,0x26,0x00,0x25,0x01,0x0e,0x00,0x26,
26206
+0x00,0x25,0x01,0x10,0x00,0x26,0x00,0x25,0x01,0x12,0x00,0x26,
26207
+0x00,0x25,0x01,0x14,0x00,0x26,0x00,0x25,0x01,0x38,0xff,0xdc,
26208
+0x00,0x25,0x01,0x3a,0xff,0xdc,0x00,0x25,0x01,0xac,0x00,0x26,
26209
+0x00,0x25,0x01,0xae,0x00,0x26,0x00,0x25,0x01,0xf0,0x00,0x26,
26210
+0x00,0x25,0x01,0xf4,0xff,0xdc,0x00,0x26,0x00,0x0f,0xff,0xb7,
26211
+0x00,0x26,0x00,0x11,0xff,0xb7,0x00,0x27,0x00,0x0f,0xff,0xb7,
26212
+0x00,0x27,0x00,0x10,0x00,0x26,0x00,0x27,0x00,0x11,0xff,0xb7,
26213
+0x00,0x27,0x00,0x39,0xff,0xdc,0x00,0x28,0x00,0x10,0x00,0x26,
26214
+0x00,0x29,0x00,0x0f,0xfe,0xc1,0x00,0x29,0x00,0x10,0xff,0xa4,
26215
+0x00,0x29,0x00,0x11,0xfe,0xc1,0x00,0x29,0x00,0x1d,0xff,0xb7,
26216
+0x00,0x29,0x00,0x1e,0xff,0xb7,0x00,0x29,0x00,0x24,0xff,0x4e,
26217
+0x00,0x29,0x00,0x44,0xff,0x75,0x00,0x29,0x00,0x48,0xff,0x90,
26218
+0x00,0x29,0x00,0x52,0xff,0x90,0x00,0x29,0x00,0x82,0xff,0x4e,
26219
+0x00,0x29,0x00,0x83,0xff,0x4e,0x00,0x29,0x00,0x84,0xff,0x4e,
26220
+0x00,0x29,0x00,0x85,0xff,0x4e,0x00,0x29,0x00,0x86,0xff,0x4e,
26221
+0x00,0x29,0x00,0xa2,0xff,0x75,0x00,0x29,0x00,0xa3,0xff,0x75,
26222
+0x00,0x29,0x00,0xa4,0xff,0x75,0x00,0x29,0x00,0xa5,0xff,0x75,
26223
+0x00,0x29,0x00,0xa6,0xff,0x75,0x00,0x29,0x00,0xa7,0xff,0x75,
26224
+0x00,0x29,0x00,0xa8,0xff,0x75,0x00,0x29,0x00,0xaa,0xff,0x90,
26225
+0x00,0x29,0x00,0xab,0xff,0x90,0x00,0x29,0x00,0xac,0xff,0x90,
26226
+0x00,0x29,0x00,0xad,0xff,0x90,0x00,0x29,0x00,0xb4,0xff,0x90,
26227
+0x00,0x29,0x00,0xb5,0xff,0x90,0x00,0x29,0x00,0xb6,0xff,0x90,
26228
+0x00,0x29,0x00,0xb7,0xff,0x90,0x00,0x29,0x00,0xb8,0xff,0x90,
26229
+0x00,0x29,0x00,0xba,0xff,0x90,0x00,0x29,0x00,0xc2,0xff,0x4e,
26230
+0x00,0x29,0x00,0xc3,0xff,0x75,0x00,0x29,0x00,0xc4,0xff,0x4e,
26231
+0x00,0x29,0x00,0xc5,0xff,0x75,0x00,0x29,0x00,0xc6,0xff,0x4e,
26232
+0x00,0x29,0x00,0xc7,0xff,0x75,0x00,0x29,0x00,0xd5,0xff,0x90,
26233
+0x00,0x29,0x00,0xd7,0xff,0x90,0x00,0x29,0x00,0xd9,0xff,0x90,
26234
+0x00,0x29,0x00,0xdb,0xff,0x90,0x00,0x29,0x00,0xdd,0xff,0x90,
26235
+0x00,0x29,0x01,0x0f,0xff,0x90,0x00,0x29,0x01,0x11,0xff,0x90,
26236
+0x00,0x29,0x01,0x13,0xff,0x90,0x00,0x29,0x01,0x15,0xff,0x90,
26237
+0x00,0x29,0x01,0xa5,0xff,0x75,0x00,0x29,0x01,0xad,0xff,0x90,
26238
+0x00,0x29,0x01,0xaf,0xff,0x90,0x00,0x29,0x01,0xf1,0xff,0x90,
26239
+0x00,0x2a,0x00,0x0f,0xff,0xb7,0x00,0x2a,0x00,0x10,0x00,0x26,
26240
+0x00,0x2a,0x00,0x11,0xff,0xb7,0x00,0x2a,0x00,0x3c,0xff,0xdc,
26241
+0x00,0x2a,0x00,0x9f,0xff,0xdc,0x00,0x2a,0x01,0x3a,0xff,0xdc,
26242
+0x00,0x2d,0x00,0x0f,0xff,0x88,0x00,0x2d,0x00,0x11,0xff,0x61,
26243
+0x00,0x2d,0x00,0x1d,0xff,0xad,0x00,0x2d,0x00,0x1e,0xff,0xad,
26244
+0x00,0x2e,0x00,0x10,0xff,0x6b,0x00,0x2e,0x00,0x24,0xff,0xad,
26245
+0x00,0x2e,0x00,0x26,0xff,0xc9,0x00,0x2e,0x00,0x32,0xff,0xc9,
26246
+0x00,0x2e,0x00,0x38,0xff,0xb7,0x00,0x2e,0x00,0x3a,0xff,0xb7,
26247
+0x00,0x2e,0x00,0x3c,0xff,0xc9,0x00,0x2e,0x00,0x48,0xff,0xc9,
26248
+0x00,0x2e,0x00,0x52,0xff,0xc9,0x00,0x2e,0x00,0x58,0xff,0xd3,
26249
+0x00,0x2e,0x00,0x5c,0xff,0x7d,0x00,0x2e,0x00,0x82,0xff,0xad,
26250
+0x00,0x2e,0x00,0x83,0xff,0xad,0x00,0x2e,0x00,0x84,0xff,0xad,
26251
+0x00,0x2e,0x00,0x85,0xff,0xad,0x00,0x2e,0x00,0x86,0xff,0xad,
26252
+0x00,0x2e,0x00,0x89,0xff,0xc9,0x00,0x2e,0x00,0x94,0xff,0xc9,
26253
+0x00,0x2e,0x00,0x95,0xff,0xc9,0x00,0x2e,0x00,0x96,0xff,0xc9,
26254
+0x00,0x2e,0x00,0x97,0xff,0xc9,0x00,0x2e,0x00,0x98,0xff,0xc9,
26255
+0x00,0x2e,0x00,0x9a,0xff,0xc9,0x00,0x2e,0x00,0x9b,0xff,0xb7,
26256
+0x00,0x2e,0x00,0x9c,0xff,0xb7,0x00,0x2e,0x00,0x9d,0xff,0xb7,
26257
+0x00,0x2e,0x00,0x9e,0xff,0xb7,0x00,0x2e,0x00,0x9f,0xff,0xc9,
26258
+0x00,0x2e,0x00,0xaa,0xff,0xc9,0x00,0x2e,0x00,0xab,0xff,0xc9,
26259
+0x00,0x2e,0x00,0xac,0xff,0xc9,0x00,0x2e,0x00,0xad,0xff,0xc9,
26260
+0x00,0x2e,0x00,0xb4,0xff,0xc9,0x00,0x2e,0x00,0xb5,0xff,0xc9,
26261
+0x00,0x2e,0x00,0xb6,0xff,0xc9,0x00,0x2e,0x00,0xb7,0xff,0xc9,
26262
+0x00,0x2e,0x00,0xb8,0xff,0xc9,0x00,0x2e,0x00,0xba,0xff,0xdc,
26263
+0x00,0x2e,0x00,0xbb,0xff,0xd3,0x00,0x2e,0x00,0xbc,0xff,0xd3,
26264
+0x00,0x2e,0x00,0xbd,0xff,0xd3,0x00,0x2e,0x00,0xbe,0xff,0xd3,
26265
+0x00,0x2e,0x00,0xbf,0xff,0x7d,0x00,0x2e,0x00,0xc1,0xff,0x7d,
26266
+0x00,0x2e,0x00,0xc8,0xff,0xc9,0x00,0x2e,0x00,0xce,0xff,0xc9,
26267
+0x00,0x2e,0x00,0xdd,0xff,0xc9,0x00,0x2e,0x01,0x14,0xff,0xc9,
26268
+0x00,0x2e,0x01,0x15,0xff,0xc9,0x00,0x2e,0x01,0x30,0xff,0xb7,
26269
+0x00,0x2e,0x01,0x31,0xff,0xd3,0x00,0x2e,0x01,0x3a,0xff,0xc9,
26270
+0x00,0x2f,0x00,0x37,0xff,0x59,0x00,0x2f,0x00,0x38,0xff,0x90,
26271
+0x00,0x2f,0x00,0x39,0xff,0x0d,0x00,0x2f,0x00,0x3a,0xff,0x4e,
26272
+0x00,0x2f,0x00,0x3c,0xff,0x7d,0x00,0x2f,0x00,0x5c,0xff,0xdc,
26273
+0x00,0x2f,0x00,0x9b,0xff,0x90,0x00,0x2f,0x00,0x9c,0xff,0x90,
26274
+0x00,0x2f,0x00,0x9d,0xff,0x90,0x00,0x2f,0x00,0x9e,0xff,0x90,
26275
+0x00,0x2f,0x00,0x9f,0xff,0x7d,0x00,0x2f,0x00,0xbf,0xff,0xdc,
26276
+0x00,0x2f,0x00,0xc1,0xff,0xdc,0x00,0x2f,0x01,0x26,0xff,0x59,
26277
+0x00,0x2f,0x01,0x30,0xff,0x90,0x00,0x2f,0x01,0x3a,0xff,0x7d,
26278
+0x00,0x2f,0x07,0x87,0xfe,0x15,0x00,0x2f,0x07,0x8b,0xfe,0x15,
26279
+0x00,0x31,0x00,0x0f,0xff,0x7d,0x00,0x31,0x00,0x11,0xff,0x7d,
26280
+0x00,0x31,0x00,0x1d,0xff,0xb7,0x00,0x31,0x00,0x1e,0xff,0xb7,
26281
+0x00,0x32,0x00,0x0f,0xff,0x88,0x00,0x32,0x00,0x10,0x00,0x4b,
26282
+0x00,0x32,0x00,0x11,0xff,0x88,0x00,0x32,0x00,0x39,0xff,0xdc,
26283
+0x00,0x32,0x00,0x3b,0xff,0xdc,0x00,0x33,0x00,0x0f,0xfe,0x61,
26284
+0x00,0x33,0x00,0x10,0xff,0x90,0x00,0x33,0x00,0x11,0xfe,0x61,
26285
+0x00,0x33,0x00,0x1d,0xff,0xb7,0x00,0x33,0x00,0x1e,0xff,0xb7,
26286
+0x00,0x33,0x00,0x24,0xff,0x44,0x00,0x33,0x00,0x38,0xff,0xdc,
26287
+0x00,0x33,0x00,0x44,0xff,0xa4,0x00,0x33,0x00,0x48,0xff,0xa4,
26288
+0x00,0x33,0x00,0x52,0xff,0xad,0x00,0x33,0x00,0x56,0xff,0xc9,
26289
+0x00,0x33,0x00,0x82,0xff,0x44,0x00,0x33,0x00,0x83,0xff,0x44,
26290
+0x00,0x33,0x00,0x84,0xff,0x44,0x00,0x33,0x00,0x85,0xff,0x44,
26291
+0x00,0x33,0x00,0x86,0xff,0x44,0x00,0x33,0x00,0x9b,0xff,0xdc,
26292
+0x00,0x33,0x00,0x9c,0xff,0xdc,0x00,0x33,0x00,0x9d,0xff,0xdc,
26293
+0x00,0x33,0x00,0x9e,0xff,0xdc,0x00,0x33,0x00,0xa2,0xff,0xa4,
26294
+0x00,0x33,0x00,0xa3,0xff,0xa4,0x00,0x33,0x00,0xa4,0xff,0xa4,
26295
+0x00,0x33,0x00,0xa5,0xff,0xa4,0x00,0x33,0x00,0xa6,0xff,0xa4,
26296
+0x00,0x33,0x00,0xa7,0xff,0xa4,0x00,0x33,0x00,0xa8,0xff,0xa4,
26297
+0x00,0x33,0x00,0xaa,0xff,0xa4,0x00,0x33,0x00,0xab,0xff,0xa4,
26298
+0x00,0x33,0x00,0xac,0xff,0xa4,0x00,0x33,0x00,0xad,0xff,0xa4,
26299
+0x00,0x33,0x00,0xb4,0xff,0xad,0x00,0x33,0x00,0xb5,0xff,0xad,
26300
+0x00,0x33,0x00,0xb6,0xff,0xad,0x00,0x33,0x00,0xb7,0xff,0xad,
26301
+0x00,0x33,0x00,0xb8,0xff,0xad,0x00,0x33,0x00,0xba,0xff,0xad,
26302
+0x00,0x33,0x00,0xdd,0xff,0xa4,0x00,0x33,0x01,0x15,0xff,0xad,
26303
+0x00,0x33,0x01,0x21,0xff,0xc9,0x00,0x33,0x01,0x23,0xff,0xc9,
26304
+0x00,0x33,0x01,0x30,0xff,0xdc,0x00,0x34,0x00,0x0f,0xff,0x9a,
26305
+0x00,0x34,0x00,0x10,0x00,0x4b,0x00,0x34,0x00,0x11,0xff,0x9a,
26306
+0x00,0x34,0x07,0x87,0x00,0x26,0x00,0x34,0x07,0x8b,0x00,0x26,
26307
+0x00,0x35,0x00,0x37,0xff,0xdc,0x00,0x35,0x00,0x39,0xff,0xb7,
26308
+0x00,0x35,0x00,0x3a,0xff,0xd3,0x00,0x35,0x00,0x3c,0xff,0xc1,
26309
+0x00,0x35,0x00,0x44,0x00,0x2f,0x00,0x35,0x00,0x5c,0xff,0xdc,
26310
+0x00,0x35,0x00,0x9f,0xff,0xc1,0x00,0x35,0x00,0xa2,0x00,0x2f,
26311
+0x00,0x35,0x00,0xa3,0x00,0x2f,0x00,0x35,0x00,0xa4,0x00,0x2f,
26312
+0x00,0x35,0x00,0xa5,0x00,0x2f,0x00,0x35,0x00,0xa6,0x00,0x2f,
26313
+0x00,0x35,0x00,0xa7,0x00,0x2f,0x00,0x35,0x00,0xa8,0x00,0x2f,
26314
+0x00,0x35,0x00,0xba,0x00,0x26,0x00,0x35,0x00,0xbf,0xff,0xdc,
26315
+0x00,0x35,0x00,0xc1,0xff,0xdc,0x00,0x35,0x01,0x26,0xff,0xdc,
26316
+0x00,0x35,0x01,0x3a,0xff,0xc1,0x00,0x35,0x07,0x87,0xff,0x90,
26317
+0x00,0x35,0x07,0x8b,0xff,0x90,0x00,0x36,0x00,0x0f,0xff,0xb7,
26318
+0x00,0x36,0x00,0x10,0x00,0x4b,0x00,0x36,0x00,0x11,0xff,0xb7,
26319
+0x00,0x36,0x00,0x36,0xff,0xdc,0x00,0x36,0x01,0x20,0xff,0xdc,
26320
+0x00,0x36,0x01,0x22,0xff,0xdc,0x00,0x37,0x00,0x0f,0xfe,0xd3,
26321
+0x00,0x37,0x00,0x10,0xfe,0xf8,0x00,0x37,0x00,0x11,0xfe,0xd3,
26322
+0x00,0x37,0x00,0x1d,0xff,0xb7,0x00,0x37,0x00,0x1e,0xff,0xb7,
26323
+0x00,0x37,0x00,0x24,0xff,0x90,0x00,0x37,0x00,0x37,0x00,0x26,
26324
+0x00,0x37,0x00,0x44,0xff,0x61,0x00,0x37,0x00,0x46,0xff,0x61,
26325
+0x00,0x37,0x00,0x48,0xff,0x61,0x00,0x37,0x00,0x52,0xff,0x61,
26326
+0x00,0x37,0x00,0x56,0xff,0x6b,0x00,0x37,0x00,0x5a,0xff,0xb7,
26327
+0x00,0x37,0x00,0x82,0xff,0x90,0x00,0x37,0x00,0x83,0xff,0x90,
26328
+0x00,0x37,0x00,0x84,0xff,0x90,0x00,0x37,0x00,0x85,0xff,0x90,
26329
+0x00,0x37,0x00,0x86,0xff,0x90,0x00,0x37,0x00,0xa2,0xff,0xc5,
26330
+0x00,0x37,0x00,0xa3,0xff,0x61,0x00,0x37,0x00,0xa4,0xff,0xc5,
26331
+0x00,0x37,0x00,0xa5,0xff,0xc5,0x00,0x37,0x00,0xa6,0xff,0xc5,
26332
+0x00,0x37,0x00,0xa7,0xff,0xc5,0x00,0x37,0x00,0xa8,0xff,0x61,
26333
+0x00,0x37,0x00,0xa9,0xff,0x61,0x00,0x37,0x00,0xaa,0xff,0x9d,
26334
+0x00,0x37,0x00,0xab,0xff,0x61,0x00,0x37,0x00,0xac,0xff,0x9d,
26335
+0x00,0x37,0x00,0xad,0xff,0x9d,0x00,0x37,0x00,0xb4,0xff,0xb1,
26336
+0x00,0x37,0x00,0xb5,0xff,0x61,0x00,0x37,0x00,0xb6,0xff,0xb1,
26337
+0x00,0x37,0x00,0xb7,0xff,0xb1,0x00,0x37,0x00,0xb8,0xff,0xb1,
26338
+0x00,0x37,0x00,0xba,0xff,0x61,0x00,0x37,0x00,0xc9,0xff,0x61,
26339
+0x00,0x37,0x00,0xcf,0xff,0x61,0x00,0x37,0x00,0xdd,0xff,0x61,
26340
+0x00,0x37,0x01,0x15,0xff,0x61,0x00,0x37,0x01,0x21,0xff,0x6b,
26341
+0x00,0x37,0x01,0x23,0xff,0x6b,0x00,0x37,0x01,0x26,0x00,0x26,
26342
+0x00,0x38,0x00,0x0f,0xff,0x44,0x00,0x38,0x00,0x10,0xff,0xdc,
26343
+0x00,0x38,0x00,0x11,0xff,0x44,0x00,0x38,0x00,0x1d,0xff,0xb7,
26344
+0x00,0x38,0x00,0x1e,0xff,0xb7,0x00,0x38,0x00,0x24,0xff,0xc1,
26345
+0x00,0x38,0x00,0x2d,0xff,0xc9,0x00,0x38,0x00,0x82,0xff,0xc1,
26346
+0x00,0x38,0x00,0x83,0xff,0xc1,0x00,0x38,0x00,0x84,0xff,0xc1,
26347
+0x00,0x38,0x00,0x85,0xff,0xc1,0x00,0x38,0x00,0x86,0xff,0xc1,
26348
+0x00,0x39,0x00,0x0f,0xfe,0x9a,0x00,0x39,0x00,0x10,0xff,0x44,
26349
+0x00,0x39,0x00,0x11,0xfe,0x9a,0x00,0x39,0x00,0x1d,0xff,0x32,
26350
+0x00,0x39,0x00,0x1e,0xff,0x32,0x00,0x39,0x00,0x24,0xff,0x75,
26351
+0x00,0x39,0x00,0x32,0xff,0xdc,0x00,0x39,0x00,0x44,0xff,0x44,
26352
+0x00,0x39,0x00,0x48,0xff,0x44,0x00,0x39,0x00,0x4c,0xff,0xdc,
26353
+0x00,0x39,0x00,0x52,0xff,0x44,0x00,0x39,0x00,0x58,0xff,0x7d,
26354
+0x00,0x39,0x00,0x5c,0xff,0xad,0x00,0x39,0x00,0x82,0xff,0x75,
26355
+0x00,0x39,0x00,0x83,0xff,0x75,0x00,0x39,0x00,0x84,0xff,0x75,
26356
+0x00,0x39,0x00,0x85,0xff,0x75,0x00,0x39,0x00,0x86,0xff,0x75,
26357
+0x00,0x39,0x00,0x94,0xff,0xdc,0x00,0x39,0x00,0x95,0xff,0xdc,
26358
+0x00,0x39,0x00,0x96,0xff,0xdc,0x00,0x39,0x00,0x97,0xff,0xdc,
26359
+0x00,0x39,0x00,0x98,0xff,0xdc,0x00,0x39,0x00,0x9a,0xff,0xdc,
26360
+0x00,0x39,0x00,0xa2,0xff,0x44,0x00,0x39,0x00,0xa3,0xff,0x44,
26361
+0x00,0x39,0x00,0xa4,0xff,0x44,0x00,0x39,0x00,0xa5,0xff,0x44,
26362
+0x00,0x39,0x00,0xa6,0xff,0x44,0x00,0x39,0x00,0xa7,0xff,0x44,
26363
+0x00,0x39,0x00,0xa8,0xff,0x44,0x00,0x39,0x00,0xaa,0xff,0x44,
26364
+0x00,0x39,0x00,0xab,0xff,0x44,0x00,0x39,0x00,0xac,0xff,0x44,
26365
+0x00,0x39,0x00,0xad,0xff,0x44,0x00,0x39,0x00,0xb4,0xff,0x44,
26366
+0x00,0x39,0x00,0xb5,0xff,0x44,0x00,0x39,0x00,0xb6,0xff,0x44,
26367
+0x00,0x39,0x00,0xb7,0xff,0x44,0x00,0x39,0x00,0xb8,0xff,0x44,
26368
+0x00,0x39,0x00,0xba,0xff,0x44,0x00,0x39,0x00,0xbb,0xff,0x7d,
26369
+0x00,0x39,0x00,0xbc,0xff,0x7d,0x00,0x39,0x00,0xbd,0xff,0x7d,
26370
+0x00,0x39,0x00,0xbe,0xff,0x7d,0x00,0x39,0x00,0xbf,0xff,0xad,
26371
+0x00,0x39,0x00,0xc1,0xff,0xad,0x00,0x39,0x00,0xdd,0xff,0x44,
26372
+0x00,0x39,0x01,0x14,0xff,0xdc,0x00,0x39,0x01,0x15,0xff,0x44,
26373
+0x00,0x39,0x01,0x31,0xff,0x7d,0x00,0x39,0x07,0x87,0x00,0x4b,
26374
+0x00,0x39,0x07,0x8b,0x00,0x4b,0x00,0x3a,0x00,0x0f,0xfe,0x9a,
26375
+0x00,0x3a,0x00,0x10,0xff,0x6b,0x00,0x3a,0x00,0x11,0xfe,0x9a,
26376
+0x00,0x3a,0x00,0x1d,0xff,0x4e,0x00,0x3a,0x00,0x1e,0xff,0x4e,
26377
+0x00,0x3a,0x00,0x24,0xff,0x9a,0x00,0x3a,0x00,0x44,0xff,0x4e,
26378
+0x00,0x3a,0x00,0x48,0xff,0x59,0x00,0x3a,0x00,0x4c,0xff,0xdc,
26379
+0x00,0x3a,0x00,0x52,0xff,0x75,0x00,0x3a,0x00,0x55,0xff,0xa4,
26380
+0x00,0x3a,0x00,0x58,0xff,0xad,0x00,0x3a,0x00,0x5c,0xff,0xd3,
26381
+0x00,0x3a,0x00,0x82,0xff,0x9a,0x00,0x3a,0x00,0x83,0xff,0x9a,
26382
+0x00,0x3a,0x00,0x84,0xff,0x9a,0x00,0x3a,0x00,0x85,0xff,0x9a,
26383
+0x00,0x3a,0x00,0x86,0xff,0x9a,0x00,0x3a,0x00,0xa2,0xff,0x4e,
26384
+0x00,0x3a,0x00,0xa3,0xff,0x4e,0x00,0x3a,0x00,0xa4,0xff,0x4e,
26385
+0x00,0x3a,0x00,0xa5,0xff,0x4e,0x00,0x3a,0x00,0xa6,0xff,0x4e,
26386
+0x00,0x3a,0x00,0xa7,0xff,0x4e,0x00,0x3a,0x00,0xa8,0xff,0x75,
26387
+0x00,0x3a,0x00,0xaa,0xff,0x59,0x00,0x3a,0x00,0xab,0xff,0x59,
26388
+0x00,0x3a,0x00,0xac,0xff,0x59,0x00,0x3a,0x00,0xad,0xff,0x59,
26389
+0x00,0x3a,0x00,0xb4,0xff,0x75,0x00,0x3a,0x00,0xb5,0xff,0x75,
26390
+0x00,0x3a,0x00,0xb6,0xff,0x75,0x00,0x3a,0x00,0xb7,0xff,0x75,
26391
+0x00,0x3a,0x00,0xb8,0xff,0x75,0x00,0x3a,0x00,0xba,0xff,0x75,
26392
+0x00,0x3a,0x00,0xbb,0xff,0xad,0x00,0x3a,0x00,0xbc,0xff,0xad,
26393
+0x00,0x3a,0x00,0xbd,0xff,0xad,0x00,0x3a,0x00,0xbe,0xff,0xad,
26394
+0x00,0x3a,0x00,0xbf,0xff,0xd3,0x00,0x3a,0x00,0xc1,0xff,0xd3,
26395
+0x00,0x3a,0x00,0xdd,0xff,0x59,0x00,0x3a,0x01,0x15,0xff,0x75,
26396
+0x00,0x3a,0x01,0x17,0xff,0xa4,0x00,0x3a,0x01,0x1b,0xff,0xa4,
26397
+0x00,0x3a,0x01,0x31,0xff,0xad,0x00,0x3a,0x07,0x87,0x00,0x26,
26398
+0x00,0x3a,0x07,0x8b,0x00,0x26,0x00,0x3b,0x00,0x10,0xff,0xb7,
26399
+0x00,0x3b,0x00,0x24,0xff,0xb7,0x00,0x3b,0x00,0x26,0xff,0xdc,
26400
+0x00,0x3b,0x00,0x32,0xff,0xdc,0x00,0x3b,0x00,0x82,0xff,0xb7,
26401
+0x00,0x3b,0x00,0x83,0xff,0xb7,0x00,0x3b,0x00,0x84,0xff,0xb7,
26402
+0x00,0x3b,0x00,0x85,0xff,0xb7,0x00,0x3b,0x00,0x86,0xff,0xb7,
26403
+0x00,0x3b,0x00,0x89,0xff,0xdc,0x00,0x3b,0x00,0x94,0xff,0xdc,
26404
+0x00,0x3b,0x00,0x95,0xff,0xdc,0x00,0x3b,0x00,0x96,0xff,0xdc,
26405
+0x00,0x3b,0x00,0x97,0xff,0xdc,0x00,0x3b,0x00,0x98,0xff,0xdc,
26406
+0x00,0x3b,0x00,0x9a,0xff,0xdc,0x00,0x3b,0x00,0xc8,0xff,0xdc,
26407
+0x00,0x3b,0x00,0xce,0xff,0xdc,0x00,0x3b,0x01,0x14,0xff,0xdc,
26408
+0x00,0x3c,0x00,0x0f,0xfe,0xf8,0x00,0x3c,0x00,0x10,0xff,0x1f,
26409
+0x00,0x3c,0x00,0x11,0xfe,0xf8,0x00,0x3c,0x00,0x1d,0xff,0x03,
26410
+0x00,0x3c,0x00,0x1e,0xff,0x03,0x00,0x3c,0x00,0x24,0xff,0x61,
26411
+0x00,0x3c,0x00,0x26,0xff,0xdc,0x00,0x3c,0x00,0x44,0xff,0x61,
26412
+0x00,0x3c,0x00,0x48,0xff,0x4e,0x00,0x3c,0x00,0x4c,0xff,0xdc,
26413
+0x00,0x3c,0x00,0x52,0xff,0x4e,0x00,0x3c,0x00,0x58,0xff,0x4e,
26414
+0x00,0x3c,0x00,0x82,0xff,0x61,0x00,0x3c,0x00,0x83,0xff,0x61,
26415
+0x00,0x3c,0x00,0x84,0xff,0x61,0x00,0x3c,0x00,0x85,0xff,0x61,
26416
+0x00,0x3c,0x00,0x86,0xff,0x61,0x00,0x3c,0x00,0x89,0xff,0xdc,
26417
+0x00,0x3c,0x00,0xa2,0xff,0x61,0x00,0x3c,0x00,0xa3,0xff,0x61,
26418
+0x00,0x3c,0x00,0xa4,0xff,0x61,0x00,0x3c,0x00,0xa5,0xff,0x61,
26419
+0x00,0x3c,0x00,0xa6,0xff,0x61,0x00,0x3c,0x00,0xa7,0xff,0x61,
26420
+0x00,0x3c,0x00,0xa8,0xff,0x3c,0x00,0x3c,0x00,0xaa,0xff,0x4e,
26421
+0x00,0x3c,0x00,0xab,0xff,0x4e,0x00,0x3c,0x00,0xac,0xff,0x4e,
26422
+0x00,0x3c,0x00,0xad,0xff,0x4e,0x00,0x3c,0x00,0xb4,0xff,0x4e,
26423
+0x00,0x3c,0x00,0xb5,0xff,0x4e,0x00,0x3c,0x00,0xb6,0xff,0x4e,
26424
+0x00,0x3c,0x00,0xb7,0xff,0x4e,0x00,0x3c,0x00,0xb8,0xff,0x4e,
26425
+0x00,0x3c,0x00,0xba,0xff,0x4e,0x00,0x3c,0x00,0xbb,0xff,0x4e,
26426
+0x00,0x3c,0x00,0xbc,0xff,0x4e,0x00,0x3c,0x00,0xbd,0xff,0x4e,
26427
+0x00,0x3c,0x00,0xbe,0xff,0x4e,0x00,0x3c,0x00,0xc8,0xff,0xdc,
26428
+0x00,0x3c,0x00,0xce,0xff,0xdc,0x00,0x3c,0x00,0xdd,0xff,0x4e,
26429
+0x00,0x3c,0x01,0x15,0xff,0x29,0x00,0x3c,0x01,0x31,0xff,0x4e,
26430
+0x00,0x3d,0x00,0x0f,0xff,0xdc,0x00,0x3d,0x00,0x11,0xff,0xdc,
26431
+0x00,0x49,0x00,0x0f,0xff,0xb7,0x00,0x49,0x00,0x10,0xff,0xb7,
26432
+0x00,0x49,0x00,0x11,0xff,0xb7,0x00,0x49,0x07,0x87,0x00,0x97,
26433
+0x00,0x49,0x07,0x8a,0x00,0x26,0x00,0x49,0x07,0x8b,0x00,0x97,
26434
+0x00,0x4e,0x00,0x10,0xff,0xdc,0x00,0x52,0x00,0x11,0xff,0xdc,
26435
+0x00,0x55,0x00,0x0f,0xff,0x1f,0x00,0x55,0x00,0x11,0xff,0x1f,
26436
+0x00,0x59,0x00,0x0f,0xff,0x0d,0x00,0x59,0x00,0x11,0xff,0x0d,
26437
+0x00,0x5a,0x00,0x0f,0xff,0x0d,0x00,0x5a,0x00,0x11,0xff,0x0d,
26438
+0x00,0x5b,0x00,0x10,0xff,0xdc,0x00,0x5c,0x00,0x0f,0xfe,0xf0,
26439
+0x00,0x5c,0x00,0x11,0xfe,0xf0,0x00,0x82,0x00,0x37,0xff,0x90,
26440
+0x00,0x82,0x00,0x39,0xff,0x9a,0x00,0x82,0x00,0x3a,0xff,0xad,
26441
+0x00,0x82,0x00,0x3c,0xff,0xad,0x00,0x82,0x00,0x49,0xff,0xdc,
26442
+0x00,0x82,0x00,0x57,0xff,0xdc,0x00,0x82,0x00,0x59,0xff,0xad,
26443
+0x00,0x82,0x00,0x5a,0xff,0xa4,0x00,0x82,0x00,0x5c,0xff,0xad,
26444
+0x00,0x82,0x00,0x9f,0xff,0xad,0x00,0x82,0x00,0xbf,0xff,0xad,
26445
+0x00,0x82,0x00,0xc1,0xff,0xad,0x00,0x82,0x01,0x24,0xff,0x90,
26446
+0x00,0x82,0x01,0x25,0xff,0xdc,0x00,0x82,0x01,0x26,0xff,0x90,
26447
+0x00,0x82,0x01,0x27,0xff,0xdc,0x00,0x82,0x01,0x36,0xff,0xad,
26448
+0x00,0x82,0x01,0x37,0xff,0xa4,0x00,0x82,0x01,0x38,0xff,0xad,
26449
+0x00,0x82,0x01,0x39,0xff,0xad,0x00,0x82,0x01,0x3a,0xff,0xad,
26450
+0x00,0x82,0x01,0xdc,0xff,0x90,0x00,0x82,0x01,0xdd,0xff,0xdc,
26451
+0x00,0x82,0x01,0xf4,0xff,0xad,0x00,0x82,0x06,0x09,0xff,0xad,
26452
+0x00,0x82,0x06,0x0a,0xff,0xa4,0x00,0x82,0x06,0x0b,0xff,0xad,
26453
+0x00,0x82,0x06,0x0c,0xff,0xa4,0x00,0x82,0x06,0x0d,0xff,0xad,
26454
+0x00,0x82,0x06,0x0e,0xff,0xa4,0x00,0x82,0x06,0x7b,0xff,0xad,
26455
+0x00,0x82,0x06,0x7c,0xff,0xad,0x00,0x82,0x07,0x87,0xfe,0xd3,
26456
+0x00,0x82,0x07,0x8b,0xfe,0xd3,0x00,0x82,0x0c,0xef,0xff,0xdc,
26457
+0x00,0x82,0x0c,0xf0,0xff,0xdc,0x00,0x82,0x0c,0xf1,0xff,0xdc,
26458
+0x00,0x83,0x00,0x37,0xff,0x90,0x00,0x83,0x00,0x39,0xff,0x9a,
26459
+0x00,0x83,0x00,0x3a,0xff,0xad,0x00,0x83,0x00,0x3c,0xff,0xad,
26460
+0x00,0x83,0x00,0x49,0xff,0xdc,0x00,0x83,0x00,0x57,0xff,0xdc,
26461
+0x00,0x83,0x00,0x59,0xff,0xad,0x00,0x83,0x00,0x5a,0xff,0xa4,
26462
+0x00,0x83,0x00,0x5c,0xff,0xad,0x00,0x83,0x00,0x9f,0xff,0xad,
26463
+0x00,0x83,0x00,0xbf,0xff,0xad,0x00,0x83,0x00,0xc1,0xff,0xad,
26464
+0x00,0x83,0x01,0x24,0xff,0x90,0x00,0x83,0x01,0x25,0xff,0xdc,
26465
+0x00,0x83,0x01,0x26,0xff,0x90,0x00,0x83,0x01,0x27,0xff,0xdc,
26466
+0x00,0x83,0x01,0x36,0xff,0xad,0x00,0x83,0x01,0x37,0xff,0xa4,
26467
+0x00,0x83,0x01,0x38,0xff,0xad,0x00,0x83,0x01,0x39,0xff,0xad,
26468
+0x00,0x83,0x01,0x3a,0xff,0xad,0x00,0x83,0x01,0xdc,0xff,0x90,
26469
+0x00,0x83,0x01,0xdd,0xff,0xdc,0x00,0x83,0x01,0xf4,0xff,0xad,
26470
+0x00,0x83,0x06,0x09,0xff,0xad,0x00,0x83,0x06,0x0a,0xff,0xa4,
26471
+0x00,0x83,0x06,0x0b,0xff,0xad,0x00,0x83,0x06,0x0c,0xff,0xa4,
26472
+0x00,0x83,0x06,0x0d,0xff,0xad,0x00,0x83,0x06,0x0e,0xff,0xa4,
26473
+0x00,0x83,0x06,0x7b,0xff,0xad,0x00,0x83,0x06,0x7c,0xff,0xad,
26474
+0x00,0x83,0x07,0x87,0xfe,0xd3,0x00,0x83,0x07,0x8b,0xfe,0xd3,
26475
+0x00,0x83,0x0c,0xef,0xff,0xdc,0x00,0x83,0x0c,0xf0,0xff,0xdc,
26476
+0x00,0x83,0x0c,0xf1,0xff,0xdc,0x00,0x84,0x00,0x37,0xff,0x90,
26477
+0x00,0x84,0x00,0x39,0xff,0x9a,0x00,0x84,0x00,0x3a,0xff,0xad,
26478
+0x00,0x84,0x00,0x3c,0xff,0xad,0x00,0x84,0x00,0x49,0xff,0xdc,
26479
+0x00,0x84,0x00,0x57,0xff,0xdc,0x00,0x84,0x00,0x59,0xff,0xad,
26480
+0x00,0x84,0x00,0x5a,0xff,0xa4,0x00,0x84,0x00,0x5c,0xff,0xad,
26481
+0x00,0x84,0x00,0x9f,0xff,0xad,0x00,0x84,0x00,0xbf,0xff,0xad,
26482
+0x00,0x84,0x00,0xc1,0xff,0xad,0x00,0x84,0x01,0x24,0xff,0x90,
26483
+0x00,0x84,0x01,0x25,0xff,0xdc,0x00,0x84,0x01,0x26,0xff,0x90,
26484
+0x00,0x84,0x01,0x27,0xff,0xdc,0x00,0x84,0x01,0x36,0xff,0xad,
26485
+0x00,0x84,0x01,0x37,0xff,0xa4,0x00,0x84,0x01,0x38,0xff,0xad,
26486
+0x00,0x84,0x01,0x39,0xff,0xad,0x00,0x84,0x01,0x3a,0xff,0xad,
26487
+0x00,0x84,0x01,0xdc,0xff,0x90,0x00,0x84,0x01,0xdd,0xff,0xdc,
26488
+0x00,0x84,0x01,0xf4,0xff,0xad,0x00,0x84,0x06,0x09,0xff,0xad,
26489
+0x00,0x84,0x06,0x0a,0xff,0xa4,0x00,0x84,0x06,0x0b,0xff,0xad,
26490
+0x00,0x84,0x06,0x0c,0xff,0xa4,0x00,0x84,0x06,0x0d,0xff,0xad,
26491
+0x00,0x84,0x06,0x0e,0xff,0xa4,0x00,0x84,0x06,0x7b,0xff,0xad,
26492
+0x00,0x84,0x06,0x7c,0xff,0xad,0x00,0x84,0x07,0x87,0xfe,0xd3,
26493
+0x00,0x84,0x07,0x8b,0xfe,0xd3,0x00,0x84,0x0c,0xef,0xff,0xdc,
26494
+0x00,0x84,0x0c,0xf0,0xff,0xdc,0x00,0x84,0x0c,0xf1,0xff,0xdc,
26495
+0x00,0x85,0x00,0x37,0xff,0x90,0x00,0x85,0x00,0x39,0xff,0x9a,
26496
+0x00,0x85,0x00,0x3a,0xff,0xad,0x00,0x85,0x00,0x3c,0xff,0xad,
26497
+0x00,0x85,0x00,0x49,0xff,0xdc,0x00,0x85,0x00,0x57,0xff,0xdc,
26498
+0x00,0x85,0x00,0x59,0xff,0xad,0x00,0x85,0x00,0x5a,0xff,0xa4,
26499
+0x00,0x85,0x00,0x5c,0xff,0xad,0x00,0x85,0x00,0x9f,0xff,0xad,
26500
+0x00,0x85,0x00,0xbf,0xff,0xad,0x00,0x85,0x00,0xc1,0xff,0xad,
26501
+0x00,0x85,0x01,0x24,0xff,0x90,0x00,0x85,0x01,0x25,0xff,0xdc,
26502
+0x00,0x85,0x01,0x26,0xff,0x90,0x00,0x85,0x01,0x27,0xff,0xdc,
26503
+0x00,0x85,0x01,0x36,0xff,0xad,0x00,0x85,0x01,0x37,0xff,0xa4,
26504
+0x00,0x85,0x01,0x38,0xff,0xad,0x00,0x85,0x01,0x39,0xff,0xad,
26505
+0x00,0x85,0x01,0x3a,0xff,0xad,0x00,0x85,0x01,0xdc,0xff,0x90,
26506
+0x00,0x85,0x01,0xdd,0xff,0xdc,0x00,0x85,0x01,0xf4,0xff,0xad,
26507
+0x00,0x85,0x06,0x09,0xff,0xad,0x00,0x85,0x06,0x0a,0xff,0xa4,
26508
+0x00,0x85,0x06,0x0b,0xff,0xad,0x00,0x85,0x06,0x0c,0xff,0xa4,
26509
+0x00,0x85,0x06,0x0d,0xff,0xad,0x00,0x85,0x06,0x0e,0xff,0xa4,
26510
+0x00,0x85,0x06,0x7b,0xff,0xad,0x00,0x85,0x06,0x7c,0xff,0xad,
26511
+0x00,0x85,0x07,0x87,0xfe,0xd3,0x00,0x85,0x07,0x8b,0xfe,0xd3,
26512
+0x00,0x85,0x0c,0xef,0xff,0xdc,0x00,0x85,0x0c,0xf0,0xff,0xdc,
26513
+0x00,0x85,0x0c,0xf1,0xff,0xdc,0x00,0x86,0x00,0x37,0xff,0x90,
26514
+0x00,0x86,0x00,0x39,0xff,0x9a,0x00,0x86,0x00,0x3a,0xff,0xad,
26515
+0x00,0x86,0x00,0x3c,0xff,0xad,0x00,0x86,0x00,0x49,0xff,0xdc,
26516
+0x00,0x86,0x00,0x57,0xff,0xdc,0x00,0x86,0x00,0x59,0xff,0xad,
26517
+0x00,0x86,0x00,0x5a,0xff,0xa4,0x00,0x86,0x00,0x5c,0xff,0xad,
26518
+0x00,0x86,0x00,0x9f,0xff,0xad,0x00,0x86,0x00,0xbf,0xff,0xad,
26519
+0x00,0x86,0x00,0xc1,0xff,0xad,0x00,0x86,0x01,0x24,0xff,0x90,
26520
+0x00,0x86,0x01,0x25,0xff,0xdc,0x00,0x86,0x01,0x26,0xff,0x90,
26521
+0x00,0x86,0x01,0x27,0xff,0xdc,0x00,0x86,0x01,0x36,0xff,0xad,
26522
+0x00,0x86,0x01,0x37,0xff,0xa4,0x00,0x86,0x01,0x38,0xff,0xad,
26523
+0x00,0x86,0x01,0x39,0xff,0xad,0x00,0x86,0x01,0x3a,0xff,0xad,
26524
+0x00,0x86,0x01,0xdc,0xff,0x90,0x00,0x86,0x01,0xdd,0xff,0xdc,
26525
+0x00,0x86,0x01,0xf4,0xff,0xad,0x00,0x86,0x06,0x09,0xff,0xad,
26526
+0x00,0x86,0x06,0x0a,0xff,0xa4,0x00,0x86,0x06,0x0b,0xff,0xad,
26527
+0x00,0x86,0x06,0x0c,0xff,0xa4,0x00,0x86,0x06,0x0d,0xff,0xad,
26528
+0x00,0x86,0x06,0x0e,0xff,0xa4,0x00,0x86,0x06,0x7b,0xff,0xad,
26529
+0x00,0x86,0x06,0x7c,0xff,0xad,0x00,0x86,0x07,0x87,0xfe,0xd3,
26530
+0x00,0x86,0x07,0x8b,0xfe,0xd3,0x00,0x86,0x0c,0xef,0xff,0xdc,
26531
+0x00,0x86,0x0c,0xf0,0xff,0xdc,0x00,0x86,0x0c,0xf1,0xff,0xdc,
26532
+0x00,0x88,0x00,0x10,0x00,0x26,0x00,0x89,0x00,0x0f,0xff,0xb7,
26533
+0x00,0x89,0x00,0x11,0xff,0xb7,0x00,0x8a,0x00,0x10,0x00,0x26,
26534
+0x00,0x8b,0x00,0x10,0x00,0x26,0x00,0x8c,0x00,0x10,0x00,0x26,
26535
+0x00,0x8d,0x00,0x10,0x00,0x26,0x00,0x92,0x00,0x0f,0xff,0xb7,
26536
+0x00,0x92,0x00,0x10,0x00,0x4b,0x00,0x92,0x00,0x11,0xff,0xb7,
26537
+0x00,0x92,0x00,0x24,0xff,0xdc,0x00,0x92,0x00,0x39,0xff,0xdc,
26538
+0x00,0x92,0x00,0x3c,0xff,0xdc,0x00,0x92,0x00,0x82,0xff,0xdc,
26539
+0x00,0x92,0x00,0x83,0xff,0xdc,0x00,0x92,0x00,0x84,0xff,0xdc,
26540
+0x00,0x92,0x00,0x85,0xff,0xdc,0x00,0x92,0x00,0x86,0xff,0xdc,
26541
+0x00,0x92,0x00,0x9f,0xff,0xdc,0x00,0x92,0x01,0x3a,0xff,0xdc,
26542
+0x00,0x93,0x00,0x0f,0xff,0x7d,0x00,0x93,0x00,0x11,0xff,0x7d,
26543
+0x00,0x93,0x00,0x1d,0xff,0xb7,0x00,0x93,0x00,0x1e,0xff,0xb7,
26544
+0x00,0x94,0x00,0x0f,0xff,0x88,0x00,0x94,0x00,0x10,0x00,0x4b,
26545
+0x00,0x94,0x00,0x11,0xff,0x88,0x00,0x94,0x00,0x39,0xff,0xdc,
26546
+0x00,0x94,0x00,0x3b,0xff,0xdc,0x00,0x95,0x00,0x0f,0xff,0x88,
26547
+0x00,0x95,0x00,0x10,0x00,0x4b,0x00,0x95,0x00,0x11,0xff,0x88,
26548
+0x00,0x95,0x00,0x39,0xff,0xdc,0x00,0x95,0x00,0x3b,0xff,0xdc,
26549
+0x00,0x96,0x00,0x0f,0xff,0x88,0x00,0x96,0x00,0x10,0x00,0x4b,
26550
+0x00,0x96,0x00,0x11,0xff,0x88,0x00,0x96,0x00,0x39,0xff,0xdc,
26551
+0x00,0x96,0x00,0x3b,0xff,0xdc,0x00,0x97,0x00,0x0f,0xff,0x88,
26552
+0x00,0x97,0x00,0x10,0x00,0x4b,0x00,0x97,0x00,0x11,0xff,0x88,
26553
+0x00,0x97,0x00,0x39,0xff,0xdc,0x00,0x97,0x00,0x3b,0xff,0xdc,
26554
+0x00,0x98,0x00,0x0f,0xff,0x88,0x00,0x98,0x00,0x10,0x00,0x4b,
26555
+0x00,0x98,0x00,0x11,0xff,0x88,0x00,0x98,0x00,0x39,0xff,0xdc,
26556
+0x00,0x98,0x00,0x3b,0xff,0xdc,0x00,0x9a,0x00,0x0f,0xff,0x88,
26557
+0x00,0x9a,0x00,0x10,0x00,0x4b,0x00,0x9a,0x00,0x11,0xff,0x88,
26558
+0x00,0x9a,0x00,0x39,0xff,0xdc,0x00,0x9a,0x00,0x3b,0xff,0xdc,
26559
+0x00,0x9b,0x00,0x0f,0xff,0x44,0x00,0x9b,0x00,0x10,0xff,0xdc,
26560
+0x00,0x9b,0x00,0x11,0xff,0x44,0x00,0x9b,0x00,0x1d,0xff,0xb7,
26561
+0x00,0x9b,0x00,0x1e,0xff,0xb7,0x00,0x9b,0x00,0x24,0xff,0xc1,
26562
+0x00,0x9b,0x00,0x2d,0xff,0xc9,0x00,0x9b,0x00,0x82,0xff,0xc1,
26563
+0x00,0x9b,0x00,0x83,0xff,0xc1,0x00,0x9b,0x00,0x84,0xff,0xc1,
26564
+0x00,0x9b,0x00,0x85,0xff,0xc1,0x00,0x9b,0x00,0x86,0xff,0xc1,
26565
+0x00,0x9c,0x00,0x0f,0xff,0x44,0x00,0x9c,0x00,0x10,0xff,0xdc,
26566
+0x00,0x9c,0x00,0x11,0xff,0x44,0x00,0x9c,0x00,0x1d,0xff,0xb7,
26567
+0x00,0x9c,0x00,0x1e,0xff,0xb7,0x00,0x9c,0x00,0x24,0xff,0xc1,
26568
+0x00,0x9c,0x00,0x2d,0xff,0xc9,0x00,0x9c,0x00,0x82,0xff,0xc1,
26569
+0x00,0x9c,0x00,0x83,0xff,0xc1,0x00,0x9c,0x00,0x84,0xff,0xc1,
26570
+0x00,0x9c,0x00,0x85,0xff,0xc1,0x00,0x9c,0x00,0x86,0xff,0xc1,
26571
+0x00,0x9d,0x00,0x0f,0xff,0x44,0x00,0x9d,0x00,0x10,0xff,0xdc,
26572
+0x00,0x9d,0x00,0x11,0xff,0x44,0x00,0x9d,0x00,0x1d,0xff,0xb7,
26573
+0x00,0x9d,0x00,0x1e,0xff,0xb7,0x00,0x9d,0x00,0x24,0xff,0xc1,
26574
+0x00,0x9d,0x00,0x2d,0xff,0xc9,0x00,0x9d,0x00,0x82,0xff,0xc1,
26575
+0x00,0x9d,0x00,0x83,0xff,0xc1,0x00,0x9d,0x00,0x84,0xff,0xc1,
26576
+0x00,0x9d,0x00,0x85,0xff,0xc1,0x00,0x9d,0x00,0x86,0xff,0xc1,
26577
+0x00,0x9e,0x00,0x0f,0xff,0x44,0x00,0x9e,0x00,0x10,0xff,0xdc,
26578
+0x00,0x9e,0x00,0x11,0xff,0x44,0x00,0x9e,0x00,0x1d,0xff,0xb7,
26579
+0x00,0x9e,0x00,0x1e,0xff,0xb7,0x00,0x9e,0x00,0x24,0xff,0xc1,
26580
+0x00,0x9e,0x00,0x2d,0xff,0xc9,0x00,0x9e,0x00,0x82,0xff,0xc1,
26581
+0x00,0x9e,0x00,0x83,0xff,0xc1,0x00,0x9e,0x00,0x84,0xff,0xc1,
26582
+0x00,0x9e,0x00,0x85,0xff,0xc1,0x00,0x9e,0x00,0x86,0xff,0xc1,
26583
+0x00,0x9f,0x00,0x0f,0xfe,0xf8,0x00,0x9f,0x00,0x10,0xff,0x1f,
26584
+0x00,0x9f,0x00,0x11,0xfe,0xf8,0x00,0x9f,0x00,0x1d,0xff,0x03,
26585
+0x00,0x9f,0x00,0x1e,0xff,0x03,0x00,0x9f,0x00,0x24,0xff,0x61,
26586
+0x00,0x9f,0x00,0x26,0xff,0xdc,0x00,0x9f,0x00,0x44,0xff,0x61,
26587
+0x00,0x9f,0x00,0x48,0xff,0x4e,0x00,0x9f,0x00,0x4c,0xff,0xdc,
26588
+0x00,0x9f,0x00,0x52,0xff,0x4e,0x00,0x9f,0x00,0x58,0xff,0x4e,
26589
+0x00,0x9f,0x00,0x82,0xff,0x61,0x00,0x9f,0x00,0x83,0xff,0x61,
26590
+0x00,0x9f,0x00,0x84,0xff,0x61,0x00,0x9f,0x00,0x85,0xff,0x61,
26591
+0x00,0x9f,0x00,0x86,0xff,0x61,0x00,0x9f,0x00,0x89,0xff,0xdc,
26592
+0x00,0x9f,0x00,0xa2,0xff,0x61,0x00,0x9f,0x00,0xa3,0xff,0x61,
26593
+0x00,0x9f,0x00,0xa4,0xff,0x61,0x00,0x9f,0x00,0xa5,0xff,0x61,
26594
+0x00,0x9f,0x00,0xa6,0xff,0x61,0x00,0x9f,0x00,0xa7,0xff,0x61,
26595
+0x00,0x9f,0x00,0xa8,0xff,0x3c,0x00,0x9f,0x00,0xaa,0xff,0x4e,
26596
+0x00,0x9f,0x00,0xab,0xff,0x4e,0x00,0x9f,0x00,0xac,0xff,0x4e,
26597
+0x00,0x9f,0x00,0xad,0xff,0x4e,0x00,0x9f,0x00,0xb4,0xff,0x4e,
26598
+0x00,0x9f,0x00,0xb5,0xff,0x4e,0x00,0x9f,0x00,0xb6,0xff,0x4e,
26599
+0x00,0x9f,0x00,0xb7,0xff,0x4e,0x00,0x9f,0x00,0xb8,0xff,0x4e,
26600
+0x00,0x9f,0x00,0xba,0xff,0x4e,0x00,0x9f,0x00,0xbb,0xff,0x4e,
26601
+0x00,0x9f,0x00,0xbc,0xff,0x4e,0x00,0x9f,0x00,0xbd,0xff,0x4e,
26602
+0x00,0x9f,0x00,0xbe,0xff,0x4e,0x00,0x9f,0x00,0xc8,0xff,0xdc,
26603
+0x00,0x9f,0x00,0xce,0xff,0xdc,0x00,0x9f,0x00,0xdd,0xff,0x4e,
26604
+0x00,0x9f,0x01,0x15,0xff,0x29,0x00,0x9f,0x01,0x31,0xff,0x4e,
26605
+0x00,0xa0,0x00,0x0f,0xfe,0xad,0x00,0xa0,0x00,0x10,0x00,0x26,
26606
+0x00,0xa0,0x00,0x11,0xfe,0xad,0x00,0xb2,0x00,0x11,0xff,0xdc,
26607
+0x00,0xb4,0x00,0x11,0xff,0xdc,0x00,0xb5,0x00,0x11,0xff,0xdc,
26608
+0x00,0xb6,0x00,0x11,0xff,0xdc,0x00,0xb7,0x00,0x11,0xff,0xdc,
26609
+0x00,0xb8,0x00,0x11,0xff,0xdc,0x00,0xba,0x00,0x11,0xff,0xdc,
26610
+0x00,0xbf,0x00,0x0f,0xfe,0xf0,0x00,0xbf,0x00,0x11,0xfe,0xf0,
26611
+0x00,0xc0,0x00,0x0f,0xff,0xdc,0x00,0xc0,0x00,0x11,0xff,0x9a,
26612
+0x00,0xc1,0x00,0x0f,0xfe,0xf0,0x00,0xc1,0x00,0x11,0xfe,0xf0,
26613
+0x00,0xc2,0x00,0x37,0xff,0x90,0x00,0xc2,0x00,0x39,0xff,0x9a,
26614
+0x00,0xc2,0x00,0x3a,0xff,0xad,0x00,0xc2,0x00,0x3c,0xff,0xad,
26615
+0x00,0xc2,0x00,0x49,0xff,0xdc,0x00,0xc2,0x00,0x57,0xff,0xdc,
26616
+0x00,0xc2,0x00,0x59,0xff,0xad,0x00,0xc2,0x00,0x5a,0xff,0xa4,
26617
+0x00,0xc2,0x00,0x5c,0xff,0xad,0x00,0xc2,0x00,0x9f,0xff,0xad,
26618
+0x00,0xc2,0x00,0xbf,0xff,0xad,0x00,0xc2,0x00,0xc1,0xff,0xad,
26619
+0x00,0xc2,0x01,0x24,0xff,0x90,0x00,0xc2,0x01,0x25,0xff,0xdc,
26620
+0x00,0xc2,0x01,0x26,0xff,0x90,0x00,0xc2,0x01,0x27,0xff,0xdc,
26621
+0x00,0xc2,0x01,0x36,0xff,0xad,0x00,0xc2,0x01,0x37,0xff,0xa4,
26622
+0x00,0xc2,0x01,0x38,0xff,0xad,0x00,0xc2,0x01,0x39,0xff,0xad,
26623
+0x00,0xc2,0x01,0x3a,0xff,0xad,0x00,0xc2,0x01,0xdc,0xff,0x90,
26624
+0x00,0xc2,0x01,0xdd,0xff,0xdc,0x00,0xc2,0x01,0xf4,0xff,0xad,
26625
+0x00,0xc2,0x06,0x09,0xff,0xad,0x00,0xc2,0x06,0x0a,0xff,0xa4,
26626
+0x00,0xc2,0x06,0x0b,0xff,0xad,0x00,0xc2,0x06,0x0c,0xff,0xa4,
26627
+0x00,0xc2,0x06,0x0d,0xff,0xad,0x00,0xc2,0x06,0x0e,0xff,0xa4,
26628
+0x00,0xc2,0x06,0x7b,0xff,0xad,0x00,0xc2,0x06,0x7c,0xff,0xad,
26629
+0x00,0xc2,0x07,0x87,0xfe,0xd3,0x00,0xc2,0x07,0x8b,0xfe,0xd3,
26630
+0x00,0xc2,0x0c,0xef,0xff,0xdc,0x00,0xc2,0x0c,0xf0,0xff,0xdc,
26631
+0x00,0xc2,0x0c,0xf1,0xff,0xdc,0x00,0xc4,0x00,0x37,0xff,0x90,
26632
+0x00,0xc4,0x00,0x39,0xff,0x9a,0x00,0xc4,0x00,0x3a,0xff,0xad,
26633
+0x00,0xc4,0x00,0x3c,0xff,0xad,0x00,0xc4,0x00,0x49,0xff,0xdc,
26634
+0x00,0xc4,0x00,0x57,0xff,0xdc,0x00,0xc4,0x00,0x59,0xff,0xad,
26635
+0x00,0xc4,0x00,0x5a,0xff,0xa4,0x00,0xc4,0x00,0x5c,0xff,0xad,
26636
+0x00,0xc4,0x00,0x9f,0xff,0xad,0x00,0xc4,0x00,0xbf,0xff,0xad,
26637
+0x00,0xc4,0x00,0xc1,0xff,0xad,0x00,0xc4,0x01,0x24,0xff,0x90,
26638
+0x00,0xc4,0x01,0x25,0xff,0xdc,0x00,0xc4,0x01,0x26,0xff,0x90,
26639
+0x00,0xc4,0x01,0x27,0xff,0xdc,0x00,0xc4,0x01,0x36,0xff,0xad,
26640
+0x00,0xc4,0x01,0x37,0xff,0xa4,0x00,0xc4,0x01,0x38,0xff,0xad,
26641
+0x00,0xc4,0x01,0x39,0xff,0xad,0x00,0xc4,0x01,0x3a,0xff,0xad,
26642
+0x00,0xc4,0x01,0xdc,0xff,0x90,0x00,0xc4,0x01,0xdd,0xff,0xdc,
26643
+0x00,0xc4,0x01,0xf4,0xff,0xad,0x00,0xc4,0x06,0x09,0xff,0xad,
26644
+0x00,0xc4,0x06,0x0a,0xff,0xa4,0x00,0xc4,0x06,0x0b,0xff,0xad,
26645
+0x00,0xc4,0x06,0x0c,0xff,0xa4,0x00,0xc4,0x06,0x0d,0xff,0xad,
26646
+0x00,0xc4,0x06,0x0e,0xff,0xa4,0x00,0xc4,0x06,0x7b,0xff,0xad,
26647
+0x00,0xc4,0x06,0x7c,0xff,0xad,0x00,0xc4,0x07,0x87,0xfe,0xd3,
26648
+0x00,0xc4,0x07,0x8b,0xfe,0xd3,0x00,0xc4,0x0c,0xef,0xff,0xdc,
26649
+0x00,0xc4,0x0c,0xf0,0xff,0xdc,0x00,0xc4,0x0c,0xf1,0xff,0xdc,
26650
+0x00,0xc6,0x00,0x37,0xff,0x90,0x00,0xc6,0x00,0x39,0xff,0x9a,
26651
+0x00,0xc6,0x00,0x3a,0xff,0xad,0x00,0xc6,0x00,0x3c,0xff,0xad,
26652
+0x00,0xc6,0x00,0x49,0xff,0xdc,0x00,0xc6,0x00,0x57,0xff,0xdc,
26653
+0x00,0xc6,0x00,0x59,0xff,0xad,0x00,0xc6,0x00,0x5a,0xff,0xa4,
26654
+0x00,0xc6,0x00,0x5c,0xff,0xad,0x00,0xc6,0x00,0x9f,0xff,0xad,
26655
+0x00,0xc6,0x00,0xbf,0xff,0xad,0x00,0xc6,0x00,0xc1,0xff,0xad,
26656
+0x00,0xc6,0x01,0x24,0xff,0x90,0x00,0xc6,0x01,0x25,0xff,0xdc,
26657
+0x00,0xc6,0x01,0x26,0xff,0x90,0x00,0xc6,0x01,0x27,0xff,0xdc,
26658
+0x00,0xc6,0x01,0x36,0xff,0xad,0x00,0xc6,0x01,0x37,0xff,0xa4,
26659
+0x00,0xc6,0x01,0x38,0xff,0xad,0x00,0xc6,0x01,0x39,0xff,0xad,
26660
+0x00,0xc6,0x01,0x3a,0xff,0xad,0x00,0xc6,0x01,0xdc,0xff,0x90,
26661
+0x00,0xc6,0x01,0xdd,0xff,0xdc,0x00,0xc6,0x01,0xf4,0xff,0xad,
26662
+0x00,0xc6,0x06,0x09,0xff,0xad,0x00,0xc6,0x06,0x0a,0xff,0xa4,
26663
+0x00,0xc6,0x06,0x0b,0xff,0xad,0x00,0xc6,0x06,0x0c,0xff,0xa4,
26664
+0x00,0xc6,0x06,0x0d,0xff,0xad,0x00,0xc6,0x06,0x0e,0xff,0xa4,
26665
+0x00,0xc6,0x06,0x7b,0xff,0xad,0x00,0xc6,0x06,0x7c,0xff,0xad,
26666
+0x00,0xc6,0x07,0x87,0xfe,0xd3,0x00,0xc6,0x07,0x8b,0xfe,0xd3,
26667
+0x00,0xc6,0x0c,0xef,0xff,0xdc,0x00,0xc6,0x0c,0xf0,0xff,0xdc,
26668
+0x00,0xc6,0x0c,0xf1,0xff,0xdc,0x00,0xc8,0x00,0x0f,0xff,0xb7,
26669
+0x00,0xc8,0x00,0x11,0xff,0xb7,0x00,0xca,0x00,0x0f,0xff,0xb7,
26670
+0x00,0xca,0x00,0x11,0xff,0xb7,0x00,0xcc,0x00,0x0f,0xff,0xb7,
26671
+0x00,0xcc,0x00,0x11,0xff,0xb7,0x00,0xce,0x00,0x0f,0xff,0xb7,
26672
+0x00,0xce,0x00,0x11,0xff,0xb7,0x00,0xd0,0x00,0x0f,0xff,0xb7,
26673
+0x00,0xd0,0x00,0x10,0x00,0x26,0x00,0xd0,0x00,0x11,0xff,0xb7,
26674
+0x00,0xd0,0x00,0x39,0xff,0xdc,0x00,0xd2,0x00,0x0f,0xff,0xb7,
26675
+0x00,0xd2,0x00,0x10,0x00,0x26,0x00,0xd2,0x00,0x11,0xff,0xb7,
26676
+0x00,0xd2,0x00,0x39,0xff,0xdc,0x00,0xdc,0x00,0x10,0x00,0x26,
26677
+0x00,0xe0,0x00,0x0f,0xff,0xb7,0x00,0xe0,0x00,0x10,0x00,0x26,
26678
+0x00,0xe0,0x00,0x11,0xff,0xb7,0x00,0xe0,0x00,0x3c,0xff,0xdc,
26679
+0x00,0xe0,0x00,0x9f,0xff,0xdc,0x00,0xe0,0x01,0x3a,0xff,0xdc,
26680
+0x00,0xfb,0x00,0x37,0xff,0x59,0x00,0xfb,0x00,0x38,0xff,0x90,
26681
+0x00,0xfb,0x00,0x39,0xff,0x0d,0x00,0xfb,0x00,0x3a,0xff,0x4e,
26682
+0x00,0xfb,0x00,0x3c,0xff,0x7d,0x00,0xfb,0x00,0x5c,0xff,0xdc,
26683
+0x00,0xfb,0x00,0x9b,0xff,0x90,0x00,0xfb,0x00,0x9c,0xff,0x90,
26684
+0x00,0xfb,0x00,0x9d,0xff,0x90,0x00,0xfb,0x00,0x9e,0xff,0x90,
26685
+0x00,0xfb,0x00,0x9f,0xff,0x7d,0x00,0xfb,0x00,0xbf,0xff,0xdc,
26686
+0x00,0xfb,0x00,0xc1,0xff,0xdc,0x00,0xfb,0x01,0x26,0xff,0x59,
26687
+0x00,0xfb,0x01,0x30,0xff,0x90,0x00,0xfb,0x01,0x3a,0xff,0x7d,
26688
+0x00,0xfb,0x07,0x87,0xfe,0x15,0x00,0xfb,0x07,0x8b,0xfe,0x15,
26689
+0x00,0xff,0x00,0x37,0xff,0x59,0x00,0xff,0x00,0x38,0xff,0x90,
26690
+0x00,0xff,0x00,0x39,0xff,0x0d,0x00,0xff,0x00,0x3a,0xff,0x4e,
26691
+0x00,0xff,0x00,0x3c,0xff,0x7d,0x00,0xff,0x00,0x5c,0xff,0xdc,
26692
+0x00,0xff,0x00,0x9b,0xff,0x90,0x00,0xff,0x00,0x9c,0xff,0x90,
26693
+0x00,0xff,0x00,0x9d,0xff,0x90,0x00,0xff,0x00,0x9e,0xff,0x90,
26694
+0x00,0xff,0x00,0x9f,0xff,0x7d,0x00,0xff,0x00,0xbf,0xff,0xdc,
26695
+0x00,0xff,0x00,0xc1,0xff,0xdc,0x00,0xff,0x01,0x26,0xff,0x59,
26696
+0x00,0xff,0x01,0x30,0xff,0x90,0x00,0xff,0x01,0x3a,0xff,0x7d,
26697
+0x00,0xff,0x07,0x87,0xfe,0x15,0x00,0xff,0x07,0x8b,0xfe,0x15,
26698
+0x01,0x02,0x00,0x4f,0xff,0x1d,0x01,0x03,0x00,0x37,0xff,0x59,
26699
+0x01,0x03,0x00,0x38,0xff,0xdc,0x01,0x03,0x00,0x39,0xff,0x0d,
26700
+0x01,0x03,0x00,0x3a,0xff,0x4e,0x01,0x03,0x00,0x3c,0xff,0x32,
26701
+0x01,0x03,0x00,0x5c,0xff,0xdc,0x01,0x03,0x00,0x9b,0xff,0xdc,
26702
+0x01,0x03,0x00,0x9c,0xff,0xdc,0x01,0x03,0x00,0x9d,0xff,0xdc,
26703
+0x01,0x03,0x00,0x9e,0xff,0xdc,0x01,0x03,0x00,0x9f,0xff,0x32,
26704
+0x01,0x03,0x00,0xbf,0xff,0xdc,0x01,0x03,0x00,0xc1,0xff,0xdc,
26705
+0x01,0x03,0x01,0x26,0xff,0x59,0x01,0x03,0x01,0x30,0xff,0xdc,
26706
+0x01,0x03,0x01,0x3a,0xff,0x32,0x01,0x03,0x07,0x87,0xfe,0x15,
26707
+0x01,0x03,0x07,0x8b,0xfe,0x15,0x01,0x09,0x00,0x0f,0xff,0x7d,
26708
+0x01,0x09,0x00,0x11,0xff,0x7d,0x01,0x09,0x00,0x1d,0xff,0xb7,
26709
+0x01,0x09,0x00,0x1e,0xff,0xb7,0x01,0x14,0x00,0x10,0x00,0x26,
26710
+0x01,0x16,0x00,0x37,0xff,0xdc,0x01,0x16,0x00,0x39,0xff,0xb7,
26711
+0x01,0x16,0x00,0x3a,0xff,0xd3,0x01,0x16,0x00,0x3c,0xff,0xc1,
26712
+0x01,0x16,0x00,0x44,0x00,0x2f,0x01,0x16,0x00,0x5c,0xff,0xdc,
26713
+0x01,0x16,0x00,0x9f,0xff,0xc1,0x01,0x16,0x00,0xa2,0x00,0x2f,
26714
+0x01,0x16,0x00,0xa3,0x00,0x2f,0x01,0x16,0x00,0xa4,0x00,0x2f,
26715
+0x01,0x16,0x00,0xa5,0x00,0x2f,0x01,0x16,0x00,0xa6,0x00,0x2f,
26716
+0x01,0x16,0x00,0xa7,0x00,0x2f,0x01,0x16,0x00,0xa8,0x00,0x2f,
26717
+0x01,0x16,0x00,0xba,0x00,0x26,0x01,0x16,0x00,0xbf,0xff,0xdc,
26718
+0x01,0x16,0x00,0xc1,0xff,0xdc,0x01,0x16,0x01,0x26,0xff,0xdc,
26719
+0x01,0x16,0x01,0x3a,0xff,0xc1,0x01,0x16,0x07,0x87,0xff,0x90,
26720
+0x01,0x16,0x07,0x8b,0xff,0x90,0x01,0x17,0x00,0x0f,0xff,0x1f,
26721
+0x01,0x17,0x00,0x11,0xff,0x1f,0x01,0x1a,0x00,0x37,0xff,0xdc,
26722
+0x01,0x1a,0x00,0x39,0xff,0xb7,0x01,0x1a,0x00,0x3a,0xff,0xd3,
26723
+0x01,0x1a,0x00,0x3c,0xff,0xc1,0x01,0x1a,0x00,0x44,0x00,0x2f,
26724
+0x01,0x1a,0x00,0x5c,0xff,0xdc,0x01,0x1a,0x00,0x9f,0xff,0xc1,
26725
+0x01,0x1a,0x00,0xa2,0x00,0x2f,0x01,0x1a,0x00,0xa3,0x00,0x2f,
26726
+0x01,0x1a,0x00,0xa4,0x00,0x2f,0x01,0x1a,0x00,0xa5,0x00,0x2f,
26727
+0x01,0x1a,0x00,0xa6,0x00,0x2f,0x01,0x1a,0x00,0xa7,0x00,0x2f,
26728
+0x01,0x1a,0x00,0xa8,0x00,0x2f,0x01,0x1a,0x00,0xba,0x00,0x26,
26729
+0x01,0x1a,0x00,0xbf,0xff,0xdc,0x01,0x1a,0x00,0xc1,0xff,0xdc,
26730
+0x01,0x1a,0x01,0x26,0xff,0xdc,0x01,0x1a,0x01,0x3a,0xff,0xc1,
26731
+0x01,0x1a,0x07,0x87,0xff,0x90,0x01,0x1a,0x07,0x8b,0xff,0x90,
26732
+0x01,0x1b,0x00,0x0f,0xff,0x1f,0x01,0x1b,0x00,0x11,0xff,0x1f,
26733
+0x01,0x20,0x00,0x0f,0xff,0xb7,0x01,0x20,0x00,0x10,0x00,0x4b,
26734
+0x01,0x20,0x00,0x11,0xff,0xb7,0x01,0x20,0x00,0x36,0xff,0xdc,
26735
+0x01,0x20,0x01,0x20,0xff,0xdc,0x01,0x20,0x01,0x22,0xff,0xdc,
26736
+0x01,0x22,0x00,0x0f,0xff,0xb7,0x01,0x22,0x00,0x10,0x00,0x4b,
26737
+0x01,0x22,0x00,0x11,0xff,0xb7,0x01,0x22,0x00,0x36,0xff,0xdc,
26738
+0x01,0x22,0x01,0x20,0xff,0xdc,0x01,0x22,0x01,0x22,0xff,0xdc,
26739
+0x01,0x26,0x00,0x0f,0xfe,0xd3,0x01,0x26,0x00,0x10,0xfe,0xf8,
26740
+0x01,0x26,0x00,0x11,0xfe,0xd3,0x01,0x26,0x00,0x1d,0xff,0xb7,
26741
+0x01,0x26,0x00,0x1e,0xff,0xb7,0x01,0x26,0x00,0x24,0xff,0x90,
26742
+0x01,0x26,0x00,0x37,0x00,0x26,0x01,0x26,0x00,0x44,0xff,0x61,
26743
+0x01,0x26,0x00,0x46,0xff,0x61,0x01,0x26,0x00,0x48,0xff,0x61,
26744
+0x01,0x26,0x00,0x52,0xff,0x61,0x01,0x26,0x00,0x56,0xff,0x6b,
26745
+0x01,0x26,0x00,0x5a,0xff,0xb7,0x01,0x26,0x00,0x82,0xff,0x90,
26746
+0x01,0x26,0x00,0x83,0xff,0x90,0x01,0x26,0x00,0x84,0xff,0x90,
26747
+0x01,0x26,0x00,0x85,0xff,0x90,0x01,0x26,0x00,0x86,0xff,0x90,
26748
+0x01,0x26,0x00,0xa2,0xff,0x61,0x01,0x26,0x00,0xa3,0xff,0x61,
26749
+0x01,0x26,0x00,0xa4,0xff,0x61,0x01,0x26,0x00,0xa5,0xff,0x61,
26750
+0x01,0x26,0x00,0xa6,0xff,0x61,0x01,0x26,0x00,0xa7,0xff,0x61,
26751
+0x01,0x26,0x00,0xa8,0xff,0x61,0x01,0x26,0x00,0xa9,0xff,0x61,
26752
+0x01,0x26,0x00,0xaa,0xff,0x61,0x01,0x26,0x00,0xab,0xff,0x61,
26753
+0x01,0x26,0x00,0xac,0xff,0x61,0x01,0x26,0x00,0xad,0xff,0x61,
26754
+0x01,0x26,0x00,0xb4,0xff,0x61,0x01,0x26,0x00,0xb5,0xff,0x61,
26755
+0x01,0x26,0x00,0xb6,0xff,0x61,0x01,0x26,0x00,0xb7,0xff,0x61,
26756
+0x01,0x26,0x00,0xb8,0xff,0x61,0x01,0x26,0x00,0xba,0xff,0x61,
26757
+0x01,0x26,0x00,0xc9,0xff,0x61,0x01,0x26,0x00,0xcf,0xff,0x61,
26758
+0x01,0x26,0x00,0xdd,0xff,0x61,0x01,0x26,0x01,0x15,0xff,0x61,
26759
+0x01,0x26,0x01,0x21,0xff,0x6b,0x01,0x26,0x01,0x23,0xff,0x6b,
26760
+0x01,0x26,0x01,0x26,0x00,0x26,0x01,0x30,0x00,0x0f,0xff,0x44,
26761
+0x01,0x30,0x00,0x10,0xff,0xdc,0x01,0x30,0x00,0x11,0xff,0x44,
26762
+0x01,0x30,0x00,0x1d,0xff,0xb7,0x01,0x30,0x00,0x1e,0xff,0xb7,
26763
+0x01,0x30,0x00,0x24,0xff,0xc1,0x01,0x30,0x00,0x2d,0xff,0xc9,
26764
+0x01,0x30,0x00,0x82,0xff,0xc1,0x01,0x30,0x00,0x83,0xff,0xc1,
26765
+0x01,0x30,0x00,0x84,0xff,0xc1,0x01,0x30,0x00,0x85,0xff,0xc1,
26766
+0x01,0x30,0x00,0x86,0xff,0xc1,0x01,0x37,0x00,0x0f,0xfe,0xcd,
26767
+0x01,0x37,0x00,0x11,0xfe,0xee,0x01,0x37,0x00,0x44,0x00,0x6e,
26768
+0x01,0x37,0x00,0x46,0x00,0x55,0x01,0x37,0x00,0x47,0x00,0x61,
26769
+0x01,0x37,0x00,0x48,0x00,0x56,0x01,0x37,0x00,0x49,0x00,0xdc,
26770
+0x01,0x37,0x00,0x4a,0x00,0x61,0x01,0x37,0x00,0x4c,0x00,0xdc,
26771
+0x01,0x37,0x00,0x4d,0x00,0xda,0x01,0x37,0x00,0x50,0x00,0x7d,
26772
+0x01,0x37,0x00,0x51,0x00,0x7d,0x01,0x37,0x00,0x52,0x00,0x55,
26773
+0x01,0x37,0x00,0x53,0x00,0x8c,0x01,0x37,0x00,0x54,0x00,0x61,
26774
+0x01,0x37,0x00,0x55,0x00,0x7d,0x01,0x37,0x00,0x56,0x00,0x9b,
26775
+0x01,0x37,0x00,0x57,0x00,0xeb,0x01,0x37,0x00,0x58,0x00,0x90,
26776
+0x01,0x37,0x00,0x59,0x00,0xcd,0x01,0x37,0x00,0x5a,0x00,0xa6,
26777
+0x01,0x37,0x00,0x5b,0x00,0xae,0x01,0x37,0x00,0x5c,0x00,0xcd,
26778
+0x01,0x37,0x00,0x5d,0x00,0xb3,0x01,0x37,0x01,0x37,0x01,0x05,
26779
+0x01,0x37,0x0c,0xef,0x00,0xdc,0x01,0x3a,0x00,0x0f,0xfe,0xf8,
26780
+0x01,0x3a,0x00,0x10,0xff,0x1f,0x01,0x3a,0x00,0x11,0xfe,0xf8,
26781
+0x01,0x3a,0x00,0x1d,0xff,0x03,0x01,0x3a,0x00,0x1e,0xff,0x03,
26782
+0x01,0x3a,0x00,0x24,0xff,0x61,0x01,0x3a,0x00,0x26,0xff,0xdc,
26783
+0x01,0x3a,0x00,0x44,0xff,0x61,0x01,0x3a,0x00,0x48,0xff,0x4e,
26784
+0x01,0x3a,0x00,0x4c,0xff,0xdc,0x01,0x3a,0x00,0x52,0xff,0x4e,
26785
+0x01,0x3a,0x00,0x58,0xff,0x4e,0x01,0x3a,0x00,0x82,0xff,0x61,
26786
+0x01,0x3a,0x00,0x83,0xff,0x61,0x01,0x3a,0x00,0x84,0xff,0x61,
26787
+0x01,0x3a,0x00,0x85,0xff,0x61,0x01,0x3a,0x00,0x86,0xff,0x61,
26788
+0x01,0x3a,0x00,0x89,0xff,0xdc,0x01,0x3a,0x00,0xa2,0xff,0x61,
26789
+0x01,0x3a,0x00,0xa3,0xff,0x61,0x01,0x3a,0x00,0xa4,0xff,0x61,
26790
+0x01,0x3a,0x00,0xa5,0xff,0x61,0x01,0x3a,0x00,0xa6,0xff,0x61,
26791
+0x01,0x3a,0x00,0xa7,0xff,0x61,0x01,0x3a,0x00,0xa8,0xff,0x3c,
26792
+0x01,0x3a,0x00,0xaa,0xff,0x4e,0x01,0x3a,0x00,0xab,0xff,0x4e,
26793
+0x01,0x3a,0x00,0xac,0xff,0x4e,0x01,0x3a,0x00,0xad,0xff,0x4e,
26794
+0x01,0x3a,0x00,0xb4,0xff,0x4e,0x01,0x3a,0x00,0xb5,0xff,0x4e,
26795
+0x01,0x3a,0x00,0xb6,0xff,0x4e,0x01,0x3a,0x00,0xb7,0xff,0x4e,
26796
+0x01,0x3a,0x00,0xb8,0xff,0x4e,0x01,0x3a,0x00,0xba,0xff,0x4e,
26797
+0x01,0x3a,0x00,0xbb,0xff,0x4e,0x01,0x3a,0x00,0xbc,0xff,0x4e,
26798
+0x01,0x3a,0x00,0xbd,0xff,0x4e,0x01,0x3a,0x00,0xbe,0xff,0x4e,
26799
+0x01,0x3a,0x00,0xc8,0xff,0xdc,0x01,0x3a,0x00,0xce,0xff,0xdc,
26800
+0x01,0x3a,0x00,0xdd,0xff,0x4e,0x01,0x3a,0x01,0x15,0xff,0x29,
26801
+0x01,0x3a,0x01,0x31,0xff,0x4e,0x01,0x3f,0x00,0x0f,0xff,0xdc,
26802
+0x01,0x3f,0x00,0x11,0xff,0xdc,0x02,0x7d,0x00,0x24,0xfe,0xf8,
26803
+0x02,0x7d,0x00,0x2d,0x00,0x2f,0x02,0x7d,0x00,0x82,0xfe,0xf8,
26804
+0x02,0x7d,0x00,0x83,0xfe,0xf8,0x02,0x7d,0x00,0x84,0xfe,0xf8,
26805
+0x02,0x7d,0x00,0x85,0xfe,0xf8,0x02,0x7d,0x00,0x86,0xfe,0xf8,
26806
+0x02,0x7d,0x00,0x88,0xff,0x1f,0x07,0x7e,0x00,0x37,0xff,0xb7,
26807
+0x07,0x7e,0x00,0x39,0xff,0x6b,0x07,0x7e,0x00,0x3a,0xff,0x90,
26808
+0x07,0x7e,0x00,0x3b,0xff,0xb7,0x07,0x7e,0x00,0x3c,0xff,0x1f,
26809
+0x07,0x7e,0x00,0x9f,0xff,0x1f,0x07,0x7e,0x01,0x26,0xff,0xb7,
26810
+0x07,0x7e,0x01,0x3a,0xff,0x1f,0x07,0x86,0x00,0x24,0xfe,0xf8,
26811
+0x07,0x86,0x00,0x2d,0x00,0x2f,0x07,0x86,0x00,0x82,0xfe,0xf8,
26812
+0x07,0x86,0x00,0x83,0xfe,0xf8,0x07,0x86,0x00,0x84,0xfe,0xf8,
26813
+0x07,0x86,0x00,0x85,0xfe,0xf8,0x07,0x86,0x00,0x86,0xfe,0xf8,
26814
+0x07,0x86,0x00,0x88,0xff,0x1f,0x07,0x8a,0x00,0x24,0xfe,0xf8,
26815
+0x07,0x8a,0x00,0x2d,0x00,0x2f,0x07,0x8a,0x00,0x39,0x00,0x39,
26816
+0x07,0x8a,0x00,0x3a,0x00,0x39,0x07,0x8a,0x00,0x3b,0x00,0x39,
26817
+0x07,0x8a,0x00,0x3c,0x00,0x39,0x07,0x8a,0x00,0x82,0xfe,0xf8,
26818
+0x07,0x8a,0x00,0x83,0xfe,0xf8,0x07,0x8a,0x00,0x84,0xfe,0xf8,
26819
+0x07,0x8a,0x00,0x85,0xfe,0xf8,0x07,0x8a,0x00,0x86,0xfe,0xf8,
26820
+0x07,0x8a,0x00,0x88,0xfe,0xd3,0x07,0x8a,0x00,0x9f,0x00,0x39,
26821
+0x07,0x8a,0x01,0x3a,0x00,0x39,0x07,0x8c,0x00,0x37,0xff,0xb7,
26822
+0x07,0x8c,0x00,0x39,0xff,0x90,0x07,0x8c,0x00,0x3a,0xff,0xb7,
26823
+0x07,0x8c,0x00,0x3b,0x00,0x39,0x07,0x8c,0x00,0x3c,0xff,0xb7,
26824
+0x07,0x8c,0x00,0x59,0xff,0xdc,0x07,0x8c,0x00,0x5a,0xff,0xdc,
26825
+0x07,0x8c,0x00,0x9f,0xff,0xb7,0x07,0x8c,0x01,0x26,0xff,0xb7,
26826
+0x07,0x8c,0x01,0x3a,0xff,0xb7,0x0c,0xa2,0x00,0x10,0xff,0x6b,
26827
+0x0c,0xa2,0x00,0x24,0xff,0xad,0x0c,0xa2,0x00,0x26,0xff,0xc9,
26828
+0x0c,0xa2,0x00,0x32,0xff,0xc9,0x0c,0xa2,0x00,0x38,0xff,0xb7,
26829
+0x0c,0xa2,0x00,0x3a,0xff,0xb7,0x0c,0xa2,0x00,0x3c,0xff,0xc9,
26830
+0x0c,0xa2,0x00,0x48,0xff,0xc9,0x0c,0xa2,0x00,0x52,0xff,0xc9,
26831
+0x0c,0xa2,0x00,0x58,0xff,0xd3,0x0c,0xa2,0x00,0x5c,0xff,0x7d,
26832
+0x0c,0xa2,0x00,0x82,0xff,0xad,0x0c,0xa2,0x00,0x83,0xff,0xad,
26833
+0x0c,0xa2,0x00,0x84,0xff,0xad,0x0c,0xa2,0x00,0x85,0xff,0xad,
26834
+0x0c,0xa2,0x00,0x86,0xff,0xad,0x0c,0xa2,0x00,0x89,0xff,0xc9,
26835
+0x0c,0xa2,0x00,0x94,0xff,0xc9,0x0c,0xa2,0x00,0x95,0xff,0xc9,
26836
+0x0c,0xa2,0x00,0x96,0xff,0xc9,0x0c,0xa2,0x00,0x97,0xff,0xc9,
26837
+0x0c,0xa2,0x00,0x98,0xff,0xc9,0x0c,0xa2,0x00,0x9a,0xff,0xc9,
26838
+0x0c,0xa2,0x00,0x9b,0xff,0xb7,0x0c,0xa2,0x00,0x9c,0xff,0xb7,
26839
+0x0c,0xa2,0x00,0x9d,0xff,0xb7,0x0c,0xa2,0x00,0x9e,0xff,0xb7,
26840
+0x0c,0xa2,0x00,0x9f,0xff,0xc9,0x0c,0xa2,0x00,0xaa,0xff,0xc9,
26841
+0x0c,0xa2,0x00,0xab,0xff,0xc9,0x0c,0xa2,0x00,0xac,0xff,0xc9,
26842
+0x0c,0xa2,0x00,0xad,0xff,0xc9,0x0c,0xa2,0x00,0xb4,0xff,0xc9,
26843
+0x0c,0xa2,0x00,0xb5,0xff,0xc9,0x0c,0xa2,0x00,0xb6,0xff,0xc9,
26844
+0x0c,0xa2,0x00,0xb7,0xff,0xc9,0x0c,0xa2,0x00,0xb8,0xff,0xc9,
26845
+0x0c,0xa2,0x00,0xba,0xff,0xdc,0x0c,0xa2,0x00,0xbb,0xff,0xd3,
26846
+0x0c,0xa2,0x00,0xbc,0xff,0xd3,0x0c,0xa2,0x00,0xbd,0xff,0xd3,
26847
+0x0c,0xa2,0x00,0xbe,0xff,0xd3,0x0c,0xa2,0x00,0xbf,0xff,0x7d,
26848
+0x0c,0xa2,0x00,0xc1,0xff,0x7d,0x0c,0xa2,0x00,0xc8,0xff,0xc9,
26849
+0x0c,0xa2,0x00,0xce,0xff,0xc9,0x0c,0xa2,0x00,0xdd,0xff,0xc9,
26850
+0x0c,0xa2,0x01,0x14,0xff,0xc9,0x0c,0xa2,0x01,0x15,0xff,0xc9,
26851
+0x0c,0xa2,0x01,0x30,0xff,0xb7,0x0c,0xa2,0x01,0x31,0xff,0xd3,
26852
+0x0c,0xa2,0x01,0x3a,0xff,0xc9,0x0c,0xa3,0x00,0x10,0xff,0xdc,
26853
+0x0c,0xef,0x00,0x0f,0xff,0xb7,0x0c,0xef,0x00,0x10,0xff,0xb7,
26854
+0x0c,0xef,0x00,0x11,0xff,0xb7,0x0c,0xef,0x07,0x87,0x00,0x97,
26855
+0x0c,0xef,0x07,0x8a,0x00,0x26,0x0c,0xef,0x07,0x8b,0x00,0x97,
26856
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0x00,0x00,0x00,0x44,
26857
+0x00,0x00,0x00,0x44,0x00,0x00,0x00,0x44,0x00,0x00,0x00,0xf0,
26858
+0x00,0x00,0x01,0x34,0x00,0x00,0x02,0x04,0x00,0x00,0x03,0x0c,
26859
+0x00,0x00,0x04,0x0c,0x00,0x00,0x05,0x78,0x00,0x00,0x05,0xa4,
26860
+0x00,0x00,0x06,0x00,0x00,0x00,0x06,0x58,0x00,0x00,0x06,0xf4,
26861
+0x00,0x00,0x07,0x48,0x00,0x00,0x07,0x8c,0x00,0x00,0x07,0xb8,
26862
+0x00,0x00,0x08,0x1c,0x00,0x00,0x08,0x64,0x00,0x00,0x08,0xe8,
26863
+0x00,0x00,0x09,0x90,0x00,0x00,0x0a,0x40,0x00,0x00,0x0b,0x08,
26864
+0x00,0x00,0x0b,0xf0,0x00,0x00,0x0d,0x04,0x00,0x00,0x0d,0xe4,
26865
+0x00,0x00,0x0e,0x84,0x00,0x00,0x0f,0x50,0x00,0x00,0x10,0x2c,
26866
+0x00,0x00,0x10,0x98,0x00,0x00,0x11,0x00,0x00,0x00,0x11,0x4c,
26867
+0x00,0x00,0x11,0x90,0x00,0x00,0x11,0xd8,0x00,0x00,0x12,0x80,
26868
+0x00,0x00,0x13,0xd8,0x00,0x00,0x14,0xd4,0x00,0x00,0x15,0x8c,
26869
+0x00,0x00,0x16,0x2c,0x00,0x00,0x16,0xc0,0x00,0x00,0x17,0x5c,
26870
+0x00,0x00,0x17,0xe8,0x00,0x00,0x18,0xa0,0x00,0x00,0x19,0x50,
26871
+0x00,0x00,0x19,0xb4,0x00,0x00,0x1a,0x64,0x00,0x00,0x1b,0xe0,
26872
+0x00,0x00,0x1c,0x40,0x00,0x00,0x1d,0xa8,0x00,0x00,0x1e,0x5c,
26873
+0x00,0x00,0x1f,0x00,0x00,0x00,0x1f,0x9c,0x00,0x00,0x20,0x5c,
26874
+0x00,0x00,0x21,0x58,0x00,0x00,0x23,0x00,0x00,0x00,0x23,0xb4,
26875
+0x00,0x00,0x24,0x7c,0x00,0x00,0x25,0x4c,0x00,0x00,0x27,0x34,
26876
+0x00,0x00,0x29,0x8c,0x00,0x00,0x2b,0x04,0x00,0x00,0x2b,0xa8,
26877
+0x00,0x00,0x2b,0xf4,0x00,0x00,0x2c,0x3c,0x00,0x00,0x2c,0x84,
26878
+0x00,0x00,0x2c,0xc8,0x00,0x00,0x2c,0xf4,0x00,0x00,0x2d,0x8c,
26879
+0x00,0x00,0x2e,0x84,0x00,0x00,0x2f,0x34,0x00,0x00,0x2f,0xc4,
26880
+0x00,0x00,0x30,0x7c,0x00,0x00,0x31,0x2c,0x00,0x00,0x31,0xf4,
26881
+0x00,0x00,0x32,0xe0,0x00,0x00,0x33,0xa8,0x00,0x00,0x34,0x38,
26882
+0x00,0x00,0x35,0x00,0x00,0x00,0x36,0xd8,0x00,0x00,0x37,0x40,
26883
+0x00,0x00,0x38,0x70,0x00,0x00,0x39,0x38,0x00,0x00,0x39,0xb8,
26884
+0x00,0x00,0x3a,0x78,0x00,0x00,0x3b,0x3c,0x00,0x00,0x3c,0x20,
26885
+0x00,0x00,0x3d,0x74,0x00,0x00,0x3e,0x28,0x00,0x00,0x3e,0xf0,
26886
+0x00,0x00,0x3f,0xe4,0x00,0x00,0x41,0xfc,0x00,0x00,0x44,0x0c,
26887
+0x00,0x00,0x45,0x70,0x00,0x00,0x46,0x10,0x00,0x00,0x46,0xd8,
26888
+0x00,0x00,0x47,0x04,0x00,0x00,0x47,0xc8,0x00,0x00,0x48,0x60,
26889
+0x00,0x00,0x48,0x60,0x00,0x00,0x48,0xc8,0x00,0x00,0x49,0x8c,
26890
+0x00,0x00,0x4a,0x38,0x00,0x00,0x4b,0x3c,0x00,0x00,0x4c,0xfc,
26891
+0x00,0x00,0x4d,0x44,0x00,0x00,0x4e,0x70,0x00,0x00,0x4f,0x38,
26892
+0x00,0x00,0x50,0x68,0x00,0x00,0x51,0x60,0x00,0x00,0x51,0xe0,
26893
+0x00,0x00,0x52,0x18,0x00,0x00,0x52,0x44,0x00,0x00,0x53,0xdc,
26894
+0x00,0x00,0x54,0x20,0x00,0x00,0x54,0x90,0x00,0x00,0x54,0xfc,
26895
+0x00,0x00,0x55,0xbc,0x00,0x00,0x56,0x88,0x00,0x00,0x56,0xf4,
26896
+0x00,0x00,0x57,0xd4,0x00,0x00,0x58,0x3c,0x00,0x00,0x58,0x7c,
26897
+0x00,0x00,0x58,0xe0,0x00,0x00,0x59,0x4c,0x00,0x00,0x59,0xd4,
26898
+0x00,0x00,0x5a,0x58,0x00,0x00,0x5a,0x78,0x00,0x00,0x5a,0x98,
26899
+0x00,0x00,0x5a,0xb8,0x00,0x00,0x5b,0x5c,0x00,0x00,0x5b,0x74,
26900
+0x00,0x00,0x5b,0x8c,0x00,0x00,0x5b,0xa4,0x00,0x00,0x5b,0xbc,
26901
+0x00,0x00,0x5b,0xd4,0x00,0x00,0x5d,0x54,0x00,0x00,0x5e,0x88,
26902
+0x00,0x00,0x5e,0xa0,0x00,0x00,0x5e,0xb8,0x00,0x00,0x5e,0xd0,
26903
+0x00,0x00,0x5e,0xe8,0x00,0x00,0x5f,0x00,0x00,0x00,0x5f,0x18,
26904
+0x00,0x00,0x5f,0x30,0x00,0x00,0x5f,0x48,0x00,0x00,0x5f,0x60,
26905
+0x00,0x00,0x60,0x18,0x00,0x00,0x60,0x30,0x00,0x00,0x60,0x48,
26906
+0x00,0x00,0x60,0x60,0x00,0x00,0x60,0x78,0x00,0x00,0x60,0x90,
26907
+0x00,0x00,0x60,0xa8,0x00,0x00,0x61,0x1c,0x00,0x00,0x62,0x28,
26908
+0x00,0x00,0x62,0x40,0x00,0x00,0x62,0x58,0x00,0x00,0x62,0x70,
26909
+0x00,0x00,0x62,0x88,0x00,0x00,0x62,0xa0,0x00,0x00,0x63,0x4c,
26910
+0x00,0x00,0x64,0x98,0x00,0x00,0x64,0xb0,0x00,0x00,0x64,0xc8,
26911
+0x00,0x00,0x64,0xe0,0x00,0x00,0x64,0xf8,0x00,0x00,0x65,0x10,
26912
+0x00,0x00,0x65,0x28,0x00,0x00,0x66,0x94,0x00,0x00,0x66,0xac,
26913
+0x00,0x00,0x66,0xc4,0x00,0x00,0x66,0xdc,0x00,0x00,0x66,0xf4,
26914
+0x00,0x00,0x67,0x0c,0x00,0x00,0x67,0x24,0x00,0x00,0x67,0x3c,
26915
+0x00,0x00,0x67,0x54,0x00,0x00,0x67,0x6c,0x00,0x00,0x68,0x64,
26916
+0x00,0x00,0x68,0x7c,0x00,0x00,0x68,0x94,0x00,0x00,0x68,0xac,
26917
+0x00,0x00,0x68,0xc4,0x00,0x00,0x68,0xdc,0x00,0x00,0x68,0xf4,
26918
+0x00,0x00,0x69,0x78,0x00,0x00,0x6a,0x88,0x00,0x00,0x6a,0xa0,
26919
+0x00,0x00,0x6a,0xb8,0x00,0x00,0x6a,0xd0,0x00,0x00,0x6a,0xe8,
26920
+0x00,0x00,0x6b,0x00,0x00,0x00,0x6b,0xc0,0x00,0x00,0x6b,0xd8,
26921
+0x00,0x00,0x6b,0xf0,0x00,0x00,0x6c,0x08,0x00,0x00,0x6c,0x20,
26922
+0x00,0x00,0x6c,0x38,0x00,0x00,0x6c,0x50,0x00,0x00,0x6c,0x68,
26923
+0x00,0x00,0x6c,0x80,0x00,0x00,0x6c,0x98,0x00,0x00,0x6c,0xb0,
26924
+0x00,0x00,0x6c,0xc8,0x00,0x00,0x6c,0xe0,0x00,0x00,0x6c,0xf8,
26925
+0x00,0x00,0x6d,0x10,0x00,0x00,0x6d,0x28,0x00,0x00,0x6d,0x40,
26926
+0x00,0x00,0x6d,0x58,0x00,0x00,0x6d,0x68,0x00,0x00,0x6e,0x48,
26927
+0x00,0x00,0x6e,0x60,0x00,0x00,0x6e,0x78,0x00,0x00,0x6e,0x90,
26928
+0x00,0x00,0x6e,0xa8,0x00,0x00,0x6e,0xc0,0x00,0x00,0x6e,0xd8,
26929
+0x00,0x00,0x6e,0xf0,0x00,0x00,0x6f,0x08,0x00,0x00,0x6f,0x20,
26930
+0x00,0x00,0x6f,0x38,0x00,0x00,0x6f,0x50,0x00,0x00,0x6f,0x68,
26931
+0x00,0x00,0x6f,0x80,0x00,0x00,0x6f,0x98,0x00,0x00,0x6f,0xb0,
26932
+0x00,0x00,0x6f,0xc8,0x00,0x00,0x6f,0xe0,0x00,0x00,0x6f,0xf8,
26933
+0x00,0x00,0x70,0x10,0x00,0x00,0x70,0x28,0x00,0x00,0x71,0x1c,
26934
+0x00,0x00,0x72,0x10,0x00,0x00,0x72,0x28,0x00,0x00,0x72,0x40,
26935
+0x00,0x00,0x72,0x58,0x00,0x00,0x72,0x70,0x00,0x00,0x72,0x88,
26936
+0x00,0x00,0x72,0xa0,0x00,0x00,0x72,0xb8,0x00,0x00,0x72,0xd0,
26937
+0x00,0x00,0x72,0xe8,0x00,0x00,0x73,0x50,0x00,0x00,0x73,0x74,
26938
+0x00,0x00,0x73,0x98,0x00,0x00,0x73,0xb0,0x00,0x00,0x73,0xc8,
26939
+0x00,0x00,0x73,0xe0,0x00,0x00,0x73,0xf8,0x00,0x00,0x75,0xd0,
26940
+0x00,0x00,0x75,0xe8,0x00,0x00,0x76,0x00,0x00,0x00,0x76,0x18,
26941
+0x00,0x00,0x76,0x30,0x00,0x00,0x76,0x48,0x00,0x00,0x76,0x60,
26942
+0x00,0x00,0x76,0x78,0x00,0x00,0x76,0x90,0x00,0x00,0x77,0x2c,
26943
+0x00,0x00,0x77,0xcc,0x00,0x00,0x77,0xe4,0x00,0x00,0x77,0xfc,
26944
+0x00,0x00,0x78,0x14,0x00,0x00,0x78,0x2c,0x00,0x00,0x78,0x44,
26945
+0x00,0x00,0x78,0x5c,0x00,0x00,0x78,0x74,0x00,0x00,0x79,0x34,
26946
+0x00,0x00,0x7a,0x14,0x00,0x00,0x7a,0x2c,0x00,0x00,0x7a,0x44,
26947
+0x00,0x00,0x7a,0x5c,0x00,0x00,0x7a,0x74,0x00,0x00,0x7a,0x8c,
26948
+0x00,0x00,0x7a,0xa4,0x00,0x00,0x7b,0x7c,0x00,0x00,0x7c,0x88,
26949
+0x00,0x00,0x7c,0xa0,0x00,0x00,0x7c,0xb8,0x00,0x00,0x7c,0xd0,
26950
+0x00,0x00,0x7c,0xe8,0x00,0x00,0x7d,0x00,0x00,0x00,0x7d,0x18,
26951
+0x00,0x00,0x7d,0x30,0x00,0x00,0x7d,0x48,0x00,0x00,0x7d,0x60,
26952
+0x00,0x00,0x7d,0x78,0x00,0x00,0x7d,0x90,0x00,0x00,0x7d,0xa8,
26953
+0x00,0x00,0x7d,0xc0,0x00,0x00,0x7d,0xd8,0x00,0x00,0x7d,0xf0,
26954
+0x00,0x00,0x7e,0x08,0x00,0x00,0x7e,0x20,0x00,0x00,0x7e,0x38,
26955
+0x00,0x00,0x7f,0x14,0x00,0x00,0x7f,0x74,0x00,0x00,0x7f,0x8c,
26956
+0x00,0x00,0x7f,0xa4,0x00,0x00,0x7f,0xbc,0x00,0x00,0x7f,0xd4,
26957
+0x00,0x00,0x7f,0xec,0x00,0x00,0x80,0x04,0x00,0x00,0x80,0x1c,
26958
+0x00,0x00,0x80,0x34,0x00,0x00,0x80,0x4c,0x00,0x00,0x80,0x64,
26959
+0x00,0x00,0x80,0x7c,0x00,0x00,0x80,0x94,0x00,0x00,0x80,0xac,
26960
+0x00,0x00,0x80,0xc4,0x00,0x00,0x80,0xdc,0x00,0x00,0x80,0xf4,
26961
+0x00,0x00,0x81,0x0c,0x00,0x00,0x81,0x24,0x00,0x00,0x81,0x3c,
26962
+0x00,0x00,0x81,0x54,0x00,0x00,0x81,0x6c,0x00,0x00,0x81,0x84,
26963
+0x00,0x00,0x81,0x9c,0x00,0x00,0x82,0x54,0x00,0x00,0x82,0xd0,
26964
+0x00,0x00,0x83,0x6c,0x00,0x00,0x83,0x7c,0x00,0x00,0x84,0x04,
26965
+0x00,0x00,0x84,0x5c,0x00,0x00,0x84,0xc4,0x00,0x00,0x85,0x60,
26966
+0x00,0x00,0x86,0x04,0x00,0x00,0x86,0x98,0x00,0x00,0x86,0xa8,
26967
+0x00,0x00,0x87,0x14,0x00,0x00,0x87,0x78,0x00,0x00,0x88,0x00,
26968
+0x00,0x00,0x88,0xa0,0x00,0x00,0x88,0xec,0x00,0x00,0x89,0x78,
26969
+0x00,0x00,0x8a,0x38,0x00,0x00,0x8a,0x98,0x00,0x00,0x8b,0x24,
26970
+0x00,0x00,0x8b,0xbc,0x00,0x00,0x8c,0x28,0x00,0x00,0x8c,0xcc,
26971
+0x00,0x00,0x8d,0x08,0x00,0x00,0x8d,0x48,0x00,0x00,0x8d,0xb4,
26972
+0x00,0x00,0x8e,0x34,0x00,0x00,0x8e,0x70,0x00,0x00,0x8e,0xf4,
26973
+0x00,0x00,0x8f,0x84,0x00,0x00,0x8f,0xe4,0x00,0x00,0x90,0xac,
26974
+0x00,0x00,0x91,0x3c,0x00,0x00,0x91,0x54,0x00,0x00,0x91,0x6c,
26975
+0x00,0x00,0x92,0x1c,0x00,0x00,0x92,0xa0,0x00,0x00,0x93,0x14,
26976
+0x00,0x00,0x93,0xbc,0x00,0x00,0x94,0x40,0x00,0x00,0x94,0xdc,
26977
+0x00,0x00,0x95,0x70,0x00,0x00,0x95,0x80,0x00,0x00,0x96,0x18,
26978
+0x00,0x00,0x96,0x8c,0x00,0x00,0x96,0xd8,0x00,0x00,0x97,0x58,
26979
+0x00,0x00,0x97,0xb4,0x00,0x00,0x97,0xcc,0x00,0x00,0x97,0xe4,
26980
+0x00,0x00,0x98,0x6c,0x00,0x00,0x98,0xe0,0x00,0x00,0x99,0x44,
26981
+0x00,0x00,0x99,0xc0,0x00,0x00,0x9a,0x10,0x00,0x00,0x9a,0x5c,
26982
+0x00,0x00,0x9a,0xd0,0x00,0x00,0x9b,0x44,0x00,0x00,0x9b,0xb8,
26983
+0x00,0x00,0x9c,0x14,0x00,0x00,0x9c,0x88,0x00,0x00,0x9c,0xf0,
26984
+0x00,0x00,0x9d,0x64,0x00,0x00,0x9d,0xd4,0x00,0x00,0x9e,0x2c,
26985
+0x00,0x00,0x9e,0x48,0x00,0x00,0x9e,0x60,0x00,0x00,0x9e,0xa8,
26986
+0x00,0x00,0x9e,0xd0,0x00,0x00,0x9e,0xe8,0x00,0x00,0x9f,0x00,
26987
+0x00,0x00,0x9f,0x18,0x00,0x00,0x9f,0x30,0x00,0x00,0x9f,0x48,
26988
+0x00,0x00,0x9f,0x60,0x00,0x00,0x9f,0x78,0x00,0x00,0x9f,0x90,
26989
+0x00,0x00,0x9f,0xa8,0x00,0x00,0x9f,0xc0,0x00,0x00,0x9f,0xd8,
26990
+0x00,0x00,0x9f,0xf0,0x00,0x00,0xa0,0x08,0x00,0x00,0xa0,0x20,
26991
+0x00,0x00,0xa0,0x38,0x00,0x00,0xa0,0x50,0x00,0x00,0xa0,0x68,
26992
+0x00,0x00,0xa0,0x80,0x00,0x00,0xa0,0x98,0x00,0x00,0xa0,0xb0,
26993
+0x00,0x00,0xa0,0xc8,0x00,0x00,0xa0,0xe0,0x00,0x00,0xa0,0xf8,
26994
+0x00,0x00,0xa1,0x10,0x00,0x00,0xa1,0x28,0x00,0x00,0xa1,0x38,
26995
+0x00,0x00,0xa1,0x50,0x00,0x00,0xa1,0x68,0x00,0x00,0xa1,0x80,
26996
+0x00,0x00,0xa1,0x98,0x00,0x00,0xa1,0xb0,0x00,0x00,0xa1,0xc8,
26997
+0x00,0x00,0xa2,0x4c,0x00,0x00,0xa2,0xf4,0x00,0x00,0xa3,0x0c,
26998
+0x00,0x00,0xa3,0x24,0x00,0x00,0xa3,0x3c,0x00,0x00,0xa3,0x54,
26999
+0x00,0x00,0xa3,0x6c,0x00,0x00,0xa3,0x84,0x00,0x00,0xa3,0x9c,
27000
+0x00,0x00,0xa3,0xb4,0x00,0x00,0xa3,0xcc,0x00,0x00,0xa3,0xe4,
27001
+0x00,0x00,0xa3,0xfc,0x00,0x00,0xa4,0x14,0x00,0x00,0xa4,0x2c,
27002
+0x00,0x00,0xa4,0x44,0x00,0x00,0xa4,0x5c,0x00,0x00,0xa4,0x74,
27003
+0x00,0x00,0xa4,0xf8,0x00,0x00,0xa5,0x54,0x00,0x00,0xa5,0x6c,
27004
+0x00,0x00,0xa5,0x84,0x00,0x00,0xa6,0x24,0x00,0x00,0xa6,0xe8,
27005
+0x00,0x00,0xa7,0x00,0x00,0x00,0xa7,0x18,0x00,0x00,0xa7,0x30,
27006
+0x00,0x00,0xa7,0x48,0x00,0x00,0xa7,0x60,0x00,0x00,0xa7,0x78,
27007
+0x00,0x00,0xa7,0x90,0x00,0x00,0xa7,0xa8,0x00,0x00,0xa7,0xc0,
27008
+0x00,0x00,0xa7,0xd8,0x00,0x00,0xa7,0xf0,0x00,0x00,0xa8,0x08,
27009
+0x00,0x00,0xa8,0x20,0x00,0x00,0xa8,0x38,0x00,0x00,0xa8,0x50,
27010
+0x00,0x00,0xa8,0x68,0x00,0x00,0xa8,0x80,0x00,0x00,0xa8,0x98,
27011
+0x00,0x00,0xa8,0xb0,0x00,0x00,0xa8,0xc8,0x00,0x00,0xa8,0xe0,
27012
+0x00,0x00,0xa8,0xf8,0x00,0x00,0xa9,0x10,0x00,0x00,0xa9,0x28,
27013
+0x00,0x00,0xa9,0x40,0x00,0x00,0xa9,0x58,0x00,0x00,0xa9,0x70,
27014
+0x00,0x00,0xa9,0x88,0x00,0x00,0xa9,0xa0,0x00,0x00,0xa9,0xb8,
27015
+0x00,0x00,0xa9,0xd0,0x00,0x00,0xa9,0xe8,0x00,0x00,0xaa,0x64,
27016
+0x00,0x00,0xaa,0xe0,0x00,0x00,0xaa,0xf8,0x00,0x00,0xab,0x10,
27017
+0x00,0x00,0xab,0x6c,0x00,0x00,0xac,0x1c,0x00,0x00,0xac,0x94,
27018
+0x00,0x00,0xad,0x08,0x00,0x00,0xad,0x50,0x00,0x00,0xad,0x98,
27019
+0x00,0x00,0xad,0xb0,0x00,0x00,0xad,0xc8,0x00,0x00,0xad,0xe0,
27020
+0x00,0x00,0xad,0xf8,0x00,0x00,0xae,0x10,0x00,0x00,0xae,0x28,
27021
+0x00,0x00,0xae,0x40,0x00,0x00,0xae,0x58,0x00,0x00,0xae,0x70,
27022
+0x00,0x00,0xae,0x88,0x00,0x00,0xae,0xa0,0x00,0x00,0xae,0xb8,
27023
+0x00,0x00,0xae,0xd0,0x00,0x00,0xae,0xe8,0x00,0x00,0xaf,0x50,
27024
+0x00,0x00,0xaf,0xe8,0x00,0x00,0xb0,0x60,0x00,0x00,0xb0,0xf4,
27025
+0x00,0x00,0xb1,0x9c,0x00,0x00,0xb2,0x50,0x00,0x00,0xb2,0xd4,
27026
+0x00,0x00,0xb3,0x70,0x00,0x00,0xb3,0xfc,0x00,0x00,0xb4,0x40,
27027
+0x00,0x00,0xb4,0xa0,0x00,0x00,0xb5,0x58,0x00,0x00,0xb5,0xc0,
27028
+0x00,0x00,0xb6,0x24,0x00,0x00,0xb6,0x88,0x00,0x00,0xb7,0x0c,
27029
+0x00,0x00,0xb7,0x80,0x00,0x00,0xb7,0x90,0x00,0x00,0xb8,0x10,
27030
+0x00,0x00,0xb8,0xbc,0x00,0x00,0xb9,0x10,0x00,0x00,0xb9,0x28,
27031
+0x00,0x00,0xb9,0xd8,0x00,0x00,0xba,0x5c,0x00,0x00,0xba,0xe0,
27032
+0x00,0x00,0xbb,0x44,0x00,0x00,0xbb,0xb0,0x00,0x00,0xbc,0x34,
27033
+0x00,0x00,0xbc,0xb8,0x00,0x00,0xbd,0x70,0x00,0x00,0xbd,0xec,
27034
+0x00,0x00,0xbe,0x94,0x00,0x00,0xbf,0x3c,0x00,0x00,0xbf,0xd0,
27035
+0x00,0x00,0xc0,0x78,0x00,0x00,0xc1,0x1c,0x00,0x00,0xc1,0x8c,
27036
+0x00,0x00,0xc1,0xf8,0x00,0x00,0xc2,0xb0,0x00,0x00,0xc3,0xb0,
27037
+0x00,0x00,0xc4,0x44,0x00,0x00,0xc5,0x10,0x00,0x00,0xc5,0x80,
27038
+0x00,0x00,0xc5,0xd0,0x00,0x00,0xc6,0x7c,0x00,0x00,0xc6,0xf8,
27039
+0x00,0x00,0xc7,0x5c,0x00,0x00,0xc7,0xdc,0x00,0x00,0xc8,0x7c,
27040
+0x00,0x00,0xc8,0xd4,0x00,0x00,0xc9,0x5c,0x00,0x00,0xca,0x10,
27041
+0x00,0x00,0xca,0x28,0x00,0x00,0xca,0x5c,0x00,0x00,0xca,0xcc,
27042
+0x00,0x00,0xcb,0x48,0x00,0x00,0xcb,0xa0,0x00,0x00,0xcb,0xf0,
27043
+0x00,0x00,0xcc,0x7c,0x00,0x00,0xcc,0xf8,0x00,0x00,0xcd,0x78,
27044
+0x00,0x00,0xce,0x38,0x00,0x00,0xce,0xc0,0x00,0x00,0xcf,0x48,
27045
+0x00,0x00,0xcf,0x8c,0x00,0x00,0xcf,0xfc,0x00,0x00,0xd0,0x80,
27046
+0x00,0x00,0xd1,0x00,0x00,0x00,0xd1,0x7c,0x00,0x00,0xd1,0xd4,
27047
+0x00,0x00,0xd2,0x2c,0x00,0x00,0xd2,0xac,0x00,0x00,0xd3,0x04,
27048
+0x00,0x00,0xd3,0x8c,0x00,0x00,0xd3,0xe0,0x00,0x00,0xd4,0x34,
27049
+0x00,0x00,0xd4,0xa8,0x00,0x00,0xd5,0x1c,0x00,0x00,0xd5,0xc0,
27050
+0x00,0x00,0xd6,0x40,0x00,0x00,0xd6,0xc0,0x00,0x00,0xd7,0x38,
27051
+0x00,0x00,0xd7,0xd0,0x00,0x00,0xd8,0x24,0x00,0x00,0xd8,0x78,
27052
+0x00,0x00,0xd8,0xf4,0x00,0x00,0xd9,0x6c,0x00,0x00,0xd9,0xdc,
27053
+0x00,0x00,0xda,0x1c,0x00,0x00,0xda,0x70,0x00,0x00,0xda,0xe0,
27054
+0x00,0x00,0xdb,0x2c,0x00,0x00,0xdb,0x8c,0x00,0x00,0xdb,0xe4,
27055
+0x00,0x00,0xdc,0x58,0x00,0x00,0xdc,0xe8,0x00,0x00,0xdd,0x38,
27056
+0x00,0x00,0xdd,0x8c,0x00,0x00,0xdd,0xe0,0x00,0x00,0xde,0x3c,
27057
+0x00,0x00,0xde,0xd8,0x00,0x00,0xde,0xe8,0x00,0x00,0xdf,0x58,
27058
+0x00,0x00,0xdf,0xdc,0x00,0x00,0xdf,0xec,0x00,0x00,0xe0,0x04,
27059
+0x00,0x00,0xe0,0x5c,0x00,0x00,0xe0,0x8c,0x00,0x00,0xe1,0x34,
27060
+0x00,0x00,0xe1,0x98,0x00,0x00,0xe1,0xfc,0x00,0x00,0xe2,0x84,
27061
+0x00,0x00,0xe3,0x50,0x00,0x00,0xe4,0x00,0x00,0x00,0xe4,0x9c,
27062
+0x00,0x00,0xe5,0x5c,0x00,0x00,0xe6,0x08,0x00,0x00,0xe6,0xb8,
27063
+0x00,0x00,0xe7,0x3c,0x00,0x00,0xe7,0x8c,0x00,0x00,0xe8,0x14,
27064
+0x00,0x00,0xe8,0x58,0x00,0x00,0xe8,0xe4,0x00,0x00,0xe9,0x9c,
27065
+0x00,0x00,0xea,0x00,0x00,0x00,0xea,0x90,0x00,0x00,0xea,0xfc,
27066
+0x00,0x00,0xeb,0x54,0x00,0x00,0xeb,0xac,0x00,0x00,0xec,0x34,
27067
+0x00,0x00,0xec,0xb0,0x00,0x00,0xec,0xfc,0x00,0x00,0xed,0x64,
27068
+0x00,0x00,0xed,0x74,0x00,0x00,0xed,0x8c,0x00,0x00,0xed,0xd0,
27069
+0x00,0x00,0xee,0x14,0x00,0x00,0xee,0x40,0x00,0x00,0xee,0x78,
27070
+0x00,0x00,0xee,0xb4,0x00,0x00,0xef,0x1c,0x00,0x00,0xef,0x80,
27071
+0x00,0x00,0xef,0xa8,0x00,0x00,0xef,0xd0,0x00,0x00,0xef,0xf8,
27072
+0x00,0x00,0xf0,0x20,0x00,0x00,0xf0,0xa0,0x00,0x00,0xf1,0x14,
27073
+0x00,0x00,0xf1,0x30,0x00,0x00,0xf1,0x40,0x00,0x00,0xf1,0x50,
27074
+0x00,0x00,0xf1,0x60,0x00,0x00,0xf1,0x7c,0x00,0x00,0xf1,0x90,
27075
+0x00,0x00,0xf1,0xbc,0x00,0x00,0xf1,0xd8,0x00,0x00,0xf1,0xec,
27076
+0x00,0x00,0xf2,0x00,0x00,0x00,0xf2,0x2c,0x00,0x00,0xf2,0x48,
27077
+0x00,0x00,0xf2,0xec,0x00,0x00,0xf3,0x48,0x00,0x00,0xf3,0xf0,
27078
+0x00,0x00,0xf4,0x58,0x00,0x00,0xf5,0x7c,0x00,0x00,0xf5,0xe4,
27079
+0x00,0x00,0xf6,0x2c,0x00,0x00,0xf6,0xa4,0x00,0x00,0xf6,0xcc,
27080
+0x00,0x00,0xf7,0x60,0x00,0x00,0xf7,0xb8,0x00,0x00,0xf8,0x1c,
27081
+0x00,0x00,0xf8,0x3c,0x00,0x00,0xf8,0x60,0x00,0x00,0xf8,0x84,
27082
+0x00,0x00,0xf8,0xa8,0x00,0x00,0xf8,0xc8,0x00,0x00,0xf8,0xdc,
27083
+0x00,0x00,0xf9,0x20,0x00,0x00,0xf9,0x34,0x00,0x00,0xf9,0x48,
27084
+0x00,0x00,0xf9,0x5c,0x00,0x00,0xf9,0x70,0x00,0x00,0xf9,0x84,
27085
+0x00,0x00,0xf9,0x98,0x00,0x00,0xf9,0xac,0x00,0x00,0xf9,0xc0,
27086
+0x00,0x00,0xf9,0xdc,0x00,0x00,0xf9,0xf0,0x00,0x00,0xfa,0x04,
27087
+0x00,0x00,0xfa,0x18,0x00,0x00,0xfa,0x2c,0x00,0x00,0xfa,0x80,
27088
+0x00,0x00,0xfa,0x94,0x00,0x00,0xfa,0xa8,0x00,0x00,0xfa,0xbc,
27089
+0x00,0x00,0xfa,0xd8,0x00,0x00,0xfa,0xf4,0x00,0x00,0xfb,0x20,
27090
+0x00,0x00,0xfb,0x3c,0x00,0x00,0xfb,0x6c,0x00,0x00,0xfb,0x98,
27091
+0x00,0x00,0xfb,0xe0,0x00,0x00,0xfc,0x28,0x00,0x00,0xfc,0x44,
27092
+0x00,0x00,0xfc,0x58,0x00,0x00,0xfc,0x6c,0x00,0x00,0xfc,0x90,
27093
+0x00,0x00,0xfc,0xb0,0x00,0x00,0xfc,0xd4,0x00,0x00,0xfd,0x18,
27094
+0x00,0x00,0xfd,0x50,0x00,0x00,0xfd,0x74,0x00,0x00,0xfd,0x94,
27095
+0x00,0x00,0xfd,0xc0,0x00,0x00,0xfd,0xdc,0x00,0x00,0xfe,0x18,
27096
+0x00,0x00,0xfe,0x54,0x00,0x00,0xfe,0x68,0x00,0x00,0xfe,0x7c,
27097
+0x00,0x00,0xfe,0xc4,0x00,0x00,0xfe,0xf0,0x00,0x00,0xff,0x04,
27098
+0x00,0x00,0xff,0x18,0x00,0x00,0xff,0x34,0x00,0x00,0xff,0x58,
27099
+0x00,0x00,0xff,0xb8,0x00,0x00,0xff,0xcc,0x00,0x00,0xff,0xe0,
27100
+0x00,0x00,0xff,0xf4,0x00,0x01,0x00,0x24,0x00,0x01,0x00,0x38,
27101
+0x00,0x01,0x00,0x4c,0x00,0x01,0x00,0x60,0x00,0x01,0x00,0x74,
27102
+0x00,0x01,0x00,0xf4,0x00,0x01,0x01,0x10,0x00,0x01,0x01,0x2c,
27103
+0x00,0x01,0x01,0x4c,0x00,0x01,0x01,0x6c,0x00,0x01,0x01,0xa0,
27104
+0x00,0x01,0x01,0xc4,0x00,0x01,0x01,0xf0,0x00,0x01,0x02,0x4c,
27105
+0x00,0x01,0x02,0x80,0x00,0x01,0x02,0xe0,0x00,0x01,0x02,0xfc,
27106
+0x00,0x01,0x03,0x0c,0x00,0x01,0x03,0x0c,0x00,0x01,0x03,0x20,
27107
+0x00,0x01,0x03,0x74,0x00,0x01,0x03,0xb4,0x00,0x01,0x03,0xc4,
27108
+0x00,0x01,0x03,0xf0,0x00,0x01,0x04,0x28,0x00,0x01,0x04,0x60,
27109
+0x00,0x01,0x04,0x7c,0x00,0x01,0x04,0x98,0x00,0x01,0x04,0xdc,
27110
+0x00,0x01,0x05,0x14,0x00,0x01,0x05,0x40,0x00,0x01,0x05,0x50,
27111
+0x00,0x01,0x05,0x68,0x00,0x01,0x05,0x80,0x00,0x01,0x05,0x90,
27112
+0x00,0x01,0x05,0xfc,0x00,0x01,0x06,0x14,0x00,0x01,0x06,0x2c,
27113
+0x00,0x01,0x06,0x3c,0x00,0x01,0x06,0x58,0x00,0x01,0x06,0x74,
27114
+0x00,0x01,0x06,0x90,0x00,0x01,0x06,0xa8,0x00,0x01,0x06,0xc4,
27115
+0x00,0x01,0x06,0xdc,0x00,0x01,0x06,0xf4,0x00,0x01,0x07,0x04,
27116
+0x00,0x01,0x07,0x14,0x00,0x01,0x07,0x48,0x00,0x01,0x07,0x74,
27117
+0x00,0x01,0x07,0x84,0x00,0x01,0x07,0x94,0x00,0x01,0x07,0xa4,
27118
+0x00,0x01,0x08,0x9c,0x00,0x01,0x08,0xac,0x00,0x01,0x08,0xbc,
27119
+0x00,0x01,0x08,0xf8,0x00,0x01,0x09,0x08,0x00,0x01,0x09,0x18,
27120
+0x00,0x01,0x09,0x74,0x00,0x01,0x09,0x84,0x00,0x01,0x09,0x94,
27121
+0x00,0x01,0x09,0xa4,0x00,0x01,0x09,0xe0,0x00,0x01,0x09,0xf0,
27122
+0x00,0x01,0x0a,0x00,0x00,0x01,0x0a,0xb4,0x00,0x01,0x0a,0xc4,
27123
+0x00,0x01,0x0b,0x58,0x00,0x01,0x0c,0x30,0x00,0x01,0x0c,0x48,
27124
+0x00,0x01,0x0c,0x60,0x00,0x01,0x0c,0x78,0x00,0x01,0x0c,0x90,
27125
+0x00,0x01,0x0c,0xa8,0x00,0x01,0x0c,0xc0,0x00,0x01,0x0c,0xd8,
27126
+0x00,0x01,0x0d,0x80,0x00,0x01,0x0e,0x10,0x00,0x01,0x0e,0x78,
27127
+0x00,0x01,0x0f,0x10,0x00,0x01,0x0f,0x20,0x00,0x01,0x0f,0x8c,
27128
+0x00,0x01,0x10,0x2c,0x00,0x01,0x10,0xd4,0x00,0x01,0x11,0x0c,
27129
+0x00,0x01,0x11,0x1c,0x00,0x01,0x11,0x8c,0x00,0x01,0x12,0x54,
27130
+0x00,0x01,0x12,0xb8,0x00,0x01,0x13,0x38,0x00,0x01,0x13,0x48,
27131
+0x00,0x01,0x13,0xd0,0x00,0x01,0x14,0x38,0x00,0x01,0x14,0xa0,
27132
+0x00,0x01,0x15,0x04,0x00,0x01,0x15,0x48,0x00,0x01,0x15,0xbc,
27133
+0x00,0x01,0x16,0x68,0x00,0x01,0x17,0x14,0x00,0x01,0x17,0xac,
27134
+0x00,0x01,0x18,0x60,0x00,0x01,0x18,0x78,0x00,0x01,0x18,0x90,
27135
+0x00,0x01,0x18,0xa8,0x00,0x01,0x18,0xc0,0x00,0x01,0x18,0xd8,
27136
+0x00,0x01,0x19,0x3c,0x00,0x01,0x19,0xc0,0x00,0x01,0x1a,0x4c,
27137
+0x00,0x01,0x1a,0xb0,0x00,0x01,0x1a,0xcc,0x00,0x01,0x1a,0xe4,
27138
+0x00,0x01,0x1b,0x68,0x00,0x01,0x1c,0x24,0x00,0x01,0x1d,0x24,
27139
+0x00,0x01,0x1d,0xa8,0x00,0x01,0x1e,0x00,0x00,0x01,0x1e,0x7c,
27140
+0x00,0x01,0x1e,0xf0,0x00,0x01,0x1f,0x30,0x00,0x01,0x1f,0xa0,
27141
+0x00,0x01,0x1f,0xdc,0x00,0x01,0x20,0x08,0x00,0x01,0x20,0x8c,
27142
+0x00,0x01,0x20,0xf4,0x00,0x01,0x21,0xd0,0x00,0x01,0x22,0x6c,
27143
+0x00,0x01,0x22,0x7c,0x00,0x01,0x22,0x8c,0x00,0x01,0x23,0x10,
27144
+0x00,0x01,0x23,0x20,0x00,0x01,0x23,0x30,0x00,0x01,0x23,0x40,
27145
+0x00,0x01,0x23,0xa4,0x00,0x01,0x23,0xb4,0x00,0x01,0x24,0x08,
27146
+0x00,0x01,0x24,0x48,0x00,0x01,0x24,0xc0,0x00,0x01,0x24,0xd0,
27147
+0x00,0x01,0x24,0xe8,0x00,0x01,0x25,0x00,0x00,0x01,0x25,0x18,
27148
+0x00,0x01,0x25,0xb8,0x00,0x01,0x26,0x90,0x00,0x01,0x26,0xa8,
27149
+0x00,0x01,0x27,0x64,0x00,0x01,0x27,0x74,0x00,0x01,0x27,0x84,
27150
+0x00,0x01,0x28,0x1c,0x00,0x01,0x28,0x2c,0x00,0x01,0x29,0x04,
27151
+0x00,0x01,0x29,0xdc,0x00,0x01,0x2a,0x94,0x00,0x01,0x2a,0xac,
27152
+0x00,0x01,0x2a,0xc4,0x00,0x01,0x2a,0xdc,0x00,0x01,0x2b,0x78,
27153
+0x00,0x01,0x2b,0x88,0x00,0x01,0x2c,0x3c,0x00,0x01,0x2c,0x4c,
27154
+0x00,0x01,0x2c,0xac,0x00,0x01,0x2d,0x5c,0x00,0x01,0x2d,0x6c,
27155
+0x00,0x01,0x2e,0xf8,0x00,0x01,0x2f,0xb8,0x00,0x01,0x30,0x80,
27156
+0x00,0x01,0x30,0xbc,0x00,0x01,0x31,0xb0,0x00,0x01,0x32,0x58,
27157
+0x00,0x01,0x32,0x68,0x00,0x01,0x32,0x78,0x00,0x01,0x32,0x88,
27158
+0x00,0x01,0x33,0x08,0x00,0x01,0x33,0x18,0x00,0x01,0x33,0x28,
27159
+0x00,0x01,0x33,0x38,0x00,0x01,0x34,0x08,0x00,0x01,0x35,0x00,
27160
+0x00,0x01,0x35,0x10,0x00,0x01,0x35,0xa0,0x00,0x01,0x36,0x3c,
27161
+0x00,0x01,0x36,0xec,0x00,0x01,0x37,0xb0,0x00,0x01,0x38,0x50,
27162
+0x00,0x01,0x38,0x68,0x00,0x01,0x38,0xfc,0x00,0x01,0x39,0xbc,
27163
+0x00,0x01,0x3a,0x9c,0x00,0x01,0x3b,0x64,0x00,0x01,0x3b,0x74,
27164
+0x00,0x01,0x3c,0x4c,0x00,0x01,0x3c,0xf0,0x00,0x01,0x3d,0x54,
27165
+0x00,0x01,0x3e,0x08,0x00,0x01,0x3e,0x18,0x00,0x01,0x3f,0xa4,
27166
+0x00,0x01,0x40,0x58,0x00,0x01,0x41,0x24,0x00,0x01,0x41,0x58,
27167
+0x00,0x01,0x42,0x40,0x00,0x01,0x42,0xf0,0x00,0x01,0x43,0xc8,
27168
+0x00,0x01,0x44,0xa4,0x00,0x01,0x44,0xb4,0x00,0x01,0x45,0x3c,
27169
+0x00,0x01,0x45,0x4c,0x00,0x01,0x45,0x5c,0x00,0x01,0x45,0xc8,
27170
+0x00,0x01,0x45,0xd8,0x00,0x01,0x46,0xf8,0x00,0x01,0x47,0x08,
27171
+0x00,0x01,0x47,0xa0,0x00,0x01,0x48,0x54,0x00,0x01,0x49,0x08,
27172
+0x00,0x01,0x49,0xd0,0x00,0x01,0x4a,0x78,0x00,0x01,0x4b,0x50,
27173
+0x00,0x01,0x4b,0xec,0x00,0x01,0x4c,0x98,0x00,0x01,0x4d,0x6c,
27174
+0x00,0x01,0x4e,0x8c,0x00,0x01,0x4e,0xa4,0x00,0x01,0x4f,0x44,
27175
+0x00,0x01,0x4f,0xb4,0x00,0x01,0x4f,0xcc,0x00,0x01,0x50,0x7c,
27176
+0x00,0x01,0x50,0x8c,0x00,0x01,0x50,0x9c,0x00,0x01,0x51,0x00,
27177
+0x00,0x01,0x51,0x10,0x00,0x01,0x51,0xdc,0x00,0x01,0x52,0xb4,
27178
+0x00,0x01,0x53,0x8c,0x00,0x01,0x53,0xa4,0x00,0x01,0x53,0xbc,
27179
+0x00,0x01,0x53,0xd4,0x00,0x01,0x54,0x94,0x00,0x01,0x55,0x10,
27180
+0x00,0x01,0x55,0x7c,0x00,0x01,0x56,0x0c,0x00,0x01,0x56,0x90,
27181
+0x00,0x01,0x57,0x1c,0x00,0x01,0x57,0xa8,0x00,0x01,0x58,0x50,
27182
+0x00,0x01,0x58,0xf4,0x00,0x01,0x59,0x68,0x00,0x01,0x59,0xd8,
27183
+0x00,0x01,0x59,0xe8,0x00,0x01,0x5a,0x44,0x00,0x01,0x5a,0x94,
27184
+0x00,0x01,0x5a,0xe4,0x00,0x01,0x5a,0xfc,0x00,0x01,0x5b,0x14,
27185
+0x00,0x01,0x5b,0x7c,0x00,0x01,0x5b,0xd8,0x00,0x01,0x5c,0x3c,
27186
+0x00,0x01,0x5c,0xa0,0x00,0x01,0x5c,0xe8,0x00,0x01,0x5d,0x30,
27187
+0x00,0x01,0x5d,0xb8,0x00,0x01,0x5e,0x30,0x00,0x01,0x5e,0xc4,
27188
+0x00,0x01,0x5f,0x58,0x00,0x01,0x5f,0x70,0x00,0x01,0x5f,0x88,
27189
+0x00,0x01,0x5f,0xec,0x00,0x01,0x60,0x54,0x00,0x01,0x60,0xc0,
27190
+0x00,0x01,0x61,0x2c,0x00,0x01,0x61,0x90,0x00,0x01,0x61,0xf4,
27191
+0x00,0x01,0x62,0x54,0x00,0x01,0x62,0xb0,0x00,0x01,0x63,0x08,
27192
+0x00,0x01,0x63,0x60,0x00,0x01,0x63,0xf4,0x00,0x01,0x64,0x7c,
27193
+0x00,0x01,0x64,0x94,0x00,0x01,0x64,0xac,0x00,0x01,0x64,0xf0,
27194
+0x00,0x01,0x65,0x34,0x00,0x01,0x65,0x44,0x00,0x01,0x65,0x90,
27195
+0x00,0x01,0x65,0xf0,0x00,0x01,0x66,0x50,0x00,0x01,0x66,0xc0,
27196
+0x00,0x01,0x67,0x2c,0x00,0x01,0x67,0x84,0x00,0x01,0x67,0xd8,
27197
+0x00,0x01,0x68,0x38,0x00,0x01,0x68,0x9c,0x00,0x01,0x68,0xf0,
27198
+0x00,0x01,0x69,0x00,0x00,0x01,0x69,0x10,0x00,0x01,0x69,0x28,
27199
+0x00,0x01,0x69,0x40,0x00,0x01,0x69,0xd4,0x00,0x01,0x6a,0x5c,
27200
+0x00,0x01,0x6a,0xcc,0x00,0x01,0x6b,0x3c,0x00,0x01,0x6b,0xa0,
27201
+0x00,0x01,0x6c,0x04,0x00,0x01,0x6c,0x34,0x00,0x01,0x6c,0x4c,
27202
+0x00,0x01,0x6c,0x64,0x00,0x01,0x6c,0x7c,0x00,0x01,0x6c,0x94,
27203
+0x00,0x01,0x6c,0xa4,0x00,0x01,0x6c,0xb4,0x00,0x01,0x6c,0xcc,
27204
+0x00,0x01,0x6c,0xe4,0x00,0x01,0x6c,0xf4,0x00,0x01,0x6d,0x04,
27205
+0x00,0x01,0x6d,0x1c,0x00,0x01,0x6d,0x34,0x00,0x01,0x6d,0x4c,
27206
+0x00,0x01,0x6d,0x64,0x00,0x01,0x6d,0x7c,0x00,0x01,0x6d,0x94,
27207
+0x00,0x01,0x6d,0xa4,0x00,0x01,0x6d,0xb4,0x00,0x01,0x6d,0xcc,
27208
+0x00,0x01,0x6d,0xe4,0x00,0x01,0x6d,0xfc,0x00,0x01,0x6e,0x14,
27209
+0x00,0x01,0x6e,0x2c,0x00,0x01,0x6e,0x44,0x00,0x01,0x6e,0x54,
27210
+0x00,0x01,0x6e,0x64,0x00,0x01,0x6e,0x7c,0x00,0x01,0x6e,0x94,
27211
+0x00,0x01,0x6e,0xac,0x00,0x01,0x6e,0xc4,0x00,0x01,0x6e,0xdc,
27212
+0x00,0x01,0x6e,0xf4,0x00,0x01,0x6f,0x0c,0x00,0x01,0x6f,0x24,
27213
+0x00,0x01,0x6f,0x3c,0x00,0x01,0x6f,0x54,0x00,0x01,0x6f,0x6c,
27214
+0x00,0x01,0x6f,0x84,0x00,0x01,0x6f,0xc0,0x00,0x01,0x6f,0xfc,
27215
+0x00,0x01,0x70,0x14,0x00,0x01,0x70,0x2c,0x00,0x01,0x70,0x3c,
27216
+0x00,0x01,0x70,0xac,0x00,0x01,0x71,0x28,0x00,0x01,0x71,0xb0,
27217
+0x00,0x01,0x72,0x4c,0x00,0x01,0x72,0xf4,0x00,0x01,0x73,0x04,
27218
+0x00,0x01,0x73,0x14,0x00,0x01,0x73,0x24,0x00,0x01,0x73,0x34,
27219
+0x00,0x01,0x73,0xf0,0x00,0x01,0x74,0x74,0x00,0x01,0x75,0x04,
27220
+0x00,0x01,0x75,0x7c,0x00,0x01,0x75,0xf8,0x00,0x01,0x76,0xa4,
27221
+0x00,0x01,0x77,0x10,0x00,0x01,0x77,0x80,0x00,0x01,0x78,0x48,
27222
+0x00,0x01,0x78,0xe0,0x00,0x01,0x79,0x48,0x00,0x01,0x79,0x8c,
27223
+0x00,0x01,0x7a,0x0c,0x00,0x01,0x7a,0xb4,0x00,0x01,0x7b,0x20,
27224
+0x00,0x01,0x7b,0x7c,0x00,0x01,0x7c,0x6c,0x00,0x01,0x7c,0xe8,
27225
+0x00,0x01,0x7d,0x9c,0x00,0x01,0x7e,0x18,0x00,0x01,0x7e,0xd0,
27226
+0x00,0x01,0x7f,0x4c,0x00,0x01,0x7f,0xf4,0x00,0x01,0x80,0x4c,
27227
+0x00,0x01,0x80,0xd8,0x00,0x01,0x81,0x50,0x00,0x01,0x82,0x24,
27228
+0x00,0x01,0x82,0xa8,0x00,0x01,0x83,0x00,0x00,0x01,0x83,0x8c,
27229
+0x00,0x01,0x84,0x3c,0x00,0x01,0x84,0x9c,0x00,0x01,0x85,0x78,
27230
+0x00,0x01,0x85,0xcc,0x00,0x01,0x86,0x68,0x00,0x01,0x87,0x20,
27231
+0x00,0x01,0x87,0x98,0x00,0x01,0x88,0x44,0x00,0x01,0x88,0x54,
27232
+0x00,0x01,0x88,0x7c,0x00,0x01,0x88,0x98,0x00,0x01,0x88,0xe0,
27233
+0x00,0x01,0x89,0x00,0x00,0x01,0x89,0x78,0x00,0x01,0x89,0x98,
27234
+0x00,0x01,0x8a,0x1c,0x00,0x01,0x8a,0x7c,0x00,0x01,0x8a,0xf8,
27235
+0x00,0x01,0x8b,0x60,0x00,0x01,0x8b,0xbc,0x00,0x01,0x8c,0x30,
27236
+0x00,0x01,0x8c,0x64,0x00,0x01,0x8c,0xc4,0x00,0x01,0x8d,0x7c,
27237
+0x00,0x01,0x8d,0xf0,0x00,0x01,0x8e,0x50,0x00,0x01,0x8e,0x7c,
27238
+0x00,0x01,0x8f,0x08,0x00,0x01,0x8f,0xa0,0x00,0x01,0x8f,0xfc,
27239
+0x00,0x01,0x90,0x58,0x00,0x01,0x91,0x24,0x00,0x01,0x91,0x84,
27240
+0x00,0x01,0x92,0x30,0x00,0x01,0x92,0xcc,0x00,0x01,0x93,0x04,
27241
+0x00,0x01,0x93,0xb4,0x00,0x01,0x94,0x40,0x00,0x01,0x94,0x9c,
27242
+0x00,0x01,0x95,0x2c,0x00,0x01,0x95,0xb8,0x00,0x01,0x96,0x8c,
27243
+0x00,0x01,0x97,0x04,0x00,0x01,0x97,0x5c,0x00,0x01,0x97,0xb8,
27244
+0x00,0x01,0x98,0x4c,0x00,0x01,0x98,0xa8,0x00,0x01,0x99,0x34,
27245
+0x00,0x01,0x99,0x5c,0x00,0x01,0x99,0xf8,0x00,0x01,0x9a,0x70,
27246
+0x00,0x01,0x9a,0xcc,0x00,0x01,0x9b,0x8c,0x00,0x01,0x9b,0xe8,
27247
+0x00,0x01,0x9c,0x50,0x00,0x01,0x9c,0x84,0x00,0x01,0x9d,0x30,
27248
+0x00,0x01,0x9d,0xd4,0x00,0x01,0x9e,0x50,0x00,0x01,0x9e,0xb8,
27249
+0x00,0x01,0x9f,0x74,0x00,0x01,0x9f,0xb8,0x00,0x01,0xa0,0x28,
27250
+0x00,0x01,0xa0,0xcc,0x00,0x01,0xa1,0x70,0x00,0x01,0xa1,0xc0,
27251
+0x00,0x01,0xa2,0x44,0x00,0x01,0xa2,0xdc,0x00,0x01,0xa3,0xa8,
27252
+0x00,0x01,0xa4,0x24,0x00,0x01,0xa5,0x08,0x00,0x01,0xa5,0x98,
27253
+0x00,0x01,0xa6,0x14,0x00,0x01,0xa6,0xa8,0x00,0x01,0xa7,0x14,
27254
+0x00,0x01,0xa7,0xa8,0x00,0x01,0xa8,0x80,0x00,0x01,0xa9,0x20,
27255
+0x00,0x01,0xa9,0xb8,0x00,0x01,0xaa,0x20,0x00,0x01,0xaa,0x80,
27256
+0x00,0x01,0xab,0x10,0x00,0x01,0xab,0x74,0x00,0x01,0xac,0x40,
27257
+0x00,0x01,0xac,0xec,0x00,0x01,0xad,0x88,0x00,0x01,0xae,0x34,
27258
+0x00,0x01,0xae,0xa4,0x00,0x01,0xaf,0x58,0x00,0x01,0xaf,0xd0,
27259
+0x00,0x01,0xb0,0x30,0x00,0x01,0xb0,0xe0,0x00,0x01,0xb1,0x38,
27260
+0x00,0x01,0xb1,0x90,0x00,0x01,0xb2,0x5c,0x00,0x01,0xb2,0xe8,
27261
+0x00,0x01,0xb3,0x98,0x00,0x01,0xb4,0x6c,0x00,0x01,0xb5,0x80,
27262
+0x00,0x01,0xb6,0x28,0x00,0x01,0xb7,0x0c,0x00,0x01,0xb8,0x10,
27263
+0x00,0x01,0xb8,0xdc,0x00,0x01,0xb9,0x54,0x00,0x01,0xba,0x1c,
27264
+0x00,0x01,0xbb,0x78,0x00,0x01,0xbc,0x3c,0x00,0x01,0xbd,0x04,
27265
+0x00,0x01,0xbd,0xd8,0x00,0x01,0xbe,0xa0,0x00,0x01,0xbf,0x7c,
27266
+0x00,0x01,0xc0,0x7c,0x00,0x01,0xc1,0x28,0x00,0x01,0xc2,0x88,
27267
+0x00,0x01,0xc3,0x90,0x00,0x01,0xc4,0xc4,0x00,0x01,0xc5,0x80,
27268
+0x00,0x01,0xc6,0x84,0x00,0x01,0xc7,0x2c,0x00,0x01,0xc8,0x2c,
27269
+0x00,0x01,0xc8,0xe0,0x00,0x01,0xc9,0xc8,0x00,0x01,0xca,0x60,
27270
+0x00,0x01,0xcb,0xa8,0x00,0x01,0xcd,0x08,0x00,0x01,0xcd,0xcc,
27271
+0x00,0x01,0xcf,0x60,0x00,0x01,0xd0,0x78,0x00,0x01,0xd1,0x98,
27272
+0x00,0x01,0xd2,0x58,0x00,0x01,0xd3,0x40,0x00,0x01,0xd4,0x34,
27273
+0x00,0x01,0xd5,0x14,0x00,0x01,0xd6,0x20,0x00,0x01,0xd6,0xec,
27274
+0x00,0x01,0xd7,0x90,0x00,0x01,0xd8,0x58,0x00,0x01,0xd9,0x04,
27275
+0x00,0x01,0xd9,0xac,0x00,0x01,0xda,0x3c,0x00,0x01,0xda,0x88,
27276
+0x00,0x01,0xda,0xf8,0x00,0x01,0xdb,0xb4,0x00,0x01,0xdc,0x30,
27277
+0x00,0x01,0xdc,0x8c,0x00,0x01,0xdc,0xe0,0x00,0x01,0xdd,0x3c,
27278
+0x00,0x01,0xdd,0x88,0x00,0x01,0xde,0x1c,0x00,0x01,0xde,0x64,
27279
+0x00,0x01,0xde,0xa8,0x00,0x01,0xde,0xb8,0x00,0x01,0xdf,0x04,
27280
+0x00,0x01,0xdf,0x14,0x00,0x01,0xdf,0x5c,0x00,0x01,0xdf,0x6c,
27281
+0x00,0x01,0xdf,0xc8,0x00,0x01,0xe0,0x18,0x00,0x01,0xe0,0x70,
27282
+0x00,0x01,0xe0,0xfc,0x00,0x01,0xe1,0x98,0x00,0x01,0xe2,0x04,
27283
+0x00,0x01,0xe2,0x38,0x00,0x01,0xe2,0x6c,0x00,0x01,0xe2,0xbc,
27284
+0x00,0x01,0xe3,0x3c,0x00,0x01,0xe3,0xbc,0x00,0x01,0xe3,0xcc,
27285
+0x00,0x01,0xe4,0x18,0x00,0x01,0xe4,0x68,0x00,0x01,0xe4,0xf8,
27286
+0x00,0x01,0xe5,0x80,0x00,0x01,0xe5,0x90,0x00,0x01,0xe5,0xa0,
27287
+0x00,0x01,0xe5,0xb0,0x00,0x01,0xe6,0x20,0x00,0x01,0xe6,0x80,
27288
+0x00,0x01,0xe6,0xf0,0x00,0x01,0xe7,0x00,0x00,0x01,0xe7,0x10,
27289
+0x00,0x01,0xe7,0x20,0x00,0x01,0xe7,0x30,0x00,0x01,0xe7,0xb4,
27290
+0x00,0x01,0xe7,0xc4,0x00,0x01,0xe8,0x10,0x00,0x01,0xe8,0x80,
27291
+0x00,0x01,0xe8,0xec,0x00,0x01,0xe9,0x74,0x00,0x01,0xe9,0xc0,
27292
+0x00,0x01,0xea,0x0c,0x00,0x01,0xea,0x58,0x00,0x01,0xea,0xb8,
27293
+0x00,0x01,0xeb,0x0c,0x00,0x01,0xeb,0x38,0x00,0x01,0xeb,0x7c,
27294
+0x00,0x01,0xeb,0xd0,0x00,0x01,0xec,0x00,0x00,0x01,0xec,0x58,
27295
+0x00,0x01,0xec,0x9c,0x00,0x01,0xec,0xe4,0x00,0x01,0xed,0x4c,
27296
+0x00,0x01,0xed,0xb0,0x00,0x01,0xee,0x00,0x00,0x01,0xee,0x70,
27297
+0x00,0x01,0xee,0xa8,0x00,0x01,0xee,0xf4,0x00,0x01,0xef,0x40,
27298
+0x00,0x01,0xef,0xb4,0x00,0x01,0xf0,0x30,0x00,0x01,0xf0,0xa8,
27299
+0x00,0x01,0xf1,0x5c,0x00,0x01,0xf1,0xc0,0x00,0x01,0xf2,0x24,
27300
+0x00,0x01,0xf2,0x80,0x00,0x01,0xf2,0xec,0x00,0x01,0xf3,0x7c,
27301
+0x00,0x01,0xf4,0x0c,0x00,0x01,0xf4,0x8c,0x00,0x01,0xf4,0xd0,
27302
+0x00,0x01,0xf5,0x24,0x00,0x01,0xf5,0xac,0x00,0x01,0xf6,0x1c,
27303
+0x00,0x01,0xf6,0x60,0x00,0x01,0xf6,0xc0,0x00,0x01,0xf6,0xf0,
27304
+0x00,0x01,0xf7,0x20,0x00,0x01,0xf7,0x88,0x00,0x01,0xf7,0xd0,
27305
+0x00,0x01,0xf8,0x20,0x00,0x01,0xf8,0x70,0x00,0x01,0xf8,0xf8,
27306
+0x00,0x01,0xf9,0x30,0x00,0x01,0xf9,0x98,0x00,0x01,0xfa,0x20,
27307
+0x00,0x01,0xfa,0x84,0x00,0x01,0xfb,0x0c,0x00,0x01,0xfb,0xb4,
27308
+0x00,0x01,0xfc,0x5c,0x00,0x01,0xfc,0x70,0x00,0x01,0xfc,0x84,
27309
+0x00,0x01,0xfc,0x98,0x00,0x01,0xfc,0xac,0x00,0x01,0xfc,0xc0,
27310
+0x00,0x01,0xfc,0xd4,0x00,0x01,0xfd,0x3c,0x00,0x01,0xfd,0x50,
27311
+0x00,0x01,0xfd,0x64,0x00,0x01,0xfd,0xf8,0x00,0x01,0xfe,0x7c,
27312
+0x00,0x01,0xfe,0x8c,0x00,0x01,0xfe,0xcc,0x00,0x01,0xff,0x14,
27313
+0x00,0x01,0xff,0xac,0x00,0x02,0x00,0x18,0x00,0x02,0x00,0xc0,
27314
+0x00,0x02,0x01,0x10,0x00,0x02,0x01,0x84,0x00,0x02,0x01,0xd8,
27315
+0x00,0x02,0x02,0x64,0x00,0x02,0x02,0xf4,0x00,0x02,0x03,0x84,
27316
+0x00,0x02,0x03,0xd8,0x00,0x02,0x04,0x30,0x00,0x02,0x04,0xa8,
27317
+0x00,0x02,0x05,0x04,0x00,0x02,0x05,0x58,0x00,0x02,0x05,0x8c,
27318
+0x00,0x02,0x05,0xb8,0x00,0x02,0x05,0xf4,0x00,0x02,0x06,0x6c,
27319
+0x00,0x02,0x06,0xb8,0x00,0x02,0x07,0x08,0x00,0x02,0x07,0x38,
27320
+0x00,0x02,0x07,0xf8,0x00,0x02,0x08,0x84,0x00,0x02,0x09,0x00,
27321
+0x00,0x02,0x09,0x84,0x00,0x02,0x09,0xcc,0x00,0x02,0x0a,0x38,
27322
+0x00,0x02,0x0a,0xc8,0x00,0x02,0x0b,0x6c,0x00,0x02,0x0b,0xe8,
27323
+0x00,0x02,0x0c,0x54,0x00,0x02,0x0c,0xc8,0x00,0x02,0x0d,0x4c,
27324
+0x00,0x02,0x0d,0x98,0x00,0x02,0x0e,0x08,0x00,0x02,0x0e,0x40,
27325
+0x00,0x02,0x0e,0x78,0x00,0x02,0x0e,0xdc,0x00,0x02,0x0f,0x3c,
27326
+0x00,0x02,0x0f,0xa4,0x00,0x02,0x10,0x14,0x00,0x02,0x10,0x38,
27327
+0x00,0x02,0x10,0x5c,0x00,0x02,0x10,0x80,0x00,0x02,0x10,0xa4,
27328
+0x00,0x02,0x10,0xd4,0x00,0x02,0x11,0x08,0x00,0x02,0x11,0x20,
27329
+0x00,0x02,0x11,0x38,0x00,0x02,0x11,0x50,0x00,0x02,0x11,0x68,
27330
+0x00,0x02,0x11,0x80,0x00,0x02,0x11,0x98,0x00,0x02,0x11,0xb0,
27331
+0x00,0x02,0x11,0xc8,0x00,0x02,0x11,0xe0,0x00,0x02,0x11,0xf8,
27332
+0x00,0x02,0x12,0x10,0x00,0x02,0x12,0x28,0x00,0x02,0x12,0x40,
27333
+0x00,0x02,0x12,0x58,0x00,0x02,0x12,0x70,0x00,0x02,0x12,0x88,
27334
+0x00,0x02,0x12,0xa0,0x00,0x02,0x12,0xb8,0x00,0x02,0x12,0xd0,
27335
+0x00,0x02,0x12,0xe8,0x00,0x02,0x13,0x00,0x00,0x02,0x13,0x18,
27336
+0x00,0x02,0x13,0x30,0x00,0x02,0x13,0x48,0x00,0x02,0x13,0x60,
27337
+0x00,0x02,0x13,0x78,0x00,0x02,0x13,0x90,0x00,0x02,0x13,0xa8,
27338
+0x00,0x02,0x13,0xc0,0x00,0x02,0x13,0xd8,0x00,0x02,0x13,0xf0,
27339
+0x00,0x02,0x14,0x08,0x00,0x02,0x14,0x20,0x00,0x02,0x14,0x38,
27340
+0x00,0x02,0x14,0x50,0x00,0x02,0x14,0x68,0x00,0x02,0x14,0x80,
27341
+0x00,0x02,0x14,0x98,0x00,0x02,0x14,0xb0,0x00,0x02,0x14,0xc8,
27342
+0x00,0x02,0x14,0xe0,0x00,0x02,0x14,0xf8,0x00,0x02,0x15,0x10,
27343
+0x00,0x02,0x15,0x28,0x00,0x02,0x15,0x40,0x00,0x02,0x15,0x58,
27344
+0x00,0x02,0x15,0x70,0x00,0x02,0x15,0x88,0x00,0x02,0x15,0xa0,
27345
+0x00,0x02,0x15,0xb8,0x00,0x02,0x15,0xd0,0x00,0x02,0x15,0xe8,
27346
+0x00,0x02,0x16,0x00,0x00,0x02,0x16,0x18,0x00,0x02,0x16,0x30,
27347
+0x00,0x02,0x16,0x48,0x00,0x02,0x16,0x60,0x00,0x02,0x16,0x78,
27348
+0x00,0x02,0x16,0x90,0x00,0x02,0x16,0xa8,0x00,0x02,0x16,0xc0,
27349
+0x00,0x02,0x16,0xd8,0x00,0x02,0x16,0xf0,0x00,0x02,0x17,0x08,
27350
+0x00,0x02,0x17,0x20,0x00,0x02,0x17,0x38,0x00,0x02,0x17,0x50,
27351
+0x00,0x02,0x17,0x68,0x00,0x02,0x17,0x80,0x00,0x02,0x17,0x98,
27352
+0x00,0x02,0x17,0xb0,0x00,0x02,0x17,0xc8,0x00,0x02,0x17,0xe0,
27353
+0x00,0x02,0x17,0xf8,0x00,0x02,0x18,0x10,0x00,0x02,0x18,0x28,
27354
+0x00,0x02,0x18,0x40,0x00,0x02,0x18,0x58,0x00,0x02,0x18,0x70,
27355
+0x00,0x02,0x18,0x90,0x00,0x02,0x18,0xa8,0x00,0x02,0x18,0xc0,
27356
+0x00,0x02,0x18,0xd8,0x00,0x02,0x18,0xf0,0x00,0x02,0x19,0x08,
27357
+0x00,0x02,0x19,0x20,0x00,0x02,0x19,0x38,0x00,0x02,0x19,0x50,
27358
+0x00,0x02,0x19,0x68,0x00,0x02,0x19,0x80,0x00,0x02,0x19,0x98,
27359
+0x00,0x02,0x19,0xb0,0x00,0x02,0x19,0xc8,0x00,0x02,0x19,0xe0,
27360
+0x00,0x02,0x19,0xf8,0x00,0x02,0x1a,0x10,0x00,0x02,0x1a,0x28,
27361
+0x00,0x02,0x1a,0x40,0x00,0x02,0x1a,0x58,0x00,0x02,0x1a,0x70,
27362
+0x00,0x02,0x1a,0x88,0x00,0x02,0x1a,0xa0,0x00,0x02,0x1a,0xb8,
27363
+0x00,0x02,0x1a,0xd0,0x00,0x02,0x1a,0xe8,0x00,0x02,0x1b,0x00,
27364
+0x00,0x02,0x1b,0x18,0x00,0x02,0x1b,0x30,0x00,0x02,0x1b,0x48,
27365
+0x00,0x02,0x1b,0x60,0x00,0x02,0x1b,0x78,0x00,0x02,0x1b,0x90,
27366
+0x00,0x02,0x1b,0xa8,0x00,0x02,0x1b,0xc0,0x00,0x02,0x1b,0xd8,
27367
+0x00,0x02,0x1b,0xf0,0x00,0x02,0x1c,0x08,0x00,0x02,0x1c,0x20,
27368
+0x00,0x02,0x1c,0x38,0x00,0x02,0x1c,0x50,0x00,0x02,0x1c,0x68,
27369
+0x00,0x02,0x1c,0x80,0x00,0x02,0x1c,0x98,0x00,0x02,0x1c,0xb0,
27370
+0x00,0x02,0x1c,0xc8,0x00,0x02,0x1c,0xe0,0x00,0x02,0x1c,0xf8,
27371
+0x00,0x02,0x1d,0x10,0x00,0x02,0x1d,0x28,0x00,0x02,0x1d,0x40,
27372
+0x00,0x02,0x1d,0x58,0x00,0x02,0x1d,0x70,0x00,0x02,0x1d,0x88,
27373
+0x00,0x02,0x1d,0xa0,0x00,0x02,0x1d,0xb8,0x00,0x02,0x1d,0xd0,
27374
+0x00,0x02,0x1d,0xe8,0x00,0x02,0x1e,0x00,0x00,0x02,0x1e,0x18,
27375
+0x00,0x02,0x1e,0x30,0x00,0x02,0x1e,0x48,0x00,0x02,0x1e,0x60,
27376
+0x00,0x02,0x1e,0x78,0x00,0x02,0x1e,0x90,0x00,0x02,0x1e,0xa8,
27377
+0x00,0x02,0x1e,0xc0,0x00,0x02,0x1e,0xd8,0x00,0x02,0x1e,0xf0,
27378
+0x00,0x02,0x1f,0x08,0x00,0x02,0x1f,0x20,0x00,0x02,0x1f,0x38,
27379
+0x00,0x02,0x1f,0x50,0x00,0x02,0x1f,0x68,0x00,0x02,0x1f,0x80,
27380
+0x00,0x02,0x1f,0x98,0x00,0x02,0x1f,0xb0,0x00,0x02,0x20,0x14,
27381
+0x00,0x02,0x20,0x74,0x00,0x02,0x21,0x10,0x00,0x02,0x21,0x20,
27382
+0x00,0x02,0x21,0x38,0x00,0x02,0x21,0x50,0x00,0x02,0x21,0x68,
27383
+0x00,0x02,0x21,0x80,0x00,0x02,0x21,0x98,0x00,0x02,0x21,0xb0,
27384
+0x00,0x02,0x21,0xc8,0x00,0x02,0x21,0xe0,0x00,0x02,0x21,0xf8,
27385
+0x00,0x02,0x22,0x10,0x00,0x02,0x22,0x28,0x00,0x02,0x22,0x40,
27386
+0x00,0x02,0x22,0x60,0x00,0x02,0x22,0x80,0x00,0x02,0x22,0x98,
27387
+0x00,0x02,0x22,0xb0,0x00,0x02,0x22,0xc8,0x00,0x02,0x22,0xe0,
27388
+0x00,0x02,0x22,0xf8,0x00,0x02,0x23,0x10,0x00,0x02,0x23,0x28,
27389
+0x00,0x02,0x23,0x40,0x00,0x02,0x23,0x60,0x00,0x02,0x23,0x80,
27390
+0x00,0x02,0x23,0x98,0x00,0x02,0x23,0xb0,0x00,0x02,0x23,0xc8,
27391
+0x00,0x02,0x23,0xe0,0x00,0x02,0x23,0xf8,0x00,0x02,0x24,0x10,
27392
+0x00,0x02,0x24,0x28,0x00,0x02,0x24,0x40,0x00,0x02,0x24,0x58,
27393
+0x00,0x02,0x24,0x70,0x00,0x02,0x24,0x88,0x00,0x02,0x24,0xa0,
27394
+0x00,0x02,0x24,0xb8,0x00,0x02,0x24,0xd0,0x00,0x02,0x24,0xf0,
27395
+0x00,0x02,0x25,0x10,0x00,0x02,0x25,0x28,0x00,0x02,0x25,0x40,
27396
+0x00,0x02,0x25,0x58,0x00,0x02,0x25,0x70,0x00,0x02,0x25,0x88,
27397
+0x00,0x02,0x25,0xa0,0x00,0x02,0x25,0xb8,0x00,0x02,0x25,0xd0,
27398
+0x00,0x02,0x25,0xe8,0x00,0x02,0x26,0x00,0x00,0x02,0x26,0x18,
27399
+0x00,0x02,0x26,0x30,0x00,0x02,0x26,0x48,0x00,0x02,0x26,0x60,
27400
+0x00,0x02,0x26,0x78,0x00,0x02,0x26,0x90,0x00,0x02,0x26,0xb0,
27401
+0x00,0x02,0x26,0xd0,0x00,0x02,0x26,0xe8,0x00,0x02,0x27,0x00,
27402
+0x00,0x02,0x27,0x18,0x00,0x02,0x27,0x30,0x00,0x02,0x27,0x48,
27403
+0x00,0x02,0x27,0x60,0x00,0x02,0x27,0x78,0x00,0x02,0x27,0x90,
27404
+0x00,0x02,0x27,0xa8,0x00,0x02,0x27,0xc0,0x00,0x02,0x27,0xd8,
27405
+0x00,0x02,0x27,0xf0,0x00,0x02,0x28,0x08,0x00,0x02,0x28,0x20,
27406
+0x00,0x02,0x28,0x38,0x00,0x02,0x28,0x50,0x00,0x02,0x28,0x68,
27407
+0x00,0x02,0x28,0x80,0x00,0x02,0x28,0x98,0x00,0x02,0x28,0xb0,
27408
+0x00,0x02,0x28,0xc8,0x00,0x02,0x28,0xe0,0x00,0x02,0x28,0xf8,
27409
+0x00,0x02,0x29,0x10,0x00,0x02,0x29,0x28,0x00,0x02,0x29,0x40,
27410
+0x00,0x02,0x29,0x58,0x00,0x02,0x29,0x70,0x00,0x02,0x29,0x88,
27411
+0x00,0x02,0x29,0xa0,0x00,0x02,0x29,0xb8,0x00,0x02,0x29,0xd0,
27412
+0x00,0x02,0x2a,0x10,0x00,0x02,0x2a,0x68,0x00,0x02,0x2a,0x80,
27413
+0x00,0x02,0x2a,0x98,0x00,0x02,0x2a,0xb0,0x00,0x02,0x2a,0xc8,
27414
+0x00,0x02,0x2a,0xe0,0x00,0x02,0x2a,0xf8,0x00,0x02,0x2b,0x10,
27415
+0x00,0x02,0x2b,0x28,0x00,0x02,0x2b,0x40,0x00,0x02,0x2b,0x58,
27416
+0x00,0x02,0x2b,0x74,0x00,0x02,0x2b,0x8c,0x00,0x02,0x2b,0xa4,
27417
+0x00,0x02,0x2b,0xbc,0x00,0x02,0x2b,0xd4,0x00,0x02,0x2b,0xec,
27418
+0x00,0x02,0x2c,0x04,0x00,0x02,0x2c,0x1c,0x00,0x02,0x2c,0x34,
27419
+0x00,0x02,0x2c,0x4c,0x00,0x02,0x2c,0x64,0x00,0x02,0x2c,0x7c,
27420
+0x00,0x02,0x2c,0x98,0x00,0x02,0x2c,0xb4,0x00,0x02,0x2c,0xd0,
27421
+0x00,0x02,0x2c,0xe8,0x00,0x02,0x2d,0x04,0x00,0x02,0x2d,0x1c,
27422
+0x00,0x02,0x2d,0x34,0x00,0x02,0x2d,0x4c,0x00,0x02,0x2d,0x64,
27423
+0x00,0x02,0x2d,0x7c,0x00,0x02,0x2d,0x94,0x00,0x02,0x2d,0xac,
27424
+0x00,0x02,0x2d,0xc4,0x00,0x02,0x2d,0xdc,0x00,0x02,0x2d,0xf8,
27425
+0x00,0x02,0x2e,0x14,0x00,0x02,0x2e,0x30,0x00,0x02,0x2e,0x48,
27426
+0x00,0x02,0x2e,0x64,0x00,0x02,0x2e,0x7c,0x00,0x02,0x2e,0x98,
27427
+0x00,0x02,0x2e,0xb4,0x00,0x02,0x2e,0xcc,0x00,0x02,0x2e,0xe4,
27428
+0x00,0x02,0x2e,0xfc,0x00,0x02,0x2f,0x14,0x00,0x02,0x2f,0x2c,
27429
+0x00,0x02,0x2f,0x44,0x00,0x02,0x2f,0x5c,0x00,0x02,0x2f,0x74,
27430
+0x00,0x02,0x2f,0x90,0x00,0x02,0x2f,0xac,0x00,0x02,0x2f,0xc8,
27431
+0x00,0x02,0x2f,0xe0,0x00,0x02,0x2f,0xfc,0x00,0x02,0x30,0x14,
27432
+0x00,0x02,0x30,0x30,0x00,0x02,0x30,0x4c,0x00,0x02,0x30,0x64,
27433
+0x00,0x02,0x30,0x7c,0x00,0x02,0x30,0x94,0x00,0x02,0x30,0xac,
27434
+0x00,0x02,0x30,0xc4,0x00,0x02,0x30,0xdc,0x00,0x02,0x30,0xf4,
27435
+0x00,0x02,0x31,0x0c,0x00,0x02,0x31,0x28,0x00,0x02,0x31,0x40,
27436
+0x00,0x02,0x31,0x5c,0x00,0x02,0x31,0x74,0x00,0x02,0x31,0x8c,
27437
+0x00,0x02,0x31,0xa4,0x00,0x02,0x31,0xbc,0x00,0x02,0x31,0xd4,
27438
+0x00,0x02,0x31,0xec,0x00,0x02,0x32,0x04,0x00,0x02,0x32,0x1c,
27439
+0x00,0x02,0x32,0x34,0x00,0x02,0x32,0x50,0x00,0x02,0x32,0x68,
27440
+0x00,0x02,0x32,0x80,0x00,0x02,0x32,0x9c,0x00,0x02,0x32,0xb4,
27441
+0x00,0x02,0x32,0xcc,0x00,0x02,0x32,0xe4,0x00,0x02,0x32,0xfc,
27442
+0x00,0x02,0x33,0x14,0x00,0x02,0x33,0x2c,0x00,0x02,0x33,0x44,
27443
+0x00,0x02,0x33,0x5c,0x00,0x02,0x33,0x74,0x00,0x02,0x33,0x8c,
27444
+0x00,0x02,0x33,0xa8,0x00,0x02,0x33,0xc0,0x00,0x02,0x33,0xdc,
27445
+0x00,0x02,0x33,0xf4,0x00,0x02,0x34,0x10,0x00,0x02,0x34,0x2c,
27446
+0x00,0x02,0x34,0x44,0x00,0x02,0x34,0x54,0x00,0x02,0x34,0x6c,
27447
+0x00,0x02,0x34,0x7c,0x00,0x02,0x34,0x94,0x00,0x02,0x34,0xa4,
27448
+0x00,0x02,0x34,0xbc,0x00,0x02,0x34,0xcc,0x00,0x02,0x34,0xe4,
27449
+0x00,0x02,0x34,0xf4,0x00,0x02,0x35,0x0c,0x00,0x02,0x35,0x1c,
27450
+0x00,0x02,0x35,0x34,0x00,0x02,0x35,0x44,0x00,0x02,0x35,0x5c,
27451
+0x00,0x02,0x35,0x74,0x00,0x02,0x35,0x8c,0x00,0x02,0x35,0xa4,
27452
+0x00,0x02,0x35,0xbc,0x00,0x02,0x35,0xd4,0x00,0x02,0x35,0xec,
27453
+0x00,0x02,0x36,0x04,0x00,0x02,0x36,0x1c,0x00,0x02,0x36,0x34,
27454
+0x00,0x02,0x36,0x4c,0x00,0x02,0x36,0x64,0x00,0x02,0x36,0x7c,
27455
+0x00,0x02,0x36,0x94,0x00,0x02,0x36,0xac,0x00,0x02,0x36,0xc4,
27456
+0x00,0x02,0x36,0xdc,0x00,0x02,0x36,0xf4,0x00,0x02,0x37,0x0c,
27457
+0x00,0x02,0x37,0x24,0x00,0x02,0x37,0x3c,0x00,0x02,0x37,0x54,
27458
+0x00,0x02,0x37,0x6c,0x00,0x02,0x37,0x84,0x00,0x02,0x37,0x9c,
27459
+0x00,0x02,0x37,0xb4,0x00,0x02,0x37,0xcc,0x00,0x02,0x37,0xe4,
27460
+0x00,0x02,0x37,0xfc,0x00,0x02,0x38,0x14,0x00,0x02,0x38,0x2c,
27461
+0x00,0x02,0x38,0x44,0x00,0x02,0x38,0x5c,0x00,0x02,0x38,0x74,
27462
+0x00,0x02,0x38,0x8c,0x00,0x02,0x38,0xa4,0x00,0x02,0x38,0xbc,
27463
+0x00,0x02,0x38,0xd4,0x00,0x02,0x38,0xec,0x00,0x02,0x39,0x04,
27464
+0x00,0x02,0x39,0x1c,0x00,0x02,0x39,0x34,0x00,0x02,0x39,0x4c,
27465
+0x00,0x02,0x39,0x64,0x00,0x02,0x39,0x7c,0x00,0x02,0x39,0x94,
27466
+0x00,0x02,0x39,0xac,0x00,0x02,0x39,0xc4,0x00,0x02,0x39,0xdc,
27467
+0x00,0x02,0x39,0xf4,0x00,0x02,0x3a,0x0c,0x00,0x02,0x3a,0x24,
27468
+0x00,0x02,0x3a,0x3c,0x00,0x02,0x3a,0x54,0x00,0x02,0x3a,0x6c,
27469
+0x00,0x02,0x3a,0x84,0x00,0x02,0x3a,0x9c,0x00,0x02,0x3a,0xb4,
27470
+0x00,0x02,0x3a,0xc4,0x00,0x02,0x3a,0xdc,0x00,0x02,0x3a,0xec,
27471
+0x00,0x02,0x3a,0xfc,0x00,0x02,0x3b,0x44,0x00,0x02,0x3b,0x54,
27472
+0x00,0x02,0x3b,0x6c,0x00,0x02,0x3b,0x84,0x00,0x02,0x3b,0x9c,
27473
+0x00,0x02,0x3b,0xb4,0x00,0x02,0x3b,0xcc,0x00,0x02,0x3b,0xe4,
27474
+0x00,0x02,0x3c,0x00,0x00,0x02,0x3c,0x10,0x00,0x02,0x3c,0x2c,
27475
+0x00,0x02,0x3c,0x3c,0x00,0x02,0x3c,0x54,0x00,0x02,0x3c,0x70,
27476
+0x00,0x02,0x3c,0x88,0x00,0x02,0x3c,0xa0,0x00,0x02,0x3c,0xb8,
27477
+0x00,0x02,0x3c,0xd0,0x00,0x02,0x3c,0xe8,0x00,0x02,0x3c,0xf8,
27478
+0x00,0x02,0x3d,0x10,0x00,0x02,0x3d,0x28,0x00,0x02,0x3d,0x40,
27479
+0x00,0x02,0x3d,0x58,0x00,0x02,0x3d,0x74,0x00,0x02,0x3d,0x84,
27480
+0x00,0x02,0x3d,0xa0,0x00,0x02,0x3d,0xb8,0x00,0x02,0x3d,0xd0,
27481
+0x00,0x02,0x3d,0xe8,0x00,0x02,0x3e,0x00,0x00,0x02,0x3e,0x18,
27482
+0x00,0x02,0x3e,0x28,0x00,0x02,0x3e,0x40,0x00,0x02,0x3e,0x58,
27483
+0x00,0x02,0x3e,0x70,0x00,0x02,0x3e,0x88,0x00,0x02,0x3e,0xa0,
27484
+0x00,0x02,0x3e,0xb8,0x00,0x02,0x3e,0xd4,0x00,0x02,0x3e,0xe4,
27485
+0x00,0x02,0x3f,0x00,0x00,0x02,0x3f,0x18,0x00,0x02,0x3f,0x28,
27486
+0x00,0x02,0x3f,0x38,0x00,0x02,0x3f,0x50,0x00,0x02,0x3f,0x68,
27487
+0x00,0x02,0x3f,0x80,0x00,0x02,0x3f,0x98,0x00,0x02,0x3f,0xb0,
27488
+0x00,0x02,0x3f,0xcc,0x00,0x02,0x3f,0xdc,0x00,0x02,0x3f,0xf8,
27489
+0x00,0x02,0x40,0x08,0x00,0x02,0x40,0x20,0x00,0x02,0x40,0x30,
27490
+0x00,0x02,0x40,0x78,0x00,0x02,0x40,0x78,0x00,0x02,0x40,0x78,
27491
+0x00,0x02,0x40,0x78,0x00,0x02,0x40,0x78,0x00,0x02,0x40,0x78,
27492
+0x00,0x02,0x40,0x78,0x00,0x02,0x40,0x78,0x00,0x02,0x40,0x78,
27493
+0x00,0x02,0x40,0x78,0x00,0x02,0x40,0x78,0x00,0x02,0x40,0x78,
27494
+0x00,0x02,0x40,0x78,0x00,0x02,0x40,0x78,0x00,0x02,0x40,0x78,
27495
+0x00,0x02,0x40,0x78,0x00,0x02,0x40,0x78,0x00,0x02,0x40,0xa4,
27496
+0x00,0x02,0x40,0xb4,0x00,0x02,0x40,0xdc,0x00,0x02,0x41,0x04,
27497
+0x00,0x02,0x41,0x2c,0x00,0x02,0x41,0x54,0x00,0x02,0x41,0x6c,
27498
+0x00,0x02,0x41,0x84,0x00,0x02,0x41,0xc8,0x00,0x02,0x42,0x0c,
27499
+0x00,0x02,0x42,0x50,0x00,0x02,0x42,0x78,0x00,0x02,0x42,0xec,
27500
+0x00,0x02,0x43,0x64,0x00,0x02,0x43,0xd8,0x00,0x02,0x44,0x1c,
27501
+0x00,0x02,0x44,0x8c,0x00,0x02,0x45,0x44,0x00,0x02,0x45,0x84,
27502
+0x00,0x02,0x45,0xa0,0x00,0x02,0x45,0xc8,0x00,0x02,0x46,0x10,
27503
+0x00,0x02,0x46,0xa4,0x00,0x02,0x46,0xa4,0x00,0x02,0x46,0xa4,
27504
+0x00,0x02,0x46,0xa4,0x00,0x02,0x46,0xa4,0x00,0x02,0x46,0xa4,
27505
+0x00,0x02,0x46,0xa4,0x00,0x02,0x48,0x00,0x00,0x02,0x49,0x14,
27506
+0x00,0x02,0x49,0x34,0x00,0x02,0x49,0x4c,0x00,0x02,0x49,0x6c,
27507
+0x00,0x02,0x49,0x88,0x00,0x02,0x49,0xa0,0x00,0x02,0x49,0xc0,
27508
+0x00,0x02,0x49,0xe4,0x00,0x02,0x4a,0x30,0x00,0x02,0x4a,0x80,
27509
+0x00,0x02,0x4a,0x9c,0x00,0x02,0x4b,0x1c,0x00,0x02,0x4b,0x30,
27510
+0x00,0x02,0x4b,0x54,0x00,0x02,0x4b,0x9c,0x00,0x02,0x4b,0xcc,
27511
+0x00,0x02,0x4b,0xfc,0x00,0x02,0x4c,0x14,0x00,0x02,0x4c,0x2c,
27512
+0x00,0x02,0x4c,0x48,0x00,0x02,0x4c,0x84,0x00,0x02,0x4c,0xb4,
27513
+0x00,0x02,0x4c,0xe4,0x00,0x02,0x4c,0xf8,0x00,0x02,0x4d,0x3c,
27514
+0x00,0x02,0x4d,0x58,0x00,0x02,0x4d,0x7c,0x00,0x02,0x4d,0xd8,
27515
+0x00,0x02,0x4e,0x00,0x00,0x02,0x4e,0x00,0x00,0x02,0x4e,0x00,
27516
+0x00,0x02,0x4e,0x00,0x00,0x02,0x4e,0x00,0x00,0x02,0x4e,0x00,
27517
+0x00,0x02,0x4e,0x00,0x00,0x02,0x4e,0x00,0x00,0x02,0x4e,0x00,
27518
+0x00,0x02,0x4e,0x00,0x00,0x02,0x4e,0x00,0x00,0x02,0x4e,0x00,
27519
+0x00,0x02,0x4e,0x00,0x00,0x02,0x4e,0x54,0x00,0x02,0x4e,0x94,
27520
+0x00,0x02,0x4f,0x28,0x00,0x02,0x4f,0x98,0x00,0x02,0x50,0x20,
27521
+0x00,0x02,0x50,0x4c,0x00,0x02,0x50,0xf0,0x00,0x02,0x51,0x78,
27522
+0x00,0x02,0x51,0xac,0x00,0x02,0x51,0xc8,0x00,0x02,0x51,0xf0,
27523
+0x00,0x02,0x52,0x28,0x00,0x02,0x52,0x5c,0x00,0x02,0x52,0xc0,
27524
+0x00,0x02,0x52,0xd4,0x00,0x02,0x52,0xe8,0x00,0x02,0x52,0xfc,
27525
+0x00,0x02,0x53,0x10,0x00,0x02,0x53,0x24,0x00,0x02,0x53,0x38,
27526
+0x00,0x02,0x53,0x4c,0x00,0x02,0x53,0x60,0x00,0x02,0x53,0x74,
27527
+0x00,0x02,0x53,0x88,0x00,0x02,0x53,0x9c,0x00,0x02,0x53,0xb0,
27528
+0x00,0x02,0x53,0xc4,0x00,0x02,0x53,0xd8,0x00,0x02,0x53,0xec,
27529
+0x00,0x02,0x54,0x00,0x00,0x02,0x54,0x14,0x00,0x02,0x54,0x28,
27530
+0x00,0x02,0x54,0x3c,0x00,0x02,0x54,0x50,0x00,0x02,0x54,0x64,
27531
+0x00,0x02,0x54,0x78,0x00,0x02,0x54,0x8c,0x00,0x02,0x54,0xa0,
27532
+0x00,0x02,0x54,0xb4,0x00,0x02,0x54,0xc8,0x00,0x02,0x54,0xdc,
27533
+0x00,0x02,0x54,0xf0,0x00,0x02,0x55,0x78,0x00,0x02,0x56,0x8c,
27534
+0x00,0x02,0x57,0x54,0x00,0x02,0x57,0xf0,0x00,0x02,0x58,0xb8,
27535
+0x00,0x02,0x59,0x48,0x00,0x02,0x59,0x84,0x00,0x02,0x5a,0x08,
27536
+0x00,0x02,0x5a,0x7c,0x00,0x02,0x5a,0xe8,0x00,0x02,0x5b,0x74,
27537
+0x00,0x02,0x5b,0x8c,0x00,0x02,0x5b,0xa4,0x00,0x02,0x5c,0x14,
27538
+0x00,0x02,0x5c,0x78,0x00,0x02,0x5c,0xec,0x00,0x02,0x5d,0x48,
27539
+0x00,0x02,0x5d,0xe4,0x00,0x02,0x5e,0x64,0x00,0x02,0x5f,0x48,
27540
+0x00,0x02,0x60,0x20,0x00,0x02,0x61,0x14,0x00,0x02,0x61,0x5c,
27541
+0x00,0x02,0x61,0x6c,0x00,0x02,0x62,0x00,0x00,0x02,0x62,0x10,
27542
+0x00,0x02,0x62,0x20,0x00,0x02,0x62,0x68,0x00,0x02,0x62,0xc0,
27543
+0x00,0x02,0x63,0x74,0x00,0x02,0x63,0xb4,0x00,0x02,0x64,0x10,
27544
+0x00,0x02,0x64,0x70,0x00,0x02,0x64,0xe0,0x00,0x02,0x65,0x00,
27545
+0x00,0x02,0x65,0x24,0x00,0x02,0x65,0x50,0x00,0x02,0x65,0xe8,
27546
+0x00,0x02,0x66,0xa0,0x00,0x02,0x67,0x4c,0x00,0x02,0x67,0xc0,
27547
+0x00,0x02,0x68,0x58,0x00,0x02,0x69,0x04,0x00,0x02,0x69,0x48,
27548
+0x00,0x02,0x69,0x68,0x00,0x02,0x69,0x88,0x00,0x02,0x69,0xb0,
27549
+0x00,0x02,0x69,0xd0,0x00,0x02,0x69,0xf0,0x00,0x02,0x6a,0x10,
27550
+0x00,0x02,0x6a,0x30,0x00,0x02,0x6a,0x50,0x00,0x02,0x6a,0x70,
27551
+0x00,0x02,0x6a,0x90,0x00,0x02,0x6a,0xb0,0x00,0x02,0x6a,0xd0,
27552
+0x00,0x02,0x6a,0xf0,0x00,0x02,0x6b,0x10,0x00,0x02,0x6b,0x30,
27553
+0x00,0x02,0x6b,0x48,0x00,0x02,0x6b,0x58,0x00,0x02,0x6b,0x90,
27554
+0x00,0x02,0x6b,0xd4,0x00,0x02,0x6c,0x24,0x00,0x02,0x6c,0x34,
27555
+0x00,0x02,0x6c,0x84,0x00,0x02,0x6c,0xdc,0x00,0x02,0x6d,0x44,
27556
+0x00,0x02,0x6d,0xb8,0x00,0x02,0x6d,0xc8,0x00,0x02,0x6e,0x3c,
27557
+0x00,0x02,0x6e,0xb8,0x00,0x02,0x6e,0xc8,0x00,0x02,0x6e,0xd8,
27558
+0x00,0x02,0x6e,0xe8,0x00,0x02,0x6e,0xf8,0x00,0x02,0x6f,0x08,
27559
+0x00,0x02,0x6f,0x20,0x00,0x02,0x6f,0x40,0x00,0x02,0x6f,0x58,
27560
+0x00,0x02,0x6f,0x68,0x00,0x02,0x6f,0x80,0x00,0x02,0x6f,0xa0,
27561
+0x00,0x02,0x6f,0xc8,0x00,0x02,0x6f,0xe0,0x00,0x02,0x6f,0xf0,
27562
+0x00,0x02,0x70,0x08,0x00,0x02,0x70,0x28,0x00,0x02,0x70,0x38,
27563
+0x00,0x02,0x70,0x48,0x00,0x02,0x70,0x58,0x00,0x02,0x70,0x68,
27564
+0x00,0x02,0x70,0xe0,0x00,0x02,0x71,0x64,0x00,0x02,0x72,0x2c,
27565
+0x00,0x02,0x72,0x94,0x00,0x02,0x72,0xf8,0x00,0x02,0x73,0x68,
27566
+0x00,0x02,0x73,0x88,0x00,0x02,0x74,0x04,0x00,0x02,0x74,0x80,
27567
+0x00,0x02,0x74,0xfc,0x00,0x02,0x75,0x7c,0x00,0x02,0x75,0xc4,
27568
+0x00,0x02,0x76,0x0c,0x00,0x02,0x76,0x40,0x00,0x02,0x76,0x78,
27569
+0x00,0x02,0x76,0xac,0x00,0x02,0x76,0xe0,0x00,0x02,0x77,0x2c,
27570
+0x00,0x02,0x77,0x78,0x00,0x02,0x77,0xe0,0x00,0x02,0x78,0x48,
27571
+0x00,0x02,0x78,0x94,0x00,0x02,0x78,0xdc,0x00,0x02,0x79,0x28,
27572
+0x00,0x02,0x79,0x74,0x00,0x02,0x79,0xc0,0x00,0x02,0x7a,0x0c,
27573
+0x00,0x02,0x7a,0x48,0x00,0x02,0x7a,0x84,0x00,0x02,0x7a,0xc0,
27574
+0x00,0x02,0x7a,0xfc,0x00,0x02,0x7b,0x4c,0x00,0x02,0x7b,0x94,
27575
+0x00,0x02,0x7b,0xe0,0x00,0x02,0x7c,0x44,0x00,0x02,0x7c,0xac,
27576
+0x00,0x02,0x7d,0x44,0x00,0x02,0x7d,0xa8,0x00,0x02,0x7d,0xec,
27577
+0x00,0x02,0x7e,0x24,0x00,0x02,0x7e,0x5c,0x00,0x02,0x7e,0x94,
27578
+0x00,0x02,0x7e,0xcc,0x00,0x02,0x7f,0x04,0x00,0x02,0x7f,0x3c,
27579
+0x00,0x02,0x7f,0x94,0x00,0x02,0x7f,0xec,0x00,0x02,0x80,0x2c,
27580
+0x00,0x02,0x80,0x48,0x00,0x02,0x80,0xb8,0x00,0x02,0x81,0x28,
27581
+0x00,0x02,0x81,0x50,0x00,0x02,0x81,0x74,0x00,0x02,0x81,0x9c,
27582
+0x00,0x02,0x81,0xc0,0x00,0x02,0x81,0xe4,0x00,0x02,0x82,0x0c,
27583
+0x00,0x02,0x82,0x30,0x00,0x02,0x82,0x58,0x00,0x02,0x82,0x74,
27584
+0x00,0x02,0x82,0x90,0x00,0x02,0x82,0xac,0x00,0x02,0x82,0xc8,
27585
+0x00,0x02,0x82,0xe4,0x00,0x02,0x83,0x00,0x00,0x02,0x83,0x1c,
27586
+0x00,0x02,0x83,0x38,0x00,0x02,0x83,0x54,0x00,0x02,0x83,0xb8,
27587
+0x00,0x02,0x84,0x34,0x00,0x02,0x84,0x98,0x00,0x02,0x84,0xd4,
27588
+0x00,0x02,0x85,0x10,0x00,0x02,0x85,0x4c,0x00,0x02,0x85,0x88,
27589
+0x00,0x02,0x85,0xe0,0x00,0x02,0x86,0x38,0x00,0x02,0x86,0x80,
27590
+0x00,0x02,0x86,0xc8,0x00,0x02,0x87,0x10,0x00,0x02,0x87,0x58,
27591
+0x00,0x02,0x87,0x9c,0x00,0x02,0x87,0xe0,0x00,0x02,0x88,0x3c,
27592
+0x00,0x02,0x88,0x98,0x00,0x02,0x88,0xf0,0x00,0x02,0x89,0x4c,
27593
+0x00,0x02,0x89,0x9c,0x00,0x02,0x89,0xec,0x00,0x02,0x8a,0x3c,
27594
+0x00,0x02,0x8a,0x8c,0x00,0x02,0x8a,0xc8,0x00,0x02,0x8b,0x04,
27595
+0x00,0x02,0x8b,0x48,0x00,0x02,0x8b,0x8c,0x00,0x02,0x8b,0xd0,
27596
+0x00,0x02,0x8c,0x14,0x00,0x02,0x8c,0x74,0x00,0x02,0x8c,0xc8,
27597
+0x00,0x02,0x8d,0x2c,0x00,0x02,0x8d,0x8c,0x00,0x02,0x8d,0xf0,
27598
+0x00,0x02,0x8e,0x68,0x00,0x02,0x8e,0xbc,0x00,0x02,0x8f,0x04,
27599
+0x00,0x02,0x8f,0x4c,0x00,0x02,0x8f,0xac,0x00,0x02,0x90,0x40,
27600
+0x00,0x02,0x90,0x5c,0x00,0x02,0x90,0xcc,0x00,0x02,0x91,0x14,
27601
+0x00,0x02,0x91,0x5c,0x00,0x02,0x91,0xb8,0x00,0x02,0x92,0x14,
27602
+0x00,0x02,0x92,0x70,0x00,0x02,0x92,0xe0,0x00,0x02,0x93,0x1c,
27603
+0x00,0x02,0x93,0x58,0x00,0x02,0x93,0xb4,0x00,0x02,0x93,0xf0,
27604
+0x00,0x02,0x94,0xa8,0x00,0x02,0x94,0xdc,0x00,0x02,0x95,0x44,
27605
+0x00,0x02,0x95,0xc0,0x00,0x02,0x95,0xec,0x00,0x02,0x96,0x48,
27606
+0x00,0x02,0x96,0xdc,0x00,0x02,0x97,0x38,0x00,0x02,0x97,0xd0,
27607
+0x00,0x02,0x98,0x50,0x00,0x02,0x98,0x94,0x00,0x02,0x99,0x38,
27608
+0x00,0x02,0x99,0x68,0x00,0x02,0x99,0xa8,0x00,0x02,0x99,0xf8,
27609
+0x00,0x02,0x9a,0x08,0x00,0x02,0x9a,0x58,0x00,0x02,0x9a,0x9c,
27610
+0x00,0x02,0x9a,0xc4,0x00,0x02,0x9b,0x24,0x00,0x02,0x9b,0x3c,
27611
+0x00,0x02,0x9b,0x54,0x00,0x02,0x9b,0xcc,0x00,0x02,0x9c,0x9c,
27612
+0x00,0x02,0x9c,0xbc,0x00,0x02,0x9c,0xe0,0x00,0x02,0x9c,0xfc,
27613
+0x00,0x02,0x9d,0x30,0x00,0x02,0x9d,0x58,0x00,0x02,0x9d,0xa0,
27614
+0x00,0x02,0x9d,0xcc,0x00,0x02,0x9d,0xf4,0x00,0x02,0x9e,0x40,
27615
+0x00,0x02,0x9e,0x8c,0x00,0x02,0x9f,0x28,0x00,0x02,0x9f,0x40,
27616
+0x00,0x02,0x9f,0x60,0x00,0x02,0x9f,0x9c,0x00,0x02,0x9f,0xf4,
27617
+0x00,0x02,0xa0,0x88,0x00,0x02,0xa0,0xa8,0x00,0x02,0xa0,0xec,
27618
+0x00,0x02,0xa1,0x30,0x00,0x02,0xa1,0x98,0x00,0x02,0xa1,0xfc,
27619
+0x00,0x02,0xa3,0x14,0x00,0x02,0xa3,0x5c,0x00,0x02,0xa3,0xc4,
27620
+0x00,0x02,0xa4,0x2c,0x00,0x02,0xa4,0x94,0x00,0x02,0xa4,0xfc,
27621
+0x00,0x02,0xa5,0x64,0x00,0x02,0xa5,0xec,0x00,0x02,0xa6,0x20,
27622
+0x00,0x02,0xa6,0x80,0x00,0x02,0xa6,0xdc,0x00,0x02,0xa7,0x28,
27623
+0x00,0x02,0xa7,0x74,0x00,0x02,0xa7,0xf8,0x00,0x02,0xa8,0x6c,
27624
+0x00,0x02,0xa8,0xc4,0x00,0x02,0xa9,0x1c,0x00,0x02,0xa9,0x88,
27625
+0x00,0x02,0xa9,0xf4,0x00,0x02,0xaa,0x64,0x00,0x02,0xaa,0x88,
27626
+0x00,0x02,0xaa,0xb0,0x00,0x02,0xaa,0xe4,0x00,0x02,0xab,0x18,
27627
+0x00,0x02,0xab,0x40,0x00,0x02,0xab,0x64,0x00,0x02,0xac,0x10,
27628
+0x00,0x02,0xac,0x90,0x00,0x02,0xad,0x54,0x00,0x02,0xad,0xdc,
27629
+0x00,0x02,0xae,0x60,0x00,0x02,0xae,0xf8,0x00,0x02,0xaf,0xa0,
27630
+0x00,0x02,0xb0,0x20,0x00,0x02,0xb0,0x90,0x00,0x02,0xb0,0xe4,
27631
+0x00,0x02,0xb1,0x1c,0x00,0x02,0xb1,0x70,0x00,0x02,0xb1,0xbc,
27632
+0x00,0x02,0xb1,0xe0,0x00,0x02,0xb2,0x08,0x00,0x02,0xb2,0x30,
27633
+0x00,0x02,0xb2,0x54,0x00,0x02,0xb2,0x78,0x00,0x02,0xb2,0xa8,
27634
+0x00,0x02,0xb2,0xd8,0x00,0x02,0xb3,0x0c,0x00,0x02,0xb3,0x4c,
27635
+0x00,0x02,0xb3,0x8c,0x00,0x02,0xb3,0xd0,0x00,0x02,0xb4,0x30,
27636
+0x00,0x02,0xb4,0x8c,0x00,0x02,0xb4,0xfc,0x00,0x02,0xb5,0x30,
27637
+0x00,0x02,0xb5,0x70,0x00,0x02,0xb5,0xa8,0x00,0x02,0xb5,0xc8,
27638
+0x00,0x02,0xb5,0xe8,0x00,0x02,0xb6,0x08,0x00,0x02,0xb6,0x28,
27639
+0x00,0x02,0xb6,0x48,0x00,0x02,0xb6,0x9c,0x00,0x02,0xb7,0x98,
27640
+0x00,0x02,0xb7,0xbc,0x00,0x02,0xb8,0x14,0x00,0x02,0xb8,0x6c,
27641
+0x00,0x02,0xb8,0xa4,0x00,0x02,0xbd,0x5c,0x00,0x02,0xbd,0x90,
27642
+0x00,0x02,0xbd,0xc8,0x00,0x02,0xbd,0xe4,0x00,0x02,0xbe,0x1c,
27643
+0x00,0x02,0xbe,0x54,0x00,0x02,0xbe,0x70,0x00,0x02,0xbe,0xa8,
27644
+0x00,0x02,0xbe,0xc8,0x00,0x02,0xbe,0xe4,0x00,0x02,0xbf,0x08,
27645
+0x00,0x02,0xbf,0x2c,0x00,0x02,0xbf,0x48,0x00,0x02,0xbf,0x68,
27646
+0x00,0x02,0xbf,0x9c,0x00,0x02,0xbf,0xf4,0x00,0x02,0xc0,0x2c,
27647
+0x00,0x02,0xc0,0x48,0x00,0x02,0xc0,0x80,0x00,0x02,0xc0,0xd8,
27648
+0x00,0x02,0xc1,0x0c,0x00,0x02,0xc1,0x28,0x00,0x02,0xc1,0x54,
27649
+0x00,0x02,0xc1,0x80,0x00,0x02,0xc1,0xa4,0x00,0x02,0xc1,0xc0,
27650
+0x00,0x02,0xc1,0xdc,0x00,0x02,0xc1,0xf8,0x00,0x02,0xc2,0x14,
27651
+0x00,0x02,0xc2,0x48,0x00,0x02,0xc2,0x80,0x00,0x02,0xc2,0xb8,
27652
+0x00,0x02,0xc2,0xf4,0x00,0x02,0xc3,0x2c,0x00,0x02,0xc3,0x6c,
27653
+0x00,0x02,0xc3,0xb4,0x00,0x02,0xc4,0x00,0x00,0x02,0xc4,0x24,
27654
+0x00,0x02,0xc4,0x48,0x00,0x02,0xc4,0x6c,0x00,0x02,0xc4,0x90,
27655
+0x00,0x02,0xc4,0xb4,0x00,0x02,0xc4,0xd8,0x00,0x02,0xc4,0xfc,
27656
+0x00,0x02,0xc5,0x20,0x00,0x02,0xc5,0x40,0x00,0x02,0xc5,0x64,
27657
+0x00,0x02,0xc5,0x88,0x00,0x02,0xc5,0xac,0x00,0x02,0xc5,0xcc,
27658
+0x00,0x02,0xc5,0xec,0x00,0x02,0xc6,0x0c,0x00,0x02,0xc6,0x30,
27659
+0x00,0x02,0xc6,0x58,0x00,0x02,0xc6,0x80,0x00,0x02,0xc6,0xac,
27660
+0x00,0x02,0xc6,0xd8,0x00,0x02,0xc7,0x00,0x00,0x02,0xc7,0x30,
27661
+0x00,0x02,0xc7,0x5c,0x00,0x02,0xc7,0x84,0x00,0x02,0xc7,0xac,
27662
+0x00,0x02,0xc7,0xd4,0x00,0x02,0xc8,0x00,0x00,0x02,0xc8,0x2c,
27663
+0x00,0x02,0xc8,0x54,0x00,0x02,0xc8,0x84,0x00,0x02,0xc8,0xb0,
27664
+0x00,0x02,0xc8,0xd8,0x00,0x02,0xc9,0x00,0x00,0x02,0xc9,0x2c,
27665
+0x00,0x02,0xc9,0x58,0x00,0x02,0xc9,0x80,0x00,0x02,0xc9,0xa8,
27666
+0x00,0x02,0xc9,0xd4,0x00,0x02,0xca,0x00,0x00,0x02,0xca,0x28,
27667
+0x00,0x02,0xca,0x4c,0x00,0x02,0xca,0x78,0x00,0x02,0xca,0xa4,
27668
+0x00,0x02,0xca,0xcc,0x00,0x02,0xca,0xf4,0x00,0x02,0xcb,0x20,
27669
+0x00,0x02,0xcb,0x4c,0x00,0x02,0xcb,0x74,0x00,0x02,0xcb,0xa4,
27670
+0x00,0x02,0xcb,0xd8,0x00,0x02,0xcc,0x0c,0x00,0x02,0xcc,0x40,
27671
+0x00,0x02,0xcc,0x74,0x00,0x02,0xcc,0xa8,0x00,0x02,0xcc,0xdc,
27672
+0x00,0x02,0xcd,0x14,0x00,0x02,0xcd,0x4c,0x00,0x02,0xcd,0x84,
27673
+0x00,0x02,0xcd,0xbc,0x00,0x02,0xcd,0xf0,0x00,0x02,0xce,0x24,
27674
+0x00,0x02,0xce,0x58,0x00,0x02,0xce,0x8c,0x00,0x02,0xce,0xc0,
27675
+0x00,0x02,0xce,0xe4,0x00,0x02,0xcf,0x10,0x00,0x02,0xcf,0x3c,
27676
+0x00,0x02,0xcf,0x68,0x00,0x02,0xcf,0x90,0x00,0x02,0xcf,0xb8,
27677
+0x00,0x02,0xcf,0xe4,0x00,0x02,0xd0,0x10,0x00,0x02,0xd0,0x44,
27678
+0x00,0x02,0xd0,0x70,0x00,0x02,0xd0,0x9c,0x00,0x02,0xd0,0xd0,
27679
+0x00,0x02,0xd0,0xfc,0x00,0x02,0xd1,0x28,0x00,0x02,0xd1,0x5c,
27680
+0x00,0x02,0xd1,0x88,0x00,0x02,0xd1,0xb4,0x00,0x02,0xd1,0xe8,
27681
+0x00,0x02,0xd2,0x18,0x00,0x02,0xd2,0x4c,0x00,0x02,0xd2,0x90,
27682
+0x00,0x02,0xd2,0xc0,0x00,0x02,0xd2,0xf4,0x00,0x02,0xd3,0x34,
27683
+0x00,0x02,0xd3,0x68,0x00,0x02,0xd3,0x98,0x00,0x02,0xd3,0xd8,
27684
+0x00,0x02,0xd4,0x0c,0x00,0x02,0xd4,0x3c,0x00,0x02,0xd4,0x7c,
27685
+0x00,0x02,0xd4,0xc4,0x00,0x02,0xd5,0x08,0x00,0x02,0xd5,0x64,
27686
+0x00,0x02,0xd5,0x94,0x00,0x02,0xd5,0xc4,0x00,0x02,0xd5,0xf4,
27687
+0x00,0x02,0xd6,0x24,0x00,0x02,0xd6,0x44,0x00,0x02,0xd6,0x60,
27688
+0x00,0x02,0xd6,0xa0,0x00,0x02,0xd6,0xbc,0x00,0x02,0xd6,0xd8,
27689
+0x00,0x02,0xd6,0xf4,0x00,0x02,0xd7,0x10,0x00,0x02,0xd7,0x2c,
27690
+0x00,0x02,0xd7,0x48,0x00,0x02,0xd7,0x64,0x00,0x02,0xd7,0x80,
27691
+0x00,0x02,0xd7,0xa4,0x00,0x02,0xd7,0xcc,0x00,0x02,0xd7,0xf0,
27692
+0x00,0x02,0xd8,0x18,0x00,0x02,0xd8,0x2c,0x00,0x02,0xd8,0x48,
27693
+0x00,0x02,0xd8,0x64,0x00,0x02,0xd8,0x80,0x00,0x02,0xd8,0x9c,
27694
+0x00,0x02,0xd8,0xb8,0x00,0x02,0xd8,0xd4,0x00,0x02,0xd8,0xf0,
27695
+0x00,0x02,0xd9,0x0c,0x00,0x02,0xd9,0x28,0x00,0x02,0xd9,0x44,
27696
+0x00,0x02,0xd9,0x60,0x00,0x02,0xd9,0x7c,0x00,0x02,0xd9,0x98,
27697
+0x00,0x02,0xd9,0xb4,0x00,0x02,0xd9,0xd0,0x00,0x02,0xd9,0xe4,
27698
+0x00,0x02,0xda,0x98,0x00,0x02,0xdb,0x88,0x00,0x02,0xdc,0x30,
27699
+0x00,0x02,0xdc,0x44,0x00,0x02,0xdc,0x58,0x00,0x02,0xdc,0x74,
27700
+0x00,0x02,0xdc,0x90,0x00,0x02,0xdc,0xac,0x00,0x02,0xdc,0xd0,
27701
+0x00,0x02,0xdc,0xf8,0x00,0x02,0xdd,0x1c,0x00,0x02,0xdd,0x40,
27702
+0x00,0x02,0xdd,0x5c,0x00,0x02,0xdd,0x84,0x00,0x02,0xdd,0xa8,
27703
+0x00,0x02,0xdd,0xc4,0x00,0x02,0xdd,0xf0,0x00,0x02,0xde,0x44,
27704
+0x00,0x02,0xde,0x5c,0x00,0x02,0xde,0xb4,0x00,0x02,0xdf,0x14,
27705
+0x00,0x02,0xe0,0x50,0x00,0x02,0xe0,0xd8,0x00,0x02,0xe1,0x60,
27706
+0x00,0x02,0xe3,0x20,0x00,0x02,0xe3,0x3c,0x00,0x02,0xe3,0x68,
27707
+0x00,0x02,0xe3,0x84,0x00,0x02,0xe3,0xb0,0x00,0x02,0xe3,0xcc,
27708
+0x00,0x02,0xe3,0xf8,0x00,0x02,0xe4,0x18,0x00,0x02,0xe4,0x4c,
27709
+0x00,0x02,0xe4,0x68,0x00,0x02,0xe4,0x90,0x00,0x02,0xe4,0xac,
27710
+0x00,0x02,0xe4,0xd4,0x00,0x02,0xe4,0xf0,0x00,0x02,0xe5,0x1c,
27711
+0x00,0x02,0xe5,0x38,0x00,0x02,0xe5,0x64,0x00,0x02,0xe5,0x80,
27712
+0x00,0x02,0xe5,0xac,0x00,0x02,0xe5,0xc8,0x00,0x02,0xe5,0xf4,
27713
+0x00,0x02,0xe6,0x10,0x00,0x02,0xe6,0x3c,0x00,0x02,0xe6,0x58,
27714
+0x00,0x02,0xe6,0x84,0x00,0x02,0xe6,0xa0,0x00,0x02,0xe6,0xcc,
27715
+0x00,0x02,0xe6,0xe8,0x00,0x02,0xe7,0x14,0x00,0x02,0xe7,0x34,
27716
+0x00,0x02,0xe7,0x68,0x00,0x02,0xe7,0xac,0x00,0x02,0xe8,0x3c,
27717
+0x00,0x02,0xe8,0x90,0x00,0x02,0xe8,0xf8,0x00,0x02,0xe9,0xf0,
27718
+0x00,0x02,0xea,0xa4,0x00,0x02,0xeb,0x60,0x00,0x02,0xeb,0x9c,
27719
+0x00,0x02,0xeb,0xf4,0x00,0x02,0xec,0x4c,0x00,0x02,0xec,0xa8,
27720
+0x00,0x02,0xed,0x04,0x00,0x02,0xed,0x6c,0x00,0x02,0xed,0xbc,
27721
+0x00,0x02,0xed,0xe4,0x00,0x02,0xee,0x0c,0x00,0x02,0xee,0x48,
27722
+0x00,0x02,0xee,0xc0,0x00,0x02,0xef,0x14,0x00,0x02,0xef,0x68,
27723
+0x00,0x02,0xef,0x94,0x00,0x02,0xef,0xc0,0x00,0x02,0xef,0xec,
27724
+0x00,0x02,0xf0,0x1c,0x00,0x02,0xf0,0x60,0x00,0x02,0xf0,0xa4,
27725
+0x00,0x02,0xf0,0xc0,0x00,0x02,0xf0,0xdc,0x00,0x02,0xf0,0xf4,
27726
+0x00,0x02,0xf1,0x0c,0x00,0x02,0xf1,0x54,0x00,0x02,0xf1,0x80,
27727
+0x00,0x02,0xf1,0xac,0x00,0x02,0xf1,0xd4,0x00,0x02,0xf1,0xfc,
27728
+0x00,0x02,0xf2,0x38,0x00,0x02,0xf2,0x84,0x00,0x02,0xf2,0xb0,
27729
+0x00,0x02,0xf2,0xd8,0x00,0x02,0xf3,0x44,0x00,0x02,0xf3,0x84,
27730
+0x00,0x02,0xf3,0xc4,0x00,0x02,0xf4,0x04,0x00,0x02,0xf4,0x44,
27731
+0x00,0x02,0xf4,0xc4,0x00,0x02,0xf5,0x44,0x00,0x02,0xf5,0xc4,
27732
+0x00,0x02,0xf6,0x44,0x00,0x02,0xf6,0x6c,0x00,0x02,0xf6,0x94,
27733
+0x00,0x02,0xf6,0xbc,0x00,0x02,0xf6,0xe8,0x00,0x02,0xf7,0x04,
27734
+0x00,0x02,0xf7,0x30,0x00,0x02,0xf7,0x4c,0x00,0x02,0xf7,0x74,
27735
+0x00,0x02,0xf8,0xa8,0x00,0x02,0xfa,0x14,0x00,0x02,0xfc,0x34,
27736
+0x00,0x02,0xfe,0x58,0x00,0x02,0xff,0xc0,0x00,0x03,0x01,0xc4,
27737
+0x00,0x03,0x03,0xa0,0x00,0x03,0x05,0x2c,0x00,0x03,0x06,0xc0,
27738
+0x00,0x03,0x07,0x64,0x00,0x03,0x08,0x5c,0x00,0x03,0x09,0x80,
27739
+0x00,0x03,0x0a,0xe8,0x00,0x03,0x0d,0x18,0x00,0x03,0x0e,0x24,
27740
+0x00,0x03,0x0e,0xb8,0x00,0x03,0x0f,0xac,0x00,0x03,0x10,0x08,
27741
+0x00,0x03,0x10,0xec,0x00,0x03,0x12,0x60,0x00,0x03,0x12,0xcc,
27742
+0x00,0x03,0x13,0x08,0x00,0x03,0x15,0x48,0x00,0x03,0x15,0xac,
27743
+0x00,0x03,0x16,0x3c,0x00,0x03,0x17,0x04,0x00,0x03,0x17,0xf0,
27744
+0x00,0x03,0x18,0xdc,0x00,0x03,0x19,0xd4,0x00,0x03,0x1b,0xa8,
27745
+0x00,0x03,0x1b,0xd4,0x00,0x03,0x1c,0x3c,0x00,0x03,0x1c,0xa4,
27746
+0x00,0x03,0x1c,0xe0,0x00,0x03,0x1d,0x08,0x00,0x03,0x1d,0x30,
27747
+0x00,0x03,0x1d,0x84,0x00,0x03,0x1d,0xd8,0x00,0x03,0x1e,0x50,
27748
+0x00,0x03,0x1e,0xc8,0x00,0x03,0x1f,0x98,0x00,0x03,0x1f,0xc8,
27749
+0x00,0x03,0x1f,0xf8,0x00,0x03,0x20,0x40,0x00,0x03,0x20,0x7c,
27750
+0x00,0x03,0x20,0xb8,0x00,0x03,0x21,0x10,0x00,0x03,0x21,0x4c,
27751
+0x00,0x03,0x21,0x88,0x00,0x03,0x21,0xd0,0x00,0x03,0x22,0x18,
27752
+0x00,0x03,0x22,0x9c,0x00,0x03,0x22,0x9c,0x00,0x03,0x22,0xb0,
27753
+0x00,0x03,0x22,0xc4,0x00,0x03,0x22,0xe0,0x00,0x03,0x22,0xf4,
27754
+0x00,0x03,0x23,0x10,0x00,0x03,0x23,0x2c,0x00,0x03,0x23,0x50,
27755
+0x00,0x03,0x23,0x64,0x00,0x03,0x23,0x80,0x00,0x03,0x23,0x9c,
27756
+0x00,0x03,0x23,0xc0,0x00,0x03,0x23,0xdc,0x00,0x03,0x24,0x00,
27757
+0x00,0x03,0x24,0x24,0x00,0x03,0x24,0x50,0x00,0x03,0x24,0x64,
27758
+0x00,0x03,0x24,0x80,0x00,0x03,0x24,0x9c,0x00,0x03,0x24,0xc0,
27759
+0x00,0x03,0x24,0xdc,0x00,0x03,0x25,0x00,0x00,0x03,0x25,0x24,
27760
+0x00,0x03,0x25,0x50,0x00,0x03,0x25,0x6c,0x00,0x03,0x25,0x90,
27761
+0x00,0x03,0x25,0xb4,0x00,0x03,0x25,0xe0,0x00,0x03,0x26,0x04,
27762
+0x00,0x03,0x26,0x30,0x00,0x03,0x26,0x5c,0x00,0x03,0x26,0x90,
27763
+0x00,0x03,0x26,0xa4,0x00,0x03,0x26,0xc0,0x00,0x03,0x26,0xdc,
27764
+0x00,0x03,0x27,0x00,0x00,0x03,0x27,0x1c,0x00,0x03,0x27,0x40,
27765
+0x00,0x03,0x27,0x64,0x00,0x03,0x27,0x90,0x00,0x03,0x27,0xac,
27766
+0x00,0x03,0x27,0xd0,0x00,0x03,0x27,0xf4,0x00,0x03,0x28,0x20,
27767
+0x00,0x03,0x28,0x44,0x00,0x03,0x28,0x70,0x00,0x03,0x28,0x9c,
27768
+0x00,0x03,0x28,0xd0,0x00,0x03,0x28,0xec,0x00,0x03,0x29,0x10,
27769
+0x00,0x03,0x29,0x34,0x00,0x03,0x29,0x60,0x00,0x03,0x29,0x84,
27770
+0x00,0x03,0x29,0xb0,0x00,0x03,0x29,0xdc,0x00,0x03,0x2a,0x10,
27771
+0x00,0x03,0x2a,0x34,0x00,0x03,0x2a,0x60,0x00,0x03,0x2a,0x8c,
27772
+0x00,0x03,0x2a,0xc0,0x00,0x03,0x2a,0xec,0x00,0x03,0x2b,0x20,
27773
+0x00,0x03,0x2b,0x54,0x00,0x03,0x2b,0x90,0x00,0x03,0x2b,0xa4,
27774
+0x00,0x03,0x2b,0xc0,0x00,0x03,0x2b,0xdc,0x00,0x03,0x2c,0x00,
27775
+0x00,0x03,0x2c,0x1c,0x00,0x03,0x2c,0x40,0x00,0x03,0x2c,0x64,
27776
+0x00,0x03,0x2c,0x90,0x00,0x03,0x2c,0xac,0x00,0x03,0x2c,0xd0,
27777
+0x00,0x03,0x2c,0xf4,0x00,0x03,0x2d,0x20,0x00,0x03,0x2d,0x44,
27778
+0x00,0x03,0x2d,0x70,0x00,0x03,0x2d,0x9c,0x00,0x03,0x2d,0xd0,
27779
+0x00,0x03,0x2d,0xec,0x00,0x03,0x2e,0x10,0x00,0x03,0x2e,0x34,
27780
+0x00,0x03,0x2e,0x60,0x00,0x03,0x2e,0x84,0x00,0x03,0x2e,0xb0,
27781
+0x00,0x03,0x2e,0xdc,0x00,0x03,0x2f,0x10,0x00,0x03,0x2f,0x34,
27782
+0x00,0x03,0x2f,0x60,0x00,0x03,0x2f,0x8c,0x00,0x03,0x2f,0xc0,
27783
+0x00,0x03,0x2f,0xec,0x00,0x03,0x30,0x20,0x00,0x03,0x30,0x54,
27784
+0x00,0x03,0x30,0x90,0x00,0x03,0x30,0xac,0x00,0x03,0x30,0xd0,
27785
+0x00,0x03,0x30,0xf4,0x00,0x03,0x31,0x20,0x00,0x03,0x31,0x44,
27786
+0x00,0x03,0x31,0x70,0x00,0x03,0x31,0x9c,0x00,0x03,0x31,0xd0,
27787
+0x00,0x03,0x31,0xf4,0x00,0x03,0x32,0x20,0x00,0x03,0x32,0x4c,
27788
+0x00,0x03,0x32,0x80,0x00,0x03,0x32,0xac,0x00,0x03,0x32,0xe0,
27789
+0x00,0x03,0x33,0x14,0x00,0x03,0x33,0x50,0x00,0x03,0x33,0x74,
27790
+0x00,0x03,0x33,0xa0,0x00,0x03,0x33,0xcc,0x00,0x03,0x34,0x00,
27791
+0x00,0x03,0x34,0x2c,0x00,0x03,0x34,0x60,0x00,0x03,0x34,0x94,
27792
+0x00,0x03,0x34,0xd0,0x00,0x03,0x34,0xfc,0x00,0x03,0x35,0x30,
27793
+0x00,0x03,0x35,0x64,0x00,0x03,0x35,0xa0,0x00,0x03,0x35,0xd4,
27794
+0x00,0x03,0x36,0x10,0x00,0x03,0x36,0x4c,0x00,0x03,0x36,0x90,
27795
+0x00,0x03,0x36,0xa4,0x00,0x03,0x36,0xc0,0x00,0x03,0x36,0xdc,
27796
+0x00,0x03,0x37,0x00,0x00,0x03,0x37,0x1c,0x00,0x03,0x37,0x40,
27797
+0x00,0x03,0x37,0x64,0x00,0x03,0x37,0x90,0x00,0x03,0x37,0xac,
27798
+0x00,0x03,0x37,0xd0,0x00,0x03,0x37,0xf4,0x00,0x03,0x38,0x20,
27799
+0x00,0x03,0x38,0x44,0x00,0x03,0x38,0x70,0x00,0x03,0x38,0x9c,
27800
+0x00,0x03,0x38,0xd0,0x00,0x03,0x38,0xec,0x00,0x03,0x39,0x10,
27801
+0x00,0x03,0x39,0x34,0x00,0x03,0x39,0x60,0x00,0x03,0x39,0x84,
27802
+0x00,0x03,0x39,0xb0,0x00,0x03,0x39,0xdc,0x00,0x03,0x3a,0x10,
27803
+0x00,0x03,0x3a,0x34,0x00,0x03,0x3a,0x60,0x00,0x03,0x3a,0x8c,
27804
+0x00,0x03,0x3a,0xc0,0x00,0x03,0x3a,0xec,0x00,0x03,0x3b,0x20,
27805
+0x00,0x03,0x3b,0x54,0x00,0x03,0x3b,0x90,0x00,0x03,0x3b,0xac,
27806
+0x00,0x03,0x3b,0xd0,0x00,0x03,0x3b,0xf4,0x00,0x03,0x3c,0x20,
27807
+0x00,0x03,0x3c,0x44,0x00,0x03,0x3c,0x70,0x00,0x03,0x3c,0x9c,
27808
+0x00,0x03,0x3c,0xd0,0x00,0x03,0x3c,0xf4,0x00,0x03,0x3d,0x20,
27809
+0x00,0x03,0x3d,0x4c,0x00,0x03,0x3d,0x80,0x00,0x03,0x3d,0xac,
27810
+0x00,0x03,0x3d,0xe0,0x00,0x03,0x3e,0x14,0x00,0x03,0x3e,0x50,
27811
+0x00,0x03,0x3e,0x74,0x00,0x03,0x3e,0xa0,0x00,0x03,0x3e,0xcc,
27812
+0x00,0x03,0x3f,0x00,0x00,0x03,0x3f,0x2c,0x00,0x03,0x3f,0x60,
27813
+0x00,0x03,0x3f,0x94,0x00,0x03,0x3f,0xd0,0x00,0x03,0x3f,0xfc,
27814
+0x00,0x03,0x40,0x30,0x00,0x03,0x40,0x64,0x00,0x03,0x40,0xa0,
27815
+0x00,0x03,0x40,0xd4,0x00,0x03,0x41,0x10,0x00,0x03,0x41,0x4c,
27816
+0x00,0x03,0x41,0x90,0x00,0x03,0x41,0xac,0x00,0x03,0x41,0xd0,
27817
+0x00,0x03,0x41,0xf4,0x00,0x03,0x42,0x20,0x00,0x03,0x42,0x44,
27818
+0x00,0x03,0x42,0x70,0x00,0x03,0x42,0x9c,0x00,0x03,0x42,0xd0,
27819
+0x00,0x03,0x42,0xf4,0x00,0x03,0x43,0x20,0x00,0x03,0x43,0x4c,
27820
+0x00,0x03,0x43,0x80,0x00,0x03,0x43,0xac,0x00,0x03,0x43,0xe0,
27821
+0x00,0x03,0x44,0x14,0x00,0x03,0x44,0x50,0x00,0x03,0x44,0x74,
27822
+0x00,0x03,0x44,0xa0,0x00,0x03,0x44,0xcc,0x00,0x03,0x45,0x00,
27823
+0x00,0x03,0x45,0x2c,0x00,0x03,0x45,0x60,0x00,0x03,0x45,0x94,
27824
+0x00,0x03,0x45,0xd0,0x00,0x03,0x45,0xfc,0x00,0x03,0x46,0x30,
27825
+0x00,0x03,0x46,0x64,0x00,0x03,0x46,0xa0,0x00,0x03,0x46,0xd4,
27826
+0x00,0x03,0x47,0x10,0x00,0x03,0x47,0x4c,0x00,0x03,0x47,0x90,
27827
+0x00,0x03,0x47,0xb4,0x00,0x03,0x47,0xe0,0x00,0x03,0x48,0x0c,
27828
+0x00,0x03,0x48,0x40,0x00,0x03,0x48,0x6c,0x00,0x03,0x48,0xa0,
27829
+0x00,0x03,0x48,0xd4,0x00,0x03,0x49,0x10,0x00,0x03,0x49,0x3c,
27830
+0x00,0x03,0x49,0x70,0x00,0x03,0x49,0xa4,0x00,0x03,0x49,0xe0,
27831
+0x00,0x03,0x4a,0x14,0x00,0x03,0x4a,0x50,0x00,0x03,0x4a,0x8c,
27832
+0x00,0x03,0x4a,0xd0,0x00,0x03,0x4a,0xfc,0x00,0x03,0x4b,0x30,
27833
+0x00,0x03,0x4b,0x64,0x00,0x03,0x4b,0xa0,0x00,0x03,0x4b,0xd4,
27834
+0x00,0x03,0x4c,0x10,0x00,0x03,0x4c,0x4c,0x00,0x03,0x4c,0x90,
27835
+0x00,0x03,0x4c,0xc4,0x00,0x03,0x4d,0x00,0x00,0x03,0x4d,0x3c,
27836
+0x00,0x03,0x4d,0x80,0x00,0x03,0x4d,0xbc,0x00,0x03,0x4e,0x00,
27837
+0x00,0x03,0x4e,0x44,0x00,0x03,0x4e,0x90,0x00,0x03,0x4e,0xf0,
27838
+0x00,0x03,0x4f,0x64,0x00,0x03,0x4f,0xc0,0x00,0x03,0x50,0x1c,
27839
+0x00,0x03,0x50,0x94,0x00,0x03,0x50,0xec,0x00,0x03,0x51,0x34,
27840
+0x00,0x03,0x51,0x7c,0x00,0x03,0x51,0xc4,0x00,0x03,0x52,0x08,
27841
+0x00,0x03,0x52,0x4c,0x00,0x03,0x52,0x90,0x00,0x03,0x52,0xcc,
27842
+0x00,0x03,0x53,0x08,0x00,0x03,0x53,0x50,0x00,0x03,0x53,0x98,
27843
+0x00,0x03,0x54,0x14,0x00,0x03,0x54,0xd0,0x00,0x03,0x55,0x0c,
27844
+0x00,0x03,0x55,0x48,0x00,0x03,0x55,0xa8,0x00,0x03,0x56,0x1c,
27845
+0x00,0x03,0x56,0x80,0x00,0x03,0x56,0xf8,0x00,0x03,0x57,0x80,
27846
+0x00,0x03,0x57,0xb4,0x00,0x03,0x57,0xe8,0x00,0x03,0x58,0x38,
27847
+0x00,0x03,0x58,0x88,0x00,0x03,0x58,0xcc,0x00,0x03,0x59,0x10,
27848
+0x00,0x03,0x59,0x5c,0x00,0x03,0x59,0xa8,0x00,0x03,0x59,0xf4,
27849
+0x00,0x03,0x5a,0x40,0x00,0x03,0x5a,0x90,0x00,0x03,0x5a,0xe0,
27850
+0x00,0x03,0x5b,0x30,0x00,0x03,0x5b,0x80,0x00,0x03,0x5b,0xf0,
27851
+0x00,0x03,0x5c,0x60,0x00,0x03,0x5c,0xd0,0x00,0x03,0x5d,0x40,
27852
+0x00,0x03,0x5d,0x84,0x00,0x03,0x5d,0xcc,0x00,0x03,0x5e,0x3c,
27853
+0x00,0x03,0x5e,0xac,0x00,0x03,0x5f,0x04,0x00,0x03,0x5f,0x5c,
27854
+0x00,0x03,0x5f,0xcc,0x00,0x03,0x60,0x3c,0x00,0x03,0x60,0x98,
27855
+0x00,0x03,0x60,0xdc,0x00,0x03,0x61,0x20,0x00,0x03,0x61,0x64,
27856
+0x00,0x03,0x61,0xac,0x00,0x03,0x62,0x00,0x00,0x03,0x62,0x58,
27857
+0x00,0x03,0x62,0xb0,0x00,0x03,0x63,0x04,0x00,0x03,0x63,0x68,
27858
+0x00,0x03,0x63,0xdc,0x00,0x03,0x64,0x38,0x00,0x03,0x64,0x94,
27859
+0x00,0x03,0x65,0x1c,0x00,0x03,0x65,0xa4,0x00,0x03,0x65,0xf8,
27860
+0x00,0x03,0x66,0x50,0x00,0x03,0x66,0xa8,0x00,0x03,0x66,0xf8,
27861
+0x00,0x03,0x67,0x48,0x00,0x03,0x67,0xa4,0x00,0x03,0x68,0x48,
27862
+0x00,0x03,0x68,0xc4,0x00,0x03,0x68,0xf4,0x00,0x03,0x69,0x24,
27863
+0x00,0x03,0x69,0x58,0x00,0x03,0x69,0x88,0x00,0x03,0x69,0xb8,
27864
+0x00,0x03,0x69,0xe8,0x00,0x03,0x6a,0x1c,0x00,0x03,0x6a,0x4c,
27865
+0x00,0x03,0x6a,0x7c,0x00,0x03,0x6a,0xac,0x00,0x03,0x6a,0xdc,
27866
+0x00,0x03,0x6b,0x0c,0x00,0x03,0x6b,0x3c,0x00,0x03,0x6b,0x6c,
27867
+0x00,0x03,0x6b,0x9c,0x00,0x03,0x6b,0xcc,0x00,0x03,0x6b,0xfc,
27868
+0x00,0x03,0x6c,0x2c,0x00,0x03,0x6c,0x60,0x00,0x03,0x6c,0x90,
27869
+0x00,0x03,0x6c,0xc0,0x00,0x03,0x6c,0xf4,0x00,0x03,0x6d,0x24,
27870
+0x00,0x03,0x6d,0x54,0x00,0x03,0x6d,0x70,0x00,0x03,0x6d,0x8c,
27871
+0x00,0x03,0x6d,0xa8,0x00,0x03,0x6d,0xc4,0x00,0x03,0x6e,0x00,
27872
+0x00,0x03,0x6e,0x3c,0x00,0x03,0x6e,0x78,0x00,0x03,0x6e,0xb4,
27873
+0x00,0x03,0x6e,0xe8,0x00,0x03,0x6f,0x18,0x00,0x03,0x6f,0x48,
27874
+0x00,0x03,0x6f,0x7c,0x00,0x03,0x6f,0x98,0x00,0x03,0x6f,0xb4,
27875
+0x00,0x03,0x6f,0xec,0x00,0x03,0x70,0x38,0x00,0x03,0x70,0xa0,
27876
+0x00,0x03,0x71,0x08,0x00,0x03,0x71,0x70,0x00,0x03,0x72,0x0c,
27877
+0x00,0x03,0x72,0x5c,0x00,0x03,0x72,0xac,0x00,0x03,0x72,0xf8,
27878
+0x00,0x03,0x73,0x58,0x00,0x03,0x73,0xd8,0x00,0x03,0x74,0x38,
27879
+0x00,0x03,0x74,0x90,0x00,0x03,0x74,0xe8,0x00,0x03,0x75,0x40,
27880
+0x00,0x03,0x75,0x98,0x00,0x03,0x75,0xb8,0x00,0x03,0x75,0xe0,
27881
+0x00,0x03,0x76,0x6c,0x00,0x03,0x77,0x0c,0x00,0x03,0x77,0x1c,
27882
+0x00,0x03,0x77,0x34,0x00,0x03,0x77,0x54,0x00,0x03,0x77,0xa8,
27883
+0x00,0x03,0x77,0xf8,0x00,0x03,0x78,0x4c,0x00,0x03,0x78,0xa0,
27884
+0x00,0x03,0x79,0x00,0x00,0x03,0x79,0x30,0x00,0x03,0x79,0x5c,
27885
+0x00,0x03,0x79,0x8c,0x00,0x03,0x79,0xc0,0x00,0x03,0x79,0xf4,
27886
+0x00,0x03,0x7a,0x28,0x00,0x03,0x7a,0x5c,0x00,0x03,0x7a,0x9c,
27887
+0x00,0x03,0x7a,0xdc,0x00,0x03,0x7b,0x14,0x00,0x03,0x7b,0x4c,
27888
+0x00,0x03,0x7b,0x84,0x00,0x03,0x7b,0xbc,0x00,0x03,0x7b,0xe8,
27889
+0x00,0x03,0x7c,0x14,0x00,0x03,0x7c,0x40,0x00,0x03,0x7c,0x68,
27890
+0x00,0x03,0x7c,0x98,0x00,0x03,0x7c,0xc8,0x00,0x03,0x7c,0xf8,
27891
+0x00,0x03,0x7d,0x28,0x00,0x03,0x7d,0xd4,0x00,0x03,0x7e,0x2c,
27892
+0x00,0x03,0x7e,0x78,0x00,0x03,0x7e,0xdc,0x00,0x03,0x7f,0x6c,
27893
+0x00,0x03,0x7f,0xc8,0x00,0x03,0x80,0x2c,0x00,0x03,0x80,0x88,
27894
+0x00,0x03,0x80,0xec,0x00,0x03,0x81,0x28,0x00,0x03,0x81,0x64,
27895
+0x00,0x03,0x81,0xf8,0x00,0x03,0x82,0x64,0x00,0x03,0x82,0xb0,
27896
+0x00,0x03,0x83,0x44,0x00,0x03,0x83,0x98,0x00,0x03,0x84,0x10,
27897
+0x00,0x03,0x84,0x78,0x00,0x03,0x84,0xbc,0x00,0x03,0x84,0xfc,
27898
+0x00,0x03,0x85,0xa0,0x00,0x03,0x86,0x0c,0x00,0x03,0x86,0x80,
27899
+0x00,0x03,0x86,0xcc,0x00,0x03,0x86,0xe0,0x00,0x03,0x87,0x1c,
27900
+0x00,0x03,0x87,0xd4,0x00,0x03,0x88,0x50,0x00,0x03,0x88,0xb8,
27901
+0x00,0x03,0x89,0x34,0x00,0x03,0x89,0xb8,0x00,0x03,0x8a,0x44,
27902
+0x00,0x03,0x8a,0xa0,0x00,0x03,0x8b,0x1c,0x00,0x03,0x8b,0x8c,
27903
+0x00,0x03,0x8c,0x04,0x00,0x03,0x8c,0x54,0x00,0x03,0x8c,0xb8,
27904
+0x00,0x03,0x8d,0x38,0x00,0x03,0x8d,0xb8,0x00,0x03,0x8e,0x20,
27905
+0x00,0x03,0x8e,0x98,0x00,0x03,0x8e,0xec,0x00,0x03,0x8f,0x64,
27906
+0x00,0x03,0x8f,0xe0,0x00,0x03,0x90,0x38,0x00,0x03,0x90,0xa4,
27907
+0x00,0x03,0x91,0x28,0x00,0x03,0x91,0xc4,0x00,0x03,0x92,0x48,
27908
+0x00,0x03,0x92,0x9c,0x00,0x03,0x92,0xf4,0x00,0x03,0x93,0x4c,
27909
+0x00,0x03,0x93,0xac,0x00,0x03,0x94,0x04,0x00,0x03,0x94,0x74,
27910
+0x00,0x03,0x94,0xf4,0x00,0x03,0x95,0x74,0x00,0x03,0x95,0xd8,
27911
+0x00,0x03,0x96,0x4c,0x00,0x03,0x96,0xc4,0x00,0x03,0x97,0x1c,
27912
+0x00,0x03,0x97,0x78,0x00,0x03,0x97,0xd4,0x00,0x03,0x98,0x44,
27913
+0x00,0x03,0x98,0xe8,0x00,0x03,0x99,0x68,0x00,0x03,0x99,0x80,
27914
+0x00,0x03,0x99,0xa0,0x00,0x03,0x99,0xc0,0x00,0x03,0x99,0xe0,
27915
+0x00,0x03,0x9a,0x00,0x00,0x03,0x9a,0x68,0x00,0x03,0x9a,0x78,
27916
+0x00,0x03,0x9a,0x88,0x00,0x03,0x9a,0x98,0x00,0x03,0x9a,0xa8,
27917
+0x00,0x03,0x9a,0xc0,0x00,0x03,0x9b,0x30,0x00,0x03,0x9b,0xc0,
27918
+0x00,0x03,0x9c,0x38,0x00,0x03,0x9c,0xac,0x00,0x03,0x9d,0x4c,
27919
+0x00,0x03,0x9d,0x74,0x00,0x03,0x9d,0x9c,0x00,0x03,0x9d,0xc4,
27920
+0x00,0x03,0x9d,0xec,0x00,0x03,0x9e,0x14,0x00,0x03,0x9e,0x3c,
27921
+0x00,0x03,0x9e,0x64,0x00,0x03,0x9e,0x8c,0x00,0x03,0x9e,0xb4,
27922
+0x00,0x03,0x9e,0xd8,0x00,0x03,0x9e,0xf8,0x00,0x03,0x9f,0x1c,
27923
+0x00,0x03,0x9f,0x40,0x00,0x03,0x9f,0x64,0x00,0x03,0x9f,0x84,
27924
+0x00,0x03,0x9f,0xb4,0x00,0x03,0x9f,0xe4,0x00,0x03,0xa0,0x24,
27925
+0x00,0x03,0xa0,0x64,0x00,0x03,0xa0,0x78,0x00,0x03,0xa0,0xe0,
27926
+0x00,0x03,0xa1,0x50,0x00,0x03,0xa1,0xd8,0x00,0x03,0xa2,0x84,
27927
+0x00,0x03,0xa3,0x0c,0x00,0x03,0xa3,0x84,0x00,0x03,0xa3,0xdc,
27928
+0x00,0x03,0xa4,0x34,0x00,0x03,0xa4,0xc0,0x00,0x03,0xa5,0x4c,
27929
+0x00,0x03,0xa5,0x94,0x00,0x03,0xa6,0x18,0x00,0x03,0xa6,0x94,
27930
+0x00,0x03,0xa7,0x70,0x00,0x03,0xa8,0x0c,0x00,0x03,0xa8,0xb8,
27931
+0x00,0x03,0xa9,0x30,0x00,0x03,0xa9,0xd8,0x00,0x03,0xaa,0x2c,
27932
+0x00,0x03,0xaa,0xb4,0x00,0x03,0xab,0x28,0x00,0x03,0xab,0xc4,
27933
+0x00,0x03,0xac,0x3c,0x00,0x03,0xac,0xf8,0x00,0x03,0xad,0x08,
27934
+0x00,0x03,0xad,0x18,0x00,0x03,0xad,0x28,0x00,0x03,0xad,0x38,
27935
+0x00,0x03,0xad,0x78,0x00,0x03,0xad,0xac,0x00,0x03,0xae,0x4c,
27936
+0x00,0x03,0xae,0xcc,0x00,0x03,0xaf,0xa8,0x00,0x03,0xb0,0x40,
27937
+0x00,0x03,0xb0,0x8c,0x00,0x03,0xb0,0xd8,0x00,0x03,0xb1,0x20,
27938
+0x00,0x03,0xb1,0x70,0x00,0x03,0xb1,0xa4,0x00,0x03,0xb1,0xcc,
27939
+0x00,0x03,0xb2,0x28,0x00,0x03,0xb2,0x7c,0x00,0x03,0xb2,0xb8,
27940
+0x00,0x03,0xb3,0x00,0x00,0x03,0xb3,0x64,0x00,0x03,0xb3,0xb4,
27941
+0x00,0x03,0xb3,0xd4,0x00,0x03,0xb4,0x00,0x00,0x03,0xb4,0x10,
27942
+0x00,0x03,0xb4,0x64,0x00,0x03,0xb4,0xc4,0x00,0x03,0xb5,0x30,
27943
+0x00,0x03,0xb5,0xa0,0x00,0x03,0xb6,0x34,0x00,0x03,0xb6,0x80,
27944
+0x00,0x03,0xb6,0xc8,0x00,0x03,0xb7,0x20,0x00,0x03,0xb7,0x78,
27945
+0x00,0x03,0xb7,0xa4,0x00,0x03,0xb8,0x04,0x00,0x03,0xb8,0xa0,
27946
+0x00,0x03,0xb9,0x60,0x00,0x03,0xba,0x3c,0x00,0x03,0xbb,0x58,
27947
+0x00,0x03,0xbc,0x0c,0x00,0x03,0xbc,0xf0,0x00,0x03,0xbe,0x00,
27948
+0x00,0x03,0xbe,0xe4,0x00,0x03,0xbf,0x78,0x00,0x03,0xc0,0x4c,
27949
+0x00,0x03,0xc1,0xa0,0x00,0x03,0xc2,0x5c,0x00,0x03,0xc3,0x40,
27950
+0x00,0x03,0xc4,0x3c,0x00,0x03,0xc5,0x04,0x00,0x03,0xc5,0xec,
27951
+0x00,0x03,0xc7,0x10,0x00,0x03,0xc7,0xe0,0x00,0x03,0xc9,0x14,
27952
+0x00,0x03,0xca,0x40,0x00,0x03,0xcb,0x5c,0x00,0x03,0xcc,0x1c,
27953
+0x00,0x03,0xcd,0x18,0x00,0x03,0xcd,0xc8,0x00,0x03,0xce,0xa8,
27954
+0x00,0x03,0xcf,0x60,0x00,0x03,0xd0,0x64,0x00,0x03,0xd1,0x04,
27955
+0x00,0x03,0xd1,0xe4,0x00,0x03,0xd3,0x68,0x00,0x03,0xd4,0x34,
27956
+0x00,0x03,0xd5,0xcc,0x00,0x03,0xd6,0xf8,0x00,0x03,0xd8,0x24,
27957
+0x00,0x03,0xd8,0xe4,0x00,0x03,0xd9,0xd8,0x00,0x03,0xda,0xf0,
27958
+0x00,0x03,0xdb,0xc8,0x00,0x03,0xdc,0xbc,0x00,0x03,0xdd,0x54,
27959
+0x00,0x03,0xdd,0xe4,0x00,0x03,0xde,0x88,0x00,0x03,0xdf,0x30,
27960
+0x00,0x03,0xe0,0x3c,0x00,0x03,0xe1,0x20,0x00,0x03,0xe1,0xf0,
27961
+0x00,0x03,0xe3,0x20,0x00,0x03,0xe4,0x30,0x00,0x03,0xe4,0xb4,
27962
+0x00,0x03,0xe5,0xa0,0x00,0x03,0xe5,0xa0,0x00,0x03,0xe5,0xa0,
27963
+0x00,0x03,0xe5,0xa0,0x00,0x03,0xe5,0xa0,0x00,0x03,0xe5,0xa0,
27964
+0x00,0x03,0xe5,0xa0,0x00,0x03,0xe5,0xa0,0x00,0x03,0xe5,0xa0,
27965
+0x00,0x03,0xe5,0xa0,0x00,0x03,0xe5,0xa0,0x00,0x03,0xe5,0xa0,
27966
+0x00,0x03,0xe5,0xa0,0x00,0x03,0xe5,0xa0,0x00,0x03,0xe5,0xa0,
27967
+0x00,0x03,0xe5,0xa0,0x00,0x03,0xe5,0xa0,0x00,0x03,0xe5,0xa0,
27968
+0x00,0x03,0xe5,0xa0,0x00,0x03,0xe5,0xa0,0x00,0x03,0xe5,0xa0,
27969
+0x00,0x03,0xe6,0x1c,0x00,0x03,0xe6,0x6c,0x00,0x03,0xe6,0xec,
27970
+0x00,0x03,0xe7,0x5c,0x00,0x03,0xe7,0xb8,0x00,0x03,0xe8,0x10,
27971
+0x00,0x03,0xe8,0x60,0x00,0x03,0xe8,0xd8,0x00,0x03,0xe9,0x38,
27972
+0x00,0x03,0xe9,0x68,0x00,0x03,0xe9,0xb4,0x00,0x03,0xea,0x10,
27973
+0x00,0x03,0xea,0x48,0x00,0x03,0xea,0xa8,0x00,0x03,0xea,0xf4,
27974
+0x00,0x03,0xeb,0x74,0x00,0x03,0xeb,0xd4,0x00,0x03,0xec,0x78,
27975
+0x00,0x03,0xec,0xf4,0x00,0x03,0xed,0x7c,0x00,0x03,0xed,0xbc,
27976
+0x00,0x03,0xee,0x1c,0x00,0x03,0xee,0x5c,0x00,0x03,0xee,0xac,
27977
+0x00,0x03,0xef,0x18,0x00,0x03,0xef,0x68,0x00,0x03,0xef,0xa4,
27978
+0x00,0x03,0xf0,0x14,0x00,0x03,0xf0,0x98,0x00,0x03,0xf1,0x0c,
27979
+0x00,0x03,0xf1,0x90,0x00,0x03,0xf2,0x0c,0x00,0x03,0xf2,0x80,
27980
+0x00,0x03,0xf3,0x20,0x00,0x03,0xf3,0x78,0x00,0x03,0xf3,0xf4,
27981
+0x00,0x03,0xf4,0x44,0x00,0x03,0xf4,0x6c,0x00,0x03,0xf5,0x00,
27982
+0x00,0x03,0xf5,0x64,0x00,0x03,0xf5,0xd8,0x00,0x03,0xf6,0x58,
27983
+0x00,0x03,0xf6,0xd8,0x00,0x03,0xf7,0x2c,0x00,0x03,0xf7,0xb8,
27984
+0x00,0x03,0xf8,0x1c,0x00,0x03,0xf8,0x80,0x00,0x03,0xf8,0xc4,
27985
+0x00,0x03,0xf9,0x24,0x00,0x03,0xf9,0x68,0x00,0x03,0xf9,0xd4,
27986
+0x00,0x03,0xfa,0x58,0x00,0x03,0xfa,0xb4,0x00,0x03,0xfb,0x94,
27987
+0x00,0x03,0xfc,0x24,0x00,0x03,0xfc,0x7c,0x00,0x03,0xfc,0xd0,
27988
+0x00,0x03,0xfd,0x80,0x00,0x03,0xfd,0xb8,0x00,0x03,0xfe,0x18,
27989
+0x00,0x03,0xfe,0x8c,0x00,0x03,0xfe,0xcc,0x00,0x03,0xff,0x44,
27990
+0x00,0x04,0x00,0x24,0x00,0x04,0x00,0xf8,0x00,0x04,0x01,0x40,
27991
+0x00,0x04,0x01,0xc0,0x00,0x04,0x02,0x14,0x00,0x04,0x02,0x94,
27992
+0x00,0x04,0x03,0x0c,0x00,0x04,0x03,0x70,0x00,0x04,0x04,0x24,
27993
+0x00,0x04,0x04,0xd0,0x00,0x04,0x05,0x54,0x00,0x04,0x05,0xfc,
27994
+0x00,0x04,0x06,0x90,0x00,0x04,0x07,0x00,0x00,0x04,0x07,0xd0,
27995
+0x00,0x04,0x08,0x60,0x00,0x04,0x08,0xdc,0x00,0x04,0x09,0x78,
27996
+0x00,0x04,0x09,0xec,0x00,0x04,0x0a,0x20,0x00,0x04,0x0b,0x04,
27997
+0x00,0x04,0x0b,0x94,0x00,0x04,0x0c,0x34,0x00,0x04,0x0c,0xdc,
27998
+0x00,0x04,0x0d,0x8c,0x00,0x04,0x0d,0xec,0x00,0x04,0x0e,0xe4,
27999
+0x00,0x04,0x0f,0x58,0x00,0x04,0x0f,0xdc,0x00,0x04,0x10,0x2c,
28000
+0x00,0x04,0x10,0xa4,0x00,0x04,0x11,0x18,0x00,0x04,0x11,0x88,
28001
+0x00,0x04,0x11,0xd4,0x00,0x04,0x11,0xfc,0x00,0x04,0x12,0x40,
28002
+0x00,0x04,0x12,0xdc,0x00,0x04,0x13,0x1c,0x00,0x04,0x13,0xb0,
28003
+0x00,0x04,0x14,0x88,0x00,0x04,0x14,0xe0,0x00,0x04,0x15,0x7c,
28004
+0x00,0x04,0x16,0x40,0x00,0x04,0x16,0x7c,0x00,0x04,0x17,0x88,
28005
+0x00,0x04,0x18,0x4c,0x00,0x04,0x18,0x84,0x00,0x04,0x19,0x3c,
28006
+0x00,0x04,0x19,0xa8,0x00,0x04,0x1b,0x0c,0x00,0x04,0x1b,0x7c,
28007
+0x00,0x04,0x1c,0x14,0x00,0x04,0x1c,0x9c,0x00,0x04,0x1c,0xd0,
28008
+0x00,0x04,0x1d,0x54,0x00,0x04,0x1d,0xb0,0x00,0x04,0x1d,0xdc,
28009
+0x00,0x04,0x1e,0x0c,0x00,0x04,0x1e,0x24,0x00,0x04,0x1e,0x60,
28010
+0x00,0x04,0x1e,0x94,0x00,0x04,0x1e,0xec,0x00,0x04,0x1f,0x04,
28011
+0x00,0x04,0x1f,0x1c,0x00,0x04,0x20,0x18,0x00,0x04,0x20,0x44,
28012
+0x00,0x04,0x20,0x60,0x00,0x04,0x20,0x7c,0x00,0x04,0x20,0x98,
28013
+0x00,0x04,0x20,0xb4,0x00,0x04,0x20,0xd0,0x00,0x04,0x20,0xec,
28014
+0x00,0x04,0x21,0x08,0x00,0x04,0x21,0x24,0x00,0x04,0x21,0x40,
28015
+0x00,0x04,0x21,0x5c,0x00,0x04,0x21,0x78,0x00,0x04,0x21,0x94,
28016
+0x00,0x04,0x21,0xb0,0x00,0x04,0x21,0xcc,0x00,0x04,0x21,0xe8,
28017
+0x00,0x04,0x22,0x04,0x00,0x04,0x22,0x20,0x00,0x04,0x22,0x3c,
28018
+0x00,0x04,0x22,0x58,0x00,0x04,0x22,0x74,0x00,0x04,0x22,0x8c,
28019
+0x00,0x04,0x23,0x40,0x00,0x04,0x23,0xa0,0x00,0x04,0x23,0xdc,
28020
+0x00,0x04,0x24,0x40,0x00,0x04,0x24,0x6c,0x00,0x04,0x24,0xd8,
28021
+0x00,0x04,0x25,0x34,0x00,0x04,0x25,0x70,0x00,0x04,0x25,0xec,
28022
+0x00,0x04,0x26,0x54,0x00,0x04,0x26,0xb8,0x00,0x04,0x27,0x5c,
28023
+0x00,0x04,0x27,0x70,0x00,0x04,0x27,0xe4,0x00,0x04,0x28,0xac,
28024
+0x00,0x04,0x29,0x24,0x00,0x04,0x29,0xb0,0x00,0x04,0x2a,0x3c,
28025
+0x00,0x04,0x2a,0xe4,0x00,0x04,0x2b,0x2c,0x00,0x04,0x2b,0x74,
28026
+0x00,0x04,0x2b,0xd0,0x00,0x04,0x2c,0x50,0x00,0x04,0x2c,0x68,
28027
+0x00,0x04,0x2c,0x88,0x00,0x04,0x2c,0xb0,0x00,0x04,0x2d,0x44,
28028
+0x00,0x04,0x2d,0xf4,0x00,0x04,0x2e,0x10,0x00,0x04,0x2e,0x30,
28029
+0x00,0x04,0x2e,0x4c,0x00,0x04,0x2e,0x64,0x00,0x04,0x2e,0x84,
28030
+0x00,0x04,0x2e,0xa0,0x00,0x04,0x2e,0xb8,0x00,0x04,0x2e,0xd8,
28031
+0x00,0x04,0x2f,0x00,0x00,0x01,0x00,0x00,0x0d,0xc5,0x02,0x09,
28032
+0x00,0x2b,0x00,0x98,0x00,0x08,0x00,0x02,0x00,0x10,0x00,0x99,
28033
+0x00,0x07,0x00,0x00,0x04,0x0b,0x01,0xf3,0x00,0x08,0x00,0x04,
28034
+0x00,0x00,0x00,0x1a,0x01,0x3e,0x00,0x01,0x00,0x00,0x00,0x00,
28035
+0x00,0x00,0x00,0x5f,0x00,0xc0,0x00,0x01,0x00,0x00,0x00,0x00,
28036
+0x00,0x01,0x00,0x0c,0x01,0x3a,0x00,0x01,0x00,0x00,0x00,0x00,
28037
+0x00,0x02,0x00,0x04,0x01,0x51,0x00,0x01,0x00,0x00,0x00,0x00,
28038
+0x00,0x03,0x00,0x0c,0x01,0x70,0x00,0x01,0x00,0x00,0x00,0x00,
28039
+0x00,0x04,0x00,0x0c,0x01,0x97,0x00,0x01,0x00,0x00,0x00,0x00,
28040
+0x00,0x05,0x00,0x0c,0x01,0xbe,0x00,0x01,0x00,0x00,0x00,0x00,
28041
+0x00,0x06,0x00,0x0b,0x01,0xe3,0x00,0x01,0x00,0x00,0x00,0x00,
28042
+0x00,0x08,0x00,0x11,0x02,0x13,0x00,0x01,0x00,0x00,0x00,0x00,
28043
+0x00,0x0b,0x00,0x1d,0x02,0x61,0x00,0x01,0x00,0x00,0x00,0x00,
28044
+0x00,0x0d,0x09,0x93,0x15,0xa7,0x00,0x01,0x00,0x00,0x00,0x00,
28045
+0x00,0x0e,0x00,0x34,0x1f,0xa5,0x00,0x01,0x00,0x00,0x00,0x00,
28046
+0x00,0x10,0x00,0x0c,0x1f,0xf4,0x00,0x01,0x00,0x00,0x00,0x00,
28047
+0x00,0x11,0x00,0x04,0x20,0x0b,0x00,0x03,0x00,0x01,0x04,0x09,
28048
+0x00,0x00,0x00,0xbe,0x00,0x00,0x00,0x03,0x00,0x01,0x04,0x09,
28049
+0x00,0x01,0x00,0x18,0x01,0x20,0x00,0x03,0x00,0x01,0x04,0x09,
28050
+0x00,0x02,0x00,0x08,0x01,0x47,0x00,0x03,0x00,0x01,0x04,0x09,
28051
+0x00,0x03,0x00,0x18,0x01,0x56,0x00,0x03,0x00,0x01,0x04,0x09,
28052
+0x00,0x04,0x00,0x18,0x01,0x7d,0x00,0x03,0x00,0x01,0x04,0x09,
28053
+0x00,0x05,0x00,0x18,0x01,0xa4,0x00,0x03,0x00,0x01,0x04,0x09,
28054
+0x00,0x06,0x00,0x16,0x01,0xcb,0x00,0x03,0x00,0x01,0x04,0x09,
28055
+0x00,0x08,0x00,0x22,0x01,0xef,0x00,0x03,0x00,0x01,0x04,0x09,
28056
+0x00,0x0b,0x00,0x3a,0x02,0x25,0x00,0x03,0x00,0x01,0x04,0x09,
28057
+0x00,0x0d,0x13,0x26,0x02,0x7f,0x00,0x03,0x00,0x01,0x04,0x09,
28058
+0x00,0x0e,0x00,0x68,0x1f,0x3b,0x00,0x03,0x00,0x01,0x04,0x09,
28059
+0x00,0x10,0x00,0x18,0x1f,0xda,0x00,0x03,0x00,0x01,0x04,0x09,
28060
+0x00,0x11,0x00,0x08,0x20,0x01,0x00,0x43,0x00,0x6f,0x00,0x70,
28061
+0x00,0x79,0x00,0x72,0x00,0x69,0x00,0x67,0x00,0x68,0x00,0x74,
28062
+0x00,0x20,0x00,0x28,0x00,0x63,0x00,0x29,0x00,0x20,0x00,0x32,
28063
+0x00,0x30,0x00,0x30,0x00,0x33,0x00,0x20,0x00,0x62,0x00,0x79,
28064
+0x00,0x20,0x00,0x42,0x00,0x69,0x00,0x74,0x00,0x73,0x00,0x74,
28065
+0x00,0x72,0x00,0x65,0x00,0x61,0x00,0x6d,0x00,0x2c,0x00,0x20,
28066
+0x00,0x49,0x00,0x6e,0x00,0x63,0x00,0x2e,0x00,0x20,0x00,0x41,
28067
+0x00,0x6c,0x00,0x6c,0x00,0x20,0x00,0x52,0x00,0x69,0x00,0x67,
28068
+0x00,0x68,0x00,0x74,0x00,0x73,0x00,0x20,0x00,0x52,0x00,0x65,
28069
+0x00,0x73,0x00,0x65,0x00,0x72,0x00,0x76,0x00,0x65,0x00,0x64,
28070
+0x00,0x2e,0x00,0x0a,0x00,0x44,0x00,0x65,0x00,0x6a,0x00,0x61,
28071
+0x00,0x56,0x00,0x75,0x00,0x20,0x00,0x63,0x00,0x68,0x00,0x61,
28072
+0x00,0x6e,0x00,0x67,0x00,0x65,0x00,0x73,0x00,0x20,0x00,0x61,
28073
+0x00,0x72,0x00,0x65,0x00,0x20,0x00,0x69,0x00,0x6e,0x00,0x20,
28074
+0x00,0x70,0x00,0x75,0x00,0x62,0x00,0x6c,0x00,0x69,0x00,0x63,
28075
+0x00,0x20,0x00,0x64,0x00,0x6f,0x00,0x6d,0x00,0x61,0x00,0x69,
28076
+0x00,0x6e,0x00,0x0a,0x00,0x00,0x43,0x6f,0x70,0x79,0x72,0x69,
28077
+0x67,0x68,0x74,0x20,0x28,0x63,0x29,0x20,0x32,0x30,0x30,0x33,
28078
+0x20,0x62,0x79,0x20,0x42,0x69,0x74,0x73,0x74,0x72,0x65,0x61,
28079
+0x6d,0x2c,0x20,0x49,0x6e,0x63,0x2e,0x20,0x41,0x6c,0x6c,0x20,
28080
+0x52,0x69,0x67,0x68,0x74,0x73,0x20,0x52,0x65,0x73,0x65,0x72,
28081
+0x76,0x65,0x64,0x2e,0x0a,0x44,0x65,0x6a,0x61,0x56,0x75,0x20,
28082
+0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x20,0x61,0x72,0x65,0x20,
28083
+0x69,0x6e,0x20,0x70,0x75,0x62,0x6c,0x69,0x63,0x20,0x64,0x6f,
28084
+0x6d,0x61,0x69,0x6e,0x0a,0x00,0x00,0x44,0x00,0x65,0x00,0x6a,
28085
+0x00,0x61,0x00,0x56,0x00,0x75,0x00,0x20,0x00,0x53,0x00,0x65,
28086
+0x00,0x72,0x00,0x69,0x00,0x66,0x00,0x00,0x44,0x65,0x6a,0x61,
28087
+0x56,0x75,0x20,0x53,0x65,0x72,0x69,0x66,0x00,0x00,0x42,0x00,
28088
+0x6f,0x00,0x6f,0x00,0x6b,0x00,0x00,0x42,0x6f,0x6f,0x6b,0x00,
28089
+0x00,0x44,0x00,0x65,0x00,0x6a,0x00,0x61,0x00,0x56,0x00,0x75,
28090
+0x00,0x20,0x00,0x53,0x00,0x65,0x00,0x72,0x00,0x69,0x00,0x66,
28091
+0x00,0x00,0x44,0x65,0x6a,0x61,0x56,0x75,0x20,0x53,0x65,0x72,
28092
+0x69,0x66,0x00,0x00,0x44,0x00,0x65,0x00,0x6a,0x00,0x61,0x00,
28093
+0x56,0x00,0x75,0x00,0x20,0x00,0x53,0x00,0x65,0x00,0x72,0x00,
28094
+0x69,0x00,0x66,0x00,0x00,0x44,0x65,0x6a,0x61,0x56,0x75,0x20,
28095
+0x53,0x65,0x72,0x69,0x66,0x00,0x00,0x56,0x00,0x65,0x00,0x72,
28096
+0x00,0x73,0x00,0x69,0x00,0x6f,0x00,0x6e,0x00,0x20,0x00,0x32,
28097
+0x00,0x2e,0x00,0x33,0x00,0x35,0x00,0x00,0x56,0x65,0x72,0x73,
28098
+0x69,0x6f,0x6e,0x20,0x32,0x2e,0x33,0x35,0x00,0x00,0x44,0x00,
28099
+0x65,0x00,0x6a,0x00,0x61,0x00,0x56,0x00,0x75,0x00,0x53,0x00,
28100
+0x65,0x00,0x72,0x00,0x69,0x00,0x66,0x00,0x00,0x44,0x65,0x6a,
28101
+0x61,0x56,0x75,0x53,0x65,0x72,0x69,0x66,0x00,0x00,0x44,0x00,
28102
+0x65,0x00,0x6a,0x00,0x61,0x00,0x56,0x00,0x75,0x00,0x20,0x00,
28103
+0x66,0x00,0x6f,0x00,0x6e,0x00,0x74,0x00,0x73,0x00,0x20,0x00,
28104
+0x74,0x00,0x65,0x00,0x61,0x00,0x6d,0x00,0x00,0x44,0x65,0x6a,
28105
+0x61,0x56,0x75,0x20,0x66,0x6f,0x6e,0x74,0x73,0x20,0x74,0x65,
28106
+0x61,0x6d,0x00,0x00,0x68,0x00,0x74,0x00,0x74,0x00,0x70,0x00,
28107
+0x3a,0x00,0x2f,0x00,0x2f,0x00,0x64,0x00,0x65,0x00,0x6a,0x00,
28108
+0x61,0x00,0x76,0x00,0x75,0x00,0x2e,0x00,0x73,0x00,0x6f,0x00,
28109
+0x75,0x00,0x72,0x00,0x63,0x00,0x65,0x00,0x66,0x00,0x6f,0x00,
28110
+0x72,0x00,0x67,0x00,0x65,0x00,0x2e,0x00,0x6e,0x00,0x65,0x00,
28111
+0x74,0x00,0x00,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x64,0x65,
28112
+0x6a,0x61,0x76,0x75,0x2e,0x73,0x6f,0x75,0x72,0x63,0x65,0x66,
28113
+0x6f,0x72,0x67,0x65,0x2e,0x6e,0x65,0x74,0x00,0x00,0x46,0x00,
28114
+0x6f,0x00,0x6e,0x00,0x74,0x00,0x73,0x00,0x20,0x00,0x61,0x00,
28115
+0x72,0x00,0x65,0x00,0x20,0x00,0x28,0x00,0x63,0x00,0x29,0x00,
28116
+0x20,0x00,0x42,0x00,0x69,0x00,0x74,0x00,0x73,0x00,0x74,0x00,
28117
+0x72,0x00,0x65,0x00,0x61,0x00,0x6d,0x00,0x20,0x00,0x28,0x00,
28118
+0x73,0x00,0x65,0x00,0x65,0x00,0x20,0x00,0x62,0x00,0x65,0x00,
28119
+0x6c,0x00,0x6f,0x00,0x77,0x00,0x29,0x00,0x2e,0x00,0x20,0x00,
28120
+0x44,0x00,0x65,0x00,0x6a,0x00,0x61,0x00,0x56,0x00,0x75,0x00,
28121
+0x20,0x00,0x63,0x00,0x68,0x00,0x61,0x00,0x6e,0x00,0x67,0x00,
28122
+0x65,0x00,0x73,0x00,0x20,0x00,0x61,0x00,0x72,0x00,0x65,0x00,
28123
+0x20,0x00,0x69,0x00,0x6e,0x00,0x20,0x00,0x70,0x00,0x75,0x00,
28124
+0x62,0x00,0x6c,0x00,0x69,0x00,0x63,0x00,0x20,0x00,0x64,0x00,
28125
+0x6f,0x00,0x6d,0x00,0x61,0x00,0x69,0x00,0x6e,0x00,0x2e,0x00,
28126
+0x0a,0x00,0x0a,0x00,0x42,0x00,0x69,0x00,0x74,0x00,0x73,0x00,
28127
+0x74,0x00,0x72,0x00,0x65,0x00,0x61,0x00,0x6d,0x00,0x20,0x00,
28128
+0x56,0x00,0x65,0x00,0x72,0x00,0x61,0x00,0x20,0x00,0x46,0x00,
28129
+0x6f,0x00,0x6e,0x00,0x74,0x00,0x73,0x00,0x20,0x00,0x43,0x00,
28130
+0x6f,0x00,0x70,0x00,0x79,0x00,0x72,0x00,0x69,0x00,0x67,0x00,
28131
+0x68,0x00,0x74,0x00,0x0a,0x00,0x2d,0x00,0x2d,0x00,0x2d,0x00,
28132
+0x2d,0x00,0x2d,0x00,0x2d,0x00,0x2d,0x00,0x2d,0x00,0x2d,0x00,
28133
+0x2d,0x00,0x2d,0x00,0x2d,0x00,0x2d,0x00,0x2d,0x00,0x2d,0x00,
28134
+0x2d,0x00,0x2d,0x00,0x2d,0x00,0x2d,0x00,0x2d,0x00,0x2d,0x00,
28135
+0x2d,0x00,0x2d,0x00,0x2d,0x00,0x2d,0x00,0x2d,0x00,0x2d,0x00,
28136
+0x2d,0x00,0x2d,0x00,0x2d,0x00,0x0a,0x00,0x0a,0x00,0x43,0x00,
28137
+0x6f,0x00,0x70,0x00,0x79,0x00,0x72,0x00,0x69,0x00,0x67,0x00,
28138
+0x68,0x00,0x74,0x00,0x20,0x00,0x28,0x00,0x63,0x00,0x29,0x00,
28139
+0x20,0x00,0x32,0x00,0x30,0x00,0x30,0x00,0x33,0x00,0x20,0x00,
28140
+0x62,0x00,0x79,0x00,0x20,0x00,0x42,0x00,0x69,0x00,0x74,0x00,
28141
+0x73,0x00,0x74,0x00,0x72,0x00,0x65,0x00,0x61,0x00,0x6d,0x00,
28142
+0x2c,0x00,0x20,0x00,0x49,0x00,0x6e,0x00,0x63,0x00,0x2e,0x00,
28143
+0x20,0x00,0x41,0x00,0x6c,0x00,0x6c,0x00,0x20,0x00,0x52,0x00,
28144
+0x69,0x00,0x67,0x00,0x68,0x00,0x74,0x00,0x73,0x00,0x20,0x00,
28145
+0x52,0x00,0x65,0x00,0x73,0x00,0x65,0x00,0x72,0x00,0x76,0x00,
28146
+0x65,0x00,0x64,0x00,0x2e,0x00,0x20,0x00,0x42,0x00,0x69,0x00,
28147
+0x74,0x00,0x73,0x00,0x74,0x00,0x72,0x00,0x65,0x00,0x61,0x00,
28148
+0x6d,0x00,0x20,0x00,0x56,0x00,0x65,0x00,0x72,0x00,0x61,0x00,
28149
+0x20,0x00,0x69,0x00,0x73,0x00,0x20,0x00,0x61,0x00,0x20,0x00,
28150
+0x74,0x00,0x72,0x00,0x61,0x00,0x64,0x00,0x65,0x00,0x6d,0x00,
28151
+0x61,0x00,0x72,0x00,0x6b,0x00,0x20,0x00,0x6f,0x00,0x66,0x00,
28152
+0x20,0x00,0x42,0x00,0x69,0x00,0x74,0x00,0x73,0x00,0x74,0x00,
28153
+0x72,0x00,0x65,0x00,0x61,0x00,0x6d,0x00,0x2c,0x00,0x20,0x00,
28154
+0x49,0x00,0x6e,0x00,0x63,0x00,0x2e,0x00,0x0a,0x00,0x0a,0x00,
28155
+0x50,0x00,0x65,0x00,0x72,0x00,0x6d,0x00,0x69,0x00,0x73,0x00,
28156
+0x73,0x00,0x69,0x00,0x6f,0x00,0x6e,0x00,0x20,0x00,0x69,0x00,
28157
+0x73,0x00,0x20,0x00,0x68,0x00,0x65,0x00,0x72,0x00,0x65,0x00,
28158
+0x62,0x00,0x79,0x00,0x20,0x00,0x67,0x00,0x72,0x00,0x61,0x00,
28159
+0x6e,0x00,0x74,0x00,0x65,0x00,0x64,0x00,0x2c,0x00,0x20,0x00,
28160
+0x66,0x00,0x72,0x00,0x65,0x00,0x65,0x00,0x20,0x00,0x6f,0x00,
28161
+0x66,0x00,0x20,0x00,0x63,0x00,0x68,0x00,0x61,0x00,0x72,0x00,
28162
+0x67,0x00,0x65,0x00,0x2c,0x00,0x20,0x00,0x74,0x00,0x6f,0x00,
28163
+0x20,0x00,0x61,0x00,0x6e,0x00,0x79,0x00,0x20,0x00,0x70,0x00,
28164
+0x65,0x00,0x72,0x00,0x73,0x00,0x6f,0x00,0x6e,0x00,0x20,0x00,
28165
+0x6f,0x00,0x62,0x00,0x74,0x00,0x61,0x00,0x69,0x00,0x6e,0x00,
28166
+0x69,0x00,0x6e,0x00,0x67,0x00,0x20,0x00,0x61,0x00,0x20,0x00,
28167
+0x63,0x00,0x6f,0x00,0x70,0x00,0x79,0x00,0x20,0x00,0x6f,0x00,
28168
+0x66,0x00,0x20,0x00,0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00,
28169
+0x66,0x00,0x6f,0x00,0x6e,0x00,0x74,0x00,0x73,0x00,0x20,0x00,
28170
+0x61,0x00,0x63,0x00,0x63,0x00,0x6f,0x00,0x6d,0x00,0x70,0x00,
28171
+0x61,0x00,0x6e,0x00,0x79,0x00,0x69,0x00,0x6e,0x00,0x67,0x00,
28172
+0x20,0x00,0x74,0x00,0x68,0x00,0x69,0x00,0x73,0x00,0x20,0x00,
28173
+0x6c,0x00,0x69,0x00,0x63,0x00,0x65,0x00,0x6e,0x00,0x73,0x00,
28174
+0x65,0x00,0x20,0x00,0x28,0x00,0x22,0x00,0x46,0x00,0x6f,0x00,
28175
+0x6e,0x00,0x74,0x00,0x73,0x00,0x22,0x00,0x29,0x00,0x20,0x00,
28176
+0x61,0x00,0x6e,0x00,0x64,0x00,0x20,0x00,0x61,0x00,0x73,0x00,
28177
+0x73,0x00,0x6f,0x00,0x63,0x00,0x69,0x00,0x61,0x00,0x74,0x00,
28178
+0x65,0x00,0x64,0x00,0x20,0x00,0x64,0x00,0x6f,0x00,0x63,0x00,
28179
+0x75,0x00,0x6d,0x00,0x65,0x00,0x6e,0x00,0x74,0x00,0x61,0x00,
28180
+0x74,0x00,0x69,0x00,0x6f,0x00,0x6e,0x00,0x20,0x00,0x66,0x00,
28181
+0x69,0x00,0x6c,0x00,0x65,0x00,0x73,0x00,0x20,0x00,0x28,0x00,
28182
+0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00,0x22,0x00,0x46,0x00,
28183
+0x6f,0x00,0x6e,0x00,0x74,0x00,0x20,0x00,0x53,0x00,0x6f,0x00,
28184
+0x66,0x00,0x74,0x00,0x77,0x00,0x61,0x00,0x72,0x00,0x65,0x00,
28185
+0x22,0x00,0x29,0x00,0x2c,0x00,0x20,0x00,0x74,0x00,0x6f,0x00,
28186
+0x20,0x00,0x72,0x00,0x65,0x00,0x70,0x00,0x72,0x00,0x6f,0x00,
28187
+0x64,0x00,0x75,0x00,0x63,0x00,0x65,0x00,0x20,0x00,0x61,0x00,
28188
+0x6e,0x00,0x64,0x00,0x20,0x00,0x64,0x00,0x69,0x00,0x73,0x00,
28189
+0x74,0x00,0x72,0x00,0x69,0x00,0x62,0x00,0x75,0x00,0x74,0x00,
28190
+0x65,0x00,0x20,0x00,0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00,
28191
+0x46,0x00,0x6f,0x00,0x6e,0x00,0x74,0x00,0x20,0x00,0x53,0x00,
28192
+0x6f,0x00,0x66,0x00,0x74,0x00,0x77,0x00,0x61,0x00,0x72,0x00,
28193
+0x65,0x00,0x2c,0x00,0x20,0x00,0x69,0x00,0x6e,0x00,0x63,0x00,
28194
+0x6c,0x00,0x75,0x00,0x64,0x00,0x69,0x00,0x6e,0x00,0x67,0x00,
28195
+0x20,0x00,0x77,0x00,0x69,0x00,0x74,0x00,0x68,0x00,0x6f,0x00,
28196
+0x75,0x00,0x74,0x00,0x20,0x00,0x6c,0x00,0x69,0x00,0x6d,0x00,
28197
+0x69,0x00,0x74,0x00,0x61,0x00,0x74,0x00,0x69,0x00,0x6f,0x00,
28198
+0x6e,0x00,0x20,0x00,0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00,
28199
+0x72,0x00,0x69,0x00,0x67,0x00,0x68,0x00,0x74,0x00,0x73,0x00,
28200
+0x20,0x00,0x74,0x00,0x6f,0x00,0x20,0x00,0x75,0x00,0x73,0x00,
28201
+0x65,0x00,0x2c,0x00,0x20,0x00,0x63,0x00,0x6f,0x00,0x70,0x00,
28202
+0x79,0x00,0x2c,0x00,0x20,0x00,0x6d,0x00,0x65,0x00,0x72,0x00,
28203
+0x67,0x00,0x65,0x00,0x2c,0x00,0x20,0x00,0x70,0x00,0x75,0x00,
28204
+0x62,0x00,0x6c,0x00,0x69,0x00,0x73,0x00,0x68,0x00,0x2c,0x00,
28205
+0x20,0x00,0x64,0x00,0x69,0x00,0x73,0x00,0x74,0x00,0x72,0x00,
28206
+0x69,0x00,0x62,0x00,0x75,0x00,0x74,0x00,0x65,0x00,0x2c,0x00,
28207
+0x20,0x00,0x61,0x00,0x6e,0x00,0x64,0x00,0x2f,0x00,0x6f,0x00,
28208
+0x72,0x00,0x20,0x00,0x73,0x00,0x65,0x00,0x6c,0x00,0x6c,0x00,
28209
+0x20,0x00,0x63,0x00,0x6f,0x00,0x70,0x00,0x69,0x00,0x65,0x00,
28210
+0x73,0x00,0x20,0x00,0x6f,0x00,0x66,0x00,0x20,0x00,0x74,0x00,
28211
+0x68,0x00,0x65,0x00,0x20,0x00,0x46,0x00,0x6f,0x00,0x6e,0x00,
28212
+0x74,0x00,0x20,0x00,0x53,0x00,0x6f,0x00,0x66,0x00,0x74,0x00,
28213
+0x77,0x00,0x61,0x00,0x72,0x00,0x65,0x00,0x2c,0x00,0x20,0x00,
28214
+0x61,0x00,0x6e,0x00,0x64,0x00,0x20,0x00,0x74,0x00,0x6f,0x00,
28215
+0x20,0x00,0x70,0x00,0x65,0x00,0x72,0x00,0x6d,0x00,0x69,0x00,
28216
+0x74,0x00,0x20,0x00,0x70,0x00,0x65,0x00,0x72,0x00,0x73,0x00,
28217
+0x6f,0x00,0x6e,0x00,0x73,0x00,0x20,0x00,0x74,0x00,0x6f,0x00,
28218
+0x20,0x00,0x77,0x00,0x68,0x00,0x6f,0x00,0x6d,0x00,0x20,0x00,
28219
+0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00,0x46,0x00,0x6f,0x00,
28220
+0x6e,0x00,0x74,0x00,0x20,0x00,0x53,0x00,0x6f,0x00,0x66,0x00,
28221
+0x74,0x00,0x77,0x00,0x61,0x00,0x72,0x00,0x65,0x00,0x20,0x00,
28222
+0x69,0x00,0x73,0x00,0x20,0x00,0x66,0x00,0x75,0x00,0x72,0x00,
28223
+0x6e,0x00,0x69,0x00,0x73,0x00,0x68,0x00,0x65,0x00,0x64,0x00,
28224
+0x20,0x00,0x74,0x00,0x6f,0x00,0x20,0x00,0x64,0x00,0x6f,0x00,
28225
+0x20,0x00,0x73,0x00,0x6f,0x00,0x2c,0x00,0x20,0x00,0x73,0x00,
28226
+0x75,0x00,0x62,0x00,0x6a,0x00,0x65,0x00,0x63,0x00,0x74,0x00,
28227
+0x20,0x00,0x74,0x00,0x6f,0x00,0x20,0x00,0x74,0x00,0x68,0x00,
28228
+0x65,0x00,0x20,0x00,0x66,0x00,0x6f,0x00,0x6c,0x00,0x6c,0x00,
28229
+0x6f,0x00,0x77,0x00,0x69,0x00,0x6e,0x00,0x67,0x00,0x20,0x00,
28230
+0x63,0x00,0x6f,0x00,0x6e,0x00,0x64,0x00,0x69,0x00,0x74,0x00,
28231
+0x69,0x00,0x6f,0x00,0x6e,0x00,0x73,0x00,0x3a,0x00,0x0a,0x00,
28232
+0x0a,0x00,0x54,0x00,0x68,0x00,0x65,0x00,0x20,0x00,0x61,0x00,
28233
+0x62,0x00,0x6f,0x00,0x76,0x00,0x65,0x00,0x20,0x00,0x63,0x00,
28234
+0x6f,0x00,0x70,0x00,0x79,0x00,0x72,0x00,0x69,0x00,0x67,0x00,
28235
+0x68,0x00,0x74,0x00,0x20,0x00,0x61,0x00,0x6e,0x00,0x64,0x00,
28236
+0x20,0x00,0x74,0x00,0x72,0x00,0x61,0x00,0x64,0x00,0x65,0x00,
28237
+0x6d,0x00,0x61,0x00,0x72,0x00,0x6b,0x00,0x20,0x00,0x6e,0x00,
28238
+0x6f,0x00,0x74,0x00,0x69,0x00,0x63,0x00,0x65,0x00,0x73,0x00,
28239
+0x20,0x00,0x61,0x00,0x6e,0x00,0x64,0x00,0x20,0x00,0x74,0x00,
28240
+0x68,0x00,0x69,0x00,0x73,0x00,0x20,0x00,0x70,0x00,0x65,0x00,
28241
+0x72,0x00,0x6d,0x00,0x69,0x00,0x73,0x00,0x73,0x00,0x69,0x00,
28242
+0x6f,0x00,0x6e,0x00,0x20,0x00,0x6e,0x00,0x6f,0x00,0x74,0x00,
28243
+0x69,0x00,0x63,0x00,0x65,0x00,0x20,0x00,0x73,0x00,0x68,0x00,
28244
+0x61,0x00,0x6c,0x00,0x6c,0x00,0x20,0x00,0x62,0x00,0x65,0x00,
28245
+0x20,0x00,0x69,0x00,0x6e,0x00,0x63,0x00,0x6c,0x00,0x75,0x00,
28246
+0x64,0x00,0x65,0x00,0x64,0x00,0x20,0x00,0x69,0x00,0x6e,0x00,
28247
+0x20,0x00,0x61,0x00,0x6c,0x00,0x6c,0x00,0x20,0x00,0x63,0x00,
28248
+0x6f,0x00,0x70,0x00,0x69,0x00,0x65,0x00,0x73,0x00,0x20,0x00,
28249
+0x6f,0x00,0x66,0x00,0x20,0x00,0x6f,0x00,0x6e,0x00,0x65,0x00,
28250
+0x20,0x00,0x6f,0x00,0x72,0x00,0x20,0x00,0x6d,0x00,0x6f,0x00,
28251
+0x72,0x00,0x65,0x00,0x20,0x00,0x6f,0x00,0x66,0x00,0x20,0x00,
28252
+0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00,0x46,0x00,0x6f,0x00,
28253
+0x6e,0x00,0x74,0x00,0x20,0x00,0x53,0x00,0x6f,0x00,0x66,0x00,
28254
+0x74,0x00,0x77,0x00,0x61,0x00,0x72,0x00,0x65,0x00,0x20,0x00,
28255
+0x74,0x00,0x79,0x00,0x70,0x00,0x65,0x00,0x66,0x00,0x61,0x00,
28256
+0x63,0x00,0x65,0x00,0x73,0x00,0x2e,0x00,0x0a,0x00,0x0a,0x00,
28257
+0x54,0x00,0x68,0x00,0x65,0x00,0x20,0x00,0x46,0x00,0x6f,0x00,
28258
+0x6e,0x00,0x74,0x00,0x20,0x00,0x53,0x00,0x6f,0x00,0x66,0x00,
28259
+0x74,0x00,0x77,0x00,0x61,0x00,0x72,0x00,0x65,0x00,0x20,0x00,
28260
+0x6d,0x00,0x61,0x00,0x79,0x00,0x20,0x00,0x62,0x00,0x65,0x00,
28261
+0x20,0x00,0x6d,0x00,0x6f,0x00,0x64,0x00,0x69,0x00,0x66,0x00,
28262
+0x69,0x00,0x65,0x00,0x64,0x00,0x2c,0x00,0x20,0x00,0x61,0x00,
28263
+0x6c,0x00,0x74,0x00,0x65,0x00,0x72,0x00,0x65,0x00,0x64,0x00,
28264
+0x2c,0x00,0x20,0x00,0x6f,0x00,0x72,0x00,0x20,0x00,0x61,0x00,
28265
+0x64,0x00,0x64,0x00,0x65,0x00,0x64,0x00,0x20,0x00,0x74,0x00,
28266
+0x6f,0x00,0x2c,0x00,0x20,0x00,0x61,0x00,0x6e,0x00,0x64,0x00,
28267
+0x20,0x00,0x69,0x00,0x6e,0x00,0x20,0x00,0x70,0x00,0x61,0x00,
28268
+0x72,0x00,0x74,0x00,0x69,0x00,0x63,0x00,0x75,0x00,0x6c,0x00,
28269
+0x61,0x00,0x72,0x00,0x20,0x00,0x74,0x00,0x68,0x00,0x65,0x00,
28270
+0x20,0x00,0x64,0x00,0x65,0x00,0x73,0x00,0x69,0x00,0x67,0x00,
28271
+0x6e,0x00,0x73,0x00,0x20,0x00,0x6f,0x00,0x66,0x00,0x20,0x00,
28272
+0x67,0x00,0x6c,0x00,0x79,0x00,0x70,0x00,0x68,0x00,0x73,0x00,
28273
+0x20,0x00,0x6f,0x00,0x72,0x00,0x20,0x00,0x63,0x00,0x68,0x00,
28274
+0x61,0x00,0x72,0x00,0x61,0x00,0x63,0x00,0x74,0x00,0x65,0x00,
28275
+0x72,0x00,0x73,0x00,0x20,0x00,0x69,0x00,0x6e,0x00,0x20,0x00,
28276
+0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00,0x46,0x00,0x6f,0x00,
28277
+0x6e,0x00,0x74,0x00,0x73,0x00,0x20,0x00,0x6d,0x00,0x61,0x00,
28278
+0x79,0x00,0x20,0x00,0x62,0x00,0x65,0x00,0x20,0x00,0x6d,0x00,
28279
+0x6f,0x00,0x64,0x00,0x69,0x00,0x66,0x00,0x69,0x00,0x65,0x00,
28280
+0x64,0x00,0x20,0x00,0x61,0x00,0x6e,0x00,0x64,0x00,0x20,0x00,
28281
+0x61,0x00,0x64,0x00,0x64,0x00,0x69,0x00,0x74,0x00,0x69,0x00,
28282
+0x6f,0x00,0x6e,0x00,0x61,0x00,0x6c,0x00,0x20,0x00,0x67,0x00,
28283
+0x6c,0x00,0x79,0x00,0x70,0x00,0x68,0x00,0x73,0x00,0x20,0x00,
28284
+0x6f,0x00,0x72,0x00,0x20,0x00,0x20,0x00,0x6f,0x00,0x72,0x00,
28285
+0x20,0x00,0x63,0x00,0x68,0x00,0x61,0x00,0x72,0x00,0x61,0x00,
28286
+0x63,0x00,0x74,0x00,0x65,0x00,0x72,0x00,0x73,0x00,0x20,0x00,
28287
+0x6d,0x00,0x61,0x00,0x79,0x00,0x20,0x00,0x62,0x00,0x65,0x00,
28288
+0x20,0x00,0x61,0x00,0x64,0x00,0x64,0x00,0x65,0x00,0x64,0x00,
28289
+0x20,0x00,0x74,0x00,0x6f,0x00,0x20,0x00,0x74,0x00,0x68,0x00,
28290
+0x65,0x00,0x20,0x00,0x46,0x00,0x6f,0x00,0x6e,0x00,0x74,0x00,
28291
+0x73,0x00,0x2c,0x00,0x20,0x00,0x6f,0x00,0x6e,0x00,0x6c,0x00,
28292
+0x79,0x00,0x20,0x00,0x69,0x00,0x66,0x00,0x20,0x00,0x74,0x00,
28293
+0x68,0x00,0x65,0x00,0x20,0x00,0x66,0x00,0x6f,0x00,0x6e,0x00,
28294
+0x74,0x00,0x73,0x00,0x20,0x00,0x61,0x00,0x72,0x00,0x65,0x00,
28295
+0x20,0x00,0x72,0x00,0x65,0x00,0x6e,0x00,0x61,0x00,0x6d,0x00,
28296
+0x65,0x00,0x64,0x00,0x20,0x00,0x74,0x00,0x6f,0x00,0x20,0x00,
28297
+0x6e,0x00,0x61,0x00,0x6d,0x00,0x65,0x00,0x73,0x00,0x20,0x00,
28298
+0x6e,0x00,0x6f,0x00,0x74,0x00,0x20,0x00,0x63,0x00,0x6f,0x00,
28299
+0x6e,0x00,0x74,0x00,0x61,0x00,0x69,0x00,0x6e,0x00,0x69,0x00,
28300
+0x6e,0x00,0x67,0x00,0x20,0x00,0x65,0x00,0x69,0x00,0x74,0x00,
28301
+0x68,0x00,0x65,0x00,0x72,0x00,0x20,0x00,0x74,0x00,0x68,0x00,
28302
+0x65,0x00,0x20,0x00,0x77,0x00,0x6f,0x00,0x72,0x00,0x64,0x00,
28303
+0x73,0x00,0x20,0x00,0x22,0x00,0x42,0x00,0x69,0x00,0x74,0x00,
28304
+0x73,0x00,0x74,0x00,0x72,0x00,0x65,0x00,0x61,0x00,0x6d,0x00,
28305
+0x22,0x00,0x20,0x00,0x6f,0x00,0x72,0x00,0x20,0x00,0x74,0x00,
28306
+0x68,0x00,0x65,0x00,0x20,0x00,0x77,0x00,0x6f,0x00,0x72,0x00,
28307
+0x64,0x00,0x20,0x00,0x22,0x00,0x56,0x00,0x65,0x00,0x72,0x00,
28308
+0x61,0x00,0x22,0x00,0x2e,0x00,0x0a,0x00,0x0a,0x00,0x54,0x00,
28309
+0x68,0x00,0x69,0x00,0x73,0x00,0x20,0x00,0x4c,0x00,0x69,0x00,
28310
+0x63,0x00,0x65,0x00,0x6e,0x00,0x73,0x00,0x65,0x00,0x20,0x00,
28311
+0x62,0x00,0x65,0x00,0x63,0x00,0x6f,0x00,0x6d,0x00,0x65,0x00,
28312
+0x73,0x00,0x20,0x00,0x6e,0x00,0x75,0x00,0x6c,0x00,0x6c,0x00,
28313
+0x20,0x00,0x61,0x00,0x6e,0x00,0x64,0x00,0x20,0x00,0x76,0x00,
28314
+0x6f,0x00,0x69,0x00,0x64,0x00,0x20,0x00,0x74,0x00,0x6f,0x00,
28315
+0x20,0x00,0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00,0x65,0x00,
28316
+0x78,0x00,0x74,0x00,0x65,0x00,0x6e,0x00,0x74,0x00,0x20,0x00,
28317
+0x61,0x00,0x70,0x00,0x70,0x00,0x6c,0x00,0x69,0x00,0x63,0x00,
28318
+0x61,0x00,0x62,0x00,0x6c,0x00,0x65,0x00,0x20,0x00,0x74,0x00,
28319
+0x6f,0x00,0x20,0x00,0x46,0x00,0x6f,0x00,0x6e,0x00,0x74,0x00,
28320
+0x73,0x00,0x20,0x00,0x6f,0x00,0x72,0x00,0x20,0x00,0x46,0x00,
28321
+0x6f,0x00,0x6e,0x00,0x74,0x00,0x20,0x00,0x53,0x00,0x6f,0x00,
28322
+0x66,0x00,0x74,0x00,0x77,0x00,0x61,0x00,0x72,0x00,0x65,0x00,
28323
+0x20,0x00,0x74,0x00,0x68,0x00,0x61,0x00,0x74,0x00,0x20,0x00,
28324
+0x68,0x00,0x61,0x00,0x73,0x00,0x20,0x00,0x62,0x00,0x65,0x00,
28325
+0x65,0x00,0x6e,0x00,0x20,0x00,0x6d,0x00,0x6f,0x00,0x64,0x00,
28326
+0x69,0x00,0x66,0x00,0x69,0x00,0x65,0x00,0x64,0x00,0x20,0x00,
28327
+0x61,0x00,0x6e,0x00,0x64,0x00,0x20,0x00,0x69,0x00,0x73,0x00,
28328
+0x20,0x00,0x64,0x00,0x69,0x00,0x73,0x00,0x74,0x00,0x72,0x00,
28329
+0x69,0x00,0x62,0x00,0x75,0x00,0x74,0x00,0x65,0x00,0x64,0x00,
28330
+0x20,0x00,0x75,0x00,0x6e,0x00,0x64,0x00,0x65,0x00,0x72,0x00,
28331
+0x20,0x00,0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00,0x22,0x00,
28332
+0x42,0x00,0x69,0x00,0x74,0x00,0x73,0x00,0x74,0x00,0x72,0x00,
28333
+0x65,0x00,0x61,0x00,0x6d,0x00,0x20,0x00,0x56,0x00,0x65,0x00,
28334
+0x72,0x00,0x61,0x00,0x22,0x00,0x20,0x00,0x6e,0x00,0x61,0x00,
28335
+0x6d,0x00,0x65,0x00,0x73,0x00,0x2e,0x00,0x0a,0x00,0x0a,0x00,
28336
+0x54,0x00,0x68,0x00,0x65,0x00,0x20,0x00,0x46,0x00,0x6f,0x00,
28337
+0x6e,0x00,0x74,0x00,0x20,0x00,0x53,0x00,0x6f,0x00,0x66,0x00,
28338
+0x74,0x00,0x77,0x00,0x61,0x00,0x72,0x00,0x65,0x00,0x20,0x00,
28339
+0x6d,0x00,0x61,0x00,0x79,0x00,0x20,0x00,0x62,0x00,0x65,0x00,
28340
+0x20,0x00,0x73,0x00,0x6f,0x00,0x6c,0x00,0x64,0x00,0x20,0x00,
28341
+0x61,0x00,0x73,0x00,0x20,0x00,0x70,0x00,0x61,0x00,0x72,0x00,
28342
+0x74,0x00,0x20,0x00,0x6f,0x00,0x66,0x00,0x20,0x00,0x61,0x00,
28343
+0x20,0x00,0x6c,0x00,0x61,0x00,0x72,0x00,0x67,0x00,0x65,0x00,
28344
+0x72,0x00,0x20,0x00,0x73,0x00,0x6f,0x00,0x66,0x00,0x74,0x00,
28345
+0x77,0x00,0x61,0x00,0x72,0x00,0x65,0x00,0x20,0x00,0x70,0x00,
28346
+0x61,0x00,0x63,0x00,0x6b,0x00,0x61,0x00,0x67,0x00,0x65,0x00,
28347
+0x20,0x00,0x62,0x00,0x75,0x00,0x74,0x00,0x20,0x00,0x6e,0x00,
28348
+0x6f,0x00,0x20,0x00,0x63,0x00,0x6f,0x00,0x70,0x00,0x79,0x00,
28349
+0x20,0x00,0x6f,0x00,0x66,0x00,0x20,0x00,0x6f,0x00,0x6e,0x00,
28350
+0x65,0x00,0x20,0x00,0x6f,0x00,0x72,0x00,0x20,0x00,0x6d,0x00,
28351
+0x6f,0x00,0x72,0x00,0x65,0x00,0x20,0x00,0x6f,0x00,0x66,0x00,
28352
+0x20,0x00,0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00,0x46,0x00,
28353
+0x6f,0x00,0x6e,0x00,0x74,0x00,0x20,0x00,0x53,0x00,0x6f,0x00,
28354
+0x66,0x00,0x74,0x00,0x77,0x00,0x61,0x00,0x72,0x00,0x65,0x00,
28355
+0x20,0x00,0x74,0x00,0x79,0x00,0x70,0x00,0x65,0x00,0x66,0x00,
28356
+0x61,0x00,0x63,0x00,0x65,0x00,0x73,0x00,0x20,0x00,0x6d,0x00,
28357
+0x61,0x00,0x79,0x00,0x20,0x00,0x62,0x00,0x65,0x00,0x20,0x00,
28358
+0x73,0x00,0x6f,0x00,0x6c,0x00,0x64,0x00,0x20,0x00,0x62,0x00,
28359
+0x79,0x00,0x20,0x00,0x69,0x00,0x74,0x00,0x73,0x00,0x65,0x00,
28360
+0x6c,0x00,0x66,0x00,0x2e,0x00,0x0a,0x00,0x0a,0x00,0x54,0x00,
28361
+0x48,0x00,0x45,0x00,0x20,0x00,0x46,0x00,0x4f,0x00,0x4e,0x00,
28362
+0x54,0x00,0x20,0x00,0x53,0x00,0x4f,0x00,0x46,0x00,0x54,0x00,
28363
+0x57,0x00,0x41,0x00,0x52,0x00,0x45,0x00,0x20,0x00,0x49,0x00,
28364
+0x53,0x00,0x20,0x00,0x50,0x00,0x52,0x00,0x4f,0x00,0x56,0x00,
28365
+0x49,0x00,0x44,0x00,0x45,0x00,0x44,0x00,0x20,0x00,0x22,0x00,
28366
+0x41,0x00,0x53,0x00,0x20,0x00,0x49,0x00,0x53,0x00,0x22,0x00,
28367
+0x2c,0x00,0x20,0x00,0x57,0x00,0x49,0x00,0x54,0x00,0x48,0x00,
28368
+0x4f,0x00,0x55,0x00,0x54,0x00,0x20,0x00,0x57,0x00,0x41,0x00,
28369
+0x52,0x00,0x52,0x00,0x41,0x00,0x4e,0x00,0x54,0x00,0x59,0x00,
28370
+0x20,0x00,0x4f,0x00,0x46,0x00,0x20,0x00,0x41,0x00,0x4e,0x00,
28371
+0x59,0x00,0x20,0x00,0x4b,0x00,0x49,0x00,0x4e,0x00,0x44,0x00,
28372
+0x2c,0x00,0x20,0x00,0x45,0x00,0x58,0x00,0x50,0x00,0x52,0x00,
28373
+0x45,0x00,0x53,0x00,0x53,0x00,0x20,0x00,0x4f,0x00,0x52,0x00,
28374
+0x20,0x00,0x49,0x00,0x4d,0x00,0x50,0x00,0x4c,0x00,0x49,0x00,
28375
+0x45,0x00,0x44,0x00,0x2c,0x00,0x20,0x00,0x49,0x00,0x4e,0x00,
28376
+0x43,0x00,0x4c,0x00,0x55,0x00,0x44,0x00,0x49,0x00,0x4e,0x00,
28377
+0x47,0x00,0x20,0x00,0x42,0x00,0x55,0x00,0x54,0x00,0x20,0x00,
28378
+0x4e,0x00,0x4f,0x00,0x54,0x00,0x20,0x00,0x4c,0x00,0x49,0x00,
28379
+0x4d,0x00,0x49,0x00,0x54,0x00,0x45,0x00,0x44,0x00,0x20,0x00,
28380
+0x54,0x00,0x4f,0x00,0x20,0x00,0x41,0x00,0x4e,0x00,0x59,0x00,
28381
+0x20,0x00,0x57,0x00,0x41,0x00,0x52,0x00,0x52,0x00,0x41,0x00,
28382
+0x4e,0x00,0x54,0x00,0x49,0x00,0x45,0x00,0x53,0x00,0x20,0x00,
28383
+0x4f,0x00,0x46,0x00,0x20,0x00,0x4d,0x00,0x45,0x00,0x52,0x00,
28384
+0x43,0x00,0x48,0x00,0x41,0x00,0x4e,0x00,0x54,0x00,0x41,0x00,
28385
+0x42,0x00,0x49,0x00,0x4c,0x00,0x49,0x00,0x54,0x00,0x59,0x00,
28386
+0x2c,0x00,0x20,0x00,0x46,0x00,0x49,0x00,0x54,0x00,0x4e,0x00,
28387
+0x45,0x00,0x53,0x00,0x53,0x00,0x20,0x00,0x46,0x00,0x4f,0x00,
28388
+0x52,0x00,0x20,0x00,0x41,0x00,0x20,0x00,0x50,0x00,0x41,0x00,
28389
+0x52,0x00,0x54,0x00,0x49,0x00,0x43,0x00,0x55,0x00,0x4c,0x00,
28390
+0x41,0x00,0x52,0x00,0x20,0x00,0x50,0x00,0x55,0x00,0x52,0x00,
28391
+0x50,0x00,0x4f,0x00,0x53,0x00,0x45,0x00,0x20,0x00,0x41,0x00,
28392
+0x4e,0x00,0x44,0x00,0x20,0x00,0x4e,0x00,0x4f,0x00,0x4e,0x00,
28393
+0x49,0x00,0x4e,0x00,0x46,0x00,0x52,0x00,0x49,0x00,0x4e,0x00,
28394
+0x47,0x00,0x45,0x00,0x4d,0x00,0x45,0x00,0x4e,0x00,0x54,0x00,
28395
+0x20,0x00,0x4f,0x00,0x46,0x00,0x20,0x00,0x43,0x00,0x4f,0x00,
28396
+0x50,0x00,0x59,0x00,0x52,0x00,0x49,0x00,0x47,0x00,0x48,0x00,
28397
+0x54,0x00,0x2c,0x00,0x20,0x00,0x50,0x00,0x41,0x00,0x54,0x00,
28398
+0x45,0x00,0x4e,0x00,0x54,0x00,0x2c,0x00,0x20,0x00,0x54,0x00,
28399
+0x52,0x00,0x41,0x00,0x44,0x00,0x45,0x00,0x4d,0x00,0x41,0x00,
28400
+0x52,0x00,0x4b,0x00,0x2c,0x00,0x20,0x00,0x4f,0x00,0x52,0x00,
28401
+0x20,0x00,0x4f,0x00,0x54,0x00,0x48,0x00,0x45,0x00,0x52,0x00,
28402
+0x20,0x00,0x52,0x00,0x49,0x00,0x47,0x00,0x48,0x00,0x54,0x00,
28403
+0x2e,0x00,0x20,0x00,0x49,0x00,0x4e,0x00,0x20,0x00,0x4e,0x00,
28404
+0x4f,0x00,0x20,0x00,0x45,0x00,0x56,0x00,0x45,0x00,0x4e,0x00,
28405
+0x54,0x00,0x20,0x00,0x53,0x00,0x48,0x00,0x41,0x00,0x4c,0x00,
28406
+0x4c,0x00,0x20,0x00,0x42,0x00,0x49,0x00,0x54,0x00,0x53,0x00,
28407
+0x54,0x00,0x52,0x00,0x45,0x00,0x41,0x00,0x4d,0x00,0x20,0x00,
28408
+0x4f,0x00,0x52,0x00,0x20,0x00,0x54,0x00,0x48,0x00,0x45,0x00,
28409
+0x20,0x00,0x47,0x00,0x4e,0x00,0x4f,0x00,0x4d,0x00,0x45,0x00,
28410
+0x20,0x00,0x46,0x00,0x4f,0x00,0x55,0x00,0x4e,0x00,0x44,0x00,
28411
+0x41,0x00,0x54,0x00,0x49,0x00,0x4f,0x00,0x4e,0x00,0x20,0x00,
28412
+0x42,0x00,0x45,0x00,0x20,0x00,0x4c,0x00,0x49,0x00,0x41,0x00,
28413
+0x42,0x00,0x4c,0x00,0x45,0x00,0x20,0x00,0x46,0x00,0x4f,0x00,
28414
+0x52,0x00,0x20,0x00,0x41,0x00,0x4e,0x00,0x59,0x00,0x20,0x00,
28415
+0x43,0x00,0x4c,0x00,0x41,0x00,0x49,0x00,0x4d,0x00,0x2c,0x00,
28416
+0x20,0x00,0x44,0x00,0x41,0x00,0x4d,0x00,0x41,0x00,0x47,0x00,
28417
+0x45,0x00,0x53,0x00,0x20,0x00,0x4f,0x00,0x52,0x00,0x20,0x00,
28418
+0x4f,0x00,0x54,0x00,0x48,0x00,0x45,0x00,0x52,0x00,0x20,0x00,
28419
+0x4c,0x00,0x49,0x00,0x41,0x00,0x42,0x00,0x49,0x00,0x4c,0x00,
28420
+0x49,0x00,0x54,0x00,0x59,0x00,0x2c,0x00,0x20,0x00,0x49,0x00,
28421
+0x4e,0x00,0x43,0x00,0x4c,0x00,0x55,0x00,0x44,0x00,0x49,0x00,
28422
+0x4e,0x00,0x47,0x00,0x20,0x00,0x41,0x00,0x4e,0x00,0x59,0x00,
28423
+0x20,0x00,0x47,0x00,0x45,0x00,0x4e,0x00,0x45,0x00,0x52,0x00,
28424
+0x41,0x00,0x4c,0x00,0x2c,0x00,0x20,0x00,0x53,0x00,0x50,0x00,
28425
+0x45,0x00,0x43,0x00,0x49,0x00,0x41,0x00,0x4c,0x00,0x2c,0x00,
28426
+0x20,0x00,0x49,0x00,0x4e,0x00,0x44,0x00,0x49,0x00,0x52,0x00,
28427
+0x45,0x00,0x43,0x00,0x54,0x00,0x2c,0x00,0x20,0x00,0x49,0x00,
28428
+0x4e,0x00,0x43,0x00,0x49,0x00,0x44,0x00,0x45,0x00,0x4e,0x00,
28429
+0x54,0x00,0x41,0x00,0x4c,0x00,0x2c,0x00,0x20,0x00,0x4f,0x00,
28430
+0x52,0x00,0x20,0x00,0x43,0x00,0x4f,0x00,0x4e,0x00,0x53,0x00,
28431
+0x45,0x00,0x51,0x00,0x55,0x00,0x45,0x00,0x4e,0x00,0x54,0x00,
28432
+0x49,0x00,0x41,0x00,0x4c,0x00,0x20,0x00,0x44,0x00,0x41,0x00,
28433
+0x4d,0x00,0x41,0x00,0x47,0x00,0x45,0x00,0x53,0x00,0x2c,0x00,
28434
+0x20,0x00,0x57,0x00,0x48,0x00,0x45,0x00,0x54,0x00,0x48,0x00,
28435
+0x45,0x00,0x52,0x00,0x20,0x00,0x49,0x00,0x4e,0x00,0x20,0x00,
28436
+0x41,0x00,0x4e,0x00,0x20,0x00,0x41,0x00,0x43,0x00,0x54,0x00,
28437
+0x49,0x00,0x4f,0x00,0x4e,0x00,0x20,0x00,0x4f,0x00,0x46,0x00,
28438
+0x20,0x00,0x43,0x00,0x4f,0x00,0x4e,0x00,0x54,0x00,0x52,0x00,
28439
+0x41,0x00,0x43,0x00,0x54,0x00,0x2c,0x00,0x20,0x00,0x54,0x00,
28440
+0x4f,0x00,0x52,0x00,0x54,0x00,0x20,0x00,0x4f,0x00,0x52,0x00,
28441
+0x20,0x00,0x4f,0x00,0x54,0x00,0x48,0x00,0x45,0x00,0x52,0x00,
28442
+0x57,0x00,0x49,0x00,0x53,0x00,0x45,0x00,0x2c,0x00,0x20,0x00,
28443
+0x41,0x00,0x52,0x00,0x49,0x00,0x53,0x00,0x49,0x00,0x4e,0x00,
28444
+0x47,0x00,0x20,0x00,0x46,0x00,0x52,0x00,0x4f,0x00,0x4d,0x00,
28445
+0x2c,0x00,0x20,0x00,0x4f,0x00,0x55,0x00,0x54,0x00,0x20,0x00,
28446
+0x4f,0x00,0x46,0x00,0x20,0x00,0x54,0x00,0x48,0x00,0x45,0x00,
28447
+0x20,0x00,0x55,0x00,0x53,0x00,0x45,0x00,0x20,0x00,0x4f,0x00,
28448
+0x52,0x00,0x20,0x00,0x49,0x00,0x4e,0x00,0x41,0x00,0x42,0x00,
28449
+0x49,0x00,0x4c,0x00,0x49,0x00,0x54,0x00,0x59,0x00,0x20,0x00,
28450
+0x54,0x00,0x4f,0x00,0x20,0x00,0x55,0x00,0x53,0x00,0x45,0x00,
28451
+0x20,0x00,0x54,0x00,0x48,0x00,0x45,0x00,0x20,0x00,0x46,0x00,
28452
+0x4f,0x00,0x4e,0x00,0x54,0x00,0x20,0x00,0x53,0x00,0x4f,0x00,
28453
+0x46,0x00,0x54,0x00,0x57,0x00,0x41,0x00,0x52,0x00,0x45,0x00,
28454
+0x20,0x00,0x4f,0x00,0x52,0x00,0x20,0x00,0x46,0x00,0x52,0x00,
28455
+0x4f,0x00,0x4d,0x00,0x20,0x00,0x4f,0x00,0x54,0x00,0x48,0x00,
28456
+0x45,0x00,0x52,0x00,0x20,0x00,0x44,0x00,0x45,0x00,0x41,0x00,
28457
+0x4c,0x00,0x49,0x00,0x4e,0x00,0x47,0x00,0x53,0x00,0x20,0x00,
28458
+0x49,0x00,0x4e,0x00,0x20,0x00,0x54,0x00,0x48,0x00,0x45,0x00,
28459
+0x20,0x00,0x46,0x00,0x4f,0x00,0x4e,0x00,0x54,0x00,0x20,0x00,
28460
+0x53,0x00,0x4f,0x00,0x46,0x00,0x54,0x00,0x57,0x00,0x41,0x00,
28461
+0x52,0x00,0x45,0x00,0x2e,0x00,0x0a,0x00,0x0a,0x00,0x45,0x00,
28462
+0x78,0x00,0x63,0x00,0x65,0x00,0x70,0x00,0x74,0x00,0x20,0x00,
28463
+0x61,0x00,0x73,0x00,0x20,0x00,0x63,0x00,0x6f,0x00,0x6e,0x00,
28464
+0x74,0x00,0x61,0x00,0x69,0x00,0x6e,0x00,0x65,0x00,0x64,0x00,
28465
+0x20,0x00,0x69,0x00,0x6e,0x00,0x20,0x00,0x74,0x00,0x68,0x00,
28466
+0x69,0x00,0x73,0x00,0x20,0x00,0x6e,0x00,0x6f,0x00,0x74,0x00,
28467
+0x69,0x00,0x63,0x00,0x65,0x00,0x2c,0x00,0x20,0x00,0x74,0x00,
28468
+0x68,0x00,0x65,0x00,0x20,0x00,0x6e,0x00,0x61,0x00,0x6d,0x00,
28469
+0x65,0x00,0x73,0x00,0x20,0x00,0x6f,0x00,0x66,0x00,0x20,0x00,
28470
+0x47,0x00,0x6e,0x00,0x6f,0x00,0x6d,0x00,0x65,0x00,0x2c,0x00,
28471
+0x20,0x00,0x74,0x00,0x68,0x00,0x65,0x00,0x20,0x00,0x47,0x00,
28472
+0x6e,0x00,0x6f,0x00,0x6d,0x00,0x65,0x00,0x20,0x00,0x46,0x00,
28473
+0x6f,0x00,0x75,0x00,0x6e,0x00,0x64,0x00,0x61,0x00,0x74,0x00,
28474
+0x69,0x00,0x6f,0x00,0x6e,0x00,0x2c,0x00,0x20,0x00,0x61,0x00,
28475
+0x6e,0x00,0x64,0x00,0x20,0x00,0x42,0x00,0x69,0x00,0x74,0x00,
28476
+0x73,0x00,0x74,0x00,0x72,0x00,0x65,0x00,0x61,0x00,0x6d,0x00,
28477
+0x20,0x00,0x49,0x00,0x6e,0x00,0x63,0x00,0x2e,0x00,0x2c,0x00,
28478
+0x20,0x00,0x73,0x00,0x68,0x00,0x61,0x00,0x6c,0x00,0x6c,0x00,
28479
+0x20,0x00,0x6e,0x00,0x6f,0x00,0x74,0x00,0x20,0x00,0x62,0x00,
28480
+0x65,0x00,0x20,0x00,0x75,0x00,0x73,0x00,0x65,0x00,0x64,0x00,
28481
+0x20,0x00,0x69,0x00,0x6e,0x00,0x20,0x00,0x61,0x00,0x64,0x00,
28482
+0x76,0x00,0x65,0x00,0x72,0x00,0x74,0x00,0x69,0x00,0x73,0x00,
28483
+0x69,0x00,0x6e,0x00,0x67,0x00,0x20,0x00,0x6f,0x00,0x72,0x00,
28484
+0x20,0x00,0x6f,0x00,0x74,0x00,0x68,0x00,0x65,0x00,0x72,0x00,
28485
+0x77,0x00,0x69,0x00,0x73,0x00,0x65,0x00,0x20,0x00,0x74,0x00,
28486
+0x6f,0x00,0x20,0x00,0x70,0x00,0x72,0x00,0x6f,0x00,0x6d,0x00,
28487
+0x6f,0x00,0x74,0x00,0x65,0x00,0x20,0x00,0x74,0x00,0x68,0x00,
28488
+0x65,0x00,0x20,0x00,0x73,0x00,0x61,0x00,0x6c,0x00,0x65,0x00,
28489
+0x2c,0x00,0x20,0x00,0x75,0x00,0x73,0x00,0x65,0x00,0x20,0x00,
28490
+0x6f,0x00,0x72,0x00,0x20,0x00,0x6f,0x00,0x74,0x00,0x68,0x00,
28491
+0x65,0x00,0x72,0x00,0x20,0x00,0x64,0x00,0x65,0x00,0x61,0x00,
28492
+0x6c,0x00,0x69,0x00,0x6e,0x00,0x67,0x00,0x73,0x00,0x20,0x00,
28493
+0x69,0x00,0x6e,0x00,0x20,0x00,0x74,0x00,0x68,0x00,0x69,0x00,
28494
+0x73,0x00,0x20,0x00,0x46,0x00,0x6f,0x00,0x6e,0x00,0x74,0x00,
28495
+0x20,0x00,0x53,0x00,0x6f,0x00,0x66,0x00,0x74,0x00,0x77,0x00,
28496
+0x61,0x00,0x72,0x00,0x65,0x00,0x20,0x00,0x77,0x00,0x69,0x00,
28497
+0x74,0x00,0x68,0x00,0x6f,0x00,0x75,0x00,0x74,0x00,0x20,0x00,
28498
+0x70,0x00,0x72,0x00,0x69,0x00,0x6f,0x00,0x72,0x00,0x20,0x00,
28499
+0x77,0x00,0x72,0x00,0x69,0x00,0x74,0x00,0x74,0x00,0x65,0x00,
28500
+0x6e,0x00,0x20,0x00,0x61,0x00,0x75,0x00,0x74,0x00,0x68,0x00,
28501
+0x6f,0x00,0x72,0x00,0x69,0x00,0x7a,0x00,0x61,0x00,0x74,0x00,
28502
+0x69,0x00,0x6f,0x00,0x6e,0x00,0x20,0x00,0x66,0x00,0x72,0x00,
28503
+0x6f,0x00,0x6d,0x00,0x20,0x00,0x74,0x00,0x68,0x00,0x65,0x00,
28504
+0x20,0x00,0x47,0x00,0x6e,0x00,0x6f,0x00,0x6d,0x00,0x65,0x00,
28505
+0x20,0x00,0x46,0x00,0x6f,0x00,0x75,0x00,0x6e,0x00,0x64,0x00,
28506
+0x61,0x00,0x74,0x00,0x69,0x00,0x6f,0x00,0x6e,0x00,0x20,0x00,
28507
+0x6f,0x00,0x72,0x00,0x20,0x00,0x42,0x00,0x69,0x00,0x74,0x00,
28508
+0x73,0x00,0x74,0x00,0x72,0x00,0x65,0x00,0x61,0x00,0x6d,0x00,
28509
+0x20,0x00,0x49,0x00,0x6e,0x00,0x63,0x00,0x2e,0x00,0x2c,0x00,
28510
+0x20,0x00,0x72,0x00,0x65,0x00,0x73,0x00,0x70,0x00,0x65,0x00,
28511
+0x63,0x00,0x74,0x00,0x69,0x00,0x76,0x00,0x65,0x00,0x6c,0x00,
28512
+0x79,0x00,0x2e,0x00,0x20,0x00,0x46,0x00,0x6f,0x00,0x72,0x00,
28513
+0x20,0x00,0x66,0x00,0x75,0x00,0x72,0x00,0x74,0x00,0x68,0x00,
28514
+0x65,0x00,0x72,0x00,0x20,0x00,0x69,0x00,0x6e,0x00,0x66,0x00,
28515
+0x6f,0x00,0x72,0x00,0x6d,0x00,0x61,0x00,0x74,0x00,0x69,0x00,
28516
+0x6f,0x00,0x6e,0x00,0x2c,0x00,0x20,0x00,0x63,0x00,0x6f,0x00,
28517
+0x6e,0x00,0x74,0x00,0x61,0x00,0x63,0x00,0x74,0x00,0x3a,0x00,
28518
+0x20,0x00,0x66,0x00,0x6f,0x00,0x6e,0x00,0x74,0x00,0x73,0x00,
28519
+0x20,0x00,0x61,0x00,0x74,0x00,0x20,0x00,0x67,0x00,0x6e,0x00,
28520
+0x6f,0x00,0x6d,0x00,0x65,0x00,0x20,0x00,0x64,0x00,0x6f,0x00,
28521
+0x74,0x00,0x20,0x00,0x6f,0x00,0x72,0x00,0x67,0x00,0x2e,0x00,
28522
+0x20,0x00,0x0a,0x00,0x00,0x46,0x6f,0x6e,0x74,0x73,0x20,0x61,
28523
+0x72,0x65,0x20,0x28,0x63,0x29,0x20,0x42,0x69,0x74,0x73,0x74,
28524
+0x72,0x65,0x61,0x6d,0x20,0x28,0x73,0x65,0x65,0x20,0x62,0x65,
28525
+0x6c,0x6f,0x77,0x29,0x2e,0x20,0x44,0x65,0x6a,0x61,0x56,0x75,
28526
+0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x73,0x20,0x61,0x72,0x65,
28527
+0x20,0x69,0x6e,0x20,0x70,0x75,0x62,0x6c,0x69,0x63,0x20,0x64,
28528
+0x6f,0x6d,0x61,0x69,0x6e,0x2e,0x0a,0x0a,0x42,0x69,0x74,0x73,
28529
+0x74,0x72,0x65,0x61,0x6d,0x20,0x56,0x65,0x72,0x61,0x20,0x46,
28530
+0x6f,0x6e,0x74,0x73,0x20,0x43,0x6f,0x70,0x79,0x72,0x69,0x67,
28531
+0x68,0x74,0x0a,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,
28532
+0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,
28533
+0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x2d,0x0a,0x0a,0x43,
28534
+0x6f,0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x20,0x28,0x63,0x29,
28535
+0x20,0x32,0x30,0x30,0x33,0x20,0x62,0x79,0x20,0x42,0x69,0x74,
28536
+0x73,0x74,0x72,0x65,0x61,0x6d,0x2c,0x20,0x49,0x6e,0x63,0x2e,
28537
+0x20,0x41,0x6c,0x6c,0x20,0x52,0x69,0x67,0x68,0x74,0x73,0x20,
28538
+0x52,0x65,0x73,0x65,0x72,0x76,0x65,0x64,0x2e,0x20,0x42,0x69,
28539
+0x74,0x73,0x74,0x72,0x65,0x61,0x6d,0x20,0x56,0x65,0x72,0x61,
28540
+0x20,0x69,0x73,0x20,0x61,0x20,0x74,0x72,0x61,0x64,0x65,0x6d,
28541
+0x61,0x72,0x6b,0x20,0x6f,0x66,0x20,0x42,0x69,0x74,0x73,0x74,
28542
+0x72,0x65,0x61,0x6d,0x2c,0x20,0x49,0x6e,0x63,0x2e,0x0a,0x0a,
28543
+0x50,0x65,0x72,0x6d,0x69,0x73,0x73,0x69,0x6f,0x6e,0x20,0x69,
28544
+0x73,0x20,0x68,0x65,0x72,0x65,0x62,0x79,0x20,0x67,0x72,0x61,
28545
+0x6e,0x74,0x65,0x64,0x2c,0x20,0x66,0x72,0x65,0x65,0x20,0x6f,
28546
+0x66,0x20,0x63,0x68,0x61,0x72,0x67,0x65,0x2c,0x20,0x74,0x6f,
28547
+0x20,0x61,0x6e,0x79,0x20,0x70,0x65,0x72,0x73,0x6f,0x6e,0x20,
28548
+0x6f,0x62,0x74,0x61,0x69,0x6e,0x69,0x6e,0x67,0x20,0x61,0x20,
28549
+0x63,0x6f,0x70,0x79,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,
28550
+0x66,0x6f,0x6e,0x74,0x73,0x20,0x61,0x63,0x63,0x6f,0x6d,0x70,
28551
+0x61,0x6e,0x79,0x69,0x6e,0x67,0x20,0x74,0x68,0x69,0x73,0x20,
28552
+0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,0x28,0x22,0x46,0x6f,
28553
+0x6e,0x74,0x73,0x22,0x29,0x20,0x61,0x6e,0x64,0x20,0x61,0x73,
28554
+0x73,0x6f,0x63,0x69,0x61,0x74,0x65,0x64,0x20,0x64,0x6f,0x63,
28555
+0x75,0x6d,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,
28556
+0x69,0x6c,0x65,0x73,0x20,0x28,0x74,0x68,0x65,0x20,0x22,0x46,
28557
+0x6f,0x6e,0x74,0x20,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,
28558
+0x22,0x29,0x2c,0x20,0x74,0x6f,0x20,0x72,0x65,0x70,0x72,0x6f,
28559
+0x64,0x75,0x63,0x65,0x20,0x61,0x6e,0x64,0x20,0x64,0x69,0x73,
28560
+0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x20,0x74,0x68,0x65,0x20,
28561
+0x46,0x6f,0x6e,0x74,0x20,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,
28562
+0x65,0x2c,0x20,0x69,0x6e,0x63,0x6c,0x75,0x64,0x69,0x6e,0x67,
28563
+0x20,0x77,0x69,0x74,0x68,0x6f,0x75,0x74,0x20,0x6c,0x69,0x6d,
28564
+0x69,0x74,0x61,0x74,0x69,0x6f,0x6e,0x20,0x74,0x68,0x65,0x20,
28565
+0x72,0x69,0x67,0x68,0x74,0x73,0x20,0x74,0x6f,0x20,0x75,0x73,
28566
+0x65,0x2c,0x20,0x63,0x6f,0x70,0x79,0x2c,0x20,0x6d,0x65,0x72,
28567
+0x67,0x65,0x2c,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x2c,
28568
+0x20,0x64,0x69,0x73,0x74,0x72,0x69,0x62,0x75,0x74,0x65,0x2c,
28569
+0x20,0x61,0x6e,0x64,0x2f,0x6f,0x72,0x20,0x73,0x65,0x6c,0x6c,
28570
+0x20,0x63,0x6f,0x70,0x69,0x65,0x73,0x20,0x6f,0x66,0x20,0x74,
28571
+0x68,0x65,0x20,0x46,0x6f,0x6e,0x74,0x20,0x53,0x6f,0x66,0x74,
28572
+0x77,0x61,0x72,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x74,0x6f,
28573
+0x20,0x70,0x65,0x72,0x6d,0x69,0x74,0x20,0x70,0x65,0x72,0x73,
28574
+0x6f,0x6e,0x73,0x20,0x74,0x6f,0x20,0x77,0x68,0x6f,0x6d,0x20,
28575
+0x74,0x68,0x65,0x20,0x46,0x6f,0x6e,0x74,0x20,0x53,0x6f,0x66,
28576
+0x74,0x77,0x61,0x72,0x65,0x20,0x69,0x73,0x20,0x66,0x75,0x72,
28577
+0x6e,0x69,0x73,0x68,0x65,0x64,0x20,0x74,0x6f,0x20,0x64,0x6f,
28578
+0x20,0x73,0x6f,0x2c,0x20,0x73,0x75,0x62,0x6a,0x65,0x63,0x74,
28579
+0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x66,0x6f,0x6c,0x6c,
28580
+0x6f,0x77,0x69,0x6e,0x67,0x20,0x63,0x6f,0x6e,0x64,0x69,0x74,
28581
+0x69,0x6f,0x6e,0x73,0x3a,0x0a,0x0a,0x54,0x68,0x65,0x20,0x61,
28582
+0x62,0x6f,0x76,0x65,0x20,0x63,0x6f,0x70,0x79,0x72,0x69,0x67,
28583
+0x68,0x74,0x20,0x61,0x6e,0x64,0x20,0x74,0x72,0x61,0x64,0x65,
28584
+0x6d,0x61,0x72,0x6b,0x20,0x6e,0x6f,0x74,0x69,0x63,0x65,0x73,
28585
+0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x69,0x73,0x20,0x70,0x65,
28586
+0x72,0x6d,0x69,0x73,0x73,0x69,0x6f,0x6e,0x20,0x6e,0x6f,0x74,
28587
+0x69,0x63,0x65,0x20,0x73,0x68,0x61,0x6c,0x6c,0x20,0x62,0x65,
28588
+0x20,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x64,0x20,0x69,0x6e,
28589
+0x20,0x61,0x6c,0x6c,0x20,0x63,0x6f,0x70,0x69,0x65,0x73,0x20,
28590
+0x6f,0x66,0x20,0x6f,0x6e,0x65,0x20,0x6f,0x72,0x20,0x6d,0x6f,
28591
+0x72,0x65,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x46,0x6f,
28592
+0x6e,0x74,0x20,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x20,
28593
+0x74,0x79,0x70,0x65,0x66,0x61,0x63,0x65,0x73,0x2e,0x0a,0x0a,
28594
+0x54,0x68,0x65,0x20,0x46,0x6f,0x6e,0x74,0x20,0x53,0x6f,0x66,
28595
+0x74,0x77,0x61,0x72,0x65,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,
28596
+0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x2c,0x20,0x61,
28597
+0x6c,0x74,0x65,0x72,0x65,0x64,0x2c,0x20,0x6f,0x72,0x20,0x61,
28598
+0x64,0x64,0x65,0x64,0x20,0x74,0x6f,0x2c,0x20,0x61,0x6e,0x64,
28599
+0x20,0x69,0x6e,0x20,0x70,0x61,0x72,0x74,0x69,0x63,0x75,0x6c,
28600
+0x61,0x72,0x20,0x74,0x68,0x65,0x20,0x64,0x65,0x73,0x69,0x67,
28601
+0x6e,0x73,0x20,0x6f,0x66,0x20,0x67,0x6c,0x79,0x70,0x68,0x73,
28602
+0x20,0x6f,0x72,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,
28603
+0x72,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x46,0x6f,
28604
+0x6e,0x74,0x73,0x20,0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x6d,
28605
+0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,0x61,0x6e,0x64,0x20,
28606
+0x61,0x64,0x64,0x69,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x20,0x67,
28607
+0x6c,0x79,0x70,0x68,0x73,0x20,0x6f,0x72,0x20,0x20,0x6f,0x72,
28608
+0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x20,
28609
+0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x61,0x64,0x64,0x65,0x64,
28610
+0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x46,0x6f,0x6e,0x74,
28611
+0x73,0x2c,0x20,0x6f,0x6e,0x6c,0x79,0x20,0x69,0x66,0x20,0x74,
28612
+0x68,0x65,0x20,0x66,0x6f,0x6e,0x74,0x73,0x20,0x61,0x72,0x65,
28613
+0x20,0x72,0x65,0x6e,0x61,0x6d,0x65,0x64,0x20,0x74,0x6f,0x20,
28614
+0x6e,0x61,0x6d,0x65,0x73,0x20,0x6e,0x6f,0x74,0x20,0x63,0x6f,
28615
+0x6e,0x74,0x61,0x69,0x6e,0x69,0x6e,0x67,0x20,0x65,0x69,0x74,
28616
+0x68,0x65,0x72,0x20,0x74,0x68,0x65,0x20,0x77,0x6f,0x72,0x64,
28617
+0x73,0x20,0x22,0x42,0x69,0x74,0x73,0x74,0x72,0x65,0x61,0x6d,
28618
+0x22,0x20,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x77,0x6f,0x72,
28619
+0x64,0x20,0x22,0x56,0x65,0x72,0x61,0x22,0x2e,0x0a,0x0a,0x54,
28620
+0x68,0x69,0x73,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x20,
28621
+0x62,0x65,0x63,0x6f,0x6d,0x65,0x73,0x20,0x6e,0x75,0x6c,0x6c,
28622
+0x20,0x61,0x6e,0x64,0x20,0x76,0x6f,0x69,0x64,0x20,0x74,0x6f,
28623
+0x20,0x74,0x68,0x65,0x20,0x65,0x78,0x74,0x65,0x6e,0x74,0x20,
28624
+0x61,0x70,0x70,0x6c,0x69,0x63,0x61,0x62,0x6c,0x65,0x20,0x74,
28625
+0x6f,0x20,0x46,0x6f,0x6e,0x74,0x73,0x20,0x6f,0x72,0x20,0x46,
28626
+0x6f,0x6e,0x74,0x20,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,
28627
+0x20,0x74,0x68,0x61,0x74,0x20,0x68,0x61,0x73,0x20,0x62,0x65,
28628
+0x65,0x6e,0x20,0x6d,0x6f,0x64,0x69,0x66,0x69,0x65,0x64,0x20,
28629
+0x61,0x6e,0x64,0x20,0x69,0x73,0x20,0x64,0x69,0x73,0x74,0x72,
28630
+0x69,0x62,0x75,0x74,0x65,0x64,0x20,0x75,0x6e,0x64,0x65,0x72,
28631
+0x20,0x74,0x68,0x65,0x20,0x22,0x42,0x69,0x74,0x73,0x74,0x72,
28632
+0x65,0x61,0x6d,0x20,0x56,0x65,0x72,0x61,0x22,0x20,0x6e,0x61,
28633
+0x6d,0x65,0x73,0x2e,0x0a,0x0a,0x54,0x68,0x65,0x20,0x46,0x6f,
28634
+0x6e,0x74,0x20,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x20,
28635
+0x6d,0x61,0x79,0x20,0x62,0x65,0x20,0x73,0x6f,0x6c,0x64,0x20,
28636
+0x61,0x73,0x20,0x70,0x61,0x72,0x74,0x20,0x6f,0x66,0x20,0x61,
28637
+0x20,0x6c,0x61,0x72,0x67,0x65,0x72,0x20,0x73,0x6f,0x66,0x74,
28638
+0x77,0x61,0x72,0x65,0x20,0x70,0x61,0x63,0x6b,0x61,0x67,0x65,
28639
+0x20,0x62,0x75,0x74,0x20,0x6e,0x6f,0x20,0x63,0x6f,0x70,0x79,
28640
+0x20,0x6f,0x66,0x20,0x6f,0x6e,0x65,0x20,0x6f,0x72,0x20,0x6d,
28641
+0x6f,0x72,0x65,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x46,
28642
+0x6f,0x6e,0x74,0x20,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,
28643
+0x20,0x74,0x79,0x70,0x65,0x66,0x61,0x63,0x65,0x73,0x20,0x6d,
28644
+0x61,0x79,0x20,0x62,0x65,0x20,0x73,0x6f,0x6c,0x64,0x20,0x62,
28645
+0x79,0x20,0x69,0x74,0x73,0x65,0x6c,0x66,0x2e,0x0a,0x0a,0x54,
28646
+0x48,0x45,0x20,0x46,0x4f,0x4e,0x54,0x20,0x53,0x4f,0x46,0x54,
28647
+0x57,0x41,0x52,0x45,0x20,0x49,0x53,0x20,0x50,0x52,0x4f,0x56,
28648
+0x49,0x44,0x45,0x44,0x20,0x22,0x41,0x53,0x20,0x49,0x53,0x22,
28649
+0x2c,0x20,0x57,0x49,0x54,0x48,0x4f,0x55,0x54,0x20,0x57,0x41,
28650
+0x52,0x52,0x41,0x4e,0x54,0x59,0x20,0x4f,0x46,0x20,0x41,0x4e,
28651
+0x59,0x20,0x4b,0x49,0x4e,0x44,0x2c,0x20,0x45,0x58,0x50,0x52,
28652
+0x45,0x53,0x53,0x20,0x4f,0x52,0x20,0x49,0x4d,0x50,0x4c,0x49,
28653
+0x45,0x44,0x2c,0x20,0x49,0x4e,0x43,0x4c,0x55,0x44,0x49,0x4e,
28654
+0x47,0x20,0x42,0x55,0x54,0x20,0x4e,0x4f,0x54,0x20,0x4c,0x49,
28655
+0x4d,0x49,0x54,0x45,0x44,0x20,0x54,0x4f,0x20,0x41,0x4e,0x59,
28656
+0x20,0x57,0x41,0x52,0x52,0x41,0x4e,0x54,0x49,0x45,0x53,0x20,
28657
+0x4f,0x46,0x20,0x4d,0x45,0x52,0x43,0x48,0x41,0x4e,0x54,0x41,
28658
+0x42,0x49,0x4c,0x49,0x54,0x59,0x2c,0x20,0x46,0x49,0x54,0x4e,
28659
+0x45,0x53,0x53,0x20,0x46,0x4f,0x52,0x20,0x41,0x20,0x50,0x41,
28660
+0x52,0x54,0x49,0x43,0x55,0x4c,0x41,0x52,0x20,0x50,0x55,0x52,
28661
+0x50,0x4f,0x53,0x45,0x20,0x41,0x4e,0x44,0x20,0x4e,0x4f,0x4e,
28662
+0x49,0x4e,0x46,0x52,0x49,0x4e,0x47,0x45,0x4d,0x45,0x4e,0x54,
28663
+0x20,0x4f,0x46,0x20,0x43,0x4f,0x50,0x59,0x52,0x49,0x47,0x48,
28664
+0x54,0x2c,0x20,0x50,0x41,0x54,0x45,0x4e,0x54,0x2c,0x20,0x54,
28665
+0x52,0x41,0x44,0x45,0x4d,0x41,0x52,0x4b,0x2c,0x20,0x4f,0x52,
28666
+0x20,0x4f,0x54,0x48,0x45,0x52,0x20,0x52,0x49,0x47,0x48,0x54,
28667
+0x2e,0x20,0x49,0x4e,0x20,0x4e,0x4f,0x20,0x45,0x56,0x45,0x4e,
28668
+0x54,0x20,0x53,0x48,0x41,0x4c,0x4c,0x20,0x42,0x49,0x54,0x53,
28669
+0x54,0x52,0x45,0x41,0x4d,0x20,0x4f,0x52,0x20,0x54,0x48,0x45,
28670
+0x20,0x47,0x4e,0x4f,0x4d,0x45,0x20,0x46,0x4f,0x55,0x4e,0x44,
28671
+0x41,0x54,0x49,0x4f,0x4e,0x20,0x42,0x45,0x20,0x4c,0x49,0x41,
28672
+0x42,0x4c,0x45,0x20,0x46,0x4f,0x52,0x20,0x41,0x4e,0x59,0x20,
28673
+0x43,0x4c,0x41,0x49,0x4d,0x2c,0x20,0x44,0x41,0x4d,0x41,0x47,
28674
+0x45,0x53,0x20,0x4f,0x52,0x20,0x4f,0x54,0x48,0x45,0x52,0x20,
28675
+0x4c,0x49,0x41,0x42,0x49,0x4c,0x49,0x54,0x59,0x2c,0x20,0x49,
28676
+0x4e,0x43,0x4c,0x55,0x44,0x49,0x4e,0x47,0x20,0x41,0x4e,0x59,
28677
+0x20,0x47,0x45,0x4e,0x45,0x52,0x41,0x4c,0x2c,0x20,0x53,0x50,
28678
+0x45,0x43,0x49,0x41,0x4c,0x2c,0x20,0x49,0x4e,0x44,0x49,0x52,
28679
+0x45,0x43,0x54,0x2c,0x20,0x49,0x4e,0x43,0x49,0x44,0x45,0x4e,
28680
+0x54,0x41,0x4c,0x2c,0x20,0x4f,0x52,0x20,0x43,0x4f,0x4e,0x53,
28681
+0x45,0x51,0x55,0x45,0x4e,0x54,0x49,0x41,0x4c,0x20,0x44,0x41,
28682
+0x4d,0x41,0x47,0x45,0x53,0x2c,0x20,0x57,0x48,0x45,0x54,0x48,
28683
+0x45,0x52,0x20,0x49,0x4e,0x20,0x41,0x4e,0x20,0x41,0x43,0x54,
28684
+0x49,0x4f,0x4e,0x20,0x4f,0x46,0x20,0x43,0x4f,0x4e,0x54,0x52,
28685
+0x41,0x43,0x54,0x2c,0x20,0x54,0x4f,0x52,0x54,0x20,0x4f,0x52,
28686
+0x20,0x4f,0x54,0x48,0x45,0x52,0x57,0x49,0x53,0x45,0x2c,0x20,
28687
+0x41,0x52,0x49,0x53,0x49,0x4e,0x47,0x20,0x46,0x52,0x4f,0x4d,
28688
+0x2c,0x20,0x4f,0x55,0x54,0x20,0x4f,0x46,0x20,0x54,0x48,0x45,
28689
+0x20,0x55,0x53,0x45,0x20,0x4f,0x52,0x20,0x49,0x4e,0x41,0x42,
28690
+0x49,0x4c,0x49,0x54,0x59,0x20,0x54,0x4f,0x20,0x55,0x53,0x45,
28691
+0x20,0x54,0x48,0x45,0x20,0x46,0x4f,0x4e,0x54,0x20,0x53,0x4f,
28692
+0x46,0x54,0x57,0x41,0x52,0x45,0x20,0x4f,0x52,0x20,0x46,0x52,
28693
+0x4f,0x4d,0x20,0x4f,0x54,0x48,0x45,0x52,0x20,0x44,0x45,0x41,
28694
+0x4c,0x49,0x4e,0x47,0x53,0x20,0x49,0x4e,0x20,0x54,0x48,0x45,
28695
+0x20,0x46,0x4f,0x4e,0x54,0x20,0x53,0x4f,0x46,0x54,0x57,0x41,
28696
+0x52,0x45,0x2e,0x0a,0x0a,0x45,0x78,0x63,0x65,0x70,0x74,0x20,
28697
+0x61,0x73,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x65,0x64,
28698
+0x20,0x69,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x6e,0x6f,0x74,
28699
+0x69,0x63,0x65,0x2c,0x20,0x74,0x68,0x65,0x20,0x6e,0x61,0x6d,
28700
+0x65,0x73,0x20,0x6f,0x66,0x20,0x47,0x6e,0x6f,0x6d,0x65,0x2c,
28701
+0x20,0x74,0x68,0x65,0x20,0x47,0x6e,0x6f,0x6d,0x65,0x20,0x46,
28702
+0x6f,0x75,0x6e,0x64,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x61,
28703
+0x6e,0x64,0x20,0x42,0x69,0x74,0x73,0x74,0x72,0x65,0x61,0x6d,
28704
+0x20,0x49,0x6e,0x63,0x2e,0x2c,0x20,0x73,0x68,0x61,0x6c,0x6c,
28705
+0x20,0x6e,0x6f,0x74,0x20,0x62,0x65,0x20,0x75,0x73,0x65,0x64,
28706
+0x20,0x69,0x6e,0x20,0x61,0x64,0x76,0x65,0x72,0x74,0x69,0x73,
28707
+0x69,0x6e,0x67,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,0x65,0x72,
28708
+0x77,0x69,0x73,0x65,0x20,0x74,0x6f,0x20,0x70,0x72,0x6f,0x6d,
28709
+0x6f,0x74,0x65,0x20,0x74,0x68,0x65,0x20,0x73,0x61,0x6c,0x65,
28710
+0x2c,0x20,0x75,0x73,0x65,0x20,0x6f,0x72,0x20,0x6f,0x74,0x68,
28711
+0x65,0x72,0x20,0x64,0x65,0x61,0x6c,0x69,0x6e,0x67,0x73,0x20,
28712
+0x69,0x6e,0x20,0x74,0x68,0x69,0x73,0x20,0x46,0x6f,0x6e,0x74,
28713
+0x20,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x20,0x77,0x69,
28714
+0x74,0x68,0x6f,0x75,0x74,0x20,0x70,0x72,0x69,0x6f,0x72,0x20,
28715
+0x77,0x72,0x69,0x74,0x74,0x65,0x6e,0x20,0x61,0x75,0x74,0x68,
28716
+0x6f,0x72,0x69,0x7a,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x72,
28717
+0x6f,0x6d,0x20,0x74,0x68,0x65,0x20,0x47,0x6e,0x6f,0x6d,0x65,
28718
+0x20,0x46,0x6f,0x75,0x6e,0x64,0x61,0x74,0x69,0x6f,0x6e,0x20,
28719
+0x6f,0x72,0x20,0x42,0x69,0x74,0x73,0x74,0x72,0x65,0x61,0x6d,
28720
+0x20,0x49,0x6e,0x63,0x2e,0x2c,0x20,0x72,0x65,0x73,0x70,0x65,
28721
+0x63,0x74,0x69,0x76,0x65,0x6c,0x79,0x2e,0x20,0x46,0x6f,0x72,
28722
+0x20,0x66,0x75,0x72,0x74,0x68,0x65,0x72,0x20,0x69,0x6e,0x66,
28723
+0x6f,0x72,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2c,0x20,0x63,0x6f,
28724
+0x6e,0x74,0x61,0x63,0x74,0x3a,0x20,0x66,0x6f,0x6e,0x74,0x73,
28725
+0x20,0x61,0x74,0x20,0x67,0x6e,0x6f,0x6d,0x65,0x20,0x64,0x6f,
28726
+0x74,0x20,0x6f,0x72,0x67,0x2e,0x20,0x0a,0x00,0x00,0x68,0x00,
28727
+0x74,0x00,0x74,0x00,0x70,0x00,0x3a,0x00,0x2f,0x00,0x2f,0x00,
28728
+0x64,0x00,0x65,0x00,0x6a,0x00,0x61,0x00,0x76,0x00,0x75,0x00,
28729
+0x2e,0x00,0x73,0x00,0x6f,0x00,0x75,0x00,0x72,0x00,0x63,0x00,
28730
+0x65,0x00,0x66,0x00,0x6f,0x00,0x72,0x00,0x67,0x00,0x65,0x00,
28731
+0x2e,0x00,0x6e,0x00,0x65,0x00,0x74,0x00,0x2f,0x00,0x77,0x00,
28732
+0x69,0x00,0x6b,0x00,0x69,0x00,0x2f,0x00,0x69,0x00,0x6e,0x00,
28733
+0x64,0x00,0x65,0x00,0x78,0x00,0x2e,0x00,0x70,0x00,0x68,0x00,
28734
+0x70,0x00,0x2f,0x00,0x4c,0x00,0x69,0x00,0x63,0x00,0x65,0x00,
28735
+0x6e,0x00,0x73,0x00,0x65,0x00,0x00,0x68,0x74,0x74,0x70,0x3a,
28736
+0x2f,0x2f,0x64,0x65,0x6a,0x61,0x76,0x75,0x2e,0x73,0x6f,0x75,
28737
+0x72,0x63,0x65,0x66,0x6f,0x72,0x67,0x65,0x2e,0x6e,0x65,0x74,
28738
+0x2f,0x77,0x69,0x6b,0x69,0x2f,0x69,0x6e,0x64,0x65,0x78,0x2e,
28739
+0x70,0x68,0x70,0x2f,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x00,
28740
+0x00,0x44,0x00,0x65,0x00,0x6a,0x00,0x61,0x00,0x56,0x00,0x75,
28741
+0x00,0x20,0x00,0x53,0x00,0x65,0x00,0x72,0x00,0x69,0x00,0x66,
28742
+0x00,0x00,0x44,0x65,0x6a,0x61,0x56,0x75,0x20,0x53,0x65,0x72,
28743
+0x69,0x66,0x00,0x00,0x42,0x00,0x6f,0x00,0x6f,0x00,0x6b,0x00,
28744
+0x00,0x42,0x6f,0x6f,0x6b,0x00,0x00,0x00,0x00,0x02,0x00,0x00,
28745
+0x00,0x00,0x00,0x00,0xff,0x7e,0x00,0x5a,0x00,0x00,0x00,0x00,
28746
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
28747
+0x00,0x00,0x00,0x00,0x0d,0xc5,0x00,0x00,0x00,0x01,0x00,0x02,
28748
+0x00,0x03,0x00,0x04,0x00,0x05,0x00,0x06,0x00,0x07,0x00,0x08,
28749
+0x00,0x09,0x00,0x0a,0x00,0x0b,0x00,0x0c,0x00,0x0d,0x00,0x0e,
28750
+0x00,0x0f,0x00,0x10,0x00,0x11,0x00,0x12,0x00,0x13,0x00,0x14,
28751
+0x00,0x15,0x00,0x16,0x00,0x17,0x00,0x18,0x00,0x19,0x00,0x1a,
28752
+0x00,0x1b,0x00,0x1c,0x00,0x1d,0x00,0x1e,0x00,0x1f,0x00,0x20,
28753
+0x00,0x21,0x00,0x22,0x00,0x23,0x00,0x24,0x00,0x25,0x00,0x26,
28754
+0x00,0x27,0x00,0x28,0x00,0x29,0x00,0x2a,0x00,0x2b,0x00,0x2c,
28755
+0x00,0x2d,0x00,0x2e,0x00,0x2f,0x00,0x30,0x00,0x31,0x00,0x32,
28756
+0x00,0x33,0x00,0x34,0x00,0x35,0x00,0x36,0x00,0x37,0x00,0x38,
28757
+0x00,0x39,0x00,0x3a,0x00,0x3b,0x00,0x3c,0x00,0x3d,0x00,0x3e,
28758
+0x00,0x3f,0x00,0x40,0x00,0x41,0x00,0x42,0x00,0x43,0x00,0x44,
28759
+0x00,0x45,0x00,0x46,0x00,0x47,0x00,0x48,0x00,0x49,0x00,0x4a,
28760
+0x00,0x4b,0x00,0x4c,0x00,0x4d,0x00,0x4e,0x00,0x4f,0x00,0x50,
28761
+0x00,0x51,0x00,0x52,0x00,0x53,0x00,0x54,0x00,0x55,0x00,0x56,
28762
+0x00,0x57,0x00,0x58,0x00,0x59,0x00,0x5a,0x00,0x5b,0x00,0x5c,
28763
+0x00,0x5d,0x00,0x5e,0x00,0x5f,0x00,0x60,0x00,0x61,0x00,0xac,
28764
+0x00,0xa3,0x00,0x84,0x00,0x85,0x00,0xbd,0x00,0x96,0x00,0xe8,
28765
+0x00,0x86,0x00,0x8e,0x00,0x8b,0x00,0x9d,0x00,0xa9,0x00,0xa4,
28766
+0x01,0x02,0x00,0x8a,0x00,0xda,0x00,0x83,0x00,0x93,0x00,0xf2,
28767
+0x00,0xf3,0x00,0x8d,0x00,0x97,0x00,0x88,0x00,0xc3,0x00,0xde,
28768
+0x00,0xf1,0x00,0x9e,0x00,0xaa,0x00,0xf5,0x00,0xf4,0x00,0xf6,
28769
+0x00,0xa2,0x00,0xad,0x00,0xc9,0x00,0xc7,0x00,0xae,0x00,0x62,
28770
+0x00,0x63,0x00,0x90,0x00,0x64,0x00,0xcb,0x00,0x65,0x00,0xc8,
28771
+0x00,0xca,0x00,0xcf,0x00,0xcc,0x00,0xcd,0x00,0xce,0x00,0xe9,
28772
+0x00,0x66,0x00,0xd3,0x00,0xd0,0x00,0xd1,0x00,0xaf,0x00,0x67,
28773
+0x00,0xf0,0x00,0x91,0x00,0xd6,0x00,0xd4,0x00,0xd5,0x00,0x68,
28774
+0x00,0xeb,0x00,0xed,0x00,0x89,0x00,0x6a,0x00,0x69,0x00,0x6b,
28775
+0x00,0x6d,0x00,0x6c,0x00,0x6e,0x00,0xa0,0x00,0x6f,0x00,0x71,
28776
+0x00,0x70,0x00,0x72,0x00,0x73,0x00,0x75,0x00,0x74,0x00,0x76,
28777
+0x00,0x77,0x00,0xea,0x00,0x78,0x00,0x7a,0x00,0x79,0x00,0x7b,
28778
+0x00,0x7d,0x00,0x7c,0x00,0xb8,0x00,0xa1,0x00,0x7f,0x00,0x7e,
28779
+0x00,0x80,0x00,0x81,0x00,0xec,0x00,0xee,0x00,0xba,0x01,0x03,
28780
+0x01,0x04,0x01,0x05,0x01,0x06,0x01,0x07,0x01,0x08,0x00,0xfd,
28781
+0x00,0xfe,0x01,0x09,0x01,0x0a,0x01,0x0b,0x01,0x0c,0x00,0xff,
28782
+0x01,0x00,0x01,0x0d,0x01,0x0e,0x01,0x0f,0x01,0x01,0x01,0x10,
28783
+0x01,0x11,0x01,0x12,0x01,0x13,0x01,0x14,0x01,0x15,0x01,0x16,
28784
+0x01,0x17,0x01,0x18,0x01,0x19,0x01,0x1a,0x01,0x1b,0x00,0xf8,
28785
+0x00,0xf9,0x01,0x1c,0x01,0x1d,0x01,0x1e,0x01,0x1f,0x01,0x20,
28786
+0x01,0x21,0x01,0x22,0x01,0x23,0x01,0x24,0x01,0x25,0x01,0x26,
28787
+0x01,0x27,0x01,0x28,0x01,0x29,0x01,0x2a,0x01,0x2b,0x00,0xfa,
28788
+0x00,0xd7,0x01,0x2c,0x01,0x2d,0x01,0x2e,0x01,0x2f,0x01,0x30,
28789
+0x01,0x31,0x01,0x32,0x01,0x33,0x01,0x34,0x01,0x35,0x01,0x36,
28790
+0x01,0x37,0x01,0x38,0x01,0x39,0x01,0x3a,0x00,0xe2,0x00,0xe3,
28791
+0x01,0x3b,0x01,0x3c,0x01,0x3d,0x01,0x3e,0x01,0x3f,0x01,0x40,
28792
+0x01,0x41,0x01,0x42,0x01,0x43,0x01,0x44,0x01,0x45,0x01,0x46,
28793
+0x01,0x47,0x01,0x48,0x01,0x49,0x00,0xb0,0x00,0xb1,0x01,0x4a,
28794
+0x01,0x4b,0x01,0x4c,0x01,0x4d,0x01,0x4e,0x01,0x4f,0x01,0x50,
28795
+0x01,0x51,0x01,0x52,0x01,0x53,0x00,0xfb,0x00,0xfc,0x00,0xe4,
28796
+0x00,0xe5,0x01,0x54,0x01,0x55,0x01,0x56,0x01,0x57,0x01,0x58,
28797
+0x01,0x59,0x01,0x5a,0x01,0x5b,0x01,0x5c,0x01,0x5d,0x01,0x5e,
28798
+0x01,0x5f,0x01,0x60,0x01,0x61,0x01,0x62,0x01,0x63,0x01,0x64,
28799
+0x01,0x65,0x01,0x66,0x01,0x67,0x01,0x68,0x01,0x69,0x00,0xbb,
28800
+0x01,0x6a,0x01,0x6b,0x01,0x6c,0x01,0x6d,0x00,0xe6,0x00,0xe7,
28801
+0x01,0x6e,0x01,0x6f,0x01,0x70,0x01,0x71,0x01,0x72,0x01,0x73,
28802
+0x01,0x74,0x01,0x75,0x01,0x76,0x01,0x77,0x01,0x78,0x01,0x79,
28803
+0x01,0x7a,0x01,0x7b,0x01,0x7c,0x01,0x7d,0x01,0x7e,0x01,0x7f,
28804
+0x01,0x80,0x00,0xa6,0x01,0x81,0x01,0x82,0x01,0x83,0x01,0x84,
28805
+0x01,0x85,0x01,0x86,0x01,0x87,0x01,0x88,0x01,0x89,0x01,0x8a,
28806
+0x01,0x8b,0x01,0x8c,0x01,0x8d,0x01,0x8e,0x01,0x8f,0x01,0x90,
28807
+0x01,0x91,0x01,0x92,0x01,0x93,0x01,0x94,0x01,0x95,0x01,0x96,
28808
+0x01,0x97,0x01,0x98,0x01,0x99,0x01,0x9a,0x01,0x9b,0x01,0x9c,
28809
+0x01,0x9d,0x01,0x9e,0x01,0x9f,0x01,0xa0,0x01,0xa1,0x01,0xa2,
28810
+0x01,0xa3,0x01,0xa4,0x01,0xa5,0x01,0xa6,0x01,0xa7,0x01,0xa8,
28811
+0x01,0xa9,0x01,0xaa,0x01,0xab,0x01,0xac,0x01,0xad,0x01,0xae,
28812
+0x01,0xaf,0x01,0xb0,0x01,0xb1,0x01,0xb2,0x01,0xb3,0x01,0xb4,
28813
+0x01,0xb5,0x01,0xb6,0x01,0xb7,0x01,0xb8,0x01,0xb9,0x01,0xba,
28814
+0x01,0xbb,0x01,0xbc,0x01,0xbd,0x01,0xbe,0x01,0xbf,0x01,0xc0,
28815
+0x01,0xc1,0x01,0xc2,0x01,0xc3,0x01,0xc4,0x01,0xc5,0x01,0xc6,
28816
+0x01,0xc7,0x01,0xc8,0x01,0xc9,0x01,0xca,0x01,0xcb,0x01,0xcc,
28817
+0x01,0xcd,0x01,0xce,0x01,0xcf,0x01,0xd0,0x01,0xd1,0x01,0xd2,
28818
+0x01,0xd3,0x01,0xd4,0x01,0xd5,0x01,0xd6,0x01,0xd7,0x01,0xd8,
28819
+0x01,0xd9,0x01,0xda,0x01,0xdb,0x01,0xdc,0x01,0xdd,0x01,0xde,
28820
+0x01,0xdf,0x01,0xe0,0x01,0xe1,0x01,0xe2,0x01,0xe3,0x01,0xe4,
28821
+0x01,0xe5,0x01,0xe6,0x01,0xe7,0x01,0xe8,0x01,0xe9,0x01,0xea,
28822
+0x01,0xeb,0x01,0xec,0x01,0xed,0x01,0xee,0x01,0xef,0x01,0xf0,
28823
+0x01,0xf1,0x01,0xf2,0x01,0xf3,0x01,0xf4,0x01,0xf5,0x01,0xf6,
28824
+0x01,0xf7,0x01,0xf8,0x01,0xf9,0x01,0xfa,0x01,0xfb,0x01,0xfc,
28825
+0x01,0xfd,0x01,0xfe,0x01,0xff,0x02,0x00,0x02,0x01,0x02,0x02,
28826
+0x02,0x03,0x02,0x04,0x02,0x05,0x02,0x06,0x02,0x07,0x02,0x08,
28827
+0x02,0x09,0x02,0x0a,0x02,0x0b,0x02,0x0c,0x02,0x0d,0x02,0x0e,
28828
+0x02,0x0f,0x02,0x10,0x02,0x11,0x02,0x12,0x02,0x13,0x02,0x14,
28829
+0x02,0x15,0x02,0x16,0x02,0x17,0x02,0x18,0x02,0x19,0x02,0x1a,
28830
+0x02,0x1b,0x02,0x1c,0x02,0x1d,0x02,0x1e,0x02,0x1f,0x02,0x20,
28831
+0x02,0x21,0x02,0x22,0x02,0x23,0x02,0x24,0x02,0x25,0x02,0x26,
28832
+0x02,0x27,0x02,0x28,0x02,0x29,0x02,0x2a,0x02,0x2b,0x02,0x2c,
28833
+0x02,0x2d,0x02,0x2e,0x02,0x2f,0x02,0x30,0x02,0x31,0x02,0x32,
28834
+0x02,0x33,0x02,0x34,0x02,0x35,0x02,0x36,0x02,0x37,0x02,0x38,
28835
+0x02,0x39,0x02,0x3a,0x02,0x3b,0x02,0x3c,0x02,0x3d,0x02,0x3e,
28836
+0x02,0x3f,0x02,0x40,0x02,0x41,0x02,0x42,0x02,0x43,0x02,0x44,
28837
+0x02,0x45,0x02,0x46,0x02,0x47,0x02,0x48,0x02,0x49,0x02,0x4a,
28838
+0x02,0x4b,0x02,0x4c,0x02,0x4d,0x02,0x4e,0x02,0x4f,0x02,0x50,
28839
+0x02,0x51,0x02,0x52,0x02,0x53,0x02,0x54,0x02,0x55,0x02,0x56,
28840
+0x02,0x57,0x02,0x58,0x02,0x59,0x02,0x5a,0x02,0x5b,0x02,0x5c,
28841
+0x02,0x5d,0x02,0x5e,0x02,0x5f,0x02,0x60,0x02,0x61,0x02,0x62,
28842
+0x02,0x63,0x02,0x64,0x02,0x65,0x02,0x66,0x02,0x67,0x02,0x68,
28843
+0x02,0x69,0x02,0x6a,0x02,0x6b,0x02,0x6c,0x02,0x6d,0x02,0x6e,
28844
+0x02,0x6f,0x02,0x70,0x02,0x71,0x02,0x72,0x02,0x73,0x02,0x74,
28845
+0x02,0x75,0x02,0x76,0x02,0x77,0x02,0x78,0x02,0x79,0x02,0x7a,
28846
+0x02,0x7b,0x02,0x7c,0x02,0x7d,0x02,0x7e,0x02,0x7f,0x02,0x80,
28847
+0x02,0x81,0x02,0x82,0x02,0x83,0x02,0x84,0x02,0x85,0x02,0x86,
28848
+0x02,0x87,0x02,0x88,0x02,0x89,0x02,0x8a,0x02,0x8b,0x02,0x8c,
28849
+0x02,0x8d,0x02,0x8e,0x02,0x8f,0x02,0x90,0x02,0x91,0x02,0x92,
28850
+0x02,0x93,0x02,0x94,0x02,0x95,0x02,0x96,0x02,0x97,0x02,0x98,
28851
+0x02,0x99,0x02,0x9a,0x02,0x9b,0x02,0x9c,0x02,0x9d,0x02,0x9e,
28852
+0x02,0x9f,0x02,0xa0,0x02,0xa1,0x02,0xa2,0x02,0xa3,0x02,0xa4,
28853
+0x02,0xa5,0x02,0xa6,0x02,0xa7,0x02,0xa8,0x02,0xa9,0x02,0xaa,
28854
+0x02,0xab,0x02,0xac,0x02,0xad,0x02,0xae,0x02,0xaf,0x02,0xb0,
28855
+0x02,0xb1,0x02,0xb2,0x02,0xb3,0x00,0xd8,0x00,0xe1,0x02,0xb4,
28856
+0x02,0xb5,0x02,0xb6,0x02,0xb7,0x02,0xb8,0x02,0xb9,0x02,0xba,
28857
+0x02,0xbb,0x02,0xbc,0x02,0xbd,0x02,0xbe,0x02,0xbf,0x00,0xdb,
28858
+0x00,0xdc,0x00,0xdd,0x00,0xe0,0x00,0xd9,0x00,0xdf,0x02,0xc0,
28859
+0x02,0xc1,0x02,0xc2,0x02,0xc3,0x02,0xc4,0x02,0xc5,0x02,0xc6,
28860
+0x02,0xc7,0x02,0xc8,0x02,0xc9,0x02,0xca,0x02,0xcb,0x02,0xcc,
28861
+0x02,0xcd,0x02,0xce,0x02,0xcf,0x02,0xd0,0x02,0xd1,0x02,0xd2,
28862
+0x02,0xd3,0x02,0xd4,0x02,0xd5,0x02,0xd6,0x02,0xd7,0x02,0xd8,
28863
+0x02,0xd9,0x02,0xda,0x02,0xdb,0x02,0xdc,0x02,0xdd,0x02,0xde,
28864
+0x02,0xdf,0x02,0xe0,0x02,0xe1,0x02,0xe2,0x02,0xe3,0x02,0xe4,
28865
+0x02,0xe5,0x02,0xe6,0x02,0xe7,0x02,0xe8,0x02,0xe9,0x02,0xea,
28866
+0x02,0xeb,0x02,0xec,0x02,0xed,0x02,0xee,0x02,0xef,0x02,0xf0,
28867
+0x02,0xf1,0x02,0xf2,0x02,0xf3,0x02,0xf4,0x02,0xf5,0x02,0xf6,
28868
+0x02,0xf7,0x02,0xf8,0x02,0xf9,0x02,0xfa,0x02,0xfb,0x02,0xfc,
28869
+0x02,0xfd,0x02,0xfe,0x02,0xff,0x03,0x00,0x03,0x01,0x03,0x02,
28870
+0x03,0x03,0x03,0x04,0x03,0x05,0x03,0x06,0x03,0x07,0x03,0x08,
28871
+0x03,0x09,0x03,0x0a,0x03,0x0b,0x03,0x0c,0x03,0x0d,0x03,0x0e,
28872
+0x03,0x0f,0x03,0x10,0x03,0x11,0x03,0x12,0x03,0x13,0x03,0x14,
28873
+0x03,0x15,0x03,0x16,0x03,0x17,0x03,0x18,0x03,0x19,0x03,0x1a,
28874
+0x03,0x1b,0x03,0x1c,0x03,0x1d,0x03,0x1e,0x03,0x1f,0x03,0x20,
28875
+0x03,0x21,0x03,0x22,0x03,0x23,0x03,0x24,0x03,0x25,0x03,0x26,
28876
+0x03,0x27,0x03,0x28,0x03,0x29,0x03,0x2a,0x03,0x2b,0x03,0x2c,
28877
+0x03,0x2d,0x03,0x2e,0x03,0x2f,0x03,0x30,0x03,0x31,0x03,0x32,
28878
+0x03,0x33,0x03,0x34,0x03,0x35,0x03,0x36,0x03,0x37,0x03,0x38,
28879
+0x03,0x39,0x03,0x3a,0x03,0x3b,0x03,0x3c,0x03,0x3d,0x03,0x3e,
28880
+0x03,0x3f,0x03,0x40,0x03,0x41,0x03,0x42,0x03,0x43,0x03,0x44,
28881
+0x00,0x9f,0x03,0x45,0x03,0x46,0x03,0x47,0x03,0x48,0x03,0x49,
28882
+0x03,0x4a,0x03,0x4b,0x03,0x4c,0x03,0x4d,0x03,0x4e,0x03,0x4f,
28883
+0x03,0x50,0x03,0x51,0x03,0x52,0x03,0x53,0x03,0x54,0x03,0x55,
28884
+0x03,0x56,0x03,0x57,0x03,0x58,0x03,0x59,0x03,0x5a,0x00,0x9b,
28885
+0x03,0x5b,0x03,0x5c,0x03,0x5d,0x03,0x5e,0x03,0x5f,0x03,0x60,
28886
+0x03,0x61,0x03,0x62,0x03,0x63,0x03,0x64,0x03,0x65,0x03,0x66,
28887
+0x03,0x67,0x03,0x68,0x03,0x69,0x03,0x6a,0x03,0x6b,0x03,0x6c,
28888
+0x03,0x6d,0x03,0x6e,0x03,0x6f,0x03,0x70,0x03,0x71,0x03,0x72,
28889
+0x03,0x73,0x03,0x74,0x03,0x75,0x03,0x76,0x03,0x77,0x03,0x78,
28890
+0x03,0x79,0x03,0x7a,0x03,0x7b,0x03,0x7c,0x03,0x7d,0x03,0x7e,
28891
+0x03,0x7f,0x03,0x80,0x03,0x81,0x03,0x82,0x03,0x83,0x03,0x84,
28892
+0x03,0x85,0x03,0x86,0x03,0x87,0x03,0x88,0x03,0x89,0x03,0x8a,
28893
+0x03,0x8b,0x03,0x8c,0x03,0x8d,0x03,0x8e,0x03,0x8f,0x03,0x90,
28894
+0x03,0x91,0x03,0x92,0x03,0x93,0x03,0x94,0x03,0x95,0x03,0x96,
28895
+0x03,0x97,0x03,0x98,0x03,0x99,0x03,0x9a,0x03,0x9b,0x03,0x9c,
28896
+0x03,0x9d,0x03,0x9e,0x03,0x9f,0x03,0xa0,0x03,0xa1,0x03,0xa2,
28897
+0x03,0xa3,0x03,0xa4,0x03,0xa5,0x03,0xa6,0x03,0xa7,0x03,0xa8,
28898
+0x03,0xa9,0x03,0xaa,0x03,0xab,0x03,0xac,0x03,0xad,0x03,0xae,
28899
+0x03,0xaf,0x03,0xb0,0x03,0xb1,0x03,0xb2,0x03,0xb3,0x03,0xb4,
28900
+0x03,0xb5,0x03,0xb6,0x03,0xb7,0x03,0xb8,0x03,0xb9,0x03,0xba,
28901
+0x03,0xbb,0x03,0xbc,0x03,0xbd,0x03,0xbe,0x03,0xbf,0x03,0xc0,
28902
+0x03,0xc1,0x03,0xc2,0x03,0xc3,0x03,0xc4,0x03,0xc5,0x03,0xc6,
28903
+0x03,0xc7,0x03,0xc8,0x03,0xc9,0x03,0xca,0x03,0xcb,0x03,0xcc,
28904
+0x03,0xcd,0x03,0xce,0x03,0xcf,0x03,0xd0,0x03,0xd1,0x03,0xd2,
28905
+0x03,0xd3,0x03,0xd4,0x03,0xd5,0x03,0xd6,0x03,0xd7,0x03,0xd8,
28906
+0x03,0xd9,0x03,0xda,0x03,0xdb,0x03,0xdc,0x03,0xdd,0x03,0xde,
28907
+0x03,0xdf,0x03,0xe0,0x03,0xe1,0x03,0xe2,0x03,0xe3,0x03,0xe4,
28908
+0x03,0xe5,0x03,0xe6,0x03,0xe7,0x03,0xe8,0x03,0xe9,0x03,0xea,
28909
+0x03,0xeb,0x03,0xec,0x03,0xed,0x03,0xee,0x03,0xef,0x03,0xf0,
28910
+0x03,0xf1,0x03,0xf2,0x03,0xf3,0x03,0xf4,0x03,0xf5,0x03,0xf6,
28911
+0x03,0xf7,0x03,0xf8,0x03,0xf9,0x03,0xfa,0x03,0xfb,0x03,0xfc,
28912
+0x03,0xfd,0x03,0xfe,0x03,0xff,0x04,0x00,0x04,0x01,0x04,0x02,
28913
+0x04,0x03,0x04,0x04,0x04,0x05,0x04,0x06,0x04,0x07,0x04,0x08,
28914
+0x04,0x09,0x04,0x0a,0x04,0x0b,0x04,0x0c,0x04,0x0d,0x04,0x0e,
28915
+0x04,0x0f,0x04,0x10,0x04,0x11,0x04,0x12,0x04,0x13,0x04,0x14,
28916
+0x04,0x15,0x04,0x16,0x04,0x17,0x04,0x18,0x04,0x19,0x04,0x1a,
28917
+0x04,0x1b,0x04,0x1c,0x04,0x1d,0x04,0x1e,0x04,0x1f,0x04,0x20,
28918
+0x04,0x21,0x04,0x22,0x04,0x23,0x04,0x24,0x04,0x25,0x04,0x26,
28919
+0x04,0x27,0x04,0x28,0x04,0x29,0x04,0x2a,0x04,0x2b,0x04,0x2c,
28920
+0x04,0x2d,0x04,0x2e,0x04,0x2f,0x04,0x30,0x04,0x31,0x04,0x32,
28921
+0x04,0x33,0x04,0x34,0x04,0x35,0x04,0x36,0x04,0x37,0x04,0x38,
28922
+0x04,0x39,0x04,0x3a,0x04,0x3b,0x04,0x3c,0x04,0x3d,0x04,0x3e,
28923
+0x04,0x3f,0x04,0x40,0x04,0x41,0x04,0x42,0x04,0x43,0x04,0x44,
28924
+0x04,0x45,0x04,0x46,0x04,0x47,0x04,0x48,0x04,0x49,0x04,0x4a,
28925
+0x04,0x4b,0x04,0x4c,0x04,0x4d,0x04,0x4e,0x04,0x4f,0x04,0x50,
28926
+0x04,0x51,0x04,0x52,0x04,0x53,0x04,0x54,0x04,0x55,0x04,0x56,
28927
+0x04,0x57,0x04,0x58,0x04,0x59,0x04,0x5a,0x04,0x5b,0x04,0x5c,
28928
+0x04,0x5d,0x04,0x5e,0x04,0x5f,0x04,0x60,0x04,0x61,0x04,0x62,
28929
+0x04,0x63,0x04,0x64,0x04,0x65,0x04,0x66,0x04,0x67,0x04,0x68,
28930
+0x04,0x69,0x04,0x6a,0x04,0x6b,0x04,0x6c,0x04,0x6d,0x04,0x6e,
28931
+0x04,0x6f,0x04,0x70,0x04,0x71,0x04,0x72,0x04,0x73,0x04,0x74,
28932
+0x04,0x75,0x04,0x76,0x04,0x77,0x04,0x78,0x04,0x79,0x04,0x7a,
28933
+0x04,0x7b,0x04,0x7c,0x04,0x7d,0x04,0x7e,0x04,0x7f,0x04,0x80,
28934
+0x04,0x81,0x04,0x82,0x04,0x83,0x04,0x84,0x04,0x85,0x04,0x86,
28935
+0x04,0x87,0x04,0x88,0x04,0x89,0x04,0x8a,0x04,0x8b,0x04,0x8c,
28936
+0x04,0x8d,0x04,0x8e,0x04,0x8f,0x04,0x90,0x04,0x91,0x04,0x92,
28937
+0x04,0x93,0x04,0x94,0x04,0x95,0x04,0x96,0x04,0x97,0x04,0x98,
28938
+0x04,0x99,0x04,0x9a,0x04,0x9b,0x04,0x9c,0x04,0x9d,0x04,0x9e,
28939
+0x04,0x9f,0x04,0xa0,0x04,0xa1,0x04,0xa2,0x04,0xa3,0x04,0xa4,
28940
+0x04,0xa5,0x04,0xa6,0x04,0xa7,0x04,0xa8,0x04,0xa9,0x04,0xaa,
28941
+0x04,0xab,0x04,0xac,0x04,0xad,0x04,0xae,0x04,0xaf,0x04,0xb0,
28942
+0x04,0xb1,0x04,0xb2,0x04,0xb3,0x04,0xb4,0x04,0xb5,0x04,0xb6,
28943
+0x04,0xb7,0x04,0xb8,0x04,0xb9,0x04,0xba,0x04,0xbb,0x04,0xbc,
28944
+0x04,0xbd,0x04,0xbe,0x04,0xbf,0x04,0xc0,0x04,0xc1,0x04,0xc2,
28945
+0x04,0xc3,0x04,0xc4,0x04,0xc5,0x04,0xc6,0x04,0xc7,0x04,0xc8,
28946
+0x04,0xc9,0x04,0xca,0x04,0xcb,0x04,0xcc,0x04,0xcd,0x04,0xce,
28947
+0x04,0xcf,0x04,0xd0,0x04,0xd1,0x04,0xd2,0x04,0xd3,0x04,0xd4,
28948
+0x04,0xd5,0x04,0xd6,0x04,0xd7,0x04,0xd8,0x04,0xd9,0x04,0xda,
28949
+0x04,0xdb,0x04,0xdc,0x04,0xdd,0x04,0xde,0x04,0xdf,0x04,0xe0,
28950
+0x04,0xe1,0x04,0xe2,0x04,0xe3,0x04,0xe4,0x04,0xe5,0x04,0xe6,
28951
+0x04,0xe7,0x04,0xe8,0x04,0xe9,0x04,0xea,0x04,0xeb,0x04,0xec,
28952
+0x04,0xed,0x04,0xee,0x04,0xef,0x04,0xf0,0x04,0xf1,0x04,0xf2,
28953
+0x04,0xf3,0x04,0xf4,0x04,0xf5,0x04,0xf6,0x04,0xf7,0x04,0xf8,
28954
+0x04,0xf9,0x04,0xfa,0x04,0xfb,0x04,0xfc,0x04,0xfd,0x04,0xfe,
28955
+0x04,0xff,0x05,0x00,0x05,0x01,0x05,0x02,0x05,0x03,0x05,0x04,
28956
+0x05,0x05,0x05,0x06,0x05,0x07,0x05,0x08,0x05,0x09,0x05,0x0a,
28957
+0x05,0x0b,0x05,0x0c,0x05,0x0d,0x05,0x0e,0x05,0x0f,0x05,0x10,
28958
+0x05,0x11,0x05,0x12,0x05,0x13,0x05,0x14,0x05,0x15,0x05,0x16,
28959
+0x05,0x17,0x05,0x18,0x05,0x19,0x05,0x1a,0x05,0x1b,0x05,0x1c,
28960
+0x05,0x1d,0x05,0x1e,0x05,0x1f,0x05,0x20,0x05,0x21,0x05,0x22,
28961
+0x05,0x23,0x05,0x24,0x05,0x25,0x05,0x26,0x05,0x27,0x05,0x28,
28962
+0x05,0x29,0x05,0x2a,0x05,0x2b,0x05,0x2c,0x05,0x2d,0x05,0x2e,
28963
+0x05,0x2f,0x05,0x30,0x05,0x31,0x05,0x32,0x05,0x33,0x05,0x34,
28964
+0x05,0x35,0x05,0x36,0x05,0x37,0x05,0x38,0x05,0x39,0x05,0x3a,
28965
+0x05,0x3b,0x05,0x3c,0x05,0x3d,0x05,0x3e,0x05,0x3f,0x05,0x40,
28966
+0x05,0x41,0x05,0x42,0x05,0x43,0x05,0x44,0x05,0x45,0x05,0x46,
28967
+0x05,0x47,0x05,0x48,0x05,0x49,0x05,0x4a,0x05,0x4b,0x05,0x4c,
28968
+0x05,0x4d,0x05,0x4e,0x05,0x4f,0x05,0x50,0x05,0x51,0x05,0x52,
28969
+0x05,0x53,0x05,0x54,0x05,0x55,0x05,0x56,0x05,0x57,0x05,0x58,
28970
+0x05,0x59,0x05,0x5a,0x05,0x5b,0x05,0x5c,0x05,0x5d,0x05,0x5e,
28971
+0x05,0x5f,0x05,0x60,0x05,0x61,0x05,0x62,0x05,0x63,0x05,0x64,
28972
+0x05,0x65,0x05,0x66,0x05,0x67,0x05,0x68,0x05,0x69,0x05,0x6a,
28973
+0x05,0x6b,0x05,0x6c,0x05,0x6d,0x05,0x6e,0x05,0x6f,0x05,0x70,
28974
+0x05,0x71,0x05,0x72,0x05,0x73,0x05,0x74,0x05,0x75,0x05,0x76,
28975
+0x05,0x77,0x05,0x78,0x05,0x79,0x05,0x7a,0x05,0x7b,0x05,0x7c,
28976
+0x05,0x7d,0x05,0x7e,0x05,0x7f,0x05,0x80,0x05,0x81,0x05,0x82,
28977
+0x05,0x83,0x05,0x84,0x05,0x85,0x05,0x86,0x05,0x87,0x05,0x88,
28978
+0x05,0x89,0x05,0x8a,0x05,0x8b,0x05,0x8c,0x05,0x8d,0x05,0x8e,
28979
+0x05,0x8f,0x05,0x90,0x05,0x91,0x05,0x92,0x05,0x93,0x05,0x94,
28980
+0x05,0x95,0x05,0x96,0x05,0x97,0x05,0x98,0x05,0x99,0x05,0x9a,
28981
+0x05,0x9b,0x05,0x9c,0x05,0x9d,0x05,0x9e,0x05,0x9f,0x05,0xa0,
28982
+0x05,0xa1,0x05,0xa2,0x05,0xa3,0x05,0xa4,0x05,0xa5,0x05,0xa6,
28983
+0x05,0xa7,0x05,0xa8,0x05,0xa9,0x05,0xaa,0x05,0xab,0x05,0xac,
28984
+0x05,0xad,0x05,0xae,0x05,0xaf,0x05,0xb0,0x05,0xb1,0x05,0xb2,
28985
+0x05,0xb3,0x05,0xb4,0x05,0xb5,0x05,0xb6,0x05,0xb7,0x05,0xb8,
28986
+0x05,0xb9,0x05,0xba,0x05,0xbb,0x05,0xbc,0x05,0xbd,0x05,0xbe,
28987
+0x05,0xbf,0x05,0xc0,0x05,0xc1,0x05,0xc2,0x05,0xc3,0x05,0xc4,
28988
+0x05,0xc5,0x05,0xc6,0x05,0xc7,0x05,0xc8,0x05,0xc9,0x05,0xca,
28989
+0x05,0xcb,0x05,0xcc,0x05,0xcd,0x05,0xce,0x05,0xcf,0x05,0xd0,
28990
+0x05,0xd1,0x05,0xd2,0x05,0xd3,0x05,0xd4,0x05,0xd5,0x05,0xd6,
28991
+0x05,0xd7,0x05,0xd8,0x05,0xd9,0x05,0xda,0x05,0xdb,0x05,0xdc,
28992
+0x05,0xdd,0x05,0xde,0x05,0xdf,0x05,0xe0,0x05,0xe1,0x05,0xe2,
28993
+0x05,0xe3,0x05,0xe4,0x05,0xe5,0x05,0xe6,0x05,0xe7,0x05,0xe8,
28994
+0x05,0xe9,0x05,0xea,0x05,0xeb,0x05,0xec,0x05,0xed,0x05,0xee,
28995
+0x05,0xef,0x05,0xf0,0x05,0xf1,0x05,0xf2,0x05,0xf3,0x05,0xf4,
28996
+0x05,0xf5,0x05,0xf6,0x05,0xf7,0x05,0xf8,0x05,0xf9,0x05,0xfa,
28997
+0x05,0xfb,0x05,0xfc,0x05,0xfd,0x05,0xfe,0x05,0xff,0x06,0x00,
28998
+0x06,0x01,0x06,0x02,0x06,0x03,0x06,0x04,0x06,0x05,0x06,0x06,
28999
+0x06,0x07,0x06,0x08,0x06,0x09,0x06,0x0a,0x06,0x0b,0x06,0x0c,
29000
+0x06,0x0d,0x06,0x0e,0x06,0x0f,0x06,0x10,0x06,0x11,0x06,0x12,
29001
+0x06,0x13,0x06,0x14,0x06,0x15,0x06,0x16,0x06,0x17,0x06,0x18,
29002
+0x06,0x19,0x06,0x1a,0x06,0x1b,0x06,0x1c,0x06,0x1d,0x06,0x1e,
29003
+0x06,0x1f,0x06,0x20,0x06,0x21,0x06,0x22,0x06,0x23,0x06,0x24,
29004
+0x06,0x25,0x06,0x26,0x06,0x27,0x06,0x28,0x06,0x29,0x06,0x2a,
29005
+0x06,0x2b,0x06,0x2c,0x06,0x2d,0x06,0x2e,0x06,0x2f,0x06,0x30,
29006
+0x06,0x31,0x06,0x32,0x06,0x33,0x06,0x34,0x06,0x35,0x06,0x36,
29007
+0x06,0x37,0x06,0x38,0x06,0x39,0x06,0x3a,0x06,0x3b,0x06,0x3c,
29008
+0x06,0x3d,0x06,0x3e,0x06,0x3f,0x06,0x40,0x06,0x41,0x06,0x42,
29009
+0x06,0x43,0x06,0x44,0x06,0x45,0x06,0x46,0x06,0x47,0x06,0x48,
29010
+0x06,0x49,0x06,0x4a,0x06,0x4b,0x06,0x4c,0x06,0x4d,0x06,0x4e,
29011
+0x06,0x4f,0x06,0x50,0x06,0x51,0x06,0x52,0x06,0x53,0x06,0x54,
29012
+0x06,0x55,0x06,0x56,0x06,0x57,0x06,0x58,0x06,0x59,0x06,0x5a,
29013
+0x06,0x5b,0x06,0x5c,0x06,0x5d,0x06,0x5e,0x06,0x5f,0x06,0x60,
29014
+0x06,0x61,0x06,0x62,0x06,0x63,0x06,0x64,0x06,0x65,0x06,0x66,
29015
+0x06,0x67,0x06,0x68,0x06,0x69,0x06,0x6a,0x06,0x6b,0x06,0x6c,
29016
+0x06,0x6d,0x06,0x6e,0x06,0x6f,0x06,0x70,0x06,0x71,0x06,0x72,
29017
+0x06,0x73,0x06,0x74,0x06,0x75,0x06,0x76,0x06,0x77,0x06,0x78,
29018
+0x06,0x79,0x06,0x7a,0x06,0x7b,0x06,0x7c,0x06,0x7d,0x06,0x7e,
29019
+0x06,0x7f,0x06,0x80,0x06,0x81,0x06,0x82,0x06,0x83,0x06,0x84,
29020
+0x06,0x85,0x06,0x86,0x06,0x87,0x06,0x88,0x06,0x89,0x06,0x8a,
29021
+0x06,0x8b,0x06,0x8c,0x06,0x8d,0x06,0x8e,0x06,0x8f,0x06,0x90,
29022
+0x06,0x91,0x06,0x92,0x06,0x93,0x06,0x94,0x06,0x95,0x06,0x96,
29023
+0x06,0x97,0x06,0x98,0x06,0x99,0x06,0x9a,0x06,0x9b,0x06,0x9c,
29024
+0x06,0x9d,0x06,0x9e,0x06,0x9f,0x06,0xa0,0x06,0xa1,0x06,0xa2,
29025
+0x06,0xa3,0x06,0xa4,0x06,0xa5,0x06,0xa6,0x06,0xa7,0x06,0xa8,
29026
+0x06,0xa9,0x06,0xaa,0x06,0xab,0x06,0xac,0x06,0xad,0x06,0xae,
29027
+0x06,0xaf,0x06,0xb0,0x06,0xb1,0x06,0xb2,0x06,0xb3,0x06,0xb4,
29028
+0x06,0xb5,0x06,0xb6,0x06,0xb7,0x06,0xb8,0x06,0xb9,0x06,0xba,
29029
+0x06,0xbb,0x06,0xbc,0x06,0xbd,0x06,0xbe,0x06,0xbf,0x06,0xc0,
29030
+0x06,0xc1,0x06,0xc2,0x06,0xc3,0x06,0xc4,0x06,0xc5,0x06,0xc6,
29031
+0x06,0xc7,0x06,0xc8,0x06,0xc9,0x06,0xca,0x06,0xcb,0x06,0xcc,
29032
+0x06,0xcd,0x06,0xce,0x06,0xcf,0x06,0xd0,0x06,0xd1,0x06,0xd2,
29033
+0x06,0xd3,0x06,0xd4,0x06,0xd5,0x06,0xd6,0x06,0xd7,0x06,0xd8,
29034
+0x06,0xd9,0x06,0xda,0x06,0xdb,0x06,0xdc,0x06,0xdd,0x06,0xde,
29035
+0x06,0xdf,0x06,0xe0,0x06,0xe1,0x06,0xe2,0x06,0xe3,0x06,0xe4,
29036
+0x06,0xe5,0x06,0xe6,0x06,0xe7,0x06,0xe8,0x06,0xe9,0x06,0xea,
29037
+0x06,0xeb,0x06,0xec,0x06,0xed,0x06,0xee,0x06,0xef,0x06,0xf0,
29038
+0x06,0xf1,0x06,0xf2,0x06,0xf3,0x06,0xf4,0x06,0xf5,0x06,0xf6,
29039
+0x06,0xf7,0x06,0xf8,0x06,0xf9,0x06,0xfa,0x06,0xfb,0x06,0xfc,
29040
+0x06,0xfd,0x06,0xfe,0x06,0xff,0x07,0x00,0x07,0x01,0x07,0x02,
29041
+0x07,0x03,0x07,0x04,0x07,0x05,0x07,0x06,0x07,0x07,0x07,0x08,
29042
+0x07,0x09,0x07,0x0a,0x07,0x0b,0x07,0x0c,0x07,0x0d,0x07,0x0e,
29043
+0x07,0x0f,0x07,0x10,0x07,0x11,0x07,0x12,0x07,0x13,0x07,0x14,
29044
+0x07,0x15,0x07,0x16,0x07,0x17,0x07,0x18,0x07,0x19,0x07,0x1a,
29045
+0x07,0x1b,0x07,0x1c,0x07,0x1d,0x07,0x1e,0x07,0x1f,0x07,0x20,
29046
+0x07,0x21,0x07,0x22,0x07,0x23,0x07,0x24,0x07,0x25,0x07,0x26,
29047
+0x07,0x27,0x07,0x28,0x07,0x29,0x07,0x2a,0x07,0x2b,0x07,0x2c,
29048
+0x07,0x2d,0x07,0x2e,0x07,0x2f,0x07,0x30,0x07,0x31,0x07,0x32,
29049
+0x07,0x33,0x07,0x34,0x07,0x35,0x07,0x36,0x07,0x37,0x07,0x38,
29050
+0x07,0x39,0x07,0x3a,0x07,0x3b,0x07,0x3c,0x07,0x3d,0x07,0x3e,
29051
+0x07,0x3f,0x07,0x40,0x07,0x41,0x07,0x42,0x07,0x43,0x07,0x44,
29052
+0x07,0x45,0x07,0x46,0x07,0x47,0x07,0x48,0x07,0x49,0x07,0x4a,
29053
+0x07,0x4b,0x07,0x4c,0x07,0x4d,0x07,0x4e,0x07,0x4f,0x07,0x50,
29054
+0x07,0x51,0x07,0x52,0x07,0x53,0x07,0x54,0x07,0x55,0x07,0x56,
29055
+0x07,0x57,0x07,0x58,0x07,0x59,0x07,0x5a,0x07,0x5b,0x07,0x5c,
29056
+0x07,0x5d,0x07,0x5e,0x07,0x5f,0x07,0x60,0x07,0x61,0x07,0x62,
29057
+0x07,0x63,0x07,0x64,0x07,0x65,0x07,0x66,0x07,0x67,0x07,0x68,
29058
+0x07,0x69,0x07,0x6a,0x07,0x6b,0x07,0x6c,0x07,0x6d,0x07,0x6e,
29059
+0x07,0x6f,0x07,0x70,0x07,0x71,0x07,0x72,0x07,0x73,0x07,0x74,
29060
+0x07,0x75,0x07,0x76,0x07,0x77,0x07,0x78,0x07,0x79,0x07,0x7a,
29061
+0x07,0x7b,0x07,0x7c,0x07,0x7d,0x07,0x7e,0x07,0x7f,0x07,0x80,
29062
+0x07,0x81,0x07,0x82,0x07,0x83,0x07,0x84,0x07,0x85,0x07,0x86,
29063
+0x07,0x87,0x07,0x88,0x07,0x89,0x07,0x8a,0x07,0x8b,0x07,0x8c,
29064
+0x07,0x8d,0x07,0x8e,0x07,0x8f,0x07,0x90,0x07,0x91,0x07,0x92,
29065
+0x07,0x93,0x07,0x94,0x07,0x95,0x07,0x96,0x07,0x97,0x07,0x98,
29066
+0x07,0x99,0x07,0x9a,0x07,0x9b,0x07,0x9c,0x07,0x9d,0x07,0x9e,
29067
+0x07,0x9f,0x07,0xa0,0x07,0xa1,0x07,0xa2,0x00,0xb2,0x00,0xb3,
29068
+0x07,0xa3,0x07,0xa4,0x07,0xa5,0x00,0xb6,0x00,0xb7,0x00,0xc4,
29069
+0x07,0xa6,0x00,0xb4,0x00,0xb5,0x00,0xc5,0x07,0xa7,0x00,0x82,
29070
+0x00,0xc2,0x00,0x87,0x07,0xa8,0x07,0xa9,0x07,0xaa,0x00,0xab,
29071
+0x07,0xab,0x07,0xac,0x07,0xad,0x07,0xae,0x07,0xaf,0x07,0xb0,
29072
+0x00,0xc6,0x07,0xb1,0x07,0xb2,0x07,0xb3,0x07,0xb4,0x07,0xb5,
29073
+0x07,0xb6,0x07,0xb7,0x07,0xb8,0x00,0xbe,0x00,0xbf,0x07,0xb9,
29074
+0x07,0xba,0x07,0xbb,0x07,0xbc,0x00,0xbc,0x07,0xbd,0x07,0xbe,
29075
+0x07,0xbf,0x07,0xc0,0x07,0xc1,0x07,0xc2,0x07,0xc3,0x07,0xc4,
29076
+0x07,0xc5,0x07,0xc6,0x07,0xc7,0x07,0xc8,0x07,0xc9,0x07,0xca,
29077
+0x07,0xcb,0x07,0xcc,0x07,0xcd,0x07,0xce,0x07,0xcf,0x07,0xd0,
29078
+0x07,0xd1,0x07,0xd2,0x07,0xd3,0x07,0xd4,0x07,0xd5,0x07,0xd6,
29079
+0x07,0xd7,0x07,0xd8,0x07,0xd9,0x07,0xda,0x07,0xdb,0x07,0xdc,
29080
+0x07,0xdd,0x07,0xde,0x07,0xdf,0x07,0xe0,0x07,0xe1,0x07,0xe2,
29081
+0x07,0xe3,0x07,0xe4,0x07,0xe5,0x07,0xe6,0x07,0xe7,0x07,0xe8,
29082
+0x07,0xe9,0x07,0xea,0x07,0xeb,0x07,0xec,0x07,0xed,0x07,0xee,
29083
+0x07,0xef,0x07,0xf0,0x07,0xf1,0x07,0xf2,0x07,0xf3,0x07,0xf4,
29084
+0x07,0xf5,0x07,0xf6,0x07,0xf7,0x07,0xf8,0x07,0xf9,0x07,0xfa,
29085
+0x07,0xfb,0x07,0xfc,0x07,0xfd,0x07,0xfe,0x07,0xff,0x08,0x00,
29086
+0x08,0x01,0x08,0x02,0x08,0x03,0x08,0x04,0x08,0x05,0x08,0x06,
29087
+0x08,0x07,0x08,0x08,0x08,0x09,0x08,0x0a,0x08,0x0b,0x08,0x0c,
29088
+0x08,0x0d,0x08,0x0e,0x08,0x0f,0x08,0x10,0x08,0x11,0x08,0x12,
29089
+0x08,0x13,0x08,0x14,0x08,0x15,0x00,0x8c,0x08,0x16,0x08,0x17,
29090
+0x08,0x18,0x08,0x19,0x08,0x1a,0x08,0x1b,0x08,0x1c,0x08,0x1d,
29091
+0x08,0x1e,0x08,0x1f,0x08,0x20,0x08,0x21,0x08,0x22,0x08,0x23,
29092
+0x08,0x24,0x08,0x25,0x08,0x26,0x08,0x27,0x08,0x28,0x08,0x29,
29093
+0x08,0x2a,0x08,0x2b,0x08,0x2c,0x08,0x2d,0x08,0x2e,0x08,0x2f,
29094
+0x08,0x30,0x08,0x31,0x08,0x32,0x08,0x33,0x08,0x34,0x08,0x35,
29095
+0x08,0x36,0x08,0x37,0x08,0x38,0x08,0x39,0x08,0x3a,0x08,0x3b,
29096
+0x08,0x3c,0x08,0x3d,0x08,0x3e,0x08,0x3f,0x08,0x40,0x08,0x41,
29097
+0x08,0x42,0x08,0x43,0x08,0x44,0x08,0x45,0x08,0x46,0x08,0x47,
29098
+0x08,0x48,0x08,0x49,0x08,0x4a,0x08,0x4b,0x08,0x4c,0x08,0x4d,
29099
+0x08,0x4e,0x08,0x4f,0x08,0x50,0x08,0x51,0x08,0x52,0x08,0x53,
29100
+0x08,0x54,0x08,0x55,0x08,0x56,0x08,0x57,0x08,0x58,0x08,0x59,
29101
+0x08,0x5a,0x08,0x5b,0x08,0x5c,0x08,0x5d,0x08,0x5e,0x08,0x5f,
29102
+0x08,0x60,0x08,0x61,0x08,0x62,0x08,0x63,0x08,0x64,0x08,0x65,
29103
+0x08,0x66,0x08,0x67,0x08,0x68,0x08,0x69,0x08,0x6a,0x08,0x6b,
29104
+0x08,0x6c,0x08,0x6d,0x08,0x6e,0x08,0x6f,0x08,0x70,0x08,0x71,
29105
+0x08,0x72,0x08,0x73,0x08,0x74,0x08,0x75,0x08,0x76,0x08,0x77,
29106
+0x08,0x78,0x08,0x79,0x08,0x7a,0x08,0x7b,0x08,0x7c,0x08,0x7d,
29107
+0x08,0x7e,0x08,0x7f,0x08,0x80,0x08,0x81,0x08,0x82,0x08,0x83,
29108
+0x08,0x84,0x08,0x85,0x08,0x86,0x08,0x87,0x08,0x88,0x08,0x89,
29109
+0x08,0x8a,0x08,0x8b,0x08,0x8c,0x08,0x8d,0x08,0x8e,0x08,0x8f,
29110
+0x08,0x90,0x08,0x91,0x08,0x92,0x08,0x93,0x08,0x94,0x08,0x95,
29111
+0x08,0x96,0x08,0x97,0x08,0x98,0x08,0x99,0x08,0x9a,0x08,0x9b,
29112
+0x08,0x9c,0x08,0x9d,0x08,0x9e,0x08,0x9f,0x08,0xa0,0x08,0xa1,
29113
+0x08,0xa2,0x08,0xa3,0x08,0xa4,0x08,0xa5,0x08,0xa6,0x08,0xa7,
29114
+0x08,0xa8,0x08,0xa9,0x08,0xaa,0x08,0xab,0x08,0xac,0x08,0xad,
29115
+0x08,0xae,0x08,0xaf,0x08,0xb0,0x08,0xb1,0x08,0xb2,0x08,0xb3,
29116
+0x08,0xb4,0x08,0xb5,0x08,0xb6,0x08,0xb7,0x08,0xb8,0x08,0xb9,
29117
+0x08,0xba,0x08,0xbb,0x08,0xbc,0x08,0xbd,0x08,0xbe,0x08,0xbf,
29118
+0x08,0xc0,0x08,0xc1,0x08,0xc2,0x08,0xc3,0x08,0xc4,0x08,0xc5,
29119
+0x08,0xc6,0x08,0xc7,0x08,0xc8,0x08,0xc9,0x08,0xca,0x08,0xcb,
29120
+0x08,0xcc,0x08,0xcd,0x08,0xce,0x08,0xcf,0x08,0xd0,0x08,0xd1,
29121
+0x08,0xd2,0x08,0xd3,0x00,0x98,0x08,0xd4,0x08,0xd5,0x00,0xa8,
29122
+0x08,0xd6,0x08,0xd7,0x08,0xd8,0x08,0xd9,0x08,0xda,0x00,0x9a,
29123
+0x08,0xdb,0x00,0x99,0x00,0xef,0x08,0xdc,0x08,0xdd,0x08,0xde,
29124
+0x08,0xdf,0x08,0xe0,0x08,0xe1,0x00,0xa5,0x08,0xe2,0x08,0xe3,
29125
+0x08,0xe4,0x00,0x92,0x08,0xe5,0x08,0xe6,0x08,0xe7,0x08,0xe8,
29126
+0x08,0xe9,0x08,0xea,0x08,0xeb,0x08,0xec,0x08,0xed,0x08,0xee,
29127
+0x00,0x9c,0x08,0xef,0x08,0xf0,0x08,0xf1,0x08,0xf2,0x08,0xf3,
29128
+0x08,0xf4,0x08,0xf5,0x08,0xf6,0x08,0xf7,0x08,0xf8,0x00,0xa7,
29129
+0x08,0xf9,0x08,0xfa,0x08,0xfb,0x08,0xfc,0x08,0xfd,0x08,0xfe,
29130
+0x00,0x8f,0x08,0xff,0x00,0x94,0x00,0x95,0x09,0x00,0x09,0x01,
29131
+0x09,0x02,0x09,0x03,0x09,0x04,0x09,0x05,0x09,0x06,0x09,0x07,
29132
+0x09,0x08,0x09,0x09,0x09,0x0a,0x09,0x0b,0x09,0x0c,0x09,0x0d,
29133
+0x09,0x0e,0x09,0x0f,0x09,0x10,0x09,0x11,0x09,0x12,0x09,0x13,
29134
+0x09,0x14,0x09,0x15,0x09,0x16,0x09,0x17,0x09,0x18,0x09,0x19,
29135
+0x09,0x1a,0x09,0x1b,0x09,0x1c,0x09,0x1d,0x09,0x1e,0x09,0x1f,
29136
+0x09,0x20,0x09,0x21,0x09,0x22,0x09,0x23,0x09,0x24,0x09,0x25,
29137
+0x09,0x26,0x09,0x27,0x09,0x28,0x09,0x29,0x09,0x2a,0x09,0x2b,
29138
+0x09,0x2c,0x09,0x2d,0x09,0x2e,0x09,0x2f,0x09,0x30,0x09,0x31,
29139
+0x09,0x32,0x09,0x33,0x09,0x34,0x09,0x35,0x09,0x36,0x09,0x37,
29140
+0x09,0x38,0x09,0x39,0x09,0x3a,0x09,0x3b,0x09,0x3c,0x09,0x3d,
29141
+0x09,0x3e,0x09,0x3f,0x09,0x40,0x09,0x41,0x09,0x42,0x09,0x43,
29142
+0x09,0x44,0x09,0x45,0x09,0x46,0x09,0x47,0x09,0x48,0x09,0x49,
29143
+0x09,0x4a,0x09,0x4b,0x09,0x4c,0x09,0x4d,0x09,0x4e,0x09,0x4f,
29144
+0x09,0x50,0x09,0x51,0x09,0x52,0x09,0x53,0x09,0x54,0x09,0x55,
29145
+0x09,0x56,0x09,0x57,0x09,0x58,0x09,0x59,0x09,0x5a,0x09,0x5b,
29146
+0x09,0x5c,0x09,0x5d,0x09,0x5e,0x09,0x5f,0x09,0x60,0x09,0x61,
29147
+0x09,0x62,0x09,0x63,0x09,0x64,0x09,0x65,0x09,0x66,0x09,0x67,
29148
+0x09,0x68,0x09,0x69,0x09,0x6a,0x09,0x6b,0x09,0x6c,0x09,0x6d,
29149
+0x09,0x6e,0x09,0x6f,0x09,0x70,0x09,0x71,0x09,0x72,0x09,0x73,
29150
+0x09,0x74,0x09,0x75,0x09,0x76,0x09,0x77,0x09,0x78,0x09,0x79,
29151
+0x09,0x7a,0x09,0x7b,0x09,0x7c,0x09,0x7d,0x09,0x7e,0x09,0x7f,
29152
+0x09,0x80,0x09,0x81,0x09,0x82,0x09,0x83,0x09,0x84,0x09,0x85,
29153
+0x09,0x86,0x09,0x87,0x09,0x88,0x09,0x89,0x09,0x8a,0x09,0x8b,
29154
+0x09,0x8c,0x09,0x8d,0x09,0x8e,0x09,0x8f,0x09,0x90,0x09,0x91,
29155
+0x09,0x92,0x09,0x93,0x09,0x94,0x09,0x95,0x09,0x96,0x09,0x97,
29156
+0x09,0x98,0x09,0x99,0x09,0x9a,0x09,0x9b,0x09,0x9c,0x09,0x9d,
29157
+0x09,0x9e,0x09,0x9f,0x09,0xa0,0x09,0xa1,0x09,0xa2,0x09,0xa3,
29158
+0x09,0xa4,0x09,0xa5,0x09,0xa6,0x09,0xa7,0x09,0xa8,0x09,0xa9,
29159
+0x09,0xaa,0x09,0xab,0x09,0xac,0x09,0xad,0x09,0xae,0x09,0xaf,
29160
+0x09,0xb0,0x09,0xb1,0x09,0xb2,0x09,0xb3,0x09,0xb4,0x09,0xb5,
29161
+0x09,0xb6,0x09,0xb7,0x09,0xb8,0x09,0xb9,0x09,0xba,0x09,0xbb,
29162
+0x09,0xbc,0x09,0xbd,0x09,0xbe,0x09,0xbf,0x09,0xc0,0x09,0xc1,
29163
+0x09,0xc2,0x09,0xc3,0x09,0xc4,0x09,0xc5,0x09,0xc6,0x09,0xc7,
29164
+0x09,0xc8,0x09,0xc9,0x09,0xca,0x09,0xcb,0x09,0xcc,0x09,0xcd,
29165
+0x09,0xce,0x09,0xcf,0x09,0xd0,0x09,0xd1,0x09,0xd2,0x09,0xd3,
29166
+0x09,0xd4,0x09,0xd5,0x09,0xd6,0x09,0xd7,0x09,0xd8,0x09,0xd9,
29167
+0x09,0xda,0x09,0xdb,0x09,0xdc,0x09,0xdd,0x09,0xde,0x09,0xdf,
29168
+0x09,0xe0,0x09,0xe1,0x09,0xe2,0x09,0xe3,0x09,0xe4,0x09,0xe5,
29169
+0x09,0xe6,0x09,0xe7,0x09,0xe8,0x09,0xe9,0x09,0xea,0x09,0xeb,
29170
+0x09,0xec,0x09,0xed,0x09,0xee,0x09,0xef,0x09,0xf0,0x09,0xf1,
29171
+0x09,0xf2,0x09,0xf3,0x09,0xf4,0x09,0xf5,0x09,0xf6,0x09,0xf7,
29172
+0x09,0xf8,0x09,0xf9,0x09,0xfa,0x09,0xfb,0x09,0xfc,0x09,0xfd,
29173
+0x09,0xfe,0x09,0xff,0x0a,0x00,0x0a,0x01,0x0a,0x02,0x0a,0x03,
29174
+0x0a,0x04,0x0a,0x05,0x0a,0x06,0x0a,0x07,0x0a,0x08,0x0a,0x09,
29175
+0x0a,0x0a,0x0a,0x0b,0x0a,0x0c,0x0a,0x0d,0x0a,0x0e,0x0a,0x0f,
29176
+0x0a,0x10,0x0a,0x11,0x0a,0x12,0x0a,0x13,0x0a,0x14,0x0a,0x15,
29177
+0x0a,0x16,0x0a,0x17,0x0a,0x18,0x0a,0x19,0x0a,0x1a,0x00,0xb9,
29178
+0x0a,0x1b,0x0a,0x1c,0x0a,0x1d,0x0a,0x1e,0x0a,0x1f,0x0a,0x20,
29179
+0x0a,0x21,0x0a,0x22,0x0a,0x23,0x0a,0x24,0x0a,0x25,0x0a,0x26,
29180
+0x0a,0x27,0x0a,0x28,0x0a,0x29,0x0a,0x2a,0x0a,0x2b,0x0a,0x2c,
29181
+0x0a,0x2d,0x0a,0x2e,0x0a,0x2f,0x0a,0x30,0x0a,0x31,0x0a,0x32,
29182
+0x0a,0x33,0x0a,0x34,0x0a,0x35,0x0a,0x36,0x0a,0x37,0x0a,0x38,
29183
+0x0a,0x39,0x0a,0x3a,0x0a,0x3b,0x0a,0x3c,0x0a,0x3d,0x0a,0x3e,
29184
+0x0a,0x3f,0x0a,0x40,0x0a,0x41,0x0a,0x42,0x0a,0x43,0x0a,0x44,
29185
+0x0a,0x45,0x0a,0x46,0x0a,0x47,0x0a,0x48,0x0a,0x49,0x0a,0x4a,
29186
+0x0a,0x4b,0x0a,0x4c,0x0a,0x4d,0x0a,0x4e,0x0a,0x4f,0x0a,0x50,
29187
+0x0a,0x51,0x0a,0x52,0x0a,0x53,0x0a,0x54,0x0a,0x55,0x0a,0x56,
29188
+0x0a,0x57,0x0a,0x58,0x0a,0x59,0x0a,0x5a,0x0a,0x5b,0x0a,0x5c,
29189
+0x0a,0x5d,0x0a,0x5e,0x0a,0x5f,0x0a,0x60,0x0a,0x61,0x0a,0x62,
29190
+0x0a,0x63,0x0a,0x64,0x0a,0x65,0x0a,0x66,0x0a,0x67,0x0a,0x68,
29191
+0x0a,0x69,0x0a,0x6a,0x0a,0x6b,0x0a,0x6c,0x0a,0x6d,0x0a,0x6e,
29192
+0x0a,0x6f,0x0a,0x70,0x0a,0x71,0x0a,0x72,0x0a,0x73,0x0a,0x74,
29193
+0x0a,0x75,0x0a,0x76,0x0a,0x77,0x0a,0x78,0x0a,0x79,0x0a,0x7a,
29194
+0x0a,0x7b,0x0a,0x7c,0x0a,0x7d,0x0a,0x7e,0x0a,0x7f,0x0a,0x80,
29195
+0x0a,0x81,0x0a,0x82,0x0a,0x83,0x0a,0x84,0x0a,0x85,0x0a,0x86,
29196
+0x0a,0x87,0x0a,0x88,0x0a,0x89,0x0a,0x8a,0x0a,0x8b,0x0a,0x8c,
29197
+0x0a,0x8d,0x0a,0x8e,0x0a,0x8f,0x0a,0x90,0x0a,0x91,0x0a,0x92,
29198
+0x0a,0x93,0x0a,0x94,0x0a,0x95,0x0a,0x96,0x0a,0x97,0x0a,0x98,
29199
+0x0a,0x99,0x0a,0x9a,0x0a,0x9b,0x0a,0x9c,0x0a,0x9d,0x0a,0x9e,
29200
+0x0a,0x9f,0x0a,0xa0,0x0a,0xa1,0x0a,0xa2,0x0a,0xa3,0x0a,0xa4,
29201
+0x0a,0xa5,0x0a,0xa6,0x0a,0xa7,0x0a,0xa8,0x0a,0xa9,0x0a,0xaa,
29202
+0x0a,0xab,0x0a,0xac,0x0a,0xad,0x0a,0xae,0x0a,0xaf,0x0a,0xb0,
29203
+0x0a,0xb1,0x0a,0xb2,0x0a,0xb3,0x0a,0xb4,0x0a,0xb5,0x0a,0xb6,
29204
+0x0a,0xb7,0x0a,0xb8,0x0a,0xb9,0x0a,0xba,0x0a,0xbb,0x0a,0xbc,
29205
+0x0a,0xbd,0x0a,0xbe,0x0a,0xbf,0x0a,0xc0,0x0a,0xc1,0x0a,0xc2,
29206
+0x0a,0xc3,0x0a,0xc4,0x0a,0xc5,0x0a,0xc6,0x0a,0xc7,0x0a,0xc8,
29207
+0x0a,0xc9,0x0a,0xca,0x0a,0xcb,0x0a,0xcc,0x0a,0xcd,0x0a,0xce,
29208
+0x0a,0xcf,0x0a,0xd0,0x0a,0xd1,0x0a,0xd2,0x0a,0xd3,0x0a,0xd4,
29209
+0x0a,0xd5,0x0a,0xd6,0x0a,0xd7,0x0a,0xd8,0x0a,0xd9,0x0a,0xda,
29210
+0x0a,0xdb,0x0a,0xdc,0x0a,0xdd,0x0a,0xde,0x0a,0xdf,0x0a,0xe0,
29211
+0x0a,0xe1,0x0a,0xe2,0x0a,0xe3,0x0a,0xe4,0x0a,0xe5,0x0a,0xe6,
29212
+0x0a,0xe7,0x0a,0xe8,0x0a,0xe9,0x0a,0xea,0x0a,0xeb,0x0a,0xec,
29213
+0x0a,0xed,0x0a,0xee,0x0a,0xef,0x0a,0xf0,0x0a,0xf1,0x0a,0xf2,
29214
+0x0a,0xf3,0x0a,0xf4,0x0a,0xf5,0x0a,0xf6,0x0a,0xf7,0x0a,0xf8,
29215
+0x0a,0xf9,0x0a,0xfa,0x0a,0xfb,0x0a,0xfc,0x0a,0xfd,0x0a,0xfe,
29216
+0x0a,0xff,0x0b,0x00,0x0b,0x01,0x0b,0x02,0x0b,0x03,0x0b,0x04,
29217
+0x0b,0x05,0x0b,0x06,0x0b,0x07,0x0b,0x08,0x0b,0x09,0x0b,0x0a,
29218
+0x0b,0x0b,0x0b,0x0c,0x0b,0x0d,0x0b,0x0e,0x0b,0x0f,0x0b,0x10,
29219
+0x0b,0x11,0x0b,0x12,0x0b,0x13,0x0b,0x14,0x0b,0x15,0x0b,0x16,
29220
+0x0b,0x17,0x0b,0x18,0x0b,0x19,0x0b,0x1a,0x0b,0x1b,0x0b,0x1c,
29221
+0x0b,0x1d,0x0b,0x1e,0x0b,0x1f,0x0b,0x20,0x0b,0x21,0x0b,0x22,
29222
+0x0b,0x23,0x0b,0x24,0x0b,0x25,0x0b,0x26,0x0b,0x27,0x0b,0x28,
29223
+0x0b,0x29,0x0b,0x2a,0x0b,0x2b,0x0b,0x2c,0x0b,0x2d,0x0b,0x2e,
29224
+0x0b,0x2f,0x0b,0x30,0x0b,0x31,0x0b,0x32,0x0b,0x33,0x0b,0x34,
29225
+0x0b,0x35,0x0b,0x36,0x0b,0x37,0x0b,0x38,0x0b,0x39,0x0b,0x3a,
29226
+0x0b,0x3b,0x0b,0x3c,0x0b,0x3d,0x0b,0x3e,0x0b,0x3f,0x0b,0x40,
29227
+0x0b,0x41,0x0b,0x42,0x0b,0x43,0x0b,0x44,0x0b,0x45,0x0b,0x46,
29228
+0x0b,0x47,0x0b,0x48,0x0b,0x49,0x0b,0x4a,0x0b,0x4b,0x0b,0x4c,
29229
+0x0b,0x4d,0x0b,0x4e,0x0b,0x4f,0x0b,0x50,0x0b,0x51,0x0b,0x52,
29230
+0x0b,0x53,0x0b,0x54,0x0b,0x55,0x0b,0x56,0x0b,0x57,0x0b,0x58,
29231
+0x0b,0x59,0x0b,0x5a,0x0b,0x5b,0x0b,0x5c,0x0b,0x5d,0x0b,0x5e,
29232
+0x0b,0x5f,0x0b,0x60,0x0b,0x61,0x0b,0x62,0x0b,0x63,0x0b,0x64,
29233
+0x0b,0x65,0x0b,0x66,0x0b,0x67,0x0b,0x68,0x0b,0x69,0x0b,0x6a,
29234
+0x0b,0x6b,0x0b,0x6c,0x0b,0x6d,0x0b,0x6e,0x0b,0x6f,0x0b,0x70,
29235
+0x0b,0x71,0x0b,0x72,0x0b,0x73,0x0b,0x74,0x0b,0x75,0x0b,0x76,
29236
+0x0b,0x77,0x0b,0x78,0x0b,0x79,0x0b,0x7a,0x0b,0x7b,0x0b,0x7c,
29237
+0x0b,0x7d,0x0b,0x7e,0x0b,0x7f,0x0b,0x80,0x0b,0x81,0x0b,0x82,
29238
+0x0b,0x83,0x0b,0x84,0x0b,0x85,0x0b,0x86,0x0b,0x87,0x0b,0x88,
29239
+0x0b,0x89,0x0b,0x8a,0x0b,0x8b,0x0b,0x8c,0x0b,0x8d,0x0b,0x8e,
29240
+0x0b,0x8f,0x0b,0x90,0x0b,0x91,0x0b,0x92,0x0b,0x93,0x0b,0x94,
29241
+0x0b,0x95,0x0b,0x96,0x0b,0x97,0x0b,0x98,0x0b,0x99,0x0b,0x9a,
29242
+0x0b,0x9b,0x0b,0x9c,0x0b,0x9d,0x0b,0x9e,0x0b,0x9f,0x0b,0xa0,
29243
+0x0b,0xa1,0x0b,0xa2,0x0b,0xa3,0x0b,0xa4,0x0b,0xa5,0x0b,0xa6,
29244
+0x0b,0xa7,0x0b,0xa8,0x0b,0xa9,0x0b,0xaa,0x0b,0xab,0x0b,0xac,
29245
+0x0b,0xad,0x0b,0xae,0x0b,0xaf,0x0b,0xb0,0x0b,0xb1,0x0b,0xb2,
29246
+0x0b,0xb3,0x0b,0xb4,0x0b,0xb5,0x0b,0xb6,0x0b,0xb7,0x0b,0xb8,
29247
+0x0b,0xb9,0x0b,0xba,0x0b,0xbb,0x0b,0xbc,0x0b,0xbd,0x0b,0xbe,
29248
+0x0b,0xbf,0x0b,0xc0,0x0b,0xc1,0x0b,0xc2,0x0b,0xc3,0x0b,0xc4,
29249
+0x0b,0xc5,0x0b,0xc6,0x0b,0xc7,0x0b,0xc8,0x0b,0xc9,0x0b,0xca,
29250
+0x0b,0xcb,0x0b,0xcc,0x0b,0xcd,0x0b,0xce,0x0b,0xcf,0x0b,0xd0,
29251
+0x0b,0xd1,0x0b,0xd2,0x0b,0xd3,0x0b,0xd4,0x0b,0xd5,0x0b,0xd6,
29252
+0x0b,0xd7,0x0b,0xd8,0x0b,0xd9,0x0b,0xda,0x0b,0xdb,0x0b,0xdc,
29253
+0x0b,0xdd,0x0b,0xde,0x0b,0xdf,0x0b,0xe0,0x0b,0xe1,0x0b,0xe2,
29254
+0x0b,0xe3,0x0b,0xe4,0x0b,0xe5,0x0b,0xe6,0x0b,0xe7,0x0b,0xe8,
29255
+0x0b,0xe9,0x0b,0xea,0x0b,0xeb,0x0b,0xec,0x0b,0xed,0x0b,0xee,
29256
+0x0b,0xef,0x0b,0xf0,0x0b,0xf1,0x0b,0xf2,0x0b,0xf3,0x0b,0xf4,
29257
+0x0b,0xf5,0x0b,0xf6,0x0b,0xf7,0x0b,0xf8,0x0b,0xf9,0x0b,0xfa,
29258
+0x0b,0xfb,0x0b,0xfc,0x0b,0xfd,0x0b,0xfe,0x0b,0xff,0x0c,0x00,
29259
+0x0c,0x01,0x0c,0x02,0x0c,0x03,0x0c,0x04,0x0c,0x05,0x0c,0x06,
29260
+0x0c,0x07,0x0c,0x08,0x0c,0x09,0x0c,0x0a,0x0c,0x0b,0x0c,0x0c,
29261
+0x0c,0x0d,0x0c,0x0e,0x0c,0x0f,0x0c,0x10,0x0c,0x11,0x0c,0x12,
29262
+0x0c,0x13,0x0c,0x14,0x0c,0x15,0x0c,0x16,0x0c,0x17,0x0c,0x18,
29263
+0x0c,0x19,0x0c,0x1a,0x0c,0x1b,0x0c,0x1c,0x0c,0x1d,0x0c,0x1e,
29264
+0x0c,0x1f,0x0c,0x20,0x0c,0x21,0x0c,0x22,0x0c,0x23,0x0c,0x24,
29265
+0x0c,0x25,0x0c,0x26,0x0c,0x27,0x0c,0x28,0x0c,0x29,0x0c,0x2a,
29266
+0x0c,0x2b,0x0c,0x2c,0x0c,0x2d,0x0c,0x2e,0x0c,0x2f,0x0c,0x30,
29267
+0x0c,0x31,0x0c,0x32,0x0c,0x33,0x0c,0x34,0x0c,0x35,0x0c,0x36,
29268
+0x0c,0x37,0x0c,0x38,0x0c,0x39,0x0c,0x3a,0x0c,0x3b,0x0c,0x3c,
29269
+0x0c,0x3d,0x0c,0x3e,0x0c,0x3f,0x0c,0x40,0x0c,0x41,0x0c,0x42,
29270
+0x0c,0x43,0x0c,0x44,0x0c,0x45,0x0c,0x46,0x0c,0x47,0x0c,0x48,
29271
+0x0c,0x49,0x0c,0x4a,0x0c,0x4b,0x0c,0x4c,0x0c,0x4d,0x0c,0x4e,
29272
+0x0c,0x4f,0x0c,0x50,0x0c,0x51,0x0c,0x52,0x0c,0x53,0x0c,0x54,
29273
+0x0c,0x55,0x0c,0x56,0x0c,0x57,0x0c,0x58,0x0c,0x59,0x0c,0x5a,
29274
+0x0c,0x5b,0x0c,0x5c,0x0c,0x5d,0x0c,0x5e,0x0c,0x5f,0x0c,0x60,
29275
+0x0c,0x61,0x0c,0x62,0x0c,0x63,0x0c,0x64,0x0c,0x65,0x0c,0x66,
29276
+0x0c,0x67,0x0c,0x68,0x0c,0x69,0x0c,0x6a,0x0c,0x6b,0x0c,0x6c,
29277
+0x0c,0x6d,0x0c,0x6e,0x0c,0x6f,0x0c,0x70,0x0c,0x71,0x0c,0x72,
29278
+0x0c,0x73,0x0c,0x74,0x0c,0x75,0x0c,0x76,0x0c,0x77,0x0c,0x78,
29279
+0x0c,0x79,0x0c,0x7a,0x0c,0x7b,0x0c,0x7c,0x0c,0x7d,0x0c,0x7e,
29280
+0x0c,0x7f,0x0c,0x80,0x0c,0x81,0x0c,0x82,0x0c,0x83,0x0c,0x84,
29281
+0x0c,0x85,0x0c,0x86,0x0c,0x87,0x0c,0x88,0x0c,0x89,0x0c,0x8a,
29282
+0x0c,0x8b,0x0c,0x8c,0x0c,0x8d,0x0c,0x8e,0x0c,0x8f,0x0c,0x90,
29283
+0x0c,0x91,0x0c,0x92,0x0c,0x93,0x0c,0x94,0x0c,0x95,0x0c,0x96,
29284
+0x0c,0x97,0x0c,0x98,0x0c,0x99,0x0c,0x9a,0x0c,0x9b,0x0c,0x9c,
29285
+0x0c,0x9d,0x0c,0x9e,0x0c,0x9f,0x0c,0xa0,0x0c,0xa1,0x0c,0xa2,
29286
+0x0c,0xa3,0x0c,0xa4,0x0c,0xa5,0x0c,0xa6,0x0c,0xa7,0x0c,0xa8,
29287
+0x0c,0xa9,0x0c,0xaa,0x0c,0xab,0x0c,0xac,0x0c,0xad,0x0c,0xae,
29288
+0x0c,0xaf,0x0c,0xb0,0x0c,0xb1,0x0c,0xb2,0x0c,0xb3,0x0c,0xb4,
29289
+0x0c,0xb5,0x0c,0xb6,0x0c,0xb7,0x0c,0xb8,0x0c,0xb9,0x0c,0xba,
29290
+0x0c,0xbb,0x0c,0xbc,0x0c,0xbd,0x0c,0xbe,0x0c,0xbf,0x0c,0xc0,
29291
+0x0c,0xc1,0x0c,0xc2,0x0c,0xc3,0x0c,0xc4,0x0c,0xc5,0x0c,0xc6,
29292
+0x0c,0xc7,0x0c,0xc8,0x0c,0xc9,0x0c,0xca,0x0c,0xcb,0x0c,0xcc,
29293
+0x0c,0xcd,0x0c,0xce,0x0c,0xcf,0x0c,0xd0,0x0c,0xd1,0x0c,0xd2,
29294
+0x0c,0xd3,0x0c,0xd4,0x0c,0xd5,0x0c,0xd6,0x0c,0xd7,0x0c,0xd8,
29295
+0x0c,0xd9,0x0c,0xda,0x0c,0xdb,0x0c,0xdc,0x0c,0xdd,0x0c,0xde,
29296
+0x0c,0xdf,0x0c,0xe0,0x0c,0xe1,0x0c,0xe2,0x0c,0xe3,0x0c,0xe4,
29297
+0x0c,0xe5,0x0c,0xe6,0x0c,0xe7,0x0c,0xe8,0x0c,0xe9,0x0c,0xea,
29298
+0x0c,0xeb,0x0c,0xec,0x0c,0xed,0x0c,0xee,0x0c,0xef,0x0c,0xf0,
29299
+0x0c,0xf1,0x0c,0xf2,0x0c,0xf3,0x00,0xc0,0x00,0xc1,0x0c,0xf4,
29300
+0x0c,0xf5,0x0c,0xf6,0x0c,0xf7,0x0c,0xf8,0x0c,0xf9,0x0c,0xfa,
29301
+0x0c,0xfb,0x0c,0xfc,0x0c,0xfd,0x0c,0xfe,0x0c,0xff,0x0d,0x00,
29302
+0x0d,0x01,0x0d,0x02,0x0d,0x03,0x0d,0x04,0x0d,0x05,0x0d,0x06,
29303
+0x0d,0x07,0x0d,0x08,0x0d,0x09,0x0d,0x0a,0x0d,0x0b,0x0d,0x0c,
29304
+0x0d,0x0d,0x0d,0x0e,0x0d,0x0f,0x0d,0x10,0x0d,0x11,0x0d,0x12,
29305
+0x0d,0x13,0x0d,0x14,0x0d,0x15,0x0d,0x16,0x0d,0x17,0x0d,0x18,
29306
+0x0d,0x19,0x0d,0x1a,0x0d,0x1b,0x0d,0x1c,0x0d,0x1d,0x0d,0x1e,
29307
+0x0d,0x1f,0x0d,0x20,0x0d,0x21,0x0d,0x22,0x0d,0x23,0x0d,0x24,
29308
+0x0d,0x25,0x0d,0x26,0x0d,0x27,0x0d,0x28,0x0d,0x29,0x0d,0x2a,
29309
+0x0d,0x2b,0x0d,0x2c,0x0d,0x2d,0x0d,0x2e,0x0d,0x2f,0x0d,0x30,
29310
+0x0d,0x31,0x0d,0x32,0x0d,0x33,0x0d,0x34,0x0d,0x35,0x0d,0x36,
29311
+0x0d,0x37,0x0d,0x38,0x0d,0x39,0x0d,0x3a,0x0d,0x3b,0x0d,0x3c,
29312
+0x0d,0x3d,0x0d,0x3e,0x0d,0x3f,0x0d,0x40,0x0d,0x41,0x0d,0x42,
29313
+0x0d,0x43,0x0d,0x44,0x0d,0x45,0x0d,0x46,0x0d,0x47,0x0d,0x48,
29314
+0x0d,0x49,0x0d,0x4a,0x0d,0x4b,0x0d,0x4c,0x0d,0x4d,0x0d,0x4e,
29315
+0x0d,0x4f,0x0d,0x50,0x0d,0x51,0x0d,0x52,0x0d,0x53,0x0d,0x54,
29316
+0x0d,0x55,0x0d,0x56,0x0d,0x57,0x0d,0x58,0x0d,0x59,0x0d,0x5a,
29317
+0x0d,0x5b,0x0d,0x5c,0x0d,0x5d,0x0d,0x5e,0x0d,0x5f,0x0d,0x60,
29318
+0x0d,0x61,0x0d,0x62,0x0d,0x63,0x0d,0x64,0x0d,0x65,0x0d,0x66,
29319
+0x0d,0x67,0x0d,0x68,0x0d,0x69,0x0d,0x6a,0x0d,0x6b,0x0d,0x6c,
29320
+0x0d,0x6d,0x0d,0x6e,0x0d,0x6f,0x0d,0x70,0x0d,0x71,0x0d,0x72,
29321
+0x0d,0x73,0x0d,0x74,0x0d,0x75,0x0d,0x76,0x0d,0x77,0x0d,0x78,
29322
+0x0d,0x79,0x0d,0x7a,0x0d,0x7b,0x0d,0x7c,0x0d,0x7d,0x0d,0x7e,
29323
+0x0d,0x7f,0x0d,0x80,0x0d,0x81,0x0d,0x82,0x0d,0x83,0x0d,0x84,
29324
+0x0d,0x85,0x0d,0x86,0x0d,0x87,0x0d,0x88,0x0d,0x89,0x0d,0x8a,
29325
+0x0d,0x8b,0x0d,0x8c,0x0d,0x8d,0x0d,0x8e,0x0d,0x8f,0x0d,0x90,
29326
+0x0d,0x91,0x0d,0x92,0x0d,0x93,0x0d,0x94,0x0d,0x95,0x0d,0x96,
29327
+0x0d,0x97,0x0d,0x98,0x0d,0x99,0x0d,0x9a,0x0d,0x9b,0x0d,0x9c,
29328
+0x0d,0x9d,0x0d,0x9e,0x0d,0x9f,0x0d,0xa0,0x0d,0xa1,0x0d,0xa2,
29329
+0x0d,0xa3,0x0d,0xa4,0x0d,0xa5,0x0d,0xa6,0x0d,0xa7,0x0d,0xa8,
29330
+0x0d,0xa9,0x0d,0xaa,0x0d,0xab,0x0d,0xac,0x0d,0xad,0x0d,0xae,
29331
+0x0d,0xaf,0x0d,0xb0,0x0d,0xb1,0x0d,0xb2,0x0d,0xb3,0x0d,0xb4,
29332
+0x0d,0xb5,0x0d,0xb6,0x0d,0xb7,0x0d,0xb8,0x0d,0xb9,0x0d,0xba,
29333
+0x0d,0xbb,0x0d,0xbc,0x0d,0xbd,0x0d,0xbe,0x0d,0xbf,0x0d,0xc0,
29334
+0x0d,0xc1,0x0d,0xc2,0x0d,0xc3,0x0d,0xc4,0x0d,0xc5,0x0d,0xc6,
29335
+0x09,0x73,0x66,0x74,0x68,0x79,0x70,0x68,0x65,0x6e,0x07,0x41,
29336
+0x6d,0x61,0x63,0x72,0x6f,0x6e,0x07,0x61,0x6d,0x61,0x63,0x72,
29337
+0x6f,0x6e,0x06,0x41,0x62,0x72,0x65,0x76,0x65,0x06,0x61,0x62,
29338
+0x72,0x65,0x76,0x65,0x07,0x41,0x6f,0x67,0x6f,0x6e,0x65,0x6b,
29339
+0x07,0x61,0x6f,0x67,0x6f,0x6e,0x65,0x6b,0x0b,0x43,0x63,0x69,
29340
+0x72,0x63,0x75,0x6d,0x66,0x6c,0x65,0x78,0x0b,0x63,0x63,0x69,
29341
+0x72,0x63,0x75,0x6d,0x66,0x6c,0x65,0x78,0x0a,0x43,0x64,0x6f,
29342
+0x74,0x61,0x63,0x63,0x65,0x6e,0x74,0x0a,0x63,0x64,0x6f,0x74,
29343
+0x61,0x63,0x63,0x65,0x6e,0x74,0x06,0x44,0x63,0x61,0x72,0x6f,
29344
+0x6e,0x06,0x64,0x63,0x61,0x72,0x6f,0x6e,0x06,0x44,0x63,0x72,
29345
+0x6f,0x61,0x74,0x07,0x45,0x6d,0x61,0x63,0x72,0x6f,0x6e,0x07,
29346
+0x65,0x6d,0x61,0x63,0x72,0x6f,0x6e,0x06,0x45,0x62,0x72,0x65,
29347
+0x76,0x65,0x06,0x65,0x62,0x72,0x65,0x76,0x65,0x0a,0x45,0x64,
29348
+0x6f,0x74,0x61,0x63,0x63,0x65,0x6e,0x74,0x0a,0x65,0x64,0x6f,
29349
+0x74,0x61,0x63,0x63,0x65,0x6e,0x74,0x07,0x45,0x6f,0x67,0x6f,
29350
+0x6e,0x65,0x6b,0x07,0x65,0x6f,0x67,0x6f,0x6e,0x65,0x6b,0x06,
29351
+0x45,0x63,0x61,0x72,0x6f,0x6e,0x06,0x65,0x63,0x61,0x72,0x6f,
29352
+0x6e,0x0b,0x47,0x63,0x69,0x72,0x63,0x75,0x6d,0x66,0x6c,0x65,
29353
+0x78,0x0b,0x67,0x63,0x69,0x72,0x63,0x75,0x6d,0x66,0x6c,0x65,
29354
+0x78,0x0a,0x47,0x64,0x6f,0x74,0x61,0x63,0x63,0x65,0x6e,0x74,
29355
+0x0a,0x67,0x64,0x6f,0x74,0x61,0x63,0x63,0x65,0x6e,0x74,0x0c,
29356
+0x47,0x63,0x6f,0x6d,0x6d,0x61,0x61,0x63,0x63,0x65,0x6e,0x74,
29357
+0x0c,0x67,0x63,0x6f,0x6d,0x6d,0x61,0x61,0x63,0x63,0x65,0x6e,
29358
+0x74,0x0b,0x48,0x63,0x69,0x72,0x63,0x75,0x6d,0x66,0x6c,0x65,
29359
+0x78,0x0b,0x68,0x63,0x69,0x72,0x63,0x75,0x6d,0x66,0x6c,0x65,
29360
+0x78,0x04,0x48,0x62,0x61,0x72,0x04,0x68,0x62,0x61,0x72,0x06,
29361
+0x49,0x74,0x69,0x6c,0x64,0x65,0x06,0x69,0x74,0x69,0x6c,0x64,
29362
+0x65,0x07,0x49,0x6d,0x61,0x63,0x72,0x6f,0x6e,0x07,0x69,0x6d,
29363
+0x61,0x63,0x72,0x6f,0x6e,0x06,0x49,0x62,0x72,0x65,0x76,0x65,
29364
+0x06,0x69,0x62,0x72,0x65,0x76,0x65,0x07,0x49,0x6f,0x67,0x6f,
29365
+0x6e,0x65,0x6b,0x07,0x69,0x6f,0x67,0x6f,0x6e,0x65,0x6b,0x02,
29366
+0x49,0x4a,0x02,0x69,0x6a,0x0b,0x4a,0x63,0x69,0x72,0x63,0x75,
29367
+0x6d,0x66,0x6c,0x65,0x78,0x0b,0x6a,0x63,0x69,0x72,0x63,0x75,
29368
+0x6d,0x66,0x6c,0x65,0x78,0x0c,0x4b,0x63,0x6f,0x6d,0x6d,0x61,
29369
+0x61,0x63,0x63,0x65,0x6e,0x74,0x0c,0x6b,0x63,0x6f,0x6d,0x6d,
29370
+0x61,0x61,0x63,0x63,0x65,0x6e,0x74,0x0c,0x6b,0x67,0x72,0x65,
29371
+0x65,0x6e,0x6c,0x61,0x6e,0x64,0x69,0x63,0x06,0x4c,0x61,0x63,
29372
+0x75,0x74,0x65,0x06,0x6c,0x61,0x63,0x75,0x74,0x65,0x0c,0x4c,
29373
+0x63,0x6f,0x6d,0x6d,0x61,0x61,0x63,0x63,0x65,0x6e,0x74,0x0c,
29374
+0x6c,0x63,0x6f,0x6d,0x6d,0x61,0x61,0x63,0x63,0x65,0x6e,0x74,
29375
+0x06,0x4c,0x63,0x61,0x72,0x6f,0x6e,0x06,0x6c,0x63,0x61,0x72,
29376
+0x6f,0x6e,0x04,0x4c,0x64,0x6f,0x74,0x04,0x6c,0x64,0x6f,0x74,
29377
+0x06,0x4e,0x61,0x63,0x75,0x74,0x65,0x06,0x6e,0x61,0x63,0x75,
29378
+0x74,0x65,0x0c,0x4e,0x63,0x6f,0x6d,0x6d,0x61,0x61,0x63,0x63,
29379
+0x65,0x6e,0x74,0x0c,0x6e,0x63,0x6f,0x6d,0x6d,0x61,0x61,0x63,
29380
+0x63,0x65,0x6e,0x74,0x06,0x4e,0x63,0x61,0x72,0x6f,0x6e,0x06,
29381
+0x6e,0x63,0x61,0x72,0x6f,0x6e,0x0b,0x6e,0x61,0x70,0x6f,0x73,
29382
+0x74,0x72,0x6f,0x70,0x68,0x65,0x03,0x45,0x6e,0x67,0x03,0x65,
29383
+0x6e,0x67,0x07,0x4f,0x6d,0x61,0x63,0x72,0x6f,0x6e,0x07,0x6f,
29384
+0x6d,0x61,0x63,0x72,0x6f,0x6e,0x06,0x4f,0x62,0x72,0x65,0x76,
29385
+0x65,0x06,0x6f,0x62,0x72,0x65,0x76,0x65,0x0d,0x4f,0x68,0x75,
29386
+0x6e,0x67,0x61,0x72,0x75,0x6d,0x6c,0x61,0x75,0x74,0x0d,0x6f,
29387
+0x68,0x75,0x6e,0x67,0x61,0x72,0x75,0x6d,0x6c,0x61,0x75,0x74,
29388
+0x06,0x52,0x61,0x63,0x75,0x74,0x65,0x06,0x72,0x61,0x63,0x75,
29389
+0x74,0x65,0x0c,0x52,0x63,0x6f,0x6d,0x6d,0x61,0x61,0x63,0x63,
29390
+0x65,0x6e,0x74,0x0c,0x72,0x63,0x6f,0x6d,0x6d,0x61,0x61,0x63,
29391
+0x63,0x65,0x6e,0x74,0x06,0x52,0x63,0x61,0x72,0x6f,0x6e,0x06,
29392
+0x72,0x63,0x61,0x72,0x6f,0x6e,0x06,0x53,0x61,0x63,0x75,0x74,
29393
+0x65,0x06,0x73,0x61,0x63,0x75,0x74,0x65,0x0b,0x53,0x63,0x69,
29394
+0x72,0x63,0x75,0x6d,0x66,0x6c,0x65,0x78,0x0b,0x73,0x63,0x69,
29395
+0x72,0x63,0x75,0x6d,0x66,0x6c,0x65,0x78,0x0c,0x54,0x63,0x6f,
29396
+0x6d,0x6d,0x61,0x61,0x63,0x63,0x65,0x6e,0x74,0x0c,0x74,0x63,
29397
+0x6f,0x6d,0x6d,0x61,0x61,0x63,0x63,0x65,0x6e,0x74,0x06,0x54,
29398
+0x63,0x61,0x72,0x6f,0x6e,0x06,0x74,0x63,0x61,0x72,0x6f,0x6e,
29399
+0x04,0x54,0x62,0x61,0x72,0x04,0x74,0x62,0x61,0x72,0x06,0x55,
29400
+0x74,0x69,0x6c,0x64,0x65,0x06,0x75,0x74,0x69,0x6c,0x64,0x65,
29401
+0x07,0x55,0x6d,0x61,0x63,0x72,0x6f,0x6e,0x07,0x75,0x6d,0x61,
29402
+0x63,0x72,0x6f,0x6e,0x06,0x55,0x62,0x72,0x65,0x76,0x65,0x06,
29403
+0x75,0x62,0x72,0x65,0x76,0x65,0x05,0x55,0x72,0x69,0x6e,0x67,
29404
+0x05,0x75,0x72,0x69,0x6e,0x67,0x0d,0x55,0x68,0x75,0x6e,0x67,
29405
+0x61,0x72,0x75,0x6d,0x6c,0x61,0x75,0x74,0x0d,0x75,0x68,0x75,
29406
+0x6e,0x67,0x61,0x72,0x75,0x6d,0x6c,0x61,0x75,0x74,0x07,0x55,
29407
+0x6f,0x67,0x6f,0x6e,0x65,0x6b,0x07,0x75,0x6f,0x67,0x6f,0x6e,
29408
+0x65,0x6b,0x0b,0x57,0x63,0x69,0x72,0x63,0x75,0x6d,0x66,0x6c,
29409
+0x65,0x78,0x0b,0x77,0x63,0x69,0x72,0x63,0x75,0x6d,0x66,0x6c,
29410
+0x65,0x78,0x0b,0x59,0x63,0x69,0x72,0x63,0x75,0x6d,0x66,0x6c,
29411
+0x65,0x78,0x0b,0x79,0x63,0x69,0x72,0x63,0x75,0x6d,0x66,0x6c,
29412
+0x65,0x78,0x06,0x5a,0x61,0x63,0x75,0x74,0x65,0x06,0x7a,0x61,
29413
+0x63,0x75,0x74,0x65,0x0a,0x5a,0x64,0x6f,0x74,0x61,0x63,0x63,
29414
+0x65,0x6e,0x74,0x0a,0x7a,0x64,0x6f,0x74,0x61,0x63,0x63,0x65,
29415
+0x6e,0x74,0x05,0x6c,0x6f,0x6e,0x67,0x73,0x07,0x75,0x6e,0x69,
29416
+0x30,0x31,0x38,0x30,0x07,0x75,0x6e,0x69,0x30,0x31,0x38,0x31,
29417
+0x07,0x75,0x6e,0x69,0x30,0x31,0x38,0x32,0x07,0x75,0x6e,0x69,
29418
+0x30,0x31,0x38,0x33,0x07,0x75,0x6e,0x69,0x30,0x31,0x38,0x34,
29419
+0x07,0x75,0x6e,0x69,0x30,0x31,0x38,0x35,0x07,0x75,0x6e,0x69,
29420
+0x30,0x31,0x38,0x36,0x07,0x75,0x6e,0x69,0x30,0x31,0x38,0x37,
29421
+0x07,0x75,0x6e,0x69,0x30,0x31,0x38,0x38,0x07,0x75,0x6e,0x69,
29422
+0x30,0x31,0x38,0x39,0x07,0x75,0x6e,0x69,0x30,0x31,0x38,0x41,
29423
+0x07,0x75,0x6e,0x69,0x30,0x31,0x38,0x42,0x07,0x75,0x6e,0x69,
29424
+0x30,0x31,0x38,0x43,0x07,0x75,0x6e,0x69,0x30,0x31,0x38,0x44,
29425
+0x07,0x75,0x6e,0x69,0x30,0x31,0x38,0x45,0x07,0x75,0x6e,0x69,
29426
+0x30,0x31,0x38,0x46,0x07,0x75,0x6e,0x69,0x30,0x31,0x39,0x30,
29427
+0x07,0x75,0x6e,0x69,0x30,0x31,0x39,0x31,0x07,0x75,0x6e,0x69,
29428
+0x30,0x31,0x39,0x33,0x07,0x75,0x6e,0x69,0x30,0x31,0x39,0x34,
29429
+0x07,0x75,0x6e,0x69,0x30,0x31,0x39,0x35,0x07,0x75,0x6e,0x69,
29430
+0x30,0x31,0x39,0x36,0x07,0x75,0x6e,0x69,0x30,0x31,0x39,0x37,
29431
+0x07,0x75,0x6e,0x69,0x30,0x31,0x39,0x38,0x07,0x75,0x6e,0x69,
29432
+0x30,0x31,0x39,0x39,0x07,0x75,0x6e,0x69,0x30,0x31,0x39,0x41,
29433
+0x07,0x75,0x6e,0x69,0x30,0x31,0x39,0x42,0x07,0x75,0x6e,0x69,
29434
+0x30,0x31,0x39,0x43,0x07,0x75,0x6e,0x69,0x30,0x31,0x39,0x44,
29435
+0x07,0x75,0x6e,0x69,0x30,0x31,0x39,0x45,0x07,0x75,0x6e,0x69,
29436
+0x30,0x31,0x39,0x46,0x05,0x4f,0x68,0x6f,0x72,0x6e,0x05,0x6f,
29437
+0x68,0x6f,0x72,0x6e,0x07,0x75,0x6e,0x69,0x30,0x31,0x41,0x32,
29438
+0x07,0x75,0x6e,0x69,0x30,0x31,0x41,0x33,0x07,0x75,0x6e,0x69,
29439
+0x30,0x31,0x41,0x34,0x07,0x75,0x6e,0x69,0x30,0x31,0x41,0x35,
29440
+0x07,0x75,0x6e,0x69,0x30,0x31,0x41,0x36,0x07,0x75,0x6e,0x69,
29441
+0x30,0x31,0x41,0x37,0x07,0x75,0x6e,0x69,0x30,0x31,0x41,0x38,
29442
+0x07,0x75,0x6e,0x69,0x30,0x31,0x41,0x39,0x07,0x75,0x6e,0x69,
29443
+0x30,0x31,0x41,0x41,0x07,0x75,0x6e,0x69,0x30,0x31,0x41,0x42,
29444
+0x07,0x75,0x6e,0x69,0x30,0x31,0x41,0x43,0x07,0x75,0x6e,0x69,
29445
+0x30,0x31,0x41,0x44,0x07,0x75,0x6e,0x69,0x30,0x31,0x41,0x45,
29446
+0x05,0x55,0x68,0x6f,0x72,0x6e,0x05,0x75,0x68,0x6f,0x72,0x6e,
29447
+0x07,0x75,0x6e,0x69,0x30,0x31,0x42,0x31,0x07,0x75,0x6e,0x69,
29448
+0x30,0x31,0x42,0x32,0x07,0x75,0x6e,0x69,0x30,0x31,0x42,0x33,
29449
+0x07,0x75,0x6e,0x69,0x30,0x31,0x42,0x34,0x07,0x75,0x6e,0x69,
29450
+0x30,0x31,0x42,0x35,0x07,0x75,0x6e,0x69,0x30,0x31,0x42,0x36,
29451
+0x07,0x75,0x6e,0x69,0x30,0x31,0x42,0x37,0x07,0x75,0x6e,0x69,
29452
+0x30,0x31,0x42,0x38,0x07,0x75,0x6e,0x69,0x30,0x31,0x42,0x39,
29453
+0x07,0x75,0x6e,0x69,0x30,0x31,0x42,0x41,0x07,0x75,0x6e,0x69,
29454
+0x30,0x31,0x42,0x42,0x07,0x75,0x6e,0x69,0x30,0x31,0x42,0x43,
29455
+0x07,0x75,0x6e,0x69,0x30,0x31,0x42,0x44,0x07,0x75,0x6e,0x69,
29456
+0x30,0x31,0x42,0x45,0x07,0x75,0x6e,0x69,0x30,0x31,0x42,0x46,
29457
+0x07,0x75,0x6e,0x69,0x30,0x31,0x43,0x30,0x07,0x75,0x6e,0x69,
29458
+0x30,0x31,0x43,0x31,0x07,0x75,0x6e,0x69,0x30,0x31,0x43,0x32,
29459
+0x07,0x75,0x6e,0x69,0x30,0x31,0x43,0x33,0x07,0x75,0x6e,0x69,
29460
+0x30,0x31,0x43,0x34,0x07,0x75,0x6e,0x69,0x30,0x31,0x43,0x35,
29461
+0x07,0x75,0x6e,0x69,0x30,0x31,0x43,0x36,0x07,0x75,0x6e,0x69,
29462
+0x30,0x31,0x43,0x37,0x07,0x75,0x6e,0x69,0x30,0x31,0x43,0x38,
29463
+0x07,0x75,0x6e,0x69,0x30,0x31,0x43,0x39,0x07,0x75,0x6e,0x69,
29464
+0x30,0x31,0x43,0x41,0x07,0x75,0x6e,0x69,0x30,0x31,0x43,0x42,
29465
+0x07,0x75,0x6e,0x69,0x30,0x31,0x43,0x43,0x07,0x75,0x6e,0x69,
29466
+0x30,0x31,0x43,0x44,0x07,0x75,0x6e,0x69,0x30,0x31,0x43,0x45,
29467
+0x07,0x75,0x6e,0x69,0x30,0x31,0x43,0x46,0x07,0x75,0x6e,0x69,
29468
+0x30,0x31,0x44,0x30,0x07,0x75,0x6e,0x69,0x30,0x31,0x44,0x31,
29469
+0x07,0x75,0x6e,0x69,0x30,0x31,0x44,0x32,0x07,0x75,0x6e,0x69,
29470
+0x30,0x31,0x44,0x33,0x07,0x75,0x6e,0x69,0x30,0x31,0x44,0x34,
29471
+0x07,0x75,0x6e,0x69,0x30,0x31,0x44,0x35,0x07,0x75,0x6e,0x69,
29472
+0x30,0x31,0x44,0x36,0x07,0x75,0x6e,0x69,0x30,0x31,0x44,0x37,
29473
+0x07,0x75,0x6e,0x69,0x30,0x31,0x44,0x38,0x07,0x75,0x6e,0x69,
29474
+0x30,0x31,0x44,0x39,0x07,0x75,0x6e,0x69,0x30,0x31,0x44,0x41,
29475
+0x07,0x75,0x6e,0x69,0x30,0x31,0x44,0x42,0x07,0x75,0x6e,0x69,
29476
+0x30,0x31,0x44,0x43,0x07,0x75,0x6e,0x69,0x30,0x31,0x44,0x44,
29477
+0x07,0x75,0x6e,0x69,0x30,0x31,0x44,0x45,0x07,0x75,0x6e,0x69,
29478
+0x30,0x31,0x44,0x46,0x07,0x75,0x6e,0x69,0x30,0x31,0x45,0x30,
29479
+0x07,0x75,0x6e,0x69,0x30,0x31,0x45,0x31,0x07,0x75,0x6e,0x69,
29480
+0x30,0x31,0x45,0x32,0x07,0x75,0x6e,0x69,0x30,0x31,0x45,0x33,
29481
+0x07,0x75,0x6e,0x69,0x30,0x31,0x45,0x34,0x07,0x75,0x6e,0x69,
29482
+0x30,0x31,0x45,0x35,0x06,0x47,0x63,0x61,0x72,0x6f,0x6e,0x06,
29483
+0x67,0x63,0x61,0x72,0x6f,0x6e,0x07,0x75,0x6e,0x69,0x30,0x31,
29484
+0x45,0x38,0x07,0x75,0x6e,0x69,0x30,0x31,0x45,0x39,0x07,0x75,
29485
+0x6e,0x69,0x30,0x31,0x45,0x41,0x07,0x75,0x6e,0x69,0x30,0x31,
29486
+0x45,0x42,0x07,0x75,0x6e,0x69,0x30,0x31,0x45,0x43,0x07,0x75,
29487
+0x6e,0x69,0x30,0x31,0x45,0x44,0x07,0x75,0x6e,0x69,0x30,0x31,
29488
+0x45,0x45,0x07,0x75,0x6e,0x69,0x30,0x31,0x45,0x46,0x07,0x75,
29489
+0x6e,0x69,0x30,0x31,0x46,0x30,0x07,0x75,0x6e,0x69,0x30,0x31,
29490
+0x46,0x31,0x07,0x75,0x6e,0x69,0x30,0x31,0x46,0x32,0x07,0x75,
29491
+0x6e,0x69,0x30,0x31,0x46,0x33,0x07,0x75,0x6e,0x69,0x30,0x31,
29492
+0x46,0x34,0x07,0x75,0x6e,0x69,0x30,0x31,0x46,0x35,0x07,0x75,
29493
+0x6e,0x69,0x30,0x31,0x46,0x36,0x07,0x75,0x6e,0x69,0x30,0x31,
29494
+0x46,0x37,0x07,0x75,0x6e,0x69,0x30,0x31,0x46,0x38,0x07,0x75,
29495
+0x6e,0x69,0x30,0x31,0x46,0x39,0x0a,0x41,0x72,0x69,0x6e,0x67,
29496
+0x61,0x63,0x75,0x74,0x65,0x0a,0x61,0x72,0x69,0x6e,0x67,0x61,
29497
+0x63,0x75,0x74,0x65,0x07,0x41,0x45,0x61,0x63,0x75,0x74,0x65,
29498
+0x07,0x61,0x65,0x61,0x63,0x75,0x74,0x65,0x0b,0x4f,0x73,0x6c,
29499
+0x61,0x73,0x68,0x61,0x63,0x75,0x74,0x65,0x0b,0x6f,0x73,0x6c,
29500
+0x61,0x73,0x68,0x61,0x63,0x75,0x74,0x65,0x07,0x75,0x6e,0x69,
29501
+0x30,0x32,0x30,0x30,0x07,0x75,0x6e,0x69,0x30,0x32,0x30,0x31,
29502
+0x07,0x75,0x6e,0x69,0x30,0x32,0x30,0x32,0x07,0x75,0x6e,0x69,
29503
+0x30,0x32,0x30,0x33,0x07,0x75,0x6e,0x69,0x30,0x32,0x30,0x34,
29504
+0x07,0x75,0x6e,0x69,0x30,0x32,0x30,0x35,0x07,0x75,0x6e,0x69,
29505
+0x30,0x32,0x30,0x36,0x07,0x75,0x6e,0x69,0x30,0x32,0x30,0x37,
29506
+0x07,0x75,0x6e,0x69,0x30,0x32,0x30,0x38,0x07,0x75,0x6e,0x69,
29507
+0x30,0x32,0x30,0x39,0x07,0x75,0x6e,0x69,0x30,0x32,0x30,0x41,
29508
+0x07,0x75,0x6e,0x69,0x30,0x32,0x30,0x42,0x07,0x75,0x6e,0x69,
29509
+0x30,0x32,0x30,0x43,0x07,0x75,0x6e,0x69,0x30,0x32,0x30,0x44,
29510
+0x07,0x75,0x6e,0x69,0x30,0x32,0x30,0x45,0x07,0x75,0x6e,0x69,
29511
+0x30,0x32,0x30,0x46,0x07,0x75,0x6e,0x69,0x30,0x32,0x31,0x30,
29512
+0x07,0x75,0x6e,0x69,0x30,0x32,0x31,0x31,0x07,0x75,0x6e,0x69,
29513
+0x30,0x32,0x31,0x32,0x07,0x75,0x6e,0x69,0x30,0x32,0x31,0x33,
29514
+0x07,0x75,0x6e,0x69,0x30,0x32,0x31,0x34,0x07,0x75,0x6e,0x69,
29515
+0x30,0x32,0x31,0x35,0x07,0x75,0x6e,0x69,0x30,0x32,0x31,0x36,
29516
+0x07,0x75,0x6e,0x69,0x30,0x32,0x31,0x37,0x0c,0x53,0x63,0x6f,
29517
+0x6d,0x6d,0x61,0x61,0x63,0x63,0x65,0x6e,0x74,0x0c,0x73,0x63,
29518
+0x6f,0x6d,0x6d,0x61,0x61,0x63,0x63,0x65,0x6e,0x74,0x07,0x75,
29519
+0x6e,0x69,0x30,0x32,0x31,0x41,0x07,0x75,0x6e,0x69,0x30,0x32,
29520
+0x31,0x42,0x07,0x75,0x6e,0x69,0x30,0x32,0x31,0x43,0x07,0x75,
29521
+0x6e,0x69,0x30,0x32,0x31,0x44,0x07,0x75,0x6e,0x69,0x30,0x32,
29522
+0x31,0x45,0x07,0x75,0x6e,0x69,0x30,0x32,0x31,0x46,0x07,0x75,
29523
+0x6e,0x69,0x30,0x32,0x32,0x30,0x07,0x75,0x6e,0x69,0x30,0x32,
29524
+0x32,0x31,0x07,0x75,0x6e,0x69,0x30,0x32,0x32,0x32,0x07,0x75,
29525
+0x6e,0x69,0x30,0x32,0x32,0x33,0x07,0x75,0x6e,0x69,0x30,0x32,
29526
+0x32,0x34,0x07,0x75,0x6e,0x69,0x30,0x32,0x32,0x35,0x07,0x75,
29527
+0x6e,0x69,0x30,0x32,0x32,0x36,0x07,0x75,0x6e,0x69,0x30,0x32,
29528
+0x32,0x37,0x07,0x75,0x6e,0x69,0x30,0x32,0x32,0x38,0x07,0x75,
29529
+0x6e,0x69,0x30,0x32,0x32,0x39,0x07,0x75,0x6e,0x69,0x30,0x32,
29530
+0x32,0x41,0x07,0x75,0x6e,0x69,0x30,0x32,0x32,0x42,0x07,0x75,
29531
+0x6e,0x69,0x30,0x32,0x32,0x43,0x07,0x75,0x6e,0x69,0x30,0x32,
29532
+0x32,0x44,0x07,0x75,0x6e,0x69,0x30,0x32,0x32,0x45,0x07,0x75,
29533
+0x6e,0x69,0x30,0x32,0x32,0x46,0x07,0x75,0x6e,0x69,0x30,0x32,
29534
+0x33,0x30,0x07,0x75,0x6e,0x69,0x30,0x32,0x33,0x31,0x07,0x75,
29535
+0x6e,0x69,0x30,0x32,0x33,0x32,0x07,0x75,0x6e,0x69,0x30,0x32,
29536
+0x33,0x33,0x07,0x75,0x6e,0x69,0x30,0x32,0x33,0x34,0x07,0x75,
29537
+0x6e,0x69,0x30,0x32,0x33,0x35,0x07,0x75,0x6e,0x69,0x30,0x32,
29538
+0x33,0x36,0x08,0x64,0x6f,0x74,0x6c,0x65,0x73,0x73,0x6a,0x07,
29539
+0x75,0x6e,0x69,0x30,0x32,0x33,0x38,0x07,0x75,0x6e,0x69,0x30,
29540
+0x32,0x33,0x39,0x07,0x75,0x6e,0x69,0x30,0x32,0x33,0x41,0x07,
29541
+0x75,0x6e,0x69,0x30,0x32,0x33,0x42,0x07,0x75,0x6e,0x69,0x30,
29542
+0x32,0x33,0x43,0x07,0x75,0x6e,0x69,0x30,0x32,0x33,0x44,0x07,
29543
+0x75,0x6e,0x69,0x30,0x32,0x33,0x45,0x07,0x75,0x6e,0x69,0x30,
29544
+0x32,0x33,0x46,0x07,0x75,0x6e,0x69,0x30,0x32,0x34,0x30,0x07,
29545
+0x75,0x6e,0x69,0x30,0x32,0x34,0x31,0x07,0x75,0x6e,0x69,0x30,
29546
+0x32,0x34,0x32,0x07,0x75,0x6e,0x69,0x30,0x32,0x34,0x33,0x07,
29547
+0x75,0x6e,0x69,0x30,0x32,0x34,0x34,0x07,0x75,0x6e,0x69,0x30,
29548
+0x32,0x34,0x35,0x07,0x75,0x6e,0x69,0x30,0x32,0x34,0x36,0x07,
29549
+0x75,0x6e,0x69,0x30,0x32,0x34,0x37,0x07,0x75,0x6e,0x69,0x30,
29550
+0x32,0x34,0x38,0x07,0x75,0x6e,0x69,0x30,0x32,0x34,0x39,0x07,
29551
+0x75,0x6e,0x69,0x30,0x32,0x34,0x41,0x07,0x75,0x6e,0x69,0x30,
29552
+0x32,0x34,0x42,0x07,0x75,0x6e,0x69,0x30,0x32,0x34,0x43,0x07,
29553
+0x75,0x6e,0x69,0x30,0x32,0x34,0x44,0x07,0x75,0x6e,0x69,0x30,
29554
+0x32,0x34,0x45,0x07,0x75,0x6e,0x69,0x30,0x32,0x34,0x46,0x07,
29555
+0x75,0x6e,0x69,0x30,0x32,0x35,0x30,0x07,0x75,0x6e,0x69,0x30,
29556
+0x32,0x35,0x31,0x07,0x75,0x6e,0x69,0x30,0x32,0x35,0x32,0x07,
29557
+0x75,0x6e,0x69,0x30,0x32,0x35,0x33,0x07,0x75,0x6e,0x69,0x30,
29558
+0x32,0x35,0x34,0x07,0x75,0x6e,0x69,0x30,0x32,0x35,0x35,0x07,
29559
+0x75,0x6e,0x69,0x30,0x32,0x35,0x36,0x07,0x75,0x6e,0x69,0x30,
29560
+0x32,0x35,0x37,0x07,0x75,0x6e,0x69,0x30,0x32,0x35,0x38,0x07,
29561
+0x75,0x6e,0x69,0x30,0x32,0x35,0x39,0x07,0x75,0x6e,0x69,0x30,
29562
+0x32,0x35,0x41,0x07,0x75,0x6e,0x69,0x30,0x32,0x35,0x42,0x07,
29563
+0x75,0x6e,0x69,0x30,0x32,0x35,0x43,0x07,0x75,0x6e,0x69,0x30,
29564
+0x32,0x35,0x44,0x07,0x75,0x6e,0x69,0x30,0x32,0x35,0x45,0x07,
29565
+0x75,0x6e,0x69,0x30,0x32,0x35,0x46,0x07,0x75,0x6e,0x69,0x30,
29566
+0x32,0x36,0x30,0x07,0x75,0x6e,0x69,0x30,0x32,0x36,0x31,0x07,
29567
+0x75,0x6e,0x69,0x30,0x32,0x36,0x32,0x07,0x75,0x6e,0x69,0x30,
29568
+0x32,0x36,0x33,0x07,0x75,0x6e,0x69,0x30,0x32,0x36,0x34,0x07,
29569
+0x75,0x6e,0x69,0x30,0x32,0x36,0x35,0x07,0x75,0x6e,0x69,0x30,
29570
+0x32,0x36,0x36,0x07,0x75,0x6e,0x69,0x30,0x32,0x36,0x37,0x07,
29571
+0x75,0x6e,0x69,0x30,0x32,0x36,0x38,0x07,0x75,0x6e,0x69,0x30,
29572
+0x32,0x36,0x39,0x07,0x75,0x6e,0x69,0x30,0x32,0x36,0x41,0x07,
29573
+0x75,0x6e,0x69,0x30,0x32,0x36,0x42,0x07,0x75,0x6e,0x69,0x30,
29574
+0x32,0x36,0x43,0x07,0x75,0x6e,0x69,0x30,0x32,0x36,0x44,0x07,
29575
+0x75,0x6e,0x69,0x30,0x32,0x36,0x45,0x07,0x75,0x6e,0x69,0x30,
29576
+0x32,0x36,0x46,0x07,0x75,0x6e,0x69,0x30,0x32,0x37,0x30,0x07,
29577
+0x75,0x6e,0x69,0x30,0x32,0x37,0x31,0x07,0x75,0x6e,0x69,0x30,
29578
+0x32,0x37,0x32,0x07,0x75,0x6e,0x69,0x30,0x32,0x37,0x33,0x07,
29579
+0x75,0x6e,0x69,0x30,0x32,0x37,0x34,0x07,0x75,0x6e,0x69,0x30,
29580
+0x32,0x37,0x35,0x07,0x75,0x6e,0x69,0x30,0x32,0x37,0x36,0x07,
29581
+0x75,0x6e,0x69,0x30,0x32,0x37,0x37,0x07,0x75,0x6e,0x69,0x30,
29582
+0x32,0x37,0x38,0x07,0x75,0x6e,0x69,0x30,0x32,0x37,0x39,0x07,
29583
+0x75,0x6e,0x69,0x30,0x32,0x37,0x41,0x07,0x75,0x6e,0x69,0x30,
29584
+0x32,0x37,0x42,0x07,0x75,0x6e,0x69,0x30,0x32,0x37,0x43,0x07,
29585
+0x75,0x6e,0x69,0x30,0x32,0x37,0x44,0x07,0x75,0x6e,0x69,0x30,
29586
+0x32,0x37,0x45,0x07,0x75,0x6e,0x69,0x30,0x32,0x37,0x46,0x07,
29587
+0x75,0x6e,0x69,0x30,0x32,0x38,0x30,0x07,0x75,0x6e,0x69,0x30,
29588
+0x32,0x38,0x31,0x07,0x75,0x6e,0x69,0x30,0x32,0x38,0x32,0x07,
29589
+0x75,0x6e,0x69,0x30,0x32,0x38,0x33,0x07,0x75,0x6e,0x69,0x30,
29590
+0x32,0x38,0x34,0x07,0x75,0x6e,0x69,0x30,0x32,0x38,0x35,0x07,
29591
+0x75,0x6e,0x69,0x30,0x32,0x38,0x36,0x07,0x75,0x6e,0x69,0x30,
29592
+0x32,0x38,0x37,0x07,0x75,0x6e,0x69,0x30,0x32,0x38,0x38,0x07,
29593
+0x75,0x6e,0x69,0x30,0x32,0x38,0x39,0x07,0x75,0x6e,0x69,0x30,
29594
+0x32,0x38,0x41,0x07,0x75,0x6e,0x69,0x30,0x32,0x38,0x42,0x07,
29595
+0x75,0x6e,0x69,0x30,0x32,0x38,0x43,0x07,0x75,0x6e,0x69,0x30,
29596
+0x32,0x38,0x44,0x07,0x75,0x6e,0x69,0x30,0x32,0x38,0x45,0x07,
29597
+0x75,0x6e,0x69,0x30,0x32,0x38,0x46,0x07,0x75,0x6e,0x69,0x30,
29598
+0x32,0x39,0x30,0x07,0x75,0x6e,0x69,0x30,0x32,0x39,0x31,0x07,
29599
+0x75,0x6e,0x69,0x30,0x32,0x39,0x32,0x07,0x75,0x6e,0x69,0x30,
29600
+0x32,0x39,0x33,0x07,0x75,0x6e,0x69,0x30,0x32,0x39,0x34,0x07,
29601
+0x75,0x6e,0x69,0x30,0x32,0x39,0x35,0x07,0x75,0x6e,0x69,0x30,
29602
+0x32,0x39,0x36,0x07,0x75,0x6e,0x69,0x30,0x32,0x39,0x37,0x07,
29603
+0x75,0x6e,0x69,0x30,0x32,0x39,0x38,0x07,0x75,0x6e,0x69,0x30,
29604
+0x32,0x39,0x39,0x07,0x75,0x6e,0x69,0x30,0x32,0x39,0x41,0x07,
29605
+0x75,0x6e,0x69,0x30,0x32,0x39,0x42,0x07,0x75,0x6e,0x69,0x30,
29606
+0x32,0x39,0x43,0x07,0x75,0x6e,0x69,0x30,0x32,0x39,0x44,0x07,
29607
+0x75,0x6e,0x69,0x30,0x32,0x39,0x45,0x07,0x75,0x6e,0x69,0x30,
29608
+0x32,0x39,0x46,0x07,0x75,0x6e,0x69,0x30,0x32,0x41,0x30,0x07,
29609
+0x75,0x6e,0x69,0x30,0x32,0x41,0x31,0x07,0x75,0x6e,0x69,0x30,
29610
+0x32,0x41,0x32,0x07,0x75,0x6e,0x69,0x30,0x32,0x41,0x33,0x07,
29611
+0x75,0x6e,0x69,0x30,0x32,0x41,0x34,0x07,0x75,0x6e,0x69,0x30,
29612
+0x32,0x41,0x35,0x07,0x75,0x6e,0x69,0x30,0x32,0x41,0x36,0x07,
29613
+0x75,0x6e,0x69,0x30,0x32,0x41,0x37,0x07,0x75,0x6e,0x69,0x30,
29614
+0x32,0x41,0x38,0x07,0x75,0x6e,0x69,0x30,0x32,0x41,0x39,0x07,
29615
+0x75,0x6e,0x69,0x30,0x32,0x41,0x41,0x07,0x75,0x6e,0x69,0x30,
29616
+0x32,0x41,0x42,0x07,0x75,0x6e,0x69,0x30,0x32,0x41,0x43,0x07,
29617
+0x75,0x6e,0x69,0x30,0x32,0x41,0x44,0x07,0x75,0x6e,0x69,0x30,
29618
+0x32,0x41,0x45,0x07,0x75,0x6e,0x69,0x30,0x32,0x41,0x46,0x07,
29619
+0x75,0x6e,0x69,0x30,0x32,0x42,0x30,0x07,0x75,0x6e,0x69,0x30,
29620
+0x32,0x42,0x31,0x07,0x75,0x6e,0x69,0x30,0x32,0x42,0x32,0x07,
29621
+0x75,0x6e,0x69,0x30,0x32,0x42,0x33,0x07,0x75,0x6e,0x69,0x30,
29622
+0x32,0x42,0x34,0x07,0x75,0x6e,0x69,0x30,0x32,0x42,0x35,0x07,
29623
+0x75,0x6e,0x69,0x30,0x32,0x42,0x36,0x07,0x75,0x6e,0x69,0x30,
29624
+0x32,0x42,0x37,0x07,0x75,0x6e,0x69,0x30,0x32,0x42,0x38,0x07,
29625
+0x75,0x6e,0x69,0x30,0x32,0x42,0x39,0x07,0x75,0x6e,0x69,0x30,
29626
+0x32,0x42,0x41,0x07,0x75,0x6e,0x69,0x30,0x32,0x42,0x42,0x07,
29627
+0x75,0x6e,0x69,0x30,0x32,0x42,0x43,0x07,0x75,0x6e,0x69,0x30,
29628
+0x32,0x42,0x44,0x07,0x75,0x6e,0x69,0x30,0x32,0x42,0x45,0x07,
29629
+0x75,0x6e,0x69,0x30,0x32,0x42,0x46,0x07,0x75,0x6e,0x69,0x30,
29630
+0x32,0x43,0x30,0x07,0x75,0x6e,0x69,0x30,0x32,0x43,0x31,0x07,
29631
+0x75,0x6e,0x69,0x30,0x32,0x43,0x32,0x07,0x75,0x6e,0x69,0x30,
29632
+0x32,0x43,0x33,0x07,0x75,0x6e,0x69,0x30,0x32,0x43,0x34,0x07,
29633
+0x75,0x6e,0x69,0x30,0x32,0x43,0x35,0x07,0x75,0x6e,0x69,0x30,
29634
+0x32,0x43,0x38,0x07,0x75,0x6e,0x69,0x30,0x32,0x43,0x39,0x07,
29635
+0x75,0x6e,0x69,0x30,0x32,0x43,0x41,0x07,0x75,0x6e,0x69,0x30,
29636
+0x32,0x43,0x42,0x07,0x75,0x6e,0x69,0x30,0x32,0x43,0x43,0x07,
29637
+0x75,0x6e,0x69,0x30,0x32,0x43,0x44,0x07,0x75,0x6e,0x69,0x30,
29638
+0x32,0x44,0x30,0x07,0x75,0x6e,0x69,0x30,0x32,0x44,0x31,0x07,
29639
+0x75,0x6e,0x69,0x30,0x32,0x44,0x32,0x07,0x75,0x6e,0x69,0x30,
29640
+0x32,0x44,0x33,0x07,0x75,0x6e,0x69,0x30,0x32,0x44,0x36,0x07,
29641
+0x75,0x6e,0x69,0x30,0x32,0x44,0x37,0x07,0x75,0x6e,0x69,0x30,
29642
+0x32,0x44,0x45,0x07,0x75,0x6e,0x69,0x30,0x32,0x45,0x30,0x07,
29643
+0x75,0x6e,0x69,0x30,0x32,0x45,0x31,0x07,0x75,0x6e,0x69,0x30,
29644
+0x32,0x45,0x32,0x07,0x75,0x6e,0x69,0x30,0x32,0x45,0x33,0x07,
29645
+0x75,0x6e,0x69,0x30,0x32,0x45,0x34,0x07,0x75,0x6e,0x69,0x30,
29646
+0x32,0x45,0x35,0x07,0x75,0x6e,0x69,0x30,0x32,0x45,0x36,0x07,
29647
+0x75,0x6e,0x69,0x30,0x32,0x45,0x37,0x07,0x75,0x6e,0x69,0x30,
29648
+0x32,0x45,0x38,0x07,0x75,0x6e,0x69,0x30,0x32,0x45,0x39,0x07,
29649
+0x75,0x6e,0x69,0x30,0x32,0x45,0x43,0x07,0x75,0x6e,0x69,0x30,
29650
+0x32,0x45,0x45,0x07,0x75,0x6e,0x69,0x30,0x32,0x45,0x46,0x07,
29651
+0x75,0x6e,0x69,0x30,0x32,0x46,0x30,0x07,0x75,0x6e,0x69,0x30,
29652
+0x32,0x46,0x33,0x07,0x75,0x6e,0x69,0x30,0x32,0x46,0x37,0x09,
29653
+0x67,0x72,0x61,0x76,0x65,0x63,0x6f,0x6d,0x62,0x09,0x61,0x63,
29654
+0x75,0x74,0x65,0x63,0x6f,0x6d,0x62,0x07,0x75,0x6e,0x69,0x30,
29655
+0x33,0x30,0x32,0x09,0x74,0x69,0x6c,0x64,0x65,0x63,0x6f,0x6d,
29656
+0x62,0x07,0x75,0x6e,0x69,0x30,0x33,0x30,0x34,0x07,0x75,0x6e,
29657
+0x69,0x30,0x33,0x30,0x35,0x07,0x75,0x6e,0x69,0x30,0x33,0x30,
29658
+0x36,0x07,0x75,0x6e,0x69,0x30,0x33,0x30,0x37,0x07,0x75,0x6e,
29659
+0x69,0x30,0x33,0x30,0x38,0x0d,0x68,0x6f,0x6f,0x6b,0x61,0x62,
29660
+0x6f,0x76,0x65,0x63,0x6f,0x6d,0x62,0x07,0x75,0x6e,0x69,0x30,
29661
+0x33,0x30,0x41,0x07,0x75,0x6e,0x69,0x30,0x33,0x30,0x42,0x07,
29662
+0x75,0x6e,0x69,0x30,0x33,0x30,0x43,0x07,0x75,0x6e,0x69,0x30,
29663
+0x33,0x30,0x44,0x07,0x75,0x6e,0x69,0x30,0x33,0x30,0x45,0x07,
29664
+0x75,0x6e,0x69,0x30,0x33,0x30,0x46,0x07,0x75,0x6e,0x69,0x30,
29665
+0x33,0x31,0x30,0x07,0x75,0x6e,0x69,0x30,0x33,0x31,0x31,0x07,
29666
+0x75,0x6e,0x69,0x30,0x33,0x31,0x32,0x07,0x75,0x6e,0x69,0x30,
29667
+0x33,0x31,0x33,0x07,0x75,0x6e,0x69,0x30,0x33,0x31,0x34,0x07,
29668
+0x75,0x6e,0x69,0x30,0x33,0x31,0x35,0x07,0x75,0x6e,0x69,0x30,
29669
+0x33,0x31,0x36,0x07,0x75,0x6e,0x69,0x30,0x33,0x31,0x37,0x07,
29670
+0x75,0x6e,0x69,0x30,0x33,0x31,0x38,0x07,0x75,0x6e,0x69,0x30,
29671
+0x33,0x31,0x39,0x07,0x75,0x6e,0x69,0x30,0x33,0x31,0x41,0x07,
29672
+0x75,0x6e,0x69,0x30,0x33,0x31,0x42,0x07,0x75,0x6e,0x69,0x30,
29673
+0x33,0x31,0x43,0x07,0x75,0x6e,0x69,0x30,0x33,0x31,0x44,0x07,
29674
+0x75,0x6e,0x69,0x30,0x33,0x31,0x45,0x07,0x75,0x6e,0x69,0x30,
29675
+0x33,0x31,0x46,0x07,0x75,0x6e,0x69,0x30,0x33,0x32,0x30,0x07,
29676
+0x75,0x6e,0x69,0x30,0x33,0x32,0x31,0x07,0x75,0x6e,0x69,0x30,
29677
+0x33,0x32,0x32,0x0c,0x64,0x6f,0x74,0x62,0x65,0x6c,0x6f,0x77,
29678
+0x63,0x6f,0x6d,0x62,0x07,0x75,0x6e,0x69,0x30,0x33,0x32,0x34,
29679
+0x07,0x75,0x6e,0x69,0x30,0x33,0x32,0x35,0x07,0x75,0x6e,0x69,
29680
+0x30,0x33,0x32,0x36,0x07,0x75,0x6e,0x69,0x30,0x33,0x32,0x37,
29681
+0x07,0x75,0x6e,0x69,0x30,0x33,0x32,0x38,0x07,0x75,0x6e,0x69,
29682
+0x30,0x33,0x32,0x39,0x07,0x75,0x6e,0x69,0x30,0x33,0x32,0x41,
29683
+0x07,0x75,0x6e,0x69,0x30,0x33,0x32,0x42,0x07,0x75,0x6e,0x69,
29684
+0x30,0x33,0x32,0x43,0x07,0x75,0x6e,0x69,0x30,0x33,0x32,0x44,
29685
+0x07,0x75,0x6e,0x69,0x30,0x33,0x32,0x45,0x07,0x75,0x6e,0x69,
29686
+0x30,0x33,0x32,0x46,0x07,0x75,0x6e,0x69,0x30,0x33,0x33,0x30,
29687
+0x07,0x75,0x6e,0x69,0x30,0x33,0x33,0x31,0x07,0x75,0x6e,0x69,
29688
+0x30,0x33,0x33,0x32,0x07,0x75,0x6e,0x69,0x30,0x33,0x33,0x33,
29689
+0x07,0x75,0x6e,0x69,0x30,0x33,0x33,0x34,0x07,0x75,0x6e,0x69,
29690
+0x30,0x33,0x33,0x35,0x07,0x75,0x6e,0x69,0x30,0x33,0x33,0x36,
29691
+0x07,0x75,0x6e,0x69,0x30,0x33,0x33,0x37,0x07,0x75,0x6e,0x69,
29692
+0x30,0x33,0x33,0x38,0x07,0x75,0x6e,0x69,0x30,0x33,0x33,0x39,
29693
+0x07,0x75,0x6e,0x69,0x30,0x33,0x33,0x41,0x07,0x75,0x6e,0x69,
29694
+0x30,0x33,0x33,0x42,0x07,0x75,0x6e,0x69,0x30,0x33,0x33,0x43,
29695
+0x07,0x75,0x6e,0x69,0x30,0x33,0x33,0x44,0x07,0x75,0x6e,0x69,
29696
+0x30,0x33,0x33,0x45,0x07,0x75,0x6e,0x69,0x30,0x33,0x33,0x46,
29697
+0x07,0x75,0x6e,0x69,0x30,0x33,0x34,0x33,0x07,0x75,0x6e,0x69,
29698
+0x30,0x33,0x34,0x46,0x07,0x75,0x6e,0x69,0x30,0x33,0x35,0x38,
29699
+0x07,0x75,0x6e,0x69,0x30,0x33,0x36,0x30,0x07,0x75,0x6e,0x69,
29700
+0x30,0x33,0x36,0x31,0x07,0x75,0x6e,0x69,0x30,0x33,0x37,0x30,
29701
+0x07,0x75,0x6e,0x69,0x30,0x33,0x37,0x31,0x07,0x75,0x6e,0x69,
29702
+0x30,0x33,0x37,0x32,0x07,0x75,0x6e,0x69,0x30,0x33,0x37,0x33,
29703
+0x07,0x75,0x6e,0x69,0x30,0x33,0x37,0x34,0x07,0x75,0x6e,0x69,
29704
+0x30,0x33,0x37,0x35,0x07,0x75,0x6e,0x69,0x30,0x33,0x37,0x36,
29705
+0x07,0x75,0x6e,0x69,0x30,0x33,0x37,0x37,0x07,0x75,0x6e,0x69,
29706
+0x30,0x33,0x37,0x41,0x07,0x75,0x6e,0x69,0x30,0x33,0x37,0x42,
29707
+0x07,0x75,0x6e,0x69,0x30,0x33,0x37,0x43,0x07,0x75,0x6e,0x69,
29708
+0x30,0x33,0x37,0x44,0x07,0x75,0x6e,0x69,0x30,0x33,0x37,0x45,
29709
+0x05,0x74,0x6f,0x6e,0x6f,0x73,0x0d,0x64,0x69,0x65,0x72,0x65,
29710
+0x73,0x69,0x73,0x74,0x6f,0x6e,0x6f,0x73,0x0a,0x41,0x6c,0x70,
29711
+0x68,0x61,0x74,0x6f,0x6e,0x6f,0x73,0x09,0x61,0x6e,0x6f,0x74,
29712
+0x65,0x6c,0x65,0x69,0x61,0x0c,0x45,0x70,0x73,0x69,0x6c,0x6f,
29713
+0x6e,0x74,0x6f,0x6e,0x6f,0x73,0x08,0x45,0x74,0x61,0x74,0x6f,
29714
+0x6e,0x6f,0x73,0x09,0x49,0x6f,0x74,0x61,0x74,0x6f,0x6e,0x6f,
29715
+0x73,0x0c,0x4f,0x6d,0x69,0x63,0x72,0x6f,0x6e,0x74,0x6f,0x6e,
29716
+0x6f,0x73,0x0c,0x55,0x70,0x73,0x69,0x6c,0x6f,0x6e,0x74,0x6f,
29717
+0x6e,0x6f,0x73,0x0a,0x4f,0x6d,0x65,0x67,0x61,0x74,0x6f,0x6e,
29718
+0x6f,0x73,0x11,0x69,0x6f,0x74,0x61,0x64,0x69,0x65,0x72,0x65,
29719
+0x73,0x69,0x73,0x74,0x6f,0x6e,0x6f,0x73,0x05,0x41,0x6c,0x70,
29720
+0x68,0x61,0x04,0x42,0x65,0x74,0x61,0x05,0x47,0x61,0x6d,0x6d,
29721
+0x61,0x07,0x75,0x6e,0x69,0x30,0x33,0x39,0x34,0x07,0x45,0x70,
29722
+0x73,0x69,0x6c,0x6f,0x6e,0x04,0x5a,0x65,0x74,0x61,0x03,0x45,
29723
+0x74,0x61,0x05,0x54,0x68,0x65,0x74,0x61,0x04,0x49,0x6f,0x74,
29724
+0x61,0x05,0x4b,0x61,0x70,0x70,0x61,0x06,0x4c,0x61,0x6d,0x62,
29725
+0x64,0x61,0x02,0x4d,0x75,0x02,0x4e,0x75,0x02,0x58,0x69,0x07,
29726
+0x4f,0x6d,0x69,0x63,0x72,0x6f,0x6e,0x02,0x50,0x69,0x03,0x52,
29727
+0x68,0x6f,0x05,0x53,0x69,0x67,0x6d,0x61,0x03,0x54,0x61,0x75,
29728
+0x07,0x55,0x70,0x73,0x69,0x6c,0x6f,0x6e,0x03,0x50,0x68,0x69,
29729
+0x03,0x43,0x68,0x69,0x03,0x50,0x73,0x69,0x0c,0x49,0x6f,0x74,
29730
+0x61,0x64,0x69,0x65,0x72,0x65,0x73,0x69,0x73,0x0f,0x55,0x70,
29731
+0x73,0x69,0x6c,0x6f,0x6e,0x64,0x69,0x65,0x72,0x65,0x73,0x69,
29732
+0x73,0x0a,0x61,0x6c,0x70,0x68,0x61,0x74,0x6f,0x6e,0x6f,0x73,
29733
+0x0c,0x65,0x70,0x73,0x69,0x6c,0x6f,0x6e,0x74,0x6f,0x6e,0x6f,
29734
+0x73,0x08,0x65,0x74,0x61,0x74,0x6f,0x6e,0x6f,0x73,0x09,0x69,
29735
+0x6f,0x74,0x61,0x74,0x6f,0x6e,0x6f,0x73,0x14,0x75,0x70,0x73,
29736
+0x69,0x6c,0x6f,0x6e,0x64,0x69,0x65,0x72,0x65,0x73,0x69,0x73,
29737
+0x74,0x6f,0x6e,0x6f,0x73,0x05,0x61,0x6c,0x70,0x68,0x61,0x04,
29738
+0x62,0x65,0x74,0x61,0x05,0x67,0x61,0x6d,0x6d,0x61,0x05,0x64,
29739
+0x65,0x6c,0x74,0x61,0x07,0x65,0x70,0x73,0x69,0x6c,0x6f,0x6e,
29740
+0x04,0x7a,0x65,0x74,0x61,0x03,0x65,0x74,0x61,0x05,0x74,0x68,
29741
+0x65,0x74,0x61,0x04,0x69,0x6f,0x74,0x61,0x05,0x6b,0x61,0x70,
29742
+0x70,0x61,0x06,0x6c,0x61,0x6d,0x62,0x64,0x61,0x07,0x75,0x6e,
29743
+0x69,0x30,0x33,0x42,0x43,0x02,0x6e,0x75,0x02,0x78,0x69,0x07,
29744
+0x6f,0x6d,0x69,0x63,0x72,0x6f,0x6e,0x03,0x72,0x68,0x6f,0x06,
29745
+0x73,0x69,0x67,0x6d,0x61,0x31,0x05,0x73,0x69,0x67,0x6d,0x61,
29746
+0x03,0x74,0x61,0x75,0x07,0x75,0x70,0x73,0x69,0x6c,0x6f,0x6e,
29747
+0x03,0x70,0x68,0x69,0x03,0x63,0x68,0x69,0x03,0x70,0x73,0x69,
29748
+0x05,0x6f,0x6d,0x65,0x67,0x61,0x0c,0x69,0x6f,0x74,0x61,0x64,
29749
+0x69,0x65,0x72,0x65,0x73,0x69,0x73,0x0f,0x75,0x70,0x73,0x69,
29750
+0x6c,0x6f,0x6e,0x64,0x69,0x65,0x72,0x65,0x73,0x69,0x73,0x0c,
29751
+0x6f,0x6d,0x69,0x63,0x72,0x6f,0x6e,0x74,0x6f,0x6e,0x6f,0x73,
29752
+0x0c,0x75,0x70,0x73,0x69,0x6c,0x6f,0x6e,0x74,0x6f,0x6e,0x6f,
29753
+0x73,0x0a,0x6f,0x6d,0x65,0x67,0x61,0x74,0x6f,0x6e,0x6f,0x73,
29754
+0x07,0x75,0x6e,0x69,0x30,0x33,0x43,0x46,0x07,0x75,0x6e,0x69,
29755
+0x30,0x33,0x44,0x30,0x06,0x74,0x68,0x65,0x74,0x61,0x31,0x08,
29756
+0x55,0x70,0x73,0x69,0x6c,0x6f,0x6e,0x31,0x07,0x75,0x6e,0x69,
29757
+0x30,0x33,0x44,0x33,0x07,0x75,0x6e,0x69,0x30,0x33,0x44,0x34,
29758
+0x04,0x70,0x68,0x69,0x31,0x06,0x6f,0x6d,0x65,0x67,0x61,0x31,
29759
+0x07,0x75,0x6e,0x69,0x30,0x33,0x44,0x37,0x07,0x75,0x6e,0x69,
29760
+0x30,0x33,0x44,0x38,0x07,0x75,0x6e,0x69,0x30,0x33,0x44,0x39,
29761
+0x07,0x75,0x6e,0x69,0x30,0x33,0x44,0x41,0x07,0x75,0x6e,0x69,
29762
+0x30,0x33,0x44,0x42,0x07,0x75,0x6e,0x69,0x30,0x33,0x44,0x43,
29763
+0x07,0x75,0x6e,0x69,0x30,0x33,0x44,0x44,0x07,0x75,0x6e,0x69,
29764
+0x30,0x33,0x44,0x45,0x07,0x75,0x6e,0x69,0x30,0x33,0x44,0x46,
29765
+0x07,0x75,0x6e,0x69,0x30,0x33,0x45,0x30,0x07,0x75,0x6e,0x69,
29766
+0x30,0x33,0x45,0x31,0x07,0x75,0x6e,0x69,0x30,0x33,0x46,0x30,
29767
+0x07,0x75,0x6e,0x69,0x30,0x33,0x46,0x31,0x07,0x75,0x6e,0x69,
29768
+0x30,0x33,0x46,0x32,0x07,0x75,0x6e,0x69,0x30,0x33,0x46,0x33,
29769
+0x07,0x75,0x6e,0x69,0x30,0x33,0x46,0x34,0x07,0x75,0x6e,0x69,
29770
+0x30,0x33,0x46,0x35,0x07,0x75,0x6e,0x69,0x30,0x33,0x46,0x36,
29771
+0x07,0x75,0x6e,0x69,0x30,0x33,0x46,0x37,0x07,0x75,0x6e,0x69,
29772
+0x30,0x33,0x46,0x38,0x07,0x75,0x6e,0x69,0x30,0x33,0x46,0x39,
29773
+0x07,0x75,0x6e,0x69,0x30,0x33,0x46,0x41,0x07,0x75,0x6e,0x69,
29774
+0x30,0x33,0x46,0x42,0x07,0x75,0x6e,0x69,0x30,0x33,0x46,0x43,
29775
+0x07,0x75,0x6e,0x69,0x30,0x33,0x46,0x44,0x07,0x75,0x6e,0x69,
29776
+0x30,0x33,0x46,0x45,0x07,0x75,0x6e,0x69,0x30,0x33,0x46,0x46,
29777
+0x07,0x75,0x6e,0x69,0x30,0x34,0x30,0x30,0x07,0x75,0x6e,0x69,
29778
+0x30,0x34,0x30,0x31,0x07,0x75,0x6e,0x69,0x30,0x34,0x30,0x32,
29779
+0x07,0x75,0x6e,0x69,0x30,0x34,0x30,0x33,0x07,0x75,0x6e,0x69,
29780
+0x30,0x34,0x30,0x34,0x07,0x75,0x6e,0x69,0x30,0x34,0x30,0x35,
29781
+0x07,0x75,0x6e,0x69,0x30,0x34,0x30,0x36,0x07,0x75,0x6e,0x69,
29782
+0x30,0x34,0x30,0x37,0x07,0x75,0x6e,0x69,0x30,0x34,0x30,0x38,
29783
+0x07,0x75,0x6e,0x69,0x30,0x34,0x30,0x39,0x07,0x75,0x6e,0x69,
29784
+0x30,0x34,0x30,0x41,0x07,0x75,0x6e,0x69,0x30,0x34,0x30,0x42,
29785
+0x07,0x75,0x6e,0x69,0x30,0x34,0x30,0x43,0x07,0x75,0x6e,0x69,
29786
+0x30,0x34,0x30,0x44,0x07,0x75,0x6e,0x69,0x30,0x34,0x30,0x45,
29787
+0x07,0x75,0x6e,0x69,0x30,0x34,0x30,0x46,0x07,0x75,0x6e,0x69,
29788
+0x30,0x34,0x31,0x30,0x07,0x75,0x6e,0x69,0x30,0x34,0x31,0x31,
29789
+0x07,0x75,0x6e,0x69,0x30,0x34,0x31,0x32,0x07,0x75,0x6e,0x69,
29790
+0x30,0x34,0x31,0x33,0x07,0x75,0x6e,0x69,0x30,0x34,0x31,0x34,
29791
+0x07,0x75,0x6e,0x69,0x30,0x34,0x31,0x35,0x07,0x75,0x6e,0x69,
29792
+0x30,0x34,0x31,0x36,0x07,0x75,0x6e,0x69,0x30,0x34,0x31,0x37,
29793
+0x07,0x75,0x6e,0x69,0x30,0x34,0x31,0x38,0x07,0x75,0x6e,0x69,
29794
+0x30,0x34,0x31,0x39,0x07,0x75,0x6e,0x69,0x30,0x34,0x31,0x41,
29795
+0x07,0x75,0x6e,0x69,0x30,0x34,0x31,0x42,0x07,0x75,0x6e,0x69,
29796
+0x30,0x34,0x31,0x43,0x07,0x75,0x6e,0x69,0x30,0x34,0x31,0x44,
29797
+0x07,0x75,0x6e,0x69,0x30,0x34,0x31,0x45,0x07,0x75,0x6e,0x69,
29798
+0x30,0x34,0x31,0x46,0x07,0x75,0x6e,0x69,0x30,0x34,0x32,0x30,
29799
+0x07,0x75,0x6e,0x69,0x30,0x34,0x32,0x31,0x07,0x75,0x6e,0x69,
29800
+0x30,0x34,0x32,0x32,0x07,0x75,0x6e,0x69,0x30,0x34,0x32,0x33,
29801
+0x07,0x75,0x6e,0x69,0x30,0x34,0x32,0x34,0x07,0x75,0x6e,0x69,
29802
+0x30,0x34,0x32,0x35,0x07,0x75,0x6e,0x69,0x30,0x34,0x32,0x36,
29803
+0x07,0x75,0x6e,0x69,0x30,0x34,0x32,0x37,0x07,0x75,0x6e,0x69,
29804
+0x30,0x34,0x32,0x38,0x07,0x75,0x6e,0x69,0x30,0x34,0x32,0x39,
29805
+0x07,0x75,0x6e,0x69,0x30,0x34,0x32,0x41,0x07,0x75,0x6e,0x69,
29806
+0x30,0x34,0x32,0x42,0x07,0x75,0x6e,0x69,0x30,0x34,0x32,0x43,
29807
+0x07,0x75,0x6e,0x69,0x30,0x34,0x32,0x44,0x07,0x75,0x6e,0x69,
29808
+0x30,0x34,0x32,0x45,0x07,0x75,0x6e,0x69,0x30,0x34,0x32,0x46,
29809
+0x07,0x75,0x6e,0x69,0x30,0x34,0x33,0x30,0x07,0x75,0x6e,0x69,
29810
+0x30,0x34,0x33,0x31,0x07,0x75,0x6e,0x69,0x30,0x34,0x33,0x32,
29811
+0x07,0x75,0x6e,0x69,0x30,0x34,0x33,0x33,0x07,0x75,0x6e,0x69,
29812
+0x30,0x34,0x33,0x34,0x07,0x75,0x6e,0x69,0x30,0x34,0x33,0x35,
29813
+0x07,0x75,0x6e,0x69,0x30,0x34,0x33,0x36,0x07,0x75,0x6e,0x69,
29814
+0x30,0x34,0x33,0x37,0x07,0x75,0x6e,0x69,0x30,0x34,0x33,0x38,
29815
+0x07,0x75,0x6e,0x69,0x30,0x34,0x33,0x39,0x07,0x75,0x6e,0x69,
29816
+0x30,0x34,0x33,0x41,0x07,0x75,0x6e,0x69,0x30,0x34,0x33,0x42,
29817
+0x07,0x75,0x6e,0x69,0x30,0x34,0x33,0x43,0x07,0x75,0x6e,0x69,
29818
+0x30,0x34,0x33,0x44,0x07,0x75,0x6e,0x69,0x30,0x34,0x33,0x45,
29819
+0x07,0x75,0x6e,0x69,0x30,0x34,0x33,0x46,0x07,0x75,0x6e,0x69,
29820
+0x30,0x34,0x34,0x30,0x07,0x75,0x6e,0x69,0x30,0x34,0x34,0x31,
29821
+0x07,0x75,0x6e,0x69,0x30,0x34,0x34,0x32,0x07,0x75,0x6e,0x69,
29822
+0x30,0x34,0x34,0x33,0x07,0x75,0x6e,0x69,0x30,0x34,0x34,0x34,
29823
+0x07,0x75,0x6e,0x69,0x30,0x34,0x34,0x35,0x07,0x75,0x6e,0x69,
29824
+0x30,0x34,0x34,0x36,0x07,0x75,0x6e,0x69,0x30,0x34,0x34,0x37,
29825
+0x07,0x75,0x6e,0x69,0x30,0x34,0x34,0x38,0x07,0x75,0x6e,0x69,
29826
+0x30,0x34,0x34,0x39,0x07,0x75,0x6e,0x69,0x30,0x34,0x34,0x41,
29827
+0x07,0x75,0x6e,0x69,0x30,0x34,0x34,0x42,0x07,0x75,0x6e,0x69,
29828
+0x30,0x34,0x34,0x43,0x07,0x75,0x6e,0x69,0x30,0x34,0x34,0x44,
29829
+0x07,0x75,0x6e,0x69,0x30,0x34,0x34,0x45,0x07,0x75,0x6e,0x69,
29830
+0x30,0x34,0x34,0x46,0x07,0x75,0x6e,0x69,0x30,0x34,0x35,0x30,
29831
+0x07,0x75,0x6e,0x69,0x30,0x34,0x35,0x31,0x07,0x75,0x6e,0x69,
29832
+0x30,0x34,0x35,0x32,0x07,0x75,0x6e,0x69,0x30,0x34,0x35,0x33,
29833
+0x07,0x75,0x6e,0x69,0x30,0x34,0x35,0x34,0x07,0x75,0x6e,0x69,
29834
+0x30,0x34,0x35,0x35,0x07,0x75,0x6e,0x69,0x30,0x34,0x35,0x36,
29835
+0x07,0x75,0x6e,0x69,0x30,0x34,0x35,0x37,0x07,0x75,0x6e,0x69,
29836
+0x30,0x34,0x35,0x38,0x07,0x75,0x6e,0x69,0x30,0x34,0x35,0x39,
29837
+0x07,0x75,0x6e,0x69,0x30,0x34,0x35,0x41,0x07,0x75,0x6e,0x69,
29838
+0x30,0x34,0x35,0x42,0x07,0x75,0x6e,0x69,0x30,0x34,0x35,0x43,
29839
+0x07,0x75,0x6e,0x69,0x30,0x34,0x35,0x44,0x07,0x75,0x6e,0x69,
29840
+0x30,0x34,0x35,0x45,0x07,0x75,0x6e,0x69,0x30,0x34,0x35,0x46,
29841
+0x07,0x75,0x6e,0x69,0x30,0x34,0x36,0x32,0x07,0x75,0x6e,0x69,
29842
+0x30,0x34,0x36,0x33,0x07,0x75,0x6e,0x69,0x30,0x34,0x36,0x34,
29843
+0x07,0x75,0x6e,0x69,0x30,0x34,0x36,0x35,0x07,0x75,0x6e,0x69,
29844
+0x30,0x34,0x36,0x41,0x07,0x75,0x6e,0x69,0x30,0x34,0x36,0x42,
29845
+0x07,0x75,0x6e,0x69,0x30,0x34,0x36,0x43,0x07,0x75,0x6e,0x69,
29846
+0x30,0x34,0x36,0x44,0x07,0x75,0x6e,0x69,0x30,0x34,0x37,0x30,
29847
+0x07,0x75,0x6e,0x69,0x30,0x34,0x37,0x31,0x07,0x75,0x6e,0x69,
29848
+0x30,0x34,0x37,0x32,0x07,0x75,0x6e,0x69,0x30,0x34,0x37,0x33,
29849
+0x07,0x75,0x6e,0x69,0x30,0x34,0x37,0x34,0x07,0x75,0x6e,0x69,
29850
+0x30,0x34,0x37,0x35,0x07,0x75,0x6e,0x69,0x30,0x34,0x37,0x36,
29851
+0x07,0x75,0x6e,0x69,0x30,0x34,0x37,0x37,0x07,0x75,0x6e,0x69,
29852
+0x30,0x34,0x38,0x43,0x07,0x75,0x6e,0x69,0x30,0x34,0x38,0x44,
29853
+0x07,0x75,0x6e,0x69,0x30,0x34,0x39,0x30,0x07,0x75,0x6e,0x69,
29854
+0x30,0x34,0x39,0x31,0x07,0x75,0x6e,0x69,0x30,0x34,0x39,0x32,
29855
+0x07,0x75,0x6e,0x69,0x30,0x34,0x39,0x33,0x07,0x75,0x6e,0x69,
29856
+0x30,0x34,0x39,0x34,0x07,0x75,0x6e,0x69,0x30,0x34,0x39,0x35,
29857
+0x07,0x75,0x6e,0x69,0x30,0x34,0x39,0x36,0x07,0x75,0x6e,0x69,
29858
+0x30,0x34,0x39,0x37,0x07,0x75,0x6e,0x69,0x30,0x34,0x39,0x38,
29859
+0x07,0x75,0x6e,0x69,0x30,0x34,0x39,0x39,0x07,0x75,0x6e,0x69,
29860
+0x30,0x34,0x39,0x41,0x07,0x75,0x6e,0x69,0x30,0x34,0x39,0x42,
29861
+0x07,0x75,0x6e,0x69,0x30,0x34,0x39,0x45,0x07,0x75,0x6e,0x69,
29862
+0x30,0x34,0x39,0x46,0x07,0x75,0x6e,0x69,0x30,0x34,0x41,0x30,
29863
+0x07,0x75,0x6e,0x69,0x30,0x34,0x41,0x31,0x07,0x75,0x6e,0x69,
29864
+0x30,0x34,0x41,0x32,0x07,0x75,0x6e,0x69,0x30,0x34,0x41,0x33,
29865
+0x07,0x75,0x6e,0x69,0x30,0x34,0x41,0x34,0x07,0x75,0x6e,0x69,
29866
+0x30,0x34,0x41,0x35,0x07,0x75,0x6e,0x69,0x30,0x34,0x41,0x36,
29867
+0x07,0x75,0x6e,0x69,0x30,0x34,0x41,0x37,0x07,0x75,0x6e,0x69,
29868
+0x30,0x34,0x41,0x41,0x07,0x75,0x6e,0x69,0x30,0x34,0x41,0x42,
29869
+0x07,0x75,0x6e,0x69,0x30,0x34,0x41,0x43,0x07,0x75,0x6e,0x69,
29870
+0x30,0x34,0x41,0x44,0x07,0x75,0x6e,0x69,0x30,0x34,0x41,0x45,
29871
+0x07,0x75,0x6e,0x69,0x30,0x34,0x41,0x46,0x07,0x75,0x6e,0x69,
29872
+0x30,0x34,0x42,0x30,0x07,0x75,0x6e,0x69,0x30,0x34,0x42,0x31,
29873
+0x07,0x75,0x6e,0x69,0x30,0x34,0x42,0x32,0x07,0x75,0x6e,0x69,
29874
+0x30,0x34,0x42,0x33,0x07,0x75,0x6e,0x69,0x30,0x34,0x42,0x34,
29875
+0x07,0x75,0x6e,0x69,0x30,0x34,0x42,0x35,0x07,0x75,0x6e,0x69,
29876
+0x30,0x34,0x42,0x36,0x07,0x75,0x6e,0x69,0x30,0x34,0x42,0x37,
29877
+0x07,0x75,0x6e,0x69,0x30,0x34,0x42,0x41,0x07,0x75,0x6e,0x69,
29878
+0x30,0x34,0x42,0x42,0x07,0x75,0x6e,0x69,0x30,0x34,0x43,0x30,
29879
+0x07,0x75,0x6e,0x69,0x30,0x34,0x43,0x31,0x07,0x75,0x6e,0x69,
29880
+0x30,0x34,0x43,0x32,0x07,0x75,0x6e,0x69,0x30,0x34,0x43,0x33,
29881
+0x07,0x75,0x6e,0x69,0x30,0x34,0x43,0x34,0x07,0x75,0x6e,0x69,
29882
+0x30,0x34,0x43,0x37,0x07,0x75,0x6e,0x69,0x30,0x34,0x43,0x38,
29883
+0x07,0x75,0x6e,0x69,0x30,0x34,0x43,0x42,0x07,0x75,0x6e,0x69,
29884
+0x30,0x34,0x43,0x43,0x07,0x75,0x6e,0x69,0x30,0x34,0x43,0x46,
29885
+0x07,0x75,0x6e,0x69,0x30,0x34,0x44,0x30,0x07,0x75,0x6e,0x69,
29886
+0x30,0x34,0x44,0x31,0x07,0x75,0x6e,0x69,0x30,0x34,0x44,0x32,
29887
+0x07,0x75,0x6e,0x69,0x30,0x34,0x44,0x33,0x07,0x75,0x6e,0x69,
29888
+0x30,0x34,0x44,0x34,0x07,0x75,0x6e,0x69,0x30,0x34,0x44,0x35,
29889
+0x07,0x75,0x6e,0x69,0x30,0x34,0x44,0x36,0x07,0x75,0x6e,0x69,
29890
+0x30,0x34,0x44,0x37,0x07,0x75,0x6e,0x69,0x30,0x34,0x44,0x38,
29891
+0x07,0x75,0x6e,0x69,0x30,0x34,0x44,0x39,0x07,0x75,0x6e,0x69,
29892
+0x30,0x34,0x44,0x41,0x07,0x75,0x6e,0x69,0x30,0x34,0x44,0x42,
29893
+0x07,0x75,0x6e,0x69,0x30,0x34,0x44,0x43,0x07,0x75,0x6e,0x69,
29894
+0x30,0x34,0x44,0x44,0x07,0x75,0x6e,0x69,0x30,0x34,0x44,0x45,
29895
+0x07,0x75,0x6e,0x69,0x30,0x34,0x44,0x46,0x07,0x75,0x6e,0x69,
29896
+0x30,0x34,0x45,0x30,0x07,0x75,0x6e,0x69,0x30,0x34,0x45,0x31,
29897
+0x07,0x75,0x6e,0x69,0x30,0x34,0x45,0x32,0x07,0x75,0x6e,0x69,
29898
+0x30,0x34,0x45,0x33,0x07,0x75,0x6e,0x69,0x30,0x34,0x45,0x34,
29899
+0x07,0x75,0x6e,0x69,0x30,0x34,0x45,0x35,0x07,0x75,0x6e,0x69,
29900
+0x30,0x34,0x45,0x36,0x07,0x75,0x6e,0x69,0x30,0x34,0x45,0x37,
29901
+0x07,0x75,0x6e,0x69,0x30,0x34,0x45,0x38,0x07,0x75,0x6e,0x69,
29902
+0x30,0x34,0x45,0x39,0x07,0x75,0x6e,0x69,0x30,0x34,0x45,0x41,
29903
+0x07,0x75,0x6e,0x69,0x30,0x34,0x45,0x42,0x07,0x75,0x6e,0x69,
29904
+0x30,0x34,0x45,0x43,0x07,0x75,0x6e,0x69,0x30,0x34,0x45,0x44,
29905
+0x07,0x75,0x6e,0x69,0x30,0x34,0x45,0x45,0x07,0x75,0x6e,0x69,
29906
+0x30,0x34,0x45,0x46,0x07,0x75,0x6e,0x69,0x30,0x34,0x46,0x30,
29907
+0x07,0x75,0x6e,0x69,0x30,0x34,0x46,0x31,0x07,0x75,0x6e,0x69,
29908
+0x30,0x34,0x46,0x32,0x07,0x75,0x6e,0x69,0x30,0x34,0x46,0x33,
29909
+0x07,0x75,0x6e,0x69,0x30,0x34,0x46,0x34,0x07,0x75,0x6e,0x69,
29910
+0x30,0x34,0x46,0x35,0x07,0x75,0x6e,0x69,0x30,0x34,0x46,0x36,
29911
+0x07,0x75,0x6e,0x69,0x30,0x34,0x46,0x37,0x07,0x75,0x6e,0x69,
29912
+0x30,0x34,0x46,0x38,0x07,0x75,0x6e,0x69,0x30,0x34,0x46,0x39,
29913
+0x07,0x75,0x6e,0x69,0x30,0x35,0x31,0x30,0x07,0x75,0x6e,0x69,
29914
+0x30,0x35,0x31,0x31,0x07,0x75,0x6e,0x69,0x30,0x35,0x31,0x32,
29915
+0x07,0x75,0x6e,0x69,0x30,0x35,0x31,0x33,0x07,0x75,0x6e,0x69,
29916
+0x30,0x35,0x31,0x34,0x07,0x75,0x6e,0x69,0x30,0x35,0x31,0x35,
29917
+0x07,0x75,0x6e,0x69,0x30,0x35,0x31,0x41,0x07,0x75,0x6e,0x69,
29918
+0x30,0x35,0x31,0x42,0x07,0x75,0x6e,0x69,0x30,0x35,0x31,0x43,
29919
+0x07,0x75,0x6e,0x69,0x30,0x35,0x31,0x44,0x07,0x75,0x6e,0x69,
29920
+0x30,0x35,0x33,0x31,0x07,0x75,0x6e,0x69,0x30,0x35,0x33,0x32,
29921
+0x07,0x75,0x6e,0x69,0x30,0x35,0x33,0x33,0x07,0x75,0x6e,0x69,
29922
+0x30,0x35,0x33,0x34,0x07,0x75,0x6e,0x69,0x30,0x35,0x33,0x35,
29923
+0x07,0x75,0x6e,0x69,0x30,0x35,0x33,0x36,0x07,0x75,0x6e,0x69,
29924
+0x30,0x35,0x33,0x37,0x07,0x75,0x6e,0x69,0x30,0x35,0x33,0x38,
29925
+0x07,0x75,0x6e,0x69,0x30,0x35,0x33,0x39,0x07,0x75,0x6e,0x69,
29926
+0x30,0x35,0x33,0x41,0x07,0x75,0x6e,0x69,0x30,0x35,0x33,0x42,
29927
+0x07,0x75,0x6e,0x69,0x30,0x35,0x33,0x43,0x07,0x75,0x6e,0x69,
29928
+0x30,0x35,0x33,0x44,0x07,0x75,0x6e,0x69,0x30,0x35,0x33,0x45,
29929
+0x07,0x75,0x6e,0x69,0x30,0x35,0x33,0x46,0x07,0x75,0x6e,0x69,
29930
+0x30,0x35,0x34,0x30,0x07,0x75,0x6e,0x69,0x30,0x35,0x34,0x31,
29931
+0x07,0x75,0x6e,0x69,0x30,0x35,0x34,0x32,0x07,0x75,0x6e,0x69,
29932
+0x30,0x35,0x34,0x33,0x07,0x75,0x6e,0x69,0x30,0x35,0x34,0x34,
29933
+0x07,0x75,0x6e,0x69,0x30,0x35,0x34,0x35,0x07,0x75,0x6e,0x69,
29934
+0x30,0x35,0x34,0x36,0x07,0x75,0x6e,0x69,0x30,0x35,0x34,0x37,
29935
+0x07,0x75,0x6e,0x69,0x30,0x35,0x34,0x38,0x07,0x75,0x6e,0x69,
29936
+0x30,0x35,0x34,0x39,0x07,0x75,0x6e,0x69,0x30,0x35,0x34,0x41,
29937
+0x07,0x75,0x6e,0x69,0x30,0x35,0x34,0x42,0x07,0x75,0x6e,0x69,
29938
+0x30,0x35,0x34,0x43,0x07,0x75,0x6e,0x69,0x30,0x35,0x34,0x44,
29939
+0x07,0x75,0x6e,0x69,0x30,0x35,0x34,0x45,0x07,0x75,0x6e,0x69,
29940
+0x30,0x35,0x34,0x46,0x07,0x75,0x6e,0x69,0x30,0x35,0x35,0x30,
29941
+0x07,0x75,0x6e,0x69,0x30,0x35,0x35,0x31,0x07,0x75,0x6e,0x69,
29942
+0x30,0x35,0x35,0x32,0x07,0x75,0x6e,0x69,0x30,0x35,0x35,0x33,
29943
+0x07,0x75,0x6e,0x69,0x30,0x35,0x35,0x34,0x07,0x75,0x6e,0x69,
29944
+0x30,0x35,0x35,0x35,0x07,0x75,0x6e,0x69,0x30,0x35,0x35,0x36,
29945
+0x07,0x75,0x6e,0x69,0x30,0x35,0x35,0x39,0x07,0x75,0x6e,0x69,
29946
+0x30,0x35,0x35,0x41,0x07,0x75,0x6e,0x69,0x30,0x35,0x35,0x42,
29947
+0x07,0x75,0x6e,0x69,0x30,0x35,0x35,0x43,0x07,0x75,0x6e,0x69,
29948
+0x30,0x35,0x35,0x44,0x07,0x75,0x6e,0x69,0x30,0x35,0x35,0x45,
29949
+0x07,0x75,0x6e,0x69,0x30,0x35,0x35,0x46,0x07,0x75,0x6e,0x69,
29950
+0x30,0x35,0x36,0x31,0x07,0x75,0x6e,0x69,0x30,0x35,0x36,0x32,
29951
+0x07,0x75,0x6e,0x69,0x30,0x35,0x36,0x33,0x07,0x75,0x6e,0x69,
29952
+0x30,0x35,0x36,0x34,0x07,0x75,0x6e,0x69,0x30,0x35,0x36,0x35,
29953
+0x07,0x75,0x6e,0x69,0x30,0x35,0x36,0x36,0x07,0x75,0x6e,0x69,
29954
+0x30,0x35,0x36,0x37,0x07,0x75,0x6e,0x69,0x30,0x35,0x36,0x38,
29955
+0x07,0x75,0x6e,0x69,0x30,0x35,0x36,0x39,0x07,0x75,0x6e,0x69,
29956
+0x30,0x35,0x36,0x41,0x07,0x75,0x6e,0x69,0x30,0x35,0x36,0x42,
29957
+0x07,0x75,0x6e,0x69,0x30,0x35,0x36,0x43,0x07,0x75,0x6e,0x69,
29958
+0x30,0x35,0x36,0x44,0x07,0x75,0x6e,0x69,0x30,0x35,0x36,0x45,
29959
+0x07,0x75,0x6e,0x69,0x30,0x35,0x36,0x46,0x07,0x75,0x6e,0x69,
29960
+0x30,0x35,0x37,0x30,0x07,0x75,0x6e,0x69,0x30,0x35,0x37,0x31,
29961
+0x07,0x75,0x6e,0x69,0x30,0x35,0x37,0x32,0x07,0x75,0x6e,0x69,
29962
+0x30,0x35,0x37,0x33,0x07,0x75,0x6e,0x69,0x30,0x35,0x37,0x34,
29963
+0x07,0x75,0x6e,0x69,0x30,0x35,0x37,0x35,0x07,0x75,0x6e,0x69,
29964
+0x30,0x35,0x37,0x36,0x07,0x75,0x6e,0x69,0x30,0x35,0x37,0x37,
29965
+0x07,0x75,0x6e,0x69,0x30,0x35,0x37,0x38,0x07,0x75,0x6e,0x69,
29966
+0x30,0x35,0x37,0x39,0x07,0x75,0x6e,0x69,0x30,0x35,0x37,0x41,
29967
+0x07,0x75,0x6e,0x69,0x30,0x35,0x37,0x42,0x07,0x75,0x6e,0x69,
29968
+0x30,0x35,0x37,0x43,0x07,0x75,0x6e,0x69,0x30,0x35,0x37,0x44,
29969
+0x07,0x75,0x6e,0x69,0x30,0x35,0x37,0x45,0x07,0x75,0x6e,0x69,
29970
+0x30,0x35,0x37,0x46,0x07,0x75,0x6e,0x69,0x30,0x35,0x38,0x30,
29971
+0x07,0x75,0x6e,0x69,0x30,0x35,0x38,0x31,0x07,0x75,0x6e,0x69,
29972
+0x30,0x35,0x38,0x32,0x07,0x75,0x6e,0x69,0x30,0x35,0x38,0x33,
29973
+0x07,0x75,0x6e,0x69,0x30,0x35,0x38,0x34,0x07,0x75,0x6e,0x69,
29974
+0x30,0x35,0x38,0x35,0x07,0x75,0x6e,0x69,0x30,0x35,0x38,0x36,
29975
+0x07,0x75,0x6e,0x69,0x30,0x35,0x38,0x37,0x07,0x75,0x6e,0x69,
29976
+0x30,0x35,0x38,0x39,0x07,0x75,0x6e,0x69,0x30,0x35,0x38,0x41,
29977
+0x07,0x75,0x6e,0x69,0x30,0x45,0x33,0x46,0x07,0x75,0x6e,0x69,
29978
+0x31,0x30,0x41,0x30,0x07,0x75,0x6e,0x69,0x31,0x30,0x41,0x31,
29979
+0x07,0x75,0x6e,0x69,0x31,0x30,0x41,0x32,0x07,0x75,0x6e,0x69,
29980
+0x31,0x30,0x41,0x33,0x07,0x75,0x6e,0x69,0x31,0x30,0x41,0x34,
29981
+0x07,0x75,0x6e,0x69,0x31,0x30,0x41,0x35,0x07,0x75,0x6e,0x69,
29982
+0x31,0x30,0x41,0x36,0x07,0x75,0x6e,0x69,0x31,0x30,0x41,0x37,
29983
+0x07,0x75,0x6e,0x69,0x31,0x30,0x41,0x38,0x07,0x75,0x6e,0x69,
29984
+0x31,0x30,0x41,0x39,0x07,0x75,0x6e,0x69,0x31,0x30,0x41,0x41,
29985
+0x07,0x75,0x6e,0x69,0x31,0x30,0x41,0x42,0x07,0x75,0x6e,0x69,
29986
+0x31,0x30,0x41,0x43,0x07,0x75,0x6e,0x69,0x31,0x30,0x41,0x44,
29987
+0x07,0x75,0x6e,0x69,0x31,0x30,0x41,0x45,0x07,0x75,0x6e,0x69,
29988
+0x31,0x30,0x41,0x46,0x07,0x75,0x6e,0x69,0x31,0x30,0x42,0x30,
29989
+0x07,0x75,0x6e,0x69,0x31,0x30,0x42,0x31,0x07,0x75,0x6e,0x69,
29990
+0x31,0x30,0x42,0x32,0x07,0x75,0x6e,0x69,0x31,0x30,0x42,0x33,
29991
+0x07,0x75,0x6e,0x69,0x31,0x30,0x42,0x34,0x07,0x75,0x6e,0x69,
29992
+0x31,0x30,0x42,0x35,0x07,0x75,0x6e,0x69,0x31,0x30,0x42,0x36,
29993
+0x07,0x75,0x6e,0x69,0x31,0x30,0x42,0x37,0x07,0x75,0x6e,0x69,
29994
+0x31,0x30,0x42,0x38,0x07,0x75,0x6e,0x69,0x31,0x30,0x42,0x39,
29995
+0x07,0x75,0x6e,0x69,0x31,0x30,0x42,0x41,0x07,0x75,0x6e,0x69,
29996
+0x31,0x30,0x42,0x42,0x07,0x75,0x6e,0x69,0x31,0x30,0x42,0x43,
29997
+0x07,0x75,0x6e,0x69,0x31,0x30,0x42,0x44,0x07,0x75,0x6e,0x69,
29998
+0x31,0x30,0x42,0x45,0x07,0x75,0x6e,0x69,0x31,0x30,0x42,0x46,
29999
+0x07,0x75,0x6e,0x69,0x31,0x30,0x43,0x30,0x07,0x75,0x6e,0x69,
30000
+0x31,0x30,0x43,0x31,0x07,0x75,0x6e,0x69,0x31,0x30,0x43,0x32,
30001
+0x07,0x75,0x6e,0x69,0x31,0x30,0x43,0x33,0x07,0x75,0x6e,0x69,
30002
+0x31,0x30,0x43,0x34,0x07,0x75,0x6e,0x69,0x31,0x30,0x43,0x35,
30003
+0x07,0x75,0x6e,0x69,0x31,0x30,0x44,0x30,0x07,0x75,0x6e,0x69,
30004
+0x31,0x30,0x44,0x31,0x07,0x75,0x6e,0x69,0x31,0x30,0x44,0x32,
30005
+0x07,0x75,0x6e,0x69,0x31,0x30,0x44,0x33,0x07,0x75,0x6e,0x69,
30006
+0x31,0x30,0x44,0x34,0x07,0x75,0x6e,0x69,0x31,0x30,0x44,0x35,
30007
+0x07,0x75,0x6e,0x69,0x31,0x30,0x44,0x36,0x07,0x75,0x6e,0x69,
30008
+0x31,0x30,0x44,0x37,0x07,0x75,0x6e,0x69,0x31,0x30,0x44,0x38,
30009
+0x07,0x75,0x6e,0x69,0x31,0x30,0x44,0x39,0x07,0x75,0x6e,0x69,
30010
+0x31,0x30,0x44,0x41,0x07,0x75,0x6e,0x69,0x31,0x30,0x44,0x42,
30011
+0x07,0x75,0x6e,0x69,0x31,0x30,0x44,0x43,0x07,0x75,0x6e,0x69,
30012
+0x31,0x30,0x44,0x44,0x07,0x75,0x6e,0x69,0x31,0x30,0x44,0x45,
30013
+0x07,0x75,0x6e,0x69,0x31,0x30,0x44,0x46,0x07,0x75,0x6e,0x69,
30014
+0x31,0x30,0x45,0x30,0x07,0x75,0x6e,0x69,0x31,0x30,0x45,0x31,
30015
+0x07,0x75,0x6e,0x69,0x31,0x30,0x45,0x32,0x07,0x75,0x6e,0x69,
30016
+0x31,0x30,0x45,0x33,0x07,0x75,0x6e,0x69,0x31,0x30,0x45,0x34,
30017
+0x07,0x75,0x6e,0x69,0x31,0x30,0x45,0x35,0x07,0x75,0x6e,0x69,
30018
+0x31,0x30,0x45,0x36,0x07,0x75,0x6e,0x69,0x31,0x30,0x45,0x37,
30019
+0x07,0x75,0x6e,0x69,0x31,0x30,0x45,0x38,0x07,0x75,0x6e,0x69,
30020
+0x31,0x30,0x45,0x39,0x07,0x75,0x6e,0x69,0x31,0x30,0x45,0x41,
30021
+0x07,0x75,0x6e,0x69,0x31,0x30,0x45,0x42,0x07,0x75,0x6e,0x69,
30022
+0x31,0x30,0x45,0x43,0x07,0x75,0x6e,0x69,0x31,0x30,0x45,0x44,
30023
+0x07,0x75,0x6e,0x69,0x31,0x30,0x45,0x45,0x07,0x75,0x6e,0x69,
30024
+0x31,0x30,0x45,0x46,0x07,0x75,0x6e,0x69,0x31,0x30,0x46,0x30,
30025
+0x07,0x75,0x6e,0x69,0x31,0x30,0x46,0x31,0x07,0x75,0x6e,0x69,
30026
+0x31,0x30,0x46,0x32,0x07,0x75,0x6e,0x69,0x31,0x30,0x46,0x33,
30027
+0x07,0x75,0x6e,0x69,0x31,0x30,0x46,0x34,0x07,0x75,0x6e,0x69,
30028
+0x31,0x30,0x46,0x35,0x07,0x75,0x6e,0x69,0x31,0x30,0x46,0x36,
30029
+0x07,0x75,0x6e,0x69,0x31,0x30,0x46,0x37,0x07,0x75,0x6e,0x69,
30030
+0x31,0x30,0x46,0x38,0x07,0x75,0x6e,0x69,0x31,0x30,0x46,0x39,
30031
+0x07,0x75,0x6e,0x69,0x31,0x30,0x46,0x41,0x07,0x75,0x6e,0x69,
30032
+0x31,0x30,0x46,0x42,0x07,0x75,0x6e,0x69,0x31,0x30,0x46,0x43,
30033
+0x07,0x75,0x6e,0x69,0x31,0x44,0x30,0x30,0x07,0x75,0x6e,0x69,
30034
+0x31,0x44,0x30,0x31,0x07,0x75,0x6e,0x69,0x31,0x44,0x30,0x32,
30035
+0x07,0x75,0x6e,0x69,0x31,0x44,0x30,0x33,0x07,0x75,0x6e,0x69,
30036
+0x31,0x44,0x30,0x34,0x07,0x75,0x6e,0x69,0x31,0x44,0x30,0x35,
30037
+0x07,0x75,0x6e,0x69,0x31,0x44,0x30,0x36,0x07,0x75,0x6e,0x69,
30038
+0x31,0x44,0x30,0x37,0x07,0x75,0x6e,0x69,0x31,0x44,0x30,0x38,
30039
+0x07,0x75,0x6e,0x69,0x31,0x44,0x30,0x39,0x07,0x75,0x6e,0x69,
30040
+0x31,0x44,0x30,0x41,0x07,0x75,0x6e,0x69,0x31,0x44,0x30,0x42,
30041
+0x07,0x75,0x6e,0x69,0x31,0x44,0x30,0x43,0x07,0x75,0x6e,0x69,
30042
+0x31,0x44,0x30,0x44,0x07,0x75,0x6e,0x69,0x31,0x44,0x30,0x45,
30043
+0x07,0x75,0x6e,0x69,0x31,0x44,0x30,0x46,0x07,0x75,0x6e,0x69,
30044
+0x31,0x44,0x31,0x30,0x07,0x75,0x6e,0x69,0x31,0x44,0x31,0x31,
30045
+0x07,0x75,0x6e,0x69,0x31,0x44,0x31,0x32,0x07,0x75,0x6e,0x69,
30046
+0x31,0x44,0x31,0x33,0x07,0x75,0x6e,0x69,0x31,0x44,0x31,0x34,
30047
+0x07,0x75,0x6e,0x69,0x31,0x44,0x31,0x35,0x07,0x75,0x6e,0x69,
30048
+0x31,0x44,0x31,0x36,0x07,0x75,0x6e,0x69,0x31,0x44,0x31,0x37,
30049
+0x07,0x75,0x6e,0x69,0x31,0x44,0x31,0x38,0x07,0x75,0x6e,0x69,
30050
+0x31,0x44,0x31,0x39,0x07,0x75,0x6e,0x69,0x31,0x44,0x31,0x41,
30051
+0x07,0x75,0x6e,0x69,0x31,0x44,0x31,0x42,0x07,0x75,0x6e,0x69,
30052
+0x31,0x44,0x31,0x43,0x07,0x75,0x6e,0x69,0x31,0x44,0x31,0x44,
30053
+0x07,0x75,0x6e,0x69,0x31,0x44,0x31,0x45,0x07,0x75,0x6e,0x69,
30054
+0x31,0x44,0x31,0x46,0x07,0x75,0x6e,0x69,0x31,0x44,0x32,0x30,
30055
+0x07,0x75,0x6e,0x69,0x31,0x44,0x32,0x31,0x07,0x75,0x6e,0x69,
30056
+0x31,0x44,0x32,0x32,0x07,0x75,0x6e,0x69,0x31,0x44,0x32,0x33,
30057
+0x07,0x75,0x6e,0x69,0x31,0x44,0x32,0x34,0x07,0x75,0x6e,0x69,
30058
+0x31,0x44,0x32,0x35,0x07,0x75,0x6e,0x69,0x31,0x44,0x32,0x36,
30059
+0x07,0x75,0x6e,0x69,0x31,0x44,0x32,0x37,0x07,0x75,0x6e,0x69,
30060
+0x31,0x44,0x32,0x38,0x07,0x75,0x6e,0x69,0x31,0x44,0x32,0x39,
30061
+0x07,0x75,0x6e,0x69,0x31,0x44,0x32,0x41,0x07,0x75,0x6e,0x69,
30062
+0x31,0x44,0x32,0x42,0x07,0x75,0x6e,0x69,0x31,0x44,0x32,0x43,
30063
+0x07,0x75,0x6e,0x69,0x31,0x44,0x32,0x44,0x07,0x75,0x6e,0x69,
30064
+0x31,0x44,0x32,0x45,0x07,0x75,0x6e,0x69,0x31,0x44,0x32,0x46,
30065
+0x07,0x75,0x6e,0x69,0x31,0x44,0x33,0x30,0x07,0x75,0x6e,0x69,
30066
+0x31,0x44,0x33,0x31,0x07,0x75,0x6e,0x69,0x31,0x44,0x33,0x32,
30067
+0x07,0x75,0x6e,0x69,0x31,0x44,0x33,0x33,0x07,0x75,0x6e,0x69,
30068
+0x31,0x44,0x33,0x34,0x07,0x75,0x6e,0x69,0x31,0x44,0x33,0x35,
30069
+0x07,0x75,0x6e,0x69,0x31,0x44,0x33,0x36,0x07,0x75,0x6e,0x69,
30070
+0x31,0x44,0x33,0x37,0x07,0x75,0x6e,0x69,0x31,0x44,0x33,0x38,
30071
+0x07,0x75,0x6e,0x69,0x31,0x44,0x33,0x39,0x07,0x75,0x6e,0x69,
30072
+0x31,0x44,0x33,0x41,0x07,0x75,0x6e,0x69,0x31,0x44,0x33,0x42,
30073
+0x07,0x75,0x6e,0x69,0x31,0x44,0x33,0x43,0x07,0x75,0x6e,0x69,
30074
+0x31,0x44,0x33,0x44,0x07,0x75,0x6e,0x69,0x31,0x44,0x33,0x45,
30075
+0x07,0x75,0x6e,0x69,0x31,0x44,0x33,0x46,0x07,0x75,0x6e,0x69,
30076
+0x31,0x44,0x34,0x30,0x07,0x75,0x6e,0x69,0x31,0x44,0x34,0x31,
30077
+0x07,0x75,0x6e,0x69,0x31,0x44,0x34,0x32,0x07,0x75,0x6e,0x69,
30078
+0x31,0x44,0x34,0x33,0x07,0x75,0x6e,0x69,0x31,0x44,0x34,0x34,
30079
+0x07,0x75,0x6e,0x69,0x31,0x44,0x34,0x35,0x07,0x75,0x6e,0x69,
30080
+0x31,0x44,0x34,0x36,0x07,0x75,0x6e,0x69,0x31,0x44,0x34,0x37,
30081
+0x07,0x75,0x6e,0x69,0x31,0x44,0x34,0x38,0x07,0x75,0x6e,0x69,
30082
+0x31,0x44,0x34,0x39,0x07,0x75,0x6e,0x69,0x31,0x44,0x34,0x41,
30083
+0x07,0x75,0x6e,0x69,0x31,0x44,0x34,0x42,0x07,0x75,0x6e,0x69,
30084
+0x31,0x44,0x34,0x43,0x07,0x75,0x6e,0x69,0x31,0x44,0x34,0x44,
30085
+0x07,0x75,0x6e,0x69,0x31,0x44,0x34,0x45,0x07,0x75,0x6e,0x69,
30086
+0x31,0x44,0x34,0x46,0x07,0x75,0x6e,0x69,0x31,0x44,0x35,0x30,
30087
+0x07,0x75,0x6e,0x69,0x31,0x44,0x35,0x31,0x07,0x75,0x6e,0x69,
30088
+0x31,0x44,0x35,0x32,0x07,0x75,0x6e,0x69,0x31,0x44,0x35,0x33,
30089
+0x07,0x75,0x6e,0x69,0x31,0x44,0x35,0x34,0x07,0x75,0x6e,0x69,
30090
+0x31,0x44,0x35,0x35,0x07,0x75,0x6e,0x69,0x31,0x44,0x35,0x36,
30091
+0x07,0x75,0x6e,0x69,0x31,0x44,0x35,0x37,0x07,0x75,0x6e,0x69,
30092
+0x31,0x44,0x35,0x38,0x07,0x75,0x6e,0x69,0x31,0x44,0x35,0x39,
30093
+0x07,0x75,0x6e,0x69,0x31,0x44,0x35,0x41,0x07,0x75,0x6e,0x69,
30094
+0x31,0x44,0x35,0x42,0x07,0x75,0x6e,0x69,0x31,0x44,0x35,0x43,
30095
+0x07,0x75,0x6e,0x69,0x31,0x44,0x35,0x44,0x07,0x75,0x6e,0x69,
30096
+0x31,0x44,0x35,0x45,0x07,0x75,0x6e,0x69,0x31,0x44,0x35,0x46,
30097
+0x07,0x75,0x6e,0x69,0x31,0x44,0x36,0x30,0x07,0x75,0x6e,0x69,
30098
+0x31,0x44,0x36,0x31,0x07,0x75,0x6e,0x69,0x31,0x44,0x36,0x32,
30099
+0x07,0x75,0x6e,0x69,0x31,0x44,0x36,0x33,0x07,0x75,0x6e,0x69,
30100
+0x31,0x44,0x36,0x34,0x07,0x75,0x6e,0x69,0x31,0x44,0x36,0x35,
30101
+0x07,0x75,0x6e,0x69,0x31,0x44,0x36,0x36,0x07,0x75,0x6e,0x69,
30102
+0x31,0x44,0x36,0x37,0x07,0x75,0x6e,0x69,0x31,0x44,0x36,0x38,
30103
+0x07,0x75,0x6e,0x69,0x31,0x44,0x36,0x39,0x07,0x75,0x6e,0x69,
30104
+0x31,0x44,0x36,0x41,0x07,0x75,0x6e,0x69,0x31,0x44,0x36,0x42,
30105
+0x07,0x75,0x6e,0x69,0x31,0x44,0x37,0x37,0x07,0x75,0x6e,0x69,
30106
+0x31,0x44,0x37,0x38,0x07,0x75,0x6e,0x69,0x31,0x44,0x37,0x42,
30107
+0x07,0x75,0x6e,0x69,0x31,0x44,0x37,0x43,0x07,0x75,0x6e,0x69,
30108
+0x31,0x44,0x37,0x44,0x07,0x75,0x6e,0x69,0x31,0x44,0x37,0x45,
30109
+0x07,0x75,0x6e,0x69,0x31,0x44,0x37,0x46,0x07,0x75,0x6e,0x69,
30110
+0x31,0x44,0x38,0x35,0x07,0x75,0x6e,0x69,0x31,0x44,0x39,0x42,
30111
+0x07,0x75,0x6e,0x69,0x31,0x44,0x39,0x43,0x07,0x75,0x6e,0x69,
30112
+0x31,0x44,0x39,0x44,0x07,0x75,0x6e,0x69,0x31,0x44,0x39,0x45,
30113
+0x07,0x75,0x6e,0x69,0x31,0x44,0x39,0x46,0x07,0x75,0x6e,0x69,
30114
+0x31,0x44,0x41,0x30,0x07,0x75,0x6e,0x69,0x31,0x44,0x41,0x31,
30115
+0x07,0x75,0x6e,0x69,0x31,0x44,0x41,0x32,0x07,0x75,0x6e,0x69,
30116
+0x31,0x44,0x41,0x33,0x07,0x75,0x6e,0x69,0x31,0x44,0x41,0x34,
30117
+0x07,0x75,0x6e,0x69,0x31,0x44,0x41,0x35,0x07,0x75,0x6e,0x69,
30118
+0x31,0x44,0x41,0x36,0x07,0x75,0x6e,0x69,0x31,0x44,0x41,0x37,
30119
+0x07,0x75,0x6e,0x69,0x31,0x44,0x41,0x38,0x07,0x75,0x6e,0x69,
30120
+0x31,0x44,0x41,0x39,0x07,0x75,0x6e,0x69,0x31,0x44,0x41,0x41,
30121
+0x07,0x75,0x6e,0x69,0x31,0x44,0x41,0x42,0x07,0x75,0x6e,0x69,
30122
+0x31,0x44,0x41,0x43,0x07,0x75,0x6e,0x69,0x31,0x44,0x41,0x44,
30123
+0x07,0x75,0x6e,0x69,0x31,0x44,0x41,0x45,0x07,0x75,0x6e,0x69,
30124
+0x31,0x44,0x41,0x46,0x07,0x75,0x6e,0x69,0x31,0x44,0x42,0x30,
30125
+0x07,0x75,0x6e,0x69,0x31,0x44,0x42,0x31,0x07,0x75,0x6e,0x69,
30126
+0x31,0x44,0x42,0x32,0x07,0x75,0x6e,0x69,0x31,0x44,0x42,0x33,
30127
+0x07,0x75,0x6e,0x69,0x31,0x44,0x42,0x34,0x07,0x75,0x6e,0x69,
30128
+0x31,0x44,0x42,0x35,0x07,0x75,0x6e,0x69,0x31,0x44,0x42,0x36,
30129
+0x07,0x75,0x6e,0x69,0x31,0x44,0x42,0x37,0x07,0x75,0x6e,0x69,
30130
+0x31,0x44,0x42,0x38,0x07,0x75,0x6e,0x69,0x31,0x44,0x42,0x39,
30131
+0x07,0x75,0x6e,0x69,0x31,0x44,0x42,0x41,0x07,0x75,0x6e,0x69,
30132
+0x31,0x44,0x42,0x42,0x07,0x75,0x6e,0x69,0x31,0x44,0x42,0x43,
30133
+0x07,0x75,0x6e,0x69,0x31,0x44,0x42,0x44,0x07,0x75,0x6e,0x69,
30134
+0x31,0x44,0x42,0x45,0x07,0x75,0x6e,0x69,0x31,0x44,0x42,0x46,
30135
+0x07,0x75,0x6e,0x69,0x31,0x44,0x43,0x34,0x07,0x75,0x6e,0x69,
30136
+0x31,0x44,0x43,0x35,0x07,0x75,0x6e,0x69,0x31,0x44,0x43,0x36,
30137
+0x07,0x75,0x6e,0x69,0x31,0x44,0x43,0x37,0x07,0x75,0x6e,0x69,
30138
+0x31,0x44,0x43,0x38,0x07,0x75,0x6e,0x69,0x31,0x44,0x43,0x39,
30139
+0x07,0x75,0x6e,0x69,0x31,0x45,0x30,0x30,0x07,0x75,0x6e,0x69,
30140
+0x31,0x45,0x30,0x31,0x07,0x75,0x6e,0x69,0x31,0x45,0x30,0x32,
30141
+0x07,0x75,0x6e,0x69,0x31,0x45,0x30,0x33,0x07,0x75,0x6e,0x69,
30142
+0x31,0x45,0x30,0x34,0x07,0x75,0x6e,0x69,0x31,0x45,0x30,0x35,
30143
+0x07,0x75,0x6e,0x69,0x31,0x45,0x30,0x36,0x07,0x75,0x6e,0x69,
30144
+0x31,0x45,0x30,0x37,0x07,0x75,0x6e,0x69,0x31,0x45,0x30,0x38,
30145
+0x07,0x75,0x6e,0x69,0x31,0x45,0x30,0x39,0x07,0x75,0x6e,0x69,
30146
+0x31,0x45,0x30,0x41,0x07,0x75,0x6e,0x69,0x31,0x45,0x30,0x42,
30147
+0x07,0x75,0x6e,0x69,0x31,0x45,0x30,0x43,0x07,0x75,0x6e,0x69,
30148
+0x31,0x45,0x30,0x44,0x07,0x75,0x6e,0x69,0x31,0x45,0x30,0x45,
30149
+0x07,0x75,0x6e,0x69,0x31,0x45,0x30,0x46,0x07,0x75,0x6e,0x69,
30150
+0x31,0x45,0x31,0x30,0x07,0x75,0x6e,0x69,0x31,0x45,0x31,0x31,
30151
+0x07,0x75,0x6e,0x69,0x31,0x45,0x31,0x32,0x07,0x75,0x6e,0x69,
30152
+0x31,0x45,0x31,0x33,0x07,0x75,0x6e,0x69,0x31,0x45,0x31,0x34,
30153
+0x07,0x75,0x6e,0x69,0x31,0x45,0x31,0x35,0x07,0x75,0x6e,0x69,
30154
+0x31,0x45,0x31,0x36,0x07,0x75,0x6e,0x69,0x31,0x45,0x31,0x37,
30155
+0x07,0x75,0x6e,0x69,0x31,0x45,0x31,0x38,0x07,0x75,0x6e,0x69,
30156
+0x31,0x45,0x31,0x39,0x07,0x75,0x6e,0x69,0x31,0x45,0x31,0x41,
30157
+0x07,0x75,0x6e,0x69,0x31,0x45,0x31,0x42,0x07,0x75,0x6e,0x69,
30158
+0x31,0x45,0x31,0x43,0x07,0x75,0x6e,0x69,0x31,0x45,0x31,0x44,
30159
+0x07,0x75,0x6e,0x69,0x31,0x45,0x31,0x45,0x07,0x75,0x6e,0x69,
30160
+0x31,0x45,0x31,0x46,0x07,0x75,0x6e,0x69,0x31,0x45,0x32,0x30,
30161
+0x07,0x75,0x6e,0x69,0x31,0x45,0x32,0x31,0x07,0x75,0x6e,0x69,
30162
+0x31,0x45,0x32,0x32,0x07,0x75,0x6e,0x69,0x31,0x45,0x32,0x33,
30163
+0x07,0x75,0x6e,0x69,0x31,0x45,0x32,0x34,0x07,0x75,0x6e,0x69,
30164
+0x31,0x45,0x32,0x35,0x07,0x75,0x6e,0x69,0x31,0x45,0x32,0x36,
30165
+0x07,0x75,0x6e,0x69,0x31,0x45,0x32,0x37,0x07,0x75,0x6e,0x69,
30166
+0x31,0x45,0x32,0x38,0x07,0x75,0x6e,0x69,0x31,0x45,0x32,0x39,
30167
+0x07,0x75,0x6e,0x69,0x31,0x45,0x32,0x41,0x07,0x75,0x6e,0x69,
30168
+0x31,0x45,0x32,0x42,0x07,0x75,0x6e,0x69,0x31,0x45,0x32,0x43,
30169
+0x07,0x75,0x6e,0x69,0x31,0x45,0x32,0x44,0x07,0x75,0x6e,0x69,
30170
+0x31,0x45,0x32,0x45,0x07,0x75,0x6e,0x69,0x31,0x45,0x32,0x46,
30171
+0x07,0x75,0x6e,0x69,0x31,0x45,0x33,0x30,0x07,0x75,0x6e,0x69,
30172
+0x31,0x45,0x33,0x31,0x07,0x75,0x6e,0x69,0x31,0x45,0x33,0x32,
30173
+0x07,0x75,0x6e,0x69,0x31,0x45,0x33,0x33,0x07,0x75,0x6e,0x69,
30174
+0x31,0x45,0x33,0x34,0x07,0x75,0x6e,0x69,0x31,0x45,0x33,0x35,
30175
+0x07,0x75,0x6e,0x69,0x31,0x45,0x33,0x36,0x07,0x75,0x6e,0x69,
30176
+0x31,0x45,0x33,0x37,0x07,0x75,0x6e,0x69,0x31,0x45,0x33,0x38,
30177
+0x07,0x75,0x6e,0x69,0x31,0x45,0x33,0x39,0x07,0x75,0x6e,0x69,
30178
+0x31,0x45,0x33,0x41,0x07,0x75,0x6e,0x69,0x31,0x45,0x33,0x42,
30179
+0x07,0x75,0x6e,0x69,0x31,0x45,0x33,0x43,0x07,0x75,0x6e,0x69,
30180
+0x31,0x45,0x33,0x44,0x07,0x75,0x6e,0x69,0x31,0x45,0x33,0x45,
30181
+0x07,0x75,0x6e,0x69,0x31,0x45,0x33,0x46,0x07,0x75,0x6e,0x69,
30182
+0x31,0x45,0x34,0x30,0x07,0x75,0x6e,0x69,0x31,0x45,0x34,0x31,
30183
+0x07,0x75,0x6e,0x69,0x31,0x45,0x34,0x32,0x07,0x75,0x6e,0x69,
30184
+0x31,0x45,0x34,0x33,0x07,0x75,0x6e,0x69,0x31,0x45,0x34,0x34,
30185
+0x07,0x75,0x6e,0x69,0x31,0x45,0x34,0x35,0x07,0x75,0x6e,0x69,
30186
+0x31,0x45,0x34,0x36,0x07,0x75,0x6e,0x69,0x31,0x45,0x34,0x37,
30187
+0x07,0x75,0x6e,0x69,0x31,0x45,0x34,0x38,0x07,0x75,0x6e,0x69,
30188
+0x31,0x45,0x34,0x39,0x07,0x75,0x6e,0x69,0x31,0x45,0x34,0x41,
30189
+0x07,0x75,0x6e,0x69,0x31,0x45,0x34,0x42,0x07,0x75,0x6e,0x69,
30190
+0x31,0x45,0x34,0x43,0x07,0x75,0x6e,0x69,0x31,0x45,0x34,0x44,
30191
+0x07,0x75,0x6e,0x69,0x31,0x45,0x34,0x45,0x07,0x75,0x6e,0x69,
30192
+0x31,0x45,0x34,0x46,0x07,0x75,0x6e,0x69,0x31,0x45,0x35,0x30,
30193
+0x07,0x75,0x6e,0x69,0x31,0x45,0x35,0x31,0x07,0x75,0x6e,0x69,
30194
+0x31,0x45,0x35,0x32,0x07,0x75,0x6e,0x69,0x31,0x45,0x35,0x33,
30195
+0x07,0x75,0x6e,0x69,0x31,0x45,0x35,0x34,0x07,0x75,0x6e,0x69,
30196
+0x31,0x45,0x35,0x35,0x07,0x75,0x6e,0x69,0x31,0x45,0x35,0x36,
30197
+0x07,0x75,0x6e,0x69,0x31,0x45,0x35,0x37,0x07,0x75,0x6e,0x69,
30198
+0x31,0x45,0x35,0x38,0x07,0x75,0x6e,0x69,0x31,0x45,0x35,0x39,
30199
+0x07,0x75,0x6e,0x69,0x31,0x45,0x35,0x41,0x07,0x75,0x6e,0x69,
30200
+0x31,0x45,0x35,0x42,0x07,0x75,0x6e,0x69,0x31,0x45,0x35,0x43,
30201
+0x07,0x75,0x6e,0x69,0x31,0x45,0x35,0x44,0x07,0x75,0x6e,0x69,
30202
+0x31,0x45,0x35,0x45,0x07,0x75,0x6e,0x69,0x31,0x45,0x35,0x46,
30203
+0x07,0x75,0x6e,0x69,0x31,0x45,0x36,0x30,0x07,0x75,0x6e,0x69,
30204
+0x31,0x45,0x36,0x31,0x07,0x75,0x6e,0x69,0x31,0x45,0x36,0x32,
30205
+0x07,0x75,0x6e,0x69,0x31,0x45,0x36,0x33,0x07,0x75,0x6e,0x69,
30206
+0x31,0x45,0x36,0x34,0x07,0x75,0x6e,0x69,0x31,0x45,0x36,0x35,
30207
+0x07,0x75,0x6e,0x69,0x31,0x45,0x36,0x36,0x07,0x75,0x6e,0x69,
30208
+0x31,0x45,0x36,0x37,0x07,0x75,0x6e,0x69,0x31,0x45,0x36,0x38,
30209
+0x07,0x75,0x6e,0x69,0x31,0x45,0x36,0x39,0x07,0x75,0x6e,0x69,
30210
+0x31,0x45,0x36,0x41,0x07,0x75,0x6e,0x69,0x31,0x45,0x36,0x42,
30211
+0x07,0x75,0x6e,0x69,0x31,0x45,0x36,0x43,0x07,0x75,0x6e,0x69,
30212
+0x31,0x45,0x36,0x44,0x07,0x75,0x6e,0x69,0x31,0x45,0x36,0x45,
30213
+0x07,0x75,0x6e,0x69,0x31,0x45,0x36,0x46,0x07,0x75,0x6e,0x69,
30214
+0x31,0x45,0x37,0x30,0x07,0x75,0x6e,0x69,0x31,0x45,0x37,0x31,
30215
+0x07,0x75,0x6e,0x69,0x31,0x45,0x37,0x32,0x07,0x75,0x6e,0x69,
30216
+0x31,0x45,0x37,0x33,0x07,0x75,0x6e,0x69,0x31,0x45,0x37,0x34,
30217
+0x07,0x75,0x6e,0x69,0x31,0x45,0x37,0x35,0x07,0x75,0x6e,0x69,
30218
+0x31,0x45,0x37,0x36,0x07,0x75,0x6e,0x69,0x31,0x45,0x37,0x37,
30219
+0x07,0x75,0x6e,0x69,0x31,0x45,0x37,0x38,0x07,0x75,0x6e,0x69,
30220
+0x31,0x45,0x37,0x39,0x07,0x75,0x6e,0x69,0x31,0x45,0x37,0x41,
30221
+0x07,0x75,0x6e,0x69,0x31,0x45,0x37,0x42,0x07,0x75,0x6e,0x69,
30222
+0x31,0x45,0x37,0x43,0x07,0x75,0x6e,0x69,0x31,0x45,0x37,0x44,
30223
+0x07,0x75,0x6e,0x69,0x31,0x45,0x37,0x45,0x07,0x75,0x6e,0x69,
30224
+0x31,0x45,0x37,0x46,0x06,0x57,0x67,0x72,0x61,0x76,0x65,0x06,
30225
+0x77,0x67,0x72,0x61,0x76,0x65,0x06,0x57,0x61,0x63,0x75,0x74,
30226
+0x65,0x06,0x77,0x61,0x63,0x75,0x74,0x65,0x09,0x57,0x64,0x69,
30227
+0x65,0x72,0x65,0x73,0x69,0x73,0x09,0x77,0x64,0x69,0x65,0x72,
30228
+0x65,0x73,0x69,0x73,0x07,0x75,0x6e,0x69,0x31,0x45,0x38,0x36,
30229
+0x07,0x75,0x6e,0x69,0x31,0x45,0x38,0x37,0x07,0x75,0x6e,0x69,
30230
+0x31,0x45,0x38,0x38,0x07,0x75,0x6e,0x69,0x31,0x45,0x38,0x39,
30231
+0x07,0x75,0x6e,0x69,0x31,0x45,0x38,0x41,0x07,0x75,0x6e,0x69,
30232
+0x31,0x45,0x38,0x42,0x07,0x75,0x6e,0x69,0x31,0x45,0x38,0x43,
30233
+0x07,0x75,0x6e,0x69,0x31,0x45,0x38,0x44,0x07,0x75,0x6e,0x69,
30234
+0x31,0x45,0x38,0x45,0x07,0x75,0x6e,0x69,0x31,0x45,0x38,0x46,
30235
+0x07,0x75,0x6e,0x69,0x31,0x45,0x39,0x30,0x07,0x75,0x6e,0x69,
30236
+0x31,0x45,0x39,0x31,0x07,0x75,0x6e,0x69,0x31,0x45,0x39,0x32,
30237
+0x07,0x75,0x6e,0x69,0x31,0x45,0x39,0x33,0x07,0x75,0x6e,0x69,
30238
+0x31,0x45,0x39,0x34,0x07,0x75,0x6e,0x69,0x31,0x45,0x39,0x35,
30239
+0x07,0x75,0x6e,0x69,0x31,0x45,0x39,0x36,0x07,0x75,0x6e,0x69,
30240
+0x31,0x45,0x39,0x37,0x07,0x75,0x6e,0x69,0x31,0x45,0x39,0x38,
30241
+0x07,0x75,0x6e,0x69,0x31,0x45,0x39,0x39,0x07,0x75,0x6e,0x69,
30242
+0x31,0x45,0x39,0x41,0x07,0x75,0x6e,0x69,0x31,0x45,0x39,0x42,
30243
+0x07,0x75,0x6e,0x69,0x31,0x45,0x39,0x43,0x07,0x75,0x6e,0x69,
30244
+0x31,0x45,0x39,0x44,0x07,0x75,0x6e,0x69,0x31,0x45,0x39,0x45,
30245
+0x07,0x75,0x6e,0x69,0x31,0x45,0x39,0x46,0x07,0x75,0x6e,0x69,
30246
+0x31,0x45,0x41,0x30,0x07,0x75,0x6e,0x69,0x31,0x45,0x41,0x31,
30247
+0x07,0x75,0x6e,0x69,0x31,0x45,0x41,0x32,0x07,0x75,0x6e,0x69,
30248
+0x31,0x45,0x41,0x33,0x07,0x75,0x6e,0x69,0x31,0x45,0x41,0x34,
30249
+0x07,0x75,0x6e,0x69,0x31,0x45,0x41,0x35,0x07,0x75,0x6e,0x69,
30250
+0x31,0x45,0x41,0x36,0x07,0x75,0x6e,0x69,0x31,0x45,0x41,0x37,
30251
+0x07,0x75,0x6e,0x69,0x31,0x45,0x41,0x38,0x07,0x75,0x6e,0x69,
30252
+0x31,0x45,0x41,0x39,0x07,0x75,0x6e,0x69,0x31,0x45,0x41,0x41,
30253
+0x07,0x75,0x6e,0x69,0x31,0x45,0x41,0x42,0x07,0x75,0x6e,0x69,
30254
+0x31,0x45,0x41,0x43,0x07,0x75,0x6e,0x69,0x31,0x45,0x41,0x44,
30255
+0x07,0x75,0x6e,0x69,0x31,0x45,0x41,0x45,0x07,0x75,0x6e,0x69,
30256
+0x31,0x45,0x41,0x46,0x07,0x75,0x6e,0x69,0x31,0x45,0x42,0x30,
30257
+0x07,0x75,0x6e,0x69,0x31,0x45,0x42,0x31,0x07,0x75,0x6e,0x69,
30258
+0x31,0x45,0x42,0x32,0x07,0x75,0x6e,0x69,0x31,0x45,0x42,0x33,
30259
+0x07,0x75,0x6e,0x69,0x31,0x45,0x42,0x34,0x07,0x75,0x6e,0x69,
30260
+0x31,0x45,0x42,0x35,0x07,0x75,0x6e,0x69,0x31,0x45,0x42,0x36,
30261
+0x07,0x75,0x6e,0x69,0x31,0x45,0x42,0x37,0x07,0x75,0x6e,0x69,
30262
+0x31,0x45,0x42,0x38,0x07,0x75,0x6e,0x69,0x31,0x45,0x42,0x39,
30263
+0x07,0x75,0x6e,0x69,0x31,0x45,0x42,0x41,0x07,0x75,0x6e,0x69,
30264
+0x31,0x45,0x42,0x42,0x07,0x75,0x6e,0x69,0x31,0x45,0x42,0x43,
30265
+0x07,0x75,0x6e,0x69,0x31,0x45,0x42,0x44,0x07,0x75,0x6e,0x69,
30266
+0x31,0x65,0x62,0x65,0x07,0x75,0x6e,0x69,0x31,0x65,0x62,0x46,
30267
+0x07,0x75,0x6e,0x69,0x31,0x45,0x43,0x30,0x07,0x75,0x6e,0x69,
30268
+0x31,0x45,0x43,0x31,0x07,0x75,0x6e,0x69,0x31,0x45,0x43,0x32,
30269
+0x07,0x75,0x6e,0x69,0x31,0x45,0x43,0x33,0x07,0x75,0x6e,0x69,
30270
+0x31,0x45,0x43,0x34,0x07,0x75,0x6e,0x69,0x31,0x45,0x43,0x35,
30271
+0x07,0x75,0x6e,0x69,0x31,0x45,0x43,0x36,0x07,0x75,0x6e,0x69,
30272
+0x31,0x45,0x43,0x37,0x07,0x75,0x6e,0x69,0x31,0x45,0x43,0x38,
30273
+0x07,0x75,0x6e,0x69,0x31,0x45,0x43,0x39,0x07,0x75,0x6e,0x69,
30274
+0x31,0x45,0x43,0x41,0x07,0x75,0x6e,0x69,0x31,0x45,0x43,0x42,
30275
+0x07,0x75,0x6e,0x69,0x31,0x45,0x43,0x43,0x07,0x75,0x6e,0x69,
30276
+0x31,0x45,0x43,0x44,0x07,0x75,0x6e,0x69,0x31,0x45,0x43,0x45,
30277
+0x07,0x75,0x6e,0x69,0x31,0x45,0x43,0x46,0x07,0x75,0x6e,0x69,
30278
+0x31,0x45,0x44,0x30,0x07,0x75,0x6e,0x69,0x31,0x45,0x44,0x31,
30279
+0x07,0x75,0x6e,0x69,0x31,0x45,0x44,0x32,0x07,0x75,0x6e,0x69,
30280
+0x31,0x45,0x44,0x33,0x07,0x75,0x6e,0x69,0x31,0x45,0x44,0x34,
30281
+0x07,0x75,0x6e,0x69,0x31,0x45,0x44,0x35,0x07,0x75,0x6e,0x69,
30282
+0x31,0x45,0x44,0x36,0x07,0x75,0x6e,0x69,0x31,0x45,0x44,0x37,
30283
+0x07,0x75,0x6e,0x69,0x31,0x45,0x44,0x38,0x07,0x75,0x6e,0x69,
30284
+0x31,0x45,0x44,0x39,0x07,0x75,0x6e,0x69,0x31,0x45,0x44,0x41,
30285
+0x07,0x75,0x6e,0x69,0x31,0x45,0x44,0x42,0x07,0x75,0x6e,0x69,
30286
+0x31,0x45,0x44,0x43,0x07,0x75,0x6e,0x69,0x31,0x45,0x44,0x44,
30287
+0x07,0x75,0x6e,0x69,0x31,0x45,0x44,0x45,0x07,0x75,0x6e,0x69,
30288
+0x31,0x45,0x44,0x46,0x07,0x75,0x6e,0x69,0x31,0x45,0x45,0x30,
30289
+0x07,0x75,0x6e,0x69,0x31,0x45,0x45,0x31,0x07,0x75,0x6e,0x69,
30290
+0x31,0x45,0x45,0x32,0x07,0x75,0x6e,0x69,0x31,0x45,0x45,0x33,
30291
+0x07,0x75,0x6e,0x69,0x31,0x45,0x45,0x34,0x07,0x75,0x6e,0x69,
30292
+0x31,0x45,0x45,0x35,0x07,0x75,0x6e,0x69,0x31,0x45,0x45,0x36,
30293
+0x07,0x75,0x6e,0x69,0x31,0x45,0x45,0x37,0x07,0x75,0x6e,0x69,
30294
+0x31,0x45,0x45,0x38,0x07,0x75,0x6e,0x69,0x31,0x45,0x45,0x39,
30295
+0x07,0x75,0x6e,0x69,0x31,0x45,0x45,0x41,0x07,0x75,0x6e,0x69,
30296
+0x31,0x45,0x45,0x42,0x07,0x75,0x6e,0x69,0x31,0x45,0x45,0x43,
30297
+0x07,0x75,0x6e,0x69,0x31,0x45,0x45,0x44,0x07,0x75,0x6e,0x69,
30298
+0x31,0x45,0x45,0x45,0x07,0x75,0x6e,0x69,0x31,0x45,0x45,0x46,
30299
+0x07,0x75,0x6e,0x69,0x31,0x45,0x46,0x30,0x07,0x75,0x6e,0x69,
30300
+0x31,0x45,0x46,0x31,0x06,0x59,0x67,0x72,0x61,0x76,0x65,0x06,
30301
+0x79,0x67,0x72,0x61,0x76,0x65,0x07,0x75,0x6e,0x69,0x31,0x45,
30302
+0x46,0x34,0x07,0x75,0x6e,0x69,0x31,0x45,0x46,0x35,0x07,0x75,
30303
+0x6e,0x69,0x31,0x45,0x46,0x36,0x07,0x75,0x6e,0x69,0x31,0x45,
30304
+0x46,0x37,0x07,0x75,0x6e,0x69,0x31,0x45,0x46,0x38,0x07,0x75,
30305
+0x6e,0x69,0x31,0x45,0x46,0x39,0x07,0x75,0x6e,0x69,0x31,0x45,
30306
+0x46,0x41,0x07,0x75,0x6e,0x69,0x31,0x45,0x46,0x42,0x07,0x75,
30307
+0x6e,0x69,0x31,0x46,0x30,0x30,0x07,0x75,0x6e,0x69,0x31,0x46,
30308
+0x30,0x31,0x07,0x75,0x6e,0x69,0x31,0x46,0x30,0x32,0x07,0x75,
30309
+0x6e,0x69,0x31,0x46,0x30,0x33,0x07,0x75,0x6e,0x69,0x31,0x46,
30310
+0x30,0x34,0x07,0x75,0x6e,0x69,0x31,0x46,0x30,0x35,0x07,0x75,
30311
+0x6e,0x69,0x31,0x46,0x30,0x36,0x07,0x75,0x6e,0x69,0x31,0x46,
30312
+0x30,0x37,0x07,0x75,0x6e,0x69,0x31,0x46,0x30,0x38,0x07,0x75,
30313
+0x6e,0x69,0x31,0x46,0x30,0x39,0x07,0x75,0x6e,0x69,0x31,0x46,
30314
+0x30,0x41,0x07,0x75,0x6e,0x69,0x31,0x46,0x30,0x42,0x07,0x75,
30315
+0x6e,0x69,0x31,0x46,0x30,0x43,0x07,0x75,0x6e,0x69,0x31,0x46,
30316
+0x30,0x44,0x07,0x75,0x6e,0x69,0x31,0x46,0x30,0x45,0x07,0x75,
30317
+0x6e,0x69,0x31,0x46,0x30,0x46,0x07,0x75,0x6e,0x69,0x31,0x46,
30318
+0x31,0x30,0x07,0x75,0x6e,0x69,0x31,0x46,0x31,0x31,0x07,0x75,
30319
+0x6e,0x69,0x31,0x46,0x31,0x32,0x07,0x75,0x6e,0x69,0x31,0x46,
30320
+0x31,0x33,0x07,0x75,0x6e,0x69,0x31,0x46,0x31,0x34,0x07,0x75,
30321
+0x6e,0x69,0x31,0x46,0x31,0x35,0x07,0x75,0x6e,0x69,0x31,0x46,
30322
+0x31,0x38,0x07,0x75,0x6e,0x69,0x31,0x46,0x31,0x39,0x07,0x75,
30323
+0x6e,0x69,0x31,0x46,0x31,0x41,0x07,0x75,0x6e,0x69,0x31,0x46,
30324
+0x31,0x42,0x07,0x75,0x6e,0x69,0x31,0x46,0x31,0x43,0x07,0x75,
30325
+0x6e,0x69,0x31,0x46,0x31,0x44,0x07,0x75,0x6e,0x69,0x31,0x46,
30326
+0x32,0x30,0x07,0x75,0x6e,0x69,0x31,0x46,0x32,0x31,0x07,0x75,
30327
+0x6e,0x69,0x31,0x46,0x32,0x32,0x07,0x75,0x6e,0x69,0x31,0x46,
30328
+0x32,0x33,0x07,0x75,0x6e,0x69,0x31,0x46,0x32,0x34,0x07,0x75,
30329
+0x6e,0x69,0x31,0x46,0x32,0x35,0x07,0x75,0x6e,0x69,0x31,0x46,
30330
+0x32,0x36,0x07,0x75,0x6e,0x69,0x31,0x46,0x32,0x37,0x07,0x75,
30331
+0x6e,0x69,0x31,0x46,0x32,0x38,0x07,0x75,0x6e,0x69,0x31,0x46,
30332
+0x32,0x39,0x07,0x75,0x6e,0x69,0x31,0x46,0x32,0x41,0x07,0x75,
30333
+0x6e,0x69,0x31,0x46,0x32,0x42,0x07,0x75,0x6e,0x69,0x31,0x46,
30334
+0x32,0x43,0x07,0x75,0x6e,0x69,0x31,0x46,0x32,0x44,0x07,0x75,
30335
+0x6e,0x69,0x31,0x46,0x32,0x45,0x07,0x75,0x6e,0x69,0x31,0x46,
30336
+0x32,0x46,0x07,0x75,0x6e,0x69,0x31,0x46,0x33,0x30,0x07,0x75,
30337
+0x6e,0x69,0x31,0x46,0x33,0x31,0x07,0x75,0x6e,0x69,0x31,0x46,
30338
+0x33,0x32,0x07,0x75,0x6e,0x69,0x31,0x46,0x33,0x33,0x07,0x75,
30339
+0x6e,0x69,0x31,0x46,0x33,0x34,0x07,0x75,0x6e,0x69,0x31,0x46,
30340
+0x33,0x35,0x07,0x75,0x6e,0x69,0x31,0x46,0x33,0x36,0x07,0x75,
30341
+0x6e,0x69,0x31,0x46,0x33,0x37,0x07,0x75,0x6e,0x69,0x31,0x46,
30342
+0x33,0x38,0x07,0x75,0x6e,0x69,0x31,0x46,0x33,0x39,0x07,0x75,
30343
+0x6e,0x69,0x31,0x46,0x33,0x41,0x07,0x75,0x6e,0x69,0x31,0x46,
30344
+0x33,0x42,0x07,0x75,0x6e,0x69,0x31,0x46,0x33,0x43,0x07,0x75,
30345
+0x6e,0x69,0x31,0x46,0x33,0x44,0x07,0x75,0x6e,0x69,0x31,0x46,
30346
+0x33,0x45,0x07,0x75,0x6e,0x69,0x31,0x46,0x33,0x46,0x07,0x75,
30347
+0x6e,0x69,0x31,0x46,0x34,0x30,0x07,0x75,0x6e,0x69,0x31,0x46,
30348
+0x34,0x31,0x07,0x75,0x6e,0x69,0x31,0x46,0x34,0x32,0x07,0x75,
30349
+0x6e,0x69,0x31,0x46,0x34,0x33,0x07,0x75,0x6e,0x69,0x31,0x46,
30350
+0x34,0x34,0x07,0x75,0x6e,0x69,0x31,0x46,0x34,0x35,0x07,0x75,
30351
+0x6e,0x69,0x31,0x46,0x34,0x38,0x07,0x75,0x6e,0x69,0x31,0x46,
30352
+0x34,0x39,0x07,0x75,0x6e,0x69,0x31,0x46,0x34,0x41,0x07,0x75,
30353
+0x6e,0x69,0x31,0x46,0x34,0x42,0x07,0x75,0x6e,0x69,0x31,0x46,
30354
+0x34,0x43,0x07,0x75,0x6e,0x69,0x31,0x46,0x34,0x44,0x07,0x75,
30355
+0x6e,0x69,0x31,0x46,0x35,0x30,0x07,0x75,0x6e,0x69,0x31,0x46,
30356
+0x35,0x31,0x07,0x75,0x6e,0x69,0x31,0x46,0x35,0x32,0x07,0x75,
30357
+0x6e,0x69,0x31,0x46,0x35,0x33,0x07,0x75,0x6e,0x69,0x31,0x46,
30358
+0x35,0x34,0x07,0x75,0x6e,0x69,0x31,0x46,0x35,0x35,0x07,0x75,
30359
+0x6e,0x69,0x31,0x46,0x35,0x36,0x07,0x75,0x6e,0x69,0x31,0x46,
30360
+0x35,0x37,0x07,0x75,0x6e,0x69,0x31,0x46,0x35,0x39,0x07,0x75,
30361
+0x6e,0x69,0x31,0x46,0x35,0x42,0x07,0x75,0x6e,0x69,0x31,0x46,
30362
+0x35,0x44,0x07,0x75,0x6e,0x69,0x31,0x46,0x35,0x46,0x07,0x75,
30363
+0x6e,0x69,0x31,0x46,0x36,0x30,0x07,0x75,0x6e,0x69,0x31,0x46,
30364
+0x36,0x31,0x07,0x75,0x6e,0x69,0x31,0x46,0x36,0x32,0x07,0x75,
30365
+0x6e,0x69,0x31,0x46,0x36,0x33,0x07,0x75,0x6e,0x69,0x31,0x46,
30366
+0x36,0x34,0x07,0x75,0x6e,0x69,0x31,0x46,0x36,0x35,0x07,0x75,
30367
+0x6e,0x69,0x31,0x46,0x36,0x36,0x07,0x75,0x6e,0x69,0x31,0x46,
30368
+0x36,0x37,0x07,0x75,0x6e,0x69,0x31,0x46,0x36,0x38,0x07,0x75,
30369
+0x6e,0x69,0x31,0x46,0x36,0x39,0x07,0x75,0x6e,0x69,0x31,0x46,
30370
+0x36,0x41,0x07,0x75,0x6e,0x69,0x31,0x46,0x36,0x42,0x07,0x75,
30371
+0x6e,0x69,0x31,0x46,0x36,0x43,0x07,0x75,0x6e,0x69,0x31,0x46,
30372
+0x36,0x44,0x07,0x75,0x6e,0x69,0x31,0x46,0x36,0x45,0x07,0x75,
30373
+0x6e,0x69,0x31,0x46,0x36,0x46,0x07,0x75,0x6e,0x69,0x31,0x46,
30374
+0x37,0x30,0x07,0x75,0x6e,0x69,0x31,0x46,0x37,0x31,0x07,0x75,
30375
+0x6e,0x69,0x31,0x46,0x37,0x32,0x07,0x75,0x6e,0x69,0x31,0x46,
30376
+0x37,0x33,0x07,0x75,0x6e,0x69,0x31,0x46,0x37,0x34,0x07,0x75,
30377
+0x6e,0x69,0x31,0x46,0x37,0x35,0x07,0x75,0x6e,0x69,0x31,0x46,
30378
+0x37,0x36,0x07,0x75,0x6e,0x69,0x31,0x46,0x37,0x37,0x07,0x75,
30379
+0x6e,0x69,0x31,0x46,0x37,0x38,0x07,0x75,0x6e,0x69,0x31,0x46,
30380
+0x37,0x39,0x07,0x75,0x6e,0x69,0x31,0x46,0x37,0x41,0x07,0x75,
30381
+0x6e,0x69,0x31,0x46,0x37,0x42,0x07,0x75,0x6e,0x69,0x31,0x46,
30382
+0x37,0x43,0x07,0x75,0x6e,0x69,0x31,0x46,0x37,0x44,0x07,0x75,
30383
+0x6e,0x69,0x31,0x46,0x38,0x30,0x07,0x75,0x6e,0x69,0x31,0x46,
30384
+0x38,0x31,0x07,0x75,0x6e,0x69,0x31,0x46,0x38,0x32,0x07,0x75,
30385
+0x6e,0x69,0x31,0x46,0x38,0x33,0x07,0x75,0x6e,0x69,0x31,0x46,
30386
+0x38,0x34,0x07,0x75,0x6e,0x69,0x31,0x46,0x38,0x35,0x07,0x75,
30387
+0x6e,0x69,0x31,0x46,0x38,0x36,0x07,0x75,0x6e,0x69,0x31,0x46,
30388
+0x38,0x37,0x07,0x75,0x6e,0x69,0x31,0x46,0x38,0x38,0x07,0x75,
30389
+0x6e,0x69,0x31,0x46,0x38,0x39,0x07,0x75,0x6e,0x69,0x31,0x46,
30390
+0x38,0x41,0x07,0x75,0x6e,0x69,0x31,0x46,0x38,0x42,0x07,0x75,
30391
+0x6e,0x69,0x31,0x46,0x38,0x43,0x07,0x75,0x6e,0x69,0x31,0x46,
30392
+0x38,0x44,0x07,0x75,0x6e,0x69,0x31,0x46,0x38,0x45,0x07,0x75,
30393
+0x6e,0x69,0x31,0x46,0x38,0x46,0x07,0x75,0x6e,0x69,0x31,0x46,
30394
+0x39,0x30,0x07,0x75,0x6e,0x69,0x31,0x46,0x39,0x31,0x07,0x75,
30395
+0x6e,0x69,0x31,0x46,0x39,0x32,0x07,0x75,0x6e,0x69,0x31,0x46,
30396
+0x39,0x33,0x07,0x75,0x6e,0x69,0x31,0x46,0x39,0x34,0x07,0x75,
30397
+0x6e,0x69,0x31,0x46,0x39,0x35,0x07,0x75,0x6e,0x69,0x31,0x46,
30398
+0x39,0x36,0x07,0x75,0x6e,0x69,0x31,0x46,0x39,0x37,0x07,0x75,
30399
+0x6e,0x69,0x31,0x46,0x39,0x38,0x07,0x75,0x6e,0x69,0x31,0x46,
30400
+0x39,0x39,0x07,0x75,0x6e,0x69,0x31,0x46,0x39,0x41,0x07,0x75,
30401
+0x6e,0x69,0x31,0x46,0x39,0x42,0x07,0x75,0x6e,0x69,0x31,0x46,
30402
+0x39,0x43,0x07,0x75,0x6e,0x69,0x31,0x46,0x39,0x44,0x07,0x75,
30403
+0x6e,0x69,0x31,0x46,0x39,0x45,0x07,0x75,0x6e,0x69,0x31,0x46,
30404
+0x39,0x46,0x07,0x75,0x6e,0x69,0x31,0x46,0x41,0x30,0x07,0x75,
30405
+0x6e,0x69,0x31,0x46,0x41,0x31,0x07,0x75,0x6e,0x69,0x31,0x46,
30406
+0x41,0x32,0x07,0x75,0x6e,0x69,0x31,0x46,0x41,0x33,0x07,0x75,
30407
+0x6e,0x69,0x31,0x46,0x41,0x34,0x07,0x75,0x6e,0x69,0x31,0x46,
30408
+0x41,0x35,0x07,0x75,0x6e,0x69,0x31,0x46,0x41,0x36,0x07,0x75,
30409
+0x6e,0x69,0x31,0x46,0x41,0x37,0x07,0x75,0x6e,0x69,0x31,0x46,
30410
+0x41,0x38,0x07,0x75,0x6e,0x69,0x31,0x46,0x41,0x39,0x07,0x75,
30411
+0x6e,0x69,0x31,0x46,0x41,0x41,0x07,0x75,0x6e,0x69,0x31,0x46,
30412
+0x41,0x42,0x07,0x75,0x6e,0x69,0x31,0x46,0x41,0x43,0x07,0x75,
30413
+0x6e,0x69,0x31,0x46,0x41,0x44,0x07,0x75,0x6e,0x69,0x31,0x46,
30414
+0x41,0x45,0x07,0x75,0x6e,0x69,0x31,0x46,0x41,0x46,0x07,0x75,
30415
+0x6e,0x69,0x31,0x46,0x42,0x30,0x07,0x75,0x6e,0x69,0x31,0x46,
30416
+0x42,0x31,0x07,0x75,0x6e,0x69,0x31,0x46,0x42,0x32,0x07,0x75,
30417
+0x6e,0x69,0x31,0x46,0x42,0x33,0x07,0x75,0x6e,0x69,0x31,0x46,
30418
+0x42,0x34,0x07,0x75,0x6e,0x69,0x31,0x46,0x42,0x36,0x07,0x75,
30419
+0x6e,0x69,0x31,0x46,0x42,0x37,0x07,0x75,0x6e,0x69,0x31,0x46,
30420
+0x42,0x38,0x07,0x75,0x6e,0x69,0x31,0x46,0x42,0x39,0x07,0x75,
30421
+0x6e,0x69,0x31,0x46,0x42,0x41,0x07,0x75,0x6e,0x69,0x31,0x46,
30422
+0x42,0x42,0x07,0x75,0x6e,0x69,0x31,0x46,0x42,0x43,0x07,0x75,
30423
+0x6e,0x69,0x31,0x46,0x42,0x44,0x07,0x75,0x6e,0x69,0x31,0x46,
30424
+0x42,0x45,0x07,0x75,0x6e,0x69,0x31,0x46,0x42,0x46,0x07,0x75,
30425
+0x6e,0x69,0x31,0x46,0x43,0x30,0x07,0x75,0x6e,0x69,0x31,0x46,
30426
+0x43,0x31,0x07,0x75,0x6e,0x69,0x31,0x46,0x43,0x32,0x07,0x75,
30427
+0x6e,0x69,0x31,0x46,0x43,0x33,0x07,0x75,0x6e,0x69,0x31,0x46,
30428
+0x43,0x34,0x07,0x75,0x6e,0x69,0x31,0x46,0x43,0x36,0x07,0x75,
30429
+0x6e,0x69,0x31,0x46,0x43,0x37,0x07,0x75,0x6e,0x69,0x31,0x46,
30430
+0x43,0x38,0x07,0x75,0x6e,0x69,0x31,0x46,0x43,0x39,0x07,0x75,
30431
+0x6e,0x69,0x31,0x46,0x43,0x41,0x07,0x75,0x6e,0x69,0x31,0x46,
30432
+0x43,0x42,0x07,0x75,0x6e,0x69,0x31,0x46,0x43,0x43,0x07,0x75,
30433
+0x6e,0x69,0x31,0x46,0x43,0x44,0x07,0x75,0x6e,0x69,0x31,0x46,
30434
+0x43,0x45,0x07,0x75,0x6e,0x69,0x31,0x46,0x43,0x46,0x07,0x75,
30435
+0x6e,0x69,0x31,0x46,0x44,0x30,0x07,0x75,0x6e,0x69,0x31,0x46,
30436
+0x44,0x31,0x07,0x75,0x6e,0x69,0x31,0x46,0x44,0x32,0x07,0x75,
30437
+0x6e,0x69,0x31,0x46,0x44,0x33,0x07,0x75,0x6e,0x69,0x31,0x46,
30438
+0x44,0x36,0x07,0x75,0x6e,0x69,0x31,0x46,0x44,0x37,0x07,0x75,
30439
+0x6e,0x69,0x31,0x46,0x44,0x38,0x07,0x75,0x6e,0x69,0x31,0x46,
30440
+0x44,0x39,0x07,0x75,0x6e,0x69,0x31,0x46,0x44,0x41,0x07,0x75,
30441
+0x6e,0x69,0x31,0x46,0x44,0x42,0x07,0x75,0x6e,0x69,0x31,0x46,
30442
+0x44,0x44,0x07,0x75,0x6e,0x69,0x31,0x46,0x44,0x45,0x07,0x75,
30443
+0x6e,0x69,0x31,0x46,0x44,0x46,0x07,0x75,0x6e,0x69,0x31,0x46,
30444
+0x45,0x30,0x07,0x75,0x6e,0x69,0x31,0x46,0x45,0x31,0x07,0x75,
30445
+0x6e,0x69,0x31,0x46,0x45,0x32,0x07,0x75,0x6e,0x69,0x31,0x46,
30446
+0x45,0x33,0x07,0x75,0x6e,0x69,0x31,0x46,0x45,0x34,0x07,0x75,
30447
+0x6e,0x69,0x31,0x46,0x45,0x35,0x07,0x75,0x6e,0x69,0x31,0x46,
30448
+0x45,0x36,0x07,0x75,0x6e,0x69,0x31,0x46,0x45,0x37,0x07,0x75,
30449
+0x6e,0x69,0x31,0x46,0x45,0x38,0x07,0x75,0x6e,0x69,0x31,0x46,
30450
+0x45,0x39,0x07,0x75,0x6e,0x69,0x31,0x46,0x45,0x41,0x07,0x75,
30451
+0x6e,0x69,0x31,0x46,0x45,0x42,0x07,0x75,0x6e,0x69,0x31,0x46,
30452
+0x45,0x43,0x07,0x75,0x6e,0x69,0x31,0x46,0x45,0x44,0x07,0x75,
30453
+0x6e,0x69,0x31,0x46,0x45,0x45,0x07,0x75,0x6e,0x69,0x31,0x46,
30454
+0x45,0x46,0x07,0x75,0x6e,0x69,0x31,0x46,0x46,0x32,0x07,0x75,
30455
+0x6e,0x69,0x31,0x46,0x46,0x33,0x07,0x75,0x6e,0x69,0x31,0x46,
30456
+0x46,0x34,0x07,0x75,0x6e,0x69,0x31,0x46,0x46,0x36,0x07,0x75,
30457
+0x6e,0x69,0x31,0x46,0x46,0x37,0x07,0x75,0x6e,0x69,0x31,0x46,
30458
+0x46,0x38,0x07,0x75,0x6e,0x69,0x31,0x46,0x46,0x39,0x07,0x75,
30459
+0x6e,0x69,0x31,0x46,0x46,0x41,0x07,0x75,0x6e,0x69,0x31,0x46,
30460
+0x46,0x42,0x07,0x75,0x6e,0x69,0x31,0x46,0x46,0x43,0x07,0x75,
30461
+0x6e,0x69,0x31,0x46,0x46,0x44,0x07,0x75,0x6e,0x69,0x31,0x46,
30462
+0x46,0x45,0x07,0x75,0x6e,0x69,0x32,0x30,0x30,0x30,0x07,0x75,
30463
+0x6e,0x69,0x32,0x30,0x30,0x31,0x07,0x75,0x6e,0x69,0x32,0x30,
30464
+0x30,0x32,0x07,0x75,0x6e,0x69,0x32,0x30,0x30,0x33,0x07,0x75,
30465
+0x6e,0x69,0x32,0x30,0x30,0x34,0x07,0x75,0x6e,0x69,0x32,0x30,
30466
+0x30,0x35,0x07,0x75,0x6e,0x69,0x32,0x30,0x30,0x36,0x07,0x75,
30467
+0x6e,0x69,0x32,0x30,0x30,0x37,0x07,0x75,0x6e,0x69,0x32,0x30,
30468
+0x30,0x38,0x07,0x75,0x6e,0x69,0x32,0x30,0x30,0x39,0x07,0x75,
30469
+0x6e,0x69,0x32,0x30,0x30,0x41,0x07,0x75,0x6e,0x69,0x32,0x30,
30470
+0x30,0x42,0x07,0x75,0x6e,0x69,0x32,0x30,0x30,0x43,0x07,0x75,
30471
+0x6e,0x69,0x32,0x30,0x30,0x44,0x07,0x75,0x6e,0x69,0x32,0x30,
30472
+0x30,0x45,0x07,0x75,0x6e,0x69,0x32,0x30,0x30,0x46,0x07,0x75,
30473
+0x6e,0x69,0x32,0x30,0x31,0x30,0x07,0x75,0x6e,0x69,0x32,0x30,
30474
+0x31,0x31,0x0a,0x66,0x69,0x67,0x75,0x72,0x65,0x64,0x61,0x73,
30475
+0x68,0x07,0x75,0x6e,0x69,0x32,0x30,0x31,0x35,0x07,0x75,0x6e,
30476
+0x69,0x32,0x30,0x31,0x36,0x0d,0x75,0x6e,0x64,0x65,0x72,0x73,
30477
+0x63,0x6f,0x72,0x65,0x64,0x62,0x6c,0x0d,0x71,0x75,0x6f,0x74,
30478
+0x65,0x72,0x65,0x76,0x65,0x72,0x73,0x65,0x64,0x07,0x75,0x6e,
30479
+0x69,0x32,0x30,0x31,0x46,0x07,0x75,0x6e,0x69,0x32,0x30,0x32,
30480
+0x33,0x0e,0x6f,0x6e,0x65,0x64,0x6f,0x74,0x65,0x6e,0x6c,0x65,
30481
+0x61,0x64,0x65,0x72,0x0e,0x74,0x77,0x6f,0x64,0x6f,0x74,0x65,
30482
+0x6e,0x6c,0x65,0x61,0x64,0x65,0x72,0x07,0x75,0x6e,0x69,0x32,
30483
+0x30,0x32,0x41,0x07,0x75,0x6e,0x69,0x32,0x30,0x32,0x42,0x07,
30484
+0x75,0x6e,0x69,0x32,0x30,0x32,0x43,0x07,0x75,0x6e,0x69,0x32,
30485
+0x30,0x32,0x44,0x07,0x75,0x6e,0x69,0x32,0x30,0x32,0x45,0x07,
30486
+0x75,0x6e,0x69,0x32,0x30,0x32,0x46,0x07,0x75,0x6e,0x69,0x32,
30487
+0x30,0x33,0x31,0x06,0x6d,0x69,0x6e,0x75,0x74,0x65,0x06,0x73,
30488
+0x65,0x63,0x6f,0x6e,0x64,0x07,0x75,0x6e,0x69,0x32,0x30,0x33,
30489
+0x34,0x07,0x75,0x6e,0x69,0x32,0x30,0x33,0x35,0x07,0x75,0x6e,
30490
+0x69,0x32,0x30,0x33,0x36,0x07,0x75,0x6e,0x69,0x32,0x30,0x33,
30491
+0x37,0x07,0x75,0x6e,0x69,0x32,0x30,0x33,0x38,0x09,0x65,0x78,
30492
+0x63,0x6c,0x61,0x6d,0x64,0x62,0x6c,0x07,0x75,0x6e,0x69,0x32,
30493
+0x30,0x33,0x44,0x07,0x75,0x6e,0x69,0x32,0x30,0x33,0x45,0x07,
30494
+0x75,0x6e,0x69,0x32,0x30,0x34,0x32,0x07,0x75,0x6e,0x69,0x32,
30495
+0x30,0x34,0x35,0x07,0x75,0x6e,0x69,0x32,0x30,0x34,0x36,0x07,
30496
+0x75,0x6e,0x69,0x32,0x30,0x34,0x37,0x07,0x75,0x6e,0x69,0x32,
30497
+0x30,0x34,0x38,0x07,0x75,0x6e,0x69,0x32,0x30,0x34,0x39,0x07,
30498
+0x75,0x6e,0x69,0x32,0x30,0x34,0x42,0x07,0x75,0x6e,0x69,0x32,
30499
+0x30,0x34,0x43,0x07,0x75,0x6e,0x69,0x32,0x30,0x34,0x44,0x07,
30500
+0x75,0x6e,0x69,0x32,0x30,0x34,0x45,0x07,0x75,0x6e,0x69,0x32,
30501
+0x30,0x34,0x46,0x07,0x75,0x6e,0x69,0x32,0x30,0x35,0x31,0x07,
30502
+0x75,0x6e,0x69,0x32,0x30,0x35,0x32,0x07,0x75,0x6e,0x69,0x32,
30503
+0x30,0x35,0x33,0x07,0x75,0x6e,0x69,0x32,0x30,0x35,0x37,0x07,
30504
+0x75,0x6e,0x69,0x32,0x30,0x35,0x46,0x07,0x75,0x6e,0x69,0x32,
30505
+0x30,0x36,0x30,0x07,0x75,0x6e,0x69,0x32,0x30,0x36,0x31,0x07,
30506
+0x75,0x6e,0x69,0x32,0x30,0x36,0x32,0x07,0x75,0x6e,0x69,0x32,
30507
+0x30,0x36,0x33,0x07,0x75,0x6e,0x69,0x32,0x30,0x36,0x34,0x07,
30508
+0x75,0x6e,0x69,0x32,0x30,0x36,0x41,0x07,0x75,0x6e,0x69,0x32,
30509
+0x30,0x36,0x42,0x07,0x75,0x6e,0x69,0x32,0x30,0x36,0x43,0x07,
30510
+0x75,0x6e,0x69,0x32,0x30,0x36,0x44,0x07,0x75,0x6e,0x69,0x32,
30511
+0x30,0x36,0x45,0x07,0x75,0x6e,0x69,0x32,0x30,0x36,0x46,0x07,
30512
+0x75,0x6e,0x69,0x32,0x30,0x37,0x30,0x07,0x75,0x6e,0x69,0x32,
30513
+0x30,0x37,0x31,0x07,0x75,0x6e,0x69,0x32,0x30,0x37,0x34,0x07,
30514
+0x75,0x6e,0x69,0x32,0x30,0x37,0x35,0x07,0x75,0x6e,0x69,0x32,
30515
+0x30,0x37,0x36,0x07,0x75,0x6e,0x69,0x32,0x30,0x37,0x37,0x07,
30516
+0x75,0x6e,0x69,0x32,0x30,0x37,0x38,0x07,0x75,0x6e,0x69,0x32,
30517
+0x30,0x37,0x39,0x07,0x75,0x6e,0x69,0x32,0x30,0x37,0x41,0x07,
30518
+0x75,0x6e,0x69,0x32,0x30,0x37,0x42,0x07,0x75,0x6e,0x69,0x32,
30519
+0x30,0x37,0x43,0x07,0x75,0x6e,0x69,0x32,0x30,0x37,0x44,0x07,
30520
+0x75,0x6e,0x69,0x32,0x30,0x37,0x45,0x07,0x75,0x6e,0x69,0x32,
30521
+0x30,0x37,0x46,0x07,0x75,0x6e,0x69,0x32,0x30,0x38,0x30,0x07,
30522
+0x75,0x6e,0x69,0x32,0x30,0x38,0x31,0x07,0x75,0x6e,0x69,0x32,
30523
+0x30,0x38,0x32,0x07,0x75,0x6e,0x69,0x32,0x30,0x38,0x33,0x07,
30524
+0x75,0x6e,0x69,0x32,0x30,0x38,0x34,0x07,0x75,0x6e,0x69,0x32,
30525
+0x30,0x38,0x35,0x07,0x75,0x6e,0x69,0x32,0x30,0x38,0x36,0x07,
30526
+0x75,0x6e,0x69,0x32,0x30,0x38,0x37,0x07,0x75,0x6e,0x69,0x32,
30527
+0x30,0x38,0x38,0x07,0x75,0x6e,0x69,0x32,0x30,0x38,0x39,0x07,
30528
+0x75,0x6e,0x69,0x32,0x30,0x38,0x41,0x07,0x75,0x6e,0x69,0x32,
30529
+0x30,0x38,0x42,0x07,0x75,0x6e,0x69,0x32,0x30,0x38,0x43,0x07,
30530
+0x75,0x6e,0x69,0x32,0x30,0x38,0x44,0x07,0x75,0x6e,0x69,0x32,
30531
+0x30,0x38,0x45,0x07,0x75,0x6e,0x69,0x32,0x30,0x39,0x30,0x07,
30532
+0x75,0x6e,0x69,0x32,0x30,0x39,0x31,0x07,0x75,0x6e,0x69,0x32,
30533
+0x30,0x39,0x32,0x07,0x75,0x6e,0x69,0x32,0x30,0x39,0x33,0x07,
30534
+0x75,0x6e,0x69,0x32,0x30,0x39,0x34,0x07,0x75,0x6e,0x69,0x32,
30535
+0x30,0x39,0x35,0x07,0x75,0x6e,0x69,0x32,0x30,0x39,0x36,0x07,
30536
+0x75,0x6e,0x69,0x32,0x30,0x39,0x37,0x07,0x75,0x6e,0x69,0x32,
30537
+0x30,0x39,0x38,0x07,0x75,0x6e,0x69,0x32,0x30,0x39,0x39,0x07,
30538
+0x75,0x6e,0x69,0x32,0x30,0x39,0x41,0x07,0x75,0x6e,0x69,0x32,
30539
+0x30,0x39,0x42,0x07,0x75,0x6e,0x69,0x32,0x30,0x39,0x43,0x07,
30540
+0x75,0x6e,0x69,0x32,0x30,0x41,0x36,0x04,0x45,0x75,0x72,0x6f,
30541
+0x07,0x75,0x6e,0x69,0x32,0x30,0x41,0x46,0x07,0x75,0x6e,0x69,
30542
+0x32,0x30,0x42,0x31,0x07,0x75,0x6e,0x69,0x32,0x30,0x42,0x34,
30543
+0x07,0x75,0x6e,0x69,0x32,0x30,0x42,0x35,0x07,0x75,0x6e,0x69,
30544
+0x32,0x30,0x42,0x38,0x07,0x75,0x6e,0x69,0x32,0x30,0x42,0x39,
30545
+0x07,0x75,0x6e,0x69,0x32,0x30,0x42,0x41,0x07,0x75,0x6e,0x69,
30546
+0x32,0x30,0x42,0x44,0x07,0x75,0x6e,0x69,0x32,0x31,0x30,0x32,
30547
+0x07,0x75,0x6e,0x69,0x32,0x31,0x30,0x33,0x07,0x75,0x6e,0x69,
30548
+0x32,0x31,0x30,0x39,0x07,0x75,0x6e,0x69,0x32,0x31,0x30,0x44,
30549
+0x07,0x75,0x6e,0x69,0x32,0x31,0x30,0x45,0x07,0x75,0x6e,0x69,
30550
+0x32,0x31,0x30,0x46,0x07,0x75,0x6e,0x69,0x32,0x31,0x31,0x35,
30551
+0x07,0x75,0x6e,0x69,0x32,0x31,0x31,0x36,0x07,0x75,0x6e,0x69,
30552
+0x32,0x31,0x31,0x39,0x07,0x75,0x6e,0x69,0x32,0x31,0x31,0x41,
30553
+0x07,0x75,0x6e,0x69,0x32,0x31,0x31,0x44,0x07,0x75,0x6e,0x69,
30554
+0x32,0x31,0x32,0x34,0x07,0x75,0x6e,0x69,0x32,0x31,0x32,0x36,
30555
+0x07,0x75,0x6e,0x69,0x32,0x31,0x32,0x37,0x07,0x75,0x6e,0x69,
30556
+0x32,0x31,0x32,0x41,0x07,0x75,0x6e,0x69,0x32,0x31,0x32,0x42,
30557
+0x07,0x75,0x6e,0x69,0x32,0x31,0x33,0x32,0x07,0x75,0x6e,0x69,
30558
+0x32,0x31,0x33,0x43,0x07,0x75,0x6e,0x69,0x32,0x31,0x33,0x44,
30559
+0x07,0x75,0x6e,0x69,0x32,0x31,0x33,0x45,0x07,0x75,0x6e,0x69,
30560
+0x32,0x31,0x33,0x46,0x07,0x75,0x6e,0x69,0x32,0x31,0x34,0x30,
30561
+0x07,0x75,0x6e,0x69,0x32,0x31,0x34,0x31,0x07,0x75,0x6e,0x69,
30562
+0x32,0x31,0x34,0x32,0x07,0x75,0x6e,0x69,0x32,0x31,0x34,0x33,
30563
+0x07,0x75,0x6e,0x69,0x32,0x31,0x34,0x34,0x07,0x75,0x6e,0x69,
30564
+0x32,0x31,0x34,0x35,0x07,0x75,0x6e,0x69,0x32,0x31,0x34,0x36,
30565
+0x07,0x75,0x6e,0x69,0x32,0x31,0x34,0x37,0x07,0x75,0x6e,0x69,
30566
+0x32,0x31,0x34,0x38,0x07,0x75,0x6e,0x69,0x32,0x31,0x34,0x39,
30567
+0x07,0x75,0x6e,0x69,0x32,0x31,0x34,0x42,0x07,0x75,0x6e,0x69,
30568
+0x32,0x31,0x34,0x45,0x07,0x75,0x6e,0x69,0x32,0x31,0x35,0x30,
30569
+0x07,0x75,0x6e,0x69,0x32,0x31,0x35,0x31,0x07,0x75,0x6e,0x69,
30570
+0x32,0x31,0x35,0x32,0x08,0x6f,0x6e,0x65,0x74,0x68,0x69,0x72,
30571
+0x64,0x09,0x74,0x77,0x6f,0x74,0x68,0x69,0x72,0x64,0x73,0x07,
30572
+0x75,0x6e,0x69,0x32,0x31,0x35,0x35,0x07,0x75,0x6e,0x69,0x32,
30573
+0x31,0x35,0x36,0x07,0x75,0x6e,0x69,0x32,0x31,0x35,0x37,0x07,
30574
+0x75,0x6e,0x69,0x32,0x31,0x35,0x38,0x07,0x75,0x6e,0x69,0x32,
30575
+0x31,0x35,0x39,0x07,0x75,0x6e,0x69,0x32,0x31,0x35,0x41,0x09,
30576
+0x6f,0x6e,0x65,0x65,0x69,0x67,0x68,0x74,0x68,0x0c,0x74,0x68,
30577
+0x72,0x65,0x65,0x65,0x69,0x67,0x68,0x74,0x68,0x73,0x0b,0x66,
30578
+0x69,0x76,0x65,0x65,0x69,0x67,0x68,0x74,0x68,0x73,0x0c,0x73,
30579
+0x65,0x76,0x65,0x6e,0x65,0x69,0x67,0x68,0x74,0x68,0x73,0x07,
30580
+0x75,0x6e,0x69,0x32,0x31,0x35,0x46,0x07,0x75,0x6e,0x69,0x32,
30581
+0x31,0x36,0x30,0x07,0x75,0x6e,0x69,0x32,0x31,0x36,0x31,0x07,
30582
+0x75,0x6e,0x69,0x32,0x31,0x36,0x32,0x07,0x75,0x6e,0x69,0x32,
30583
+0x31,0x36,0x33,0x07,0x75,0x6e,0x69,0x32,0x31,0x36,0x34,0x07,
30584
+0x75,0x6e,0x69,0x32,0x31,0x36,0x35,0x07,0x75,0x6e,0x69,0x32,
30585
+0x31,0x36,0x36,0x07,0x75,0x6e,0x69,0x32,0x31,0x36,0x37,0x07,
30586
+0x75,0x6e,0x69,0x32,0x31,0x36,0x38,0x07,0x75,0x6e,0x69,0x32,
30587
+0x31,0x36,0x39,0x07,0x75,0x6e,0x69,0x32,0x31,0x36,0x41,0x07,
30588
+0x75,0x6e,0x69,0x32,0x31,0x36,0x42,0x07,0x75,0x6e,0x69,0x32,
30589
+0x31,0x36,0x43,0x07,0x75,0x6e,0x69,0x32,0x31,0x36,0x44,0x07,
30590
+0x75,0x6e,0x69,0x32,0x31,0x36,0x45,0x07,0x75,0x6e,0x69,0x32,
30591
+0x31,0x36,0x46,0x07,0x75,0x6e,0x69,0x32,0x31,0x37,0x30,0x07,
30592
+0x75,0x6e,0x69,0x32,0x31,0x37,0x31,0x07,0x75,0x6e,0x69,0x32,
30593
+0x31,0x37,0x32,0x07,0x75,0x6e,0x69,0x32,0x31,0x37,0x33,0x07,
30594
+0x75,0x6e,0x69,0x32,0x31,0x37,0x34,0x07,0x75,0x6e,0x69,0x32,
30595
+0x31,0x37,0x35,0x07,0x75,0x6e,0x69,0x32,0x31,0x37,0x36,0x07,
30596
+0x75,0x6e,0x69,0x32,0x31,0x37,0x37,0x07,0x75,0x6e,0x69,0x32,
30597
+0x31,0x37,0x38,0x07,0x75,0x6e,0x69,0x32,0x31,0x37,0x39,0x07,
30598
+0x75,0x6e,0x69,0x32,0x31,0x37,0x41,0x07,0x75,0x6e,0x69,0x32,
30599
+0x31,0x37,0x42,0x07,0x75,0x6e,0x69,0x32,0x31,0x37,0x43,0x07,
30600
+0x75,0x6e,0x69,0x32,0x31,0x37,0x44,0x07,0x75,0x6e,0x69,0x32,
30601
+0x31,0x37,0x45,0x07,0x75,0x6e,0x69,0x32,0x31,0x37,0x46,0x07,
30602
+0x75,0x6e,0x69,0x32,0x31,0x38,0x30,0x07,0x75,0x6e,0x69,0x32,
30603
+0x31,0x38,0x31,0x07,0x75,0x6e,0x69,0x32,0x31,0x38,0x32,0x07,
30604
+0x75,0x6e,0x69,0x32,0x31,0x38,0x33,0x07,0x75,0x6e,0x69,0x32,
30605
+0x31,0x38,0x34,0x07,0x75,0x6e,0x69,0x32,0x31,0x38,0x35,0x07,
30606
+0x75,0x6e,0x69,0x32,0x31,0x38,0x39,0x09,0x61,0x72,0x72,0x6f,
30607
+0x77,0x6c,0x65,0x66,0x74,0x07,0x61,0x72,0x72,0x6f,0x77,0x75,
30608
+0x70,0x0a,0x61,0x72,0x72,0x6f,0x77,0x72,0x69,0x67,0x68,0x74,
30609
+0x09,0x61,0x72,0x72,0x6f,0x77,0x64,0x6f,0x77,0x6e,0x09,0x61,
30610
+0x72,0x72,0x6f,0x77,0x62,0x6f,0x74,0x68,0x09,0x61,0x72,0x72,
30611
+0x6f,0x77,0x75,0x70,0x64,0x6e,0x07,0x75,0x6e,0x69,0x32,0x31,
30612
+0x39,0x36,0x07,0x75,0x6e,0x69,0x32,0x31,0x39,0x37,0x07,0x75,
30613
+0x6e,0x69,0x32,0x31,0x39,0x38,0x07,0x75,0x6e,0x69,0x32,0x31,
30614
+0x39,0x39,0x07,0x75,0x6e,0x69,0x32,0x31,0x39,0x41,0x07,0x75,
30615
+0x6e,0x69,0x32,0x31,0x39,0x42,0x07,0x75,0x6e,0x69,0x32,0x31,
30616
+0x39,0x43,0x07,0x75,0x6e,0x69,0x32,0x31,0x39,0x44,0x07,0x75,
30617
+0x6e,0x69,0x32,0x31,0x39,0x45,0x07,0x75,0x6e,0x69,0x32,0x31,
30618
+0x39,0x46,0x07,0x75,0x6e,0x69,0x32,0x31,0x41,0x30,0x07,0x75,
30619
+0x6e,0x69,0x32,0x31,0x41,0x31,0x07,0x75,0x6e,0x69,0x32,0x31,
30620
+0x41,0x32,0x07,0x75,0x6e,0x69,0x32,0x31,0x41,0x33,0x07,0x75,
30621
+0x6e,0x69,0x32,0x31,0x41,0x34,0x07,0x75,0x6e,0x69,0x32,0x31,
30622
+0x41,0x35,0x07,0x75,0x6e,0x69,0x32,0x31,0x41,0x36,0x07,0x75,
30623
+0x6e,0x69,0x32,0x31,0x41,0x37,0x0c,0x61,0x72,0x72,0x6f,0x77,
30624
+0x75,0x70,0x64,0x6e,0x62,0x73,0x65,0x07,0x75,0x6e,0x69,0x32,
30625
+0x31,0x41,0x39,0x07,0x75,0x6e,0x69,0x32,0x31,0x41,0x41,0x07,
30626
+0x75,0x6e,0x69,0x32,0x31,0x41,0x42,0x07,0x75,0x6e,0x69,0x32,
30627
+0x31,0x41,0x43,0x07,0x75,0x6e,0x69,0x32,0x31,0x41,0x44,0x07,
30628
+0x75,0x6e,0x69,0x32,0x31,0x41,0x45,0x07,0x75,0x6e,0x69,0x32,
30629
+0x31,0x41,0x46,0x07,0x75,0x6e,0x69,0x32,0x31,0x42,0x30,0x07,
30630
+0x75,0x6e,0x69,0x32,0x31,0x42,0x31,0x07,0x75,0x6e,0x69,0x32,
30631
+0x31,0x42,0x32,0x07,0x75,0x6e,0x69,0x32,0x31,0x42,0x33,0x07,
30632
+0x75,0x6e,0x69,0x32,0x31,0x42,0x34,0x0e,0x63,0x61,0x72,0x72,
30633
+0x69,0x61,0x67,0x65,0x72,0x65,0x74,0x75,0x72,0x6e,0x07,0x75,
30634
+0x6e,0x69,0x32,0x31,0x42,0x36,0x07,0x75,0x6e,0x69,0x32,0x31,
30635
+0x42,0x37,0x07,0x75,0x6e,0x69,0x32,0x31,0x42,0x38,0x07,0x75,
30636
+0x6e,0x69,0x32,0x31,0x42,0x39,0x07,0x75,0x6e,0x69,0x32,0x31,
30637
+0x42,0x41,0x07,0x75,0x6e,0x69,0x32,0x31,0x42,0x42,0x07,0x75,
30638
+0x6e,0x69,0x32,0x31,0x42,0x43,0x07,0x75,0x6e,0x69,0x32,0x31,
30639
+0x42,0x44,0x07,0x75,0x6e,0x69,0x32,0x31,0x42,0x45,0x07,0x75,
30640
+0x6e,0x69,0x32,0x31,0x42,0x46,0x07,0x75,0x6e,0x69,0x32,0x31,
30641
+0x43,0x30,0x07,0x75,0x6e,0x69,0x32,0x31,0x43,0x31,0x07,0x75,
30642
+0x6e,0x69,0x32,0x31,0x43,0x32,0x07,0x75,0x6e,0x69,0x32,0x31,
30643
+0x43,0x33,0x07,0x75,0x6e,0x69,0x32,0x31,0x43,0x34,0x07,0x75,
30644
+0x6e,0x69,0x32,0x31,0x43,0x35,0x07,0x75,0x6e,0x69,0x32,0x31,
30645
+0x43,0x36,0x07,0x75,0x6e,0x69,0x32,0x31,0x43,0x37,0x07,0x75,
30646
+0x6e,0x69,0x32,0x31,0x43,0x38,0x07,0x75,0x6e,0x69,0x32,0x31,
30647
+0x43,0x39,0x07,0x75,0x6e,0x69,0x32,0x31,0x43,0x41,0x07,0x75,
30648
+0x6e,0x69,0x32,0x31,0x43,0x42,0x07,0x75,0x6e,0x69,0x32,0x31,
30649
+0x43,0x43,0x07,0x75,0x6e,0x69,0x32,0x31,0x43,0x44,0x07,0x75,
30650
+0x6e,0x69,0x32,0x31,0x43,0x45,0x07,0x75,0x6e,0x69,0x32,0x31,
30651
+0x43,0x46,0x0c,0x61,0x72,0x72,0x6f,0x77,0x64,0x62,0x6c,0x6c,
30652
+0x65,0x66,0x74,0x0a,0x61,0x72,0x72,0x6f,0x77,0x64,0x62,0x6c,
30653
+0x75,0x70,0x0d,0x61,0x72,0x72,0x6f,0x77,0x64,0x62,0x6c,0x72,
30654
+0x69,0x67,0x68,0x74,0x0c,0x61,0x72,0x72,0x6f,0x77,0x64,0x62,
30655
+0x6c,0x64,0x6f,0x77,0x6e,0x0c,0x61,0x72,0x72,0x6f,0x77,0x64,
30656
+0x62,0x6c,0x62,0x6f,0x74,0x68,0x07,0x75,0x6e,0x69,0x32,0x31,
30657
+0x44,0x35,0x07,0x75,0x6e,0x69,0x32,0x31,0x44,0x36,0x07,0x75,
30658
+0x6e,0x69,0x32,0x31,0x44,0x37,0x07,0x75,0x6e,0x69,0x32,0x31,
30659
+0x44,0x38,0x07,0x75,0x6e,0x69,0x32,0x31,0x44,0x39,0x07,0x75,
30660
+0x6e,0x69,0x32,0x31,0x44,0x41,0x07,0x75,0x6e,0x69,0x32,0x31,
30661
+0x44,0x42,0x07,0x75,0x6e,0x69,0x32,0x31,0x44,0x43,0x07,0x75,
30662
+0x6e,0x69,0x32,0x31,0x44,0x44,0x07,0x75,0x6e,0x69,0x32,0x31,
30663
+0x44,0x45,0x07,0x75,0x6e,0x69,0x32,0x31,0x44,0x46,0x07,0x75,
30664
+0x6e,0x69,0x32,0x31,0x45,0x30,0x07,0x75,0x6e,0x69,0x32,0x31,
30665
+0x45,0x31,0x07,0x75,0x6e,0x69,0x32,0x31,0x45,0x32,0x07,0x75,
30666
+0x6e,0x69,0x32,0x31,0x45,0x33,0x07,0x75,0x6e,0x69,0x32,0x31,
30667
+0x45,0x34,0x07,0x75,0x6e,0x69,0x32,0x31,0x45,0x35,0x07,0x75,
30668
+0x6e,0x69,0x32,0x31,0x45,0x36,0x07,0x75,0x6e,0x69,0x32,0x31,
30669
+0x45,0x37,0x07,0x75,0x6e,0x69,0x32,0x31,0x45,0x38,0x07,0x75,
30670
+0x6e,0x69,0x32,0x31,0x45,0x39,0x07,0x75,0x6e,0x69,0x32,0x31,
30671
+0x45,0x41,0x07,0x75,0x6e,0x69,0x32,0x31,0x45,0x42,0x07,0x75,
30672
+0x6e,0x69,0x32,0x31,0x45,0x43,0x07,0x75,0x6e,0x69,0x32,0x31,
30673
+0x45,0x44,0x07,0x75,0x6e,0x69,0x32,0x31,0x45,0x45,0x07,0x75,
30674
+0x6e,0x69,0x32,0x31,0x45,0x46,0x07,0x75,0x6e,0x69,0x32,0x31,
30675
+0x46,0x30,0x07,0x75,0x6e,0x69,0x32,0x31,0x46,0x31,0x07,0x75,
30676
+0x6e,0x69,0x32,0x31,0x46,0x32,0x07,0x75,0x6e,0x69,0x32,0x31,
30677
+0x46,0x33,0x07,0x75,0x6e,0x69,0x32,0x31,0x46,0x34,0x07,0x75,
30678
+0x6e,0x69,0x32,0x31,0x46,0x35,0x07,0x75,0x6e,0x69,0x32,0x31,
30679
+0x46,0x36,0x07,0x75,0x6e,0x69,0x32,0x31,0x46,0x37,0x07,0x75,
30680
+0x6e,0x69,0x32,0x31,0x46,0x38,0x07,0x75,0x6e,0x69,0x32,0x31,
30681
+0x46,0x39,0x07,0x75,0x6e,0x69,0x32,0x31,0x46,0x41,0x07,0x75,
30682
+0x6e,0x69,0x32,0x31,0x46,0x42,0x07,0x75,0x6e,0x69,0x32,0x31,
30683
+0x46,0x43,0x07,0x75,0x6e,0x69,0x32,0x31,0x46,0x44,0x07,0x75,
30684
+0x6e,0x69,0x32,0x31,0x46,0x45,0x07,0x75,0x6e,0x69,0x32,0x31,
30685
+0x46,0x46,0x09,0x75,0x6e,0x69,0x76,0x65,0x72,0x73,0x61,0x6c,
30686
+0x0b,0x65,0x78,0x69,0x73,0x74,0x65,0x6e,0x74,0x69,0x61,0x6c,
30687
+0x07,0x75,0x6e,0x69,0x32,0x32,0x30,0x34,0x08,0x67,0x72,0x61,
30688
+0x64,0x69,0x65,0x6e,0x74,0x07,0x65,0x6c,0x65,0x6d,0x65,0x6e,
30689
+0x74,0x0a,0x6e,0x6f,0x74,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,
30690
+0x08,0x73,0x75,0x63,0x68,0x74,0x68,0x61,0x74,0x07,0x75,0x6e,
30691
+0x69,0x32,0x32,0x30,0x43,0x07,0x75,0x6e,0x69,0x32,0x32,0x31,
30692
+0x30,0x07,0x75,0x6e,0x69,0x32,0x32,0x31,0x33,0x07,0x75,0x6e,
30693
+0x69,0x32,0x32,0x31,0x34,0x07,0x75,0x6e,0x69,0x32,0x32,0x31,
30694
+0x35,0x0c,0x61,0x73,0x74,0x65,0x72,0x69,0x73,0x6b,0x6d,0x61,
30695
+0x74,0x68,0x07,0x75,0x6e,0x69,0x32,0x32,0x31,0x38,0x07,0x75,
30696
+0x6e,0x69,0x32,0x32,0x31,0x39,0x07,0x75,0x6e,0x69,0x32,0x32,
30697
+0x31,0x42,0x07,0x75,0x6e,0x69,0x32,0x32,0x31,0x43,0x0c,0x70,
30698
+0x72,0x6f,0x70,0x6f,0x72,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x0a,
30699
+0x6f,0x72,0x74,0x68,0x6f,0x67,0x6f,0x6e,0x61,0x6c,0x05,0x61,
30700
+0x6e,0x67,0x6c,0x65,0x07,0x75,0x6e,0x69,0x32,0x32,0x32,0x33,
30701
+0x07,0x75,0x6e,0x69,0x32,0x32,0x32,0x34,0x07,0x75,0x6e,0x69,
30702
+0x32,0x32,0x32,0x35,0x07,0x75,0x6e,0x69,0x32,0x32,0x32,0x36,
30703
+0x0a,0x6c,0x6f,0x67,0x69,0x63,0x61,0x6c,0x61,0x6e,0x64,0x09,
30704
+0x6c,0x6f,0x67,0x69,0x63,0x61,0x6c,0x6f,0x72,0x0c,0x69,0x6e,
30705
+0x74,0x65,0x72,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0x05,0x75,
30706
+0x6e,0x69,0x6f,0x6e,0x07,0x75,0x6e,0x69,0x32,0x32,0x32,0x43,
30707
+0x07,0x75,0x6e,0x69,0x32,0x32,0x32,0x44,0x07,0x75,0x6e,0x69,
30708
+0x32,0x32,0x33,0x38,0x07,0x75,0x6e,0x69,0x32,0x32,0x33,0x39,
30709
+0x07,0x75,0x6e,0x69,0x32,0x32,0x33,0x41,0x07,0x75,0x6e,0x69,
30710
+0x32,0x32,0x33,0x42,0x07,0x73,0x69,0x6d,0x69,0x6c,0x61,0x72,
30711
+0x07,0x75,0x6e,0x69,0x32,0x32,0x33,0x44,0x07,0x75,0x6e,0x69,
30712
+0x32,0x32,0x34,0x32,0x07,0x75,0x6e,0x69,0x32,0x32,0x34,0x33,
30713
+0x07,0x75,0x6e,0x69,0x32,0x32,0x35,0x30,0x07,0x75,0x6e,0x69,
30714
+0x32,0x32,0x35,0x31,0x07,0x75,0x6e,0x69,0x32,0x32,0x35,0x32,
30715
+0x07,0x75,0x6e,0x69,0x32,0x32,0x35,0x33,0x07,0x75,0x6e,0x69,
30716
+0x32,0x32,0x35,0x34,0x07,0x75,0x6e,0x69,0x32,0x32,0x35,0x35,
30717
+0x0b,0x65,0x71,0x75,0x69,0x76,0x61,0x6c,0x65,0x6e,0x63,0x65,
30718
+0x0c,0x70,0x72,0x6f,0x70,0x65,0x72,0x73,0x75,0x62,0x73,0x65,
30719
+0x74,0x0e,0x70,0x72,0x6f,0x70,0x65,0x72,0x73,0x75,0x70,0x65,
30720
+0x72,0x73,0x65,0x74,0x09,0x6e,0x6f,0x74,0x73,0x75,0x62,0x73,
30721
+0x65,0x74,0x07,0x75,0x6e,0x69,0x32,0x32,0x38,0x35,0x0c,0x72,
30722
+0x65,0x66,0x6c,0x65,0x78,0x73,0x75,0x62,0x73,0x65,0x74,0x0e,
30723
+0x72,0x65,0x66,0x6c,0x65,0x78,0x73,0x75,0x70,0x65,0x72,0x73,
30724
+0x65,0x74,0x07,0x75,0x6e,0x69,0x32,0x32,0x38,0x43,0x07,0x75,
30725
+0x6e,0x69,0x32,0x32,0x38,0x44,0x07,0x75,0x6e,0x69,0x32,0x32,
30726
+0x38,0x45,0x07,0x75,0x6e,0x69,0x32,0x32,0x38,0x46,0x07,0x75,
30727
+0x6e,0x69,0x32,0x32,0x39,0x30,0x07,0x75,0x6e,0x69,0x32,0x32,
30728
+0x39,0x31,0x07,0x75,0x6e,0x69,0x32,0x32,0x39,0x32,0x07,0x75,
30729
+0x6e,0x69,0x32,0x32,0x39,0x33,0x07,0x75,0x6e,0x69,0x32,0x32,
30730
+0x39,0x34,0x0a,0x63,0x69,0x72,0x63,0x6c,0x65,0x70,0x6c,0x75,
30731
+0x73,0x07,0x75,0x6e,0x69,0x32,0x32,0x39,0x36,0x0e,0x63,0x69,
30732
+0x72,0x63,0x6c,0x65,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x79,
30733
+0x07,0x75,0x6e,0x69,0x32,0x32,0x39,0x38,0x07,0x75,0x6e,0x69,
30734
+0x32,0x32,0x39,0x39,0x07,0x75,0x6e,0x69,0x32,0x32,0x39,0x41,
30735
+0x07,0x75,0x6e,0x69,0x32,0x32,0x39,0x42,0x07,0x75,0x6e,0x69,
30736
+0x32,0x32,0x39,0x43,0x07,0x75,0x6e,0x69,0x32,0x32,0x39,0x44,
30737
+0x07,0x75,0x6e,0x69,0x32,0x32,0x39,0x45,0x07,0x75,0x6e,0x69,
30738
+0x32,0x32,0x39,0x46,0x07,0x75,0x6e,0x69,0x32,0x32,0x41,0x30,
30739
+0x07,0x75,0x6e,0x69,0x32,0x32,0x41,0x31,0x07,0x75,0x6e,0x69,
30740
+0x32,0x32,0x41,0x32,0x07,0x75,0x6e,0x69,0x32,0x32,0x41,0x33,
30741
+0x07,0x75,0x6e,0x69,0x32,0x32,0x41,0x34,0x0d,0x70,0x65,0x72,
30742
+0x70,0x65,0x6e,0x64,0x69,0x63,0x75,0x6c,0x61,0x72,0x07,0x75,
30743
+0x6e,0x69,0x32,0x32,0x41,0x36,0x07,0x75,0x6e,0x69,0x32,0x32,
30744
+0x41,0x37,0x07,0x75,0x6e,0x69,0x32,0x32,0x41,0x38,0x07,0x75,
30745
+0x6e,0x69,0x32,0x32,0x41,0x39,0x07,0x75,0x6e,0x69,0x32,0x32,
30746
+0x41,0x41,0x07,0x75,0x6e,0x69,0x32,0x32,0x41,0x42,0x07,0x75,
30747
+0x6e,0x69,0x32,0x32,0x41,0x43,0x07,0x75,0x6e,0x69,0x32,0x32,
30748
+0x41,0x44,0x07,0x75,0x6e,0x69,0x32,0x32,0x41,0x45,0x07,0x75,
30749
+0x6e,0x69,0x32,0x32,0x41,0x46,0x07,0x75,0x6e,0x69,0x32,0x32,
30750
+0x43,0x34,0x07,0x64,0x6f,0x74,0x6d,0x61,0x74,0x68,0x05,0x68,
30751
+0x6f,0x75,0x73,0x65,0x07,0x75,0x6e,0x69,0x32,0x33,0x30,0x38,
30752
+0x07,0x75,0x6e,0x69,0x32,0x33,0x30,0x39,0x07,0x75,0x6e,0x69,
30753
+0x32,0x33,0x30,0x41,0x07,0x75,0x6e,0x69,0x32,0x33,0x30,0x42,
30754
+0x0d,0x72,0x65,0x76,0x6c,0x6f,0x67,0x69,0x63,0x61,0x6c,0x6e,
30755
+0x6f,0x74,0x07,0x75,0x6e,0x69,0x32,0x33,0x31,0x31,0x07,0x75,
30756
+0x6e,0x69,0x32,0x33,0x31,0x38,0x07,0x75,0x6e,0x69,0x32,0x33,
30757
+0x31,0x39,0x0a,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x6c,0x74,
30758
+0x70,0x0a,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,0x6c,0x62,0x74,
30759
+0x07,0x75,0x6e,0x69,0x32,0x33,0x32,0x35,0x07,0x75,0x6e,0x69,
30760
+0x32,0x33,0x32,0x38,0x07,0x75,0x6e,0x69,0x32,0x33,0x37,0x44,
30761
+0x07,0x75,0x6e,0x69,0x32,0x33,0x39,0x42,0x07,0x75,0x6e,0x69,
30762
+0x32,0x33,0x39,0x43,0x07,0x75,0x6e,0x69,0x32,0x33,0x39,0x44,
30763
+0x07,0x75,0x6e,0x69,0x32,0x33,0x39,0x45,0x07,0x75,0x6e,0x69,
30764
+0x32,0x33,0x39,0x46,0x07,0x75,0x6e,0x69,0x32,0x33,0x41,0x30,
30765
+0x07,0x75,0x6e,0x69,0x32,0x33,0x41,0x31,0x07,0x75,0x6e,0x69,
30766
+0x32,0x33,0x41,0x32,0x07,0x75,0x6e,0x69,0x32,0x33,0x41,0x33,
30767
+0x07,0x75,0x6e,0x69,0x32,0x33,0x41,0x34,0x07,0x75,0x6e,0x69,
30768
+0x32,0x33,0x41,0x35,0x07,0x75,0x6e,0x69,0x32,0x33,0x41,0x36,
30769
+0x07,0x75,0x6e,0x69,0x32,0x33,0x41,0x37,0x07,0x75,0x6e,0x69,
30770
+0x32,0x33,0x41,0x38,0x07,0x75,0x6e,0x69,0x32,0x33,0x41,0x39,
30771
+0x07,0x75,0x6e,0x69,0x32,0x33,0x41,0x41,0x07,0x75,0x6e,0x69,
30772
+0x32,0x33,0x41,0x42,0x07,0x75,0x6e,0x69,0x32,0x33,0x41,0x43,
30773
+0x07,0x75,0x6e,0x69,0x32,0x33,0x41,0x44,0x07,0x75,0x6e,0x69,
30774
+0x32,0x33,0x41,0x45,0x07,0x75,0x6e,0x69,0x32,0x33,0x42,0x37,
30775
+0x07,0x75,0x6e,0x69,0x32,0x33,0x43,0x46,0x07,0x75,0x6e,0x69,
30776
+0x32,0x34,0x32,0x33,0x08,0x53,0x46,0x31,0x30,0x30,0x30,0x30,
30777
+0x30,0x07,0x75,0x6e,0x69,0x32,0x35,0x30,0x31,0x08,0x53,0x46,
30778
+0x31,0x31,0x30,0x30,0x30,0x30,0x07,0x75,0x6e,0x69,0x32,0x35,
30779
+0x30,0x33,0x07,0x75,0x6e,0x69,0x32,0x35,0x30,0x34,0x07,0x75,
30780
+0x6e,0x69,0x32,0x35,0x30,0x35,0x07,0x75,0x6e,0x69,0x32,0x35,
30781
+0x30,0x36,0x07,0x75,0x6e,0x69,0x32,0x35,0x30,0x37,0x07,0x75,
30782
+0x6e,0x69,0x32,0x35,0x30,0x38,0x07,0x75,0x6e,0x69,0x32,0x35,
30783
+0x30,0x39,0x07,0x75,0x6e,0x69,0x32,0x35,0x30,0x41,0x07,0x75,
30784
+0x6e,0x69,0x32,0x35,0x30,0x42,0x08,0x53,0x46,0x30,0x31,0x30,
30785
+0x30,0x30,0x30,0x07,0x75,0x6e,0x69,0x32,0x35,0x30,0x44,0x07,
30786
+0x75,0x6e,0x69,0x32,0x35,0x30,0x45,0x07,0x75,0x6e,0x69,0x32,
30787
+0x35,0x30,0x46,0x08,0x53,0x46,0x30,0x33,0x30,0x30,0x30,0x30,
30788
+0x07,0x75,0x6e,0x69,0x32,0x35,0x31,0x31,0x07,0x75,0x6e,0x69,
30789
+0x32,0x35,0x31,0x32,0x07,0x75,0x6e,0x69,0x32,0x35,0x31,0x33,
30790
+0x08,0x53,0x46,0x30,0x32,0x30,0x30,0x30,0x30,0x07,0x75,0x6e,
30791
+0x69,0x32,0x35,0x31,0x35,0x07,0x75,0x6e,0x69,0x32,0x35,0x31,
30792
+0x36,0x07,0x75,0x6e,0x69,0x32,0x35,0x31,0x37,0x08,0x53,0x46,
30793
+0x30,0x34,0x30,0x30,0x30,0x30,0x07,0x75,0x6e,0x69,0x32,0x35,
30794
+0x31,0x39,0x07,0x75,0x6e,0x69,0x32,0x35,0x31,0x41,0x07,0x75,
30795
+0x6e,0x69,0x32,0x35,0x31,0x42,0x08,0x53,0x46,0x30,0x38,0x30,
30796
+0x30,0x30,0x30,0x07,0x75,0x6e,0x69,0x32,0x35,0x31,0x44,0x07,
30797
+0x75,0x6e,0x69,0x32,0x35,0x31,0x45,0x07,0x75,0x6e,0x69,0x32,
30798
+0x35,0x31,0x46,0x07,0x75,0x6e,0x69,0x32,0x35,0x32,0x30,0x07,
30799
+0x75,0x6e,0x69,0x32,0x35,0x32,0x31,0x07,0x75,0x6e,0x69,0x32,
30800
+0x35,0x32,0x32,0x07,0x75,0x6e,0x69,0x32,0x35,0x32,0x33,0x08,
30801
+0x53,0x46,0x30,0x39,0x30,0x30,0x30,0x30,0x07,0x75,0x6e,0x69,
30802
+0x32,0x35,0x32,0x35,0x07,0x75,0x6e,0x69,0x32,0x35,0x32,0x36,
30803
+0x07,0x75,0x6e,0x69,0x32,0x35,0x32,0x37,0x07,0x75,0x6e,0x69,
30804
+0x32,0x35,0x32,0x38,0x07,0x75,0x6e,0x69,0x32,0x35,0x32,0x39,
30805
+0x07,0x75,0x6e,0x69,0x32,0x35,0x32,0x41,0x07,0x75,0x6e,0x69,
30806
+0x32,0x35,0x32,0x42,0x08,0x53,0x46,0x30,0x36,0x30,0x30,0x30,
30807
+0x30,0x07,0x75,0x6e,0x69,0x32,0x35,0x32,0x44,0x07,0x75,0x6e,
30808
+0x69,0x32,0x35,0x32,0x45,0x07,0x75,0x6e,0x69,0x32,0x35,0x32,
30809
+0x46,0x07,0x75,0x6e,0x69,0x32,0x35,0x33,0x30,0x07,0x75,0x6e,
30810
+0x69,0x32,0x35,0x33,0x31,0x07,0x75,0x6e,0x69,0x32,0x35,0x33,
30811
+0x32,0x07,0x75,0x6e,0x69,0x32,0x35,0x33,0x33,0x08,0x53,0x46,
30812
+0x30,0x37,0x30,0x30,0x30,0x30,0x07,0x75,0x6e,0x69,0x32,0x35,
30813
+0x33,0x35,0x07,0x75,0x6e,0x69,0x32,0x35,0x33,0x36,0x07,0x75,
30814
+0x6e,0x69,0x32,0x35,0x33,0x37,0x07,0x75,0x6e,0x69,0x32,0x35,
30815
+0x33,0x38,0x07,0x75,0x6e,0x69,0x32,0x35,0x33,0x39,0x07,0x75,
30816
+0x6e,0x69,0x32,0x35,0x33,0x41,0x07,0x75,0x6e,0x69,0x32,0x35,
30817
+0x33,0x42,0x08,0x53,0x46,0x30,0x35,0x30,0x30,0x30,0x30,0x07,
30818
+0x75,0x6e,0x69,0x32,0x35,0x33,0x44,0x07,0x75,0x6e,0x69,0x32,
30819
+0x35,0x33,0x45,0x07,0x75,0x6e,0x69,0x32,0x35,0x33,0x46,0x07,
30820
+0x75,0x6e,0x69,0x32,0x35,0x34,0x30,0x07,0x75,0x6e,0x69,0x32,
30821
+0x35,0x34,0x31,0x07,0x75,0x6e,0x69,0x32,0x35,0x34,0x32,0x07,
30822
+0x75,0x6e,0x69,0x32,0x35,0x34,0x33,0x07,0x75,0x6e,0x69,0x32,
30823
+0x35,0x34,0x34,0x07,0x75,0x6e,0x69,0x32,0x35,0x34,0x35,0x07,
30824
+0x75,0x6e,0x69,0x32,0x35,0x34,0x36,0x07,0x75,0x6e,0x69,0x32,
30825
+0x35,0x34,0x37,0x07,0x75,0x6e,0x69,0x32,0x35,0x34,0x38,0x07,
30826
+0x75,0x6e,0x69,0x32,0x35,0x34,0x39,0x07,0x75,0x6e,0x69,0x32,
30827
+0x35,0x34,0x41,0x07,0x75,0x6e,0x69,0x32,0x35,0x34,0x42,0x07,
30828
+0x75,0x6e,0x69,0x32,0x35,0x34,0x43,0x07,0x75,0x6e,0x69,0x32,
30829
+0x35,0x34,0x44,0x07,0x75,0x6e,0x69,0x32,0x35,0x34,0x45,0x07,
30830
+0x75,0x6e,0x69,0x32,0x35,0x34,0x46,0x08,0x53,0x46,0x34,0x33,
30831
+0x30,0x30,0x30,0x30,0x08,0x53,0x46,0x32,0x34,0x30,0x30,0x30,
30832
+0x30,0x08,0x53,0x46,0x35,0x31,0x30,0x30,0x30,0x30,0x08,0x53,
30833
+0x46,0x35,0x32,0x30,0x30,0x30,0x30,0x08,0x53,0x46,0x33,0x39,
30834
+0x30,0x30,0x30,0x30,0x08,0x53,0x46,0x32,0x32,0x30,0x30,0x30,
30835
+0x30,0x08,0x53,0x46,0x32,0x31,0x30,0x30,0x30,0x30,0x08,0x53,
30836
+0x46,0x32,0x35,0x30,0x30,0x30,0x30,0x08,0x53,0x46,0x35,0x30,
30837
+0x30,0x30,0x30,0x30,0x08,0x53,0x46,0x34,0x39,0x30,0x30,0x30,
30838
+0x30,0x08,0x53,0x46,0x33,0x38,0x30,0x30,0x30,0x30,0x08,0x53,
30839
+0x46,0x32,0x38,0x30,0x30,0x30,0x30,0x08,0x53,0x46,0x32,0x37,
30840
+0x30,0x30,0x30,0x30,0x08,0x53,0x46,0x32,0x36,0x30,0x30,0x30,
30841
+0x30,0x08,0x53,0x46,0x33,0x36,0x30,0x30,0x30,0x30,0x08,0x53,
30842
+0x46,0x33,0x37,0x30,0x30,0x30,0x30,0x08,0x53,0x46,0x34,0x32,
30843
+0x30,0x30,0x30,0x30,0x08,0x53,0x46,0x31,0x39,0x30,0x30,0x30,
30844
+0x30,0x08,0x53,0x46,0x32,0x30,0x30,0x30,0x30,0x30,0x08,0x53,
30845
+0x46,0x32,0x33,0x30,0x30,0x30,0x30,0x08,0x53,0x46,0x34,0x37,
30846
+0x30,0x30,0x30,0x30,0x08,0x53,0x46,0x34,0x38,0x30,0x30,0x30,
30847
+0x30,0x08,0x53,0x46,0x34,0x31,0x30,0x30,0x30,0x30,0x08,0x53,
30848
+0x46,0x34,0x35,0x30,0x30,0x30,0x30,0x08,0x53,0x46,0x34,0x36,
30849
+0x30,0x30,0x30,0x30,0x08,0x53,0x46,0x34,0x30,0x30,0x30,0x30,
30850
+0x30,0x08,0x53,0x46,0x35,0x34,0x30,0x30,0x30,0x30,0x08,0x53,
30851
+0x46,0x35,0x33,0x30,0x30,0x30,0x30,0x08,0x53,0x46,0x34,0x34,
30852
+0x30,0x30,0x30,0x30,0x07,0x75,0x6e,0x69,0x32,0x35,0x36,0x44,
30853
+0x07,0x75,0x6e,0x69,0x32,0x35,0x36,0x45,0x07,0x75,0x6e,0x69,
30854
+0x32,0x35,0x36,0x46,0x07,0x75,0x6e,0x69,0x32,0x35,0x37,0x30,
30855
+0x07,0x75,0x6e,0x69,0x32,0x35,0x37,0x31,0x07,0x75,0x6e,0x69,
30856
+0x32,0x35,0x37,0x32,0x07,0x75,0x6e,0x69,0x32,0x35,0x37,0x33,
30857
+0x07,0x75,0x6e,0x69,0x32,0x35,0x37,0x34,0x07,0x75,0x6e,0x69,
30858
+0x32,0x35,0x37,0x35,0x07,0x75,0x6e,0x69,0x32,0x35,0x37,0x36,
30859
+0x07,0x75,0x6e,0x69,0x32,0x35,0x37,0x37,0x07,0x75,0x6e,0x69,
30860
+0x32,0x35,0x37,0x38,0x07,0x75,0x6e,0x69,0x32,0x35,0x37,0x39,
30861
+0x07,0x75,0x6e,0x69,0x32,0x35,0x37,0x41,0x07,0x75,0x6e,0x69,
30862
+0x32,0x35,0x37,0x42,0x07,0x75,0x6e,0x69,0x32,0x35,0x37,0x43,
30863
+0x07,0x75,0x6e,0x69,0x32,0x35,0x37,0x44,0x07,0x75,0x6e,0x69,
30864
+0x32,0x35,0x37,0x45,0x07,0x75,0x6e,0x69,0x32,0x35,0x37,0x46,
30865
+0x07,0x75,0x70,0x62,0x6c,0x6f,0x63,0x6b,0x07,0x75,0x6e,0x69,
30866
+0x32,0x35,0x38,0x31,0x07,0x75,0x6e,0x69,0x32,0x35,0x38,0x32,
30867
+0x07,0x75,0x6e,0x69,0x32,0x35,0x38,0x33,0x07,0x64,0x6e,0x62,
30868
+0x6c,0x6f,0x63,0x6b,0x07,0x75,0x6e,0x69,0x32,0x35,0x38,0x35,
30869
+0x07,0x75,0x6e,0x69,0x32,0x35,0x38,0x36,0x07,0x75,0x6e,0x69,
30870
+0x32,0x35,0x38,0x37,0x05,0x62,0x6c,0x6f,0x63,0x6b,0x07,0x75,
30871
+0x6e,0x69,0x32,0x35,0x38,0x39,0x07,0x75,0x6e,0x69,0x32,0x35,
30872
+0x38,0x41,0x07,0x75,0x6e,0x69,0x32,0x35,0x38,0x42,0x07,0x6c,
30873
+0x66,0x62,0x6c,0x6f,0x63,0x6b,0x07,0x75,0x6e,0x69,0x32,0x35,
30874
+0x38,0x44,0x07,0x75,0x6e,0x69,0x32,0x35,0x38,0x45,0x07,0x75,
30875
+0x6e,0x69,0x32,0x35,0x38,0x46,0x07,0x72,0x74,0x62,0x6c,0x6f,
30876
+0x63,0x6b,0x07,0x6c,0x74,0x73,0x68,0x61,0x64,0x65,0x05,0x73,
30877
+0x68,0x61,0x64,0x65,0x07,0x64,0x6b,0x73,0x68,0x61,0x64,0x65,
30878
+0x07,0x75,0x6e,0x69,0x32,0x35,0x39,0x34,0x07,0x75,0x6e,0x69,
30879
+0x32,0x35,0x39,0x35,0x07,0x75,0x6e,0x69,0x32,0x35,0x39,0x36,
30880
+0x07,0x75,0x6e,0x69,0x32,0x35,0x39,0x37,0x07,0x75,0x6e,0x69,
30881
+0x32,0x35,0x39,0x38,0x07,0x75,0x6e,0x69,0x32,0x35,0x39,0x39,
30882
+0x07,0x75,0x6e,0x69,0x32,0x35,0x39,0x41,0x07,0x75,0x6e,0x69,
30883
+0x32,0x35,0x39,0x42,0x07,0x75,0x6e,0x69,0x32,0x35,0x39,0x43,
30884
+0x07,0x75,0x6e,0x69,0x32,0x35,0x39,0x44,0x07,0x75,0x6e,0x69,
30885
+0x32,0x35,0x39,0x45,0x07,0x75,0x6e,0x69,0x32,0x35,0x39,0x46,
30886
+0x09,0x66,0x69,0x6c,0x6c,0x65,0x64,0x62,0x6f,0x78,0x06,0x48,
30887
+0x32,0x32,0x30,0x37,0x33,0x07,0x75,0x6e,0x69,0x32,0x35,0x41,
30888
+0x32,0x07,0x75,0x6e,0x69,0x32,0x35,0x41,0x33,0x07,0x75,0x6e,
30889
+0x69,0x32,0x35,0x41,0x34,0x07,0x75,0x6e,0x69,0x32,0x35,0x41,
30890
+0x35,0x07,0x75,0x6e,0x69,0x32,0x35,0x41,0x36,0x07,0x75,0x6e,
30891
+0x69,0x32,0x35,0x41,0x37,0x07,0x75,0x6e,0x69,0x32,0x35,0x41,
30892
+0x38,0x07,0x75,0x6e,0x69,0x32,0x35,0x41,0x39,0x06,0x48,0x31,
30893
+0x38,0x35,0x34,0x33,0x06,0x48,0x31,0x38,0x35,0x35,0x31,0x0a,
30894
+0x66,0x69,0x6c,0x6c,0x65,0x64,0x72,0x65,0x63,0x74,0x07,0x75,
30895
+0x6e,0x69,0x32,0x35,0x41,0x44,0x07,0x75,0x6e,0x69,0x32,0x35,
30896
+0x41,0x45,0x07,0x75,0x6e,0x69,0x32,0x35,0x41,0x46,0x07,0x75,
30897
+0x6e,0x69,0x32,0x35,0x42,0x30,0x07,0x75,0x6e,0x69,0x32,0x35,
30898
+0x42,0x31,0x07,0x74,0x72,0x69,0x61,0x67,0x75,0x70,0x07,0x75,
30899
+0x6e,0x69,0x32,0x35,0x42,0x33,0x07,0x75,0x6e,0x69,0x32,0x35,
30900
+0x42,0x34,0x07,0x75,0x6e,0x69,0x32,0x35,0x42,0x35,0x07,0x75,
30901
+0x6e,0x69,0x32,0x35,0x42,0x36,0x07,0x75,0x6e,0x69,0x32,0x35,
30902
+0x42,0x37,0x07,0x75,0x6e,0x69,0x32,0x35,0x42,0x38,0x07,0x75,
30903
+0x6e,0x69,0x32,0x35,0x42,0x39,0x07,0x74,0x72,0x69,0x61,0x67,
30904
+0x72,0x74,0x07,0x75,0x6e,0x69,0x32,0x35,0x42,0x42,0x07,0x74,
30905
+0x72,0x69,0x61,0x67,0x64,0x6e,0x07,0x75,0x6e,0x69,0x32,0x35,
30906
+0x42,0x44,0x07,0x75,0x6e,0x69,0x32,0x35,0x42,0x45,0x07,0x75,
30907
+0x6e,0x69,0x32,0x35,0x42,0x46,0x07,0x75,0x6e,0x69,0x32,0x35,
30908
+0x43,0x30,0x07,0x75,0x6e,0x69,0x32,0x35,0x43,0x31,0x07,0x75,
30909
+0x6e,0x69,0x32,0x35,0x43,0x32,0x07,0x75,0x6e,0x69,0x32,0x35,
30910
+0x43,0x33,0x07,0x74,0x72,0x69,0x61,0x67,0x6c,0x66,0x07,0x75,
30911
+0x6e,0x69,0x32,0x35,0x43,0x35,0x07,0x75,0x6e,0x69,0x32,0x35,
30912
+0x43,0x36,0x07,0x75,0x6e,0x69,0x32,0x35,0x43,0x37,0x07,0x75,
30913
+0x6e,0x69,0x32,0x35,0x43,0x38,0x07,0x75,0x6e,0x69,0x32,0x35,
30914
+0x43,0x39,0x06,0x63,0x69,0x72,0x63,0x6c,0x65,0x07,0x75,0x6e,
30915
+0x69,0x32,0x35,0x43,0x43,0x07,0x75,0x6e,0x69,0x32,0x35,0x43,
30916
+0x44,0x07,0x75,0x6e,0x69,0x32,0x35,0x43,0x45,0x06,0x48,0x31,
30917
+0x38,0x35,0x33,0x33,0x07,0x75,0x6e,0x69,0x32,0x35,0x44,0x30,
30918
+0x07,0x75,0x6e,0x69,0x32,0x35,0x44,0x31,0x07,0x75,0x6e,0x69,
30919
+0x32,0x35,0x44,0x32,0x07,0x75,0x6e,0x69,0x32,0x35,0x44,0x33,
30920
+0x07,0x75,0x6e,0x69,0x32,0x35,0x44,0x34,0x07,0x75,0x6e,0x69,
30921
+0x32,0x35,0x44,0x35,0x07,0x75,0x6e,0x69,0x32,0x35,0x44,0x36,
30922
+0x07,0x75,0x6e,0x69,0x32,0x35,0x44,0x37,0x09,0x69,0x6e,0x76,
30923
+0x62,0x75,0x6c,0x6c,0x65,0x74,0x09,0x69,0x6e,0x76,0x63,0x69,
30924
+0x72,0x63,0x6c,0x65,0x07,0x75,0x6e,0x69,0x32,0x35,0x44,0x41,
30925
+0x07,0x75,0x6e,0x69,0x32,0x35,0x44,0x42,0x07,0x75,0x6e,0x69,
30926
+0x32,0x35,0x44,0x43,0x07,0x75,0x6e,0x69,0x32,0x35,0x44,0x44,
30927
+0x07,0x75,0x6e,0x69,0x32,0x35,0x44,0x45,0x07,0x75,0x6e,0x69,
30928
+0x32,0x35,0x44,0x46,0x07,0x75,0x6e,0x69,0x32,0x35,0x45,0x30,
30929
+0x07,0x75,0x6e,0x69,0x32,0x35,0x45,0x31,0x07,0x75,0x6e,0x69,
30930
+0x32,0x35,0x45,0x32,0x07,0x75,0x6e,0x69,0x32,0x35,0x45,0x33,
30931
+0x07,0x75,0x6e,0x69,0x32,0x35,0x45,0x34,0x07,0x75,0x6e,0x69,
30932
+0x32,0x35,0x45,0x35,0x0a,0x6f,0x70,0x65,0x6e,0x62,0x75,0x6c,
30933
+0x6c,0x65,0x74,0x07,0x75,0x6e,0x69,0x32,0x35,0x45,0x37,0x07,
30934
+0x75,0x6e,0x69,0x32,0x35,0x45,0x38,0x07,0x75,0x6e,0x69,0x32,
30935
+0x35,0x45,0x39,0x07,0x75,0x6e,0x69,0x32,0x35,0x45,0x41,0x07,
30936
+0x75,0x6e,0x69,0x32,0x35,0x45,0x42,0x07,0x75,0x6e,0x69,0x32,
30937
+0x35,0x45,0x43,0x07,0x75,0x6e,0x69,0x32,0x35,0x45,0x44,0x07,
30938
+0x75,0x6e,0x69,0x32,0x35,0x45,0x45,0x07,0x75,0x6e,0x69,0x32,
30939
+0x35,0x45,0x46,0x07,0x75,0x6e,0x69,0x32,0x35,0x46,0x30,0x07,
30940
+0x75,0x6e,0x69,0x32,0x35,0x46,0x31,0x07,0x75,0x6e,0x69,0x32,
30941
+0x35,0x46,0x32,0x07,0x75,0x6e,0x69,0x32,0x35,0x46,0x33,0x07,
30942
+0x75,0x6e,0x69,0x32,0x35,0x46,0x34,0x07,0x75,0x6e,0x69,0x32,
30943
+0x35,0x46,0x35,0x07,0x75,0x6e,0x69,0x32,0x35,0x46,0x36,0x07,
30944
+0x75,0x6e,0x69,0x32,0x35,0x46,0x37,0x07,0x75,0x6e,0x69,0x32,
30945
+0x35,0x46,0x38,0x07,0x75,0x6e,0x69,0x32,0x35,0x46,0x39,0x07,
30946
+0x75,0x6e,0x69,0x32,0x35,0x46,0x41,0x07,0x75,0x6e,0x69,0x32,
30947
+0x35,0x46,0x42,0x07,0x75,0x6e,0x69,0x32,0x35,0x46,0x43,0x07,
30948
+0x75,0x6e,0x69,0x32,0x35,0x46,0x44,0x07,0x75,0x6e,0x69,0x32,
30949
+0x35,0x46,0x45,0x07,0x75,0x6e,0x69,0x32,0x35,0x46,0x46,0x07,
30950
+0x75,0x6e,0x69,0x32,0x36,0x30,0x30,0x07,0x75,0x6e,0x69,0x32,
30951
+0x36,0x33,0x38,0x07,0x75,0x6e,0x69,0x32,0x36,0x33,0x39,0x09,
30952
+0x73,0x6d,0x69,0x6c,0x65,0x66,0x61,0x63,0x65,0x0c,0x69,0x6e,
30953
+0x76,0x73,0x6d,0x69,0x6c,0x65,0x66,0x61,0x63,0x65,0x03,0x73,
30954
+0x75,0x6e,0x07,0x75,0x6e,0x69,0x32,0x36,0x33,0x46,0x06,0x66,
30955
+0x65,0x6d,0x61,0x6c,0x65,0x07,0x75,0x6e,0x69,0x32,0x36,0x34,
30956
+0x31,0x04,0x6d,0x61,0x6c,0x65,0x07,0x75,0x6e,0x69,0x32,0x36,
30957
+0x34,0x33,0x07,0x75,0x6e,0x69,0x32,0x36,0x34,0x34,0x07,0x75,
30958
+0x6e,0x69,0x32,0x36,0x34,0x35,0x07,0x75,0x6e,0x69,0x32,0x36,
30959
+0x34,0x36,0x07,0x75,0x6e,0x69,0x32,0x36,0x34,0x37,0x05,0x73,
30960
+0x70,0x61,0x64,0x65,0x07,0x75,0x6e,0x69,0x32,0x36,0x36,0x31,
30961
+0x07,0x75,0x6e,0x69,0x32,0x36,0x36,0x32,0x04,0x63,0x6c,0x75,
30962
+0x62,0x07,0x75,0x6e,0x69,0x32,0x36,0x36,0x34,0x05,0x68,0x65,
30963
+0x61,0x72,0x74,0x07,0x64,0x69,0x61,0x6d,0x6f,0x6e,0x64,0x07,
30964
+0x75,0x6e,0x69,0x32,0x36,0x36,0x37,0x07,0x75,0x6e,0x69,0x32,
30965
+0x36,0x36,0x39,0x0b,0x6d,0x75,0x73,0x69,0x63,0x61,0x6c,0x6e,
30966
+0x6f,0x74,0x65,0x0e,0x6d,0x75,0x73,0x69,0x63,0x61,0x6c,0x6e,
30967
+0x6f,0x74,0x65,0x64,0x62,0x6c,0x07,0x75,0x6e,0x69,0x32,0x36,
30968
+0x36,0x43,0x07,0x75,0x6e,0x69,0x32,0x36,0x36,0x44,0x07,0x75,
30969
+0x6e,0x69,0x32,0x36,0x36,0x45,0x07,0x75,0x6e,0x69,0x32,0x36,
30970
+0x36,0x46,0x07,0x75,0x6e,0x69,0x32,0x37,0x41,0x31,0x07,0x75,
30971
+0x6e,0x69,0x32,0x37,0x43,0x35,0x07,0x75,0x6e,0x69,0x32,0x37,
30972
+0x43,0x36,0x07,0x75,0x6e,0x69,0x32,0x37,0x45,0x30,0x07,0x75,
30973
+0x6e,0x69,0x32,0x37,0x45,0x38,0x07,0x75,0x6e,0x69,0x32,0x37,
30974
+0x45,0x39,0x07,0x75,0x6e,0x69,0x32,0x37,0x46,0x30,0x07,0x75,
30975
+0x6e,0x69,0x32,0x37,0x46,0x31,0x07,0x75,0x6e,0x69,0x32,0x37,
30976
+0x46,0x32,0x07,0x75,0x6e,0x69,0x32,0x37,0x46,0x33,0x07,0x75,
30977
+0x6e,0x69,0x32,0x37,0x46,0x34,0x07,0x75,0x6e,0x69,0x32,0x37,
30978
+0x46,0x35,0x07,0x75,0x6e,0x69,0x32,0x37,0x46,0x36,0x07,0x75,
30979
+0x6e,0x69,0x32,0x37,0x46,0x37,0x07,0x75,0x6e,0x69,0x32,0x37,
30980
+0x46,0x38,0x07,0x75,0x6e,0x69,0x32,0x37,0x46,0x39,0x07,0x75,
30981
+0x6e,0x69,0x32,0x37,0x46,0x41,0x07,0x75,0x6e,0x69,0x32,0x37,
30982
+0x46,0x42,0x07,0x75,0x6e,0x69,0x32,0x37,0x46,0x43,0x07,0x75,
30983
+0x6e,0x69,0x32,0x37,0x46,0x44,0x07,0x75,0x6e,0x69,0x32,0x37,
30984
+0x46,0x45,0x07,0x75,0x6e,0x69,0x32,0x37,0x46,0x46,0x07,0x75,
30985
+0x6e,0x69,0x32,0x38,0x30,0x30,0x07,0x75,0x6e,0x69,0x32,0x38,
30986
+0x30,0x31,0x07,0x75,0x6e,0x69,0x32,0x38,0x30,0x32,0x07,0x75,
30987
+0x6e,0x69,0x32,0x38,0x30,0x33,0x07,0x75,0x6e,0x69,0x32,0x38,
30988
+0x30,0x34,0x07,0x75,0x6e,0x69,0x32,0x38,0x30,0x35,0x07,0x75,
30989
+0x6e,0x69,0x32,0x38,0x30,0x36,0x07,0x75,0x6e,0x69,0x32,0x38,
30990
+0x30,0x37,0x07,0x75,0x6e,0x69,0x32,0x38,0x30,0x38,0x07,0x75,
30991
+0x6e,0x69,0x32,0x38,0x30,0x39,0x07,0x75,0x6e,0x69,0x32,0x38,
30992
+0x30,0x41,0x07,0x75,0x6e,0x69,0x32,0x38,0x30,0x42,0x07,0x75,
30993
+0x6e,0x69,0x32,0x38,0x30,0x43,0x07,0x75,0x6e,0x69,0x32,0x38,
30994
+0x30,0x44,0x07,0x75,0x6e,0x69,0x32,0x38,0x30,0x45,0x07,0x75,
30995
+0x6e,0x69,0x32,0x38,0x30,0x46,0x07,0x75,0x6e,0x69,0x32,0x38,
30996
+0x31,0x30,0x07,0x75,0x6e,0x69,0x32,0x38,0x31,0x31,0x07,0x75,
30997
+0x6e,0x69,0x32,0x38,0x31,0x32,0x07,0x75,0x6e,0x69,0x32,0x38,
30998
+0x31,0x33,0x07,0x75,0x6e,0x69,0x32,0x38,0x31,0x34,0x07,0x75,
30999
+0x6e,0x69,0x32,0x38,0x31,0x35,0x07,0x75,0x6e,0x69,0x32,0x38,
31000
+0x31,0x36,0x07,0x75,0x6e,0x69,0x32,0x38,0x31,0x37,0x07,0x75,
31001
+0x6e,0x69,0x32,0x38,0x31,0x38,0x07,0x75,0x6e,0x69,0x32,0x38,
31002
+0x31,0x39,0x07,0x75,0x6e,0x69,0x32,0x38,0x31,0x41,0x07,0x75,
31003
+0x6e,0x69,0x32,0x38,0x31,0x42,0x07,0x75,0x6e,0x69,0x32,0x38,
31004
+0x31,0x43,0x07,0x75,0x6e,0x69,0x32,0x38,0x31,0x44,0x07,0x75,
31005
+0x6e,0x69,0x32,0x38,0x31,0x45,0x07,0x75,0x6e,0x69,0x32,0x38,
31006
+0x31,0x46,0x07,0x75,0x6e,0x69,0x32,0x38,0x32,0x30,0x07,0x75,
31007
+0x6e,0x69,0x32,0x38,0x32,0x31,0x07,0x75,0x6e,0x69,0x32,0x38,
31008
+0x32,0x32,0x07,0x75,0x6e,0x69,0x32,0x38,0x32,0x33,0x07,0x75,
31009
+0x6e,0x69,0x32,0x38,0x32,0x34,0x07,0x75,0x6e,0x69,0x32,0x38,
31010
+0x32,0x35,0x07,0x75,0x6e,0x69,0x32,0x38,0x32,0x36,0x07,0x75,
31011
+0x6e,0x69,0x32,0x38,0x32,0x37,0x07,0x75,0x6e,0x69,0x32,0x38,
31012
+0x32,0x38,0x07,0x75,0x6e,0x69,0x32,0x38,0x32,0x39,0x07,0x75,
31013
+0x6e,0x69,0x32,0x38,0x32,0x41,0x07,0x75,0x6e,0x69,0x32,0x38,
31014
+0x32,0x42,0x07,0x75,0x6e,0x69,0x32,0x38,0x32,0x43,0x07,0x75,
31015
+0x6e,0x69,0x32,0x38,0x32,0x44,0x07,0x75,0x6e,0x69,0x32,0x38,
31016
+0x32,0x45,0x07,0x75,0x6e,0x69,0x32,0x38,0x32,0x46,0x07,0x75,
31017
+0x6e,0x69,0x32,0x38,0x33,0x30,0x07,0x75,0x6e,0x69,0x32,0x38,
31018
+0x33,0x31,0x07,0x75,0x6e,0x69,0x32,0x38,0x33,0x32,0x07,0x75,
31019
+0x6e,0x69,0x32,0x38,0x33,0x33,0x07,0x75,0x6e,0x69,0x32,0x38,
31020
+0x33,0x34,0x07,0x75,0x6e,0x69,0x32,0x38,0x33,0x35,0x07,0x75,
31021
+0x6e,0x69,0x32,0x38,0x33,0x36,0x07,0x75,0x6e,0x69,0x32,0x38,
31022
+0x33,0x37,0x07,0x75,0x6e,0x69,0x32,0x38,0x33,0x38,0x07,0x75,
31023
+0x6e,0x69,0x32,0x38,0x33,0x39,0x07,0x75,0x6e,0x69,0x32,0x38,
31024
+0x33,0x41,0x07,0x75,0x6e,0x69,0x32,0x38,0x33,0x42,0x07,0x75,
31025
+0x6e,0x69,0x32,0x38,0x33,0x43,0x07,0x75,0x6e,0x69,0x32,0x38,
31026
+0x33,0x44,0x07,0x75,0x6e,0x69,0x32,0x38,0x33,0x45,0x07,0x75,
31027
+0x6e,0x69,0x32,0x38,0x33,0x46,0x07,0x75,0x6e,0x69,0x32,0x38,
31028
+0x34,0x30,0x07,0x75,0x6e,0x69,0x32,0x38,0x34,0x31,0x07,0x75,
31029
+0x6e,0x69,0x32,0x38,0x34,0x32,0x07,0x75,0x6e,0x69,0x32,0x38,
31030
+0x34,0x33,0x07,0x75,0x6e,0x69,0x32,0x38,0x34,0x34,0x07,0x75,
31031
+0x6e,0x69,0x32,0x38,0x34,0x35,0x07,0x75,0x6e,0x69,0x32,0x38,
31032
+0x34,0x36,0x07,0x75,0x6e,0x69,0x32,0x38,0x34,0x37,0x07,0x75,
31033
+0x6e,0x69,0x32,0x38,0x34,0x38,0x07,0x75,0x6e,0x69,0x32,0x38,
31034
+0x34,0x39,0x07,0x75,0x6e,0x69,0x32,0x38,0x34,0x41,0x07,0x75,
31035
+0x6e,0x69,0x32,0x38,0x34,0x42,0x07,0x75,0x6e,0x69,0x32,0x38,
31036
+0x34,0x43,0x07,0x75,0x6e,0x69,0x32,0x38,0x34,0x44,0x07,0x75,
31037
+0x6e,0x69,0x32,0x38,0x34,0x45,0x07,0x75,0x6e,0x69,0x32,0x38,
31038
+0x34,0x46,0x07,0x75,0x6e,0x69,0x32,0x38,0x35,0x30,0x07,0x75,
31039
+0x6e,0x69,0x32,0x38,0x35,0x31,0x07,0x75,0x6e,0x69,0x32,0x38,
31040
+0x35,0x32,0x07,0x75,0x6e,0x69,0x32,0x38,0x35,0x33,0x07,0x75,
31041
+0x6e,0x69,0x32,0x38,0x35,0x34,0x07,0x75,0x6e,0x69,0x32,0x38,
31042
+0x35,0x35,0x07,0x75,0x6e,0x69,0x32,0x38,0x35,0x36,0x07,0x75,
31043
+0x6e,0x69,0x32,0x38,0x35,0x37,0x07,0x75,0x6e,0x69,0x32,0x38,
31044
+0x35,0x38,0x07,0x75,0x6e,0x69,0x32,0x38,0x35,0x39,0x07,0x75,
31045
+0x6e,0x69,0x32,0x38,0x35,0x41,0x07,0x75,0x6e,0x69,0x32,0x38,
31046
+0x35,0x42,0x07,0x75,0x6e,0x69,0x32,0x38,0x35,0x43,0x07,0x75,
31047
+0x6e,0x69,0x32,0x38,0x35,0x44,0x07,0x75,0x6e,0x69,0x32,0x38,
31048
+0x35,0x45,0x07,0x75,0x6e,0x69,0x32,0x38,0x35,0x46,0x07,0x75,
31049
+0x6e,0x69,0x32,0x38,0x36,0x30,0x07,0x75,0x6e,0x69,0x32,0x38,
31050
+0x36,0x31,0x07,0x75,0x6e,0x69,0x32,0x38,0x36,0x32,0x07,0x75,
31051
+0x6e,0x69,0x32,0x38,0x36,0x33,0x07,0x75,0x6e,0x69,0x32,0x38,
31052
+0x36,0x34,0x07,0x75,0x6e,0x69,0x32,0x38,0x36,0x35,0x07,0x75,
31053
+0x6e,0x69,0x32,0x38,0x36,0x36,0x07,0x75,0x6e,0x69,0x32,0x38,
31054
+0x36,0x37,0x07,0x75,0x6e,0x69,0x32,0x38,0x36,0x38,0x07,0x75,
31055
+0x6e,0x69,0x32,0x38,0x36,0x39,0x07,0x75,0x6e,0x69,0x32,0x38,
31056
+0x36,0x41,0x07,0x75,0x6e,0x69,0x32,0x38,0x36,0x42,0x07,0x75,
31057
+0x6e,0x69,0x32,0x38,0x36,0x43,0x07,0x75,0x6e,0x69,0x32,0x38,
31058
+0x36,0x44,0x07,0x75,0x6e,0x69,0x32,0x38,0x36,0x45,0x07,0x75,
31059
+0x6e,0x69,0x32,0x38,0x36,0x46,0x07,0x75,0x6e,0x69,0x32,0x38,
31060
+0x37,0x30,0x07,0x75,0x6e,0x69,0x32,0x38,0x37,0x31,0x07,0x75,
31061
+0x6e,0x69,0x32,0x38,0x37,0x32,0x07,0x75,0x6e,0x69,0x32,0x38,
31062
+0x37,0x33,0x07,0x75,0x6e,0x69,0x32,0x38,0x37,0x34,0x07,0x75,
31063
+0x6e,0x69,0x32,0x38,0x37,0x35,0x07,0x75,0x6e,0x69,0x32,0x38,
31064
+0x37,0x36,0x07,0x75,0x6e,0x69,0x32,0x38,0x37,0x37,0x07,0x75,
31065
+0x6e,0x69,0x32,0x38,0x37,0x38,0x07,0x75,0x6e,0x69,0x32,0x38,
31066
+0x37,0x39,0x07,0x75,0x6e,0x69,0x32,0x38,0x37,0x41,0x07,0x75,
31067
+0x6e,0x69,0x32,0x38,0x37,0x42,0x07,0x75,0x6e,0x69,0x32,0x38,
31068
+0x37,0x43,0x07,0x75,0x6e,0x69,0x32,0x38,0x37,0x44,0x07,0x75,
31069
+0x6e,0x69,0x32,0x38,0x37,0x45,0x07,0x75,0x6e,0x69,0x32,0x38,
31070
+0x37,0x46,0x07,0x75,0x6e,0x69,0x32,0x38,0x38,0x30,0x07,0x75,
31071
+0x6e,0x69,0x32,0x38,0x38,0x31,0x07,0x75,0x6e,0x69,0x32,0x38,
31072
+0x38,0x32,0x07,0x75,0x6e,0x69,0x32,0x38,0x38,0x33,0x07,0x75,
31073
+0x6e,0x69,0x32,0x38,0x38,0x34,0x07,0x75,0x6e,0x69,0x32,0x38,
31074
+0x38,0x35,0x07,0x75,0x6e,0x69,0x32,0x38,0x38,0x36,0x07,0x75,
31075
+0x6e,0x69,0x32,0x38,0x38,0x37,0x07,0x75,0x6e,0x69,0x32,0x38,
31076
+0x38,0x38,0x07,0x75,0x6e,0x69,0x32,0x38,0x38,0x39,0x07,0x75,
31077
+0x6e,0x69,0x32,0x38,0x38,0x41,0x07,0x75,0x6e,0x69,0x32,0x38,
31078
+0x38,0x42,0x07,0x75,0x6e,0x69,0x32,0x38,0x38,0x43,0x07,0x75,
31079
+0x6e,0x69,0x32,0x38,0x38,0x44,0x07,0x75,0x6e,0x69,0x32,0x38,
31080
+0x38,0x45,0x07,0x75,0x6e,0x69,0x32,0x38,0x38,0x46,0x07,0x75,
31081
+0x6e,0x69,0x32,0x38,0x39,0x30,0x07,0x75,0x6e,0x69,0x32,0x38,
31082
+0x39,0x31,0x07,0x75,0x6e,0x69,0x32,0x38,0x39,0x32,0x07,0x75,
31083
+0x6e,0x69,0x32,0x38,0x39,0x33,0x07,0x75,0x6e,0x69,0x32,0x38,
31084
+0x39,0x34,0x07,0x75,0x6e,0x69,0x32,0x38,0x39,0x35,0x07,0x75,
31085
+0x6e,0x69,0x32,0x38,0x39,0x36,0x07,0x75,0x6e,0x69,0x32,0x38,
31086
+0x39,0x37,0x07,0x75,0x6e,0x69,0x32,0x38,0x39,0x38,0x07,0x75,
31087
+0x6e,0x69,0x32,0x38,0x39,0x39,0x07,0x75,0x6e,0x69,0x32,0x38,
31088
+0x39,0x41,0x07,0x75,0x6e,0x69,0x32,0x38,0x39,0x42,0x07,0x75,
31089
+0x6e,0x69,0x32,0x38,0x39,0x43,0x07,0x75,0x6e,0x69,0x32,0x38,
31090
+0x39,0x44,0x07,0x75,0x6e,0x69,0x32,0x38,0x39,0x45,0x07,0x75,
31091
+0x6e,0x69,0x32,0x38,0x39,0x46,0x07,0x75,0x6e,0x69,0x32,0x38,
31092
+0x41,0x30,0x07,0x75,0x6e,0x69,0x32,0x38,0x41,0x31,0x07,0x75,
31093
+0x6e,0x69,0x32,0x38,0x41,0x32,0x07,0x75,0x6e,0x69,0x32,0x38,
31094
+0x41,0x33,0x07,0x75,0x6e,0x69,0x32,0x38,0x41,0x34,0x07,0x75,
31095
+0x6e,0x69,0x32,0x38,0x41,0x35,0x07,0x75,0x6e,0x69,0x32,0x38,
31096
+0x41,0x36,0x07,0x75,0x6e,0x69,0x32,0x38,0x41,0x37,0x07,0x75,
31097
+0x6e,0x69,0x32,0x38,0x41,0x38,0x07,0x75,0x6e,0x69,0x32,0x38,
31098
+0x41,0x39,0x07,0x75,0x6e,0x69,0x32,0x38,0x41,0x41,0x07,0x75,
31099
+0x6e,0x69,0x32,0x38,0x41,0x42,0x07,0x75,0x6e,0x69,0x32,0x38,
31100
+0x41,0x43,0x07,0x75,0x6e,0x69,0x32,0x38,0x41,0x44,0x07,0x75,
31101
+0x6e,0x69,0x32,0x38,0x41,0x45,0x07,0x75,0x6e,0x69,0x32,0x38,
31102
+0x41,0x46,0x07,0x75,0x6e,0x69,0x32,0x38,0x42,0x30,0x07,0x75,
31103
+0x6e,0x69,0x32,0x38,0x42,0x31,0x07,0x75,0x6e,0x69,0x32,0x38,
31104
+0x42,0x32,0x07,0x75,0x6e,0x69,0x32,0x38,0x42,0x33,0x07,0x75,
31105
+0x6e,0x69,0x32,0x38,0x42,0x34,0x07,0x75,0x6e,0x69,0x32,0x38,
31106
+0x42,0x35,0x07,0x75,0x6e,0x69,0x32,0x38,0x42,0x36,0x07,0x75,
31107
+0x6e,0x69,0x32,0x38,0x42,0x37,0x07,0x75,0x6e,0x69,0x32,0x38,
31108
+0x42,0x38,0x07,0x75,0x6e,0x69,0x32,0x38,0x42,0x39,0x07,0x75,
31109
+0x6e,0x69,0x32,0x38,0x42,0x41,0x07,0x75,0x6e,0x69,0x32,0x38,
31110
+0x42,0x42,0x07,0x75,0x6e,0x69,0x32,0x38,0x42,0x43,0x07,0x75,
31111
+0x6e,0x69,0x32,0x38,0x42,0x44,0x07,0x75,0x6e,0x69,0x32,0x38,
31112
+0x42,0x45,0x07,0x75,0x6e,0x69,0x32,0x38,0x42,0x46,0x07,0x75,
31113
+0x6e,0x69,0x32,0x38,0x43,0x30,0x07,0x75,0x6e,0x69,0x32,0x38,
31114
+0x43,0x31,0x07,0x75,0x6e,0x69,0x32,0x38,0x43,0x32,0x07,0x75,
31115
+0x6e,0x69,0x32,0x38,0x43,0x33,0x07,0x75,0x6e,0x69,0x32,0x38,
31116
+0x43,0x34,0x07,0x75,0x6e,0x69,0x32,0x38,0x43,0x35,0x07,0x75,
31117
+0x6e,0x69,0x32,0x38,0x43,0x36,0x07,0x75,0x6e,0x69,0x32,0x38,
31118
+0x43,0x37,0x07,0x75,0x6e,0x69,0x32,0x38,0x43,0x38,0x07,0x75,
31119
+0x6e,0x69,0x32,0x38,0x43,0x39,0x07,0x75,0x6e,0x69,0x32,0x38,
31120
+0x43,0x41,0x07,0x75,0x6e,0x69,0x32,0x38,0x43,0x42,0x07,0x75,
31121
+0x6e,0x69,0x32,0x38,0x43,0x43,0x07,0x75,0x6e,0x69,0x32,0x38,
31122
+0x43,0x44,0x07,0x75,0x6e,0x69,0x32,0x38,0x43,0x45,0x07,0x75,
31123
+0x6e,0x69,0x32,0x38,0x43,0x46,0x07,0x75,0x6e,0x69,0x32,0x38,
31124
+0x44,0x30,0x07,0x75,0x6e,0x69,0x32,0x38,0x44,0x31,0x07,0x75,
31125
+0x6e,0x69,0x32,0x38,0x44,0x32,0x07,0x75,0x6e,0x69,0x32,0x38,
31126
+0x44,0x33,0x07,0x75,0x6e,0x69,0x32,0x38,0x44,0x34,0x07,0x75,
31127
+0x6e,0x69,0x32,0x38,0x44,0x35,0x07,0x75,0x6e,0x69,0x32,0x38,
31128
+0x44,0x36,0x07,0x75,0x6e,0x69,0x32,0x38,0x44,0x37,0x07,0x75,
31129
+0x6e,0x69,0x32,0x38,0x44,0x38,0x07,0x75,0x6e,0x69,0x32,0x38,
31130
+0x44,0x39,0x07,0x75,0x6e,0x69,0x32,0x38,0x44,0x41,0x07,0x75,
31131
+0x6e,0x69,0x32,0x38,0x44,0x42,0x07,0x75,0x6e,0x69,0x32,0x38,
31132
+0x44,0x43,0x07,0x75,0x6e,0x69,0x32,0x38,0x44,0x44,0x07,0x75,
31133
+0x6e,0x69,0x32,0x38,0x44,0x45,0x07,0x75,0x6e,0x69,0x32,0x38,
31134
+0x44,0x46,0x07,0x75,0x6e,0x69,0x32,0x38,0x45,0x30,0x07,0x75,
31135
+0x6e,0x69,0x32,0x38,0x45,0x31,0x07,0x75,0x6e,0x69,0x32,0x38,
31136
+0x45,0x32,0x07,0x75,0x6e,0x69,0x32,0x38,0x45,0x33,0x07,0x75,
31137
+0x6e,0x69,0x32,0x38,0x45,0x34,0x07,0x75,0x6e,0x69,0x32,0x38,
31138
+0x45,0x35,0x07,0x75,0x6e,0x69,0x32,0x38,0x45,0x36,0x07,0x75,
31139
+0x6e,0x69,0x32,0x38,0x45,0x37,0x07,0x75,0x6e,0x69,0x32,0x38,
31140
+0x45,0x38,0x07,0x75,0x6e,0x69,0x32,0x38,0x45,0x39,0x07,0x75,
31141
+0x6e,0x69,0x32,0x38,0x45,0x41,0x07,0x75,0x6e,0x69,0x32,0x38,
31142
+0x45,0x42,0x07,0x75,0x6e,0x69,0x32,0x38,0x45,0x43,0x07,0x75,
31143
+0x6e,0x69,0x32,0x38,0x45,0x44,0x07,0x75,0x6e,0x69,0x32,0x38,
31144
+0x45,0x45,0x07,0x75,0x6e,0x69,0x32,0x38,0x45,0x46,0x07,0x75,
31145
+0x6e,0x69,0x32,0x38,0x46,0x30,0x07,0x75,0x6e,0x69,0x32,0x38,
31146
+0x46,0x31,0x07,0x75,0x6e,0x69,0x32,0x38,0x46,0x32,0x07,0x75,
31147
+0x6e,0x69,0x32,0x38,0x46,0x33,0x07,0x75,0x6e,0x69,0x32,0x38,
31148
+0x46,0x34,0x07,0x75,0x6e,0x69,0x32,0x38,0x46,0x35,0x07,0x75,
31149
+0x6e,0x69,0x32,0x38,0x46,0x36,0x07,0x75,0x6e,0x69,0x32,0x38,
31150
+0x46,0x37,0x07,0x75,0x6e,0x69,0x32,0x38,0x46,0x38,0x07,0x75,
31151
+0x6e,0x69,0x32,0x38,0x46,0x39,0x07,0x75,0x6e,0x69,0x32,0x38,
31152
+0x46,0x41,0x07,0x75,0x6e,0x69,0x32,0x38,0x46,0x42,0x07,0x75,
31153
+0x6e,0x69,0x32,0x38,0x46,0x43,0x07,0x75,0x6e,0x69,0x32,0x38,
31154
+0x46,0x44,0x07,0x75,0x6e,0x69,0x32,0x38,0x46,0x45,0x07,0x75,
31155
+0x6e,0x69,0x32,0x38,0x46,0x46,0x07,0x75,0x6e,0x69,0x32,0x39,
31156
+0x30,0x30,0x07,0x75,0x6e,0x69,0x32,0x39,0x30,0x31,0x07,0x75,
31157
+0x6e,0x69,0x32,0x39,0x30,0x32,0x07,0x75,0x6e,0x69,0x32,0x39,
31158
+0x30,0x33,0x07,0x75,0x6e,0x69,0x32,0x39,0x30,0x34,0x07,0x75,
31159
+0x6e,0x69,0x32,0x39,0x30,0x35,0x07,0x75,0x6e,0x69,0x32,0x39,
31160
+0x30,0x36,0x07,0x75,0x6e,0x69,0x32,0x39,0x30,0x37,0x07,0x75,
31161
+0x6e,0x69,0x32,0x39,0x30,0x38,0x07,0x75,0x6e,0x69,0x32,0x39,
31162
+0x30,0x39,0x07,0x75,0x6e,0x69,0x32,0x39,0x30,0x41,0x07,0x75,
31163
+0x6e,0x69,0x32,0x39,0x30,0x42,0x07,0x75,0x6e,0x69,0x32,0x39,
31164
+0x30,0x43,0x07,0x75,0x6e,0x69,0x32,0x39,0x30,0x44,0x07,0x75,
31165
+0x6e,0x69,0x32,0x39,0x30,0x45,0x07,0x75,0x6e,0x69,0x32,0x39,
31166
+0x30,0x46,0x07,0x75,0x6e,0x69,0x32,0x39,0x31,0x30,0x07,0x75,
31167
+0x6e,0x69,0x32,0x39,0x31,0x31,0x07,0x75,0x6e,0x69,0x32,0x39,
31168
+0x31,0x32,0x07,0x75,0x6e,0x69,0x32,0x39,0x31,0x33,0x07,0x75,
31169
+0x6e,0x69,0x32,0x39,0x31,0x34,0x07,0x75,0x6e,0x69,0x32,0x39,
31170
+0x31,0x35,0x07,0x75,0x6e,0x69,0x32,0x39,0x31,0x36,0x07,0x75,
31171
+0x6e,0x69,0x32,0x39,0x31,0x37,0x07,0x75,0x6e,0x69,0x32,0x39,
31172
+0x31,0x38,0x07,0x75,0x6e,0x69,0x32,0x39,0x31,0x39,0x07,0x75,
31173
+0x6e,0x69,0x32,0x39,0x31,0x41,0x07,0x75,0x6e,0x69,0x32,0x39,
31174
+0x31,0x42,0x07,0x75,0x6e,0x69,0x32,0x39,0x31,0x43,0x07,0x75,
31175
+0x6e,0x69,0x32,0x39,0x31,0x44,0x07,0x75,0x6e,0x69,0x32,0x39,
31176
+0x31,0x45,0x07,0x75,0x6e,0x69,0x32,0x39,0x31,0x46,0x07,0x75,
31177
+0x6e,0x69,0x32,0x39,0x32,0x30,0x07,0x75,0x6e,0x69,0x32,0x39,
31178
+0x32,0x31,0x07,0x75,0x6e,0x69,0x32,0x39,0x32,0x32,0x07,0x75,
31179
+0x6e,0x69,0x32,0x39,0x32,0x33,0x07,0x75,0x6e,0x69,0x32,0x39,
31180
+0x32,0x34,0x07,0x75,0x6e,0x69,0x32,0x39,0x32,0x35,0x07,0x75,
31181
+0x6e,0x69,0x32,0x39,0x32,0x36,0x07,0x75,0x6e,0x69,0x32,0x39,
31182
+0x32,0x37,0x07,0x75,0x6e,0x69,0x32,0x39,0x32,0x38,0x07,0x75,
31183
+0x6e,0x69,0x32,0x39,0x32,0x39,0x07,0x75,0x6e,0x69,0x32,0x39,
31184
+0x32,0x41,0x07,0x75,0x6e,0x69,0x32,0x39,0x32,0x42,0x07,0x75,
31185
+0x6e,0x69,0x32,0x39,0x32,0x43,0x07,0x75,0x6e,0x69,0x32,0x39,
31186
+0x32,0x44,0x07,0x75,0x6e,0x69,0x32,0x39,0x32,0x45,0x07,0x75,
31187
+0x6e,0x69,0x32,0x39,0x32,0x46,0x07,0x75,0x6e,0x69,0x32,0x39,
31188
+0x33,0x30,0x07,0x75,0x6e,0x69,0x32,0x39,0x33,0x31,0x07,0x75,
31189
+0x6e,0x69,0x32,0x39,0x33,0x32,0x07,0x75,0x6e,0x69,0x32,0x39,
31190
+0x33,0x33,0x07,0x75,0x6e,0x69,0x32,0x39,0x33,0x34,0x07,0x75,
31191
+0x6e,0x69,0x32,0x39,0x33,0x35,0x07,0x75,0x6e,0x69,0x32,0x39,
31192
+0x33,0x36,0x07,0x75,0x6e,0x69,0x32,0x39,0x33,0x37,0x07,0x75,
31193
+0x6e,0x69,0x32,0x39,0x33,0x38,0x07,0x75,0x6e,0x69,0x32,0x39,
31194
+0x33,0x39,0x07,0x75,0x6e,0x69,0x32,0x39,0x33,0x41,0x07,0x75,
31195
+0x6e,0x69,0x32,0x39,0x33,0x42,0x07,0x75,0x6e,0x69,0x32,0x39,
31196
+0x33,0x43,0x07,0x75,0x6e,0x69,0x32,0x39,0x33,0x44,0x07,0x75,
31197
+0x6e,0x69,0x32,0x39,0x33,0x45,0x07,0x75,0x6e,0x69,0x32,0x39,
31198
+0x33,0x46,0x07,0x75,0x6e,0x69,0x32,0x39,0x34,0x30,0x07,0x75,
31199
+0x6e,0x69,0x32,0x39,0x34,0x31,0x07,0x75,0x6e,0x69,0x32,0x39,
31200
+0x34,0x32,0x07,0x75,0x6e,0x69,0x32,0x39,0x34,0x33,0x07,0x75,
31201
+0x6e,0x69,0x32,0x39,0x34,0x34,0x07,0x75,0x6e,0x69,0x32,0x39,
31202
+0x34,0x35,0x07,0x75,0x6e,0x69,0x32,0x39,0x34,0x36,0x07,0x75,
31203
+0x6e,0x69,0x32,0x39,0x34,0x37,0x07,0x75,0x6e,0x69,0x32,0x39,
31204
+0x34,0x38,0x07,0x75,0x6e,0x69,0x32,0x39,0x34,0x39,0x07,0x75,
31205
+0x6e,0x69,0x32,0x39,0x34,0x41,0x07,0x75,0x6e,0x69,0x32,0x39,
31206
+0x34,0x42,0x07,0x75,0x6e,0x69,0x32,0x39,0x34,0x43,0x07,0x75,
31207
+0x6e,0x69,0x32,0x39,0x34,0x44,0x07,0x75,0x6e,0x69,0x32,0x39,
31208
+0x34,0x45,0x07,0x75,0x6e,0x69,0x32,0x39,0x34,0x46,0x07,0x75,
31209
+0x6e,0x69,0x32,0x39,0x35,0x30,0x07,0x75,0x6e,0x69,0x32,0x39,
31210
+0x35,0x31,0x07,0x75,0x6e,0x69,0x32,0x39,0x35,0x32,0x07,0x75,
31211
+0x6e,0x69,0x32,0x39,0x35,0x33,0x07,0x75,0x6e,0x69,0x32,0x39,
31212
+0x35,0x34,0x07,0x75,0x6e,0x69,0x32,0x39,0x35,0x35,0x07,0x75,
31213
+0x6e,0x69,0x32,0x39,0x35,0x36,0x07,0x75,0x6e,0x69,0x32,0x39,
31214
+0x35,0x37,0x07,0x75,0x6e,0x69,0x32,0x39,0x35,0x38,0x07,0x75,
31215
+0x6e,0x69,0x32,0x39,0x35,0x39,0x07,0x75,0x6e,0x69,0x32,0x39,
31216
+0x35,0x41,0x07,0x75,0x6e,0x69,0x32,0x39,0x35,0x42,0x07,0x75,
31217
+0x6e,0x69,0x32,0x39,0x35,0x43,0x07,0x75,0x6e,0x69,0x32,0x39,
31218
+0x35,0x44,0x07,0x75,0x6e,0x69,0x32,0x39,0x35,0x45,0x07,0x75,
31219
+0x6e,0x69,0x32,0x39,0x35,0x46,0x07,0x75,0x6e,0x69,0x32,0x39,
31220
+0x36,0x30,0x07,0x75,0x6e,0x69,0x32,0x39,0x36,0x31,0x07,0x75,
31221
+0x6e,0x69,0x32,0x39,0x36,0x32,0x07,0x75,0x6e,0x69,0x32,0x39,
31222
+0x36,0x33,0x07,0x75,0x6e,0x69,0x32,0x39,0x36,0x34,0x07,0x75,
31223
+0x6e,0x69,0x32,0x39,0x36,0x35,0x07,0x75,0x6e,0x69,0x32,0x39,
31224
+0x36,0x36,0x07,0x75,0x6e,0x69,0x32,0x39,0x36,0x37,0x07,0x75,
31225
+0x6e,0x69,0x32,0x39,0x36,0x38,0x07,0x75,0x6e,0x69,0x32,0x39,
31226
+0x36,0x39,0x07,0x75,0x6e,0x69,0x32,0x39,0x36,0x41,0x07,0x75,
31227
+0x6e,0x69,0x32,0x39,0x36,0x42,0x07,0x75,0x6e,0x69,0x32,0x39,
31228
+0x36,0x43,0x07,0x75,0x6e,0x69,0x32,0x39,0x36,0x44,0x07,0x75,
31229
+0x6e,0x69,0x32,0x39,0x36,0x45,0x07,0x75,0x6e,0x69,0x32,0x39,
31230
+0x36,0x46,0x07,0x75,0x6e,0x69,0x32,0x39,0x37,0x30,0x07,0x75,
31231
+0x6e,0x69,0x32,0x39,0x37,0x31,0x07,0x75,0x6e,0x69,0x32,0x39,
31232
+0x37,0x32,0x07,0x75,0x6e,0x69,0x32,0x39,0x37,0x33,0x07,0x75,
31233
+0x6e,0x69,0x32,0x39,0x37,0x34,0x07,0x75,0x6e,0x69,0x32,0x39,
31234
+0x37,0x35,0x07,0x75,0x6e,0x69,0x32,0x39,0x37,0x36,0x07,0x75,
31235
+0x6e,0x69,0x32,0x39,0x37,0x37,0x07,0x75,0x6e,0x69,0x32,0x39,
31236
+0x37,0x38,0x07,0x75,0x6e,0x69,0x32,0x39,0x37,0x39,0x07,0x75,
31237
+0x6e,0x69,0x32,0x39,0x37,0x41,0x07,0x75,0x6e,0x69,0x32,0x39,
31238
+0x37,0x42,0x07,0x75,0x6e,0x69,0x32,0x39,0x37,0x43,0x07,0x75,
31239
+0x6e,0x69,0x32,0x39,0x37,0x44,0x07,0x75,0x6e,0x69,0x32,0x39,
31240
+0x37,0x45,0x07,0x75,0x6e,0x69,0x32,0x39,0x37,0x46,0x07,0x75,
31241
+0x6e,0x69,0x32,0x39,0x45,0x42,0x07,0x75,0x6e,0x69,0x32,0x41,
31242
+0x30,0x43,0x07,0x75,0x6e,0x69,0x32,0x41,0x30,0x44,0x07,0x75,
31243
+0x6e,0x69,0x32,0x41,0x30,0x45,0x07,0x75,0x6e,0x69,0x32,0x41,
31244
+0x32,0x46,0x07,0x75,0x6e,0x69,0x32,0x41,0x36,0x41,0x07,0x75,
31245
+0x6e,0x69,0x32,0x41,0x36,0x42,0x07,0x75,0x6e,0x69,0x32,0x42,
31246
+0x30,0x30,0x07,0x75,0x6e,0x69,0x32,0x42,0x30,0x31,0x07,0x75,
31247
+0x6e,0x69,0x32,0x42,0x30,0x32,0x07,0x75,0x6e,0x69,0x32,0x42,
31248
+0x30,0x33,0x07,0x75,0x6e,0x69,0x32,0x42,0x30,0x34,0x07,0x75,
31249
+0x6e,0x69,0x32,0x42,0x30,0x35,0x07,0x75,0x6e,0x69,0x32,0x42,
31250
+0x30,0x36,0x07,0x75,0x6e,0x69,0x32,0x42,0x30,0x37,0x07,0x75,
31251
+0x6e,0x69,0x32,0x42,0x30,0x38,0x07,0x75,0x6e,0x69,0x32,0x42,
31252
+0x30,0x39,0x07,0x75,0x6e,0x69,0x32,0x42,0x30,0x41,0x07,0x75,
31253
+0x6e,0x69,0x32,0x42,0x30,0x42,0x07,0x75,0x6e,0x69,0x32,0x42,
31254
+0x30,0x43,0x07,0x75,0x6e,0x69,0x32,0x42,0x30,0x44,0x07,0x75,
31255
+0x6e,0x69,0x32,0x42,0x30,0x45,0x07,0x75,0x6e,0x69,0x32,0x42,
31256
+0x30,0x46,0x07,0x75,0x6e,0x69,0x32,0x42,0x31,0x30,0x07,0x75,
31257
+0x6e,0x69,0x32,0x42,0x31,0x31,0x07,0x75,0x6e,0x69,0x32,0x42,
31258
+0x31,0x32,0x07,0x75,0x6e,0x69,0x32,0x42,0x31,0x33,0x07,0x75,
31259
+0x6e,0x69,0x32,0x42,0x31,0x34,0x07,0x75,0x6e,0x69,0x32,0x42,
31260
+0x31,0x35,0x07,0x75,0x6e,0x69,0x32,0x42,0x31,0x36,0x07,0x75,
31261
+0x6e,0x69,0x32,0x42,0x31,0x37,0x07,0x75,0x6e,0x69,0x32,0x42,
31262
+0x31,0x38,0x07,0x75,0x6e,0x69,0x32,0x42,0x31,0x39,0x07,0x75,
31263
+0x6e,0x69,0x32,0x42,0x31,0x41,0x07,0x75,0x6e,0x69,0x32,0x43,
31264
+0x36,0x30,0x07,0x75,0x6e,0x69,0x32,0x43,0x36,0x31,0x07,0x75,
31265
+0x6e,0x69,0x32,0x43,0x36,0x33,0x07,0x75,0x6e,0x69,0x32,0x43,
31266
+0x36,0x34,0x07,0x75,0x6e,0x69,0x32,0x43,0x36,0x37,0x07,0x75,
31267
+0x6e,0x69,0x32,0x43,0x36,0x38,0x07,0x75,0x6e,0x69,0x32,0x43,
31268
+0x36,0x39,0x07,0x75,0x6e,0x69,0x32,0x43,0x36,0x41,0x07,0x75,
31269
+0x6e,0x69,0x32,0x43,0x36,0x42,0x07,0x75,0x6e,0x69,0x32,0x43,
31270
+0x36,0x43,0x07,0x75,0x6e,0x69,0x32,0x43,0x36,0x44,0x07,0x75,
31271
+0x6e,0x69,0x32,0x43,0x36,0x45,0x07,0x75,0x6e,0x69,0x32,0x43,
31272
+0x36,0x46,0x07,0x75,0x6e,0x69,0x32,0x43,0x37,0x30,0x07,0x75,
31273
+0x6e,0x69,0x32,0x43,0x37,0x31,0x07,0x75,0x6e,0x69,0x32,0x43,
31274
+0x37,0x32,0x07,0x75,0x6e,0x69,0x32,0x43,0x37,0x33,0x07,0x75,
31275
+0x6e,0x69,0x32,0x43,0x37,0x35,0x07,0x75,0x6e,0x69,0x32,0x43,
31276
+0x37,0x36,0x07,0x75,0x6e,0x69,0x32,0x43,0x37,0x37,0x07,0x75,
31277
+0x6e,0x69,0x32,0x43,0x37,0x39,0x07,0x75,0x6e,0x69,0x32,0x43,
31278
+0x37,0x41,0x07,0x75,0x6e,0x69,0x32,0x43,0x37,0x42,0x07,0x75,
31279
+0x6e,0x69,0x32,0x43,0x37,0x43,0x07,0x75,0x6e,0x69,0x32,0x43,
31280
+0x37,0x44,0x07,0x75,0x6e,0x69,0x32,0x43,0x37,0x45,0x07,0x75,
31281
+0x6e,0x69,0x32,0x43,0x37,0x46,0x07,0x75,0x6e,0x69,0x32,0x44,
31282
+0x30,0x30,0x07,0x75,0x6e,0x69,0x32,0x44,0x30,0x31,0x07,0x75,
31283
+0x6e,0x69,0x32,0x44,0x30,0x32,0x07,0x75,0x6e,0x69,0x32,0x44,
31284
+0x30,0x33,0x07,0x75,0x6e,0x69,0x32,0x44,0x30,0x34,0x07,0x75,
31285
+0x6e,0x69,0x32,0x44,0x30,0x35,0x07,0x75,0x6e,0x69,0x32,0x44,
31286
+0x30,0x36,0x07,0x75,0x6e,0x69,0x32,0x44,0x30,0x37,0x07,0x75,
31287
+0x6e,0x69,0x32,0x44,0x30,0x38,0x07,0x75,0x6e,0x69,0x32,0x44,
31288
+0x30,0x39,0x07,0x75,0x6e,0x69,0x32,0x44,0x30,0x41,0x07,0x75,
31289
+0x6e,0x69,0x32,0x44,0x30,0x42,0x07,0x75,0x6e,0x69,0x32,0x44,
31290
+0x30,0x43,0x07,0x75,0x6e,0x69,0x32,0x44,0x30,0x44,0x07,0x75,
31291
+0x6e,0x69,0x32,0x44,0x30,0x45,0x07,0x75,0x6e,0x69,0x32,0x44,
31292
+0x30,0x46,0x07,0x75,0x6e,0x69,0x32,0x44,0x31,0x30,0x07,0x75,
31293
+0x6e,0x69,0x32,0x44,0x31,0x31,0x07,0x75,0x6e,0x69,0x32,0x44,
31294
+0x31,0x32,0x07,0x75,0x6e,0x69,0x32,0x44,0x31,0x33,0x07,0x75,
31295
+0x6e,0x69,0x32,0x44,0x31,0x34,0x07,0x75,0x6e,0x69,0x32,0x44,
31296
+0x31,0x35,0x07,0x75,0x6e,0x69,0x32,0x44,0x31,0x36,0x07,0x75,
31297
+0x6e,0x69,0x32,0x44,0x31,0x37,0x07,0x75,0x6e,0x69,0x32,0x44,
31298
+0x31,0x38,0x07,0x75,0x6e,0x69,0x32,0x44,0x31,0x39,0x07,0x75,
31299
+0x6e,0x69,0x32,0x44,0x31,0x41,0x07,0x75,0x6e,0x69,0x32,0x44,
31300
+0x31,0x42,0x07,0x75,0x6e,0x69,0x32,0x44,0x31,0x43,0x07,0x75,
31301
+0x6e,0x69,0x32,0x44,0x31,0x44,0x07,0x75,0x6e,0x69,0x32,0x44,
31302
+0x31,0x45,0x07,0x75,0x6e,0x69,0x32,0x44,0x31,0x46,0x07,0x75,
31303
+0x6e,0x69,0x32,0x44,0x32,0x30,0x07,0x75,0x6e,0x69,0x32,0x44,
31304
+0x32,0x31,0x07,0x75,0x6e,0x69,0x32,0x44,0x32,0x32,0x07,0x75,
31305
+0x6e,0x69,0x32,0x44,0x32,0x33,0x07,0x75,0x6e,0x69,0x32,0x44,
31306
+0x32,0x34,0x07,0x75,0x6e,0x69,0x32,0x44,0x32,0x35,0x07,0x75,
31307
+0x6e,0x69,0x32,0x45,0x31,0x38,0x07,0x75,0x6e,0x69,0x32,0x45,
31308
+0x31,0x46,0x07,0x75,0x6e,0x69,0x32,0x45,0x32,0x32,0x07,0x75,
31309
+0x6e,0x69,0x32,0x45,0x32,0x33,0x07,0x75,0x6e,0x69,0x32,0x45,
31310
+0x32,0x34,0x07,0x75,0x6e,0x69,0x32,0x45,0x32,0x35,0x07,0x75,
31311
+0x6e,0x69,0x32,0x45,0x32,0x45,0x07,0x75,0x6e,0x69,0x41,0x36,
31312
+0x34,0x34,0x07,0x75,0x6e,0x69,0x41,0x36,0x34,0x35,0x07,0x75,
31313
+0x6e,0x69,0x41,0x36,0x34,0x36,0x07,0x75,0x6e,0x69,0x41,0x36,
31314
+0x34,0x37,0x07,0x75,0x6e,0x69,0x41,0x36,0x35,0x30,0x07,0x75,
31315
+0x6e,0x69,0x41,0x36,0x35,0x31,0x07,0x75,0x6e,0x69,0x41,0x36,
31316
+0x35,0x34,0x07,0x75,0x6e,0x69,0x41,0x36,0x35,0x35,0x07,0x75,
31317
+0x6e,0x69,0x41,0x36,0x35,0x36,0x07,0x75,0x6e,0x69,0x41,0x36,
31318
+0x35,0x37,0x07,0x75,0x6e,0x69,0x41,0x37,0x30,0x38,0x07,0x75,
31319
+0x6e,0x69,0x41,0x37,0x30,0x39,0x07,0x75,0x6e,0x69,0x41,0x37,
31320
+0x30,0x41,0x07,0x75,0x6e,0x69,0x41,0x37,0x30,0x42,0x07,0x75,
31321
+0x6e,0x69,0x41,0x37,0x30,0x43,0x07,0x75,0x6e,0x69,0x41,0x37,
31322
+0x30,0x44,0x07,0x75,0x6e,0x69,0x41,0x37,0x30,0x45,0x07,0x75,
31323
+0x6e,0x69,0x41,0x37,0x30,0x46,0x07,0x75,0x6e,0x69,0x41,0x37,
31324
+0x31,0x30,0x07,0x75,0x6e,0x69,0x41,0x37,0x31,0x31,0x07,0x75,
31325
+0x6e,0x69,0x41,0x37,0x31,0x32,0x07,0x75,0x6e,0x69,0x41,0x37,
31326
+0x31,0x33,0x07,0x75,0x6e,0x69,0x41,0x37,0x31,0x34,0x07,0x75,
31327
+0x6e,0x69,0x41,0x37,0x31,0x35,0x07,0x75,0x6e,0x69,0x41,0x37,
31328
+0x31,0x36,0x07,0x75,0x6e,0x69,0x41,0x37,0x31,0x42,0x07,0x75,
31329
+0x6e,0x69,0x41,0x37,0x31,0x43,0x07,0x75,0x6e,0x69,0x41,0x37,
31330
+0x31,0x44,0x07,0x75,0x6e,0x69,0x41,0x37,0x31,0x45,0x07,0x75,
31331
+0x6e,0x69,0x41,0x37,0x31,0x46,0x07,0x75,0x6e,0x69,0x41,0x37,
31332
+0x32,0x36,0x07,0x75,0x6e,0x69,0x41,0x37,0x32,0x37,0x07,0x75,
31333
+0x6e,0x69,0x41,0x37,0x32,0x38,0x07,0x75,0x6e,0x69,0x41,0x37,
31334
+0x32,0x39,0x07,0x75,0x6e,0x69,0x41,0x37,0x32,0x41,0x07,0x75,
31335
+0x6e,0x69,0x41,0x37,0x32,0x42,0x07,0x75,0x6e,0x69,0x41,0x37,
31336
+0x32,0x43,0x07,0x75,0x6e,0x69,0x41,0x37,0x32,0x44,0x07,0x75,
31337
+0x6e,0x69,0x41,0x37,0x32,0x45,0x07,0x75,0x6e,0x69,0x41,0x37,
31338
+0x32,0x46,0x07,0x75,0x6e,0x69,0x41,0x37,0x33,0x30,0x07,0x75,
31339
+0x6e,0x69,0x41,0x37,0x33,0x31,0x07,0x75,0x6e,0x69,0x41,0x37,
31340
+0x33,0x32,0x07,0x75,0x6e,0x69,0x41,0x37,0x33,0x33,0x07,0x75,
31341
+0x6e,0x69,0x41,0x37,0x33,0x34,0x07,0x75,0x6e,0x69,0x41,0x37,
31342
+0x33,0x35,0x07,0x75,0x6e,0x69,0x41,0x37,0x33,0x36,0x07,0x75,
31343
+0x6e,0x69,0x41,0x37,0x33,0x37,0x07,0x75,0x6e,0x69,0x41,0x37,
31344
+0x33,0x38,0x07,0x75,0x6e,0x69,0x41,0x37,0x33,0x39,0x07,0x75,
31345
+0x6e,0x69,0x41,0x37,0x33,0x41,0x07,0x75,0x6e,0x69,0x41,0x37,
31346
+0x33,0x42,0x07,0x75,0x6e,0x69,0x41,0x37,0x33,0x43,0x07,0x75,
31347
+0x6e,0x69,0x41,0x37,0x33,0x44,0x07,0x75,0x6e,0x69,0x41,0x37,
31348
+0x33,0x45,0x07,0x75,0x6e,0x69,0x41,0x37,0x33,0x46,0x07,0x75,
31349
+0x6e,0x69,0x41,0x37,0x34,0x30,0x07,0x75,0x6e,0x69,0x41,0x37,
31350
+0x34,0x31,0x07,0x75,0x6e,0x69,0x41,0x37,0x34,0x36,0x07,0x75,
31351
+0x6e,0x69,0x41,0x37,0x34,0x37,0x07,0x75,0x6e,0x69,0x41,0x37,
31352
+0x34,0x41,0x07,0x75,0x6e,0x69,0x41,0x37,0x34,0x42,0x07,0x75,
31353
+0x6e,0x69,0x41,0x37,0x34,0x45,0x07,0x75,0x6e,0x69,0x41,0x37,
31354
+0x34,0x46,0x07,0x75,0x6e,0x69,0x41,0x37,0x36,0x38,0x07,0x75,
31355
+0x6e,0x69,0x41,0x37,0x36,0x39,0x07,0x75,0x6e,0x69,0x41,0x37,
31356
+0x37,0x42,0x07,0x75,0x6e,0x69,0x41,0x37,0x37,0x43,0x07,0x75,
31357
+0x6e,0x69,0x41,0x37,0x38,0x30,0x07,0x75,0x6e,0x69,0x41,0x37,
31358
+0x38,0x31,0x07,0x75,0x6e,0x69,0x41,0x37,0x38,0x32,0x07,0x75,
31359
+0x6e,0x69,0x41,0x37,0x38,0x33,0x07,0x75,0x6e,0x69,0x41,0x37,
31360
+0x38,0x34,0x07,0x75,0x6e,0x69,0x41,0x37,0x38,0x35,0x07,0x75,
31361
+0x6e,0x69,0x41,0x37,0x38,0x36,0x07,0x75,0x6e,0x69,0x41,0x37,
31362
+0x38,0x37,0x07,0x75,0x6e,0x69,0x41,0x37,0x38,0x42,0x07,0x75,
31363
+0x6e,0x69,0x41,0x37,0x38,0x43,0x07,0x75,0x6e,0x69,0x41,0x37,
31364
+0x38,0x44,0x07,0x75,0x6e,0x69,0x41,0x37,0x39,0x30,0x07,0x75,
31365
+0x6e,0x69,0x41,0x37,0x39,0x31,0x07,0x75,0x6e,0x69,0x41,0x37,
31366
+0x41,0x41,0x07,0x75,0x6e,0x69,0x41,0x37,0x46,0x38,0x07,0x75,
31367
+0x6e,0x69,0x41,0x37,0x46,0x39,0x07,0x75,0x6e,0x69,0x41,0x37,
31368
+0x46,0x41,0x07,0x75,0x6e,0x69,0x41,0x37,0x46,0x42,0x07,0x75,
31369
+0x6e,0x69,0x41,0x37,0x46,0x43,0x07,0x75,0x6e,0x69,0x41,0x37,
31370
+0x46,0x44,0x07,0x75,0x6e,0x69,0x41,0x37,0x46,0x45,0x07,0x75,
31371
+0x6e,0x69,0x41,0x37,0x46,0x46,0x07,0x75,0x6e,0x69,0x46,0x34,
31372
+0x30,0x30,0x07,0x75,0x6e,0x69,0x46,0x34,0x30,0x31,0x07,0x75,
31373
+0x6e,0x69,0x46,0x34,0x30,0x32,0x07,0x75,0x6e,0x69,0x46,0x34,
31374
+0x30,0x33,0x07,0x75,0x6e,0x69,0x46,0x34,0x30,0x34,0x07,0x75,
31375
+0x6e,0x69,0x46,0x34,0x30,0x35,0x07,0x75,0x6e,0x69,0x46,0x34,
31376
+0x30,0x36,0x07,0x75,0x6e,0x69,0x46,0x34,0x30,0x37,0x07,0x75,
31377
+0x6e,0x69,0x46,0x34,0x30,0x38,0x07,0x75,0x6e,0x69,0x46,0x34,
31378
+0x30,0x39,0x07,0x75,0x6e,0x69,0x46,0x34,0x30,0x41,0x07,0x75,
31379
+0x6e,0x69,0x46,0x34,0x30,0x42,0x07,0x75,0x6e,0x69,0x46,0x34,
31380
+0x30,0x43,0x07,0x75,0x6e,0x69,0x46,0x34,0x30,0x44,0x07,0x75,
31381
+0x6e,0x69,0x46,0x34,0x30,0x45,0x07,0x75,0x6e,0x69,0x46,0x34,
31382
+0x30,0x46,0x07,0x75,0x6e,0x69,0x46,0x34,0x31,0x30,0x07,0x75,
31383
+0x6e,0x69,0x46,0x34,0x31,0x31,0x07,0x75,0x6e,0x69,0x46,0x34,
31384
+0x31,0x32,0x07,0x75,0x6e,0x69,0x46,0x34,0x31,0x33,0x07,0x75,
31385
+0x6e,0x69,0x46,0x34,0x31,0x34,0x07,0x75,0x6e,0x69,0x46,0x34,
31386
+0x31,0x35,0x07,0x75,0x6e,0x69,0x46,0x34,0x31,0x36,0x07,0x75,
31387
+0x6e,0x69,0x46,0x34,0x31,0x37,0x07,0x75,0x6e,0x69,0x46,0x34,
31388
+0x31,0x38,0x07,0x75,0x6e,0x69,0x46,0x34,0x31,0x39,0x07,0x75,
31389
+0x6e,0x69,0x46,0x34,0x31,0x41,0x07,0x75,0x6e,0x69,0x46,0x34,
31390
+0x31,0x42,0x07,0x75,0x6e,0x69,0x46,0x34,0x31,0x43,0x07,0x75,
31391
+0x6e,0x69,0x46,0x34,0x31,0x44,0x07,0x75,0x6e,0x69,0x46,0x34,
31392
+0x31,0x45,0x07,0x75,0x6e,0x69,0x46,0x34,0x31,0x46,0x07,0x75,
31393
+0x6e,0x69,0x46,0x34,0x32,0x30,0x07,0x75,0x6e,0x69,0x46,0x34,
31394
+0x32,0x31,0x07,0x75,0x6e,0x69,0x46,0x34,0x32,0x32,0x07,0x75,
31395
+0x6e,0x69,0x46,0x34,0x32,0x33,0x07,0x75,0x6e,0x69,0x46,0x34,
31396
+0x32,0x34,0x07,0x75,0x6e,0x69,0x46,0x34,0x32,0x35,0x07,0x75,
31397
+0x6e,0x69,0x46,0x34,0x32,0x36,0x07,0x75,0x6e,0x69,0x46,0x34,
31398
+0x32,0x38,0x07,0x75,0x6e,0x69,0x46,0x36,0x43,0x35,0x08,0x63,
31399
+0x79,0x72,0x42,0x72,0x65,0x76,0x65,0x08,0x63,0x79,0x72,0x62,
31400
+0x72,0x65,0x76,0x65,0x07,0x75,0x6e,0x69,0x46,0x42,0x30,0x30,
31401
+0x07,0x75,0x6e,0x69,0x46,0x42,0x30,0x33,0x07,0x75,0x6e,0x69,
31402
+0x46,0x42,0x30,0x34,0x07,0x75,0x6e,0x69,0x46,0x42,0x30,0x35,
31403
+0x07,0x75,0x6e,0x69,0x46,0x42,0x30,0x36,0x07,0x75,0x6e,0x69,
31404
+0x46,0x45,0x30,0x30,0x07,0x75,0x6e,0x69,0x46,0x45,0x30,0x31,
31405
+0x07,0x75,0x6e,0x69,0x46,0x45,0x30,0x32,0x07,0x75,0x6e,0x69,
31406
+0x46,0x45,0x30,0x33,0x07,0x75,0x6e,0x69,0x46,0x45,0x30,0x34,
31407
+0x07,0x75,0x6e,0x69,0x46,0x45,0x30,0x35,0x07,0x75,0x6e,0x69,
31408
+0x46,0x45,0x30,0x36,0x07,0x75,0x6e,0x69,0x46,0x45,0x30,0x37,
31409
+0x07,0x75,0x6e,0x69,0x46,0x45,0x30,0x38,0x07,0x75,0x6e,0x69,
31410
+0x46,0x45,0x30,0x39,0x07,0x75,0x6e,0x69,0x46,0x45,0x30,0x41,
31411
+0x07,0x75,0x6e,0x69,0x46,0x45,0x30,0x42,0x07,0x75,0x6e,0x69,
31412
+0x46,0x45,0x30,0x43,0x07,0x75,0x6e,0x69,0x46,0x45,0x30,0x44,
31413
+0x07,0x75,0x6e,0x69,0x46,0x45,0x30,0x45,0x07,0x75,0x6e,0x69,
31414
+0x46,0x45,0x30,0x46,0x07,0x75,0x6e,0x69,0x46,0x46,0x46,0x39,
31415
+0x07,0x75,0x6e,0x69,0x46,0x46,0x46,0x41,0x07,0x75,0x6e,0x69,
31416
+0x46,0x46,0x46,0x42,0x07,0x75,0x6e,0x69,0x46,0x46,0x46,0x43,
31417
+0x07,0x75,0x6e,0x69,0x46,0x46,0x46,0x44,0x06,0x75,0x31,0x44,
31418
+0x34,0x33,0x34,0x06,0x75,0x31,0x44,0x34,0x33,0x35,0x06,0x75,
31419
+0x31,0x44,0x34,0x33,0x36,0x06,0x75,0x31,0x44,0x34,0x33,0x37,
31420
+0x06,0x75,0x31,0x44,0x34,0x33,0x38,0x06,0x75,0x31,0x44,0x34,
31421
+0x33,0x39,0x06,0x75,0x31,0x44,0x34,0x33,0x41,0x06,0x75,0x31,
31422
+0x44,0x34,0x33,0x42,0x06,0x75,0x31,0x44,0x34,0x33,0x43,0x06,
31423
+0x75,0x31,0x44,0x34,0x33,0x44,0x06,0x75,0x31,0x44,0x34,0x33,
31424
+0x45,0x06,0x75,0x31,0x44,0x34,0x33,0x46,0x06,0x75,0x31,0x44,
31425
+0x34,0x34,0x30,0x06,0x75,0x31,0x44,0x34,0x34,0x31,0x06,0x75,
31426
+0x31,0x44,0x34,0x34,0x32,0x06,0x75,0x31,0x44,0x34,0x34,0x33,
31427
+0x06,0x75,0x31,0x44,0x34,0x34,0x34,0x06,0x75,0x31,0x44,0x34,
31428
+0x34,0x35,0x06,0x75,0x31,0x44,0x34,0x34,0x36,0x06,0x75,0x31,
31429
+0x44,0x34,0x34,0x37,0x06,0x75,0x31,0x44,0x34,0x34,0x38,0x06,
31430
+0x75,0x31,0x44,0x34,0x34,0x39,0x06,0x75,0x31,0x44,0x34,0x34,
31431
+0x41,0x06,0x75,0x31,0x44,0x34,0x34,0x42,0x06,0x75,0x31,0x44,
31432
+0x34,0x34,0x43,0x06,0x75,0x31,0x44,0x34,0x34,0x44,0x06,0x75,
31433
+0x31,0x44,0x34,0x34,0x45,0x06,0x75,0x31,0x44,0x34,0x34,0x46,
31434
+0x06,0x75,0x31,0x44,0x34,0x35,0x30,0x06,0x75,0x31,0x44,0x34,
31435
+0x35,0x31,0x06,0x75,0x31,0x44,0x34,0x35,0x32,0x06,0x75,0x31,
31436
+0x44,0x34,0x35,0x33,0x06,0x75,0x31,0x44,0x34,0x35,0x34,0x06,
31437
+0x75,0x31,0x44,0x34,0x35,0x36,0x06,0x75,0x31,0x44,0x34,0x35,
31438
+0x37,0x06,0x75,0x31,0x44,0x34,0x35,0x38,0x06,0x75,0x31,0x44,
31439
+0x34,0x35,0x39,0x06,0x75,0x31,0x44,0x34,0x35,0x41,0x06,0x75,
31440
+0x31,0x44,0x34,0x35,0x42,0x06,0x75,0x31,0x44,0x34,0x35,0x43,
31441
+0x06,0x75,0x31,0x44,0x34,0x35,0x44,0x06,0x75,0x31,0x44,0x34,
31442
+0x35,0x45,0x06,0x75,0x31,0x44,0x34,0x35,0x46,0x06,0x75,0x31,
31443
+0x44,0x34,0x36,0x30,0x06,0x75,0x31,0x44,0x34,0x36,0x31,0x06,
31444
+0x75,0x31,0x44,0x34,0x36,0x32,0x06,0x75,0x31,0x44,0x34,0x36,
31445
+0x33,0x06,0x75,0x31,0x44,0x34,0x36,0x34,0x06,0x75,0x31,0x44,
31446
+0x34,0x36,0x35,0x06,0x75,0x31,0x44,0x34,0x36,0x36,0x06,0x75,
31447
+0x31,0x44,0x34,0x36,0x37,0x06,0x75,0x31,0x44,0x35,0x33,0x38,
31448
+0x06,0x75,0x31,0x44,0x35,0x33,0x39,0x06,0x75,0x31,0x44,0x35,
31449
+0x33,0x42,0x06,0x75,0x31,0x44,0x35,0x33,0x43,0x06,0x75,0x31,
31450
+0x44,0x35,0x33,0x44,0x06,0x75,0x31,0x44,0x35,0x33,0x45,0x06,
31451
+0x75,0x31,0x44,0x35,0x34,0x30,0x06,0x75,0x31,0x44,0x35,0x34,
31452
+0x31,0x06,0x75,0x31,0x44,0x35,0x34,0x32,0x06,0x75,0x31,0x44,
31453
+0x35,0x34,0x33,0x06,0x75,0x31,0x44,0x35,0x34,0x34,0x06,0x75,
31454
+0x31,0x44,0x35,0x34,0x36,0x06,0x75,0x31,0x44,0x35,0x34,0x41,
31455
+0x06,0x75,0x31,0x44,0x35,0x34,0x42,0x06,0x75,0x31,0x44,0x35,
31456
+0x34,0x43,0x06,0x75,0x31,0x44,0x35,0x34,0x44,0x06,0x75,0x31,
31457
+0x44,0x35,0x34,0x45,0x06,0x75,0x31,0x44,0x35,0x34,0x46,0x06,
31458
+0x75,0x31,0x44,0x35,0x35,0x30,0x06,0x75,0x31,0x44,0x35,0x35,
31459
+0x32,0x06,0x75,0x31,0x44,0x35,0x35,0x33,0x06,0x75,0x31,0x44,
31460
+0x35,0x35,0x34,0x06,0x75,0x31,0x44,0x35,0x35,0x35,0x06,0x75,
31461
+0x31,0x44,0x35,0x35,0x36,0x06,0x75,0x31,0x44,0x35,0x35,0x37,
31462
+0x06,0x75,0x31,0x44,0x35,0x35,0x38,0x06,0x75,0x31,0x44,0x35,
31463
+0x35,0x39,0x06,0x75,0x31,0x44,0x35,0x35,0x41,0x06,0x75,0x31,
31464
+0x44,0x35,0x35,0x42,0x06,0x75,0x31,0x44,0x35,0x35,0x43,0x06,
31465
+0x75,0x31,0x44,0x35,0x35,0x44,0x06,0x75,0x31,0x44,0x35,0x35,
31466
+0x45,0x06,0x75,0x31,0x44,0x35,0x35,0x46,0x06,0x75,0x31,0x44,
31467
+0x35,0x36,0x30,0x06,0x75,0x31,0x44,0x35,0x36,0x31,0x06,0x75,
31468
+0x31,0x44,0x35,0x36,0x32,0x06,0x75,0x31,0x44,0x35,0x36,0x33,
31469
+0x06,0x75,0x31,0x44,0x35,0x36,0x34,0x06,0x75,0x31,0x44,0x35,
31470
+0x36,0x35,0x06,0x75,0x31,0x44,0x35,0x36,0x36,0x06,0x75,0x31,
31471
+0x44,0x35,0x36,0x37,0x06,0x75,0x31,0x44,0x35,0x36,0x38,0x06,
31472
+0x75,0x31,0x44,0x35,0x36,0x39,0x06,0x75,0x31,0x44,0x35,0x36,
31473
+0x41,0x06,0x75,0x31,0x44,0x35,0x36,0x42,0x06,0x75,0x31,0x44,
31474
+0x36,0x41,0x34,0x06,0x75,0x31,0x44,0x36,0x41,0x35,0x06,0x75,
31475
+0x31,0x44,0x37,0x44,0x38,0x06,0x75,0x31,0x44,0x37,0x44,0x39,
31476
+0x06,0x75,0x31,0x44,0x37,0x44,0x41,0x06,0x75,0x31,0x44,0x37,
31477
+0x44,0x42,0x06,0x75,0x31,0x44,0x37,0x44,0x43,0x06,0x75,0x31,
31478
+0x44,0x37,0x44,0x44,0x06,0x75,0x31,0x44,0x37,0x44,0x45,0x06,
31479
+0x75,0x31,0x44,0x37,0x44,0x46,0x06,0x75,0x31,0x44,0x37,0x45,
31480
+0x30,0x06,0x75,0x31,0x44,0x37,0x45,0x31,0x09,0x64,0x6c,0x4c,
31481
+0x74,0x63,0x61,0x72,0x6f,0x6e,0x08,0x44,0x69,0x65,0x72,0x65,
31482
+0x73,0x69,0x73,0x05,0x41,0x63,0x75,0x74,0x65,0x05,0x54,0x69,
31483
+0x6c,0x64,0x65,0x05,0x47,0x72,0x61,0x76,0x65,0x0a,0x43,0x69,
31484
+0x72,0x63,0x75,0x6d,0x66,0x6c,0x65,0x78,0x05,0x43,0x61,0x72,
31485
+0x6f,0x6e,0x0c,0x75,0x6e,0x69,0x30,0x33,0x31,0x31,0x2e,0x63,
31486
+0x61,0x73,0x65,0x05,0x42,0x72,0x65,0x76,0x65,0x09,0x44,0x6f,
31487
+0x74,0x61,0x63,0x63,0x65,0x6e,0x74,0x0c,0x48,0x75,0x6e,0x67,
31488
+0x61,0x72,0x75,0x6d,0x6c,0x61,0x75,0x74,0x0b,0x44,0x6f,0x75,
31489
+0x62,0x6c,0x65,0x67,0x72,0x61,0x76,0x65,0x0f,0x69,0x6f,0x67,
31490
+0x6f,0x6e,0x65,0x6b,0x2e,0x64,0x6f,0x74,0x6c,0x65,0x73,0x73,
31491
+0x0f,0x75,0x6e,0x69,0x30,0x32,0x36,0x38,0x2e,0x64,0x6f,0x74,
31492
+0x6c,0x65,0x73,0x73,0x0b,0x64,0x6f,0x74,0x61,0x63,0x63,0x65,
31493
+0x6e,0x74,0x2e,0x69,0x0f,0x75,0x6e,0x69,0x30,0x32,0x39,0x44,
31494
+0x2e,0x64,0x6f,0x74,0x6c,0x65,0x73,0x73,0x0f,0x75,0x6e,0x69,
31495
+0x31,0x45,0x32,0x44,0x2e,0x64,0x6f,0x74,0x6c,0x65,0x73,0x73,
31496
+0x0f,0x75,0x6e,0x69,0x31,0x45,0x43,0x42,0x2e,0x64,0x6f,0x74,
31497
+0x6c,0x65,0x73,0x73,0x07,0x45,0x6e,0x67,0x2e,0x61,0x6c,0x74,
31498
+0x0a,0x62,0x72,0x61,0x69,0x6c,0x6c,0x65,0x64,0x6f,0x74,0x0b,
31499
+0x75,0x6e,0x69,0x30,0x33,0x30,0x38,0x30,0x33,0x30,0x34,0x0b,
31500
+0x75,0x6e,0x69,0x30,0x33,0x30,0x34,0x30,0x33,0x30,0x38,0x0b,
31501
+0x75,0x6e,0x69,0x30,0x33,0x30,0x37,0x30,0x33,0x30,0x34,0x0b,
31502
+0x75,0x6e,0x69,0x30,0x33,0x30,0x38,0x30,0x33,0x30,0x31,0x0b,
31503
+0x75,0x6e,0x69,0x30,0x33,0x30,0x38,0x30,0x33,0x30,0x30,0x0b,
31504
+0x75,0x6e,0x69,0x30,0x33,0x30,0x34,0x30,0x33,0x30,0x31,0x0b,
31505
+0x75,0x6e,0x69,0x30,0x33,0x30,0x34,0x30,0x33,0x30,0x30,0x0b,
31506
+0x75,0x6e,0x69,0x30,0x33,0x30,0x33,0x30,0x33,0x30,0x34,0x0b,
31507
+0x75,0x6e,0x69,0x30,0x33,0x30,0x38,0x30,0x33,0x30,0x43,0x0b,
31508
+0x75,0x6e,0x69,0x30,0x33,0x30,0x33,0x30,0x33,0x30,0x38,0x0b,
31509
+0x75,0x6e,0x69,0x30,0x33,0x30,0x43,0x30,0x33,0x30,0x37,0x0b,
31510
+0x75,0x6e,0x69,0x30,0x33,0x30,0x33,0x30,0x33,0x30,0x31,0x0b,
31511
+0x75,0x6e,0x69,0x30,0x33,0x30,0x32,0x30,0x33,0x30,0x31,0x0b,
31512
+0x75,0x6e,0x69,0x30,0x33,0x30,0x32,0x30,0x33,0x30,0x30,0x0b,
31513
+0x75,0x6e,0x69,0x30,0x33,0x30,0x32,0x30,0x33,0x30,0x33,0x0b,
31514
+0x75,0x6e,0x69,0x30,0x33,0x30,0x36,0x30,0x33,0x30,0x33,0x0b,
31515
+0x75,0x6e,0x69,0x30,0x33,0x30,0x36,0x30,0x33,0x30,0x31,0x0b,
31516
+0x75,0x6e,0x69,0x30,0x33,0x30,0x36,0x30,0x33,0x30,0x30,0x0b,
31517
+0x75,0x6e,0x69,0x30,0x33,0x30,0x36,0x30,0x33,0x30,0x39,0x0b,
31518
+0x75,0x6e,0x69,0x30,0x33,0x30,0x32,0x30,0x33,0x30,0x39,0x0b,
31519
+0x75,0x6e,0x69,0x30,0x33,0x30,0x31,0x30,0x33,0x30,0x37,0x05,
31520
+0x67,0x2e,0x61,0x6c,0x74,0x08,0x45,0x6e,0x67,0x2e,0x61,0x6c,
31521
+0x74,0x32,0x0b,0x75,0x6e,0x69,0x30,0x31,0x42,0x37,0x2e,0x61,
31522
+0x6c,0x74,0x06,0x71,0x2e,0x73,0x6d,0x63,0x70,0x0a,0x64,0x65,
31523
+0x6c,0x74,0x61,0x2e,0x73,0x6d,0x63,0x70,0x0a,0x74,0x68,0x65,
31524
+0x74,0x61,0x2e,0x73,0x6d,0x63,0x70,0x07,0x78,0x69,0x2e,0x73,
31525
+0x6d,0x63,0x70,0x0a,0x73,0x69,0x67,0x6d,0x61,0x2e,0x73,0x6d,
31526
+0x63,0x70,0x08,0x70,0x68,0x69,0x2e,0x73,0x6d,0x63,0x70,0x0a,
31527
+0x6f,0x6d,0x65,0x67,0x61,0x2e,0x73,0x6d,0x63,0x70,0x0f,0x65,
31528
+0x78,0x63,0x6c,0x61,0x6d,0x64,0x6f,0x77,0x6e,0x2e,0x63,0x61,
31529
+0x73,0x65,0x11,0x71,0x75,0x65,0x73,0x74,0x69,0x6f,0x6e,0x64,
31530
+0x6f,0x77,0x6e,0x2e,0x63,0x61,0x73,0x65,0x0c,0x75,0x6e,0x69,
31531
+0x32,0x45,0x31,0x38,0x2e,0x63,0x61,0x73,0x65,0x0f,0x67,0x65,
31532
+0x72,0x6d,0x61,0x6e,0x64,0x62,0x6c,0x73,0x2e,0x73,0x6d,0x63,
31533
+0x70,0x0e,0x55,0x72,0x69,0x6e,0x67,0x2e,0x72,0x69,0x6e,0x67,
31534
+0x6c,0x65,0x73,0x73,0x0a,0x44,0x63,0x72,0x6f,0x61,0x74,0x2e,
31535
+0x61,0x6c,0x74,0x0a,0x64,0x63,0x72,0x6f,0x61,0x74,0x2e,0x61,
31536
+0x6c,0x74,0x0b,0x75,0x6e,0x69,0x30,0x31,0x45,0x34,0x2e,0x61,
31537
+0x6c,0x74,0x0b,0x75,0x6e,0x69,0x30,0x31,0x45,0x35,0x2e,0x61,
31538
+0x6c,0x74,0x0f,0x70,0x72,0x6f,0x64,0x75,0x63,0x74,0x2e,0x64,
31539
+0x69,0x73,0x70,0x6c,0x61,0x79,0x0f,0x75,0x6e,0x69,0x32,0x32,
31540
+0x31,0x30,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x11,0x73,
31541
+0x75,0x6d,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x64,0x69,0x73,
31542
+0x70,0x6c,0x61,0x79,0x10,0x69,0x6e,0x74,0x65,0x67,0x72,0x61,
31543
+0x6c,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0f,0x75,0x6e,
31544
+0x69,0x32,0x32,0x32,0x43,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,
31545
+0x79,0x0f,0x75,0x6e,0x69,0x32,0x32,0x32,0x44,0x2e,0x64,0x69,
31546
+0x73,0x70,0x6c,0x61,0x79,0x0f,0x75,0x6e,0x69,0x32,0x41,0x30,
31547
+0x43,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x0f,0x75,0x6e,
31548
+0x69,0x32,0x41,0x30,0x44,0x2e,0x64,0x69,0x73,0x70,0x6c,0x61,
31549
+0x79,0x0f,0x75,0x6e,0x69,0x32,0x41,0x30,0x45,0x2e,0x64,0x69,
31550
+0x73,0x70,0x6c,0x61,0x79,0x0b,0x75,0x6e,0x69,0x32,0x32,0x31,
31551
+0x41,0x2e,0x65,0x78,0x74,0x0b,0x75,0x6e,0x69,0x32,0x32,0x31,
31552
+0x41,0x2e,0x74,0x6f,0x70,0x0c,0x6d,0x69,0x6e,0x75,0x74,0x65,
31553
+0x2e,0x73,0x73,0x74,0x79,0x31,0x0c,0x73,0x65,0x63,0x6f,0x6e,
31554
+0x64,0x2e,0x73,0x73,0x74,0x79,0x31,0x0d,0x75,0x6e,0x69,0x32,
31555
+0x30,0x33,0x34,0x2e,0x73,0x73,0x74,0x79,0x31,0x0d,0x75,0x6e,
31556
+0x69,0x32,0x30,0x33,0x35,0x2e,0x73,0x73,0x74,0x79,0x31,0x0d,
31557
+0x75,0x6e,0x69,0x32,0x30,0x33,0x36,0x2e,0x73,0x73,0x74,0x79,
31558
+0x31,0x0d,0x75,0x6e,0x69,0x32,0x30,0x33,0x37,0x2e,0x73,0x73,
31559
+0x74,0x79,0x31,0x0c,0x75,0x6e,0x69,0x32,0x30,0x35,0x37,0x2e,
31560
+0x73,0x73,0x74,0x79,0xb8,0x02,0x80,0x40,0xe0,0xc7,0xfe,0x03,
31561
+0xc6,0x13,0x03,0xc5,0xc4,0x24,0x05,0xc5,0x64,0x03,0xc5,0x40,
31562
+0x04,0xc4,0x24,0x03,0xc3,0x0d,0x03,0xc2,0xc1,0x27,0x05,0xc2,
31563
+0x64,0x03,0xc1,0x27,0x03,0xc0,0x5d,0x03,0xbf,0x7d,0x03,0xbc,
31564
+0x0b,0x03,0xbb,0x0b,0x03,0xba,0xb9,0x14,0x05,0xba,0x32,0x03,
31565
+0xb9,0x14,0x03,0xb8,0x32,0x03,0xb7,0xfe,0x03,0xb6,0xfe,0x03,
31566
+0xb5,0xfe,0x03,0xb3,0xfe,0x03,0xb2,0xfe,0x03,0xb1,0xb0,0x47,
31567
+0x05,0xb1,0xfa,0x03,0xb0,0x47,0x03,0xaf,0xfe,0x03,0xae,0x7d,
31568
+0x03,0xad,0xfe,0x03,0xac,0x0e,0x03,0xab,0xaa,0x0c,0x05,0xab,
31569
+0x14,0x03,0xaa,0x0c,0x03,0xa9,0x32,0x03,0xa8,0x64,0x03,0xa7,
31570
+0x1e,0x03,0xa4,0x32,0x03,0xa3,0xa2,0x64,0x05,0xa3,0xfe,0x03,
31571
+0xa2,0x64,0x03,0xa1,0x96,0x0e,0x05,0xa1,0x25,0x03,0xa0,0x78,
31572
+0x0a,0x05,0xa0,0x25,0x03,0x9f,0x4b,0x03,0x9e,0x10,0x03,0x9d,
31573
+0x2e,0x03,0x9c,0x88,0x1e,0x05,0x9c,0xfe,0x03,0x9b,0x9a,0x10,
31574
+0x05,0x9b,0x1d,0x03,0x9a,0x10,0x03,0x99,0x98,0x0e,0x05,0x99,
31575
+0x25,0x03,0x98,0x78,0x0a,0x05,0x98,0x0e,0x03,0x98,0x40,0x04,
31576
+0x97,0x96,0x0e,0x05,0x97,0x14,0x03,0x97,0x80,0x04,0x96,0x0e,
31577
+0x03,0x96,0x40,0x04,0x95,0x25,0x03,0x94,0x84,0x30,0x05,0x94,
31578
+0xfe,0x03,0x93,0x92,0x13,0x05,0x93,0x25,0x03,0x92,0x91,0x0d,
31579
+0x05,0x92,0x13,0x03,0x92,0xb8,0x01,0x40,0x40,0x09,0x04,0x91,
31580
+0x90,0x0a,0x05,0x91,0x0d,0x03,0x91,0xb8,0x01,0x00,0x40,0x49,
31581
+0x04,0x90,0x0a,0x03,0x90,0xc0,0x04,0x8f,0x6f,0x7d,0x05,0x8f,
31582
+0xbb,0x03,0x8e,0x81,0x0b,0x05,0x8e,0x11,0x03,0x8e,0x40,0x04,
31583
+0x8d,0x81,0x0b,0x05,0x8d,0x3a,0x03,0x8c,0x8b,0xbb,0x05,0x8c,
31584
+0xfe,0x03,0x8b,0x8a,0x5d,0x05,0x8b,0xbb,0x03,0x8b,0x80,0x04,
31585
+0x8a,0x89,0x25,0x05,0x8a,0x5d,0x03,0x8a,0x40,0x04,0x89,0x88,
31586
+0x1e,0x05,0x89,0x25,0x03,0x88,0x87,0x11,0x05,0x88,0x1e,0x03,
31587
+0x88,0xb8,0xff,0xc0,0x40,0xff,0x04,0x87,0x11,0x03,0x85,0x84,
31588
+0x30,0x05,0x85,0x64,0x03,0x84,0x30,0x03,0x83,0x16,0x03,0x82,
31589
+0x96,0x03,0x81,0x0b,0x03,0x80,0x64,0x64,0x05,0x80,0xfe,0x03,
31590
+0x7f,0x6c,0x10,0x05,0x7f,0x19,0x03,0x7e,0x7d,0x0e,0x05,0x7e,
31591
+0x32,0x03,0x7d,0x0e,0x03,0x7c,0x7b,0x0f,0x05,0x7c,0x13,0x03,
31592
+0x7b,0x0f,0x03,0x7a,0x96,0x03,0x79,0x11,0x03,0x78,0x0a,0x03,
31593
+0x77,0x76,0x20,0x05,0x77,0xfa,0x03,0x76,0x75,0x1c,0x05,0x76,
31594
+0x20,0x03,0x75,0x1c,0x03,0x74,0x6c,0x10,0x05,0x74,0x1e,0x03,
31595
+0x73,0xfe,0x03,0x72,0xfe,0x03,0x71,0x70,0x0d,0x05,0x71,0xfe,
31596
+0x03,0x70,0x0d,0x03,0x70,0x40,0x04,0x6f,0x7d,0x03,0x6e,0x6d,
31597
+0x3e,0x05,0x6e,0x6b,0x03,0x6d,0x3e,0x03,0x6c,0x6b,0x0c,0x05,
31598
+0x6c,0x10,0x03,0x6c,0x80,0x04,0x6b,0x0c,0x03,0x6b,0x40,0x04,
31599
+0x6a,0x64,0x64,0x05,0x6a,0xfa,0x03,0x69,0x68,0xbb,0x05,0x69,
31600
+0xfe,0x03,0x68,0x67,0x5d,0x05,0x68,0xbb,0x03,0x68,0x80,0x04,
31601
+0x67,0x66,0x25,0x05,0x67,0x5d,0x03,0x67,0x40,0x04,0x66,0x25,
31602
+0x03,0x65,0x64,0x64,0x05,0x65,0xfa,0x03,0x64,0x64,0x03,0x63,
31603
+0x15,0x03,0x62,0xfe,0x03,0x61,0xfe,0x03,0x60,0x5f,0x2e,0x05,
31604
+0x60,0xfe,0x03,0x5f,0x2e,0x03,0x5e,0xfe,0x03,0x5d,0xfe,0x03,
31605
+0x5c,0x4b,0x03,0x5b,0x7d,0x03,0x5a,0xfe,0x03,0x59,0x44,0x03,
31606
+0x58,0xfe,0x03,0x57,0xfe,0x03,0x56,0xbb,0x03,0x55,0xfe,0x03,
31607
+0x53,0x64,0x03,0x52,0x14,0x03,0x51,0x32,0x03,0x50,0x4f,0x0f,
31608
+0x05,0x50,0x7d,0x03,0x4f,0x0f,0x03,0x4e,0x41,0x40,0x42,0x03,
31609
+0x4c,0x0b,0x03,0x4a,0x64,0x03,0x49,0x22,0x08,0x05,0x49,0x96,
31610
+0x03,0x48,0x32,0x03,0x47,0x03,0x10,0x05,0x47,0x13,0x03,0x46,
31611
+0x12,0x03,0x45,0x02,0x0a,0x05,0x45,0x19,0x03,0x44,0x43,0x13,
31612
+0x05,0x44,0x6b,0x03,0x43,0x42,0x10,0x05,0x43,0x13,0x03,0x42,
31613
+0x41,0x0b,0x05,0x42,0x10,0x03,0x41,0x40,0x09,0x05,0x41,0x0b,
31614
+0x03,0x40,0x09,0x03,0x40,0xb8,0xff,0xc0,0x40,0x53,0x04,0x3f,
31615
+0x96,0x03,0x3e,0x04,0x2d,0x05,0x3e,0x4d,0x03,0x3d,0x3c,0x14,
31616
+0x05,0x3d,0x4b,0x03,0x3c,0x3b,0x0a,0x05,0x3c,0x14,0x03,0x3c,
31617
+0x40,0x04,0x3b,0x0a,0x03,0x3a,0x39,0x12,0x05,0x3a,0x5d,0x03,
31618
+0x39,0x38,0x11,0x05,0x39,0x12,0x03,0x38,0x11,0x03,0x37,0x0d,
31619
+0x03,0x36,0xfe,0x03,0x35,0x34,0x14,0x05,0x35,0xfe,0x03,0x34,
31620
+0x33,0x13,0x05,0x34,0x14,0x03,0x33,0x32,0x0a,0x05,0x33,0x13,
31621
+0x03,0x32,0x31,0x09,0x05,0x32,0x0a,0x03,0x32,0xb8,0xff,0xc0,
31622
+0x40,0xff,0x04,0x31,0x09,0x03,0x30,0x2f,0x18,0x05,0x30,0x44,
31623
+0x03,0x2f,0x2e,0x15,0x05,0x2f,0x18,0x03,0x2f,0xc0,0x04,0x2e,
31624
+0x1e,0x0a,0x05,0x2e,0x15,0x03,0x2e,0x80,0x04,0x2d,0x09,0x64,
31625
+0x05,0x2d,0x96,0x03,0x2c,0x2b,0x14,0x05,0x2c,0x4b,0x03,0x2b,
31626
+0x22,0x08,0x05,0x2b,0x14,0x03,0x2b,0x40,0x04,0x2a,0x02,0x0a,
31627
+0x05,0x2a,0x64,0x03,0x29,0x28,0x30,0x05,0x29,0x41,0x03,0x28,
31628
+0x04,0x2d,0x05,0x28,0x30,0x03,0x27,0x04,0x2d,0x05,0x27,0xfe,
31629
+0x03,0x26,0x3a,0x03,0x25,0x0d,0x18,0x05,0x25,0x5d,0x03,0x24,
31630
+0x23,0x12,0x05,0x24,0x53,0x03,0x23,0x22,0x08,0x05,0x23,0x12,
31631
+0x03,0x23,0x40,0x04,0x22,0x08,0x03,0x21,0x20,0x18,0x05,0x21,
31632
+0x5d,0x03,0x20,0x1f,0x11,0x05,0x20,0x18,0x03,0x20,0xc0,0x04,
31633
+0x1f,0x1e,0x0a,0x05,0x1f,0x11,0x03,0x1f,0x80,0x04,0x1e,0x0a,
31634
+0x03,0x1e,0x40,0x04,0x1d,0x23,0x03,0x1c,0x0f,0x03,0x1b,0x24,
31635
+0x03,0x1a,0x19,0x30,0x05,0x1a,0x53,0x03,0x19,0x04,0x2d,0x05,
31636
+0x19,0x30,0x03,0x18,0xfe,0x03,0x17,0x02,0x0a,0x05,0x17,0xfe,
31637
+0x03,0x16,0x10,0x03,0x15,0x14,0x14,0x05,0x15,0x6b,0x03,0x14,
31638
+0x13,0x13,0x05,0x14,0x14,0x03,0x14,0x40,0x04,0x13,0x13,0x03,
31639
+0x12,0x04,0x2d,0x05,0x12,0xbb,0x03,0x11,0x03,0x10,0x05,0x11,
31640
+0xfe,0x03,0x10,0x03,0x10,0x05,0x10,0x42,0x03,0x0f,0x09,0x64,
31641
+0x05,0x0f,0x96,0x03,0x0e,0x04,0x2d,0x05,0x0e,0xfe,0x03,0x0d,
31642
+0x02,0x0a,0x05,0x0d,0x18,0x03,0x0d,0x40,0x04,0x0c,0xfe,0x03,
31643
+0x0b,0x02,0x0a,0x05,0x0b,0x40,0x38,0x6b,0x03,0x0a,0x09,0x64,
31644
+0x05,0x0a,0x7d,0x03,0x09,0x64,0x03,0x08,0x07,0x11,0x05,0x08,
31645
+0x14,0x03,0x07,0x11,0x03,0x06,0x05,0x32,0x05,0x06,0x7d,0x03,
31646
+0x05,0x04,0x2d,0x05,0x05,0x32,0x03,0x04,0x03,0x10,0x05,0x04,
31647
+0x2d,0x03,0x03,0x10,0x03,0x02,0x0a,0x03,0x01,0x53,0x03,0x00,
31648
+0xfe,0x03,0x01,0xb8,0x01,0x64,0x85,0x8d,0x01,0x2b,0x2b,0x2b,
31649
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31650
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31651
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31652
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31653
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31654
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31655
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31656
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31657
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31658
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31659
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31660
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31661
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x00,0x2b,0x2b,0x2b,0x2b,
31662
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31663
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31664
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31665
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31666
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31667
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31668
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31669
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31670
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31671
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31672
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31673
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,
31674
+0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x2b,0x1d,0x00,0x00
31675
+};
31676
+static const unsigned int THE_DejaVuSerif_ttf_LEN = 379740;
31677
sview-15_11.tar.gz/StShared/StFTFont.cpp -> sview-16_06.tar.gz/StShared/StFTFont.cpp Changed
62
 
1
@@ -125,18 +125,55 @@
2
         FT_Done_Face(aFace);
3
         aFace = NULL;
4
         return false;
5
-    } else if(FT_Select_Charmap(aFace, ft_encoding_unicode) != 0) {
6
-        ST_DEBUG_LOG("Font '" + aFontPath + "' doesn't contain Unicode charmap!");
7
+    }
8
+    return loadCharmap(aFontPath, aFace);
9
+}
10
+
11
+bool StFTFont::loadInternal(const StString&       theFontName,
12
+                            const unsigned char*  theFontData,
13
+                            const int             theDataLen,
14
+                            const StFTFont::Style theStyle) {
15
+    if(!myFTLib->isValid()
16
+    || theStyle <  Style_Regular
17
+    || theStyle >= StylesNB
18
+    || theFontData == NULL
19
+    || theDataLen  < 1) {
20
+        return false;
21
+    }
22
+    myUChar  = 0;
23
+    myFTFace = NULL;
24
+    myGlyphImg.nullify();
25
+    myFontPaths[theStyle] = theFontName;
26
+
27
+    FT_Face& aFace = myFTFaces[theStyle];
28
+    if(aFace != NULL) {
29
+        FT_Done_Face(aFace);
30
+    }
31
+
32
+    if(FT_New_Memory_Face(myFTLib->getInstance(), theFontData, theDataLen, 0, &aFace) != 0) {
33
+        ST_DEBUG_LOG("Font '" + theFontName + "' fail to load!");
34
         FT_Done_Face(aFace);
35
         aFace = NULL;
36
         return false;
37
     }
38
+    return loadCharmap(theFontName, aFace);
39
+}
40
+
41
+bool StFTFont::loadCharmap(const StString& theFontName,
42
+                           FT_Face&        theFace) {
43
+    (void )theFontName;
44
+    if(FT_Select_Charmap(theFace, ft_encoding_unicode) != 0) {
45
+        ST_DEBUG_LOG("Font '" + theFontName + "' doesn't contain Unicode charmap!");
46
+        FT_Done_Face(theFace);
47
+        theFace = NULL;
48
+        return false;
49
+    }
50
 
51
     // test Unicode subsets
52
     mySubsets[Subset_General] = true;
53
-    mySubsets[Subset_Korean]  = FT_Get_Char_Index(aFace, 0x0B371) != 0
54
-                             && FT_Get_Char_Index(aFace, 0x0D130) != 0;
55
-    mySubsets[Subset_CJK]     = FT_Get_Char_Index(aFace, 0x06F22) != 0;
56
+    mySubsets[Subset_Korean]  = FT_Get_Char_Index(theFace, 0x0B371) != 0
57
+                             && FT_Get_Char_Index(theFace, 0x0D130) != 0;
58
+    mySubsets[Subset_CJK]     = FT_Get_Char_Index(theFace, 0x06F22) != 0;
59
 
60
 //if(mySubsets[Subset_Korean]) { std::cerr << "  found Korean in " << myFontPath << "\n"; }
61
 //if(mySubsets[Subset_CJK])    { std::cerr << "  found CJK    in " << myFontPath << "\n"; }
62
sview-15_11.tar.gz/StShared/StFTFontRegistry.cpp -> sview-16_06.tar.gz/StShared/StFTFontRegistry.cpp Changed
86
 
1
@@ -21,6 +21,7 @@
2
     myFTLib = new StFTLibrary();
3
     myExtensions.add("ttf");
4
     myExtensions.add("ttc");
5
+    myExtensions.add("otf");
6
 
7
 #ifdef _WIN32
8
     myFolders.add(StProcess::getWindowsFolder() + "fonts");
9
@@ -71,21 +72,38 @@
10
     myFolders.add(stCString("/system/fonts"));
11
 
12
     // western
13
-    myFilesMajor.add(stCString("DroidSerif-Regular.ttf"));
14
-    myFilesMajor.add(stCString("DroidSerif-Bold.ttf"));
15
-    myFilesMajor.add(stCString("DroidSerif-Italic.ttf"));
16
-    myFilesMajor.add(stCString("DroidSerif-BoldItalic.ttf"));
17
+
18
+    // Android 6
19
+    myFilesMajor.add(stCString("NotoSerif-Regular.ttf"));
20
+    myFilesMajor.add(stCString("NotoSerif-Bold.ttf"));
21
+    myFilesMajor.add(stCString("NotoSerif-Italic.ttf"));
22
+    myFilesMajor.add(stCString("NotoSerif-BoldItalic.ttf"));
23
+
24
+    // Android 4
25
+    myFilesMinor.add(stCString("DroidSerif-Regular.ttf"));
26
+    myFilesMinor.add(stCString("DroidSerif-Bold.ttf"));
27
+    myFilesMinor.add(stCString("DroidSerif-Italic.ttf"));
28
+    myFilesMinor.add(stCString("DroidSerif-BoldItalic.ttf"));
29
+
30
     myFilesMajor.add(stCString("DroidSans.ttf"));
31
     myFilesMajor.add(stCString("DroidSans-Bold.ttf"));
32
     myFilesMajor.add(stCString("DroidSansMono.ttf"));
33
 
34
-    // following have been found on recent plates, but not on old smartphones - so mark them optional
35
+    // not all phones have the following fonts
36
 
37
-    // korean
38
+    // Korean
39
     myFilesMinor.add(stCString("NanumGothic.ttf"));
40
+    myFilesMinor.add(stCString("NotoSansKR-Regular.otf"));
41
 
42
-    // chinese
43
+    // Simplified Chinese
44
     myFilesMinor.add(stCString("DroidSansFallback.ttf"));
45
+    myFilesMinor.add(stCString("NotoSansSC-Regular.otf"));
46
+
47
+    // Traditional Chinese
48
+    //myFilesMinor.add(stCString("NotoSansTC-Regular.otf"));
49
+
50
+    // Japanese
51
+    //myFilesMinor.add(stCString("NotoSansJP-Regular.otf"));
52
 #else
53
     myFolders.add(stCString("/usr/share/fonts"));
54
     myFolders.add(stCString("/usr/local/share/fonts"));
55
@@ -222,15 +240,28 @@
56
     aSans .CJK     = findFont(stCString("STFangsong"));
57
     aMono .CJK     = findFont(stCString("STFangsong"));
58
 #elif defined(__ANDROID__)
59
-    aSerif.Western = findFont(stCString("Droid Serif"));
60
-    aSans .Western = findFont(stCString("Roboto"));
61
+    aSerif.Western = findFont(stCString("Noto Serif"));
62
+    if(aSerif.Western.FamilyName.isEmpty()) {
63
+        aSerif.Western = findFont(stCString("Droid Serif"));
64
+    }
65
+    aSans .Western = findFont(stCString("Roboto")); // actually DroidSans.ttf
66
     aMono .Western = findFont(stCString("Droid Sans Mono"));
67
     aSerif.Korean  = findFont(stCString("NanumGothic")); // no serif
68
     aSans .Korean  = findFont(stCString("NanumGothic"));
69
     aMono .Korean  = findFont(stCString("NanumGothic"));
70
+    if(aSerif.Korean.FamilyName.isEmpty()) {
71
+        aSerif.Korean = findFont(stCString("Noto Sans KR"));
72
+        aSans .Korean = findFont(stCString("Noto Sans KR"));
73
+        aMono .Korean = findFont(stCString("Noto Sans KR"));
74
+    }
75
     aSerif.CJK     = findFont(stCString("Droid Sans Fallback"));
76
     aSans .CJK     = findFont(stCString("Droid Sans Fallback"));
77
     aMono .CJK     = findFont(stCString("Droid Sans Fallback"));
78
+    if(aSerif.CJK.FamilyName.isEmpty()) {
79
+        aSerif.CJK = findFont(stCString("Noto Sans SC"));
80
+        aSans .CJK = findFont(stCString("Noto Sans SC"));
81
+        aMono .CJK = findFont(stCString("Noto Sans SC"));
82
+    }
83
 #else
84
     aSerif.Western = findFont(stCString("FreeSerif"));
85
     aSans .Western = findFont(stCString("FreeSans"));
86
sview-16_06.tar.gz/StShared/StFileNode.ObjC.mm Added
129
 
1
@@ -0,0 +1,127 @@
2
+/**
3
+ * Copyright © 2011 Kirill Gavrilov <kirill@sview.ru>
4
+ *
5
+ * Distributed under the Boost Software License, Version 1.0.
6
+ * See accompanying file license-boost.txt or copy at
7
+ * http://www.boost.org/LICENSE_1_0.txt
8
+ */
9
+
10
+#if (defined(__APPLE__))
11
+
12
+#include <StFile/StFileNode.h>
13
+#include <StFile/StMIMEList.h>
14
+
15
+#include <StCocoa/StCocoaLocalPool.h>
16
+
17
+#import <Cocoa/Cocoa.h>
18
+
19
+@interface StOpenFileInfo : NSObject
20
+    {
21
+        NSMutableArray* myFilter;
22
+        NSString*       myTitle;
23
+        NSString*       myFolder;
24
+        NSString*       myInitFileName;
25
+        @public
26
+        StString        myResult;
27
+        bool            myToSave;
28
+        @public
29
+        bool            myIsFileSelected;
30
+    }
31
+
32
+    - (id ) init: (NSMutableArray* ) theFilter
33
+       withTitle: (NSString* )       theTitle
34
+      withFolder: (NSString* )       theFolder
35
+        withFile: (NSString* )       theInitFileName
36
+          toSave: (bool )            theToSave;
37
+
38
+    - (void ) doDialog: (id ) theSender;
39
+@end
40
+
41
+@implementation StOpenFileInfo
42
+
43
+    - (id ) init: (NSMutableArray* ) theFilter
44
+       withTitle: (NSString* )       theTitle
45
+      withFolder: (NSString* )       theFolder
46
+        withFile: (NSString* )       theInitFileName
47
+          toSave: (bool )            theToSave {
48
+        self = [super init];
49
+        if(self == NULL) {
50
+            return NULL;
51
+        }
52
+        myFilter = theFilter;
53
+        myTitle  = theTitle;
54
+        myFolder = theFolder;
55
+        myInitFileName = theInitFileName;
56
+        myToSave = theToSave;
57
+        myIsFileSelected = false;
58
+        return self;
59
+    }
60
+
61
+    - (void ) doDialog: (id ) theSender {
62
+        StCocoaLocalPool aLocalPool;
63
+        NSSavePanel* aFilePanel = myToSave ? [NSSavePanel savePanel] : [NSOpenPanel openPanel];
64
+        [aFilePanel setTitle: myTitle];
65
+        [aFilePanel setNameFieldStringValue: myInitFileName];
66
+        [aFilePanel setDirectoryURL: [NSURL fileURLWithPath: myFolder]];
67
+
68
+        if(myFilter != NULL) {
69
+            [aFilePanel setAllowedFileTypes: myFilter];
70
+        }
71
+
72
+        if([aFilePanel runModal] == NSOKButton) {
73
+            myIsFileSelected = true;
74
+            // automatically convert filenames from decomposed form used by Mac OS X file systems
75
+            NSString* aFileName = [[aFilePanel filename] precomposedStringWithCanonicalMapping];
76
+            myResult = [aFileName UTF8String];
77
+        }
78
+    }
79
+
80
+@end
81
+
82
+bool StFileNode::openFileDialog(const StString& theFolder,
83
+                                const StString& theTitle,
84
+                                const StMIMEList& theFilter,
85
+                                StString& theFilePath,
86
+                                bool toSave) {
87
+    if(NSApp == nil) {
88
+        return false;
89
+    }
90
+
91
+    StString aFolderSrc, aFileNameSrc;
92
+    StFileNode::getFolderAndFile(theFilePath, aFolderSrc, aFileNameSrc);
93
+
94
+    StCocoaLocalPool aLocalPool;
95
+    NSString* aTitle     = [NSString stringWithUTF8String: theTitle.toCString()];
96
+    NSString* aFolder    = [NSString stringWithUTF8String: theFolder.toCString()];
97
+    NSString* anInitFile = [NSString stringWithUTF8String: aFileNameSrc.toCString()];
98
+    NSMutableArray* aFilter = NULL;
99
+    if(!theFilter.isEmpty()) {
100
+        aFilter = [NSMutableArray arrayWithCapacity: theFilter.size()];
101
+        for(size_t aMimeId = 0; aMimeId < theFilter.size(); ++aMimeId) {
102
+            const StMIME& aMime = theFilter[aMimeId];
103
+            [aFilter addObject: [NSString stringWithUTF8String: aMime.getExtension().toCString()]];
104
+        }
105
+    }
106
+
107
+    StOpenFileInfo* anOpenFile = [[StOpenFileInfo alloc] init: aFilter
108
+                                                    withTitle: aTitle
109
+                                                   withFolder: aFolder
110
+                                                     withFile: anInitFile
111
+                                                       toSave: toSave];
112
+    if([NSThread isMainThread]) {
113
+        [anOpenFile doDialog: NULL];
114
+    } else {
115
+        // create open file dialog in main thread due to Cocoa stupidity
116
+        [anOpenFile performSelectorOnMainThread: @selector(doDialog:)
117
+                                     withObject: NULL
118
+                                  waitUntilDone: YES];
119
+    }
120
+
121
+    bool isFileSelected = anOpenFile->myIsFileSelected;
122
+    theFilePath = anOpenFile->myResult;
123
+    [anOpenFile release];
124
+
125
+    return isFileSelected;
126
+}
127
+
128
+#endif // __APPLE__
129
sview-15_11.tar.gz/StShared/StFileNode.cpp -> sview-16_06.tar.gz/StShared/StFileNode.cpp Changed
12
 
1
@@ -116,9 +116,8 @@
2
 
3
 StString StFileNode::getCompatibleName(const StString& theFileName) {
4
 #ifdef _WIN32
5
-    /// TODO (Kirill Gavrilov#1) if result is empty - not a filesystem element or no DOS-names enabled
6
     stUtfWide_t aShortNameWide[MAX_PATH];
7
-    GetShortPathName(theFileName.toUtfWide().toCString(), aShortNameWide, MAX_PATH);
8
+    GetShortPathNameW(theFileName.toUtfWide().toCString(), aShortNameWide, MAX_PATH);
9
     return *aShortNameWide != L'\0' ? StString(aShortNameWide) : theFileName;
10
 #else
11
     return theFileName;
12
sview-15_11.tar.gz/StShared/StFileNode2.cpp -> sview-16_06.tar.gz/StShared/StFileNode2.cpp Changed
27
 
1
@@ -85,8 +85,13 @@
2
         }
3
     }
4
 
5
-    stUtfWide_t aFilePath[MAX_PATH];  aFilePath[0]  = L'\0';
6
-    stUtfWide_t aFileTitle[MAX_PATH]; aFileTitle[0] = L'\0';
7
+    stUtfWide_t aFilePath [4096]; aFilePath[0]  = L'\0';
8
+    stUtfWide_t aFileTitle[4096]; aFileTitle[0] = L'\0';
9
+    StStringUtfWide aFilePathIn(theFilePath.toCString());
10
+    if(!aFilePathIn.isEmpty()
11
+     && aFilePathIn.getSize() < 4096) {
12
+        stMemCpy(aFilePath, aFilePathIn.toCString(), (aFilePathIn.getSize() + 1) * sizeof(wchar_t));
13
+    }
14
     OPENFILENAMEW anOpenStruct; stMemSet(&anOpenStruct, 0, sizeof(OPENFILENAMEW));
15
     anOpenStruct.lStructSize     = sizeof(OPENFILENAMEW);
16
     anOpenStruct.hwndOwner       = NULL;
17
@@ -124,6 +129,9 @@
18
                                                      GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, (toSave ? GTK_STOCK_SAVE : GTK_STOCK_OPEN),
19
                                                      GTK_RESPONSE_ACCEPT, NULL);
20
     gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(aDialog), theFolder.toCString());
21
+    if(!theFilePath.isEmpty()) {
22
+        gtk_file_chooser_set_filename(GTK_FILE_CHOOSER(aDialog), theFilePath.toCString());
23
+    }
24
 
25
     GtkFileFilter* gtkFilter = gtk_file_filter_new();
26
     for(size_t aMimeId = 0; aMimeId < theFilter.size(); ++aMimeId) {
27
sview-15_11.tar.gz/StShared/StGLContext.cpp -> sview-16_06.tar.gz/StShared/StGLContext.cpp Changed
54
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2012-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2012-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -67,6 +67,7 @@
9
   extSwapTear(false),
10
   myFuncs(new StGLFunctions()),
11
   myResMgr(theResMgr),
12
+  myGlVendor(GlVendor_UNKNOWN),
13
   myGpuName(GPU_UNKNOWN),
14
   myVerMajor(0),
15
   myVerMinor(0),
16
@@ -118,6 +119,7 @@
17
   extAll(NULL),
18
   extSwapTear(false),
19
   myFuncs(new StGLFunctions()),
20
+  myGlVendor(GlVendor_UNKNOWN),
21
   myGpuName(GPU_UNKNOWN),
22
   myVerMajor(0),
23
   myVerMinor(0),
24
@@ -185,6 +187,13 @@
25
                                     unsigned int theSeverity,
26
                                     int          /*theLength*/,
27
                                     const char*  theMessage) {
28
+  if(myGlVendor == GlVendor_NVIDIA) {
29
+      // filter too verbose messages
30
+      if(theId == 131185) {
31
+          return;
32
+      }
33
+  }
34
+
35
 #ifdef GL_DEBUG_SOURCE_API_ARB
36
     const StCString& aSrc = (theSource >= GL_DEBUG_SOURCE_API_ARB
37
                           && theSource <= GL_DEBUG_SOURCE_OTHER_ARB)
38
@@ -1497,6 +1506,15 @@
39
 
40
 #endif // OpenGL desktop or ES
41
 
42
+    const StString aGlVendor((const char* )core11fwd->glGetString(GL_VENDOR));
43
+    if(aGlVendor.isContains(stCString("NVIDIA"))) {
44
+        myGlVendor = GlVendor_NVIDIA;
45
+    } else if(aGlVendor.isContains(stCString("ATI Technologies"))) {
46
+        myGlVendor = GlVendor_AMD;
47
+    } else if(aGlVendor.isContains(stCString("Intel"))) {
48
+        myGlVendor = GlVendor_Intel;
49
+    }
50
+
51
     const StString aGlRenderer((const char* )core11fwd->glGetString(GL_RENDERER));
52
     if(aGlRenderer.isContains(stCString("GeForce"))) {
53
         myGpuName = GPU_GEFORCE;
54
sview-15_11.tar.gz/StShared/StGLFontManager.cpp -> sview-16_06.tar.gz/StShared/StGLFontManager.cpp Changed
62
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2013 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2013-2015 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -11,6 +11,13 @@
9
 #include <StStrings/StLogger.h>
10
 #include <stAssert.h>
11
 
12
+namespace {
13
+
14
+    // fallback font
15
+    #include "StDejaVuSerif.ttf.h"
16
+
17
+}
18
+
19
 StGLFontManager::StGLFontManager(const unsigned int theResolution)
20
 : myFTLib(new StFTLibrary()),
21
   myResolution(theResolution) {
22
@@ -69,6 +76,24 @@
23
     return aFontGl;
24
 }
25
 
26
+StHandle<StGLFontEntry> StGLFontManager::findCreateFallback(unsigned int theSize) {
27
+    const StString aName = "ST_DejaVuSerif_ttf";
28
+    StHandle<StGLFontEntry>& aFontGl = myFonts[StGLFontKey(aName, theSize)];
29
+    if(!aFontGl.isNull()) {
30
+        return aFontGl;
31
+    }
32
+
33
+    ST_ERROR_LOG("StGLFontManager, fallback font is used!");
34
+    StHandle<StFTFont> aFontFt = new StFTFont(myFTLib);
35
+    aFontFt->loadInternal("DejaVuSerif_internal.ttf",
36
+                          THE_DejaVuSerif_ttf_DATA,
37
+                          THE_DejaVuSerif_ttf_LEN,
38
+                          StFTFont::Style_Regular);
39
+    aFontFt->init(theSize, myResolution);
40
+    aFontGl = new StGLFontEntry(aFontFt);
41
+    return aFontGl;
42
+}
43
+
44
 const StHandle<StGLFont>& StGLFontManager::findCreate(const StFTFont::Typeface theType,
45
                                                       unsigned int             theSize) {
46
     StHandle<StGLFont>& aFont = myFontTypes[StGLFontTypeKey(theType, theSize)];
47
@@ -78,8 +103,13 @@
48
 
49
     aFont = new StGLFont();
50
     const StFTFontPack& aPack = myRegistry->getTypeface(theType);
51
-    aFont->changeFont(StFTFont::Subset_General) = findCreate(aPack.Western.FamilyName, theSize);
52
+    StHandle<StGLFontEntry>& aGenFont = aFont->changeFont(StFTFont::Subset_General);
53
+    aGenFont                                    = findCreate(aPack.Western.FamilyName, theSize);
54
     aFont->changeFont(StFTFont::Subset_CJK)     = findCreate(aPack.CJK    .FamilyName, theSize);
55
     aFont->changeFont(StFTFont::Subset_Korean)  = findCreate(aPack.Korean .FamilyName, theSize);
56
+
57
+    if(aGenFont.isNull()) {
58
+        aGenFont = findCreateFallback(theSize);
59
+    }
60
     return aFont;
61
 }
62
sview-15_11.tar.gz/StShared/StGLFrameBuffer.cpp -> sview-16_06.tar.gz/StShared/StGLFrameBuffer.cpp Changed
13
 
1
@@ -128,8 +128,10 @@
2
         if(myGLDepthRBId == NO_RENDERBUFFER) {
3
             theCtx.arbFbo->glGenRenderbuffers(1, &myGLDepthRBId);
4
         }
5
+
6
+        const GLint aDepthFormat = theCtx.isGlGreaterEqual(3, 0) ? GL_DEPTH24_STENCIL8 : GL_DEPTH_COMPONENT16;
7
         theCtx.arbFbo->glBindRenderbuffer(GL_RENDERBUFFER, myGLDepthRBId);
8
-        theCtx.arbFbo->glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT,
9
+        theCtx.arbFbo->glRenderbufferStorage(GL_RENDERBUFFER, aDepthFormat,
10
                                              theColorTexture->getSizeX(), theColorTexture->getSizeY());
11
     } else if(myGLDepthRBId != NO_RENDERBUFFER) {
12
         theCtx.arbFbo->glDeleteRenderbuffers(1, &myGLDepthRBId);
13
sview-15_11.tar.gz/StShared/StGLMesh.cpp -> sview-16_06.tar.gz/StShared/StGLMesh.cpp Changed
30
 
1
@@ -71,7 +71,8 @@
2
         theCtx.core11->glDisableClientState(GL_VERTEX_ARRAY);
3
     }
4
     if(myNormalBuf.isValid()) {
5
-        //ST_DEBUG_ASSERT(myNormalBuf.getElemSize() == 3);
6
+        //ST_ASSERT(myNormalBuf.getElemSize() == 3,
7
+        // "StGLMesh::bindFixed() - normal buffer has wrong number of components");
8
         myNormalBuf.bind(theCtx);
9
         theCtx.core11->glEnableClientState(GL_NORMAL_ARRAY);
10
         theCtx.core11->glNormalPointer(myNormalBuf.getDataType(), 0, NULL);
11
@@ -87,7 +88,8 @@
12
     }
13
     if(myColorsBuf.isValid()) {
14
         myColorsBuf.bind(theCtx);
15
-        //ST_DEBUG_ASSERT(myColorsBuf.getElemSize() == 3 || myColorsBuf.getElemSize() == 4);
16
+        //ST_ASSERT(myColorsBuf.getElemSize() == 3 || myColorsBuf.getElemSize() == 4,
17
+        // "StGLMesh::bindFixed() - color buffer has wrong number of components");
18
         theCtx.core11->glEnableClientState(GL_COLOR_ARRAY);
19
         theCtx.core11->glColorPointer(GLint(myColorsBuf.getElemSize()), myColorsBuf.getDataType(), 0, NULL);
20
     } else {
21
@@ -222,7 +224,7 @@
22
 }
23
 
24
 bool StGLMesh::computeNormals(size_t theDelta) {
25
-    ST_DEBUG_ASSERT(theDelta > 0);
26
+    ST_ASSERT(theDelta > 0, "StGLMesh::computeNormals() - wrong delta");
27
     myNormals.initArray(myVertices.size());
28
     if(myVertices.isEmpty()) {
29
         return false;
30
sview-15_11.tar.gz/StShared/StGLProjCamera.cpp -> sview-16_06.tar.gz/StShared/StGLProjCamera.cpp Changed
17
 
1
@@ -84,13 +84,8 @@
2
     updateFrustum();
3
 }
4
 
5
-void StGLProjCamera::resize(StGLContext&  theCtx,
6
-                            const GLsizei theSizeX,
7
-                            const GLsizei theSizeY) {
8
-    const GLsizei aSizeY = (theSizeY > 0) ? theSizeY : 1;
9
-    myAspect = GLfloat(theSizeX) / GLfloat(aSizeY);
10
-
11
-    theCtx.stglResizeViewport(theSizeX, aSizeY); // reset the current viewport
12
+void StGLProjCamera::resize(const GLfloat theAspect) {
13
+    myAspect = theAspect;
14
     updateFrustum();
15
 }
16
 
17
sview-15_11.tar.gz/StShared/StGLShader.cpp -> sview-16_06.tar.gz/StShared/StGLShader.cpp Changed
43
 
1
@@ -96,19 +96,38 @@
2
     // check compile success
3
     if(!isCompiled(theCtx)) {
4
         StString aSrc;
5
+        StString aSrcNumbered;
6
+        GLsizei aPartFrom = 0;
7
+        char aNumBuff[128];
8
+
9
     #if defined(GL_ES_VERSION_2_0)
10
         if(myShaderType == GL_FRAGMENT_SHADER) {
11
-            aSrc += theCtx.hasHighp ? THE_FRAG_PREC_HIGH : THE_FRAG_PREC_LOW;
12
+            aPartFrom = 1;
13
+            StString aLine = theCtx.hasHighp ? THE_FRAG_PREC_HIGH : THE_FRAG_PREC_LOW;
14
+            aSrc += aLine;
15
+            stsprintf(aNumBuff, 127, "%d:%03d ", 0, 1);
16
+            aSrcNumbered += StString(aNumBuff) + aLine.subString(0, aLine.getLength() - 1);
17
         }
18
     #endif
19
         for(GLsizei aPartIter = 0; aPartIter < theNbParts; ++aPartIter) {
20
-            aSrc += theSrcParts[aPartIter];
21
+            StString aPartSrc = theSrcParts[aPartIter];
22
+            aSrc += aPartSrc;
23
+
24
+            StHandle <StArrayList<StString> > anArray = aPartSrc.split('\n');
25
+            for(size_t aLineIter = 0; aLineIter < anArray->size(); ++aLineIter) {
26
+                stsprintf(aNumBuff, 127, "%d:%03d ", aPartFrom + aPartIter, int(aLineIter + 1));
27
+                StString aLine = StString(aNumBuff) + anArray->getValue(aLineIter);
28
+                if(!aSrcNumbered.isEmpty()) {
29
+                    aSrcNumbered += "\n";
30
+                }
31
+                aSrcNumbered += aLine;
32
+            }
33
         }
34
 
35
         theCtx.pushError(StString("Compilation of the ") + getTypeString() + " '" + myTitle
36
                        + "' failed!\n" + getCompileInfo(theCtx)
37
                        + "\n=== Source code ===\n"
38
-                       + aSrc
39
+                       + aSrcNumbered
40
                        + "\n==================="
41
         );
42
         release(theCtx);
43
sview-15_11.tar.gz/StShared/StGLStereoFrameBuffer.cpp -> sview-16_06.tar.gz/StShared/StGLStereoFrameBuffer.cpp Changed
26
 
1
@@ -128,13 +128,12 @@
2
     const GLuint aFboBakRead = theCtx.stglFramebufferRead();
3
     theCtx.stglBindFramebuffer(StGLFrameBuffer::NO_FRAMEBUFFER);
4
 
5
+    const GLint aDepthFormat = theCtx.isGlGreaterEqual(3, 0) ? GL_DEPTH24_STENCIL8 : GL_DEPTH_COMPONENT16;
6
     if(theNeedDepthBuffer) {
7
-        // generate RenderBuffers (will be used as depth buffer)
8
         theCtx.arbFbo->glGenRenderbuffers(2, myGLDepthRBIds);
9
 
10
-        // create left RenderBuffer (will be used as depth buffer)
11
         theCtx.arbFbo->glBindRenderbuffer(GL_RENDERBUFFER, myGLDepthRBIds[StGLStereoTexture::LEFT_TEXTURE]);
12
-        theCtx.arbFbo->glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT, theTextureSizeX, theTextureSizeY);
13
+        theCtx.arbFbo->glRenderbufferStorage(GL_RENDERBUFFER, aDepthFormat, theTextureSizeX, theTextureSizeY);
14
     }
15
 
16
     // build FBOs
17
@@ -162,7 +161,7 @@
18
     if(theNeedDepthBuffer) {
19
         // create right RenderBuffer (will be used as depth buffer)
20
         theCtx.arbFbo->glBindRenderbuffer(GL_RENDERBUFFER, myGLDepthRBIds[StGLStereoTexture::RIGHT_TEXTURE]);
21
-        theCtx.arbFbo->glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT, theTextureSizeX, theTextureSizeY);
22
+        theCtx.arbFbo->glRenderbufferStorage(GL_RENDERBUFFER, aDepthFormat, theTextureSizeX, theTextureSizeY);
23
     }
24
 
25
     theCtx.stglBindFramebuffer(myGLFBufferIds[StGLStereoTexture::RIGHT_TEXTURE]);
26
sview-15_11.tar.gz/StShared/StGLTexture.cpp -> sview-16_06.tar.gz/StShared/StGLTexture.cpp Changed
43
 
1
@@ -95,6 +95,11 @@
2
             theInternalFormat = GL_ALPHA8; // backward compatibility
3
         #endif
4
             return true;
5
+        case StImagePlane::ImgUV:
6
+            // this texture format is deprecated with OpenGL3+, use GL_R8 (GL_RED) instead
7
+            //theInternalFormat = GL_RG8;   // OpenGL3+ hardware
8
+            theInternalFormat = GL_LUMINANCE_ALPHA;
9
+            return true;
10
         default:
11
             return false;
12
     }
13
@@ -124,6 +129,12 @@
14
             theDataType = GL_UNSIGNED_SHORT;
15
             return true;
16
         }
17
+        case StImagePlane::ImgUV: {
18
+            //thePixelFormat = GL_RG;
19
+            thePixelFormat = GL_LUMINANCE_ALPHA;
20
+            theDataType = GL_UNSIGNED_BYTE;
21
+            return true;
22
+        }
23
         case StImagePlane::ImgRGB: {
24
             thePixelFormat = GL_RGB;
25
             theDataType = GL_UNSIGNED_BYTE;
26
@@ -281,6 +292,7 @@
27
         case GL_ALPHA8:    return "GL_ALPHA8";
28
         case GL_ALPHA16:   return "GL_ALPHA16";
29
         case GL_LUMINANCE: return "GL_LUMINANCE";
30
+        case GL_LUMINANCE_ALPHA: return "GL_LUMINANCE_ALPHA";
31
         // unknown...
32
         default:          return StString("GL_? (") + theInternalFormat + ')';
33
     }
34
@@ -322,6 +334,8 @@
35
             return GL_ALPHA;
36
         case GL_LUMINANCE:
37
             return GL_LUMINANCE;
38
+        case GL_LUMINANCE_ALPHA:
39
+            return GL_LUMINANCE_ALPHA;
40
         // unknown...
41
         default:
42
             return GL_RGBA;
43
sview-15_11.tar.gz/StShared/StGLTextureData.cpp -> sview-16_06.tar.gz/StShared/StGLTextureData.cpp Changed
65
 
1
@@ -348,7 +348,8 @@
2
         &&  theData.isTopDown();
3
 }
4
 
5
-void StGLTextureData::updateData(const StImage&                  theDataL,
6
+void StGLTextureData::updateData(const StGLDeviceCaps&           theDeviceCaps,
7
+                                 const StImage&                  theDataL,
8
                                  const StImage&                  theDataR,
9
                                  const StHandle<StStereoParams>& theStParams,
10
                                  const StFormat                  theFormat,
11
@@ -368,6 +369,12 @@
12
         switch(mySrcFormat) {
13
             case StFormat_SideBySide_LR:
14
             case StFormat_SideBySide_RL: {
15
+                if(!theDeviceCaps.hasUnpack) {
16
+                    // slow copying to GPU memory
17
+                    toCopy = true;
18
+                    break;
19
+                }
20
+
21
                 reset();
22
                 copyProps(theDataL, theDataR);
23
                 StImage& aDataL = (mySrcFormat == StFormat_SideBySide_LR)
24
@@ -394,6 +401,13 @@
25
             }
26
             case StFormat_TopBottom_LR:
27
             case StFormat_TopBottom_RL: {
28
+                if(!theDeviceCaps.hasUnpack
29
+                &&  theCubemap != StCubemap_OFF) {
30
+                    // slow copying to GPU memory
31
+                    toCopy = true;
32
+                    break;
33
+                }
34
+
35
                 reset();
36
                 copyProps(theDataL, theDataR);
37
                 StImage& aDataL = (mySrcFormat == StFormat_TopBottom_LR)
38
@@ -419,6 +433,12 @@
39
                 break;
40
             }
41
             case StFormat_Rows: {
42
+                if(!theDeviceCaps.hasUnpack) {
43
+                    // slow copying to GPU memory
44
+                    toCopy = true;
45
+                    break;
46
+                }
47
+
48
                 reset();
49
                 copyProps(theDataL, theDataR);
50
                 myDataL.setPixelRatio(theDataL.getPixelRatio() * 0.5f);
51
@@ -455,6 +475,13 @@
52
             case StFormat_AnaglyphGreenMagenta:
53
             case StFormat_AnaglyphYellowBlue:
54
             case StFormat_AUTO: {
55
+                if(!theDeviceCaps.hasUnpack
56
+                &&  theCubemap != StCubemap_OFF) {
57
+                    // slow copying to GPU memory
58
+                    toCopy = true;
59
+                    break;
60
+                }
61
+
62
                 reset();
63
                 copyProps(theDataL, theDataR);
64
                 myDataL.initReference(theDataL);
65
sview-15_11.tar.gz/StShared/StGLTextureQueue.cpp -> sview-16_06.tar.gz/StShared/StGLTextureQueue.cpp Changed
36
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -24,7 +24,7 @@
9
   myIsReadyToSwap(false),
10
   myToCompress(false),
11
   myHasStream(false) {
12
-    ST_DEBUG_ASSERT(myQueueSizeMax >= 2);
13
+    ST_ASSERT(myQueueSizeMax >= 2, "StGLTextureQueue() - queue size limit should be >= 2");
14
 
15
     // we create 'empty' queue
16
     myDataFront = new StGLTextureData();
17
@@ -63,7 +63,8 @@
18
     myMutexPush.lock();
19
     myDataBack = isEmpty() ? myDataFront : myDataBack->getNext();
20
 
21
-    myDataBack->updateData(theSrcDataLeft,
22
+    myDataBack->updateData(myDeviceCaps,
23
+                           theSrcDataLeft,
24
                            theSrcDataRight,
25
                            theStParams,
26
                            theSrcFormat,
27
@@ -145,7 +146,7 @@
28
                 myDataFront->reset();
29
             }
30
             myDataFront = myDataFront->getNext();
31
-            ST_DEBUG_ASSERT(myQueueSize != 0); // critical error!
32
+            ST_ASSERT(myQueueSize != 0, "StGLTextureQueue::stglUpdateStTextures() - critical error!");
33
             --myQueueSize;
34
         myMutexSize.unlock();
35
         myIsInUpdTexture = false;
36
sview-15_11.tar.gz/StShared/StImagePlane.cpp -> sview-16_06.tar.gz/StShared/StImagePlane.cpp Changed
19
 
1
@@ -25,6 +25,7 @@
2
         case ImgBGRF:    return "ImgBGRF";
3
         case ImgRGBAF:   return "ImgRGBAF";
4
         case ImgBGRAF:   return "ImgBGRAF";
5
+        case ImgUV:      return "ImgUV";
6
         case ImgUNKNOWN:
7
         default:         return "ImgUNKNOWN";
8
     }
9
@@ -82,6 +83,9 @@
10
         case ImgGray16:
11
             mySizeBPP = 2;
12
             break;
13
+        case ImgUV:
14
+            mySizeBPP = 2;
15
+            break;
16
         case ImgGray:
17
         default:
18
             mySizeBPP = 1;
19
sview-15_11.tar.gz/StShared/StJpegParser.cpp -> sview-16_06.tar.gz/StShared/StJpegParser.cpp Changed
24
 
1
@@ -144,6 +144,9 @@
2
   myImages(NULL),
3
   myStFormat(StFormat_AUTO) {
4
     stMemZero(myOffsets, sizeof(myOffsets));
5
+#if !defined(_MSC_VER)
6
+    (void )markerString;
7
+#endif
8
 }
9
 
10
 StJpegParser::~StJpegParser() {
11
@@ -159,9 +162,10 @@
12
     stMemZero(myOffsets, sizeof(myOffsets));
13
 }
14
 
15
-bool StJpegParser::readFile(const StCString& theFilePath) {
16
+bool StJpegParser::readFile(const StCString& theFilePath,
17
+                            const int        theOpenedFd) {
18
     reset();
19
-    if(!StRawFile::readFile(theFilePath)) {
20
+    if(!StRawFile::readFile(theFilePath, theOpenedFd)) {
21
         return false;
22
     }
23
 
24
sview-15_11.tar.gz/StShared/StLibrary.cpp -> sview-16_06.tar.gz/StShared/StLibrary.cpp Changed
35
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2008-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2008-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -8,6 +8,8 @@
9
 
10
 #include <StLibrary.h>
11
 
12
+#include <stAssert.h>
13
+
14
 #ifdef _WIN32
15
 StString StLibrary::DLibGetVersion(const StStringUtfWide& theLibPath) {
16
     DWORD aFVInfoSize = GetFileVersionInfoSizeW(theLibPath.toCString(), NULL);
17
@@ -48,7 +50,7 @@
18
 
19
 bool StLibrary::load(const StString& thePath) {
20
     // this is probably some logical error in the code if close() wasn't explicitly called before!
21
-    ST_DEBUG_ASSERT(!isOpened());
22
+    ST_ASSERT(!isOpened(), "StLibrary::load() - library is already opened!");
23
     close();
24
     StString aDinLibExt = StString(ST_DLIB_SUFFIX);
25
     if(thePath.isEndsWithIgnoreCase(aDinLibExt)) {
26
@@ -70,7 +72,7 @@
27
 
28
 bool StLibrary::loadSimple(const StString& thePath) {
29
     // this is probably some logical error in the code if close() wasn't explicitly called before!
30
-    ST_DEBUG_ASSERT(!isOpened());
31
+    ST_ASSERT(!isOpened(), "StLibrary::load() - library is already opened!");
32
     close();
33
     myPath = thePath;
34
     myLibH = DLibLoadFull(myPath);
35
sview-15_11.tar.gz/StShared/StLogger.cpp -> sview-16_06.tar.gz/StShared/StLogger.cpp Changed
20
 
1
@@ -69,8 +69,17 @@
2
   myFileHandle(NULL),
3
   myFilter(theFilter),
4
   myToLogCout(theOptions & StLogger::ST_OPT_COUT),
5
+#ifdef ST_DEBUG_SYSLOG
6
+  myToLogToSystem(true),
7
+#else
8
   myToLogToSystem(false),
9
-  myToLogThreadId(false) {
10
+#endif
11
+#ifdef ST_DEBUG_THREADID
12
+  myToLogThreadId(true)
13
+#else
14
+  myToLogThreadId(false)
15
+#endif
16
+{
17
     //
18
 }
19
 
20
sview-15_11.tar.gz/StShared/StMsgQueue.cpp -> sview-16_06.tar.gz/StShared/StMsgQueue.cpp Changed
58
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2013 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2013-2015 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -29,7 +29,7 @@
9
         aText += *aMsg.Text;
10
         isFirst = false;
11
 
12
-        if(aMsg.Type == StLogger::ST_ERROR) {
13
+        if(aMsg.Level == StLogger::ST_ERROR) {
14
             hasErrors = true;
15
         }
16
         myQueue.pop_front();
17
@@ -67,32 +67,32 @@
18
 
19
 void StMsgQueue::pushInfo(const StHandle<StString>& theMessage) {
20
     StMsg aMsg;
21
-    aMsg.Type = StLogger::ST_INFO;
22
-    aMsg.Text = theMessage;
23
+    aMsg.Level = StLogger::ST_INFO;
24
+    aMsg.Text  = theMessage;
25
     //ST_DEBUG_LOG(*theMessage);
26
     doPush(aMsg);
27
 }
28
 
29
 void StMsgQueue::pushError(const StHandle<StString>& theMessage) {
30
     StMsg aMsg;
31
-    aMsg.Type = StLogger::ST_ERROR;
32
-    aMsg.Text = theMessage;
33
+    aMsg.Level = StLogger::ST_ERROR;
34
+    aMsg.Text  = theMessage;
35
     //ST_ERROR_LOG(*theMessage);
36
     doPush(aMsg);
37
 }
38
 
39
 void StMsgQueue::doPushInfo(const StCString& theMessage) {
40
     StMsg aMsg;
41
-    aMsg.Type = StLogger::ST_INFO;
42
-    aMsg.Text = new StString(theMessage);
43
+    aMsg.Level = StLogger::ST_INFO;
44
+    aMsg.Text  = new StString(theMessage);
45
     //ST_DEBUG_LOG(*theMessage);
46
     doPush(aMsg);
47
 }
48
 
49
 void StMsgQueue::doPushError(const StCString& theMessage) {
50
     StMsg aMsg;
51
-    aMsg.Type = StLogger::ST_ERROR;
52
-    aMsg.Text = new StString(theMessage);
53
+    aMsg.Level = StLogger::ST_ERROR;
54
+    aMsg.Text  = new StString(theMessage);
55
     //ST_ERROR_LOG(*theMessage);
56
     doPush(aMsg);
57
 }
58
sview-15_11.tar.gz/StShared/StPlayList.cpp -> sview-16_06.tar.gz/StShared/StPlayList.cpp Changed
36
 
1
@@ -843,6 +843,10 @@
2
 
3
 void StPlayList::updateRecent(const StHandle<StFileNode>&     theFile,
4
                               const StHandle<StStereoParams>& theParams) {
5
+    if(theFile.isNull()) {
6
+        return;
7
+    }
8
+
9
     StMutexAuto anAutoLock(myMutex);
10
     if(!myPlsFile.isNull()
11
      && myPlsFile->File == theFile) {
12
@@ -888,7 +892,8 @@
13
         return;
14
     }
15
 
16
-    addRecentFile(*myCurrent->getFileNode());
17
+    StHandle<StPlayList::StRecentItem> aRecent = addRecentFile(*myCurrent->getFileNode());
18
+    aRecent->Params = myCurrent->getParams();
19
 }
20
 
21
 const StHandle<StPlayList::StRecentItem>& StPlayList::addRecentFile(const StFileNode& theFile,
22
@@ -907,7 +912,12 @@
23
     }
24
 
25
     StHandle<StRecentItem> aNewRecent = new StRecentItem();
26
-    aNewRecent->File = theFile.detach();
27
+    if(StFileNode::isContentProtocolPath(theFile.getPath())) {
28
+        // ignore temporary URLs
29
+        aNewRecent->File = new StFileNode();
30
+    } else {
31
+        aNewRecent->File = theFile.detach();
32
+    }
33
     if(theToFront) {
34
         myRecent.push_front(aNewRecent);
35
     } else {
36
sview-15_11.tar.gz/StShared/StProcess.cpp -> sview-16_06.tar.gz/StShared/StProcess.cpp Changed
19
 
1
@@ -198,7 +198,7 @@
2
 StString StProcess::getWindowsFolder() {
3
     StString aWinFolder;
4
     stUtfWide_t aWndFldr[MAX_PATH];
5
-    GetWindowsDirectory(aWndFldr, MAX_PATH);
6
+    GetWindowsDirectoryW(aWndFldr, MAX_PATH);
7
     aWndFldr[MAX_PATH - 1] = L'\0';
8
     aWinFolder = StString(aWndFldr) + SYS_FS_SPLITTER;
9
     return aWinFolder;
10
@@ -302,7 +302,7 @@
11
         aCmdLineW += aSplitter;
12
     }
13
 
14
-    STARTUPINFO aStartInfo;
15
+    STARTUPINFOW aStartInfo;
16
     PROCESS_INFORMATION aProcessInfo;
17
     stMemSet(&aStartInfo, 0, sizeof(aStartInfo));
18
     aStartInfo.cb = sizeof(aStartInfo);
19
sview-15_11.tar.gz/StShared/StRawFile.cpp -> sview-16_06.tar.gz/StShared/StRawFile.cpp Changed
53
 
1
@@ -44,7 +44,8 @@
2
 }
3
 
4
 bool StRawFile::openFile(StRawFile::ReadWrite theFlags,
5
-                         const StCString&     theFilePath) {
6
+                         const StCString&     theFilePath,
7
+                         const int            theOpenedFd) {
8
     // close previously opened file handle if any
9
     closeFile();
10
 
11
@@ -52,6 +53,15 @@
12
         setSubPath(theFilePath);
13
     }
14
 
15
+    if(theOpenedFd != -1) {
16
+    #ifdef _WIN32
17
+        myFileHandle = ::_fdopen(theOpenedFd, (theFlags == StRawFile::WRITE) ?  "wb" :  "rb");
18
+    #else
19
+        myFileHandle =  ::fdopen(theOpenedFd, (theFlags == StRawFile::WRITE) ?  "wb" :  "rb");
20
+    #endif
21
+        return myFileHandle != NULL;
22
+    }
23
+
24
     StString aFilePath = getPath();
25
 #if(LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(53, 21, 0))
26
     if(StFileNode::isRemoteProtocolPath(aFilePath)
27
@@ -112,10 +122,11 @@
28
     myBuffSize = 0;
29
 }
30
 
31
-bool StRawFile::readFile(const StCString& theFilePath) {
32
+bool StRawFile::readFile(const StCString& theFilePath,
33
+                         const int        theOpenedFd) {
34
     freeBuffer();
35
 
36
-    if(!openFile(StRawFile::READ, theFilePath)) {
37
+    if(!openFile(StRawFile::READ, theFilePath, theOpenedFd)) {
38
         return false;
39
     }
40
 
41
@@ -222,8 +233,9 @@
42
     return true;
43
 }
44
 
45
-bool StRawFile::saveFile(const StCString& theFilePath) {
46
-    if(!openFile(StRawFile::WRITE, theFilePath)) {
47
+bool StRawFile::saveFile(const StCString& theFilePath,
48
+                         const int        theOpenedFd) {
49
+    if(!openFile(StRawFile::WRITE, theFilePath, theOpenedFd)) {
50
         return false;
51
     }
52
 
53
sview-15_11.tar.gz/StShared/StResourceManager.cpp -> sview-16_06.tar.gz/StShared/StResourceManager.cpp Changed
20
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2014-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2014-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -323,6 +323,11 @@
9
     }
10
 }
11
 
12
+int StResourceManager::openFileDescriptor(const StString& thePath) const {
13
+    (void )thePath;
14
+    return -1;
15
+}
16
+
17
 StResource::StResource(const StString& theName,
18
                        const StString& thePath)
19
 : myName(theName),
20
sview-15_11.tar.gz/StShared/StSettings.cpp -> sview-16_06.tar.gz/StShared/StSettings.cpp Changed
73
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2007-2013 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2007-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -102,6 +102,19 @@
9
         && saveFloat(theLabel + ".w", theValue.w());
10
 }
11
 
12
+bool StSettings::loadParam(StHandle<StInt32ParamNamed>& theInt32Param) {
13
+    int32_t aValue = theInt32Param->getValue();
14
+    if(loadInt32(theInt32Param->getKey(), aValue)) {
15
+        theInt32Param->setValue(aValue);
16
+        return true;
17
+    }
18
+    return false;
19
+}
20
+
21
+bool StSettings::saveParam(const StHandle<StInt32ParamNamed>& theInt32Param) {
22
+    return saveInt32(theInt32Param->getKey(), theInt32Param->getValue());
23
+}
24
+
25
 bool StSettings::loadParam(const StString&         theLabel,
26
                            StHandle<StInt32Param>& theInt32Param) {
27
     int32_t aValue = theInt32Param->getValue();
28
@@ -117,6 +130,19 @@
29
     return saveInt32(theLabel, theInt32Param->getValue());
30
 }
31
 
32
+bool StSettings::loadParam(StHandle<StBoolParamNamed>& theBoolParam) {
33
+    bool aValue = theBoolParam->getValue();
34
+    if(loadBool(theBoolParam->getKey(), aValue)) {
35
+        theBoolParam->setValue(aValue);
36
+        return true;
37
+    }
38
+    return false;
39
+}
40
+
41
+bool StSettings::saveParam(const StHandle<StBoolParamNamed>& theBoolParam) {
42
+    return saveBool(theBoolParam->getKey(), theBoolParam->getValue());
43
+}
44
+
45
 bool StSettings::loadParam(const StString&        theLabel,
46
                            StHandle<StBoolParam>& theBoolParam) {
47
     bool aValue = theBoolParam->getValue();
48
@@ -142,11 +168,24 @@
49
     return false;
50
 }
51
 
52
+bool StSettings::loadParam(StHandle<StFloat32Param>& theFloatParam) {
53
+    double aValue = (double )theFloatParam->getValue();
54
+    if(loadFloat(theFloatParam->getKey(), aValue)) {
55
+        theFloatParam->setValue((float )aValue);
56
+        return true;
57
+    }
58
+    return false;
59
+}
60
+
61
 bool StSettings::saveParam(const StString&                 theLabel,
62
                            const StHandle<StFloat32Param>& theFloatParam) {
63
     return saveFloat(theLabel, theFloatParam->getValue());
64
 }
65
 
66
+bool StSettings::saveParam(const StHandle<StFloat32Param>& theFloatParam) {
67
+    return saveFloat(theFloatParam->getKey(), theFloatParam->getValue());
68
+}
69
+
70
 bool StSettings::loadHotKey(StHandle<StAction>& theAction) {
71
     if(theAction->getName().isEmpty()) {
72
         return false;
73
sview-15_11.tar.gz/StShared/StShared.cbp -> sview-16_06.tar.gz/StShared/StShared.cbp Changed
72
 
1
@@ -179,13 +179,14 @@
2
                    <Add option="-DST_HAVE_STCONFIG" />
3
                </Compiler>
4
                <Linker>
5
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
6
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
7
                    <Add option="-framework Appkit" />
8
                    <Add option="-framework OpenGL" />
9
                    <Add library="objc" />
10
                </Linker>
11
                <ExtraCommands>
12
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
13
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
14
+                   <Add before='mkdir -p ../lib/$(TARGET_NAME)' />
15
                </ExtraCommands>
16
            </Target>
17
            <Target title="MAC_gcc_DEBUG">
18
@@ -203,13 +204,14 @@
19
                    <Add option="-DST_HAVE_STCONFIG" />
20
                </Compiler>
21
                <Linker>
22
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
23
+                   <Add option="-Wl,-install_name,@executable_path/$(TARGET_OUTPUT_BASENAME).dylib" />
24
                    <Add option="-framework Appkit" />
25
                    <Add option="-framework OpenGL" />
26
                    <Add library="objc" />
27
                </Linker>
28
                <ExtraCommands>
29
-                   <Add after='install_name_tool -id @executable_path/$(TARGET_OUTPUT_BASENAME).dylib &quot;$(TARGET_OUTPUT_FILE)&quot;' />
30
-                   <Add after='ln -f -s &quot;../$(TARGET_OUTPUT_FILE)&quot; ../lib/$(TARGET_NAME)' />
31
+                   <Add before='mkdir -p ../lib/$(TARGET_NAME)' />
32
                </ExtraCommands>
33
            </Target>
34
        </Build>
35
@@ -232,6 +234,9 @@
36
        </Linker>
37
        <Unit filename="StAVFrame.cpp" />
38
        <Unit filename="StAVImage.cpp" />
39
+       <Unit filename="StAVIOContext.cpp" />
40
+       <Unit filename="StAVIOFileContext.cpp" />
41
+       <Unit filename="StAVIOMemContext.cpp" />
42
        <Unit filename="StAVPacket.cpp" />
43
        <Unit filename="StAVVideoMuxer.cpp" />
44
        <Unit filename="StAction.cpp" />
45
@@ -270,7 +275,7 @@
46
            <Option target="LINUX_gcc" />
47
            <Option target="LINUX_gcc_DEBUG" />
48
        </Unit>
49
-       <Unit filename="StFileNode2.mm">
50
+       <Unit filename="StFileNode.ObjC.mm">
51
            <Option compile="1" />
52
            <Option link="1" />
53
            <Option target="MAC_gcc" />
54
@@ -358,6 +363,9 @@
55
        <Unit filename="../include/StAV/StAVBufferPool.h" />
56
        <Unit filename="../include/StAV/StAVFrame.h" />
57
        <Unit filename="../include/StAV/StAVImage.h" />
58
+       <Unit filename="../include/StAV/StAVIOContext.h" />
59
+       <Unit filename="../include/StAV/StAVIOFileContext.h" />
60
+       <Unit filename="../include/StAV/StAVIOMemContext.h" />
61
        <Unit filename="../include/StAV/StAVPacket.h" />
62
        <Unit filename="../include/StAV/StAVVideoMuxer.h" />
63
        <Unit filename="../include/StAV/stAV.h" />
64
@@ -385,6 +393,7 @@
65
        <Unit filename="../include/StFile/StRawFile.h" />
66
        <Unit filename="../include/StGL/StGLBrightnessMatrix.h" />
67
        <Unit filename="../include/StGL/StGLContext.h" />
68
+       <Unit filename="../include/StGL/StGLDeviceCaps.h" />
69
        <Unit filename="../include/StGL/StGLEnums.h" />
70
        <Unit filename="../include/StGL/StGLFont.h" />
71
        <Unit filename="../include/StGL/StGLFontEntry.h" />
72
sview-15_11.tar.gz/StShared/StShared.rc -> sview-16_06.tar.gz/StShared/StShared.rc Changed
10
 
1
@@ -15,7 +15,7 @@
2
     BEGIN
3
       VALUE "FileDescription", "sView common algorithms library\000"
4
       VALUE "FileVersion",     SVIEW_SDK_VER_STRING "\000"
5
-      VALUE "LegalCopyright",  "\251 2007-2015 Kirill Gavrilov\000"
6
+      VALUE "LegalCopyright",  "\251 2007-2016 Kirill Gavrilov\000"
7
       VALUE "ProductName",     "StShared\000"
8
       VALUE "ProductVersion",  SVIEW_SDK_VER_STRING "\000"
9
       VALUE "OfficialSite",    "www.sview.ru\000"
10
sview-15_11.tar.gz/StShared/StShared.vcxproj -> sview-16_06.tar.gz/StShared/StShared.vcxproj Changed
175
 
1
@@ -21,7 +21,7 @@
2
   <PropertyGroup Label="Globals">
3
     <ProjectGuid>{138D17EB-8A50-437A-BD55-8114A92BCF19}</ProjectGuid>
4
   </PropertyGroup>
5
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
6
+  <Import Project="$(SolutionDir)sView.Cpp.Default.props" />
7
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
8
     <ConfigurationType>DynamicLibrary</ConfigurationType>
9
     <CharacterSet>Unicode</CharacterSet>
10
@@ -208,6 +208,9 @@
11
   <ItemGroup>
12
     <ClCompile Include="StAVFrame.cpp" />
13
     <ClCompile Include="StAVImage.cpp" />
14
+    <ClCompile Include="StAVIOContext.cpp" />
15
+    <ClCompile Include="StAVIOFileContext.cpp" />
16
+    <ClCompile Include="StAVIOMemContext.cpp" />
17
     <ClCompile Include="StAVPacket.cpp" />
18
     <ClCompile Include="StAVVideoMuxer.cpp" />
19
     <ClCompile Include="StAction.cpp" />
20
@@ -278,6 +281,154 @@
21
     <ClCompile Include="stUtfTools.cpp" />
22
   </ItemGroup>
23
   <ItemGroup>
24
+    <ClInclude Include="..\include\StAV\stAV.h" />
25
+    <ClInclude Include="..\include\StAV\StAVBufferPool.h" />
26
+    <ClInclude Include="..\include\StAV\StAVFrame.h" />
27
+    <ClInclude Include="..\include\StAV\StAVImage.h" />
28
+    <ClInclude Include="..\include\StAV\StAVIOContext.h" />
29
+    <ClInclude Include="..\include\StAV\StAVIOFileContext.h" />
30
+    <ClInclude Include="..\include\StAV\StAVIOMemContext.h" />
31
+    <ClInclude Include="..\include\StAV\StAVPacket.h" />
32
+    <ClInclude Include="..\include\StAV\StAVVideoMuxer.h" />
33
+    <ClInclude Include="..\include\StCocoa\StCocoaCoords.h" />
34
+    <ClInclude Include="..\include\StCocoa\StCocoaLocalPool.h" />
35
+    <ClInclude Include="..\include\StCocoa\StCocoaString.h" />
36
+    <ClInclude Include="..\include\StFile\StFileNode.h" />
37
+    <ClInclude Include="..\include\StFile\StFolder.h" />
38
+    <ClInclude Include="..\include\StFile\StMIME.h" />
39
+    <ClInclude Include="..\include\StFile\StMIMEList.h" />
40
+    <ClInclude Include="..\include\StFile\StNode.h" />
41
+    <ClInclude Include="..\include\StFile\StRawFile.h" />
42
+    <ClInclude Include="..\include\StFT\StFTFont.h" />
43
+    <ClInclude Include="..\include\StFT\StFTFontRegistry.h" />
44
+    <ClInclude Include="..\include\StFT\StFTLibrary.h" />
45
+    <ClInclude Include="..\include\StGL\StGLArbFbo.h" />
46
+    <ClInclude Include="..\include\StGL\StGLBrightnessMatrix.h" />
47
+    <ClInclude Include="..\include\StGL\StGLContext.h" />
48
+    <ClInclude Include="..\include\StGL\StGLDeviceCaps.h" />
49
+    <ClInclude Include="..\include\StGL\StGLEnums.h" />
50
+    <ClInclude Include="..\include\StGL\StGLExt.h" />
51
+    <ClInclude Include="..\include\StGL\StGLFont.h" />
52
+    <ClInclude Include="..\include\StGL\StGLFontEntry.h" />
53
+    <ClInclude Include="..\include\StGL\StGLFontManager.h" />
54
+    <ClInclude Include="..\include\StGL\StGLFrameBuffer.h" />
55
+    <ClInclude Include="..\include\StGL\StGLFunctions.h" />
56
+    <ClInclude Include="..\include\StGL\StGLMatrix.h" />
57
+    <ClInclude Include="..\include\StGL\StGLProgram.h" />
58
+    <ClInclude Include="..\include\StGL\StGLProgramMatrix.h" />
59
+    <ClInclude Include="..\include\StGL\StGLResource.h" />
60
+    <ClInclude Include="..\include\StGL\StGLResources.h" />
61
+    <ClInclude Include="..\include\StGL\StGLSaturationMatrix.h" />
62
+    <ClInclude Include="..\include\StGL\StGLShader.h" />
63
+    <ClInclude Include="..\include\StGL\StGLTextFormatter.h" />
64
+    <ClInclude Include="..\include\StGL\StGLTexture.h" />
65
+    <ClInclude Include="..\include\StGL\StGLVarLocation.h" />
66
+    <ClInclude Include="..\include\StGL\StGLVec.h" />
67
+    <ClInclude Include="..\include\StGL\StGLVertexBuffer.h" />
68
+    <ClInclude Include="..\include\StGL\StParams.h" />
69
+    <ClInclude Include="..\include\StGL\StPlayList.h" />
70
+    <ClInclude Include="..\include\StGLCore\StGLCore11.h" />
71
+    <ClInclude Include="..\include\StGLCore\StGLCore11Fwd.h" />
72
+    <ClInclude Include="..\include\StGLCore\StGLCore12.h" />
73
+    <ClInclude Include="..\include\StGLCore\StGLCore13.h" />
74
+    <ClInclude Include="..\include\StGLCore\StGLCore14.h" />
75
+    <ClInclude Include="..\include\StGLCore\StGLCore15.h" />
76
+    <ClInclude Include="..\include\StGLCore\StGLCore20.h" />
77
+    <ClInclude Include="..\include\StGLCore\StGLCore21.h" />
78
+    <ClInclude Include="..\include\StGLCore\StGLCore30.h" />
79
+    <ClInclude Include="..\include\StGLCore\StGLCore31.h" />
80
+    <ClInclude Include="..\include\StGLCore\StGLCore32.h" />
81
+    <ClInclude Include="..\include\StGLCore\StGLCore33.h" />
82
+    <ClInclude Include="..\include\StGLCore\StGLCore40.h" />
83
+    <ClInclude Include="..\include\StGLCore\StGLCore41.h" />
84
+    <ClInclude Include="..\include\StGLCore\StGLCore42.h" />
85
+    <ClInclude Include="..\include\StGLCore\StGLCore43.h" />
86
+    <ClInclude Include="..\include\StGLCore\StGLCore44.h" />
87
+    <ClInclude Include="..\include\StGLMesh\StBndBox.h" />
88
+    <ClInclude Include="..\include\StGLMesh\StBndCameraBox.h" />
89
+    <ClInclude Include="..\include\StGLMesh\StBndContainer.h" />
90
+    <ClInclude Include="..\include\StGLMesh\StBndSphere.h" />
91
+    <ClInclude Include="..\include\StGLMesh\StGLCircle.h" />
92
+    <ClInclude Include="..\include\StGLMesh\StGLMesh.h" />
93
+    <ClInclude Include="..\include\StGLMesh\StGLPrism.h" />
94
+    <ClInclude Include="..\include\StGLMesh\StGLQuads.h" />
95
+    <ClInclude Include="..\include\StGLMesh\StGLUVSphere.h" />
96
+    <ClInclude Include="..\include\StGLStereo\StFormatEnum.h" />
97
+    <ClInclude Include="..\include\StGLStereo\StGLProjCamera.h" />
98
+    <ClInclude Include="..\include\StGLStereo\StGLQuadTexture.h" />
99
+    <ClInclude Include="..\include\StGLStereo\StGLStereoFrameBuffer.h" />
100
+    <ClInclude Include="..\include\StGLStereo\StGLStereoTexture.h" />
101
+    <ClInclude Include="..\include\StGLStereo\StGLTextureData.h" />
102
+    <ClInclude Include="..\include\StGLStereo\StGLTextureQueue.h" />
103
+    <ClInclude Include="..\include\StImage\StDevILImage.h" />
104
+    <ClInclude Include="..\include\StImage\StExifDir.h" />
105
+    <ClInclude Include="..\include\StImage\StExifEntry.h" />
106
+    <ClInclude Include="..\include\StImage\StExifTags.h" />
107
+    <ClInclude Include="..\include\StImage\StFreeImage.h" />
108
+    <ClInclude Include="..\include\StImage\StImage.h" />
109
+    <ClInclude Include="..\include\StImage\StImageFile.h" />
110
+    <ClInclude Include="..\include\StImage\StImagePlane.h" />
111
+    <ClInclude Include="..\include\StImage\StJpegParser.h" />
112
+    <ClInclude Include="..\include\StImage\StPixelRGB.h" />
113
+    <ClInclude Include="..\include\StImage\StWebPImage.h" />
114
+    <ClInclude Include="..\include\StSettings\StEnumParam.h" />
115
+    <ClInclude Include="..\include\StSettings\StFloat32Param.h  " />
116
+    <ClInclude Include="..\include\StSettings\StParam.h" />
117
+    <ClInclude Include="..\include\StSettings\StSettings.h" />
118
+    <ClInclude Include="..\include\StSettings\StTranslations.h" />
119
+    <ClInclude Include="..\include\StSlots\StAction.h" />
120
+    <ClInclude Include="..\include\StSlots\StSignal.h" />
121
+    <ClInclude Include="..\include\StSlots\StSlot.h" />
122
+    <ClInclude Include="..\include\StSlots\StSlotFunction.h" />
123
+    <ClInclude Include="..\include\StSlots\StSlotMethod.h" />
124
+    <ClInclude Include="..\include\StSlots\StSlotMethodUnsafe.h" />
125
+    <ClInclude Include="..\include\StSlots\StSlotProxy.h" />
126
+    <ClInclude Include="..\include\StSlots\StSlotTypes.h" />
127
+    <ClInclude Include="..\include\StSocket\StCheckUpdates.h" />
128
+    <ClInclude Include="..\include\StStrings\stConsole.h" />
129
+    <ClInclude Include="..\include\StStrings\StDictionary.h" />
130
+    <ClInclude Include="..\include\StStrings\StFormatTime.h" />
131
+    <ClInclude Include="..\include\StStrings\StLangMap.h" />
132
+    <ClInclude Include="..\include\StStrings\StLogger.h" />
133
+    <ClInclude Include="..\include\StStrings\StMsgQueue.h" />
134
+    <ClInclude Include="..\include\StStrings\StString.h" />
135
+    <ClInclude Include="..\include\StStrings\StStringStream.h" />
136
+    <ClInclude Include="..\include\StStrings\StStringUnicode.h" />
137
+    <ClInclude Include="..\include\StStrings\StUtfIterator.h" />
138
+    <ClInclude Include="..\include\StStrings\stUtfTools.h" />
139
+    <ClInclude Include="..\include\StStrings\StStringUnicode.inl" />
140
+    <ClInclude Include="..\include\StStrings\StUtfIterator.inl" />
141
+    <ClInclude Include="..\include\StSys\StSys.h" />
142
+    <ClInclude Include="..\include\StTemplates\StArray.h" />
143
+    <ClInclude Include="..\include\StTemplates\StArrayList.h" />
144
+    <ClInclude Include="..\include\StTemplates\StAtomic.h" />
145
+    <ClInclude Include="..\include\StTemplates\StHandle.h" />
146
+    <ClInclude Include="..\include\StTemplates\StQuaternion.h" />
147
+    <ClInclude Include="..\include\StTemplates\StQuickPointersSort.h" />
148
+    <ClInclude Include="..\include\StTemplates\StQuickSort.h" />
149
+    <ClInclude Include="..\include\StTemplates\StRect.h" />
150
+    <ClInclude Include="..\include\StTemplates\StTemplates.h" />
151
+    <ClInclude Include="..\include\StTemplates\StVec2.h" />
152
+    <ClInclude Include="..\include\StTemplates\StVec3.h" />
153
+    <ClInclude Include="..\include\StTemplates\StVec4.h" />
154
+    <ClInclude Include="..\include\StThreads\StAtomicOp.h" />
155
+    <ClInclude Include="..\include\StThreads\StCondition.h" />
156
+    <ClInclude Include="..\include\StThreads\StFPSControl.h" />
157
+    <ClInclude Include="..\include\StThreads\StFPSMeter.h" />
158
+    <ClInclude Include="..\include\StThreads\StMinGen.h" />
159
+    <ClInclude Include="..\include\StThreads\StMutex.h" />
160
+    <ClInclude Include="..\include\StThreads\StMutexSlim.h" />
161
+    <ClInclude Include="..\include\StThreads\StProcess.h" />
162
+    <ClInclude Include="..\include\StThreads\StResourceManager.h" />
163
+    <ClInclude Include="..\include\StThreads\StThread.h" />
164
+    <ClInclude Include="..\include\StThreads\StTimer.h" />
165
+    <ClInclude Include="..\include\StAlienData.h" />
166
+    <ClInclude Include="..\include\stAssert.h" />
167
+    <ClInclude Include="..\include\StLibrary.h" />
168
+    <ClInclude Include="..\include\stTypes.h" />
169
+    <ClInclude Include="..\include\StVersion.h" />
170
+  </ItemGroup>
171
+  <ItemGroup>
172
     <ResourceCompile Include="StShared.rc" />
173
   </ItemGroup>
174
   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
175
sview-15_11.tar.gz/StShared/StShared.vcxproj.filters -> sview-16_06.tar.gz/StShared/StShared.vcxproj.filters Changed
232
 
1
@@ -1,220 +1,16 @@
2
-<?xml version="1.0" encoding="utf-8"?>
3
+<?xml version="1.0" encoding="utf-8"?>
4
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
5
   <ItemGroup>
6
-    <Filter Include="Source files">
7
-      <UniqueIdentifier>{CACACF6C-18DA-13DF-148A-3C969CC3F588}</UniqueIdentifier>
8
+    <Filter Include="Source Files">
9
+      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
10
+      <Extensions>cpp;c;cc;cxx;m;mm;def;odl;idl;hpj;bat;asm;asmx</Extensions>
11
+    </Filter>
12
+    <Filter Include="Header Files">
13
+      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
14
+      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
15
     </Filter>
16
-  </ItemGroup>
17
-  <ItemGroup>
18
-    <ClCompile Include="StAVFrame.cpp">
19
-      <Filter>Source files</Filter>
20
-    </ClCompile>
21
-    <ClCompile Include="StAVImage.cpp">
22
-      <Filter>Source files</Filter>
23
-    </ClCompile>
24
-    <ClCompile Include="StAVPacket.cpp">
25
-      <Filter>Source files</Filter>
26
-    </ClCompile>
27
-    <ClCompile Include="StAction.cpp">
28
-      <Filter>Source files</Filter>
29
-    </ClCompile>
30
-    <ClCompile Include="StBndBox.cpp">
31
-      <Filter>Source files</Filter>
32
-    </ClCompile>
33
-    <ClCompile Include="StBndCameraBox.cpp">
34
-      <Filter>Source files</Filter>
35
-    </ClCompile>
36
-    <ClCompile Include="StBndSphere.cpp">
37
-      <Filter>Source files</Filter>
38
-    </ClCompile>
39
-    <ClCompile Include="StCondition.cpp">
40
-      <Filter>Source files</Filter>
41
-    </ClCompile>
42
-    <ClCompile Include="StConfigImpl.cpp">
43
-      <Filter>Source files</Filter>
44
-    </ClCompile>
45
-    <ClCompile Include="StDevILImage.cpp">
46
-      <Filter>Source files</Filter>
47
-    </ClCompile>
48
-    <ClCompile Include="StEDIDParser.cpp">
49
-      <Filter>Source files</Filter>
50
-    </ClCompile>
51
-    <ClCompile Include="StExifDir.cpp">
52
-      <Filter>Source files</Filter>
53
-    </ClCompile>
54
-    <ClCompile Include="StExifTags.cpp">
55
-      <Filter>Source files</Filter>
56
-    </ClCompile>
57
-    <ClCompile Include="StFTFont.cpp">
58
-      <Filter>Source files</Filter>
59
-    </ClCompile>
60
-    <ClCompile Include="StFTFontRegistry.cpp">
61
-      <Filter>Source files</Filter>
62
-    </ClCompile>
63
-    <ClCompile Include="StFTLibrary.cpp">
64
-      <Filter>Source files</Filter>
65
-    </ClCompile>
66
-    <ClCompile Include="StFileNode.cpp">
67
-      <Filter>Source files</Filter>
68
-    </ClCompile>
69
-    <ClCompile Include="StFileNode2.cpp">
70
-      <Filter>Source files</Filter>
71
-    </ClCompile>
72
-    <ClCompile Include="StFolder.cpp">
73
-      <Filter>Source files</Filter>
74
-    </ClCompile>
75
-    <ClCompile Include="StFormatEnum.cpp">
76
-      <Filter>Source files</Filter>
77
-    </ClCompile>
78
-    <ClCompile Include="StFreeImage.cpp">
79
-      <Filter>Source files</Filter>
80
-    </ClCompile>
81
-    <ClCompile Include="StGLCircle.cpp">
82
-      <Filter>Source files</Filter>
83
-    </ClCompile>
84
-    <ClCompile Include="StGLContext.cpp">
85
-      <Filter>Source files</Filter>
86
-    </ClCompile>
87
-    <ClCompile Include="StGLFont.cpp">
88
-      <Filter>Source files</Filter>
89
-    </ClCompile>
90
-    <ClCompile Include="StGLFontEntry.cpp">
91
-      <Filter>Source files</Filter>
92
-    </ClCompile>
93
-    <ClCompile Include="StGLFontManager.cpp">
94
-      <Filter>Source files</Filter>
95
-    </ClCompile>
96
-    <ClCompile Include="StGLFrameBuffer.cpp">
97
-      <Filter>Source files</Filter>
98
-    </ClCompile>
99
-    <ClCompile Include="StGLMatrix.cpp">
100
-      <Filter>Source files</Filter>
101
-    </ClCompile>
102
-    <ClCompile Include="StGLMesh.cpp">
103
-      <Filter>Source files</Filter>
104
-    </ClCompile>
105
-    <ClCompile Include="StGLPrism.cpp">
106
-      <Filter>Source files</Filter>
107
-    </ClCompile>
108
-    <ClCompile Include="StGLProgram.cpp">
109
-      <Filter>Source files</Filter>
110
-    </ClCompile>
111
-    <ClCompile Include="StGLProjCamera.cpp">
112
-      <Filter>Source files</Filter>
113
-    </ClCompile>
114
-    <ClCompile Include="StGLQuadTexture.cpp">
115
-      <Filter>Source files</Filter>
116
-    </ClCompile>
117
-    <ClCompile Include="StGLQuads.cpp">
118
-      <Filter>Source files</Filter>
119
-    </ClCompile>
120
-    <ClCompile Include="StGLResource.cpp">
121
-      <Filter>Source files</Filter>
122
-    </ClCompile>
123
-    <ClCompile Include="StGLShader.cpp">
124
-      <Filter>Source files</Filter>
125
-    </ClCompile>
126
-    <ClCompile Include="StGLStereoFrameBuffer.cpp">
127
-      <Filter>Source files</Filter>
128
-    </ClCompile>
129
-    <ClCompile Include="StGLTextFormatter.cpp">
130
-      <Filter>Source files</Filter>
131
-    </ClCompile>
132
-    <ClCompile Include="StGLTexture.cpp">
133
-      <Filter>Source files</Filter>
134
-    </ClCompile>
135
-    <ClCompile Include="StGLTextureData.cpp">
136
-      <Filter>Source files</Filter>
137
-    </ClCompile>
138
-    <ClCompile Include="StGLTextureQueue.cpp">
139
-      <Filter>Source files</Filter>
140
-    </ClCompile>
141
-    <ClCompile Include="StGLUVSphere.cpp">
142
-      <Filter>Source files</Filter>
143
-    </ClCompile>
144
-    <ClCompile Include="StGLVertexBuffer.cpp">
145
-      <Filter>Source files</Filter>
146
-    </ClCompile>
147
-    <ClCompile Include="StImage.cpp">
148
-      <Filter>Source files</Filter>
149
-    </ClCompile>
150
-    <ClCompile Include="StImageFile.cpp">
151
-      <Filter>Source files</Filter>
152
-    </ClCompile>
153
-    <ClCompile Include="StImagePlane.cpp">
154
-      <Filter>Source files</Filter>
155
-    </ClCompile>
156
-    <ClCompile Include="StJpegParser.cpp">
157
-      <Filter>Source files</Filter>
158
-    </ClCompile>
159
-    <ClCompile Include="StLangMap.cpp">
160
-      <Filter>Source files</Filter>
161
-    </ClCompile>
162
-    <ClCompile Include="StLibrary.cpp">
163
-      <Filter>Source files</Filter>
164
-    </ClCompile>
165
-    <ClCompile Include="StLogger.cpp">
166
-      <Filter>Source files</Filter>
167
-    </ClCompile>
168
-    <ClCompile Include="StMinGen.cpp">
169
-      <Filter>Source files</Filter>
170
-    </ClCompile>
171
-    <ClCompile Include="StMonitor.cpp">
172
-      <Filter>Source files</Filter>
173
-    </ClCompile>
174
-    <ClCompile Include="StMsgQueue.cpp">
175
-      <Filter>Source files</Filter>
176
-    </ClCompile>
177
-    <ClCompile Include="StMutex.cpp">
178
-      <Filter>Source files</Filter>
179
-    </ClCompile>
180
-    <ClCompile Include="StPlayList.cpp">
181
-      <Filter>Source files</Filter>
182
-    </ClCompile>
183
-    <ClCompile Include="StProcess.cpp">
184
-      <Filter>Source files</Filter>
185
-    </ClCompile>
186
-    <ClCompile Include="StProcess2.cpp">
187
-      <Filter>Source files</Filter>
188
-    </ClCompile>
189
-    <ClCompile Include="StRawFile.cpp">
190
-      <Filter>Source files</Filter>
191
-    </ClCompile>
192
-    <ClCompile Include="StRegisterImpl.cpp">
193
-      <Filter>Source files</Filter>
194
-    </ClCompile>
195
-    <ClCompile Include="StResourceManager.cpp">
196
-      <Filter>Source files</Filter>
197
-    </ClCompile>
198
-    <ClCompile Include="StSettings.cpp">
199
-      <Filter>Source files</Filter>
200
-    </ClCompile>
201
-    <ClCompile Include="StDictionary.cpp">
202
-      <Filter>Source files</Filter>
203
-    </ClCompile>
204
-    <ClCompile Include="StThread.cpp">
205
-      <Filter>Source files</Filter>
206
-    </ClCompile>
207
-    <ClCompile Include="StTranslations.cpp">
208
-      <Filter>Source files</Filter>
209
-    </ClCompile>
210
-    <ClCompile Include="StVirtualKeys.cpp">
211
-      <Filter>Source files</Filter>
212
-    </ClCompile>
213
-    <ClCompile Include="StWebPImage.cpp">
214
-      <Filter>Source files</Filter>
215
-    </ClCompile>
216
-    <ClCompile Include="stAV.cpp">
217
-      <Filter>Source files</Filter>
218
-    </ClCompile>
219
-    <ClCompile Include="stConsole.cpp">
220
-      <Filter>Source files</Filter>
221
-    </ClCompile>
222
-    <ClCompile Include="stUtfTools.cpp">
223
-      <Filter>Source files</Filter>
224
-    </ClCompile>
225
   </ItemGroup>
226
   <ItemGroup>
227
     <ResourceCompile Include="StShared.rc" />
228
   </ItemGroup>
229
-</Project>
230
+</Project>
231
\ No newline at end of file
232
sview-15_11.tar.gz/StShared/StTranslations.cpp -> sview-16_06.tar.gz/StShared/StTranslations.cpp Changed
26
 
1
@@ -27,7 +27,12 @@
2
 : myResMgr(theResMgr),
3
   myModuleName(theModuleName),
4
   myWasReloaded(false) {
5
-    params.language = new StEnumParam(0, "Language");
6
+    params.language = new StEnumParam(0, stCString("language"), stCString("Language"));
7
+    reload();
8
+}
9
+
10
+void StTranslations::reload() {
11
+    params.language->changeValues().clear();
12
 
13
     // detect available translations
14
     StArrayList<StString> aFolders;
15
@@ -69,6 +74,10 @@
16
             params.language->changeValues().add("한국어");
17
             myLangFolderList.add("Korean");
18
         }
19
+        if(myResMgr->isResourceExist(StString("lang" ST_FILE_SPLITTER "ChineseS" ST_FILE_SPLITTER) + myModuleName + StTranslations::DEFAULT_SUFFIX)) {
20
+            params.language->changeValues().add("简体中文");
21
+            myLangFolderList.add("ChineseS");
22
+        }
23
         if(myResMgr->isResourceExist(StString("lang" ST_FILE_SPLITTER "Czech"  ST_FILE_SPLITTER) + myModuleName + StTranslations::DEFAULT_SUFFIX)) {
24
             params.language->changeValues().add("Čeština");
25
             myLangFolderList.add("Czech");
26
sview-15_11.tar.gz/StShared/stAV.cpp -> sview-16_06.tar.gz/StShared/stAV.cpp Changed
244
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2011-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2011-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -21,6 +21,10 @@
9
     // #include <libavresample/avresample.h>
10
     #include <libavutil/channel_layout.h>
11
 #endif
12
+
13
+#if defined(__ANDROID__)
14
+    #include <libavcodec/jni.h>
15
+#endif
16
 };
17
 
18
 #ifdef ST_LIBAV_FORK
19
@@ -91,60 +95,61 @@
20
 const int64_t stAV::NOPTS_VALUE = 0x8000000000000000LL;
21
 
22
 /**
23
- * Reproduced PixelFormat enumeration.
24
+ * Reproduced AVPixelFormat enumeration.
25
  */
26
 #if(LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(50, 8, 0))
27
     #define ST_AV_GETPIXFMT(theName) av_get_pix_fmt(theName)
28
 #else
29
     #define ST_AV_GETPIXFMT(theName) avcodec_get_pix_fmt(theName)
30
 #endif
31
-const PixelFormat stAV::PIX_FMT::NONE       = PixelFormat(-1);
32
-const PixelFormat stAV::PIX_FMT::YUV420P    = PixelFormat( 0);
33
-const PixelFormat stAV::PIX_FMT::PAL8       = ST_AV_GETPIXFMT("pal8");
34
-const PixelFormat stAV::PIX_FMT::GRAY8      = ST_AV_GETPIXFMT("gray");
35
-const PixelFormat stAV::PIX_FMT::GRAY16     = ST_AV_GETPIXFMT("gray16");
36
-const PixelFormat stAV::PIX_FMT::YUV422P    = ST_AV_GETPIXFMT("yuv422p");
37
-const PixelFormat stAV::PIX_FMT::YUV444P    = ST_AV_GETPIXFMT("yuv444p");
38
-const PixelFormat stAV::PIX_FMT::YUV410P    = ST_AV_GETPIXFMT("yuv410p");
39
-const PixelFormat stAV::PIX_FMT::YUV411P    = ST_AV_GETPIXFMT("yuv411p");
40
-const PixelFormat stAV::PIX_FMT::YUV440P    = ST_AV_GETPIXFMT("yuv440p");
41
-const PixelFormat stAV::PIX_FMT::NV12       = ST_AV_GETPIXFMT("nv12");
42
-const PixelFormat stAV::PIX_FMT::YUV420P9   = ST_AV_GETPIXFMT("yuv420p9");
43
-const PixelFormat stAV::PIX_FMT::YUV422P9   = ST_AV_GETPIXFMT("yuv422p9");
44
-const PixelFormat stAV::PIX_FMT::YUV444P9   = ST_AV_GETPIXFMT("yuv444p9");
45
-const PixelFormat stAV::PIX_FMT::YUV420P10  = ST_AV_GETPIXFMT("yuv420p10");
46
-const PixelFormat stAV::PIX_FMT::YUV422P10  = ST_AV_GETPIXFMT("yuv422p10");
47
-const PixelFormat stAV::PIX_FMT::YUV444P10  = ST_AV_GETPIXFMT("yuv444p10");
48
-const PixelFormat stAV::PIX_FMT::YUV420P16  = ST_AV_GETPIXFMT("yuv420p16");
49
-const PixelFormat stAV::PIX_FMT::YUV422P16  = ST_AV_GETPIXFMT("yuv422p16");
50
-const PixelFormat stAV::PIX_FMT::YUV444P16  = ST_AV_GETPIXFMT("yuv444p16");
51
-const PixelFormat stAV::PIX_FMT::YUVJ420P   = ST_AV_GETPIXFMT("yuvj420p");
52
-const PixelFormat stAV::PIX_FMT::YUVJ422P   = ST_AV_GETPIXFMT("yuvj422p");
53
-const PixelFormat stAV::PIX_FMT::YUVJ444P   = ST_AV_GETPIXFMT("yuvj444p");
54
-const PixelFormat stAV::PIX_FMT::YUVJ440P   = ST_AV_GETPIXFMT("yuvj440p");
55
-const PixelFormat stAV::PIX_FMT::RGB24      = ST_AV_GETPIXFMT("rgb24");
56
-const PixelFormat stAV::PIX_FMT::BGR24      = ST_AV_GETPIXFMT("bgr24");
57
-const PixelFormat stAV::PIX_FMT::RGB48      = ST_AV_GETPIXFMT("rgb48");
58
-const PixelFormat stAV::PIX_FMT::BGR48      = ST_AV_GETPIXFMT("bgr48");
59
-const PixelFormat stAV::PIX_FMT::RGBA64     = ST_AV_GETPIXFMT("rgba64");
60
-const PixelFormat stAV::PIX_FMT::BGRA64     = ST_AV_GETPIXFMT("bgra64");
61
-const PixelFormat stAV::PIX_FMT::DXVA2_VLD  = ST_AV_GETPIXFMT("dxva2_vld");
62
+const AVPixelFormat stAV::PIX_FMT::NONE       = AVPixelFormat(-1);
63
+const AVPixelFormat stAV::PIX_FMT::YUV420P    = AVPixelFormat( 0);
64
+const AVPixelFormat stAV::PIX_FMT::PAL8       = ST_AV_GETPIXFMT("pal8");
65
+const AVPixelFormat stAV::PIX_FMT::GRAY8      = ST_AV_GETPIXFMT("gray");
66
+const AVPixelFormat stAV::PIX_FMT::GRAY16     = ST_AV_GETPIXFMT("gray16");
67
+const AVPixelFormat stAV::PIX_FMT::YUV422P    = ST_AV_GETPIXFMT("yuv422p");
68
+const AVPixelFormat stAV::PIX_FMT::YUV444P    = ST_AV_GETPIXFMT("yuv444p");
69
+const AVPixelFormat stAV::PIX_FMT::YUV410P    = ST_AV_GETPIXFMT("yuv410p");
70
+const AVPixelFormat stAV::PIX_FMT::YUV411P    = ST_AV_GETPIXFMT("yuv411p");
71
+const AVPixelFormat stAV::PIX_FMT::YUV440P    = ST_AV_GETPIXFMT("yuv440p");
72
+const AVPixelFormat stAV::PIX_FMT::NV12       = ST_AV_GETPIXFMT("nv12");
73
+const AVPixelFormat stAV::PIX_FMT::YUV420P9   = ST_AV_GETPIXFMT("yuv420p9");
74
+const AVPixelFormat stAV::PIX_FMT::YUV422P9   = ST_AV_GETPIXFMT("yuv422p9");
75
+const AVPixelFormat stAV::PIX_FMT::YUV444P9   = ST_AV_GETPIXFMT("yuv444p9");
76
+const AVPixelFormat stAV::PIX_FMT::YUV420P10  = ST_AV_GETPIXFMT("yuv420p10");
77
+const AVPixelFormat stAV::PIX_FMT::YUV422P10  = ST_AV_GETPIXFMT("yuv422p10");
78
+const AVPixelFormat stAV::PIX_FMT::YUV444P10  = ST_AV_GETPIXFMT("yuv444p10");
79
+const AVPixelFormat stAV::PIX_FMT::YUV420P16  = ST_AV_GETPIXFMT("yuv420p16");
80
+const AVPixelFormat stAV::PIX_FMT::YUV422P16  = ST_AV_GETPIXFMT("yuv422p16");
81
+const AVPixelFormat stAV::PIX_FMT::YUV444P16  = ST_AV_GETPIXFMT("yuv444p16");
82
+const AVPixelFormat stAV::PIX_FMT::YUVJ420P   = ST_AV_GETPIXFMT("yuvj420p");
83
+const AVPixelFormat stAV::PIX_FMT::YUVJ422P   = ST_AV_GETPIXFMT("yuvj422p");
84
+const AVPixelFormat stAV::PIX_FMT::YUVJ444P   = ST_AV_GETPIXFMT("yuvj444p");
85
+const AVPixelFormat stAV::PIX_FMT::YUVJ440P   = ST_AV_GETPIXFMT("yuvj440p");
86
+const AVPixelFormat stAV::PIX_FMT::RGB24      = ST_AV_GETPIXFMT("rgb24");
87
+const AVPixelFormat stAV::PIX_FMT::BGR24      = ST_AV_GETPIXFMT("bgr24");
88
+const AVPixelFormat stAV::PIX_FMT::RGB48      = ST_AV_GETPIXFMT("rgb48");
89
+const AVPixelFormat stAV::PIX_FMT::BGR48      = ST_AV_GETPIXFMT("bgr48");
90
+const AVPixelFormat stAV::PIX_FMT::RGBA64     = ST_AV_GETPIXFMT("rgba64");
91
+const AVPixelFormat stAV::PIX_FMT::BGRA64     = ST_AV_GETPIXFMT("bgra64");
92
+const AVPixelFormat stAV::PIX_FMT::XYZ12      = ST_AV_GETPIXFMT("xyz12");
93
+const AVPixelFormat stAV::PIX_FMT::DXVA2_VLD  = ST_AV_GETPIXFMT("dxva2_vld");
94
 
95
 // TODO (Kirill Gavrilov#9) remove this stuff
96
 namespace {
97
-    static const PixelFormat AvPixFmtRGBA  = ST_AV_GETPIXFMT("rgba");
98
-    static const PixelFormat AvPixFmtBGRA  = ST_AV_GETPIXFMT("bgra");
99
-    static const PixelFormat AvPixFmtRGB32 = ST_AV_GETPIXFMT("rgb32"); // compatibility with old FFmpeg
100
-    static const PixelFormat AvPixFmtBGR32 = ST_AV_GETPIXFMT("bgr32"); // compatibility with old FFmpeg
101
+    static const AVPixelFormat AvPixFmtRGBA  = ST_AV_GETPIXFMT("rgba");
102
+    static const AVPixelFormat AvPixFmtBGRA  = ST_AV_GETPIXFMT("bgra");
103
+    static const AVPixelFormat AvPixFmtRGB32 = ST_AV_GETPIXFMT("rgb32"); // compatibility with old FFmpeg
104
+    static const AVPixelFormat AvPixFmtBGR32 = ST_AV_GETPIXFMT("bgr32"); // compatibility with old FFmpeg
105
 
106
     static const AVRational ST_AV_TIME_BASE_Q = {1, AV_TIME_BASE};
107
     static const double     ST_AV_TIME_BASE_D = av_q2d(ST_AV_TIME_BASE_Q);
108
 };
109
 
110
-const PixelFormat stAV::PIX_FMT::RGBA32 = (AvPixFmtRGBA != stAV::PIX_FMT::NONE) ? AvPixFmtRGBA : AvPixFmtBGR32;
111
-const PixelFormat stAV::PIX_FMT::BGRA32 = (AvPixFmtBGRA != stAV::PIX_FMT::NONE) ? AvPixFmtBGRA : AvPixFmtRGB32;
112
+const AVPixelFormat stAV::PIX_FMT::RGBA32 = (AvPixFmtRGBA != stAV::PIX_FMT::NONE) ? AvPixFmtRGBA : AvPixFmtBGR32;
113
+const AVPixelFormat stAV::PIX_FMT::BGRA32 = (AvPixFmtBGRA != stAV::PIX_FMT::NONE) ? AvPixFmtBGRA : AvPixFmtRGB32;
114
 
115
-StCString stAV::PIX_FMT::getString(const PixelFormat theFrmt) {
116
+StCString stAV::PIX_FMT::getString(const AVPixelFormat theFrmt) {
117
     if(theFrmt == stAV::PIX_FMT::NONE) {
118
         return stCString("none");
119
     } else if(theFrmt == stAV::PIX_FMT::YUV420P) {
120
@@ -195,8 +200,24 @@
121
         return stCString("rgb24");
122
     } else if(theFrmt == stAV::PIX_FMT::BGR24) {
123
         return stCString("bgr24");
124
+    } else if(theFrmt == stAV::PIX_FMT::RGB48) {
125
+        return stCString("rgb48");
126
+    } else if(theFrmt == stAV::PIX_FMT::BGR48) {
127
+        return stCString("bgr48");
128
+    } else if(theFrmt == stAV::PIX_FMT::RGBA32) {
129
+        return stCString("rgba32");
130
+    } else if(theFrmt == stAV::PIX_FMT::BGRA32) {
131
+        return stCString("bgra32");
132
+    } else if(theFrmt == stAV::PIX_FMT::RGBA64) {
133
+        return stCString("rgba64");
134
+    } else if(theFrmt == stAV::PIX_FMT::BGRA64) {
135
+        return stCString("bgra64");
136
     } else if(theFrmt == stAV::PIX_FMT::NV12) {
137
         return stCString("nv12");
138
+    } else if(theFrmt == stAV::PIX_FMT::XYZ12) {
139
+        return stCString("xyz12");
140
+    } else if(theFrmt == stAV::PIX_FMT::DXVA2_VLD) {
141
+        return stCString("dxva2_vld");
142
     } else {
143
         return stCString("unknown");
144
     }
145
@@ -204,6 +225,43 @@
146
 
147
 namespace {
148
 
149
+#if defined(ST_DEBUG_FFMPEG) || defined(ST_DEBUG_FFMPEG_VERBOSE)
150
+    /**
151
+     * Logger callback.
152
+     */
153
+    static void stAvLogCallback(void* thePtr, int theLevel, const char* theFormat, va_list theArgs) {
154
+    #if !defined(ST_DEBUG_FFMPEG_VERBOSE)
155
+        if(theLevel > AV_LOG_INFO) {
156
+            return;
157
+        }
158
+    #endif
159
+
160
+        //static int aPrintPrefix = 1;
161
+        int aPrintPrefix = 1;
162
+        char aLine[1024];
163
+        av_log_format_line(thePtr, theLevel, theFormat, theArgs,
164
+                           aLine, sizeof(aLine), &aPrintPrefix);
165
+
166
+        StLogger::Level aLevelSt = StLogger::ST_TRACE;
167
+        switch(theLevel) {
168
+            case AV_LOG_QUIET:   aLevelSt = StLogger::ST_QUIET;   break;
169
+            case AV_LOG_PANIC:   aLevelSt = StLogger::ST_PANIC;   break;
170
+            case AV_LOG_FATAL:   aLevelSt = StLogger::ST_FATAL;   break;
171
+            case AV_LOG_ERROR:   aLevelSt = StLogger::ST_ERROR;   break;
172
+            case AV_LOG_WARNING: aLevelSt = StLogger::ST_WARNING; break;
173
+            case AV_LOG_INFO:    aLevelSt = StLogger::ST_INFO;    break;
174
+            case AV_LOG_VERBOSE: aLevelSt = StLogger::ST_VERBOSE; break;
175
+            case AV_LOG_DEBUG:
176
+        #ifdef AV_LOG_TRACE
177
+            case AV_LOG_TRACE:
178
+        #endif
179
+            default: aLevelSt = StLogger::ST_TRACE; break;
180
+        }
181
+
182
+        StLogger::GetDefault().write(StString(aLine), aLevelSt);
183
+    }
184
+#endif
185
+
186
     static bool initOnce() {
187
         // register own mutex to prevent multithreading errors
188
         // while using FFmpeg functions
189
@@ -221,6 +279,10 @@
190
     #endif
191
         ST_DEBUG_LOG("FFmpeg initialized:");
192
 
193
+    #if defined(ST_DEBUG_FFMPEG) || defined(ST_DEBUG_FFMPEG_VERBOSE)
194
+        av_log_set_callback(stAvLogCallback);
195
+    #endif
196
+
197
         // show up information about dynamically linked libraries
198
         ST_DEBUG_LOG("  libavutil\t"   + stAV::Version::libavutil().toString());
199
         ST_DEBUG_LOG("  libavcodec\t"  + stAV::Version::libavcodec().toString());
200
@@ -259,10 +321,10 @@
201
         || theCtx->pix_fmt == stAV::PIX_FMT::YUV444P16;
202
 }
203
 
204
-bool stAV::isFormatYUVPlanar(const PixelFormat thePixFmt,
205
-                             const int         theWidth,
206
-                             const int         theHeight,
207
-                             dimYUV&           theDims) {
208
+bool stAV::isFormatYUVPlanar(const AVPixelFormat thePixFmt,
209
+                             const int           theWidth,
210
+                             const int           theHeight,
211
+                             dimYUV&             theDims) {
212
     if(thePixFmt == stAV::PIX_FMT::NONE) {
213
         return false;
214
     } else if(thePixFmt == stAV::PIX_FMT::YUV420P
215
@@ -547,3 +609,28 @@
216
 int64_t stAV::secondsToUnits(const double theTimeSeconds) {
217
     return int64_t(theTimeSeconds / ST_AV_TIME_BASE_D);
218
 }
219
+
220
+bool stAV::setJavaVM(void* theJavaVM) {
221
+#if defined(__ANDROID__)
222
+    return av_jni_set_java_vm(theJavaVM, NULL) == 0;
223
+#else
224
+    (void )theJavaVM;
225
+    return false;
226
+#endif
227
+}
228
+
229
+StString stAV::getVersionInfo() {
230
+#if(LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(57, 24, 0))
231
+    return av_version_info();
232
+#else
233
+    return "";
234
+#endif
235
+}
236
+
237
+StString stAV::getLicenseInfo() {
238
+#if(LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(57, 24, 0))
239
+    return avutil_license();
240
+#else
241
+    return "";
242
+#endif
243
+}
244
sview-15_11.tar.gz/StTests/StTestEmbed.h -> sview-16_06.tar.gz/StTests/StTestEmbed.h Changed
10
 
1
@@ -31,7 +31,7 @@
2
 
3
         public:
4
 
5
-    virtual void perform();
6
+    virtual void perform() ST_ATTR_OVERRIDE;
7
 
8
         private:
9
 
10
sview-15_11.tar.gz/StTests/StTestGlBand.h -> sview-16_06.tar.gz/StTests/StTestGlBand.h Changed
10
 
1
@@ -30,7 +30,7 @@
2
 
3
         public:
4
 
5
-    virtual void perform();
6
+    virtual void perform() ST_ATTR_OVERRIDE;
7
 
8
         private:
9
 
10
sview-15_11.tar.gz/StTests/StTestGlStress.h -> sview-16_06.tar.gz/StTests/StTestGlStress.h Changed
10
 
1
@@ -30,7 +30,7 @@
2
 
3
         public:
4
 
5
-    virtual void perform();
6
+    virtual void perform() ST_ATTR_OVERRIDE;
7
 
8
 };
9
 
10
sview-15_11.tar.gz/StTests/StTestImageLib.h -> sview-16_06.tar.gz/StTests/StTestImageLib.h Changed
10
 
1
@@ -34,7 +34,7 @@
2
      */
3
     StTestImageLib(const StString& theFile);
4
 
5
-    virtual void perform();
6
+    virtual void perform() ST_ATTR_OVERRIDE;
7
 
8
         private:
9
 
10
sview-15_11.tar.gz/StTests/StTestMutex.h -> sview-16_06.tar.gz/StTests/StTestMutex.h Changed
10
 
1
@@ -29,7 +29,7 @@
2
 
3
         public:
4
 
5
-    virtual void perform();
6
+    virtual void perform() ST_ATTR_OVERRIDE;
7
 
8
         private:
9
 
10
sview-15_11.tar.gz/StTests/StTests.cbp -> sview-16_06.tar.gz/StTests/StTests.cbp Changed
17
 
1
@@ -176,6 +176,7 @@
2
                    <Add option="-DST_HAVE_STCONFIG" />
3
                </Compiler>
4
                <Linker>
5
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
6
                    <Add option="-s" />
7
                    <Add option="-framework Appkit" />
8
                    <Add option="-framework OpenGL" />
9
@@ -196,6 +197,7 @@
10
                    <Add option="-DST_HAVE_STCONFIG" />
11
                </Compiler>
12
                <Linker>
13
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
14
                    <Add option="-framework Appkit" />
15
                    <Add option="-framework OpenGL" />
16
                    <Add library="objc" />
17
sview-16_06.tar.gz/contentiousIntegration Added
2
 
1
+(directory)
2
sview-16_06.tar.gz/contentiousIntegration/build_sview_android.sh Added
26
 
1
@@ -0,0 +1,24 @@
2
+#!/bin/bash
3
+
4
+# Auxiliary script for Travis CI building sView for Android platform
5
+
6
+# go to the script directory
7
+aScriptPath=${BASH_SOURCE%/*}; if [ -d "${aScriptPath}" ]; then cd "$aScriptPath"; fi; aScriptPath="$PWD";
8
+
9
+aParties=$aScriptPath/../3rdparty/android
10
+
11
+if [ ! -x "$aParties/unpack.sh" ]; then
12
+  git clone --depth 1 https://github.com/gkv311/sview-deps-android.git $aParties
13
+fi;
14
+
15
+# unpack archives and define variables
16
+source $aParties/unpack.sh
17
+
18
+if [ ! -d "${SVIEW_NDK}" ]; then exit 1; fi;
19
+
20
+# define number of jobs from available CPU cores
21
+aNbJobs="$(getconf _NPROCESSORS_ONLN)"
22
+
23
+# perform building itself
24
+make --directory=$aScriptPath/.. clean
25
+make --directory=$aScriptPath/.. -j $aNbJobs android ANDROID_NDK=$SVIEW_NDK FFMPEG_ROOT=$SVIEW_FFMPEG FREETYPE_ROOT=$SVIEW_FREETYPE OPENAL_ROOT=$SVIEW_OPENAL LIBCONFIG_ROOT=$SVIEW_LIBCONFIG
26
sview-16_06.tar.gz/contentiousIntegration/build_sview_linux.sh Added
15
 
1
@@ -0,0 +1,13 @@
2
+#!/bin/bash
3
+
4
+# Auxiliary script for Travis CI building sView for Linux platform
5
+
6
+# go to the script directory
7
+aScriptPath=${BASH_SOURCE%/*}; if [ -d "${aScriptPath}" ]; then cd "$aScriptPath"; fi; aScriptPath="$PWD";
8
+
9
+# define number of jobs from available CPU cores
10
+aNbJobs="$(getconf _NPROCESSORS_ONLN)"
11
+
12
+# perform building itself
13
+make --directory=$aScriptPath/.. clean
14
+make --directory=$aScriptPath/.. -j $aNbJobs
15
sview-16_06.tar.gz/contentiousIntegration/build_sview_osx.sh Added
15
 
1
@@ -0,0 +1,13 @@
2
+#!/bin/bash
3
+
4
+# Auxiliary script for Travis CI building sView for OS X platform
5
+
6
+# go to the script directory
7
+aScriptPath=${BASH_SOURCE%/*}; if [ -d "${aScriptPath}" ]; then cd "$aScriptPath"; fi; aScriptPath="$PWD";
8
+
9
+# define number of jobs from available CPU cores
10
+aNbJobs="$(getconf _NPROCESSORS_ONLN)"
11
+
12
+# perform building itself
13
+make --directory=$aScriptPath/.. clean
14
+make --directory=$aScriptPath/.. -j $aNbJobs
15
sview-16_06.tar.gz/contentiousIntegration/prebuild_sview_wnt.bat Added
9
 
1
@@ -0,0 +1,7 @@
2
+@echo off
3
+
4
+rem Scripts prepares dependencies for building sView
5
+set "aParties=%~dp0..\3rdparty\wnt"
6
+
7
+if not exist "%aParties%\unpack.bat" git clone --depth 1 https://github.com/gkv311/sview-deps-wnt.git %aParties%
8
+call "%aParties%\unpack.bat"
9
sview-15_11.tar.gz/debian/changelog.tmpl -> sview-16_06.tar.gz/debian/changelog.tmpl Changed
28
 
1
@@ -1,10 +1,24 @@
2
 sview (unknown_version) unknown_distrib; urgency=low
3
 
4
-  +
5
+  + TODO
6
 
7
  -- Kirill Gavrilov <kirill@sview.ru>  unknown_date
8
 
9
-sview (unknown_version) unknown_distrib; urgency=low
10
+sview (16.04-1~unknown_distrib) unknown_distrib; urgency=low
11
+
12
+  + Movie Player - implement GPU-accelerated conversion of NV12 and XYZ12 formats.
13
+  + Image Viewer - put original filename into save file dialog.
14
+  + Image Viewer - include metadata read by FFmpeg in file info dialog.
15
+  + Support list of files within Drag & Drop. Two files are handled as stereo pair.
16
+  + Movie Player - support extended remote control from command line.
17
+  * Movie Player - fix saving playback time of recent file.
18
+  * Movie Player - fix tracking playback state for keeping screen on.
19
+  * Improve language change without application restart.
20
+  * Prevent creation of multiple modal dialogs.
21
+
22
+ -- Kirill Gavrilov <kirill@sview.ru>  Sun, 01 May 2016 11:44:31 +0300
23
+
24
+sview (15.10-1~unknown_distrib) unknown_distrib; urgency=low
25
 
26
   + Support reading cubemaps in format 3:2 (two rows per 3 quad sides).
27
   + Add panorama icon to toolbar.
28
sview-15_11.tar.gz/distribution/build.iss -> sview-16_06.tar.gz/distribution/build.iss Changed
72
 
1
@@ -121,6 +121,7 @@
2
 english.AssocMusic=Associate music files with sView (*.mp3; *.ogg; *.wav; *.flac; *.ape)
3
 russian.AssocMusic=Связать с sView музыкальные файлы (*.mp3; *.ogg; *.wav; *.flac; *.ape)
4
 german.AssocMusic=Associate Musikdateien mit sView (*.mp3; *.ogg; *.wav; *.flac; *.ape)
5
+english.AssocPlaylists=Associate playlist files with sView (*.m3u)
6
 ; OpenAL soft
7
 english.OpenALSoft51=OpenAL soft - force 5.1 channel output
8
 russian.OpenALSoft51=OpenAL soft - force 5.1 channel output
9
@@ -152,6 +153,7 @@
10
 Name: flagAssocImages;       Description: "{cm:AssocImages}";           GroupDescription: "{cm:FileAssociations}"; Components: StDrawers\StImageViewer; Flags: unchecked
11
 Name: flagAssocMovies;       Description: "{cm:AssocMovies}";           GroupDescription: "{cm:FileAssociations}"; Components: StDrawers\StMoviePlayer
12
 Name: flagAssocMusic;        Description: "{cm:AssocMusic}";            GroupDescription: "{cm:FileAssociations}"; Components: StDrawers\StMoviePlayer; Flags: unchecked
13
+Name: flagAssocPlaylists;    Description: "{cm:AssocPlaylists}";        GroupDescription: "{cm:FileAssociations}"; Components: StDrawers\StMoviePlayer; Flags: unchecked
14
 
15
 [Files]
16
 ; Core files
17
@@ -245,8 +247,8 @@
18
 Source: {#SVIEW_DISTR_PATH_AMD64}\OpenAL32.dll;                DestDir: {app}\amd64;           Flags: 64bit ignoreversion; Components: StCore; Check: IsWin64
19
 
20
 ; StDrawers -> Tiny CAD viewer
21
-Source: {#SVIEW_DISTR_PATH_x86}\StCADViewer.dll;               DestDir: {app};                 Flags: 32bit ignoreversion; Components: StCore
22
-Source: {#SVIEW_DISTR_PATH_AMD64}\StCADViewer.dll;             DestDir: {app}\amd64;           Flags: 64bit ignoreversion; Components: StCore; Check: IsWin64
23
+;Source: {#SVIEW_DISTR_PATH_x86}\StCADViewer.exe;               DestDir: {app};                 Flags: 32bit ignoreversion; Components: StCore
24
+;Source: {#SVIEW_DISTR_PATH_AMD64}\StCADViewer.exe;             DestDir: {app}\amd64;           Flags: 64bit ignoreversion; Components: StCore; Check: IsWin64
25
 
26
 [Icons]
27
 Name: {group}\sView - Image Viewer; Filename: {app}\{#SVIEW_EXE_NAME};       Components: StDrawers\StImageViewer; IconFilename: {app}\{#SVIEW_EXE_NAME};       Comment: "{cm:StImageViewer}";  IconIndex: 0; Parameters: "--in=image - ""{app}\demo.jps"""; Check: not IsWin64
28
@@ -312,6 +314,8 @@
29
 
30
 Root: HKCR; SubKey: .bmp;                                      ValueType: string; ValueData: sView Image;                   Tasks: flagAssocImages;       Flags: uninsdeletekey
31
 Root: HKCR; SubKey: .jpg;                                      ValueType: string; ValueData: sView Image;                   Tasks: flagAssocImages;       Flags: uninsdeletekey
32
+Root: HKCR; SubKey: .jpeg                                      ValueType: string; ValueData: sView Image;                   Tasks: flagAssocImages;       Flags: uninsdeletekey
33
+Root: HKCR; SubKey: .jpe                                       ValueType: string; ValueData: sView Image;                   Tasks: flagAssocImages;       Flags: uninsdeletekey
34
 Root: HKCR; SubKey: .j2k;                                      ValueType: string; ValueData: sView Image;                   Tasks: flagAssocImages;       Flags: uninsdeletekey
35
 Root: HKCR; SubKey: .jp2;                                      ValueType: string; ValueData: sView Image;                   Tasks: flagAssocImages;       Flags: uninsdeletekey
36
 Root: HKCR; SubKey: .tga;                                      ValueType: string; ValueData: sView Image;                   Tasks: flagAssocImages;       Flags: uninsdeletekey
37
@@ -340,7 +344,12 @@
38
 Root: HKCR; SubKey: .mt2s;                                     ValueType: string; ValueData: sView Video;                   Tasks: flagAssocMovies; Flags: uninsdeletekey
39
 Root: HKCR; SubKey: .vob;                                      ValueType: string; ValueData: sView Video;                   Tasks: flagAssocMovies; Flags: uninsdeletekey
40
 Root: HKCR; SubKey: .mp4;                                      ValueType: string; ValueData: sView Video;                   Tasks: flagAssocMovies; Flags: uninsdeletekey
41
+Root: HKCR; SubKey: .m4v;                                      ValueType: string; ValueData: sView Video;                   Tasks: flagAssocMovies; Flags: uninsdeletekey
42
+Root: HKCR; SubKey: .mp4v;                                     ValueType: string; ValueData: sView Video;                   Tasks: flagAssocMovies; Flags: uninsdeletekey
43
+Root: HKCR; SubKey: .mpeg;                                     ValueType: string; ValueData: sView Video;                   Tasks: flagAssocMovies; Flags: uninsdeletekey
44
+Root: HKCR; SubKey: .mpe;                                      ValueType: string; ValueData: sView Video;                   Tasks: flagAssocMovies; Flags: uninsdeletekey
45
 Root: HKCR; SubKey: .mpg;                                      ValueType: string; ValueData: sView Video;                   Tasks: flagAssocMovies; Flags: uninsdeletekey
46
+Root: HKCR; SubKey: .mpv2;                                     ValueType: string; ValueData: sView Video;                   Tasks: flagAssocMovies; Flags: uninsdeletekey
47
 Root: HKCR; SubKey: .flv;                                      ValueType: string; ValueData: sView Video;                   Tasks: flagAssocMovies; Flags: uninsdeletekey
48
 Root: HKCR; SubKey: .mov;                                      ValueType: string; ValueData: sView Video;                   Tasks: flagAssocMovies; Flags: uninsdeletekey
49
 Root: HKCR; SubKey: .ogm;                                      ValueType: string; ValueData: sView Video;                   Tasks: flagAssocMovies; Flags: uninsdeletekey
50
@@ -355,6 +364,7 @@
51
 
52
 Root: HKCR; SubKey: .mp3;                                      ValueType: string; ValueData: sView Audio;                   Tasks: flagAssocMusic;  Flags: uninsdeletekey
53
 Root: HKCR; SubKey: .m4a;                                      ValueType: string; ValueData: sView Audio;                   Tasks: flagAssocMusic;  Flags: uninsdeletekey
54
+Root: HKCR; SubKey: .mpa;                                      ValueType: string; ValueData: sView Audio;                   Tasks: flagAssocMusic;  Flags: uninsdeletekey
55
 Root: HKCR; SubKey: .aac;                                      ValueType: string; ValueData: sView Audio;                   Tasks: flagAssocMusic;  Flags: uninsdeletekey
56
 Root: HKCR; SubKey: .ogg;                                      ValueType: string; ValueData: sView Audio;                   Tasks: flagAssocMusic;  Flags: uninsdeletekey
57
 Root: HKCR; SubKey: .opus;                                     ValueType: string; ValueData: sView Audio;                   Tasks: flagAssocMusic;  Flags: uninsdeletekey
58
@@ -363,6 +373,13 @@
59
 Root: HKCR; SubKey: .ape;                                      ValueType: string; ValueData: sView Audio;                   Tasks: flagAssocMusic;  Flags: uninsdeletekey
60
 Root: HKCR; SubKey: .mka;                                      ValueType: string; ValueData: sView Audio;                   Tasks: flagAssocMusic;  Flags: uninsdeletekey
61
 
62
+; Associations Playlists
63
+Root: HKCR; SubKey: sView PlayList;                            ValueType: string; ValueData: sView PlayList;                Tasks: flagAssocImages;       Flags: uninsdeletekey
64
+Root: HKCR; SubKey: sView PlayList\Shell\Open\Command;         ValueType: string; ValueData: """{app}\{#SVIEW_EXE_NAME}"" --in=video - ""%1""";       Tasks: flagAssocPlaylists; Flags: uninsdeletevalue; Check: not IsWin64
65
+Root: HKCR; SubKey: sView PlayList\Shell\Open\Command;         ValueType: string; ValueData: """{app}\amd64\{#SVIEW_EXE_NAME}"" --in=video - ""%1"""; Tasks: flagAssocPlaylists; Flags: uninsdeletevalue; Check: IsWin64
66
+Root: HKCR; Subkey: sView PlayList\DefaultIcon;                ValueType: string; ValueData: {app}\icons\sView_Media.ico;   Tasks: flagAssocPlaylists;    Flags: uninsdeletevalue
67
+Root: HKCR; SubKey: .m3u;                                      ValueType: string; ValueData: sView PlayList;                Tasks: flagAssocPlaylists;    Flags: uninsdeletekey
68
+
69
 ; StCoreXX environment variables
70
 Root: HKLM32; SubKey: SYSTEM\CurrentControlSet\Control\Session Manager\Environment; ValueType: string; ValueName: StShare;  ValueData: {app}\; Flags: uninsdeletevalue
71
 Root: HKCU32; SubKey: Environment;                                                  ValueType: string; ValueName: StShare;  ValueData: {app}\; Flags: uninsdeletevalue
72
sview-15_11.tar.gz/distribution/buildDebSrc_ppa.sh -> sview-16_06.tar.gz/distribution/buildDebSrc_ppa.sh Changed
13
 
1
@@ -21,7 +21,10 @@
2
 # Ubuntu 14.04 LTS (Trusty Tahr)
3
 # Ubuntu 15.04     (Vivid Vervet)
4
 # Ubuntu 15.10     (Wily Werewolf)
5
-aDistribs=("trusty" "vivid" "wily")
6
+# Ubuntu 16.04 LTS (Xenial Xerus)
7
+# Ubuntu 16.10     (Yakkety Yak)
8
+#aDistribs=("trusty" "vivid" "wily" "xenial" "yakkety")
9
+aDistribs=("vivid" "wily" "xenial")
10
 
11
 # Debian
12
 #aDistribs=("stable" "unstable" "testing-proposed-updates" "experimental")
13
sview-15_11.tar.gz/distribution/buildMac.sh -> sview-16_06.tar.gz/distribution/buildMac.sh Changed
35
 
1
@@ -2,7 +2,7 @@
2
 
3
 # This script generates the DMG package.
4
 #
5
-# Copyright © Kirill Gavrilov, 2011-2013
6
+# Copyright © Kirill Gavrilov, 2011-2016
7
 
8
 # go to the script directory
9
 aScriptPath=${BASH_SOURCE%/*}
10
@@ -38,12 +38,11 @@
11
 cp -f ../license-gpl-3.0.txt $buildRoot/sView.app/Contents/MacOS/info/license.txt
12
 
13
 # copy sView compiled files
14
-mv -f ../bin/MAC_gcc/build.log $buildRoot/
15
+if [ -e ../bin/MAC_gcc/build.log ]; then
16
+  mv -f ../bin/MAC_gcc/build.log $buildRoot/
17
+fi
18
 cp -f -R ../bin/MAC_gcc/sView.app/* $buildRoot/sView.app/
19
 
20
-# rename buggy name
21
-mv -f "$buildRoot/sView.app/Contents/MacOS/lang/fran%E7ais" "$buildRoot/sView.app/Contents/MacOS/lang/français"
22
-
23
 # create symlink to Applications
24
 ln -f -s /Applications "$buildRoot/"
25
 
26
@@ -63,7 +62,7 @@
27
 # Create a R/W DMG; it must be larger than the result will be
28
 rm -f ${aTmpDmg}
29
 hdiutil create -srcfolder "${buildRoot}" -volname "${aTitle}" -fs HFS+ \
30
-               -fsargs "-c c=64,a=16,e=16" -format UDRW -size 40000k ${aTmpDmg}
31
+               -fsargs "-c c=64,a=16,e=16" -format UDRW -size 50000k ${aTmpDmg}
32
 
33
 # Mount the disk image, and store the device name
34
 # (we may need to use sleep for a few seconds after this operation)
35
sview-15_11.tar.gz/distribution/info/changelog.txt -> sview-16_06.tar.gz/distribution/info/changelog.txt Changed
78
 
1
@@ -1,4 +1,75 @@
2
-== sView 14.01 ==
3
+== sView 16.04 ==
4
+
5
+16.04 (2016-04-05)
6
+  + Update FFmpeg to 3.0.1.
7
+  + Android, handle multi-touch input.
8
+  + Android, improve compatibility with file managers and mail clients.
9
+  + Android, add experimental hardware-accelerated video decoding (disabled by default).
10
+  + Movie Player - implement GPU-accelerated conversion of NV12 and XYZ12 formats.
11
+  + Image Viewer - put original filename into save file dialog.
12
+  * Movie Player - fix saving playback time of recent file.
13
+  * Movie Player - fix tracking playback state for keeping screen on.
14
+  * Android, fix crash when closing application on some devices.
15
+  * Improve language change without application restart.
16
+  * Prevent creation of multiple modal dialogs.
17
+
18
+15.11 (2015-11-22)
19
+  + Movie Player - support extended remote control from command line.
20
+  + Image Viewer - read/write sTER chunk in PNG files identifying side-by-side format.
21
+  + Image Viewer - show metadata read by FFmpeg.
22
+  + Support list of files within Drag & Drop. Two files are handled as stereo pair.
23
+  + Android, handle keyboard input.
24
+  + Update OpenAL Soft to 1.17.
25
+  + Update FFmpeg to 2.8.2.
26
+  + Port code onto Oculus Rift SDK 0.8.
27
+  * Reduce peak memory usage, improve performance using reference-counted frames.
28
+  * Windows, update experimental DXVA2 decoder (supports more codecs).
29
+  * Windows, fix cursor hiding within NVIDIA 3D Vision output (Direct3D).
30
+  * Android, fix compatibility with some OpenGL ES 2.0 drivers supporting GL_EXT_texture_rg extension.
31
+  * Handle Esc key within any context menu.
32
+
33
+15.10 (2015-10-04)
34
+  + Support reading cubemaps in format 3:2 (two rows per 3 quad sides).
35
+  + Add button to activate 360 panorama view (from cubemap or spherical panorama videos and images) on toolbar.
36
+  + Add Czech translation files.
37
+  + Android, implement device orientation tracking within panorama mode (requires precise sensors).
38
+  + Android, handle device back button to close active dialog.
39
+  + Add option to automatically workaround aspect ratio of anamorphic 1080p and 720p videos (turned on by default).
40
+  * Windows, turn off screen sleep blocking when user session has been locked.
41
+  * Improve handling of recent files when file has been selected within automatically generated playlist.
42
+  * Android, improve handling of last opened file and settings storage.
43
+  * Improve settings processing on Linux and Android - eliminate redundant file store/restore operations and add recovery for broken files.
44
+
45
+15.08 (2015-08-29)
46
+  + Cubemap images support (6 sides of the cube stacked horizontally).
47
+  + Added hot-keys configuration dialog.
48
+  + Added volume bar and shuffle/loop buttons to Media Player.
49
+  * Fixed issue with HiDPI displays within multi-monitor configurations on Windows 8.1+.
50
+  * Updated User Interface - more compact interface, new icons in menu, add scrollbars, improved HiDPI support.
51
+  * Improved integration into Ubuntu - fixed missing icons on taskbar.
52
+  * Improved touch-screens support.
53
+  * Many minor corrections.
54
+
55
+14.11 (2014-11-30)
56
+  + Porting to FFmpeg 2.5.
57
+  + Windows, 3D Vision output using Direct3D - use WGL_NV_DX_interop extension when available to improve performance.
58
+  + Preliminary support of Android platform.
59
+  + Added Chinese (simplified) translation.
60
+  + Movie Player - prefer audio stream for active GUI language.
61
+  + Movie Player - add support for 3.0 audio streams.
62
+  * Windows - fix window resize issues on monitors re-configuration.
63
+  * OS X - restore window title when switch from fullscreen mode.
64
+  * Movie Player - improve shuffle playback.
65
+  * Movie Player - improve m3u playlist support.
66
+  * Movie Player - fix seeking of mp3 files with attached image.
67
+  * Movie Player - fix issues on audio streams with unsupported / broken configuration.
68
+  * Image Viewer - downscale big images which do not fit into texture limits.
69
+  * Image Viewer - fix issue reading some broken JPEG files.
70
+
71
+14.02 (2014-03-01)
72
+  + Movie Player - restore playback position on re-opening of big audio/video files.
73
+  + Movie Player, Image Viewer - detect stereoscopic format detection from file name using keywords abq/lrq/halfou/halfsbs (if file doesn't contain appropriate information).
74
+  - Movie Player, Image Viewer - disable ambiguous side-by-side stereoscopic format detection from aspect ratio.
75
 
76
 14.01 (2014.01.30)
77
   + Windows 8.1 - adjust dimensions when window moved to monitor with another scale factor.
78
sview-15_11.tar.gz/include/StAV/StAVFrame.h -> sview-16_06.tar.gz/include/StAV/StAVFrame.h Changed
14
 
1
@@ -43,9 +43,9 @@
2
      * from this frame or codec context.
3
      */
4
     ST_CPPEXPORT void getImageInfo(const AVCodecContext* theCodecCtx,
5
-                                   int&         theSizeX,
6
-                                   int&         theSizeY,
7
-                                   PixelFormat& thePixFmt) const;
8
+                                   int&           theSizeX,
9
+                                   int&           theSizeY,
10
+                                   AVPixelFormat& thePixFmt) const;
11
 
12
     /**
13
      * Access data plane for specified Id.
14
sview-16_06.tar.gz/include/StAV/StAVIOContext.h Added
62
 
1
@@ -0,0 +1,60 @@
2
+/**
3
+ * Copyright © 2016 Kirill Gavrilov <kirill@sview.ru>
4
+ *
5
+ * Distributed under the Boost Software License, Version 1.0.
6
+ * See accompanying file license-boost.txt or copy at
7
+ * http://www.boost.org/LICENSE_1_0.txt
8
+ */
9
+
10
+#ifndef __StAVIOContext_h_
11
+#define __StAVIOContext_h_
12
+
13
+#include <StAV/stAV.h>
14
+
15
+/**
16
+ * Wrapper over AVIOContext for passing the custom I/O.
17
+ */
18
+class StAVIOContext {
19
+
20
+        public:
21
+
22
+    /**
23
+     * Main constructor.
24
+     */
25
+    ST_CPPEXPORT StAVIOContext();
26
+
27
+    /**
28
+     * Destructor.
29
+     */
30
+    ST_CPPEXPORT virtual ~StAVIOContext();
31
+
32
+    /**
33
+     * Access AVIO context.
34
+     */
35
+    ST_LOCAL AVIOContext* getAvioContext() const { return myAvioCtx; }
36
+
37
+    /**
38
+     * Virtual method for reading the data.
39
+     */
40
+    virtual int read(uint8_t* theBuf,
41
+                     int      theBufSize) = 0;
42
+
43
+    /**
44
+     * Virtual method for writing the data.
45
+     */
46
+    virtual int write(uint8_t* theBuf,
47
+                      int      theBufSize) = 0;
48
+
49
+    /**
50
+     * Virtual method for seeking to new position.
51
+     */
52
+    virtual int64_t seek(int64_t theOffset,
53
+                         int     theWhence) = 0;
54
+
55
+        protected:
56
+
57
+    AVIOContext* myAvioCtx;
58
+
59
+};
60
+
61
+#endif // __StAVIOContext_h_
62
sview-16_06.tar.gz/include/StAV/StAVIOFileContext.h Added
70
 
1
@@ -0,0 +1,68 @@
2
+/**
3
+ * Copyright © 2016 Kirill Gavrilov <kirill@sview.ru>
4
+ *
5
+ * Distributed under the Boost Software License, Version 1.0.
6
+ * See accompanying file license-boost.txt or copy at
7
+ * http://www.boost.org/LICENSE_1_0.txt
8
+ */
9
+
10
+#ifndef __StAVIOFileContext_h_
11
+#define __StAVIOFileContext_h_
12
+
13
+#include <StAV/StAVIOContext.h>
14
+
15
+/**
16
+ * Custom AVIO context for the file.
17
+ */
18
+class StAVIOFileContext : public StAVIOContext {
19
+
20
+        public:
21
+
22
+    /**
23
+     * Empty constructor.
24
+     */
25
+    ST_CPPEXPORT StAVIOFileContext();
26
+
27
+    /**
28
+     * Destructor.
29
+     */
30
+    ST_CPPEXPORT virtual ~StAVIOFileContext();
31
+
32
+    /**
33
+     * Close the file.
34
+     */
35
+    ST_CPPEXPORT void close();
36
+
37
+    /**
38
+     * Associate a stream with a file that was previously opened for low-level I/O.
39
+     * The associated file will be automatically closed on destruction.
40
+     */
41
+    ST_CPPEXPORT bool openFromDescriptor(int theFD, const char* theMode);
42
+
43
+    /**
44
+     * Read from the file.
45
+     */
46
+    ST_CPPEXPORT virtual int read(uint8_t* theBuf,
47
+                                  int      theBufSize) ST_ATTR_OVERRIDE;
48
+
49
+    /**
50
+     * Write into the file.
51
+     */
52
+    ST_CPPEXPORT virtual int write(uint8_t* theBuf,
53
+                                   int      theBufSize) ST_ATTR_OVERRIDE;
54
+
55
+    /**
56
+     * Seek within the file.
57
+     */
58
+    ST_CPPEXPORT virtual int64_t seek(int64_t theOffset,
59
+                                      int     theWhence) ST_ATTR_OVERRIDE;
60
+
61
+        protected:
62
+
63
+    FILE* myFile;
64
+
65
+};
66
+
67
+ST_DEFINE_HANDLE(StAVIOFileContext, StAVIOContext);
68
+
69
+#endif // __StAVIOFileContext_h_
70
sview-16_06.tar.gz/include/StAV/StAVIOMemContext.h Added
73
 
1
@@ -0,0 +1,71 @@
2
+/**
3
+ * Copyright © 2016 Kirill Gavrilov <kirill@sview.ru>
4
+ *
5
+ * Distributed under the Boost Software License, Version 1.0.
6
+ * See accompanying file license-boost.txt or copy at
7
+ * http://www.boost.org/LICENSE_1_0.txt
8
+ */
9
+
10
+#ifndef __StAVIOMemContext_h_
11
+#define __StAVIOMemContext_h_
12
+
13
+#include <StAV/StAVIOContext.h>
14
+
15
+/**
16
+ * Custom AVIO context for the file.
17
+ */
18
+class StAVIOMemContext : public StAVIOContext {
19
+
20
+        public:
21
+
22
+    /**
23
+     * Empty constructor.
24
+     */
25
+    ST_CPPEXPORT StAVIOMemContext();
26
+
27
+    /**
28
+     * Destructor.
29
+     */
30
+    ST_CPPEXPORT virtual ~StAVIOMemContext();
31
+
32
+    /**
33
+     * Close the context.
34
+     */
35
+    ST_CPPEXPORT void close();
36
+
37
+    /**
38
+     * Wrap existing buffer.
39
+     * Buffer should not be released by caller until closing the context.
40
+     */
41
+    ST_CPPEXPORT void wrapBuffer(uint8_t* theSrcBuffer,
42
+                                 size_t   theSrcSize);
43
+
44
+    /**
45
+     * Read from the file.
46
+     */
47
+    ST_CPPEXPORT virtual int read(uint8_t* theBuf,
48
+                                  int      theBufSize) ST_ATTR_OVERRIDE;
49
+
50
+    /**
51
+     * Write into the file.
52
+     */
53
+    ST_CPPEXPORT virtual int write(uint8_t* theBuf,
54
+                                   int      theBufSize) ST_ATTR_OVERRIDE;
55
+
56
+    /**
57
+     * Seek within the file.
58
+     */
59
+    ST_CPPEXPORT virtual int64_t seek(int64_t theOffset,
60
+                                      int     theWhence) ST_ATTR_OVERRIDE;
61
+
62
+        protected:
63
+
64
+    uint8_t* mySrcBuffer; //!< memory buffer
65
+    int64_t  mySrcSize;   //!< buffer size
66
+    int64_t  myPosition;  //!< current position within the buffer
67
+
68
+};
69
+
70
+ST_DEFINE_HANDLE(StAVIOMemContext, StAVIOContext);
71
+
72
+#endif // __StAVIOMemContext_h_
73
sview-15_11.tar.gz/include/StAV/StAVImage.h -> sview-16_06.tar.gz/include/StAV/StAVImage.h Changed
14
 
1
@@ -70,6 +70,12 @@
2
                                    ImageType       theImageType = ST_TYPE_NONE,
3
                                    uint8_t* theDataPtr = NULL, int theDataSize = 0);
4
 
5
+    ST_CPPEXPORT bool loadExtra(const StString& theFilePath,
6
+                                ImageType       theImageType,
7
+                                uint8_t*        theDataPtr,
8
+                                int             theDataSize,
9
+                                bool            theIsOnlyRGB);
10
+
11
     /**
12
      * Save image to specified path.
13
      */
14
sview-15_11.tar.gz/include/StAV/StAVPacket.h -> sview-16_06.tar.gz/include/StAV/StAVPacket.h Changed
19
 
1
@@ -89,11 +89,15 @@
2
         return myPacket.dts;
3
     }
4
 
5
-    inline int64_t getConvergenceDuration() const {
6
+    ST_LOCAL int64_t getConvergenceDuration() const {
7
+    #if(LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(57, 24, 0))
8
+        return myPacket.duration;
9
+    #else
10
         return myPacket.convergence_duration;
11
+    #endif
12
     }
13
 
14
-    inline int getDuration() const {
15
+    ST_LOCAL int64_t getDuration() const {
16
         return myPacket.duration;
17
     }
18
 
19
sview-15_11.tar.gz/include/StAV/StAVVideoMuxer.h -> sview-16_06.tar.gz/include/StAV/StAVVideoMuxer.h Changed
10
 
1
@@ -90,7 +90,7 @@
2
      * Create output stream from input stream.
3
      */
4
     ST_CPPEXPORT bool addStream(AVFormatContext* theContext,
5
-                                const AVStream*  theStream);
6
+                                AVStream*        theStream);
7
 
8
         private:
9
 
10
sview-15_11.tar.gz/include/StAV/stAV.h -> sview-16_06.tar.gz/include/StAV/stAV.h Changed
154
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2011-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2011-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -194,48 +194,50 @@
9
      *  - MPEG, 16 bits:            4096..60160 for Y, 4096..61440 for U and V
10
      */
11
     namespace PIX_FMT {
12
-        ST_SHARED_CPPEXPORT PixelFormat NONE;
13
-        ST_SHARED_CPPEXPORT PixelFormat PAL8;      //!< palette
14
+        ST_SHARED_CPPEXPORT AVPixelFormat NONE;
15
+        ST_SHARED_CPPEXPORT AVPixelFormat PAL8;      //!< palette
16
 
17
-        ST_SHARED_CPPEXPORT PixelFormat GRAY8;     //!< Y,  8bpp
18
-        ST_SHARED_CPPEXPORT PixelFormat GRAY16;    //!< Y, 16bpp
19
+        ST_SHARED_CPPEXPORT AVPixelFormat GRAY8;     //!< Y,  8bpp
20
+        ST_SHARED_CPPEXPORT AVPixelFormat GRAY16;    //!< Y, 16bpp
21
         // planar YUV formats
22
-        ST_SHARED_CPPEXPORT PixelFormat YUV420P;   //!< planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
23
-        ST_SHARED_CPPEXPORT PixelFormat YUV422P;   //!< planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
24
-        ST_SHARED_CPPEXPORT PixelFormat YUV444P;   //!< planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
25
-        ST_SHARED_CPPEXPORT PixelFormat YUV410P;   //!< planar YUV 4:1:0,  9bpp, (1 Cr & Cb sample per 4x4 Y samples)
26
-        ST_SHARED_CPPEXPORT PixelFormat YUV411P;   //!< planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
27
-        ST_SHARED_CPPEXPORT PixelFormat YUV440P;   //!< planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
28
-        ST_SHARED_CPPEXPORT PixelFormat NV12;      //!< YUV420, Y plane + interleaved UV plane oh half width and height
29
+        ST_SHARED_CPPEXPORT AVPixelFormat YUV420P;   //!< planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
30
+        ST_SHARED_CPPEXPORT AVPixelFormat YUV422P;   //!< planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
31
+        ST_SHARED_CPPEXPORT AVPixelFormat YUV444P;   //!< planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
32
+        ST_SHARED_CPPEXPORT AVPixelFormat YUV410P;   //!< planar YUV 4:1:0,  9bpp, (1 Cr & Cb sample per 4x4 Y samples)
33
+        ST_SHARED_CPPEXPORT AVPixelFormat YUV411P;   //!< planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
34
+        ST_SHARED_CPPEXPORT AVPixelFormat YUV440P;   //!< planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
35
+        ST_SHARED_CPPEXPORT AVPixelFormat NV12;      //!< YUV420, Y plane + interleaved UV plane oh half width and height
36
         // wide planar YUV formats (9,10,14,16 bits stored in 16 bits)
37
-        ST_SHARED_CPPEXPORT PixelFormat YUV420P9;
38
-        ST_SHARED_CPPEXPORT PixelFormat YUV422P9;
39
-        ST_SHARED_CPPEXPORT PixelFormat YUV444P9;
40
-        ST_SHARED_CPPEXPORT PixelFormat YUV420P10;
41
-        ST_SHARED_CPPEXPORT PixelFormat YUV422P10;
42
-        ST_SHARED_CPPEXPORT PixelFormat YUV444P10;
43
-        ST_SHARED_CPPEXPORT PixelFormat YUV420P16;
44
-        ST_SHARED_CPPEXPORT PixelFormat YUV422P16;
45
-        ST_SHARED_CPPEXPORT PixelFormat YUV444P16;
46
-        //extern const PixelFormat YUVA420P; ///< planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
47
+        ST_SHARED_CPPEXPORT AVPixelFormat YUV420P9;
48
+        ST_SHARED_CPPEXPORT AVPixelFormat YUV422P9;
49
+        ST_SHARED_CPPEXPORT AVPixelFormat YUV444P9;
50
+        ST_SHARED_CPPEXPORT AVPixelFormat YUV420P10;
51
+        ST_SHARED_CPPEXPORT AVPixelFormat YUV422P10;
52
+        ST_SHARED_CPPEXPORT AVPixelFormat YUV444P10;
53
+        ST_SHARED_CPPEXPORT AVPixelFormat YUV420P16;
54
+        ST_SHARED_CPPEXPORT AVPixelFormat YUV422P16;
55
+        ST_SHARED_CPPEXPORT AVPixelFormat YUV444P16;
56
+        //extern const AVPixelFormat YUVA420P; ///< planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
57
         // fullscale YUV formats (deprecated?)
58
-        ST_SHARED_CPPEXPORT PixelFormat YUVJ420P;  //!< planar YUV 4:2:0, 12bpp, full scale (JPEG)
59
-        ST_SHARED_CPPEXPORT PixelFormat YUVJ422P;  //!< planar YUV 4:2:2, 16bpp, full scale (JPEG)
60
-        ST_SHARED_CPPEXPORT PixelFormat YUVJ444P;  //!< planar YUV 4:4:4, 24bpp, full scale (JPEG)
61
-        ST_SHARED_CPPEXPORT PixelFormat YUVJ440P;  //!< planar YUV 4:4:0 full scale (JPEG)
62
+        ST_SHARED_CPPEXPORT AVPixelFormat YUVJ420P;  //!< planar YUV 4:2:0, 12bpp, full scale (JPEG)
63
+        ST_SHARED_CPPEXPORT AVPixelFormat YUVJ422P;  //!< planar YUV 4:2:2, 16bpp, full scale (JPEG)
64
+        ST_SHARED_CPPEXPORT AVPixelFormat YUVJ444P;  //!< planar YUV 4:4:4, 24bpp, full scale (JPEG)
65
+        ST_SHARED_CPPEXPORT AVPixelFormat YUVJ440P;  //!< planar YUV 4:4:0 full scale (JPEG)
66
         // RGB formats
67
-        ST_SHARED_CPPEXPORT PixelFormat RGB24;     //!< packed RGB 8:8:8, 24bpp, RGBRGB...
68
-        ST_SHARED_CPPEXPORT PixelFormat BGR24;     //!< packed RGB 8:8:8, 24bpp, BGRBGR...
69
-        ST_SHARED_CPPEXPORT PixelFormat RGB48;
70
-        ST_SHARED_CPPEXPORT PixelFormat BGR48;
71
-        ST_SHARED_CPPEXPORT PixelFormat RGBA32;
72
-        ST_SHARED_CPPEXPORT PixelFormat BGRA32;
73
-        ST_SHARED_CPPEXPORT PixelFormat RGBA64;
74
-        ST_SHARED_CPPEXPORT PixelFormat BGRA64;
75
+        ST_SHARED_CPPEXPORT AVPixelFormat RGB24;     //!< packed RGB 8:8:8, 24bpp, RGBRGB...
76
+        ST_SHARED_CPPEXPORT AVPixelFormat BGR24;     //!< packed RGB 8:8:8, 24bpp, BGRBGR...
77
+        ST_SHARED_CPPEXPORT AVPixelFormat RGB48;
78
+        ST_SHARED_CPPEXPORT AVPixelFormat BGR48;
79
+        ST_SHARED_CPPEXPORT AVPixelFormat RGBA32;
80
+        ST_SHARED_CPPEXPORT AVPixelFormat BGRA32;
81
+        ST_SHARED_CPPEXPORT AVPixelFormat RGBA64;
82
+        ST_SHARED_CPPEXPORT AVPixelFormat BGRA64;
83
+        // XYZ formats
84
+        ST_SHARED_CPPEXPORT AVPixelFormat XYZ12;
85
         // HWAccel formats
86
-        ST_SHARED_CPPEXPORT PixelFormat DXVA2_VLD;
87
+        ST_SHARED_CPPEXPORT AVPixelFormat DXVA2_VLD;
88
 
89
-        ST_CPPEXPORT StCString getString(const PixelFormat theFrmt);
90
+        ST_CPPEXPORT StCString getString(const AVPixelFormat theFrmt);
91
     }
92
 
93
     /**
94
@@ -254,21 +256,21 @@
95
 
96
     /**
97
      * Auxiliary function to check that frame is in one of the YUV planar pixel format.
98
-     * @return true if PixelFormat is planar YUV
99
+     * @return true if AVPixelFormat is planar YUV
100
      */
101
     ST_CPPEXPORT bool isFormatYUVPlanar(const AVCodecContext* theCtx);
102
 
103
     /**
104
      * Same as above but provide width/height information per component's plane.
105
-     * @return true if PixelFormat is planar YUV
106
+     * @return true if AVPixelFormat is planar YUV
107
      */
108
-    ST_CPPEXPORT bool isFormatYUVPlanar(const PixelFormat thePixFmt,
109
-                                        const int         theWidth,
110
-                                        const int         theHeight,
111
-                                        dimYUV&           theDims);
112
+    ST_CPPEXPORT bool isFormatYUVPlanar(const AVPixelFormat thePixFmt,
113
+                                        const int           theWidth,
114
+                                        const int           theHeight,
115
+                                        dimYUV&             theDims);
116
 
117
     /**
118
-     * @return true if PixelFormat is planar YUV
119
+     * @return true if AVPixelFormat is planar YUV
120
      */
121
     inline bool isFormatYUVPlanar(const AVCodecContext* theCtx,
122
                                   dimYUV&               theDims) {
123
@@ -281,7 +283,7 @@
124
 #if(LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(53, 5, 0))
125
     inline bool isFormatYUVPlanar(const AVFrame* theFrame,
126
                                   dimYUV&        theDims) {
127
-        return isFormatYUVPlanar((PixelFormat )theFrame->format,
128
+        return isFormatYUVPlanar((AVPixelFormat )theFrame->format,
129
                                  theFrame->width,
130
                                  theFrame->height,
131
                                  theDims);
132
@@ -304,6 +306,21 @@
133
     }
134
 
135
     /**
136
+     * av_version_info() wrapper; return FFmpeg version info.
137
+     */
138
+    ST_CPPEXPORT StString getVersionInfo();
139
+
140
+    /**
141
+     * avutil_license() wrapper; return FFmpeg license info.
142
+     */
143
+    ST_CPPEXPORT StString getLicenseInfo();
144
+
145
+    /**
146
+     * av_jni_set_java_vm() wrapper.
147
+     */
148
+    ST_CPPEXPORT bool setJavaVM(void* theJavaVM);
149
+
150
+    /**
151
      * Audio functions
152
      */
153
     namespace audio {
154
sview-15_11.tar.gz/include/StCore/StAndroidGlue.h -> sview-16_06.tar.gz/include/StCore/StAndroidGlue.h Changed
147
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StCore, window system independent C++ toolkit for writing OpenGL applications.
4
- * Copyright © 2014-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2014-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -38,6 +38,50 @@
10
 };
11
 
12
 /**
13
+ * The sentry class for attaching the current thread to JavaVM.
14
+ */
15
+class StJNIEnv {
16
+
17
+        public:
18
+
19
+    /**
20
+     * Main constructor, tries to attach JavaVM to the current thread.
21
+     */
22
+    ST_CPPEXPORT StJNIEnv(JavaVM* theJavaVM);
23
+
24
+    /**
25
+     * Destructor, automatically detaches JavaVM from current thread.
26
+     * Has no effect if JavaVM has been attached to the thread before creating this sentry.
27
+     */
28
+    ST_CPPEXPORT ~StJNIEnv();
29
+
30
+    /**
31
+     * Detach from current thread right now.
32
+     * Has no effect if JavaVM has been attached to the thread before creating this sentry.
33
+     */
34
+    ST_CPPEXPORT void detach();
35
+
36
+    /**
37
+     * Cast to actual JNIEnv instance.
38
+     */
39
+    ST_LOCAL JNIEnv* operator->() const {
40
+        return myJniEnv;
41
+    }
42
+
43
+    /**
44
+     * Return true if JNI environment is NULL.
45
+     */
46
+    ST_LOCAL bool isNull() const { return myJniEnv == NULL; }
47
+
48
+        private:
49
+
50
+    JavaVM* myJavaVM;   //!< pointer to global Java VM instance
51
+    JNIEnv* myJniEnv;   //!< JNI environment for working thread
52
+    bool    myToDetach; //!< flag to detach
53
+
54
+};
55
+
56
+/**
57
  * Interface for the standard glue code of a threaded application.
58
  */
59
 class StAndroidGlue {
60
@@ -73,6 +117,7 @@
61
         CommandId_Stop,          //!< activity has been stopped
62
         CommandId_Destroy,       //!< activity is being destroyed, and waiting for the application thread to clean up and exit before proceeding
63
         CommandId_BackPressed,   //!< pressed special back button
64
+        CommandId_WindowChanged, //!< the current ANativeWindow has been changed
65
     };
66
 
67
     /**
68
@@ -151,6 +196,16 @@
69
     }
70
 
71
     /**
72
+     * Setup window flags (see ANativeActivity_setWindowFlags()).
73
+     */
74
+    ST_CPPEXPORT void setWindowFlags(const int theFlags);
75
+
76
+    /**
77
+     * Turn stereo output on using device-specific API.
78
+     */
79
+    ST_CPPEXPORT void setHardwareStereoOn(const bool theToEnable);
80
+
81
+    /**
82
      * Return true if device has orientation sensor.
83
      */
84
     ST_LOCAL bool hasOrientationSensor() const { return myHasOrientSensor; }
85
@@ -179,6 +234,12 @@
86
      */
87
     ST_LOCAL int getMemoryClass() const { return myMemoryClassMiB; }
88
 
89
+    /**
90
+     * Open file descriptor for specified path using contentResolver, including content:// URLs.
91
+     * @return file descriptor, which should be closed by caller, or -1 on error
92
+     */
93
+    ST_CPPEXPORT int openFileDescriptor(const StString& thePath);
94
+
95
         public:
96
 
97
     /**
98
@@ -221,6 +282,10 @@
99
 
100
         protected: //! @name low-level implementation
101
 
102
+    /**
103
+     * Read the open file from currently set intent.
104
+     * The method calls the Java method readOpenPath() of StActivity which will call setOpenPath().
105
+     */
106
     ST_CPPEXPORT void readOpenPath();
107
 
108
     ST_CPPEXPORT void printConfig();
109
@@ -252,6 +317,19 @@
110
         public: //! @name StActivity callbacks
111
 
112
     /**
113
+     * Setup new open file from Java class.
114
+     */
115
+    ST_CPPEXPORT void setOpenPath(const jstring  theOpenPath,
116
+                                  const jstring  theMimeType,
117
+                                  const jboolean theIsLaunchedFromHistory);
118
+
119
+    /**
120
+     * Setup surfaceChanging flag to workaround NativeActivity API issue
121
+     * causing two events setWindow() being called instead of a one.
122
+     */
123
+    ST_CPPEXPORT void setChangingSurface(bool theIsChanging);
124
+
125
+    /**
126
      * Define device orientation sensor.
127
      * @param theHasSensor flag indicating that device has orientation sensors
128
      * @param theIsPoor    flag indicating that available orientation sensor provides imprecise values
129
@@ -362,6 +440,8 @@
130
     AInputQueue*            myInputQueuePending;
131
     ANativeWindow*          myWindow;            //!< native window to draw into
132
     ANativeWindow*          myWindowPending;
133
+    bool                    myIsChangingSurface; //!< flag indicating surface changing state
134
+    int                     myWindowFlags;       //!< active window flags
135
     int                     myActivityState;     //!< Current state of the app's activity (APP_CMD_START, APP_CMD_RESUME, APP_CMD_PAUSE, or APP_CMD_STOP)
136
     int                     myMemoryClassMiB;    //!< device memory class
137
 
138
@@ -382,6 +462,8 @@
139
 
140
     StMutex                 myFetchLock;         //!< fetch data lock
141
     StString                myStAppClass;        //!< application class name (e.g. image, video)
142
+    StString                myStereoApiId;       //!< stereo API identifier
143
+    bool                    myToEnableStereoHW;  //!< on/off state of stereo API
144
     StString                myDndPath;           //!< intent data string
145
     StString                myCreatePath;        //!< intent data string used to open this activity
146
     StQuaternion<double>    myQuaternion;        //!< device orientation
147
sview-16_06.tar.gz/include/StCore/StAndroidResourceManager.h Added
51
 
1
@@ -0,0 +1,49 @@
2
+/**
3
+ * StCore, window system independent C++ toolkit for writing OpenGL applications.
4
+ * Copyright © 2016 Kirill Gavrilov <kirill@sview.ru>
5
+ *
6
+ * Distributed under the Boost Software License, Version 1.0.
7
+ * See accompanying file license-boost.txt or copy at
8
+ * http://www.boost.org/LICENSE_1_0.txt
9
+ */
10
+
11
+#if defined(__ANDROID__)
12
+
13
+#ifndef __StAndroidResourceManager_h_
14
+#define __StAndroidResourceManager_h_
15
+
16
+#include <StThreads/StResourceManager.h>
17
+
18
+class StAndroidGlue;
19
+
20
+/**
21
+ * Resource manager.
22
+ */
23
+class StAndroidResourceManager : public StResourceManager {
24
+
25
+        public:
26
+
27
+    /**
28
+     * Main constructor.
29
+     */
30
+    ST_CPPEXPORT StAndroidResourceManager(StAndroidGlue*  theGlueApp,
31
+                                          const StString& theAppName = "com.sview");
32
+
33
+    /**
34
+     * Destructor.
35
+     */
36
+    ST_CPPEXPORT virtual ~StAndroidResourceManager();
37
+
38
+    /**
39
+     * Access resource with specified name.
40
+     */
41
+    ST_CPPEXPORT virtual int openFileDescriptor(const StString& thePath) const ST_ATTR_OVERRIDE;
42
+
43
+        private:
44
+
45
+    StAndroidGlue* myGlueApp; //!< pointer to application glue
46
+
47
+};
48
+
49
+#endif // __StAndroidResourceManager_h_
50
+#endif // __ANDROID__
51
sview-15_11.tar.gz/include/StCore/StApplication.h -> sview-16_06.tar.gz/include/StCore/StApplication.h Changed
118
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StCore, window system independent C++ toolkit for writing OpenGL applications.
4
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -13,6 +13,7 @@
10
 #include <StCore/StWindow.h>
11
 #include <StCore/StOpenInfo.h>
12
 #include <StSettings/StEnumParam.h>
13
+#include <StSettings/StTranslations.h>
14
 #include <StSlots/StAction.h>
15
 
16
 #include <map>
17
@@ -26,14 +27,26 @@
18
  */
19
 class StApplication {
20
 
21
-         public:
22
+        protected:
23
+
24
+    /**
25
+     * Action to be performed on escape.
26
+     */
27
+    enum ActionOnEscape {
28
+        ActionOnEscape_Nothing,              //!< do not exit application
29
+        ActionOnEscape_ExitOneClick,         //!< exit on single click
30
+        ActionOnEscape_ExitDoubleClick,      //!< exit on double click
31
+        ActionOnEscape_ExitOneClickWindowed, //!< exit on single click in windowed mode
32
+    };
33
+
34
+        public:
35
 
36
     /**
37
      * Parse process arguments.
38
      */
39
     ST_CPPEXPORT static StHandle<StOpenInfo> parseProcessArguments();
40
 
41
-         public:
42
+        public:
43
 
44
     /**
45
      * Main constructor.
46
@@ -179,6 +192,11 @@
47
     ST_CPPEXPORT void invokeAction(const int    theActionId,
48
                                    const double theProgress = 0.0);
49
 
50
+    /**
51
+     * Language change slot.
52
+     */
53
+    ST_CPPEXPORT virtual void doChangeLanguage(const int32_t );
54
+
55
         protected: //! @name window events slots
56
 
57
     /**
58
@@ -239,6 +257,21 @@
59
     ST_CPPEXPORT virtual void doMouseUp(const StClickEvent& theEvent);
60
 
61
     /**
62
+     * Process touch.
63
+     */
64
+    ST_CPPEXPORT virtual void doTouch(const StTouchEvent& theEvent);
65
+
66
+    /**
67
+     * Process gesture.
68
+     */
69
+    ST_CPPEXPORT virtual void doGesture(const StGestureEvent& theEvent);
70
+
71
+    /**
72
+     * Process scrolling.
73
+     */
74
+    ST_CPPEXPORT virtual void doScroll (const StScrollEvent& theEvent);
75
+
76
+    /**
77
      * Process file Drag & Drop event.
78
      */
79
     ST_CPPEXPORT virtual void doFileDrop(const StDNDropEvent& theEvent);
80
@@ -248,6 +281,20 @@
81
      */
82
     ST_CPPEXPORT virtual void doNavigate(const StNavigEvent& theEvent);
83
 
84
+    /**
85
+     * Exit on escape.
86
+     */
87
+    ST_CPPEXPORT bool doExitOnEscape(StApplication::ActionOnEscape theAction);
88
+
89
+        public:
90
+
91
+    /**
92
+     * Find translation for the string with specified id.
93
+     */
94
+    ST_LOCAL const StString& tr(const size_t theId) const {
95
+        return myLangMap->getValue(theId);
96
+    }
97
+
98
         public: //! @name public parameters
99
 
100
     struct {
101
@@ -266,6 +313,7 @@
102
 
103
     StArrayList< StHandle<StWindow> > myRenderers; //!< list of registered renderers
104
     StHandle<StResourceManager>       myResMgr;    //!< resources manager
105
+    StHandle<StTranslations>          myLangMap;   //!< translated strings map
106
     StHandle<StMsgQueue>  myMsgQueue;              //!< messages queue
107
     StHandle<StWindow>    myWindow;                //!< active renderer and main application window
108
     StHandle<StWindow>    mySwitchTo;              //!< new renderer to switch to
109
@@ -287,6 +335,8 @@
110
     bool                  myGlDebug;               //!< request debug OpenGL context
111
     bool                  myIsOpened;              //!< application execution state
112
     bool                  myToQuit;                //!< request for application termination
113
+    bool                  myToRecreateMenu;        //!< flag to recreate the menu
114
+    StTimer               myExitTimer;             //!< double click exit timer
115
 
116
         private: //! @name no copies, please
117
 
118
sview-15_11.tar.gz/include/StCore/StEvent.h -> sview-16_06.tar.gz/include/StCore/StEvent.h Changed
205
 
1
@@ -15,6 +15,45 @@
2
 #include <StThreads/StTimer.h>
3
 #include "StVirtualKeys.h"
4
 
5
+#define ST_MAX_TOUCHES 10
6
+#define ST_TOUCH_INVALID_ID (size_t(-1))
7
+
8
+/**
9
+ * Touch state.
10
+ */
11
+struct StTouch {
12
+
13
+    size_t Id;       //!< unique touch id
14
+    size_t DeviceId; //!< device id
15
+    float  PointX;   //!< touch position defined relative to window from top-left (0,0) to the bottom-right (1,1)
16
+    float  PointY;   //!< touchpad coordinates are mapped to the window as well, but has no direct meaning
17
+    bool   OnScreen; //!< flag indicating touchscreen (as alternative to touchpad)
18
+
19
+    /**
20
+     * Return true for defined touch.
21
+     */
22
+    bool isDefined() const {
23
+        return Id != ST_TOUCH_INVALID_ID;
24
+    }
25
+
26
+    /**
27
+     * Return definition of empty touch.
28
+     */
29
+    static StTouch Empty() {
30
+        StTouch aTouch;
31
+        aTouch.Id       = ST_TOUCH_INVALID_ID;
32
+        aTouch.DeviceId = ST_TOUCH_INVALID_ID;
33
+        aTouch.PointX   = 0.0f;
34
+        aTouch.PointY   = 0.0f;
35
+        aTouch.OnScreen = false;
36
+        return aTouch;
37
+    }
38
+
39
+};
40
+
41
+/**
42
+ * Event type.
43
+ */
44
 enum StEventType {
45
     stEvent_None,       //!< StAnyEvent,    undefined event
46
     stEvent_Close,      //!< StCloseEvent,  window close requested
47
@@ -26,6 +65,17 @@
48
     stEvent_KeyHold,    //!< StKeyEvent,    keyboard key holded
49
     stEvent_MouseDown,  //!< StClickEvent,  mouse button pressed
50
     stEvent_MouseUp,    //!< StClickEvent,  mouse button released
51
+    stEvent_MouseCancel,//!< StClickEvent,  cancel simulated mouse button press event
52
+    stEvent_TouchDown,  //!< StTouchEvent,  touch pressed
53
+    stEvent_TouchUp,    //!< StTouchEvent,  touch released
54
+    stEvent_TouchMove,  //!< StTouchEvent,  touch moved
55
+    stEvent_TouchCancel,//!< StTouchEvent,  touch cancelled
56
+    stEvent_GestureCancel,     //!< StGestureEvent, abort the gestures
57
+    stEvent_Gesture1DoubleTap, //!< StGestureEvent, 1 finger  double tap
58
+    stEvent_Gesture2Move,      //!< StGestureEvent, 2 fingers moving in sync
59
+    stEvent_Gesture2Rotate,    //!< StGestureEvent, 2 fingers rotating
60
+    stEvent_Gesture2Pinch,     //!< StGestureEvent, 2 fingers pinch
61
+    stEvent_Scroll,     //!< StScrollEvent, scrolling
62
     stEvent_FileDrop,   //!< StDNDropEvent, file Drag & Drop
63
     stEvent_Navigate,   //!< StNavigEvent,  navigation event
64
     stEvent_Action,     //!< StActionEvent, queued application event
65
@@ -103,6 +153,109 @@
66
 };
67
 
68
 /**
69
+ * Scroll event.
70
+ */
71
+struct StScrollEvent {
72
+
73
+    StEventType   Type;             //!< event type
74
+    double        Time;             //!< time in seconds when event was registered
75
+    double        PointX;           //!< mouse cursor point defined relative to window from top-left (0,0) to the bottom-right (1,1)
76
+    double        PointY;
77
+    int           StepsX;           //!< discrete steps for horizontal scroll
78
+    int           StepsY;           //!< discrete steps for vertical   scroll
79
+    float         DeltaX;           //!< precise  delta for horizontal scroll
80
+    float         DeltaY;           //!< precise  delta for vertical   scroll
81
+    bool          IsFromMultiTouch; //!< when true, scrolling is simulated from multi-touch gesture by system (OS X) and touches will come in parallel
82
+
83
+};
84
+
85
+/**
86
+ * Touch event.
87
+ */
88
+struct StTouchEvent {
89
+
90
+    StEventType   Type;      //!< event type
91
+    double        Time;      //!< time in seconds when event was registered
92
+    int           NbTouches; //!< active number of touches (including currently pressing/releasing)
93
+    StTouch       Touches[ST_MAX_TOUCHES];
94
+
95
+    /**
96
+     * Find the touch with specified id.
97
+     */
98
+    StTouch findTouchById(size_t theId) const {
99
+        if(theId == ST_TOUCH_INVALID_ID) {
100
+            return StTouch::Empty();
101
+        }
102
+
103
+        for(int aTouchIter = 0; aTouchIter < NbTouches; ++aTouchIter) {
104
+            if(Touches[aTouchIter].Id == theId) {
105
+                return Touches[aTouchIter];
106
+            }
107
+        }
108
+        return StTouch::Empty();
109
+    }
110
+
111
+    /**
112
+     * Add new touch only if not already exists.
113
+     */
114
+    bool addTouch(const StTouch& theTouch) {
115
+        if(theTouch.Id == ST_TOUCH_INVALID_ID) {
116
+            return false;
117
+        }
118
+
119
+        for(int aTouchIter = 0; aTouchIter < NbTouches; ++aTouchIter) {
120
+            if(Touches[aTouchIter].Id == theTouch.Id) {
121
+                return false;
122
+            }
123
+        }
124
+        if(NbTouches >= ST_MAX_TOUCHES) {
125
+            return false;
126
+        }
127
+        Touches[NbTouches++] = theTouch;
128
+        return true;
129
+    }
130
+
131
+    /**
132
+     * Reset the touch list.
133
+     */
134
+    void clearTouches() {
135
+        NbTouches = 0;
136
+        for(int aTouchIter = 0; aTouchIter < ST_MAX_TOUCHES; ++aTouchIter) {
137
+            Touches[aTouchIter] = StTouch::Empty();
138
+        }
139
+    }
140
+
141
+};
142
+
143
+/**
144
+ * Gesture event.
145
+ */
146
+struct StGestureEvent {
147
+
148
+    StEventType   Type;      //!< event type
149
+    double        Time;      //!< time in seconds when event was registered
150
+    float         Point1X;   //!< anchor point 1
151
+    float         Point1Y;
152
+    float         Point2X;   //!< anchor point 2
153
+    float         Point2Y;
154
+    float         Value;     //!< gesture value
155
+    bool          OnScreen;  //!< gesture comes from touchscreen
156
+
157
+    /**
158
+     * Reset the gesture.
159
+     */
160
+    void clearGesture() {
161
+        Point1X  = 0.0f;
162
+        Point1Y  = 0.0f;
163
+        Point2X  = 0.0f;
164
+        Point2Y  = 0.0f;
165
+        Value    = 0.0f;
166
+        OnScreen = false;
167
+    }
168
+
169
+};
170
+
171
+/**
172
  * File Drag & Drop event.
173
  */
174
 struct StDNDropEvent {
175
@@ -150,16 +303,19 @@
176
  */
177
 union StEvent {
178
 
179
-    StEventType   Type;     //!< event type
180
-    StAnyEvent    Base;     //!< fields shared between all event
181
-    StCloseEvent  Close;    //!< window close  event
182
-    StPauseEvent  Pause;    //!< window pause  event
183
-    StSizeEvent   Size;     //!< window resize event
184
-    StKeyEvent    Key;      //!< keyboard key down/up event
185
-    StClickEvent  Button;   //!< mouse button down/up event
186
-    StDNDropEvent DNDrop;   //!< file Drag & Drop event
187
-    StNavigEvent  Navigate; //!< navigation event
188
-    StActionEvent Action;   //!< queued application action event
189
+    StEventType    Type;     //!< event type
190
+    StAnyEvent     Base;     //!< fields shared between all event
191
+    StCloseEvent   Close;    //!< window close  event
192
+    StPauseEvent   Pause;    //!< window pause  event
193
+    StSizeEvent    Size;     //!< window resize event
194
+    StKeyEvent     Key;      //!< keyboard key down/up event
195
+    StClickEvent   Button;   //!< mouse button down/up event
196
+    StTouchEvent   Touch;    //!< multi-touch event
197
+    StGestureEvent Gesture;  //!< gesture event
198
+    StScrollEvent  Scroll;   //!< scrolling event
199
+    StDNDropEvent  DNDrop;   //!< file Drag & Drop event
200
+    StNavigEvent   Navigate; //!< navigation event
201
+    StActionEvent  Action;   //!< queued application action event
202
 
203
 };
204
 
205
sview-15_11.tar.gz/include/StCore/StVirtualKeys.h -> sview-16_06.tar.gz/include/StCore/StVirtualKeys.h Changed
29
 
1
@@ -12,20 +12,22 @@
2
 
3
 #include <StStrings/StString.h>
4
 
5
+/**
6
+ * Mouse button.
7
+ */
8
 enum StVirtButton {
9
     ST_NOMOUSE = 0,
10
     ST_MOUSE_LEFT = 1,
11
     ST_MOUSE_RIGHT = 2,
12
     ST_MOUSE_MIDDLE = 3,
13
-    ST_MOUSE_SCROLL_V_UP = 4, // vertical scroll
14
-    ST_MOUSE_SCROLL_V_DOWN = 5,
15
     ST_MOUSE_X1, // win
16
     ST_MOUSE_X2,
17
-    ST_MOUSE_SCROLL_LEFT,     // horizontal scroll
18
-    ST_MOUSE_SCROLL_RIGHT,
19
-    ST_MOUSE_MAX_ID = ST_MOUSE_SCROLL_RIGHT,
20
+    ST_MOUSE_MAX_ID = ST_MOUSE_X2,
21
 };
22
 
23
+/**
24
+ * Key modifier.
25
+ */
26
 enum StVirtFlags {
27
     ST_VF_NONE     = 0,
28
     // we reserve first 8 bits to combine value with StVirtKey
29
sview-15_11.tar.gz/include/StCore/StWindow.h -> sview-16_06.tar.gz/include/StCore/StWindow.h Changed
47
 
1
@@ -355,6 +355,11 @@
2
         public: //! @name renderer properties
3
 
4
     /**
5
+     * Handle language change (update strings).
6
+     */
7
+    ST_CPPEXPORT virtual void doChangeLanguage();
8
+
9
+    /**
10
      * Renderer about string.
11
      */
12
     ST_CPPEXPORT virtual StString getRendererAbout() const;
13
@@ -417,6 +422,11 @@
14
     ST_CPPEXPORT const StString& getStatistics() const;
15
 
16
     /**
17
+     * Turn hardware stereo on/off, when appropriate API is available.
18
+     */
19
+    ST_CPPEXPORT virtual void setHardwareStereoOn(const bool theToEnable);
20
+
21
+    /**
22
      * Return true if device has orientation sensor.
23
      */
24
     ST_CPPEXPORT virtual bool hasOrientationSensor() const;
25
@@ -492,6 +502,9 @@
26
         StSignal<void (const StKeyEvent&    )> onKeyHold;
27
         StSignal<void (const StClickEvent&  )> onMouseUp;
28
         StSignal<void (const StClickEvent&  )> onMouseDown;
29
+        StSignal<void (const StTouchEvent&  )> onTouch;
30
+        StSignal<void (const StGestureEvent&)> onGesture;
31
+        StSignal<void (const StScrollEvent& )> onScroll;
32
         StSignal<void (const StDNDropEvent& )> onFileDrop;
33
         StSignal<void (const StNavigEvent&  )> onNavigate;
34
         StSignal<void (const StActionEvent& )> onAction;
35
@@ -560,8 +573,11 @@
36
      */
37
     ST_CPPEXPORT StRectI_t defaultRect(const StMonitor* theMon = NULL) const;
38
 
39
+        public:
40
+
41
     ST_CPPEXPORT void* getNativeOglWin() const;
42
     ST_CPPEXPORT void* getNativeOglDC()  const;
43
+    ST_CPPEXPORT void* getNativeOglRC()  const;
44
 
45
         private: //! @name private fields
46
 
47
sview-15_11.tar.gz/include/StFT/StFTFont.h -> sview-16_06.tar.gz/include/StFT/StFTFont.h Changed
37
 
1
@@ -154,6 +154,20 @@
2
                            const StFTFont::Style theStyle);
3
 
4
     /**
5
+     * Load the font from data array.
6
+     * This array should NOT be released until font destruction!
7
+     * @param theFontName font name
8
+     * @param theFontData font data
9
+     * @param theDataLen  data length
10
+     * @param theStyle    the font style
11
+     * @return true on success
12
+     */
13
+    ST_CPPEXPORT bool loadInternal(const StString&       theFontName,
14
+                                   const unsigned char*  theFontData,
15
+                                   const int             theDataLen,
16
+                                   const StFTFont::Style theStyle);
17
+
18
+    /**
19
      * Re-initialize the font.
20
      * @param thePointSize  the face size in points (1/72 inch)
21
      * @param theResolution the resolution of the target device
22
@@ -325,6 +339,14 @@
23
      */
24
     ST_CPPEXPORT bool loadGlyph(const stUtf32_t theUChar);
25
 
26
+        private:
27
+
28
+    /**
29
+     * Complete loading the face.
30
+     */
31
+    ST_LOCAL bool loadCharmap(const StString& theFontName,
32
+                              FT_Face&         theFace);
33
+
34
         protected:
35
 
36
     StHandle<StFTLibrary> myFTLib;               //!< handle to the FT library object
37
sview-15_11.tar.gz/include/StFile/StFileNode.h -> sview-16_06.tar.gz/include/StFile/StFileNode.h Changed
60
 
1
@@ -113,7 +113,7 @@
2
      *   C:\folder\file
3
      * @return true if DOS path syntax detected.
4
      */
5
-    static bool isDosPath(const StCString& thePath) {
6
+    ST_LOCAL static bool isDosPath(const StCString& thePath) {
7
         return thePath[0] != stUtf32_t('\0') && thePath[1] == stUtf32_t(':');
8
     }
9
 
10
@@ -124,7 +124,7 @@
11
      *   \\?\D:\very long path
12
      * @return true if extended-length NT path syntax detected.
13
      */
14
-    static bool isNtExtendedPath(const StCString& thePath) {
15
+    ST_LOCAL static bool isNtExtendedPath(const StCString& thePath) {
16
         return thePath.isStartsWith(stCString("\\\\?\\"));
17
     }
18
 
19
@@ -134,7 +134,7 @@
20
      *   \\sever\share\file
21
      * @return true if UNC path syntax detected.
22
      */
23
-    static bool isUncPath(const StCString& thePath) {
24
+    ST_LOCAL static bool isUncPath(const StCString& thePath) {
25
         return thePath.isStartsWith(stCString("\\\\"));
26
     }
27
 
28
@@ -144,7 +144,7 @@
29
      *   \\?\UNC\server\share
30
      * @return true if extended-length UNC path syntax detected.
31
      */
32
-    static bool isUncExtendedPath(const StCString& thePath) {
33
+    ST_LOCAL static bool isUncExtendedPath(const StCString& thePath) {
34
         return thePath.isStartsWith(stCString("\\\\?\\UNC\\"));
35
     }
36
 
37
@@ -154,11 +154,21 @@
38
      *   /media/cdrom/file
39
      * @return true if UNIX path syntax detected.
40
      */
41
-    static bool isUnixPath(const StCString& thePath) {
42
+    ST_LOCAL static bool isUnixPath(const StCString& thePath) {
43
         return thePath[0] == stUtf32_t('/') && thePath[1] != stUtf32_t('/');
44
     }
45
 
46
     /**
47
+     * Detect special URLs on Android platform.
48
+     * Sample path:
49
+     *   content://filename
50
+     * @return true if content path syntax detected
51
+     */
52
+    ST_LOCAL static bool isContentProtocolPath(const StCString& thePath) {
53
+        return thePath.isStartsWith(stCString("content://"));
54
+    }
55
+
56
+    /**
57
      * Detect remote protocol path (http / ftp / ...).
58
      * Actually shouldn't be remote...
59
      * Sample path:
60
sview-15_11.tar.gz/include/StFile/StFolder.h -> sview-16_06.tar.gz/include/StFile/StFolder.h Changed
10
 
1
@@ -28,7 +28,7 @@
2
     /**
3
      * Override implementation to return TRUE.
4
      */
5
-    ST_CPPEXPORT virtual bool isFolder() const;
6
+    ST_CPPEXPORT virtual bool isFolder() const ST_ATTR_OVERRIDE;
7
 
8
     /**
9
      * Empty constructor.
10
sview-15_11.tar.gz/include/StFile/StRawFile.h -> sview-16_06.tar.gz/include/StFile/StRawFile.h Changed
39
 
1
@@ -82,9 +82,13 @@
2
 
3
     /**
4
      * Open the file handle for read or write operation.
5
+     * @param theFlags    read/write flags
6
+     * @param theFilePath file path to open (when empty, the path specified in constructor will be used)
7
+     * @param theOpenedFd when specified, already opened file descriptor will be used; passed descriptor will be automatically closed
8
      */
9
     ST_CPPEXPORT bool openFile(StRawFile::ReadWrite theFlags,
10
-                               const StCString&     theFilePath = stCString(""));
11
+                               const StCString&     theFilePath = stCString(""),
12
+                               const int            theOpenedFd = -1);
13
 
14
     /**
15
      * Close file handle
16
@@ -113,16 +117,20 @@
17
     /**
18
      * Fill the buffer with file content.
19
      * @param theFilePath the file path
20
+     * @param theOpenedFd when specified, already opened file descriptor will be used; passed descriptor will be automatically closed
21
      * @return true if file was read
22
      */
23
-    ST_CPPEXPORT virtual bool readFile(const StCString& theFilePath = stCString(""));
24
+    ST_CPPEXPORT virtual bool readFile(const StCString& theFilePath = stCString(""),
25
+                                       const int        theOpenedFd = -1);
26
 
27
     /**
28
      * Write the buffer into the file.
29
      * @param theFilePath the file path
30
+     * @param theOpenedFd when specified, already opened file descriptor will be used; passed descriptor will be automatically closed
31
      * @return true if file was stored
32
      */
33
-    ST_CPPEXPORT bool saveFile(const StCString& theFilePath = stCString(""));
34
+    ST_CPPEXPORT bool saveFile(const StCString& theFilePath = stCString(""),
35
+                               const int        theOpenedFd = -1);
36
 
37
     /**
38
      * Read the text file and return it as a string.
39
sview-15_11.tar.gz/include/StGL/StGLContext.h -> sview-16_06.tar.gz/include/StGL/StGLContext.h Changed
101
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2012-2014 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2012-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -12,6 +12,7 @@
9
 #include <StTemplates/StHandle.h>
10
 #include <StTemplates/StRect.h>
11
 
12
+#include <StGL/StGLDeviceCaps.h>
13
 #include <StGL/StGLVec.h>
14
 
15
 #include <StStrings/StMsgQueue.h>
16
@@ -98,6 +99,13 @@
17
 
18
         public:
19
 
20
+    enum GlVendor {
21
+        GlVendor_UNKNOWN,
22
+        GlVendor_NVIDIA,
23
+        GlVendor_AMD,
24
+        GlVendor_Intel
25
+    };
26
+
27
     enum GPU_Name {
28
         GPU_UNKNOWN,
29
         GPU_GEFORCE,
30
@@ -222,28 +230,38 @@
31
     /**
32
      * @return true if detected GL version is greater or equal to requested one.
33
      */
34
-    inline bool isGlGreaterEqual(const GLint theMajor,
35
-                                 const GLint theMinor) {
36
+    ST_LOCAL bool isGlGreaterEqual(const GLint theMajor,
37
+                                   const GLint theMinor) const {
38
         return (myVerMajor >  theMajor)
39
             || (myVerMajor == theMajor && myVerMinor >= theMinor);
40
     }
41
 
42
-    inline GLint getVersionMajor() const {
43
+    /**
44
+     * Return capabilities of currently active device.
45
+     */
46
+    ST_LOCAL StGLDeviceCaps getDeviceCaps() const {
47
+        StGLDeviceCaps aCaps;
48
+        aCaps.maxTexDim = myMaxTexDim;
49
+        aCaps.hasUnpack = hasUnpack;
50
+        return aCaps;
51
+    }
52
+
53
+    ST_LOCAL GLint getVersionMajor() const {
54
         return myVerMajor;
55
     }
56
 
57
-    inline GLint getVersionMinor() const {
58
+    ST_LOCAL GLint getVersionMinor() const {
59
         return myVerMinor;
60
     }
61
 
62
-    inline GPU_Name getGPUName() const {
63
+    ST_LOCAL GPU_Name getGPUName() const {
64
         return myGpuName;
65
     }
66
 
67
     /**
68
      * @return value for GL_MAX_TEXTURE_SIZE.
69
      */
70
-    inline GLint getMaxTextureSize() const {
71
+    ST_LOCAL GLint getMaxTextureSize() const {
72
         return myMaxTexDim;
73
     }
74
 
75
@@ -288,6 +306,17 @@
76
     }
77
 
78
     /**
79
+     * @return true if scissor test was activated
80
+     */
81
+    ST_LOCAL bool stglScissorRect(StGLBoxPx& theRect) const {
82
+        if(myScissorStack.empty()) {
83
+            return false;
84
+        }
85
+        theRect = myScissorStack.top();
86
+        return true;
87
+    }
88
+
89
+    /**
90
      * Setup viewport.
91
      */
92
     ST_CPPEXPORT void stglResizeViewport(const StGLBoxPx& theRect);
93
@@ -410,6 +439,7 @@
94
     StHandle<StResourceManager>
95
                             myResMgr;             //!< file resources manager
96
     StHandle<StMsgQueue>    myMsgQueue;           //!< messages queue
97
+    GlVendor                myGlVendor;           //!< driver vendor
98
     GPU_Name                myGpuName;            //!< GPU name
99
     GLint                   myVerMajor;           //!< cached GL version major number
100
     GLint                   myVerMinor;           //!< cached GL version minor number
101
sview-16_06.tar.gz/include/StGL/StGLDeviceCaps.h Added
37
 
1
@@ -0,0 +1,35 @@
2
+/**
3
+ * Copyright © 2016 Kirill Gavrilov <kirill@sview.ru>
4
+ *
5
+ * Distributed under the Boost Software License, Version 1.0.
6
+ * See accompanying file license-boost.txt or copy at
7
+ * http://www.boost.org/LICENSE_1_0.txt
8
+ */
9
+
10
+#ifndef __StGLDeviceCaps_h_
11
+#define __StGLDeviceCaps_h_
12
+
13
+#include <stTypes.h>
14
+
15
+/**
16
+ * Structure defining OpenGL device capabilities
17
+ * which can be considered within data preparation.
18
+ */
19
+struct StGLDeviceCaps {
20
+    /**
21
+     * Texture size limits.
22
+     */
23
+    int maxTexDim;
24
+
25
+    /**
26
+     * Device support data transferring with row unpack size specified.
27
+     */
28
+    bool hasUnpack;
29
+
30
+    /**
31
+     * Empty constructor.
32
+     */
33
+    ST_LOCAL StGLDeviceCaps() : maxTexDim(0), hasUnpack(true) {}
34
+};
35
+
36
+#endif // __StGLDeviceCaps_h_
37
sview-15_11.tar.gz/include/StGL/StGLFont.h -> sview-16_06.tar.gz/include/StGL/StGLFont.h Changed
10
 
1
@@ -36,7 +36,7 @@
2
     /**
3
      * Release GL resources.
4
      */
5
-    ST_CPPEXPORT virtual void release(StGLContext& theCtx);
6
+    ST_CPPEXPORT virtual void release(StGLContext& theCtx) ST_ATTR_OVERRIDE;
7
 
8
     /**
9
      * @return textured font instance of specified Unicode subset
10
sview-15_11.tar.gz/include/StGL/StGLFontEntry.h -> sview-16_06.tar.gz/include/StGL/StGLFontEntry.h Changed
10
 
1
@@ -61,7 +61,7 @@
2
     /**
3
      * Release GL resources.
4
      */
5
-    ST_CPPEXPORT virtual void release(StGLContext& theCtx);
6
+    ST_CPPEXPORT virtual void release(StGLContext& theCtx) ST_ATTR_OVERRIDE;
7
 
8
     /**
9
      * @return FreeType font instance specified on construction.
10
sview-15_11.tar.gz/include/StGL/StGLFontManager.h -> sview-16_06.tar.gz/include/StGL/StGLFontManager.h Changed
29
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2013 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2013-2015 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -62,7 +62,7 @@
9
     /**
10
      * Release GL resources.
11
      */
12
-    ST_CPPEXPORT virtual void release(StGLContext& theCtx);
13
+    ST_CPPEXPORT virtual void release(StGLContext& theCtx) ST_ATTR_OVERRIDE;
14
 
15
     /**
16
      * @return resolution
17
@@ -95,6 +95,11 @@
18
                                                     unsigned int    theSize);
19
 
20
     /**
21
+     * Find fallback font for specified size, and create it if not already created.
22
+     */
23
+    ST_CPPEXPORT StHandle<StGLFontEntry> findCreateFallback(unsigned int theSize);
24
+
25
+    /**
26
      * @return handle to the FT library object
27
      */
28
     ST_LOCAL const StHandle<StFTLibrary>& getLibraty() const {
29
sview-15_11.tar.gz/include/StGL/StGLFrameBuffer.h -> sview-16_06.tar.gz/include/StGL/StGLFrameBuffer.h Changed
10
 
1
@@ -36,7 +36,7 @@
2
     /**
3
      * Release OpenGL objects related to this FBO.
4
      */
5
-    ST_CPPEXPORT virtual void release(StGLContext& theCtx);
6
+    ST_CPPEXPORT virtual void release(StGLContext& theCtx) ST_ATTR_OVERRIDE;
7
 
8
     /**
9
      * Returns true if FBO was initialized.
10
sview-15_11.tar.gz/include/StGL/StGLFunctions.h -> sview-16_06.tar.gz/include/StGL/StGLFunctions.h Changed
9
 
1
@@ -51,6 +51,7 @@
2
     #define GL_PACK_ROW_LENGTH    0x0D02
3
     #define GL_PACK_SKIP_ROWS     0x0D03
4
     #define GL_PACK_SKIP_PIXELS   0x0D04
5
+    #define GL_DEPTH24_STENCIL8   0x88F0
6
 
7
     // in core since OpenGL ES 3.0, extension GL_EXT_texture_rg
8
     #define GL_RED   0x1903
9
sview-15_11.tar.gz/include/StGL/StGLProgram.h -> sview-16_06.tar.gz/include/StGL/StGLProgram.h Changed
10
 
1
@@ -44,7 +44,7 @@
2
      * All attached shaders will be automatically detached
3
      * thus you should just delete shaders to clean up its memory.
4
      */
5
-    ST_CPPEXPORT virtual void release(StGLContext& theCtx);
6
+    ST_CPPEXPORT virtual void release(StGLContext& theCtx) ST_ATTR_OVERRIDE;
7
 
8
     /**
9
      * @return true if program object is valid.
10
sview-15_11.tar.gz/include/StGL/StGLShader.h -> sview-16_06.tar.gz/include/StGL/StGLShader.h Changed
10
 
1
@@ -33,7 +33,7 @@
2
      * Delete shader object and invalidate its id.
3
      * You should detach this shader from all programs before deleting!
4
      */
5
-    ST_CPPEXPORT virtual void release(StGLContext& theCtx);
6
+    ST_CPPEXPORT virtual void release(StGLContext& theCtx) ST_ATTR_OVERRIDE;
7
 
8
     /**
9
      * Implementations should define this method to return:
10
sview-15_11.tar.gz/include/StGL/StGLTexture.h -> sview-16_06.tar.gz/include/StGL/StGLTexture.h Changed
10
 
1
@@ -68,7 +68,7 @@
2
     /**
3
      * Release GL resource.
4
      */
5
-    ST_CPPEXPORT virtual void release(StGLContext& theCtx);
6
+    ST_CPPEXPORT virtual void release(StGLContext& theCtx) ST_ATTR_OVERRIDE;
7
 
8
     bool operator==(const StGLTexture& theOther) const {
9
        return myTextureId == theOther.myTextureId;
10
sview-15_11.tar.gz/include/StGL/StGLVertexBuffer.h -> sview-16_06.tar.gz/include/StGL/StGLVertexBuffer.h Changed
19
 
1
@@ -45,7 +45,7 @@
2
     /**
3
      * Release GL resource.
4
      */
5
-    ST_CPPEXPORT virtual void release(StGLContext& theCtx);
6
+    ST_CPPEXPORT virtual void release(StGLContext& theCtx) ST_ATTR_OVERRIDE;
7
 
8
     /**
9
      * @return true if this VBO has valid ID (was created but not necessary initialized with valid data!).
10
@@ -195,7 +195,7 @@
11
 
12
     ST_CPPEXPORT StGLIndexBuffer();
13
 
14
-    ST_CPPEXPORT virtual GLenum getTarget() const;
15
+    ST_CPPEXPORT virtual GLenum getTarget() const ST_ATTR_OVERRIDE;
16
 
17
     inline bool init(StGLContext&           theCtx,
18
                      const StArray<GLuint>& theArray) {
19
sview-15_11.tar.gz/include/StGL/StParams.h -> sview-16_06.tar.gz/include/StGL/StParams.h Changed
83
 
1
@@ -28,8 +28,6 @@
2
         //PANORAMA_CYLINDER, //!< cylindrical panorama
3
     };
4
 
5
-    static const int THE_SEP_STEP_PX = 2; //!< separation inc/dec step
6
-
7
     static StString GET_VIEW_MODE_NAME(ViewMode theViewMode) {
8
         switch(theViewMode) {
9
             case PANORAMA_CUBEMAP: return "cubemap";
10
@@ -106,6 +104,13 @@
11
     }
12
 
13
     /**
14
+     * Set horizontal separation in pixels.
15
+     */
16
+    void setSeparationDx(const GLint theValue) {
17
+        mySepDxPx = theValue - mySepDxZeroPx;
18
+    }
19
+
20
+    /**
21
      * Setup neutral point.
22
      */
23
     void setSeparationNeutral(const GLint theSepDx = 0) {
24
@@ -121,6 +126,13 @@
25
     }
26
 
27
     /**
28
+     * Set vertical separation in pixels.
29
+     */
30
+    void setSeparationDy(const GLint theValue) {
31
+        mySepDyPx = theValue;
32
+    }
33
+
34
+    /**
35
      * @return angular separation between views in degrees.
36
      */
37
     GLfloat getSepRotation() const {
38
@@ -128,6 +140,13 @@
39
     }
40
 
41
     /**
42
+     * @return angular separation between views in degrees.
43
+     */
44
+    void setSepRotation(GLfloat theValue) {
45
+        mySepRotDegrees = theValue;
46
+    }
47
+
48
+    /**
49
      * @return rotation angle in degrees.
50
      */
51
     GLfloat getXRotate() const {
52
@@ -197,30 +216,6 @@
53
         ScaleFactor = stMax(ScaleFactor / (1.0f + theDuration), 0.05f);
54
     }
55
 
56
-    void incSeparationDx() {
57
-        mySepDxPx += THE_SEP_STEP_PX;
58
-    }
59
-
60
-    void decSeparationDx() {
61
-        mySepDxPx -= THE_SEP_STEP_PX;
62
-    }
63
-
64
-    void incSeparationDy() {
65
-        mySepDyPx += THE_SEP_STEP_PX;
66
-    }
67
-
68
-    void decSeparationDy() {
69
-        mySepDyPx -= THE_SEP_STEP_PX;
70
-    }
71
-
72
-    void incSepRotation(const GLfloat theDuration = 0.02f) {
73
-        mySepRotDegrees += 5.0f * theDuration;
74
-    }
75
-
76
-    void decSepRotation(const GLfloat theDuration = 0.02f) {
77
-        mySepRotDegrees -= 5.0f * theDuration;
78
-    }
79
-
80
     /**
81
      * Help method used in StGLImageRegion to fit image into rectangle.
82
      */
83
sview-15_11.tar.gz/include/StGLMesh/StGLCircle.h -> sview-16_06.tar.gz/include/StGLMesh/StGLCircle.h Changed
10
 
1
@@ -36,7 +36,7 @@
2
     /**
3
      * Compute the mesh using current configuration.
4
      */
5
-    ST_CPPEXPORT virtual bool computeMesh();
6
+    ST_CPPEXPORT virtual bool computeMesh() ST_ATTR_OVERRIDE;
7
 
8
     /**
9
      * Initialize the colors array with one specified color.
10
sview-15_11.tar.gz/include/StGLMesh/StGLMesh.h -> sview-16_06.tar.gz/include/StGLMesh/StGLMesh.h Changed
10
 
1
@@ -111,7 +111,7 @@
2
     /**
3
      * Invalidate current mesh buffers.
4
      */
5
-    ST_CPPEXPORT virtual void release(StGLContext& theCtx);
6
+    ST_CPPEXPORT virtual void release(StGLContext& theCtx) ST_ATTR_OVERRIDE;
7
 
8
     /**
9
      * Compute the mesh (in RAM) for this object.
10
sview-15_11.tar.gz/include/StGLMesh/StGLUVSphere.h -> sview-16_06.tar.gz/include/StGLMesh/StGLUVSphere.h Changed
18
 
1
@@ -39,14 +39,14 @@
2
     /**
3
      * Compute the mesh using current configuration.
4
      */
5
-    ST_CPPEXPORT virtual bool computeMesh();
6
+    ST_CPPEXPORT virtual bool computeMesh() ST_ATTR_OVERRIDE;
7
 
8
         protected:
9
 
10
     /**
11
      * Draw the primitives itself.
12
      */
13
-    ST_CPPEXPORT virtual void drawKernel(StGLContext& theCtx) const;
14
+    ST_CPPEXPORT virtual void drawKernel(StGLContext& theCtx) const ST_ATTR_OVERRIDE;
15
 
16
         private:
17
 
18
sview-15_11.tar.gz/include/StGLStereo/StGLProjCamera.h -> sview-16_06.tar.gz/include/StGLStereo/StGLProjCamera.h Changed
24
 
1
@@ -195,11 +195,18 @@
2
     }
3
 
4
     /**
5
-     * Update GL viewport and recompute projection matrix.
6
+     * Recompute projection matrix.
7
      */
8
-    ST_CPPEXPORT void resize(StGLContext&  theCtx,
9
-                             const GLsizei theSizeX,
10
-                             const GLsizei theSizeY);
11
+    ST_CPPEXPORT void resize(const GLfloat theAspect);
12
+
13
+    /**
14
+     * Recompute projection matrix.
15
+     */
16
+    ST_LOCAL void resize(const GLsizei theSizeX,
17
+                         const GLsizei theSizeY) {
18
+        const GLsizei aSizeY = (theSizeY > 0) ? theSizeY : 1;
19
+        resize(GLfloat(theSizeX) / GLfloat(aSizeY));
20
+    }
21
 
22
     /**
23
      * Setup projection frustum.
24
sview-15_11.tar.gz/include/StGLStereo/StGLQuadTexture.h -> sview-16_06.tar.gz/include/StGLStereo/StGLQuadTexture.h Changed
28
 
1
@@ -70,7 +70,7 @@
2
     /**
3
      * Release OpenGL texture objects.
4
      */
5
-    ST_CPPEXPORT virtual void release(StGLContext& theCtx);
6
+    ST_CPPEXPORT virtual void release(StGLContext& theCtx) ST_ATTR_OVERRIDE;
7
 
8
     inline StHandle<StStereoParams> getSource() const {
9
         return myParams;
10
@@ -119,7 +119,7 @@
11
      * Access to texture plane using id.
12
      */
13
     inline StGLFrameTexture& getPlane(size_t thePlaneId = 0) {
14
-        ST_DEBUG_ASSERT(thePlaneId < 4);
15
+        ST_ASSERT(thePlaneId < 4, "StGLFrameTextures::getPlane() - out of range access");
16
         return myTextures[thePlaneId];
17
     }
18
 
19
@@ -201,7 +201,7 @@
20
     /**
21
      * Release OpenGL texture objects.
22
      */
23
-    ST_CPPEXPORT virtual void release(StGLContext& theCtx);
24
+    ST_CPPEXPORT virtual void release(StGLContext& theCtx) ST_ATTR_OVERRIDE;
25
 
26
     /**
27
      * @return texture (StGLFrameTextures& ) - texture from front pair (for rendering).
28
sview-15_11.tar.gz/include/StGLStereo/StGLStereoFrameBuffer.h -> sview-16_06.tar.gz/include/StGLStereo/StGLStereoFrameBuffer.h Changed
19
 
1
@@ -51,7 +51,7 @@
2
             return atrVTexCoordLoc;
3
         }
4
 
5
-        ST_CPPEXPORT virtual bool link(StGLContext& theCtx);
6
+        ST_CPPEXPORT virtual bool link(StGLContext& theCtx) ST_ATTR_OVERRIDE;
7
 
8
     };
9
 
10
@@ -77,7 +77,7 @@
11
     /**
12
      * Release OpenGL objects related to this FBO.
13
      */
14
-    ST_CPPEXPORT virtual void release(StGLContext& theCtx);
15
+    ST_CPPEXPORT virtual void release(StGLContext& theCtx) ST_ATTR_OVERRIDE;
16
 
17
     inline const StGLVertexBuffer& getQuadVertices() const {
18
         return myVerticesBuf;
19
sview-15_11.tar.gz/include/StGLStereo/StGLTextureData.h -> sview-16_06.tar.gz/include/StGLStereo/StGLTextureData.h Changed
34
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -11,6 +11,7 @@
9
 
10
 #include <StImage/StImage.h>
11
 #include <StGLStereo/StGLQuadTexture.h>
12
+#include <StGL/StGLDeviceCaps.h>
13
 
14
 /**
15
  * This class represents stereo data for textures
16
@@ -121,6 +122,7 @@
17
 
18
     /**
19
      * Setup new data.
20
+     * @param theDevCaps  device capabilities
21
      * @param theDataL    frame which contains left view or left+right views
22
      * @param theDataR    frame which contains right view (optional)
23
      * @param theStParams handle to associated data
24
@@ -128,7 +130,8 @@
25
      * @param theCubemap  cubemap format
26
      * @param thePts      presentation timestamp
27
      */
28
-    ST_CPPEXPORT void updateData(const StImage&                  theDataL,
29
+    ST_CPPEXPORT void updateData(const StGLDeviceCaps&           theDevCaps,
30
+                                 const StImage&                  theDataL,
31
                                  const StImage&                  theDataR,
32
                                  const StHandle<StStereoParams>& theStParams,
33
                                  const StFormat                  theFormat,
34
sview-15_11.tar.gz/include/StGLStereo/StGLTextureQueue.h -> sview-16_06.tar.gz/include/StGLStereo/StGLTextureQueue.h Changed
125
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -13,6 +13,8 @@
9
 #include <StThreads/StFPSMeter.h>
10
 #include <StThreads/StMutex.h>
11
 
12
+#include <StGL/StGLDeviceCaps.h>
13
+
14
 #include "StGLQuadTexture.h"
15
 #include "StGLTextureData.h"
16
 
17
@@ -40,23 +42,32 @@
18
     ST_CPPEXPORT ~StGLTextureQueue();
19
 
20
     /**
21
+     * Set device capabilities.
22
+     */
23
+    ST_LOCAL void setDeviceCaps(const StGLDeviceCaps& theCaps) {
24
+        myMutexPush.lock();
25
+        myDeviceCaps = theCaps;
26
+        myMutexPush.unlock();
27
+    }
28
+
29
+    /**
30
      * @return quad texture
31
      */
32
-    inline StGLQuadTexture& getQTexture() {
33
+    ST_LOCAL StGLQuadTexture& getQTexture() {
34
         return myQTexture;
35
     }
36
 
37
     /**
38
      * @return input stream connection state
39
      */
40
-    inline bool hasConnectedStream() const {
41
+    ST_LOCAL bool hasConnectedStream() const {
42
         return myHasStream || !isEmpty();
43
     }
44
 
45
     /**
46
      * Setup input stream connection state.
47
      */
48
-    inline void setConnectedStream(const bool theHasStream) {
49
+    ST_LOCAL void setConnectedStream(const bool theHasStream) {
50
         myHasStream = theHasStream;
51
     }
52
 
53
@@ -108,7 +119,7 @@
54
      */
55
     ST_CPPEXPORT bool stglUpdateStTextures(StGLContext& theCtx);
56
 
57
-    inline size_t getSize() const {
58
+    ST_LOCAL size_t getSize() const {
59
         myMutexSize.lock();
60
             const size_t aResult = myQueueSize;
61
         myMutexSize.unlock();
62
@@ -118,7 +129,7 @@
63
     /**
64
      * @return true if queue is EMPTY.
65
      */
66
-    inline bool isEmpty() const {
67
+    ST_LOCAL bool isEmpty() const {
68
         myMutexSize.lock();
69
             const bool aResult = (myQueueSize == 0);
70
         myMutexSize.unlock();
71
@@ -128,7 +139,7 @@
72
     /**
73
      * @return true if queue is FULL.
74
      */
75
-    inline bool isFull() const {
76
+    ST_LOCAL bool isFull() const {
77
         myMutexSize.lock();
78
             const bool aResult = ((myQueueSize + 1) == myQueueSizeMax);
79
         myMutexSize.unlock();
80
@@ -138,7 +149,7 @@
81
     /**
82
      * @return presentation timestamp of currently shown frame (or -1 if none).
83
      */
84
-    inline double getPTSCurr() const {
85
+    ST_LOCAL double getPTSCurr() const {
86
         myMutexSize.lock();
87
             const double aPts = (myHasStream || myQueueSize != 0)
88
                               ? myCurrPts : -1.0;
89
@@ -150,7 +161,7 @@
90
      * @param thePts - next (front) stereo frame PTS (presentation timestamp);
91
      * @return false if next PTS not available.
92
      */
93
-    inline bool popPTSNext(double& thePts) {
94
+    ST_LOCAL bool popPTSNext(double& thePts) {
95
         bool aRes = false;
96
         myMutexPop.lock();
97
         myMutexPush.lock();
98
@@ -173,7 +184,7 @@
99
      * @param theLimit - swap counter limit;
100
      * @return true if swap counter increased.
101
      */
102
-    inline bool stglSwapFB(const size_t theLimit) {
103
+    ST_LOCAL bool stglSwapFB(const size_t theLimit) {
104
         mySwapFBMutex.lock();
105
         if(theLimit == 0 || mySwapFBCount < theLimit) {
106
             ++mySwapFBCount;
107
@@ -204,7 +215,7 @@
108
      * Function used to get current showed source format.
109
      * At this moment function used just for stereo/mono recognizing.
110
      */
111
-    inline int getSrcFormat() {
112
+    ST_LOCAL int getSrcFormat() {
113
         myMutexSrcFormat.lock();
114
             // TODO (Kirill Gavrilov#4#) source format should be defined like front PTS to prevent early changes
115
             const int aSrcFrmt = myCurrSrcFormat;
116
@@ -264,6 +275,8 @@
117
     bool             myToCompress;     //!< release unused memory as fast as possible
118
     volatile bool    myHasStream;      //!< flag indicates that some stream connected to this queue
119
 
120
+    StGLDeviceCaps   myDeviceCaps;     //!< device capabilities
121
+
122
 };
123
 
124
 #endif //__StGLTextureQueue_h_
125
sview-15_11.tar.gz/include/StGLWidgets/StGLAssignHotKey.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLAssignHotKey.h Changed
10
 
1
@@ -55,7 +55,7 @@
2
     /**
3
      *
4
      */
5
-    ST_CPPEXPORT virtual bool doKeyDown(const StKeyEvent& theEvent);
6
+    ST_CPPEXPORT virtual bool doKeyDown(const StKeyEvent& theEvent) ST_ATTR_OVERRIDE;
7
 
8
         protected:
9
 
10
sview-15_11.tar.gz/include/StGLWidgets/StGLButton.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLButton.h Changed
13
 
1
@@ -26,9 +26,8 @@
2
 
3
     ST_CPPEXPORT virtual ~StGLButton();
4
 
5
-    ST_CPPEXPORT virtual bool stglInit();
6
-    ST_CPPEXPORT virtual bool tryClick  (const StPointD_t& theCursorZo, const int& theMouseBtn, bool& theIsItemClicked);
7
-    ST_CPPEXPORT virtual bool tryUnClick(const StPointD_t& theCursorZo, const int& theMouseBtn, bool& theIsItemUnclicked);
8
+    ST_CPPEXPORT virtual bool stglInit() ST_ATTR_OVERRIDE;
9
+    ST_CPPEXPORT virtual bool doScroll(const StScrollEvent& theEvent) ST_ATTR_OVERRIDE;
10
 
11
     /**
12
      * Change button text.
13
sview-15_11.tar.gz/include/StGLWidgets/StGLCheckbox.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLCheckbox.h Changed
14
 
1
@@ -34,9 +34,9 @@
2
 
3
     ST_CPPEXPORT virtual ~StGLCheckbox();
4
 
5
-    ST_CPPEXPORT virtual void stglResize();
6
-    ST_CPPEXPORT virtual bool stglInit();
7
-    ST_CPPEXPORT virtual void stglDraw(unsigned int view);
8
+    ST_CPPEXPORT virtual void stglResize() ST_ATTR_OVERRIDE;
9
+    ST_CPPEXPORT virtual bool stglInit() ST_ATTR_OVERRIDE;
10
+    ST_CPPEXPORT virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
11
 
12
         public:
13
 
14
sview-15_11.tar.gz/include/StGLWidgets/StGLCheckboxTextured.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLCheckboxTextured.h Changed
10
 
1
@@ -34,7 +34,7 @@
2
      * Destructor.
3
      */
4
     ST_CPPEXPORT virtual ~StGLCheckboxTextured();
5
-    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& theCursorZo);
6
+    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& theCursorZo) ST_ATTR_OVERRIDE;
7
 
8
     /**
9
      * Return tracked value.
10
sview-15_11.tar.gz/include/StGLWidgets/StGLImageProgram.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLImageProgram.h Changed
17
 
1
@@ -68,12 +68,15 @@
2
         FragToRgb_FromRgb = 0,
3
         FragToRgb_FromRgba,
4
         FragToRgb_FromGray,
5
+        FragToRgb_FromXyz,
6
         FragToRgb_FromYuvFull,
7
         FragToRgb_FromYuvMpeg,
8
         FragToRgb_FromYuv9Full,
9
         FragToRgb_FromYuv9Mpeg,
10
         FragToRgb_FromYuv10Full,
11
         FragToRgb_FromYuv10Mpeg,
12
+        FragToRgb_FromYuvNvFull,
13
+        FragToRgb_FromYuvNvMpeg,
14
         FragToRgb_CUBEMAP,
15
         //FragToRgb_NB = FragToRgb_CUBEMAP * 2
16
     };
17
sview-15_11.tar.gz/include/StGLWidgets/StGLImageRegion.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLImageRegion.h Changed
144
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StGLWidgets, small C++ toolkit for writing GUI using OpenGL.
4
- * Copyright © 2010-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2010-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -125,13 +125,16 @@
10
     }
11
 
12
     ST_CPPEXPORT virtual ~StGLImageRegion();
13
-    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& pointZo);
14
-    ST_CPPEXPORT virtual bool stglInit();
15
-    ST_CPPEXPORT virtual void stglDraw(unsigned int theView);
16
-    ST_CPPEXPORT virtual bool tryClick  (const StPointD_t& theCursorZo, const int& theMouseBtn, bool& isItemClicked);
17
-    ST_CPPEXPORT virtual bool tryUnClick(const StPointD_t& theCursorZo, const int& theMouseBtn, bool& isItemUnclicked);
18
-    ST_CPPEXPORT virtual bool doKeyDown (const StKeyEvent& theEvent);
19
-    ST_CPPEXPORT virtual bool doKeyUp   (const StKeyEvent& theEvent);
20
+    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& thePointZo) ST_ATTR_OVERRIDE;
21
+    ST_CPPEXPORT virtual bool stglInit() ST_ATTR_OVERRIDE;
22
+    ST_CPPEXPORT virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
23
+    ST_CPPEXPORT virtual bool tryClick  (const StClickEvent& theEvent, bool& theIsItemClicked)   ST_ATTR_OVERRIDE;
24
+    ST_CPPEXPORT virtual bool tryUnClick(const StClickEvent& theEvent, bool& theIsItemUnclicked) ST_ATTR_OVERRIDE;
25
+    ST_CPPEXPORT virtual bool doKeyDown (const StKeyEvent& theEvent) ST_ATTR_OVERRIDE;
26
+    ST_CPPEXPORT virtual bool doKeyUp   (const StKeyEvent& theEvent) ST_ATTR_OVERRIDE;
27
+    ST_CPPEXPORT virtual bool doScroll  (const StScrollEvent& theEvent) ST_ATTR_OVERRIDE;
28
+
29
+    ST_CPPEXPORT bool doGesture(const StGestureEvent& theEvent);
30
 
31
     /**
32
      * Auxiliary method to discard frames in the textures queue without bound OpenGL context.
33
@@ -142,42 +145,48 @@
34
 
35
     struct {
36
 
37
-        StHandle<StEnumParam>    displayMode;   //!< StGLImageRegion::DisplayMode    - display mode
38
-        StHandle<StInt32Param>   displayRatio;  //!< StGLImageRegion::DisplayRatio   - display ratio
39
-        StHandle<StBoolParam>    ToHealAnamorphicRatio; //!< correct aspect ratio for 1080p/720p anamorphic pairs
40
-        StHandle<StInt32Param>   textureFilter; //!< StGLImageProgram::TextureFilter - texture filter;
41
-        StHandle<StFloat32Param> gamma;         //!< gamma correction coefficient
42
-        StHandle<StFloat32Param> brightness;    //!< brightness level
43
-        StHandle<StFloat32Param> saturation;    //!< saturation value
44
+        StHandle<StEnumParam>         DisplayMode;           //!< StGLImageRegion::DisplayMode    - display mode
45
+        StHandle<StEnumParam>         DisplayRatio;          //!< StGLImageRegion::DisplayRatio   - display ratio
46
+        StHandle<StBoolParamNamed>    ToHealAnamorphicRatio; //!< correct aspect ratio for 1080p/720p anamorphic pairs
47
+        StHandle<StEnumParam>         TextureFilter;         //!< StGLImageProgram::TextureFilter - texture filter;
48
+        StHandle<StFloat32Param>      Gamma;                 //!< gamma correction coefficient
49
+        StHandle<StFloat32Param>      Brightness;            //!< brightness level
50
+        StHandle<StFloat32Param>      Saturation;            //!< saturation value
51
 
52
         // per file parameters
53
-        StHandle<StStereoParams> stereoFile;
54
-        StHandle<StBoolParam>    swapLR;        //!< reversion flag
55
-        StHandle<StInt32Param>   ViewMode;      //!< StStereoParams::ViewMode
56
+        StHandle<StStereoParams>      stereoFile;
57
+        StHandle<StBoolParamNamed>    SwapLR;                //!< reversion flag
58
+        StHandle<StInt32ParamNamed>   ViewMode;              //!< StStereoParams::ViewMode
59
+        StHandle<StFloat32Param>      SeparationDX;          //!< DX separation
60
+        StHandle<StFloat32Param>      SeparationDY;          //!< DY separation
61
+        StHandle<StFloat32Param>      SeparationRot;         //!< angle separation
62
 
63
     } params;
64
 
65
         private:
66
 
67
-    ST_LOCAL void doParamsReset(const size_t ) {
68
-        if(!params.stereoFile.isNull()) { params.stereoFile->reset(); }
69
-    }
70
+    /**
71
+     * Call bound callbacks bound to parameters.
72
+     */
73
+    ST_LOCAL void onParamsChanged();
74
+
75
+    ST_LOCAL void doParamsReset(const size_t );
76
 
77
     ST_LOCAL void doParamsGamma(const size_t theDir) {
78
         if(!params.stereoFile.isNull()) {
79
-            theDir == 1 ? params.gamma->increment() : params.gamma->decrement();
80
+            theDir == 1 ? params.Gamma->increment() : params.Gamma->decrement();
81
         }
82
     }
83
 
84
     ST_LOCAL void doParamsSepX(const size_t theDir) {
85
         if(!params.stereoFile.isNull()) {
86
-            theDir == 1 ? params.stereoFile->incSeparationDx() : params.stereoFile->decSeparationDx();
87
+            theDir == 1 ? params.SeparationDX->increment() : params.SeparationDX->decrement();
88
         }
89
     }
90
 
91
     ST_LOCAL void doParamsSepY(const size_t theDir) {
92
         if(!params.stereoFile.isNull()) {
93
-            theDir == 1 ? params.stereoFile->incSeparationDy() : params.stereoFile->decSeparationDy();
94
+            theDir == 1 ? params.SeparationDY->increment() : params.SeparationDY->decrement();
95
         }
96
     }
97
 
98
@@ -200,15 +209,13 @@
99
     }
100
 
101
     ST_LOCAL void doParamsSepZDec(const double theValue) {
102
-        if(!params.stereoFile.isNull()) {
103
-            params.stereoFile->decSepRotation((GLfloat )theValue);
104
-        }
105
+        float aValue = params.SeparationRot->getValue() - 5.0f * float(theValue);
106
+        params.SeparationRot->setValue(aValue);
107
     }
108
 
109
     ST_LOCAL void doParamsSepZInc(const double theValue) {
110
-        if(!params.stereoFile.isNull()) {
111
-            params.stereoFile->incSepRotation((GLfloat )theValue);
112
-        }
113
+        float aValue = params.SeparationRot->getValue() + 5.0f * float(theValue);
114
+        params.SeparationRot->setValue(aValue);
115
     }
116
 
117
     ST_LOCAL void doParamsModeNext(const size_t ) {
118
@@ -267,6 +274,9 @@
119
                                          const StPointD_t& theCursorZoTo);
120
     ST_LOCAL StGLVec2 getMouseMoveSphere();
121
 
122
+    ST_LOCAL void scaleAt(const StPointD_t& thePoint,
123
+                          const float       theStep);
124
+
125
     ST_LOCAL void doRightUnclick(const StPointD_t& theCursorZo);
126
 
127
     ST_LOCAL void stglDrawView(unsigned int theView);
128
@@ -278,6 +288,7 @@
129
 
130
     StGLQuads                  myQuad;           //!< flat quad
131
     StGLUVSphere               myUVSphere;       //!< sphere output helper class
132
+    StGLProjCamera             myProjCam;        //!< copy of projection camera
133
     StGLImageProgram           myProgram;        //!< GL program to draw flat image
134
     StHandle<StGLTextureQueue> myTextureQueue;   //!< shared texture queue
135
     StPointD_t                 myClickPntZo;     //!< remembered mouse click position
136
@@ -285,6 +296,7 @@
137
     StGLQuaternion             myDeviceQuat;     //!< device orientation
138
     StVirtFlags                myKeyFlags;       //!< active key flags
139
     double                     myDragDelayMs;    //!< dragging delay in milliseconds
140
+    float                      myRotAngle;       //!< rotation angle gesture progress
141
     bool                       myIsClickAborted;
142
     bool                       myToRightRotate;
143
     bool                       myIsInitialized;  //!< initialization state
144
sview-15_11.tar.gz/include/StGLWidgets/StGLMenu.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLMenu.h Changed
69
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StGLWidgets, small C++ toolkit for writing GUI using OpenGL.
4
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -15,7 +15,9 @@
10
 
11
 // forward declarations
12
 class StAction;
13
+class StEnumParam;
14
 class StBoolParam;
15
+class StBoolParamNamed;
16
 class StInt32Param;
17
 class StFloat32Param;
18
 class StGLMenuItem;
19
@@ -46,12 +48,13 @@
20
 
21
     ST_CPPEXPORT virtual ~StGLMenu();
22
 
23
-    ST_CPPEXPORT virtual void setOpacity(const float theOpacity, bool theToSetChildren);
24
-    ST_CPPEXPORT virtual void stglResize();
25
-    ST_CPPEXPORT virtual bool stglInit();
26
-    ST_CPPEXPORT virtual void stglDraw(unsigned int theView);
27
-    ST_CPPEXPORT virtual bool doKeyDown(const StKeyEvent& theEvent);
28
-    ST_CPPEXPORT virtual bool tryUnClick(const StPointD_t& theCursorZo, const int& theMouseBtn, bool& theIsItemUnclicked);
29
+    ST_CPPEXPORT virtual void setOpacity(const float theOpacity, bool theToSetChildren) ST_ATTR_OVERRIDE;
30
+    ST_CPPEXPORT virtual void stglResize() ST_ATTR_OVERRIDE;
31
+    ST_CPPEXPORT virtual bool stglInit() ST_ATTR_OVERRIDE;
32
+    ST_CPPEXPORT virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
33
+    ST_CPPEXPORT virtual bool doKeyDown(const StKeyEvent& theEvent) ST_ATTR_OVERRIDE;
34
+    ST_CPPEXPORT virtual bool doScroll(const StScrollEvent& theEvent) ST_ATTR_OVERRIDE;
35
+    ST_CPPEXPORT virtual bool tryUnClick(const StClickEvent& theEvent, bool& theIsItemUnclicked) ST_ATTR_OVERRIDE;
36
 
37
     inline bool isRootMenu() const {
38
         return myIsRootMenu;
39
@@ -161,6 +164,13 @@
40
                                        const StHandle<StBoolParam>& theTrackedValue);
41
 
42
     /**
43
+     * Append checkbox menu item.
44
+     * @param theTrackedValue tracked boolean value
45
+     * @return created menu item widget
46
+     */
47
+    ST_CPPEXPORT StGLMenuItem* addItem(const StHandle<StBoolParamNamed>& theTrackedValue);
48
+
49
+    /**
50
      * Append radio button menu item.
51
      * @param theLabel        menu item text
52
      * @param theTrackedValue tracked integer (enumeration) value
53
@@ -173,6 +183,15 @@
54
 
55
     /**
56
      * Append radio button menu item.
57
+     * @param theTrackedValue tracked integer (enumeration) value
58
+     * @param theOnValue      associated integer (enumeration) value for this radio button
59
+     * @return created menu item widget
60
+     */
61
+    ST_CPPEXPORT StGLMenuItem* addItem(const StHandle<StEnumParam>& theTrackedValue,
62
+                                       const int32_t                theOnValue);
63
+
64
+    /**
65
+     * Append radio button menu item.
66
      * @param theLabel        menu item text
67
      * @param theTrackedValue tracked float value
68
      * @param theOnValue      associated float value for this radio button
69
sview-15_11.tar.gz/include/StGLWidgets/StGLMenuItem.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLMenuItem.h Changed
29
 
1
@@ -46,12 +46,12 @@
2
 
3
     ST_CPPEXPORT virtual ~StGLMenuItem();
4
 
5
-    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& theCursorZo);
6
-    ST_CPPEXPORT virtual void stglResize();
7
-    ST_CPPEXPORT virtual bool stglInit();
8
-    ST_CPPEXPORT virtual void stglDraw(unsigned int view);
9
-    ST_CPPEXPORT virtual bool tryClick(const StPointD_t& theCursorZo, const int& theMouseBtn, bool& theIsItemClicked);
10
-    ST_CPPEXPORT virtual bool tryUnClick(const StPointD_t& theCursorZo, const int& theMouseBtn, bool& theIsItemUnclicked);
11
+    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& theCursorZo) ST_ATTR_OVERRIDE;
12
+    ST_CPPEXPORT virtual void stglResize() ST_ATTR_OVERRIDE;
13
+    ST_CPPEXPORT virtual bool stglInit() ST_ATTR_OVERRIDE;
14
+    ST_CPPEXPORT virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
15
+    ST_CPPEXPORT virtual bool tryClick  (const StClickEvent& theEvent, bool& theIsItemClicked)   ST_ATTR_OVERRIDE;
16
+    ST_CPPEXPORT virtual bool tryUnClick(const StClickEvent& theEvent, bool& theIsItemUnclicked) ST_ATTR_OVERRIDE;
17
 
18
     ST_LOCAL const int computeTextWidth() {
19
         int aWidth = 0, aHeight = 0;
20
@@ -183,7 +183,7 @@
21
         public:
22
 
23
     ST_CPPEXPORT StGLPassiveMenuItem(StGLMenu* theParent);
24
-    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& theCursorZo);
25
+    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& theCursorZo) ST_ATTR_OVERRIDE;
26
 
27
 };
28
 
29
sview-15_11.tar.gz/include/StGLWidgets/StGLMessageBox.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLMessageBox.h Changed
43
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StGLWidgets, small C++ toolkit for writing GUI using OpenGL.
4
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -11,7 +11,6 @@
10
 #define __StGLMessageBox_h_
11
 
12
 #include <StGLWidgets/StGLTextArea.h>
13
-#include <StGLWidgets/StGLMenuProgram.h>
14
 
15
 class StGLButton;
16
 class StGLScrollArea;
17
@@ -43,11 +42,12 @@
18
      * Destructor.
19
      */
20
     ST_CPPEXPORT virtual ~StGLMessageBox();
21
-    ST_CPPEXPORT virtual bool stglInit();
22
-    ST_CPPEXPORT virtual void stglResize();
23
-    ST_CPPEXPORT virtual void stglDraw(unsigned int theView);
24
-    ST_CPPEXPORT virtual bool tryClick(const StPointD_t& theCursorZo, const int& theMouseBtn, bool& isItemClicked);
25
-    ST_CPPEXPORT virtual bool tryUnClick(const StPointD_t& theCursorZo, const int& theMouseBtn, bool& isItemUnclicked);
26
+    ST_CPPEXPORT virtual bool stglInit() ST_ATTR_OVERRIDE;
27
+    ST_CPPEXPORT virtual void stglResize() ST_ATTR_OVERRIDE;
28
+    ST_CPPEXPORT virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
29
+    ST_CPPEXPORT virtual bool tryClick  (const StClickEvent& theEvent, bool& theIsItemClicked)   ST_ATTR_OVERRIDE;
30
+    ST_CPPEXPORT virtual bool tryUnClick(const StClickEvent& theEvent, bool& theIsItemUnclicked) ST_ATTR_OVERRIDE;
31
+    ST_CPPEXPORT virtual bool doScroll(const StScrollEvent& theEvent) ST_ATTR_OVERRIDE;
32
 
33
         public:
34
 
35
@@ -143,7 +143,6 @@
36
     StGLTextArea*     myTitle;        //!< window title
37
     StGLWidget*       myBtnPanel;     //!< panel for buttons
38
     StGLButton*       myDefaultBtn;   //!< default button to redirect Enter
39
-    StGLMenuProgram   myProgram;      //!< GLSL program
40
     StGLVertexBuffer  myVertexBuf;    //!< vertices VBO
41
     int               myButtonsNb;    //!< number of buttons added to this message box
42
 
43
sview-15_11.tar.gz/include/StGLWidgets/StGLMsgStack.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLMsgStack.h Changed
20
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StGLWidgets, small C++ toolkit for writing GUI using OpenGL.
4
- * Copyright © 2011-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2011-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -23,8 +23,8 @@
10
     ST_CPPEXPORT StGLMsgStack(StGLWidget*                 theParent,
11
                               const StHandle<StMsgQueue>& theMsgQueue);
12
     ST_CPPEXPORT virtual ~StGLMsgStack();
13
-    ST_CPPEXPORT virtual void stglResize();
14
-    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& thePointZo);
15
+    ST_CPPEXPORT virtual void stglResize() ST_ATTR_OVERRIDE;
16
+    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& thePointZo) ST_ATTR_OVERRIDE;
17
 
18
         private:
19
 
20
sview-15_11.tar.gz/include/StGLWidgets/StGLOpenFile.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLOpenFile.h Changed
13
 
1
@@ -88,9 +88,8 @@
2
     /**
3
      * Override unclick to open new folder.
4
      */
5
-    ST_CPPEXPORT virtual bool tryUnClick(const StPointD_t& theCursorZo,
6
-                                         const int&        theMouseBtn,
7
-                                         bool&             isItemUnclicked);
8
+    ST_CPPEXPORT virtual bool tryUnClick(const StClickEvent& theEvent,
9
+                                         bool&               theIsItemUnclicked) ST_ATTR_OVERRIDE;
10
 
11
         protected: //! @name class fields
12
 
13
sview-15_11.tar.gz/include/StGLWidgets/StGLPlayList.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLPlayList.h Changed
17
 
1
@@ -28,10 +28,11 @@
2
                               const StHandle<StPlayList>& theList);
3
 
4
     ST_CPPEXPORT virtual ~StGLPlayList();
5
-    ST_CPPEXPORT virtual bool stglInit();
6
-    ST_CPPEXPORT virtual void stglDraw(unsigned int theView);
7
-    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& theCursorZo);
8
-    ST_CPPEXPORT virtual void stglResize();
9
+    ST_CPPEXPORT virtual bool stglInit() ST_ATTR_OVERRIDE;
10
+    ST_CPPEXPORT virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
11
+    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& theCursorZo) ST_ATTR_OVERRIDE;
12
+    ST_CPPEXPORT virtual void stglResize() ST_ATTR_OVERRIDE;
13
+    ST_CPPEXPORT virtual bool doScroll(const StScrollEvent& theEvent) ST_ATTR_OVERRIDE;
14
 
15
     /**
16
      * Return margins for auto-fit functionality.
17
sview-15_11.tar.gz/include/StGLWidgets/StGLRadioButton.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLRadioButton.h Changed
14
 
1
@@ -32,9 +32,9 @@
2
                                  const int theLeft = 32, const int theTop = 32,
3
                                  const StGLCorner theCorner = StGLCorner(ST_VCORNER_TOP, ST_HCORNER_LEFT));
4
     ST_CPPEXPORT virtual ~StGLRadioButton();
5
-    ST_CPPEXPORT virtual void stglResize();
6
-    ST_CPPEXPORT virtual bool stglInit();
7
-    ST_CPPEXPORT virtual void stglDraw(unsigned int view);
8
+    ST_CPPEXPORT virtual void stglResize() ST_ATTR_OVERRIDE;
9
+    ST_CPPEXPORT virtual bool stglInit() ST_ATTR_OVERRIDE;
10
+    ST_CPPEXPORT virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
11
 
12
         public:
13
 
14
sview-15_11.tar.gz/include/StGLWidgets/StGLRadioButtonFloat32.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLRadioButtonFloat32.h Changed
16
 
1
@@ -36,12 +36,12 @@
2
     /**
3
      * Return true if radio button is in active state.
4
      */
5
-    ST_CPPEXPORT virtual bool isActiveState() const;
6
+    ST_CPPEXPORT virtual bool isActiveState() const ST_ATTR_OVERRIDE;
7
 
8
     /**
9
      * Set this radio button on.
10
      */
11
-    ST_CPPEXPORT virtual void setValue();
12
+    ST_CPPEXPORT virtual void setValue() ST_ATTR_OVERRIDE;
13
 
14
         private:
15
 
16
sview-15_11.tar.gz/include/StGLWidgets/StGLRangeFieldFloat32.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLRangeFieldFloat32.h Changed
19
 
1
@@ -40,7 +40,8 @@
2
                                        const StGLCorner theCorner = StGLCorner(ST_VCORNER_TOP, ST_HCORNER_LEFT));
3
 
4
     ST_CPPEXPORT virtual ~StGLRangeFieldFloat32();
5
-    ST_CPPEXPORT virtual bool stglInit();
6
+    ST_CPPEXPORT virtual bool stglInit() ST_ATTR_OVERRIDE;
7
+    ST_CPPEXPORT virtual bool doScroll(const StScrollEvent& theEvent) ST_ATTR_OVERRIDE;
8
 
9
         public:
10
 
11
@@ -60,7 +61,6 @@
12
         private:
13
 
14
     ST_LOCAL void onValueChange(const float theValue);
15
-    ST_LOCAL void doMouseUnclick(const int theBtnId);
16
 
17
         private:
18
 
19
sview-15_11.tar.gz/include/StGLWidgets/StGLRootWidget.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLRootWidget.h Changed
169
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * StGLWidgets, small C++ toolkit for writing GUI using OpenGL.
4
- * Copyright © 2009-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -19,6 +19,7 @@
10
 template<> inline void StArray<StGLNamedTexture>::sort() {}
11
 typedef StArray<StGLNamedTexture> StGLTextureArray;
12
 class StGLMenuProgram;
13
+class StGLMessageBox;
14
 class StGLTextProgram;
15
 class StGLTextBorderProgram;
16
 
17
@@ -98,13 +99,13 @@
18
      * Process initialization.
19
      * @return true on success
20
      */
21
-    ST_CPPEXPORT virtual bool stglInit();
22
+    ST_CPPEXPORT virtual bool stglInit() ST_ATTR_OVERRIDE;
23
 
24
     /**
25
      * Draw all children.
26
      * Root widget caches OpenGL state (like viewport).
27
      */
28
-    ST_CPPEXPORT virtual void stglDraw(unsigned int theView);
29
+    ST_CPPEXPORT virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
30
 
31
     /**
32
      * Get shared menu program instance.
33
@@ -136,54 +137,51 @@
34
 
35
     /**
36
      * Function iterate children and self to change clicking state.
37
-     * @param theCursorZo point in Zero2One coordinates
38
-     * @param theMouseBtn mouse button id
39
      */
40
-    inline bool tryClick(const StPointD_t& theCursorZo,
41
-                         const int&        theMouseBtn) {
42
+    ST_LOCAL bool tryClick(const StClickEvent& theEvent) {
43
         bool isItemClicked = false;
44
-        return tryClick(theCursorZo, theMouseBtn, isItemClicked);
45
+        return tryClick(theEvent, isItemClicked);
46
     }
47
 
48
-    ST_CPPEXPORT virtual bool tryClick(const StPointD_t& theCursorZo,
49
-                                       const int&        theMouseBtn,
50
-                                       bool&             theIsItemClicked);
51
+    ST_CPPEXPORT virtual bool tryClick(const StClickEvent& theEvent,
52
+                                       bool&               theIsItemClicked) ST_ATTR_OVERRIDE;
53
 
54
     /**
55
      * Function iterate children and self for unclicking state.
56
-     * @param theCursorZo point in Zero2One coordinates
57
-     * @param theMouseBtn mouse button id
58
      */
59
-    inline bool tryUnClick(const StPointD_t& theCursorZo,
60
-                           const int&        theMouseBtn) {
61
+    ST_LOCAL bool tryUnClick(const StClickEvent& theEvent) {
62
         bool isItemUnclicked = false;
63
-        return tryUnClick(theCursorZo, theMouseBtn, isItemUnclicked);
64
+        return tryUnClick(theEvent, isItemUnclicked);
65
     }
66
 
67
-    ST_CPPEXPORT virtual bool tryUnClick(const StPointD_t& theCursorZo,
68
-                                         const int&        theMouseBtn,
69
-                                         bool&             theIsItemUnclicked);
70
+    ST_CPPEXPORT virtual bool tryUnClick(const StClickEvent& theEvent,
71
+                                         bool&               theIsItemUnclicked) ST_ATTR_OVERRIDE;
72
+
73
+    /**
74
+     * Handle scrollong event.
75
+     */
76
+    ST_CPPEXPORT virtual bool doScroll(const StScrollEvent& theEvent) ST_ATTR_OVERRIDE;
77
 
78
     /**
79
      * Process key down event. Default implementation redirect event to widget in focus.
80
      * @param theEvent key event
81
      * @return true if event has been processed
82
      */
83
-    ST_CPPEXPORT virtual bool doKeyDown(const StKeyEvent& theEvent);
84
+    ST_CPPEXPORT virtual bool doKeyDown(const StKeyEvent& theEvent) ST_ATTR_OVERRIDE;
85
 
86
     /**
87
      * Process key hold event. Default implementation redirect event to widget in focus.
88
      * @param theEvent key event
89
      * @return true if event has been processed
90
      */
91
-    ST_CPPEXPORT virtual bool doKeyHold(const StKeyEvent& theEvent);
92
+    ST_CPPEXPORT virtual bool doKeyHold(const StKeyEvent& theEvent) ST_ATTR_OVERRIDE;
93
 
94
     /**
95
      * Process key up event. Default implementation redirect event to widget in focus.
96
      * @param theEvent key event
97
      * @return true if event has been processed
98
      */
99
-    ST_CPPEXPORT virtual bool doKeyUp  (const StKeyEvent& theEvent);
100
+    ST_CPPEXPORT virtual bool doKeyUp  (const StKeyEvent& theEvent) ST_ATTR_OVERRIDE;
101
 
102
     /**
103
      * Return true if interface should be adopted to mobile device.
104
@@ -305,14 +303,14 @@
105
      */
106
     ST_CPPEXPORT static size_t generateShareId();
107
 
108
-    inline StGLProjCamera* getCamera() {
109
+    ST_LOCAL StGLProjCamera* getCamera() {
110
         return &myProjCamera;
111
     }
112
 
113
     /**
114
      * @return widget in focus
115
      */
116
-    inline StGLWidget* getFocus() {
117
+    ST_LOCAL StGLWidget* getFocus() const {
118
         return myFocusWidget;
119
     }
120
 
121
@@ -323,6 +321,21 @@
122
     ST_CPPEXPORT StGLWidget* setFocus(StGLWidget* theWidget);
123
 
124
     /**
125
+     * Return active modal dialog.
126
+     */
127
+    ST_LOCAL StGLMessageBox* getModalDialog() const {
128
+        return myModalDialog;
129
+    }
130
+
131
+    /**
132
+     * Assign new modal dialog.
133
+     * @param theWidget       new modal dialog
134
+     * @param theToReleaseOld flag to release the previous modal dialog
135
+     */
136
+    ST_CPPEXPORT void setModalDialog(StGLMessageBox* theWidget,
137
+                                     const bool      theToReleaseOld = true);
138
+
139
+    /**
140
      * @return OpenGL context.
141
      */
142
     ST_CPPEXPORT StGLContext& getContext();
143
@@ -379,7 +392,7 @@
144
     }
145
 
146
     using StGLWidget::stglResize;
147
-    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& cursorZo);
148
+    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& theCursorZo) ST_ATTR_OVERRIDE;
149
     ST_CPPEXPORT virtual void stglResize(const StGLBoxPx&  theRectPx);
150
 
151
     /**
152
@@ -403,7 +416,7 @@
153
      * to prevent corruption during widgets iteration.
154
      * @param theWidget the widget to destroy
155
      */
156
-    ST_CPPEXPORT virtual void destroyWithDelay(StGLWidget* theWidget);
157
+    ST_CPPEXPORT virtual void destroyWithDelay(StGLWidget* theWidget) ST_ATTR_OVERRIDE;
158
 
159
     /**
160
      * Access global flag to perform navigation in menu after first item clicked.
161
@@ -462,6 +475,7 @@
162
 
163
     StArrayList<StGLWidget*>  myDestroyList;   //!< list of widgets to be destroyed
164
     StGLWidget*               myFocusWidget;   //!< widget currently in focus
165
+    StGLMessageBox*           myModalDialog;   //!< active dialog
166
 
167
     bool                      myIsMenuPressed; //!< global flag to perform navigation in menu after first item clicked
168
 
169
sview-15_11.tar.gz/include/StGLWidgets/StGLScrollArea.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLScrollArea.h Changed
21
 
1
@@ -29,12 +29,13 @@
2
                                 const StGLCorner theCorner,
3
                                 const int        theWidth, const int theHeight);
4
     ST_CPPEXPORT virtual ~StGLScrollArea();
5
-    ST_CPPEXPORT virtual bool stglInit();
6
-    ST_CPPEXPORT virtual void stglResize();
7
-    ST_CPPEXPORT virtual void stglDraw(unsigned int theView);
8
-    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& theCursorZo);
9
-    ST_CPPEXPORT virtual bool tryClick  (const StPointD_t& theCursorZo, const int& theMouseBtn, bool& isItemClicked);
10
-    ST_CPPEXPORT virtual bool tryUnClick(const StPointD_t& theCursorZo, const int& theMouseBtn, bool& isItemUnclicked);
11
+    ST_CPPEXPORT virtual bool stglInit() ST_ATTR_OVERRIDE;
12
+    ST_CPPEXPORT virtual void stglResize() ST_ATTR_OVERRIDE;
13
+    ST_CPPEXPORT virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
14
+    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& theCursorZo) ST_ATTR_OVERRIDE;
15
+    ST_CPPEXPORT virtual bool tryClick  (const StClickEvent& theEvent, bool& isItemClicked)   ST_ATTR_OVERRIDE;
16
+    ST_CPPEXPORT virtual bool tryUnClick(const StClickEvent& theEvent, bool& isItemUnclicked) ST_ATTR_OVERRIDE;
17
+    ST_CPPEXPORT virtual bool doScroll(const StScrollEvent& theEvent) ST_ATTR_OVERRIDE;
18
 
19
         public:
20
 
21
sview-16_06.tar.gz/include/StGLWidgets/StGLSeekBar.h Added
95
 
1
@@ -0,0 +1,93 @@
2
+/**
3
+ * StGLWidgets, small C++ toolkit for writing GUI using OpenGL.
4
+ * Copyright © 2009-2016 Kirill Gavrilov <kirill@sview.ru>
5
+ *
6
+ * Distributed under the Boost Software License, Version 1.0.
7
+ * See accompanying file license-boost.txt or copy at
8
+ * http://www.boost.org/LICENSE_1_0.txt
9
+ */
10
+
11
+#ifndef __StGLSeekBar_h_
12
+#define __StGLSeekBar_h_
13
+
14
+#include <StGLWidgets/StGLWidget.h>
15
+#include <StGL/StGLVertexBuffer.h>
16
+
17
+/**
18
+ * Simple seeking bar widget.
19
+ */
20
+class StGLSeekBar : public StGLWidget {
21
+
22
+        public: //! @name public methods
23
+
24
+    /**
25
+     * Default constructor.
26
+     */
27
+    ST_CPPEXPORT StGLSeekBar(StGLWidget* theParent,
28
+                             const int   theTop,
29
+                             const int   theMargin);
30
+
31
+    /**
32
+     * Destructor.
33
+     */
34
+    ST_CPPEXPORT virtual ~StGLSeekBar();
35
+
36
+    /**
37
+     * @param theProgress - current progress from 0.0f to 1.0f;
38
+     */
39
+    ST_LOCAL void setProgress(const GLfloat theProgress) {
40
+        myProgress = theProgress;
41
+    }
42
+
43
+    ST_LOCAL void setMoveTolerance(const int theTolerPx) {
44
+        myMoveTolerPx = theTolerPx;
45
+    }
46
+
47
+    ST_CPPEXPORT virtual void stglResize() ST_ATTR_OVERRIDE;
48
+    ST_CPPEXPORT virtual bool stglInit() ST_ATTR_OVERRIDE;
49
+    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& theCursor) ST_ATTR_OVERRIDE;
50
+    ST_CPPEXPORT virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
51
+    ST_CPPEXPORT virtual bool doScroll(const StScrollEvent& theEvent) ST_ATTR_OVERRIDE;
52
+
53
+        public:  //!< Signals
54
+
55
+    struct {
56
+        /**
57
+         * Emit callback Slot on mouse click.
58
+         * @param theMouseBtnId mouse button id
59
+         * @param theProgress   current progress value
60
+         */
61
+        StSignal<void (const int , const double )> onSeekClick;
62
+
63
+        /**
64
+         * Emit callback Slot on scrolling.
65
+         * @param theDelta scrolling direction
66
+         */
67
+        StSignal<void (const double )> onSeekScroll;
68
+    } signals;
69
+
70
+        private: //! @name callback Slots (private overriders)
71
+
72
+    ST_LOCAL void doMouseClick  (const int );
73
+    ST_LOCAL void doMouseUnclick(const int );
74
+
75
+        private: //! @name private methods
76
+
77
+    ST_LOCAL void stglUpdateVertices();
78
+    ST_LOCAL double getPointInEx(const StPointD_t& thePointZo) const;
79
+
80
+        private:
81
+
82
+    class StProgramSB;
83
+    StHandle<StProgramSB> myProgram;    //!< GLSL program
84
+
85
+    StGLVertexBuffer      myVertices;   //!< vertices VBO
86
+    StGLVertexBuffer      myColors;     //!< colors   VBO
87
+    GLfloat               myProgress;   //!< current progress 0..1
88
+    int                   myProgressPx; //!< current progress - width in pixels
89
+    int                   myClickPos;
90
+    int                   myMoveTolerPx;
91
+
92
+};
93
+
94
+#endif // __StGLSeekBar_h_
95
sview-15_11.tar.gz/include/StGLWidgets/StGLSubtitles.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLSubtitles.h Changed
16
 
1
@@ -70,10 +70,10 @@
2
                                const StHandle<StFloat32Param>& theParallax,
3
                                const StHandle<StEnumParam>&    theParser);
4
     ST_CPPEXPORT virtual ~StGLSubtitles();
5
-    ST_CPPEXPORT virtual bool stglInit();
6
-    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& thePointZo);
7
-    ST_CPPEXPORT virtual void stglDraw(unsigned int theView);
8
-    ST_CPPEXPORT virtual void stglResize();
9
+    ST_CPPEXPORT virtual bool stglInit() ST_ATTR_OVERRIDE;
10
+    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& thePointZo) ST_ATTR_OVERRIDE;
11
+    ST_CPPEXPORT virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
12
+    ST_CPPEXPORT virtual void stglResize() ST_ATTR_OVERRIDE;
13
 
14
     /**
15
      * Retrieve handle to the queue.
16
sview-15_11.tar.gz/include/StGLWidgets/StGLSwitchTextured.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLSwitchTextured.h Changed
24
 
1
@@ -34,18 +34,18 @@
2
      */
3
     ST_CPPEXPORT virtual ~StGLSwitchTextured();
4
 
5
-    ST_CPPEXPORT virtual bool stglInit();
6
+    ST_CPPEXPORT virtual bool stglInit() ST_ATTR_OVERRIDE;
7
 
8
     /**
9
      * Overrider that shows only active value in the switch.
10
      */
11
-    ST_CPPEXPORT virtual void stglDraw(unsigned int theView);
12
+    ST_CPPEXPORT virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
13
 
14
     /**
15
      * Overrider that blocks children's clicking functionality and switch the values in cycle.
16
      */
17
-    ST_CPPEXPORT virtual bool tryClick  (const StPointD_t& theCursorZo, const int& theMouseBtn, bool& isItemClicked);
18
-    ST_CPPEXPORT virtual bool tryUnClick(const StPointD_t& theCursorZo, const int& theMouseBtn, bool& isItemUnclicked);
19
+    ST_CPPEXPORT virtual bool tryClick  (const StClickEvent& theEvent, bool& theIsItemClicked)   ST_ATTR_OVERRIDE;
20
+    ST_CPPEXPORT virtual bool tryUnClick(const StClickEvent& theEvent, bool& theIsItemUnclicked) ST_ATTR_OVERRIDE;
21
 
22
     /**
23
      * Append available value.
24
sview-15_11.tar.gz/include/StGLWidgets/StGLTable.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLTable.h Changed
14
 
1
@@ -82,9 +82,9 @@
2
      */
3
     ST_CPPEXPORT virtual ~StGLTable();
4
 
5
-    ST_CPPEXPORT virtual void stglResize();
6
-    ST_CPPEXPORT virtual bool stglInit();
7
-    ST_CPPEXPORT virtual void stglDraw(unsigned int theView);
8
+    ST_CPPEXPORT virtual void stglResize() ST_ATTR_OVERRIDE;
9
+    ST_CPPEXPORT virtual bool stglInit() ST_ATTR_OVERRIDE;
10
+    ST_CPPEXPORT virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
11
 
12
     /**
13
      * Initialize table dimensions.
14
sview-15_11.tar.gz/include/StGLWidgets/StGLTextArea.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLTextArea.h Changed
23
 
1
@@ -173,8 +173,8 @@
2
         }
3
     }
4
 
5
-    ST_CPPEXPORT virtual bool stglInit();
6
-    ST_CPPEXPORT virtual void stglDraw(unsigned int theView);
7
+    ST_CPPEXPORT virtual bool stglInit() ST_ATTR_OVERRIDE;
8
+    ST_CPPEXPORT virtual void stglDraw(unsigned int theView) ST_ATTR_OVERRIDE;
9
 
10
     /**
11
      * This method initialize the widget and set it's height to computed formatted text height.
12
@@ -228,6 +228,10 @@
13
 
14
     ST_LOCAL void recomputeBorder(StGLContext& theCtx);
15
 
16
+    ST_LOCAL void computeTextWidthFake(const StString& theText,
17
+                                       int&            theWidth,
18
+                                       int&            theHeight);
19
+
20
         private:
21
 
22
     StArrayList<GLuint>                       myTexturesList;
23
sview-15_11.tar.gz/include/StGLWidgets/StGLTextBorderProgram.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLTextBorderProgram.h Changed
10
 
1
@@ -66,7 +66,7 @@
2
      * @param theCtx active GL context
3
      * @return true if no error
4
      */
5
-    ST_CPPEXPORT virtual bool init(StGLContext& theCtx);
6
+    ST_CPPEXPORT virtual bool init(StGLContext& theCtx) ST_ATTR_OVERRIDE;
7
 
8
         private:
9
 
10
sview-15_11.tar.gz/include/StGLWidgets/StGLTextProgram.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLTextProgram.h Changed
10
 
1
@@ -73,7 +73,7 @@
2
      * @param theCtx active GL context
3
      * @return true if no error
4
      */
5
-    ST_CPPEXPORT virtual bool init(StGLContext& theCtx);
6
+    ST_CPPEXPORT virtual bool init(StGLContext& theCtx) ST_ATTR_OVERRIDE;
7
 
8
         private:
9
 
10
sview-15_11.tar.gz/include/StGLWidgets/StGLTextureButton.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLTextureButton.h Changed
32
 
1
@@ -108,12 +108,13 @@
2
     ST_CPPEXPORT void setTexturePath(const StString* theTexturesPaths,
3
                                      const size_t    theCount);
4
 
5
-    ST_CPPEXPORT virtual void stglResize();
6
-    ST_CPPEXPORT virtual bool stglInit();
7
-    ST_CPPEXPORT virtual void stglDraw  (unsigned int view);
8
-    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& theCursorZo);
9
-    ST_CPPEXPORT virtual bool tryClick  (const StPointD_t& theCursorZo, const int& theMouseBtn, bool& theIsItemClicked);
10
-    ST_CPPEXPORT virtual bool tryUnClick(const StPointD_t& theCursorZo, const int& theMouseBtn, bool& theIsItemUnclicked);
11
+    ST_CPPEXPORT virtual void stglResize() ST_ATTR_OVERRIDE;
12
+    ST_CPPEXPORT virtual bool stglInit() ST_ATTR_OVERRIDE;
13
+    ST_CPPEXPORT virtual void stglDraw  (unsigned int theView) ST_ATTR_OVERRIDE;
14
+    ST_CPPEXPORT virtual void stglUpdate(const StPointD_t& theCursorZo) ST_ATTR_OVERRIDE;
15
+    ST_CPPEXPORT virtual bool tryClick  (const StClickEvent& theEvent, bool& theIsItemClicked)   ST_ATTR_OVERRIDE;
16
+    ST_CPPEXPORT virtual bool tryUnClick(const StClickEvent& theEvent, bool& theIsItemUnclicked) ST_ATTR_OVERRIDE;
17
+    ST_CPPEXPORT virtual bool doScroll(const StScrollEvent& theEvent) ST_ATTR_OVERRIDE;
18
 
19
         public:    //! @name Signals
20
 
21
@@ -184,8 +185,8 @@
22
 
23
     ST_CPPEXPORT virtual ~StGLIcon();
24
 
25
-    ST_CPPEXPORT virtual bool tryClick(const StPointD_t& cursorZo, const int& mouseBtn, bool& isItemClicked);
26
-    ST_CPPEXPORT virtual bool tryUnClick(const StPointD_t& cursorZo, const int& mouseBtn, bool& isItemUnclicked);
27
+    ST_CPPEXPORT virtual bool tryClick  (const StClickEvent& theEvent, bool& theIsItemClicked)   ST_ATTR_OVERRIDE;
28
+    ST_CPPEXPORT virtual bool tryUnClick(const StClickEvent& theEvent, bool& theIsItemUnclicked) ST_ATTR_OVERRIDE;
29
 
30
     /**
31
      * Define externally managed textures.
32
sview-15_11.tar.gz/include/StGLWidgets/StGLWidget.h -> sview-16_06.tar.gz/include/StGLWidgets/StGLWidget.h Changed
83
 
1
@@ -22,7 +22,10 @@
2
 
3
 class  StGLRootWidget;
4
 class  StGLContext;
5
+struct StClickEvent;
6
 struct StKeyEvent;
7
+struct StGestureEvent;
8
+struct StScrollEvent;
9
 
10
 /**
11
  * Auxiliary class to perform linear animation.
12
@@ -286,21 +289,15 @@
13
 
14
     /**
15
      * Function iterate children and self to change clicking state.
16
-     * @param theCursorZo point in Zero2One coordinates
17
-     * @param theMouseBtn mouse button id
18
      */
19
-    ST_CPPEXPORT virtual bool tryClick(const StPointD_t& theCursorZo,
20
-                                       const int&        theMouseBtn,
21
-                                       bool&             isItemClicked);
22
+    ST_CPPEXPORT virtual bool tryClick(const StClickEvent& theEvent,
23
+                                       bool&               theIsItemClicked);
24
 
25
     /**
26
      * Function iterate children and self for unclicking state.
27
-     * @param theCursorZo point in Zero2One coordinates
28
-     * @param theMouseBtn mouse button id
29
      */
30
-    ST_CPPEXPORT virtual bool tryUnClick(const StPointD_t& theCursorZo,
31
-                                         const int&        theMouseBtn,
32
-                                         bool&             isItemUnclicked);
33
+    ST_CPPEXPORT virtual bool tryUnClick(const StClickEvent& theEvent,
34
+                                         bool&               theIsItemUnclicked);
35
 
36
     /**
37
      * Process key down event. Default implementation do nothing.
38
@@ -324,10 +321,32 @@
39
     ST_CPPEXPORT virtual bool doKeyUp  (const StKeyEvent& theEvent);
40
 
41
     /**
42
+     * Process scroll event. Default implementation do nothing.
43
+     * @param theEvent scroll event
44
+     * @return true if event has been processed
45
+     */
46
+    ST_CPPEXPORT virtual bool doScroll(const StScrollEvent& theEvent);
47
+
48
+    /**
49
      * @param pointZo point in Zero2One coordinates
50
      * @return true if input pointer in area rectangle
51
      */
52
-    ST_CPPEXPORT virtual bool isPointIn(const StPointD_t& pointZo) const;
53
+    ST_LOCAL bool isPointIn(const StPointD_t& thePointZo) const {
54
+        const StRectD_t aRectGl = getRectGl();
55
+        StPointD_t aPointGl = getPointGl(thePointZo);
56
+        return aPointGl.x() > aRectGl.left()
57
+            && aPointGl.x() < aRectGl.right()
58
+            && aPointGl.y() > aRectGl.bottom()
59
+            && aPointGl.y() < aRectGl.top();
60
+    }
61
+
62
+    /**
63
+     * Return true if it is visible and specified point is within this element.
64
+     */
65
+    ST_LOCAL bool isVisibleAndPointIn(const StPointD_t& thePointZo) const {
66
+        return isVisible()
67
+            && isPointIn(thePointZo);
68
+    }
69
 
70
     /**
71
      * Update parameters.
72
@@ -460,8 +479,8 @@
73
 
74
     ST_CPPEXPORT virtual ~StGLContainer();
75
 
76
-    ST_CPPEXPORT virtual bool tryClick  (const StPointD_t& theCursorZo, const int& theMouseBtn, bool& theIsItemClicked);
77
-    ST_CPPEXPORT virtual bool tryUnClick(const StPointD_t& theCursorZo, const int& theMouseBtn, bool& theIsItemUnclicked);
78
+    ST_CPPEXPORT virtual bool tryClick  (const StClickEvent& theEvent, bool& theIsItemClicked)   ST_ATTR_OVERRIDE;
79
+    ST_CPPEXPORT virtual bool tryUnClick(const StClickEvent& theEvent, bool& theIsItemUnclicked) ST_ATTR_OVERRIDE;
80
 
81
 };
82
 
83
sview-15_11.tar.gz/include/StImage/StDevILImage.h -> sview-16_06.tar.gz/include/StImage/StDevILImage.h Changed
18
 
1
@@ -46,13 +46,13 @@
2
     ST_CPPEXPORT StDevILImage();
3
     ST_CPPEXPORT virtual ~StDevILImage();
4
 
5
-    ST_CPPEXPORT virtual void close();
6
+    ST_CPPEXPORT virtual void close() ST_ATTR_OVERRIDE;
7
     ST_CPPEXPORT virtual bool load(const StString& theFilePath,
8
                                    ImageType theImageType = ST_TYPE_NONE,
9
-                                   uint8_t* theDataPtr = NULL, int theDataSize = 0);
10
+                                   uint8_t* theDataPtr = NULL, int theDataSize = 0) ST_ATTR_OVERRIDE;
11
     ST_CPPEXPORT virtual bool save(const StString& theFilePath,
12
                                    ImageType       theImageType,
13
-                                   StFormat        theSrcFormat);
14
+                                   StFormat        theSrcFormat) ST_ATTR_OVERRIDE;
15
 
16
 };
17
 
18
sview-15_11.tar.gz/include/StImage/StFreeImage.h -> sview-16_06.tar.gz/include/StImage/StFreeImage.h Changed
18
 
1
@@ -32,13 +32,13 @@
2
     ST_CPPEXPORT StFreeImage();
3
     ST_CPPEXPORT virtual ~StFreeImage();
4
 
5
-    ST_CPPEXPORT virtual void close();
6
+    ST_CPPEXPORT virtual void close() ST_ATTR_OVERRIDE;
7
     ST_CPPEXPORT virtual bool load(const StString& theFilePath,
8
                                    ImageType theImageType = ST_TYPE_NONE,
9
-                                   uint8_t* theDataPtr = NULL, int theDataSize = 0);
10
+                                   uint8_t* theDataPtr = NULL, int theDataSize = 0) ST_ATTR_OVERRIDE;
11
     ST_CPPEXPORT virtual bool save(const StString& theFilePath,
12
                                    ImageType       theImageType,
13
-                                   StFormat        theSrcFormat);
14
+                                   StFormat        theSrcFormat) ST_ATTR_OVERRIDE;
15
 
16
         private:
17
 
18
sview-15_11.tar.gz/include/StImage/StImage.h -> sview-16_06.tar.gz/include/StImage/StImage.h Changed
36
 
1
@@ -54,6 +54,7 @@
2
         ImgColor_RGBA,    //!< same as RGB but has Alpha channel to perform color blending with background
3
         ImgColor_GRAY,    //!< just gray scale
4
         ImgColor_YUV,     //!< luma/brightness (Y) + chrominance (UV color plane) - widely used in cinema
5
+        ImgColor_XYZ,     //!< XYZ
6
         ImgColor_CMYK,    //!< Cyan, Magenta, Yellow and Black - generally used in printing process
7
         ImgColor_HSV,     //!< Hue, Saturation, Value (also known as HSB - Hue, Saturation, Brightness)
8
         ImgColor_HSL,     //!< Hue, Saturation, Lightness/Luminance (also known as HLS or HSI - Hue, Saturation, Intensity))
9
@@ -67,6 +68,8 @@
10
         ImgScale_Mpeg10,  //!< YUV 10 bits in 16 bits    Y   64..940;   U and V   64..960
11
         ImgScale_Jpeg9,   //!< 9  bits in 16 bits 0...511
12
         ImgScale_Jpeg10,  //!< 10 bits in 16 bits 0..1023
13
+        ImgScale_NvFull,  //!< full range (use all bits)
14
+        ImgScale_NvMpeg,  //!< YUV  8 bits per component Y   16..235;   U and V   16..240
15
     } ImgColorScale;
16
 
17
     ST_CPPEXPORT static StString formatImgColorModel(ImgColorModel theColorModel);
18
@@ -230,7 +233,7 @@
19
      * Access to the image plane by ID (from 0 to 3).
20
      */
21
     inline const StImagePlane& getPlane(const size_t theId = 0) const {
22
-        ST_DEBUG_ASSERT(theId < 4);
23
+        ST_ASSERT(theId < 4, "StImage::getPlane() - Out of range access");
24
         return myPlanes[theId];
25
     }
26
 
27
@@ -238,7 +241,7 @@
28
      * Access to the image plane by ID (from 0 to 3).
29
      */
30
     inline StImagePlane& changePlane(const size_t theId = 0) {
31
-        ST_DEBUG_ASSERT(theId < 4);
32
+        ST_ASSERT(theId < 4, "StImage::changePlane() - Out of range access");
33
         return myPlanes[theId];
34
     }
35
 
36
sview-15_11.tar.gz/include/StImage/StImageFile.h -> sview-16_06.tar.gz/include/StImage/StImageFile.h Changed
16
 
1
@@ -176,12 +176,12 @@
2
      * If theOther has the same type, than the ref counter will be reused.
3
      * Otherwise then new counter will be allocated.
4
      */
5
-    ST_CPPEXPORT virtual void createReference(StHandle<StBufferCounter>& theOther) const;
6
+    ST_CPPEXPORT virtual void createReference(StHandle<StBufferCounter>& theOther) const ST_ATTR_OVERRIDE;
7
 
8
     /**
9
      * Release current reference.
10
      */
11
-    ST_CPPEXPORT virtual void releaseReference();
12
+    ST_CPPEXPORT virtual void releaseReference() ST_ATTR_OVERRIDE;
13
 
14
     /**
15
      * Release reference counter.
16
sview-15_11.tar.gz/include/StImage/StImagePlane.h -> sview-16_06.tar.gz/include/StImage/StImagePlane.h Changed
54
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2010-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2010-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -10,6 +10,7 @@
9
 #define __StImagePlane_h_
10
 
11
 #include <StStrings/StString.h>
12
+#include <stAssert.h>
13
 #include "StPixelRGB.h"
14
 
15
 /**
16
@@ -39,6 +40,7 @@
17
         ImgBGRF,        //!< same as RGBF but with different components order
18
         ImgRGBAF,       //!< 4 floats (16-bytes) RGBA image plane
19
         ImgBGRAF,       //!< same as RGBAF but with different components order
20
+        ImgUV,          //!< 2 bytes packed UV image plane
21
     } ImgFormat;
22
 
23
     ST_CPPEXPORT static StString formatImgFormat(ImgFormat theImgFormat);
24
@@ -96,7 +98,8 @@
25
      * Could be used as general method to copy data from one buffer to another.
26
      */
27
     inline const GLubyte* getData(const size_t theRow = 0, const size_t theCol = 0) const {
28
-        ST_DEBUG_ASSERT((myDataPtr != NULL) && (theRow < mySizeY) && (theCol < mySizeX));
29
+        ST_ASSERT((myDataPtr != NULL) && (theRow < mySizeY) && (theCol < mySizeX),
30
+                  "StImagePlane::getData() - Out of range access");
31
         return &myDataPtr[mySizeRowBytes * theRow + mySizeBPP * theCol];
32
     }
33
 
34
@@ -104,7 +107,8 @@
35
      * @return data pointer to requested position.
36
      */
37
     inline GLubyte* changeData(const size_t theRow = 0, const size_t theCol = 0) {
38
-        ST_DEBUG_ASSERT((myDataPtr != NULL) && (theRow < mySizeY) && (theCol < mySizeX));
39
+        ST_ASSERT((myDataPtr != NULL) && (theRow < mySizeY) && (theCol < mySizeX),
40
+                  "StImagePlane::changeData() - Out of range access");
41
         return &myDataPtr[mySizeRowBytes * theRow + mySizeBPP * theCol];
42
     }
43
 
44
@@ -112,7 +116,8 @@
45
      * @return data pointer to requested position.
46
      */
47
     inline GLubyte* accessData(const size_t theRow = 0, const size_t theCol = 0) const {
48
-        ST_DEBUG_ASSERT((myDataPtr != NULL) && (theRow < mySizeY) && (theCol < mySizeX));
49
+        ST_ASSERT((myDataPtr != NULL) && (theRow < mySizeY) && (theCol < mySizeX),
50
+                  "StImagePlane::accessData() - Out of range access");
51
         return &myDataPtr[mySizeRowBytes * theRow + mySizeBPP * theCol];
52
     }
53
 
54
sview-15_11.tar.gz/include/StImage/StJpegParser.h -> sview-16_06.tar.gz/include/StImage/StJpegParser.h Changed
11
 
1
@@ -118,7 +118,8 @@
2
     /**
3
      * Read the file content.
4
      */
5
-    ST_CPPEXPORT virtual bool readFile(const StCString& theFilePath);
6
+    ST_CPPEXPORT virtual bool readFile(const StCString& theFilePath,
7
+                                       const int        theOpenedFd = -1) ST_ATTR_OVERRIDE;
8
 
9
     /**
10
      * Determines images count.
11
sview-15_11.tar.gz/include/StImage/StWebPImage.h -> sview-16_06.tar.gz/include/StImage/StWebPImage.h Changed
18
 
1
@@ -32,13 +32,13 @@
2
     ST_CPPEXPORT StWebPImage();
3
     ST_CPPEXPORT virtual ~StWebPImage();
4
 
5
-    ST_CPPEXPORT virtual void close();
6
+    ST_CPPEXPORT virtual void close() ST_ATTR_OVERRIDE;
7
     ST_CPPEXPORT virtual bool load(const StString& theFilePath,
8
                                    ImageType theImageType = ST_TYPE_NONE,
9
-                                   uint8_t* theDataPtr = NULL, int theDataSize = 0);
10
+                                   uint8_t* theDataPtr = NULL, int theDataSize = 0) ST_ATTR_OVERRIDE;
11
     ST_CPPEXPORT virtual bool save(const StString& theFilePath,
12
                                    ImageType       theImageType,
13
-                                   StFormat        theSrcFormat);
14
+                                   StFormat        theSrcFormat) ST_ATTR_OVERRIDE;
15
 
16
         public:
17
 
18
sview-15_11.tar.gz/include/StLibrary.h -> sview-16_06.tar.gz/include/StLibrary.h Changed
23
 
1
@@ -1,6 +1,6 @@
2
 /**
3
  * This is a header for dynamic library wrappers.
4
- * Copyright © 2008-2015 Kirill Gavrilov <kirill@sview.ru>
5
+ * Copyright © 2008-2016 Kirill Gavrilov <kirill@sview.ru>
6
  *
7
  * Distributed under the Boost Software License, Version 1.0.
8
  * See accompanying file license-boost.txt or copy at
9
@@ -11,11 +11,11 @@
10
 #define __StLibrary_h_
11
 
12
 #include "StVersion.h" // header for version structure
13
-#if (defined(_WIN32) || defined(__WIN32__))
14
+#if defined(_WIN32)
15
     #include <windows.h> // needed for mingw
16
     static const stUtf8_t ST_DLIB_SUFFIX[]   = ".dll";
17
     static const stUtf8_t ST_DLIB_EXTENSION[] = "dll";
18
-#elif (defined(__APPLE__))
19
+#elif defined(__APPLE__)
20
     #include <dlfcn.h>
21
     #define HMODULE void*
22
     static const stUtf8_t ST_DLIB_SUFFIX[]   = ".dylib";
23
sview-15_11.tar.gz/include/StSettings/StEnumParam.h -> sview-16_06.tar.gz/include/StSettings/StEnumParam.h Changed
129
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2013 Kirill Gavrilov
4
+ * Copyright © 2013-2016 Kirill Gavrilov
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -16,17 +16,26 @@
9
  * It is Integer value within 0...N
10
  * Each value has associated name to create appropriate control in GUI.
11
  */
12
-class StEnumParam : public StInt32Param {
13
+class StEnumParam : public StInt32ParamNamed {
14
 
15
         public:
16
 
17
     /**
18
-     * Simple constructor.
19
+     * Main constructor.
20
      */
21
-    StEnumParam(const int32_t   theValue,
22
-                const StString& theParamName = "")
23
-    : StInt32Param(theValue),
24
-      myParamName(theParamName) {
25
+    ST_LOCAL StEnumParam(const int32_t    theValue,
26
+                         const StCString& theParamKey,
27
+                         const StCString& theParamName)
28
+    : StInt32ParamNamed(theValue, theParamKey, theParamName) {
29
+        //
30
+    }
31
+
32
+    /**
33
+     * Main constructor.
34
+     */
35
+    ST_LOCAL StEnumParam(const int32_t    theValue,
36
+                         const StCString& theParamKey)
37
+    : StInt32ParamNamed(theValue, theParamKey) {
38
         //
39
     }
40
 
41
@@ -35,7 +44,7 @@
42
      * @param theValue new value
43
      * @return true if value was changed
44
      */
45
-    inline virtual bool setValue(const int32_t theValue) {
46
+    ST_LOCAL virtual bool setValue(const int32_t theValue) {
47
         if(theValue < 0
48
         || size_t(theValue) >= myList.size()) {
49
             return false; // prevent out-of-range
50
@@ -44,23 +53,9 @@
51
     }
52
 
53
     /**
54
-     * @return parameter label
55
-     */
56
-    ST_LOCAL StString getName() const {
57
-        return myParamName;
58
-    }
59
-
60
-    /**
61
-     * @return parameter label
62
-     */
63
-    ST_LOCAL void setName(const StString& theName) {
64
-        myParamName = theName;
65
-    }
66
-
67
-    /**
68
      * Returns title for active value.
69
      */
70
-    ST_LOCAL inline StString getActiveValue() const {
71
+    ST_LOCAL StString getActiveValue() const {
72
         if(myList.isEmpty()) {
73
             return "";
74
         }
75
@@ -69,24 +64,48 @@
76
     }
77
 
78
     /**
79
-     * Return list of available options.
80
+     * Return the list of available options.
81
      */
82
-    ST_LOCAL inline const StArrayList<StString>& getValues() const {
83
+    ST_LOCAL const StArrayList<StString>& getValues() const {
84
         return myList;
85
     }
86
 
87
-    ST_LOCAL inline StArrayList<StString>& changeValues() {
88
+    /**
89
+     * Modify the list of available options.
90
+     */
91
+    ST_LOCAL StArrayList<StString>& changeValues() {
92
         return myList;
93
     }
94
 
95
+    /**
96
+     * Return option label.
97
+     */
98
+    ST_LOCAL const StString& getOptionLabel(const int32_t theValue) const {
99
+        return myList.getValue(theValue);
100
+    }
101
+
102
+    /**
103
+     * Setup option in the list.
104
+     */
105
+    ST_LOCAL void defineOption(const int32_t    theValue,
106
+                               const StCString& theName) {
107
+        if(theValue < 0) {
108
+            return;
109
+        }
110
+
111
+        while(myList.size() <= (size_t )theValue) {
112
+            myList.add(stCString(""));
113
+        }
114
+        myList.changeValue(theValue) = theName;
115
+    }
116
+
117
         protected:
118
 
119
     StArrayList<StString> myList;
120
-    StString              myParamName;
121
 
122
 };
123
 
124
 // define StHandle template specialization
125
-ST_DEFINE_HANDLE(StEnumParam, StInt32Param);
126
+ST_DEFINE_HANDLE(StEnumParam, StInt32ParamNamed);
127
 
128
 #endif // __StEnumParam_h_
129
sview-15_11.tar.gz/include/StSettings/StFloat32Param.h -> sview-16_06.tar.gz/include/StSettings/StFloat32Param.h Changed
339
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2011-2013 Kirill Gavrilov
4
+ * Copyright © 2011-2016 Kirill Gavrilov
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -11,103 +11,201 @@
9
 
10
 #include <StSettings/StParam.h>
11
 
12
+/**
13
+ * Parameter holding float number.
14
+ */
15
 class StFloat32Param : public StParam<float> {
16
 
17
-        protected:
18
+        public:
19
 
20
-    float myMinValue;
21
-    float myMaxValue;
22
-    float myDefValue;
23
-    float myValueStep;
24
-    float myTolerance;
25
+    /**
26
+     * Main constructor.
27
+     */
28
+    ST_LOCAL StFloat32Param(const float      theValue,
29
+                            const StCString& theParamKey)
30
+    : StParam<float>(theValue),
31
+      myMinValue(-1E+37f),
32
+      myMaxValue( 1E+37f),
33
+      myDefValue(0.0f),
34
+      myValueStep(1.0f),
35
+      myTolerance(0.0001f),
36
+      myParamKey (theParamKey),
37
+      myParamName(theParamKey) {
38
+        //
39
+    }
40
 
41
-        public:
42
+    /**
43
+     * Simple constructor.
44
+     */
45
+    ST_LOCAL StFloat32Param(const float theValue)
46
+    : StParam<float>(theValue),
47
+      myMinValue(-1E+37f),
48
+      myMaxValue( 1E+37f),
49
+      myDefValue(0.0f),
50
+      myValueStep(1.0f),
51
+      myTolerance(0.0001f) {
52
+        //
53
+    }
54
 
55
-    float getMinValue() const {
56
-        return myMinValue;
57
+    /**
58
+     * Main constructor.
59
+     */
60
+    ST_LOCAL StFloat32Param(const float theValue,
61
+                            const float theMinValue,
62
+                            const float theMaxValue,
63
+                            const float theDefValue,
64
+                            const float theStep,
65
+                            const float theTolerance = 0.0001f)
66
+    : StParam<float>(theValue),
67
+      myMinValue(theMinValue),
68
+      myMaxValue(theMaxValue),
69
+      myDefValue(theDefValue),
70
+      myValueStep(theStep),
71
+      myTolerance(theTolerance) {
72
+        //
73
+    }
74
+
75
+    /**
76
+     * @return parameter key
77
+     */
78
+    ST_LOCAL const StString& getKey() const {
79
+        return myParamKey;
80
+    }
81
+
82
+    /**
83
+     * @return parameter label
84
+     */
85
+    ST_LOCAL const StString& getName() const {
86
+        return myParamName;
87
     }
88
 
89
-    bool hasMinValue() const {
90
+    /**
91
+     * Set new parameter label.
92
+     */
93
+    ST_LOCAL void setName(const StString& theName) {
94
+        myParamName = theName;
95
+    }
96
+
97
+    /**
98
+     * Return true if parameter defines minimum value limit.
99
+     */
100
+    ST_LOCAL bool hasMinValue() const {
101
         return myMinValue != -1E+37f;
102
     }
103
 
104
-    bool hasMaxValue() const {
105
-        return myMaxValue !=  1E+37f;
106
+    /**
107
+     * Return minimum allowed value.
108
+     */
109
+    ST_LOCAL float getMinValue() const {
110
+        return myMinValue;
111
+    }
112
+
113
+    /**
114
+     * Set minimum allowed value.
115
+     */
116
+    ST_LOCAL void setMinValue(float theValue) {
117
+        myMinValue = theValue;
118
+    }
119
+
120
+    /**
121
+     * Return true if parameter defines maximum value limit.
122
+     */
123
+    ST_LOCAL bool hasMaxValue() const {
124
+        return myMaxValue != 1E+37f;
125
     }
126
 
127
-    float getMaxValue() const {
128
+    /**
129
+     * Return maximum allowed value.
130
+     */
131
+    ST_LOCAL float getMaxValue() const {
132
         return myMaxValue;
133
     }
134
 
135
-    float getDefValue() const {
136
+    /**
137
+     * Set maximum allowed value.
138
+     */
139
+    ST_LOCAL void setMaxValue(float theValue) {
140
+        myMaxValue = theValue;
141
+    }
142
+
143
+    /**
144
+     * Set minimum and maximum allowed values.
145
+     */
146
+    ST_LOCAL void setMinMaxValues(float theMinValue,
147
+                                  float theMaxValue) {
148
+        myMinValue = theMinValue;
149
+        myMaxValue = theMaxValue;
150
+    }
151
+
152
+    /**
153
+     * Return default value.
154
+     */
155
+    ST_LOCAL float getDefValue() const {
156
         return myDefValue;
157
     }
158
 
159
-    float getStep() const {
160
+    /**
161
+     * Set default value.
162
+     */
163
+    ST_LOCAL void setDefValue(float theValue) {
164
+        myDefValue = theValue;
165
+    }
166
+
167
+    /**
168
+     * Return increment step.
169
+     */
170
+    ST_LOCAL float getStep() const {
171
         return myValueStep;
172
     }
173
 
174
-    float getTolerance() const {
175
-        return myTolerance;
176
+    /**
177
+     * Set increment step.
178
+     */
179
+    ST_LOCAL void setStep(float theStep) {
180
+        myValueStep = theStep;
181
     }
182
 
183
     /**
184
-     * Simple constructor.
185
+     * Return tolerance value for equality check.
186
      */
187
-    StFloat32Param(const float theValue)
188
-    : StParam<float>(theValue),
189
-      myMinValue(-1E+37f),
190
-      myMaxValue( 1E+37f),
191
-      myDefValue(0.0f),
192
-      myValueStep(1.0f),
193
-      myTolerance(0.0001f) {
194
-        //
195
+    ST_LOCAL float getTolerance() const {
196
+        return myTolerance;
197
     }
198
 
199
     /**
200
-     * Main constructor.
201
+     * Set tolerance value for equality check.
202
      */
203
-    StFloat32Param(const float theValue,
204
-                   const float theMinValue,
205
-                   const float theMaxValue,
206
-                   const float theDefValue,
207
-                   const float theStep,
208
-                   const float theTolerance = 0.0001f)
209
-    : StParam<float>(theValue),
210
-      myMinValue(theMinValue),
211
-      myMaxValue(theMaxValue),
212
-      myDefValue(theDefValue),
213
-      myValueStep(theStep),
214
-      myTolerance(theTolerance) {
215
-        //
216
+    ST_LOCAL void setTolerance(float theTol) {
217
+        myTolerance = theTol;
218
     }
219
 
220
     /**
221
      * @return true if currently set value is default
222
      */
223
-    inline bool isDefaultValue() const {
224
+    ST_LOCAL bool isDefaultValue() const {
225
         return areEqual(getValue(), myDefValue);
226
     }
227
 
228
     /**
229
      * @return true if currently set value is maximum
230
      */
231
-    inline bool isMaxValue() const {
232
+    ST_LOCAL bool isMaxValue() const {
233
         return areEqual(getValue(), myMaxValue);
234
     }
235
 
236
     /**
237
      * @return true if currently set value is minimum
238
      */
239
-    inline bool isMinValue() const {
240
+    ST_LOCAL bool isMinValue() const {
241
         return areEqual(getValue(), myMinValue);
242
     }
243
 
244
     /**
245
      * Change the value.
246
-     * @param theValue (const float ) - new value.
247
+     * @param theValue new value
248
+     * @return true if value has been changed
249
      */
250
-    virtual bool setValue(const float theValue) {
251
+    ST_LOCAL virtual bool setValue(const float theValue) {
252
         const float anOldValue = getValue();
253
         const float anNewValue
254
             =  ((theValue + myTolerance) > myMaxValue) ? myMaxValue
255
@@ -124,22 +222,28 @@
256
     /**
257
      * Reset value to default.
258
      */
259
-    void reset() {
260
+    ST_LOCAL void reset() {
261
         setValue(myDefValue);
262
     }
263
 
264
-    void increment() {
265
-        setValue(getValue() + myValueStep);
266
+    /**
267
+     * Increase value using default step.
268
+     */
269
+    ST_LOCAL bool increment() {
270
+        return setValue(getValue() + myValueStep);
271
     }
272
 
273
-    void decrement() {
274
-        setValue(getValue() - myValueStep);
275
+    /**
276
+     * Decrease value using default step.
277
+     */
278
+    ST_LOCAL bool decrement() {
279
+        return setValue(getValue() - myValueStep);
280
     }
281
 
282
     /**
283
      * Prefix ++
284
      */
285
-    StParam<float>& operator++() {
286
+    ST_LOCAL StParam<float>& operator++() {
287
         setValue(getValue() + myValueStep);
288
         return (*this);
289
     }
290
@@ -147,7 +251,7 @@
291
     /**
292
      * Prefix --
293
      */
294
-    StParam<float>& operator--() {
295
+    ST_LOCAL StParam<float>& operator--() {
296
         setValue(getValue() - myValueStep);
297
         return (*this);
298
     }
299
@@ -155,11 +259,36 @@
300
     /**
301
      * Compare two float values using configured tolerance.
302
      */
303
-    bool areEqual(const float theFirst,
304
-                  const float theSecond) const {
305
+    ST_LOCAL bool areEqual(const float theFirst,
306
+                           const float theSecond) const {
307
         return ::stAreEqual(theFirst, theSecond, myTolerance);
308
     }
309
 
310
+    /**
311
+     * Return value within 0..1 range (taking into account min/max values).
312
+     */
313
+    ST_LOCAL float getNormalizedValue() const {
314
+        return (getValue() - myMinValue) / (myMaxValue - myMinValue);
315
+    }
316
+
317
+    /**
318
+     * Setup value within 0..1 range (to be scaled according to min/max values).
319
+     */
320
+    ST_LOCAL bool setNormalizedValue(const float theValue) {
321
+        return setValue(myMinValue + theValue * (myMaxValue - myMinValue));
322
+    }
323
+
324
+        protected:
325
+
326
+    float    myMinValue;  //!< minimal allowed value
327
+    float    myMaxValue;  //!< maximal allowed value
328
+    float    myDefValue;  //!< default value
329
+    float    myValueStep; //!< default increment step
330
+    float    myTolerance; //!< tolerance for equality check
331
+
332
+    StString myParamKey;  //!< parameter key (id)
333
+    StString myParamName; //!< parameter name (label)
334
+
335
 };
336
 
337
-#endif //__StFloat32Param_h_
338
+#endif // __StFloat32Param_h_
339
sview-15_11.tar.gz/include/StSettings/StParam.h -> sview-16_06.tar.gz/include/StSettings/StParam.h Changed
129
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2011-2013 Kirill Gavrilov
4
+ * Copyright © 2011-2016 Kirill Gavrilov
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -149,22 +149,50 @@
9
     /**
10
      * Main constructor.
11
      */
12
-    inline StBoolParamNamed(const bool      theValue,
13
-                            const StString& theParamName = "")
14
+    ST_LOCAL StBoolParamNamed(const bool       theValue,
15
+                              const StCString& theParamKey,
16
+                              const StCString& theParamName)
17
     : StBoolParam(theValue),
18
+      myParamKey(theParamKey),
19
       myParamName(theParamName) {
20
         //
21
     }
22
 
23
     /**
24
+     * Main constructor.
25
+     */
26
+    ST_LOCAL StBoolParamNamed(const bool       theValue,
27
+                              const StCString& theParamKey)
28
+    : StBoolParam(theValue),
29
+      myParamKey(theParamKey),
30
+      myParamName(theParamKey) {
31
+        //
32
+    }
33
+
34
+    /**
35
+     * @return parameter key
36
+     */
37
+    ST_LOCAL const StString& getKey() const {
38
+        return myParamKey;
39
+    }
40
+
41
+    /**
42
      * @return parameter label
43
      */
44
-    ST_LOCAL inline StString getName() const {
45
+    ST_LOCAL const StString& getName() const {
46
         return myParamName;
47
     }
48
 
49
+    /**
50
+     * Set new parameter label.
51
+     */
52
+    ST_LOCAL void setName(const StString& theName) {
53
+        myParamName = theName;
54
+    }
55
+
56
         private:
57
 
58
+    StString myParamKey;
59
     StString myParamName;
60
 
61
 };
62
@@ -172,4 +200,65 @@
63
 // define StHandle template specialization
64
 ST_DEFINE_HANDLE(StBoolParamNamed, StBoolParam);
65
 
66
-#endif //__StParam_h_
67
+/**
68
+ * Named integer parameter.
69
+ */
70
+class StInt32ParamNamed : public StInt32Param {
71
+
72
+        public:
73
+
74
+    /**
75
+     * Main constructor.
76
+     */
77
+    ST_LOCAL StInt32ParamNamed(const int32_t    theValue,
78
+                               const StCString& theParamKey,
79
+                               const StCString& theParamName)
80
+    : StInt32Param(theValue),
81
+      myParamKey(theParamKey),
82
+      myParamName(theParamName) {
83
+        //
84
+    }
85
+
86
+    /**
87
+     * Main constructor.
88
+     */
89
+    ST_LOCAL StInt32ParamNamed(const int32_t    theValue,
90
+                               const StCString& theParamKey)
91
+    : StInt32Param(theValue),
92
+      myParamKey(theParamKey),
93
+      myParamName(theParamKey) {
94
+        //
95
+    }
96
+
97
+    /**
98
+     * @return parameter key
99
+     */
100
+    ST_LOCAL const StString& getKey() const {
101
+        return myParamKey;
102
+    }
103
+
104
+    /**
105
+     * @return parameter label
106
+     */
107
+    ST_LOCAL const StString& getName() const {
108
+        return myParamName;
109
+    }
110
+
111
+    /**
112
+     * Set new parameter label.
113
+     */
114
+    ST_LOCAL void setName(const StString& theName) {
115
+        myParamName = theName;
116
+    }
117
+
118
+        private:
119
+
120
+    StString myParamKey;
121
+    StString myParamName;
122
+
123
+};
124
+
125
+// define StHandle template specialization
126
+ST_DEFINE_HANDLE(StInt32ParamNamed, StInt32Param);
127
+
128
+#endif // __StParam_h_
129
sview-15_11.tar.gz/include/StSettings/StSettings.h -> sview-16_06.tar.gz/include/StSettings/StSettings.h Changed
78
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2007-2015 Kirill Gavrilov
4
+ * Copyright © 2007-2016 Kirill Gavrilov
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -163,6 +163,20 @@
9
 
10
     /**
11
      * Method to load int32_t parameter.
12
+     * @param theInt32Param handle to the parameter
13
+     * @return true if parameter was loaded
14
+     */
15
+    ST_CPPEXPORT bool loadParam(StHandle<StInt32ParamNamed>& theInt32Param);
16
+
17
+    /**
18
+     * Method to save int32_t parameter.
19
+     * @param theInt32Param handle to the parameter
20
+     * @return true if parameter was saved
21
+     */
22
+    ST_CPPEXPORT bool saveParam(const StHandle<StInt32ParamNamed>& theInt32Param);
23
+
24
+    /**
25
+     * Method to load int32_t parameter.
26
      * @param theLabel      parameter label (should be unique)
27
      * @param theInt32Param handle to the parameter
28
      * @return true if parameter was loaded
29
@@ -181,6 +195,20 @@
30
 
31
     /**
32
      * Method to load boolean parameter.
33
+     * @param theBoolParam handle to the parameter
34
+     * @return true if parameter was loaded
35
+     */
36
+    ST_CPPEXPORT bool loadParam(StHandle<StBoolParamNamed>& theBoolParam);
37
+
38
+    /**
39
+     * Method to save boolean parameter.
40
+     * @param theBoolParam handle to the parameter
41
+     * @return true if parameter was saved
42
+     */
43
+    ST_CPPEXPORT bool saveParam(const StHandle<StBoolParamNamed>& theBoolParam);
44
+
45
+    /**
46
+     * Method to load boolean parameter.
47
      * @param theLabel     parameter label (should be unique)
48
      * @param theBoolParam handle to the parameter
49
      * @return true if parameter was loaded
50
@@ -207,6 +235,13 @@
51
                                 StHandle<StFloat32Param>& theFloatParam);
52
 
53
     /**
54
+     * Method to load float parameter.
55
+     * @param theFloatParam handle to the parameter
56
+     * @return true if parameter was loaded
57
+     */
58
+    ST_CPPEXPORT bool loadParam(StHandle<StFloat32Param>& theFloatParam);
59
+
60
+    /**
61
      * Method to save float parameter.
62
      * @param theLabel      parameter label (should be unique)
63
      * @param theFloatParam handle to the parameter
64
@@ -216,6 +251,13 @@
65
                                 const StHandle<StFloat32Param>& theFloatParam);
66
 
67
     /**
68
+     * Method to save float parameter.
69
+     * @param theFloatParam handle to the parameter
70
+     * @return true if parameter was saved
71
+     */
72
+    ST_CPPEXPORT bool saveParam(const StHandle<StFloat32Param>& theFloatParam);
73
+
74
+    /**
75
      * Method to load hot key for action triggering.
76
      * @param theAction handle to the action
77
      * @return true if parameter was loaded
78
sview-15_11.tar.gz/include/StSettings/StTranslations.h -> sview-16_06.tar.gz/include/StSettings/StTranslations.h Changed
13
 
1
@@ -36,6 +36,11 @@
2
     ST_CPPEXPORT virtual ~StTranslations();
3
 
4
     /**
5
+     * Reload translation.
6
+     */
7
+    ST_CPPEXPORT void reload();
8
+
9
+    /**
10
      * Returns active translation.
11
      */
12
     ST_CPPEXPORT const StString& getLanguage() const;
13
sview-15_11.tar.gz/include/StSlots/StAction.h -> sview-16_06.tar.gz/include/StSlots/StAction.h Changed
37
 
1
@@ -165,7 +165,7 @@
2
     /**
3
      * Execute action.
4
      */
5
-    ST_CPPEXPORT virtual void doTrigger(const StEvent* );
6
+    ST_CPPEXPORT virtual void doTrigger(const StEvent* ) ST_ATTR_OVERRIDE;
7
 
8
         protected:
9
 
10
@@ -198,7 +198,7 @@
11
     /**
12
      * Execute action.
13
      */
14
-    ST_CPPEXPORT virtual void doTrigger(const StEvent* );
15
+    ST_CPPEXPORT virtual void doTrigger(const StEvent* ) ST_ATTR_OVERRIDE;
16
 
17
         protected:
18
 
19
@@ -240,7 +240,7 @@
20
     /**
21
      * Execute action.
22
      */
23
-    ST_CPPEXPORT virtual void doTrigger(const StEvent* );
24
+    ST_CPPEXPORT virtual void doTrigger(const StEvent* ) ST_ATTR_OVERRIDE;
25
 
26
         protected:
27
 
28
@@ -282,7 +282,7 @@
29
     /**
30
      * Execute action.
31
      */
32
-    ST_CPPEXPORT virtual void doTrigger(const StEvent* );
33
+    ST_CPPEXPORT virtual void doTrigger(const StEvent* ) ST_ATTR_OVERRIDE;
34
 
35
         protected:
36
 
37
sview-15_11.tar.gz/include/StSocket/StCheckUpdates.h -> sview-16_06.tar.gz/include/StSocket/StCheckUpdates.h Changed
33
 
1
@@ -22,6 +22,31 @@
2
 
3
         public:
4
 
5
+   /**
6
+    * Update check interval.
7
+    */
8
+    enum UpdateInteval {
9
+        UpdateInteval_Never      = 0,
10
+        UpdateInteval_EveryDay   = 1,
11
+        UpdateInteval_EveryWeek  = 2,
12
+        UpdateInteval_EveryYear  = 3,
13
+    };
14
+
15
+    /**
16
+     * Return interval in days.
17
+     */
18
+    static int getNbDaysFromInterval(UpdateInteval theValue) {
19
+        switch(theValue) {
20
+            case UpdateInteval_Never:     return  -1;
21
+            case UpdateInteval_EveryDay:  return   1;
22
+            case UpdateInteval_EveryWeek: return   7;
23
+            case UpdateInteval_EveryYear: return 355;
24
+        }
25
+        return -1;
26
+    }
27
+
28
+        public:
29
+
30
     StCheckUpdates()
31
     : myIsInitialized(false),
32
       myToUpdate(false) {
33
sview-15_11.tar.gz/include/StStrings/StMsgQueue.h -> sview-16_06.tar.gz/include/StStrings/StMsgQueue.h Changed
19
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2013 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2013-2015 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -16,8 +16,8 @@
9
 
10
 struct StMsg {
11
 
12
-    StHandle<StString> Text; //!< message text
13
-    StLogger::Level    Type; //!< message type
14
+    StHandle<StString> Text;  //!< message text
15
+    StLogger::Level    Level; //!< message level
16
 
17
 };
18
 
19
sview-15_11.tar.gz/include/StThreads/StResourceManager.h -> sview-16_06.tar.gz/include/StThreads/StResourceManager.h Changed
20
 
1
@@ -1,5 +1,5 @@
2
 /**
3
- * Copyright © 2014-2015 Kirill Gavrilov <kirill@sview.ru>
4
+ * Copyright © 2014-2016 Kirill Gavrilov <kirill@sview.ru>
5
  *
6
  * Distributed under the Boost Software License, Version 1.0.
7
  * See accompanying file license-boost.txt or copy at
8
@@ -180,6 +180,11 @@
9
     ST_CPPEXPORT void listSubFolders(const StString&        theFolder,
10
                                      StArrayList<StString>& theSubFolder) const;
11
 
12
+    /**
13
+     * Access resource with specified name.
14
+     */
15
+    ST_CPPEXPORT virtual int openFileDescriptor(const StString& thePath) const;
16
+
17
         protected:
18
 
19
     StString       myFolders[FolderId_NB];
20
sview-15_11.tar.gz/include/stTypes.h -> sview-16_06.tar.gz/include/stTypes.h Changed
23
 
1
@@ -45,6 +45,21 @@
2
     #define ST_ATTR_DEPRECATED
3
 #endif
4
 
5
+#if defined(__cplusplus) && (__cplusplus >= 201100L)
6
+  // part of C++11 standard
7
+  #define ST_ATTR_OVERRIDE override
8
+#elif defined(_MSC_VER) && (_MSC_VER >= 1700)
9
+  // versions before VS2012 emits warning as MSVC-specific extension
10
+  #define ST_ATTR_OVERRIDE override
11
+#else
12
+  #define ST_ATTR_OVERRIDE
13
+#endif
14
+
15
+#if defined(_MSC_VER)
16
+    // M_PI on old MSVC
17
+    #define _USE_MATH_DEFINES
18
+#endif
19
+
20
 #include <cmath>       // fabs
21
 #include <cstddef>     // size_t, NULL
22
 #include <cstdlib>
23
sview-15_11.tar.gz/include/stconfig.conf -> sview-16_06.tar.gz/include/stconfig.conf Changed
62
 
1
@@ -1,33 +1,34 @@
2
 #ifndef __stConfig_conf_
3
 #define __stConfig_conf_
4
 
5
-// This is global debugging flag
6
-// must be unset for release
7
-#ifndef ST_DEBUG
8
-    ///#define ST_DEBUG
9
-#endif
10
+// Activate verbose output.
11
+//#define ST_DEBUG
12
+
13
+// Redirect log to system.
14
+//#define ST_DEBUG_SYSLOG
15
+
16
+// Include thread id in the log.
17
+//#define ST_DEBUG_THREADID
18
 
19
-/**
20
- * Request debug GL context when available.
21
- */
22
+// Request debug GL context when available.
23
 #define ST_DEBUG_GL
24
 
25
-/**
26
- * Print GLSL compilation messages for success state in debug mode.
27
- * Useful to detect warnings from different vendors.
28
- */
29
+// Print GLSL compilation messages for success state in debug mode.
30
+// Useful to detect warnings from different vendors.
31
 #define ST_DEBUG_SHADERS
32
 
33
-/**
34
- * Print message for each new texture in debug mode.
35
- */
36
+// Print message for each new texture in debug mode.
37
 #define ST_DEBUG_TEXTURES
38
 
39
-/**
40
- * Print message for each new loaded library in debug mode.
41
- */
42
+// Print message for each new loaded library in debug mode.
43
 #define ST_DEBUG_LIBS
44
 
45
+// Redirect normal messages from FFmpeg to StLogger.
46
+//#define ST_DEBUG_FFMPEG
47
+
48
+// Redirect verbose messages from FFmpeg to StLogger.
49
+//#define ST_DEBUG_FFMPEG_VERBOSE
50
+
51
 // This flag used to processing logging from ST_DEBUG_LOG to defined file.
52
 // Notice: mutex will be used for each logging call!
53
 #ifndef ST_DEBUG_LOG_TO_FILE
54
@@ -70,7 +71,4 @@
55
 
56
 //#define ST_HAVE_LIBOVR
57
 
58
-// OpenCASCADE Technology framework
59
-//#define ST_HAVE_OCCT
60
-
61
 #endif //__stConfig_conf_
62
sview-16_06.tar.gz/sView.Cpp.Default.props Added
40
 
1
@@ -0,0 +1,37 @@
2
+<?xml version="1.0" encoding="utf-8"?>
3
+<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
5
+  <PropertyGroup Condition="'$(DefaultPlatformToolset)'==''">
6
+    <PlatformToolset>v100</PlatformToolset>
7
+    <StVcVer>vc10</StVcVer>
8
+  </PropertyGroup>
9
+  <PropertyGroup Condition="'$(DefaultPlatformToolset)'!=''">
10
+    <PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset>
11
+    <StVcVer>$(DefaultPlatformToolset)</StVcVer>
12
+  </PropertyGroup>
13
+  <PropertyGroup Condition="'$(DefaultPlatformToolset)'=='v110'">
14
+    <PlatformToolset>v110</PlatformToolset>
15
+    <StVcVer>vc11</StVcVer>
16
+  </PropertyGroup>
17
+  <PropertyGroup Condition="'$(DefaultPlatformToolset)'=='v120'">
18
+    <PlatformToolset>v120</PlatformToolset>
19
+    <StVcVer>vc12</StVcVer>
20
+  </PropertyGroup>
21
+  <PropertyGroup Condition="'$(DefaultPlatformToolset)'=='v140'">
22
+    <PlatformToolset>v140</PlatformToolset>
23
+    <StVcVer>vc14</StVcVer>
24
+  </PropertyGroup>
25
+  <PropertyGroup Label="Configuration">
26
+    <StOcctInc>$(SolutionDir)3rdparty\occt\inc</StOcctInc>
27
+    <StOcctRes>$(SolutionDir)3rdparty\occt\src</StOcctRes>
28
+    <StOcctLib32>$(SolutionDir)3rdparty\occt\win32\$(StVcVer)\lib</StOcctLib32>
29
+    <StOcctLib64>$(SolutionDir)3rdparty\occt\win64\$(StVcVer)\lib</StOcctLib64>
30
+    <StOcctLib32d>$(SolutionDir)3rdparty\occt\win32\$(StVcVer)\libd</StOcctLib32d>
31
+    <StOcctLib64d>$(SolutionDir)3rdparty\occt\win64\$(StVcVer)\libd</StOcctLib64d>
32
+    <StOcctBin32>$(SolutionDir)3rdparty\occt\win32\$(StVcVer)\bin</StOcctBin32>
33
+    <StOcctBin64>$(SolutionDir)3rdparty\occt\win64\$(StVcVer)\bin</StOcctBin64>
34
+    <StOcctBin32d>$(SolutionDir)3rdparty\occt\win32\$(StVcVer)\bind</StOcctBin32d>
35
+    <StOcctBin64d>$(SolutionDir)3rdparty\occt\win64\$(StVcVer)\bind</StOcctBin64d>
36
+  </PropertyGroup>
37
+  <Import Condition="Exists('$(SolutionDir)sView.Cpp.Custom.props')" Project="$(SolutionDir)sView.Cpp.Custom.props" />
38
+</Project>
39
\ No newline at end of file
40
sview-15_11.tar.gz/sview/AndroidManifest.xml -> sview-16_06.tar.gz/sview/AndroidManifest.xml Changed
97
 
1
@@ -1,11 +1,12 @@
2
 <?xml version="1.0" encoding="utf-8"?>
3
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
4
           package="com.sview"
5
-          android:versionCode="10"
6
-          android:versionName="15.11">
7
+          android:versionCode="12"
8
+          android:versionName="16.03">
9
     <application android:label="@string/app_name"
10
                  android:hasCode="true"
11
                  android:icon="@drawable/ic_launcher">
12
+        <uses-library android:name="com.s3dv.s3dvsurface" android:required="false" />
13
         <!-- Movie Player -->
14
         <activity android:name="com.sview.StMovieActivity"
15
                   android:label="@string/app_movie_name"
16
@@ -22,6 +23,7 @@
17
             </intent-filter>
18
             <intent-filter>
19
                 <action android:name="android.intent.action.VIEW" />
20
+                <action android:name="android.intent.action.SEND" />
21
                 <category android:name="android.intent.category.DEFAULT" />
22
                 <category android:name="android.intent.category.BROWSABLE" />
23
                 <data android:mimeType="video/*"/>
24
@@ -29,6 +31,7 @@
25
             </intent-filter>
26
             <intent-filter>
27
                 <action android:name="android.intent.action.VIEW" />
28
+                <action android:name="android.intent.action.SEND" />
29
 
30
                 <category android:name="android.intent.category.DEFAULT" />
31
                 <category android:name="android.intent.category.BROWSABLE" />
32
@@ -58,6 +61,7 @@
33
             </intent-filter>
34
             <intent-filter>
35
                 <action android:name="android.intent.action.VIEW" />
36
+                <action android:name="android.intent.action.SEND" />
37
 
38
                 <category android:name="android.intent.category.DEFAULT" />
39
                 <category android:name="android.intent.category.BROWSABLE" />
40
@@ -150,6 +154,17 @@
41
                 <data android:pathPattern=".*\\.WAV" />
42
                 <data android:pathPattern=".*\\.WMA" />
43
             </intent-filter>
44
+            <!--  Filter for all unknown files (e.g. GMAIL attachments) -->
45
+            <intent-filter>
46
+                <action android:name="android.intent.action.VIEW"/>
47
+                <action android:name="android.intent.action.SEND" />
48
+                <category android:name="android.intent.category.DEFAULT"/>
49
+                <category android:name="android.intent.category.BROWSABLE"/>
50
+                <data android:mimeType="application/octet-stream"/>
51
+                <data android:scheme="file"/>
52
+                <data android:scheme="content"/>
53
+                <data android:host="*"/>
54
+            </intent-filter>
55
         </activity>
56
         <!-- Image Viewer -->
57
         <activity android:name="com.sview.StImageActivity"
58
@@ -166,6 +181,7 @@
59
             </intent-filter>
60
             <intent-filter>
61
                 <action android:name="android.intent.action.VIEW" />
62
+                <action android:name="android.intent.action.SEND" />
63
                 <category android:name="android.intent.category.DEFAULT" />
64
                 <category android:name="android.intent.category.BROWSABLE" />
65
                 <data android:mimeType="application/vnd.google.panorama360+jpg"/>
66
@@ -173,6 +189,7 @@
67
             </intent-filter>
68
             <intent-filter>
69
                 <action android:name="android.intent.action.VIEW" />
70
+                <action android:name="android.intent.action.SEND" />
71
 
72
                 <category android:name="android.intent.category.DEFAULT" />
73
                 <category android:name="android.intent.category.BROWSABLE" />
74
@@ -187,8 +204,22 @@
75
 
76
                 <data android:pathPattern=".*\\.mpo" />
77
                 <data android:pathPattern=".*\\.jps" />
78
+                <data android:pathPattern=".*\\.j2k" />
79
+                <data android:pathPattern=".*\\.jp2" />
80
                 <data android:pathPattern=".*\\.pns" />
81
                 <data android:pathPattern=".*\\.webp" />
82
+                <data android:pathPattern=".*\\.webpll" />
83
+            </intent-filter>
84
+            <!--  Filter for all unknown files (e.g. GMAIL attachments) -->
85
+            <intent-filter>
86
+                <action android:name="android.intent.action.VIEW"/>
87
+                <action android:name="android.intent.action.SEND" />
88
+                <category android:name="android.intent.category.DEFAULT"/>
89
+                <category android:name="android.intent.category.BROWSABLE"/>
90
+                <data android:mimeType="application/octet-stream"/>
91
+                <data android:scheme="file"/>
92
+                <data android:scheme="content"/>
93
+                <data android:host="*"/>
94
             </intent-filter>
95
         </activity>
96
         <!-- <activity android:name="com.sview.MainActivity" android:label="@string/app_name" android:configChanges="orientation|keyboardHidden"><intent-filter><action android:name="android.intent.action.MAIN" /><category android:name="android.intent.category.LAUNCHER" /></intent-filter></activity> -->
97
sview-15_11.tar.gz/sview/Contents/Info.plist -> sview-16_06.tar.gz/sview/Contents/Info.plist Changed
10
 
1
@@ -633,7 +633,7 @@
2
    <key>CFBundleExecutable</key>
3
    <string>sView</string>
4
    <key>CFBundleGetInfoString</key>
5
-   <string>Copyright © Kirill Gavrilov, 2007-2015</string>
6
+   <string>Copyright © Kirill Gavrilov, 2007-2016</string>
7
    <key>CFBundleIdentifier</key>
8
    <string>com.sView</string>
9
    <key>CFBundleInfoDictionaryVersion</key>
10
sview-15_11.tar.gz/sview/Resources/English.lproj/MainMenu.xib -> sview-16_06.tar.gz/sview/Resources/English.lproj/MainMenu.xib Changed
10
 
1
@@ -228,7 +228,7 @@
2
                            <object class="NSTextFieldCell" key="NSCell" id="955175397">
3
                                <int key="NSCellFlags">70385217</int>
4
                                <int key="NSCellFlags2">138544128</int>
5
-                               <string key="NSContents">Copyright © Kirill Gavrilov, 2007-2015www.sview.ru</string>
6
+                               <string key="NSContents">Copyright © Kirill Gavrilov, 2007-2016www.sview.ru</string>
7
                                <object class="NSFont" key="NSSupport" id="26">
8
                                    <string key="NSName">LucidaGrande</string>
9
                                    <double key="NSSize">11</double>
10
sview-15_11.tar.gz/sview/StMultiApp.cpp -> sview-16_06.tar.gz/sview/StMultiApp.cpp Changed
19
 
1
@@ -17,7 +17,7 @@
2
 static StString getAbout() {
3
     StString anAboutString =
4
         StString("sView ") + StVersionInfo::getSDKVersionString() + '\n'
5
-        + "Copyright (C) 2007-2015 Kirill Gavrilov (kirill@sview.ru).\n"
6
+        + "Copyright (C) 2007-2016 Kirill Gavrilov (kirill@sview.ru).\n"
7
         + "Usage: sView [options] - file\n"
8
         + "Available options:\n"
9
           "  --fullscreen         Open fullscreen\n"
10
@@ -31,7 +31,7 @@
11
           "  --slideshow          Start slideshow\n"
12
           "  --last               Open last file\n"
13
           "  --paused             Open file in paused state\n"
14
-          "  --in=image,video     Application to open (predefined values: image, video, diag, cad)\n"
15
+          "  --in=image,video     Application to open (predefined values: image, video, diag)\n"
16
           "  --out=RENDERER       Stereoscopic output module (auto, StOutAnaglyph, StOutDual,...)\n"
17
           "  --imageLib=IMGLIB    Setup 3rd-party library for image processing (FFmpeg, FreeImage, DevIL)\n"
18
           "  --viewMode=MODE      View mode (flat, sphere)\n"
19
sview-15_11.tar.gz/sview/jni/main.cpp -> sview-16_06.tar.gz/sview/jni/main.cpp Changed
27
 
1
@@ -1,7 +1,7 @@
2
 /**
3
  * This is source code for sView
4
  *
5
- * Copyright © Kirill Gavrilov, 2014-2015
6
+ * Copyright © Kirill Gavrilov, 2014-2016
7
  */
8
 
9
 #if defined(__ANDROID__)
10
@@ -9,6 +9,7 @@
11
 #include <jni.h>
12
 
13
 #include <StCore/StAndroidGlue.h>
14
+#include <StCore/StAndroidResourceManager.h>
15
 
16
 #include "../../StImageViewer/StImageViewer.h"
17
 #include "../StImageViewer/StImagePluginInfo.h"
18
@@ -55,7 +56,7 @@
19
         anInfo->setPath(myDndPath);
20
         myDndPath.clear();
21
 
22
-        StHandle<StResourceManager> aResMgr = new StResourceManager(myActivity->assetManager);
23
+        StHandle<StResourceManager> aResMgr = new StAndroidResourceManager(this);
24
         aResMgr->setFolder(StResourceManager::FolderId_SdCard,
25
                            getStoragePath(myThJniEnv, "sdcard"));
26
         aResMgr->setFolder(StResourceManager::FolderId_Downloads,
27
sview-16_06.tar.gz/sview/main.ObjC.mm Changed
2
 
1
(renamed from sview/main.mm)
2
sview-15_11.tar.gz/sview/sViewMake.cbp -> sview-16_06.tar.gz/sview/sViewMake.cbp Changed
21
 
1
@@ -37,6 +37,19 @@
2
                    <SilentBuild command="$make --directory=$(PROJECT_DIRECTORY).. -f $makefile android &gt; $(CMD_NULL)" />
3
                </MakeCommands>
4
            </Target>
5
+           <Target title="make_android_cad">
6
+               <Option output="sViewAndroidCad" prefix_auto="1" extension_auto="1" />
7
+               <Option type="0" />
8
+               <Option compiler="gcc" />
9
+               <MakeCommands>
10
+                   <Build command="$make -j6 --directory=$(PROJECT_DIRECTORY).. -f $makefile android_cad" />
11
+                   <CompileFile command="$make --directory=$(PROJECT_DIRECTORY).. -f $makefile $file" />
12
+                   <Clean command="$make --directory=$(PROJECT_DIRECTORY).. -f $makefile clean" />
13
+                   <DistClean command="$make --directory=$(PROJECT_DIRECTORY).. -f $makefile distclean$target" />
14
+                   <AskRebuildNeeded command="$make -j6 --directory=$(PROJECT_DIRECTORY).. -q -f $makefile android_cad" />
15
+                   <SilentBuild command="$make --directory=$(PROJECT_DIRECTORY).. -f $makefile android_cad &gt; $(CMD_NULL)" />
16
+               </MakeCommands>
17
+           </Target>
18
        </Build>
19
        <Unit filename="../Makefile" />
20
        <Extensions>
21
sview-15_11.tar.gz/sview/src/com/sview/StActivity.java -> sview-16_06.tar.gz/sview/src/com/sview/StActivity.java Changed
266
 
1
@@ -1,10 +1,13 @@
2
 /**
3
  * This is source code for sView
4
  *
5
- * Copyright © Kirill Gavrilov, 2014
6
+ * Copyright © Kirill Gavrilov, 2014-2016
7
  */
8
 package com.sview;
9
 
10
+import java.io.FileNotFoundException;
11
+import java.io.IOException;
12
+
13
 import android.app.Activity;
14
 import android.app.AlertDialog;
15
 import android.app.NativeActivity;
16
@@ -17,6 +20,7 @@
17
 import android.hardware.SensorEventListener;
18
 import android.hardware.SensorManager;
19
 import android.os.Bundle;
20
+import android.view.SurfaceHolder;
21
 import android.widget.Toast;
22
 
23
 /**
24
@@ -85,11 +89,11 @@
25
         if(!loadLibVerbose("gnustl_shared",   theInfo)
26
         //|| !loadLibVerbose("config++",        theInfo)
27
         || !loadLibVerbose("freetype",        theInfo)
28
-        || !loadLibVerbose("avutil-54",       theInfo)
29
-        || !loadLibVerbose("swresample-1",    theInfo)
30
-        || !loadLibVerbose("avcodec-56",      theInfo)
31
-        || !loadLibVerbose("avformat-56",     theInfo)
32
-        || !loadLibVerbose("swscale-3",       theInfo)
33
+        || !loadLibVerbose("avutil-55",       theInfo)
34
+        || !loadLibVerbose("swresample-2",    theInfo)
35
+        || !loadLibVerbose("avcodec-57",      theInfo)
36
+        || !loadLibVerbose("avformat-57",     theInfo)
37
+        || !loadLibVerbose("swscale-4",       theInfo)
38
         || !loadLibVerbose("openal",          theInfo)
39
         || !loadLibVerbose("StShared",        theInfo)
40
         || !loadLibVerbose("StGLWidgets",     theInfo)
41
@@ -131,10 +135,11 @@
42
         mySensorOri = mySensorMgr.getDefaultSensor(Sensor.TYPE_ROTATION_VECTOR);
43
         if(mySensorOri == null) {
44
             myIsPoorOri = true;
45
-            mySensorOri = mySensorMgr.getDefaultSensor(Sensor.TYPE_ORIENTATION);
46
+            mySensorOri = mySensorMgr.getDefaultSensor(Sensor_TYPE_ORIENTATION_DEPRECATED);
47
         } else {
48
             myIsPoorOri = mySensorMgr.getDefaultSensor(Sensor.TYPE_GYROSCOPE) == null;
49
         }
50
+        myS3dvSurf = new StS3dvSurface();
51
         super.onCreate(theSavedInstanceState);
52
     }
53
 
54
@@ -179,6 +184,36 @@
55
         }
56
     }
57
 
58
+    @Override
59
+    public void surfaceCreated(SurfaceHolder theHolder) {
60
+        super.surfaceCreated(theHolder);
61
+        myS3dvSurf.setSurface(theHolder);
62
+        myS3dvSurf.setStereo(myToEnableStereoHW);
63
+    }
64
+
65
+    @Override
66
+    public void surfaceChanged(SurfaceHolder theHolder, int theFormat, int theWidth, int theHeight) {
67
+        if(myCppGlue != 0) {
68
+            cppOnBeforeSurfaceChanged(myCppGlue, true);
69
+        }
70
+        super.surfaceChanged(theHolder, theFormat, theWidth, theHeight);
71
+        if(myCppGlue != 0) {
72
+            cppOnBeforeSurfaceChanged(myCppGlue, false);
73
+        }
74
+        myS3dvSurf.setSurface(theHolder);
75
+        myS3dvSurf.setStereo(myToEnableStereoHW);
76
+    }
77
+
78
+    @Override
79
+    public void surfaceRedrawNeeded(SurfaceHolder theHolder) {
80
+        super.surfaceRedrawNeeded(theHolder);
81
+    }
82
+
83
+    @Override
84
+    public void surfaceDestroyed(SurfaceHolder theHolder) {
85
+        super.surfaceDestroyed(theHolder);
86
+    }
87
+
88
 //endregion
89
 
90
 //region Implementation of SensorEventListener interface
91
@@ -204,7 +239,7 @@
92
         }
93
 
94
         switch(theEvent.sensor.getType()) {
95
-            case Sensor.TYPE_ORIENTATION: {
96
+            case Sensor_TYPE_ORIENTATION_DEPRECATED: {
97
                 cppSetOrientation(myCppGlue, theEvent.values[0], theEvent.values[1], theEvent.values[2], aScreenRot);
98
                 return;
99
             }
100
@@ -221,6 +256,88 @@
101
 //region Auxiliary methods
102
 
103
     /**
104
+     * Read the open path from current intent and nullify it.
105
+     * This method is called by StAndroidGlue from C++.
106
+     */
107
+    protected void readOpenPath() {
108
+        if(myCppGlue == 0) {
109
+            return;
110
+        }
111
+
112
+        Intent anIntent = getIntent();
113
+        setIntent(null);
114
+        if(anIntent == null) {
115
+            cppSetOpenPath(myCppGlue, "", "", false);
116
+            return;
117
+        }
118
+
119
+        String anOpenPath = anIntent.getDataString();
120
+        String anOpenMime = anIntent.getType();
121
+        boolean isLaunchedFromHistory = (anIntent.getFlags() & Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY) != 0;
122
+        android.net.Uri aContentUri = null;
123
+        if("content".equals(anIntent.getScheme())) {
124
+            aContentUri = anIntent.getData();
125
+        }
126
+        if(Intent.ACTION_SEND.equals(anIntent.getAction())) {
127
+            aContentUri = anIntent.getParcelableExtra(Intent.EXTRA_STREAM);
128
+            if(aContentUri != null) {
129
+                anOpenPath = aContentUri.toString();
130
+            }
131
+        }
132
+
133
+        if(aContentUri != null) {
134
+            android.content.ContentResolver aContentResolver = getContentResolver();
135
+            try {
136
+                // Resolve the real file path from symlink in /proc.
137
+                // The full path is much simpler to handle within C++ level
138
+                // and allows to fill playlist from folder content.
139
+                android.os.ParcelFileDescriptor aParcelFile = aContentResolver.openFileDescriptor(aContentUri, "r");
140
+                String aFilePathInProc = "/proc/self/fd/" + aParcelFile.getFd();
141
+                java.io.File aFileSymLink = new java.io.File(aFilePathInProc);
142
+                String aCanonicalPath = aFileSymLink.getCanonicalPath();
143
+                java.io.File aFileCanonical = new java.io.File(aCanonicalPath);
144
+                if(aFileCanonical.canRead()) {
145
+                    // take the real file when it is accessible by process
146
+                    anOpenPath = aCanonicalPath;
147
+                }
148
+                // otherwise file should be read using opened file descriptor
149
+            } catch(FileNotFoundException e) {
150
+                //e.printStackTrace();
151
+            } catch(IOException e) {
152
+                //e.printStackTrace();
153
+            } catch(SecurityException e) {
154
+                //e.printStackTrace();
155
+            }
156
+        }
157
+
158
+        cppSetOpenPath(myCppGlue, anOpenPath, anOpenMime, isLaunchedFromHistory);
159
+    }
160
+
161
+    /**
162
+     * Open file descriptor for specified path, including content:// URLs.
163
+     * This method is called by StAndroidGlue from C++.
164
+     * @return file descriptor, which should be closed by caller, or -1 on error
165
+     */
166
+    protected int openFileDescriptor(String thePath) {
167
+        if(thePath.isEmpty()) {
168
+            return -1;
169
+        }
170
+
171
+        android.content.ContentResolver aContentResolver = getContentResolver();
172
+        android.net.Uri anUri = android.net.Uri.parse(thePath);
173
+        try {
174
+            android.os.ParcelFileDescriptor aParcelFile = aContentResolver.openFileDescriptor(anUri, "r");
175
+            return aParcelFile.detachFd();
176
+        } catch(FileNotFoundException e) {
177
+            //e.printStackTrace();
178
+        } catch(SecurityException e) {
179
+            //e.printStackTrace();
180
+        }
181
+
182
+        return -1;
183
+    }
184
+
185
+    /**
186
      * Wrapper to turn orientation sensor on/off (regardless off myToTrackOrient flag).
187
      */
188
     protected void updateTrackOrientation(boolean theToTrack) {
189
@@ -247,6 +364,30 @@
190
     }
191
 
192
     /**
193
+     * Method returning identifier of stereo API available on Android device.
194
+     */
195
+    public String getStereoApiInfo() {
196
+        if(StS3dvSurface.isApiAvailable()) {
197
+            return "S3DV";
198
+        }
199
+        return null;
200
+    }
201
+
202
+    /**
203
+     * Method to turn stereo output on or off.
204
+     */
205
+    public void setHardwareStereoOn(boolean theToEnable) {
206
+        final boolean toEnable = theToEnable;
207
+        this.runOnUiThread (new Runnable() { public void run() {
208
+            if(myToEnableStereoHW == toEnable) {
209
+                return;
210
+            }
211
+            myToEnableStereoHW = toEnable;
212
+            myS3dvSurf.setStereo(toEnable);
213
+        }});
214
+    }
215
+
216
+    /**
217
      * Method is called when StAndroidGlue has been created (BEFORE starting application thread!)
218
      * or during destruction.
219
      */
220
@@ -320,11 +461,25 @@
221
 //region Methods to call C++ code
222
 
223
     /**
224
+     * Setup open path.
225
+     */
226
+    private native void cppSetOpenPath(long theCppPtr,
227
+                                       String theOpenPath,
228
+                                       String theMimeType,
229
+                                       boolean theIsLaunchedFromHistory);
230
+
231
+    /**
232
      * Redirect back button to C++ level.
233
      */
234
     private native void cppOnBackPressed(long theCppPtr);
235
 
236
     /**
237
+     * Called within surfaceChanged() call before passing to NativeActivity.
238
+     */
239
+    private native void cppOnBeforeSurfaceChanged(long theCppPtr,
240
+                                                  boolean theIsBefore);
241
+
242
+    /**
243
      * Define device orientation sensor.
244
      */
245
     private native void cppDefineOrientationSensor(long theCppPtr,
246
@@ -347,6 +502,9 @@
247
 
248
 //endregion
249
 
250
+    @SuppressWarnings("deprecation")
251
+    protected static final int Sensor_TYPE_ORIENTATION_DEPRECATED = Sensor.TYPE_ORIENTATION;
252
+
253
 //region class fields
254
 
255
     protected ContextWrapper myContext;
256
@@ -357,6 +515,9 @@
257
     protected boolean        myToTrackOrient = false;
258
     protected long           myCppGlue = 0; //!< pointer to c++ class StAndroidGlue instance
259
 
260
+    protected StS3dvSurface  myS3dvSurf = null;
261
+    protected boolean        myToEnableStereoHW = false;
262
+
263
 //endregion
264
 
265
 }
266
sview-16_06.tar.gz/sview/src/com/sview/StS3dvSurface.java Added
130
 
1
@@ -0,0 +1,128 @@
2
+/**
3
+ * This is source code for sView
4
+ *
5
+ * Copyright © Kirill Gavrilov, 2016
6
+ */
7
+package com.sview;
8
+
9
+import java.lang.reflect.Constructor;
10
+import java.lang.reflect.InvocationTargetException;
11
+import java.lang.reflect.Method;
12
+
13
+import android.view.SurfaceHolder;
14
+
15
+/**
16
+ * Wrapping class.
17
+ */
18
+public class StS3dvSurface {
19
+
20
+    public int S3DV_MODE_MONO             = 0;
21
+    public int S3DV_MODE_PARALLEL_PAIR    = 1;
22
+    public int S3DV_MODE_COLUMN_INTERLACE = 3;
23
+
24
+    public boolean isValid() { return mySurf != null; }
25
+
26
+    /**
27
+     * Check library availability without instantiation.
28
+     */
29
+    public static boolean isApiAvailable() {
30
+        ClassLoader aClassLoader = StS3dvSurface.class.getClassLoader();
31
+        try {
32
+            Class<?> anS3dvClass = aClassLoader.loadClass("com.s3dv.s3dvsurface.S3DVSurface");
33
+            anS3dvClass.getConstructor(SurfaceHolder.class);
34
+            anS3dvClass.getMethod("SetV3DType", int.class, int.class, int.class);
35
+            return true;
36
+        } catch(ClassNotFoundException theEx) {
37
+            return false;
38
+        } catch(NoSuchMethodException theEx) {
39
+            return false;
40
+        } catch(IllegalArgumentException theEx) {
41
+            return false;
42
+        }
43
+    }
44
+
45
+    /**
46
+     * Main constructor.
47
+     */
48
+    public StS3dvSurface() {
49
+        ClassLoader aClassLoader = StS3dvSurface.class.getClassLoader();
50
+        try {
51
+            Class<?> anS3dvClass = aClassLoader.loadClass("com.s3dv.s3dvsurface.S3DVSurface");
52
+            mySetV3DType = anS3dvClass.getMethod("SetV3DType", int.class, int.class, int.class);
53
+        } catch(ClassNotFoundException theEx) {
54
+            //theEx.printStackTrace();
55
+        } catch(NoSuchMethodException theEx) {
56
+            theEx.printStackTrace();
57
+        } catch(IllegalArgumentException theEx) {
58
+            theEx.printStackTrace();
59
+        }
60
+    }
61
+
62
+    /**
63
+     * Setup surface.
64
+     */
65
+    public void setSurface(SurfaceHolder theHolder) {
66
+        if(mySetV3DType == null) {
67
+            return;
68
+        }
69
+
70
+        if(mySurf != null && myStereoIsOn) {
71
+            // we don't care about old surface
72
+            //setStereo(false);
73
+        }
74
+        mySurf = null;
75
+
76
+        ClassLoader aClassLoader = StS3dvSurface.class.getClassLoader();
77
+        try {
78
+            Class<?> anS3dvClass = aClassLoader.loadClass("com.s3dv.s3dvsurface.S3DVSurface");
79
+            Constructor<?> anS3dvConstr = anS3dvClass.getConstructor(SurfaceHolder.class);
80
+            mySurf       = anS3dvConstr.newInstance(theHolder);
81
+        } catch(ClassNotFoundException theEx) {
82
+            //theEx.printStackTrace();
83
+        } catch(NoSuchMethodException theEx) {
84
+            theEx.printStackTrace();
85
+        } catch(IllegalArgumentException theEx) {
86
+            theEx.printStackTrace();
87
+        } catch(InstantiationException theEx) {
88
+            theEx.printStackTrace();
89
+        } catch(IllegalAccessException theEx) {
90
+            theEx.printStackTrace();
91
+        } catch(InvocationTargetException theEx) {
92
+            theEx.printStackTrace();
93
+        }
94
+
95
+        if(myStereoIsOn) {
96
+            setStereo(true);
97
+        }
98
+    }
99
+
100
+    /**
101
+     * Setup stereo input.
102
+     */
103
+    void setStereo(boolean theIsOn) {
104
+        myStereoIsOn = theIsOn;
105
+        if(mySurf == null) {
106
+            return;
107
+        }
108
+
109
+        try {
110
+            if(theIsOn) {
111
+                mySetV3DType.invoke(mySurf, S3DV_MODE_PARALLEL_PAIR, S3DV_MODE_COLUMN_INTERLACE, 0);
112
+                //mySetV3DType.invoke(mySurf, S3DV_MODE_COLUMN_INTERLACE, S3DV_MODE_COLUMN_INTERLACE, 0);
113
+            } else {
114
+                mySetV3DType.invoke(mySurf, S3DV_MODE_MONO, S3DV_MODE_MONO, 0);
115
+            }
116
+        } catch(IllegalArgumentException theEx) {
117
+            theEx.printStackTrace();
118
+        } catch(IllegalAccessException theEx) {
119
+            theEx.printStackTrace();
120
+        } catch(InvocationTargetException theEx) {
121
+            theEx.printStackTrace();
122
+        }
123
+    }
124
+
125
+    Object  mySurf       = null;
126
+    Method  mySetV3DType = null;
127
+    boolean myStereoIsOn = false;
128
+
129
+}
130
sview-15_11.tar.gz/sview/sview.cbp -> sview-16_06.tar.gz/sview/sview.cbp Changed
26
 
1
@@ -173,6 +173,7 @@
2
                    <Add option="-DST_HAVE_STCONFIG" />
3
                </Compiler>
4
                <Linker>
5
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
6
                    <Add option="-s" />
7
                    <Add option="-framework Appkit" />
8
                    <Add library="objc" />
9
@@ -201,6 +202,7 @@
10
                    <Add option="-DST_HAVE_STCONFIG" />
11
                </Compiler>
12
                <Linker>
13
+                   <Add directory="$(TARGET_OUTPUT_DIR)" />
14
                    <Add option="-framework Appkit" />
15
                    <Add library="objc" />
16
                </Linker>
17
@@ -260,7 +262,7 @@
18
            <Option target="LINUX_gcc" />
19
            <Option target="LINUX_gcc_DEBUG" />
20
        </Unit>
21
-       <Unit filename="main.mm">
22
+       <Unit filename="main.ObjC.mm">
23
            <Option compile="1" />
24
            <Option link="1" />
25
            <Option target="MAC_gcc" />
26
sview-15_11.tar.gz/sview/sview.rc -> sview-16_06.tar.gz/sview/sview.rc Changed
10
 
1
@@ -16,7 +16,7 @@
2
     BEGIN
3
       VALUE "FileDescription", "sView\000"
4
       VALUE "FileVersion", SVIEW_SDK_VER_STRING "\000"
5
-      VALUE "LegalCopyright", "\251 2007-2015 Kirill Gavrilov\000"
6
+      VALUE "LegalCopyright", "\251 2007-2016 Kirill Gavrilov\000"
7
       VALUE "ProductName", "sView\000"
8
       VALUE "ProductVersion", SVIEW_SDK_VER_STRING "\000"
9
       VALUE "OfficialSite", "www.sview.ru\000"
10
sview-15_11.tar.gz/sview/sview.vcxproj -> sview-16_06.tar.gz/sview/sview.vcxproj Changed
21
 
1
@@ -21,7 +21,7 @@
2
   <PropertyGroup Label="Globals">
3
     <ProjectGuid>{F5F3BCE6-B5AE-4A6F-9C86-33E212980905}</ProjectGuid>
4
   </PropertyGroup>
5
-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
6
+  <Import Project="$(SolutionDir)sView.Cpp.Default.props" />
7
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
8
     <ConfigurationType>Application</ConfigurationType>
9
     <CharacterSet>Unicode</CharacterSet>
10
@@ -222,6 +222,10 @@
11
     <ClCompile Include="StMultiApp.cpp" />
12
   </ItemGroup>
13
   <ItemGroup>
14
+    <ClInclude Include="StAppResponder.h" />
15
+    <ClInclude Include="StMultiApp.h" />
16
+  </ItemGroup>
17
+  <ItemGroup>
18
     <ResourceCompile Include="sview.rc" />
19
   </ItemGroup>
20
   <ItemGroup>
21
sview-15_11.tar.gz/sview/sview.vcxproj.filters -> sview-16_06.tar.gz/sview/sview.vcxproj.filters Changed
26
 
1
@@ -1,17 +1,14 @@
2
 <?xml version="1.0" encoding="utf-8"?>
3
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
   <ItemGroup>
5
-    <Filter Include="Source files">
6
-      <UniqueIdentifier>{CACACF6C-18DA-13DF-148A-3C969CC3F588}</UniqueIdentifier>
7
+    <Filter Include="Source Files">
8
+      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
9
+      <Extensions>cpp;c;cc;cxx;m;mm;def;odl;idl;hpj;bat;asm;asmx</Extensions>
10
+    </Filter>
11
+    <Filter Include="Header Files">
12
+      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
13
+      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
14
     </Filter>
15
-  </ItemGroup>
16
-  <ItemGroup>
17
-    <ClCompile Include="main.cpp">
18
-      <Filter>Source files</Filter>
19
-    </ClCompile>
20
-    <ClCompile Include="StMultiApp.cpp">
21
-      <Filter>Source files</Filter>
22
-    </ClCompile>
23
   </ItemGroup>
24
   <ItemGroup>
25
     <ResourceCompile Include="sview.rc" />
26
sview-16_06.tar.gz/textures/actionFitAll128.png Added
sview-16_06.tar.gz/textures/actionFitAll144.png Added
sview-16_06.tar.gz/textures/actionFitAll16.png Added
sview-16_06.tar.gz/textures/actionFitAll192.png Added
sview-16_06.tar.gz/textures/actionFitAll24.png Added
sview-16_06.tar.gz/textures/actionFitAll256.png Added
sview-16_06.tar.gz/textures/actionFitAll32.png Added
sview-16_06.tar.gz/textures/actionFitAll48.png Added
sview-16_06.tar.gz/textures/actionFitAll64.png Added
sview-16_06.tar.gz/textures/actionFitAll72.png Added
sview-16_06.tar.gz/textures/actionFitAll96.png Added
sview-16_06.tar.gz/textures/actionStereo3dSettings128.png Added
sview-16_06.tar.gz/textures/actionStereo3dSettings144.png Added
sview-16_06.tar.gz/textures/actionStereo3dSettings16.png Added
sview-16_06.tar.gz/textures/actionStereo3dSettings192.png Added
sview-16_06.tar.gz/textures/actionStereo3dSettings24.png Added
sview-16_06.tar.gz/textures/actionStereo3dSettings256.png Added
sview-16_06.tar.gz/textures/actionStereo3dSettings32.png Added
sview-16_06.tar.gz/textures/actionStereo3dSettings48.png Added
sview-16_06.tar.gz/textures/actionStereo3dSettings64.png Added
sview-16_06.tar.gz/textures/actionStereo3dSettings72.png Added
sview-16_06.tar.gz/textures/actionStereo3dSettings96.png Added
sview-16_06.tar.gz/texturesSrc/actionFitAll.svg Added
76
 
1
@@ -0,0 +1,74 @@
2
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
4
+
5
+<svg
6
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
7
+   xmlns:cc="http://creativecommons.org/ns#"
8
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
9
+   xmlns:svg="http://www.w3.org/2000/svg"
10
+   xmlns="http://www.w3.org/2000/svg"
11
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+   width="32"
14
+   height="32"
15
+   id="svg2"
16
+   version="1.1"
17
+   inkscape:version="0.48.5 r10040"
18
+   sodipodi:docname="actionFitAll.svg"
19
+   inkscape:export-filename="actionFitAll.png"
20
+   inkscape:export-xdpi="90"
21
+   inkscape:export-ydpi="90">
22
+  <defs
23
+     id="defs4">
24
+    <path
25
+       id="a"
26
+       d="M0 0h24v24H0z" />
27
+  </defs>
28
+  <sodipodi:namedview
29
+     id="base"
30
+     pagecolor="#ffffff"
31
+     bordercolor="#666666"
32
+     borderopacity="1.0"
33
+     inkscape:pageopacity="1"
34
+     inkscape:pageshadow="2"
35
+     inkscape:zoom="8"
36
+     inkscape:cx="-1.6362866"
37
+     inkscape:cy="8.6184424"
38
+     inkscape:document-units="px"
39
+     inkscape:current-layer="layer1"
40
+     showgrid="false"
41
+     inkscape:window-width="1920"
42
+     inkscape:window-height="954"
43
+     inkscape:window-x="2551"
44
+     inkscape:window-y="-9"
45
+     inkscape:window-maximized="1" />
46
+  <metadata
47
+     id="metadata7">
48
+    <rdf:RDF>
49
+      <cc:Work
50
+         rdf:about="">
51
+        <dc:format>image/svg+xml</dc:format>
52
+        <dc:type
53
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
54
+        <dc:title />
55
+      </cc:Work>
56
+    </rdf:RDF>
57
+  </metadata>
58
+  <g
59
+     inkscape:label="Layer 1"
60
+     inkscape:groupmode="layer"
61
+     id="layer1"
62
+     transform="translate(0,-1020.3622)">
63
+    <path
64
+       d="m 0,1020.3622 h 32 v 32 H 0 z"
65
+       id="path5998"
66
+       inkscape:connector-curvature="0"
67
+       style="fill:none" />
68
+    <path
69
+       style="fill:#000000"
70
+       inkscape:connector-curvature="0"
71
+       clip-path="url(#b)"
72
+       d="m 20,1024.3622 3.066666,3.0667 -3.853333,3.8266 1.893333,1.8934 3.826667,-3.8534 L 28,1032.3622 v -8 z m -15.9999995,8 3.066666,-3.0667 3.8266665,3.8534 1.893333,-1.8934 -3.8533325,-3.8266 L 12,1024.3622 H 4.0000005 z m 7.9999995,16 -3.0666665,-3.0667 3.8533325,-3.8266 -1.893333,-1.8934 -3.8266665,3.8534 -3.066666,-3.0667 v 8 z m 16,-8 -3.066667,3.0667 -3.826667,-3.8534 -1.893333,1.8934 3.853333,3.8266 L 20,1048.3622 h 7.999999 z"
73
+       id="path3035" />
74
+  </g>
75
+</svg>
76
sview-16_06.tar.gz/texturesSrc/actionStereo3dSettings.svg Added
71
 
1
@@ -0,0 +1,69 @@
2
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
4
+
5
+<svg
6
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
7
+   xmlns:cc="http://creativecommons.org/ns#"
8
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
9
+   xmlns:svg="http://www.w3.org/2000/svg"
10
+   xmlns="http://www.w3.org/2000/svg"
11
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+   width="32"
14
+   height="32"
15
+   id="svg2"
16
+   version="1.1"
17
+   inkscape:version="0.48.5 r10040"
18
+   sodipodi:docname="actionStereo3dSettings.svg"
19
+   inkscape:export-filename="actionStereo3dSettings.png"
20
+   inkscape:export-xdpi="90"
21
+   inkscape:export-ydpi="90">
22
+  <defs
23
+     id="defs4" />
24
+  <sodipodi:namedview
25
+     id="base"
26
+     pagecolor="#ffffff"
27
+     bordercolor="#666666"
28
+     borderopacity="1.0"
29
+     inkscape:pageopacity="1"
30
+     inkscape:pageshadow="2"
31
+     inkscape:zoom="16"
32
+     inkscape:cx="24.392341"
33
+     inkscape:cy="17.431687"
34
+     inkscape:document-units="px"
35
+     inkscape:current-layer="layer1"
36
+     showgrid="false"
37
+     inkscape:window-width="1471"
38
+     inkscape:window-height="990"
39
+     inkscape:window-x="2685"
40
+     inkscape:window-y="6"
41
+     inkscape:window-maximized="0" />
42
+  <metadata
43
+     id="metadata7">
44
+    <rdf:RDF>
45
+      <cc:Work
46
+         rdf:about="">
47
+        <dc:format>image/svg+xml</dc:format>
48
+        <dc:type
49
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
50
+        <dc:title />
51
+      </cc:Work>
52
+    </rdf:RDF>
53
+  </metadata>
54
+  <g
55
+     inkscape:label="Layer 1"
56
+     inkscape:groupmode="layer"
57
+     id="layer1"
58
+     transform="translate(0,-1020.3622)">
59
+    <path
60
+       d="m 0,1020.3622 h 32 v 32 H 0 z"
61
+       id="path6"
62
+       inkscape:connector-curvature="0"
63
+       style="fill:none" />
64
+    <path
65
+       d="M 25.333333,1024.3622 H 6.666667 C 5.2,1024.3622 4,1025.5622 4,1027.0289 v 18.6666 c 0,1.4667 1.2,2.6667 2.666667,2.6667 H 25.333333 C 26.8,1048.3622 28,1047.1622 28,1045.6955 v -18.6666 c 0,-1.4667 -1.2,-2.6667 -2.666667,-2.6667 z m -18,6 H 10 v -2.6667 h 2 v 2.6667 h 2.666667 v 2 H 12 v 2.6667 h -2 v -2.6667 H 7.333333 v -2 z m 18,15.3333 H 6.666667 l 18.666666,-18.6666 v 18.6666 z m -2.666666,-2.6666 v -2 H 16 v 2 h 6.666667 z"
66
+       id="path6-7"
67
+       inkscape:connector-curvature="0"
68
+       style="fill:#000000;fill-opacity:1;stroke:none" />
69
+  </g>
70
+</svg>
71
sview-15_11.tar.gz/workspace.workspace -> sview-16_06.tar.gz/workspace.workspace Changed
19
 
1
@@ -65,17 +65,6 @@
2
            <Depends filename="StOutPageFlip/StOutPageFlip.cbp" />
3
            <Depends filename="StOutDistorted/StOutDistorted.cbp" />
4
        </Project>
5
-       <Project filename="StCADViewer/StCADViewer.cbp" >
6
-           <Depends filename="StShared/StShared.cbp" />
7
-           <Depends filename="StGLWidgets/StGLWidgets.cbp" />
8
-           <Depends filename="StCore/StCore.cbp" />
9
-           <Depends filename="StOutAnaglyph/StOutAnaglyph.cbp" />
10
-           <Depends filename="StOutDual/StOutDual.cbp" />
11
-           <Depends filename="StOutInterlace/StOutInterlace.cbp" />
12
-           <Depends filename="StOutIZ3D/StOutIZ3D.cbp" />
13
-           <Depends filename="StOutPageFlip/StOutPageFlip.cbp" />
14
-           <Depends filename="StOutDistorted/StOutDistorted.cbp" />
15
-       </Project>
16
        <Project filename="StMonitorsDump/StMonitorsDump.cbp">
17
            <Depends filename="StShared/StShared.cbp" />
18
        </Project>
19
Refresh

No build results available

Refresh

No rpmlint results available

Request History
Aliaksei Padvalski's avatar

awissu created request over 8 years ago


Aliaksei Padvalski's avatar

awissu accepted request over 8 years ago

Please add a comment