add support for btTriangleInfoMap serialization (needs testing)
This commit is contained in:
@@ -5,6 +5,11 @@
|
|||||||
#include "btBulletDynamicsCommon.h"
|
#include "btBulletDynamicsCommon.h"
|
||||||
#include "BulletCollision/Gimpact/btGImpactShape.h"
|
#include "BulletCollision/Gimpact/btGImpactShape.h"
|
||||||
|
|
||||||
|
//#define USE_INTERNAL_EDGE_UTILITY
|
||||||
|
#ifdef USE_INTERNAL_EDGE_UTILITY
|
||||||
|
#include "BulletCollision/CollisionDispatch/btInternalEdgeUtility.h"
|
||||||
|
#endif //USE_INTERNAL_EDGE_UTILITY
|
||||||
|
|
||||||
btBulletWorldImporter::btBulletWorldImporter(btDynamicsWorld* world)
|
btBulletWorldImporter::btBulletWorldImporter(btDynamicsWorld* world)
|
||||||
:m_dynamicsWorld(world),
|
:m_dynamicsWorld(world),
|
||||||
m_verboseDumpAllTypes(false)
|
m_verboseDumpAllTypes(false)
|
||||||
@@ -84,6 +89,19 @@ btTriangleIndexVertexArray* btBulletWorldImporter::createMeshInterface(btStridin
|
|||||||
return meshInterface;
|
return meshInterface;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef USE_INTERNAL_EDGE_UTILITY
|
||||||
|
extern ContactAddedCallback gContactAddedCallback;
|
||||||
|
|
||||||
|
static bool btAdjustInternalEdgeContactsCallback(btManifoldPoint& cp, const btCollisionObject* colObj0,int partId0,int index0,const btCollisionObject* colObj1,int partId1,int index1)
|
||||||
|
{
|
||||||
|
|
||||||
|
btAdjustInternalEdgeContacts(cp,colObj1,colObj0, partId1,index1);
|
||||||
|
//btAdjustInternalEdgeContacts(cp,colObj1,colObj0, partId1,index1, BT_TRIANGLE_CONVEX_BACKFACE_MODE);
|
||||||
|
//btAdjustInternalEdgeContacts(cp,colObj1,colObj0, partId1,index1, BT_TRIANGLE_CONVEX_DOUBLE_SIDED+BT_TRIANGLE_CONCAVE_DOUBLE_SIDED);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
#endif //USE_INTERNAL_EDGE_UTILITY
|
||||||
|
|
||||||
btCollisionShape* btBulletWorldImporter::convertCollisionShape( btCollisionShapeData* shapeData )
|
btCollisionShape* btBulletWorldImporter::convertCollisionShape( btCollisionShapeData* shapeData )
|
||||||
{
|
{
|
||||||
btCollisionShape* shape = 0;
|
btCollisionShape* shape = 0;
|
||||||
@@ -297,10 +315,22 @@ btCollisionShape* btBulletWorldImporter::convertCollisionShape( btCollisionShap
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
btCollisionShape* trimeshShape = createBvhTriangleMeshShape(meshInterface,bvh);
|
btBvhTriangleMeshShape* trimeshShape = createBvhTriangleMeshShape(meshInterface,bvh);
|
||||||
trimeshShape->setMargin(trimesh->m_collisionMargin);
|
trimeshShape->setMargin(trimesh->m_collisionMargin);
|
||||||
shape = trimeshShape;
|
shape = trimeshShape;
|
||||||
|
|
||||||
|
if (trimesh->m_triangleInfoMap)
|
||||||
|
{
|
||||||
|
btTriangleInfoMap* map = createTriangleInfoMap();
|
||||||
|
map->deSerialize(*trimesh->m_triangleInfoMap);
|
||||||
|
trimeshShape->setTriangleInfoMap(map);
|
||||||
|
|
||||||
|
#ifdef USE_INTERNAL_EDGE_UTILITY
|
||||||
|
gContactAddedCallback = btAdjustInternalEdgeContactsCallback;
|
||||||
|
#endif //USE_INTERNAL_EDGE_UTILITY
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
//printf("trimesh->m_collisionMargin=%f\n",trimesh->m_collisionMargin);
|
//printf("trimesh->m_collisionMargin=%f\n",trimesh->m_collisionMargin);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -393,6 +423,16 @@ bool btBulletWorldImporter::loadFileFromMemory( bParse::btBulletFile* bulletFil
|
|||||||
bool isDynamic = mass!=0.f;
|
bool isDynamic = mass!=0.f;
|
||||||
|
|
||||||
btRigidBody* body = createRigidBody(isDynamic,mass,startTransform,shape,colObjData->m_collisionObjectData.m_name);
|
btRigidBody* body = createRigidBody(isDynamic,mass,startTransform,shape,colObjData->m_collisionObjectData.m_name);
|
||||||
|
#ifdef USE_INTERNAL_EDGE_UTILITY
|
||||||
|
if (shape->getShapeType() == TRIANGLE_MESH_SHAPE_PROXYTYPE)
|
||||||
|
{
|
||||||
|
btBvhTriangleMeshShape* trimesh = (btBvhTriangleMeshShape*)shape;
|
||||||
|
if (trimesh->getTriangleInfoMap())
|
||||||
|
{
|
||||||
|
body->setCollisionFlags(body->getCollisionFlags() | btCollisionObject::CF_CUSTOM_MATERIAL_CALLBACK);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif //USE_INTERNAL_EDGE_UTILITY
|
||||||
bodyMap.insert(colObjData,body);
|
bodyMap.insert(colObjData,body);
|
||||||
} else
|
} else
|
||||||
{
|
{
|
||||||
@@ -418,6 +458,16 @@ bool btBulletWorldImporter::loadFileFromMemory( bParse::btBulletFile* bulletFil
|
|||||||
}
|
}
|
||||||
bool isDynamic = mass!=0.f;
|
bool isDynamic = mass!=0.f;
|
||||||
btRigidBody* body = createRigidBody(isDynamic,mass,startTransform,shape,colObjData->m_collisionObjectData.m_name);
|
btRigidBody* body = createRigidBody(isDynamic,mass,startTransform,shape,colObjData->m_collisionObjectData.m_name);
|
||||||
|
#ifdef USE_INTERNAL_EDGE_UTILITY
|
||||||
|
if (shape->getShapeType() == TRIANGLE_MESH_SHAPE_PROXYTYPE)
|
||||||
|
{
|
||||||
|
btBvhTriangleMeshShape* trimesh = (btBvhTriangleMeshShape*)shape;
|
||||||
|
if (trimesh->getTriangleInfoMap())
|
||||||
|
{
|
||||||
|
body->setCollisionFlags(body->getCollisionFlags() | btCollisionObject::CF_CUSTOM_MATERIAL_CALLBACK);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif //USE_INTERNAL_EDGE_UTILITY
|
||||||
bodyMap.insert(colObjData,body);
|
bodyMap.insert(colObjData,body);
|
||||||
} else
|
} else
|
||||||
{
|
{
|
||||||
@@ -438,6 +488,17 @@ bool btBulletWorldImporter::loadFileFromMemory( bParse::btBulletFile* bulletFil
|
|||||||
startTransform.deSerializeDouble(colObjData->m_worldTransform);
|
startTransform.deSerializeDouble(colObjData->m_worldTransform);
|
||||||
btCollisionShape* shape = (btCollisionShape*)*shapePtr;
|
btCollisionShape* shape = (btCollisionShape*)*shapePtr;
|
||||||
btCollisionObject* body = createCollisionObject(startTransform,shape,colObjData->m_name);
|
btCollisionObject* body = createCollisionObject(startTransform,shape,colObjData->m_name);
|
||||||
|
|
||||||
|
#ifdef USE_INTERNAL_EDGE_UTILITY
|
||||||
|
if (shape->getShapeType() == TRIANGLE_MESH_SHAPE_PROXYTYPE)
|
||||||
|
{
|
||||||
|
btBvhTriangleMeshShape* trimesh = (btBvhTriangleMeshShape*)shape;
|
||||||
|
if (trimesh->getTriangleInfoMap())
|
||||||
|
{
|
||||||
|
body->setCollisionFlags(body->getCollisionFlags() | btCollisionObject::CF_CUSTOM_MATERIAL_CALLBACK);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif //USE_INTERNAL_EDGE_UTILITY
|
||||||
bodyMap.insert(colObjData,body);
|
bodyMap.insert(colObjData,body);
|
||||||
} else
|
} else
|
||||||
{
|
{
|
||||||
@@ -454,6 +515,17 @@ bool btBulletWorldImporter::loadFileFromMemory( bParse::btBulletFile* bulletFil
|
|||||||
startTransform.deSerializeFloat(colObjData->m_worldTransform);
|
startTransform.deSerializeFloat(colObjData->m_worldTransform);
|
||||||
btCollisionShape* shape = (btCollisionShape*)*shapePtr;
|
btCollisionShape* shape = (btCollisionShape*)*shapePtr;
|
||||||
btCollisionObject* body = createCollisionObject(startTransform,shape,colObjData->m_name);
|
btCollisionObject* body = createCollisionObject(startTransform,shape,colObjData->m_name);
|
||||||
|
|
||||||
|
#ifdef USE_INTERNAL_EDGE_UTILITY
|
||||||
|
if (shape->getShapeType() == TRIANGLE_MESH_SHAPE_PROXYTYPE)
|
||||||
|
{
|
||||||
|
btBvhTriangleMeshShape* trimesh = (btBvhTriangleMeshShape*)shape;
|
||||||
|
if (trimesh->getTriangleInfoMap())
|
||||||
|
{
|
||||||
|
body->setCollisionFlags(body->getCollisionFlags() | btCollisionObject::CF_CUSTOM_MATERIAL_CALLBACK);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif //USE_INTERNAL_EDGE_UTILITY
|
||||||
bodyMap.insert(colObjData,body);
|
bodyMap.insert(colObjData,body);
|
||||||
} else
|
} else
|
||||||
{
|
{
|
||||||
@@ -771,7 +843,13 @@ btOptimizedBvh* btBulletWorldImporter::createOptimizedBvh()
|
|||||||
return new btOptimizedBvh();
|
return new btOptimizedBvh();
|
||||||
}
|
}
|
||||||
|
|
||||||
btCollisionShape* btBulletWorldImporter::createBvhTriangleMeshShape(btStridingMeshInterface* trimesh, btOptimizedBvh* bvh)
|
|
||||||
|
btTriangleInfoMap* btBulletWorldImporter::createTriangleInfoMap()
|
||||||
|
{
|
||||||
|
return new btTriangleInfoMap();
|
||||||
|
}
|
||||||
|
|
||||||
|
btBvhTriangleMeshShape* btBulletWorldImporter::createBvhTriangleMeshShape(btStridingMeshInterface* trimesh, btOptimizedBvh* bvh)
|
||||||
{
|
{
|
||||||
if (bvh)
|
if (bvh)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -37,6 +37,9 @@ class btStridingMeshInterface;
|
|||||||
struct btStridingMeshInterfaceData;
|
struct btStridingMeshInterfaceData;
|
||||||
class btGImpactMeshShape;
|
class btGImpactMeshShape;
|
||||||
class btOptimizedBvh;
|
class btOptimizedBvh;
|
||||||
|
struct btTriangleInfoMap;
|
||||||
|
class btBvhTriangleMeshShape;
|
||||||
|
|
||||||
|
|
||||||
namespace bParse
|
namespace bParse
|
||||||
{
|
{
|
||||||
@@ -115,8 +118,9 @@ public:
|
|||||||
virtual btCollisionShape* createCylinderShapeY(btScalar radius,btScalar height);
|
virtual btCollisionShape* createCylinderShapeY(btScalar radius,btScalar height);
|
||||||
virtual btCollisionShape* createCylinderShapeZ(btScalar radius,btScalar height);
|
virtual btCollisionShape* createCylinderShapeZ(btScalar radius,btScalar height);
|
||||||
virtual class btTriangleIndexVertexArray* createTriangleMeshContainer();
|
virtual class btTriangleIndexVertexArray* createTriangleMeshContainer();
|
||||||
virtual btCollisionShape* createBvhTriangleMeshShape(btStridingMeshInterface* trimesh, btOptimizedBvh* bvh);
|
virtual btBvhTriangleMeshShape* createBvhTriangleMeshShape(btStridingMeshInterface* trimesh, btOptimizedBvh* bvh);
|
||||||
virtual btOptimizedBvh* createOptimizedBvh();
|
virtual btOptimizedBvh* createOptimizedBvh();
|
||||||
|
virtual btTriangleInfoMap* createTriangleInfoMap();
|
||||||
virtual btCollisionShape* createConvexTriangleMeshShape(btStridingMeshInterface* trimesh);
|
virtual btCollisionShape* createConvexTriangleMeshShape(btStridingMeshInterface* trimesh);
|
||||||
virtual btGImpactMeshShape* createGimpactShape(btStridingMeshInterface* trimesh);
|
virtual btGImpactMeshShape* createGimpactShape(btStridingMeshInterface* trimesh);
|
||||||
virtual class btConvexHullShape* createConvexHullShape();
|
virtual class btConvexHullShape* createConvexHullShape();
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
unsigned char sBulletDNAstr64[]= {
|
unsigned char sBulletDNAstr64[]= {
|
||||||
83,68,78,65,78,65,77,69,-99,0,0,0,109,95,115,105,122,101,0,109,
|
83,68,78,65,78,65,77,69,-81,0,0,0,109,95,115,105,122,101,0,109,
|
||||||
95,99,97,112,97,99,105,116,121,0,42,109,95,100,97,116,97,0,109,95,
|
95,99,97,112,97,99,105,116,121,0,42,109,95,100,97,116,97,0,109,95,
|
||||||
99,111,108,108,105,115,105,111,110,83,104,97,112,101,115,0,109,95,99,111,
|
99,111,108,108,105,115,105,111,110,83,104,97,112,101,115,0,109,95,99,111,
|
||||||
108,108,105,115,105,111,110,79,98,106,101,99,116,115,0,109,95,99,111,110,
|
108,108,105,115,105,111,110,79,98,106,101,99,116,115,0,109,95,99,111,110,
|
||||||
@@ -48,223 +48,244 @@ unsigned char sBulletDNAstr64[]= {
|
|||||||
0,109,95,110,117,109,77,101,115,104,80,97,114,116,115,0,109,95,109,101,
|
0,109,95,110,117,109,77,101,115,104,80,97,114,116,115,0,109,95,109,101,
|
||||||
115,104,73,110,116,101,114,102,97,99,101,0,42,109,95,113,117,97,110,116,
|
115,104,73,110,116,101,114,102,97,99,101,0,42,109,95,113,117,97,110,116,
|
||||||
105,122,101,100,70,108,111,97,116,66,118,104,0,42,109,95,113,117,97,110,
|
105,122,101,100,70,108,111,97,116,66,118,104,0,42,109,95,113,117,97,110,
|
||||||
116,105,122,101,100,68,111,117,98,108,101,66,118,104,0,109,95,112,97,100,
|
116,105,122,101,100,68,111,117,98,108,101,66,118,104,0,42,109,95,116,114,
|
||||||
51,91,52,93,0,109,95,116,114,97,110,115,102,111,114,109,0,42,109,95,
|
105,97,110,103,108,101,73,110,102,111,77,97,112,0,109,95,112,97,100,51,
|
||||||
99,104,105,108,100,83,104,97,112,101,0,109,95,99,104,105,108,100,83,104,
|
91,52,93,0,109,95,116,114,97,110,115,102,111,114,109,0,42,109,95,99,
|
||||||
97,112,101,84,121,112,101,0,109,95,99,104,105,108,100,77,97,114,103,105,
|
104,105,108,100,83,104,97,112,101,0,109,95,99,104,105,108,100,83,104,97,
|
||||||
110,0,42,109,95,99,104,105,108,100,83,104,97,112,101,80,116,114,0,109,
|
112,101,84,121,112,101,0,109,95,99,104,105,108,100,77,97,114,103,105,110,
|
||||||
95,110,117,109,67,104,105,108,100,83,104,97,112,101,115,0,109,95,117,112,
|
0,42,109,95,99,104,105,108,100,83,104,97,112,101,80,116,114,0,109,95,
|
||||||
65,120,105,115,0,109,95,103,105,109,112,97,99,116,83,117,98,84,121,112,
|
110,117,109,67,104,105,108,100,83,104,97,112,101,115,0,109,95,117,112,65,
|
||||||
101,0,42,109,95,117,110,115,99,97,108,101,100,80,111,105,110,116,115,70,
|
120,105,115,0,109,95,102,108,97,103,115,0,109,95,101,100,103,101,86,48,
|
||||||
108,111,97,116,80,116,114,0,42,109,95,117,110,115,99,97,108,101,100,80,
|
86,49,65,110,103,108,101,0,109,95,101,100,103,101,86,49,86,50,65,110,
|
||||||
111,105,110,116,115,68,111,117,98,108,101,80,116,114,0,109,95,110,117,109,
|
103,108,101,0,109,95,101,100,103,101,86,50,86,48,65,110,103,108,101,0,
|
||||||
85,110,115,99,97,108,101,100,80,111,105,110,116,115,0,109,95,112,97,100,
|
42,109,95,104,97,115,104,84,97,98,108,101,80,116,114,0,42,109,95,110,
|
||||||
100,105,110,103,51,91,52,93,0,42,109,95,98,114,111,97,100,112,104,97,
|
101,120,116,80,116,114,0,42,109,95,118,97,108,117,101,65,114,114,97,121,
|
||||||
115,101,72,97,110,100,108,101,0,42,109,95,99,111,108,108,105,115,105,111,
|
80,116,114,0,42,109,95,107,101,121,65,114,114,97,121,80,116,114,0,109,
|
||||||
110,83,104,97,112,101,0,42,109,95,114,111,111,116,67,111,108,108,105,115,
|
95,99,111,110,118,101,120,69,112,115,105,108,111,110,0,109,95,112,108,97,
|
||||||
105,111,110,83,104,97,112,101,0,109,95,119,111,114,108,100,84,114,97,110,
|
110,97,114,69,112,115,105,108,111,110,0,109,95,101,113,117,97,108,86,101,
|
||||||
115,102,111,114,109,0,109,95,105,110,116,101,114,112,111,108,97,116,105,111,
|
114,116,101,120,84,104,114,101,115,104,111,108,100,0,109,95,101,100,103,101,
|
||||||
110,87,111,114,108,100,84,114,97,110,115,102,111,114,109,0,109,95,105,110,
|
68,105,115,116,97,110,99,101,84,104,114,101,115,104,111,108,100,0,109,95,
|
||||||
116,101,114,112,111,108,97,116,105,111,110,76,105,110,101,97,114,86,101,108,
|
122,101,114,111,65,114,101,97,84,104,114,101,115,104,111,108,100,0,109,95,
|
||||||
111,99,105,116,121,0,109,95,105,110,116,101,114,112,111,108,97,116,105,111,
|
110,101,120,116,83,105,122,101,0,109,95,104,97,115,104,84,97,98,108,101,
|
||||||
110,65,110,103,117,108,97,114,86,101,108,111,99,105,116,121,0,109,95,97,
|
83,105,122,101,0,109,95,110,117,109,86,97,108,117,101,115,0,109,95,110,
|
||||||
110,105,115,111,116,114,111,112,105,99,70,114,105,99,116,105,111,110,0,109,
|
117,109,75,101,121,115,0,109,95,103,105,109,112,97,99,116,83,117,98,84,
|
||||||
95,99,111,110,116,97,99,116,80,114,111,99,101,115,115,105,110,103,84,104,
|
121,112,101,0,42,109,95,117,110,115,99,97,108,101,100,80,111,105,110,116,
|
||||||
114,101,115,104,111,108,100,0,109,95,100,101,97,99,116,105,118,97,116,105,
|
115,70,108,111,97,116,80,116,114,0,42,109,95,117,110,115,99,97,108,101,
|
||||||
111,110,84,105,109,101,0,109,95,102,114,105,99,116,105,111,110,0,109,95,
|
100,80,111,105,110,116,115,68,111,117,98,108,101,80,116,114,0,109,95,110,
|
||||||
114,101,115,116,105,116,117,116,105,111,110,0,109,95,104,105,116,70,114,97,
|
117,109,85,110,115,99,97,108,101,100,80,111,105,110,116,115,0,109,95,112,
|
||||||
99,116,105,111,110,0,109,95,99,99,100,83,119,101,112,116,83,112,104,101,
|
97,100,100,105,110,103,51,91,52,93,0,42,109,95,98,114,111,97,100,112,
|
||||||
114,101,82,97,100,105,117,115,0,109,95,99,99,100,77,111,116,105,111,110,
|
104,97,115,101,72,97,110,100,108,101,0,42,109,95,99,111,108,108,105,115,
|
||||||
84,104,114,101,115,104,111,108,100,0,109,95,104,97,115,65,110,105,115,111,
|
105,111,110,83,104,97,112,101,0,42,109,95,114,111,111,116,67,111,108,108,
|
||||||
116,114,111,112,105,99,70,114,105,99,116,105,111,110,0,109,95,99,111,108,
|
105,115,105,111,110,83,104,97,112,101,0,109,95,119,111,114,108,100,84,114,
|
||||||
108,105,115,105,111,110,70,108,97,103,115,0,109,95,105,115,108,97,110,100,
|
97,110,115,102,111,114,109,0,109,95,105,110,116,101,114,112,111,108,97,116,
|
||||||
84,97,103,49,0,109,95,99,111,109,112,97,110,105,111,110,73,100,0,109,
|
105,111,110,87,111,114,108,100,84,114,97,110,115,102,111,114,109,0,109,95,
|
||||||
95,97,99,116,105,118,97,116,105,111,110,83,116,97,116,101,49,0,109,95,
|
105,110,116,101,114,112,111,108,97,116,105,111,110,76,105,110,101,97,114,86,
|
||||||
105,110,116,101,114,110,97,108,84,121,112,101,0,109,95,99,104,101,99,107,
|
101,108,111,99,105,116,121,0,109,95,105,110,116,101,114,112,111,108,97,116,
|
||||||
67,111,108,108,105,100,101,87,105,116,104,0,109,95,99,111,108,108,105,115,
|
105,111,110,65,110,103,117,108,97,114,86,101,108,111,99,105,116,121,0,109,
|
||||||
105,111,110,79,98,106,101,99,116,68,97,116,97,0,109,95,105,110,118,73,
|
95,97,110,105,115,111,116,114,111,112,105,99,70,114,105,99,116,105,111,110,
|
||||||
110,101,114,116,105,97,84,101,110,115,111,114,87,111,114,108,100,0,109,95,
|
0,109,95,99,111,110,116,97,99,116,80,114,111,99,101,115,115,105,110,103,
|
||||||
108,105,110,101,97,114,86,101,108,111,99,105,116,121,0,109,95,97,110,103,
|
84,104,114,101,115,104,111,108,100,0,109,95,100,101,97,99,116,105,118,97,
|
||||||
117,108,97,114,86,101,108,111,99,105,116,121,0,109,95,97,110,103,117,108,
|
116,105,111,110,84,105,109,101,0,109,95,102,114,105,99,116,105,111,110,0,
|
||||||
97,114,70,97,99,116,111,114,0,109,95,108,105,110,101,97,114,70,97,99,
|
109,95,114,101,115,116,105,116,117,116,105,111,110,0,109,95,104,105,116,70,
|
||||||
116,111,114,0,109,95,103,114,97,118,105,116,121,0,109,95,103,114,97,118,
|
114,97,99,116,105,111,110,0,109,95,99,99,100,83,119,101,112,116,83,112,
|
||||||
105,116,121,95,97,99,99,101,108,101,114,97,116,105,111,110,0,109,95,105,
|
104,101,114,101,82,97,100,105,117,115,0,109,95,99,99,100,77,111,116,105,
|
||||||
110,118,73,110,101,114,116,105,97,76,111,99,97,108,0,109,95,116,111,116,
|
111,110,84,104,114,101,115,104,111,108,100,0,109,95,104,97,115,65,110,105,
|
||||||
97,108,70,111,114,99,101,0,109,95,116,111,116,97,108,84,111,114,113,117,
|
115,111,116,114,111,112,105,99,70,114,105,99,116,105,111,110,0,109,95,99,
|
||||||
101,0,109,95,105,110,118,101,114,115,101,77,97,115,115,0,109,95,108,105,
|
111,108,108,105,115,105,111,110,70,108,97,103,115,0,109,95,105,115,108,97,
|
||||||
110,101,97,114,68,97,109,112,105,110,103,0,109,95,97,110,103,117,108,97,
|
110,100,84,97,103,49,0,109,95,99,111,109,112,97,110,105,111,110,73,100,
|
||||||
114,68,97,109,112,105,110,103,0,109,95,97,100,100,105,116,105,111,110,97,
|
0,109,95,97,99,116,105,118,97,116,105,111,110,83,116,97,116,101,49,0,
|
||||||
108,68,97,109,112,105,110,103,70,97,99,116,111,114,0,109,95,97,100,100,
|
109,95,105,110,116,101,114,110,97,108,84,121,112,101,0,109,95,99,104,101,
|
||||||
105,116,105,111,110,97,108,76,105,110,101,97,114,68,97,109,112,105,110,103,
|
99,107,67,111,108,108,105,100,101,87,105,116,104,0,109,95,99,111,108,108,
|
||||||
84,104,114,101,115,104,111,108,100,83,113,114,0,109,95,97,100,100,105,116,
|
105,115,105,111,110,79,98,106,101,99,116,68,97,116,97,0,109,95,105,110,
|
||||||
105,111,110,97,108,65,110,103,117,108,97,114,68,97,109,112,105,110,103,84,
|
118,73,110,101,114,116,105,97,84,101,110,115,111,114,87,111,114,108,100,0,
|
||||||
104,114,101,115,104,111,108,100,83,113,114,0,109,95,97,100,100,105,116,105,
|
109,95,108,105,110,101,97,114,86,101,108,111,99,105,116,121,0,109,95,97,
|
||||||
111,110,97,108,65,110,103,117,108,97,114,68,97,109,112,105,110,103,70,97,
|
110,103,117,108,97,114,86,101,108,111,99,105,116,121,0,109,95,97,110,103,
|
||||||
99,116,111,114,0,109,95,108,105,110,101,97,114,83,108,101,101,112,105,110,
|
117,108,97,114,70,97,99,116,111,114,0,109,95,108,105,110,101,97,114,70,
|
||||||
103,84,104,114,101,115,104,111,108,100,0,109,95,97,110,103,117,108,97,114,
|
97,99,116,111,114,0,109,95,103,114,97,118,105,116,121,0,109,95,103,114,
|
||||||
83,108,101,101,112,105,110,103,84,104,114,101,115,104,111,108,100,0,109,95,
|
97,118,105,116,121,95,97,99,99,101,108,101,114,97,116,105,111,110,0,109,
|
||||||
97,100,100,105,116,105,111,110,97,108,68,97,109,112,105,110,103,0,109,95,
|
95,105,110,118,73,110,101,114,116,105,97,76,111,99,97,108,0,109,95,116,
|
||||||
110,117,109,67,111,110,115,116,114,97,105,110,116,82,111,119,115,0,110,117,
|
111,116,97,108,70,111,114,99,101,0,109,95,116,111,116,97,108,84,111,114,
|
||||||
98,0,42,109,95,114,98,65,0,42,109,95,114,98,66,0,109,95,111,98,
|
113,117,101,0,109,95,105,110,118,101,114,115,101,77,97,115,115,0,109,95,
|
||||||
106,101,99,116,84,121,112,101,0,109,95,117,115,101,114,67,111,110,115,116,
|
108,105,110,101,97,114,68,97,109,112,105,110,103,0,109,95,97,110,103,117,
|
||||||
114,97,105,110,116,84,121,112,101,0,109,95,117,115,101,114,67,111,110,115,
|
108,97,114,68,97,109,112,105,110,103,0,109,95,97,100,100,105,116,105,111,
|
||||||
116,114,97,105,110,116,73,100,0,109,95,110,101,101,100,115,70,101,101,100,
|
110,97,108,68,97,109,112,105,110,103,70,97,99,116,111,114,0,109,95,97,
|
||||||
98,97,99,107,0,109,95,97,112,112,108,105,101,100,73,109,112,117,108,115,
|
100,100,105,116,105,111,110,97,108,76,105,110,101,97,114,68,97,109,112,105,
|
||||||
101,0,109,95,100,98,103,68,114,97,119,83,105,122,101,0,109,95,100,105,
|
110,103,84,104,114,101,115,104,111,108,100,83,113,114,0,109,95,97,100,100,
|
||||||
115,97,98,108,101,67,111,108,108,105,115,105,111,110,115,66,101,116,119,101,
|
105,116,105,111,110,97,108,65,110,103,117,108,97,114,68,97,109,112,105,110,
|
||||||
101,110,76,105,110,107,101,100,66,111,100,105,101,115,0,109,95,112,97,100,
|
103,84,104,114,101,115,104,111,108,100,83,113,114,0,109,95,97,100,100,105,
|
||||||
52,91,52,93,0,109,95,116,121,112,101,67,111,110,115,116,114,97,105,110,
|
116,105,111,110,97,108,65,110,103,117,108,97,114,68,97,109,112,105,110,103,
|
||||||
116,68,97,116,97,0,109,95,112,105,118,111,116,73,110,65,0,109,95,112,
|
70,97,99,116,111,114,0,109,95,108,105,110,101,97,114,83,108,101,101,112,
|
||||||
105,118,111,116,73,110,66,0,109,95,114,98,65,70,114,97,109,101,0,109,
|
105,110,103,84,104,114,101,115,104,111,108,100,0,109,95,97,110,103,117,108,
|
||||||
95,114,98,66,70,114,97,109,101,0,109,95,117,115,101,82,101,102,101,114,
|
97,114,83,108,101,101,112,105,110,103,84,104,114,101,115,104,111,108,100,0,
|
||||||
101,110,99,101,70,114,97,109,101,65,0,109,95,97,110,103,117,108,97,114,
|
109,95,97,100,100,105,116,105,111,110,97,108,68,97,109,112,105,110,103,0,
|
||||||
79,110,108,121,0,109,95,101,110,97,98,108,101,65,110,103,117,108,97,114,
|
109,95,110,117,109,67,111,110,115,116,114,97,105,110,116,82,111,119,115,0,
|
||||||
77,111,116,111,114,0,109,95,109,111,116,111,114,84,97,114,103,101,116,86,
|
110,117,98,0,42,109,95,114,98,65,0,42,109,95,114,98,66,0,109,95,
|
||||||
101,108,111,99,105,116,121,0,109,95,109,97,120,77,111,116,111,114,73,109,
|
111,98,106,101,99,116,84,121,112,101,0,109,95,117,115,101,114,67,111,110,
|
||||||
112,117,108,115,101,0,109,95,108,111,119,101,114,76,105,109,105,116,0,109,
|
115,116,114,97,105,110,116,84,121,112,101,0,109,95,117,115,101,114,67,111,
|
||||||
95,117,112,112,101,114,76,105,109,105,116,0,109,95,108,105,109,105,116,83,
|
110,115,116,114,97,105,110,116,73,100,0,109,95,110,101,101,100,115,70,101,
|
||||||
111,102,116,110,101,115,115,0,109,95,98,105,97,115,70,97,99,116,111,114,
|
101,100,98,97,99,107,0,109,95,97,112,112,108,105,101,100,73,109,112,117,
|
||||||
0,109,95,114,101,108,97,120,97,116,105,111,110,70,97,99,116,111,114,0,
|
108,115,101,0,109,95,100,98,103,68,114,97,119,83,105,122,101,0,109,95,
|
||||||
109,95,115,119,105,110,103,83,112,97,110,49,0,109,95,115,119,105,110,103,
|
100,105,115,97,98,108,101,67,111,108,108,105,115,105,111,110,115,66,101,116,
|
||||||
83,112,97,110,50,0,109,95,116,119,105,115,116,83,112,97,110,0,109,95,
|
119,101,101,110,76,105,110,107,101,100,66,111,100,105,101,115,0,109,95,112,
|
||||||
100,97,109,112,105,110,103,0,109,95,108,105,110,101,97,114,85,112,112,101,
|
97,100,52,91,52,93,0,109,95,116,121,112,101,67,111,110,115,116,114,97,
|
||||||
114,76,105,109,105,116,0,109,95,108,105,110,101,97,114,76,111,119,101,114,
|
105,110,116,68,97,116,97,0,109,95,112,105,118,111,116,73,110,65,0,109,
|
||||||
76,105,109,105,116,0,109,95,97,110,103,117,108,97,114,85,112,112,101,114,
|
95,112,105,118,111,116,73,110,66,0,109,95,114,98,65,70,114,97,109,101,
|
||||||
76,105,109,105,116,0,109,95,97,110,103,117,108,97,114,76,111,119,101,114,
|
0,109,95,114,98,66,70,114,97,109,101,0,109,95,117,115,101,82,101,102,
|
||||||
76,105,109,105,116,0,109,95,117,115,101,76,105,110,101,97,114,82,101,102,
|
101,114,101,110,99,101,70,114,97,109,101,65,0,109,95,97,110,103,117,108,
|
||||||
101,114,101,110,99,101,70,114,97,109,101,65,0,109,95,117,115,101,79,102,
|
97,114,79,110,108,121,0,109,95,101,110,97,98,108,101,65,110,103,117,108,
|
||||||
102,115,101,116,70,111,114,67,111,110,115,116,114,97,105,110,116,70,114,97,
|
97,114,77,111,116,111,114,0,109,95,109,111,116,111,114,84,97,114,103,101,
|
||||||
109,101,0,0,84,89,80,69,55,0,0,0,99,104,97,114,0,117,99,104,
|
116,86,101,108,111,99,105,116,121,0,109,95,109,97,120,77,111,116,111,114,
|
||||||
97,114,0,115,104,111,114,116,0,117,115,104,111,114,116,0,105,110,116,0,
|
73,109,112,117,108,115,101,0,109,95,108,111,119,101,114,76,105,109,105,116,
|
||||||
108,111,110,103,0,117,108,111,110,103,0,102,108,111,97,116,0,100,111,117,
|
0,109,95,117,112,112,101,114,76,105,109,105,116,0,109,95,108,105,109,105,
|
||||||
98,108,101,0,118,111,105,100,0,80,111,105,110,116,101,114,65,114,114,97,
|
116,83,111,102,116,110,101,115,115,0,109,95,98,105,97,115,70,97,99,116,
|
||||||
121,0,98,116,80,104,121,115,105,99,115,83,121,115,116,101,109,0,76,105,
|
111,114,0,109,95,114,101,108,97,120,97,116,105,111,110,70,97,99,116,111,
|
||||||
115,116,66,97,115,101,0,98,116,86,101,99,116,111,114,51,70,108,111,97,
|
114,0,109,95,115,119,105,110,103,83,112,97,110,49,0,109,95,115,119,105,
|
||||||
116,68,97,116,97,0,98,116,86,101,99,116,111,114,51,68,111,117,98,108,
|
110,103,83,112,97,110,50,0,109,95,116,119,105,115,116,83,112,97,110,0,
|
||||||
101,68,97,116,97,0,98,116,77,97,116,114,105,120,51,120,51,70,108,111,
|
109,95,100,97,109,112,105,110,103,0,109,95,108,105,110,101,97,114,85,112,
|
||||||
97,116,68,97,116,97,0,98,116,77,97,116,114,105,120,51,120,51,68,111,
|
112,101,114,76,105,109,105,116,0,109,95,108,105,110,101,97,114,76,111,119,
|
||||||
117,98,108,101,68,97,116,97,0,98,116,84,114,97,110,115,102,111,114,109,
|
101,114,76,105,109,105,116,0,109,95,97,110,103,117,108,97,114,85,112,112,
|
||||||
70,108,111,97,116,68,97,116,97,0,98,116,84,114,97,110,115,102,111,114,
|
101,114,76,105,109,105,116,0,109,95,97,110,103,117,108,97,114,76,111,119,
|
||||||
109,68,111,117,98,108,101,68,97,116,97,0,98,116,66,118,104,83,117,98,
|
101,114,76,105,109,105,116,0,109,95,117,115,101,76,105,110,101,97,114,82,
|
||||||
116,114,101,101,73,110,102,111,68,97,116,97,0,98,116,79,112,116,105,109,
|
101,102,101,114,101,110,99,101,70,114,97,109,101,65,0,109,95,117,115,101,
|
||||||
105,122,101,100,66,118,104,78,111,100,101,70,108,111,97,116,68,97,116,97,
|
79,102,102,115,101,116,70,111,114,67,111,110,115,116,114,97,105,110,116,70,
|
||||||
0,98,116,79,112,116,105,109,105,122,101,100,66,118,104,78,111,100,101,68,
|
114,97,109,101,0,0,0,0,84,89,80,69,57,0,0,0,99,104,97,114,
|
||||||
111,117,98,108,101,68,97,116,97,0,98,116,81,117,97,110,116,105,122,101,
|
0,117,99,104,97,114,0,115,104,111,114,116,0,117,115,104,111,114,116,0,
|
||||||
100,66,118,104,78,111,100,101,68,97,116,97,0,98,116,81,117,97,110,116,
|
105,110,116,0,108,111,110,103,0,117,108,111,110,103,0,102,108,111,97,116,
|
||||||
105,122,101,100,66,118,104,70,108,111,97,116,68,97,116,97,0,98,116,81,
|
0,100,111,117,98,108,101,0,118,111,105,100,0,80,111,105,110,116,101,114,
|
||||||
117,97,110,116,105,122,101,100,66,118,104,68,111,117,98,108,101,68,97,116,
|
65,114,114,97,121,0,98,116,80,104,121,115,105,99,115,83,121,115,116,101,
|
||||||
97,0,98,116,67,111,108,108,105,115,105,111,110,83,104,97,112,101,68,97,
|
109,0,76,105,115,116,66,97,115,101,0,98,116,86,101,99,116,111,114,51,
|
||||||
116,97,0,98,116,83,116,97,116,105,99,80,108,97,110,101,83,104,97,112,
|
70,108,111,97,116,68,97,116,97,0,98,116,86,101,99,116,111,114,51,68,
|
||||||
101,68,97,116,97,0,98,116,67,111,110,118,101,120,73,110,116,101,114,110,
|
111,117,98,108,101,68,97,116,97,0,98,116,77,97,116,114,105,120,51,120,
|
||||||
97,108,83,104,97,112,101,68,97,116,97,0,98,116,80,111,115,105,116,105,
|
51,70,108,111,97,116,68,97,116,97,0,98,116,77,97,116,114,105,120,51,
|
||||||
111,110,65,110,100,82,97,100,105,117,115,0,98,116,77,117,108,116,105,83,
|
120,51,68,111,117,98,108,101,68,97,116,97,0,98,116,84,114,97,110,115,
|
||||||
112,104,101,114,101,83,104,97,112,101,68,97,116,97,0,98,116,73,110,116,
|
102,111,114,109,70,108,111,97,116,68,97,116,97,0,98,116,84,114,97,110,
|
||||||
73,110,100,101,120,68,97,116,97,0,98,116,83,104,111,114,116,73,110,116,
|
115,102,111,114,109,68,111,117,98,108,101,68,97,116,97,0,98,116,66,118,
|
||||||
73,110,100,101,120,68,97,116,97,0,98,116,77,101,115,104,80,97,114,116,
|
104,83,117,98,116,114,101,101,73,110,102,111,68,97,116,97,0,98,116,79,
|
||||||
68,97,116,97,0,98,116,83,116,114,105,100,105,110,103,77,101,115,104,73,
|
112,116,105,109,105,122,101,100,66,118,104,78,111,100,101,70,108,111,97,116,
|
||||||
110,116,101,114,102,97,99,101,68,97,116,97,0,98,116,84,114,105,97,110,
|
68,97,116,97,0,98,116,79,112,116,105,109,105,122,101,100,66,118,104,78,
|
||||||
103,108,101,77,101,115,104,83,104,97,112,101,68,97,116,97,0,98,116,67,
|
111,100,101,68,111,117,98,108,101,68,97,116,97,0,98,116,81,117,97,110,
|
||||||
111,109,112,111,117,110,100,83,104,97,112,101,67,104,105,108,100,68,97,116,
|
116,105,122,101,100,66,118,104,78,111,100,101,68,97,116,97,0,98,116,81,
|
||||||
97,0,98,116,67,111,109,112,111,117,110,100,83,104,97,112,101,68,97,116,
|
117,97,110,116,105,122,101,100,66,118,104,70,108,111,97,116,68,97,116,97,
|
||||||
97,0,98,116,67,121,108,105,110,100,101,114,83,104,97,112,101,68,97,116,
|
0,98,116,81,117,97,110,116,105,122,101,100,66,118,104,68,111,117,98,108,
|
||||||
97,0,98,116,67,97,112,115,117,108,101,83,104,97,112,101,68,97,116,97,
|
101,68,97,116,97,0,98,116,67,111,108,108,105,115,105,111,110,83,104,97,
|
||||||
0,98,116,71,73,109,112,97,99,116,77,101,115,104,83,104,97,112,101,68,
|
112,101,68,97,116,97,0,98,116,83,116,97,116,105,99,80,108,97,110,101,
|
||||||
97,116,97,0,98,116,67,111,110,118,101,120,72,117,108,108,83,104,97,112,
|
83,104,97,112,101,68,97,116,97,0,98,116,67,111,110,118,101,120,73,110,
|
||||||
101,68,97,116,97,0,98,116,67,111,108,108,105,115,105,111,110,79,98,106,
|
116,101,114,110,97,108,83,104,97,112,101,68,97,116,97,0,98,116,80,111,
|
||||||
101,99,116,68,111,117,98,108,101,68,97,116,97,0,98,116,67,111,108,108,
|
115,105,116,105,111,110,65,110,100,82,97,100,105,117,115,0,98,116,77,117,
|
||||||
105,115,105,111,110,79,98,106,101,99,116,70,108,111,97,116,68,97,116,97,
|
108,116,105,83,112,104,101,114,101,83,104,97,112,101,68,97,116,97,0,98,
|
||||||
0,98,116,82,105,103,105,100,66,111,100,121,70,108,111,97,116,68,97,116,
|
116,73,110,116,73,110,100,101,120,68,97,116,97,0,98,116,83,104,111,114,
|
||||||
97,0,98,116,82,105,103,105,100,66,111,100,121,68,111,117,98,108,101,68,
|
116,73,110,116,73,110,100,101,120,68,97,116,97,0,98,116,77,101,115,104,
|
||||||
97,116,97,0,98,116,67,111,110,115,116,114,97,105,110,116,73,110,102,111,
|
80,97,114,116,68,97,116,97,0,98,116,83,116,114,105,100,105,110,103,77,
|
||||||
49,0,98,116,84,121,112,101,100,67,111,110,115,116,114,97,105,110,116,68,
|
101,115,104,73,110,116,101,114,102,97,99,101,68,97,116,97,0,98,116,84,
|
||||||
97,116,97,0,98,116,82,105,103,105,100,66,111,100,121,68,97,116,97,0,
|
114,105,97,110,103,108,101,77,101,115,104,83,104,97,112,101,68,97,116,97,
|
||||||
98,116,80,111,105,110,116,50,80,111,105,110,116,67,111,110,115,116,114,97,
|
0,98,116,84,114,105,97,110,103,108,101,73,110,102,111,77,97,112,68,97,
|
||||||
105,110,116,70,108,111,97,116,68,97,116,97,0,98,116,80,111,105,110,116,
|
116,97,0,98,116,67,111,109,112,111,117,110,100,83,104,97,112,101,67,104,
|
||||||
50,80,111,105,110,116,67,111,110,115,116,114,97,105,110,116,68,111,117,98,
|
105,108,100,68,97,116,97,0,98,116,67,111,109,112,111,117,110,100,83,104,
|
||||||
108,101,68,97,116,97,0,98,116,72,105,110,103,101,67,111,110,115,116,114,
|
97,112,101,68,97,116,97,0,98,116,67,121,108,105,110,100,101,114,83,104,
|
||||||
97,105,110,116,68,111,117,98,108,101,68,97,116,97,0,98,116,72,105,110,
|
97,112,101,68,97,116,97,0,98,116,67,97,112,115,117,108,101,83,104,97,
|
||||||
103,101,67,111,110,115,116,114,97,105,110,116,70,108,111,97,116,68,97,116,
|
112,101,68,97,116,97,0,98,116,84,114,105,97,110,103,108,101,73,110,102,
|
||||||
97,0,98,116,67,111,110,101,84,119,105,115,116,67,111,110,115,116,114,97,
|
111,68,97,116,97,0,98,116,71,73,109,112,97,99,116,77,101,115,104,83,
|
||||||
105,110,116,68,97,116,97,0,98,116,71,101,110,101,114,105,99,54,68,111,
|
104,97,112,101,68,97,116,97,0,98,116,67,111,110,118,101,120,72,117,108,
|
||||||
102,67,111,110,115,116,114,97,105,110,116,68,97,116,97,0,98,116,83,108,
|
108,83,104,97,112,101,68,97,116,97,0,98,116,67,111,108,108,105,115,105,
|
||||||
105,100,101,114,67,111,110,115,116,114,97,105,110,116,68,97,116,97,0,0,
|
111,110,79,98,106,101,99,116,68,111,117,98,108,101,68,97,116,97,0,98,
|
||||||
84,76,69,78,1,0,1,0,2,0,2,0,4,0,4,0,4,0,4,0,
|
116,67,111,108,108,105,115,105,111,110,79,98,106,101,99,116,70,108,111,97,
|
||||||
8,0,0,0,16,0,48,0,16,0,16,0,32,0,48,0,96,0,64,0,
|
116,68,97,116,97,0,98,116,82,105,103,105,100,66,111,100,121,70,108,111,
|
||||||
-128,0,24,0,44,0,76,0,20,0,96,0,-112,0,16,0,56,0,56,0,
|
97,116,68,97,116,97,0,98,116,82,105,103,105,100,66,111,100,121,68,111,
|
||||||
20,0,72,0,4,0,4,0,40,0,32,0,72,0,80,0,32,0,64,0,
|
117,98,108,101,68,97,116,97,0,98,116,67,111,110,115,116,114,97,105,110,
|
||||||
64,0,72,0,80,0,-40,1,8,1,-16,1,-88,3,8,0,56,0,0,0,
|
116,73,110,102,111,49,0,98,116,84,121,112,101,100,67,111,110,115,116,114,
|
||||||
88,0,120,0,96,1,-32,0,-40,0,0,1,-48,0,0,0,83,84,82,67,
|
97,105,110,116,68,97,116,97,0,98,116,82,105,103,105,100,66,111,100,121,
|
||||||
44,0,0,0,10,0,3,0,4,0,0,0,4,0,1,0,9,0,2,0,
|
68,97,116,97,0,98,116,80,111,105,110,116,50,80,111,105,110,116,67,111,
|
||||||
11,0,3,0,10,0,3,0,10,0,4,0,10,0,5,0,12,0,2,0,
|
110,115,116,114,97,105,110,116,70,108,111,97,116,68,97,116,97,0,98,116,
|
||||||
9,0,6,0,9,0,7,0,13,0,1,0,7,0,8,0,14,0,1,0,
|
80,111,105,110,116,50,80,111,105,110,116,67,111,110,115,116,114,97,105,110,
|
||||||
8,0,8,0,15,0,1,0,13,0,9,0,16,0,1,0,14,0,9,0,
|
116,68,111,117,98,108,101,68,97,116,97,0,98,116,72,105,110,103,101,67,
|
||||||
17,0,2,0,15,0,10,0,13,0,11,0,18,0,2,0,16,0,10,0,
|
111,110,115,116,114,97,105,110,116,68,111,117,98,108,101,68,97,116,97,0,
|
||||||
14,0,11,0,19,0,6,0,4,0,12,0,4,0,13,0,2,0,14,0,
|
98,116,72,105,110,103,101,67,111,110,115,116,114,97,105,110,116,70,108,111,
|
||||||
2,0,15,0,2,0,14,0,2,0,16,0,20,0,5,0,13,0,17,0,
|
97,116,68,97,116,97,0,98,116,67,111,110,101,84,119,105,115,116,67,111,
|
||||||
13,0,18,0,4,0,19,0,4,0,20,0,4,0,21,0,21,0,5,0,
|
110,115,116,114,97,105,110,116,68,97,116,97,0,98,116,71,101,110,101,114,
|
||||||
14,0,17,0,14,0,18,0,4,0,19,0,4,0,20,0,4,0,21,0,
|
105,99,54,68,111,102,67,111,110,115,116,114,97,105,110,116,68,97,116,97,
|
||||||
22,0,5,0,4,0,22,0,2,0,14,0,2,0,15,0,2,0,14,0,
|
0,98,116,83,108,105,100,101,114,67,111,110,115,116,114,97,105,110,116,68,
|
||||||
2,0,16,0,23,0,12,0,13,0,23,0,13,0,24,0,13,0,25,0,
|
97,116,97,0,84,76,69,78,1,0,1,0,2,0,2,0,4,0,4,0,
|
||||||
4,0,26,0,4,0,27,0,4,0,28,0,4,0,29,0,20,0,30,0,
|
4,0,4,0,8,0,0,0,16,0,48,0,16,0,16,0,32,0,48,0,
|
||||||
22,0,31,0,4,0,32,0,4,0,33,0,19,0,34,0,24,0,12,0,
|
96,0,64,0,-128,0,24,0,44,0,76,0,20,0,96,0,-112,0,16,0,
|
||||||
14,0,23,0,14,0,24,0,14,0,25,0,4,0,26,0,4,0,27,0,
|
56,0,56,0,20,0,72,0,4,0,4,0,40,0,32,0,80,0,72,0,
|
||||||
4,0,28,0,4,0,29,0,21,0,30,0,22,0,31,0,4,0,32,0,
|
80,0,32,0,64,0,64,0,16,0,72,0,80,0,-40,1,8,1,-16,1,
|
||||||
4,0,33,0,19,0,34,0,25,0,3,0,0,0,35,0,4,0,36,0,
|
-88,3,8,0,56,0,0,0,88,0,120,0,96,1,-32,0,-40,0,0,1,
|
||||||
0,0,37,0,26,0,5,0,25,0,38,0,13,0,39,0,13,0,40,0,
|
-48,0,0,0,83,84,82,67,46,0,0,0,10,0,3,0,4,0,0,0,
|
||||||
7,0,41,0,0,0,42,0,27,0,5,0,25,0,38,0,13,0,39,0,
|
4,0,1,0,9,0,2,0,11,0,3,0,10,0,3,0,10,0,4,0,
|
||||||
13,0,43,0,7,0,44,0,4,0,45,0,28,0,2,0,13,0,46,0,
|
10,0,5,0,12,0,2,0,9,0,6,0,9,0,7,0,13,0,1,0,
|
||||||
7,0,47,0,29,0,4,0,27,0,48,0,28,0,49,0,4,0,50,0,
|
7,0,8,0,14,0,1,0,8,0,8,0,15,0,1,0,13,0,9,0,
|
||||||
0,0,37,0,30,0,1,0,4,0,51,0,31,0,2,0,2,0,14,0,
|
16,0,1,0,14,0,9,0,17,0,2,0,15,0,10,0,13,0,11,0,
|
||||||
2,0,51,0,32,0,6,0,13,0,52,0,14,0,53,0,30,0,54,0,
|
18,0,2,0,16,0,10,0,14,0,11,0,19,0,6,0,4,0,12,0,
|
||||||
31,0,55,0,4,0,56,0,4,0,57,0,33,0,4,0,32,0,58,0,
|
4,0,13,0,2,0,14,0,2,0,15,0,2,0,14,0,2,0,16,0,
|
||||||
13,0,59,0,4,0,60,0,0,0,37,0,34,0,6,0,25,0,38,0,
|
20,0,5,0,13,0,17,0,13,0,18,0,4,0,19,0,4,0,20,0,
|
||||||
33,0,61,0,23,0,62,0,24,0,63,0,7,0,44,0,0,0,64,0,
|
4,0,21,0,21,0,5,0,14,0,17,0,14,0,18,0,4,0,19,0,
|
||||||
35,0,4,0,17,0,65,0,25,0,66,0,4,0,67,0,7,0,68,0,
|
4,0,20,0,4,0,21,0,22,0,5,0,4,0,22,0,2,0,14,0,
|
||||||
36,0,4,0,25,0,38,0,35,0,69,0,4,0,70,0,7,0,44,0,
|
2,0,15,0,2,0,14,0,2,0,16,0,23,0,12,0,13,0,23,0,
|
||||||
37,0,3,0,27,0,48,0,4,0,71,0,0,0,37,0,38,0,3,0,
|
13,0,24,0,13,0,25,0,4,0,26,0,4,0,27,0,4,0,28,0,
|
||||||
27,0,48,0,4,0,71,0,0,0,37,0,39,0,5,0,25,0,38,0,
|
4,0,29,0,20,0,30,0,22,0,31,0,4,0,32,0,4,0,33,0,
|
||||||
33,0,61,0,13,0,39,0,7,0,44,0,4,0,72,0,40,0,5,0,
|
19,0,34,0,24,0,12,0,14,0,23,0,14,0,24,0,14,0,25,0,
|
||||||
27,0,48,0,13,0,73,0,14,0,74,0,4,0,75,0,0,0,76,0,
|
4,0,26,0,4,0,27,0,4,0,28,0,4,0,29,0,21,0,30,0,
|
||||||
41,0,24,0,9,0,77,0,9,0,78,0,25,0,79,0,0,0,35,0,
|
22,0,31,0,4,0,32,0,4,0,33,0,19,0,34,0,25,0,3,0,
|
||||||
18,0,80,0,18,0,81,0,14,0,82,0,14,0,83,0,14,0,84,0,
|
0,0,35,0,4,0,36,0,0,0,37,0,26,0,5,0,25,0,38,0,
|
||||||
8,0,85,0,8,0,86,0,8,0,87,0,8,0,88,0,8,0,89,0,
|
13,0,39,0,13,0,40,0,7,0,41,0,0,0,42,0,27,0,5,0,
|
||||||
8,0,90,0,8,0,91,0,4,0,92,0,4,0,93,0,4,0,94,0,
|
25,0,38,0,13,0,39,0,13,0,43,0,7,0,44,0,4,0,45,0,
|
||||||
4,0,95,0,4,0,96,0,4,0,97,0,4,0,98,0,0,0,37,0,
|
28,0,2,0,13,0,46,0,7,0,47,0,29,0,4,0,27,0,48,0,
|
||||||
42,0,23,0,9,0,77,0,9,0,78,0,25,0,79,0,0,0,35,0,
|
28,0,49,0,4,0,50,0,0,0,37,0,30,0,1,0,4,0,51,0,
|
||||||
17,0,80,0,17,0,81,0,13,0,82,0,13,0,83,0,13,0,84,0,
|
31,0,2,0,2,0,14,0,2,0,51,0,32,0,6,0,13,0,52,0,
|
||||||
7,0,85,0,7,0,86,0,7,0,87,0,7,0,88,0,7,0,89,0,
|
14,0,53,0,30,0,54,0,31,0,55,0,4,0,56,0,4,0,57,0,
|
||||||
7,0,90,0,7,0,91,0,4,0,92,0,4,0,93,0,4,0,94,0,
|
33,0,4,0,32,0,58,0,13,0,59,0,4,0,60,0,0,0,37,0,
|
||||||
4,0,95,0,4,0,96,0,4,0,97,0,4,0,98,0,43,0,21,0,
|
34,0,7,0,25,0,38,0,33,0,61,0,23,0,62,0,24,0,63,0,
|
||||||
42,0,99,0,15,0,100,0,13,0,101,0,13,0,102,0,13,0,103,0,
|
35,0,64,0,7,0,44,0,0,0,65,0,36,0,4,0,17,0,66,0,
|
||||||
13,0,104,0,13,0,105,0,13,0,106,0,13,0,107,0,13,0,108,0,
|
25,0,67,0,4,0,68,0,7,0,69,0,37,0,4,0,25,0,38,0,
|
||||||
13,0,109,0,7,0,110,0,7,0,111,0,7,0,112,0,7,0,113,0,
|
36,0,70,0,4,0,71,0,7,0,44,0,38,0,3,0,27,0,48,0,
|
||||||
7,0,114,0,7,0,115,0,7,0,116,0,7,0,117,0,7,0,118,0,
|
4,0,72,0,0,0,37,0,39,0,3,0,27,0,48,0,4,0,72,0,
|
||||||
4,0,119,0,44,0,22,0,41,0,99,0,16,0,100,0,14,0,101,0,
|
0,0,37,0,40,0,4,0,4,0,73,0,7,0,74,0,7,0,75,0,
|
||||||
14,0,102,0,14,0,103,0,14,0,104,0,14,0,105,0,14,0,106,0,
|
7,0,76,0,35,0,14,0,4,0,77,0,4,0,78,0,40,0,79,0,
|
||||||
14,0,107,0,14,0,108,0,14,0,109,0,8,0,110,0,8,0,111,0,
|
4,0,80,0,7,0,81,0,7,0,82,0,7,0,83,0,7,0,84,0,
|
||||||
8,0,112,0,8,0,113,0,8,0,114,0,8,0,115,0,8,0,116,0,
|
7,0,85,0,4,0,86,0,4,0,87,0,4,0,88,0,4,0,89,0,
|
||||||
8,0,117,0,8,0,118,0,4,0,119,0,0,0,37,0,45,0,2,0,
|
0,0,37,0,41,0,5,0,25,0,38,0,33,0,61,0,13,0,39,0,
|
||||||
4,0,120,0,4,0,121,0,46,0,11,0,47,0,122,0,47,0,123,0,
|
7,0,44,0,4,0,90,0,42,0,5,0,27,0,48,0,13,0,91,0,
|
||||||
0,0,35,0,4,0,124,0,4,0,125,0,4,0,126,0,4,0,127,0,
|
14,0,92,0,4,0,93,0,0,0,94,0,43,0,24,0,9,0,95,0,
|
||||||
7,0,-128,0,7,0,-127,0,4,0,-126,0,0,0,-125,0,48,0,3,0,
|
9,0,96,0,25,0,97,0,0,0,35,0,18,0,98,0,18,0,99,0,
|
||||||
46,0,-124,0,13,0,-123,0,13,0,-122,0,49,0,3,0,46,0,-124,0,
|
14,0,100,0,14,0,101,0,14,0,102,0,8,0,103,0,8,0,104,0,
|
||||||
14,0,-123,0,14,0,-122,0,50,0,13,0,46,0,-124,0,18,0,-121,0,
|
8,0,105,0,8,0,106,0,8,0,107,0,8,0,108,0,8,0,109,0,
|
||||||
18,0,-120,0,4,0,-119,0,4,0,-118,0,4,0,-117,0,7,0,-116,0,
|
4,0,110,0,4,0,111,0,4,0,112,0,4,0,113,0,4,0,114,0,
|
||||||
7,0,-115,0,7,0,-114,0,7,0,-113,0,7,0,-112,0,7,0,-111,0,
|
4,0,115,0,4,0,116,0,0,0,37,0,44,0,23,0,9,0,95,0,
|
||||||
7,0,-110,0,51,0,13,0,46,0,-124,0,17,0,-121,0,17,0,-120,0,
|
9,0,96,0,25,0,97,0,0,0,35,0,17,0,98,0,17,0,99,0,
|
||||||
4,0,-119,0,4,0,-118,0,4,0,-117,0,7,0,-116,0,7,0,-115,0,
|
13,0,100,0,13,0,101,0,13,0,102,0,7,0,103,0,7,0,104,0,
|
||||||
7,0,-114,0,7,0,-113,0,7,0,-112,0,7,0,-111,0,7,0,-110,0,
|
7,0,105,0,7,0,106,0,7,0,107,0,7,0,108,0,7,0,109,0,
|
||||||
52,0,11,0,46,0,-124,0,17,0,-121,0,17,0,-120,0,7,0,-109,0,
|
4,0,110,0,4,0,111,0,4,0,112,0,4,0,113,0,4,0,114,0,
|
||||||
7,0,-108,0,7,0,-107,0,7,0,-112,0,7,0,-111,0,7,0,-110,0,
|
4,0,115,0,4,0,116,0,45,0,21,0,44,0,117,0,15,0,118,0,
|
||||||
7,0,-106,0,0,0,42,0,53,0,9,0,46,0,-124,0,17,0,-121,0,
|
13,0,119,0,13,0,120,0,13,0,121,0,13,0,122,0,13,0,123,0,
|
||||||
17,0,-120,0,13,0,-105,0,13,0,-104,0,13,0,-103,0,13,0,-102,0,
|
13,0,124,0,13,0,125,0,13,0,126,0,13,0,127,0,7,0,-128,0,
|
||||||
4,0,-101,0,4,0,-100,0,54,0,9,0,46,0,-124,0,17,0,-121,0,
|
7,0,-127,0,7,0,-126,0,7,0,-125,0,7,0,-124,0,7,0,-123,0,
|
||||||
17,0,-120,0,7,0,-105,0,7,0,-104,0,7,0,-103,0,7,0,-102,0,
|
7,0,-122,0,7,0,-121,0,7,0,-120,0,4,0,-119,0,46,0,22,0,
|
||||||
4,0,-101,0,4,0,-100,0,};
|
43,0,117,0,16,0,118,0,14,0,119,0,14,0,120,0,14,0,121,0,
|
||||||
|
14,0,122,0,14,0,123,0,14,0,124,0,14,0,125,0,14,0,126,0,
|
||||||
|
14,0,127,0,8,0,-128,0,8,0,-127,0,8,0,-126,0,8,0,-125,0,
|
||||||
|
8,0,-124,0,8,0,-123,0,8,0,-122,0,8,0,-121,0,8,0,-120,0,
|
||||||
|
4,0,-119,0,0,0,37,0,47,0,2,0,4,0,-118,0,4,0,-117,0,
|
||||||
|
48,0,11,0,49,0,-116,0,49,0,-115,0,0,0,35,0,4,0,-114,0,
|
||||||
|
4,0,-113,0,4,0,-112,0,4,0,-111,0,7,0,-110,0,7,0,-109,0,
|
||||||
|
4,0,-108,0,0,0,-107,0,50,0,3,0,48,0,-106,0,13,0,-105,0,
|
||||||
|
13,0,-104,0,51,0,3,0,48,0,-106,0,14,0,-105,0,14,0,-104,0,
|
||||||
|
52,0,13,0,48,0,-106,0,18,0,-103,0,18,0,-102,0,4,0,-101,0,
|
||||||
|
4,0,-100,0,4,0,-99,0,7,0,-98,0,7,0,-97,0,7,0,-96,0,
|
||||||
|
7,0,-95,0,7,0,-94,0,7,0,-93,0,7,0,-92,0,53,0,13,0,
|
||||||
|
48,0,-106,0,17,0,-103,0,17,0,-102,0,4,0,-101,0,4,0,-100,0,
|
||||||
|
4,0,-99,0,7,0,-98,0,7,0,-97,0,7,0,-96,0,7,0,-95,0,
|
||||||
|
7,0,-94,0,7,0,-93,0,7,0,-92,0,54,0,11,0,48,0,-106,0,
|
||||||
|
17,0,-103,0,17,0,-102,0,7,0,-91,0,7,0,-90,0,7,0,-89,0,
|
||||||
|
7,0,-94,0,7,0,-93,0,7,0,-92,0,7,0,-88,0,0,0,42,0,
|
||||||
|
55,0,9,0,48,0,-106,0,17,0,-103,0,17,0,-102,0,13,0,-87,0,
|
||||||
|
13,0,-86,0,13,0,-85,0,13,0,-84,0,4,0,-83,0,4,0,-82,0,
|
||||||
|
56,0,9,0,48,0,-106,0,17,0,-103,0,17,0,-102,0,7,0,-87,0,
|
||||||
|
7,0,-86,0,7,0,-85,0,7,0,-84,0,4,0,-83,0,4,0,-82,0,
|
||||||
|
};
|
||||||
int sBulletDNAlen64= sizeof(sBulletDNAstr64);
|
int sBulletDNAlen64= sizeof(sBulletDNAstr64);
|
||||||
|
|
||||||
unsigned char sBulletDNAstr[]= {
|
unsigned char sBulletDNAstr[]= {
|
||||||
83,68,78,65,78,65,77,69,-99,0,0,0,109,95,115,105,122,101,0,109,
|
83,68,78,65,78,65,77,69,-81,0,0,0,109,95,115,105,122,101,0,109,
|
||||||
95,99,97,112,97,99,105,116,121,0,42,109,95,100,97,116,97,0,109,95,
|
95,99,97,112,97,99,105,116,121,0,42,109,95,100,97,116,97,0,109,95,
|
||||||
99,111,108,108,105,115,105,111,110,83,104,97,112,101,115,0,109,95,99,111,
|
99,111,108,108,105,115,105,111,110,83,104,97,112,101,115,0,109,95,99,111,
|
||||||
108,108,105,115,105,111,110,79,98,106,101,99,116,115,0,109,95,99,111,110,
|
108,108,105,115,105,111,110,79,98,106,101,99,116,115,0,109,95,99,111,110,
|
||||||
@@ -313,218 +334,238 @@ unsigned char sBulletDNAstr[]= {
|
|||||||
0,109,95,110,117,109,77,101,115,104,80,97,114,116,115,0,109,95,109,101,
|
0,109,95,110,117,109,77,101,115,104,80,97,114,116,115,0,109,95,109,101,
|
||||||
115,104,73,110,116,101,114,102,97,99,101,0,42,109,95,113,117,97,110,116,
|
115,104,73,110,116,101,114,102,97,99,101,0,42,109,95,113,117,97,110,116,
|
||||||
105,122,101,100,70,108,111,97,116,66,118,104,0,42,109,95,113,117,97,110,
|
105,122,101,100,70,108,111,97,116,66,118,104,0,42,109,95,113,117,97,110,
|
||||||
116,105,122,101,100,68,111,117,98,108,101,66,118,104,0,109,95,112,97,100,
|
116,105,122,101,100,68,111,117,98,108,101,66,118,104,0,42,109,95,116,114,
|
||||||
51,91,52,93,0,109,95,116,114,97,110,115,102,111,114,109,0,42,109,95,
|
105,97,110,103,108,101,73,110,102,111,77,97,112,0,109,95,112,97,100,51,
|
||||||
99,104,105,108,100,83,104,97,112,101,0,109,95,99,104,105,108,100,83,104,
|
91,52,93,0,109,95,116,114,97,110,115,102,111,114,109,0,42,109,95,99,
|
||||||
97,112,101,84,121,112,101,0,109,95,99,104,105,108,100,77,97,114,103,105,
|
104,105,108,100,83,104,97,112,101,0,109,95,99,104,105,108,100,83,104,97,
|
||||||
110,0,42,109,95,99,104,105,108,100,83,104,97,112,101,80,116,114,0,109,
|
112,101,84,121,112,101,0,109,95,99,104,105,108,100,77,97,114,103,105,110,
|
||||||
95,110,117,109,67,104,105,108,100,83,104,97,112,101,115,0,109,95,117,112,
|
0,42,109,95,99,104,105,108,100,83,104,97,112,101,80,116,114,0,109,95,
|
||||||
65,120,105,115,0,109,95,103,105,109,112,97,99,116,83,117,98,84,121,112,
|
110,117,109,67,104,105,108,100,83,104,97,112,101,115,0,109,95,117,112,65,
|
||||||
101,0,42,109,95,117,110,115,99,97,108,101,100,80,111,105,110,116,115,70,
|
120,105,115,0,109,95,102,108,97,103,115,0,109,95,101,100,103,101,86,48,
|
||||||
108,111,97,116,80,116,114,0,42,109,95,117,110,115,99,97,108,101,100,80,
|
86,49,65,110,103,108,101,0,109,95,101,100,103,101,86,49,86,50,65,110,
|
||||||
111,105,110,116,115,68,111,117,98,108,101,80,116,114,0,109,95,110,117,109,
|
103,108,101,0,109,95,101,100,103,101,86,50,86,48,65,110,103,108,101,0,
|
||||||
85,110,115,99,97,108,101,100,80,111,105,110,116,115,0,109,95,112,97,100,
|
42,109,95,104,97,115,104,84,97,98,108,101,80,116,114,0,42,109,95,110,
|
||||||
100,105,110,103,51,91,52,93,0,42,109,95,98,114,111,97,100,112,104,97,
|
101,120,116,80,116,114,0,42,109,95,118,97,108,117,101,65,114,114,97,121,
|
||||||
115,101,72,97,110,100,108,101,0,42,109,95,99,111,108,108,105,115,105,111,
|
80,116,114,0,42,109,95,107,101,121,65,114,114,97,121,80,116,114,0,109,
|
||||||
110,83,104,97,112,101,0,42,109,95,114,111,111,116,67,111,108,108,105,115,
|
95,99,111,110,118,101,120,69,112,115,105,108,111,110,0,109,95,112,108,97,
|
||||||
105,111,110,83,104,97,112,101,0,109,95,119,111,114,108,100,84,114,97,110,
|
110,97,114,69,112,115,105,108,111,110,0,109,95,101,113,117,97,108,86,101,
|
||||||
115,102,111,114,109,0,109,95,105,110,116,101,114,112,111,108,97,116,105,111,
|
114,116,101,120,84,104,114,101,115,104,111,108,100,0,109,95,101,100,103,101,
|
||||||
110,87,111,114,108,100,84,114,97,110,115,102,111,114,109,0,109,95,105,110,
|
68,105,115,116,97,110,99,101,84,104,114,101,115,104,111,108,100,0,109,95,
|
||||||
116,101,114,112,111,108,97,116,105,111,110,76,105,110,101,97,114,86,101,108,
|
122,101,114,111,65,114,101,97,84,104,114,101,115,104,111,108,100,0,109,95,
|
||||||
111,99,105,116,121,0,109,95,105,110,116,101,114,112,111,108,97,116,105,111,
|
110,101,120,116,83,105,122,101,0,109,95,104,97,115,104,84,97,98,108,101,
|
||||||
110,65,110,103,117,108,97,114,86,101,108,111,99,105,116,121,0,109,95,97,
|
83,105,122,101,0,109,95,110,117,109,86,97,108,117,101,115,0,109,95,110,
|
||||||
110,105,115,111,116,114,111,112,105,99,70,114,105,99,116,105,111,110,0,109,
|
117,109,75,101,121,115,0,109,95,103,105,109,112,97,99,116,83,117,98,84,
|
||||||
95,99,111,110,116,97,99,116,80,114,111,99,101,115,115,105,110,103,84,104,
|
121,112,101,0,42,109,95,117,110,115,99,97,108,101,100,80,111,105,110,116,
|
||||||
114,101,115,104,111,108,100,0,109,95,100,101,97,99,116,105,118,97,116,105,
|
115,70,108,111,97,116,80,116,114,0,42,109,95,117,110,115,99,97,108,101,
|
||||||
111,110,84,105,109,101,0,109,95,102,114,105,99,116,105,111,110,0,109,95,
|
100,80,111,105,110,116,115,68,111,117,98,108,101,80,116,114,0,109,95,110,
|
||||||
114,101,115,116,105,116,117,116,105,111,110,0,109,95,104,105,116,70,114,97,
|
117,109,85,110,115,99,97,108,101,100,80,111,105,110,116,115,0,109,95,112,
|
||||||
99,116,105,111,110,0,109,95,99,99,100,83,119,101,112,116,83,112,104,101,
|
97,100,100,105,110,103,51,91,52,93,0,42,109,95,98,114,111,97,100,112,
|
||||||
114,101,82,97,100,105,117,115,0,109,95,99,99,100,77,111,116,105,111,110,
|
104,97,115,101,72,97,110,100,108,101,0,42,109,95,99,111,108,108,105,115,
|
||||||
84,104,114,101,115,104,111,108,100,0,109,95,104,97,115,65,110,105,115,111,
|
105,111,110,83,104,97,112,101,0,42,109,95,114,111,111,116,67,111,108,108,
|
||||||
116,114,111,112,105,99,70,114,105,99,116,105,111,110,0,109,95,99,111,108,
|
105,115,105,111,110,83,104,97,112,101,0,109,95,119,111,114,108,100,84,114,
|
||||||
108,105,115,105,111,110,70,108,97,103,115,0,109,95,105,115,108,97,110,100,
|
97,110,115,102,111,114,109,0,109,95,105,110,116,101,114,112,111,108,97,116,
|
||||||
84,97,103,49,0,109,95,99,111,109,112,97,110,105,111,110,73,100,0,109,
|
105,111,110,87,111,114,108,100,84,114,97,110,115,102,111,114,109,0,109,95,
|
||||||
95,97,99,116,105,118,97,116,105,111,110,83,116,97,116,101,49,0,109,95,
|
105,110,116,101,114,112,111,108,97,116,105,111,110,76,105,110,101,97,114,86,
|
||||||
105,110,116,101,114,110,97,108,84,121,112,101,0,109,95,99,104,101,99,107,
|
101,108,111,99,105,116,121,0,109,95,105,110,116,101,114,112,111,108,97,116,
|
||||||
67,111,108,108,105,100,101,87,105,116,104,0,109,95,99,111,108,108,105,115,
|
105,111,110,65,110,103,117,108,97,114,86,101,108,111,99,105,116,121,0,109,
|
||||||
105,111,110,79,98,106,101,99,116,68,97,116,97,0,109,95,105,110,118,73,
|
95,97,110,105,115,111,116,114,111,112,105,99,70,114,105,99,116,105,111,110,
|
||||||
110,101,114,116,105,97,84,101,110,115,111,114,87,111,114,108,100,0,109,95,
|
0,109,95,99,111,110,116,97,99,116,80,114,111,99,101,115,115,105,110,103,
|
||||||
108,105,110,101,97,114,86,101,108,111,99,105,116,121,0,109,95,97,110,103,
|
84,104,114,101,115,104,111,108,100,0,109,95,100,101,97,99,116,105,118,97,
|
||||||
117,108,97,114,86,101,108,111,99,105,116,121,0,109,95,97,110,103,117,108,
|
116,105,111,110,84,105,109,101,0,109,95,102,114,105,99,116,105,111,110,0,
|
||||||
97,114,70,97,99,116,111,114,0,109,95,108,105,110,101,97,114,70,97,99,
|
109,95,114,101,115,116,105,116,117,116,105,111,110,0,109,95,104,105,116,70,
|
||||||
116,111,114,0,109,95,103,114,97,118,105,116,121,0,109,95,103,114,97,118,
|
114,97,99,116,105,111,110,0,109,95,99,99,100,83,119,101,112,116,83,112,
|
||||||
105,116,121,95,97,99,99,101,108,101,114,97,116,105,111,110,0,109,95,105,
|
104,101,114,101,82,97,100,105,117,115,0,109,95,99,99,100,77,111,116,105,
|
||||||
110,118,73,110,101,114,116,105,97,76,111,99,97,108,0,109,95,116,111,116,
|
111,110,84,104,114,101,115,104,111,108,100,0,109,95,104,97,115,65,110,105,
|
||||||
97,108,70,111,114,99,101,0,109,95,116,111,116,97,108,84,111,114,113,117,
|
115,111,116,114,111,112,105,99,70,114,105,99,116,105,111,110,0,109,95,99,
|
||||||
101,0,109,95,105,110,118,101,114,115,101,77,97,115,115,0,109,95,108,105,
|
111,108,108,105,115,105,111,110,70,108,97,103,115,0,109,95,105,115,108,97,
|
||||||
110,101,97,114,68,97,109,112,105,110,103,0,109,95,97,110,103,117,108,97,
|
110,100,84,97,103,49,0,109,95,99,111,109,112,97,110,105,111,110,73,100,
|
||||||
114,68,97,109,112,105,110,103,0,109,95,97,100,100,105,116,105,111,110,97,
|
0,109,95,97,99,116,105,118,97,116,105,111,110,83,116,97,116,101,49,0,
|
||||||
108,68,97,109,112,105,110,103,70,97,99,116,111,114,0,109,95,97,100,100,
|
109,95,105,110,116,101,114,110,97,108,84,121,112,101,0,109,95,99,104,101,
|
||||||
105,116,105,111,110,97,108,76,105,110,101,97,114,68,97,109,112,105,110,103,
|
99,107,67,111,108,108,105,100,101,87,105,116,104,0,109,95,99,111,108,108,
|
||||||
84,104,114,101,115,104,111,108,100,83,113,114,0,109,95,97,100,100,105,116,
|
105,115,105,111,110,79,98,106,101,99,116,68,97,116,97,0,109,95,105,110,
|
||||||
105,111,110,97,108,65,110,103,117,108,97,114,68,97,109,112,105,110,103,84,
|
118,73,110,101,114,116,105,97,84,101,110,115,111,114,87,111,114,108,100,0,
|
||||||
104,114,101,115,104,111,108,100,83,113,114,0,109,95,97,100,100,105,116,105,
|
109,95,108,105,110,101,97,114,86,101,108,111,99,105,116,121,0,109,95,97,
|
||||||
111,110,97,108,65,110,103,117,108,97,114,68,97,109,112,105,110,103,70,97,
|
110,103,117,108,97,114,86,101,108,111,99,105,116,121,0,109,95,97,110,103,
|
||||||
99,116,111,114,0,109,95,108,105,110,101,97,114,83,108,101,101,112,105,110,
|
117,108,97,114,70,97,99,116,111,114,0,109,95,108,105,110,101,97,114,70,
|
||||||
103,84,104,114,101,115,104,111,108,100,0,109,95,97,110,103,117,108,97,114,
|
97,99,116,111,114,0,109,95,103,114,97,118,105,116,121,0,109,95,103,114,
|
||||||
83,108,101,101,112,105,110,103,84,104,114,101,115,104,111,108,100,0,109,95,
|
97,118,105,116,121,95,97,99,99,101,108,101,114,97,116,105,111,110,0,109,
|
||||||
97,100,100,105,116,105,111,110,97,108,68,97,109,112,105,110,103,0,109,95,
|
95,105,110,118,73,110,101,114,116,105,97,76,111,99,97,108,0,109,95,116,
|
||||||
110,117,109,67,111,110,115,116,114,97,105,110,116,82,111,119,115,0,110,117,
|
111,116,97,108,70,111,114,99,101,0,109,95,116,111,116,97,108,84,111,114,
|
||||||
98,0,42,109,95,114,98,65,0,42,109,95,114,98,66,0,109,95,111,98,
|
113,117,101,0,109,95,105,110,118,101,114,115,101,77,97,115,115,0,109,95,
|
||||||
106,101,99,116,84,121,112,101,0,109,95,117,115,101,114,67,111,110,115,116,
|
108,105,110,101,97,114,68,97,109,112,105,110,103,0,109,95,97,110,103,117,
|
||||||
114,97,105,110,116,84,121,112,101,0,109,95,117,115,101,114,67,111,110,115,
|
108,97,114,68,97,109,112,105,110,103,0,109,95,97,100,100,105,116,105,111,
|
||||||
116,114,97,105,110,116,73,100,0,109,95,110,101,101,100,115,70,101,101,100,
|
110,97,108,68,97,109,112,105,110,103,70,97,99,116,111,114,0,109,95,97,
|
||||||
98,97,99,107,0,109,95,97,112,112,108,105,101,100,73,109,112,117,108,115,
|
100,100,105,116,105,111,110,97,108,76,105,110,101,97,114,68,97,109,112,105,
|
||||||
101,0,109,95,100,98,103,68,114,97,119,83,105,122,101,0,109,95,100,105,
|
110,103,84,104,114,101,115,104,111,108,100,83,113,114,0,109,95,97,100,100,
|
||||||
115,97,98,108,101,67,111,108,108,105,115,105,111,110,115,66,101,116,119,101,
|
105,116,105,111,110,97,108,65,110,103,117,108,97,114,68,97,109,112,105,110,
|
||||||
101,110,76,105,110,107,101,100,66,111,100,105,101,115,0,109,95,112,97,100,
|
103,84,104,114,101,115,104,111,108,100,83,113,114,0,109,95,97,100,100,105,
|
||||||
52,91,52,93,0,109,95,116,121,112,101,67,111,110,115,116,114,97,105,110,
|
116,105,111,110,97,108,65,110,103,117,108,97,114,68,97,109,112,105,110,103,
|
||||||
116,68,97,116,97,0,109,95,112,105,118,111,116,73,110,65,0,109,95,112,
|
70,97,99,116,111,114,0,109,95,108,105,110,101,97,114,83,108,101,101,112,
|
||||||
105,118,111,116,73,110,66,0,109,95,114,98,65,70,114,97,109,101,0,109,
|
105,110,103,84,104,114,101,115,104,111,108,100,0,109,95,97,110,103,117,108,
|
||||||
95,114,98,66,70,114,97,109,101,0,109,95,117,115,101,82,101,102,101,114,
|
97,114,83,108,101,101,112,105,110,103,84,104,114,101,115,104,111,108,100,0,
|
||||||
101,110,99,101,70,114,97,109,101,65,0,109,95,97,110,103,117,108,97,114,
|
109,95,97,100,100,105,116,105,111,110,97,108,68,97,109,112,105,110,103,0,
|
||||||
79,110,108,121,0,109,95,101,110,97,98,108,101,65,110,103,117,108,97,114,
|
109,95,110,117,109,67,111,110,115,116,114,97,105,110,116,82,111,119,115,0,
|
||||||
77,111,116,111,114,0,109,95,109,111,116,111,114,84,97,114,103,101,116,86,
|
110,117,98,0,42,109,95,114,98,65,0,42,109,95,114,98,66,0,109,95,
|
||||||
101,108,111,99,105,116,121,0,109,95,109,97,120,77,111,116,111,114,73,109,
|
111,98,106,101,99,116,84,121,112,101,0,109,95,117,115,101,114,67,111,110,
|
||||||
112,117,108,115,101,0,109,95,108,111,119,101,114,76,105,109,105,116,0,109,
|
115,116,114,97,105,110,116,84,121,112,101,0,109,95,117,115,101,114,67,111,
|
||||||
95,117,112,112,101,114,76,105,109,105,116,0,109,95,108,105,109,105,116,83,
|
110,115,116,114,97,105,110,116,73,100,0,109,95,110,101,101,100,115,70,101,
|
||||||
111,102,116,110,101,115,115,0,109,95,98,105,97,115,70,97,99,116,111,114,
|
101,100,98,97,99,107,0,109,95,97,112,112,108,105,101,100,73,109,112,117,
|
||||||
0,109,95,114,101,108,97,120,97,116,105,111,110,70,97,99,116,111,114,0,
|
108,115,101,0,109,95,100,98,103,68,114,97,119,83,105,122,101,0,109,95,
|
||||||
109,95,115,119,105,110,103,83,112,97,110,49,0,109,95,115,119,105,110,103,
|
100,105,115,97,98,108,101,67,111,108,108,105,115,105,111,110,115,66,101,116,
|
||||||
83,112,97,110,50,0,109,95,116,119,105,115,116,83,112,97,110,0,109,95,
|
119,101,101,110,76,105,110,107,101,100,66,111,100,105,101,115,0,109,95,112,
|
||||||
100,97,109,112,105,110,103,0,109,95,108,105,110,101,97,114,85,112,112,101,
|
97,100,52,91,52,93,0,109,95,116,121,112,101,67,111,110,115,116,114,97,
|
||||||
114,76,105,109,105,116,0,109,95,108,105,110,101,97,114,76,111,119,101,114,
|
105,110,116,68,97,116,97,0,109,95,112,105,118,111,116,73,110,65,0,109,
|
||||||
76,105,109,105,116,0,109,95,97,110,103,117,108,97,114,85,112,112,101,114,
|
95,112,105,118,111,116,73,110,66,0,109,95,114,98,65,70,114,97,109,101,
|
||||||
76,105,109,105,116,0,109,95,97,110,103,117,108,97,114,76,111,119,101,114,
|
0,109,95,114,98,66,70,114,97,109,101,0,109,95,117,115,101,82,101,102,
|
||||||
76,105,109,105,116,0,109,95,117,115,101,76,105,110,101,97,114,82,101,102,
|
101,114,101,110,99,101,70,114,97,109,101,65,0,109,95,97,110,103,117,108,
|
||||||
101,114,101,110,99,101,70,114,97,109,101,65,0,109,95,117,115,101,79,102,
|
97,114,79,110,108,121,0,109,95,101,110,97,98,108,101,65,110,103,117,108,
|
||||||
102,115,101,116,70,111,114,67,111,110,115,116,114,97,105,110,116,70,114,97,
|
97,114,77,111,116,111,114,0,109,95,109,111,116,111,114,84,97,114,103,101,
|
||||||
109,101,0,0,84,89,80,69,55,0,0,0,99,104,97,114,0,117,99,104,
|
116,86,101,108,111,99,105,116,121,0,109,95,109,97,120,77,111,116,111,114,
|
||||||
97,114,0,115,104,111,114,116,0,117,115,104,111,114,116,0,105,110,116,0,
|
73,109,112,117,108,115,101,0,109,95,108,111,119,101,114,76,105,109,105,116,
|
||||||
108,111,110,103,0,117,108,111,110,103,0,102,108,111,97,116,0,100,111,117,
|
0,109,95,117,112,112,101,114,76,105,109,105,116,0,109,95,108,105,109,105,
|
||||||
98,108,101,0,118,111,105,100,0,80,111,105,110,116,101,114,65,114,114,97,
|
116,83,111,102,116,110,101,115,115,0,109,95,98,105,97,115,70,97,99,116,
|
||||||
121,0,98,116,80,104,121,115,105,99,115,83,121,115,116,101,109,0,76,105,
|
111,114,0,109,95,114,101,108,97,120,97,116,105,111,110,70,97,99,116,111,
|
||||||
115,116,66,97,115,101,0,98,116,86,101,99,116,111,114,51,70,108,111,97,
|
114,0,109,95,115,119,105,110,103,83,112,97,110,49,0,109,95,115,119,105,
|
||||||
116,68,97,116,97,0,98,116,86,101,99,116,111,114,51,68,111,117,98,108,
|
110,103,83,112,97,110,50,0,109,95,116,119,105,115,116,83,112,97,110,0,
|
||||||
101,68,97,116,97,0,98,116,77,97,116,114,105,120,51,120,51,70,108,111,
|
109,95,100,97,109,112,105,110,103,0,109,95,108,105,110,101,97,114,85,112,
|
||||||
97,116,68,97,116,97,0,98,116,77,97,116,114,105,120,51,120,51,68,111,
|
112,101,114,76,105,109,105,116,0,109,95,108,105,110,101,97,114,76,111,119,
|
||||||
117,98,108,101,68,97,116,97,0,98,116,84,114,97,110,115,102,111,114,109,
|
101,114,76,105,109,105,116,0,109,95,97,110,103,117,108,97,114,85,112,112,
|
||||||
70,108,111,97,116,68,97,116,97,0,98,116,84,114,97,110,115,102,111,114,
|
101,114,76,105,109,105,116,0,109,95,97,110,103,117,108,97,114,76,111,119,
|
||||||
109,68,111,117,98,108,101,68,97,116,97,0,98,116,66,118,104,83,117,98,
|
101,114,76,105,109,105,116,0,109,95,117,115,101,76,105,110,101,97,114,82,
|
||||||
116,114,101,101,73,110,102,111,68,97,116,97,0,98,116,79,112,116,105,109,
|
101,102,101,114,101,110,99,101,70,114,97,109,101,65,0,109,95,117,115,101,
|
||||||
105,122,101,100,66,118,104,78,111,100,101,70,108,111,97,116,68,97,116,97,
|
79,102,102,115,101,116,70,111,114,67,111,110,115,116,114,97,105,110,116,70,
|
||||||
0,98,116,79,112,116,105,109,105,122,101,100,66,118,104,78,111,100,101,68,
|
114,97,109,101,0,0,0,0,84,89,80,69,57,0,0,0,99,104,97,114,
|
||||||
111,117,98,108,101,68,97,116,97,0,98,116,81,117,97,110,116,105,122,101,
|
0,117,99,104,97,114,0,115,104,111,114,116,0,117,115,104,111,114,116,0,
|
||||||
100,66,118,104,78,111,100,101,68,97,116,97,0,98,116,81,117,97,110,116,
|
105,110,116,0,108,111,110,103,0,117,108,111,110,103,0,102,108,111,97,116,
|
||||||
105,122,101,100,66,118,104,70,108,111,97,116,68,97,116,97,0,98,116,81,
|
0,100,111,117,98,108,101,0,118,111,105,100,0,80,111,105,110,116,101,114,
|
||||||
117,97,110,116,105,122,101,100,66,118,104,68,111,117,98,108,101,68,97,116,
|
65,114,114,97,121,0,98,116,80,104,121,115,105,99,115,83,121,115,116,101,
|
||||||
97,0,98,116,67,111,108,108,105,115,105,111,110,83,104,97,112,101,68,97,
|
109,0,76,105,115,116,66,97,115,101,0,98,116,86,101,99,116,111,114,51,
|
||||||
116,97,0,98,116,83,116,97,116,105,99,80,108,97,110,101,83,104,97,112,
|
70,108,111,97,116,68,97,116,97,0,98,116,86,101,99,116,111,114,51,68,
|
||||||
101,68,97,116,97,0,98,116,67,111,110,118,101,120,73,110,116,101,114,110,
|
111,117,98,108,101,68,97,116,97,0,98,116,77,97,116,114,105,120,51,120,
|
||||||
97,108,83,104,97,112,101,68,97,116,97,0,98,116,80,111,115,105,116,105,
|
51,70,108,111,97,116,68,97,116,97,0,98,116,77,97,116,114,105,120,51,
|
||||||
111,110,65,110,100,82,97,100,105,117,115,0,98,116,77,117,108,116,105,83,
|
120,51,68,111,117,98,108,101,68,97,116,97,0,98,116,84,114,97,110,115,
|
||||||
112,104,101,114,101,83,104,97,112,101,68,97,116,97,0,98,116,73,110,116,
|
102,111,114,109,70,108,111,97,116,68,97,116,97,0,98,116,84,114,97,110,
|
||||||
73,110,100,101,120,68,97,116,97,0,98,116,83,104,111,114,116,73,110,116,
|
115,102,111,114,109,68,111,117,98,108,101,68,97,116,97,0,98,116,66,118,
|
||||||
73,110,100,101,120,68,97,116,97,0,98,116,77,101,115,104,80,97,114,116,
|
104,83,117,98,116,114,101,101,73,110,102,111,68,97,116,97,0,98,116,79,
|
||||||
68,97,116,97,0,98,116,83,116,114,105,100,105,110,103,77,101,115,104,73,
|
112,116,105,109,105,122,101,100,66,118,104,78,111,100,101,70,108,111,97,116,
|
||||||
110,116,101,114,102,97,99,101,68,97,116,97,0,98,116,84,114,105,97,110,
|
68,97,116,97,0,98,116,79,112,116,105,109,105,122,101,100,66,118,104,78,
|
||||||
103,108,101,77,101,115,104,83,104,97,112,101,68,97,116,97,0,98,116,67,
|
111,100,101,68,111,117,98,108,101,68,97,116,97,0,98,116,81,117,97,110,
|
||||||
111,109,112,111,117,110,100,83,104,97,112,101,67,104,105,108,100,68,97,116,
|
116,105,122,101,100,66,118,104,78,111,100,101,68,97,116,97,0,98,116,81,
|
||||||
97,0,98,116,67,111,109,112,111,117,110,100,83,104,97,112,101,68,97,116,
|
117,97,110,116,105,122,101,100,66,118,104,70,108,111,97,116,68,97,116,97,
|
||||||
97,0,98,116,67,121,108,105,110,100,101,114,83,104,97,112,101,68,97,116,
|
0,98,116,81,117,97,110,116,105,122,101,100,66,118,104,68,111,117,98,108,
|
||||||
97,0,98,116,67,97,112,115,117,108,101,83,104,97,112,101,68,97,116,97,
|
101,68,97,116,97,0,98,116,67,111,108,108,105,115,105,111,110,83,104,97,
|
||||||
0,98,116,71,73,109,112,97,99,116,77,101,115,104,83,104,97,112,101,68,
|
112,101,68,97,116,97,0,98,116,83,116,97,116,105,99,80,108,97,110,101,
|
||||||
97,116,97,0,98,116,67,111,110,118,101,120,72,117,108,108,83,104,97,112,
|
83,104,97,112,101,68,97,116,97,0,98,116,67,111,110,118,101,120,73,110,
|
||||||
101,68,97,116,97,0,98,116,67,111,108,108,105,115,105,111,110,79,98,106,
|
116,101,114,110,97,108,83,104,97,112,101,68,97,116,97,0,98,116,80,111,
|
||||||
101,99,116,68,111,117,98,108,101,68,97,116,97,0,98,116,67,111,108,108,
|
115,105,116,105,111,110,65,110,100,82,97,100,105,117,115,0,98,116,77,117,
|
||||||
105,115,105,111,110,79,98,106,101,99,116,70,108,111,97,116,68,97,116,97,
|
108,116,105,83,112,104,101,114,101,83,104,97,112,101,68,97,116,97,0,98,
|
||||||
0,98,116,82,105,103,105,100,66,111,100,121,70,108,111,97,116,68,97,116,
|
116,73,110,116,73,110,100,101,120,68,97,116,97,0,98,116,83,104,111,114,
|
||||||
97,0,98,116,82,105,103,105,100,66,111,100,121,68,111,117,98,108,101,68,
|
116,73,110,116,73,110,100,101,120,68,97,116,97,0,98,116,77,101,115,104,
|
||||||
97,116,97,0,98,116,67,111,110,115,116,114,97,105,110,116,73,110,102,111,
|
80,97,114,116,68,97,116,97,0,98,116,83,116,114,105,100,105,110,103,77,
|
||||||
49,0,98,116,84,121,112,101,100,67,111,110,115,116,114,97,105,110,116,68,
|
101,115,104,73,110,116,101,114,102,97,99,101,68,97,116,97,0,98,116,84,
|
||||||
97,116,97,0,98,116,82,105,103,105,100,66,111,100,121,68,97,116,97,0,
|
114,105,97,110,103,108,101,77,101,115,104,83,104,97,112,101,68,97,116,97,
|
||||||
98,116,80,111,105,110,116,50,80,111,105,110,116,67,111,110,115,116,114,97,
|
0,98,116,84,114,105,97,110,103,108,101,73,110,102,111,77,97,112,68,97,
|
||||||
105,110,116,70,108,111,97,116,68,97,116,97,0,98,116,80,111,105,110,116,
|
116,97,0,98,116,67,111,109,112,111,117,110,100,83,104,97,112,101,67,104,
|
||||||
50,80,111,105,110,116,67,111,110,115,116,114,97,105,110,116,68,111,117,98,
|
105,108,100,68,97,116,97,0,98,116,67,111,109,112,111,117,110,100,83,104,
|
||||||
108,101,68,97,116,97,0,98,116,72,105,110,103,101,67,111,110,115,116,114,
|
97,112,101,68,97,116,97,0,98,116,67,121,108,105,110,100,101,114,83,104,
|
||||||
97,105,110,116,68,111,117,98,108,101,68,97,116,97,0,98,116,72,105,110,
|
97,112,101,68,97,116,97,0,98,116,67,97,112,115,117,108,101,83,104,97,
|
||||||
103,101,67,111,110,115,116,114,97,105,110,116,70,108,111,97,116,68,97,116,
|
112,101,68,97,116,97,0,98,116,84,114,105,97,110,103,108,101,73,110,102,
|
||||||
97,0,98,116,67,111,110,101,84,119,105,115,116,67,111,110,115,116,114,97,
|
111,68,97,116,97,0,98,116,71,73,109,112,97,99,116,77,101,115,104,83,
|
||||||
105,110,116,68,97,116,97,0,98,116,71,101,110,101,114,105,99,54,68,111,
|
104,97,112,101,68,97,116,97,0,98,116,67,111,110,118,101,120,72,117,108,
|
||||||
102,67,111,110,115,116,114,97,105,110,116,68,97,116,97,0,98,116,83,108,
|
108,83,104,97,112,101,68,97,116,97,0,98,116,67,111,108,108,105,115,105,
|
||||||
105,100,101,114,67,111,110,115,116,114,97,105,110,116,68,97,116,97,0,0,
|
111,110,79,98,106,101,99,116,68,111,117,98,108,101,68,97,116,97,0,98,
|
||||||
84,76,69,78,1,0,1,0,2,0,2,0,4,0,4,0,4,0,4,0,
|
116,67,111,108,108,105,115,105,111,110,79,98,106,101,99,116,70,108,111,97,
|
||||||
8,0,0,0,12,0,36,0,8,0,16,0,32,0,48,0,96,0,64,0,
|
116,68,97,116,97,0,98,116,82,105,103,105,100,66,111,100,121,70,108,111,
|
||||||
-128,0,24,0,44,0,76,0,20,0,84,0,-124,0,12,0,52,0,52,0,
|
97,116,68,97,116,97,0,98,116,82,105,103,105,100,66,111,100,121,68,111,
|
||||||
20,0,64,0,4,0,4,0,24,0,28,0,56,0,76,0,24,0,60,0,
|
117,98,108,101,68,97,116,97,0,98,116,67,111,110,115,116,114,97,105,110,
|
||||||
60,0,64,0,68,0,-56,1,-8,0,-32,1,-104,3,8,0,44,0,0,0,
|
116,73,110,102,111,49,0,98,116,84,121,112,101,100,67,111,110,115,116,114,
|
||||||
76,0,108,0,84,1,-44,0,-52,0,-12,0,-60,0,0,0,83,84,82,67,
|
97,105,110,116,68,97,116,97,0,98,116,82,105,103,105,100,66,111,100,121,
|
||||||
44,0,0,0,10,0,3,0,4,0,0,0,4,0,1,0,9,0,2,0,
|
68,97,116,97,0,98,116,80,111,105,110,116,50,80,111,105,110,116,67,111,
|
||||||
11,0,3,0,10,0,3,0,10,0,4,0,10,0,5,0,12,0,2,0,
|
110,115,116,114,97,105,110,116,70,108,111,97,116,68,97,116,97,0,98,116,
|
||||||
9,0,6,0,9,0,7,0,13,0,1,0,7,0,8,0,14,0,1,0,
|
80,111,105,110,116,50,80,111,105,110,116,67,111,110,115,116,114,97,105,110,
|
||||||
8,0,8,0,15,0,1,0,13,0,9,0,16,0,1,0,14,0,9,0,
|
116,68,111,117,98,108,101,68,97,116,97,0,98,116,72,105,110,103,101,67,
|
||||||
17,0,2,0,15,0,10,0,13,0,11,0,18,0,2,0,16,0,10,0,
|
111,110,115,116,114,97,105,110,116,68,111,117,98,108,101,68,97,116,97,0,
|
||||||
14,0,11,0,19,0,6,0,4,0,12,0,4,0,13,0,2,0,14,0,
|
98,116,72,105,110,103,101,67,111,110,115,116,114,97,105,110,116,70,108,111,
|
||||||
2,0,15,0,2,0,14,0,2,0,16,0,20,0,5,0,13,0,17,0,
|
97,116,68,97,116,97,0,98,116,67,111,110,101,84,119,105,115,116,67,111,
|
||||||
13,0,18,0,4,0,19,0,4,0,20,0,4,0,21,0,21,0,5,0,
|
110,115,116,114,97,105,110,116,68,97,116,97,0,98,116,71,101,110,101,114,
|
||||||
14,0,17,0,14,0,18,0,4,0,19,0,4,0,20,0,4,0,21,0,
|
105,99,54,68,111,102,67,111,110,115,116,114,97,105,110,116,68,97,116,97,
|
||||||
22,0,5,0,4,0,22,0,2,0,14,0,2,0,15,0,2,0,14,0,
|
0,98,116,83,108,105,100,101,114,67,111,110,115,116,114,97,105,110,116,68,
|
||||||
2,0,16,0,23,0,12,0,13,0,23,0,13,0,24,0,13,0,25,0,
|
97,116,97,0,84,76,69,78,1,0,1,0,2,0,2,0,4,0,4,0,
|
||||||
4,0,26,0,4,0,27,0,4,0,28,0,4,0,29,0,20,0,30,0,
|
4,0,4,0,8,0,0,0,12,0,36,0,8,0,16,0,32,0,48,0,
|
||||||
22,0,31,0,4,0,32,0,4,0,33,0,19,0,34,0,24,0,12,0,
|
96,0,64,0,-128,0,24,0,44,0,76,0,20,0,84,0,-124,0,12,0,
|
||||||
14,0,23,0,14,0,24,0,14,0,25,0,4,0,26,0,4,0,27,0,
|
52,0,52,0,20,0,64,0,4,0,4,0,24,0,28,0,60,0,56,0,
|
||||||
4,0,28,0,4,0,29,0,21,0,30,0,22,0,31,0,4,0,32,0,
|
76,0,24,0,60,0,60,0,16,0,64,0,68,0,-56,1,-8,0,-32,1,
|
||||||
4,0,33,0,19,0,34,0,25,0,3,0,0,0,35,0,4,0,36,0,
|
-104,3,8,0,44,0,0,0,76,0,108,0,84,1,-44,0,-52,0,-12,0,
|
||||||
0,0,37,0,26,0,5,0,25,0,38,0,13,0,39,0,13,0,40,0,
|
-60,0,0,0,83,84,82,67,46,0,0,0,10,0,3,0,4,0,0,0,
|
||||||
7,0,41,0,0,0,42,0,27,0,5,0,25,0,38,0,13,0,39,0,
|
4,0,1,0,9,0,2,0,11,0,3,0,10,0,3,0,10,0,4,0,
|
||||||
13,0,43,0,7,0,44,0,4,0,45,0,28,0,2,0,13,0,46,0,
|
10,0,5,0,12,0,2,0,9,0,6,0,9,0,7,0,13,0,1,0,
|
||||||
7,0,47,0,29,0,4,0,27,0,48,0,28,0,49,0,4,0,50,0,
|
7,0,8,0,14,0,1,0,8,0,8,0,15,0,1,0,13,0,9,0,
|
||||||
0,0,37,0,30,0,1,0,4,0,51,0,31,0,2,0,2,0,14,0,
|
16,0,1,0,14,0,9,0,17,0,2,0,15,0,10,0,13,0,11,0,
|
||||||
2,0,51,0,32,0,6,0,13,0,52,0,14,0,53,0,30,0,54,0,
|
18,0,2,0,16,0,10,0,14,0,11,0,19,0,6,0,4,0,12,0,
|
||||||
31,0,55,0,4,0,56,0,4,0,57,0,33,0,4,0,32,0,58,0,
|
4,0,13,0,2,0,14,0,2,0,15,0,2,0,14,0,2,0,16,0,
|
||||||
13,0,59,0,4,0,60,0,0,0,37,0,34,0,6,0,25,0,38,0,
|
20,0,5,0,13,0,17,0,13,0,18,0,4,0,19,0,4,0,20,0,
|
||||||
33,0,61,0,23,0,62,0,24,0,63,0,7,0,44,0,0,0,64,0,
|
4,0,21,0,21,0,5,0,14,0,17,0,14,0,18,0,4,0,19,0,
|
||||||
35,0,4,0,17,0,65,0,25,0,66,0,4,0,67,0,7,0,68,0,
|
4,0,20,0,4,0,21,0,22,0,5,0,4,0,22,0,2,0,14,0,
|
||||||
36,0,4,0,25,0,38,0,35,0,69,0,4,0,70,0,7,0,44,0,
|
2,0,15,0,2,0,14,0,2,0,16,0,23,0,12,0,13,0,23,0,
|
||||||
37,0,3,0,27,0,48,0,4,0,71,0,0,0,37,0,38,0,3,0,
|
13,0,24,0,13,0,25,0,4,0,26,0,4,0,27,0,4,0,28,0,
|
||||||
27,0,48,0,4,0,71,0,0,0,37,0,39,0,5,0,25,0,38,0,
|
4,0,29,0,20,0,30,0,22,0,31,0,4,0,32,0,4,0,33,0,
|
||||||
33,0,61,0,13,0,39,0,7,0,44,0,4,0,72,0,40,0,5,0,
|
19,0,34,0,24,0,12,0,14,0,23,0,14,0,24,0,14,0,25,0,
|
||||||
27,0,48,0,13,0,73,0,14,0,74,0,4,0,75,0,0,0,76,0,
|
4,0,26,0,4,0,27,0,4,0,28,0,4,0,29,0,21,0,30,0,
|
||||||
41,0,24,0,9,0,77,0,9,0,78,0,25,0,79,0,0,0,35,0,
|
22,0,31,0,4,0,32,0,4,0,33,0,19,0,34,0,25,0,3,0,
|
||||||
18,0,80,0,18,0,81,0,14,0,82,0,14,0,83,0,14,0,84,0,
|
0,0,35,0,4,0,36,0,0,0,37,0,26,0,5,0,25,0,38,0,
|
||||||
8,0,85,0,8,0,86,0,8,0,87,0,8,0,88,0,8,0,89,0,
|
13,0,39,0,13,0,40,0,7,0,41,0,0,0,42,0,27,0,5,0,
|
||||||
8,0,90,0,8,0,91,0,4,0,92,0,4,0,93,0,4,0,94,0,
|
25,0,38,0,13,0,39,0,13,0,43,0,7,0,44,0,4,0,45,0,
|
||||||
4,0,95,0,4,0,96,0,4,0,97,0,4,0,98,0,0,0,37,0,
|
28,0,2,0,13,0,46,0,7,0,47,0,29,0,4,0,27,0,48,0,
|
||||||
42,0,23,0,9,0,77,0,9,0,78,0,25,0,79,0,0,0,35,0,
|
28,0,49,0,4,0,50,0,0,0,37,0,30,0,1,0,4,0,51,0,
|
||||||
17,0,80,0,17,0,81,0,13,0,82,0,13,0,83,0,13,0,84,0,
|
31,0,2,0,2,0,14,0,2,0,51,0,32,0,6,0,13,0,52,0,
|
||||||
7,0,85,0,7,0,86,0,7,0,87,0,7,0,88,0,7,0,89,0,
|
14,0,53,0,30,0,54,0,31,0,55,0,4,0,56,0,4,0,57,0,
|
||||||
7,0,90,0,7,0,91,0,4,0,92,0,4,0,93,0,4,0,94,0,
|
33,0,4,0,32,0,58,0,13,0,59,0,4,0,60,0,0,0,37,0,
|
||||||
4,0,95,0,4,0,96,0,4,0,97,0,4,0,98,0,43,0,21,0,
|
34,0,7,0,25,0,38,0,33,0,61,0,23,0,62,0,24,0,63,0,
|
||||||
42,0,99,0,15,0,100,0,13,0,101,0,13,0,102,0,13,0,103,0,
|
35,0,64,0,7,0,44,0,0,0,65,0,36,0,4,0,17,0,66,0,
|
||||||
13,0,104,0,13,0,105,0,13,0,106,0,13,0,107,0,13,0,108,0,
|
25,0,67,0,4,0,68,0,7,0,69,0,37,0,4,0,25,0,38,0,
|
||||||
13,0,109,0,7,0,110,0,7,0,111,0,7,0,112,0,7,0,113,0,
|
36,0,70,0,4,0,71,0,7,0,44,0,38,0,3,0,27,0,48,0,
|
||||||
7,0,114,0,7,0,115,0,7,0,116,0,7,0,117,0,7,0,118,0,
|
4,0,72,0,0,0,37,0,39,0,3,0,27,0,48,0,4,0,72,0,
|
||||||
4,0,119,0,44,0,22,0,41,0,99,0,16,0,100,0,14,0,101,0,
|
0,0,37,0,40,0,4,0,4,0,73,0,7,0,74,0,7,0,75,0,
|
||||||
14,0,102,0,14,0,103,0,14,0,104,0,14,0,105,0,14,0,106,0,
|
7,0,76,0,35,0,14,0,4,0,77,0,4,0,78,0,40,0,79,0,
|
||||||
14,0,107,0,14,0,108,0,14,0,109,0,8,0,110,0,8,0,111,0,
|
4,0,80,0,7,0,81,0,7,0,82,0,7,0,83,0,7,0,84,0,
|
||||||
8,0,112,0,8,0,113,0,8,0,114,0,8,0,115,0,8,0,116,0,
|
7,0,85,0,4,0,86,0,4,0,87,0,4,0,88,0,4,0,89,0,
|
||||||
8,0,117,0,8,0,118,0,4,0,119,0,0,0,37,0,45,0,2,0,
|
0,0,37,0,41,0,5,0,25,0,38,0,33,0,61,0,13,0,39,0,
|
||||||
4,0,120,0,4,0,121,0,46,0,11,0,47,0,122,0,47,0,123,0,
|
7,0,44,0,4,0,90,0,42,0,5,0,27,0,48,0,13,0,91,0,
|
||||||
0,0,35,0,4,0,124,0,4,0,125,0,4,0,126,0,4,0,127,0,
|
14,0,92,0,4,0,93,0,0,0,94,0,43,0,24,0,9,0,95,0,
|
||||||
7,0,-128,0,7,0,-127,0,4,0,-126,0,0,0,-125,0,48,0,3,0,
|
9,0,96,0,25,0,97,0,0,0,35,0,18,0,98,0,18,0,99,0,
|
||||||
46,0,-124,0,13,0,-123,0,13,0,-122,0,49,0,3,0,46,0,-124,0,
|
14,0,100,0,14,0,101,0,14,0,102,0,8,0,103,0,8,0,104,0,
|
||||||
14,0,-123,0,14,0,-122,0,50,0,13,0,46,0,-124,0,18,0,-121,0,
|
8,0,105,0,8,0,106,0,8,0,107,0,8,0,108,0,8,0,109,0,
|
||||||
18,0,-120,0,4,0,-119,0,4,0,-118,0,4,0,-117,0,7,0,-116,0,
|
4,0,110,0,4,0,111,0,4,0,112,0,4,0,113,0,4,0,114,0,
|
||||||
7,0,-115,0,7,0,-114,0,7,0,-113,0,7,0,-112,0,7,0,-111,0,
|
4,0,115,0,4,0,116,0,0,0,37,0,44,0,23,0,9,0,95,0,
|
||||||
7,0,-110,0,51,0,13,0,46,0,-124,0,17,0,-121,0,17,0,-120,0,
|
9,0,96,0,25,0,97,0,0,0,35,0,17,0,98,0,17,0,99,0,
|
||||||
4,0,-119,0,4,0,-118,0,4,0,-117,0,7,0,-116,0,7,0,-115,0,
|
13,0,100,0,13,0,101,0,13,0,102,0,7,0,103,0,7,0,104,0,
|
||||||
7,0,-114,0,7,0,-113,0,7,0,-112,0,7,0,-111,0,7,0,-110,0,
|
7,0,105,0,7,0,106,0,7,0,107,0,7,0,108,0,7,0,109,0,
|
||||||
52,0,11,0,46,0,-124,0,17,0,-121,0,17,0,-120,0,7,0,-109,0,
|
4,0,110,0,4,0,111,0,4,0,112,0,4,0,113,0,4,0,114,0,
|
||||||
7,0,-108,0,7,0,-107,0,7,0,-112,0,7,0,-111,0,7,0,-110,0,
|
4,0,115,0,4,0,116,0,45,0,21,0,44,0,117,0,15,0,118,0,
|
||||||
7,0,-106,0,0,0,42,0,53,0,9,0,46,0,-124,0,17,0,-121,0,
|
13,0,119,0,13,0,120,0,13,0,121,0,13,0,122,0,13,0,123,0,
|
||||||
17,0,-120,0,13,0,-105,0,13,0,-104,0,13,0,-103,0,13,0,-102,0,
|
13,0,124,0,13,0,125,0,13,0,126,0,13,0,127,0,7,0,-128,0,
|
||||||
4,0,-101,0,4,0,-100,0,54,0,9,0,46,0,-124,0,17,0,-121,0,
|
7,0,-127,0,7,0,-126,0,7,0,-125,0,7,0,-124,0,7,0,-123,0,
|
||||||
17,0,-120,0,7,0,-105,0,7,0,-104,0,7,0,-103,0,7,0,-102,0,
|
7,0,-122,0,7,0,-121,0,7,0,-120,0,4,0,-119,0,46,0,22,0,
|
||||||
4,0,-101,0,4,0,-100,0,};
|
43,0,117,0,16,0,118,0,14,0,119,0,14,0,120,0,14,0,121,0,
|
||||||
|
14,0,122,0,14,0,123,0,14,0,124,0,14,0,125,0,14,0,126,0,
|
||||||
|
14,0,127,0,8,0,-128,0,8,0,-127,0,8,0,-126,0,8,0,-125,0,
|
||||||
|
8,0,-124,0,8,0,-123,0,8,0,-122,0,8,0,-121,0,8,0,-120,0,
|
||||||
|
4,0,-119,0,0,0,37,0,47,0,2,0,4,0,-118,0,4,0,-117,0,
|
||||||
|
48,0,11,0,49,0,-116,0,49,0,-115,0,0,0,35,0,4,0,-114,0,
|
||||||
|
4,0,-113,0,4,0,-112,0,4,0,-111,0,7,0,-110,0,7,0,-109,0,
|
||||||
|
4,0,-108,0,0,0,-107,0,50,0,3,0,48,0,-106,0,13,0,-105,0,
|
||||||
|
13,0,-104,0,51,0,3,0,48,0,-106,0,14,0,-105,0,14,0,-104,0,
|
||||||
|
52,0,13,0,48,0,-106,0,18,0,-103,0,18,0,-102,0,4,0,-101,0,
|
||||||
|
4,0,-100,0,4,0,-99,0,7,0,-98,0,7,0,-97,0,7,0,-96,0,
|
||||||
|
7,0,-95,0,7,0,-94,0,7,0,-93,0,7,0,-92,0,53,0,13,0,
|
||||||
|
48,0,-106,0,17,0,-103,0,17,0,-102,0,4,0,-101,0,4,0,-100,0,
|
||||||
|
4,0,-99,0,7,0,-98,0,7,0,-97,0,7,0,-96,0,7,0,-95,0,
|
||||||
|
7,0,-94,0,7,0,-93,0,7,0,-92,0,54,0,11,0,48,0,-106,0,
|
||||||
|
17,0,-103,0,17,0,-102,0,7,0,-91,0,7,0,-90,0,7,0,-89,0,
|
||||||
|
7,0,-94,0,7,0,-93,0,7,0,-92,0,7,0,-88,0,0,0,42,0,
|
||||||
|
55,0,9,0,48,0,-106,0,17,0,-103,0,17,0,-102,0,13,0,-87,0,
|
||||||
|
13,0,-86,0,13,0,-85,0,13,0,-84,0,4,0,-83,0,4,0,-82,0,
|
||||||
|
56,0,9,0,48,0,-106,0,17,0,-103,0,17,0,-102,0,7,0,-87,0,
|
||||||
|
7,0,-86,0,7,0,-85,0,7,0,-84,0,4,0,-83,0,4,0,-82,0,
|
||||||
|
};
|
||||||
int sBulletDNAlen= sizeof(sBulletDNAstr);
|
int sBulletDNAlen= sizeof(sBulletDNAstr);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user