diff options
Diffstat (limited to 'scene')
131 files changed, 3998 insertions, 2862 deletions
diff --git a/scene/2d/camera_2d.h b/scene/2d/camera_2d.h index 3c51bbf220..22e5bc382a 100644 --- a/scene/2d/camera_2d.h +++ b/scene/2d/camera_2d.h @@ -103,7 +103,7 @@ public: bool is_v_drag_enabled() const; void set_drag_margin(Margin p_margin,float p_drag_margin); - float get_drag_margin(Margin p_margin) const; + float get_drag_margin(Margin p_margin) const; void set_v_offset(float p_offset); float get_v_offset() const; diff --git a/scene/2d/canvas_item.cpp b/scene/2d/canvas_item.cpp index 316097fbcf..483feea5c4 100644 --- a/scene/2d/canvas_item.cpp +++ b/scene/2d/canvas_item.cpp @@ -233,7 +233,7 @@ bool CanvasItem::is_visible() const { const CanvasItem *p=this; - while(p) { + while(p) { if (p->hidden) return false; p=p->get_parent_item(); @@ -310,11 +310,11 @@ void CanvasItem::hide() { } void CanvasItem::set_hidden(bool p_hidden) { - + if (hidden == p_hidden) { return; } - + _set_visible_(!p_hidden); } @@ -1209,7 +1209,7 @@ CanvasItem::CanvasItem() : xform_change(this) { pending_update=false; opacity=1; self_opacity=1; - toplevel=false; + toplevel=false; pending_children_sort=false; first_draw=false; blend_mode=BLEND_MODE_MIX; diff --git a/scene/2d/collision_object_2d.cpp b/scene/2d/collision_object_2d.cpp index 3a45b0c84e..b5a6cc435f 100644 --- a/scene/2d/collision_object_2d.cpp +++ b/scene/2d/collision_object_2d.cpp @@ -261,7 +261,7 @@ void CollisionObject2D::add_shape(const Ref<Shape2D>& p_shape, const Matrix32& p else Physics2DServer::get_singleton()->body_add_shape(get_rid(),p_shape->get_rid(),p_transform); - shapes.push_back(sdata); + shapes.push_back(sdata); } int CollisionObject2D::get_shape_count() const { diff --git a/scene/2d/particles_2d.cpp b/scene/2d/particles_2d.cpp index 5b13c32d93..ffea060e82 100644 --- a/scene/2d/particles_2d.cpp +++ b/scene/2d/particles_2d.cpp @@ -504,7 +504,7 @@ void Particles2D::_notification(int p_what) { invxform=get_global_transform().affine_inverse(); int start_particle = (int)(time * (float)particle_count / lifetime); - + for (int id=0;id<particle_count;++id) { int i = start_particle + id; if (i >= particle_count) { @@ -645,7 +645,7 @@ static const char* _particlesframe_property_rnames[Particles2D::PARAM_MAX]={ "randomness/gravity_strength", "randomness/radial_accel", "randomness/tangential_accel", - "randomness/damping", + "randomness/damping", "randomness/initial_angle", "randomness/initial_size", "randomness/final_size", diff --git a/scene/2d/particles_2d.h b/scene/2d/particles_2d.h index 101395589e..06dcda7165 100644 --- a/scene/2d/particles_2d.h +++ b/scene/2d/particles_2d.h @@ -88,7 +88,7 @@ public: enum Parameter { PARAM_DIRECTION, PARAM_SPREAD, - PARAM_LINEAR_VELOCITY, + PARAM_LINEAR_VELOCITY, PARAM_SPIN_VELOCITY, PARAM_ORBIT_VELOCITY, PARAM_GRAVITY_DIRECTION, @@ -150,7 +150,7 @@ private: Point2 emissor_offset; Vector2 initial_velocity; Vector2 extents; - DVector<Vector2> emission_points; + DVector<Vector2> emission_points; float time; int active_count; diff --git a/scene/2d/sprite.cpp b/scene/2d/sprite.cpp index 001a1366a9..b2902b2867 100644 --- a/scene/2d/sprite.cpp +++ b/scene/2d/sprite.cpp @@ -188,13 +188,15 @@ bool Sprite::is_region() const{ void Sprite::set_region_rect(const Rect2& p_region_rect) { - bool changed=region_rect!=p_region_rect; + if (region_rect==p_region_rect) + return; + region_rect=p_region_rect; - if (region && changed) { - update(); + + if (region) item_rect_changed(); - _change_notify("region_rect"); - } + + _change_notify("region_rect"); } Rect2 Sprite::get_region_rect() const { diff --git a/scene/2d/tile_map.cpp b/scene/2d/tile_map.cpp index 1cd6399962..34a67c088f 100644 --- a/scene/2d/tile_map.cpp +++ b/scene/2d/tile_map.cpp @@ -454,7 +454,7 @@ void TileMap::_update_dirty_quadrants() { shape->draw(debug_canvas_item,debug_collision_color); } - ps->body_add_shape(q.body,shape->get_rid(),xform); + ps->body_add_shape(q.body,shape->get_rid(),xform); ps->body_set_shape_metadata(q.body,shape_idx++,Vector2(E->key().x,E->key().y)); } diff --git a/scene/3d/baked_light_instance.cpp b/scene/3d/baked_light_instance.cpp index 1ae7866f0b..4487415030 100644 --- a/scene/3d/baked_light_instance.cpp +++ b/scene/3d/baked_light_instance.cpp @@ -13,7 +13,7 @@ RID BakedLightInstance::get_baked_light_instance() const { void BakedLightInstance::set_baked_light(const Ref<BakedLight>& p_baked_light) { - baked_light=p_baked_light; + baked_light=p_baked_light; RID base_rid; diff --git a/scene/3d/camera.cpp b/scene/3d/camera.cpp index 01163e40e8..e76c0938fb 100644 --- a/scene/3d/camera.cpp +++ b/scene/3d/camera.cpp @@ -56,8 +56,8 @@ void Camera::_update_camera_mode() { } break; case PROJECTION_ORTHOGONAL: { set_orthogonal(size,near,far); - } break; - + } break; + } } @@ -81,7 +81,7 @@ bool Camera::_set(const StringName& p_name, const Variant& p_value) { else if (p_name=="near") near=p_value; else if (p_name=="far") - far=p_value; + far=p_value; else if (p_name=="keep_aspect") set_keep_aspect_mode(KeepAspect(int(p_value))); else if (p_name=="vaspect") @@ -102,7 +102,7 @@ bool Camera::_set(const StringName& p_name, const Variant& p_value) { set_environment(p_value); } else return false; - + _update_camera_mode(); if (changed_all) _change_notify(); @@ -147,21 +147,21 @@ bool Camera::_get(const StringName& p_name,Variant &r_ret) const { void Camera::_get_property_list( List<PropertyInfo> *p_list) const { p_list->push_back( PropertyInfo( Variant::INT, "projection", PROPERTY_HINT_ENUM, "Perspective,Orthogonal") ); - + switch(mode) { - + case PROJECTION_PERSPECTIVE: { - + p_list->push_back( PropertyInfo( Variant::REAL, "fov" , PROPERTY_HINT_RANGE, "1,179,0.1",PROPERTY_USAGE_NOEDITOR) ); if (keep_aspect==KEEP_WIDTH) p_list->push_back( PropertyInfo( Variant::REAL, "fovx" , PROPERTY_HINT_RANGE, "1,179,0.1",PROPERTY_USAGE_EDITOR) ); else p_list->push_back( PropertyInfo( Variant::REAL, "fovy" , PROPERTY_HINT_RANGE, "1,179,0.1",PROPERTY_USAGE_EDITOR) ); - + } break; case PROJECTION_ORTHOGONAL: { - + p_list->push_back( PropertyInfo( Variant::REAL, "size" , PROPERTY_HINT_RANGE, "1,16384,0.01",PROPERTY_USAGE_NOEDITOR ) ); if (keep_aspect==KEEP_WIDTH) p_list->push_back( PropertyInfo( Variant::REAL, "sizex" , PROPERTY_HINT_RANGE, "0.1,16384,0.01",PROPERTY_USAGE_EDITOR) ); @@ -169,9 +169,9 @@ void Camera::_get_property_list( List<PropertyInfo> *p_list) const { p_list->push_back( PropertyInfo( Variant::REAL, "sizey" , PROPERTY_HINT_RANGE, "0.1,16384,0.01",PROPERTY_USAGE_EDITOR) ); } break; - + } - + p_list->push_back( PropertyInfo( Variant::REAL, "near" , PROPERTY_HINT_EXP_RANGE, "0.01,4096.0,0.01") ); p_list->push_back( PropertyInfo( Variant::REAL, "far" , PROPERTY_HINT_EXP_RANGE, "0.01,4096.0,0.01") ); p_list->push_back( PropertyInfo( Variant::INT, "keep_aspect",PROPERTY_HINT_ENUM,"Keep Width,Keep Height") ); @@ -209,7 +209,7 @@ void Camera::_update_camera() { void Camera::_notification(int p_what) { switch(p_what) { - + case NOTIFICATION_ENTER_WORLD: { @@ -218,13 +218,13 @@ void Camera::_notification(int p_what) { make_current(); - } break; + } break; case NOTIFICATION_TRANSFORM_CHANGED: { - + _request_camera_update(); } break; case NOTIFICATION_EXIT_WORLD: { - + if (!get_tree()->is_node_being_edited(this)) { if (is_current()) { clear_current(); @@ -250,7 +250,7 @@ void Camera::_notification(int p_what) { } } break; - + } } @@ -270,7 +270,7 @@ void Camera::set_perspective(float p_fovy_degrees, float p_z_near, float p_z_far near=p_z_near; far=p_z_far; mode=PROJECTION_PERSPECTIVE; - + VisualServer::get_singleton()->camera_set_perspective(camera,fov,near,far); update_gizmo(); force_change=false; @@ -281,12 +281,12 @@ void Camera::set_orthogonal(float p_size, float p_z_near, float p_z_far) { return; size = p_size; - + near=p_z_near; far=p_z_far; mode=PROJECTION_ORTHOGONAL; force_change=false; - + VisualServer::get_singleton()->camera_set_orthogonal(camera,size,near,far); update_gizmo(); } diff --git a/scene/3d/camera.h b/scene/3d/camera.h index 02ca6ffb9a..30c6928245 100644 --- a/scene/3d/camera.h +++ b/scene/3d/camera.h @@ -41,7 +41,7 @@ class Camera : public Spatial { OBJ_TYPE( Camera, Spatial ); public: enum Projection { - + PROJECTION_PERSPECTIVE, PROJECTION_ORTHOGONAL }; @@ -57,14 +57,14 @@ private: bool current; Projection mode; - + float fov; float size; float near,far; float v_offset; float h_offset; KeepAspect keep_aspect; - + RID camera; RID scenario_id; @@ -86,14 +86,14 @@ protected: void _update_camera(); virtual void _request_camera_update(); void _update_camera_mode(); - + bool _set(const StringName& p_name, const Variant& p_value); bool _get(const StringName& p_name,Variant &r_ret) const; void _get_property_list( List<PropertyInfo> *p_list) const; void _notification(int p_what); - + static void _bind_methods(); - + public: enum { @@ -104,7 +104,7 @@ public: void set_perspective(float p_fovy_degrees, float p_z_near, float p_z_far); void set_orthogonal(float p_size, float p_z_near, float p_z_far); - + void make_current(); void clear_current(); bool is_current() const; @@ -145,7 +145,7 @@ public: float get_h_offset() const; - Camera(); + Camera(); ~Camera(); }; diff --git a/scene/3d/character_camera.cpp b/scene/3d/character_camera.cpp index 2b22026fe9..fc3dfcd645 100644 --- a/scene/3d/character_camera.cpp +++ b/scene/3d/character_camera.cpp @@ -27,7 +27,7 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ #include "character_camera.h" - + #include "physics_body.h" #if 0 void CharacterCamera::_set(const String& p_name, const Variant& p_value) { diff --git a/scene/3d/light.cpp b/scene/3d/light.cpp index 18463742c6..227bb3a59d 100644 --- a/scene/3d/light.cpp +++ b/scene/3d/light.cpp @@ -27,7 +27,7 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ #include "light.h" - + #include "globals.h" #include "scene/resources/surface_tool.h" @@ -86,7 +86,7 @@ void Light::set_project_shadows(bool p_enabled) { _change_notify("shadow"); } bool Light::has_project_shadows() const { - + return shadows; } @@ -175,9 +175,9 @@ RES Light::_get_gizmo_geometry() const { Ref< Mesh > mesh; Ref<SurfaceTool> surftool( memnew( SurfaceTool )); - + switch(type) { - + case VisualServer::LIGHT_DIRECTIONAL: { @@ -260,9 +260,9 @@ RES Light::_get_gizmo_geometry() const { surftool->set_material(mat_light); mesh=surftool->commit(mesh); } break; - + case VisualServer::LIGHT_SPOT: { - + _make_sphere( 5,5,0.1, surftool ); surftool->set_material(mat_light); mesh=surftool->commit(mesh); @@ -273,14 +273,14 @@ RES Light::_get_gizmo_geometry() const { float size=Math::tan(Math::deg2rad(vars[PARAM_SPOT_ANGLE]))*len; surftool->begin(Mesh::PRIMITIVE_TRIANGLES); - + for(int i = 0; i < points; i++) { - + float x0=Math::sin(i * Math_PI * 2 / points); float y0=Math::cos(i * Math_PI * 2 / points); float x1=Math::sin((i+1) * Math_PI * 2 / points); float y1=Math::cos((i+1) * Math_PI * 2 / points); - + Vector3 v1=Vector3(x0*size,y0*size,-len).normalized()*len; Vector3 v2=Vector3(x1*size,y1*size,-len).normalized()*len; @@ -288,7 +288,7 @@ RES Light::_get_gizmo_geometry() const { Vector3 v4=Vector3(0,0,v1.z); Vector3 n = Plane(v1,v2,v3).normal; - + surftool->add_normal(n); surftool->add_vertex(v1); @@ -306,7 +306,7 @@ RES Light::_get_gizmo_geometry() const { surftool->add_normal(n); surftool->add_vertex(v4); - + } surftool->set_material(mat_area); @@ -323,15 +323,15 @@ RES Light::_get_gizmo_geometry() const { AABB Light::get_aabb() const { if (type==VisualServer::LIGHT_DIRECTIONAL) { - - return AABB( Vector3(-1,-1,-1), Vector3(2, 2, 2 ) ); - + + return AABB( Vector3(-1,-1,-1), Vector3(2, 2, 2 ) ); + } else if (type==VisualServer::LIGHT_OMNI) { - + return AABB( Vector3(-1,-1,-1) * vars[PARAM_RADIUS], Vector3(2, 2, 2 ) * vars[PARAM_RADIUS]); - + } else if (type==VisualServer::LIGHT_SPOT) { - + float len=vars[PARAM_RADIUS]; float size=Math::tan(Math::deg2rad(vars[PARAM_SPOT_ANGLE]))*len; return AABB( Vector3( -size,-size,-len ), Vector3( size*2, size*2, len ) ); @@ -542,7 +542,7 @@ void Light::_bind_methods() { BIND_CONSTANT( COLOR_DIFFUSE ); - BIND_CONSTANT( COLOR_SPECULAR ); + BIND_CONSTANT( COLOR_SPECULAR ); BIND_CONSTANT( BAKE_MODE_DISABLED ); BIND_CONSTANT( BAKE_MODE_INDIRECT ); diff --git a/scene/3d/light.h b/scene/3d/light.h index b74085b7a9..b25c6a44b5 100644 --- a/scene/3d/light.h +++ b/scene/3d/light.h @@ -43,7 +43,7 @@ class Light : public VisualInstance { OBJ_CATEGORY("3D Light Nodes"); public: - + enum Parameter { PARAM_RADIUS=VisualServer::LIGHT_PARAM_RADIUS, PARAM_ENERGY=VisualServer::LIGHT_PARAM_ENERGY, @@ -57,10 +57,10 @@ public: PARAM_SHADOW_BLUR_PASSES=VisualServer::LIGHT_PARAM_SHADOW_BLUR_PASSES, PARAM_MAX=VisualServer::LIGHT_PARAM_MAX }; - - + + enum LightColor { - + COLOR_DIFFUSE=VisualServer::LIGHT_COLOR_DIFFUSE, COLOR_SPECULAR=VisualServer::LIGHT_COLOR_SPECULAR }; @@ -81,13 +81,13 @@ public: OPERATOR_SUB }; private: - - + + Ref<Texture> projector; float vars[PARAM_MAX]; Color colors[3]; - - + + BakeMode bake_mode; VisualServer::LightType type; bool shadows; @@ -98,18 +98,18 @@ private: void _update_visibility(); // bind helpers -protected: +protected: RID light; virtual bool _can_gizmo_scale() const; virtual RES _get_gizmo_geometry() const; - + static void _bind_methods(); void _notification(int p_what); - - Light(VisualServer::LightType p_type); + + Light(VisualServer::LightType p_type); public: VS::LightType get_light_type() const { return type; } diff --git a/scene/3d/mesh_instance.cpp b/scene/3d/mesh_instance.cpp index 997d2dea7c..cfe273fa20 100644 --- a/scene/3d/mesh_instance.cpp +++ b/scene/3d/mesh_instance.cpp @@ -139,7 +139,7 @@ AABB MeshInstance::get_aabb() const { if (!mesh.is_null()) return mesh->get_aabb(); - + return AABB(); } @@ -150,7 +150,7 @@ DVector<Face3> MeshInstance::get_faces(uint32_t p_usage_flags) const { if (mesh.is_null()) return DVector<Face3>(); - + return mesh->get_faces(); } @@ -177,7 +177,7 @@ void MeshInstance::create_trimesh_collision() { StaticBody* static_body = create_trimesh_collision_node()->cast_to<StaticBody>(); ERR_FAIL_COND(!static_body); static_body->set_name( String(get_name()) + "_col" ); - + add_child(static_body); if (get_owner()) static_body->set_owner( get_owner() ); @@ -233,7 +233,7 @@ void MeshInstance::_notification(int p_what) { void MeshInstance::_bind_methods() { - + ObjectTypeDB::bind_method(_MD("set_mesh","mesh:Mesh"),&MeshInstance::set_mesh); ObjectTypeDB::bind_method(_MD("get_mesh:Mesh"),&MeshInstance::get_mesh); ObjectTypeDB::bind_method(_MD("set_skeleton_path","skeleton_path:NodePath"),&MeshInstance::set_skeleton_path); diff --git a/scene/3d/mesh_instance.h b/scene/3d/mesh_instance.h index f26ef52000..7c605c2d6d 100644 --- a/scene/3d/mesh_instance.h +++ b/scene/3d/mesh_instance.h @@ -38,7 +38,7 @@ class MeshInstance : public GeometryInstance { OBJ_TYPE( MeshInstance, GeometryInstance ); - + Ref<Mesh> mesh; NodePath skeleton_path; @@ -68,7 +68,7 @@ public: void set_skeleton_path(const NodePath& p_skeleton); NodePath get_skeleton_path(); - + Node* create_trimesh_collision_node(); void create_trimesh_collision(); @@ -78,7 +78,7 @@ public: virtual AABB get_aabb() const; virtual DVector<Face3> get_faces(uint32_t p_usage_flags) const; - MeshInstance(); + MeshInstance(); ~MeshInstance(); }; diff --git a/scene/3d/navigation.cpp b/scene/3d/navigation.cpp index ce28350be0..2b74d43ad2 100644 --- a/scene/3d/navigation.cpp +++ b/scene/3d/navigation.cpp @@ -64,7 +64,11 @@ void Navigation::_navmesh_link(int p_id) { continue; } - p.center=center/plen; + p.center = center; + if( plen != 0 ) { + p.center /= plen; + } + //connect @@ -455,7 +459,7 @@ Vector<Vector3> Navigation::get_simple_path(const Vector3& p_start, const Vector _clip_path(path,apex_poly,portal_right,right_poly); - apex_point=portal_right; + apex_point=portal_right; p=right_poly; left_poly=p; apex_poly=p; @@ -721,5 +725,3 @@ Navigation::Navigation() { last_id=1; up=Vector3(0,1,0); } - - diff --git a/scene/3d/particles.cpp b/scene/3d/particles.cpp index 47662bcccb..3ac5d8ed7b 100644 --- a/scene/3d/particles.cpp +++ b/scene/3d/particles.cpp @@ -100,10 +100,10 @@ void Particles::set_amount(int p_amount) { VisualServer::get_singleton()->particles_set_amount(particles,p_amount); } int Particles::get_amount() const { - + return amount; } - + void Particles::set_emitting(bool p_emitting) { emitting=p_emitting; @@ -115,19 +115,19 @@ bool Particles::is_emitting() const { return emitting; } - + void Particles::set_visibility_aabb(const AABB& p_aabb) { visibility_aabb=p_aabb; VisualServer::get_singleton()->particles_set_visibility_aabb(particles,p_aabb); update_gizmo(); - + } AABB Particles::get_visibility_aabb() const { return visibility_aabb; } - + void Particles::set_emission_points(const DVector<Vector3>& p_points) { @@ -179,7 +179,7 @@ Vector3 Particles::get_gravity_normal() const { return gravity_normal; } - + void Particles::set_variable(Variable p_variable,float p_value) { ERR_FAIL_INDEX(p_variable,VAR_MAX); @@ -273,7 +273,7 @@ float Particles::get_emit_timeout() const { Ref<Material> Particles::get_material() const { return material; -} +} void Particles::set_height_from_velocity(bool p_enable) { @@ -507,11 +507,11 @@ Particles::Particles() { set_amount(64); set_emitting(true); set_visibility_aabb(AABB( Vector3(-4,-4,-4), Vector3(8,8,8) ) ); - + for (int i=0;i<VAR_MAX;i++) { set_randomness((Variable)i,0.0); } - + set_variable( VAR_LIFETIME, 5.0); set_variable( VAR_SPREAD, 0.2); set_variable( VAR_GRAVITY, 9.8); @@ -523,7 +523,7 @@ Particles::Particles() { set_variable( VAR_DAMPING, 0.0); set_variable( VAR_INITIAL_SIZE, 1.0); set_variable( VAR_FINAL_SIZE, 1.0); - set_variable( VAR_INITIAL_ANGLE, 0.0); + set_variable( VAR_INITIAL_ANGLE, 0.0); set_variable( VAR_HEIGHT, 1.0); set_variable( VAR_HEIGHT_SPEED_SCALE, 0.0); diff --git a/scene/3d/particles.h b/scene/3d/particles.h index b9cae332e2..42d27c41d7 100644 --- a/scene/3d/particles.h +++ b/scene/3d/particles.h @@ -63,7 +63,7 @@ private: OBJ_TYPE( Particles, GeometryInstance ); RID particles; - + int amount; bool emitting; float emit_timeout; @@ -71,14 +71,14 @@ private: Vector3 gravity_normal; Vector3 emission_half_extents; bool using_points; - float var[VAR_MAX]; - float var_random[VAR_MAX]; + float var[VAR_MAX]; + float var_random[VAR_MAX]; bool height_from_velocity; Vector3 emission_base_velocity; bool local_coordinates; - + struct ColorPhase { - + Color color; float pos; }; @@ -87,18 +87,18 @@ private: virtual RES _get_gizmo_geometry() const; int color_phase_count; - + ColorPhase color_phase[4]; - + Ref<Material> material; Timer* timer; void setup_timer(); -protected: - +protected: + static void _bind_methods(); - + public: @@ -107,13 +107,13 @@ public: void set_amount(int p_amount); int get_amount() const; - + void set_emitting(bool p_emitting); bool is_emitting() const; - + void set_visibility_aabb(const AABB& p_aabb); AABB get_visibility_aabb() const; - + void set_emission_half_extents(const Vector3& p_half_extents); Vector3 get_emission_half_extents() const; @@ -125,25 +125,25 @@ public: void set_gravity_normal(const Vector3& p_normal); Vector3 get_gravity_normal() const; - + void set_variable(Variable p_variable,float p_value); float get_variable(Variable p_variable) const; - + void set_randomness(Variable p_variable,float p_randomness); float get_randomness(Variable p_variable) const; void set_color_phases(int p_phases); int get_color_phases() const; - + void set_color_phase_pos(int p_phase, float p_pos); float get_color_phase_pos(int p_phase) const; - + void set_color_phase_color(int p_phase, const Color& p_color); Color get_color_phase_color(int p_phase) const; void set_height_from_velocity(bool p_enable); bool has_height_from_velocity() const; - + void set_material(const Ref<Material>& p_material); Ref<Material> get_material() const; @@ -156,7 +156,7 @@ public: void start_emitting(float p_time); - Particles(); + Particles(); ~Particles(); }; diff --git a/scene/3d/portal.cpp b/scene/3d/portal.cpp index 84f94402d5..23bc64615d 100644 --- a/scene/3d/portal.cpp +++ b/scene/3d/portal.cpp @@ -40,7 +40,7 @@ bool Portal::_set(const StringName& p_name, const Variant& p_value) { ERR_FAIL_COND_V(src_coords_size%2,false); points.resize(src_coords_size/2); for (int i=0;i<points.size();i++) { - + points[i].x=src_coords[i*2+0]; points[i].y=src_coords[i*2+1]; set_shape(points); @@ -65,13 +65,13 @@ bool Portal::_get(const StringName& p_name,Variant &r_ret) const { Vector<Point2> points=get_shape(); DVector<float> dst_coords; dst_coords.resize(points.size()*2); - + for (int i=0;i<points.size();i++) { - + dst_coords.set(i*2+0,points[i].x); dst_coords.set(i*2+1,points[i].y); } - + r_ret= dst_coords; } else if (p_name=="enabled") { r_ret= is_enabled(); @@ -115,17 +115,17 @@ RES Portal::_get_gizmo_geometry() const { Vector2 center; for (int i=0;i<shape.size();i++) { - + int n=(i+1)%shape.size(); Vector<Vector3> points; surface_tool->add_vertex( Vector3( shape[i].x, shape[i].y,0 )); surface_tool->add_vertex( Vector3( shape[n].x, shape[n].y,0 )); center+=shape[i]; - + } if (shape.size()>0) { - + center/=shape.size(); Vector<Vector3> points; surface_tool->add_vertex( Vector3( center.x, center.y,0 )); @@ -139,7 +139,7 @@ RES Portal::_get_gizmo_geometry() const { AABB Portal::get_aabb() const { - return aabb; + return aabb; } DVector<Face3> Portal::get_faces(uint32_t p_usage_flags) const { @@ -149,28 +149,28 @@ DVector<Face3> Portal::get_faces(uint32_t p_usage_flags) const { Vector<Point2> shape = get_shape(); if (shape.size()==0) return DVector<Face3>(); - + Vector2 center; for (int i=0;i<shape.size();i++) { - + center+=shape[i]; - + } - + DVector<Face3> ret; center/=shape.size(); for (int i=0;i<shape.size();i++) { int n=(i+1)%shape.size(); - + Face3 f; f.vertex[0]=Vector3( center.x, center.y, 0 ); f.vertex[1]=Vector3( shape[i].x, shape[i].y, 0 ); f.vertex[2]=Vector3( shape[n].x, shape[n].y, 0 ); ret.push_back(f); } - + return ret; } diff --git a/scene/3d/portal.h b/scene/3d/portal.h index 388eac4dd3..149a56900f 100644 --- a/scene/3d/portal.h +++ b/scene/3d/portal.h @@ -45,14 +45,14 @@ class Portal : public VisualInstance { OBJ_TYPE(Portal, VisualInstance); - + RID portal; - + bool enabled; float disable_distance; Color disabled_color; float connect_range; - + AABB aabb; virtual RES _get_gizmo_geometry() const; @@ -62,9 +62,9 @@ protected: bool _set(const StringName& p_name, const Variant& p_value); bool _get(const StringName& p_name,Variant &r_ret) const; void _get_property_list( List<PropertyInfo> *p_list) const; - + static void _bind_methods(); - + public: virtual AABB get_aabb() const; diff --git a/scene/3d/room_instance.cpp b/scene/3d/room_instance.cpp index e358da136b..9e6867d2a2 100644 --- a/scene/3d/room_instance.cpp +++ b/scene/3d/room_instance.cpp @@ -29,7 +29,7 @@ #include "room_instance.h" #include "servers/visual_server.h" - + #include "geometry.h" #include "globals.h" #include "scene/resources/surface_tool.h" diff --git a/scene/3d/skeleton.cpp b/scene/3d/skeleton.cpp index 64133f67b5..d0b739e17f 100644 --- a/scene/3d/skeleton.cpp +++ b/scene/3d/skeleton.cpp @@ -27,7 +27,7 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ #include "skeleton.h" - + #include "message_queue.h" #include "scene/resources/surface_tool.h" @@ -40,19 +40,19 @@ bool Skeleton::_set(const StringName& p_path, const Variant& p_value) { if (!path.begins_with("bones/")) return false; - + int which=path.get_slicec('/',1).to_int(); String what=path.get_slicec('/',2); if (which==bones.size() && what=="name") { - + add_bone(p_value); return true; } - + ERR_FAIL_INDEX_V( which, bones.size(), false ); - + if (what=="parent") set_bone_parent(which, p_value ); else if (what=="rest") @@ -63,11 +63,11 @@ bool Skeleton::_set(const StringName& p_path, const Variant& p_value) { set_bone_pose(which, p_value); else if (what=="bound_childs") { Array children=p_value; - + bones[which].nodes_bound.clear(); - + for (int i=0;i<children.size();i++) { - + NodePath path=children[i]; ERR_CONTINUE( path.operator String()=="" ); Node *node = get_node(path); @@ -87,12 +87,12 @@ bool Skeleton::_get(const StringName& p_name,Variant &r_ret) const { if (!path.begins_with("bones/")) return false; - + int which=path.get_slicec('/',1).to_int(); String what=path.get_slicec('/',2); - + ERR_FAIL_INDEX_V( which, bones.size(), false ); - + if (what=="name") r_ret=get_bone_name(which); else if (what=="parent") @@ -105,29 +105,29 @@ bool Skeleton::_get(const StringName& p_name,Variant &r_ret) const { r_ret=get_bone_pose(which); else if (what=="bound_childs") { Array children; - + for (const List<uint32_t>::Element *E=bones[which].nodes_bound.front();E;E=E->next()) { - + Object *obj=ObjectDB::get_instance(E->get()); ERR_CONTINUE(!obj); Node *node=obj->cast_to<Node>(); ERR_CONTINUE(!node); NodePath path=get_path_to(node); children.push_back(path); - + } - + r_ret=children; } else return false; - + return true; } void Skeleton::_get_property_list( List<PropertyInfo>* p_list ) const { for (int i=0;i<bones.size();i++) { - + String prep="bones/"+itos(i)+"/"; p_list->push_back( PropertyInfo( Variant::STRING, prep+"name" ) ); p_list->push_back( PropertyInfo( Variant::INT, prep+"parent" , PROPERTY_HINT_RANGE,"-1,"+itos(i-1)+",1") ); @@ -141,18 +141,18 @@ void Skeleton::_get_property_list( List<PropertyInfo>* p_list ) const { void Skeleton::_notification(int p_what) { switch(p_what) { - + case NOTIFICATION_ENTER_WORLD: { - + if (dirty) { - + dirty=false; _make_dirty(); // property make it dirty } - + } break; case NOTIFICATION_EXIT_WORLD: { - + } break; case NOTIFICATION_UPDATE_SKELETON: { @@ -178,15 +178,15 @@ void Skeleton::_notification(int p_what) { Bone &b=bonesptr[i]; b.rest_global_inverse.affine_invert(); } - + rest_global_inverse_dirty=false; } - + for (int i=0;i<len;i++) { - + Bone &b=bonesptr[i]; - + if (b.disable_rest) { if (b.enabled) { @@ -241,7 +241,7 @@ void Skeleton::_notification(int p_what) { } } } - + vs->skeleton_bone_set_transform( skeleton, i, b.pose_global * b.rest_global_inverse ); for(List<uint32_t>::Element *E=b.nodes_bound.front();E;E=E->next()) { @@ -255,7 +255,7 @@ void Skeleton::_notification(int p_what) { } dirty=false; - } break; + } break; } } @@ -298,16 +298,16 @@ RID Skeleton::get_skeleton() const { void Skeleton::add_bone(const String& p_name) { ERR_FAIL_COND( p_name=="" || p_name.find(":")!=-1 || p_name.find("/")!=-1 ); - + for (int i=0;i<bones.size();i++) { - + ERR_FAIL_COND( bones[i].name=="p_name"); } Bone b; b.name=p_name; bones.push_back(b); - + rest_global_inverse_dirty=true; _make_dirty(); update_gizmo(); @@ -315,11 +315,11 @@ void Skeleton::add_bone(const String& p_name) { int Skeleton::find_bone(String p_name) const { for (int i=0;i<bones.size();i++) { - + if (bones[i].name==p_name) return i; } - + return -1; } String Skeleton::get_bone_name(int p_bone) const { @@ -338,7 +338,7 @@ void Skeleton::set_bone_parent(int p_bone, int p_parent) { ERR_FAIL_INDEX( p_bone, bones.size() ); ERR_FAIL_COND( p_parent!=-1 && (p_parent<0 || p_parent>=p_bone)); - + bones[p_bone].parent=p_parent; rest_global_inverse_dirty=true; _make_dirty(); @@ -378,14 +378,14 @@ bool Skeleton::is_bone_rest_disabled(int p_bone) const { int Skeleton::get_bone_parent(int p_bone) const { ERR_FAIL_INDEX_V( p_bone, bones.size(), -1 ); - + return bones[p_bone].parent; } void Skeleton::set_bone_rest(int p_bone, const Transform& p_rest) { ERR_FAIL_INDEX( p_bone, bones.size() ); - + bones[p_bone].rest=p_rest; rest_global_inverse_dirty=true; _make_dirty(); @@ -394,7 +394,7 @@ void Skeleton::set_bone_rest(int p_bone, const Transform& p_rest) { Transform Skeleton::get_bone_rest(int p_bone) const { ERR_FAIL_INDEX_V( p_bone, bones.size(), Transform() ); - + return bones[p_bone].rest; } @@ -402,7 +402,7 @@ Transform Skeleton::get_bone_rest(int p_bone) const { void Skeleton::set_bone_enabled(int p_bone, bool p_enabled) { ERR_FAIL_INDEX( p_bone, bones.size() ); - + bones[p_bone].enabled=p_enabled; rest_global_inverse_dirty=true; _make_dirty(); @@ -418,23 +418,23 @@ void Skeleton::bind_child_node_to_bone(int p_bone,Node *p_node) { ERR_FAIL_NULL(p_node); ERR_FAIL_INDEX( p_bone, bones.size() ); - + uint32_t id=p_node->get_instance_ID(); - + for (List<uint32_t>::Element *E=bones[p_bone].nodes_bound.front();E;E=E->next()) { - + if (E->get()==id) return; // already here } - + bones[p_bone].nodes_bound.push_back(id); - + } void Skeleton::unbind_child_node_from_bone(int p_bone,Node *p_node) { ERR_FAIL_NULL(p_node); ERR_FAIL_INDEX( p_bone, bones.size() ); - + uint32_t id=p_node->get_instance_ID(); bones[p_bone].nodes_bound.erase(id); @@ -442,9 +442,9 @@ void Skeleton::unbind_child_node_from_bone(int p_bone,Node *p_node) { void Skeleton::get_bound_child_nodes_to_bone(int p_bone,List<Node*> *p_bound) const { ERR_FAIL_INDEX( p_bone, bones.size() ); - + for (const List<uint32_t>::Element *E=bones[p_bone].nodes_bound.front();E;E=E->next()) { - + Object *obj=ObjectDB::get_instance(E->get()); ERR_CONTINUE(!obj); p_bound->push_back(obj->cast_to<Node>()); @@ -465,7 +465,7 @@ void Skeleton::set_bone_pose(int p_bone, const Transform& p_pose) { ERR_FAIL_INDEX( p_bone, bones.size() ); ERR_FAIL_COND( !is_inside_tree() ); - + bones[p_bone].pose=p_pose; _make_dirty(); @@ -501,7 +501,7 @@ void Skeleton::_make_dirty() { if (dirty) return; - + if (!is_inside_tree()) { dirty=true; return; @@ -538,13 +538,13 @@ RES Skeleton::_get_gizmo_geometry() const { int len=bones.size(); for (int i=0;i<len;i++) { - + const Bone &b=bonesptr[i]; - + Transform t; if (b.parent<0) continue; - + Vector3 v1=(bonesptr[b.parent].pose_global * bonesptr[b.parent].rest_global_inverse).xform(bonesptr[b.parent].rest_global_inverse.affine_inverse().origin); Vector3 v2=(b.pose_global * b.rest_global_inverse).xform(b.rest_global_inverse.affine_inverse().origin); @@ -576,10 +576,10 @@ void Skeleton::_bind_methods() { ObjectTypeDB::bind_method(_MD("add_bone","name"),&Skeleton::add_bone); ObjectTypeDB::bind_method(_MD("find_bone","name"),&Skeleton::find_bone); ObjectTypeDB::bind_method(_MD("get_bone_name","bone_idx"),&Skeleton::get_bone_name); - + ObjectTypeDB::bind_method(_MD("get_bone_parent","bone_idx"),&Skeleton::get_bone_parent); ObjectTypeDB::bind_method(_MD("set_bone_parent","bone_idx","parent_idx"),&Skeleton::set_bone_parent); - + ObjectTypeDB::bind_method(_MD("get_bone_count"),&Skeleton::get_bone_count); ObjectTypeDB::bind_method(_MD("unparent_bone_and_rest","bone_idx"),&Skeleton::unparent_bone_and_rest); @@ -593,9 +593,9 @@ void Skeleton::_bind_methods() { ObjectTypeDB::bind_method(_MD("bind_child_node_to_bone","bone_idx","node:Node"),&Skeleton::bind_child_node_to_bone); ObjectTypeDB::bind_method(_MD("unbind_child_node_from_bone","bone_idx","node:Node"),&Skeleton::unbind_child_node_from_bone); ObjectTypeDB::bind_method(_MD("get_bound_child_nodes_to_bone","bone_idx"),&Skeleton::_get_bound_child_nodes_to_bone); - + ObjectTypeDB::bind_method(_MD("clear_bones"),&Skeleton::clear_bones); - + ObjectTypeDB::bind_method(_MD("get_bone_pose","bone_idx"),&Skeleton::get_bone_pose); ObjectTypeDB::bind_method(_MD("set_bone_pose","bone_idx","pose"),&Skeleton::set_bone_pose); diff --git a/scene/3d/skeleton.h b/scene/3d/skeleton.h index 033f212a58..bfdb1d1499 100644 --- a/scene/3d/skeleton.h +++ b/scene/3d/skeleton.h @@ -49,36 +49,36 @@ class Skeleton : public Spatial { bool disable_rest; Transform rest; Transform rest_global_inverse; - + Transform pose; Transform pose_global; bool custom_pose_enable; Transform custom_pose; - + List<uint32_t> nodes_bound; - + Bone() { parent=-1; enabled=true; custom_pose_enable=false; disable_rest=false; } }; bool rest_global_inverse_dirty; Vector<Bone> bones; - + RID skeleton; - + void _make_dirty(); bool dirty; - + //bind helpers Array _get_bound_child_nodes_to_bone(int p_bone) const { - + Array bound; List<Node*> childs; get_bound_child_nodes_to_bone(p_bone,&childs); - + for (int i=0;i<childs.size();i++) { - + bound.push_back( childs[i] ); } return bound; @@ -93,11 +93,11 @@ protected: void _get_property_list( List<PropertyInfo>* p_list ) const; void _notification(int p_what); static void _bind_methods(); - + public: enum { - + NOTIFICATION_UPDATE_SKELETON=50 }; @@ -108,7 +108,7 @@ public: void add_bone(const String&p_name); int find_bone(String p_name) const; String get_bone_name(int p_bone) const; - + void set_bone_parent(int p_bone, int p_parent); int get_bone_parent(int p_bone) const; @@ -118,7 +118,7 @@ public: bool is_bone_rest_disabled(int p_bone) const; int get_bone_count() const; - + void set_bone_rest(int p_bone, const Transform& p_rest); Transform get_bone_rest(int p_bone) const; Transform get_bone_transform(int p_bone) const; @@ -128,15 +128,15 @@ public: void set_bone_enabled(int p_bone, bool p_enabled); bool is_bone_enabled(int p_bone) const; - + void bind_child_node_to_bone(int p_bone,Node *p_node); void unbind_child_node_from_bone(int p_bone,Node *p_node); void get_bound_child_nodes_to_bone(int p_bone,List<Node*> *p_bound) const; - + void clear_bones(); - + // posing api - + void set_bone_pose(int p_bone, const Transform& p_pose); Transform get_bone_pose(int p_bone) const; @@ -144,8 +144,8 @@ public: Transform get_bone_custom_pose(int p_bone) const; void localize_rests(); // used for loaders and tools - - Skeleton(); + + Skeleton(); ~Skeleton(); }; diff --git a/scene/3d/spatial.cpp b/scene/3d/spatial.cpp index 0c1e1e2d1c..c2d318e8a7 100644 --- a/scene/3d/spatial.cpp +++ b/scene/3d/spatial.cpp @@ -27,7 +27,7 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ #include "spatial.h" - + #include "scene/main/viewport.h" #include "message_queue.h" #include "scene/scene_string_names.h" @@ -99,14 +99,14 @@ void Spatial::_propagate_transform_changed(Spatial *p_origin) { // return; //already dirty data.children_lock++; - + for (List<Spatial*>::Element *E=data.children.front();E;E=E->next()) { - + if (E->get()->data.toplevel_active) continue; //don't propagate to a toplevel E->get()->_propagate_transform_changed(p_origin); } - + if (!data.ignore_notification && !xform_change.in_list()) { @@ -211,14 +211,14 @@ void Spatial::_notification(int p_what) { case NOTIFICATION_TRANSFORM_CHANGED: { - + #ifdef TOOLS_ENABLED if (data.gizmo.is_valid()) { data.gizmo->transform(); } #endif } break; - + default: {} } } @@ -257,7 +257,7 @@ Transform Spatial::get_transform() const { _update_local_transform(); } - + return data.local_transform; } Transform Spatial::get_global_transform() const { @@ -272,16 +272,16 @@ Transform Spatial::get_global_transform() const { } if (data.parent && !data.toplevel_active) { - + data.global_transform=data.parent->get_global_transform() * data.local_transform; } else { - + data.global_transform=data.local_transform; } - + data.dirty&=~DIRTY_GLOBAL; } - + return data.global_transform; } #if 0 @@ -290,7 +290,7 @@ void Spatial::add_child_notify(Node *p_child) { Spatial *s=p_child->cast_to<Spatial>(); if (!s) return; - + ERR_FAIL_COND(data.children_lock>0); s->data.dirty=DIRTY_GLOBAL; // don't allow global transform to be valid @@ -305,12 +305,12 @@ void Spatial::remove_child_notify(Node *p_child) { Spatial *s=p_child->cast_to<Spatial>(); if (!s) return; - + ERR_FAIL_COND(data.children_lock>0); - + if (s->data.C) data.children.erase(s->data.C); - s->data.parent=NULL; + s->data.parent=NULL; s->data.C=NULL; */ } @@ -595,11 +595,11 @@ bool Spatial::is_hidden() const{ } void Spatial::set_hidden(bool p_hidden) { - + if (data.visible != p_hidden) { return; } - + _set_visible_(!p_hidden); } diff --git a/scene/3d/spatial.h b/scene/3d/spatial.h index 23f1c6d103..50123b2d81 100644 --- a/scene/3d/spatial.h +++ b/scene/3d/spatial.h @@ -57,7 +57,7 @@ class Spatial : public Node { OBJ_TYPE( Spatial, Node ); OBJ_CATEGORY("3D"); - + enum TransformDirty { DIRTY_NONE=0, DIRTY_VECTORS=1, @@ -68,7 +68,7 @@ class Spatial : public Node { mutable SelfList<Node> xform_change; struct Data { - + mutable Transform global_transform; @@ -84,12 +84,12 @@ class Spatial : public Node { bool toplevel_active; bool toplevel; bool inside_world; - + int children_lock; Spatial *parent; List<Spatial*> children; List<Spatial*>::Element *C; - + bool ignore_notification; bool notify_local_transform; @@ -130,7 +130,7 @@ protected: public: enum { - + NOTIFICATION_TRANSFORM_CHANGED=SceneTree::NOTIFICATION_TRANSFORM_CHANGED, NOTIFICATION_ENTER_WORLD=41, NOTIFICATION_EXIT_WORLD=42, @@ -153,7 +153,7 @@ public: void set_transform(const Transform& p_transform); void set_global_transform(const Transform& p_transform); - + Transform get_transform() const; Transform get_global_transform() const; @@ -198,7 +198,7 @@ public: Transform get_import_transform() const; #endif - Spatial(); + Spatial(); ~Spatial(); }; diff --git a/scene/3d/spatial_sample_player.h b/scene/3d/spatial_sample_player.h index 9b3220458e..037cdc906a 100644 --- a/scene/3d/spatial_sample_player.h +++ b/scene/3d/spatial_sample_player.h @@ -47,7 +47,7 @@ public: typedef int VoiceID; -private: +private: Ref<SampleLibrary> library; int polyphony; diff --git a/scene/3d/test_cube.h b/scene/3d/test_cube.h index 21f2b3c794..332276ab89 100644 --- a/scene/3d/test_cube.h +++ b/scene/3d/test_cube.h @@ -42,14 +42,14 @@ class TestCube : public GeometryInstance { OBJ_TYPE( TestCube, GeometryInstance ); RID instance; - + public: virtual AABB get_aabb() const; virtual DVector<Face3> get_faces(uint32_t p_usage_flags) const; - TestCube(); + TestCube(); ~TestCube(); }; diff --git a/scene/3d/visual_instance.cpp b/scene/3d/visual_instance.cpp index 723b0a9af5..b15226cce3 100644 --- a/scene/3d/visual_instance.cpp +++ b/scene/3d/visual_instance.cpp @@ -267,6 +267,15 @@ void GeometryInstance::_update_visibility() { void GeometryInstance::set_flag(Flags p_flag,bool p_value) { ERR_FAIL_INDEX(p_flag,FLAG_MAX); + if (p_flag==FLAG_CAST_SHADOW) { + if (p_value == true) { + set_cast_shadows_setting(SHADOW_CASTING_SETTING_ON); + } + else { + set_cast_shadows_setting(SHADOW_CASTING_SETTING_OFF); + } + } + if (flags[p_flag]==p_value) return; @@ -294,10 +303,32 @@ void GeometryInstance::set_flag(Flags p_flag,bool p_value) { bool GeometryInstance::get_flag(Flags p_flag) const{ ERR_FAIL_INDEX_V(p_flag,FLAG_MAX,false); + + if (p_flag == FLAG_CAST_SHADOW) { + if (shadow_casting_setting == SHADOW_CASTING_SETTING_OFF) { + return false; + } + else { + return true; + } + } + return flags[p_flag]; } +void GeometryInstance::set_cast_shadows_setting(ShadowCastingSetting p_shadow_casting_setting) { + + shadow_casting_setting = p_shadow_casting_setting; + + VS::get_singleton()->instance_geometry_set_cast_shadows_setting(get_instance(), (VS::ShadowCastingSetting)p_shadow_casting_setting); +} + +GeometryInstance::ShadowCastingSetting GeometryInstance::get_cast_shadows_setting() const { + + return shadow_casting_setting; +} + void GeometryInstance::set_baked_light_texture_id(int p_id) { baked_light_texture_id=p_id; @@ -330,6 +361,9 @@ void GeometryInstance::_bind_methods() { ObjectTypeDB::bind_method(_MD("set_flag","flag","value"), &GeometryInstance::set_flag); ObjectTypeDB::bind_method(_MD("get_flag","flag"), &GeometryInstance::get_flag); + ObjectTypeDB::bind_method(_MD("set_cast_shadows_setting", "shadow_casting_setting"), &GeometryInstance::set_cast_shadows_setting); + ObjectTypeDB::bind_method(_MD("get_cast_shadows_setting"), &GeometryInstance::get_cast_shadows_setting); + ObjectTypeDB::bind_method(_MD("set_draw_range_begin","mode"), &GeometryInstance::set_draw_range_begin); ObjectTypeDB::bind_method(_MD("get_draw_range_begin"), &GeometryInstance::get_draw_range_begin); @@ -346,7 +380,7 @@ void GeometryInstance::_bind_methods() { ADD_PROPERTYI( PropertyInfo( Variant::BOOL, "geometry/visible"), _SCS("set_flag"), _SCS("get_flag"),FLAG_VISIBLE); ADD_PROPERTY( PropertyInfo( Variant::OBJECT, "geometry/material_override",PROPERTY_HINT_RESOURCE_TYPE,"Material"), _SCS("set_material_override"), _SCS("get_material_override")); - ADD_PROPERTYI( PropertyInfo( Variant::BOOL, "geometry/cast_shadow"), _SCS("set_flag"), _SCS("get_flag"),FLAG_CAST_SHADOW); + ADD_PROPERTY(PropertyInfo(Variant::INT, "geometry/cast_shadow", PROPERTY_HINT_ENUM, "Off,On,Double-Sided,Shadows Only"), _SCS("set_cast_shadows_setting"), _SCS("get_cast_shadows_setting")); ADD_PROPERTYI( PropertyInfo( Variant::BOOL, "geometry/receive_shadows"), _SCS("set_flag"), _SCS("get_flag"),FLAG_RECEIVE_SHADOWS); ADD_PROPERTY( PropertyInfo( Variant::INT, "geometry/range_begin",PROPERTY_HINT_RANGE,"0,32768,0.01"), _SCS("set_draw_range_begin"), _SCS("get_draw_range_begin")); ADD_PROPERTY( PropertyInfo( Variant::INT, "geometry/range_end",PROPERTY_HINT_RANGE,"0,32768,0.01"), _SCS("set_draw_range_end"), _SCS("get_draw_range_end")); @@ -369,6 +403,11 @@ void GeometryInstance::_bind_methods() { BIND_CONSTANT(FLAG_VISIBLE_IN_ALL_ROOMS ); BIND_CONSTANT(FLAG_MAX ); + BIND_CONSTANT(SHADOW_CASTING_SETTING_OFF); + BIND_CONSTANT(SHADOW_CASTING_SETTING_ON); + BIND_CONSTANT(SHADOW_CASTING_SETTING_DOUBLE_SIDED); + BIND_CONSTANT(SHADOW_CASTING_SETTING_SHADOWS_ONLY); + } GeometryInstance::GeometryInstance() { @@ -381,6 +420,7 @@ GeometryInstance::GeometryInstance() { flags[FLAG_VISIBLE]=true; flags[FLAG_CAST_SHADOW]=true; flags[FLAG_RECEIVE_SHADOWS]=true; + shadow_casting_setting=SHADOW_CASTING_SETTING_ON; baked_light_instance=NULL; baked_light_texture_id=0; extra_cull_margin=0; diff --git a/scene/3d/visual_instance.h b/scene/3d/visual_instance.h index e49f4fb82f..e286d5fa88 100644 --- a/scene/3d/visual_instance.h +++ b/scene/3d/visual_instance.h @@ -65,7 +65,7 @@ public: RID get_instance() const; virtual AABB get_aabb() const=0; virtual DVector<Face3> get_faces(uint32_t p_usage_flags) const=0; - + virtual AABB get_transformed_aabb() const; // helper void set_base(const RID& p_base); @@ -74,7 +74,7 @@ public: uint32_t get_layer_mask() const; - VisualInstance(); + VisualInstance(); ~VisualInstance(); }; @@ -98,10 +98,17 @@ public: FLAG_MAX=VS::INSTANCE_FLAG_MAX, }; + enum ShadowCastingSetting { + SHADOW_CASTING_SETTING_OFF=VS::SHADOW_CASTING_SETTING_OFF, + SHADOW_CASTING_SETTING_ON = VS::SHADOW_CASTING_SETTING_ON, + SHADOW_CASTING_SETTING_DOUBLE_SIDED=VS::SHADOW_CASTING_SETTING_DOUBLE_SIDED, + SHADOW_CASTING_SETTING_SHADOWS_ONLY=VS::SHADOW_CASTING_SETTING_SHADOWS_ONLY + }; private: bool flags[FLAG_MAX]; + ShadowCastingSetting shadow_casting_setting; Ref<Material> material_override; float draw_begin; float draw_end; @@ -121,6 +128,9 @@ public: void set_flag(Flags p_flag,bool p_value); bool get_flag(Flags p_flag) const; + void set_cast_shadows_setting(ShadowCastingSetting p_shadow_casting_setting); + ShadowCastingSetting get_cast_shadows_setting() const; + void set_draw_range_begin(float p_dist); float get_draw_range_begin() const; @@ -140,5 +150,7 @@ public: }; VARIANT_ENUM_CAST( GeometryInstance::Flags ); +VARIANT_ENUM_CAST( GeometryInstance::ShadowCastingSetting ); + #endif diff --git a/scene/animation/animation_player.cpp b/scene/animation/animation_player.cpp index 0bc54b3d43..32958112e5 100644 --- a/scene/animation/animation_player.cpp +++ b/scene/animation/animation_player.cpp @@ -27,7 +27,7 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ #include "animation_player.h" - + #include "message_queue.h" #include "scene/scene_string_names.h" @@ -50,10 +50,10 @@ bool AnimationPlayer::_set(const StringName& p_name, const Variant& p_value) { else play(which); } else if (name.begins_with("anims/")) { - + String which=name.get_slicec('/',1); - + add_animation(which,p_value); } else if (name.begins_with("next/")) { @@ -62,7 +62,7 @@ bool AnimationPlayer::_set(const StringName& p_name, const Variant& p_value) { animation_set_next(which,p_value); } else if (p_name==SceneStringNames::get_singleton()->blend_times) { - + Array array=p_value; int len = array.size(); ERR_FAIL_COND_V(len%3,false); @@ -79,7 +79,7 @@ bool AnimationPlayer::_set(const StringName& p_name, const Variant& p_value) { } else if (p_name==SceneStringNames::get_singleton()->autoplay) { autoplay=p_value; - + } else return false; @@ -92,7 +92,7 @@ bool AnimationPlayer::_get(const StringName& p_name,Variant &r_ret) const { String name=p_name; if (name=="playback/speed") { //bw compatibility - + r_ret=speed_scale; } else if (name=="playback/active") { @@ -105,9 +105,9 @@ bool AnimationPlayer::_get(const StringName& p_name,Variant &r_ret) const { r_ret="[stop]"; } else if (name.begins_with("anims/")) { - + String which=name.get_slicec('/',1); - + r_ret= get_animation(which).get_ref_ptr(); } else if (name.begins_with("next/")) { @@ -117,7 +117,7 @@ bool AnimationPlayer::_get(const StringName& p_name,Variant &r_ret) const { } else if (name=="blend_times") { - + Array array; array.resize(blend_times.size()*3); @@ -195,7 +195,7 @@ void AnimationPlayer::advance(float p_time) { void AnimationPlayer::_notification(int p_what) { switch(p_what) { - + case NOTIFICATION_ENTER_TREE: { if (!processing) { @@ -222,7 +222,7 @@ void AnimationPlayer::_notification(int p_what) { _animation_process( get_process_delta_time() ); } break; case NOTIFICATION_FIXED_PROCESS: { - + if (animation_process_mode==ANIMATION_PROCESS_IDLE) break; @@ -230,7 +230,7 @@ void AnimationPlayer::_notification(int p_what) { _animation_process( get_fixed_process_delta_time() ); } break; case NOTIFICATION_EXIT_TREE: { - + //stop_all(); clear_caches(); } break; @@ -240,15 +240,15 @@ void AnimationPlayer::_notification(int p_what) { void AnimationPlayer::_generate_node_caches(AnimationData* p_anim) { Node *parent = get_node(root); - + ERR_FAIL_COND(!parent); Animation *a=p_anim->animation.operator->(); - + p_anim->node_cache.resize( a->get_track_count() ); - + for (int i=0;i<a->get_track_count();i++) { - + p_anim->node_cache[i]=NULL; RES resource; Node *child = parent->get_node_and_resource(a->track_get_path(i),resource); @@ -267,7 +267,7 @@ void AnimationPlayer::_generate_node_caches(AnimationData* p_anim) { continue; } } - + { if (!child->is_connected("exit_tree",this,"_node_removed")) child->connect("exit_tree",this,"_node_removed",make_binds(child),CONNECT_ONESHOT); @@ -277,15 +277,15 @@ void AnimationPlayer::_generate_node_caches(AnimationData* p_anim) { key.id=id; key.bone_idx=bone_idx; - + if (node_cache_map.has(key)) { - + p_anim->node_cache[i]=&node_cache_map[key]; } else { - + node_cache_map[key]=TrackNodeCache(); - + p_anim->node_cache[i]=&node_cache_map[key]; p_anim->node_cache[i]->path=a->track_get_path(i); p_anim->node_cache[i]->node=child; @@ -293,7 +293,7 @@ void AnimationPlayer::_generate_node_caches(AnimationData* p_anim) { p_anim->node_cache[i]->node_2d=child->cast_to<Node2D>(); if (a->track_get_type(i)==Animation::TYPE_TRANSFORM) { // special cases and caches for transform tracks - + // cache spatial p_anim->node_cache[i]->spatial=child->cast_to<Spatial>(); // cache skeleton @@ -302,7 +302,7 @@ void AnimationPlayer::_generate_node_caches(AnimationData* p_anim) { StringName bone_name=a->track_get_path(i).get_property(); if (bone_name.operator String()!="") { - + p_anim->node_cache[i]->bone_idx=p_anim->node_cache[i]->skeleton->find_bone(bone_name); if (p_anim->node_cache[i]->bone_idx<0) { // broken track (nonexistent bone) @@ -314,9 +314,9 @@ void AnimationPlayer::_generate_node_caches(AnimationData* p_anim) { } } else { // no property, just use spatialnode - p_anim->node_cache[i]->skeleton=NULL; + p_anim->node_cache[i]->skeleton=NULL; } - + } } } @@ -356,29 +356,29 @@ void AnimationPlayer::_animation_process_animation(AnimationData* p_anim,float p ERR_FAIL_COND( p_anim->node_cache.size() != p_anim->animation->get_track_count() ); - + Animation *a=p_anim->animation.operator->(); bool can_call = is_inside_tree() && !get_tree()->is_editor_hint(); - + for (int i=0;i<a->get_track_count();i++) { - + TrackNodeCache *nc=p_anim->node_cache[i]; - + if (!nc) // no node cache for this track, skip it continue; - + if (a->track_get_key_count(i)==0) continue; // do nothing if track is empty switch(a->track_get_type(i)) { - + case Animation::TYPE_TRANSFORM: { - + if (!nc->spatial) continue; - - + + Vector3 loc; Quat rot; Vector3 scale; @@ -406,10 +406,10 @@ void AnimationPlayer::_animation_process_animation(AnimationData* p_anim,float p nc->scale_accum=nc->scale_accum.linear_interpolate(scale,p_interp); } - + } break; case Animation::TYPE_VALUE: { - + if (!nc->node) continue; @@ -488,21 +488,21 @@ void AnimationPlayer::_animation_process_animation(AnimationData* p_anim,float p } } - + } break; case Animation::TYPE_METHOD: { - + if (!nc->node) continue; if (p_delta==0) continue; if (!p_allow_discrete) break; - + List<int> indices; a->method_track_get_key_indices(i,p_time,p_delta,&indices); - + for(List<int>::Element *E=indices.front();E;E=E->next()) { StringName method=a->method_track_get_name(i,E->get()); @@ -523,8 +523,8 @@ void AnimationPlayer::_animation_process_animation(AnimationData* p_anim,float p ); } } - - + + } break; } } @@ -535,17 +535,17 @@ void AnimationPlayer::_animation_process_data(PlaybackData &cd,float p_delta,flo float delta=p_delta*speed_scale*cd.speed_scale; bool backwards=delta<0; float next_pos=cd.pos+delta; - + float len=cd.from->animation->get_length(); bool loop=cd.from->animation->has_loop(); - + if (!loop) { - + if (next_pos<0) next_pos=0; else if (next_pos>len) next_pos=len; - + // fix delta delta=next_pos-cd.pos; @@ -564,39 +564,39 @@ void AnimationPlayer::_animation_process_data(PlaybackData &cd,float p_delta,flo } } else { - + next_pos=Math::fposmod(next_pos,len); } - + cd.pos=next_pos; _animation_process_animation(cd.from,cd.pos,delta,p_blend,&cd == &playback.current); - + } void AnimationPlayer::_animation_process2(float p_delta) { Playback &c=playback; - + float prev_blend=1.0; accum_pass++; - + int pop_count=1; int pop=0; // if >0, then amount of elements to pop from the back for (List<Blend>::Element *E=c.blend.back();E;E=E->prev(),pop_count++) { - + Blend& b=E->get(); _animation_process_data(b.data,p_delta,prev_blend); - + prev_blend=1.0-b.blend_left/b.blend_time; - + b.blend_left-=Math::absf(speed_scale*p_delta); - + if (b.blend_left<0) { pop=pop_count; @@ -608,22 +608,22 @@ void AnimationPlayer::_animation_process2(float p_delta) { c.blend.pop_back(); } - + _animation_process_data(c.current,p_delta,prev_blend); - + } void AnimationPlayer::_animation_update_transforms() { for (int i=0;i<cache_update_size;i++) { - + TrackNodeCache *nc=cache_update[i]; ERR_CONTINUE( nc->accum_pass!=accum_pass ); if (nc->spatial) { - + Transform t; t.origin=nc->loc_accum; t.basis=nc->rot_accum; @@ -638,9 +638,9 @@ void AnimationPlayer::_animation_update_transforms() { nc->spatial->set_transform(t); } } - + } - + cache_update_size=0; for (int i=0;i<cache_update_prop_size;i++) { @@ -712,7 +712,7 @@ void AnimationPlayer::_animation_process(float p_delta) { // bool any_active=false; - + if (playback.current.from) { end_notify=false; @@ -750,7 +750,7 @@ Error AnimationPlayer::add_animation(const StringName& p_name, const Ref<Animati #endif ERR_FAIL_COND_V( p_animation.is_null() , ERR_INVALID_PARAMETER ); - + //print_line("Add anim: "+String(p_name)+" name: "+p_animation->get_name()); if (animation_set.has(p_name)) { @@ -759,12 +759,12 @@ Error AnimationPlayer::add_animation(const StringName& p_name, const Ref<Animati animation_set[p_name].animation=p_animation; clear_caches(); } else { - + AnimationData ad; ad.animation=p_animation; ad.name=p_name; animation_set[p_name]=ad; - } + } _ref_anim(p_animation); _change_notify(); @@ -774,10 +774,10 @@ Error AnimationPlayer::add_animation(const StringName& p_name, const Ref<Animati void AnimationPlayer::remove_animation(const StringName& p_name) { ERR_FAIL_COND(!animation_set.has(p_name) ); - + stop_all(); _unref_anim(animation_set[p_name].animation); - animation_set.erase(p_name); + animation_set.erase(p_name); clear_caches(); _change_notify(); @@ -876,7 +876,7 @@ Ref<Animation> AnimationPlayer::get_animation(const StringName& p_name) const { ERR_FAIL_COND_V( !animation_set.has(p_name), Ref<Animation>() ); const AnimationData& data = animation_set[p_name]; - + return data.animation; } @@ -950,7 +950,7 @@ void AnimationPlayer::play(const StringName& p_name, float p_custom_blend, float //printf("animation is %ls\n", String(p_name).c_str()); //ERR_FAIL_COND(!is_inside_scene()); StringName name=p_name; - + if (String(name)=="") name=playback.assigned; @@ -958,11 +958,11 @@ void AnimationPlayer::play(const StringName& p_name, float p_custom_blend, float ERR_EXPLAIN("Animation not found: "+name); ERR_FAIL(); } - + Playback &c=playback; if (c.current.from) { - + float blend_time=0; // find if it can blend BlendKey bk; @@ -972,37 +972,37 @@ void AnimationPlayer::play(const StringName& p_name, float p_custom_blend, float if (p_custom_blend>=0) { blend_time=p_custom_blend; } else if (blend_times.has(bk)) { - + blend_time=blend_times[bk]; } else { - + bk.from="*"; if (blend_times.has(bk)) { blend_time=blend_times[bk]; } else { - + bk.from=c.current.from->name; bk.to="*"; - + if (blend_times.has(bk)) { - + blend_time=blend_times[bk]; } } } - + if (p_custom_blend<0 && blend_time==0 && default_blend_time) blend_time=default_blend_time; if (blend_time>0) { - + Blend b; b.data=c.current; b.blend_time=b.blend_left=blend_time; - c.blend.push_back(b); + c.blend.push_back(b); } } - + c.current.from=&animation_set[name]; c.current.pos=p_from_end ? c.current.from->animation->get_length() : 0; c.current.speed_scale=p_custom_scale; @@ -1059,7 +1059,7 @@ String AnimationPlayer::get_current_animation() const { } void AnimationPlayer::stop(bool p_reset) { - + Playback &c=playback; c.blend.clear(); if (p_reset) { @@ -1073,15 +1073,15 @@ void AnimationPlayer::stop(bool p_reset) { void AnimationPlayer::stop_all() { stop(); - + _set_process(false); // always process when starting an animation - + } void AnimationPlayer::set_speed(float p_speed) { speed_scale=p_speed; - + } float AnimationPlayer::get_speed() const { @@ -1151,7 +1151,7 @@ void AnimationPlayer::_node_removed(Node *p_node) { void AnimationPlayer::clear_caches() { - + node_cache_map.clear(); for( Map<StringName, AnimationData>::Element *E=animation_set.front();E;E=E->next()) { @@ -1296,7 +1296,7 @@ void AnimationPlayer::_bind_methods() { ObjectTypeDB::bind_method(_MD("has_animation","name"),&AnimationPlayer::has_animation); ObjectTypeDB::bind_method(_MD("get_animation:Animation","name"),&AnimationPlayer::get_animation); ObjectTypeDB::bind_method(_MD("get_animation_list"),&AnimationPlayer::_get_animation_list); - + ObjectTypeDB::bind_method(_MD("set_blend_time","anim_from","anim_to","sec"),&AnimationPlayer::set_blend_time); ObjectTypeDB::bind_method(_MD("get_blend_time","anim_from","anim_to"),&AnimationPlayer::get_blend_time); @@ -1315,7 +1315,7 @@ void AnimationPlayer::_bind_methods() { ObjectTypeDB::bind_method(_MD("set_active","active"),&AnimationPlayer::set_active); ObjectTypeDB::bind_method(_MD("is_active"),&AnimationPlayer::is_active); - + ObjectTypeDB::bind_method(_MD("set_speed","speed"),&AnimationPlayer::set_speed); ObjectTypeDB::bind_method(_MD("get_speed"),&AnimationPlayer::get_speed); diff --git a/scene/animation/animation_player.h b/scene/animation/animation_player.h index 853526c80a..2ae3a0756c 100644 --- a/scene/animation/animation_player.h +++ b/scene/animation/animation_player.h @@ -53,7 +53,7 @@ public: private: enum { - + NODE_CACHE_UPDATE_MAX=1024, BLEND_FROM_MAX=3 }; @@ -96,23 +96,23 @@ private: Map<StringName,PropertyAnim> property_anim; - + TrackNodeCache() { skeleton=NULL; spatial=NULL; node=NULL; accum_pass=0; bone_idx=-1; node_2d=NULL; } - + }; struct TrackNodeCacheKey { - + uint32_t id; int bone_idx; inline bool operator<(const TrackNodeCacheKey& p_right) const { - + if (id<p_right.id) return true; else if (id>p_right.id) return false; - else + else return bone_idx<p_right.bone_idx; } }; @@ -135,7 +135,7 @@ private: StringName next; Vector<TrackNodeCache*> node_cache; Ref<Animation> animation; - + }; Map<StringName, AnimationData> animation_set; @@ -148,41 +148,41 @@ private: Map<BlendKey, float > blend_times; - - + + struct PlaybackData { - + AnimationData* from; float pos; float speed_scale; PlaybackData() { - + pos=0; speed_scale=1.0; - from=NULL; + from=NULL; } }; - + struct Blend { - + PlaybackData data; - + float blend_time; float blend_left; - + Blend() { - + blend_left=0; blend_time=0; } }; - + struct Playback { - - List<Blend> blend; + + List<Blend> blend; PlaybackData current; StringName assigned; } playback; @@ -197,25 +197,25 @@ private: bool active; NodePath root; - + void _animation_process_animation(AnimationData* p_anim,float p_time, float p_delta,float p_interp, bool p_allow_discrete=true); - - void _generate_node_caches(AnimationData* p_anim); + + void _generate_node_caches(AnimationData* p_anim); void _animation_process_data(PlaybackData &cd,float p_delta,float p_blend); void _animation_process2(float p_delta); void _animation_update_transforms(); void _animation_process(float p_delta); - + void _node_removed(Node *p_node); - + // bind helpers DVector<String> _get_animation_list() const { - + List<StringName> animations; get_animation_list(&animations); DVector<String> ret; while(animations.size()) { - + ret.push_back( animations.front()->get()); animations.pop_front(); } @@ -236,9 +236,9 @@ protected: bool _get(const StringName& p_name,Variant &r_ret) const; void _get_property_list( List<PropertyInfo> *p_list) const; void _notification(int p_what); - - static void _bind_methods(); - + + static void _bind_methods(); + public: StringName find_animation(const Ref<Animation>& p_animation) const; @@ -249,7 +249,7 @@ public: bool has_animation(const StringName& p_name) const; Ref<Animation> get_animation(const StringName& p_name) const; void get_animation_list( List<StringName> * p_animations) const; - + void set_blend_time(const StringName& p_animation1, const StringName& p_animation2, float p_time); float get_blend_time( const StringName& p_animation1, const StringName& p_animation2) const; @@ -258,7 +258,7 @@ public: void set_default_blend_time(float p_default); float get_default_blend_time() const; - + void play(const StringName& p_name=StringName(),float p_custom_blend=-1,float p_custom_scale=1.0,bool p_from_end=false); void play_backwards(const StringName& p_name=StringName(),float p_custom_blend=-1); void queue(const StringName& p_name); @@ -271,7 +271,7 @@ public: void set_active(bool p_active); bool is_active() const; bool is_valid() const; - + void set_speed(float p_speed); float get_speed() const; @@ -295,8 +295,8 @@ public: void get_argument_options(const StringName& p_function,int p_idx,List<String>*r_options) const; - - AnimationPlayer(); + + AnimationPlayer(); ~AnimationPlayer(); }; diff --git a/scene/animation/animation_tree_player.cpp b/scene/animation/animation_tree_player.cpp index 77d9f77bb5..9dcad8a533 100644 --- a/scene/animation/animation_tree_player.cpp +++ b/scene/animation/animation_tree_player.cpp @@ -420,7 +420,7 @@ void AnimationTreePlayer::_notification(int p_what) { _process_animation( get_process_delta_time() ); } break; case NOTIFICATION_FIXED_PROCESS: { - + if (animation_process_mode==ANIMATION_PROCESS_IDLE) break; @@ -507,7 +507,7 @@ float AnimationTreePlayer::_process_node(const StringName& p_node,AnimationNode if (!(*r_prev_anim)) active_list=an; - else + else (*r_prev_anim)->next=an; an->next=NULL; @@ -607,20 +607,21 @@ float AnimationTreePlayer::_process_node(const StringName& p_node,AnimationNode Blend3Node *bn = static_cast<Blend3Node*>(nb); float rem; - - if (bn->value==0) { - rem = _process_node(bn->inputs[1].node,r_prev_anim,p_weight,p_time,switched,p_seek,p_filter,p_reverse_weight); - } else if (bn->value>0) { - - rem = _process_node(bn->inputs[1].node,r_prev_anim,p_weight*(1.0-bn->value),p_time,switched,p_seek,p_filter,p_reverse_weight*(1.0-bn->value)); - _process_node(bn->inputs[2].node,r_prev_anim,p_weight*bn->value,p_time,switched,p_seek,p_filter,p_reverse_weight*bn->value); - + float blend, lower_blend, upper_blend; + if (bn->value < 0) { + lower_blend = -bn->value; + blend = 1.0 - lower_blend; + upper_blend = 0; } else { - - rem = _process_node(bn->inputs[1].node,r_prev_anim,p_weight*(1.0+bn->value),p_time,switched,p_seek,p_filter,p_reverse_weight*(1.0+bn->value)); - _process_node(bn->inputs[0].node,r_prev_anim,p_weight*-bn->value,p_time,switched,p_seek,p_filter,p_reverse_weight*-bn->value); + lower_blend = 0; + blend = 1.0 - bn->value; + upper_blend = bn->value; } + rem = _process_node(bn->inputs[1].node,r_prev_anim,p_weight*blend,p_time,switched,p_seek,p_filter,p_reverse_weight*blend); + _process_node(bn->inputs[2].node,r_prev_anim,p_weight*upper_blend,p_time,switched,p_seek,p_filter,p_reverse_weight*upper_blend); + _process_node(bn->inputs[0].node,r_prev_anim,p_weight*lower_blend,p_time,switched,p_seek,p_filter,p_reverse_weight*lower_blend); + return rem; } break; case NODE_BLEND4: { @@ -636,10 +637,15 @@ float AnimationTreePlayer::_process_node(const StringName& p_node,AnimationNode } break; case NODE_TIMESCALE: { TimeScaleNode *tsn = static_cast<TimeScaleNode*>(nb); + float rem; if (p_seek) - return _process_node(tsn->inputs[0].node,r_prev_anim,p_weight,p_time,switched,true,p_filter,p_reverse_weight); + rem = _process_node(tsn->inputs[0].node,r_prev_anim,p_weight,p_time,switched,true,p_filter,p_reverse_weight); + else + rem = _process_node(tsn->inputs[0].node,r_prev_anim,p_weight,p_time*tsn->scale,switched,false,p_filter,p_reverse_weight); + if (tsn->scale == 0) + return INFINITY; else - return _process_node(tsn->inputs[0].node,r_prev_anim,p_weight,p_time*tsn->scale,switched,false,p_filter,p_reverse_weight); + return rem / tsn->scale; } break; case NODE_TIMESEEK: { @@ -768,6 +774,10 @@ void AnimationTreePlayer::_process_animation(float p_delta) { t.scale.x=0; t.scale.y=0; t.scale.z=0; + + Variant value = t.node->get(t.property); + value.zero(); + t.node->set(t.property, value); } @@ -777,11 +787,9 @@ void AnimationTreePlayer::_process_animation(float p_delta) { Quat empty_rot; - int total = 0; while(anim_list) { if (!anim_list->animation.is_null() && !anim_list->skip) { - ++total; //check if animation is meaningful Animation *a = anim_list->animation.operator->(); @@ -816,8 +824,9 @@ void AnimationTreePlayer::_process_animation(float p_delta) { case Animation::TYPE_VALUE: { ///< Set a value in a property, can be interpolated. if (a->value_track_is_continuous(tr.local_track)) { - Variant value = a->value_track_interpolate(tr.local_track,anim_list->time); - tr.track->node->set(tr.track->property,value); + Variant blended, value = a->value_track_interpolate(tr.local_track,anim_list->time); + Variant::blend(tr.track->node->get(tr.track->property),value,blend,blended); + tr.track->node->set(tr.track->property,blended); } else { List<int> indices; @@ -857,8 +866,9 @@ void AnimationTreePlayer::_process_animation(float p_delta) { if (!t.node) continue; - //if (E->get()->t.type!=Animation::TYPE_TRANSFORM) - // continue; + + if(t.property) // value track; was applied in step 2 + continue; Transform xform; xform.basis=t.rot; @@ -1826,7 +1836,7 @@ void AnimationTreePlayer::_bind_methods() { ObjectTypeDB::bind_method(_MD("reset"),&AnimationTreePlayer::reset); - ObjectTypeDB::bind_method(_MD("recompute_caches"),&AnimationTreePlayer::recompute_caches); + ObjectTypeDB::bind_method(_MD("recompute_caches"),&AnimationTreePlayer::recompute_caches); ADD_PROPERTY(PropertyInfo(Variant::INT, "playback/process_mode", PROPERTY_HINT_ENUM, "Fixed,Idle"), _SCS("set_animation_process_mode"), _SCS("get_animation_process_mode")); diff --git a/scene/animation/tween.cpp b/scene/animation/tween.cpp index 31f30dd1d9..7edd57603b 100644 --- a/scene/animation/tween.cpp +++ b/scene/animation/tween.cpp @@ -126,7 +126,7 @@ bool Tween::_get(const StringName& p_name,Variant &r_ret) const { String name=p_name; if (name=="playback/speed") { //bw compatibility - + r_ret=speed_scale; } else if (name=="playback/active") { @@ -149,7 +149,7 @@ void Tween::_get_property_list(List<PropertyInfo> *p_list) const { void Tween::_notification(int p_what) { switch(p_what) { - + case NOTIFICATION_ENTER_TREE: { if (!processing) { @@ -170,7 +170,7 @@ void Tween::_notification(int p_what) { _tween_process( get_process_delta_time() ); } break; case NOTIFICATION_FIXED_PROCESS: { - + if (tween_process_mode==TWEEN_PROCESS_IDLE) break; @@ -178,7 +178,7 @@ void Tween::_notification(int p_what) { _tween_process( get_fixed_process_delta_time() ); } break; case NOTIFICATION_EXIT_TREE: { - + stop_all(); } break; } @@ -1183,7 +1183,7 @@ bool Tween::interpolate_callback(Object *p_object args=2; else if (p_arg1.get_type()!=Variant::NIL) args=1; - else + else args=0; data.args = args; @@ -1247,7 +1247,7 @@ bool Tween::interpolate_deferred_callback(Object *p_object args=2; else if (p_arg1.get_type()!=Variant::NIL) args=1; - else + else args=0; data.args = args; diff --git a/scene/animation/tween.h b/scene/animation/tween.h index f06ca1e9e7..d0455cdc71 100644 --- a/scene/animation/tween.h +++ b/scene/animation/tween.h @@ -57,7 +57,7 @@ public: TRANS_COUNT, }; - + enum EaseType { EASE_IN, EASE_OUT, @@ -206,7 +206,7 @@ public: , String p_callback , VARIANT_ARG_DECLARE ); - + bool interpolate_deferred_callback(Object *p_object , real_t p_times_in_sec , String p_callback diff --git a/scene/gui/base_button.cpp b/scene/gui/base_button.cpp index 698dbce2b5..3bcc60b86a 100644 --- a/scene/gui/base_button.cpp +++ b/scene/gui/base_button.cpp @@ -37,19 +37,19 @@ void BaseButton::_input_event(InputEvent p_event) { if (status.disabled) // no interaction with disabled button return; - + switch(p_event.type) { - + case InputEvent::MOUSE_BUTTON: { - + const InputEventMouseButton &b=p_event.mouse_button; - + if ( status.disabled || b.button_index!=1 ) return; if (status.pressing_button) break; - + if (status.click_on_press) { if (b.pressed) { @@ -96,13 +96,13 @@ void BaseButton::_input_event(InputEvent p_event) { } if (b.pressed) { - + status.press_attempt=true; status.pressing_inside=true; - + } else { - - + + if (status.press_attempt &&status.pressing_inside) { if (!toggle_mode) { //mouse press attempt @@ -114,14 +114,14 @@ void BaseButton::_input_event(InputEvent p_event) { } emit_signal("pressed"); - + } else { status.pressed=!status.pressed; - + pressed(); emit_signal("pressed"); - + toggled(status.pressed); emit_signal("toggled",status.pressed); if (get_script_instance()) { @@ -134,10 +134,10 @@ void BaseButton::_input_event(InputEvent p_event) { } status.press_attempt=false; - + } - - update(); + + update(); } break; case InputEvent::MOUSE_MOTION: { @@ -151,7 +151,7 @@ void BaseButton::_input_event(InputEvent p_event) { case InputEvent::ACTION: case InputEvent::JOYSTICK_BUTTON: case InputEvent::KEY: { - + if (p_event.is_echo()) { break; @@ -166,7 +166,7 @@ void BaseButton::_input_event(InputEvent p_event) { } if (p_event.is_action("ui_accept")) { - + if (p_event.is_pressed()) { status.pressing_button++; @@ -183,18 +183,18 @@ void BaseButton::_input_event(InputEvent p_event) { status.press_attempt=false; status.pressing_inside=false; - + if (!toggle_mode) { //mouse press attempt - + pressed(); - emit_signal("pressed"); + emit_signal("pressed"); } else { - + status.pressed=!status.pressed; - + pressed(); emit_signal("pressed"); - + toggled(status.pressed); if (get_script_instance()) { get_script_instance()->call(SceneStringNames::get_singleton()->_toggled,status.pressed); @@ -202,29 +202,29 @@ void BaseButton::_input_event(InputEvent p_event) { emit_signal("toggled",status.pressed); } } - + accept_event(); - update(); + update(); } - } - + } + } } void BaseButton::_notification(int p_what) { - + if (p_what==NOTIFICATION_MOUSE_ENTER) { - + status.hovering=true; update(); } - + if (p_what==NOTIFICATION_MOUSE_EXIT) { status.hovering=false; update(); - } + } if (p_what==NOTIFICATION_FOCUS_EXIT) { if (status.pressing_button && status.press_attempt) { @@ -282,7 +282,7 @@ void BaseButton::toggled(bool p_pressed) { void BaseButton::set_disabled(bool p_disabled) { - + status.disabled = p_disabled; update(); _change_notify("disabled"); @@ -298,7 +298,7 @@ bool BaseButton::is_disabled() const { } void BaseButton::set_pressed(bool p_pressed) { - + if (!toggle_mode) return; if (status.pressed==p_pressed) @@ -309,12 +309,12 @@ void BaseButton::set_pressed(bool p_pressed) { } bool BaseButton::is_pressing() const{ - + return status.press_attempt; } bool BaseButton::is_pressed() const { - + return toggle_mode?status.pressed:status.press_attempt; } @@ -324,11 +324,11 @@ bool BaseButton::is_hovered() const { } BaseButton::DrawMode BaseButton::get_draw_mode() const { - + if (status.disabled) { return DRAW_DISABLED; }; - + //print_line("press attempt: "+itos(status.press_attempt)+" hover: "+itos(status.hovering)+" pressed: "+itos(status.pressed)); if (status.press_attempt==false && status.hovering && !status.pressed) { @@ -336,34 +336,34 @@ BaseButton::DrawMode BaseButton::get_draw_mode() const { return DRAW_HOVER; } else { /* determine if pressed or not */ - + bool pressing; if (status.press_attempt) { - + pressing=status.pressing_inside; if (status.pressed) pressing=!pressing; } else { - + pressing=status.pressed; } - - if (pressing) + + if (pressing) return DRAW_PRESSED; - else + else return DRAW_NORMAL; - } + } return DRAW_NORMAL; } void BaseButton::set_toggle_mode(bool p_on) { - + toggle_mode=p_on; } bool BaseButton::is_toggle_mode() const { - + return toggle_mode; } @@ -414,7 +414,7 @@ void BaseButton::_bind_methods() { } BaseButton::BaseButton() { - + toggle_mode=false; status.pressed=false; status.press_attempt=false; @@ -426,7 +426,7 @@ BaseButton::BaseButton() { set_focus_mode( FOCUS_ALL ); group=NULL; - + } BaseButton::~BaseButton() diff --git a/scene/gui/base_button.h b/scene/gui/base_button.h index 83c66326c5..9a5213d971 100644 --- a/scene/gui/base_button.h +++ b/scene/gui/base_button.h @@ -42,9 +42,9 @@ class BaseButton : public Control { OBJ_TYPE( BaseButton, Control ); bool toggle_mode; - + struct Status { - + bool pressed; bool hovering; bool press_attempt; @@ -55,15 +55,15 @@ class BaseButton : public Control { int pressing_button; } status; - + ButtonGroup *group; - + protected: - + virtual void pressed(); virtual void toggled(bool p_pressed); static void _bind_methods(); @@ -82,7 +82,7 @@ public: DrawMode get_draw_mode() const; /* Signals */ - + bool is_pressed() const; ///< return wether button is pressed (toggled in) bool is_pressing() const; ///< return wether button is pressed (toggled in) bool is_hovered() const; @@ -90,7 +90,7 @@ public: void set_pressed(bool p_pressed); ///only works in toggle mode void set_toggle_mode(bool p_on); bool is_toggle_mode() const; - + void set_disabled(bool p_disabled); bool is_disabled() const; @@ -98,7 +98,7 @@ public: bool get_click_on_press() const; - BaseButton(); + BaseButton(); ~BaseButton(); }; diff --git a/scene/gui/button.cpp b/scene/gui/button.cpp index b9ce46d738..0f3f762ba1 100644 --- a/scene/gui/button.cpp +++ b/scene/gui/button.cpp @@ -45,7 +45,7 @@ Size2 Button::get_minimum_size() const { _icon=icon; if (!_icon.is_null()) { - + minsize.height=MAX( minsize.height, _icon->get_height() ); minsize.width+=_icon->get_width(); if (text!="") @@ -53,48 +53,48 @@ Size2 Button::get_minimum_size() const { } return get_stylebox("normal" )->get_minimum_size() + minsize; - + } void Button::_notification(int p_what) { - + if (p_what==NOTIFICATION_DRAW) { - + RID ci = get_canvas_item(); Size2 size=get_size(); Color color; //print_line(get_text()+": "+itos(is_flat())+" hover "+itos(get_draw_mode())); - + switch( get_draw_mode() ) { - + case DRAW_NORMAL: { - + if (!flat) get_stylebox("normal" )->draw( ci, Rect2(Point2(0,0), size) ); - color=get_color("font_color"); + color=get_color("font_color"); } break; case DRAW_PRESSED: { - + get_stylebox("pressed" )->draw( ci, Rect2(Point2(0,0), size) ); if (has_color("font_color_pressed")) color=get_color("font_color_pressed"); else color=get_color("font_color"); - + } break; case DRAW_HOVER: { - + get_stylebox("hover" )->draw( ci, Rect2(Point2(0,0), size) ); color=get_color("font_color_hover"); - + } break; case DRAW_DISABLED: { get_stylebox("disabled" )->draw( ci, Rect2(Point2(0,0), size) ); color=get_color("font_color_disabled"); - + } break; } @@ -139,12 +139,12 @@ void Button::_notification(int p_what) { if (!_icon.is_null()) { int valign = size.height-style->get_minimum_size().y; - + _icon->draw(ci,style->get_offset()+Point2(0, Math::floor( (valign-_icon->get_height())/2.0 ) ),is_disabled()?Color(1,1,1,0.4):Color(1,1,1) ); } - + } } @@ -236,7 +236,7 @@ void Button::_bind_methods() { } Button::Button(const String &p_text) { - + flat=false; clip_text=false; set_stop_mouse(true); diff --git a/scene/gui/button.h b/scene/gui/button.h index bd244f5087..8a17a164a0 100644 --- a/scene/gui/button.h +++ b/scene/gui/button.h @@ -34,7 +34,7 @@ @author Juan Linietsky <reduzio@gmail.com> */ class Button : public BaseButton { - + OBJ_TYPE( Button, BaseButton ); public: @@ -49,25 +49,25 @@ private: bool flat; String text; - Ref<Texture> icon; + Ref<Texture> icon; bool clip_text; TextAlign align; - -protected: + +protected: virtual Size2 get_minimum_size() const; void _notification(int p_what); - static void _bind_methods(); + static void _bind_methods(); public: -// +// void set_text(const String& p_text); String get_text() const; - + void set_icon(const Ref<Texture>& p_icon); Ref<Texture> get_icon() const; - + void set_flat(bool p_flat); bool is_flat() const; diff --git a/scene/gui/button_array.cpp b/scene/gui/button_array.cpp index 9e3476899f..de77b83403 100644 --- a/scene/gui/button_array.cpp +++ b/scene/gui/button_array.cpp @@ -171,9 +171,9 @@ void ButtonArray::_notification(int p_what) { case NOTIFICATION_READY:{ MethodInfo mi; mi.name="mouse_sub_enter"; - + add_user_signal(mi); - + }break; case NOTIFICATION_DRAW: { diff --git a/scene/gui/button_array.h b/scene/gui/button_array.h index 39661eaabd..c4b9b0c9e3 100644 --- a/scene/gui/button_array.h +++ b/scene/gui/button_array.h @@ -69,7 +69,7 @@ protected: void _notification(int p_what); static void _bind_methods(); - + public: void _input_event(const InputEvent& p_event); diff --git a/scene/gui/button_group.h b/scene/gui/button_group.h index 38c61991b7..4afba22228 100644 --- a/scene/gui/button_group.h +++ b/scene/gui/button_group.h @@ -55,7 +55,7 @@ friend class BaseButton; public: void get_button_list(List<BaseButton*> *p_buttons) const; - BaseButton *get_pressed_button() const; + BaseButton *get_pressed_button() const; BaseButton *get_focused_button() const; void set_pressed_button(BaseButton *p_button); int get_pressed_button_index() const; diff --git a/scene/gui/check_button.cpp b/scene/gui/check_button.cpp index ecaea251a5..f8c0c6b208 100644 --- a/scene/gui/check_button.cpp +++ b/scene/gui/check_button.cpp @@ -33,9 +33,9 @@ void CheckButton::_notification(int p_what) { - + if (p_what==NOTIFICATION_DRAW) { - + RID ci = get_canvas_item(); Ref<Texture> on=Control::get_icon("on"); @@ -50,17 +50,17 @@ void CheckButton::_notification(int p_what) { else off->draw(ci,ofs); - + } } CheckButton::CheckButton() { - + set_toggle_mode(true); set_text_align(ALIGN_LEFT); - + } diff --git a/scene/gui/check_button.h b/scene/gui/check_button.h index 022ade2193..a1ed4c1896 100644 --- a/scene/gui/check_button.h +++ b/scene/gui/check_button.h @@ -35,18 +35,18 @@ @author Juan Linietsky <reduzio@gmail.com> */ class CheckButton : public Button { - + OBJ_TYPE( CheckButton, Button ); - - -protected: + + +protected: void _notification(int p_what); public: - - CheckButton(); + + CheckButton(); ~CheckButton(); - + }; #endif diff --git a/scene/gui/color_picker.cpp b/scene/gui/color_picker.cpp index f1b910d23f..bd24b43761 100644 --- a/scene/gui/color_picker.cpp +++ b/scene/gui/color_picker.cpp @@ -246,7 +246,7 @@ void ColorPicker::set_raw_mode(bool p_enabled) { raw_mode_enabled=p_enabled; if (btn_mode->is_pressed()!=p_enabled) btn_mode->set_pressed(p_enabled); - + if (!is_inside_tree()) return; @@ -322,7 +322,7 @@ void ColorPicker::_w_input(const InputEvent &ev) { if (bev.pressed) { changing_color = true; h=1-((float)bev.y)/256.0; - + } else { changing_color = false; } @@ -361,7 +361,10 @@ void ColorPicker::_preset_input(const InputEvent &ev) { emit_signal("color_changed", color); } else if (ev.type == InputEvent::MOUSE_MOTION) { const InputEventMouse &mev = ev.mouse_motion; - int index = mev.x/(preset->get_size().x/presets.size()); + int index = mev.x * presets.size(); + if( preset->get_size().x != 0 ) { + index /= preset->get_size().x; + } if (index<0 || index >= presets.size()) return; preset->set_tooltip("Color: #"+presets[index].to_html(presets[index].a<1)+"\n" @@ -502,7 +505,7 @@ ColorPicker::ColorPicker() : args.push_back(1); args.push_back(c); c->connect("draw",this,"_hsv_draw",args); - + hb_edit->add_child(uv_edit); hb_edit->add_child(memnew( VSeparator )); hb_edit->add_child(w_edit); @@ -543,7 +546,7 @@ ColorPicker::ColorPicker() : } HBoxContainer *hhb = memnew( HBoxContainer ); - + btn_mode = memnew( CheckButton ); btn_mode->set_text("RAW Mode"); btn_mode->connect("toggled", this, "set_raw_mode"); @@ -570,7 +573,7 @@ ColorPicker::ColorPicker() : uv_material->set_shader(s_uv); w_material.instance(); - + Ref<Shader> s_w = get_shader("w_editor"); w_material->set_shader(s_w); @@ -684,4 +687,3 @@ ColorPickerButton::ColorPickerButton() { picker->connect("color_changed",this,"_color_changed"); add_child(popup); } - diff --git a/scene/gui/color_ramp_edit.cpp b/scene/gui/color_ramp_edit.cpp index 14a48fe3d3..2ab004e04b 100644 --- a/scene/gui/color_ramp_edit.cpp +++ b/scene/gui/color_ramp_edit.cpp @@ -185,7 +185,7 @@ void ColorRampEdit::_input_event(const InputEvent& p_event) { int x = p_event.mouse_motion.x; float newofs = CLAMP(x/float(total_w),0,1); - + //Snap to nearest point if holding shift if (p_event.key.mod.shift) { float snap_treshhold = 0.03; diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp index af3b37bec2..d7befd6e11 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -39,6 +39,9 @@ #include "scene/scene_string_names.h" #include "scene/gui/panel.h" #include "scene/gui/label.h" +#ifdef TOOLS_ENABLED +#include "tools/editor/editor_settings.h" +#endif #include <stdio.h> @@ -226,9 +229,9 @@ bool Control::_get(const StringName& p_name,Variant &r_ret) const { return false; - + return true; - + } void Control::_get_property_list( List<PropertyInfo> *p_list) const { @@ -326,7 +329,7 @@ Control *Control::get_parent_control() const { void Control::_resize(const Size2& p_size) { - + _size_changed(); } @@ -626,7 +629,7 @@ void Control::set_drag_preview(Control *p_control) { } - + bool Control::is_window_modal_on_top() const { @@ -640,7 +643,7 @@ bool Control::is_window_modal_on_top() const { Size2 Control::get_minimum_size() const { - + ScriptInstance *si = const_cast<Control*>(this)->get_script_instance(); if (si) { @@ -654,7 +657,7 @@ Size2 Control::get_minimum_size() const { Ref<Texture> Control::get_icon(const StringName& p_name,const StringName& p_type) const { - + if (p_type==StringName()) { const Ref<Texture>* tex = data.icon_override.getptr(p_name); @@ -714,7 +717,7 @@ Ref<Shader> Control::get_shader(const StringName& p_name,const StringName& p_typ } Ref<StyleBox> Control::get_stylebox(const StringName& p_name,const StringName& p_type) const { - + if (p_type==StringName()) { const Ref<StyleBox>* style = data.style_override.getptr(p_name); if (style) @@ -828,12 +831,12 @@ int Control::get_constant(const StringName& p_name,const StringName& p_type) con return Theme::get_default()->get_constant( p_name, type ); - + } bool Control::has_icon(const StringName& p_name,const StringName& p_type) const { - + if (p_type==StringName()) { const Ref<Texture>* tex = data.icon_override.getptr(p_name); if (tex) @@ -859,7 +862,7 @@ bool Control::has_icon(const StringName& p_name,const StringName& p_type) const } return Theme::get_default()->has_icon( p_name, type ); - + } bool Control::has_shader(const StringName &p_name, const StringName &p_type) const @@ -889,10 +892,10 @@ bool Control::has_shader(const StringName &p_name, const StringName &p_type) con } return Theme::get_default()->has_shader( p_name, type ); - + } bool Control::has_stylebox(const StringName& p_name,const StringName& p_type) const { - + if (p_type==StringName()) { const Ref<StyleBox>* style = data.style_override.getptr(p_name); @@ -922,7 +925,7 @@ bool Control::has_stylebox(const StringName& p_name,const StringName& p_type) co } bool Control::has_font(const StringName& p_name,const StringName& p_type) const { - + if (p_type==StringName()) { const Ref<Font>* font = data.font_override.getptr(p_name); if (font) @@ -952,7 +955,7 @@ bool Control::has_font(const StringName& p_name,const StringName& p_type) const } bool Control::has_color(const StringName& p_name,const StringName& p_type) const { - + if (p_type==StringName()) { const Color* color = data.color_override.getptr(p_name); if (color) @@ -1024,7 +1027,7 @@ Size2 Control::get_parent_area_size() const { } else { parent_size=get_viewport()->get_visible_rect().size; - } + } return parent_size; } @@ -1083,11 +1086,11 @@ void Control::_size_changed() { } float Control::_get_parent_range(int p_idx) const { - + if (!is_inside_tree()) { - + return 1.0; - + } if (data.parent_canvas_item) { return data.parent_canvas_item->get_item_rect().size[p_idx&1]; @@ -1100,21 +1103,21 @@ float Control::_get_parent_range(int p_idx) const { float Control::_get_range(int p_idx) const { - + p_idx&=1; float parent_range = _get_parent_range( p_idx ); float from = _a2s( data.margin[p_idx], data.anchor[p_idx], parent_range ); float to = _a2s( data.margin[p_idx+2], data.anchor[p_idx+2], parent_range ); - + return to-from; } float Control::_s2a(float p_val, AnchorType p_anchor,float p_range) const { - + switch(p_anchor) { - - case ANCHOR_BEGIN: { + + case ANCHOR_BEGIN: { return p_val; } break; case ANCHOR_END: { @@ -1122,21 +1125,21 @@ float Control::_s2a(float p_val, AnchorType p_anchor,float p_range) const { } break; case ANCHOR_RATIO: { return p_val/p_range; - } break; + } break; case ANCHOR_CENTER: { return (p_range/2)-p_val; } break; - } - + } + return 0; } float Control::_a2s(float p_val, AnchorType p_anchor,float p_range) const { - + switch(p_anchor) { - - case ANCHOR_BEGIN: { + + case ANCHOR_BEGIN: { return Math::floor(p_val); } break; case ANCHOR_END: { @@ -1144,7 +1147,7 @@ float Control::_a2s(float p_val, AnchorType p_anchor,float p_range) const { } break; case ANCHOR_RATIO: { return Math::floor(p_range*p_val); - } break; + } break; case ANCHOR_CENTER: { return Math::floor((p_range/2)-p_val); } break; @@ -1153,20 +1156,36 @@ float Control::_a2s(float p_val, AnchorType p_anchor,float p_range) const { } -void Control::set_anchor(Margin p_margin,AnchorType p_anchor) { - +void Control::set_anchor(Margin p_margin,AnchorType p_anchor, bool p_keep_margin) { + if (!is_inside_tree()) { - - data.anchor[p_margin]=p_anchor; - } else { + + data.anchor[p_margin] = p_anchor; + } else if(!p_keep_margin) { float pr = _get_parent_range(p_margin); float s = _a2s( data.margin[p_margin], data.anchor[p_margin], pr ); - data.anchor[p_margin]=p_anchor; + data.anchor[p_margin] = p_anchor; data.margin[p_margin] = _s2a( s, p_anchor, pr ); + } else { + data.anchor[p_margin] = p_anchor; + _size_changed(); } _change_notify(); } +void Control::_set_anchor(Margin p_margin,AnchorType p_anchor) { + #ifdef TOOLS_ENABLED + SceneTree *st=OS::get_singleton()->get_main_loop()->cast_to<SceneTree>(); + if (st && st->is_editor_hint()) { + set_anchor(p_margin, p_anchor, EDITOR_DEF("2d_editor/keep_margins_when_changing_anchors", false)); + } else { + set_anchor(p_margin, p_anchor); + } + #else + set_anchor(p_margin, p_anchor); + #endif +} + void Control::set_anchor_and_margin(Margin p_margin,AnchorType p_anchor, float p_pos) { set_anchor(p_margin,p_anchor); @@ -1175,8 +1194,8 @@ void Control::set_anchor_and_margin(Margin p_margin,AnchorType p_anchor, float p Control::AnchorType Control::get_anchor(Margin p_margin) const { - - return data.anchor[p_margin]; + + return data.anchor[p_margin]; } @@ -1204,40 +1223,40 @@ void Control::set_margin(Margin p_margin,float p_value) { } void Control::set_begin(const Size2& p_point) { - + data.margin[0]=p_point.x; data.margin[1]=p_point.y; _size_changed(); } void Control::set_end(const Size2& p_point) { - + data.margin[2]=p_point.x; data.margin[3]=p_point.y; _size_changed(); } float Control::get_margin(Margin p_margin) const { - + return data.margin[p_margin]; } Size2 Control::get_begin() const { - + return Size2( data.margin[0], data.margin[1] ); } Size2 Control::get_end() const { - + return Size2( data.margin[2], data.margin[3] ); } Point2 Control::get_global_pos() const { - + return get_global_transform().get_origin(); } void Control::set_global_pos(const Point2& p_point) { - + Matrix32 inv; if (data.parent_canvas_item) { @@ -1264,10 +1283,10 @@ void Control::set_pos(const Size2& p_point) { Size2 size = Size2(MAX( min.width, ret.width),MAX( min.height, ret.height)); float w=size.x; float h=size.y; - + x=p_point.x; y=p_point.y; - + data.margin[0] = _s2a( x, data.anchor[0], pw ); data.margin[1] = _s2a( y, data.anchor[1], ph ); data.margin[2] = _s2a( x+w, data.anchor[2], pw ); @@ -1277,26 +1296,26 @@ void Control::set_pos(const Size2& p_point) { } void Control::set_size(const Size2& p_size) { - + Size2 new_size=p_size; Size2 min=get_combined_minimum_size(); if (new_size.x<min.x) new_size.x=min.x; if (new_size.y<min.y) new_size.y=min.y; - + float pw = _get_parent_range(0); float ph = _get_parent_range(1); - + float x = _a2s( data.margin[0], data.anchor[0], pw ); float y = _a2s( data.margin[1], data.anchor[1], ph ); - + float w=new_size.width; float h=new_size.height; - + data.margin[2] = _s2a( x+w, data.anchor[2], pw ); data.margin[3] = _s2a( y+h, data.anchor[3], ph ); - + _size_changed(); } @@ -1308,13 +1327,13 @@ Size2 Control::get_pos() const { } Size2 Control::get_size() const { - + return data.size_cache; } Rect2 Control::get_global_rect() const { - - return Rect2( get_global_pos(), get_size() ); + + return Rect2( get_global_pos(), get_size() ); } Rect2 Control::get_window_rect() const { @@ -1326,7 +1345,7 @@ Rect2 Control::get_window_rect() const { Rect2 Control::get_rect() const { - + return Rect2(get_pos(),get_size()); } @@ -1336,7 +1355,7 @@ Rect2 Control::get_item_rect() const { } void Control::set_area_as_parent_rect(int p_margin) { - + data.anchor[MARGIN_LEFT]=ANCHOR_BEGIN; data.anchor[MARGIN_TOP]=ANCHOR_BEGIN; data.anchor[MARGIN_RIGHT]=ANCHOR_END; @@ -1345,7 +1364,7 @@ void Control::set_area_as_parent_rect(int p_margin) { data.margin[i]=p_margin; _size_changed(); - + } void Control::add_icon_override(const StringName& p_name, const Ref<Texture>& p_icon) { @@ -1354,7 +1373,7 @@ void Control::add_icon_override(const StringName& p_name, const Ref<Texture>& p_ data.icon_override[p_name]=p_icon; notification(NOTIFICATION_THEME_CHANGED); update(); - + } void Control::add_shader_override(const StringName &p_name, const Ref<Shader> &p_shader) { @@ -1406,7 +1425,7 @@ static Control *_next_control(Control *p_from) { if (p_from->is_set_as_toplevel()) return NULL; // can't go above - Control *parent = p_from->get_parent()?p_from->get_parent()->cast_to<Control>():NULL; + Control *parent = p_from->get_parent()?p_from->get_parent()->cast_to<Control>():NULL; if (!parent) { @@ -1432,10 +1451,10 @@ static Control *_next_control(Control *p_from) { Control *Control::find_next_valid_focus() const { Control *from = const_cast<Control*>(this); - + while(true) { - - + + // find next child Control *next_child=NULL; @@ -1494,7 +1513,7 @@ Control *Control::find_next_valid_focus() const { from = next_child; } - + return NULL; @@ -1610,7 +1629,7 @@ void Control::grab_focus() { get_viewport()->_gui_control_grab_focus(this); -} +} void Control::release_focus() { @@ -1630,7 +1649,7 @@ bool Control::is_toplevel_control() const { } void Control::show_modal(bool p_exclusive) { - + ERR_FAIL_COND(!is_inside_tree()); ERR_FAIL_COND(!data.SI); @@ -1642,7 +1661,7 @@ void Control::show_modal(bool p_exclusive) { raise(); data.modal_exclusive=p_exclusive; data.MI=get_viewport()->_gui_show_modal(this); - + } void Control::_modal_set_prev_focus_owner(ObjectID p_prev) { @@ -2090,7 +2109,8 @@ void Control::_bind_methods() { ObjectTypeDB::bind_method(_MD("accept_event"),&Control::accept_event); ObjectTypeDB::bind_method(_MD("get_minimum_size"),&Control::get_minimum_size); ObjectTypeDB::bind_method(_MD("get_combined_minimum_size"),&Control::get_combined_minimum_size); - ObjectTypeDB::bind_method(_MD("set_anchor","margin","anchor_mode"),&Control::set_anchor); + ObjectTypeDB::bind_method(_MD("set_anchor","margin","anchor_mode","keep_margin"),&Control::set_anchor,DEFVAL(false)); + ObjectTypeDB::bind_method(_MD("_set_anchor","margin","anchor_mode"),&Control::_set_anchor); ObjectTypeDB::bind_method(_MD("get_anchor","margin"),&Control::get_anchor); ObjectTypeDB::bind_method(_MD("set_margin","margin","offset"),&Control::set_margin); ObjectTypeDB::bind_method(_MD("set_anchor_and_margin","margin","anchor_mode","offset"),&Control::set_anchor_and_margin); @@ -2135,7 +2155,7 @@ void Control::_bind_methods() { ObjectTypeDB::bind_method(_MD("set_theme","theme:Theme"),&Control::set_theme); ObjectTypeDB::bind_method(_MD("get_theme:Theme"),&Control::get_theme); - + ObjectTypeDB::bind_method(_MD("add_icon_override","name","texture:Texture"),&Control::add_icon_override); ObjectTypeDB::bind_method(_MD("add_shader_override","name","shader:Shader"),&Control::add_shader_override); ObjectTypeDB::bind_method(_MD("add_style_override","name","stylebox:StyleBox"),&Control::add_style_override); @@ -2150,7 +2170,7 @@ void Control::_bind_methods() { ObjectTypeDB::bind_method(_MD("get_constant","name","type"),&Control::get_constant,DEFVAL("")); - ObjectTypeDB::bind_method(_MD("get_parent_control:Control"),&Control::get_parent_control); + ObjectTypeDB::bind_method(_MD("get_parent_control:Control"),&Control::get_parent_control); ObjectTypeDB::bind_method(_MD("set_tooltip","tooltip"),&Control::set_tooltip); ObjectTypeDB::bind_method(_MD("get_tooltip","atpos"),&Control::get_tooltip,DEFVAL(Point2())); @@ -2184,10 +2204,10 @@ void Control::_bind_methods() { BIND_VMETHOD(MethodInfo(Variant::BOOL,"can_drop_data",PropertyInfo(Variant::VECTOR2,"pos"),PropertyInfo(Variant::NIL,"data"))); BIND_VMETHOD(MethodInfo("drop_data",PropertyInfo(Variant::VECTOR2,"pos"),PropertyInfo(Variant::NIL,"data"))); - ADD_PROPERTYINZ( PropertyInfo(Variant::INT,"anchor/left", PROPERTY_HINT_ENUM, "Begin,End,Ratio,Center"), _SCS("set_anchor"),_SCS("get_anchor"), MARGIN_LEFT ); - ADD_PROPERTYINZ( PropertyInfo(Variant::INT,"anchor/top", PROPERTY_HINT_ENUM, "Begin,End,Ratio,Center"), _SCS("set_anchor"),_SCS("get_anchor"), MARGIN_TOP ); - ADD_PROPERTYINZ( PropertyInfo(Variant::INT,"anchor/right", PROPERTY_HINT_ENUM, "Begin,End,Ratio,Center"), _SCS("set_anchor"),_SCS("get_anchor"), MARGIN_RIGHT ); - ADD_PROPERTYINZ( PropertyInfo(Variant::INT,"anchor/bottom", PROPERTY_HINT_ENUM, "Begin,End,Ratio,Center"), _SCS("set_anchor"),_SCS("get_anchor"), MARGIN_BOTTOM ); + ADD_PROPERTYINZ( PropertyInfo(Variant::INT,"anchor/left", PROPERTY_HINT_ENUM, "Begin,End,Ratio,Center"), _SCS("_set_anchor"),_SCS("get_anchor"), MARGIN_LEFT ); + ADD_PROPERTYINZ( PropertyInfo(Variant::INT,"anchor/top", PROPERTY_HINT_ENUM, "Begin,End,Ratio,Center"), _SCS("_set_anchor"),_SCS("get_anchor"), MARGIN_TOP ); + ADD_PROPERTYINZ( PropertyInfo(Variant::INT,"anchor/right", PROPERTY_HINT_ENUM, "Begin,End,Ratio,Center"), _SCS("_set_anchor"),_SCS("get_anchor"), MARGIN_RIGHT ); + ADD_PROPERTYINZ( PropertyInfo(Variant::INT,"anchor/bottom", PROPERTY_HINT_ENUM, "Begin,End,Ratio,Center"), _SCS("_set_anchor"),_SCS("get_anchor"), MARGIN_BOTTOM ); ADD_PROPERTYINZ( PropertyInfo(Variant::INT,"margin/left", PROPERTY_HINT_RANGE, "-4096,4096"), _SCS("set_margin"),_SCS("get_margin"), MARGIN_LEFT ); ADD_PROPERTYINZ( PropertyInfo(Variant::INT,"margin/top", PROPERTY_HINT_RANGE, "-4096,4096"), _SCS("set_margin"),_SCS("get_margin"), MARGIN_TOP ); @@ -2214,7 +2234,7 @@ void Control::_bind_methods() { BIND_CONSTANT( ANCHOR_BEGIN ); BIND_CONSTANT( ANCHOR_END ); - BIND_CONSTANT( ANCHOR_RATIO ); + BIND_CONSTANT( ANCHOR_RATIO ); BIND_CONSTANT( ANCHOR_CENTER ); BIND_CONSTANT( FOCUS_NONE ); BIND_CONSTANT( FOCUS_CLICK ); @@ -2261,11 +2281,11 @@ void Control::_bind_methods() { ADD_SIGNAL( MethodInfo("minimum_size_changed") ); ADD_SIGNAL( MethodInfo("modal_close") ); - + } Control::Control() { - - data.parent=NULL; + + data.parent=NULL; data.ignore_mouse=false; data.stop_mouse=true; @@ -2297,12 +2317,10 @@ Control::Control() { - + } Control::~Control() { } - - diff --git a/scene/gui/control.h b/scene/gui/control.h index 74d40b7579..1e2db7a575 100644 --- a/scene/gui/control.h +++ b/scene/gui/control.h @@ -45,19 +45,19 @@ class Label; class Panel; class Control : public CanvasItem { - + OBJ_TYPE( Control, CanvasItem ); OBJ_CATEGORY("GUI Nodes"); public: - - enum AnchorType { + + enum AnchorType { ANCHOR_BEGIN, ANCHOR_END, ANCHOR_RATIO, ANCHOR_CENTER, }; - + enum FocusMode { FOCUS_NONE, FOCUS_CLICK, @@ -106,7 +106,7 @@ private: }; struct Data { - + Point2 pos_cache; Size2 size_cache; @@ -132,7 +132,7 @@ private: bool modal; bool modal_exclusive; Ref<Theme> theme; - Control *theme_owner; + Control *theme_owner; String tooltip; CursorShape default_cursor; @@ -153,7 +153,7 @@ private: HashMap<StringName, Color, StringNameHasher > color_override; HashMap<StringName, int, StringNameHasher > constant_override; } data; - + // used internally Control* _find_control_at_pos(CanvasItem* p_node,const Point2& p_pos,const Matrix32& p_xform,Matrix32& r_inv_xform); @@ -162,6 +162,8 @@ private: Control *_get_focus_neighbour(Margin p_margin,int p_count=0); + void _set_anchor(Margin p_margin,AnchorType p_anchor); + float _get_parent_range(int p_idx) const; float _get_range(int p_idx) const; float _s2a(float p_val, AnchorType p_anchor,float p_range) const; @@ -184,7 +186,7 @@ friend class Viewport; void _modal_stack_remove(); void _modal_set_prev_focus_owner(ObjectID p_prev); -protected: +protected: //virtual void _window_input_event(InputEvent p_event); @@ -194,15 +196,15 @@ protected: void _notification(int p_notification); - - static void _bind_methods(); - - //bind helpers - + + static void _bind_methods(); + + //bind helpers + public: enum { - + /* NOTIFICATION_DRAW=30, NOTIFICATION_VISIBILITY_CHANGED=38*/ NOTIFICATION_RESIZED=40, @@ -241,29 +243,29 @@ public: Control *get_parent_control() const; - + /* POSITIONING */ - - void set_anchor(Margin p_margin,AnchorType p_anchor); + + void set_anchor(Margin p_margin,AnchorType p_anchor, bool p_keep_margin=false); void set_anchor_and_margin(Margin p_margin,AnchorType p_anchor, float p_pos); - + AnchorType get_anchor(Margin p_margin) const; - + void set_margin(Margin p_margin,float p_value); - + void set_begin(const Point2& p_point); // helper void set_end(const Point2& p_point); // helper - - - + + + float get_margin(Margin p_margin) const; Point2 get_begin() const; Point2 get_end() const; - + void set_pos(const Point2& p_point); void set_size(const Size2& p_size); void set_global_pos(const Point2& p_point); - + Point2 get_pos() const; Point2 get_global_pos() const; Size2 get_size() const; @@ -277,9 +279,9 @@ public: void set_scale(const Vector2& p_scale); Vector2 get_scale() const; - + void set_area_as_parent_rect(int p_margin=0); - + void show_modal(bool p_exclusive=false); void set_theme(const Ref<Theme>& p_theme); @@ -297,7 +299,7 @@ public: void minimum_size_changed(); /* FOCUS */ - + void set_focus_mode(FocusMode p_focus_mode); FocusMode get_focus_mode() const; bool has_focus() const; @@ -319,7 +321,7 @@ public: bool is_stopping_mouse() const; /* SKINNING */ - + void add_icon_override(const StringName& p_name, const Ref<Texture>& p_icon); void add_shader_override(const StringName& p_name, const Ref<Shader>& p_shader); void add_style_override(const StringName& p_name, const Ref<StyleBox>& p_style); @@ -367,9 +369,9 @@ public: Control *get_root_parent_control() const; - Control(); + Control(); ~Control(); - + }; VARIANT_ENUM_CAST(Control::AnchorType); diff --git a/scene/gui/dialogs.cpp b/scene/gui/dialogs.cpp index 9f08b6f845..d00dacd256 100644 --- a/scene/gui/dialogs.cpp +++ b/scene/gui/dialogs.cpp @@ -188,7 +188,7 @@ void AcceptDialog::_post_popup() { } void AcceptDialog::_notification(int p_what) { - + if (p_what==NOTIFICATION_MODAL_CLOSE) { cancel_pressed(); @@ -197,7 +197,7 @@ void AcceptDialog::_notification(int p_what) { - } + } } void AcceptDialog::_builtin_text_entered(const String& p_text) { @@ -206,7 +206,7 @@ void AcceptDialog::_builtin_text_entered(const String& p_text) { } void AcceptDialog::_ok_pressed() { - + if (hide_on_ok) hide(); ok_pressed(); @@ -214,7 +214,7 @@ void AcceptDialog::_ok_pressed() { } void AcceptDialog::_close_pressed() { - + cancel_pressed(); } @@ -223,7 +223,7 @@ String AcceptDialog::get_text() const { return label->get_text(); } void AcceptDialog::set_text(String p_text) { - + label->set_text(p_text); } @@ -291,7 +291,7 @@ Button* AcceptDialog::add_cancel(const String &p_cancel) { } void AcceptDialog::_bind_methods() { - + ObjectTypeDB::bind_method(_MD("_ok"),&AcceptDialog::_ok_pressed); ObjectTypeDB::bind_method(_MD("get_ok"),&AcceptDialog::get_ok); ObjectTypeDB::bind_method(_MD("get_label"),&AcceptDialog::get_label); @@ -321,11 +321,11 @@ void AcceptDialog::set_swap_ok_cancel(bool p_swap) { } AcceptDialog::AcceptDialog() { - + int margin = get_constant("margin","Dialogs"); int button_margin = get_constant("button_margin","Dialogs"); - - + + label = memnew( Label ); label->set_anchor(MARGIN_RIGHT,ANCHOR_END); label->set_anchor(MARGIN_BOTTOM,ANCHOR_END); @@ -345,8 +345,8 @@ AcceptDialog::AcceptDialog() { hbc->add_child(ok); hbc->add_spacer(); //add_child(ok); - - + + ok->connect("pressed", this,"_ok"); set_as_toplevel(true); diff --git a/scene/gui/dialogs.h b/scene/gui/dialogs.h index 7c06ded866..f256c49aee 100644 --- a/scene/gui/dialogs.h +++ b/scene/gui/dialogs.h @@ -142,7 +142,7 @@ public: class ConfirmationDialog : public AcceptDialog { - + OBJ_TYPE(ConfirmationDialog,AcceptDialog); Button *cancel; protected: diff --git a/scene/gui/file_dialog.cpp b/scene/gui/file_dialog.cpp index 56b9260837..64fdfdfefe 100644 --- a/scene/gui/file_dialog.cpp +++ b/scene/gui/file_dialog.cpp @@ -51,7 +51,7 @@ void FileDialog::_notification(int p_what) { refresh->set_icon(get_icon("reload")); } - + if (p_what==NOTIFICATION_DRAW) { //RID ci = get_canvas_item(); @@ -117,13 +117,13 @@ Vector<String> FileDialog::get_selected_files() const { }; void FileDialog::update_dir() { - + dir->set_text(dir_access->get_current_dir()); } void FileDialog::_dir_entered(String p_dir) { - - + + dir_access->change_dir(p_dir); file->set_text(""); invalidate(); @@ -132,13 +132,13 @@ void FileDialog::_dir_entered(String p_dir) { void FileDialog::_file_entered(const String& p_file) { - _action_pressed(); + _action_pressed(); } void FileDialog::_save_confirm_pressed() { String f=dir_access->get_current_dir().plus_file(file->get_text()); emit_signal("file_selected",f); - hide(); + hide(); } void FileDialog::_post_popup() { @@ -158,7 +158,7 @@ void FileDialog::_post_popup() { } void FileDialog::_action_pressed() { - + if (mode==MODE_OPEN_FILES) { TreeItem *ti=tree->get_next_selected(NULL); @@ -180,13 +180,11 @@ void FileDialog::_action_pressed() { } String f=dir_access->get_current_dir().plus_file(file->get_text()); - - if (mode==MODE_OPEN_FILE && dir_access->file_exists(f)) { + + if ((mode==MODE_OPEN_ANY || mode==MODE_OPEN_FILE) && dir_access->file_exists(f)) { emit_signal("file_selected",f); hide(); - } - - if (mode==MODE_OPEN_DIR) { + }else if (mode==MODE_OPEN_ANY || mode==MODE_OPEN_DIR) { String path=dir_access->get_current_dir(); @@ -202,7 +200,7 @@ void FileDialog::_action_pressed() { } if (mode==MODE_SAVE_FILE) { - + bool valid=false; if (filter->get_selected()==filter->get_item_count()-1) { @@ -263,7 +261,7 @@ void FileDialog::_action_pressed() { confirm_save->set_text("File Exists, Overwrite?"); confirm_save->popup_centered(Size2(200,80)); } else { - + emit_signal("file_selected",f); hide(); @@ -279,51 +277,51 @@ void FileDialog::_cancel_pressed() { } void FileDialog::_tree_selected() { - + TreeItem *ti=tree->get_selected(); if (!ti) return; Dictionary d=ti->get_metadata(0); - + if (!d["dir"]) { - + file->set_text(d["name"]); } - + } void FileDialog::_tree_dc_selected() { - + TreeItem *ti=tree->get_selected(); if (!ti) return; - + Dictionary d=ti->get_metadata(0); if (d["dir"]) { - + dir_access->change_dir(d["name"]); - if (mode==MODE_OPEN_FILE || mode==MODE_OPEN_FILES || mode==MODE_OPEN_DIR) + if (mode==MODE_OPEN_FILE || mode==MODE_OPEN_FILES || mode==MODE_OPEN_DIR || mode==MODE_OPEN_ANY) file->set_text(""); call_deferred("_update_file_list"); call_deferred("_update_dir"); } else { - + _action_pressed(); } } void FileDialog::update_file_list() { - + tree->clear(); dir_access->list_dir_begin(); - + TreeItem *root = tree->create_item(); Ref<Texture> folder = get_icon("folder"); List<String> files; List<String> dirs; - + bool isdir; bool ishidden; bool show_hidden = show_hidden_files; @@ -340,12 +338,12 @@ void FileDialog::update_file_list() { dirs.push_back(item); } } - + dirs.sort_custom<NoCaseComparator>(); files.sort_custom<NoCaseComparator>(); - + while(!dirs.empty()) { - + if (dirs.front()->get()!=".") { TreeItem *ti=tree->create_item(root); ti->set_text(0,dirs.front()->get()+"/"); @@ -356,23 +354,23 @@ void FileDialog::update_file_list() { ti->set_metadata(0,d); } dirs.pop_front(); - + } - + dirs.clear(); - + List<String> patterns; // build filter if (filter->get_selected()==filter->get_item_count()-1) { - - // match all + + // match all } else if (filters.size()>1 && filter->get_selected()==0) { // match all filters for (int i=0;i<filters.size();i++) { - + String f=filters[i].get_slice(";",0); for (int j=0;j<f.get_slice_count(",");j++) { - + patterns.push_back(f.get_slice(",",j).strip_edges()); } } @@ -380,34 +378,34 @@ void FileDialog::update_file_list() { int idx=filter->get_selected(); if (filters.size()>1) idx--; - + if (idx>=0 && idx<filters.size()) { - + String f=filters[idx].get_slice(";",0); for (int j=0;j<f.get_slice_count(",");j++) { - + patterns.push_back(f.get_slice(",",j).strip_edges()); - } + } } } String base_dir = dir_access->get_current_dir(); - - + + while(!files.empty()) { - + bool match=patterns.empty(); - + for(List<String>::Element *E=patterns.front();E;E=E->next()) { - + if (files.front()->get().matchn(E->get())) { - + match=true; break; } } - + if (match) { TreeItem *ti=tree->create_item(root); ti->set_text(0,files.front()->get()); @@ -426,35 +424,35 @@ void FileDialog::update_file_list() { d["name"]=files.front()->get(); d["dir"]=false; ti->set_metadata(0,d); - + if (file->get_text()==files.front()->get()) ti->select(0); } - + files.pop_front(); } - + if (tree->get_root() && tree->get_root()->get_children()) tree->get_root()->get_children()->select(0); - + files.clear(); - + } void FileDialog::_filter_selected(int) { - + update_file_list(); } void FileDialog::update_filters() { - + filter->clear(); - + if (filters.size()>1) { String all_filters; const int max_filters=5; - + for(int i=0;i<MIN( max_filters, filters.size()) ;i++) { String flt=filters[i].get_slice(";",0); if (i>0) @@ -464,11 +462,11 @@ void FileDialog::update_filters() { if (max_filters<filters.size()) all_filters+=", ..."; - + filter->add_item("All Recognized ( "+all_filters+" )"); } for(int i=0;i<filters.size();i++) { - + String flt=filters[i].get_slice(";",0).strip_edges(); String desc=filters[i].get_slice(";",1).strip_edges(); if (desc.length()) @@ -476,46 +474,46 @@ void FileDialog::update_filters() { else filter->add_item("( "+flt+" )"); } - + filter->add_item("All Files (*)"); - + } void FileDialog::clear_filters() { - + filters.clear(); update_filters(); invalidate(); } void FileDialog::add_filter(const String& p_filter) { - + filters.push_back(p_filter); update_filters(); invalidate(); - + } String FileDialog::get_current_dir() const { - - return dir->get_text(); + + return dir->get_text(); } String FileDialog::get_current_file() const { - + return file->get_text(); } String FileDialog::get_current_path() const { - + return dir->get_text().plus_file(file->get_text()); } void FileDialog::set_current_dir(const String& p_dir) { - + dir_access->change_dir(p_dir); update_dir(); invalidate(); - + } void FileDialog::set_current_file(const String& p_file) { - + file->set_text(p_file); update_dir(); invalidate(); @@ -525,18 +523,18 @@ void FileDialog::set_current_file(const String& p_file) { file->grab_focus(); } - + } void FileDialog::set_current_path(const String& p_path) { - + if (!p_path.size()) return; int pos=MAX( p_path.find_last("/"), p_path.find_last("\\") ); if (pos==-1) { - + set_current_file(p_path); } else { - + String dir=p_path.substr(0,pos); String file=p_path.substr(pos+1,p_path.length()); set_current_dir(dir); @@ -546,14 +544,15 @@ void FileDialog::set_current_path(const String& p_path) { void FileDialog::set_mode(Mode p_mode) { - + mode=p_mode; switch(mode) { - + case MODE_OPEN_FILE: get_ok()->set_text("Open"); set_title("Open a File"); makedir->hide(); break; case MODE_OPEN_FILES: get_ok()->set_text("Open"); set_title("Open File(s)"); makedir->hide(); break; - case MODE_SAVE_FILE: get_ok()->set_text("Save"); set_title("Save a File"); makedir->show(); break; case MODE_OPEN_DIR: get_ok()->set_text("Open"); set_title("Open a Directory"); makedir->show(); break; + case MODE_OPEN_ANY: get_ok()->set_text("Open"); set_title("Open a File or Directory"); makedir->show(); break; + case MODE_SAVE_FILE: get_ok()->set_text("Save"); set_title("Save a File"); makedir->show(); break; } if (mode==MODE_OPEN_FILES) { @@ -565,7 +564,7 @@ void FileDialog::set_mode(Mode p_mode) { } FileDialog::Mode FileDialog::get_mode() const { - + return mode; } @@ -655,7 +654,7 @@ void FileDialog::_update_drives() { drives->show(); for(int i=0;i<dir_access->get_drive_count();i++) { - String d = dir_access->get_drive(i); + String d = dir_access->get_drive(i); drives->add_item(dir_access->get_drive(i)); } @@ -668,7 +667,7 @@ bool FileDialog::default_show_hidden_files=false; void FileDialog::_bind_methods() { - + ObjectTypeDB::bind_method(_MD("_unhandled_input"),&FileDialog::_unhandled_input); ObjectTypeDB::bind_method(_MD("_tree_selected"),&FileDialog::_tree_selected); @@ -679,7 +678,7 @@ void FileDialog::_bind_methods() { ObjectTypeDB::bind_method(_MD("_cancel_pressed"),&FileDialog::_cancel_pressed); ObjectTypeDB::bind_method(_MD("_filter_selected"),&FileDialog::_filter_selected); ObjectTypeDB::bind_method(_MD("_save_confirm_pressed"),&FileDialog::_save_confirm_pressed); - + ObjectTypeDB::bind_method(_MD("clear_filters"),&FileDialog::clear_filters); ObjectTypeDB::bind_method(_MD("add_filter","filter"),&FileDialog::add_filter); ObjectTypeDB::bind_method(_MD("get_current_dir"),&FileDialog::get_current_dir); @@ -710,6 +709,8 @@ void FileDialog::_bind_methods() { BIND_CONSTANT( MODE_OPEN_FILE ); BIND_CONSTANT( MODE_OPEN_FILES ); BIND_CONSTANT( MODE_OPEN_DIR ); + BIND_CONSTANT( MODE_OPEN_ANY ); + BIND_CONSTANT( MODE_SAVE_FILE ); BIND_CONSTANT( ACCESS_RESOURCES ); @@ -742,7 +743,7 @@ FileDialog::FileDialog() { mode=MODE_SAVE_FILE; set_title("Save a File"); - + dir = memnew(LineEdit); HBoxContainer *pathhb = memnew( HBoxContainer ); pathhb->add_child(dir); @@ -760,17 +761,17 @@ FileDialog::FileDialog() { makedir->set_text("Create Folder"); makedir->connect("pressed",this,"_make_dir"); pathhb->add_child(makedir); - + vbc->add_margin_child("Path:",pathhb); - + tree = memnew(Tree); tree->set_hide_root(true); vbc->add_margin_child("Directories & Files:",tree,true); - + file = memnew(LineEdit); //add_child(file); vbc->add_margin_child("File:",file); - + filter = memnew( OptionButton ); //add_child(filter); @@ -781,7 +782,7 @@ FileDialog::FileDialog() { access=ACCESS_RESOURCES; _update_drives(); - + connect("confirmed", this,"_action_pressed"); //cancel->connect("pressed", this,"_cancel_pressed"); tree->connect("cell_selected", this,"_tree_selected",varray(),CONNECT_DEFERRED); @@ -790,12 +791,12 @@ FileDialog::FileDialog() { file->connect("text_entered", this,"_file_entered"); filter->connect("item_selected", this,"_filter_selected"); - + confirm_save = memnew( ConfirmationDialog ); confirm_save->set_as_toplevel(true); add_child(confirm_save); - + confirm_save->connect("confirmed", this,"_save_confirm_pressed"); makedialog = memnew( ConfirmationDialog ); @@ -828,12 +829,12 @@ FileDialog::FileDialog() { invalidated=true; if (register_func) register_func(this); - + } FileDialog::~FileDialog() { - + if (unregister_func) unregister_func(this); memdelete(dir_access); @@ -877,3 +878,4 @@ LineEditFileChooser::LineEditFileChooser() { dialog->connect("files_selected",this,"_chosen"); } + diff --git a/scene/gui/file_dialog.h b/scene/gui/file_dialog.h index b71a157fa7..1fcf8387ce 100644 --- a/scene/gui/file_dialog.h +++ b/scene/gui/file_dialog.h @@ -41,9 +41,9 @@ @author Juan Linietsky <reduzio@gmail.com> */ class FileDialog : public ConfirmationDialog { - + OBJ_TYPE( FileDialog, ConfirmationDialog ); - + public: enum Access { @@ -57,7 +57,8 @@ public: MODE_OPEN_FILE, MODE_OPEN_FILES, MODE_OPEN_DIR, - MODE_SAVE_FILE, + MODE_OPEN_ANY, + MODE_SAVE_FILE }; typedef Ref<Texture> (*GetIconFunc)(const String&); @@ -89,7 +90,7 @@ private: ConfirmationDialog *confirm_save; ToolButton *refresh; - + Vector<String> filters; @@ -97,13 +98,13 @@ private: bool show_hidden_files; bool invalidated; - + void update_dir(); void update_file_list(); void update_filters(); - + void _tree_selected(); - + void _select_drive(int p_idx); void _tree_dc_selected(); void _dir_entered(String p_dir); @@ -122,18 +123,18 @@ private: virtual void _post_popup(); protected: - + void _notification(int p_what); static void _bind_methods(); //bind helpers public: - + void clear_filters(); void add_filter(const String& p_filter); void set_enable_multiple_selection(bool p_enable); Vector<String> get_selected_files() const; - + String get_current_dir() const; String get_current_file() const; String get_current_path() const; @@ -156,8 +157,8 @@ public: static void set_default_show_hidden_files(bool p_show); void invalidate(); - - FileDialog(); + + FileDialog(); ~FileDialog(); }; diff --git a/scene/gui/graph_edit.cpp b/scene/gui/graph_edit.cpp index c9c9dbd1d2..9123194589 100644 --- a/scene/gui/graph_edit.cpp +++ b/scene/gui/graph_edit.cpp @@ -617,7 +617,7 @@ void GraphEdit::_input_event(const InputEvent& p_ev) { if (b.button_index==BUTTON_LEFT && b.pressed) { - GraphNode *gn; + GraphNode *gn = NULL; for(int i=get_child_count()-1;i>=0;i--) { gn=get_child(i)->cast_to<GraphNode>(); diff --git a/scene/gui/graph_edit.h b/scene/gui/graph_edit.h index a189c10046..8a7721b9b5 100644 --- a/scene/gui/graph_edit.h +++ b/scene/gui/graph_edit.h @@ -118,7 +118,7 @@ public: void set_right_disconnects(bool p_enable); bool is_right_disconnects_enabled() const; - + Vector2 get_scroll_ofs() const; diff --git a/scene/gui/item_list.cpp b/scene/gui/item_list.cpp index 2d2cabfc01..171dd94bfa 100644 --- a/scene/gui/item_list.cpp +++ b/scene/gui/item_list.cpp @@ -7,6 +7,7 @@ void ItemList::add_item(const String& p_item,const Ref<Texture>& p_texture,bool Item item; item.icon=p_texture; + item.icon_region=Rect2i(); item.text=p_item; item.selectable=p_selectable; item.selected=false; @@ -23,6 +24,7 @@ void ItemList::add_icon_item(const Ref<Texture>& p_item,bool p_selectable){ Item item; item.icon=p_item; + item.icon_region=Rect2i(); //item.text=p_item; item.selectable=p_selectable; item.selected=false; @@ -79,6 +81,7 @@ void ItemList::set_item_icon(int p_idx,const Ref<Texture>& p_icon){ } + Ref<Texture> ItemList::get_item_icon(int p_idx) const{ ERR_FAIL_INDEX_V(p_idx,items.size(),Ref<Texture>()); @@ -87,6 +90,22 @@ Ref<Texture> ItemList::get_item_icon(int p_idx) const{ } +void ItemList::set_item_icon_region(int p_idx,const Rect2& p_region) { + + ERR_FAIL_INDEX(p_idx,items.size()); + + items[p_idx].icon_region=p_region; + update(); + shape_changed=true; +} + +Rect2 ItemList::get_item_icon_region(int p_idx) const { + + ERR_FAIL_INDEX_V(p_idx,items.size(),Rect2()); + + return items[p_idx].icon_region; +} + void ItemList::set_item_custom_bg_color(int p_idx,const Color& p_custom_bg_color) { ERR_FAIL_INDEX(p_idx,items.size()); @@ -362,7 +381,15 @@ Size2 ItemList::get_min_icon_size() const { return min_icon_size; } +Size2 ItemList::Item::get_icon_size() const { + if (icon.is_null()) + return Size2(); + if (icon_region.has_no_area()) + return icon->get_size(); + + return icon_region.size; +} void ItemList::_input_event(const InputEvent& p_event) { if (p_event.type==InputEvent::MOUSE_BUTTON && p_event.mouse_button.button_index==BUTTON_LEFT && p_event.mouse_button.pressed) { @@ -702,7 +729,9 @@ void ItemList::_notification(int p_what) { Size2 minsize; if (items[i].icon.is_valid()) { - minsize=items[i].icon->get_size(); + + minsize=items[i].get_icon_size(); + if (min_icon_size.x!=0) minsize.x = MAX(minsize.x,min_icon_size.x); if (min_icon_size.y!=0) @@ -851,18 +880,30 @@ void ItemList::_notification(int p_what) { Vector2 text_ofs; if (items[i].icon.is_valid()) { + Size2 icon_size = items[i].get_icon_size(); + Vector2 icon_ofs; if (min_icon_size!=Vector2()) { - icon_ofs = (min_icon_size - items[i].icon->get_size())/2; + icon_ofs = (min_icon_size - icon_size)/2; } + Point2 pos = items[i].rect_cache.pos + icon_ofs + base_ofs; + if (icon_mode==ICON_MODE_TOP) { - draw_texture(items[i].icon,icon_ofs+items[i].rect_cache.pos+Vector2(items[i].rect_cache.size.width/2-items[i].icon->get_width()/2,0).floor()+base_ofs); - text_ofs.y = MAX(items[i].icon->get_height(),min_icon_size.y)+icon_margin; + + pos.x += Math::floor((items[i].rect_cache.size.width - icon_size.width)/2); + text_ofs.y = MAX(icon_size.height, min_icon_size.y) + icon_margin; } else { - draw_texture(items[i].icon,icon_ofs+items[i].rect_cache.pos+Vector2(0,items[i].rect_cache.size.height/2-items[i].icon->get_height()/2).floor()+base_ofs); - text_ofs.x = MAX(items[i].icon->get_width(),min_icon_size.x)+icon_margin; + + pos.y += Math::floor((items[i].rect_cache.size.height - icon_size.height)/2); + text_ofs.x = MAX(icon_size.width, min_icon_size.x) + icon_margin; } + + if (items[i].icon_region.has_no_area()) + draw_texture(items[i].icon, pos); + else + draw_texture_rect_region(items[i].icon, Rect2(pos, icon_size), items[i].icon_region); + } if (items[i].tag_icon.is_valid()) { @@ -1061,6 +1102,9 @@ void ItemList::_bind_methods(){ ObjectTypeDB::bind_method(_MD("set_item_icon","idx","icon:Texture"),&ItemList::set_item_icon); ObjectTypeDB::bind_method(_MD("get_item_icon:Texture","idx"),&ItemList::get_item_icon); + ObjectTypeDB::bind_method(_MD("set_item_icon_region","idx","rect"),&ItemList::set_item_icon_region); + ObjectTypeDB::bind_method(_MD("get_item_icon_region","idx"),&ItemList::get_item_icon_region); + ObjectTypeDB::bind_method(_MD("set_item_selectable","idx","selectable"),&ItemList::set_item_selectable); ObjectTypeDB::bind_method(_MD("is_item_selectable","idx"),&ItemList::is_item_selectable); diff --git a/scene/gui/item_list.h b/scene/gui/item_list.h index bd3cf6484e..c9c575fd54 100644 --- a/scene/gui/item_list.h +++ b/scene/gui/item_list.h @@ -22,6 +22,7 @@ private: struct Item { Ref<Texture> icon; + Rect2i icon_region; Ref<Texture> tag_icon; String text; bool selectable; @@ -31,9 +32,10 @@ private: String tooltip; Color custom_bg; - Rect2 rect_cache; + Size2 get_icon_size() const; + bool operator<(const Item& p_another) const { return text<p_another.text; } }; @@ -76,6 +78,9 @@ public: void set_item_icon(int p_idx,const Ref<Texture>& p_icon); Ref<Texture> get_item_icon(int p_idx) const; + void set_item_icon_region(int p_idx,const Rect2& p_region); + Rect2 get_item_icon_region(int p_idx) const; + void set_item_selectable(int p_idx,bool p_selectable); bool is_item_selectable(int p_idx) const; diff --git a/scene/gui/line_edit.cpp b/scene/gui/line_edit.cpp index 2a62ab30fc..3953ef06a5 100644 --- a/scene/gui/line_edit.cpp +++ b/scene/gui/line_edit.cpp @@ -36,20 +36,20 @@ void LineEdit::_input_event(InputEvent p_event) { switch(p_event.type) { - + case InputEvent::MOUSE_BUTTON: { - + const InputEventMouseButton &b = p_event.mouse_button; if (b.button_index!=1) break; - + if (b.pressed) { - + set_cursor_at_pixel_pos(b.x); - + if (b.doubleclick) { - + selection.enabled=true; selection.begin=0; selection.end=text.length(); @@ -57,9 +57,9 @@ void LineEdit::_input_event(InputEvent p_event) { } selection.drag_attempt=false; - + if ((cursor_pos<selection.begin) || (cursor_pos>selection.end) || !selection.enabled) { - + selection_clear(); selection.cursor_start=cursor_pos; selection.creating=true; @@ -67,13 +67,13 @@ void LineEdit::_input_event(InputEvent p_event) { selection.drag_attempt=true; } - + // if (!editable) // non_editable_clicked_signal.call(); update(); - + } else { - + if ( (!selection.creating) && (!selection.doubleclick)) { selection_clear(); } @@ -83,29 +83,29 @@ void LineEdit::_input_event(InputEvent p_event) { if (OS::get_singleton()->has_virtual_keyboard()) OS::get_singleton()->show_virtual_keyboard(get_text(),get_global_rect()); } - - update(); + + update(); } break; case InputEvent::MOUSE_MOTION: { - + const InputEventMouseMotion& m=p_event.mouse_motion; - + if (m.button_mask&1) { - + if (selection.creating) { set_cursor_at_pixel_pos(m.x); selection_fill_at_cursor(); } } - + } break; case InputEvent::KEY: { - + const InputEventKey &k =p_event.key; - + if (!k.pressed) return; - unsigned int code = k.scancode; + unsigned int code = k.scancode; if (k.mod.command) { @@ -346,11 +346,11 @@ void LineEdit::_input_event(InputEvent p_event) { } - + return; - + } break; - + } } @@ -405,30 +405,30 @@ void LineEdit::drop_data(const Point2& p_point,const Variant& p_data){ void LineEdit::_notification(int p_what) { - + switch(p_what) { - + case NOTIFICATION_RESIZED: { - + set_cursor_pos( get_cursor_pos() ); - + } break; case NOTIFICATION_DRAW: { - + int width,height; - + Size2 size=get_size(); width=size.width; height=size.height; - + RID ci = get_canvas_item(); - + Ref<StyleBox> style = get_stylebox("normal"); if (!is_editable()) style=get_stylebox("read_only"); Ref<Font> font=get_font("font"); - + style->draw( ci, Rect2( Point2(), size ) ); if (has_focus()) { @@ -439,7 +439,7 @@ void LineEdit::_notification(int p_what) { int x_ofs=0; switch (align) { - + case ALIGN_FILL: case ALIGN_LEFT: { @@ -457,19 +457,19 @@ void LineEdit::_notification(int p_what) { int ofs_max=width-style->get_minimum_size().width; int char_ofs=window_pos; - + int y_area=height-style->get_minimum_size().height; int y_ofs=style->get_offset().y; - + int font_ascent=font->get_ascent(); - + Color selection_color=get_color("selection_color"); Color font_color=get_color("font_color"); Color font_color_selected=get_color("font_color_selected"); Color cursor_color=get_color("cursor_color"); - + while(true) { - + //end of string, break! if (char_ofs>=text.length()) break; @@ -477,32 +477,32 @@ void LineEdit::_notification(int p_what) { CharType cchar=pass?'*':text[char_ofs]; CharType next=pass?'*':text[char_ofs+1]; int char_width=font->get_char_size( cchar,next ).width; - + // end of widget, break! if ((x_ofs + char_width) > ofs_max) break; - - + + bool selected=selection.enabled && char_ofs>=selection.begin && char_ofs<selection.end; - + if (selected) VisualServer::get_singleton()->canvas_item_add_rect(ci, Rect2(Point2(x_ofs, y_ofs), Size2(char_width, y_area)), selection_color); - + font->draw_char(ci, Point2(x_ofs, y_ofs + font_ascent), cchar, next, selected ? font_color_selected : font_color); - + if (char_ofs==cursor_pos && has_focus()) VisualServer::get_singleton()->canvas_item_add_rect(ci, Rect2( Point2( x_ofs , y_ofs ), Size2( 1, y_area ) ), cursor_color ); - + x_ofs+=char_width; char_ofs++; } if (char_ofs==cursor_pos && has_focus()) //may be at the end VisualServer::get_singleton()->canvas_item_add_rect(ci, Rect2( - Point2( x_ofs , y_ofs ), Size2( 1, y_area ) ), cursor_color ); - + Point2( x_ofs , y_ofs ), Size2( 1, y_area ) ), cursor_color ); + } break; case NOTIFICATION_FOCUS_ENTER: { @@ -521,15 +521,15 @@ void LineEdit::_notification(int p_what) { } void LineEdit::copy_text() { - + if(selection.enabled) { - + OS::get_singleton()->set_clipboard(text.substr(selection.begin, selection.end - selection.begin)); } } void LineEdit::cut_text() { - + if(selection.enabled) { undo_text = text; OS::get_singleton()->set_clipboard(text.substr(selection.begin, selection.end - selection.begin)); @@ -538,9 +538,9 @@ void LineEdit::cut_text() { } void LineEdit::paste_text() { - + String paste_buffer = OS::get_singleton()->get_clipboard(); - + if(paste_buffer != "") { if(selection.enabled) selection_delete(); @@ -550,28 +550,28 @@ void LineEdit::paste_text() { _change_notify("text"); } - + } void LineEdit::shift_selection_check_pre(bool p_shift) { - + if (!selection.old_shift && p_shift) { selection.cursor_start=cursor_pos; } if (!p_shift) selection_clear(); - + } void LineEdit::shift_selection_check_post(bool p_shift) { - + if (p_shift) selection_fill_at_cursor(); } void LineEdit::set_cursor_at_pixel_pos(int p_x) { - + Ref<Font> font = get_font("font"); int ofs = window_pos; Ref<StyleBox> style = get_stylebox("normal"); @@ -579,10 +579,10 @@ void LineEdit::set_cursor_at_pixel_pos(int p_x) { Size2 size = get_size(); switch (align) { - + case ALIGN_FILL: case ALIGN_LEFT: { - + pixel_ofs = int(style->get_offset().x); } break; case ALIGN_CENTER: { @@ -597,30 +597,30 @@ void LineEdit::set_cursor_at_pixel_pos(int p_x) { while (ofs<text.length()) { - + int char_w = 0; if (font != NULL) { char_w = font->get_char_size(text[ofs]).width; } pixel_ofs+=char_w; - + if (pixel_ofs > p_x) { //found what we look for - - + + if ( (pixel_ofs-p_x) < (char_w >> 1 ) ) { - + ofs+=1; } - + break; } - - + + ofs++; } - + set_cursor_pos( ofs ); - + /* int new_cursor_pos=p_x; int charwidth=draw_area->get_font_char_width(' ',0); @@ -631,29 +631,29 @@ void LineEdit::set_cursor_at_pixel_pos(int p_x) { void LineEdit::delete_char() { - + if ((text.length()<=0) || (cursor_pos==0)) return; - + Ref<Font> font = get_font("font"); if (font != NULL) { cached_width -= font->get_char_size(text[cursor_pos - 1]).width; } - + text.erase( cursor_pos-1, 1 ); - + set_cursor_pos(get_cursor_pos()-1); - + if (cursor_pos==window_pos) { - + // set_window_pos(cursor_pos-get_window_length()); } - + emit_signal("text_changed",text); _change_notify("text"); } void LineEdit::set_text(String p_text) { - + clear_internal(); append_at_cursor(p_text); update(); @@ -662,86 +662,86 @@ void LineEdit::set_text(String p_text) { } void LineEdit::clear() { - + clear_internal(); } String LineEdit::get_text() const { - + return text; } void LineEdit::set_cursor_pos(int p_pos) { - + if (p_pos>(int)text.length()) p_pos=text.length(); - + if(p_pos<0) p_pos=0; - - - + + + cursor_pos=p_pos; - + // if (cursor_pos>(window_pos+get_window_length())) { // set_window_pos(cursor_pos-get_window_lengt//h()); // } - + if (!is_inside_tree()) { - + window_pos=cursor_pos; return; } - + Ref<StyleBox> style = get_stylebox("normal"); Ref<Font> font=get_font("font"); - + if (cursor_pos<window_pos) { /* Adjust window if cursor goes too much to the left */ set_window_pos(cursor_pos); } else if (cursor_pos>window_pos) { /* Adjust window if cursor goes too much to the right */ int window_width=get_size().width-style->get_minimum_size().width; - + if (window_width<0) return; int width_to_cursor=0; int wp=window_pos; - + if (font != NULL) { for (int i=window_pos;i<cursor_pos;i++) width_to_cursor+=font->get_char_size( text[i] ).width; - + while (width_to_cursor >= window_width && wp < text.length()) { width_to_cursor -= font->get_char_size(text[wp]).width; wp++; } } - + if (wp!=window_pos) set_window_pos( wp ); - + } update(); } int LineEdit::get_cursor_pos() const { - + return cursor_pos; } void LineEdit::set_window_pos(int p_pos) { - + window_pos=p_pos; if (window_pos<0) window_pos=0; } void LineEdit::append_at_cursor(String p_text) { - - + + if ( ( max_length <= 0 ) || (text.length()+p_text.length() <= max_length)) { - + undo_text = text; Ref<Font> font = get_font("font"); @@ -761,7 +761,7 @@ void LineEdit::append_at_cursor(String p_text) { } void LineEdit::clear_internal() { - + cached_width = 0; cursor_pos=0; window_pos=0; @@ -771,21 +771,21 @@ void LineEdit::clear_internal() { } Size2 LineEdit::get_minimum_size() const { - + Ref<StyleBox> style = get_stylebox("normal"); Ref<Font> font=get_font("font"); - + Size2 min=style->get_minimum_size(); min.height+=font->get_height(); min.width+=get_constant("minimum_spaces")*font->get_char_size(' ').x; - + return min; } /* selection */ void LineEdit::selection_clear() { - + selection.begin=0; selection.end=0; selection.cursor_start=0; @@ -798,9 +798,9 @@ void LineEdit::selection_clear() { void LineEdit::selection_delete() { - + if (selection.enabled) { - + undo_text = text; if (text.size() > 0) @@ -818,80 +818,80 @@ void LineEdit::selection_delete() { text.erase(selection.begin,selection.end-selection.begin); cursor_pos-=CLAMP( cursor_pos-selection.begin, 0, selection.end-selection.begin); - + if (cursor_pos>=text.length()) { - + cursor_pos=text.length(); } if (window_pos>cursor_pos) { - + window_pos=cursor_pos; } - + emit_signal("text_changed",text); _change_notify("text"); }; - + selection_clear(); } void LineEdit::set_max_length(int p_max_length) { - + ERR_FAIL_COND(p_max_length<0); max_length = p_max_length; set_text(text); } int LineEdit::get_max_length() const { - + return max_length; } void LineEdit::selection_fill_at_cursor() { - + int aux; - + selection.begin=cursor_pos; selection.end=selection.cursor_start; - + if (selection.end<selection.begin) { aux=selection.end; selection.end=selection.begin; selection.begin=aux; } - + selection.enabled=(selection.begin!=selection.end); } void LineEdit::select_all() { - + if (!text.length()) return; - + selection.begin=0; selection.end=text.length(); selection.enabled=true; update(); - + } void LineEdit::set_editable(bool p_editable) { - + editable=p_editable; update(); } bool LineEdit::is_editable() const { - + return editable; } void LineEdit::set_secret(bool p_secret) { - + pass=p_secret; update(); } bool LineEdit::is_secret() const { - + return pass; } @@ -928,24 +928,24 @@ bool LineEdit::is_text_field() const { } void LineEdit::_bind_methods() { - + ObjectTypeDB::bind_method(_MD("set_align", "align"), &LineEdit::set_align); ObjectTypeDB::bind_method(_MD("get_align"), &LineEdit::get_align); ObjectTypeDB::bind_method(_MD("_input_event"),&LineEdit::_input_event); - ObjectTypeDB::bind_method(_MD("clear"),&LineEdit::clear); - ObjectTypeDB::bind_method(_MD("select_all"),&LineEdit::select_all); + ObjectTypeDB::bind_method(_MD("clear"),&LineEdit::clear); + ObjectTypeDB::bind_method(_MD("select_all"),&LineEdit::select_all); ObjectTypeDB::bind_method(_MD("set_text","text"),&LineEdit::set_text); - ObjectTypeDB::bind_method(_MD("get_text"),&LineEdit::get_text); + ObjectTypeDB::bind_method(_MD("get_text"),&LineEdit::get_text); ObjectTypeDB::bind_method(_MD("set_cursor_pos","pos"),&LineEdit::set_cursor_pos); - ObjectTypeDB::bind_method(_MD("get_cursor_pos"),&LineEdit::get_cursor_pos); + ObjectTypeDB::bind_method(_MD("get_cursor_pos"),&LineEdit::get_cursor_pos); ObjectTypeDB::bind_method(_MD("set_max_length","chars"),&LineEdit::set_max_length); - ObjectTypeDB::bind_method(_MD("get_max_length"),&LineEdit::get_max_length); + ObjectTypeDB::bind_method(_MD("get_max_length"),&LineEdit::get_max_length); ObjectTypeDB::bind_method(_MD("append_at_cursor","text"),&LineEdit::append_at_cursor); ObjectTypeDB::bind_method(_MD("set_editable","enabled"),&LineEdit::set_editable); - ObjectTypeDB::bind_method(_MD("is_editable"),&LineEdit::is_editable); + ObjectTypeDB::bind_method(_MD("is_editable"),&LineEdit::is_editable); ObjectTypeDB::bind_method(_MD("set_secret","enabled"),&LineEdit::set_secret); - ObjectTypeDB::bind_method(_MD("is_secret"),&LineEdit::is_secret); + ObjectTypeDB::bind_method(_MD("is_secret"),&LineEdit::is_secret); ObjectTypeDB::bind_method(_MD("select","from","to"),&LineEdit::select,DEFVAL(0),DEFVAL(-1)); ADD_SIGNAL( MethodInfo("text_changed", PropertyInfo( Variant::STRING, "text" )) ); @@ -964,25 +964,25 @@ void LineEdit::_bind_methods() { } LineEdit::LineEdit() { - + align = ALIGN_LEFT; cached_width = 0; cursor_pos=0; window_pos=0; max_length = 0; pass=false; - + selection_clear(); set_focus_mode( FOCUS_ALL ); editable=true; set_default_cursor_shape(CURSOR_IBEAM); set_stop_mouse(true); - - + + } LineEdit::~LineEdit() { - - + + } diff --git a/scene/gui/line_edit.h b/scene/gui/line_edit.h index bf6459361a..207c6b115b 100644 --- a/scene/gui/line_edit.h +++ b/scene/gui/line_edit.h @@ -34,7 +34,7 @@ @author Juan Linietsky <reduzio@gmail.com> */ class LineEdit : public Control { - + OBJ_TYPE( LineEdit, Control ); public: @@ -50,18 +50,18 @@ private: bool editable; bool pass; - + String undo_text; String text; - + int cursor_pos; int window_pos; int max_length; // 0 for no maximum int cached_width; - + struct Selection { - + int begin; int end; int cursor_start; @@ -71,41 +71,41 @@ private: bool doubleclick; bool drag_attempt; } selection; - + void shift_selection_check_pre(bool); void shift_selection_check_post(bool); - + void selection_clear(); void selection_fill_at_cursor(); void selection_delete(); void set_window_pos(int p_pos); - + void set_cursor_at_pixel_pos(int p_x); - + void clear_internal(); void changed_internal(); - + void copy_text(); void cut_text(); void paste_text(); - + void _input_event(InputEvent p_event); void _notification(int p_what); - -protected: - static void _bind_methods(); + +protected: + static void _bind_methods(); public: void set_align(Align p_align); Align get_align() const; - + virtual Variant get_drag_data(const Point2& p_point); virtual bool can_drop_data(const Point2& p_point,const Variant& p_data) const; virtual void drop_data(const Point2& p_point,const Variant& p_data); - + void select_all(); - + void delete_char(); void set_text(String p_text); String get_text() const; @@ -115,11 +115,11 @@ public: int get_max_length() const; void append_at_cursor(String p_text); void clear(); - - + + void set_editable(bool p_editable); bool is_editable() const; - + void set_secret(bool p_secret); bool is_secret() const; @@ -130,7 +130,7 @@ public: virtual bool is_text_field() const; LineEdit(); ~LineEdit(); - + }; diff --git a/scene/gui/link_button.cpp b/scene/gui/link_button.cpp new file mode 100644 index 0000000000..007d0a709e --- /dev/null +++ b/scene/gui/link_button.cpp @@ -0,0 +1,124 @@ +#include "link_button.h" + + +void LinkButton::set_text(const String& p_text) { + + text=p_text; + update(); + minimum_size_changed(); +} + +String LinkButton::get_text() const { + return text; +} + +void LinkButton::set_underline_mode(UnderlineMode p_underline_mode) { + + underline_mode=p_underline_mode; + update(); +} + +LinkButton::UnderlineMode LinkButton::get_underline_mode() const { + + return underline_mode; +} + + +Size2 LinkButton::get_minimum_size() const { + + return get_font("font")->get_string_size( text ); +} + + + +void LinkButton::_notification(int p_what) { + + switch( p_what ) { + + case NOTIFICATION_DRAW: { + + + RID ci = get_canvas_item(); + Size2 size=get_size(); + Color color; + bool do_underline=false; + + //print_line(get_text()+": "+itos(is_flat())+" hover "+itos(get_draw_mode())); + + switch( get_draw_mode() ) { + + case DRAW_NORMAL: { + + color=get_color("font_color"); + do_underline=underline_mode==UNDERLINE_MODE_ALWAYS; + } break; + case DRAW_PRESSED: { + + if (has_color("font_color_pressed")) + color=get_color("font_color_pressed"); + else + color=get_color("font_color"); + + do_underline=true; + + } break; + case DRAW_HOVER: { + + color=get_color("font_color_hover"); + do_underline=true; + + } break; + case DRAW_DISABLED: { + + color=get_color("font_color_disabled"); + do_underline=underline_mode==UNDERLINE_MODE_ALWAYS; + + } break; + } + + if (has_focus()) { + + Ref<StyleBox> style = get_stylebox("focus"); + style->draw(ci,Rect2(Point2(),size)); + } + + Ref<Font> font=get_font("font"); + + draw_string(font,Vector2(0,font->get_ascent()),text,color); + + + + if (do_underline) { + int underline_spacing = get_constant("underline_spacing"); + int width = font->get_string_size(text).width; + int y = font->get_ascent()+underline_spacing; + + draw_line(Vector2(0,y),Vector2(width,y),color); + } + + } break; + } +} + +void LinkButton::_bind_methods() { + + ObjectTypeDB::bind_method(_MD("set_text","text"),&LinkButton::set_text); + ObjectTypeDB::bind_method(_MD("get_text"),&LinkButton::get_text); + + ObjectTypeDB::bind_method(_MD("set_underline_mode","underline_mode"),&LinkButton::set_underline_mode); + ObjectTypeDB::bind_method(_MD("get_underline_mode"),&LinkButton::get_underline_mode); + + + BIND_CONSTANT( UNDERLINE_MODE_ALWAYS ); + BIND_CONSTANT( UNDERLINE_MODE_ON_HOVER ); + + ADD_PROPERTYNZ(PropertyInfo(Variant::STRING,"text"), _SCS("set_text"), _SCS("get_text")); + ADD_PROPERTYNZ(PropertyInfo(Variant::INT,"underline",PROPERTY_HINT_ENUM,"Always,On Hover"), _SCS("set_underline_mode"), _SCS("get_underline_mode")); + +} + +LinkButton::LinkButton() { + underline_mode=UNDERLINE_MODE_ALWAYS; + set_focus_mode(FOCUS_NONE); + set_default_cursor_shape(CURSOR_POINTING_HAND); +} diff --git a/scene/gui/link_button.h b/scene/gui/link_button.h new file mode 100644 index 0000000000..d218482337 --- /dev/null +++ b/scene/gui/link_button.h @@ -0,0 +1,40 @@ +#ifndef LINKBUTTON_H +#define LINKBUTTON_H + + +#include "scene/gui/base_button.h" +#include "scene/resources/bit_mask.h" + +class LinkButton : public BaseButton { + + OBJ_TYPE( LinkButton, BaseButton ); +public: + + enum UnderlineMode { + UNDERLINE_MODE_ALWAYS, + UNDERLINE_MODE_ON_HOVER + }; +private: + String text; + UnderlineMode underline_mode; + +protected: + + virtual Size2 get_minimum_size() const; + void _notification(int p_what); + static void _bind_methods(); + +public: + + void set_text(const String& p_text); + String get_text() const; + + void set_underline_mode(UnderlineMode p_underline_mode); + UnderlineMode get_underline_mode() const; + + LinkButton(); +}; + +VARIANT_ENUM_CAST( LinkButton::UnderlineMode ); + +#endif // LINKBUTTON_H diff --git a/scene/gui/menu_button.cpp b/scene/gui/menu_button.cpp index 26540843de..cb8806e2ef 100644 --- a/scene/gui/menu_button.cpp +++ b/scene/gui/menu_button.cpp @@ -76,18 +76,18 @@ void MenuButton::_unhandled_key_input(InputEvent p_event) { void MenuButton::pressed() { - + emit_signal("about_to_show"); Size2 size=get_size(); Point2 gp = get_global_pos(); popup->set_global_pos( gp + Size2( 0, size.height ) ); - popup->set_size( Size2( size.width, 0) ); + popup->set_size( Size2( size.width, 0) ); popup->set_parent_rect( Rect2(Point2(gp-popup->get_global_pos()),get_size())); popup->popup(); popup->call_deferred("grab_click_focus"); popup->set_invalidate_click_until_motion(); - + } void MenuButton::_input_event(InputEvent p_event) { @@ -111,7 +111,7 @@ void MenuButton::_input_event(InputEvent p_event) { } PopupMenu *MenuButton::get_popup() { - + return popup; } @@ -136,7 +136,7 @@ void MenuButton::_bind_methods() { ADD_SIGNAL( MethodInfo("about_to_show") ); } MenuButton::MenuButton() { - + set_flat(true); set_focus_mode(FOCUS_NONE); diff --git a/scene/gui/menu_button.h b/scene/gui/menu_button.h index 2df632811f..650e4aba5c 100644 --- a/scene/gui/menu_button.h +++ b/scene/gui/menu_button.h @@ -35,24 +35,24 @@ @author Juan Linietsky <reduzio@gmail.com> */ class MenuButton : public Button { - + OBJ_TYPE( MenuButton, Button ); bool clicked; PopupMenu *popup; - virtual void pressed(); + virtual void pressed(); void _unhandled_key_input(InputEvent p_event); Array _get_items() const; void _set_items(const Array& p_items); void _input_event(InputEvent p_event); -protected: - +protected: + - static void _bind_methods(); + static void _bind_methods(); public: - + PopupMenu *get_popup(); MenuButton(); ~MenuButton(); diff --git a/scene/gui/option_button.cpp b/scene/gui/option_button.cpp index 5c8e5a7381..587a68ae37 100644 --- a/scene/gui/option_button.cpp +++ b/scene/gui/option_button.cpp @@ -55,7 +55,7 @@ void OptionButton::_notification(int p_what) { Ref<Texture> arrow = Control::get_icon("arrow"); Ref<StyleBox> normal = get_stylebox("normal" ); - Size2 size = get_size(); + Size2 size = get_size(); Point2 ofs( size.width - arrow->get_width() - get_constant("arrow_margin"), int(Math::abs((size.height-arrow->get_height())/2))); arrow->draw(ci,ofs); @@ -66,7 +66,7 @@ void OptionButton::_notification(int p_what) { void OptionButton::_selected(int p_which) { - + int selid = -1; for (int i=0;i<popup->get_item_count();i++) { @@ -89,39 +89,39 @@ void OptionButton::_selected(int p_which) { void OptionButton::pressed() { - + Size2 size=get_size(); popup->set_global_pos( get_global_pos() + Size2( 0, size.height ) ); popup->set_size( Size2( size.width, 0) ); - + popup->popup(); } void OptionButton::add_icon_item(const Ref<Texture>& p_icon,const String& p_label,int p_ID) { - - popup->add_icon_check_item( p_icon, p_label, p_ID ); + + popup->add_icon_check_item( p_icon, p_label, p_ID ); if (popup->get_item_count()==1) select(0); } void OptionButton::add_item(const String& p_label,int p_ID) { - - popup->add_check_item( p_label, p_ID ); + + popup->add_check_item( p_label, p_ID ); if (popup->get_item_count()==1) - select(0); + select(0); } void OptionButton::set_item_text(int p_idx,const String& p_text) { - + popup->set_item_text(p_idx,p_text); - + } void OptionButton::set_item_icon(int p_idx,const Ref<Texture>& p_icon) { - + popup->set_item_icon(p_idx,p_icon); - + } void OptionButton::set_item_ID(int p_idx,int p_ID) { - + popup->set_item_ID(p_idx,p_ID); } @@ -136,17 +136,17 @@ void OptionButton::set_item_disabled(int p_idx,bool p_disabled) { } String OptionButton::get_item_text(int p_idx) const { - + return popup->get_item_text(p_idx); } Ref<Texture> OptionButton::get_item_icon(int p_idx) const { - + return popup->get_item_icon(p_idx); } int OptionButton::get_item_ID(int p_idx) const { - + return popup->get_item_ID(p_idx); } Variant OptionButton::get_item_metadata(int p_idx) const { @@ -161,17 +161,17 @@ bool OptionButton::is_item_disabled(int p_idx) const { int OptionButton::get_item_count() const { - + return popup->get_item_count(); } void OptionButton::add_separator() { - + popup->add_separator(); } void OptionButton::clear() { - + popup->clear(); set_text(""); current=-1; @@ -210,12 +210,12 @@ void OptionButton::_select_int(int p_which) { } void OptionButton::select(int p_idx) { - + _select(p_idx,false); } int OptionButton::get_selected() const { - + return current; } @@ -286,9 +286,9 @@ void OptionButton::get_translatable_strings(List<String> *p_strings) const { void OptionButton::_bind_methods() { - + ObjectTypeDB::bind_method(_MD("_selected"),&OptionButton::_selected); - + ObjectTypeDB::bind_method(_MD("add_item","label","id"),&OptionButton::add_item,DEFVAL(-1)); ObjectTypeDB::bind_method(_MD("add_icon_item","texture:Texture","label","id"),&OptionButton::add_icon_item); ObjectTypeDB::bind_method(_MD("set_item_text","idx","text"),&OptionButton::set_item_text); @@ -305,7 +305,7 @@ void OptionButton::_bind_methods() { ObjectTypeDB::bind_method(_MD("add_separator"),&OptionButton::add_separator); ObjectTypeDB::bind_method(_MD("clear"),&OptionButton::clear); ObjectTypeDB::bind_method(_MD("select","idx"),&OptionButton::select); - ObjectTypeDB::bind_method(_MD("get_selected"),&OptionButton::get_selected); + ObjectTypeDB::bind_method(_MD("get_selected"),&OptionButton::get_selected); ObjectTypeDB::bind_method(_MD("get_selected_ID"),&OptionButton::get_selected_ID); ObjectTypeDB::bind_method(_MD("get_selected_metadata"),&OptionButton::get_selected_metadata); ObjectTypeDB::bind_method(_MD("remove_item","idx"),&OptionButton::remove_item); @@ -320,23 +320,23 @@ void OptionButton::_bind_methods() { } OptionButton::OptionButton() { - - + + popup = memnew( PopupMenu ); popup->hide(); popup->set_as_toplevel(true); add_child(popup); popup->connect("item_pressed", this,"_selected"); - + current=-1; set_text_align(ALIGN_LEFT); } OptionButton::~OptionButton() { - - + + } diff --git a/scene/gui/option_button.h b/scene/gui/option_button.h index 34e2bdd384..70ebc66a46 100644 --- a/scene/gui/option_button.h +++ b/scene/gui/option_button.h @@ -35,12 +35,12 @@ @author Juan Linietsky <reduzio@gmail.com> */ class OptionButton : public Button { - + OBJ_TYPE( OptionButton, Button ); - + PopupMenu *popup; int current; - + void _selected(int p_which); void _select(int p_which,bool p_emit=false); void _select_int(int p_which); @@ -55,10 +55,10 @@ protected: void _notification(int p_what); static void _bind_methods(); public: - + void add_icon_item(const Ref<Texture>& p_icon,const String& p_label,int p_ID=-1); void add_item(const String& p_label,int p_ID=-1); - + void set_item_text(int p_idx,const String& p_text); void set_item_icon(int p_idx,const Ref<Texture>& p_icon); void set_item_ID(int p_idx,int p_ID); @@ -73,11 +73,11 @@ public: int get_item_count() const; - + void add_separator(); - + void clear(); - + void select(int p_idx); int get_selected() const; int get_selected_ID() const; @@ -87,7 +87,7 @@ public: virtual void get_translatable_strings(List<String> *p_strings) const; - OptionButton(); + OptionButton(); ~OptionButton(); }; diff --git a/scene/gui/panel.cpp b/scene/gui/panel.cpp index d40daa972c..682ea5b92c 100644 --- a/scene/gui/panel.cpp +++ b/scene/gui/panel.cpp @@ -30,7 +30,7 @@ #include "print_string.h" void Panel::_notification(int p_what) { - + if (p_what==NOTIFICATION_DRAW) { RID ci = get_canvas_item(); @@ -40,7 +40,7 @@ void Panel::_notification(int p_what) { } Panel::Panel() { - + set_stop_mouse(true); } diff --git a/scene/gui/panel.h b/scene/gui/panel.h index ee4bcd139e..efa9ebcaa0 100644 --- a/scene/gui/panel.h +++ b/scene/gui/panel.h @@ -34,13 +34,13 @@ @author Juan Linietsky <reduzio@gmail.com> */ class Panel : public Control{ - + OBJ_TYPE(Panel,Control); protected: void _notification(int p_what); public: - Panel(); + Panel(); ~Panel(); }; diff --git a/scene/gui/panel_container.cpp b/scene/gui/panel_container.cpp index bcf75b79f8..b5e3ef8c7b 100644 --- a/scene/gui/panel_container.cpp +++ b/scene/gui/panel_container.cpp @@ -31,7 +31,12 @@ Size2 PanelContainer::get_minimum_size() const { - Ref<StyleBox> style=get_stylebox("panel"); + Ref<StyleBox> style; + + if (has_stylebox("panel")) + style=get_stylebox("panel"); + else + style=get_stylebox("panel","PanelContainer"); Size2 ms; diff --git a/scene/gui/popup.cpp b/scene/gui/popup.cpp index 1f04985ec6..0d9a76937c 100644 --- a/scene/gui/popup.cpp +++ b/scene/gui/popup.cpp @@ -32,12 +32,12 @@ void Popup::_input_event(InputEvent p_event) { - + } void Popup::_notification(int p_what) { - + if (p_what==NOTIFICATION_VISIBILITY_CHANGED) { if (popped_up && !is_visible()) { popped_up=false; @@ -58,11 +58,11 @@ void Popup::_notification(int p_what) { } void Popup::_fix_size() { - + #if 0 Point2 pos = get_pos(); - Size2 size = get_size(); + Size2 size = get_size(); Point2 window_size = window==this ? get_parent_area_size() :window->get_size(); #else @@ -75,7 +75,7 @@ void Popup::_fix_size() { pos.x=window_size.width-size.width; if (pos.x<0) pos.x=0; - + if (pos.y+size.height > window_size.height) pos.y=window_size.height-size.height; if (pos.y<0) @@ -179,7 +179,7 @@ void Popup::popup_centered_minsize(const Size2& p_minsize) { } void Popup::popup_centered(const Size2& p_size) { - + Point2 window_size = get_viewport_rect().size; emit_signal("about_to_show"); @@ -203,9 +203,9 @@ void Popup::popup_centered(const Size2& p_size) { } void Popup::popup_centered_ratio(float p_screen_ratio) { - - - + + + emit_signal("about_to_show"); Rect2 rect; @@ -214,7 +214,7 @@ void Popup::popup_centered_ratio(float p_screen_ratio) { rect.pos = ((window_size-rect.size)/2.0).floor(); set_pos( rect.pos ); set_size( rect.size ); - + show_modal(exclusive); _fix_size(); diff --git a/scene/gui/popup.h b/scene/gui/popup.h index 9c66e6d7bd..8afcdc01db 100644 --- a/scene/gui/popup.h +++ b/scene/gui/popup.h @@ -35,12 +35,12 @@ @author Juan Linietsky <reduzio@gmail.com> */ class Popup : public Control { - + OBJ_TYPE( Popup, Control ); bool exclusive; bool popped_up; - + protected: virtual void _post_popup() {} @@ -48,14 +48,14 @@ protected: void _input_event(InputEvent p_event); void _notification(int p_what); void _fix_size(); - static void _bind_methods(); + static void _bind_methods(); public: enum { NOTIFICATION_POST_POPUP=80, NOTIFICATION_POPUP_HIDE=81 }; - + void set_exclusive(bool p_exclusive); bool is_exclusive() const; @@ -65,8 +65,8 @@ public: void set_as_minsize(); virtual void popup(); - - Popup(); + + Popup(); ~Popup(); }; diff --git a/scene/gui/popup_menu.cpp b/scene/gui/popup_menu.cpp index a93d8e524f..3329d24890 100644 --- a/scene/gui/popup_menu.cpp +++ b/scene/gui/popup_menu.cpp @@ -59,34 +59,34 @@ Size2 PopupMenu::get_minimum_size() const { int vseparation = get_constant("vseparation"); int hseparation = get_constant("hseparation"); - + Size2 minsize = get_stylebox("panel")->get_minimum_size(); Ref<Font> font = get_font("font"); - + float max_w=0; int font_h = font->get_height(); int check_w = get_icon("checked")->get_width(); int accel_max_w=0; - + for (int i=0;i<items.size();i++) { - + Size2 size; if (!items[i].icon.is_null()) { - + Size2 icon_size = items[i].icon->get_size(); size.height = MAX( icon_size.height, font_h ); size.width+=icon_size.width; size.width+=hseparation; } else { - + size.height=font_h; } - + if (items[i].checkable) { - + size.width+=check_w+hseparation; } - + size.width+=font->get_string_size(items[i].text).width; if (i>0) size.height+=vseparation; @@ -100,11 +100,11 @@ Size2 PopupMenu::get_minimum_size() const { minsize.height+=size.height; max_w = MAX( max_w, size.width ); - + } - + minsize.width+=max_w+accel_max_w; - + return minsize; } @@ -115,41 +115,41 @@ int PopupMenu::_get_mouse_over(const Point2& p_over) const { return -1; Ref<StyleBox> style = get_stylebox("panel"); - + Point2 ofs=style->get_offset(); - + if (ofs.y>p_over.y) return -1; - - - Ref<Font> font = get_font("font"); + + + Ref<Font> font = get_font("font"); int vseparation = get_constant("vseparation"); // int hseparation = get_constant("hseparation"); float font_h=font->get_height(); - + for (int i=0;i<items.size();i++) { - + if (i>0) ofs.y+=vseparation; float h; - + if (!items[i].icon.is_null()) { - + Size2 icon_size = items[i].icon->get_size(); h = MAX( icon_size.height, font_h ); } else { - + h=font_h; } - + ofs.y+=h; if (p_over.y < ofs.y) { return i; - } + } } - + return -1; } @@ -271,11 +271,11 @@ void PopupMenu::_input_event(const InputEvent &p_event) { } break; case InputEvent::MOUSE_BUTTON: { - - + + const InputEventMouseButton &b=p_event.mouse_button; if (b.pressed) - break; + break; switch(b.button_index) { @@ -347,11 +347,11 @@ void PopupMenu::_input_event(const InputEvent &p_event) { } break; } - + //update(); } break; case InputEvent::MOUSE_MOTION: { - + if (invalidated_click) { moved+=Vector2(p_event.mouse_motion.relative_x,p_event.mouse_motion.relative_y); @@ -409,13 +409,13 @@ bool PopupMenu::has_point(const Point2& p_point) const { void PopupMenu::_notification(int p_what) { switch(p_what) { - + case NOTIFICATION_DRAW: { - + RID ci = get_canvas_item(); Size2 size=get_size(); - + Ref<StyleBox> style = get_stylebox("panel"); Ref<StyleBox> hover = get_stylebox("hover"); Ref<Font> font = get_font("font"); @@ -423,7 +423,7 @@ void PopupMenu::_notification(int p_what) { Ref<Texture> uncheck = get_icon("unchecked"); Ref<Texture> submenu= get_icon("submenu"); Ref<StyleBox> separator = get_stylebox("separator"); - + style->draw( ci, Rect2( Point2(), get_size() ) ); Point2 ofs=style->get_offset(); int vseparation = get_constant("vseparation"); @@ -433,36 +433,36 @@ void PopupMenu::_notification(int p_what) { Color font_color_accel = get_color("font_color_accel"); Color font_color_hover = get_color("font_color_hover"); float font_h=font->get_height(); - + for (int i=0;i<items.size();i++) { - + if (i>0) ofs.y+=vseparation; Point2 item_ofs=ofs; float h; Size2 icon_size; - + if (!items[i].icon.is_null()) { - + icon_size = items[i].icon->get_size(); h = MAX( icon_size.height, font_h ); } else { - + h=font_h; } - + if (i==mouse_over) { - + hover->draw(ci, Rect2( ofs+Point2(-hseparation,-vseparation), Size2( get_size().width - style->get_minimum_size().width + hseparation*2, h+vseparation*2 ) )); } - + if (items[i].separator) { - + int sep_h=separator->get_center_size().height+separator->get_minimum_size().height; separator->draw(ci, Rect2( ofs+Point2(0,Math::floor((h-sep_h)/2.0)), Size2( get_size().width - style->get_minimum_size().width , sep_h ) )); - + } - + if (items[i].checkable) { if (items[i].checked) @@ -499,16 +499,16 @@ void PopupMenu::_notification(int p_what) { items[i]._ofs_cache=ofs.y; ofs.y+=h; - + } - + } break; case NOTIFICATION_MOUSE_ENTER: { grab_focus(); } break; case NOTIFICATION_MOUSE_EXIT: { - + if (mouse_over>=0) { mouse_over=-1; update(); @@ -574,7 +574,7 @@ void PopupMenu::set_item_text(int p_idx,const String& p_text) { ERR_FAIL_INDEX(p_idx,items.size()); items[p_idx].text=XL_MESSAGE(p_text); - + update(); } @@ -597,8 +597,8 @@ void PopupMenu::set_item_checked(int p_idx,bool p_checked) { void PopupMenu::set_item_ID(int p_idx,int p_ID) { ERR_FAIL_INDEX(p_idx,items.size()); - items[p_idx].ID=p_ID; - + items[p_idx].ID=p_ID; + update(); } @@ -785,7 +785,7 @@ void PopupMenu::add_separator() { items.push_back(sep); update(); } - + void PopupMenu::clear() { items.clear(); @@ -888,7 +888,7 @@ void PopupMenu::clear_autohide_areas(){ void PopupMenu::_bind_methods() { - ObjectTypeDB::bind_method(_MD("_input_event"),&PopupMenu::_input_event); + ObjectTypeDB::bind_method(_MD("_input_event"),&PopupMenu::_input_event); ObjectTypeDB::bind_method(_MD("add_icon_item","texture","label","id","accel"),&PopupMenu::add_icon_item,DEFVAL(-1),DEFVAL(0)); ObjectTypeDB::bind_method(_MD("add_item","label","id","accel"),&PopupMenu::add_item,DEFVAL(-1),DEFVAL(0)); ObjectTypeDB::bind_method(_MD("add_icon_check_item","texture","label","id","accel"),&PopupMenu::add_icon_check_item,DEFVAL(-1),DEFVAL(0)); @@ -916,7 +916,7 @@ void PopupMenu::_bind_methods() { ObjectTypeDB::bind_method(_MD("get_item_ID","idx"),&PopupMenu::get_item_ID); ObjectTypeDB::bind_method(_MD("get_item_index","id"),&PopupMenu::get_item_index); ObjectTypeDB::bind_method(_MD("get_item_count"),&PopupMenu::get_item_count); - ObjectTypeDB::bind_method(_MD("add_separator"),&PopupMenu::add_separator); + ObjectTypeDB::bind_method(_MD("add_separator"),&PopupMenu::add_separator); ObjectTypeDB::bind_method(_MD("remove_item","idx"),&PopupMenu::remove_item); ObjectTypeDB::bind_method(_MD("clear"),&PopupMenu::clear); @@ -930,7 +930,7 @@ void PopupMenu::_bind_methods() { ADD_SIGNAL( MethodInfo("item_pressed", PropertyInfo( Variant::INT,"ID") ) ); } - + void PopupMenu::set_invalidate_click_until_motion() { moved=Vector2(); @@ -941,7 +941,7 @@ PopupMenu::PopupMenu() { mouse_over=-1; - + set_focus_mode(FOCUS_ALL); set_as_toplevel(true); diff --git a/scene/gui/popup_menu.h b/scene/gui/popup_menu.h index 624f4f542a..72f8795067 100644 --- a/scene/gui/popup_menu.h +++ b/scene/gui/popup_menu.h @@ -37,7 +37,7 @@ class PopupMenu : public Popup { OBJ_TYPE(PopupMenu, Popup ); - + struct Item { Ref<Texture> icon; String text; @@ -45,16 +45,16 @@ class PopupMenu : public Popup { bool checkable; bool separator; bool disabled; - int ID; + int ID; Variant metadata; String submenu; String tooltip; uint32_t accel; int _ofs_cache; - + Item() { checked=false; checkable=false; separator=false; accel=0; disabled=false; _ofs_cache=0; } }; - + Timer *submenu_timer; List<Rect2> autohide_areas; @@ -64,7 +64,7 @@ class PopupMenu : public Popup { Rect2 parent_rect; String _get_accel_text(uint32_t p_accel) const; int _get_mouse_over(const Point2& p_over) const; - virtual Size2 get_minimum_size() const; + virtual Size2 get_minimum_size() const; void _input_event(const InputEvent &p_event); void _activate_submenu(int over); void _submenu_timeout(); @@ -79,11 +79,11 @@ protected: virtual bool has_point(const Point2& p_point) const; -friend class MenuButton; +friend class MenuButton; void _notification(int p_what); - static void _bind_methods(); + static void _bind_methods(); public: - + void add_icon_item(const Ref<Texture>& p_icon,const String& p_label,int p_ID=-1,uint32_t p_accel=0); void add_item(const String& p_label,int p_ID=-1,uint32_t p_accel=0); void add_icon_check_item(const Ref<Texture>& p_icon,const String& p_label,int p_ID=-1,uint32_t p_accel=0); @@ -92,7 +92,7 @@ public: void set_item_text(int p_idx,const String& p_text); void set_item_icon(int p_idx,const Ref<Texture>& p_icon); - void set_item_checked(int p_idx,bool p_checked); + void set_item_checked(int p_idx,bool p_checked); void set_item_ID(int p_idx,int p_ID); void set_item_accelerator(int p_idx,uint32_t p_accel); void set_item_metadata(int p_idx,const Variant& p_meta); @@ -110,7 +110,7 @@ public: uint32_t get_item_accelerator(int p_idx) const; Variant get_item_metadata(int p_idx) const; bool is_item_disabled(int p_idx) const; - String get_item_submenu(int p_ID) const; + String get_item_submenu(int p_ID) const; bool is_item_separator(int p_idx) const; bool is_item_checkable(int p_idx) const; String get_item_tooltip(int p_idx) const; @@ -121,9 +121,9 @@ public: void activate_item(int p_item); void remove_item(int p_idx); - + void add_separator(); - + void clear(); void set_parent_rect(const Rect2& p_rect); @@ -137,7 +137,7 @@ public: void set_invalidate_click_until_motion(); - PopupMenu(); + PopupMenu(); ~PopupMenu(); }; diff --git a/scene/gui/range.cpp b/scene/gui/range.cpp index ffcdf98519..b00fcfe42c 100644 --- a/scene/gui/range.cpp +++ b/scene/gui/range.cpp @@ -67,14 +67,14 @@ void Range::Shared::emit_changed(const char *p_what) { void Range::set_val(double p_val) { - + if(_rounded_values){ p_val = Math::round(p_val); } - + if (p_val>shared->max-shared->page) p_val=shared->max-shared->page; - + if (p_val<shared->min) p_val=shared->min; @@ -84,58 +84,58 @@ void Range::set_val(double p_val) { if (shared->val==p_val) return; - + shared->val=p_val; - + shared->emit_value_changed(); } void Range::set_min(double p_min) { - + shared->min=p_min; set_val(shared->val); - + shared->emit_changed("range/min"); } void Range::set_max(double p_max) { - + shared->max=p_max; set_val(shared->val); - + shared->emit_changed("range/max"); } void Range::set_step(double p_step) { - + shared->step=p_step; shared->emit_changed("range/step"); } void Range::set_page(double p_page) { - + shared->page=p_page; set_val(shared->val); - + shared->emit_changed("range/page"); } double Range::get_val() const { - + return shared->val; } double Range::get_min() const { - + return shared->min; } double Range::get_max() const { - + return shared->max; } double Range::get_step() const { - + return shared->step; } double Range::get_page() const { - + return shared->page; } diff --git a/scene/gui/range.h b/scene/gui/range.h index d96ecdfb0b..85c3687b7d 100644 --- a/scene/gui/range.h +++ b/scene/gui/range.h @@ -34,7 +34,7 @@ @author Juan Linietsky <reduzio@gmail.com> */ class Range : public Control { - + OBJ_TYPE( Range, Control ); @@ -57,15 +57,15 @@ class Range : public Control { void _value_changed_notify(); void _changed_notify(const char *p_what=""); -protected: +protected: virtual void _value_changed(double) {} static void _bind_methods(); - + bool _rounded_values; public: - + void set_val(double p_val); void set_min(double p_min); void set_max(double p_max); @@ -89,7 +89,7 @@ public: void share(Range *p_range); void unshare(); - Range(); + Range(); ~Range(); }; diff --git a/scene/gui/rich_text_label.cpp b/scene/gui/rich_text_label.cpp index d4ac2652dc..98bc0b9434 100644 --- a/scene/gui/rich_text_label.cpp +++ b/scene/gui/rich_text_label.cpp @@ -237,7 +237,7 @@ if (m_height > line_height) {\ if (font.is_null()) font=p_base_font; - const CharType *c = text->text.c_str(); + const CharType *c = text->text.c_str(); const CharType *cf=c; int fh=font->get_height(); int ascent = font->get_ascent(); @@ -297,7 +297,7 @@ if (m_height > line_height) {\ fw+=cw; } - end++; + end++; } ENSURE_WIDTH(w); @@ -2058,7 +2058,7 @@ RichTextLabel::RichTextLabel() { scroll_active=true; scroll_w=0; - vscroll = memnew( VScrollBar ); + vscroll = memnew( VScrollBar ); add_child(vscroll); vscroll->set_drag_slave(String("..")); vscroll->set_step(1); diff --git a/scene/gui/scroll_bar.cpp b/scene/gui/scroll_bar.cpp index 0fd4286f38..d8365feb24 100644 --- a/scene/gui/scroll_bar.cpp +++ b/scene/gui/scroll_bar.cpp @@ -35,7 +35,7 @@ bool ScrollBar::focus_by_default=false; void ScrollBar::set_can_focus_by_default(bool p_can_focus) { - + focus_by_default=p_can_focus; } @@ -43,14 +43,14 @@ void ScrollBar::_input_event(InputEvent p_event) { switch(p_event.type) { - + case InputEvent::MOUSE_BUTTON: { - + const InputEventMouseButton &b=p_event.mouse_button; accept_event(); if (b.button_index==5 && b.pressed) { - + //if (orientation==VERTICAL) // set_val( get_val() + get_page() / 4.0 ); //else @@ -58,16 +58,16 @@ void ScrollBar::_input_event(InputEvent p_event) { accept_event(); } - + if (b.button_index==4 && b.pressed) { - + //if (orientation==HORIZONTAL) // set_val( get_val() - get_page() / 4.0 ); //else set_val( get_val() - get_page() / 4.0 ); accept_event(); } - + if (b.button_index!=1) return; @@ -78,177 +78,177 @@ void ScrollBar::_input_event(InputEvent p_event) { double ofs = orientation==VERTICAL ? b.y : b.x ; Ref<Texture> decr = get_icon("decrement"); Ref<Texture> incr = get_icon("increment"); - + double decr_size = orientation==VERTICAL ? decr->get_height() : decr->get_width(); double incr_size = orientation==VERTICAL ? incr->get_height() : incr->get_width(); double grabber_ofs = get_grabber_offset(); double grabber_size = get_grabber_size(); double total = orientation==VERTICAL ? get_size().height : get_size().width; - + if (ofs < decr_size ) { - + set_val( get_val() - (custom_step>=0?custom_step:get_step()) ); break; } - + if (ofs > total-incr_size ) { - + set_val( get_val() + (custom_step>=0?custom_step:get_step()) ); break; } - + ofs-=decr_size; - + if ( ofs < grabber_ofs ) { - + set_val( get_val() - get_page() ); break; - - } - + + } + ofs-=grabber_ofs; - + if (ofs < grabber_size ) { - + drag.active=true; drag.pos_at_click=grabber_ofs+ofs; - drag.value_at_click=get_unit_value(); + drag.value_at_click=get_unit_value(); update(); } else { - - + + set_val( get_val() + get_page() ); } - - + + } else { - + drag.active=false; update(); } - + } break; case InputEvent::MOUSE_MOTION: { - + const InputEventMouseMotion &m=p_event.mouse_motion; accept_event(); - + if (drag.active) { - + double ofs = orientation==VERTICAL ? m.y : m.x ; Ref<Texture> decr = get_icon("decrement"); - + double decr_size = orientation==VERTICAL ? decr->get_height() : decr->get_width(); ofs-=decr_size; - + double diff = (ofs-drag.pos_at_click) / get_area_size(); - set_unit_value( drag.value_at_click + diff ); + set_unit_value( drag.value_at_click + diff ); } else { - - + + double ofs = orientation==VERTICAL ? m.y : m.x ; Ref<Texture> decr = get_icon("decrement"); Ref<Texture> incr = get_icon("increment"); - + double decr_size = orientation==VERTICAL ? decr->get_height() : decr->get_width(); double incr_size = orientation==VERTICAL ? incr->get_height() : incr->get_width(); double total = orientation==VERTICAL ? get_size().height : get_size().width; - + HiliteStatus new_hilite; - + if (ofs < decr_size ) { - + new_hilite=HILITE_DECR; - + } else if (ofs > total-incr_size ) { - + new_hilite=HILITE_INCR; - + } else { - + new_hilite=HILITE_RANGE; } - + if (new_hilite!=hilite) { - + hilite=new_hilite; update(); - + } - + } } break; case InputEvent::KEY: { - + const InputEventKey &k=p_event.key; - + if (!k.pressed) return; - + switch (k.scancode) { - + case KEY_LEFT: { - + if (orientation!=HORIZONTAL) return; set_val( get_val() - (custom_step>=0?custom_step:get_step()) ); - + } break; case KEY_RIGHT: { - + if (orientation!=HORIZONTAL) return; set_val( get_val() + (custom_step>=0?custom_step:get_step()) ); - + } break; case KEY_UP: { - + if (orientation!=VERTICAL) return; - + set_val( get_val() - (custom_step>=0?custom_step:get_step()) ); - - + + } break; case KEY_DOWN: { - + if (orientation!=VERTICAL) return; set_val( get_val() + (custom_step>=0?custom_step:get_step()) ); - + } break; case KEY_HOME: { - + set_val( get_min() ); - + } break; case KEY_END: { - + set_val( get_max() ); - + } break; - + } break; - } + } } } void ScrollBar::_notification(int p_what) { - + if (p_what==NOTIFICATION_DRAW) { - + RID ci = get_canvas_item(); - + Ref<Texture> decr = hilite==HILITE_DECR ? get_icon("decrement_hilite") : get_icon("decrement"); Ref<Texture> incr = hilite==HILITE_INCR ? get_icon("increment_hilite") : get_icon("increment"); Ref<StyleBox> bg = has_focus() ? get_stylebox("scroll_focus") : get_stylebox("scroll"); Ref<StyleBox> grabber = (drag.active || hilite==HILITE_RANGE) ? get_stylebox("grabber_hilite") : get_stylebox("grabber"); - + Point2 ofs; - + VisualServer *vs = VisualServer::get_singleton(); vs->canvas_item_add_texture_rect( ci, Rect2( Point2(), decr->get_size()),decr->get_rid() ); @@ -266,33 +266,33 @@ void ScrollBar::_notification(int p_what) { area.height-=incr->get_height()+decr->get_height(); bg->draw(ci,Rect2(ofs,area)); - - if (orientation==HORIZONTAL) + + if (orientation==HORIZONTAL) ofs.width+=area.width; else ofs.height+=area.height; vs->canvas_item_add_texture_rect( ci, Rect2( ofs, decr->get_size()),incr->get_rid() ); Rect2 grabber_rect; - + if (orientation==HORIZONTAL) { - + grabber_rect.size.width=get_grabber_size(); grabber_rect.size.height=get_size().height; grabber_rect.pos.y=0; grabber_rect.pos.x=get_grabber_offset()+decr->get_width()+bg->get_margin( MARGIN_LEFT ); } else { - + grabber_rect.size.width=get_size().width; grabber_rect.size.height=get_grabber_size(); grabber_rect.pos.y=get_grabber_offset()+decr->get_height()+bg->get_margin( MARGIN_TOP ); - grabber_rect.pos.x=0; + grabber_rect.pos.x=0; } - + grabber->draw(ci,grabber_rect); - + } - + if (p_what==NOTIFICATION_ENTER_TREE) { @@ -405,48 +405,48 @@ void ScrollBar::_notification(int p_what) { } if (p_what==NOTIFICATION_MOUSE_EXIT) { - + hilite=HILITE_NONE; update(); } } double ScrollBar::get_grabber_min_size() const { - + Ref<StyleBox> grabber=get_stylebox("grabber"); Size2 gminsize=grabber->get_minimum_size()+grabber->get_center_size(); - return (orientation==VERTICAL)?gminsize.height:gminsize.width; + return (orientation==VERTICAL)?gminsize.height:gminsize.width; } double ScrollBar::get_grabber_size() const { - + float range = get_max()-get_min(); if (range<=0) return 0; - + float page = (get_page()>0)? get_page() : 0; // if (grabber_range < get_step()) // grabber_range=get_step(); - + double area_size=get_area_size(); double grabber_size = page / range * area_size; return grabber_size+get_grabber_min_size(); - -} + +} double ScrollBar::get_area_size() const { - + if (orientation==VERTICAL) { - + double area=get_size().height; area-=get_stylebox("scroll")->get_minimum_size().height; area-=get_icon("increment")->get_height(); area-=get_icon("decrement")->get_height(); area-=get_grabber_min_size(); return area; - + } else if (orientation==HORIZONTAL) { - + double area=get_size().width; area-=get_stylebox("scroll")->get_minimum_size().width; area-=get_icon("increment")->get_width(); @@ -454,38 +454,38 @@ double ScrollBar::get_area_size() const { area-=get_grabber_min_size(); return area; } else { - + return 0; } - + } double ScrollBar::get_area_offset() const { - + double ofs=0; - + if (orientation==VERTICAL) { - + ofs+=get_stylebox("hscroll")->get_margin( MARGIN_TOP ); ofs+=get_icon("decrement")->get_height(); - } - + } + if (orientation==HORIZONTAL) { - + ofs+=get_stylebox("hscroll")->get_margin( MARGIN_LEFT ); ofs+=get_icon("decrement")->get_width(); } - - return ofs; + + return ofs; } double ScrollBar::get_click_pos(const Point2& p_pos) const { - - + + float pos=(orientation==VERTICAL)?p_pos.y:p_pos.x; pos-=get_area_offset(); - + float area=get_area_size(); if (area==0) return 0; @@ -495,8 +495,8 @@ double ScrollBar::get_click_pos(const Point2& p_pos) const { } double ScrollBar::get_grabber_offset() const { - - + + return (get_area_size()) * get_unit_value(); } @@ -504,30 +504,30 @@ double ScrollBar::get_grabber_offset() const { Size2 ScrollBar::get_minimum_size() const { - + Ref<Texture> incr = get_icon("increment"); Ref<Texture> decr = get_icon("decrement"); Ref<StyleBox> bg = get_stylebox("scroll"); Size2 minsize; - + if (orientation==VERTICAL) { - + minsize.width=MAX(incr->get_size().width,(bg->get_minimum_size()+bg->get_center_size()).width); minsize.height+=incr->get_size().height; minsize.height+=decr->get_size().height; minsize.height+=bg->get_minimum_size().height; minsize.height+=get_grabber_min_size(); } - + if (orientation==HORIZONTAL) { - + minsize.height=MAX(incr->get_size().height,(bg->get_center_size()+bg->get_minimum_size()).height); minsize.width+=incr->get_size().width; minsize.width+=decr->get_size().width; minsize.width+=bg->get_minimum_size().width; minsize.width+=get_grabber_min_size(); } - + return minsize; } @@ -671,65 +671,65 @@ NodePath ScrollBar::get_drag_slave() const{ #if 0 void ScrollBar::mouse_button(const Point2& p_pos, int b.button_index,bool b.pressed,int p_modifier_mask) { - - // wheel! - + + // wheel! + if (b.button_index==BUTTON_WHEEL_UP && b.pressed) { - + if (orientation==VERTICAL) set_val( get_val() - get_page() / 4.0 ); else set_val( get_val() + get_page() / 4.0 ); - + } if (b.button_index==BUTTON_WHEEL_DOWN && b.pressed) { - + if (orientation==HORIZONTAL) set_val( get_val() - get_page() / 4.0 ); else set_val( get_val() + get_page() / 4.0 ); } - + if (b.button_index!=BUTTON_LEFT) return; - + if (b.pressed) { - + int ofs = orientation==VERTICAL ? p_pos.y : p_pos.x ; int grabber_ofs = get_grabber_offset(); int grabber_size = get_grabber_size(); - + if ( ofs < grabber_ofs ) { - + set_val( get_val() - get_page() ); - + } else if (ofs > grabber_ofs + grabber_size ) { - + set_val( get_val() + get_page() ); - + } else { - - + + drag.active=true; drag.pos_at_click=get_click_pos(p_pos); drag.value_at_click=get_unit_value(); } - - + + } else { - + drag.active=false; } - + } void ScrollBar::mouse_motion(const Point2& p_pos, const Point2& p_rel, int b.button_index_mask) { - + if (!drag.active) return; - + double value_ofs=drag.value_at_click+(get_click_pos(p_pos)-drag.pos_at_click); - - + + value_ofs=value_ofs*( get_max() - get_min() ); if (value_ofs<get_min()) value_ofs=get_min(); @@ -737,64 +737,64 @@ void ScrollBar::mouse_motion(const Point2& p_pos, const Point2& p_rel, int b.but value_ofs=get_max()-get_page(); if (get_val()==value_ofs) return; //dont bother if the value is the same - + set_val( value_ofs ); - + } bool ScrollBar::key(unsigned long p_unicode, unsigned long p_scan_code,bool b.pressed,bool p_repeat,int p_modifier_mask) { - + if (!b.pressed) return false; - + switch (p_scan_code) { - + case KEY_LEFT: { - + if (orientation!=HORIZONTAL) return false; set_val( get_val() - get_step() ); - + } break; case KEY_RIGHT: { - + if (orientation!=HORIZONTAL) return false; set_val( get_val() + get_step() ); - + } break; case KEY_UP: { - + if (orientation!=VERTICAL) return false; - + set_val( get_val() - get_step() ); - - + + } break; case KEY_DOWN: { - + if (orientation!=VERTICAL) return false; set_val( get_val() + get_step() ); - + } break; case KEY_HOME: { - + set_val( get_min() ); - + } break; case KEY_END: { - + set_val( get_max() ); - + } break; - + default: return false; - + } - + return true; } @@ -823,7 +823,7 @@ ScrollBar::ScrollBar(Orientation p_orientation) hilite=HILITE_NONE; custom_step=-1; drag_slave=NULL; - + drag.active=false; drag_slave_speed=Vector2(); @@ -833,7 +833,7 @@ ScrollBar::ScrollBar(Orientation p_orientation) if (focus_by_default) set_focus_mode( FOCUS_ALL ); - + } diff --git a/scene/gui/scroll_bar.h b/scene/gui/scroll_bar.h index a629ddc56c..c68db02b33 100644 --- a/scene/gui/scroll_bar.h +++ b/scene/gui/scroll_bar.h @@ -36,40 +36,40 @@ @author Juan Linietsky <reduzio@gmail.com> */ class ScrollBar : public Range { - + OBJ_TYPE( ScrollBar, Range ); - + enum HiliteStatus { HILITE_NONE, HILITE_DECR, HILITE_RANGE, - HILITE_INCR, + HILITE_INCR, }; - + static bool focus_by_default; - + Orientation orientation; Size2 size; float custom_step; - + HiliteStatus hilite; - + struct Drag { - + bool active; float pos_at_click; float value_at_click; } drag; - - + + double get_grabber_size() const; double get_grabber_min_size() const; double get_area_size() const; double get_area_offset() const; double get_click_pos(const Point2& p_pos) const; double get_grabber_offset() const; - - static void set_can_focus_by_default(bool p_can_focus); + + static void set_can_focus_by_default(bool p_can_focus); Node* drag_slave; NodePath drag_slave_path; @@ -86,12 +86,12 @@ class ScrollBar : public Range { void _drag_slave_exit(); void _drag_slave_input(const InputEvent& p_input); - + void _input_event(InputEvent p_event); -protected: +protected: void _notification(int p_what); - static void _bind_methods(); + static void _bind_methods(); public: @@ -101,25 +101,25 @@ public: void set_drag_slave(const NodePath& p_path); NodePath get_drag_slave() const; - virtual Size2 get_minimum_size() const; - ScrollBar(Orientation p_orientation=VERTICAL); + virtual Size2 get_minimum_size() const; + ScrollBar(Orientation p_orientation=VERTICAL); ~ScrollBar(); }; class HScrollBar : public ScrollBar { - + OBJ_TYPE( HScrollBar, ScrollBar ); public: - + HScrollBar() : ScrollBar(HORIZONTAL) { set_v_size_flags(0); } }; class VScrollBar : public ScrollBar { - + OBJ_TYPE( VScrollBar, ScrollBar ); public: - + VScrollBar() : ScrollBar(VERTICAL) { set_h_size_flags(0); } }; diff --git a/scene/gui/scroll_container.cpp b/scene/gui/scroll_container.cpp index a2fc038f9e..9bf93aff77 100644 --- a/scene/gui/scroll_container.cpp +++ b/scene/gui/scroll_container.cpp @@ -35,7 +35,37 @@ bool ScrollContainer::clips_input() const { Size2 ScrollContainer::get_minimum_size() const { - return Size2(1, 1); + + Size2 min_size; + + for(int i=0;i<get_child_count();i++) { + + Control *c = get_child(i)->cast_to<Control>(); + if (!c) + continue; + if (c->is_set_as_toplevel()) + continue; + if (c == h_scroll || c == v_scroll) + continue; + Size2 minsize = c->get_combined_minimum_size(); + + + if (!scroll_h) { + min_size.x = MAX(min_size.x, minsize.x); + } + if (!scroll_v) { + min_size.y = MAX(min_size.y, minsize.y); + + } + } + + if (h_scroll->is_visible()) { + min_size.y+=h_scroll->get_minimum_size().y; + } + if (v_scroll->is_visible()) { + min_size.x+=v_scroll->get_minimum_size().x; + } + return min_size; }; @@ -179,6 +209,12 @@ void ScrollContainer::_notification(int p_what) { child_max_size = Size2(0, 0); Size2 size = get_size(); + if (h_scroll->is_visible()) + size.y-=h_scroll->get_minimum_size().y; + + if (v_scroll->is_visible()) + size.x-=h_scroll->get_minimum_size().x; + for(int i=0;i<get_child_count();i++) { Control *c = get_child(i)->cast_to<Control>(); diff --git a/scene/gui/slider.cpp b/scene/gui/slider.cpp index 7ef9d4216b..f66f909517 100644 --- a/scene/gui/slider.cpp +++ b/scene/gui/slider.cpp @@ -231,13 +231,13 @@ void Slider::_bind_methods() { ObjectTypeDB::bind_method(_MD("_input_event"),&Slider::_input_event); ObjectTypeDB::bind_method(_MD("set_ticks","count"),&Slider::set_ticks); ObjectTypeDB::bind_method(_MD("get_ticks"),&Slider::get_ticks); - - ObjectTypeDB::bind_method(_MD("get_ticks_on_borders"),&Slider::get_ticks_on_borders); + + ObjectTypeDB::bind_method(_MD("get_ticks_on_borders"),&Slider::get_ticks_on_borders); ObjectTypeDB::bind_method(_MD("set_ticks_on_borders","ticks_on_border"),&Slider::set_ticks_on_borders); - + ADD_PROPERTY( PropertyInfo( Variant::INT, "tick_count", PROPERTY_HINT_RANGE,"0,4096,1"), _SCS("set_ticks"), _SCS("get_ticks") ); ADD_PROPERTY( PropertyInfo( Variant::BOOL, "ticks_on_borders" ), _SCS("set_ticks_on_borders"), _SCS("get_ticks_on_borders") ); - + } Slider::Slider(Orientation p_orientation) { diff --git a/scene/gui/slider.h b/scene/gui/slider.h index f85e6d1807..cf009b9a75 100644 --- a/scene/gui/slider.h +++ b/scene/gui/slider.h @@ -53,7 +53,7 @@ protected: void _notification(int p_what); static void _bind_methods(); bool ticks_on_borders; - + public: virtual Size2 get_minimum_size() const; diff --git a/scene/gui/tab_container.cpp b/scene/gui/tab_container.cpp index 91d0fc157e..1c6a97bab8 100644 --- a/scene/gui/tab_container.cpp +++ b/scene/gui/tab_container.cpp @@ -27,7 +27,7 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ #include "tab_container.h" - + #include "message_queue.h" @@ -209,7 +209,7 @@ void TabContainer::_notification(int p_what) { Ref<Texture> incr = get_icon("increment"); Ref<Texture> incr_hl = get_icon("increment_hilite"); Ref<Texture> decr = get_icon("decrement"); - Ref<Texture> decr_hl = get_icon("decrement_hilite"); + Ref<Texture> decr_hl = get_icon("decrement_hilite"); Ref<Texture> menu = get_icon("menu"); Ref<Texture> menu_hl = get_icon("menu_hl"); Ref<Font> font = get_font("font"); diff --git a/scene/gui/tabs.cpp b/scene/gui/tabs.cpp index c3e75842c3..9692d08882 100644 --- a/scene/gui/tabs.cpp +++ b/scene/gui/tabs.cpp @@ -493,7 +493,7 @@ void Tabs::set_current_tab(int p_current) { ERR_FAIL_INDEX( p_current, get_tab_count() ); //printf("DEBUG %p: set_current_tab to %i\n", this, p_current); - current=p_current; + current=p_current; _change_notify("current_tab"); //emit_signal("tab_changed",current); diff --git a/scene/gui/text_edit.cpp b/scene/gui/text_edit.cpp index bf012b7a03..e268375c8a 100644 --- a/scene/gui/text_edit.cpp +++ b/scene/gui/text_edit.cpp @@ -38,12 +38,12 @@ #define TAB_PIXELS static bool _is_text_char(CharType c) { - + return (c>='a' && c<='z') || (c>='A' && c<='Z') || (c>='0' && c<='9') || c=='_'; } static bool _is_symbol(CharType c) { - + return c!='_' && ((c>='!' && c<='/') || (c>=':' && c<='@') || (c>='[' && c<='`') || (c>='{' && c<='~') || c=='\t'); } @@ -84,81 +84,81 @@ static CharType _get_right_pair_symbol(CharType c) { } void TextEdit::Text::set_font(const Ref<Font>& p_font) { - + font=p_font; } void TextEdit::Text::set_tab_size(int p_tab_size) { - + tab_size=p_tab_size; } void TextEdit::Text::_update_line_cache(int p_line) const { - + int w = 0; int tab_w=font->get_char_size(' ').width*tab_size; int len = text[p_line].data.length(); const CharType *str = text[p_line].data.c_str(); - + //update width - + for(int i=0;i<len;i++) { if (str[i]=='\t') { - + int left = w%tab_w; if (left==0) w+=tab_w; else w+=tab_w-w%tab_w; // is right... - + } else { - + w+=font->get_char_size(str[i],str[i+1]).width; } } - - + + text[p_line].width_cache=w; - + //update regions - + text[p_line].region_info.clear(); - + for(int i=0;i<len;i++) { - + if (!_is_symbol(str[i])) continue; if (str[i]=='\\') { i++; //skip quoted anything continue; } - + int left=len-i; - + for(int j=0;j<color_regions->size();j++) { - + const ColorRegion& cr=color_regions->operator [](j); - + /* BEGIN */ - + int lr=cr.begin_key.length(); if (lr==0 || lr>left) continue; - + const CharType* kc = cr.begin_key.c_str(); - + bool match=true; - + for(int k=0;k<lr;k++) { if (kc[k]!=str[i+k]) { match=false; break; } } - + if (match) { - + ColorRegionInfo cri; cri.end=false; cri.region=j; @@ -166,26 +166,26 @@ void TextEdit::Text::_update_line_cache(int p_line) const { i+=lr-1; break; } - + /* END */ - + lr=cr.end_key.length(); if (lr==0 || lr>left) continue; - + kc = cr.end_key.c_str(); - + match=true; - + for(int k=0;k<lr;k++) { if (kc[k]!=str[i+k]) { match=false; break; } } - + if (match) { - + ColorRegionInfo cri; cri.end=true; cri.region=j; @@ -193,72 +193,72 @@ void TextEdit::Text::_update_line_cache(int p_line) const { i+=lr-1; break; } - + } } - - + + } const Map<int,TextEdit::Text::ColorRegionInfo>& TextEdit::Text::get_color_region_info(int p_line) { - + Map<int,ColorRegionInfo> *cri=NULL; ERR_FAIL_INDEX_V(p_line,text.size(),*cri); //enjoy your crash - + if (text[p_line].width_cache==-1) { _update_line_cache(p_line); } - + return text[p_line].region_info; } int TextEdit::Text::get_line_width(int p_line) const { - + ERR_FAIL_INDEX_V(p_line,text.size(),-1); - + if (text[p_line].width_cache==-1) { _update_line_cache(p_line); } - + return text[p_line].width_cache; } void TextEdit::Text::clear_caches() { - + for(int i=0;i<text.size();i++) text[i].width_cache=-1; - + } void TextEdit::Text::clear() { - - + + text.clear();; insert(0,""); } int TextEdit::Text::get_max_width() const { //quite some work.. but should be fast enough. - + int max = 0; - + for(int i=0;i<text.size();i++) max=MAX(max,get_line_width(i)); return max; - + } void TextEdit::Text::set(int p_line,const String& p_text) { - + ERR_FAIL_INDEX(p_line,text.size()); - + text[p_line].width_cache=-1; text[p_line].data=p_text; } void TextEdit::Text::insert(int p_at,const String& p_text) { - + Line line; line.marked=false; line.breakpoint=false; @@ -267,86 +267,89 @@ void TextEdit::Text::insert(int p_at,const String& p_text) { text.insert(p_at,line); } void TextEdit::Text::remove(int p_at) { - + text.remove(p_at); } void TextEdit::_update_scrollbars() { - - + + Size2 size = get_size(); Size2 hmin = h_scroll->get_combined_minimum_size(); Size2 vmin = v_scroll->get_combined_minimum_size(); - - - + + + v_scroll->set_begin( Point2(size.width - vmin.width, cache.style_normal->get_margin(MARGIN_TOP)) ); v_scroll->set_end( Point2(size.width, size.height - cache.style_normal->get_margin(MARGIN_TOP) - cache.style_normal->get_margin(MARGIN_BOTTOM)) ); - + h_scroll->set_begin( Point2( 0, size.height - hmin.height) ); h_scroll->set_end( Point2(size.width-vmin.width, size.height) ); - - + + int hscroll_rows = ((hmin.height-1)/get_row_height())+1; int visible_rows = get_visible_rows(); int total_rows = text.size(); - + if (scroll_past_end_of_file_enabled) { + total_rows += get_visible_rows() - 1; + } + int vscroll_pixels = v_scroll->get_combined_minimum_size().width; int visible_width = size.width - cache.style_normal->get_minimum_size().width; int total_width = text.get_max_width() + vmin.x; - + if (line_numbers) total_width += cache.line_number_w; - + bool use_hscroll=true; bool use_vscroll=true; - + if (total_rows <= visible_rows && total_width <= visible_width) { //thanks yessopie for this clever bit of logic use_hscroll=false; use_vscroll=false; - + } else { - + if (total_rows > visible_rows && total_width <= visible_width - vscroll_pixels) { //thanks yessopie for this clever bit of logic use_hscroll=false; } - + if (total_rows <= visible_rows - hscroll_rows && total_width > visible_width) { //thanks yessopie for this clever bit of logic use_vscroll=false; } } - + updating_scrolls=true; - + if (use_vscroll) { - + v_scroll->show(); v_scroll->set_max(total_rows); v_scroll->set_page(visible_rows); v_scroll->set_val(cursor.line_ofs); - + } else { cursor.line_ofs = 0; v_scroll->hide(); } - + if (use_hscroll) { - + h_scroll->show(); h_scroll->set_max(total_width); h_scroll->set_page(visible_width); h_scroll->set_val(cursor.x_ofs); - + } else { - + h_scroll->hide(); } - - - + + + updating_scrolls=false; } @@ -375,32 +378,32 @@ void TextEdit::_click_selection_held() { void TextEdit::_notification(int p_what) { - + switch(p_what) { case NOTIFICATION_ENTER_TREE: { - + _update_caches(); if (cursor_changed_dirty) MessageQueue::get_singleton()->push_call(this,"_cursor_changed_emit"); if (text_changed_dirty) MessageQueue::get_singleton()->push_call(this,"_text_changed_emit"); - + } break; case NOTIFICATION_RESIZED: { - + cache.size=get_size(); adjust_viewport_to_cursor(); - - + + } break; case NOTIFICATION_THEME_CHANGED: { - + _update_caches(); }; case NOTIFICATION_DRAW: { - + int line_number_char_count=0; - + { int lc=text.size()+1; cache.line_number_w=0; @@ -408,20 +411,20 @@ void TextEdit::_notification(int p_what) { cache.line_number_w+=1; lc/=10; }; - + if (line_numbers) { - + line_number_char_count=cache.line_number_w; cache.line_number_w=(cache.line_number_w+1)*cache.font->get_char_size('0').width; } else { cache.line_number_w=0; } - - + + } _update_scrollbars(); - - + + RID ci = get_canvas_item(); int xmargin_beg=cache.style_normal->get_margin(MARGIN_LEFT)+cache.line_number_w; int xmargin_end=cache.size.width-cache.style_normal->get_margin(MARGIN_RIGHT); @@ -429,56 +432,56 @@ void TextEdit::_notification(int p_what) { cache.style_normal->draw(ci,Rect2(Point2(),cache.size)); if (has_focus()) cache.style_focus->draw(ci,Rect2(Point2(),cache.size)); - - + + int ascent=cache.font->get_ascent(); - + int visible_rows = get_visible_rows(); - + int tab_w = cache.font->get_char_size(' ').width*tab_size; - + Color color = cache.font_color; int in_region=-1; - + if (syntax_coloring) { - + if (custom_bg_color.a>0.01) { - + Point2i ofs = Point2i(cache.style_normal->get_offset())/2.0; VisualServer::get_singleton()->canvas_item_add_rect(ci,Rect2(ofs, get_size()-cache.style_normal->get_minimum_size()+ofs),custom_bg_color); } //compute actual region to start (may be inside say, a comment). //slow in very large documments :( but ok for source! - + for(int i=0;i<cursor.line_ofs;i++) { - + const Map<int,Text::ColorRegionInfo>& cri_map=text.get_color_region_info(i); - + if (in_region>=0 && color_regions[in_region].line_only) { in_region=-1; //reset regions that end at end of line } - + for( const Map<int,Text::ColorRegionInfo>::Element* E= cri_map.front();E;E=E->next() ) { - + const Text::ColorRegionInfo &cri=E->get(); - + if (in_region==-1) { - + if (!cri.end) { - + in_region=cri.region; } } else if (in_region==cri.region && !color_regions[cri.region].line_only) { //ignore otherwise - + if (cri.end || color_regions[cri.region].eq) { - + in_region=-1; } } } } } - + int brace_open_match_line=-1; int brace_open_match_column=-1; bool brace_open_matching=false; @@ -487,15 +490,15 @@ void TextEdit::_notification(int p_what) { int brace_close_match_column=-1; bool brace_close_matching=false; bool brace_close_mismatch=false; - - + + if (brace_matching_enabled) { - + if (cursor.column<text[cursor.line].length()) { //check for open CharType c = text[cursor.line][cursor.column]; CharType closec=0; - + if (c=='[') { closec=']'; } else if (c=='{') { @@ -503,17 +506,17 @@ void TextEdit::_notification(int p_what) { } else if (c=='(') { closec=')'; } - + if (closec!=0) { - + int stack=1; - - + + for(int i=cursor.line;i<text.size();i++) { - + int from = i==cursor.line?cursor.column+1:0; for(int j=from;j<text[i].length();j++) { - + CharType cc = text[i][j]; //ignore any brackets inside a string if (cc== '"' || cc == '\'') { @@ -541,32 +544,32 @@ void TextEdit::_notification(int p_what) { stack++; else if (cc==closec) stack--; - + if (stack==0) { brace_open_match_line=i; brace_open_match_column=j; brace_open_matching=true; - + break; } } if (brace_open_match_line!=-1) break; } - + if (!brace_open_matching) brace_open_mismatch=true; - - + + } } - + if (cursor.column>0) { CharType c = text[cursor.line][cursor.column-1]; CharType closec=0; - - - + + + if (c==']') { closec='['; } else if (c=='}') { @@ -574,17 +577,17 @@ void TextEdit::_notification(int p_what) { } else if (c==')') { closec='('; } - + if (closec!=0) { - + int stack=1; - - + + for(int i=cursor.line;i>=0;i--) { - + int from = i==cursor.line?cursor.column-2:text[i].length()-1; for(int j=from;j>=0;j--) { - + CharType cc = text[i][j]; //ignore any brackets inside a string if (cc== '"' || cc == '\'') { @@ -613,49 +616,49 @@ void TextEdit::_notification(int p_what) { stack++; else if (cc==closec) stack--; - + if (stack==0) { brace_close_match_line=i; brace_close_match_column=j; brace_close_matching=true; - + break; } } if (brace_close_match_line!=-1) break; } - + if (!brace_close_matching) brace_close_mismatch=true; - - + + } - - + + } } - - + + int deregion=0; //force it to clear inrgion Point2 cursor_pos; - + for (int i=0;i<visible_rows;i++) { - + int line=i+cursor.line_ofs; - + if (line<0 || line>=(int)text.size()) continue; - + const String &str=text[line]; - + int char_margin=xmargin_beg-cursor.x_ofs; int char_ofs=0; int ofs_y=i*get_row_height()+cache.line_spacing/2; bool prev_is_char=false; bool in_keyword=false; Color keyword_color; - + if (cache.line_number_w) { Color fcol = cache.font_color; fcol.a*=0.4; @@ -663,191 +666,191 @@ void TextEdit::_notification(int p_what) { while (fc.length() < line_number_char_count) { fc="0"+fc; } - + cache.font->draw(ci,Point2(cache.style_normal->get_margin(MARGIN_LEFT),ofs_y+cache.font->get_ascent()),fc,fcol); } - + const Map<int,Text::ColorRegionInfo>& cri_map=text.get_color_region_info(line); - - + + if (text.is_marked(line)) { - + VisualServer::get_singleton()->canvas_item_add_rect(ci,Rect2(xmargin_beg, ofs_y,xmargin_end-xmargin_beg,get_row_height()),cache.mark_color); } - + if (text.is_breakpoint(line)) { - + VisualServer::get_singleton()->canvas_item_add_rect(ci,Rect2(xmargin_beg, ofs_y,xmargin_end-xmargin_beg,get_row_height()),cache.breakpoint_color); } - - + + if (line==cursor.line) { - + VisualServer::get_singleton()->canvas_item_add_rect(ci,Rect2(xmargin_beg, ofs_y,xmargin_end-xmargin_beg,get_row_height()),cache.current_line_color); - + } for (int j=0;j<str.length();j++) { - + //look for keyword - + if (deregion>0) { deregion--; if (deregion==0) in_region=-1; } if (syntax_coloring && deregion==0) { - - + + color = cache.font_color; //reset //find keyword bool is_char = _is_text_char(str[j]); bool is_symbol=_is_symbol(str[j]); - + if (j==0 && in_region>=0 && color_regions[in_region].line_only) { in_region=-1; //reset regions that end at end of line } - + if (is_symbol && cri_map.has(j)) { - - + + const Text::ColorRegionInfo &cri=cri_map[j]; - + if (in_region==-1) { - + if (!cri.end) { - + in_region=cri.region; } } else if (in_region==cri.region && !color_regions[cri.region].line_only) { //ignore otherwise - + if (cri.end || color_regions[cri.region].eq) { - + deregion=color_regions[cri.region].eq?color_regions[cri.region].begin_key.length():color_regions[cri.region].end_key.length(); } } } - + if (!is_char) in_keyword=false; - + if (in_region==-1 && !in_keyword && is_char && !prev_is_char) { - + int to=j; while(to<str.length() && _is_text_char(str[to])) to++; - + uint32_t hash = String::hash(&str[j],to-j); StrRange range(&str[j],to-j); - + const Color *col=keywords.custom_getptr(range,hash); - + if (col) { - + in_keyword=true; keyword_color=*col; } } - - + + if (in_region>=0) color=color_regions[in_region].color; else if (in_keyword) color=keyword_color; else if (is_symbol) color=symbol_color; - + prev_is_char=is_char; - + } int char_w; - + //handle tabulator - - + + if (str[j]=='\t') { int left = char_ofs%tab_w; if (left==0) char_w=tab_w; else char_w=tab_w-char_ofs%tab_w; // is right... - + } else { char_w=cache.font->get_char_size(str[j],str[j+1]).width; } - + if ( (char_ofs+char_margin)<xmargin_beg) { char_ofs+=char_w; continue; } - + if ( (char_ofs+char_margin+char_w)>=xmargin_end) { if (syntax_coloring) continue; else break; } - + bool in_selection = (selection.active && line>=selection.from_line && line<=selection.to_line && (line>selection.from_line || j>=selection.from_column) && (line<selection.to_line || j<selection.to_column)); - - + + if (in_selection) { //inside selection! VisualServer::get_singleton()->canvas_item_add_rect(ci,Rect2(Point2i( char_ofs+char_margin, ofs_y ), Size2i(char_w,get_row_height())),cache.selection_color); } - - + + if (brace_matching_enabled) { if ( (brace_open_match_line==line && brace_open_match_column==j) || (cursor.column==j && cursor.line==line && (brace_open_matching||brace_open_mismatch))) { - + if (brace_open_mismatch) color=cache.brace_mismatch_color; cache.font->draw_char(ci,Point2i( char_ofs+char_margin, ofs_y+ascent),'_',str[j+1],in_selection?cache.font_selected_color:color); - + } - + if ( (brace_close_match_line==line && brace_close_match_column==j) || (cursor.column==j+1 && cursor.line==line && (brace_close_matching||brace_close_mismatch))) { - - + + if (brace_close_mismatch) color=cache.brace_mismatch_color; cache.font->draw_char(ci,Point2i( char_ofs+char_margin, ofs_y+ascent),'_',str[j+1],in_selection?cache.font_selected_color:color); - + } } - - + + if (str[j]>=32) cache.font->draw_char(ci,Point2i( char_ofs+char_margin, ofs_y+ascent),str[j],str[j+1],in_selection?cache.font_selected_color:color); - + else if (draw_tabs && str[j]=='\t') { int yofs= (get_row_height() - cache.tab_icon->get_height())/2; cache.tab_icon->draw(ci, Point2(char_ofs+char_margin,ofs_y+yofs),in_selection?cache.font_selected_color:color); } - - + + if (cursor.column==j && cursor.line==line) { - + cursor_pos = Point2i( char_ofs+char_margin, ofs_y ); VisualServer::get_singleton()->canvas_item_add_rect(ci,Rect2(cursor_pos, Size2i(1,get_row_height())),cache.font_color); - - + + } char_ofs+=char_w; - + } - + if (cursor.column==str.length() && cursor.line==line && (char_ofs+char_margin)>=xmargin_beg) { - + cursor_pos=Point2i( char_ofs+char_margin, ofs_y ); VisualServer::get_singleton()->canvas_item_add_rect(ci,Rect2(cursor_pos, Size2i(1,get_row_height())),cache.font_color); - + } } - - + + bool completion_below = false; if (completion_active) { // code completion box Ref<StyleBox> csb = get_stylebox("completion"); @@ -858,15 +861,15 @@ void TextEdit::_notification(int p_what) { existing.a=0.2; int scrollw = get_constant("completion_scroll_width"); Color scrollc = get_color("completion_scroll_color"); - - - + + + int lines = MIN(completion_options.size(),maxlines); int w=0; int h=lines*get_row_height(); int nofs = cache.font->get_string_size(completion_base).width; - - + + if (completion_options.size() < 50) { for(int i=0;i<completion_options.size();i++) { int w2=MIN(cache.font->get_string_size(completion_options[i]).x,cmax_width); @@ -876,39 +879,40 @@ void TextEdit::_notification(int p_what) { } else { w=cmax_width; } - + int th = h + csb->get_minimum_size().y; + if (cursor_pos.y+get_row_height()+th > get_size().height) { completion_rect.pos.y=cursor_pos.y-th; } else { completion_rect.pos.y=cursor_pos.y+get_row_height()+csb->get_offset().y; - + completion_below = true; } - + if (cursor_pos.x-nofs+w+scrollw > get_size().width) { completion_rect.pos.x=get_size().width-w-scrollw; } else { completion_rect.pos.x=cursor_pos.x-nofs; } - + completion_rect.size.width=w+2; completion_rect.size.height=h; if (completion_options.size()<=maxlines) scrollw=0; - + draw_style_box(csb,Rect2(completion_rect.pos-csb->get_offset(),completion_rect.size+csb->get_minimum_size()+Size2(scrollw,0))); - - + + int line_from = CLAMP(completion_index - lines/2, 0, completion_options.size() - lines); draw_style_box(csel,Rect2(Point2(completion_rect.pos.x,completion_rect.pos.y+(completion_index-line_from)*get_row_height()),Size2(completion_rect.size.width,get_row_height()))); - + draw_rect(Rect2(completion_rect.pos,Size2(nofs,completion_rect.size.height)),existing); - - - - + + + + for(int i=0;i<lines;i++) { - + int l = line_from + i; ERR_CONTINUE( l < 0 || l>= completion_options.size()); Color text_color = cache.font_color; @@ -919,31 +923,47 @@ void TextEdit::_notification(int p_what) { } draw_string(cache.font,Point2(completion_rect.pos.x,completion_rect.pos.y+i*get_row_height()+cache.font->get_ascent()),completion_options[l],text_color,completion_rect.size.width); } - + if (scrollw) { //draw a small scroll rectangle to show a position in the options float r = maxlines / (float)completion_options.size(); float o = line_from / (float)completion_options.size(); draw_rect(Rect2(completion_rect.pos.x+completion_rect.size.width,completion_rect.pos.y+o*completion_rect.size.y,scrollw,completion_rect.size.y*r),scrollc); } - + completion_line_ofs=line_from; - + } - + + // check to see if the hint should be drawn + bool show_hint = false; if (completion_hint!="") { - + if (completion_active) { + if (completion_below && !callhint_below) { + show_hint = true; + } + else if (!completion_below && callhint_below) { + show_hint = true; + } + } + else { + show_hint = true; + } + } + + if (show_hint) { + Ref<StyleBox> sb = get_stylebox("panel","TooltipPanel"); Ref<Font> font = cache.font; Color font_color = get_color("font_color","TooltipLabel"); - - + + int max_w=0; int sc = completion_hint.get_slice_count("\n"); int offset=0; int spacing=0; for(int i=0;i<sc;i++) { - + String l = completion_hint.get_slice("\n",i); int len = font->get_string_size(l).x; max_w = MAX(len,max_w); @@ -952,35 +972,43 @@ void TextEdit::_notification(int p_what) { } else { spacing+=cache.line_spacing; } - - + + } - - - + + + Size2 size = Size2(max_w,sc*font->get_height()+spacing); Size2 minsize = size+sb->get_minimum_size(); - - + + if (completion_hint_offset==-0xFFFF) { completion_hint_offset=cursor_pos.x-offset; } - - - Point2 hint_ofs = Vector2(completion_hint_offset,cursor_pos.y-minsize.y); + + + Point2 hint_ofs = Vector2(completion_hint_offset,cursor_pos.y) + callhint_offset; + + if (callhint_below) { + hint_ofs.y += get_row_height() + sb->get_offset().y; + } + else { + hint_ofs.y -= minsize.y + sb->get_offset().y; + } + draw_style_box(sb,Rect2(hint_ofs,minsize)); - + spacing=0; for(int i=0;i<sc;i++) { int begin=0; int end=0; String l = completion_hint.get_slice("\n",i); - + if (l.find(String::chr(0xFFFF))!=-1) { begin = font->get_string_size(l.substr(0,l.find(String::chr(0xFFFF)))).x; end = font->get_string_size(l.substr(0,l.rfind(String::chr(0xFFFF)))).x; } - + draw_string(font,hint_ofs+sb->get_offset()+Vector2(0,font->get_ascent()+font->get_height()*i+spacing),l.replace(String::chr(0xFFFF),""),font_color); if (end>0) { Vector2 b = hint_ofs+sb->get_offset()+Vector2(begin,font->get_height()+font->get_height()*i+spacing-1); @@ -989,60 +1017,60 @@ void TextEdit::_notification(int p_what) { spacing+=cache.line_spacing; } } - - + + } break; case NOTIFICATION_FOCUS_ENTER: { - + if (OS::get_singleton()->has_virtual_keyboard()) OS::get_singleton()->show_virtual_keyboard(get_text(),get_global_rect()); - + } break; case NOTIFICATION_FOCUS_EXIT: { - + if (OS::get_singleton()->has_virtual_keyboard()) OS::get_singleton()->hide_virtual_keyboard(); - + } break; - + } } void TextEdit::_consume_pair_symbol(CharType ch) { - + int cursor_position_to_move = cursor_get_column() + 1; - + CharType ch_single[2] = {ch, 0}; CharType ch_single_pair[2] = {_get_right_pair_symbol(ch), 0}; CharType ch_pair[3] = {ch, _get_right_pair_symbol(ch), 0}; - + if(is_selection_active()) { - + int new_column,new_line; - + _begin_compex_operation(); _insert_text(get_selection_from_line(), get_selection_from_column(), ch_single, &new_line, &new_column); - + int to_col_offset = 0; if(get_selection_from_line() == get_selection_to_line()) to_col_offset = 1; - + _insert_text(get_selection_to_line(), get_selection_to_column() + to_col_offset, ch_single_pair, &new_line,&new_column); _end_compex_operation(); - + cursor_set_line(get_selection_to_line()); cursor_set_column(get_selection_to_column() + to_col_offset); - + deselect(); update(); return; } - + if( (ch == '\'' || ch == '"') && cursor_get_column() > 0 && _is_text_char(text[cursor.line][cursor_get_column() - 1]) @@ -1051,7 +1079,7 @@ void TextEdit::_consume_pair_symbol(CharType ch) { cursor_set_column(cursor_position_to_move); return; } - + if(cursor_get_column() < text[cursor.line].length()) { if(_is_text_char(text[cursor.line][cursor_get_column()])) { insert_text_at_cursor(ch_single); @@ -1065,34 +1093,34 @@ void TextEdit::_consume_pair_symbol(CharType ch) { return; } } - - + + insert_text_at_cursor(ch_pair); cursor_set_column(cursor_position_to_move); return; - + } void TextEdit::_consume_backspace_for_pair_symbol(int prev_line, int prev_column) { - + bool remove_right_symbol = false; - + if(cursor.column < text[cursor.line].length() && cursor.column > 0) { - + CharType left_char = text[cursor.line][cursor.column - 1]; CharType right_char = text[cursor.line][cursor.column]; - + if(right_char == _get_right_pair_symbol(left_char)) { remove_right_symbol = true; } - + } if(remove_right_symbol) { _remove_text(prev_line,prev_column,cursor.line,cursor.column + 1); } else { _remove_text(prev_line,prev_column,cursor.line,cursor.column); } - + } void TextEdit::backspace_at_cursor() { @@ -1101,7 +1129,7 @@ void TextEdit::backspace_at_cursor() { if (cursor.column==0 && cursor.line==0) return; - + int prev_line = cursor.column?cursor.line:cursor.line-1; int prev_column = cursor.column?(cursor.column-1):(text[cursor.line-1].length()); if(auto_brace_completion_enabled && @@ -1111,15 +1139,15 @@ void TextEdit::backspace_at_cursor() { } else { _remove_text(prev_line,prev_column,cursor.line,cursor.column); } - + cursor_set_line(prev_line); cursor_set_column(prev_column); - + } void TextEdit::_get_mouse_pos(const Point2i& p_mouse, int &r_row, int &r_col) const { - + float rows=p_mouse.y; rows-=cache.style_normal->get_margin(MARGIN_TOP); rows/=get_row_height(); @@ -1129,56 +1157,56 @@ void TextEdit::_get_mouse_pos(const Point2i& p_mouse, int &r_row, int &r_col) co row=0; int col=0; - + if (row>=text.size()) { - + row=text.size()-1; col=text[row].size(); } else { - + col=p_mouse.x-(cache.style_normal->get_margin(MARGIN_LEFT)+cache.line_number_w); col+=cursor.x_ofs; col=get_char_pos_for( col, get_line(row) ); } - + r_row=row; r_col=col; } void TextEdit::_input_event(const InputEvent& p_input_event) { - + switch(p_input_event.type) { - + case InputEvent::MOUSE_BUTTON: { - + const InputEventMouseButton &mb=p_input_event.mouse_button; - + if (completion_active && completion_rect.has_point(Point2(mb.x,mb.y))) { - + if (!mb.pressed) return; - + if (mb.button_index==BUTTON_WHEEL_UP) { if (completion_index>0) { completion_index--; completion_current=completion_options[completion_index]; update(); } - + } if (mb.button_index==BUTTON_WHEEL_DOWN) { - + if (completion_index<completion_options.size()-1) { completion_index++; completion_current=completion_options[completion_index]; update(); } } - + if (mb.button_index==BUTTON_LEFT) { - + completion_index=CLAMP(completion_line_ofs+(mb.y-completion_rect.pos.y)/get_row_height(),0,completion_options.size()-1); - + completion_current=completion_options[completion_index]; update(); if (mb.doubleclick) @@ -1189,7 +1217,7 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { _cancel_completion(); _cancel_code_hint(); } - + if (mb.pressed) { if (mb.button_index==BUTTON_WHEEL_UP) { v_scroll->set_val( v_scroll->get_val() -3 ); @@ -1204,18 +1232,18 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { h_scroll->set_val( h_scroll->get_val() +3 ); } if (mb.button_index==BUTTON_LEFT) { - + int row,col; _get_mouse_pos(Point2i(mb.x,mb.y), row,col); - + int prev_col=cursor.column; int prev_line=cursor.line; - - - + + + cursor_set_line( row ); cursor_set_column( col ); - + if (mb.mod.shift && (cursor.column!=prev_col || cursor.line!=prev_line)) { if (!selection.active) { @@ -1270,99 +1298,99 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { - + } else { - + //if sel active and dblick last time < something - + //else selection.active=false; selection.selecting_mode=Selection::MODE_POINTER; selection.selecting_line=row; selection.selecting_column=col; } - - + + if (!mb.doubleclick && (OS::get_singleton()->get_ticks_msec()-last_dblclk)<600 && cursor.line==prev_line) { //tripleclick select line select(cursor.line,0,cursor.line,text[cursor.line].length()); selection.selecting_column=0; last_dblclk=0; - + } else if (mb.doubleclick && text[cursor.line].length()) { - + //doubleclick select world String s = text[cursor.line]; int beg=CLAMP(cursor.column,0,s.length()); int end=beg; - + if (s[beg]>32 || beg==s.length()) { - + bool symbol = beg < s.length() && _is_symbol(s[beg]); //not sure if right but most editors behave like this - + while(beg>0 && s[beg-1]>32 && (symbol==_is_symbol(s[beg-1]))) { beg--; } while(end<s.length() && s[end+1]>32 && (symbol==_is_symbol(s[end+1]))) { end++; } - + if (end<s.length()) end+=1; - + select(cursor.line,beg,cursor.line,end); selection.selecting_column=beg; } - + last_dblclk = OS::get_singleton()->get_ticks_msec(); - + } - + update(); } } else { if (mb.button_index==BUTTON_LEFT) click_select_held->stop(); - + // notify to show soft keyboard notification(NOTIFICATION_FOCUS_ENTER); } - + } break; case InputEvent::MOUSE_MOTION: { - + const InputEventMouseMotion &mm=p_input_event.mouse_motion; - + if (mm.button_mask&BUTTON_MASK_LEFT) { - + if (selection.selecting_mode!=Selection::MODE_NONE) { int row,col; _get_mouse_pos(Point2i(mm.x,mm.y), row,col); - + select(selection.selecting_line,selection.selecting_column,row,col); - + cursor_set_line( row ); cursor_set_column( col ); update(); click_select_held->start(); - + } - + } - + } break; - + case InputEvent::KEY: { - + InputEventKey k=p_input_event.key; - + if (!k.pressed) return; - + if (completion_active) { if (readonly) break; @@ -1370,9 +1398,9 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { bool valid=true; if (k.mod.command || k.mod.meta) valid=false; - + if (valid) { - + if (!k.mod.alt) { if (k.scancode==KEY_UP) { @@ -1471,13 +1499,13 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { return; } } - + if (k.unicode>32) { - + if (cursor.column<text[cursor.line].length() && text[cursor.line][cursor.column]==k.unicode) { //same char, move ahead cursor_set_column(cursor.column+1); - + } else { //different char, go back const CharType chr[2] = {(CharType)k.unicode, 0}; @@ -1487,34 +1515,34 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { _insert_text_at_cursor(chr); } } - + _update_completion_candidates(); accept_event(); - + return; } } - + _cancel_completion(); - + } - + /* TEST CONTROL FIRST!! */ - + // some remaps for duplicate functions.. if (k.mod.command && !k.mod.shift && !k.mod.alt && !k.mod.meta && k.scancode==KEY_INSERT) { - + k.scancode=KEY_C; } if (!k.mod.command && k.mod.shift && !k.mod.alt && !k.mod.meta && k.scancode==KEY_INSERT) { - + k.scancode=KEY_V; k.mod.command=true; k.mod.shift=false; } - + // stuff to do when selection is active.. - + if (selection.active) { if (readonly) @@ -1523,16 +1551,16 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { bool clear=false; bool unselect=false; bool dobreak=false; - + switch(k.scancode) { - + case KEY_TAB: { - + String txt = _base_get_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column); String prev_txt=txt; - + if (k.mod.shift) { - + for(int i=0;i<txt.length();i++) { if (((i>0 && txt[i-1]=='\n') || (i==0 /*&& selection.from_column==0*/)) && (txt[i]=='\t' || txt[i]==' ')) { txt.remove(i); @@ -1540,21 +1568,21 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { } } } else { - + for(int i=0;i<txt.length();i++) { - + if (((i>0 && txt[i-1]=='\n') || (i==0 /*&& selection.from_column==0*/))) { txt=txt.insert(i,"\t"); //i--; } } } - + if (txt!=prev_txt) { - + int sel_line=selection.from_line; int sel_column=selection.from_column; - + cursor_set_line(selection.from_line); cursor_set_column(selection.from_column); _begin_compex_operation(); @@ -1568,10 +1596,10 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { selection.to_line=cursor.line; update(); } - + dobreak=true; accept_event(); - + } break; case KEY_X: case KEY_C: @@ -1596,21 +1624,21 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { break; unselect=true; break; - + default: if (k.unicode>=32 && !k.mod.command && !k.mod.alt && !k.mod.meta) clear=true; if (auto_brace_completion_enabled && _is_pair_left_symbol(k.unicode)) clear=false; } - + if (unselect) { selection.active=false; selection.selecting_mode=Selection::MODE_NONE; update(); } if (clear) { - + selection.active=false; update(); _remove_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column); @@ -1621,15 +1649,15 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { if (dobreak) break; } - + selection.selecting_text=false; - + bool scancode_handled=true; - + // special scancode test... - + switch (k.scancode) { - + case KEY_ENTER: case KEY_RETURN: { @@ -1637,7 +1665,7 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { break; String ins="\n"; - + //keep indentation for(int i=0;i<text[cursor.line].length();i++) { if (text[cursor.line][i]=='\t') @@ -1652,33 +1680,54 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { ins+="\t"; } } - + + bool first_line = false; + if (k.mod.command) { + if (k.mod.shift) { + if (cursor.line > 0) { + cursor_set_line(cursor.line - 1); + cursor_set_column(text[cursor.line].length()); + } + else { + cursor_set_column(0); + first_line = true; + } + } + else { + cursor_set_column(text[cursor.line].length()); + } + } + _insert_text_at_cursor(ins); _push_current_op(); - + + if (first_line) { + cursor_set_line(0); + } + } break; case KEY_ESCAPE: { if (completion_hint!="") { completion_hint=""; update(); - + } } break; case KEY_TAB: { - + if (readonly) break; - + if (selection.active) { - - + + } else { if (k.mod.shift) { - + int cc = cursor.column; if (cc>0 && cc<=text[cursor.line].length() && text[cursor.line][cursor.column-1]=='\t') { //simple unindent - + backspace_at_cursor(); } } else { @@ -1686,7 +1735,7 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { _insert_text_at_cursor("\t"); } } - + } break; case KEY_BACKSPACE: { if (readonly) @@ -1754,15 +1803,15 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { // numlock disabled. fallthrough to key_left } case KEY_LEFT: { - + if (k.mod.shift) _pre_shift_selection(); - + #ifdef APPLE_STYLE_KEYS if (k.mod.command) { cursor_set_column(0); } else if (k.mod.alt) { - + #else if (k.mod.alt) { scancode_handled=false; @@ -1772,21 +1821,21 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { bool prev_char=false; int cc=cursor.column; while (cc>0) { - + bool ischar=_is_text_char(text[cursor.line][cc-1]); - + if (prev_char && !ischar) break; - + prev_char=ischar; cc--; - + } - + cursor_set_column(cc); - + } else if (cursor.column==0) { - + if (cursor.line>0) { cursor_set_line(cursor.line-1); cursor_set_column(text[cursor.line].length()); @@ -1794,10 +1843,10 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { } else { cursor_set_column(cursor_get_column()-1); } - + if (k.mod.shift) _post_shift_selection(); - + } break; case KEY_KP_6: { if (k.unicode != 0) { @@ -1807,10 +1856,10 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { // numlock disabled. fallthrough to key_right } case KEY_RIGHT: { - + if (k.mod.shift) _pre_shift_selection(); - + #ifdef APPLE_STYLE_KEYS if (k.mod.command) { cursor_set_column(text[cursor.line].length()); @@ -1824,19 +1873,19 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { bool prev_char=false; int cc=cursor.column; while (cc<text[cursor.line].length()) { - + bool ischar=_is_text_char(text[cursor.line][cc]); - + if (prev_char && !ischar) break; prev_char=ischar; cc++; } - + cursor_set_column(cc); - + } else if (cursor.column==text[cursor.line].length()) { - + if (cursor.line<text.size()-1) { cursor_set_line(cursor.line+1); cursor_set_column(0); @@ -1844,10 +1893,10 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { } else { cursor_set_column(cursor_get_column()+1); } - + if (k.mod.shift) _post_shift_selection(); - + } break; case KEY_KP_8: { if (k.unicode != 0) { @@ -1857,7 +1906,7 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { // numlock disabled. fallthrough to key_up } case KEY_UP: { - + if (k.mod.shift) _pre_shift_selection(); if (k.mod.alt) { @@ -1870,11 +1919,11 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { else #endif cursor_set_line(cursor_get_line()-1); - + if (k.mod.shift) _post_shift_selection(); _cancel_code_hint(); - + } break; case KEY_KP_2: { if (k.unicode != 0) { @@ -1884,7 +1933,7 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { // numlock disabled. fallthrough to key_down } case KEY_DOWN: { - + if (k.mod.shift) _pre_shift_selection(); if (k.mod.alt) { @@ -1897,22 +1946,22 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { else #endif cursor_set_line(cursor_get_line()+1); - + if (k.mod.shift) _post_shift_selection(); _cancel_code_hint(); - + } break; - + case KEY_DELETE: { - + if (readonly) break; int curline_len = text[cursor.line].length(); - + if (cursor.line==text.size()-1 && cursor.column==curline_len) break; //nothing to do - + int next_line=cursor.column<curline_len?cursor.line:cursor.line+1; int next_column; @@ -1980,24 +2029,24 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { } #ifdef APPLE_STYLE_KEYS case KEY_HOME: { - - + + if (k.mod.shift) _pre_shift_selection(); - + cursor_set_line(0); - + if (k.mod.shift) _post_shift_selection(); - + } break; #else case KEY_HOME: { - - + + if (k.mod.shift) _pre_shift_selection(); - + // compute whitespace symbols seq length int current_line_whitespace_len = 0; while(current_line_whitespace_len < text[cursor.line].length()) { @@ -2006,20 +2055,20 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { break; current_line_whitespace_len++; } - + if(cursor_get_column() == current_line_whitespace_len) cursor_set_column(0); else cursor_set_column(current_line_whitespace_len); - + if (k.mod.command) cursor_set_line(0); - + if (k.mod.shift) _post_shift_selection(); _cancel_completion(); completion_hint=""; - + } break; #endif case KEY_KP_1: { @@ -2043,20 +2092,20 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { } break; #else case KEY_END: { - + if (k.mod.shift) _pre_shift_selection(); - + if (k.mod.command) cursor_set_line(text.size()-1); cursor_set_column(text[cursor.line].length()); - + if (k.mod.shift) _post_shift_selection(); _cancel_completion(); completion_hint=""; - + } break; #endif case KEY_KP_9: { @@ -2067,19 +2116,19 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { // numlock disabled. fallthrough to key_pageup } case KEY_PAGEUP: { - + if (k.mod.shift) _pre_shift_selection(); - + cursor_set_line(cursor_get_line()-get_visible_rows()); - + if (k.mod.shift) _post_shift_selection(); _cancel_completion(); completion_hint=""; - + } break; case KEY_KP_3: { if (k.unicode != 0) { @@ -2089,75 +2138,75 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { // numlock disabled. fallthrough to key_pageup } case KEY_PAGEDOWN: { - + if (k.mod.shift) _pre_shift_selection(); - + cursor_set_line(cursor_get_line()+get_visible_rows()); - + if (k.mod.shift) _post_shift_selection(); _cancel_completion(); completion_hint=""; - + } break; case KEY_A: { - + if (!k.mod.command || k.mod.shift || k.mod.alt) { scancode_handled=false; break; } - + select_all(); - + } break; case KEY_X: { - + if (!k.mod.command || k.mod.shift || k.mod.alt) { scancode_handled=false; break; } - + if (!selection.active){ - + String clipboard = text[cursor.line]; OS::get_singleton()->set_clipboard(clipboard); cursor_set_line(cursor.line); cursor_set_column(0); _remove_text(cursor.line,0,cursor.line,text[cursor.line].length()); - + backspace_at_cursor(); update(); cursor_set_line(cursor.line+1); cut_copy_line = true; - + } else { - + String clipboard = _base_get_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column); OS::get_singleton()->set_clipboard(clipboard); - + cursor_set_line(selection.from_line); cursor_set_column(selection.from_column); - + _remove_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column); selection.active=false; selection.selecting_mode=Selection::MODE_NONE; update(); cut_copy_line = false; } - + } break; case KEY_C: { - + if (!k.mod.command || k.mod.shift || k.mod.alt) { scancode_handled=false; break; } - + if (!selection.active){ String clipboard = _base_get_text(cursor.line,0,cursor.line,text[cursor.line].length()); OS::get_singleton()->set_clipboard(clipboard); @@ -2170,32 +2219,32 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { } } break; case KEY_Z: { - + if (!k.mod.command) { scancode_handled=false; break; } - + if (k.mod.shift) redo(); else undo(); } break; case KEY_V: { - + if (!k.mod.command || k.mod.shift || k.mod.alt) { scancode_handled=false; break; } - + String clipboard = OS::get_singleton()->get_clipboard(); - + if (selection.active) { selection.active=false; _remove_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column); cursor_set_line(selection.from_line); cursor_set_column(selection.from_column); - + } else if (cut_copy_line) { @@ -2203,9 +2252,9 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { String ins="\n"; clipboard += ins; } - + _insert_text_at_cursor(clipboard); - + update(); } break; case KEY_SPACE: { @@ -2214,15 +2263,15 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { #else if (completion_enabled && k.mod.command) { #endif - + query_code_comple(); scancode_handled=true; } else { scancode_handled=false; } - + } break; - + case KEY_U:{ if (!k.mod.command || k.mod.shift) { scancode_handled=false; @@ -2245,40 +2294,40 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { update(); } break;} - + default: { - + scancode_handled=false; } break; - + } - + if (scancode_handled) accept_event(); /* if (!scancode_handled && !k.mod.command && !k.mod.alt) { - + if (k.unicode>=32) { - + if (readonly) break; - + accept_event(); } else { - + break; } } */ if (!scancode_handled && !k.mod.command) { //for german kbds - + if (k.unicode>=32) { - + if (readonly) break; - + const CharType chr[2] = {(CharType)k.unicode, 0}; - + if (completion_hint!="" && k.unicode==')') { completion_hint=""; } @@ -2287,27 +2336,27 @@ void TextEdit::_input_event(const InputEvent& p_input_event) { } else { _insert_text_at_cursor(chr); } - + accept_event(); } else { - + break; } } - + return; } break; - + } - + } void TextEdit::_pre_shift_selection() { - - + + if (!selection.active || selection.selecting_mode==Selection::MODE_NONE) { - + selection.selecting_line=cursor.line; selection.selecting_column=cursor.column; selection.active=true; @@ -2317,115 +2366,115 @@ void TextEdit::_pre_shift_selection() { } void TextEdit::_post_shift_selection() { - - + + if (selection.active && selection.selecting_mode==Selection::MODE_SHIFT) { - + select(selection.selecting_line,selection.selecting_column,cursor.line,cursor.column); update(); } - - + + selection.selecting_text=true; } /**** TEXT EDIT CORE API ****/ void TextEdit::_base_insert_text(int p_line, int p_char,const String& p_text,int &r_end_line,int &r_end_column) { - + //save for undo... ERR_FAIL_INDEX(p_line,text.size()); ERR_FAIL_COND(p_char<0); - + /* STEP 1 add spaces if the char is greater than the end of the line */ while(p_char>text[p_line].length()) { - + text.set(p_line,text[p_line]+String::chr(' ')); } - + /* STEP 2 separate dest string in pre and post text */ - + String preinsert_text = text[p_line].substr(0,p_char); String postinsert_text = text[p_line].substr(p_char,text[p_line].size()); - + /* STEP 3 remove \r from source text and separate in substrings */ - + //buh bye \r and split Vector<String> substrings = p_text.replace("\r","").split("\n"); - - + + for(int i=0;i<substrings.size();i++) { //insert the substrings - + if (i==0) { - + text.set(p_line,preinsert_text+substrings[i]); } else { - + text.insert(p_line+i,substrings[i]); } - + if (i==substrings.size()-1){ - + text.set(p_line+i,text[p_line+i]+postinsert_text); } } - + r_end_line=p_line+substrings.size()-1; r_end_column=text[r_end_line].length()-postinsert_text.length(); - + if (!text_changed_dirty && !setting_text) { if (is_inside_tree()) MessageQueue::get_singleton()->push_call(this,"_text_changed_emit"); text_changed_dirty=true; } - + } String TextEdit::_base_get_text(int p_from_line, int p_from_column,int p_to_line,int p_to_column) const { - + ERR_FAIL_INDEX_V(p_from_line,text.size(),String()); ERR_FAIL_INDEX_V(p_from_column,text[p_from_line].length()+1,String()); ERR_FAIL_INDEX_V(p_to_line,text.size(),String()); ERR_FAIL_INDEX_V(p_to_column,text[p_to_line].length()+1,String()); ERR_FAIL_COND_V(p_to_line < p_from_line ,String()); // from > to ERR_FAIL_COND_V(p_to_line == p_from_line && p_to_column<p_from_column,String()); // from > to - + String ret; - + for(int i=p_from_line;i<=p_to_line;i++) { - + int begin = (i==p_from_line)?p_from_column:0; int end = (i==p_to_line)?p_to_column:text[i].length(); - + if (i>p_from_line) ret+="\n"; ret+=text[i].substr(begin,end-begin); } - + return ret; } void TextEdit::_base_remove_text(int p_from_line, int p_from_column,int p_to_line,int p_to_column) { - + ERR_FAIL_INDEX(p_from_line,text.size()); ERR_FAIL_INDEX(p_from_column,text[p_from_line].length()+1); ERR_FAIL_INDEX(p_to_line,text.size()); ERR_FAIL_INDEX(p_to_column,text[p_to_line].length()+1); ERR_FAIL_COND(p_to_line < p_from_line ); // from > to ERR_FAIL_COND(p_to_line == p_from_line && p_to_column<p_from_column); // from > to - - + + String pre_text = text[p_from_line].substr(0,p_from_column); String post_text = text[p_to_line].substr(p_to_column,text[p_to_line].length()); - + for(int i=p_from_line;i<p_to_line;i++) { - + text.remove(p_from_line+1); } - + text.set(p_from_line,pre_text+post_text); - + if (!text_changed_dirty && !setting_text) { if (is_inside_tree()) MessageQueue::get_singleton()->push_call(this,"_text_changed_emit"); @@ -2434,24 +2483,24 @@ void TextEdit::_base_remove_text(int p_from_line, int p_from_column,int p_to_lin } void TextEdit::_insert_text(int p_line, int p_char,const String& p_text,int *r_end_line,int *r_end_column) { - + if (!setting_text) idle_detect->start(); - + if (undo_enabled) { _clear_redo(); } - + int retline,retchar; _base_insert_text(p_line,p_char,p_text,retline,retchar); if (r_end_line) *r_end_line=retline; if (r_end_column) *r_end_column=retchar; - + if (!undo_enabled) return; - + /* UNDO!! */ TextOperation op; op.type=TextOperation::TYPE_INSERT; @@ -2463,45 +2512,47 @@ void TextEdit::_insert_text(int p_line, int p_char,const String& p_text,int *r_e op.version=++version; op.chain_forward=false; op.chain_backward=false; - + //see if it shold just be set as current op if (current_op.type!=op.type) { + op.prev_version = get_version(); _push_current_op(); current_op=op; - + return; //set as current op, return } //see if it can be merged if (current_op.to_line!=p_line || current_op.to_column!=p_char) { + op.prev_version = get_version(); _push_current_op(); current_op=op; return; //set as current op, return } //merge current op - + current_op.text+=p_text; current_op.to_column=retchar; current_op.to_line=retline; current_op.version=op.version; - + } void TextEdit::_remove_text(int p_from_line, int p_from_column,int p_to_line,int p_to_column) { - + if (!setting_text) idle_detect->start(); - + String text; if (undo_enabled) { _clear_redo(); text=_base_get_text(p_from_line,p_from_column,p_to_line,p_to_column); } - + _base_remove_text(p_from_line,p_from_column,p_to_line,p_to_column); - + if (!undo_enabled) return; - + /* UNDO!! */ TextOperation op; op.type=TextOperation::TYPE_REMOVE; @@ -2513,9 +2564,10 @@ void TextEdit::_remove_text(int p_from_line, int p_from_column,int p_to_line,int op.version=++version; op.chain_forward=false; op.chain_backward=false; - + //see if it shold just be set as current op if (current_op.type!=op.type) { + op.prev_version = get_version(); _push_current_op(); current_op=op; return; //set as current op, return @@ -2529,26 +2581,27 @@ void TextEdit::_remove_text(int p_from_line, int p_from_column,int p_to_line,int return; //update current op } if (current_op.from_line==p_from_line && current_op.from_column==p_from_column) { - + //current_op.text=text+current_op.text; //current_op.from_line=p_from_line; //current_op.from_column=p_from_column; //return; //update current op } - + + op.prev_version = get_version(); _push_current_op(); current_op=op; - + } void TextEdit::_insert_text_at_cursor(const String& p_text) { - + int new_column,new_line; _insert_text(cursor.line,cursor.column,p_text,&new_line,&new_column); cursor_set_line(new_line); cursor_set_column(new_column); - + update(); } @@ -2556,144 +2609,144 @@ void TextEdit::_insert_text_at_cursor(const String& p_text) { int TextEdit::get_char_count() { - + int totalsize=0; - + for (int i=0;i<text.size();i++) { - + if (i>0) totalsize++; // incliude \n totalsize+=text[i].length(); } - + return totalsize; // omit last \n } Size2 TextEdit::get_minimum_size() { - + return cache.style_normal->get_minimum_size(); } int TextEdit::get_visible_rows() const { - + int total=cache.size.height; total-=cache.style_normal->get_minimum_size().height; total/=get_row_height(); return total; } void TextEdit::adjust_viewport_to_cursor() { - + if (cursor.line_ofs>cursor.line) cursor.line_ofs=cursor.line; - + int visible_width=cache.size.width-cache.style_normal->get_minimum_size().width-cache.line_number_w; if (v_scroll->is_visible()) visible_width-=v_scroll->get_combined_minimum_size().width; visible_width-=20; // give it a little more space - - + + //printf("rowofs %i, visrows %i, cursor.line %i\n",cursor.line_ofs,get_visible_rows(),cursor.line); - + int visible_rows = get_visible_rows(); if (h_scroll->is_visible()) visible_rows-=((h_scroll->get_combined_minimum_size().height-1)/get_row_height()); - + if (cursor.line>=(cursor.line_ofs+visible_rows)) cursor.line_ofs=cursor.line-visible_rows+1; if (cursor.line<cursor.line_ofs) cursor.line_ofs=cursor.line; - + int cursor_x = get_column_x_offset( cursor.column, text[cursor.line] ); - + if (cursor_x>(cursor.x_ofs+visible_width)) cursor.x_ofs=cursor_x-visible_width+1; - + if (cursor_x < cursor.x_ofs) cursor.x_ofs=cursor_x; - + update(); /* get_range()->set_max(text.size()); - + get_range()->set_page(get_visible_rows()); - + get_range()->set((int)cursor.line_ofs); */ - - + + } void TextEdit::cursor_set_column(int p_col, bool p_adjust_viewport) { - + if (p_col<0) p_col=0; - + cursor.column=p_col; if (cursor.column > get_line( cursor.line ).length()) cursor.column=get_line( cursor.line ).length(); - + cursor.last_fit_x=get_column_x_offset(cursor.column,get_line(cursor.line)); - + if (p_adjust_viewport) adjust_viewport_to_cursor(); - + if (!cursor_changed_dirty) { if (is_inside_tree()) MessageQueue::get_singleton()->push_call(this,"_cursor_changed_emit"); cursor_changed_dirty=true; } - + } void TextEdit::cursor_set_line(int p_row, bool p_adjust_viewport) { - + if (setting_row) return; - + setting_row=true; if (p_row<0) p_row=0; - - + + if (p_row>=(int)text.size()) p_row=(int)text.size()-1; - + cursor.line=p_row; cursor.column=get_char_pos_for( cursor.last_fit_x, get_line( cursor.line) ); - + if (p_adjust_viewport) adjust_viewport_to_cursor(); - + setting_row=false; - - + + if (!cursor_changed_dirty) { if (is_inside_tree()) MessageQueue::get_singleton()->push_call(this,"_cursor_changed_emit"); cursor_changed_dirty=true; } - + } int TextEdit::cursor_get_column() const { - + return cursor.column; } int TextEdit::cursor_get_line() const { - + return cursor.line; } void TextEdit::_scroll_moved(double p_to_val) { - + if (updating_scrolls) return; - + if (h_scroll->is_visible()) cursor.x_ofs=h_scroll->get_val(); if (v_scroll->is_visible()) @@ -2706,87 +2759,87 @@ void TextEdit::_scroll_moved(double p_to_val) { int TextEdit::get_row_height() const { - + return cache.font->get_height()+cache.line_spacing; } int TextEdit::get_char_pos_for(int p_px,String p_str) const { - + int px=0; int c=0; - + int tab_w = cache.font->get_char_size(' ').width*tab_size; - + while (c<p_str.length()) { - + int w=0; - + if (p_str[c]=='\t') { - + int left = px%tab_w; if (left==0) w=tab_w; else w=tab_w-px%tab_w; // is right... - + } else { - + w=cache.font->get_char_size(p_str[c],p_str[c+1]).width; } - + if (p_px<(px+w/2)) break; px+=w; c++; } - + return c; } int TextEdit::get_column_x_offset(int p_char,String p_str) { - + int px=0; - + int tab_w = cache.font->get_char_size(' ').width*tab_size; - + for (int i=0;i<p_char;i++) { - + if (i>=p_str.length()) break; - + if (p_str[i]=='\t') { - + int left = px%tab_w; if (left==0) px+=tab_w; else px+=tab_w-px%tab_w; // is right... - + } else { px+=cache.font->get_char_size(p_str[i],p_str[i+1]).width; } } - + return px; - + } void TextEdit::insert_text_at_cursor(const String& p_text) { - + if (selection.active) { - + cursor_set_line(selection.from_line); cursor_set_column(selection.from_column); - + _remove_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column); selection.active=false; selection.selecting_mode=Selection::MODE_NONE; - + } - + _insert_text_at_cursor(p_text); update(); - + } Control::CursorShape TextEdit::get_cursor_shape(const Point2& p_pos) const { @@ -2798,7 +2851,7 @@ Control::CursorShape TextEdit::get_cursor_shape(const Point2& p_pos) const { void TextEdit::set_text(String p_text){ - + setting_text=true; clear(); _insert_text_at_cursor(p_text); @@ -2812,7 +2865,7 @@ void TextEdit::set_text(String p_text){ cursor_set_column(0); update(); setting_text=false; - + //get_range()->set(0); }; @@ -2820,53 +2873,53 @@ String TextEdit::get_text() { String longthing; int len = text.size(); for (int i=0;i<len;i++) { - - + + longthing+=text[i]; if (i!=len-1) longthing+="\n"; } - + return longthing; - + }; String TextEdit::get_text_for_completion() { - + String longthing; int len = text.size(); for (int i=0;i<len;i++) { - + if (i==cursor.line) { longthing+=text[i].substr(0,cursor.column); longthing+=String::chr(0xFFFF); //not unicode, represents the cursor longthing+=text[i].substr(cursor.column,text[i].size()); } else { - + longthing+=text[i]; } - - + + if (i!=len-1) longthing+="\n"; } - + return longthing; - + }; String TextEdit::get_line(int line) const { - + if (line<0 || line>=text.size()) return ""; - + return text[line]; - + }; void TextEdit::_clear() { - + clear_undo_history(); text.clear(); cursor.column=0; @@ -2879,31 +2932,31 @@ void TextEdit::_clear() { void TextEdit::clear() { - + setting_text=true; _clear(); setting_text=false; - + }; void TextEdit::set_readonly(bool p_readonly) { - - + + readonly=p_readonly; } void TextEdit::set_wrap(bool p_wrap) { - + wrap=p_wrap; } void TextEdit::set_max_chars(int p_max_chars) { - + max_chars=p_max_chars; } void TextEdit::_update_caches() { - + cache.style_normal=get_stylebox("normal"); cache.style_focus=get_stylebox("focus"); cache.font=get_font("font"); @@ -2919,12 +2972,12 @@ void TextEdit::_update_caches() { cache.row_height = cache.font->get_height() + cache.line_spacing; cache.tab_icon=get_icon("tab"); text.set_font(cache.font); - + } void TextEdit::clear_colors() { - + keywords.clear(); color_regions.clear();; text.clear_caches(); @@ -2932,40 +2985,40 @@ void TextEdit::clear_colors() { } void TextEdit::set_custom_bg_color(const Color& p_color) { - + custom_bg_color=p_color; update(); } void TextEdit::add_keyword_color(const String& p_keyword,const Color& p_color) { - + keywords[p_keyword]=p_color; update(); - + } void TextEdit::add_color_region(const String& p_begin_key,const String& p_end_key,const Color &p_color,bool p_line_only) { - + color_regions.push_back(ColorRegion(p_begin_key,p_end_key,p_color,p_line_only)); text.clear_caches(); update(); - + } void TextEdit::set_symbol_color(const Color& p_color) { - + symbol_color=p_color; update(); } void TextEdit::set_syntax_coloring(bool p_enabled) { - + syntax_coloring=p_enabled; update(); } bool TextEdit::is_syntax_coloring_enabled() const { - + return syntax_coloring; } @@ -2974,28 +3027,28 @@ void TextEdit::set_auto_indent(bool p_auto_indent) { } void TextEdit::cut() { - + if (!selection.active) return; - + String clipboard = _base_get_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column); OS::get_singleton()->set_clipboard(clipboard); - + cursor_set_line(selection.from_line); cursor_set_column(selection.from_column); - + _remove_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column); selection.active=false; selection.selecting_mode=Selection::MODE_NONE; update(); - + } void TextEdit::copy() { - + if (!selection.active) return; - + print_line("from line: "+itos(selection.from_line)); print_line("from column: "+itos(selection.from_column)); print_line("to line: "+itos(selection.to_line)); @@ -3003,29 +3056,29 @@ void TextEdit::copy() { String clipboard = _base_get_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column); OS::get_singleton()->set_clipboard(clipboard); - + } void TextEdit::paste() { - + if (selection.active) { - + cursor_set_line(selection.from_line); cursor_set_column(selection.from_column); - + _remove_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column); selection.active=false; selection.selecting_mode=Selection::MODE_NONE; - + } - + String clipboard = OS::get_singleton()->get_clipboard(); _insert_text_at_cursor(clipboard); update(); - + } void TextEdit::select_all() { - + if (text.size()==1 && text[0].length()==0) return; selection.active=true; @@ -3040,43 +3093,43 @@ void TextEdit::select_all() { cursor_set_line( selection.to_line, false ); cursor_set_column( selection.to_column, false ); update(); - + } void TextEdit::deselect() { - + selection.active=false; update(); } void TextEdit::select(int p_from_line,int p_from_column,int p_to_line,int p_to_column) { - + if (p_from_line>=text.size()) p_from_line=text.size()-1; if (p_from_column>=text[p_from_line].length()) p_from_column=text[p_from_line].length(); - + if (p_to_line>=text.size()) p_to_line=text.size()-1; if (p_to_column>=text[p_to_line].length()) p_to_column=text[p_to_line].length(); - + selection.from_line=p_from_line; selection.from_column=p_from_column; selection.to_line=p_to_line; selection.to_column=p_to_column; - + selection.active=true; - + if (selection.from_line==selection.to_line) { - + if (selection.from_column==selection.to_column) { - + selection.active=false; - + } else if (selection.from_column>selection.to_column) { - + selection.shiftclick_left = false; SWAP( selection.from_column, selection.to_column ); } else { @@ -3084,7 +3137,7 @@ void TextEdit::select(int p_from_line,int p_from_column,int p_to_line,int p_to_c selection.shiftclick_left = true; } } else if (selection.from_line>selection.to_line) { - + selection.shiftclick_left = false; SWAP( selection.from_line, selection.to_line ); SWAP( selection.from_column, selection.to_column ); @@ -3092,51 +3145,51 @@ void TextEdit::select(int p_from_line,int p_from_column,int p_to_line,int p_to_c selection.shiftclick_left = true; } - - + + update(); } bool TextEdit::is_selection_active() const { - + return selection.active; } int TextEdit::get_selection_from_line() const { - + ERR_FAIL_COND_V(!selection.active,-1); return selection.from_line; - + } int TextEdit::get_selection_from_column() const { - + ERR_FAIL_COND_V(!selection.active,-1); return selection.from_column; - + } int TextEdit::get_selection_to_line() const { - + ERR_FAIL_COND_V(!selection.active,-1); return selection.to_line; - + } int TextEdit::get_selection_to_column() const { - + ERR_FAIL_COND_V(!selection.active,-1); return selection.to_column; - + } String TextEdit::get_selection_text() const { - + if (!selection.active) return ""; - + return _base_get_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column); - + } String TextEdit::get_word_under_cursor() const { - + int prev_cc = cursor.column; while(prev_cc >0) { bool is_char = _is_text_char(text[cursor.line][prev_cc-1]); @@ -3144,7 +3197,7 @@ String TextEdit::get_word_under_cursor() const { break; --prev_cc; } - + int next_cc = cursor.column; while(next_cc<text[cursor.line].length()) { bool is_char = _is_text_char(text[cursor.line][next_cc]); @@ -3158,7 +3211,7 @@ String TextEdit::get_word_under_cursor() const { } DVector<int> TextEdit::_search_bind(const String &p_key,uint32_t p_search_flags, int p_from_line,int p_from_column) const { - + int col,line; if (search(p_key,p_search_flags,p_from_line,p_from_column,col,line)) { DVector<int> result; @@ -3166,46 +3219,46 @@ DVector<int> TextEdit::_search_bind(const String &p_key,uint32_t p_search_flags, result.set(0,line); result.set(1,col); return result; - + } else { - + return DVector<int>(); } } bool TextEdit::search(const String &p_key,uint32_t p_search_flags, int p_from_line, int p_from_column,int &r_line,int &r_column) const { - + if (p_key.length()==0) return false; ERR_FAIL_INDEX_V(p_from_line,text.size(),false); ERR_FAIL_INDEX_V(p_from_column,text[p_from_line].length()+1,false); - + //search through the whole documment, but start by current line - + int line=-1; int pos=-1; - + line=p_from_line; - + for(int i=0;i<text.size()+1;i++) { //backwards is broken... //int idx=(p_search_flags&SEARCH_BACKWARDS)?(text.size()-i):i; //do backwards seearch - - + + if (line<0) { line=text.size()-1; } if (line==text.size()) { line=0; } - + String text_line = text[line]; int from_column=0; if (line==p_from_line) { - + if (i==text.size()) { //wrapped - + if (p_search_flags&SEARCH_BACKWARDS) { text_line=text_line.substr(from_column,text_line.length()); from_column=text_line.length(); @@ -3213,13 +3266,13 @@ bool TextEdit::search(const String &p_key,uint32_t p_search_flags, int p_from_li text_line=text_line.substr(0,from_column); from_column=0; } - + } else { - + from_column=p_from_column; } - - + + } else { //text_line=text_line.substr(0,p_from_column); //wrap around for missing begining. if (p_search_flags&SEARCH_BACKWARDS) @@ -3227,17 +3280,17 @@ bool TextEdit::search(const String &p_key,uint32_t p_search_flags, int p_from_li else from_column=0; } - + pos=-1; - + if (!(p_search_flags&SEARCH_BACKWARDS)) { - + pos = (p_search_flags&SEARCH_MATCH_CASE)?text_line.find(p_key,from_column):text_line.findn(p_key,from_column); } else { - + pos = (p_search_flags&SEARCH_MATCH_CASE)?text_line.rfind(p_key,from_column):text_line.rfindn(p_key,from_column); } - + if (pos!=-1 && (p_search_flags&SEARCH_WHOLE_WORDS)) { //validate for whole words if (pos>0 && _is_text_char(text_line[pos-1])) @@ -3245,66 +3298,66 @@ bool TextEdit::search(const String &p_key,uint32_t p_search_flags, int p_from_li else if (_is_text_char(text_line[pos+p_key.length()])) pos=-1; } - + if (pos!=-1) break; - + if (p_search_flags&SEARCH_BACKWARDS) line--; else line++; - + } - + if (pos==-1) { r_line=-1; r_column=-1; return false; } - + r_line=line; r_column=pos; - - + + return true; } void TextEdit::_cursor_changed_emit() { - + emit_signal("cursor_changed"); cursor_changed_dirty=false; } void TextEdit::_text_changed_emit() { - + emit_signal("text_changed"); text_changed_dirty=false; } void TextEdit::set_line_as_marked(int p_line,bool p_marked) { - + ERR_FAIL_INDEX(p_line,text.size()); text.set_marked(p_line,p_marked); update(); } bool TextEdit::is_line_set_as_breakpoint(int p_line) const { - + ERR_FAIL_INDEX_V(p_line,text.size(),false); return text.is_breakpoint(p_line); - + } void TextEdit::set_line_as_breakpoint(int p_line,bool p_breakpoint) { - - + + ERR_FAIL_INDEX(p_line,text.size()); text.set_breakpoint(p_line,p_breakpoint); update(); } void TextEdit::get_breakpoints(List<int> *p_breakpoints) const { - + for(int i=0;i<text.size();i++) { if (text.is_breakpoint(i)) p_breakpoints->push_back(i); @@ -3312,39 +3365,39 @@ void TextEdit::get_breakpoints(List<int> *p_breakpoints) const { } int TextEdit::get_line_count() const { - + return text.size(); } void TextEdit::_do_text_op(const TextOperation& p_op, bool p_reverse) { - + ERR_FAIL_COND(p_op.type==TextOperation::TYPE_NONE); - + bool insert = p_op.type==TextOperation::TYPE_INSERT; if (p_reverse) insert=!insert; - + if (insert) { - + int check_line; int check_column; _base_insert_text(p_op.from_line,p_op.from_column,p_op.text,check_line,check_column); ERR_FAIL_COND( check_line != p_op.to_line ); // BUG ERR_FAIL_COND( check_column != p_op.to_column ); // BUG } else { - + _base_remove_text(p_op.from_line,p_op.from_column,p_op.to_line,p_op.to_column); } - + } void TextEdit::_clear_redo() { - + if (undo_stack_pos==NULL) return; //nothing to clear - + _push_current_op(); - + while (undo_stack_pos) { List<TextOperation>::Element *elem = undo_stack_pos; undo_stack_pos=undo_stack_pos->next(); @@ -3354,61 +3407,69 @@ void TextEdit::_clear_redo() { void TextEdit::undo() { - + _push_current_op(); - + if (undo_stack_pos==NULL) { - + if (!undo_stack.size()) return; //nothing to undo - + undo_stack_pos=undo_stack.back(); - + } else if (undo_stack_pos==undo_stack.front()) return; // at the bottom of the undo stack else undo_stack_pos=undo_stack_pos->prev(); - - _do_text_op( undo_stack_pos->get(),true); + + TextOperation op = undo_stack_pos->get(); + _do_text_op(op, true); + current_op.version=op.prev_version; if(undo_stack_pos->get().chain_backward) { do { undo_stack_pos = undo_stack_pos->prev(); - _do_text_op(undo_stack_pos->get(), true); + op = undo_stack_pos->get(); + _do_text_op(op, true); + current_op.version = op.prev_version; } while(!undo_stack_pos->get().chain_forward); } - + cursor_set_line(undo_stack_pos->get().from_line); cursor_set_column(undo_stack_pos->get().from_column); update(); } void TextEdit::redo() { - + _push_current_op(); - + if (undo_stack_pos==NULL) return; //nothing to do. - - _do_text_op(undo_stack_pos->get(), false); + + TextOperation op = undo_stack_pos->get(); + _do_text_op(op, false); + current_op.version = op.version; if(undo_stack_pos->get().chain_forward) { do { undo_stack_pos=undo_stack_pos->next(); - _do_text_op(undo_stack_pos->get(), false); + op = undo_stack_pos->get(); + _do_text_op(op, false); + current_op.version = op.version; } while(!undo_stack_pos->get().chain_backward); } - cursor_set_line(undo_stack_pos->get().from_line); - cursor_set_column(undo_stack_pos->get().from_column); + cursor_set_line(undo_stack_pos->get().to_line); + cursor_set_column(undo_stack_pos->get().to_column); undo_stack_pos=undo_stack_pos->next(); update(); } void TextEdit::clear_undo_history() { - + saved_version=0; current_op.type=TextOperation::TYPE_NONE; undo_stack_pos=NULL; undo_stack.clear(); - + } void TextEdit::_begin_compex_operation() { @@ -3417,42 +3478,49 @@ void TextEdit::_begin_compex_operation() { } void TextEdit::_end_compex_operation() { - + _push_current_op(); ERR_FAIL_COND(undo_stack.size() == 0); - + if(undo_stack.back()->get().chain_forward) { undo_stack.back()->get().chain_forward=false; return; } - + undo_stack.back()->get().chain_backward=true; } void TextEdit::_push_current_op() { - + if (current_op.type==TextOperation::TYPE_NONE) return; // do nothing - + if(next_operation_is_complex) { current_op.chain_forward=true; next_operation_is_complex=false; } - + undo_stack.push_back(current_op); current_op.type=TextOperation::TYPE_NONE; current_op.text=""; current_op.chain_forward=false; - + +} + +void TextEdit::set_tab_size(const int p_size) { + ERR_FAIL_COND(p_size <= 0); + tab_size = p_size; + text.set_tab_size(p_size); + update(); } void TextEdit::set_draw_tabs(bool p_draw) { - + draw_tabs=p_draw; } bool TextEdit::is_drawing_tabs() const{ - + return draw_tabs; } @@ -3460,35 +3528,35 @@ uint32_t TextEdit::get_version() const { return current_op.version; } uint32_t TextEdit::get_saved_version() const { - + return saved_version; } void TextEdit::tag_saved_version() { - + saved_version=get_version(); } int TextEdit::get_v_scroll() const { - + return v_scroll->get_val(); } void TextEdit::set_v_scroll(int p_scroll) { - + v_scroll->set_val(p_scroll); cursor.line_ofs=p_scroll; } int TextEdit::get_h_scroll() const { - + return h_scroll->get_val(); } void TextEdit::set_h_scroll(int p_scroll) { - + h_scroll->set_val(p_scroll); } void TextEdit::set_completion(bool p_enabled,const Vector<String>& p_prefixes) { - + completion_prefixes.clear(); completion_enabled=p_enabled; for(int i=0;i<p_prefixes.size();i++) @@ -3496,7 +3564,7 @@ void TextEdit::set_completion(bool p_enabled,const Vector<String>& p_prefixes) { } void TextEdit::_confirm_completion() { - + String remaining=completion_current.substr(completion_base.length(),completion_current.length()-completion_base.length()); String l = text[cursor.line]; bool same=true; @@ -3508,7 +3576,7 @@ void TextEdit::_confirm_completion() { break; } } - + if (same) cursor_set_column(cursor.column+remaining.length()); else { @@ -3518,7 +3586,7 @@ void TextEdit::_confirm_completion() { cursor.column--; } } - + _cancel_completion(); } @@ -3529,27 +3597,27 @@ void TextEdit::_cancel_code_hint() { } void TextEdit::_cancel_completion() { - + if (!completion_active) return; - + completion_active=false; update(); - + } static bool _is_completable(CharType c) { - + return !_is_symbol(c) || c=='"' || c=='\''; } void TextEdit::_update_completion_candidates() { - + String l = text[cursor.line]; int cofs = CLAMP(cursor.column,0,l.length()); - - + + String s; //look for keywords first @@ -3605,15 +3673,15 @@ void TextEdit::_update_completion_candidates() { } } - + update(); - + if (cancel || (!pre_keyword && s=="" && (cofs==0 || !completion_prefixes.has(String::chr(l[cofs-1]))))) { //none to complete, cancel _cancel_completion(); return; } - + completion_options.clear(); completion_index=0; completion_base=s; @@ -3626,7 +3694,7 @@ void TextEdit::_update_completion_candidates() { if (max<ci_match) continue; for(int j=0;j<max;j++) { - + if (j>=completion_strings[i].length()) break; if (completion_current[j]!=completion_strings[i][j]) @@ -3637,21 +3705,21 @@ void TextEdit::_update_completion_candidates() { ci_match=m; completion_index=completion_options.size()-1; } - + } } - - - + + + if (completion_options.size()==0) { //no options to complete, cancel _cancel_completion(); return; - + } - + completion_current=completion_options[completion_index]; - + #if 0 // even there's only one option, user still get the chance to choose using it or not if (completion_options.size()==1) { //one option to complete, just complete it automagically @@ -3659,22 +3727,22 @@ void TextEdit::_update_completion_candidates() { // insert_text_at_cursor(completion_options[0].substr(s.length(),completion_options[0].length()-s.length())); _cancel_completion(); return; - + } #endif if (completion_options.size()==1 && s==completion_options[0]) _cancel_completion(); - + completion_enabled=true; } void TextEdit::query_code_comple() { - + String l = text[cursor.line]; int ofs = CLAMP(cursor.column,0,l.length()); - + bool inquote=false; int c=ofs-1; @@ -3686,20 +3754,20 @@ void TextEdit::query_code_comple() { if (ofs>0 && (inquote || _is_completable(l[ofs-1]) || completion_prefixes.has(String::chr(l[ofs-1])))) emit_signal("request_completion"); - + } void TextEdit::set_code_hint(const String& p_hint) { - + completion_hint=p_hint; completion_hint_offset=-0xFFFF; update(); } void TextEdit::code_complete(const Vector<String> &p_strings) { - - + + completion_strings=p_strings; completion_active=true; completion_current=""; @@ -3710,7 +3778,7 @@ void TextEdit::code_complete(const Vector<String> &p_strings) { String TextEdit::get_tooltip(const Point2& p_pos) const { - + if (!tooltip_obj) return Control::get_tooltip(p_pos); int row,col; @@ -3721,34 +3789,34 @@ String TextEdit::get_tooltip(const Point2& p_pos) const { return Control::get_tooltip(p_pos); int beg=CLAMP(col,0,s.length()); int end=beg; - - + + if (s[beg]>32 || beg==s.length()) { - + bool symbol = beg < s.length() && _is_symbol(s[beg]); //not sure if right but most editors behave like this - + while(beg>0 && s[beg-1]>32 && (symbol==_is_symbol(s[beg-1]))) { beg--; } while(end<s.length() && s[end+1]>32 && (symbol==_is_symbol(s[end+1]))) { end++; } - + if (end<s.length()) end+=1; - + String tt = tooltip_obj->call(tooltip_func,s.substr(beg,end-beg),tooltip_ud); - + return tt; - + } - + return Control::get_tooltip(p_pos); - + } void TextEdit::set_tooltip_request_func(Object *p_obj, const StringName& p_function,const Variant& p_udata) { - + tooltip_obj=p_obj; tooltip_func=p_function; tooltip_ud=p_udata; @@ -3773,7 +3841,7 @@ void TextEdit::insert_at(const String &p_text, int at) } void TextEdit::set_show_line_numbers(bool p_show) { - + line_numbers=p_show; update(); } @@ -3783,48 +3851,48 @@ bool TextEdit::is_text_field() const { return true; } void TextEdit::_bind_methods() { - - + + ObjectTypeDB::bind_method(_MD("_input_event"),&TextEdit::_input_event); ObjectTypeDB::bind_method(_MD("_scroll_moved"),&TextEdit::_scroll_moved); ObjectTypeDB::bind_method(_MD("_cursor_changed_emit"),&TextEdit::_cursor_changed_emit); ObjectTypeDB::bind_method(_MD("_text_changed_emit"),&TextEdit::_text_changed_emit); ObjectTypeDB::bind_method(_MD("_push_current_op"),&TextEdit::_push_current_op); ObjectTypeDB::bind_method(_MD("_click_selection_held"),&TextEdit::_click_selection_held); - + BIND_CONSTANT( SEARCH_MATCH_CASE ); BIND_CONSTANT( SEARCH_WHOLE_WORDS ); BIND_CONSTANT( SEARCH_BACKWARDS ); - + /* ObjectTypeDB::bind_method(_MD("delete_char"),&TextEdit::delete_char); ObjectTypeDB::bind_method(_MD("delete_line"),&TextEdit::delete_line); */ - + ObjectTypeDB::bind_method(_MD("set_text","text"),&TextEdit::set_text); ObjectTypeDB::bind_method(_MD("insert_text_at_cursor","text"),&TextEdit::insert_text_at_cursor); - + ObjectTypeDB::bind_method(_MD("get_line_count"),&TextEdit::get_line_count); ObjectTypeDB::bind_method(_MD("get_text"),&TextEdit::get_text); ObjectTypeDB::bind_method(_MD("get_line","line"),&TextEdit::get_line); - + ObjectTypeDB::bind_method(_MD("cursor_set_column","column","adjust_viewport"),&TextEdit::cursor_set_column,DEFVAL(false)); ObjectTypeDB::bind_method(_MD("cursor_set_line","line","adjust_viewport"),&TextEdit::cursor_set_line,DEFVAL(false)); - + ObjectTypeDB::bind_method(_MD("cursor_get_column"),&TextEdit::cursor_get_column); ObjectTypeDB::bind_method(_MD("cursor_get_line"),&TextEdit::cursor_get_line); - - + + ObjectTypeDB::bind_method(_MD("set_readonly","enable"),&TextEdit::set_readonly); ObjectTypeDB::bind_method(_MD("set_wrap","enable"),&TextEdit::set_wrap); ObjectTypeDB::bind_method(_MD("set_max_chars","amount"),&TextEdit::set_max_chars); - + ObjectTypeDB::bind_method(_MD("cut"),&TextEdit::cut); ObjectTypeDB::bind_method(_MD("copy"),&TextEdit::copy); ObjectTypeDB::bind_method(_MD("paste"),&TextEdit::paste); ObjectTypeDB::bind_method(_MD("select_all"),&TextEdit::select_all); ObjectTypeDB::bind_method(_MD("select","from_line","from_column","to_line","to_column"),&TextEdit::select); - + ObjectTypeDB::bind_method(_MD("is_selection_active"),&TextEdit::is_selection_active); ObjectTypeDB::bind_method(_MD("get_selection_from_line"),&TextEdit::get_selection_from_line); ObjectTypeDB::bind_method(_MD("get_selection_from_column"),&TextEdit::get_selection_from_column); @@ -3833,30 +3901,30 @@ void TextEdit::_bind_methods() { ObjectTypeDB::bind_method(_MD("get_selection_text"),&TextEdit::get_selection_text); ObjectTypeDB::bind_method(_MD("get_word_under_cursor"),&TextEdit::get_word_under_cursor); ObjectTypeDB::bind_method(_MD("search","flags","from_line","from_column","to_line","to_column"),&TextEdit::_search_bind); - + ObjectTypeDB::bind_method(_MD("undo"),&TextEdit::undo); ObjectTypeDB::bind_method(_MD("redo"),&TextEdit::redo); ObjectTypeDB::bind_method(_MD("clear_undo_history"),&TextEdit::clear_undo_history); - + ObjectTypeDB::bind_method(_MD("set_syntax_coloring","enable"),&TextEdit::set_syntax_coloring); ObjectTypeDB::bind_method(_MD("is_syntax_coloring_enabled"),&TextEdit::is_syntax_coloring_enabled); - - + + ObjectTypeDB::bind_method(_MD("add_keyword_color","keyword","color"),&TextEdit::add_keyword_color); ObjectTypeDB::bind_method(_MD("add_color_region","begin_key","end_key","color","line_only"),&TextEdit::add_color_region,DEFVAL(false)); ObjectTypeDB::bind_method(_MD("set_symbol_color","color"),&TextEdit::set_symbol_color); ObjectTypeDB::bind_method(_MD("set_custom_bg_color","color"),&TextEdit::set_custom_bg_color); ObjectTypeDB::bind_method(_MD("clear_colors"),&TextEdit::clear_colors); - - + + ADD_SIGNAL(MethodInfo("cursor_changed")); ADD_SIGNAL(MethodInfo("text_changed")); ADD_SIGNAL(MethodInfo("request_completion")); - + } TextEdit::TextEdit() { - + readonly=false; setting_row=false; draw_tabs=false; @@ -3876,29 +3944,29 @@ TextEdit::TextEdit() { // text.insert(1,"Mongolia.."); // text.insert(2,"PAIS GENEROSO!!"); text.set_color_regions(&color_regions); - + h_scroll = memnew( HScrollBar ); v_scroll = memnew( VScrollBar ); - + add_child(h_scroll); add_child(v_scroll); - + updating_scrolls=false; selection.active=false; - + h_scroll->connect("value_changed", this,"_scroll_moved"); v_scroll->connect("value_changed", this,"_scroll_moved"); - + cursor_changed_dirty=false; text_changed_dirty=false; - + selection.selecting_mode=Selection::MODE_NONE; selection.selecting_line=0; selection.selecting_column=0; selection.selecting_text=false; selection.active=false; syntax_coloring=false; - + custom_bg_color=Color(0,0,0,0); idle_detect = memnew( Timer ); add_child(idle_detect); @@ -3910,7 +3978,7 @@ TextEdit::TextEdit() { add_child(click_select_held); click_select_held->set_wait_time(0.05); click_select_held->connect("timeout", this,"_click_selection_held"); - + #if 0 syntax_coloring=true; keywords["void"]=Color(0.3,0.0,0.1); @@ -3920,15 +3988,15 @@ TextEdit::TextEdit() { keywords["extends"]=Color(0.3,0.0,0.1); keywords["constructor"]=Color(0.3,0.0,0.1); symbol_color=Color(0.1,0.0,0.3,1.0); - + color_regions.push_back(ColorRegion("/*","*/",Color(0.4,0.6,0,4))); color_regions.push_back(ColorRegion("//","",Color(0.6,0.6,0.4))); color_regions.push_back(ColorRegion("\"","\"",Color(0.4,0.7,0.7))); color_regions.push_back(ColorRegion("'","'",Color(0.4,0.8,0.8))); color_regions.push_back(ColorRegion("#","",Color(0.2,1.0,0.2))); - + #endif - + current_op.type=TextOperation::TYPE_NONE; undo_enabled=true; undo_stack_pos=NULL; @@ -3937,13 +4005,14 @@ TextEdit::TextEdit() { current_op.version=0; version=0; saved_version=0; - + completion_enabled=false; completion_active=false; completion_line_ofs=0; tooltip_obj=NULL; line_numbers=false; next_operation_is_complex=false; + scroll_past_end_of_file_enabled=false; auto_brace_completion_enabled=false; brace_matching_enabled=false; auto_indent=false; diff --git a/scene/gui/text_edit.h b/scene/gui/text_edit.h index 2ca5ab054a..d38c57804d 100644 --- a/scene/gui/text_edit.h +++ b/scene/gui/text_edit.h @@ -128,7 +128,7 @@ class TextEdit : public Control { void set_font(const Ref<Font>& p_font); void set_color_regions(const Vector<ColorRegion>*p_regions) { color_regions=p_regions; } int get_line_width(int p_line) const; - int get_max_width() const; + int get_max_width() const; const Map<int,ColorRegionInfo>& get_color_region_info(int p_line); void set(int p_line,const String& p_string); void set_marked(int p_line,bool p_marked) { text[p_line].marked=p_marked; } @@ -156,6 +156,7 @@ class TextEdit : public Control { int from_line,from_column; int to_line, to_column; String text; + uint32_t prev_version; uint32_t version; bool chain_forward; bool chain_backward; @@ -210,7 +211,8 @@ class TextEdit : public Control { bool text_changed_dirty; bool undo_enabled; bool line_numbers; - + + bool scroll_past_end_of_file_enabled; bool auto_brace_completion_enabled; bool brace_matching_enabled; bool auto_indent; @@ -228,9 +230,12 @@ class TextEdit : public Control { Object *tooltip_obj; StringName tooltip_func; Variant tooltip_ud; - + bool next_operation_is_complex; + bool callhint_below; + Vector2 callhint_offset; + int get_visible_rows() const; int get_char_count(); @@ -254,13 +259,13 @@ class TextEdit : public Control { void _update_caches(); void _cursor_changed_emit(); void _text_changed_emit(); - + void _begin_compex_operation(); void _end_compex_operation(); void _push_current_op(); /* super internal api, undo/redo builds on it */ - + void _base_insert_text(int p_line, int p_column,const String& p_text,int &r_end_line,int &r_end_column); String _base_get_text(int p_from_line, int p_from_column,int p_to_line,int p_to_column) const; void _base_remove_text(int p_from_line, int p_from_column,int p_to_line,int p_to_column); @@ -278,16 +283,16 @@ class TextEdit : public Control { protected: virtual String get_tooltip(const Point2& p_pos) const; - + void _insert_text(int p_line, int p_column,const String& p_text,int *r_end_line=NULL,int *r_end_char=NULL); void _remove_text(int p_from_line, int p_from_column,int p_to_line,int p_to_column); void _insert_text_at_cursor(const String& p_text); void _input_event(const InputEvent& p_input); void _notification(int p_what); - + void _consume_pair_symbol(CharType ch); void _consume_backspace_for_pair_symbol(int prev_line, int prev_column); - + static void _bind_methods(); @@ -300,7 +305,7 @@ public: SEARCH_WHOLE_WORDS=2, SEARCH_BACKWARDS=4 }; - + virtual CursorShape get_cursor_shape(const Point2& p_pos=Point2i()) const; //void delete_char(); @@ -318,7 +323,11 @@ public: String get_line(int line) const; void set_line(int line, String new_text); void backspace_at_cursor(); - + + inline void set_scroll_pass_end_of_file(bool p_enabled) { + scroll_past_end_of_file_enabled = p_enabled; + update(); + } inline void set_auto_brace_completion(bool p_enabled) { auto_brace_completion_enabled = p_enabled; } @@ -326,6 +335,10 @@ public: brace_matching_enabled=p_enabled; update(); } + inline void set_callhint_settings(bool below, Vector2 offset) { + callhint_below = below; + callhint_offset = offset; + } void set_auto_indent(bool p_auto_indent); void cursor_set_column(int p_col, bool p_adjust_viewport=true); @@ -366,7 +379,7 @@ public: void redo(); void clear_undo_history(); - + void set_tab_size(const int p_size); void set_draw_tabs(bool p_draw); bool is_drawing_tabs() const; @@ -390,7 +403,7 @@ public: void set_tooltip_request_func(Object *p_obj, const StringName& p_function, const Variant& p_udata); - void set_completion(bool p_enabled,const Vector<String>& p_prefixes); + void set_completion(bool p_enabled,const Vector<String>& p_prefixes); void code_complete(const Vector<String> &p_strings); void set_code_hint(const String& p_hint); void query_code_comple(); diff --git a/scene/gui/texture_frame.h b/scene/gui/texture_frame.h index f6fe6ae89d..e1f0de92df 100644 --- a/scene/gui/texture_frame.h +++ b/scene/gui/texture_frame.h @@ -42,7 +42,7 @@ class TextureFrame : public Control { Ref<Texture> texture; protected: - void _notification(int p_what); + void _notification(int p_what); virtual Size2 get_minimum_size() const; static void _bind_methods(); diff --git a/scene/gui/texture_progress.cpp b/scene/gui/texture_progress.cpp index e05d35a81d..923a35031c 100644 --- a/scene/gui/texture_progress.cpp +++ b/scene/gui/texture_progress.cpp @@ -195,7 +195,7 @@ void TextureProgress::_notification(int p_what){ draw_texture_rect_region(progress,Rect2(Point2(),Size2(s.x*get_unit_value(),s.y)),Rect2(Point2(),Size2(s.x*get_unit_value(),s.y))); } - + } if (over.is_valid()) draw_texture(over,Point2()); @@ -269,10 +269,10 @@ void TextureProgress::_bind_methods() { ObjectTypeDB::bind_method(_MD("set_radial_initial_angle","mode"),&TextureProgress::set_radial_initial_angle); ObjectTypeDB::bind_method(_MD("get_radial_initial_angle"), &TextureProgress::get_radial_initial_angle); - + ObjectTypeDB::bind_method(_MD("set_radial_center_offset","mode"),&TextureProgress::set_radial_center_offset); ObjectTypeDB::bind_method(_MD("get_radial_center_offset"), &TextureProgress::get_radial_center_offset); - + ObjectTypeDB::bind_method(_MD("set_fill_degrees","mode"),&TextureProgress::set_fill_degrees); ObjectTypeDB::bind_method(_MD("get_fill_degrees"), &TextureProgress::get_fill_degrees); diff --git a/scene/gui/tree.cpp b/scene/gui/tree.cpp index 05b1e8bcea..483aa47f35 100644 --- a/scene/gui/tree.cpp +++ b/scene/gui/tree.cpp @@ -574,7 +574,14 @@ void TreeItem::set_custom_color(int p_column,const Color& p_color) { cells[p_column].color=p_color; _changed_notify(p_column); } +Color TreeItem::get_custom_color(int p_column) const { + ERR_FAIL_INDEX_V( p_column, cells.size(), Color() ); + if (!cells[p_column].custom_color) + return Color(); + return cells[p_column].color; + +} void TreeItem::clear_custom_color(int p_column) { ERR_FAIL_INDEX( p_column, cells.size() ); @@ -2164,7 +2171,7 @@ void Tree::_input_event(InputEvent p_event) { float diff_y = -b.relative_y; diff_y=Math::pow(ABS(diff_y),1.8)*SGN(diff_y); diff_y*=0.1; - range_drag_base=CLAMP(range_drag_base + c.step * diff_y, c.min, c.max); + range_drag_base=CLAMP(range_drag_base + c.step * diff_y, c.min, c.max); popup_edited_item->set_range(popup_edited_item_col,range_drag_base); item_edited(popup_edited_item_col,popup_edited_item); diff --git a/scene/gui/tree.h b/scene/gui/tree.h index e5c95b4d66..1ba1c6a494 100644 --- a/scene/gui/tree.h +++ b/scene/gui/tree.h @@ -46,22 +46,22 @@ class TreeItem : public Object { OBJ_TYPE(TreeItem,Object); public: - + enum TreeCellMode { - + CELL_MODE_STRING, ///< just a string CELL_MODE_CHECK, ///< string + check CELL_MODE_RANGE, ///< Contains a range CELL_MODE_ICON, ///< Contains a icon, not editable CELL_MODE_CUSTOM, ///< Contains a custom value, show a string, and an edit button }; - + private: friend class Tree; - - + + struct Cell { - + TreeCellMode mode; Ref<Texture> icon; @@ -92,9 +92,9 @@ friend class Tree; }; Vector< Button > buttons; - + Cell() { - + custom_draw_obj=0; mode=TreeItem::CELL_MODE_STRING; min=0; @@ -116,30 +116,30 @@ friend class Tree; void draw_icon(const RID& p_where, const Point2& p_pos, const Size2& p_size=Size2()) const; }; - + Vector<Cell> cells; - + bool collapsed; // wont show childs - + TreeItem *parent; // parent item TreeItem *next; // next in list TreeItem *childs; //child items Tree *tree; //tree (for reference) - + TreeItem(Tree *p_tree); - + void _changed_notify(int p_cell); void _changed_notify(); void _cell_selected(int p_cell); void _cell_deselected(int p_cell); protected: - + static void _bind_methods(); //bind helpers - Dictionary _get_range_config( int p_column ) { + Dictionary _get_range_config( int p_column ) { Dictionary d; double min,max,step; get_range_config(p_column,min,max,step); @@ -152,18 +152,18 @@ protected: } void _remove_child(Object *p_child) { remove_child( p_child->cast_to<TreeItem>() ); } public: - + /* cell mode */ void set_cell_mode( int p_column, TreeCellMode p_mode ); TreeCellMode get_cell_mode( int p_column ) const; - + /* check mode */ void set_checked(int p_column,bool p_checked); bool is_checked(int p_column) const; - + void set_text(int p_column,String p_text); String get_text(int p_column) const; - + void set_icon(int p_column,const Ref<Texture>& p_icon); Ref<Texture> get_icon(int p_column) const; @@ -183,22 +183,22 @@ public: void set_button(int p_column,int p_idx,const Ref<Texture>& p_button); /* range works for mode number or mode combo */ - + void set_range(int p_column,double p_value); double get_range(int p_column) const; - + void set_range_config(int p_column,double p_min,double p_max,double p_step,bool p_exp=false); void get_range_config(int p_column,double& r_min,double& r_max,double &r_step) const; bool is_range_exponential(int p_column) const; - + void set_metadata(int p_column,const Variant& p_meta); Variant get_metadata(int p_column) const; - + void set_custom_draw(int p_column,Object *p_object,const StringName& p_callback); - + void set_collapsed(bool p_collapsed); bool is_collapsed(); - + TreeItem *get_prev(); TreeItem *get_next(); TreeItem *get_parent(); @@ -206,21 +206,22 @@ public: TreeItem *get_prev_visible(); TreeItem *get_next_visible(); - + void remove_child(TreeItem *p_item); - + void set_selectable(int p_column,bool p_selectable); bool is_selectable(int p_column) const; - + bool is_selected(int p_column); void select(int p_column); void deselect(int p_column); void set_as_cursor(int p_column); - + void set_editable(int p_column,bool p_editable); bool is_editable(int p_column); - + void set_custom_color(int p_column,const Color& p_color); + Color get_custom_color(int p_column) const; void clear_custom_color(int p_column); void set_custom_bg_color(int p_column,const Color& p_color); @@ -237,7 +238,7 @@ public: void move_to_bottom(); ~TreeItem(); - + }; @@ -245,18 +246,18 @@ VARIANT_ENUM_CAST( TreeItem::TreeCellMode ); class Tree : public Control { - + OBJ_TYPE( Tree, Control ); -public: +public: enum SelectMode { SELECT_SINGLE, SELECT_ROW, SELECT_MULTI }; - -private: -friend class TreeItem; - + +private: +friend class TreeItem; + TreeItem *root; TreeItem *popup_edited_item; TreeItem *selected_item; @@ -287,7 +288,7 @@ friend class TreeItem; int blocked; struct ColumnInfo { - + int min_width; bool expand; String title; @@ -320,21 +321,21 @@ friend class TreeItem; void value_editor_changed(double p_value); void popup_select(int p_option); - + void _input_event(InputEvent p_event); void _notification(int p_what); - + Size2 get_minimum_size() const; - + void item_edited(int p_column,TreeItem *p_item); void item_changed(int p_column,TreeItem *p_item); void item_selected(int p_column,TreeItem *p_item); void item_deselected(int p_column,TreeItem *p_item); - + void propagate_set_columns(TreeItem *p_item); - + struct Cache { - + Ref<Font> font; Ref<Font> tb_font; Ref<StyleBox> bg; @@ -354,14 +355,14 @@ friend class TreeItem; Ref<Texture> arrow; Ref<Texture> select_arrow; Ref<Texture> updown; - + Color font_color; Color font_color_selected; Color guide_color; int hseparation; int vseparation; int item_margin; - int guide_width; + int guide_width; int button_margin; Point2 offset; @@ -381,14 +382,14 @@ friend class TreeItem; int hover_index; } cache; - - + + int _get_title_button_height() const; void _scroll_moved(float p_value); HScrollBar *h_scroll; VScrollBar *v_scroll; - + Size2 get_internal_min_size() const; void update_cache(); void update_scrollbars(); @@ -423,10 +424,10 @@ friend class TreeItem; protected: static void _bind_methods(); - + //bind helpers Object* _create_item(Object *p_parent) { return create_item(p_parent->cast_to<TreeItem>() ); } - TreeItem *_get_next_selected(Object *p_item) { return get_next_selected(p_item->cast_to<TreeItem>() ); } + TreeItem *_get_next_selected(Object *p_item) { return get_next_selected(p_item->cast_to<TreeItem>() ); } Rect2 _get_item_rect(Object *p_item,int p_column) const { return get_item_rect(p_item->cast_to<TreeItem>(),p_column ); } public: @@ -434,21 +435,21 @@ public: void clear(); - TreeItem* create_item(TreeItem *p_parent=0); + TreeItem* create_item(TreeItem *p_parent=0); TreeItem* get_root(); TreeItem* get_last_item(); void set_column_min_width(int p_column,int p_min_width); - void set_column_expand(int p_column,bool p_expand); + void set_column_expand(int p_column,bool p_expand); int get_column_width(int p_column) const; - + void set_hide_root(bool p_eanbled); TreeItem *get_next_selected( TreeItem* p_item); TreeItem *get_selected() const; int get_selected_column() const; int get_pressed_button() const; void set_select_mode(SelectMode p_mode); - + void set_columns(int p_columns); int get_columns() const; @@ -462,11 +463,11 @@ public: int get_edited_column() const; void ensure_cursor_is_visible(); - + Rect2 get_custom_popup_rect() const; int get_item_offset(TreeItem *p_item) const; - Rect2 get_item_rect(TreeItem *p_item,int p_column=-1) const; + Rect2 get_item_rect(TreeItem *p_item,int p_column=-1) const; bool edit_selected(); TreeItem* search_item_text(const String& p_find,int *r_col=NULL,bool p_selectable=false); @@ -484,7 +485,7 @@ public: Tree(); - ~Tree(); + ~Tree(); }; diff --git a/scene/io/resource_format_image.cpp b/scene/io/resource_format_image.cpp index c80975dbfe..6174d134a3 100644 --- a/scene/io/resource_format_image.cpp +++ b/scene/io/resource_format_image.cpp @@ -32,7 +32,7 @@ #include "globals.h" #include "os/os.h" RES ResourceFormatLoaderImage::load(const String &p_path, const String& p_original_path, Error *r_error) { - + if (r_error) *r_error=ERR_CANT_OPEN; @@ -45,31 +45,31 @@ RES ResourceFormatLoaderImage::load(const String &p_path, const String& p_origin Error err; FileAccess *f = FileAccess::open(p_path,FileAccess::READ,&err); if (err) { - + ERR_FAIL_COND_V( err, RES() ); } - + String base_path=p_path.substr( 0, p_path.find_last("/")+1 ); for(int i=0;i<6;i++) { - + String file = f->get_line().strip_edges(); Image image; - + Error err = ImageLoader::load_image(base_path+file,&image); - + if (err) { - + memdelete(f); ERR_FAIL_COND_V( err, RES() ); } - + if (i==0) { - + //cubemap->create(image.get_width(),image.get_height(),image.get_format(),Texture::FLAGS_DEFAULT|Texture::FLAG_CUBEMAP); } - + static const CubeMap::Side cube_side[6]= { CubeMap::SIDE_LEFT, CubeMap::SIDE_RIGHT, @@ -78,10 +78,10 @@ RES ResourceFormatLoaderImage::load(const String &p_path, const String& p_origin CubeMap::SIDE_FRONT, CubeMap::SIDE_BACK }; - + cubemap->set_side(cube_side[i],image); } - + memdelete(f); cubemap->set_name(p_path.get_file()); @@ -89,9 +89,9 @@ RES ResourceFormatLoaderImage::load(const String &p_path, const String& p_origin *r_error=OK; return cubemap; - + } else { - // simple image + // simple image ImageTexture* ptr = memnew(ImageTexture); Ref<ImageTexture> texture( ptr ); @@ -115,7 +115,7 @@ RES ResourceFormatLoaderImage::load(const String &p_path, const String& p_origin ERR_EXPLAIN("Failed loading image: "+p_path); - ERR_FAIL_COND_V(err, RES()); + ERR_FAIL_COND_V(err, RES()); if (r_error) *r_error=ERR_FILE_CORRUPT; @@ -134,8 +134,8 @@ RES ResourceFormatLoaderImage::load(const String &p_path, const String& p_origin } #endif #endif - - + + uint32_t flags=0; FileAccess *f2 = FileAccess::open(p_path+".flags",FileAccess::READ); @@ -186,7 +186,7 @@ RES ResourceFormatLoaderImage::load(const String &p_path, const String& p_origin if (flags_found["tolinear"]) flags|=Texture::FLAG_CONVERT_TO_LINEAR; } - + if (flags_found.has("mirroredrepeat")) { if (flags_found["mirroredrepeat"]) flags|=Texture::FLAG_MIRRORED_REPEAT; @@ -210,7 +210,7 @@ RES ResourceFormatLoaderImage::load(const String &p_path, const String& p_origin return RES( texture ); } - + } @@ -220,7 +220,7 @@ bool ResourceFormatLoaderImage::handles_type(const String& p_type) const { } void ResourceFormatLoaderImage::get_recognized_extensions(List<String> *p_extensions) const { - + ImageLoader::get_recognized_extensions(p_extensions); p_extensions->push_back("cube"); } diff --git a/scene/main/http_request.cpp b/scene/main/http_request.cpp new file mode 100644 index 0000000000..90e3713799 --- /dev/null +++ b/scene/main/http_request.cpp @@ -0,0 +1,512 @@ +#include "http_request.h" + +void HTTPRequest::_redirect_request(const String& p_new_url) { + + +} + +Error HTTPRequest::_request() { + + print_line("Requesting:\n\tURL: "+url+"\n\tString: "+request_string+"\n\tPort: "+itos(port)+"\n\tSSL: "+itos(use_ssl)+"\n\tValidate SSL: "+itos(validate_ssl)); + return client->connect(url,port,use_ssl,validate_ssl); +} + +Error HTTPRequest::_parse_url(const String& p_url) { + + url=p_url; + use_ssl=false; + + request_string=""; + port=80; + request_sent=false; + got_response=false; + body_len=-1; + body.resize(0); + downloaded=0; + redirections=0; + + print_line("1 url: "+url); + if (url.begins_with("http://")) { + + url=url.substr(7,url.length()-7); + print_line("no SSL"); + + } else if (url.begins_with("https://")) { + url=url.substr(8,url.length()-8); + use_ssl=true; + port=443; + print_line("yes SSL"); + } else { + ERR_EXPLAIN("Malformed URL"); + ERR_FAIL_V(ERR_INVALID_PARAMETER); + } + + print_line("2 url: "+url); + + int slash_pos = url.find("/"); + + if (slash_pos!=-1) { + request_string=url.substr(slash_pos,url.length()); + url=url.substr(0,slash_pos); + print_line("request string: "+request_string); + } else { + request_string="/"; + print_line("no request"); + } + + print_line("3 url: "+url); + + int colon_pos = url.find(":"); + if (colon_pos!=-1) { + port=url.substr(colon_pos+1,url.length()).to_int(); + url=url.substr(0,colon_pos); + ERR_FAIL_COND_V(port<1 || port > 65535,ERR_INVALID_PARAMETER); + } + + print_line("4 url: "+url); + + return OK; +} + +Error HTTPRequest::request(const String& p_url, const Vector<String>& p_custom_headers, bool p_ssl_validate_domain) { + + ERR_FAIL_COND_V(!is_inside_tree(),ERR_UNCONFIGURED); + if ( requesting ) { + ERR_EXPLAIN("HTTPRequest is processing a request. Wait for completion or cancel it before attempting a new one."); + ERR_FAIL_V(ERR_BUSY); + } + + Error err = _parse_url(p_url); + validate_ssl=p_ssl_validate_domain; + + bool has_user_agent=false; + bool has_accept=false; + headers=p_custom_headers; + + for(int i=0;i<headers.size();i++) { + + if (headers[i].findn("user-agent:")==0) + has_user_agent=true; + if (headers[i].findn("Accept:")==0) + has_accept=true; + } + + if (!has_user_agent) { + headers.push_back("User-Agent: GodotEngine/"+String(VERSION_MKSTRING)+" ("+OS::get_singleton()->get_name()+")"); + } + + if (!has_accept) { + headers.push_back("Accept: */*"); + } + + + err = _request(); + + if (err==OK) { + set_process(true); + requesting=true; + } + + + return err; +} + + +void HTTPRequest::cancel_request() { + + if (!requesting) + return; + + if (!use_threads) { + set_process(false); + } + + if (file) { + memdelete(file); + file=NULL; + } + client->close(); + body.resize(0); + //downloaded=0; + got_response=false; + response_code=-1; + //body_len=-1; + request_sent=false; + requesting=false; +} + + +bool HTTPRequest::_handle_response(bool *ret_value) { + + if (!client->has_response()) { + call_deferred("emit_signal","request_completed",RESULT_NO_RESPONSE,0,StringArray(),ByteArray()); + *ret_value=true; + return true; + } + + got_response=true; + response_code=client->get_response_code(); + List<String> rheaders; + client->get_response_headers(&rheaders); + response_headers.resize(0); + downloaded=0; + for (List<String>::Element *E=rheaders.front();E;E=E->next()) { + print_line("HEADER: "+E->get()); + response_headers.push_back(E->get()); + } + + if (response_code==301 || response_code==302) { + //redirect + if (max_redirects>=0 && redirections>=max_redirects) { + + call_deferred("emit_signal","request_completed",RESULT_REDIRECT_LIMIT_REACHED,response_code,response_headers,ByteArray()); + *ret_value=true; + return true; + } + + String new_request; + + for (List<String>::Element *E=rheaders.front();E;E=E->next()) { + if (E->get().findn("Location: ")!=-1) { + new_request=E->get().substr(9,E->get().length()).strip_edges(); + } + } + + print_line("NEW LOCATION: "+new_request); + + if (new_request!="") { + //process redirect + client->close(); + int new_redirs=redirections+1; //because _request() will clear it + Error err; + if (new_request.begins_with("http")) { + //new url, request all again + err=_parse_url(new_request); + } else { + request_string=new_request; + } + + err = _request(); + + print_line("new connection: "+itos(err)); + if (err==OK) { + request_sent=false; + got_response=false; + body_len=-1; + body.resize(0); + downloaded=0; + redirections=new_redirs; + *ret_value=false; + return true; + + } + } + } + + return false; +} + + +bool HTTPRequest::_update_connection() { + + switch( client->get_status() ) { + case HTTPClient::STATUS_DISCONNECTED: { + return true; //end it, since it's doing something + } break; + case HTTPClient::STATUS_RESOLVING: { + client->poll(); + //must wait + return false; + } break; + case HTTPClient::STATUS_CANT_RESOLVE: { + call_deferred("emit_signal","request_completed",RESULT_CANT_RESOLVE,0,StringArray(),ByteArray()); + return true; + + } break; + case HTTPClient::STATUS_CONNECTING: { + client->poll(); + //must wait + return false; + } break; //connecting to ip + case HTTPClient::STATUS_CANT_CONNECT: { + + call_deferred("emit_signal","request_completed",RESULT_CANT_CONNECT,0,StringArray(),ByteArray()); + return true; + + } break; + case HTTPClient::STATUS_CONNECTED: { + + if (request_sent) { + + if (!got_response) { + + //no body + + bool ret_value; + + if (_handle_response(&ret_value)) + return ret_value; + + + call_deferred("emit_signal","request_completed",RESULT_SUCCESS,response_code,response_headers,ByteArray()); + return true; + } + if (got_response && body_len<0) { + //chunked transfer is done + call_deferred("emit_signal","request_completed",RESULT_SUCCESS,response_code,response_headers,body); + return true; + + } + + call_deferred("emit_signal","request_completed",RESULT_CHUNKED_BODY_SIZE_MISMATCH,response_code,response_headers,ByteArray()); + return true; + //request migh have been done + } else { + //did not request yet, do request + + Error err = client->request(HTTPClient::METHOD_GET,request_string,headers); + if (err!=OK) { + call_deferred("emit_signal","request_completed",RESULT_CONNECTION_ERROR,0,StringArray(),ByteArray()); + return true; + } + + request_sent=true; + return false; + } + } break; //connected: { } break requests only accepted here + case HTTPClient::STATUS_REQUESTING: { + //must wait, it's requesting + client->poll(); + return false; + + } break; // request in progress + case HTTPClient::STATUS_BODY: { + + if (!got_response) { + + + bool ret_value; + + if (_handle_response(&ret_value)) + return ret_value; + + if (!client->is_response_chunked() && client->get_response_body_length()==0) { + + call_deferred("emit_signal","request_completed",RESULT_SUCCESS,response_code,response_headers,ByteArray()); + return true; + } + + + if (client->is_response_chunked()) { + body_len=-1; //no body len because chunked, change your webserver configuration if you want body len + } else { + body_len=client->get_response_body_length(); + + if (body_size_limit>=0 && body_len>body_size_limit) { + call_deferred("emit_signal","request_completed",RESULT_BODY_SIZE_LIMIT_EXCEEDED,response_code,response_headers,ByteArray()); + return true; + } + } + + if (download_to_file!=String()) { + file=FileAccess::open(download_to_file,FileAccess::WRITE); + if (!file) { + + call_deferred("emit_signal","request_completed",RESULT_DOWNLOAD_FILE_CANT_OPEN,response_code,response_headers,ByteArray()); + } + } + } + + + //print_line("BODY: "+itos(body.size())); + client->poll(); + + ByteArray chunk = client->read_response_body_chunk(); + downloaded+=chunk.size(); + + if (file) { + ByteArray::Read r=chunk.read(); + file->store_buffer(r.ptr(),chunk.size()); + if (file->get_error()!=OK) { + call_deferred("emit_signal","request_completed",RESULT_DOWNLOAD_FILE_WRITE_ERROR,response_code,response_headers,ByteArray()); + return true; + } + } else { + body.append_array(chunk); + } + + if (body_size_limit>=0 && downloaded>body_size_limit) { + call_deferred("emit_signal","request_completed",RESULT_BODY_SIZE_LIMIT_EXCEEDED,response_code,response_headers,ByteArray()); + return true; + } + + if (body_len>=0) { + + if (downloaded==body_len) { + call_deferred("emit_signal","request_completed",RESULT_SUCCESS,response_code,response_headers,body); + return true; + } + /*if (body.size()>=body_len) { + call_deferred("emit_signal","request_completed",RESULT_BODY_SIZE_MISMATCH,response_code,response_headers,ByteArray()); + return true; + }*/ + } + + return false; + + } break; // request resulted in body: { } break which must be read + case HTTPClient::STATUS_CONNECTION_ERROR: { + call_deferred("emit_signal","request_completed",RESULT_CONNECTION_ERROR,0,StringArray(),ByteArray()); + return true; + } break; + case HTTPClient::STATUS_SSL_HANDSHAKE_ERROR: { + call_deferred("emit_signal","request_completed",RESULT_SSL_HANDSHAKE_ERROR,0,StringArray(),ByteArray()); + return true; + } break; + + } + + ERR_FAIL_V(false); +} + +void HTTPRequest::_notification(int p_what) { + + if (p_what==NOTIFICATION_PROCESS) { + + bool done = _update_connection(); + if (done) { + + set_process(false); + cancel_request(); + } + } +} + +void HTTPRequest::set_use_threads(bool p_use) { + + ERR_FAIL_COND( status!=HTTPClient::STATUS_DISCONNECTED ); + use_threads=p_use; +} + +bool HTTPRequest::is_using_threads() const { + + return use_threads; +} + +void HTTPRequest::set_body_size_limit(int p_bytes) { + + ERR_FAIL_COND( status!=HTTPClient::STATUS_DISCONNECTED ); + + body_size_limit=p_bytes; +} + +int HTTPRequest::get_body_size_limit() const { + + return body_size_limit; +} + + +void HTTPRequest::set_download_file(const String& p_file) { + + ERR_FAIL_COND( status!=HTTPClient::STATUS_DISCONNECTED ); + + download_to_file=p_file; +} + +String HTTPRequest::get_download_file() const { + + return download_to_file; +} +HTTPClient::Status HTTPRequest::get_http_client_status() const { + return client->get_status(); +} + +void HTTPRequest::set_max_redirects(int p_max) { + + max_redirects=p_max; +} + +int HTTPRequest::get_max_redirects() const{ + + return max_redirects; +} + +int HTTPRequest::get_downloaded_bytes() const { + + return downloaded; +} +int HTTPRequest::get_body_size() const{ + return body_len; +} + + +void HTTPRequest::_bind_methods() { + + ObjectTypeDB::bind_method(_MD("request","url","custom_headers","ssl_validate_domain"),&HTTPRequest::request,DEFVAL(StringArray()),DEFVAL(true)); + ObjectTypeDB::bind_method(_MD("cancel_request"),&HTTPRequest::cancel_request); + + ObjectTypeDB::bind_method(_MD("get_http_client_status"),&HTTPRequest::get_http_client_status); + + ObjectTypeDB::bind_method(_MD("set_use_threads","enable"),&HTTPRequest::set_use_threads); + ObjectTypeDB::bind_method(_MD("is_using_threads"),&HTTPRequest::is_using_threads); + + ObjectTypeDB::bind_method(_MD("set_body_size_limit","bytes"),&HTTPRequest::set_body_size_limit); + ObjectTypeDB::bind_method(_MD("get_body_size_limit"),&HTTPRequest::get_body_size_limit); + + ObjectTypeDB::bind_method(_MD("set_max_redirects","amount"),&HTTPRequest::set_max_redirects); + ObjectTypeDB::bind_method(_MD("get_max_redirects"),&HTTPRequest::get_max_redirects); + + ObjectTypeDB::bind_method(_MD("set_download_file","path"),&HTTPRequest::set_download_file); + ObjectTypeDB::bind_method(_MD("get_download_file"),&HTTPRequest::get_download_file); + + ObjectTypeDB::bind_method(_MD("get_downloaded_bytes"),&HTTPRequest::get_downloaded_bytes); + ObjectTypeDB::bind_method(_MD("get_body_size"),&HTTPRequest::get_body_size); + + ObjectTypeDB::bind_method(_MD("_redirect_request"),&HTTPRequest::_redirect_request); + + ADD_PROPERTY(PropertyInfo(Variant::BOOL,"use_threads"),_SCS("set_use_threads"),_SCS("is_using_threads")); + ADD_PROPERTY(PropertyInfo(Variant::INT,"body_size_limit",PROPERTY_HINT_RANGE,"-1,2000000000"),_SCS("set_body_size_limit"),_SCS("get_body_size_limit")); + ADD_PROPERTY(PropertyInfo(Variant::INT,"max_redirects",PROPERTY_HINT_RANGE,"-1,1024"),_SCS("set_max_redirects"),_SCS("get_max_redirects")); + + ADD_SIGNAL(MethodInfo("request_completed",PropertyInfo(Variant::INT,"result"),PropertyInfo(Variant::INT,"response_code"),PropertyInfo(Variant::STRING_ARRAY,"headers"),PropertyInfo(Variant::RAW_ARRAY,"body"))); + + BIND_CONSTANT( RESULT_SUCCESS ); + //BIND_CONSTANT( RESULT_NO_BODY ); + BIND_CONSTANT( RESULT_CHUNKED_BODY_SIZE_MISMATCH ); + BIND_CONSTANT( RESULT_CANT_CONNECT ); + BIND_CONSTANT( RESULT_CANT_RESOLVE ); + BIND_CONSTANT( RESULT_CONNECTION_ERROR ); + BIND_CONSTANT( RESULT_SSL_HANDSHAKE_ERROR ); + BIND_CONSTANT( RESULT_NO_RESPONSE ); + BIND_CONSTANT( RESULT_BODY_SIZE_LIMIT_EXCEEDED ); + BIND_CONSTANT( RESULT_REQUEST_FAILED ); + BIND_CONSTANT( RESULT_REDIRECT_LIMIT_REACHED ); + BIND_CONSTANT( RESULT_DOWNLOAD_FILE_WRITE_ERROR ); + +} + +HTTPRequest::HTTPRequest() +{ + + + port=80; + redirections=0; + max_redirects=8; + body_len=-1; + got_response=false; + validate_ssl=false; + use_ssl=false; + response_code=0; + request_sent=false; + client.instance(); + use_threads=false; + body_size_limit=-1; + file=NULL; + status=HTTPClient::STATUS_DISCONNECTED; + +} + +HTTPRequest::~HTTPRequest() { + if (file) + memdelete(file); +} diff --git a/scene/main/http_request.h b/scene/main/http_request.h new file mode 100644 index 0000000000..7659d9e6d6 --- /dev/null +++ b/scene/main/http_request.h @@ -0,0 +1,103 @@ +#ifndef HTTPREQUEST_H +#define HTTPREQUEST_H + +#include "node.h" +#include "io/http_client.h" +#include "os/file_access.h" + +class HTTPRequest : public Node { + + OBJ_TYPE(HTTPRequest,Node); +public: + + enum Result { + RESULT_SUCCESS, + //RESULT_NO_BODY, + RESULT_CHUNKED_BODY_SIZE_MISMATCH, + RESULT_CANT_CONNECT, + RESULT_CANT_RESOLVE, + RESULT_CONNECTION_ERROR, + RESULT_SSL_HANDSHAKE_ERROR, + RESULT_NO_RESPONSE, + RESULT_BODY_SIZE_LIMIT_EXCEEDED, + RESULT_REQUEST_FAILED, + RESULT_DOWNLOAD_FILE_CANT_OPEN, + RESULT_DOWNLOAD_FILE_WRITE_ERROR, + RESULT_REDIRECT_LIMIT_REACHED + + }; + +private: + + bool requesting; + + String request_string; + String url; + int port; + Vector<String> headers; + bool validate_ssl; + bool use_ssl; + + bool request_sent; + Ref<HTTPClient> client; + ByteArray body; + bool use_threads; + + bool got_response; + int response_code; + DVector<String> response_headers; + + String download_to_file; + + FileAccess *file; + + int body_len; + int downloaded; + int body_size_limit; + + int redirections; + + HTTPClient::Status status; + + bool _update_connection(); + + int max_redirects; + + void _redirect_request(const String& p_new_url); + + bool _handle_response(bool *ret_value); + + Error _parse_url(const String& p_url); + Error _request(); + + +protected: + + void _notification(int p_what); + static void _bind_methods(); +public: + + Error request(const String& p_url,const Vector<String>& p_custom_headers=Vector<String>(),bool p_ssl_validate_domain=true); //connects to a full url and perform request + void cancel_request(); + HTTPClient::Status get_http_client_status() const; + + void set_use_threads(bool p_use); + bool is_using_threads() const; + + void set_download_file(const String& p_file); + String get_download_file() const; + + void set_body_size_limit(int p_bytes); + int get_body_size_limit() const; + + void set_max_redirects(int p_max); + int get_max_redirects() const; + + int get_downloaded_bytes() const; + int get_body_size() const; + + HTTPRequest(); + ~HTTPRequest(); +}; + +#endif // HTTPREQUEST_H diff --git a/scene/main/misc.h b/scene/main/misc.h index 1c5bc7208e..d5db8c3247 100644 --- a/scene/main/misc.h +++ b/scene/main/misc.h @@ -37,7 +37,7 @@ class Misc : public Node { OBJ_TYPE( Misc, Node ); public: - Misc(); + Misc(); ~Misc(); }; diff --git a/scene/main/node.cpp b/scene/main/node.cpp index 450578a241..b90edb38b2 100644 --- a/scene/main/node.cpp +++ b/scene/main/node.cpp @@ -41,7 +41,7 @@ VARIANT_ENUM_CAST(Node::PauseMode); void Node::_notification(int p_notification) { - + switch(p_notification) { case NOTIFICATION_PROCESS: { @@ -114,21 +114,21 @@ void Node::_notification(int p_notification) { case NOTIFICATION_PREDELETE: { set_owner(NULL); - + while ( data.owned.size() ) { - - data.owned.front()->get()->set_owner(NULL); + + data.owned.front()->get()->set_owner(NULL); } if (data.parent) { - + data.parent->remove_child(this); } // kill children as cleanly as possible while( data.children.size() ) { - - Node *child = data.children[0]; + + Node *child = data.children[0]; remove_child(child); memdelete( child ); } @@ -161,7 +161,7 @@ void Node::_propagate_enter_tree() { data.depth=1; } - + data.viewport = cast_to<Viewport>(); if (!data.viewport) data.viewport = data.parent->data.viewport; @@ -191,10 +191,10 @@ void Node::_propagate_enter_tree() { //block while adding children for (int i=0;i<data.children.size();i++) { - + if (!data.children[i]->is_inside_tree()) // could have been added in enter_tree data.children[i]->_propagate_enter_tree(); - } + } data.blocked--; @@ -279,15 +279,15 @@ void Node::_propagate_exit_tree() { -void Node::move_child(Node *p_child,int p_pos) { - +void Node::move_child(Node *p_child,int p_pos) { + ERR_FAIL_NULL(p_child); ERR_EXPLAIN("Invalid new child position: "+itos(p_pos)); ERR_FAIL_INDEX( p_pos, data.children.size()+1 ); ERR_EXPLAIN("child is not a child of this node."); ERR_FAIL_COND(p_child->data.parent!=this); ERR_FAIL_COND(data.blocked>0); - + data.children.remove( p_child->data.pos ); data.children.insert( p_pos, p_child ); @@ -298,7 +298,7 @@ void Node::move_child(Node *p_child,int p_pos) { data.blocked++; //new pos first for (int i=0;i<data.children.size();i++) { - + data.children[i]->data.pos=i; } // notification second @@ -313,17 +313,17 @@ void Node::move_child(Node *p_child,int p_pos) { } void Node::raise() { - + if (!data.parent) return; - + data.parent->move_child(this,data.parent->data.children.size()-1); } void Node::add_child_notify(Node *p_child) { - - // to be used when not wanted + + // to be used when not wanted } /* @@ -340,26 +340,26 @@ void Node::remove_and_delete_child(Node *p_child) { void Node::remove_child_notify(Node *p_child) { - // to be used when not wanted + // to be used when not wanted } void Node::move_child_notify(Node *p_child) { - // to be used when not wanted + // to be used when not wanted } void Node::set_fixed_process(bool p_process) { - + if (data.fixed_process==p_process) return; data.fixed_process=p_process; - + if (data.fixed_process) add_to_group("fixed_process",false); else remove_from_group("fixed_process"); - + data.fixed_process=p_process; _change_notify("fixed_process"); } @@ -437,7 +437,7 @@ bool Node::can_process() const { float Node::get_fixed_process_delta_time() const { - + if (data.tree) return data.tree->get_fixed_process_time(); else @@ -469,7 +469,7 @@ float Node::get_process_delta_time() const { } bool Node::is_fixed_processing() const { - + return data.fixed_process; } @@ -541,7 +541,7 @@ bool Node::is_processing_unhandled_key_input() const { StringName Node::get_name() const { - + return data.name; } @@ -552,14 +552,14 @@ void Node::_set_name_nocheck(const StringName& p_name) { } void Node::set_name(const String& p_name) { - + String name=p_name.replace(":","").replace("/","").replace("@",""); ERR_FAIL_COND(name==""); data.name=name; - + if (data.parent) { - + data.parent->_validate_child_name(this); } @@ -741,12 +741,12 @@ void Node::add_child(Node *p_child, bool p_legible_unique_name) { ERR_FAIL_COND( p_child->data.parent ); ERR_EXPLAIN("Can't add child while a notification is happening"); ERR_FAIL_COND( data.blocked > 0 ); - + /* Validate name */ _validate_child_name(p_child,p_legible_unique_name); _add_child_nocheck(p_child,p_child->data.name); - + } @@ -791,36 +791,36 @@ void Node::remove_child(Node *p_child) { ERR_FAIL_NULL(p_child); ERR_FAIL_COND( data.blocked > 0 ); - + int idx=-1; for (int i=0;i<data.children.size();i++) { - + if (data.children[i]==p_child) { - + idx=i; break; } } - + ERR_FAIL_COND( idx==-1 ); //ERR_FAIL_COND( p_child->data.blocked > 0 ); - + //if (data.scene) { does not matter - + p_child->_set_tree(NULL); //} - - remove_child_notify(p_child); + + remove_child_notify(p_child); p_child->notification(NOTIFICATION_UNPARENTED); - + data.children.remove(idx); - + for (int i=idx;i<data.children.size();i++) { - + data.children[i]->data.pos=i; } - + p_child->data.parent=NULL; p_child->data.pos=-1; @@ -828,17 +828,17 @@ void Node::remove_child(Node *p_child) { // validate owner p_child->_propagate_validate_owner(); - + } int Node::get_child_count() const { - - return data.children.size(); + + return data.children.size(); } Node *Node::get_child(int p_index) const { - + ERR_FAIL_INDEX_V( p_index, data.children.size(), NULL ); - + return data.children[p_index]; } @@ -862,10 +862,10 @@ Node *Node::_get_node(const NodePath& p_path) const { ERR_EXPLAIN("Can't use get_node() with absolute paths from outside the active scene tree."); ERR_FAIL_V(NULL); } - - Node *current=NULL; + + Node *current=NULL; Node *root=NULL; - + if (!p_path.is_absolute()) { current=const_cast<Node*>(this); //start from this } else { @@ -874,42 +874,42 @@ Node *Node::_get_node(const NodePath& p_path) const { while (root->data.parent) root=root->data.parent; //start from root } - + for(int i=0;i<p_path.get_name_count();i++) { - - - StringName name = p_path.get_name(i); + + + StringName name = p_path.get_name(i); Node *next = NULL; - + if (name==SceneStringNames::get_singleton()->dot) { // . - + next=current; - + } else if (name==SceneStringNames::get_singleton()->doubledot) { // .. - + if (current==NULL || !current->data.parent) return NULL; - + next=current->data.parent; } else if (current==NULL) { - + if (name==root->get_name()) next=root; - + } else { - + next=NULL; - + for(int j=0;j<current->data.children.size();j++) { - + Node *child = current->data.children[j]; if ( child->data.name == name ) { - + next = child; break; - } + } } if (next == NULL) { return NULL; @@ -917,7 +917,7 @@ Node *Node::_get_node(const NodePath& p_path) const { } current=next; } - + return current; } @@ -969,12 +969,12 @@ bool Node::is_a_parent_of(const Node *p_node) const { ERR_FAIL_NULL_V(p_node,false); Node *p=p_node->data.parent; while(p) { - + if (p==this) return true; p=p->data.parent; } - + return false; } @@ -983,25 +983,25 @@ bool Node::is_greater_than(const Node *p_node) const { ERR_FAIL_NULL_V(p_node,false); ERR_FAIL_COND_V( !data.inside_tree, false ); ERR_FAIL_COND_V( !p_node->data.inside_tree, false ); - + ERR_FAIL_COND_V( data.depth<0, false); ERR_FAIL_COND_V( p_node->data.depth<0, false); #ifdef NO_ALLOCA - + Vector<int> this_stack; Vector<int> that_stack; this_stack.resize(data.depth); that_stack.resize(p_node->data.depth); #else - + int *this_stack=(int*)alloca(sizeof(int)*data.depth); int *that_stack=(int*)alloca(sizeof(int)*p_node->data.depth); - + #endif - + const Node *n = this; - + int idx=data.depth-1; while(n) { ERR_FAIL_INDEX_V(idx, data.depth,false); @@ -1014,15 +1014,15 @@ bool Node::is_greater_than(const Node *p_node) const { while(n) { ERR_FAIL_INDEX_V(idx, p_node->data.depth,false); that_stack[idx--]=n->data.pos; - + n=n->data.parent; } ERR_FAIL_COND_V(idx!=-1,false); idx=0; - + bool res; while(true) { - + // using -2 since out-of-tree or nonroot nodes have -1 int this_idx = (idx >= data.depth)? -2 : this_stack[idx]; int that_idx = (idx >= p_node->data.depth)? -2 : that_stack[idx]; @@ -1039,7 +1039,7 @@ bool Node::is_greater_than(const Node *p_node) const { } idx++; } - + return res; } @@ -1063,39 +1063,39 @@ void Node::_set_owner_nocheck(Node* p_owner) { } void Node::set_owner(Node *p_owner) { - + if (data.owner) { - + data.owner->data.owned.erase( data.OW ); data.OW=NULL; data.owner=NULL; } - + ERR_FAIL_COND(p_owner==this); - + if (!p_owner) return; - + Node *check=this->get_parent(); bool owner_valid=false; - + while(check) { - + if (check==p_owner) { owner_valid=true; break; } - + check=check->data.parent; } - + ERR_FAIL_COND(!owner_valid); _set_owner_nocheck(p_owner); } Node *Node::get_owner() const { - - return data.owner; + + return data.owner; } NodePath Node::get_path_to(const Node *p_node) const { @@ -1104,68 +1104,68 @@ NodePath Node::get_path_to(const Node *p_node) const { if (this==p_node) return NodePath("."); - + Set<const Node*> visited; - + const Node *n=this; - + while(n) { - + visited.insert(n); n=n->data.parent; } const Node *common_parent=p_node; - + while(common_parent) { - + if (visited.has(common_parent)) break; common_parent=common_parent->data.parent; } - + ERR_FAIL_COND_V(!common_parent,NodePath()); //nodes not in the same tree - + visited.clear(); - + Vector<StringName> path; - + n=p_node; - + while(n!=common_parent) { - + path.push_back( n->get_name() ); n=n->data.parent; } - + n=this; - StringName up=String(".."); - + StringName up=String(".."); + while(n!=common_parent) { - + path.push_back( up ); n=n->data.parent; } - + path.invert(); - - return NodePath(path,false); + + return NodePath(path,false); } NodePath Node::get_path() const { - + ERR_FAIL_COND_V(!is_inside_tree(),NodePath()); const Node *n = this; - + Vector<StringName> path; - + while(n) { path.push_back(n->get_name()); n=n->data.parent; - } - + } + path.invert(); - + return NodePath( path, true ); } @@ -1175,36 +1175,36 @@ bool Node::is_in_group(const StringName& p_identifier) const { } void Node::add_to_group(const StringName& p_identifier,bool p_persistent) { - + ERR_FAIL_COND(!p_identifier.operator String().length()); - + if (data.grouped.has(p_identifier)) return; - + GroupData gd; - + if (data.tree) data.tree->add_to_group(p_identifier,this); - gd.persistent=p_persistent; - + gd.persistent=p_persistent; + data.grouped[p_identifier]=gd; } void Node::remove_from_group(const StringName& p_identifier) { - + ERR_FAIL_COND(!data.grouped.has(p_identifier) ); - + GroupData *g=data.grouped.getptr(p_identifier); - + ERR_FAIL_COND(!g); - + if (data.tree) data.tree->remove_from_group(p_identifier,this); - data.grouped.erase(p_identifier); + data.grouped.erase(p_identifier); } @@ -1223,15 +1223,15 @@ Array Node::_get_groups() const { void Node::get_groups(List<GroupInfo> *p_groups) const { const StringName *K=NULL; - + while ((K=data.grouped.next(K))) { - + GroupInfo gi; gi.name=*K; gi.persistent=data.grouped[*K].persistent; p_groups->push_back(gi); } - + } @@ -1249,13 +1249,13 @@ void Node::print_tree() { void Node::_propagate_reverse_notification(int p_notification) { - - data.blocked++; + + data.blocked++; for (int i=data.children.size()-1;i>=0;i--) { - - data.children[i]->_propagate_reverse_notification(p_notification); + + data.children[i]->_propagate_reverse_notification(p_notification); } - + notification(p_notification,true); data.blocked--; } @@ -1281,75 +1281,75 @@ void Node::_propagate_deferred_notification(int p_notification, bool p_reverse) } void Node::propagate_notification(int p_notification) { - - data.blocked++; + + data.blocked++; notification(p_notification); - + for (int i=0;i<data.children.size();i++) { - - data.children[i]->propagate_notification(p_notification); + + data.children[i]->propagate_notification(p_notification); } - data.blocked--; + data.blocked--; } -void Node::_propagate_replace_owner(Node *p_owner,Node* p_by_owner) { +void Node::_propagate_replace_owner(Node *p_owner,Node* p_by_owner) { if (get_owner()==p_owner) set_owner(p_by_owner); - + data.blocked++; - for (int i=0;i<data.children.size();i++) + for (int i=0;i<data.children.size();i++) data.children[i]->_propagate_replace_owner(p_owner,p_by_owner); - data.blocked--; + data.blocked--; } int Node::get_index() const { - + return data.pos; } void Node::remove_and_skip() { - + ERR_FAIL_COND(!data.parent); - + Node *new_owner=get_owner(); - + List<Node*> children; - + while(true) { - + bool clear=true; for (int i=0;i<data.children.size();i++) { if (!data.children[i]->get_owner()) continue; - + remove_child(data.children[i]); data.children[i]->_propagate_replace_owner(this,NULL); - children.push_back(data.children[i]); + children.push_back(data.children[i]); clear=false; break; } - + if (clear) break; } - + while(!children.empty()) { - + Node *c=children.front()->get(); data.parent->add_child(c); - c->_propagate_replace_owner(NULL,new_owner); + c->_propagate_replace_owner(NULL,new_owner); children.pop_front(); } - + data.parent->remove_child(this); } void Node::set_filename(const String& p_filename) { - + data.filename=p_filename; } String Node::get_filename() const { - + return data.filename; } @@ -2117,7 +2117,7 @@ void Node::_bind_methods() { Node::Node() { - + data.pos=-1; data.depth=-1; data.blocked=0; @@ -2141,12 +2141,12 @@ Node::Node() { } Node::~Node() { - + data.grouped.clear(); data.owned.clear(); data.children.clear(); - + ERR_FAIL_COND(data.parent); ERR_FAIL_COND(data.children.size()); diff --git a/scene/main/node.h b/scene/main/node.h index 4d05dd381c..5c6147d644 100644 --- a/scene/main/node.h +++ b/scene/main/node.h @@ -43,7 +43,7 @@ class Node : public Object { OBJ_TYPE( Node, Object ); OBJ_CATEGORY("Nodes"); - + public: enum PauseMode { @@ -59,16 +59,16 @@ public: bool operator()(const Node* p_a, const Node* p_b) const { return p_b->is_greater_than(p_a); } }; -private: - +private: + struct GroupData { - - bool persistent; + + bool persistent; GroupData() { persistent=false; } }; - + struct Data { - + String filename; Ref<SceneState> instance_state; Ref<SceneState> inherited_state; @@ -90,11 +90,11 @@ private: Viewport *viewport; - + HashMap< StringName, GroupData,StringNameHasher> grouped; List<Node*>::Element *OW; // owned element List<Node*> owned; - + PauseMode pause_mode; Node *pause_owner; // variables used to properly sort the node when processing, ignored otherwise @@ -112,10 +112,10 @@ private: } data; - - void _print_tree(const Node *p_node); - + + void _print_tree(const Node *p_node); + virtual bool _use_builtin_script() const { return true; } Node *_get_node(const NodePath& p_path) const; Node *_get_child_by_name(const StringName& p_name) const; @@ -124,7 +124,7 @@ private: void _validate_child_name(Node *p_name, bool p_force_human_readable=false); - void _propagate_reverse_notification(int p_notification); + void _propagate_reverse_notification(int p_notification); void _propagate_deferred_notification(int p_notification, bool p_reverse); void _propagate_enter_tree(); void _propagate_ready(); @@ -147,15 +147,15 @@ protected: void _block() { data.blocked++; } void _unblock() { data.blocked--; } - void _notification(int p_notification); - + void _notification(int p_notification); + virtual void add_child_notify(Node *p_child); virtual void remove_child_notify(Node *p_child); virtual void move_child_notify(Node *p_child); //void remove_and_delete_child(Node *p_child); - - void _propagate_replace_owner(Node *p_owner,Node* p_by_owner); - + + void _propagate_replace_owner(Node *p_owner,Node* p_by_owner); + static void _bind_methods(); friend class SceneState; @@ -181,15 +181,15 @@ public: NOTIFICATION_UNPARENTED=19, NOTIFICATION_INSTANCED=20, }; - - /* NODE/TREE */ - + + /* NODE/TREE */ + StringName get_name() const; void set_name(const String& p_name); - + void add_child(Node *p_child,bool p_legible_unique_name=false); void remove_child(Node *p_child); - + int get_child_count() const; Node *get_child(int p_index) const; bool has_node(const NodePath& p_path) const; @@ -197,43 +197,43 @@ public: Node* find_node(const String& p_mask,bool p_recursive=true,bool p_owned=true) const; bool has_node_and_resource(const NodePath& p_path) const; Node *get_node_and_resource(const NodePath& p_path,RES& r_res) const; - + Node *get_parent() const; _FORCE_INLINE_ SceneTree *get_tree() const { ERR_FAIL_COND_V( !data.tree, NULL ); return data.tree; } _FORCE_INLINE_ bool is_inside_tree() const { return data.inside_tree; } - + bool is_a_parent_of(const Node *p_node) const; bool is_greater_than(const Node *p_node) const; - + NodePath get_path() const; NodePath get_path_to(const Node *p_node) const; - + void add_to_group(const StringName& p_identifier,bool p_persistent=false); void remove_from_group(const StringName& p_identifier); bool is_in_group(const StringName& p_identifier) const; - + struct GroupInfo { - + StringName name; bool persistent; }; - + void get_groups(List<GroupInfo> *p_groups) const; - + void move_child(Node *p_child,int p_pos); void raise(); - + void set_owner(Node *p_owner); Node *get_owner() const; void get_owned_by(Node *p_by,List<Node*> *p_owned); - + void remove_and_skip(); int get_index() const; - + void print_tree(); - + void set_filename(const String& p_filename); String get_filename() const; @@ -242,9 +242,9 @@ public: /* NOTIFICATIONS */ - + void propagate_notification(int p_notification); - + /* PROCESSING */ void set_fixed_process(bool p_process); float get_fixed_process_delta_time() const; diff --git a/scene/main/scene_main_loop.cpp b/scene/main/scene_main_loop.cpp index 8e2d6aa669..cc103b5115 100644 --- a/scene/main/scene_main_loop.cpp +++ b/scene/main/scene_main_loop.cpp @@ -211,7 +211,7 @@ void SceneTree::call_group(uint32_t p_call_flags,const StringName& p_group,const else nodes[i]->call(p_function,VARIANT_ARG_PASS); } else - MessageQueue::get_singleton()->push_call(nodes[i],p_function,VARIANT_ARG_PASS); + MessageQueue::get_singleton()->push_call(nodes[i],p_function,VARIANT_ARG_PASS); } } @@ -433,7 +433,7 @@ void SceneTree::input_event( const InputEvent& p_event ) { ScriptDebugger::get_singleton()->request_quit(); } - _flush_ugc(); + _flush_ugc(); root_lock--; MessageQueue::get_singleton()->flush(); //small little hack diff --git a/scene/main/scene_main_loop.h b/scene/main/scene_main_loop.h index c6fc124345..b6a015c9ed 100644 --- a/scene/main/scene_main_loop.h +++ b/scene/main/scene_main_loop.h @@ -76,7 +76,7 @@ private: struct Group { Vector<Node*> nodes; - uint64_t last_tree_version; + uint64_t last_tree_version; Group() { last_tree_version=0; }; }; diff --git a/scene/main/timer.cpp b/scene/main/timer.cpp index a118bc9782..73458e03c0 100644 --- a/scene/main/timer.cpp +++ b/scene/main/timer.cpp @@ -111,7 +111,7 @@ bool Timer::has_autostart() const { } void Timer::start() { - time_left=wait_time; + time_left=wait_time; _set_process(true); } @@ -154,7 +154,7 @@ Timer::TimerProcessMode Timer::get_timer_process_mode() const{ } -void Timer::_set_process(bool p_process, bool p_force) +void Timer::_set_process(bool p_process, bool p_force) { switch (timer_process_mode) { case TIMER_PROCESS_FIXED: set_fixed_process(p_process); break; diff --git a/scene/main/viewport.cpp b/scene/main/viewport.cpp index 104806d891..5017ae61ff 100644 --- a/scene/main/viewport.cpp +++ b/scene/main/viewport.cpp @@ -318,10 +318,10 @@ void Viewport::_test_new_mouseover(ObjectID new_collider) { } void Viewport::_notification(int p_what) { - + switch( p_what ) { - + case NOTIFICATION_ENTER_TREE: { if (get_parent()) { @@ -696,8 +696,8 @@ void Viewport::_notification(int p_what) { } RID Viewport::get_viewport() const { - - return viewport; + + return viewport; } void Viewport::set_rect(const Rect2& p_rect) { @@ -715,12 +715,12 @@ Rect2 Viewport::get_visible_rect() const { Rect2 r; - + if (rect.pos==Vector2() && rect.size==Size2()) { - + r=Rect2( Point2(), Size2( OS::get_singleton()->get_video_mode().width, OS::get_singleton()->get_video_mode().height ) ); } else { - + r=Rect2( rect.pos , rect.size ); } @@ -733,7 +733,7 @@ Rect2 Viewport::get_visible_rect() const { } Rect2 Viewport::get_rect() const { - + return rect; } @@ -894,6 +894,7 @@ void Viewport::_camera_remove(Camera* p_camera) { } } +#ifndef _3D_DISABLED void Viewport::_camera_make_next_current(Camera* p_exclude) { for(Set<Camera*>::Element *E=cameras.front();E;E=E->next()) { @@ -909,7 +910,7 @@ void Viewport::_camera_make_next_current(Camera* p_exclude) { } } - +#endif void Viewport::set_transparent_background(bool p_enable) { @@ -1335,7 +1336,7 @@ void Viewport::_vp_input(const InputEvent& p_ev) { //they are converted to viewport coordinates - InputEvent ev = p_ev; + InputEvent ev = p_ev; _make_input_local(ev); input(ev); @@ -1803,6 +1804,7 @@ void Viewport::_gui_input_event(InputEvent p_event) { } + if (gui.drag_data.get_type()==Variant::NIL && over && !gui.modal_stack.empty()) { Control *top = gui.modal_stack.back()->get(); @@ -1836,7 +1838,7 @@ void Viewport::_gui_input_event(InputEvent p_event) { } - Matrix32 localizer = over->get_canvas_transform().affine_inverse(); + Matrix32 localizer = over->get_global_transform_with_canvas().affine_inverse(); Size2 pos = localizer.xform(mpos); Vector2 speed = localizer.basis_xform(Point2(p_event.mouse_motion.speed_x,p_event.mouse_motion.speed_y)); Vector2 rel = localizer.basis_xform(Point2(p_event.mouse_motion.relative_x,p_event.mouse_motion.relative_y)); @@ -1871,7 +1873,7 @@ void Viewport::_gui_input_event(InputEvent p_event) { } - pos = gui.focus_inv_xform.xform(pos); + //pos = gui.focus_inv_xform.xform(pos); p_event.mouse_motion.x = pos.x; @@ -2239,7 +2241,7 @@ void Viewport::input(const InputEvent& p_event) { ERR_FAIL_COND(!is_inside_tree()); - get_tree()->_call_input_pause(input_group,"_input",p_event); + get_tree()->_call_input_pause(input_group,"_input",p_event); _gui_input_event(p_event); //get_tree()->call_group(SceneTree::GROUP_CALL_REVERSE|SceneTree::GROUP_CALL_REALTIME|SceneTree::GROUP_CALL_MULIILEVEL,gui_input_group,"_gui_input",p_event); //special one for GUI, as controls use their own process check } @@ -2408,10 +2410,10 @@ void Viewport::_bind_methods() { ObjectTypeDB::bind_method(_MD("set_render_target_vflip","enable"), &Viewport::set_render_target_vflip); ObjectTypeDB::bind_method(_MD("get_render_target_vflip"), &Viewport::get_render_target_vflip); - + ObjectTypeDB::bind_method(_MD("set_render_target_clear_on_new_frame","enable"), &Viewport::set_render_target_clear_on_new_frame); ObjectTypeDB::bind_method(_MD("get_render_target_clear_on_new_frame"), &Viewport::get_render_target_clear_on_new_frame); - + ObjectTypeDB::bind_method(_MD("render_target_clear"), &Viewport::render_target_clear); ObjectTypeDB::bind_method(_MD("set_render_target_filter","enable"), &Viewport::set_render_target_filter); diff --git a/scene/main/viewport.h b/scene/main/viewport.h index 5bf7418ee9..afabd499a9 100644 --- a/scene/main/viewport.h +++ b/scene/main/viewport.h @@ -270,7 +270,7 @@ friend class Camera; void _camera_make_next_current(Camera* p_exclude); -protected: +protected: void _notification(int p_what); static void _bind_methods(); public: @@ -284,7 +284,7 @@ public: void set_as_audio_listener_2d(bool p_enable); bool is_audio_listener_2d() const; - void set_rect(const Rect2& p_rect); + void set_rect(const Rect2& p_rect); Rect2 get_rect() const; Rect2 get_visible_rect() const; RID get_viewport() const; @@ -362,7 +362,7 @@ public: bool gui_has_modal_stack() const; - Viewport(); + Viewport(); ~Viewport(); }; diff --git a/scene/register_scene_types.cpp b/scene/register_scene_types.cpp index 3c1b5268fc..9930aa07f6 100644 --- a/scene/register_scene_types.cpp +++ b/scene/register_scene_types.cpp @@ -38,9 +38,11 @@ #include "scene/main/canvas_layer.h" #include "scene/main/instance_placeholder.h" #include "scene/main/viewport.h" +#include "scene/main/http_request.h" #include "scene/gui/control.h" #include "scene/gui/texture_progress.h" #include "scene/gui/button.h" +#include "scene/gui/link_button.h" #include "scene/gui/button_array.h" #include "scene/gui/button_group.h" #include "scene/gui/label.h" @@ -273,6 +275,7 @@ void register_scene_types() { ObjectTypeDB::register_type<Viewport>(); ObjectTypeDB::register_virtual_type<RenderTargetTexture>(); + ObjectTypeDB::register_type<HTTPRequest>(); ObjectTypeDB::register_type<Timer>(); ObjectTypeDB::register_type<CanvasLayer>(); ObjectTypeDB::register_type<CanvasModulate>(); @@ -297,9 +300,10 @@ void register_scene_types() { ObjectTypeDB::register_type<Popup>(); ObjectTypeDB::register_type<PopupPanel>(); ObjectTypeDB::register_type<MenuButton>(); - ObjectTypeDB::register_type<CheckBox>(); + ObjectTypeDB::register_type<CheckBox>(); ObjectTypeDB::register_type<CheckButton>(); ObjectTypeDB::register_type<ToolButton>(); + ObjectTypeDB::register_type<LinkButton>(); ObjectTypeDB::register_type<Panel>(); ObjectTypeDB::register_type<Range>(); @@ -428,7 +432,7 @@ void register_scene_types() { ObjectTypeDB::register_type<ConeTwistJoint>(); ObjectTypeDB::register_type<Generic6DOFJoint>(); - //scenariofx + //scenariofx OS::get_singleton()->yield(); //may take time to init @@ -625,9 +629,9 @@ void register_scene_types() { } void unregister_scene_types() { - + clear_default_theme(); - + memdelete( resource_loader_image ); memdelete( resource_loader_wav ); #ifdef TOOLS_ENABLED diff --git a/scene/resources/animation.cpp b/scene/resources/animation.cpp index e8bd6c14ad..f7d5ddc744 100644 --- a/scene/resources/animation.cpp +++ b/scene/resources/animation.cpp @@ -41,33 +41,33 @@ bool Animation::_set(const StringName& p_name, const Variant& p_value) { else if (name=="step") set_step(p_value); else if (name.begins_with("tracks/")) { - + int track=name.get_slicec('/',1).to_int(); String what=name.get_slicec('/',2); if (tracks.size()==track && what=="type") { - + String type=p_value; - + if (type=="transform") { - + add_track(TYPE_TRANSFORM); } else if (type=="value") { - + add_track(TYPE_VALUE); } else if (type=="method") { - + add_track(TYPE_METHOD); } else { - + return false; } - + return true; } - + ERR_FAIL_INDEX_V( track, tracks.size(),false ); - + if (what=="path") track_set_path(track,p_value); else if (what=="interp") @@ -261,10 +261,10 @@ bool Animation::_get(const StringName& p_name,Variant &r_ret) const { String what=name.get_slicec('/',2); ERR_FAIL_INDEX_V( track, tracks.size(), false ); if (what=="type") { - - + + switch (track_get_type(track)) { - + case TYPE_TRANSFORM: r_ret= "transform"; break; case TYPE_VALUE: r_ret= "value";break; case TYPE_METHOD: r_ret= "method";break; @@ -281,7 +281,7 @@ bool Animation::_get(const StringName& p_name,Variant &r_ret) const { if (track_get_type(track)==TYPE_TRANSFORM) { DVector<real_t> keys; - int kk=track_get_key_count(track); + int kk=track_get_key_count(track); keys.resize(kk*12); DVector<real_t>::Write w = keys.write(); @@ -406,7 +406,7 @@ bool Animation::_get(const StringName& p_name,Variant &r_ret) const { return false; } else return false; - + return true; } @@ -415,11 +415,11 @@ bool Animation::_get(const StringName& p_name,Variant &r_ret) const { void Animation::_get_property_list( List<PropertyInfo> *p_list) const { p_list->push_back( PropertyInfo( Variant::REAL, "length", PROPERTY_HINT_RANGE, "0.001,99999,0.001")); - p_list->push_back( PropertyInfo( Variant::BOOL, "loop" )); + p_list->push_back( PropertyInfo( Variant::BOOL, "loop" )); p_list->push_back( PropertyInfo( Variant::REAL, "step", PROPERTY_HINT_RANGE, "0,4096,0.001" )); for (int i=0;i<tracks.size();i++) { - + p_list->push_back( PropertyInfo( Variant::STRING, "tracks/"+itos(i)+"/type", PROPERTY_HINT_NONE,"",PROPERTY_USAGE_NOEDITOR) ); p_list->push_back( PropertyInfo( Variant::NODE_PATH, "tracks/"+itos(i)+"/path", PROPERTY_HINT_NONE,"",PROPERTY_USAGE_NOEDITOR) ); p_list->push_back( PropertyInfo( Variant::INT, "tracks/"+itos(i)+"/interp", PROPERTY_HINT_NONE,"",PROPERTY_USAGE_NOEDITOR) ); @@ -433,24 +433,24 @@ int Animation::add_track(TrackType p_type,int p_at_pos) { p_at_pos=tracks.size(); switch( p_type ) { - + case TYPE_TRANSFORM: { - + TransformTrack *tt = memnew( TransformTrack ); tracks.insert( p_at_pos,tt ); } break; case TYPE_VALUE: { - + tracks.insert( p_at_pos,memnew( ValueTrack ) ); - + } break; case TYPE_METHOD: { - + tracks.insert( p_at_pos,memnew( MethodTrack ) ); - + } break; default: { - + ERR_PRINT("Unknown track type"); } } @@ -462,29 +462,29 @@ void Animation::remove_track(int p_track) { ERR_FAIL_INDEX(p_track, tracks.size()); Track *t=tracks[p_track]; - + switch(t->type) { - + case TYPE_TRANSFORM: { - + TransformTrack * tt = static_cast<TransformTrack*>(t); _clear(tt->transforms); - + } break; case TYPE_VALUE: { - - ValueTrack * vt = static_cast<ValueTrack*>(t); + + ValueTrack * vt = static_cast<ValueTrack*>(t); _clear(vt->values); - + } break; case TYPE_METHOD: { - + MethodTrack * mt = static_cast<MethodTrack*>(t); _clear(mt->methods); - - } break; - } - + + } break; + } + memdelete( t ); tracks.remove(p_track); emit_changed(); @@ -548,30 +548,30 @@ template<class T> int Animation::_insert_pos(float p_time, T& p_keys) { // simple, linear time inset that should be fast enough in reality. - + int idx=p_keys.size(); - + while(true) { - - + + if (idx==0 || p_keys[idx-1].time < p_time) { //condition for insertion. p_keys.insert(idx,T()); return idx; } else if (p_keys[idx-1].time == p_time) { - + // condition for replacing. return idx-1; - } - + } + idx--; } - + } */ template<class T, class V> int Animation::_insert(float p_time, T& p_keys, const V& p_value) { - + int idx=p_keys.size(); while(true) { @@ -597,7 +597,7 @@ int Animation::_insert(float p_time, T& p_keys, const V& p_value) { template<class T> void Animation::_clear(T& p_keys) { - + p_keys.clear(); } @@ -727,11 +727,11 @@ void Animation::track_insert_key(int p_track, float p_time, const Variant& p_val ERR_FAIL_INDEX(p_track, tracks.size()); Track *t=tracks[p_track]; - + switch(t->type) { - + case TYPE_TRANSFORM: { - + Dictionary d = p_value; Vector3 loc; if (d.has("loc")) @@ -750,36 +750,36 @@ void Animation::track_insert_key(int p_track, float p_time, const Variant& p_val } break; case TYPE_VALUE: { - + ValueTrack * vt = static_cast<ValueTrack*>(t); - + TKey<Variant> k; k.time=p_time; k.transition=p_transition; k.value=p_value; _insert( p_time, vt->values, k ); - + } break; case TYPE_METHOD: { - + MethodTrack * mt = static_cast<MethodTrack*>(t); - + ERR_FAIL_COND( p_value.get_type() != Variant::DICTIONARY ); - + Dictionary d=p_value; ERR_FAIL_COND(!d.has("method") || d["method"].get_type()!=Variant::STRING); ERR_FAIL_COND(!d.has("args") || !d["args"].is_array()); MethodKey k; - + k.time=p_time; k.transition=p_transition; k.method=d["method"]; k.params=d["args"]; _insert( p_time, mt->methods, k ); - - } break; + + } break; } @@ -790,27 +790,27 @@ int Animation::track_get_key_count(int p_track) const { ERR_FAIL_INDEX_V(p_track, tracks.size(),-1); Track *t=tracks[p_track]; - + switch(t->type) { - + case TYPE_TRANSFORM: { - + TransformTrack * tt = static_cast<TransformTrack*>(t); return tt->transforms.size(); } break; case TYPE_VALUE: { - + ValueTrack * vt = static_cast<ValueTrack*>(t); return vt->values.size(); - + } break; case TYPE_METHOD: { - + MethodTrack * mt = static_cast<MethodTrack*>(t); return mt->methods.size(); - } break; + } break; } - + ERR_FAIL_V(-1); } @@ -818,11 +818,11 @@ Variant Animation::track_get_key_value(int p_track, int p_key_idx) const { ERR_FAIL_INDEX_V(p_track, tracks.size(), Variant()); Track *t=tracks[p_track]; - + switch(t->type) { - + case TYPE_TRANSFORM: { - + TransformTrack * tt = static_cast<TransformTrack*>(t); ERR_FAIL_INDEX_V( p_key_idx, tt->transforms.size(), Variant() ); @@ -834,25 +834,25 @@ Variant Animation::track_get_key_value(int p_track, int p_key_idx) const { return d; } break; case TYPE_VALUE: { - - ValueTrack * vt = static_cast<ValueTrack*>(t); + + ValueTrack * vt = static_cast<ValueTrack*>(t); ERR_FAIL_INDEX_V( p_key_idx, vt->values.size(), Variant() ); return vt->values[p_key_idx].value; } break; case TYPE_METHOD: { - + MethodTrack * mt = static_cast<MethodTrack*>(t); ERR_FAIL_INDEX_V( p_key_idx, mt->methods.size(), Variant() ); Dictionary d; d["method"]=mt->methods[p_key_idx].method; d["args"]=mt->methods[p_key_idx].params; - return d; - - } break; + return d; + + } break; } - + ERR_FAIL_V(Variant()); } @@ -860,33 +860,33 @@ float Animation::track_get_key_time(int p_track, int p_key_idx) const { ERR_FAIL_INDEX_V(p_track, tracks.size(), -1); Track *t=tracks[p_track]; - + switch(t->type) { - + case TYPE_TRANSFORM: { - + TransformTrack * tt = static_cast<TransformTrack*>(t); ERR_FAIL_INDEX_V( p_key_idx, tt->transforms.size(), -1 ); return tt->transforms[p_key_idx].time; } break; case TYPE_VALUE: { - - ValueTrack * vt = static_cast<ValueTrack*>(t); + + ValueTrack * vt = static_cast<ValueTrack*>(t); ERR_FAIL_INDEX_V( p_key_idx, vt->values.size(), -1 ); return vt->values[p_key_idx].time; - + } break; case TYPE_METHOD: { - + MethodTrack * mt = static_cast<MethodTrack*>(t); ERR_FAIL_INDEX_V( p_key_idx, mt->methods.size(), -1 ); return mt->methods[p_key_idx].time; - - - } break; + + + } break; } - + ERR_FAIL_V(-1); } @@ -1004,19 +1004,19 @@ void Animation::track_set_key_transition(int p_track, int p_key_idx,float p_tran template<class K> int Animation::_find( const Vector<K>& p_keys, float p_time) const { - + int len=p_keys.size(); if (len==0) return -2; - + int low = 0; int high = len -1; int middle; - + const K* keys =&p_keys[0]; - + while( low <= high ) { - + middle = ( low + high ) / 2; if( p_time == keys[ middle ].time ) { //match @@ -1029,7 +1029,7 @@ int Animation::_find( const Vector<K>& p_keys, float p_time) const { if (keys[middle].time>p_time) middle--; - + return middle; } @@ -1197,58 +1197,58 @@ T Animation::_interpolate( const Vector< TKey<T> >& p_keys, float p_time, Inter int len=_find( p_keys, length )+1; // try to find last key (there may be more past the end) - if (len<=0) { + if (len<=0) { // (-1 or -2 returned originally) (plus one above) // meaning no keys, or only key time is larger than length if (p_ok) *p_ok=false; return T(); } else if (len==1) { // one key found (0+1), return it - + if (p_ok) *p_ok=true; return p_keys[0].value; } - + int idx=_find(p_keys, p_time); - + ERR_FAIL_COND_V( idx==-2, T()); - + if (p_ok) *p_ok=true; int next=0; - float c=0; + float c=0; // prepare for all cases of interpolation - + if (loop) { // loop if (idx>=0) { - + if ((idx+1) < len) { - + next=idx+1; float delta=p_keys[next].time - p_keys[idx].time; float from=p_time-p_keys[idx].time; if (Math::absf(delta)>CMP_EPSILON) c=from/delta; - else + else c=0; - + } else { - + next=0; float delta=(length - p_keys[idx].time) + p_keys[next].time; float from=p_time-p_keys[idx].time; - + if (Math::absf(delta)>CMP_EPSILON) - c=from/delta; - else + c=from/delta; + else c=0; - + } - + } else { // on loop, behind first key idx=len-1; @@ -1258,47 +1258,47 @@ T Animation::_interpolate( const Vector< TKey<T> >& p_keys, float p_time, Inter endtime=0; float delta=endtime + p_keys[next].time; float from=endtime+p_time; - + if (Math::absf(delta)>CMP_EPSILON) - c=from/delta; - else + c=from/delta; + else c=0; - } - - } else { // no loop + } + + } else { // no loop if (idx>=0) { - + if ((idx+1) < len) { - + next=idx+1; float delta=p_keys[next].time - p_keys[idx].time; float from=p_time - p_keys[idx].time; - + if (Math::absf(delta)>CMP_EPSILON) c=from/delta; else c=0; - + } else { - + next=idx; } - + } else if (idx<0) { - + idx=next=0; - } - + } + } - + float tr = p_keys[idx].transition; if (tr==0 || idx==next) { // don't interpolate if not needed return p_keys[idx].value; } - + if (tr!=1.0) { c = Math::ease(c,tr); @@ -1331,7 +1331,7 @@ T Animation::_interpolate( const Vector< TKey<T> >& p_keys, float p_time, Inter // do a barrel roll - + } @@ -1340,7 +1340,7 @@ Error Animation::transform_track_interpolate(int p_track, float p_time, Vector3 ERR_FAIL_INDEX_V(p_track, tracks.size(),ERR_INVALID_PARAMETER); Track *t=tracks[p_track]; ERR_FAIL_COND_V(t->type!=TYPE_TRANSFORM,ERR_INVALID_PARAMETER); - + TransformTrack * tt = static_cast<TransformTrack*>(t); bool ok; @@ -1368,7 +1368,7 @@ Variant Animation::value_track_interpolate(int p_track, float p_time) const { ERR_FAIL_INDEX_V(p_track, tracks.size(),0); Track *t=tracks[p_track]; ERR_FAIL_COND_V(t->type!=TYPE_VALUE, Variant()); - ValueTrack * vt = static_cast<ValueTrack*>(t); + ValueTrack * vt = static_cast<ValueTrack*>(t); bool ok; @@ -1377,7 +1377,7 @@ Variant Animation::value_track_interpolate(int p_track, float p_time) const { if (ok) { - + return res; } @@ -1426,15 +1426,15 @@ void Animation::value_track_get_key_indices(int p_track, float p_time, float p_d float from_time=p_time-p_delta; float to_time=p_time; - + if (from_time>to_time) SWAP(from_time,to_time); - + if (loop) { - - from_time=Math::fposmod(from_time,length); - to_time=Math::fposmod(to_time,length); - + + from_time=Math::fposmod(from_time,length); + to_time=Math::fposmod(to_time,length); + if (from_time>to_time) { // handle loop by splitting _value_track_get_key_indices_in_range(vt,length-from_time,length,p_indices); @@ -1442,12 +1442,12 @@ void Animation::value_track_get_key_indices(int p_track, float p_time, float p_d return; } } else { - + if (from_time<0) from_time=0; if (from_time>length) from_time=length; - + if (to_time<0) to_time=0; if (to_time>length) @@ -1455,10 +1455,10 @@ void Animation::value_track_get_key_indices(int p_track, float p_time, float p_d } - + _value_track_get_key_indices_in_range(vt,from_time,to_time,p_indices); - + } void Animation::value_track_set_continuous(int p_track, bool p_continuous) { @@ -1519,19 +1519,19 @@ void Animation::_method_track_get_key_indices_in_range(const MethodTrack * mt, f void Animation::method_track_get_key_indices(int p_track, float p_time, float p_delta,List<int> *p_indices) const { ERR_FAIL_INDEX(p_track, tracks.size()); - Track *t=tracks[p_track]; + Track *t=tracks[p_track]; ERR_FAIL_COND( t->type != TYPE_METHOD ); MethodTrack * mt = static_cast<MethodTrack*>(t); float from_time=p_time-p_delta; float to_time=p_time; - + if (from_time>to_time) SWAP(from_time,to_time); - + if (loop) { - + if (from_time > length || from_time < 0) from_time=Math::fposmod(from_time,length); @@ -1545,19 +1545,19 @@ void Animation::method_track_get_key_indices(int p_track, float p_time, float p_ return; } } else { - + if (from_time<0) from_time=0; if (from_time>length) from_time=length; - + if (to_time<0) to_time=0; if (to_time>length) to_time=length; - + } - + _method_track_get_key_indices_in_range(mt,from_time,to_time,p_indices); @@ -1569,9 +1569,9 @@ Vector<Variant> Animation::method_track_get_params(int p_track,int p_key_idx) co ERR_FAIL_COND_V( t->type != TYPE_METHOD, Vector<Variant>() ); MethodTrack * pm = static_cast<MethodTrack*>(t); - + ERR_FAIL_INDEX_V( p_key_idx, pm->methods.size(), Vector<Variant>() ); - + const MethodKey& mk=pm->methods[p_key_idx]; return mk.params; @@ -1583,9 +1583,9 @@ StringName Animation::method_track_get_name(int p_track,int p_key_idx) const { ERR_FAIL_COND_V( t->type != TYPE_METHOD, StringName() ); MethodTrack * pm = static_cast<MethodTrack*>(t); - + ERR_FAIL_INDEX_V( p_key_idx, pm->methods.size(), StringName() ); - + return pm->methods[ p_key_idx ].method; } @@ -1600,7 +1600,7 @@ void Animation::set_length(float p_length) { float Animation::get_length() const { return length; -} +} void Animation::set_loop(bool p_enabled) { @@ -1678,16 +1678,16 @@ void Animation::_bind_methods() { ObjectTypeDB::bind_method(_MD("transform_track_interpolate","idx","time_sec"),&Animation::_transform_track_interpolate); ObjectTypeDB::bind_method(_MD("value_track_set_continuous","idx","continuous"),&Animation::value_track_set_continuous); ObjectTypeDB::bind_method(_MD("value_track_is_continuous","idx"),&Animation::value_track_is_continuous); - + ObjectTypeDB::bind_method(_MD("value_track_get_key_indices","idx","time_sec","delta"),&Animation::_value_track_get_key_indices); ObjectTypeDB::bind_method(_MD("method_track_get_key_indices","idx","time_sec","delta"),&Animation::_method_track_get_key_indices); ObjectTypeDB::bind_method(_MD("method_track_get_name","idx","key_idx"),&Animation::method_track_get_name); ObjectTypeDB::bind_method(_MD("method_track_get_params","idx","key_idx"),&Animation::method_track_get_params); - + ObjectTypeDB::bind_method(_MD("set_length","time_sec"),&Animation::set_length); ObjectTypeDB::bind_method(_MD("get_length"),&Animation::get_length); - + ObjectTypeDB::bind_method(_MD("set_loop","enabled"),&Animation::set_loop); ObjectTypeDB::bind_method(_MD("has_loop"),&Animation::has_loop); @@ -1699,7 +1699,7 @@ void Animation::_bind_methods() { BIND_CONSTANT( TYPE_VALUE ); BIND_CONSTANT( TYPE_TRANSFORM ); BIND_CONSTANT( TYPE_METHOD ); - + BIND_CONSTANT( INTERPOLATION_NEAREST ); BIND_CONSTANT( INTERPOLATION_LINEAR ); BIND_CONSTANT( INTERPOLATION_CUBIC ); diff --git a/scene/resources/animation.h b/scene/resources/animation.h index 405b8b6a05..1f2d9b80ab 100644 --- a/scene/resources/animation.h +++ b/scene/resources/animation.h @@ -61,7 +61,7 @@ public: private: struct Track { - + TrackType type; InterpolationType interpolation; NodePath path; // path to something @@ -70,20 +70,20 @@ private: }; struct Key { - + float transition; - float time; // time in secs + float time; // time in secs Key() { transition=1; } }; - + // transform key holds either Vector3 or Quaternion template<class T> struct TKey : public Key { - + float time; T value; }; - + struct TransformKey { @@ -93,45 +93,45 @@ private: }; /* TRANSFORM TRACK */ - + struct TransformTrack : public Track { Vector< TKey<TransformKey> > transforms; - + TransformTrack() { type=TYPE_TRANSFORM; } }; - + /* PROPERTY VALUE TRACK */ struct ValueTrack : public Track { bool continuous; Vector< TKey<Variant> > values; - + ValueTrack() { type=TYPE_VALUE; continuous=true; } }; /* METHOD TRACK */ - + struct MethodKey : public Key { - + StringName method; Vector<Variant> params; }; - + struct MethodTrack : public Track { - + Vector< MethodKey > methods; MethodTrack() { type=TYPE_METHOD; } - }; - + }; + Vector<Track*> tracks; /* template<class T> int _insert_pos(float p_time, T& p_keys);*/ - + template<class T> void _clear(T& p_keys); @@ -140,7 +140,7 @@ private: template<class K> inline int _find( const Vector<K>& p_keys, float p_time) const; - + _FORCE_INLINE_ Animation::TransformKey _interpolate( const Animation::TransformKey& p_a, const Animation::TransformKey& p_b, float p_c) const; _FORCE_INLINE_ Vector3 _interpolate( const Vector3& p_a, const Vector3& p_b, float p_c) const; @@ -163,9 +163,9 @@ private: float length; float step; bool loop; - + // bind helpers -private: +private: Array _transform_track_interpolate(int p_track, float p_time) const { Vector3 loc; @@ -180,25 +180,25 @@ private: } DVector<int> _value_track_get_key_indices(int p_track, float p_time, float p_delta) const { - + List<int> idxs; value_track_get_key_indices(p_track,p_time,p_delta,&idxs); DVector<int> idxr; - + for (List<int>::Element *E=idxs.front();E;E=E->next()) { - + idxr.push_back(E->get()); } return idxr; } DVector<int> _method_track_get_key_indices(int p_track, float p_time, float p_delta) const { - + List<int> idxs; method_track_get_key_indices(p_track,p_time,p_delta,&idxs); DVector<int> idxr; - + for (List<int>::Element *E=idxs.front();E;E=E->next()) { - + idxr.push_back(E->get()); } return idxr; @@ -207,28 +207,28 @@ private: bool _transform_track_optimize_key(const TKey<TransformKey> &t0,const TKey<TransformKey> &t1, const TKey<TransformKey> &t2, float p_alowed_linear_err,float p_alowed_angular_err,float p_max_optimizable_angle,const Vector3& p_norm); void _transform_track_optimize(int p_idx, float p_allowed_err=0.05, float p_alowed_angular_err=0.01,float p_max_optimizable_angle=Math_PI*0.125); -protected: +protected: bool _set(const StringName& p_name, const Variant& p_value); bool _get(const StringName& p_name,Variant &r_ret) const; void _get_property_list( List<PropertyInfo> *p_list) const; - - static void _bind_methods(); - + + static void _bind_methods(); + public: - + int add_track(TrackType p_type,int p_at_pos=-1); void remove_track(int p_track); int get_track_count() const; TrackType track_get_type(int p_track) const; - + void track_set_path(int p_track,const NodePath& p_path); NodePath track_get_path(int p_track) const; int find_track(const NodePath& p_path) const; // transform - + void track_move_up(int p_track); void track_move_down(int p_track); @@ -248,9 +248,9 @@ public: void track_set_interpolation_type(int p_track,InterpolationType p_interp); InterpolationType track_get_interpolation_type(int p_track) const; - + Error transform_track_interpolate(int p_track, float p_time, Vector3 * r_loc, Quat *r_rot, Vector3 *r_scale) const; - + Variant value_track_interpolate(int p_track, float p_time) const; void value_track_get_key_indices(int p_track, float p_time, float p_delta,List<int> *p_indices) const; void value_track_set_continuous(int p_track, bool p_continuous); @@ -259,11 +259,11 @@ public: void method_track_get_key_indices(int p_track, float p_time, float p_delta,List<int> *p_indices) const; Vector<Variant> method_track_get_params(int p_track,int p_key_idx) const; StringName method_track_get_name(int p_track,int p_key_idx) const; - + void set_length(float p_length); float get_length() const; - + void set_loop(bool p_enabled); bool has_loop() const; @@ -274,7 +274,7 @@ public: void optimize(float p_allowed_linear_err=0.05,float p_allowed_angular_err=0.01,float p_max_optimizable_angle=Math_PI*0.125); - Animation(); + Animation(); ~Animation(); }; diff --git a/scene/resources/baked_light.cpp b/scene/resources/baked_light.cpp index 31282a0274..aa4aae03cb 100644 --- a/scene/resources/baked_light.cpp +++ b/scene/resources/baked_light.cpp @@ -256,6 +256,38 @@ float BakedLight::get_ao_strength() const { return ao_strength; } +void BakedLight::set_realtime_color_enabled(const bool p_realtime_color_enabled) { + + VS::get_singleton()->baked_light_set_realtime_color_enabled(baked_light, p_realtime_color_enabled); +} + +bool BakedLight::get_realtime_color_enabled() const { + + return VS::get_singleton()->baked_light_get_realtime_color_enabled(baked_light); +} + + +void BakedLight::set_realtime_color(const Color &p_realtime_color) { + + VS::get_singleton()->baked_light_set_realtime_color(baked_light, p_realtime_color); +} + +Color BakedLight::get_realtime_color() const { + + return VS::get_singleton()->baked_light_get_realtime_color(baked_light); +} + +void BakedLight::set_realtime_energy(const float p_realtime_energy) { + + VS::get_singleton()->baked_light_set_realtime_energy(baked_light, p_realtime_energy); +} + +float BakedLight::get_realtime_energy() const { + + return VS::get_singleton()->baked_light_get_realtime_energy(baked_light); +} + + void BakedLight::set_energy_multiplier(float p_multiplier){ @@ -434,6 +466,15 @@ void BakedLight::_bind_methods(){ ObjectTypeDB::bind_method(_MD("set_ao_strength","ao_strength"),&BakedLight::set_ao_strength); ObjectTypeDB::bind_method(_MD("get_ao_strength"),&BakedLight::get_ao_strength); + ObjectTypeDB::bind_method(_MD("set_realtime_color_enabled", "enabled"), &BakedLight::set_realtime_color_enabled); + ObjectTypeDB::bind_method(_MD("get_realtime_color_enabled"), &BakedLight::get_realtime_color_enabled); + + ObjectTypeDB::bind_method(_MD("set_realtime_color", "tint"), &BakedLight::set_realtime_color); + ObjectTypeDB::bind_method(_MD("get_realtime_color"), &BakedLight::get_realtime_color); + + ObjectTypeDB::bind_method(_MD("set_realtime_energy", "energy"), &BakedLight::set_realtime_energy); + ObjectTypeDB::bind_method(_MD("get_realtime_energy"), &BakedLight::get_realtime_energy); + ObjectTypeDB::bind_method(_MD("set_format","format"),&BakedLight::set_format); ObjectTypeDB::bind_method(_MD("get_format"),&BakedLight::get_format); @@ -480,6 +521,11 @@ void BakedLight::_bind_methods(){ ADD_PROPERTY( PropertyInfo(Variant::REAL,"advanced/ao_radius",PROPERTY_HINT_RANGE,"0.0,16.0,0.01"),_SCS("set_ao_radius"),_SCS("get_ao_radius")); ADD_PROPERTY( PropertyInfo(Variant::REAL,"advanced/ao_strength",PROPERTY_HINT_RANGE,"0.0,1.0,0.01"),_SCS("set_ao_strength"),_SCS("get_ao_strength")); + ADD_PROPERTY(PropertyInfo(Variant::BOOL, "realtime/enabled"), _SCS("set_realtime_color_enabled"), _SCS("get_realtime_color_enabled")); + ADD_PROPERTY(PropertyInfo(Variant::COLOR, "realtime/color", PROPERTY_HINT_COLOR_NO_ALPHA), _SCS("set_realtime_color"), _SCS("get_realtime_color")); + ADD_PROPERTY(PropertyInfo(Variant::REAL, "realtime/energy", PROPERTY_HINT_RANGE, "0.01,4096.0,0.01"), _SCS("set_realtime_energy"), _SCS("get_realtime_energy")); + + BIND_CONSTANT( MODE_OCTREE ); BIND_CONSTANT( MODE_LIGHTMAPS ); diff --git a/scene/resources/baked_light.h b/scene/resources/baked_light.h index 41e1e5f9e0..f9a1368e8d 100644 --- a/scene/resources/baked_light.h +++ b/scene/resources/baked_light.h @@ -116,6 +116,15 @@ public: void set_ao_strength(float p_ao_strength); float get_ao_strength() const; + void set_realtime_color_enabled(const bool p_enabled); + bool get_realtime_color_enabled() const; + + void set_realtime_color(const Color& p_realtime_color); + Color get_realtime_color() const; + + void set_realtime_energy(const float p_realtime_energy); + float get_realtime_energy() const; + void set_bake_flag(BakeFlags p_flags,bool p_enable); bool get_bake_flag(BakeFlags p_flags) const; diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index fb9f66a40a..005a46c0bc 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -241,7 +241,15 @@ void make_default_theme() { t->set_constant("hseparation","Button", 2); + // LinkButton + t->set_font("font","LinkButton", default_font ); + + t->set_color("font_color","LinkButton", control_font_color ); + t->set_color("font_color_pressed","LinkButton", control_font_color_pressed ); + t->set_color("font_color_hover","LinkButton", control_font_color_hover ); + + t->set_constant("underline_spacing","LinkButton", 2 ); // ColorPickerButton @@ -550,10 +558,10 @@ void make_default_theme() { t->set_constant("close_v_ofs","WindowDialog", 20 ); t->set_constant("titlebar_height","WindowDialog", 18 ); t->set_constant("title_height","WindowDialog", 20 ); - - + + // File Dialog - + t->set_icon("reload","FileDialog",make_icon( icon_reload_png )); @@ -776,7 +784,7 @@ void make_default_theme() { t->set_icon("screen_picker","ColorPicker", make_icon( icon_color_pick_png ) ); t->set_icon("add_preset","ColorPicker", make_icon( icon_add_png ) ); - + t->set_shader("uv_editor", "ColorPicker", make_shader("", uv_editor_shader_code, "")); t->set_shader("w_editor", "ColorPicker", make_shader("", w_editor_shader_code, "")); @@ -882,7 +890,11 @@ void make_default_theme() { t->set_stylebox("border","ReferenceFrame", make_stylebox( reference_border_png,4,4,4,4) ); t->set_stylebox("panelnc","Panel", ttnc ); t->set_stylebox("panelf","Panel", tc_sb ); - t->set_stylebox("panel","PanelContainer", tc_sb ); + + Ref<StyleBoxTexture> sb_pc = make_stylebox( tab_container_bg_png,4,4,4,4,7,7,7,7); + t->set_stylebox("panel","PanelContainer", sb_pc ); + + t->set_icon("minus","GraphEdit", make_icon(icon_zoom_less_png) ); t->set_icon("reset","GraphEdit", make_icon(icon_zoom_reset_png) ); diff --git a/scene/resources/default_theme/popup_window.png b/scene/resources/default_theme/popup_window.png Binary files differindex fc42e725f8..c897ada988 100644 --- a/scene/resources/default_theme/popup_window.png +++ b/scene/resources/default_theme/popup_window.png diff --git a/scene/resources/default_theme/theme_data.h b/scene/resources/default_theme/theme_data.h index 6414efa74d..42695c4905 100644 --- a/scene/resources/default_theme/theme_data.h +++ b/scene/resources/default_theme/theme_data.h @@ -249,6 +249,11 @@ static const unsigned char logo_png[]={ }; +static const unsigned char oc3_png[]={ +0x89,0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,0x0,0x5,0x0,0x0,0x0,0x2,0xd0,0x8,0x6,0x0,0x0,0x0,0xcf,0x7d,0xdd,0x56,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xe0,0x2,0x9,0x12,0x8,0x1b,0x80,0x46,0x99,0x32,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x78,0xda,0xec,0xdd,0xe9,0xb3,0x6d,0x77,0x79,0x27,0xf6,0xef,0x6f,0x58,0x6b,0xef,0x73,0xee,0xbd,0xba,0x92,0xd0,0x80,0x66,0x81,0xb0,0x4,0x2,0x21,0x31,0x8,0xc,0x6,0x6c,0xc0,0x4c,0x26,0x4d,0x9b,0x6e,0xbb,0xdd,0x9d,0x38,0xae,0x7e,0x93,0x4a,0xaa,0xf2,0x47,0xe4,0x65,0xde,0x25,0xe9,0xaa,0xa4,0x92,0x4a,0xa5,0x3a,0xe9,0x6a,0xaa,0xdb,0xae,0xd8,0x45,0xb9,0x71,0xe3,0xc6,0xe9,0xb6,0xc1,0x6,0x33,0x63,0x40,0x2,0x9,0x90,0x84,0x4,0x68,0x9e,0xef,0x70,0xce,0xde,0x6b,0xfd,0x86,0xbc,0x78,0x9e,0xe7,0xb7,0xd6,0x3e,0xc3,0x95,0xdc,0x7d,0x6f,0xe2,0xda,0xf5,0xfd,0x50,0x17,0xdd,0x7b,0x86,0xbd,0xd7,0x5e,0x7b,0xdd,0x7d,0xee,0xf9,0x9e,0x67,0x70,0x0,0x2a,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x2b,0x79,0x9e,0x2,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0xed,0xc5,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x31,0x0,0x24,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xda,0x62,0xc,0x0,0x89,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0xb6,0x18,0x3,0x40,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0x22,0xa2,0x2d,0xc6,0x0,0x90,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x68,0x8b,0x45,0x9e,0x2,0x22,0xa2,0x57,0x2f,0xc4,0x1e,0x3e,0xf6,0x38,0x71,0xfa,0xa,0xd4,0x5c,0x50,0x51,0x11,0xbb,0x1e,0xa8,0x15,0xa5,0x14,0x84,0xd8,0xc1,0x7b,0x8f,0xfd,0xbd,0xb3,0xd8,0xd9,0x3d,0x85,0xb3,0x2f,0x3d,0x87,0xe5,0x89,0x53,0x48,0xe3,0x0,0xef,0x3,0xba,0x7e,0x9,0x0,0xd8,0x3f,0x7f,0x6,0xfd,0x62,0x7,0x69,0x1c,0xd0,0x2f,0x96,0x48,0x69,0x44,0x29,0x19,0xde,0x7,0x94,0x9c,0xd1,0x2f,0x77,0x30,0xac,0xf7,0xd1,0xeb,0xc7,0xf,0xeb,0x15,0xfa,0xc5,0x12,0xa5,0x64,0x84,0xd8,0xa1,0x96,0x82,0x10,0x23,0xf6,0xcf,0x9f,0x43,0xec,0xba,0x76,0xdf,0xeb,0xfd,0xf3,0x38,0x79,0xfa,0x4a,0xc,0xab,0x3d,0xb9,0xad,0x52,0xd0,0xf5,0x3d,0x4a,0x29,0x0,0x80,0x71,0x58,0xa3,0xeb,0x17,0xed,0xf7,0xf2,0x31,0x72,0xbf,0xde,0x7b,0xc,0xeb,0x15,0x42,0xd7,0x21,0x8f,0x23,0x16,0x3b,0xbb,0x18,0xd7,0x6b,0xc4,0xae,0x43,0x1a,0x47,0xa4,0x71,0xc0,0xce,0xc9,0x53,0xc8,0x69,0xc4,0x7a,0xb5,0x8f,0xe5,0xee,0x49,0x8c,0xeb,0x15,0x16,0x3b,0xbb,0xc8,0x69,0x44,0x8,0x1d,0x4a,0x2d,0xf0,0xce,0x61,0xef,0xfc,0x59,0xf4,0xcb,0x1d,0x74,0xdd,0x2,0x39,0x8f,0xa8,0xa5,0x20,0x8d,0x23,0x16,0xcb,0x5d,0xc0,0x1,0xeb,0xfd,0x3d,0xe4,0x9c,0xda,0x6d,0xf4,0x8b,0x25,0x86,0xf5,0x3e,0x0,0x87,0xc5,0xce,0x2e,0xd2,0x38,0xc2,0x7,0x8f,0x9c,0x12,0x96,0x3b,0x27,0x30,0x8e,0x3,0xbc,0xf7,0x28,0xa5,0x20,0x8d,0x3,0x62,0xd7,0x63,0x5c,0xef,0x23,0xc4,0x1e,0xb1,0xeb,0xb0,0xde,0xdf,0x83,0xf7,0x1e,0xa1,0xeb,0xe1,0x9d,0xc7,0x7a,0xb5,0x87,0xd8,0x75,0x88,0x5d,0x8f,0xf3,0x67,0x5f,0xc6,0xc9,0xd3,0x57,0xa2,0xe4,0x84,0xf5,0xfe,0x1e,0xba,0x7e,0x81,0x94,0x46,0x0,0x90,0xc7,0x74,0xe2,0x14,0x86,0xd5,0xbe,0xdc,0xce,0x6a,0x1f,0x25,0x27,0x2c,0x96,0xbb,0x7a,0x1e,0x12,0x2a,0x2a,0xfa,0x7e,0x81,0x52,0xa,0x9c,0xf7,0xc8,0x69,0x84,0xf7,0x1,0xab,0xfd,0xf3,0x58,0xee,0x9c,0xc0,0x6a,0xff,0x3c,0xba,0xae,0x47,0x88,0x1d,0x72,0x1a,0x51,0x1,0xc4,0xae,0xc3,0xb0,0x5a,0xb5,0x73,0x9b,0xc6,0x35,0x76,0x4f,0x9e,0x6e,0xcf,0x5d,0x45,0x45,0x2d,0x5,0x39,0x8d,0x18,0xf5,0xf1,0xd4,0x92,0x51,0x1,0xf4,0xfd,0x12,0x69,0x1c,0xe0,0x9c,0x93,0xdb,0x8a,0x1d,0x2a,0x2a,0x4a,0x4a,0x8,0xb1,0xc3,0x6a,0xff,0x3c,0x0,0xe8,0x79,0x4f,0xed,0xf9,0xac,0xa5,0x60,0x58,0xaf,0xb0,0xb3,0x7b,0x12,0x29,0x8f,0x58,0xef,0xef,0x61,0xb9,0x73,0xa2,0x1d,0x83,0xf3,0x5e,0x3e,0x66,0x58,0xc9,0x7d,0xa4,0x11,0x31,0x76,0xd8,0x3b,0xf7,0x32,0x96,0xbb,0x27,0xe1,0xbc,0xc7,0xb8,0x5e,0xc3,0x7,0xb9,0x16,0xd2,0x38,0xa2,0x5b,0x2c,0xe0,0x5d,0x0,0x9c,0x5e,0x3b,0x5d,0x8f,0x9c,0x33,0xd2,0xb8,0x86,0xf,0x11,0x21,0x46,0x3d,0xf7,0x61,0xe3,0xf3,0x7c,0x8,0xf2,0x17,0xa6,0x56,0xf8,0x30,0xdd,0x77,0xc9,0x59,0xde,0xee,0x1c,0xd2,0xb0,0xc6,0xfe,0xd9,0x17,0xf8,0xa2,0x42,0x44,0x44,0x44,0x44,0xf4,0xff,0x1,0x6,0x80,0x44,0x44,0xaf,0xd2,0x2f,0xdd,0xf3,0x2b,0xb8,0xe1,0xd6,0xdb,0xb1,0xd8,0xd9,0x5,0x0,0xd4,0x52,0x1,0xd4,0x16,0xb4,0x1,0x80,0xf3,0xe,0xa8,0x40,0x45,0x95,0x0,0xa7,0x54,0x9,0x3f,0x6a,0x81,0x73,0x1e,0xa8,0x15,0xb5,0x56,0xc0,0xc9,0x6d,0x3a,0x27,0xc1,0x88,0x84,0x3d,0x55,0xde,0x6,0x87,0x5a,0xab,0xdc,0x16,0x20,0x1f,0xf,0x0,0x15,0x70,0x4e,0xde,0x56,0x4a,0x86,0x73,0xbe,0xdd,0xb6,0xbd,0xaf,0xd6,0xda,0xfe,0x2b,0x9f,0x2b,0xb7,0xd,0x3b,0x16,0x37,0xbb,0xed,0xd9,0x71,0xa2,0x56,0x0,0x4e,0x3e,0xde,0x87,0xe9,0x38,0x31,0xdd,0x67,0x3b,0x8,0x38,0x0,0x12,0x78,0xfa,0x10,0x50,0x4b,0x81,0x3d,0xa0,0x83,0xb7,0xf,0x54,0xb9,0xe9,0x76,0x9e,0xa6,0x0,0xa8,0x96,0x2,0xef,0x83,0x1e,0xb3,0x3c,0x72,0x38,0x9,0xb2,0x30,0xbf,0x4f,0x3d,0xb6,0x76,0x98,0x98,0xff,0xb9,0xb6,0xa0,0x4c,0x4f,0x5f,0x7b,0xdc,0xf3,0xfb,0xb3,0xf0,0xd0,0x39,0xf,0xe7,0xd0,0x9e,0x2f,0x3d,0x18,0x0,0x55,0x9e,0x9f,0x8d,0x1b,0x91,0xe3,0x6c,0xc7,0x34,0x7b,0xbe,0x80,0xa,0xe7,0x83,0x9c,0x7b,0xbb,0x15,0x37,0x7b,0xbe,0x34,0xf8,0x2a,0x7a,0xce,0xe5,0x3c,0xd4,0x8d,0xe7,0x68,0xf3,0xbe,0xed,0x39,0x73,0xb3,0xf3,0x31,0xbd,0xbf,0x56,0x0,0x55,0x2,0x48,0xbb,0x8f,0xcd,0xe7,0xd9,0x6e,0xd3,0x1,0x55,0xce,0xdf,0x74,0xad,0xc8,0x31,0x7a,0xe7,0x25,0x78,0xac,0x15,0x5e,0x3,0xb9,0xf6,0x71,0x7a,0x2d,0xc8,0x75,0x5d,0xf4,0xba,0xaa,0x9b,0xcf,0xa9,0xf3,0x72,0x34,0xf5,0xf0,0xfb,0x8b,0x5e,0xc3,0x73,0x55,0xaf,0xf,0x54,0xa0,0xd8,0x75,0xa8,0x8f,0x7,0x0,0x72,0x4e,0x38,0x7f,0xe6,0x25,0xfc,0xec,0xa1,0x1f,0xe2,0xa9,0x47,0x1f,0xe0,0xb,0xc,0x11,0x11,0x11,0x11,0xd1,0x25,0xe4,0x36,0xbf,0xdb,0x21,0x22,0xa2,0x83,0x76,0x4f,0x5f,0x8d,0x7b,0xde,0xfb,0xeb,0x38,0x75,0xfa,0x4a,0x94,0x52,0x5a,0xa5,0xd6,0x46,0xe0,0x3,0x6c,0x4,0x32,0x7,0xff,0x7c,0x54,0x38,0x37,0x7d,0x9c,0x6,0x83,0x90,0x60,0x6,0x40,0xb,0x54,0x5a,0xb0,0x33,0xb,0x7a,0x2c,0xb4,0xb1,0xe0,0x10,0xce,0xb5,0x80,0xf1,0xe0,0x6d,0x37,0xc7,0x1c,0x97,0xbe,0x61,0xfa,0x18,0xbb,0xaf,0xf9,0x57,0x7,0xfd,0xbd,0x45,0x7f,0xed,0x26,0x51,0x25,0xac,0x3c,0xe2,0x8b,0xc9,0xf4,0xe7,0xc3,0x9f,0x35,0xfd,0x79,0xf6,0xfb,0x16,0x8a,0xce,0xde,0x37,0xbf,0xff,0xa3,0xbe,0x74,0xd5,0x63,0xbe,0xaa,0xe1,0x88,0xaf,0x6c,0x17,0xfa,0x6a,0xe7,0x80,0x23,0x1f,0xc4,0xd1,0x27,0x72,0xf3,0x80,0xda,0xa1,0xc8,0xb9,0x38,0xfe,0xb3,0xa6,0xf7,0xcf,0x83,0x5e,0xcc,0xde,0xd2,0x9e,0x6f,0x7d,0xef,0x74,0x7e,0x2b,0xbc,0xf3,0x28,0xb5,0x1c,0x38,0x6c,0xd,0x8d,0x8f,0x3b,0xc5,0x7,0xff,0x7b,0xd4,0x79,0x39,0xf4,0xc9,0xf6,0x39,0x47,0x3d,0x4f,0x17,0x7a,0xa6,0x8f,0xbd,0x83,0x63,0x3f,0x46,0x72,0xd2,0x82,0x71,0x58,0xe3,0x99,0xc7,0x1f,0xc5,0x43,0xdf,0xff,0x2a,0x5f,0x6c,0x88,0x88,0x88,0x88,0x88,0x2e,0x11,0x56,0x0,0x12,0x11,0xbd,0x82,0x37,0xbf,0xe3,0x7d,0x38,0x71,0xd9,0xe5,0x18,0xc7,0x1,0xb5,0xce,0xda,0x18,0x6b,0xdd,0x8,0x2,0xe7,0xac,0x2a,0xa,0x98,0x2a,0xaf,0xe6,0xef,0x9b,0x57,0x59,0x49,0x90,0x33,0x55,0xd1,0xb5,0x10,0x68,0x56,0x9d,0x55,0x6a,0x41,0x8,0x5a,0x2d,0xe7,0xa5,0x35,0xf6,0xb8,0x8a,0x2b,0xbb,0xed,0x92,0x25,0xa8,0xf4,0x87,0xaa,0xb9,0xb4,0x62,0xd0,0x7b,0x38,0xe7,0xa5,0x4a,0xce,0xc2,0x3f,0xb,0x6a,0xf4,0xb1,0x79,0xe7,0x50,0xe6,0x21,0x64,0xb,0xf,0xad,0xa,0x6f,0xa,0xad,0x36,0x3f,0x1e,0xb3,0xdb,0xd9,0xc,0xc7,0xe6,0x61,0x17,0xf4,0xf1,0x1c,0x7c,0x1c,0x7,0x2b,0x22,0x37,0xef,0xb7,0x9d,0x49,0xab,0x8f,0x9b,0x85,0x85,0x7,0x92,0xcb,0x79,0xe8,0x3a,0xf,0xb6,0x8e,0xc9,0xad,0xa6,0x8a,0xc8,0xd9,0xfb,0x8e,0xbc,0x1f,0xb4,0x6b,0x0,0xb3,0x60,0xcf,0xcd,0x2b,0xf6,0x9c,0x1d,0x3b,0xe,0xe5,0x62,0xf6,0x3c,0xcc,0x2b,0x17,0x9d,0x55,0x1b,0xce,0xce,0xe7,0xfc,0x38,0xe6,0xb7,0x3d,0xf,0x9f,0xdd,0x2c,0x38,0x9d,0x87,0x86,0x56,0x49,0x6a,0x8f,0xdb,0xf9,0x30,0x9d,0xdb,0x5a,0x70,0x28,0xe0,0x3b,0x74,0x4e,0x36,0x1f,0xec,0xac,0x50,0x74,0x7a,0xdf,0x2c,0x9c,0xb6,0x4f,0x71,0xee,0xe8,0x24,0x75,0xe3,0x53,0xf5,0x37,0xa5,0x64,0xe4,0x94,0x70,0xd9,0x95,0x57,0xe3,0xaa,0x1b,0x6e,0xc3,0x73,0x8f,0x3f,0xcc,0x17,0x1c,0x22,0x22,0x22,0x22,0xa2,0x4b,0x80,0x1,0x20,0x11,0xd1,0x2b,0xd8,0x3d,0x75,0x1a,0x39,0x25,0x94,0x9c,0x64,0x8e,0x99,0xb5,0x8f,0x3a,0x68,0x80,0x56,0x70,0xa0,0x63,0x13,0xb9,0x4e,0x2d,0x91,0xb9,0x16,0xd,0xa2,0x36,0x83,0x40,0x5f,0xa7,0x80,0x66,0xa,0xe2,0x0,0x38,0x27,0xb3,0xf4,0xe0,0x51,0x34,0x24,0xf1,0x6e,0x6a,0x61,0x2d,0x39,0xb7,0xb9,0x6e,0x16,0xbe,0xf8,0x10,0x50,0x6a,0x6d,0xf3,0xe5,0xa0,0x61,0xa0,0x54,0x2c,0x5a,0xeb,0x68,0xd5,0xe0,0x50,0xe,0xd4,0xc3,0xa1,0x94,0x34,0xb5,0xac,0xfa,0x28,0xef,0xf7,0x5e,0x42,0xa2,0x9c,0x51,0x9c,0xd7,0x30,0x33,0xeb,0xc3,0xd3,0x50,0xaf,0x2,0x70,0x15,0x80,0xb4,0x20,0x5b,0x8b,0x68,0xd1,0x90,0xac,0xcc,0xda,0x4b,0xa5,0xd5,0xd4,0xb7,0x0,0xad,0xce,0x2a,0xc,0x9d,0x97,0xfb,0xd9,0xc,0xcf,0x34,0x14,0xd4,0xc0,0xb1,0xb5,0x8f,0xce,0xde,0xde,0x5a,0x5f,0x67,0xa9,0xd5,0x66,0xf5,0xe5,0xf4,0x9b,0x92,0x8b,0xb4,0x24,0x6b,0xe6,0x55,0x4b,0x9e,0x2a,0x27,0xb3,0xbc,0x71,0x9e,0xa5,0x6e,0xb6,0x7,0xa3,0x5,0xb5,0x1b,0x2d,0xd1,0xd6,0x1e,0x3c,0x6b,0xb5,0x6,0xe,0xc4,0x5e,0x55,0x8e,0xcf,0x5a,0x95,0xa7,0x63,0x73,0x28,0xe5,0x88,0x80,0xac,0x4e,0x17,0x51,0x9d,0xdf,0x5a,0xb5,0x8b,0xad,0xce,0xda,0x84,0x2d,0xc8,0x9b,0xee,0xcc,0x5a,0x7a,0x2d,0x36,0x2d,0x35,0x4f,0xc7,0x5a,0x81,0x5a,0x92,0x7c,0x9c,0x3e,0x76,0xb4,0x56,0x66,0xaf,0x2d,0xe5,0xae,0xb5,0x7,0x97,0x59,0xcb,0x33,0x50,0x36,0x3,0xe4,0xa2,0xd7,0x72,0x2d,0xd3,0xdb,0xe,0x84,0x80,0xed,0x37,0x7,0xc3,0xf1,0x76,0x3d,0xd8,0x31,0x15,0x94,0x92,0x51,0x73,0xc6,0x72,0xf7,0x24,0x5f,0x6c,0x88,0x88,0x88,0x88,0x88,0x2e,0x11,0x6e,0x1,0x26,0x22,0xba,0xd0,0x8b,0x64,0xe8,0x36,0x2a,0xcf,0xe,0x34,0xef,0x4a,0xb8,0x6,0xa9,0xbc,0x9a,0x57,0x88,0x79,0x1f,0xda,0xc7,0x4c,0xe5,0x60,0x4e,0xdb,0x7d,0xe5,0x3d,0xb5,0x94,0x16,0xe4,0x48,0xc0,0xe6,0x5a,0x75,0x96,0xb5,0xd6,0xd6,0x52,0x10,0x42,0x6c,0x4b,0x15,0x4a,0xc9,0x32,0x7b,0x4f,0xc3,0x3f,0x1f,0xa2,0x84,0x5c,0x56,0xfd,0x67,0xb3,0xda,0x9c,0x47,0x9e,0x5,0x96,0xb5,0x56,0x94,0x2c,0x8b,0x42,0x6a,0x95,0xc0,0x30,0xa5,0xb1,0xcd,0xb6,0x83,0x6,0x8b,0x16,0xa4,0xcd,0xe7,0xfa,0x59,0x0,0xe7,0x7d,0x68,0x95,0x7c,0x36,0x9f,0x10,0xf3,0x96,0x55,0xd,0x84,0x4a,0xc9,0x2d,0x1c,0xb3,0xe0,0x4c,0xce,0x8d,0x54,0xd7,0x85,0x10,0xe0,0x60,0xe3,0xf5,0xe4,0xb3,0xbd,0x6,0x8d,0x76,0xe,0x30,0x9b,0x7b,0x68,0xbf,0x6c,0xfe,0x5e,0xd1,0x0,0x72,0x9a,0x7f,0x67,0x1,0x5c,0xd5,0xe3,0x74,0xed,0xfd,0xed,0xb9,0xb3,0x79,0x84,0xb3,0x39,0x88,0x75,0x2a,0x45,0xdb,0xac,0x2b,0x74,0x1e,0xf3,0xb6,0xd8,0x7a,0x20,0x10,0x6c,0x9f,0x6b,0xa1,0xd8,0x46,0x5,0xe3,0x34,0xb,0xd1,0x42,0xd7,0x3a,0xab,0x12,0x94,0x99,0x87,0xd3,0xed,0x78,0xd,0x34,0xdd,0x6c,0x66,0x9f,0x9c,0xdb,0x3,0x6d,0xb6,0xed,0x94,0x4c,0x61,0xe5,0xa1,0x2b,0x72,0xa3,0x25,0x7d,0xba,0xcd,0x76,0xfe,0xdd,0xf4,0x31,0xb0,0x10,0x6e,0x56,0xa9,0x3a,0x7f,0x7c,0x72,0xe,0x30,0xb,0x77,0xf,0x54,0x9b,0xce,0x2,0xee,0xa3,0xde,0x7f,0x9c,0x36,0xdf,0x71,0xe3,0xf9,0xd1,0xa7,0xf8,0x40,0x8b,0x33,0x11,0x11,0x11,0x11,0x11,0x5d,0xc4,0xef,0x6d,0x79,0xa,0x88,0x88,0x2e,0xc0,0x1d,0xdd,0xe2,0x2b,0x79,0x8e,0x2e,0xf8,0xc0,0xb4,0xb8,0xc3,0x7e,0xc9,0xbb,0x2b,0xbc,0x86,0x5a,0x7e,0x16,0x12,0x6d,0xce,0x6,0xf4,0x1a,0x4,0x45,0x9,0x2,0xb5,0x3d,0xd7,0xc2,0x3f,0xd9,0xe,0x2b,0x55,0x52,0x4e,0x6f,0x27,0xc6,0xd8,0x8e,0x21,0x8d,0x43,0xbb,0x4d,0x7b,0x5b,0x29,0x5,0xa5,0x66,0xd9,0x4e,0xec,0xe4,0x73,0x5c,0x7b,0x5f,0xd2,0xa,0xaf,0xbc,0x11,0x18,0xc2,0x2,0x22,0x54,0x84,0x10,0x35,0x44,0x9c,0x2a,0xcd,0x50,0x81,0x92,0x13,0xe4,0x23,0x34,0xc8,0x69,0xc1,0x92,0x6b,0xd5,0x68,0x55,0x97,0x5f,0xd4,0x32,0x5f,0x5c,0xe2,0x37,0x5a,0x7d,0x4b,0x2d,0xad,0x55,0xd4,0x82,0x53,0x9,0x9a,0x24,0xc4,0xab,0xfa,0x39,0x16,0xa0,0xc1,0x4d,0x8f,0xab,0xce,0x72,0xac,0x16,0x98,0x6d,0xfc,0x7e,0x5a,0xa2,0x61,0xd5,0x82,0xb6,0x28,0xa5,0x15,0xa4,0xb5,0x30,0xb3,0x3d,0x21,0x53,0x85,0x66,0xb,0xcf,0xb0,0x11,0x48,0x1e,0xac,0xe0,0x33,0x12,0xac,0xa6,0xf6,0x5c,0x3a,0xd,0x79,0xa7,0x10,0x75,0x6a,0xed,0xb5,0x8f,0xb7,0xd0,0xce,0x96,0xc7,0x38,0x5d,0x84,0x32,0xf,0x3f,0xe5,0xb1,0xcf,0x96,0x66,0x94,0xe9,0xb8,0x5a,0x6b,0xb9,0x86,0xcc,0xb5,0xd4,0x16,0xf2,0xc2,0xcd,0x26,0xb,0xd6,0x69,0xf1,0x88,0xf7,0x53,0xa8,0x39,0xcd,0x8d,0x3c,0x66,0x2e,0x64,0x3d,0x1c,0xc6,0xcd,0x97,0x8d,0x4c,0x6f,0x3b,0xaa,0x2,0xf0,0x88,0xd9,0x92,0xd3,0x67,0xe0,0xe8,0x31,0x89,0xd3,0x42,0x14,0xdf,0xb3,0xa,0x90,0x88,0x88,0x88,0x88,0xe8,0x52,0x60,0x0,0x48,0x44,0x74,0x1,0x25,0x8d,0x87,0x2,0x40,0xb7,0x51,0xdd,0xa6,0x15,0x80,0x16,0xa4,0xb9,0xf9,0xfc,0xbf,0x3,0x8b,0x3f,0x6c,0xfb,0x6a,0xad,0x88,0xb1,0x83,0xf,0xa1,0x55,0x69,0x59,0xb,0xa6,0x77,0x1e,0x21,0x76,0xf0,0xde,0x4b,0x70,0xe7,0xbd,0x86,0x3a,0xae,0x6d,0x70,0xad,0x55,0x96,0x42,0xd4,0xa,0x84,0x18,0xf,0x4,0x52,0x12,0xa7,0x78,0x1f,0x5a,0xb5,0x9b,0xf3,0xae,0x7d,0x8e,0x85,0x4e,0xb6,0xc1,0xb8,0xb5,0xd4,0x16,0x9,0x1e,0xbd,0xf,0x52,0x9,0xa8,0xc7,0x35,0x6d,0x32,0x76,0xed,0xf1,0xf9,0x16,0xce,0xb9,0xd6,0xc6,0x9,0x40,0x83,0x46,0x37,0x6d,0x24,0x86,0xd5,0xd6,0xcd,0xab,0xee,0xca,0xe6,0x70,0x3b,0x9d,0x81,0xe8,0xf4,0xf1,0xa0,0x6d,0xcc,0x2d,0x5a,0x21,0xa9,0x4d,0xbe,0xa5,0x68,0x9e,0x54,0xf,0x84,0xa7,0xe5,0xd0,0xd6,0xe3,0x56,0xfd,0x67,0xf3,0xee,0xca,0x66,0x50,0x55,0x4b,0x9d,0x55,0xb6,0xe1,0x70,0x1b,0x6f,0xdd,0xac,0xda,0x3b,0xd8,0xac,0x3b,0xbf,0x7f,0xef,0x43,0xb,0xfe,0xa6,0xe5,0x16,0x7,0xc2,0xb3,0x52,0x67,0x1,0xe3,0xc1,0x6d,0xc2,0xc0,0xe6,0x6,0x62,0xad,0xba,0xcc,0x59,0xab,0x3,0xe7,0xed,0xe6,0xba,0x70,0x65,0x56,0x9d,0x67,0x95,0xa5,0x21,0x6a,0x95,0xe8,0x51,0x6d,0xb7,0x98,0xce,0x7d,0xad,0x53,0x58,0xe8,0xe6,0xcf,0xf1,0xbc,0x8a,0xcf,0x4d,0xf7,0x31,0xaf,0x4c,0xc4,0xc6,0x1c,0xcb,0x29,0x50,0xdc,0xdc,0x16,0x7d,0x44,0xe8,0x37,0x3b,0x8e,0x76,0x91,0x2,0xed,0x38,0xdd,0x74,0xa2,0x50,0xc7,0xf3,0x7c,0xd1,0x21,0x22,0x22,0x22,0x22,0xba,0x4,0x18,0x0,0x12,0x11,0x5d,0xe8,0x45,0x32,0x74,0xd3,0xd2,0xf,0x60,0x56,0x15,0xe7,0x37,0x42,0xad,0xd6,0xb6,0x5a,0x37,0x5b,0x22,0x6d,0x7e,0x9c,0xcd,0x66,0x2b,0x39,0xb7,0x5,0x1d,0x56,0xc9,0x55,0x66,0x41,0xd5,0x46,0x28,0xe5,0x1c,0x72,0x1a,0x10,0x42,0x98,0x2a,0xf9,0x9c,0x93,0x79,0x84,0x35,0x4b,0x6b,0xf0,0x6c,0x91,0x47,0x2d,0x45,0x82,0xc3,0x10,0xa4,0xfd,0x57,0x67,0xf,0xb6,0xca,0xaf,0x56,0xf9,0xe7,0x11,0x62,0xc4,0x3c,0xac,0x9,0xb1,0x93,0x0,0x32,0x58,0x55,0x99,0xce,0x3a,0x74,0x5e,0x83,0x28,0xf9,0xb8,0x92,0x8b,0xce,0x3c,0xb4,0x96,0x56,0x9,0x82,0x5a,0x35,0xdf,0xac,0x2a,0xcc,0xfe,0xb7,0xd9,0x56,0xc,0x58,0x20,0x38,0xf,0x49,0xed,0x1c,0x60,0xd6,0x7e,0xda,0xaa,0xe9,0x30,0xaf,0xba,0x73,0x53,0xf8,0xa8,0x65,0x8d,0xa5,0x6c,0xb6,0xbb,0x5a,0xa0,0x66,0xa1,0xe2,0x66,0xb0,0xb5,0xb9,0x24,0x64,0xaa,0xf2,0xb3,0x4a,0xcc,0xa0,0xa1,0x9e,0x86,0x62,0x5e,0x1f,0xc1,0xac,0xc2,0xd0,0x8e,0xab,0x58,0x65,0x66,0xbb,0xe,0xda,0x45,0x82,0x8d,0x6a,0x3b,0x4c,0x73,0xfb,0xe6,0x6f,0xab,0x7,0xd6,0x2c,0x17,0x9d,0xc9,0x67,0xe7,0xb5,0xe4,0xb4,0x19,0x3e,0xb6,0x30,0x6e,0xbe,0x19,0x5a,0x63,0x56,0xd,0x70,0x5b,0xab,0x76,0xb,0x25,0x37,0x2b,0xf5,0xa6,0x2a,0x45,0x77,0x28,0xc,0x9c,0xdd,0xd1,0xa1,0x30,0xd4,0xcd,0xcf,0x57,0x9d,0x9e,0xe7,0x59,0x3f,0x73,0xab,0xa,0xdd,0x64,0x7f,0x2f,0x66,0x8f,0xf5,0xc0,0x92,0x91,0x79,0x1b,0x30,0x3c,0x47,0x13,0x13,0x11,0x11,0x11,0x11,0x5d,0x92,0xef,0x6d,0x79,0xa,0x88,0x88,0x8e,0x57,0xf2,0xa8,0x55,0x72,0xf2,0xe7,0x5a,0xb5,0x65,0xb3,0x6d,0xc1,0xf5,0x9a,0xfb,0x4d,0x55,0x50,0xd6,0xea,0xda,0x96,0x2a,0x68,0x65,0x96,0x73,0x80,0xf,0xb1,0x7d,0xcc,0xbc,0x2,0xb,0x90,0x80,0xce,0xda,0x67,0x43,0xd7,0xb5,0xc0,0x66,0xe3,0x45,0xdb,0x7,0x84,0xae,0xd3,0xc0,0xe,0xad,0x72,0x2c,0xc6,0xbe,0xdd,0x66,0xd1,0xb9,0x81,0xf3,0xb6,0x5b,0xab,0x1e,0x9c,0xb7,0xa9,0xce,0x97,0x53,0x94,0x9c,0x0,0x7,0xe4,0x24,0xed,0xac,0x3e,0x4,0xa9,0x56,0x9c,0xcd,0x10,0x6c,0x33,0xeb,0x30,0xf,0x6d,0xaa,0x8e,0x74,0xd3,0x4a,0x3e,0x1f,0x5a,0xa5,0x19,0x5a,0x20,0x38,0x6d,0x4b,0xb6,0x70,0x6a,0xa,0xdf,0xea,0x6c,0x61,0xc7,0x34,0xb,0x6e,0x5e,0x81,0x27,0x1,0x9c,0x9e,0x53,0xef,0x5a,0xf5,0x62,0xc9,0xa5,0x7d,0xbe,0x5,0x7d,0xf3,0xb6,0xe0,0xd6,0x8e,0x6c,0x55,0x98,0xe5,0xa8,0x19,0x73,0x6e,0x23,0xd4,0xad,0x55,0x97,0x52,0xd4,0x59,0xb0,0xb6,0xf1,0xe1,0x53,0x25,0xa4,0x5d,0x14,0x12,0x2,0xfa,0xf6,0x78,0xf,0x85,0x8c,0x3e,0x60,0xaa,0xee,0x73,0x6d,0x96,0x9f,0x85,0xa7,0x75,0xb6,0x60,0x65,0xfe,0xb8,0xa7,0xd0,0x57,0xcf,0xb9,0x2e,0x74,0xb1,0x6b,0xb,0xb3,0x76,0x63,0x7b,0x4e,0xa6,0x50,0x6f,0xde,0x12,0xec,0xda,0xef,0x51,0xcb,0x46,0x6b,0xf0,0xfc,0x3a,0x9d,0x82,0xc1,0x72,0x38,0x60,0x4,0x5a,0xa5,0xeb,0x74,0x78,0x6e,0x5a,0xeb,0x6b,0x8b,0x45,0xdc,0x81,0xc0,0x6f,0x56,0x2d,0xd9,0xde,0x6e,0x95,0x9e,0xf3,0xd0,0xb1,0x55,0x6c,0x6,0xbe,0xe8,0x10,0x11,0x11,0x11,0x11,0x5d,0x2,0xc,0x0,0x89,0x88,0x2e,0xf4,0x22,0xd9,0x96,0x80,0x60,0x63,0x3,0xab,0xb5,0xb1,0x3a,0xa0,0xb5,0xc7,0x5a,0xbb,0xae,0x5,0x6f,0x4e,0x2b,0xc9,0x0,0xe8,0xcc,0x35,0xb4,0x59,0x77,0x16,0xb8,0xcc,0x17,0x30,0xd4,0xd9,0xb2,0x10,0xab,0x3a,0x74,0xce,0x23,0x84,0x6e,0xa3,0xda,0x30,0xc6,0xae,0x85,0x62,0xa5,0xc8,0x9f,0xad,0x12,0x6d,0x6a,0x1f,0xe,0xb2,0x20,0x64,0xb6,0x7c,0xc2,0x42,0x30,0xe7,0x82,0x6,0x5d,0x75,0xa3,0xf2,0xad,0x96,0x8a,0x10,0x3b,0x0,0x52,0xa9,0x38,0xcd,0xd2,0x73,0x87,0x42,0x1f,0x5b,0x2a,0x21,0x5b,0x87,0xd1,0x7a,0x8f,0x25,0x48,0x9c,0x82,0x2c,0x99,0x53,0xa7,0xf5,0x82,0xfa,0x78,0xe7,0x5b,0x94,0xed,0x31,0xb6,0xcc,0x6c,0x63,0xc6,0xdc,0xe6,0x9c,0x44,0xa7,0x81,0xa4,0xf3,0x16,0xa2,0x59,0x4b,0xf5,0xc6,0x42,0x5e,0x48,0x55,0xa0,0x56,0xb0,0x95,0x69,0xb1,0x9,0x30,0x5f,0xa4,0x61,0xdb,0x79,0xe5,0xf9,0xf0,0xde,0xcf,0x82,0xc7,0xd9,0xdc,0x42,0xe7,0xe,0xb5,0x13,0x5b,0xb5,0xa5,0x5,0xa9,0x72,0xee,0x72,0xdb,0xd6,0x3b,0x5f,0xa0,0xa2,0x8f,0x64,0xe3,0x9a,0xa,0x21,0xb4,0xc0,0x51,0xae,0xb1,0xd0,0xaa,0xd,0xe7,0x8b,0x53,0xe,0xb6,0xe1,0xda,0x73,0x38,0x3f,0x26,0xa0,0xb6,0x6d,0xcf,0xb6,0x98,0x65,0xbe,0x58,0xc4,0x9e,0x97,0x10,0xc2,0xf4,0x5c,0x61,0x33,0xf4,0x83,0x6,0xd2,0x55,0xc3,0xb9,0x56,0x49,0xd9,0x96,0xb4,0xb8,0xd6,0x7e,0xdc,0x2,0xbd,0xf9,0xf3,0x63,0xb,0x6f,0x5a,0x88,0xe8,0x67,0xc1,0xa0,0xbd,0xab,0xa0,0x1e,0x3a,0x13,0xb5,0x2d,0x38,0x9e,0x8e,0x29,0xf1,0x45,0x87,0x88,0x88,0x88,0x88,0xe8,0x52,0x7c,0x6f,0xcb,0x53,0x40,0x44,0x74,0x61,0x1b,0xa1,0x10,0xa6,0xcd,0xb5,0xad,0xdd,0x57,0x43,0x1f,0xfb,0x65,0x41,0x55,0x9b,0xd1,0x6,0xe8,0xfc,0x3d,0x9,0x59,0x2c,0xd0,0xf3,0x3e,0x20,0x84,0x20,0x81,0x9e,0xb5,0xda,0x3a,0x6c,0x6,0x51,0xde,0x21,0x97,0x24,0x61,0x9e,0xde,0x9f,0x2c,0xfe,0xd0,0xcd,0xbf,0x5e,0xb6,0xfd,0xc6,0xae,0x9f,0xb5,0x23,0x6b,0xab,0xaf,0xf7,0x6d,0x99,0x85,0xd7,0xb6,0xe3,0xd8,0x75,0x98,0x62,0x98,0x3a,0xb5,0x15,0x5b,0x6b,0xf2,0xac,0xfa,0x6d,0xfe,0x98,0xa7,0xe0,0x6d,0xb6,0x9d,0x17,0x52,0xb5,0xd8,0x36,0x16,0x5b,0x68,0x75,0x60,0x21,0xc4,0x7c,0x71,0x4,0xdc,0xd4,0x21,0x3b,0x1b,0xbf,0xb7,0xf1,0xf1,0x7e,0x1e,0x9c,0xa2,0xea,0x31,0x95,0x16,0xba,0xa1,0x1e,0xdd,0xf2,0x2b,0x81,0x64,0xdd,0x78,0x7c,0x9b,0x2d,0xc1,0x53,0xfb,0x6c,0x5,0x36,0x42,0xca,0x52,0xa6,0xd9,0x7c,0xad,0xa,0x2e,0xcc,0x96,0x73,0x78,0x3f,0xab,0x32,0xf4,0x1b,0x95,0x99,0xb2,0x81,0x39,0xb6,0x0,0xae,0x55,0x0,0xce,0x2b,0x1,0xeb,0xb4,0x64,0x25,0xe7,0x3c,0xcd,0x7d,0xf4,0x9b,0xe1,0xe4,0xbc,0x32,0xd4,0x8e,0xbf,0xd4,0xd2,0x16,0x99,0x58,0x8b,0x72,0x99,0x85,0x8c,0x55,0x37,0x40,0x6f,0xb4,0xd4,0x1e,0xa8,0xb0,0xdb,0x9c,0xd3,0x87,0x8d,0xd9,0x94,0xed,0xda,0x9d,0xcd,0x9,0xf4,0xb3,0xe7,0x55,0x3f,0x71,0xe3,0x69,0x6a,0x6d,0xd9,0x15,0xad,0x82,0xd1,0x3e,0xb6,0xb4,0xd9,0x84,0xf2,0x84,0xcf,0x9f,0x91,0x29,0xe7,0xad,0xf3,0x2,0x43,0xb9,0x3d,0xbf,0xb9,0x7d,0x99,0x88,0x88,0x88,0x88,0x88,0x2e,0x1e,0x6,0x80,0x44,0x44,0xaf,0xf4,0x42,0x69,0x95,0x7d,0x5a,0xf1,0x67,0xd5,0x68,0xd6,0xca,0x2b,0x55,0x4c,0x6e,0xfa,0xb3,0x86,0x29,0xde,0x79,0xd4,0x92,0x25,0xc0,0x9a,0x85,0x5b,0x36,0x3f,0x2d,0xe7,0x4,0xb,0x48,0x5a,0x3b,0x26,0x1c,0x42,0x8,0xad,0x82,0xaf,0x55,0x65,0xc9,0x3b,0xe1,0xbc,0x9f,0xb6,0xfb,0x6,0x5d,0xca,0x11,0xa2,0x2c,0x8d,0x8,0x41,0x16,0xc6,0x6a,0x88,0x97,0xd2,0x8,0xc0,0x5a,0x61,0x63,0xab,0x8,0x74,0x2d,0x88,0x8c,0xed,0x98,0xda,0xc6,0x5d,0x4c,0x21,0x57,0x88,0x51,0x82,0xa6,0x59,0x35,0x9a,0xdc,0x20,0xa6,0xcd,0xc2,0xed,0x1c,0x85,0x8d,0xcf,0xb5,0xb0,0x53,0x4f,0x8d,0x7c,0x5a,0x9b,0x53,0xe7,0xe1,0x9d,0x47,0x29,0xd6,0x26,0x5c,0x37,0x16,0x6a,0x60,0x16,0xec,0xd5,0x8d,0xfb,0x76,0xb3,0x5f,0xb3,0xca,0x40,0x5b,0xae,0x61,0x2d,0xcf,0xb3,0x16,0x6b,0x1c,0x58,0x4c,0x61,0x8f,0xbd,0x5,0x79,0x7e,0x5a,0x24,0x62,0xb,0x53,0xda,0xac,0xbd,0xb6,0x99,0x17,0x2d,0x1c,0x6b,0xdb,0x76,0x31,0xf,0x39,0x6b,0x3b,0xe7,0xf3,0xf0,0x16,0xda,0x8e,0xdb,0xc2,0xb8,0x16,0x32,0x4e,0xc7,0xde,0x2a,0x3d,0xbd,0x87,0xf7,0xf3,0x96,0xf0,0xe9,0x97,0x2d,0x41,0x81,0x6e,0x89,0xce,0x5a,0xed,0xe9,0xbc,0x5,0x74,0xae,0xcd,0x94,0x9c,0xcf,0x4a,0x9c,0x3f,0x1f,0x53,0xcb,0xef,0xec,0x5c,0x1c,0xbb,0xdd,0x5a,0xe7,0x52,0xfa,0x69,0x8e,0x60,0xc9,0x59,0xb7,0x3e,0xa3,0x2d,0xaf,0x99,0x57,0x10,0x1e,0x79,0x7b,0xf5,0xe0,0xec,0xc4,0xc3,0xb,0x55,0xa6,0xf6,0xf1,0x3,0x41,0x31,0x11,0x11,0x11,0x11,0x11,0x5d,0xdc,0xef,0x6b,0x79,0xa,0x88,0x88,0x8e,0x57,0xb2,0x84,0x68,0xd6,0x9a,0x9,0x5d,0x76,0x51,0x72,0x6e,0xf3,0xea,0x5a,0x68,0x33,0xab,0x4e,0xb,0x21,0xea,0xbc,0x40,0xdf,0x36,0xbe,0x5a,0x8,0x62,0x2d,0x95,0x56,0x8d,0x57,0x2d,0xd0,0x71,0x5e,0x17,0x74,0xc8,0x3c,0xbf,0x10,0x2,0xbc,0xf3,0x88,0x5d,0x27,0xc1,0x5f,0x9c,0x5a,0x81,0xa7,0xc5,0x1c,0x52,0x7d,0x28,0x95,0x84,0x3d,0x9c,0x73,0xe8,0xfa,0x85,0xb4,0x2,0x6b,0x50,0x63,0xd5,0x7f,0xd3,0x76,0xdd,0xda,0x2a,0xd0,0x20,0x6f,0x6d,0xb7,0xd7,0x42,0x30,0x0,0x49,0x37,0x20,0x5b,0xe8,0x3,0x40,0xab,0xd1,0xb4,0x72,0xc,0x68,0x95,0x77,0x25,0x27,0x3d,0x4d,0xa5,0xb5,0x8,0xdb,0xfc,0xc1,0xf6,0x5,0xc7,0x87,0x36,0x63,0x6f,0x33,0xac,0x42,0x7b,0xbb,0xcc,0xf6,0x4b,0xb3,0xe0,0xc8,0xeb,0x9c,0x41,0x3f,0x9b,0x27,0x58,0xdb,0xc7,0x6f,0x2e,0x63,0x99,0xb5,0xd1,0x96,0xcd,0x6a,0xc4,0x79,0x28,0xe7,0xac,0x75,0x59,0x67,0xd2,0x59,0x5b,0x70,0xdb,0x10,0x5c,0x8a,0x3e,0x17,0x71,0xda,0xa0,0xbc,0x31,0xb3,0x51,0xaf,0x8d,0x3,0xad,0xbe,0x61,0x36,0xdf,0xd1,0xda,0xaa,0xa7,0xb6,0x6b,0x7,0x1f,0xe3,0x34,0x73,0xb1,0xc8,0x12,0x17,0xab,0x2c,0xb4,0xe7,0xd2,0xf9,0xa9,0x9d,0xd7,0x5a,0xb0,0x5b,0xeb,0x79,0x29,0x1b,0xad,0xc7,0xd6,0x32,0xed,0xf5,0x5a,0x71,0xd6,0x66,0x5e,0xa,0xbc,0x9f,0xb7,0x22,0xcf,0x5a,0x7d,0x67,0xbf,0xac,0x6d,0xdc,0xde,0x3f,0x5f,0xe8,0x62,0xe7,0x6c,0xde,0xa2,0xe,0x27,0xe1,0xf4,0x7c,0x26,0x24,0xdc,0xe6,0x26,0xe0,0xb6,0xc4,0x6,0xb3,0x5,0x38,0xed,0xef,0x4f,0x7b,0xb6,0xdb,0x7e,0xe5,0xf9,0x2c,0x49,0xdb,0x96,0x4c,0x44,0x44,0x44,0x44,0x44,0x17,0x1f,0x3,0x40,0x22,0xa2,0xb,0xbd,0x48,0x6,0x6d,0x99,0x9d,0xb7,0x4e,0xda,0x4c,0x34,0xd,0xd0,0x5a,0x38,0x38,0x6b,0xbd,0xac,0x98,0x6,0xd3,0x79,0xef,0xb5,0xc2,0x4b,0xe6,0xe1,0x79,0xef,0xd1,0xf5,0xb,0xe4,0x94,0xa7,0xa0,0xa9,0x55,0x54,0xf9,0x59,0x40,0x53,0x66,0xd5,0x70,0x92,0xf7,0xd8,0x8c,0x3f,0xe8,0x82,0xb,0xd9,0x10,0xc,0xfd,0x38,0x9,0x6b,0xd2,0x38,0xb6,0x10,0xd2,0x87,0x88,0x10,0x7b,0x8c,0xc3,0x7a,0x16,0xc8,0x4c,0x15,0x70,0x36,0x8f,0x4e,0x82,0x3b,0x87,0x9c,0x46,0x78,0x1f,0xf5,0x78,0xa7,0xf0,0xad,0xb4,0x19,0x77,0xd2,0x66,0x6b,0x8f,0x57,0xde,0x3e,0x2d,0x9b,0xf0,0x21,0xb6,0x4a,0x3f,0x9,0x9,0xab,0x2e,0xb3,0x8,0x68,0xad,0xba,0x40,0xb,0xf3,0xec,0x3e,0xc4,0x34,0x6f,0x4e,0x4f,0xab,0x3c,0x7,0x6d,0x16,0x9e,0x54,0x5b,0x86,0x56,0xcd,0x68,0xb3,0xe5,0xa6,0xed,0xbd,0x56,0x29,0x7,0x4c,0x4b,0x55,0xe6,0x36,0x82,0x4b,0x4c,0xa1,0xe1,0x3c,0x64,0xb4,0xe7,0x22,0xa7,0xb1,0x1d,0x44,0xd9,0xd8,0x70,0x2b,0xb7,0x2f,0x15,0x94,0xb5,0x85,0x7e,0x39,0xa7,0x8d,0xa,0x43,0xd9,0xc4,0x7c,0x78,0x8e,0xa0,0x3d,0x96,0x52,0xb,0x7c,0xb,0xde,0xa6,0xe3,0x93,0xd,0xcd,0x3a,0x7b,0x51,0x5b,0x94,0x37,0x36,0x3a,0xd7,0xa9,0xad,0xdb,0x36,0x37,0x5b,0xd0,0x1c,0xa2,0x5c,0xf,0x65,0xb6,0x71,0xb9,0xcc,0xc2,0x4e,0x69,0xd,0xf,0xb3,0x65,0x2c,0x53,0x4b,0xbb,0xb5,0x26,0xcb,0xf1,0x6d,0x2e,0x93,0xf1,0xad,0x42,0x74,0x3a,0x5e,0xfb,0x98,0xf9,0x42,0x91,0x5a,0xe7,0xd7,0xc6,0xe6,0xfb,0x5a,0x4d,0xa3,0x85,0x91,0xd3,0x6e,0xe1,0xf6,0x5c,0xfa,0xb0,0xe0,0x8b,0xe,0x11,0x11,0x11,0x11,0xd1,0xa5,0xf8,0xde,0x96,0xa7,0x80,0x88,0xe8,0x78,0x25,0x8f,0x5a,0xa1,0x55,0x37,0x66,0xbb,0xb5,0xd6,0xca,0x52,0x35,0x3c,0x72,0x1a,0x36,0x69,0x3b,0xab,0x6d,0xfe,0xf5,0x7e,0x63,0x79,0x3,0x30,0x2d,0x59,0x88,0x9d,0x54,0xe9,0x75,0xfd,0xa2,0xfd,0x57,0xda,0x52,0x9d,0x56,0x93,0x49,0xbb,0x6f,0xd1,0x8a,0x34,0x9b,0xb9,0xa6,0x3,0xd3,0x66,0xc1,0xcf,0x66,0x3b,0x66,0x88,0xb1,0x55,0xc8,0xf5,0x8b,0x25,0x4a,0x4e,0xe8,0x17,0x4b,0x38,0xe7,0xd1,0x75,0x7d,0x6b,0x2d,0x76,0xce,0xa1,0xe4,0xd2,0xaa,0xc9,0xa4,0x92,0x2c,0xce,0x36,0xd9,0x3a,0xd,0x80,0x66,0x95,0x67,0xb3,0x8a,0x32,0xe7,0xb4,0xd,0xd8,0x79,0xdd,0x0,0x2c,0x81,0x67,0x8,0xb1,0x85,0x94,0xf3,0xa5,0x12,0x56,0x51,0xd7,0xce,0x89,0x55,0x9c,0x1d,0x5a,0x98,0xb1,0xd9,0x52,0x3a,0x2d,0xb8,0xb0,0xb6,0xea,0x82,0x32,0xb,0xab,0x50,0xa5,0x9d,0xda,0x76,0xd5,0x6,0xbd,0x1f,0x5b,0x64,0x22,0xb3,0xf3,0x5c,0x9b,0xe1,0x7,0x9b,0x95,0xa8,0xa1,0x96,0x55,0x44,0xd6,0x59,0xc0,0x67,0xf3,0xf6,0xa4,0xfa,0x31,0xea,0x57,0x4c,0x3f,0x9b,0xd1,0xe7,0x5b,0x9b,0x6c,0x6b,0xd3,0xd6,0x2a,0x4a,0xaf,0xcf,0x95,0x9f,0xb5,0xd0,0x2,0xd8,0xbc,0x7d,0xad,0xbe,0x3b,0xb4,0x2d,0xd9,0x96,0xc4,0x6c,0x6c,0xfb,0xd5,0xbb,0xf,0xa1,0x5,0x9a,0xf3,0x56,0xe3,0x9c,0x52,0xdb,0xfc,0x9b,0x53,0x6a,0xc7,0x18,0x63,0xb7,0x71,0xed,0xcd,0xcf,0xe7,0xc6,0xa6,0x65,0x77,0xc4,0x3f,0x5,0xdc,0x14,0x3c,0xda,0x6c,0x48,0x99,0x3d,0x98,0xa7,0x5,0x2b,0xd6,0x4a,0xdd,0x1e,0xdb,0x34,0x1f,0xb2,0xa2,0xc2,0xb7,0x39,0x86,0xa5,0xed,0x12,0xb6,0x3d,0x2f,0x16,0x56,0x4f,0xcb,0x45,0xa6,0x6a,0x4f,0x22,0x22,0x22,0x22,0x22,0xba,0xf8,0x18,0x0,0x12,0x11,0xbd,0x1a,0xe,0x7,0xda,0x19,0x25,0xd2,0x90,0xd6,0x4b,0x5d,0xa4,0x91,0x52,0xb,0xbc,0x4a,0xb2,0x96,0xd8,0x2a,0x4b,0x3a,0x62,0xd7,0xaa,0xea,0x0,0xb4,0x80,0xc7,0xfb,0x80,0x9c,0x46,0xdd,0xd0,0xaa,0xf3,0xe4,0xb2,0x4,0x34,0xfd,0x62,0xa9,0xed,0x9c,0x1,0xde,0x66,0xff,0x1,0x8,0x5d,0x87,0xae,0x5f,0x0,0x70,0x8,0x5e,0xaa,0xe1,0x24,0x3c,0x74,0xe8,0x17,0x4b,0x69,0x1,0xe,0x11,0x8b,0xe5,0x9,0xa4,0x71,0x90,0x4a,0x41,0xad,0x1c,0xb4,0x63,0xb0,0x2a,0xba,0xd6,0xae,0x1a,0x82,0xe5,0x75,0x1b,0x15,0x63,0x39,0x8d,0x12,0x10,0xcd,0xb6,0x19,0xcf,0x17,0x42,0x38,0x9d,0x73,0xd8,0x6,0xbc,0xb9,0xa9,0xf2,0x4f,0xee,0xcf,0xb5,0xf6,0xe3,0x92,0x33,0x6a,0xd1,0x10,0xf,0xd3,0xfc,0x3b,0x9,0x89,0x70,0xa8,0xfa,0xcc,0xe9,0xd2,0xc,0xa7,0xcb,0x3d,0xa6,0xe0,0xaa,0x6c,0xb4,0x42,0x5b,0x10,0x6a,0x8b,0x4a,0xac,0x1d,0x39,0xe8,0x4c,0xc4,0xf9,0xa6,0xe0,0x79,0x1b,0x6c,0xd5,0xe5,0x1d,0x5e,0x3f,0x77,0xaa,0xe6,0xb3,0xa0,0x2c,0x6b,0xfb,0xb4,0xdc,0x9e,0xd7,0xc0,0xb3,0xd4,0xb2,0xf1,0xf8,0x2d,0x28,0xab,0xb3,0x63,0x46,0xab,0xb0,0x94,0xb9,0x8b,0x21,0xc6,0xd9,0x9c,0x43,0xb,0xb,0xa7,0xad,0xcf,0x16,0xf8,0x2,0x3a,0x6f,0x6f,0x16,0xc0,0x59,0xd5,0x5d,0x29,0x53,0xc5,0x60,0x8,0xb1,0xcd,0x37,0x9c,0xcf,0x97,0xd4,0x4b,0xb5,0x55,0x6d,0x4e,0x6d,0xd2,0xbe,0x2d,0x8d,0x99,0xb7,0x3,0xcf,0xab,0x3f,0x6d,0x6e,0x63,0xab,0x66,0x45,0x6d,0xc1,0x9c,0x73,0x52,0xe1,0x88,0x8d,0xed,0xc4,0xf6,0xec,0xa1,0xb5,0xf,0x4f,0xef,0x98,0xaa,0x2a,0xad,0x18,0xd6,0x2a,0x67,0x6d,0xb2,0x61,0x9d,0x2d,0x69,0xd1,0xab,0x0,0x98,0x9d,0x5b,0x22,0x22,0x22,0x22,0x22,0xba,0x78,0x18,0x0,0x12,0x11,0xbd,0x82,0x36,0x5f,0x6e,0xbe,0x44,0xc1,0xcd,0x66,0x9c,0xd5,0x69,0x86,0x9a,0xcd,0xa7,0x9b,0x87,0x6e,0xde,0x7,0x59,0xe0,0x50,0xa,0x42,0xb4,0xb6,0xdc,0x69,0x9e,0x9f,0xf3,0x1e,0xb1,0x5f,0x20,0xc6,0xe,0x5d,0xbf,0x6c,0x61,0x5f,0xc9,0x9,0xb1,0xeb,0x64,0xbe,0x9f,0x86,0x7f,0x36,0xd7,0xcf,0x39,0x87,0xae,0xd3,0x59,0x81,0xda,0xfa,0x1a,0xbb,0x45,0xab,0x78,0xb3,0x4a,0xbe,0x10,0xbb,0x36,0x3b,0xd0,0x66,0x1,0xda,0xec,0x37,0xb,0x23,0xa5,0x62,0x2f,0xc0,0x7b,0xd7,0xc2,0x46,0x7b,0xdc,0x21,0xc4,0x36,0x8b,0x10,0xe,0xf0,0x36,0x7f,0xce,0xa1,0x85,0x52,0x56,0x9,0xd8,0xb6,0x1e,0x5b,0xeb,0x73,0x88,0xa8,0xa5,0x22,0xc6,0xe,0xb6,0x15,0xb6,0xb5,0x5,0x5b,0x5,0xe2,0x6c,0x4e,0x9d,0x9c,0x8b,0xd0,0x5a,0x7a,0x8b,0xcd,0xf1,0x6b,0x2d,0xb7,0x72,0x1e,0xad,0x62,0xcf,0xde,0x57,0x67,0xf3,0xf4,0xac,0xf5,0x18,0x0,0x72,0xb1,0x5,0x1b,0xa1,0x85,0x9f,0xf2,0xb8,0xd0,0x2,0x3a,0xa9,0x12,0x94,0xf3,0x25,0x9b,0x94,0xa7,0x70,0xd6,0xe6,0xee,0x4d,0x8b,0x34,0x24,0x18,0x8d,0xb3,0x2a,0xc9,0x5a,0x8a,0xcc,0x45,0x6c,0x81,0x1d,0xa6,0xa0,0xcd,0x3b,0x5d,0xf4,0x52,0xdb,0xa6,0xde,0x8d,0xe5,0x28,0x7e,0x6a,0x6d,0xce,0x59,0xaa,0xf8,0x62,0xec,0xe4,0xf9,0xd0,0xf9,0x85,0xad,0xa,0x4f,0x2b,0x3e,0x73,0xce,0xad,0xad,0xda,0x5a,0xd0,0xfd,0xac,0x82,0xcf,0xe6,0x0,0x3a,0xe7,0x10,0x62,0xd7,0x66,0x2d,0x4e,0xf3,0xfe,0xe4,0xda,0xf1,0x1a,0x4e,0xb6,0x8a,0x46,0xcc,0xdb,0x8d,0x35,0x90,0x2b,0x45,0xdb,0x89,0xf3,0xc6,0x75,0x3c,0x6d,0x77,0xc6,0x66,0x5,0xe0,0x6c,0x3b,0xb3,0x3d,0x9f,0x16,0x2e,0xe2,0xc0,0x46,0xe1,0x8d,0xad,0xc4,0x2d,0x7,0x75,0xa8,0x35,0xf3,0x5,0x87,0x88,0x88,0x88,0x88,0xe8,0x12,0x60,0x0,0x48,0x44,0xf4,0x8a,0xea,0x66,0x9b,0xa3,0xfc,0x1,0x80,0xd3,0xa5,0x18,0xbe,0xcd,0xeb,0x8b,0x51,0x82,0xba,0x29,0x8,0xa,0x6d,0x41,0x83,0x55,0x49,0xc9,0xdc,0xbd,0xa9,0xda,0xcc,0x6b,0xb,0x6d,0x29,0xd2,0xb6,0x2b,0x41,0x54,0x6d,0xed,0xbf,0xd6,0x22,0x1c,0x35,0xcc,0x93,0x90,0x68,0x6a,0x7,0xb5,0x56,0x61,0x6b,0x5b,0xf5,0x3e,0xb6,0xaa,0xb2,0x9c,0x46,0xf8,0x18,0xa5,0xc2,0xf,0x40,0x88,0x11,0x31,0xf6,0x1b,0x41,0x62,0xec,0x3a,0xdd,0x62,0x8b,0xa9,0x3a,0x4e,0x67,0xd1,0xcd,0xb7,0x1a,0xd7,0xaa,0x73,0xe2,0xf4,0x1,0xe6,0xb6,0xac,0x43,0x9b,0x6f,0xb5,0x55,0x54,0xaa,0x19,0xd1,0x2,0x4c,0x9b,0x2d,0x67,0x15,0x72,0x53,0x3b,0xb0,0xd7,0x60,0xc9,0xb7,0xb6,0x5d,0xd9,0x2e,0x2c,0xb7,0x69,0xb,0x27,0x5c,0x9b,0x6f,0xe8,0xda,0xec,0xc3,0x6a,0xcb,0x48,0x30,0x55,0x6,0xfa,0xb6,0x28,0x4,0xb3,0x56,0x69,0x48,0xb,0xf3,0x2c,0x70,0xf2,0xb3,0xf6,0x60,0x5b,0xaf,0x5c,0xca,0xbc,0x82,0xcf,0x66,0x8,0xba,0x59,0xc5,0x63,0x6d,0xe1,0x5a,0x4a,0x63,0x9b,0x1d,0x68,0xb3,0x1,0xe7,0x21,0x71,0x88,0x5d,0x5b,0x26,0x12,0x6c,0x93,0x33,0xa4,0x32,0x31,0xe7,0xdc,0xaa,0x2,0xf3,0x38,0xc2,0xc2,0x41,0xdb,0x9c,0x3c,0xb5,0x32,0xa3,0x2d,0xd9,0xb0,0x8a,0x49,0xb,0x11,0xad,0xba,0x6f,0x5a,0x52,0x52,0xe,0xb4,0xf9,0x56,0x3d,0xff,0x53,0x98,0x26,0xd7,0x61,0x94,0xaa,0x40,0xad,0xfa,0x9b,0x57,0xf4,0xd9,0xf9,0xb4,0x60,0xd7,0xae,0xab,0xd6,0x7a,0x8e,0x29,0xc0,0xb6,0xe7,0xc4,0xae,0x63,0x9b,0xe7,0x57,0x31,0x6d,0x41,0x9e,0xaa,0x11,0xa7,0x4a,0xc3,0x79,0xc5,0xa1,0xf3,0x7,0x5a,0xbf,0xad,0x37,0xb8,0x30,0x0,0x24,0x22,0x22,0x22,0x22,0xba,0x14,0x18,0x0,0x12,0x11,0x5d,0xe8,0x45,0x32,0x74,0x6d,0xf9,0x44,0xab,0x46,0xb3,0xb6,0x48,0xa0,0x2d,0x49,0x0,0x70,0x28,0xe8,0xb0,0x4d,0xae,0x45,0xdf,0x6f,0x21,0x17,0x0,0xdd,0x0,0x2c,0x15,0x57,0xdd,0x62,0xd9,0x16,0x7a,0x58,0xa5,0x9f,0x55,0xed,0x85,0xd9,0xbc,0x3e,0x37,0x9b,0xfb,0x67,0x55,0x54,0xf3,0xd6,0x62,0xa7,0x1b,0x83,0xa5,0xfa,0x30,0xb6,0xb9,0x82,0x72,0xdf,0xa1,0xb5,0x99,0x4e,0xb,0x2f,0xaa,0xce,0xb,0xd4,0xda,0x2c,0x87,0x56,0x6d,0x36,0xdf,0xac,0xb,0x40,0xe7,0x12,0x4a,0x55,0x23,0xa0,0xd5,0x5f,0x3a,0x5f,0xe,0xb6,0x4c,0xa4,0xd4,0xf6,0x18,0xed,0xed,0x25,0xe7,0x56,0x29,0x28,0xd5,0x67,0x5a,0xa5,0x57,0x36,0x5b,0x3d,0x73,0x4e,0xa8,0xa5,0x68,0xb8,0x56,0x66,0x6d,0xa6,0x9b,0x5b,0x6b,0x2d,0xf4,0x94,0xf3,0x2e,0xad,0xc1,0x56,0x49,0x57,0xb4,0xda,0xcc,0xfe,0xec,0x43,0x68,0xf7,0x63,0xcf,0x8b,0x6d,0x6f,0x8e,0xd6,0x12,0xad,0xd5,0x8c,0x6d,0x99,0x48,0x88,0xad,0x1a,0x2d,0xf8,0xa0,0x79,0xaf,0x9b,0x55,0xcf,0xa1,0x2d,0x6e,0xb1,0x6d,0xbb,0xad,0xa2,0x53,0xe7,0x1b,0xca,0x22,0x15,0xad,0x4e,0x9c,0x5,0xc4,0xad,0x8a,0x50,0x8f,0xc7,0xc7,0xd8,0x96,0x91,0xb8,0xd9,0x5c,0x49,0xa7,0x55,0x94,0x52,0x61,0x5a,0x5a,0x65,0x63,0xbf,0xd8,0x99,0x96,0xbb,0xb4,0xd9,0x7e,0xbe,0x2d,0xf5,0x8,0x71,0x6a,0x23,0xb6,0xa,0x3c,0x9b,0x1b,0x58,0x51,0x65,0xab,0x33,0x24,0x50,0xcc,0x16,0x80,0xb6,0x79,0x87,0x53,0x35,0xeb,0xb4,0x5,0xd9,0xb7,0xe0,0x55,0xb6,0x16,0x6b,0x20,0xb,0x9,0xb7,0xf3,0x6c,0xf3,0x73,0xd5,0x76,0x61,0xab,0x5e,0x9c,0x57,0x39,0xd6,0xd9,0xcc,0x40,0x3d,0xb4,0x36,0x27,0x70,0xbe,0xe0,0x6,0x70,0x70,0xa1,0xe7,0x8b,0xe,0x11,0x11,0x11,0x11,0xd1,0x25,0x10,0x79,0xa,0x88,0x88,0x8e,0x57,0xf2,0xd8,0xb6,0xda,0xda,0x3e,0x6,0x17,0x2,0x4a,0x4e,0x70,0x3e,0xa2,0xe4,0x24,0xa1,0x51,0x6b,0x69,0x95,0xb9,0x74,0xfd,0xa2,0xd7,0xa,0x39,0x5b,0x78,0x21,0x41,0x4b,0xec,0x16,0xa8,0x59,0x5a,0x73,0xbb,0x6e,0x61,0xdd,0xaf,0x12,0xe2,0x41,0x82,0xc6,0xae,0x5f,0x4c,0xb3,0xf9,0xb4,0x22,0xca,0xaa,0xaf,0xa4,0xbd,0x38,0x4a,0xb0,0xa6,0x1,0x57,0x17,0x3c,0x72,0x4a,0xe8,0x97,0x4b,0xe4,0x71,0x44,0x8c,0x9d,0x6e,0x9d,0x95,0x2a,0xb1,0x52,0xb2,0x4,0x3e,0xda,0xd2,0xe9,0x9d,0x1c,0xbf,0xf7,0xa1,0x1d,0x63,0xec,0xfa,0xd6,0xce,0xa,0xa0,0xb5,0x16,0x5b,0x65,0xa0,0x55,0xcd,0x79,0x1f,0x50,0x50,0xe1,0x31,0x9f,0xd5,0xe7,0x36,0x82,0x36,0xbb,0x5d,0x9,0xaf,0x42,0xdb,0xfc,0x6a,0xb7,0x25,0x15,0x72,0xa5,0x85,0x40,0xb6,0xb8,0xc3,0x87,0xd0,0xb6,0xd,0x97,0x92,0xe1,0x7c,0xdc,0xd8,0x34,0xb,0xe8,0xc6,0x58,0x7,0xd,0x9f,0x5c,0xb,0xa5,0xa0,0xc1,0x5c,0xc9,0xd3,0x12,0xc,0x3b,0x47,0x76,0xdc,0x16,0x88,0xb5,0xe5,0x1b,0xe,0xba,0x8c,0xc3,0xeb,0x22,0xc,0xa7,0xcf,0x67,0x68,0x73,0xf8,0xd0,0xb6,0x20,0x4b,0xf5,0x5d,0xcd,0xb3,0x80,0xd7,0x36,0x36,0x6b,0xe5,0xa3,0x9e,0x0,0x69,0xbd,0xad,0x53,0x9b,0x6c,0x8,0x1,0x5,0x59,0x2a,0x1c,0xe1,0x5b,0x65,0x20,0x0,0xdd,0x4,0x2c,0xed,0xc9,0x25,0x27,0x94,0x22,0xcb,0x61,0xda,0x39,0x75,0xd3,0xa6,0x5f,0xbb,0x8f,0x9c,0x47,0xad,0x6e,0x94,0xd0,0x30,0x74,0xbd,0xcc,0x6a,0x84,0x54,0x78,0x96,0x21,0x6b,0xfb,0x76,0x40,0x1a,0x47,0xe4,0x3a,0xb6,0x79,0x84,0x45,0xe7,0x35,0x86,0xd8,0x4d,0x55,0xad,0x4e,0x2,0x59,0x2b,0x6c,0x75,0x36,0xbb,0x31,0xa5,0x8d,0x56,0x63,0x0,0x1b,0xcb,0x49,0xec,0x9c,0x3a,0xe8,0xf1,0x3,0x6d,0x9,0x89,0x9d,0x1f,0xbb,0x3e,0xd0,0x96,0xaf,0x60,0x36,0x3c,0x70,0x73,0x6,0x60,0xa9,0x5,0xb5,0x8c,0x7c,0xd1,0x21,0x22,0x22,0x22,0x22,0xba,0x4,0x18,0x0,0x12,0x11,0xbd,0x82,0x69,0x26,0xda,0x7c,0x41,0xc2,0x34,0xe7,0xce,0x36,0xdf,0x4e,0x9b,0x5c,0x2b,0xd2,0x38,0x20,0xc6,0x7e,0x9a,0x9,0x88,0x28,0xad,0xb8,0xce,0x23,0xbb,0xa2,0xad,0x98,0x49,0x82,0x37,0x48,0x25,0x9f,0xb5,0x7e,0x96,0x92,0x5b,0xc0,0xe6,0x82,0x84,0x60,0x1,0xb6,0x38,0x41,0x32,0x43,0xdf,0x49,0x15,0x57,0x88,0x11,0x39,0x25,0x2c,0x77,0x4e,0x20,0xe7,0x4,0x1f,0x23,0x62,0xec,0x30,0xae,0xd7,0x12,0x2a,0x5a,0x5b,0x68,0x5,0x5c,0x8c,0x28,0x29,0xb7,0x30,0x72,0x3a,0x66,0xa0,0x14,0x6b,0x37,0xd,0xa8,0x25,0xb7,0xe5,0x25,0xed,0xb1,0xb7,0xc,0x48,0x2,0xce,0x62,0xc7,0xa9,0x6d,0xa0,0xa5,0x96,0x56,0x4d,0x68,0x55,0x7e,0x5d,0xd7,0xb7,0x8a,0x3b,0xe7,0xbd,0x1c,0xbd,0x6,0xa5,0xd5,0xc9,0xec,0xba,0x94,0x46,0x4d,0x55,0x81,0x5a,0x5c,0xb,0xb6,0x42,0xec,0x50,0xf4,0xfe,0xe5,0x71,0xc8,0x3c,0x41,0x3b,0x26,0x6b,0x31,0x85,0xb6,0x51,0x3b,0x6d,0xc7,0x6e,0x95,0x77,0xa8,0xf0,0x41,0x8f,0xa3,0x97,0xd9,0x88,0x36,0xef,0xaf,0x6a,0x25,0x9f,0xf,0x11,0x2e,0x44,0xa4,0x71,0x44,0x8,0xa1,0xb5,0x34,0x4b,0x68,0x8b,0xd9,0xc,0xbe,0xe9,0x79,0xb7,0xca,0xbb,0x79,0xb0,0x55,0x66,0x21,0xad,0x83,0xb4,0xdb,0x4e,0x41,0x71,0x6e,0xe1,0xe4,0x7c,0xe9,0xc8,0x38,0xac,0x25,0x8c,0xac,0xe,0xb9,0x64,0x44,0x1f,0xb4,0xa5,0x57,0x8e,0xb3,0x5f,0xee,0x48,0x98,0xa6,0xe7,0xbb,0xea,0x6c,0x43,0xa9,0xa6,0x44,0xab,0xfa,0xb4,0x6a,0xc3,0xa2,0x55,0x7d,0xb6,0xdc,0xc5,0xc2,0x5c,0x69,0xef,0xd6,0x85,0x33,0xb3,0x19,0x84,0xce,0xb9,0xd9,0xb9,0x9c,0xaa,0x2d,0xab,0x56,0x0,0x16,0xdb,0xe,0x5c,0x2b,0x42,0xd7,0xe9,0xd6,0x65,0xf,0xe7,0xa6,0x85,0x1d,0xd3,0xb2,0x12,0xdf,0x42,0x5a,0xb,0xae,0x1d,0x2c,0xc0,0x9c,0x16,0xbb,0x64,0x9d,0x8d,0x68,0x2d,0xe2,0x98,0x37,0x1,0x57,0x69,0xa5,0x76,0x61,0x89,0x5a,0xce,0xf3,0x45,0x87,0x88,0x88,0x88,0x88,0xe8,0x22,0x63,0x0,0x48,0x44,0xf4,0xa,0xac,0xa5,0x74,0xa,0xaa,0xea,0x14,0xfe,0xe4,0xdc,0x2a,0x9e,0x80,0xa9,0xd,0x38,0xc4,0xe,0x70,0xc0,0x89,0xe5,0x12,0xff,0xf4,0xb7,0x3e,0x86,0xe5,0x62,0xd1,0x96,0x20,0xb4,0xd,0xb0,0x6d,0x2e,0xde,0x54,0x1,0xe6,0x75,0x9,0x46,0x6b,0x39,0xd5,0xcf,0xa9,0x6d,0x8d,0xad,0x2d,0xdf,0xc8,0x2d,0x6c,0x6b,0x4b,0x1e,0x7c,0x68,0xed,0xc8,0x56,0xed,0x7,0x48,0xd0,0x56,0x4a,0xc6,0x38,0x8e,0xf8,0xec,0x9f,0x7d,0x15,0x4f,0x3d,0xf7,0x2,0xba,0x7e,0x89,0x9c,0x46,0xad,0x60,0xb,0x70,0x4e,0x6e,0x4f,0x82,0x1c,0xa9,0x24,0xcb,0x39,0x23,0x68,0x35,0x5f,0x8,0x11,0x29,0x8d,0x6d,0xe6,0x9d,0xf3,0x56,0xd9,0xe8,0x91,0x87,0xb5,0x4,0xa1,0xd8,0x6c,0xd5,0x51,0xd5,0xf8,0x26,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x4d,0x69,0xb4,0xe2,0x2e,0x74,0x7d,0x8f,0x9c,0x25,0x38,0xcb,0x29,0xb5,0xd0,0x28,0xc4,0x4e,0xce,0x9d,0x6,0x7f,0x6d,0x13,0xad,0x1e,0x87,0x9f,0xb5,0x58,0x3,0xd2,0x62,0x3a,0xb5,0x30,0x97,0x16,0x66,0xd5,0x52,0xdb,0xd9,0xb2,0xb7,0x59,0x40,0x55,0x73,0x6d,0xcf,0xd9,0xb4,0xc8,0x62,0x5a,0x5c,0x61,0xc1,0xa5,0x5,0x67,0xb6,0xb8,0x22,0xa5,0xa4,0x8b,0x47,0x24,0x3c,0xb3,0xe7,0xdb,0x7b,0x2f,0x95,0x76,0x5a,0x55,0xe9,0x43,0x40,0x4e,0xa9,0x55,0x5e,0xda,0xd6,0x67,0x7b,0x9f,0x85,0x71,0x41,0x37,0x3e,0x17,0x27,0x6d,0xc3,0x56,0xcd,0x19,0x9c,0x84,0x87,0x76,0xdb,0xfd,0x72,0x47,0x2b,0xf5,0x0,0x54,0x87,0x10,0xfb,0x16,0xca,0x16,0xd,0x6e,0xad,0x6a,0x6f,0xaa,0x70,0xf4,0x2d,0x8,0xd,0x21,0xa2,0xba,0xd2,0x2,0x65,0x7b,0xac,0xf3,0x2a,0xc5,0x6a,0xed,0xd8,0x28,0x2d,0xe0,0x94,0xf3,0x1d,0x50,0xdd,0xb4,0x45,0xd8,0xda,0xd8,0x37,0x3e,0xdf,0x7b,0x38,0x3d,0x16,0x94,0x82,0x32,0xdf,0xe2,0xac,0x61,0x78,0xb6,0x4a,0x4a,0xd,0x1,0x4b,0xce,0x1a,0xb2,0xca,0x46,0x68,0xb9,0x6e,0x1,0x57,0xfd,0x46,0xb8,0x5c,0xd3,0x3e,0x5f,0x70,0x88,0x88,0x88,0x88,0x88,0x2e,0x1,0x6,0x80,0x44,0x44,0x17,0x60,0xa1,0x90,0xf3,0xe,0x65,0x2c,0x2d,0xd0,0xaa,0x0,0x9c,0xb6,0x94,0x2,0x12,0xc6,0x4c,0xf3,0xf1,0xa6,0x99,0x6e,0xbb,0xcb,0x1e,0x77,0xdf,0xf5,0x26,0xec,0x2c,0x97,0xff,0xbf,0x3f,0x96,0x71,0x1c,0xf1,0xa7,0x5f,0xfc,0xd6,0xd4,0xba,0xaa,0x41,0x94,0x54,0xc6,0x49,0xb0,0xe9,0xbd,0xcd,0xcd,0x73,0x6d,0xf3,0xaf,0x3c,0xde,0xda,0x2,0x1e,0x9b,0x93,0x7,0xd,0xad,0x6c,0x4e,0x61,0x6d,0xa1,0xe4,0xe6,0xc2,0x88,0x52,0x32,0xc6,0x61,0xd0,0x19,0x75,0xe,0x3e,0x46,0xd,0x97,0x24,0x64,0x8a,0xb1,0xd7,0xb6,0xd6,0x8a,0xa4,0x2d,0xa4,0xa8,0x75,0xb6,0x31,0xb7,0xc2,0xc3,0xc3,0x85,0x79,0xab,0xed,0x34,0x77,0xce,0x39,0x79,0x5f,0x3b,0xf7,0x6d,0x51,0x48,0x6d,0x61,0x63,0x86,0xb4,0xc,0x3b,0xdd,0x84,0xc,0x68,0x5b,0xf2,0xac,0x2d,0xb8,0x68,0x45,0xe5,0xbc,0x62,0xce,0xaa,0xdf,0xa4,0x9d,0xd8,0x6b,0x78,0x56,0xdb,0x6d,0x58,0x6b,0x6e,0xab,0x84,0xd4,0xf3,0x61,0xb7,0x5d,0x4b,0x86,0x83,0x43,0xd7,0x2f,0xda,0xfb,0xa0,0x41,0xe4,0x38,0xac,0x24,0xa8,0x6b,0x5b,0x7b,0x63,0x7b,0xcc,0xd2,0xae,0x2b,0x61,0x6b,0x29,0x19,0x39,0x25,0x84,0x28,0x73,0xf,0xbd,0x97,0xca,0x49,0xb,0x60,0xc7,0x61,0xa5,0x2d,0xbd,0x52,0xf9,0x98,0xd3,0x38,0xcd,0x41,0xd4,0x76,0x68,0x5b,0xe4,0xe2,0x9c,0x43,0x81,0xb6,0x69,0xa7,0x71,0x76,0x7d,0x5b,0x20,0x6a,0xed,0xd6,0x45,0x97,0x92,0xe4,0x36,0x7b,0xb2,0x9d,0x37,0x6c,0x2e,0x8b,0xb1,0x39,0x86,0xf6,0xf7,0x22,0xe7,0xd4,0xe6,0x4,0x2,0xba,0xd9,0x59,0x43,0x44,0xdb,0xc6,0x5c,0x4b,0x69,0x8b,0x57,0xe6,0x9c,0xef,0x50,0xf3,0x9a,0x2f,0x3c,0x44,0x44,0x44,0x44,0x44,0x17,0x19,0x3,0x40,0x22,0xa2,0xb,0x72,0xd3,0x6,0x5b,0xd,0xa6,0x6c,0x76,0x5a,0xa9,0x75,0x6a,0xb1,0xd5,0x45,0x9,0x16,0xae,0xe5,0x94,0xe0,0xfb,0x45,0x6b,0xbf,0xfd,0xbb,0xf1,0x50,0xa4,0x6a,0xb1,0x5b,0x2c,0x90,0xc6,0x41,0xb7,0x14,0xfb,0x16,0x62,0xd5,0x2a,0x33,0xef,0xbc,0xf7,0xba,0x29,0x56,0x37,0xcf,0x6a,0x28,0xe8,0xda,0x62,0x8a,0xda,0xe6,0xea,0xd9,0x26,0x58,0xaf,0x2d,0xa5,0x4e,0xc3,0xa9,0xae,0x5b,0x68,0x9b,0x71,0x98,0x42,0x28,0xad,0xb8,0xb3,0x39,0x83,0xb5,0x4c,0x9b,0x7b,0x6d,0x26,0x5e,0x70,0xb6,0x28,0xa4,0xce,0xaa,0xdc,0xba,0x56,0xad,0x28,0x9b,0x8d,0xd3,0x14,0xbc,0xc5,0xb0,0xb1,0xe1,0x57,0x66,0x8,0x56,0x94,0xa2,0x5b,0x6a,0xf5,0x78,0x6d,0xa3,0x32,0x80,0x69,0x8b,0xb0,0x93,0x16,0xe9,0x79,0x50,0x68,0x1f,0x63,0xc1,0x54,0x49,0x9,0xa1,0x9b,0x82,0x5d,0x38,0xa0,0x8b,0x8b,0x56,0x81,0x29,0x6d,0xbf,0xae,0x9d,0x9f,0xae,0xef,0xdb,0xed,0x85,0xd8,0x4d,0xed,0xc1,0x1a,0xa4,0x95,0x92,0xe0,0x74,0x86,0x61,0x88,0x1d,0xba,0x7e,0x81,0x9c,0xd2,0xac,0x15,0xbb,0xa0,0x8c,0x23,0x62,0xd7,0xb7,0x2a,0xca,0x3e,0x2e,0xe1,0xfb,0x1e,0x31,0x78,0x78,0xdf,0x63,0x4c,0x19,0x9d,0xf,0xed,0xb1,0x76,0xdd,0x42,0xb7,0x7,0xcb,0x31,0x76,0xb,0xa9,0xee,0xc,0x21,0x22,0x8d,0xc3,0xd4,0x86,0xab,0xa1,0x60,0xc,0xfd,0xb4,0x58,0x65,0x36,0x4b,0x52,0xc6,0x2b,0xea,0xa2,0x13,0x2f,0xcf,0x43,0xd0,0xdb,0x74,0x70,0xad,0x55,0x78,0x3a,0xdf,0x1e,0x3e,0xfa,0xd6,0x92,0x6d,0x8b,0x56,0xac,0x5a,0xd4,0x5a,0xe5,0xe7,0xf3,0x21,0x2d,0xa0,0x85,0x2d,0x1c,0x91,0x77,0xb4,0xdb,0xad,0x35,0x69,0xeb,0x71,0xe1,0x4b,0xf,0x11,0x11,0x11,0x11,0xd1,0x45,0xc4,0x0,0x90,0x88,0xe8,0x95,0x48,0xc9,0x93,0x56,0x40,0xd5,0x36,0xb,0xd0,0xcf,0xaa,0xce,0x7c,0xb0,0xf6,0xdb,0xda,0x16,0x5f,0x0,0xd0,0x96,0xd3,0xbf,0x23,0x8f,0x43,0x2b,0xcd,0xaa,0x86,0x56,0xb1,0xeb,0x64,0x26,0xa0,0xb5,0x6e,0x46,0x59,0x6a,0x2,0x0,0x31,0xf6,0x32,0xa7,0x50,0x3,0xac,0xda,0xba,0x47,0xab,0x2e,0x8,0x89,0x32,0x77,0xcf,0x96,0x80,0x54,0xc0,0xeb,0x52,0x94,0xbe,0x5f,0x62,0x58,0xef,0xeb,0x26,0x63,0x9,0xbd,0xd2,0x38,0xca,0x46,0x62,0x57,0xd0,0x6b,0x60,0x95,0x73,0x96,0x19,0x88,0xda,0x72,0xbb,0x11,0x14,0x95,0x82,0xd8,0x2f,0x90,0xeb,0x38,0x1d,0x83,0xce,0x56,0x5c,0x2c,0x77,0xdb,0x52,0xe,0x99,0xd7,0xe7,0x30,0x8e,0x6b,0x78,0xe7,0x25,0x50,0xd4,0x96,0xdd,0x9c,0xd2,0x6c,0x81,0x86,0x84,0x9d,0x25,0xe7,0x16,0xbe,0xcd,0x97,0x86,0xc4,0x36,0xe7,0x4e,0xc3,0xb2,0x10,0xda,0x8c,0xbc,0x92,0xb2,0x56,0x78,0x46,0xd4,0xea,0xda,0x2,0x12,0x9b,0x7,0x98,0x73,0x46,0xec,0x7b,0xd4,0x32,0x6d,0xd5,0xd,0x51,0x37,0x3e,0x17,0xb9,0x6,0x24,0x30,0x4c,0x3a,0x33,0x70,0xda,0x72,0x6c,0x41,0xa2,0xfd,0x7e,0xb9,0x73,0x2,0xa3,0xcd,0x8f,0xac,0x5,0xb1,0xeb,0x11,0x1c,0xf0,0x3b,0xff,0xd9,0x7,0xf1,0xb6,0xbb,0xef,0x44,0xf0,0x1e,0x3f,0x7e,0xe8,0xa7,0xf8,0xa3,0xcf,0x7f,0x9,0xcf,0xbc,0x70,0x6,0x3a,0xac,0x10,0xc8,0xb2,0x25,0x38,0x8d,0x43,0x6b,0x4b,0xcf,0x39,0xc1,0x85,0xd0,0x2,0x6b,0x3b,0x27,0xf3,0xf3,0x69,0x21,0xa5,0x55,0xf8,0xd9,0xdc,0xc8,0xaa,0xd5,0x7b,0xd3,0xf6,0x6b,0xcc,0x66,0x2f,0xda,0xc,0xc1,0xb1,0x55,0x25,0x5a,0xf8,0x27,0x2d,0xbe,0x52,0x1,0xe8,0xf4,0x71,0xcb,0x6,0x61,0xa9,0x68,0xf4,0x4e,0xe6,0x58,0x42,0xaf,0x19,0x6b,0xa5,0xaf,0xd0,0x45,0x24,0xbe,0x43,0x4d,0x2b,0xbe,0xe6,0x10,0x11,0x11,0x11,0x11,0x5d,0x64,0xc,0x0,0x89,0x88,0x2e,0xa0,0xe4,0xb1,0xcd,0x96,0x6b,0xd5,0x7c,0xb3,0x59,0x80,0x3e,0x4e,0x15,0x64,0x6d,0xc6,0x9c,0x7e,0x6c,0x1a,0xd7,0xb2,0x41,0xf5,0xef,0x48,0x5,0xa0,0xd3,0xad,0xb7,0x31,0x76,0x18,0xb5,0x25,0x34,0x97,0xa4,0x1,0x8f,0x9b,0x66,0xed,0x69,0x35,0x1f,0x6c,0x99,0x83,0x5,0x3f,0xba,0x11,0x36,0x68,0xdb,0xb0,0x55,0x91,0x39,0xef,0xe0,0xaa,0x85,0x83,0x12,0x10,0x2d,0x76,0x4e,0xb4,0xaa,0x3f,0xef,0x3,0x5c,0xe7,0xda,0xf6,0xdb,0x71,0x58,0xcb,0xa2,0x8f,0x30,0xcd,0x17,0x74,0xce,0x21,0xeb,0xc2,0x94,0xa8,0x5b,0x6d,0x8b,0x2e,0xe5,0x90,0xa5,0x1e,0xa5,0xb5,0xc9,0x5a,0x80,0x27,0x9b,0x6f,0xeb,0x34,0x73,0x51,0xdb,0x93,0x73,0x1a,0xdb,0x2,0x8a,0xa2,0x15,0x67,0x56,0xed,0x16,0xbb,0xae,0xb5,0x6d,0x5b,0x38,0x28,0x33,0xfa,0xaa,0x6,0x81,0x3d,0x86,0xd5,0x3e,0x42,0x8c,0x7a,0x1c,0x49,0x66,0x0,0xc6,0xd8,0x16,0x71,0x48,0x45,0x5c,0x45,0x4e,0x19,0x21,0x76,0x8,0x1,0xd3,0xc6,0x5c,0x3b,0xf,0xba,0xf4,0xa3,0xeb,0x17,0x6d,0xae,0xa0,0x5d,0x1b,0xb5,0x6,0x5d,0x8a,0x3b,0x55,0x52,0x42,0x1f,0x5b,0x1a,0xc7,0x8d,0x6a,0x3a,0x7,0x87,0xff,0xe6,0x77,0xff,0x3e,0xde,0xfd,0xce,0x7b,0xda,0xf3,0x78,0xd5,0x6b,0xae,0xc4,0x75,0xaf,0xbd,0x16,0xff,0xfd,0xff,0xf2,0x19,0xac,0xd6,0x6b,0x0,0xbe,0x9d,0x33,0xa9,0xb2,0x93,0x59,0x89,0x29,0x67,0x74,0xb1,0x93,0x6a,0x3c,0x0,0x79,0x1c,0x5b,0x68,0x6a,0xe1,0x66,0x9b,0xb7,0xa8,0xcf,0xbb,0x5,0xa0,0xd0,0x79,0x82,0x5d,0xd4,0x73,0x0,0x6d,0x77,0xce,0xb6,0xe8,0x46,0xb6,0x1b,0x5b,0x30,0x2a,0xc1,0x62,0x69,0xb3,0x11,0x9d,0x5e,0x2b,0xed,0xf9,0xb3,0x8a,0x4a,0x3d,0xf,0x55,0x2b,0x69,0x4b,0x2d,0xf6,0xd7,0xc9,0x2e,0x50,0xbe,0xe8,0x10,0x11,0x11,0x11,0x11,0x5d,0x2,0xc,0x0,0x89,0x88,0x5e,0x41,0xad,0x65,0x63,0xc1,0x84,0xb5,0xfa,0x5a,0x8b,0xaa,0x54,0x49,0xb9,0xf6,0xb1,0xa8,0x5e,0x83,0x96,0x1e,0xa9,0x54,0x9c,0x3d,0x77,0x1e,0xc3,0x38,0xe8,0xe2,0xa,0x4b,0x10,0x6b,0xdb,0x38,0x2b,0x15,0x59,0xda,0x6a,0x6c,0x9b,0x72,0xe1,0xb0,0x58,0x2e,0xb0,0xe8,0xbb,0x43,0xc7,0x33,0x8c,0x9,0xab,0xd5,0x5a,0x3f,0x1e,0xd2,0x4a,0x59,0xab,0x76,0x7a,0x6a,0x80,0xa3,0xcb,0x48,0x9c,0xf4,0x75,0x2,0xb5,0x62,0x1c,0x13,0xaa,0x97,0x0,0xd,0xce,0x21,0x8f,0x9,0xc1,0xc7,0xd6,0xee,0xab,0x9f,0x88,0x52,0x12,0xbc,0x8f,0xa8,0xc8,0x5a,0x25,0x26,0xb,0x3e,0x86,0xd5,0x5e,0xdb,0xa8,0x2b,0x2d,0xab,0xbe,0x2d,0xe0,0xb0,0x25,0x14,0xb6,0x5,0x19,0xa5,0xc8,0x32,0x9,0xad,0x88,0x3,0x74,0x8e,0x20,0x6a,0xb,0xf1,0x8a,0x6,0x63,0x21,0xc6,0x8d,0x85,0x15,0xb2,0x48,0x42,0xf6,0x1e,0xcb,0x71,0xe,0x8,0xb1,0x6b,0x15,0x6c,0xde,0x7b,0x64,0x6d,0x6d,0x75,0x4e,0x2b,0xf,0xf5,0x79,0xc8,0x6d,0x36,0x9e,0x9c,0xdb,0x71,0x58,0xb7,0x85,0x21,0x41,0x97,0x74,0x38,0xe7,0x65,0x8e,0x9f,0x3e,0x8f,0x36,0xbb,0xd1,0xaa,0xd5,0x2c,0x20,0x2c,0x39,0x63,0xb1,0x94,0xaa,0xba,0xaa,0xd5,0x71,0xc0,0x2c,0x38,0x6c,0x6d,0xca,0xd2,0xa,0xdc,0x2d,0x96,0x1a,0x7a,0xf9,0xb6,0x18,0x26,0x8d,0x43,0xb,0x4a,0x43,0x88,0x18,0xc7,0x41,0x37,0xf5,0x6,0xa4,0x71,0x68,0x55,0x84,0x72,0x7f,0x52,0xd5,0x18,0xbb,0x1e,0xe3,0xb0,0x46,0xdf,0x2f,0x70,0xe3,0xd5,0xa7,0xf1,0xb6,0xb7,0xbe,0xf9,0xd0,0x35,0x70,0xeb,0xcd,0x37,0xe0,0xae,0xdb,0x6f,0xc6,0xdf,0x3c,0xf8,0x98,0x56,0x35,0x4a,0x8b,0xba,0x7,0xda,0xf1,0x77,0xbd,0xb4,0x7a,0x4b,0xc8,0x59,0x51,0x67,0xd7,0x87,0xf7,0xbe,0xcd,0x6e,0xf4,0xda,0x2a,0x6c,0x1b,0x83,0xbd,0xf7,0xd0,0xf,0x46,0xce,0x79,0xb6,0x80,0x46,0xde,0x66,0xdb,0xa3,0x9d,0x6,0x95,0xc5,0xda,0xe3,0x35,0x54,0x6e,0x1b,0x95,0x75,0xd6,0xdf,0xf4,0xdc,0xcb,0xc2,0x19,0x6b,0x97,0xae,0x1a,0xfd,0xd9,0xdf,0xb,0x99,0xe5,0xd8,0x1,0x79,0xe0,0x8b,0xe,0x11,0x11,0x11,0x11,0xd1,0x45,0xc6,0x0,0x90,0x88,0xe8,0x2,0x7c,0xe8,0x0,0x4c,0x9b,0x50,0xad,0x45,0x12,0xb6,0x80,0xc2,0xfb,0x56,0xe5,0x27,0xb,0x24,0x64,0xc6,0x9d,0x2b,0x12,0xc8,0xbd,0x78,0xe6,0x1c,0xfe,0xbb,0xff,0xe1,0x9f,0x3,0x0,0xfa,0x7e,0x1,0x40,0xe6,0xd1,0xb5,0x85,0x14,0x45,0xda,0x86,0xfb,0x7e,0x1,0x1f,0x3b,0xdd,0x5c,0x2b,0x1,0xcd,0x6f,0x7e,0xf8,0xdd,0x78,0xd7,0xdd,0xb7,0x1f,0x3a,0xa6,0x87,0x1f,0x7b,0x2,0xff,0xea,0xf3,0x5f,0x45,0xd0,0x99,0x75,0xce,0x1,0x29,0x67,0x4,0xef,0x91,0xc6,0x51,0x5b,0x54,0xd1,0x2a,0xad,0xec,0xcf,0x39,0x8d,0x18,0xc6,0xb1,0x85,0x35,0x32,0xd3,0xcd,0xc1,0x57,0xdd,0xbe,0x3b,0x9f,0x73,0xe8,0x1d,0x80,0xa8,0x2d,0x9d,0x52,0x11,0xd8,0x2f,0x77,0x74,0x59,0x88,0xb5,0xee,0xd6,0xb6,0x38,0x63,0xbe,0x0,0xc3,0xaa,0xbc,0xac,0xbd,0xb5,0x56,0xa0,0xeb,0x3a,0xd,0x85,0x42,0xab,0x4,0x74,0x3e,0x20,0xd,0xeb,0x56,0x85,0x66,0x73,0x0,0x6d,0x3e,0x9f,0xfe,0x41,0xda,0x54,0xab,0x6e,0x1f,0x76,0xf2,0x38,0x62,0xbf,0x40,0x1e,0x47,0x6d,0xa9,0x95,0x96,0x56,0xa9,0xa0,0x1b,0xf4,0xd3,0x2a,0x6a,0x99,0xaa,0xb,0x9d,0xb,0xf0,0x21,0x60,0x1c,0xd6,0x52,0x71,0x77,0x60,0x6e,0x5d,0x45,0x6d,0x6d,0xc1,0x76,0xde,0x4a,0x19,0xb4,0xca,0x10,0x88,0xfd,0x42,0x2b,0x12,0xfd,0x14,0xfe,0x69,0xc0,0xea,0x9c,0x47,0xe8,0x3c,0x1c,0x74,0x69,0x8c,0xde,0x7f,0xd0,0x5,0x1b,0xfd,0x72,0x7,0xc3,0x6a,0x85,0xaa,0xcf,0x9,0x0,0x3d,0x6f,0xdd,0xc6,0xe2,0x91,0x7e,0xb9,0x23,0xf7,0x1,0x5b,0x50,0x52,0x70,0xea,0xe4,0xe,0xba,0xee,0xf0,0x97,0x6a,0xe7,0x1c,0xae,0xbb,0xe6,0x2a,0xfc,0xcd,0x83,0x3f,0xd3,0x76,0x63,0x2f,0x73,0xff,0xb4,0xa5,0xda,0xaa,0xf6,0x82,0x6e,0x23,0xb6,0x59,0x8c,0x16,0xe8,0xa6,0x71,0xd0,0x65,0x1d,0x12,0x66,0xf6,0xb,0x9,0x76,0xbb,0xbe,0x97,0xa,0xbe,0x18,0xad,0xee,0x15,0xc3,0x7a,0x1f,0xe,0x1e,0x3e,0x78,0x38,0xd8,0x66,0x5f,0x0,0xda,0x26,0x6c,0x5b,0x88,0xe5,0xa3,0x5d,0xbb,0xe,0x72,0x96,0xcd,0xd4,0x25,0x8f,0xb3,0xea,0xc7,0xba,0xb9,0x50,0x44,0x1f,0x27,0xe0,0x50,0x72,0x6a,0x2d,0xe8,0x44,0x44,0x44,0x44,0x44,0x74,0x71,0x31,0x0,0x24,0x22,0xba,0x80,0x92,0x47,0xfd,0x9d,0x2e,0x2a,0x28,0xb2,0x7d,0xd6,0x5a,0x5b,0xb3,0x2e,0x89,0xd8,0xd8,0x66,0x2a,0x65,0x79,0x12,0x7c,0xf5,0x4b,0xec,0xaf,0x7,0x59,0x92,0x1,0x9,0x97,0x56,0xe3,0xa,0x21,0x46,0x9d,0x8b,0x26,0x15,0x67,0xe3,0x6a,0x5,0xef,0x65,0x4e,0x5e,0x1e,0x53,0xab,0x2,0x3b,0x4a,0xce,0x19,0x63,0x2e,0x18,0x52,0x96,0xf0,0x11,0x0,0xe0,0xb0,0xca,0x52,0x5d,0xb6,0x5e,0x4b,0x8,0x66,0xd5,0x85,0x56,0x5,0x26,0xb,0x2b,0x80,0x34,0xca,0x82,0x88,0x8c,0x4,0xe7,0x1d,0x6a,0x96,0xaa,0x44,0xe7,0x3,0x50,0x8b,0x6c,0xbe,0xd5,0xed,0xb5,0x40,0x6e,0xad,0x9c,0xce,0x7b,0x14,0xfd,0x5c,0xb,0x44,0x43,0xd7,0x69,0x30,0xe7,0x66,0xd5,0x86,0x56,0x65,0x26,0xf7,0x19,0xa3,0xd7,0x20,0x11,0x88,0xb1,0xd3,0x5,0x24,0x52,0xff,0x65,0xa1,0x5b,0xe8,0x64,0x7e,0xa0,0xf7,0xae,0x55,0x96,0x49,0x18,0x27,0x73,0xfb,0xbc,0x56,0xd5,0x5,0xdd,0x22,0x9b,0xd3,0x88,0x4e,0x43,0x2b,0x6b,0xf7,0x6d,0xdb,0x8d,0xbd,0xd7,0xb0,0xab,0x48,0x9b,0x6e,0x8,0xad,0xbd,0x35,0x6a,0xb5,0x5f,0x2e,0x75,0xa3,0xe2,0xcd,0xda,0x80,0xbd,0x43,0x9b,0x2f,0xd8,0x75,0x7d,0xab,0xa4,0x4,0xa6,0x8d,0xd0,0xed,0xf1,0xea,0xf6,0x60,0x38,0x7,0xaf,0xed,0xc6,0xf2,0xb8,0x7d,0xab,0xa8,0x8c,0x5d,0x8f,0x34,0x8e,0x6d,0xce,0xa2,0x14,0x35,0xca,0x31,0xb6,0x16,0x6a,0xe7,0xe1,0x9c,0x7c,0x7c,0xd0,0x0,0x31,0xc6,0xe,0x70,0xe,0x4f,0x3f,0xf7,0x32,0xf6,0xf7,0x57,0xd8,0xdd,0xdd,0xd9,0xbc,0x2e,0x4b,0xc1,0x2f,0x9e,0x7a,0xae,0xb5,0x12,0xd7,0x52,0x10,0x3b,0x9,0x29,0x7d,0x88,0x70,0xce,0x63,0x18,0x56,0x88,0xa1,0x7,0xbc,0xd7,0x6b,0x20,0x6e,0x5c,0x2f,0xce,0xf9,0xa9,0x5a,0xcf,0xaa,0x10,0x75,0x3b,0xaf,0x5c,0x3f,0x12,0xc,0xf7,0xcb,0x5d,0xa9,0xf4,0xd3,0x70,0x3a,0x76,0x5d,0x9b,0xc7,0xe8,0x35,0x58,0x84,0xb6,0xc7,0xdb,0x62,0x92,0x56,0x39,0x58,0x73,0xb,0x5c,0xad,0x52,0xb6,0xe8,0xf3,0xd5,0xfe,0x4e,0xcd,0x67,0x67,0xfe,0x1d,0xda,0x99,0x43,0x44,0x44,0x44,0x44,0xb4,0x4d,0x3c,0x4f,0x1,0x11,0xd1,0x5,0x5e,0x24,0x43,0xd4,0xc0,0xf,0x1b,0x9b,0x6c,0xdb,0x66,0x5c,0xb,0x8f,0x2c,0x38,0x99,0x2d,0x74,0x40,0xad,0x18,0x87,0x15,0x6a,0xc9,0x28,0xb5,0x22,0x8d,0x23,0xc6,0x61,0x5,0xe7,0x9d,0xcc,0xb8,0xd3,0xa,0xb9,0x79,0xb5,0x1b,0x0,0xad,0xa8,0x2b,0xad,0xaa,0xea,0x28,0x25,0x27,0x78,0xe7,0x10,0x62,0xdf,0xda,0x92,0x65,0x16,0xe1,0xd8,0xc2,0x39,0x19,0xeb,0x27,0xad,0xaf,0xe3,0xb0,0x46,0xc9,0x9,0x49,0xb7,0xe9,0x8e,0xc3,0x5a,0x42,0x28,0xdb,0xfa,0x6a,0x81,0x8c,0x73,0xd2,0xf2,0x5a,0xab,0xb4,0x6d,0x6a,0xbb,0x6b,0x3b,0x1f,0x31,0xc2,0x36,0x5,0x87,0x10,0xdb,0xa2,0xf,0xef,0x43,0xb,0x46,0x3b,0xdd,0xb8,0x6b,0xdb,0x7f,0xbd,0x6,0x65,0x52,0xf1,0x26,0xed,0xc7,0x5d,0xdf,0x23,0x4,0x6b,0xd5,0x75,0x6d,0x21,0x45,0xec,0x16,0x8,0x21,0x22,0x84,0x6e,0x63,0xf6,0x5c,0xbf,0xd8,0x69,0xbf,0x8f,0x5d,0x8f,0xae,0x5f,0xb4,0x16,0x5e,0xaf,0x95,0x83,0xe3,0xb0,0x96,0x6d,0xbf,0x5a,0xb5,0x18,0xbb,0x85,0x84,0x55,0x98,0x5a,0xb4,0xa1,0xe1,0x5b,0xd4,0xca,0x38,0xfb,0xaf,0xf3,0x5e,0x3,0x3f,0x68,0xa8,0x15,0xda,0x79,0xb4,0xc5,0x17,0xfd,0x62,0x89,0xae,0x5f,0x68,0xc0,0x18,0xda,0x71,0xc7,0xd8,0xc1,0xc7,0x28,0x1b,0xa1,0x31,0x6d,0xc9,0xb5,0xea,0x43,0x9,0xb7,0xa4,0x65,0x3c,0x68,0x38,0x67,0x6d,0xdf,0xf3,0x6b,0x20,0xeb,0x66,0x66,0x3b,0x67,0xde,0x7b,0xbc,0x78,0x6e,0x1f,0x5f,0xf9,0xc6,0x77,0x5b,0x28,0x67,0x97,0xc9,0x77,0xef,0x7b,0x10,0xf,0xfc,0xf4,0x49,0x38,0x27,0xf3,0xff,0xe4,0xf9,0x8,0x1b,0x73,0x28,0x2d,0x60,0xb6,0x73,0x64,0x8b,0x55,0xec,0x73,0x42,0x8c,0x2d,0x88,0x96,0xb6,0xe5,0x80,0x18,0x7b,0xdd,0xee,0x1c,0x5b,0x68,0x2c,0x41,0xea,0xa8,0xe7,0xc2,0x6b,0xd0,0x57,0xa6,0x59,0x8a,0xfa,0x3c,0x87,0x28,0x9f,0x63,0x5b,0x87,0xbd,0x86,0xb5,0x16,0xd0,0xc2,0xe6,0xd,0xb6,0x6a,0xce,0x69,0xb9,0x88,0x9d,0xb3,0xda,0x2,0x77,0x22,0x22,0x22,0x22,0x22,0xba,0x98,0x58,0x1,0x48,0x44,0xf4,0xa,0xe6,0xdb,0x69,0xad,0x7d,0xd1,0xaa,0xc2,0x50,0x6b,0xb,0x43,0xe6,0xed,0xb0,0x28,0x40,0x76,0x19,0x7d,0xd7,0xa3,0xe4,0x84,0xa0,0x1b,0x67,0xbb,0x7e,0x81,0x92,0xa4,0x15,0x76,0x1c,0xd6,0xad,0x22,0x4d,0x16,0x33,0x64,0x84,0x92,0x51,0x52,0xd2,0x79,0x75,0xc7,0x2f,0x44,0x68,0x4b,0x39,0x34,0x28,0xcc,0x39,0x6b,0x57,0xe6,0xb4,0x1d,0x77,0x1c,0x56,0x7a,0xfc,0x9b,0xf3,0xeb,0x60,0x21,0x93,0xf,0x48,0xe3,0x1a,0x39,0xa5,0x59,0x70,0x6,0x74,0x5d,0x8f,0xac,0xcb,0x29,0x1c,0xa4,0x3d,0x76,0xa,0xf5,0xa6,0x56,0x52,0xb,0xda,0x2a,0xa4,0xdd,0x35,0x68,0x8b,0x74,0x4e,0x23,0x42,0x8,0x8,0xb1,0x47,0x29,0xab,0xd9,0x72,0x9,0xa9,0x10,0xb4,0xd6,0x65,0x9,0xd1,0xa6,0x90,0x50,0x66,0xd9,0x8d,0xe8,0xb4,0xbd,0xb8,0x5f,0x2c,0xdb,0x31,0xe7,0x94,0xda,0xe3,0xa,0x21,0x62,0x58,0xed,0x49,0x50,0xa5,0xed,0xac,0xde,0x7,0x74,0xbd,0x4,0x4f,0xfd,0x72,0x89,0x92,0xb3,0x9c,0xf7,0x18,0x65,0xb6,0x9e,0xde,0xa7,0xb5,0x2e,0x7b,0xe7,0x30,0xea,0x1c,0x41,0xad,0x7f,0x6c,0xb,0x49,0xd2,0x38,0xa0,0x3a,0xd7,0x2a,0x4,0x65,0x7e,0x5f,0x8f,0x61,0xbd,0x6a,0xe1,0x60,0x29,0x72,0x7e,0x4a,0x4e,0xc8,0x39,0x49,0x10,0xea,0x6d,0x96,0x9d,0x6b,0xcf,0xa7,0x3d,0x57,0xd6,0xee,0x5b,0x8a,0x2c,0x22,0x19,0x47,0x6b,0xfd,0x5e,0xb6,0x90,0xcd,0x69,0xa8,0x68,0x5b,0x73,0x65,0x26,0x5e,0xc4,0xef,0xff,0xc9,0x17,0xf1,0xf4,0x73,0x2f,0xe0,0xed,0x77,0xbd,0x11,0x21,0x78,0xdc,0xff,0xc0,0x43,0xf8,0xe2,0xb7,0x1e,0x44,0x4a,0xa3,0xcc,0xef,0xd3,0xa5,0x2a,0xc5,0xae,0x4f,0xb,0x15,0xe1,0x5a,0x95,0xa4,0x2d,0x18,0x9,0x3a,0xf,0x30,0x8d,0x6b,0x74,0xfd,0xb2,0x5d,0x63,0xf6,0x58,0xab,0x56,0xa4,0xca,0x35,0xef,0x5a,0xe5,0x62,0xd7,0x2f,0xdb,0xb5,0x9e,0x4b,0x6a,0xed,0xc1,0xb6,0x18,0x6,0x70,0x28,0x35,0xb7,0x70,0x5c,0x66,0x5c,0x6a,0xd0,0xa9,0xb7,0x61,0xe7,0x7,0xa5,0x2,0xb3,0x79,0x91,0x6d,0x66,0x62,0xc9,0x70,0xa1,0xe7,0x16,0x60,0x22,0x22,0x22,0x22,0xa2,0x4b,0x80,0x1,0x20,0x11,0xd1,0x5,0xd8,0xdc,0x37,0xb,0x75,0xac,0x32,0xae,0xe6,0x8a,0x18,0xa3,0xb4,0x7f,0x6a,0x25,0x57,0xec,0xfb,0x16,0x36,0x59,0xe8,0x95,0xc6,0x41,0xdb,0x2c,0x25,0xac,0xb1,0x79,0x7c,0x5d,0xef,0x35,0xb8,0x4b,0xa8,0x3,0xda,0x92,0x88,0x9c,0x92,0xcc,0x6c,0xbb,0xc0,0x31,0xb5,0x80,0x29,0x25,0xc8,0xc,0x36,0xdd,0xb0,0xaa,0xa1,0xd4,0x38,0x26,0xd4,0x92,0x74,0x46,0xa1,0x43,0x1,0x5a,0x0,0x33,0xe,0x6b,0x84,0xd0,0xb5,0x2d,0xba,0xce,0x39,0xd,0xc5,0xca,0x46,0xb5,0x56,0xb,0x81,0x9c,0x43,0xc,0x5d,0xb,0xae,0x52,0x1a,0x75,0xe,0x9c,0x2d,0xcb,0xa8,0xf0,0xda,0xaa,0x5b,0xb5,0xe2,0xcb,0x75,0x3d,0x6a,0x29,0xc8,0x69,0x98,0xb6,0x22,0x7b,0xaf,0x95,0x86,0xd2,0x72,0xda,0xf5,0xb,0x69,0xe3,0xed,0x7a,0x0,0xd0,0xf9,0x78,0xd2,0x12,0xec,0x67,0x95,0x61,0x36,0x23,0xae,0xeb,0x7b,0x7b,0xf0,0x18,0xd7,0x2b,0x84,0xae,0x6f,0xe7,0x17,0x40,0x9b,0xa3,0xe7,0xec,0xbe,0x6c,0x69,0x4b,0xd1,0x85,0x25,0x3a,0x3,0xb0,0x68,0xc8,0x17,0x34,0xb0,0xb3,0x4a,0xc5,0x7e,0xb1,0xd0,0x4d,0xb6,0x19,0x3e,0x48,0x65,0x1c,0xaa,0xcc,0x6b,0x5c,0xaf,0xf6,0xa5,0x22,0x4e,0xc3,0x4f,0x59,0x1c,0xa2,0x9b,0x8b,0xb5,0xd5,0x78,0x5e,0x29,0x69,0xd5,0x83,0x52,0x81,0xa7,0x5b,0x73,0x35,0x48,0xb4,0x0,0x32,0x84,0x88,0xd8,0x75,0x6d,0xa9,0xc9,0xb4,0x10,0xc3,0xa1,0xe6,0x4,0xc0,0xa1,0x5f,0x2e,0xb1,0xde,0xdf,0x43,0xbf,0x58,0xe2,0xaf,0xbe,0xfd,0x23,0xfc,0xe5,0xb7,0x1f,0x94,0xb6,0xf3,0x9c,0xda,0xb6,0xdf,0x92,0x33,0x62,0xbf,0x0,0x0,0xac,0x57,0x7b,0xe8,0xba,0x5,0x0,0xad,0x68,0xec,0x17,0x53,0x7b,0xaf,0xce,0xde,0x73,0x2e,0xc0,0x85,0xda,0x8e,0xc3,0x39,0x8f,0x7e,0xb9,0x23,0xb3,0xe,0x65,0xac,0xe5,0x46,0x5,0x67,0xd6,0xf9,0x7e,0xeb,0xd5,0x3e,0xba,0xbe,0x6f,0x15,0x8f,0x45,0xe7,0xa,0xae,0xd7,0xfb,0xe8,0x3a,0xb9,0x1f,0x3b,0x6e,0xa7,0xed,0xd0,0x36,0xcf,0xcf,0xcd,0x16,0xd2,0x38,0x0,0xf0,0x4e,0x8f,0xdf,0x16,0xd7,0x58,0x1b,0x37,0x9b,0x12,0x88,0x88,0x88,0x88,0x88,0x2e,0x15,0x6,0x80,0x44,0x44,0x17,0xe0,0x43,0xd4,0xe5,0xa7,0x36,0xaf,0x4c,0x43,0xa6,0xe0,0x65,0xe6,0x9b,0xb6,0x35,0x7a,0xef,0x91,0x86,0xa1,0x55,0xee,0xd5,0x52,0x37,0x2,0x1f,0xe7,0x64,0x39,0x82,0xb5,0x9f,0xa6,0x51,0x66,0xd8,0x95,0x24,0x1,0x8d,0xcc,0x59,0x93,0x56,0x5e,0xaf,0x5b,0x6a,0x6b,0x39,0x66,0x1a,0x5a,0x45,0xab,0x56,0x5b,0xaf,0xce,0xc3,0x87,0xa8,0x15,0x6f,0x5,0x49,0x97,0x56,0xc8,0x8c,0xbf,0x11,0xe3,0xb0,0x46,0xad,0x80,0xf7,0x32,0x5c,0x2d,0x84,0xae,0x6d,0xa6,0xb5,0xe3,0xb2,0x6a,0x3f,0xa0,0xc2,0x5,0xd7,0xb6,0xbc,0x66,0xa0,0x55,0xd9,0xf9,0xe2,0xa7,0x76,0x57,0x6d,0xf,0xb5,0xd,0xb0,0x16,0x20,0x42,0x3f,0x3e,0x69,0x65,0x1d,0x74,0xb9,0x88,0xbc,0xdd,0x6b,0x3b,0xaa,0xd3,0xf0,0x2f,0x21,0x46,0xf9,0xbc,0x94,0x92,0xb4,0x4,0x77,0x5a,0x65,0xb7,0xe8,0x91,0xd7,0x52,0x5,0x69,0x21,0x69,0xd4,0x50,0xaa,0x64,0x9,0xe8,0x6c,0x81,0xc9,0x62,0xb9,0xdb,0x9e,0x17,0x99,0x51,0x37,0xcd,0xec,0x93,0x85,0x2d,0x1e,0x1,0x51,0x1f,0xaf,0x2c,0x62,0xa9,0xb5,0xca,0x7c,0x45,0x3d,0x96,0x92,0x83,0xcc,0xdd,0xeb,0x17,0x18,0xd6,0xfb,0x8,0xfa,0x79,0xb9,0x24,0xd4,0x5a,0xb1,0x58,0xee,0xc8,0x63,0xd7,0x63,0xb1,0x6e,0x62,0x99,0xfd,0xe7,0x51,0xf4,0xbe,0xac,0x9d,0x58,0xde,0x35,0x9d,0x5f,0xb4,0xf0,0xb8,0x6c,0xb4,0xe,0xcf,0x83,0x43,0xb,0x2f,0x6d,0x7e,0x1f,0x6a,0x41,0x1a,0x6,0xd,0xfc,0x74,0xa9,0xc6,0x38,0xc0,0x41,0xe6,0x18,0xd6,0x5a,0x11,0x96,0x51,0x9f,0x5f,0x89,0xf,0xbb,0x6e,0xd1,0xc2,0x45,0x5b,0x78,0xd2,0x75,0x3d,0xc6,0x71,0x90,0x90,0x71,0x1c,0xe1,0x63,0x87,0x94,0x6,0x59,0x44,0x33,0x9b,0xdb,0x28,0xed,0xbd,0xb5,0x55,0x8a,0x7a,0x6b,0x77,0xd7,0xeb,0xbe,0xd3,0x5,0x36,0xed,0xef,0x85,0x2d,0x14,0xd1,0x50,0xdb,0x2a,0x3c,0xad,0x2,0xd1,0x3b,0x8f,0xe2,0x6c,0x5b,0xf4,0xd4,0x96,0x9c,0xad,0x25,0x59,0xaf,0x87,0x52,0xa6,0x2a,0xc0,0x5a,0xe6,0x33,0x2d,0x89,0x88,0x88,0x88,0x88,0xe8,0xa2,0x7e,0x6f,0xcb,0x53,0x40,0x44,0xf4,0xa,0x74,0x3e,0x99,0xac,0xc0,0xb5,0x3f,0x3a,0xd9,0x2,0xbb,0x11,0xf4,0x0,0x39,0x8f,0x12,0xf4,0xe9,0xac,0xb9,0x34,0x8e,0x52,0xd5,0x57,0x2d,0xc,0xa9,0x6d,0xc6,0x5e,0x1a,0x6,0x69,0x99,0xcd,0x19,0xe3,0x38,0x60,0x1c,0xd7,0x1a,0xee,0x65,0xd,0xba,0x8e,0x79,0x89,0xd6,0x0,0x6a,0x58,0xef,0xc3,0xfb,0xa8,0x2d,0xc9,0x15,0x3e,0x4a,0x7b,0x27,0x6a,0x45,0xd6,0x36,0x50,0x3f,0x9b,0x3,0x37,0xac,0x57,0x6d,0xc3,0xaf,0xcd,0xc4,0xab,0x55,0x16,0x4e,0x58,0x50,0x57,0x6b,0xc5,0x7a,0xb5,0xf,0x0,0xda,0xc6,0x2b,0x3f,0x27,0xf2,0x21,0xe8,0xaf,0x38,0x2d,0xe4,0x88,0x1d,0xfa,0xe5,0xe,0x42,0x8c,0xe8,0xfa,0x5,0x62,0xbf,0x80,0xf7,0x1,0xb1,0x5f,0xe8,0xa6,0x60,0xa9,0xb2,0xb3,0x50,0xc9,0xaa,0xee,0xa0,0xed,0xbd,0x39,0x8f,0x72,0x1b,0xda,0xea,0x2b,0x9b,0x86,0x97,0xc8,0x69,0x44,0xbf,0x5c,0xca,0xe7,0x6b,0x48,0x37,0xe,0x83,0x2c,0xd,0x9,0x11,0x31,0x46,0x99,0x61,0x17,0x42,0x6b,0x2b,0xb5,0xd9,0x80,0xb1,0xef,0xb5,0xc2,0x31,0x6a,0x78,0x38,0xb6,0xf3,0xd0,0xaa,0x4,0x9d,0x43,0xa7,0xf3,0xfc,0x4a,0x4e,0x6d,0xa6,0x1f,0xac,0x32,0xaf,0x5f,0xc0,0xc7,0x88,0x7e,0xb9,0x83,0xae,0x5f,0xa0,0x96,0x69,0xe6,0x63,0x8c,0x1d,0x16,0xcb,0x1d,0x5d,0x7a,0x2,0x54,0xd4,0xd6,0xfe,0xb,0x3d,0x3e,0xab,0x0,0xb5,0xd9,0x7c,0xde,0x4d,0x33,0xf2,0xec,0x18,0xfc,0xec,0xb8,0x6d,0x1b,0x71,0xd4,0x70,0xd2,0x39,0x9d,0x3d,0xa9,0x15,0x88,0x76,0x2d,0x75,0x7d,0x8f,0x6e,0xb1,0x6c,0x8f,0xb9,0xb4,0x45,0x1b,0x3a,0xaf,0x51,0x97,0x9f,0x78,0x5d,0xfa,0xe1,0x9c,0x6f,0x6d,0xc1,0x16,0xce,0xc9,0x22,0x94,0x5e,0x42,0x5a,0xdd,0x5c,0xed,0x9c,0x6f,0x8f,0x21,0x68,0x4b,0xba,0xcd,0xfb,0xb3,0x59,0x8b,0x5e,0xdf,0x17,0x62,0x44,0xb0,0xe7,0xd5,0x4d,0xcb,0x5e,0x6c,0x31,0x8a,0x55,0xfa,0xd9,0x8c,0x43,0x67,0x15,0xa0,0xfa,0xf7,0xc4,0x96,0xb3,0xb4,0xd0,0xf,0xba,0x49,0xbb,0x85,0xa1,0x1d,0x9c,0xb,0x7c,0xcd,0x21,0x22,0x22,0x22,0x22,0xba,0xc8,0x58,0x1,0x48,0x44,0x74,0x1,0xd6,0xc6,0x38,0x5f,0x54,0x60,0x29,0xa0,0xee,0xd9,0x68,0x5b,0x66,0xbd,0x9b,0xb6,0xbf,0x5a,0xd5,0x97,0x8f,0x6e,0x36,0xfb,0xad,0xd7,0xd,0xbf,0x1d,0x80,0x2a,0x95,0x53,0xb3,0x8d,0xb5,0x56,0xd9,0x67,0x9b,0x6f,0xe7,0x8b,0x1f,0x36,0x54,0x5d,0xb0,0xd0,0xf5,0xb2,0x85,0x58,0x97,0x7c,0x78,0x9b,0xc7,0xe6,0x3d,0x4a,0x1e,0x75,0x26,0x60,0x46,0xd7,0x2d,0x5a,0xcb,0x6e,0x2e,0x49,0x3e,0x27,0x4c,0x2f,0xff,0x55,0x67,0xbb,0x85,0x18,0x91,0xd3,0xa8,0xb,0x22,0x3a,0xd,0x64,0x62,0xab,0x6a,0x1b,0xc7,0x35,0xfa,0xae,0x97,0xb9,0x73,0x29,0xc9,0xbc,0xbe,0xd8,0x21,0xa5,0x84,0xaa,0xe7,0xa1,0xd6,0xa,0x97,0x81,0x6e,0xb1,0xd3,0xda,0x6d,0x6b,0xad,0x18,0x73,0x42,0x74,0x11,0xb5,0x24,0xf8,0x28,0xa1,0xe4,0x62,0xe7,0x84,0x9c,0x57,0x6d,0x33,0xed,0x16,0x4b,0xe4,0x24,0xed,0xc1,0x72,0x4e,0x0,0xf8,0xcd,0x5,0x1e,0x31,0x78,0xa4,0x14,0x74,0x4e,0x9e,0xce,0x49,0x74,0x40,0xec,0x16,0x58,0xa7,0x3d,0x44,0xdf,0x21,0xd7,0x11,0x80,0x6f,0x81,0xa5,0x6d,0xee,0xd,0xb1,0x43,0x2a,0x83,0x6e,0x13,0xd6,0x19,0x8c,0xdd,0xa2,0x6d,0xbb,0x95,0xa0,0xd4,0x96,0x38,0x57,0xad,0x72,0xac,0xe8,0x16,0x4b,0x39,0xaf,0xd1,0x16,0x78,0x48,0x6b,0x74,0x8,0x5d,0xab,0x4c,0xf4,0x6d,0xfe,0x9f,0x47,0x1e,0x13,0x76,0x76,0x76,0x90,0x72,0x46,0xbf,0xdc,0x69,0x15,0x97,0x53,0x5,0xa3,0x84,0xa9,0x41,0x43,0xe1,0xa0,0xe7,0xa3,0xcd,0x90,0x6c,0x5b,0x8d,0xa7,0x5f,0x79,0x1c,0xe0,0x75,0xde,0x21,0x20,0x81,0x6c,0xd1,0xf6,0x61,0xbb,0x7f,0x79,0xe,0xbb,0xd6,0xa,0x6e,0x15,0x90,0x15,0x52,0x59,0xba,0x58,0xec,0xca,0xf9,0x9d,0x3d,0xbf,0x16,0xd8,0xf9,0x28,0xe7,0x2a,0x78,0xa7,0x41,0x28,0xa4,0x2d,0xd8,0xaa,0x24,0xf5,0xd8,0x6d,0xb6,0xa0,0x73,0xe,0x29,0x25,0xbd,0x66,0xd2,0x6c,0xf6,0xa4,0x3c,0x4e,0xaf,0x4f,0x59,0x2d,0xb2,0xfd,0xb7,0xe4,0x8c,0x52,0xb,0x42,0x90,0x6b,0x5f,0xaa,0x64,0x25,0x10,0xb7,0xdb,0x83,0x73,0x28,0x25,0x49,0x2b,0x70,0x65,0x25,0x20,0x11,0x11,0x11,0x11,0xd1,0xc5,0xc4,0x0,0x90,0x88,0xe8,0x2,0xa4,0x5,0x78,0xaa,0x74,0x6a,0xed,0x8e,0x6d,0xe3,0xab,0x4,0x19,0x41,0x43,0x3b,0xab,0x8c,0xaa,0xa5,0x20,0x97,0xda,0x16,0x7f,0xd4,0x52,0x75,0xfe,0x9e,0xb4,0x4c,0x76,0x61,0x89,0x9c,0x7,0xd4,0x92,0x91,0xb5,0x8d,0xd8,0x2,0xb0,0x29,0x10,0x3c,0xa6,0x5,0xd8,0x61,0x6a,0xb3,0x75,0x90,0x4d,0xc3,0xb5,0xa2,0x14,0x5d,0xca,0xa0,0xb7,0x97,0x34,0x4c,0xcc,0x79,0xda,0x38,0xc,0x37,0xb5,0xf8,0xb6,0x10,0x50,0x17,0x4f,0x60,0x5e,0x71,0xe6,0x1c,0x96,0x7d,0x8f,0x3b,0x5f,0x7f,0x3,0xde,0x7c,0xc7,0xad,0x78,0xed,0x35,0xaf,0xc1,0x89,0x9d,0x1d,0x84,0xe0,0x31,0x8c,0x23,0xf6,0x57,0x6b,0x3c,0xf9,0xf4,0x73,0xb8,0xff,0xc7,0x8f,0xe1,0x91,0x5f,0x3c,0x8b,0xb3,0xe7,0xcf,0xeb,0x56,0xd7,0xa2,0xf3,0x3,0x2b,0xe2,0x62,0xa9,0x33,0xfb,0xd6,0x1b,0x5b,0x7c,0x73,0x1a,0x71,0xe3,0xb5,0xaf,0xc1,0xeb,0x6f,0x7a,0x6d,0x3b,0xc7,0xb5,0x48,0xfb,0xf2,0x8f,0x7f,0xf6,0xc,0x5e,0x78,0xe9,0xc,0xe0,0x3,0xba,0x4e,0xda,0x55,0x6f,0xb8,0xe6,0xa,0x7c,0xe0,0xde,0xbb,0xf0,0xfa,0x5b,0xae,0xc7,0x72,0xb1,0xc0,0xf9,0xbd,0x7d,0x3c,0xf2,0xd8,0xe3,0xf8,0xea,0xb7,0xef,0xc7,0x63,0x4f,0xbf,0x38,0x6d,0xf4,0xed,0x24,0xfc,0xa,0xb1,0x43,0xf4,0xe,0xf7,0xbc,0xf1,0x56,0xf4,0x5d,0xc4,0x7c,0x59,0xc5,0x73,0x2f,0xed,0xe1,0xa1,0x5f,0x3c,0x5,0x0,0xad,0xc5,0x78,0xb9,0xe8,0xf1,0xab,0xef,0xb8,0x3,0x77,0xdd,0xf9,0x4b,0x38,0x7d,0xea,0x24,0x86,0x61,0xc0,0x13,0x4f,0x3d,0x8b,0x6f,0x7c,0xff,0xc7,0xb8,0xff,0xa1,0x5f,0xa0,0xd4,0x2,0x20,0x0,0x45,0xe6,0xed,0x95,0x9c,0xd1,0xf5,0xb,0xa4,0x61,0x40,0x17,0x16,0xb8,0xf1,0x9a,0xcb,0xf1,0xe6,0xdb,0x6f,0xc1,0xeb,0x6f,0xba,0xe,0x57,0x5c,0x7e,0xa,0x27,0x4e,0x9c,0x80,0x3,0x30,0x8e,0x23,0xf6,0x56,0x3,0x9e,0x78,0xf2,0x69,0x3c,0xf4,0xb3,0xa7,0xf0,0x83,0x87,0x7e,0x81,0xf3,0xfb,0x2b,0x7d,0x2e,0x6c,0xdb,0x70,0xaf,0xa1,0xaf,0x54,0x30,0x26,0xd,0xdd,0x74,0xed,0x34,0x4a,0xc9,0x78,0xcb,0x6d,0x37,0xe0,0xf2,0xd3,0xa7,0xb5,0xaa,0x4e,0xaa,0xc,0xcf,0x9c,0x3d,0x8b,0xfb,0x1f,0x7e,0x42,0xae,0x43,0xd,0xe6,0x6c,0x6e,0x61,0x88,0x1d,0x5e,0x77,0xfd,0xd5,0xb8,0xe6,0xca,0x53,0x8,0xad,0x2,0xd3,0x21,0xd7,0x8a,0xef,0x3e,0xf8,0x33,0xc,0xe3,0x80,0x92,0x13,0xfa,0xe5,0xe,0xae,0xb9,0xfc,0x24,0xde,0x7e,0xe7,0xad,0xb8,0xed,0xd6,0x1b,0x71,0xc5,0xe9,0xcb,0x74,0xae,0xdf,0x1a,0x2f,0xbc,0x74,0x6,0xf,0xfc,0xe4,0xa7,0xf8,0xce,0xf,0x1f,0xc5,0xb,0x67,0xce,0x21,0xe8,0xdc,0xc3,0xa2,0xd5,0xa9,0xb5,0xa2,0x5,0x97,0x76,0x1e,0x2d,0x24,0xb7,0xea,0x44,0x9,0x34,0xbb,0x76,0xcd,0x7b,0xc8,0x82,0x18,0x6b,0x13,0xb6,0x45,0x34,0x63,0x5a,0x6b,0x70,0xee,0xe0,0x43,0x8f,0x3c,0x9c,0xe3,0xb,0xf,0x11,0x11,0x11,0x11,0xd1,0x45,0xc6,0x0,0x90,0x88,0xe8,0x2,0x4a,0x4e,0x6d,0x23,0x6a,0x2e,0x69,0x63,0x7e,0x1b,0x0,0xb8,0xa,0x9d,0x5f,0x56,0x5a,0x3b,0x66,0xd0,0xb6,0x5b,0x40,0x43,0x19,0xe7,0x64,0xe1,0x45,0xbf,0x90,0x30,0xa4,0x64,0x8c,0xe3,0xba,0xcd,0x4d,0x73,0x0,0xa0,0x2d,0xba,0xb2,0xbd,0x57,0xaa,0xbc,0x8e,0xdb,0x2,0x6c,0x9b,0x67,0x4b,0x29,0x5a,0x39,0x66,0xdb,0x5b,0x23,0x86,0xf5,0xaa,0x5,0x2e,0xb2,0x88,0x23,0xc9,0xb2,0xf,0x9d,0x5f,0x57,0x72,0xd6,0xb9,0x70,0xeb,0x76,0xdf,0xfd,0x72,0x57,0x1e,0x17,0xa4,0x1a,0xef,0xf4,0xa9,0x5d,0x7c,0xec,0xfd,0xef,0xc0,0xbd,0xf7,0xbc,0x19,0x97,0x9f,0x3e,0x35,0x55,0xe0,0x1d,0xf0,0x86,0xd7,0xdd,0x8c,0xf7,0xbd,0xfb,0x6d,0x78,0xe1,0xc5,0x97,0xf1,0x95,0x6f,0xde,0x8f,0xbf,0xf8,0xc6,0xfd,0xd8,0xdb,0xdf,0x6f,0x73,0xf,0x51,0xab,0x56,0xf4,0xc9,0x9f,0xdb,0xb6,0x5c,0xe7,0x70,0xc7,0x6d,0xb7,0xe0,0xbf,0xf8,0x7,0x1f,0xdb,0xb8,0xbd,0x5a,0x2b,0xfe,0x8f,0x7f,0xf5,0x39,0xfc,0xcd,0xbe,0x2e,0xf6,0x8,0xe,0x1f,0xbc,0xf7,0x2e,0x7c,0xec,0x83,0xef,0xc5,0xc9,0x13,0xbb,0xed,0xe3,0xae,0x6,0x70,0xeb,0xcd,0x37,0xe0,0xbd,0xef,0xba,0x7,0xdf,0xf9,0xde,0xf,0xf1,0xd9,0x7f,0xff,0x35,0x9c,0xdf,0x1f,0xa4,0xd5,0x55,0xab,0xf0,0x4e,0x9f,0x58,0xe0,0x77,0x7f,0xeb,0x13,0xd8,0x59,0x2e,0x37,0xee,0xe3,0x1b,0xdf,0xb9,0xf,0xf,0xff,0xe2,0x69,0x9,0xad,0x6a,0xc1,0x2d,0xd7,0x5e,0x81,0xdf,0xfd,0x7,0x1f,0xc1,0x75,0xd7,0x5e,0xbd,0xf1,0x38,0xaf,0xbf,0xee,0x5a,0xbc,0xed,0xad,0x77,0xe2,0xb1,0x9f,0x3f,0x81,0x3f,0xfc,0xfc,0x97,0xf0,0xc8,0x13,0xcf,0x4e,0xcf,0x15,0x2a,0xbc,0x8f,0xf8,0xa5,0x5b,0x6e,0xc0,0x27,0x3f,0xf4,0x6e,0xbc,0xe1,0x75,0x37,0x61,0xb1,0xe8,0x8f,0x3d,0x4f,0xb7,0xdd,0x7a,0x23,0xde,0xf7,0xcb,0x15,0xcf,0xbf,0xf8,0x32,0xbe,0xfc,0xf5,0xef,0xe1,0x4b,0xdf,0x7a,0x0,0x43,0xca,0x6d,0x7b,0x71,0x88,0x1d,0x86,0xf5,0xbe,0xcc,0x53,0x8c,0xb2,0x68,0xc5,0x82,0xd8,0x52,0xa,0x7e,0xf3,0xe3,0xbf,0x8a,0x9b,0x6e,0x78,0xed,0xc6,0x6d,0x3e,0xfb,0xfc,0x8b,0xf8,0xc1,0x3f,0xfb,0x8c,0x54,0xd5,0xd9,0x42,0x12,0xbd,0x26,0x6a,0x4e,0xf8,0xe0,0x7b,0xee,0xc1,0x2f,0xbf,0xf3,0xad,0x1b,0x9f,0xb3,0x5e,0xf,0xf8,0xe9,0xff,0xfc,0x19,0xbc,0x78,0x6,0x78,0xcd,0xe9,0x93,0xf8,0xd4,0x87,0xdf,0x8d,0xbb,0xdf,0x7c,0x7,0x96,0xcb,0xc5,0xa1,0x63,0xbe,0xe9,0xc6,0xeb,0x71,0xf7,0x5b,0xde,0x88,0x8f,0x7d,0xe8,0xc,0xfe,0x9f,0x2f,0x7e,0xd,0x5f,0xfa,0xd6,0xf,0x91,0x72,0xd1,0xb9,0x94,0xb9,0xcd,0x2a,0xac,0xe8,0x30,0xae,0xf7,0xe5,0xfa,0x1a,0x74,0xb6,0x64,0xc9,0x6d,0xe6,0x1f,0x1c,0x74,0x9e,0x65,0x69,0x6d,0xd2,0x56,0x45,0x58,0x31,0x2d,0x7a,0xb1,0xeb,0xba,0x64,0xb9,0x2e,0xe7,0xf3,0x6,0x89,0x88,0x88,0x88,0x88,0xe8,0x3f,0x1d,0x3,0x40,0x22,0xa2,0xb,0xf0,0xa1,0x9b,0x2d,0x43,0xa8,0x28,0xb5,0xb6,0x5,0x1f,0xf6,0xab,0xb4,0xb9,0x67,0x5,0x1e,0x15,0x69,0xac,0x6d,0xa3,0xae,0xf3,0x1e,0x3e,0x58,0xb5,0x97,0x6f,0x21,0x9b,0x6d,0x6e,0xad,0xda,0x2,0x9,0xad,0x24,0xcc,0x59,0x16,0x34,0x54,0x54,0xe0,0x98,0x0,0x10,0x0,0x52,0x1a,0xa5,0xaa,0x70,0xbd,0x42,0xd4,0xd,0xb9,0xab,0xfd,0x73,0xc8,0x29,0x21,0x8d,0x3,0xc6,0xf5,0xa,0x3e,0xc6,0xb6,0x51,0xd7,0x5a,0x47,0x73,0x4e,0x3a,0x63,0x6f,0xb7,0x55,0x18,0xca,0x2c,0x41,0x99,0xf7,0x77,0xcf,0x1d,0xb7,0xe0,0x1f,0xff,0xe6,0xc7,0x70,0xf5,0x55,0xaf,0xc1,0x31,0x79,0xd6,0x6,0xe7,0x1c,0x5e,0x73,0xe5,0xe5,0xf8,0x7b,0x1f,0x7d,0x1f,0xee,0xb8,0xed,0x26,0xfc,0xeb,0xcf,0x7d,0x11,0xcf,0xbd,0x74,0xe,0xce,0x4b,0x20,0x15,0x2d,0xfc,0x4b,0xa3,0x2e,0xc0,0xf0,0x8,0xe1,0xb8,0x16,0x4f,0xd7,0x2a,0x14,0x1,0xe0,0x93,0x1f,0x78,0x1b,0x3e,0xfc,0xfe,0x77,0xc9,0xc7,0x1f,0x61,0xb9,0xe8,0xf1,0xde,0x77,0xdd,0x83,0x5b,0x6e,0xba,0xe,0x9f,0xf9,0xec,0x7f,0xc0,0xcf,0x9f,0x79,0xa9,0x2d,0xd,0xf1,0xb3,0x4d,0xc0,0x7,0xef,0x23,0x76,0x3d,0x62,0xd7,0xe3,0xd,0xd7,0x9d,0xc6,0xef,0xfd,0xf6,0x6f,0xe0,0xd4,0xc9,0xdd,0x23,0x6f,0x3f,0x4,0x8f,0xd7,0xdf,0x7a,0x23,0xfe,0xdb,0x7f,0xfa,0x69,0x7c,0xee,0xcf,0xbe,0x82,0xaf,0x7c,0xef,0xa1,0xb6,0xc1,0xf8,0xa3,0xef,0x79,0x2b,0x7e,0xfd,0x3,0xf7,0x62,0x77,0x67,0xf9,0xaa,0xae,0x23,0xe7,0x1c,0xae,0xd2,0xf3,0xf4,0xfa,0x9b,0xaf,0xc3,0xbf,0xfc,0xe3,0x2f,0xe2,0x5c,0xd6,0xad,0xc3,0x80,0xce,0x23,0xcc,0xa8,0xb5,0xa0,0xef,0x17,0x70,0xba,0x2c,0x4,0x69,0x3c,0x32,0xa,0x73,0x90,0xb6,0xe5,0x10,0x7a,0xd4,0x92,0x31,0xe,0xb2,0xe8,0x23,0xc6,0x5e,0x2b,0xc,0xcb,0x51,0x7,0x81,0x10,0x3a,0xdc,0x75,0xfb,0x55,0xf8,0x47,0x9f,0xfc,0x55,0x5c,0x71,0xf9,0xe9,0x57,0x3c,0xee,0x2b,0x4e,0x5f,0x86,0xdf,0xfe,0xd4,0x47,0xf0,0xba,0x9b,0xaf,0xc7,0xff,0xf9,0x47,0xff,0x1e,0x9,0x68,0x73,0x21,0x93,0x1e,0xaf,0x73,0x72,0xae,0x7d,0x90,0x30,0xd3,0x25,0xaf,0x95,0xac,0xf2,0x18,0xc6,0x61,0xdd,0xfe,0xae,0xc8,0xa5,0x5e,0x64,0x3b,0x75,0x9e,0x5f,0x3,0x55,0xb7,0x6d,0x47,0x54,0x8c,0x7c,0xe1,0x21,0x22,0x22,0x22,0x22,0xba,0xd8,0xdf,0xdb,0xf2,0x14,0x10,0x11,0x5d,0xe0,0x45,0x32,0xc4,0x56,0xa1,0xe4,0x9c,0xcc,0x54,0xf3,0x5e,0x66,0xa7,0x55,0xd4,0xb6,0xd8,0x40,0xe6,0xf9,0xc9,0xdc,0x3f,0x68,0xb,0xb0,0xd7,0x20,0xab,0xe4,0x4,0x7,0x99,0x99,0x96,0x86,0x1,0x15,0x40,0x1a,0x65,0x59,0x48,0xcd,0x59,0x42,0xb9,0x9c,0x31,0xac,0xf7,0x31,0xc,0x6b,0xac,0x57,0xfb,0xc8,0x29,0x1,0x38,0x3a,0x81,0x2b,0x5a,0xc9,0x27,0x9f,0x27,0x4b,0x46,0xc6,0x61,0xad,0x15,0x7f,0x23,0x86,0x95,0x54,0x64,0x8d,0xeb,0x15,0xd6,0xab,0x7d,0xec,0xef,0x9d,0x45,0x1a,0x6,0x59,0x46,0xa2,0xe1,0x65,0x1e,0x7,0xac,0xf7,0xcf,0x63,0xbd,0xda,0x93,0xe3,0x40,0xc5,0x47,0xde,0xf3,0x56,0xfc,0xd7,0xbf,0xf7,0x5b,0xb8,0xe6,0xea,0x57,0x17,0xfe,0xcd,0x39,0x7,0xdc,0xf1,0x86,0x5b,0xf0,0x5f,0xfd,0xe3,0xdf,0xc0,0xe5,0x97,0x9d,0x94,0x39,0x7b,0x3a,0xff,0xcf,0x7b,0x9d,0x2f,0xa7,0xdb,0x69,0x43,0x8c,0x8,0xfe,0xa8,0x45,0xf,0x15,0x21,0x4,0xf4,0x8b,0x25,0x3e,0xf4,0xae,0x37,0xe3,0xc3,0xef,0xbf,0xf7,0xd8,0xf0,0x6f,0xee,0x86,0xeb,0xae,0xc5,0x3f,0xfa,0xe4,0x7,0x74,0xb9,0x4a,0x69,0x1,0xdf,0x51,0xc1,0x99,0x85,0x8b,0xd7,0x5e,0x71,0x2,0xff,0xe5,0x6f,0x7d,0xe2,0xd8,0xf0,0x6f,0xee,0xc4,0xee,0x2e,0x3e,0xf5,0xd1,0xf7,0xe3,0x9a,0x2b,0x4e,0x21,0x84,0x80,0x8f,0xbd,0xf7,0xad,0xf8,0x8d,0xf,0xbf,0xe7,0x55,0x87,0x7f,0x9b,0xf7,0x1f,0x70,0xd7,0x9d,0xbf,0x84,0xdf,0xfb,0xf4,0x87,0x70,0xea,0xb2,0xd3,0xba,0xbc,0xa4,0xd3,0x45,0x1d,0x68,0x33,0x6,0xbd,0xf7,0x58,0xed,0x9f,0x97,0x10,0xed,0x88,0xeb,0xe0,0xe0,0x7c,0xc6,0x9d,0x13,0x27,0xa5,0xea,0xce,0x4d,0x8b,0x3d,0x8e,0xf2,0xc6,0xd7,0x5d,0x87,0xdf,0xfd,0xf4,0x47,0x5e,0x55,0xf8,0x37,0xbf,0xaf,0x77,0xdc,0xf3,0x66,0xfc,0xce,0x27,0xde,0x87,0xe5,0xce,0x8e,0x6c,0xba,0xd6,0x79,0x83,0xce,0x7b,0x99,0x69,0xa9,0xed,0xbc,0x39,0x8d,0xda,0x16,0x1c,0x1,0xd4,0x56,0xe1,0x67,0xcb,0x40,0x42,0xd0,0x5,0x22,0xba,0xcd,0x18,0x7a,0x7d,0xc8,0xf1,0x56,0xa0,0x32,0xfc,0x23,0x22,0x22,0x22,0x22,0xba,0x24,0xdf,0xdb,0xf2,0x14,0x10,0x11,0x1d,0x2f,0xd,0xfb,0x6d,0x76,0x9e,0x54,0x0,0x96,0x36,0xaf,0xcc,0xc2,0xd,0xa9,0x64,0x72,0x12,0xd4,0xd8,0x32,0x10,0x0,0xb6,0xf1,0xb7,0x94,0xaa,0x2d,0xb9,0xd3,0x8c,0x40,0x6f,0x5b,0x12,0xf4,0x76,0x0,0x9b,0x49,0x17,0x5a,0x78,0x57,0xf2,0xd1,0x61,0x48,0x29,0x5,0xeb,0xfd,0x3d,0xc,0xab,0x3d,0x38,0x1f,0x30,0x8e,0x6b,0xa9,0xfa,0x1b,0xd6,0xd2,0x2,0x8a,0x8a,0xd5,0xfe,0x79,0x94,0x9c,0xb1,0x77,0xee,0x65,0xc,0xab,0x7d,0xec,0xef,0x9d,0xc3,0x6a,0xff,0x3c,0xd6,0xfb,0xe7,0x90,0xc6,0x1,0xeb,0xd5,0x1e,0x9c,0xb6,0xcc,0xd6,0x5a,0xf0,0xde,0x7b,0xee,0xc0,0x3f,0xfc,0xd4,0x47,0xb1,0x58,0xf4,0x47,0xde,0x67,0xad,0xc0,0x30,0x26,0xac,0x56,0x6b,0xc,0xe3,0x38,0x5b,0x88,0xb2,0xe9,0x86,0xeb,0xae,0xc6,0x3f,0xf9,0xe4,0xfb,0x65,0x9b,0x6e,0xd7,0xa3,0xeb,0x7a,0xf8,0x10,0xd0,0x69,0x28,0x27,0x1b,0x80,0x77,0x0,0x7f,0xf4,0x97,0x9f,0x52,0x81,0x5b,0xae,0xbd,0x1c,0x9f,0xf8,0xe0,0xbb,0x65,0xb9,0xca,0xab,0x79,0x8e,0x52,0xc6,0x5f,0x7d,0xf3,0x7e,0x74,0x7d,0xdf,0xb6,0xd8,0x4a,0x66,0x76,0xc4,0x31,0x3a,0xe0,0xb2,0x93,0xbb,0xf8,0xcf,0x3f,0xf5,0x6b,0xb8,0xec,0xd4,0x89,0x57,0x7d,0x1d,0xfc,0xe0,0x47,0xf,0xe1,0x99,0x17,0xcf,0x20,0x84,0xe,0xf7,0xde,0x73,0x27,0x62,0xfc,0x8f,0x2f,0xa0,0x77,0xce,0xe1,0x2d,0x6f,0xbc,0xd,0xef,0x78,0xe3,0x4d,0xe8,0xfb,0xa5,0x54,0xec,0x69,0xb5,0x68,0x5b,0xa2,0xa1,0x41,0x68,0x45,0x45,0x39,0xa2,0x5a,0xb2,0x68,0x85,0x9f,0xcc,0x54,0x4c,0xd0,0x4b,0x52,0xde,0x67,0xdb,0x81,0xf,0x88,0x21,0xe0,0xd3,0x1f,0xff,0x0,0x4e,0xec,0xee,0xb4,0xb7,0xad,0x87,0x11,0x3f,0x7f,0xfc,0x29,0x3c,0xf8,0xd0,0x63,0x78,0xf8,0xd1,0x5f,0xe0,0xa5,0x97,0xcf,0x1c,0xb9,0x7c,0xc6,0x3b,0x87,0xf7,0xdc,0x7b,0x37,0xee,0x7c,0xdd,0x75,0xb3,0xf0,0x4f,0x36,0xa,0x67,0xad,0xe4,0xab,0xba,0x71,0xb8,0x2d,0xf5,0x80,0xd3,0x25,0x2d,0xe,0xce,0xdb,0x1c,0x4d,0xdf,0xda,0xe8,0x4b,0x91,0xe0,0xd9,0x36,0x35,0xcb,0xfd,0x72,0x3,0x30,0x11,0x11,0x11,0x11,0xd1,0xa5,0xc0,0x16,0x60,0x22,0xa2,0xb,0xf0,0xa1,0x9b,0xb2,0xa4,0x2a,0x31,0x9f,0x85,0x2f,0xe,0xe,0x39,0xe7,0x16,0xe8,0x59,0x3b,0x67,0xf1,0x68,0x1b,0x78,0xfb,0xc5,0x4e,0x6b,0x93,0x6c,0x9b,0x84,0x6b,0x45,0x9e,0x85,0x28,0xa8,0x52,0xd5,0x97,0xd2,0x28,0xf3,0xfb,0x2c,0x60,0x3b,0xa6,0xc,0xcf,0xe6,0xbd,0x55,0xd,0x23,0x73,0x1a,0x25,0x84,0xd1,0x50,0x65,0xbd,0xda,0x87,0x73,0xe,0xab,0x61,0xaf,0x55,0x94,0x39,0xa7,0xb,0x18,0xbc,0x9f,0x2,0x9b,0x52,0x10,0xba,0x1e,0x37,0x5e,0x7d,0x1a,0xbf,0xf3,0x9b,0x9f,0x40,0xdf,0x75,0x87,0xee,0x6b,0x7f,0x7f,0x85,0x7,0x1f,0xfe,0x39,0xbe,0xf7,0xc0,0x4f,0xf1,0xf4,0x8b,0x67,0x91,0x72,0xc1,0xa2,0xeb,0x70,0xd5,0xe9,0x1d,0xbc,0xe3,0xae,0xdb,0xf1,0xa6,0x37,0xdc,0x74,0x28,0xc,0xbb,0xf3,0x8e,0xd7,0xe1,0x7d,0xf7,0xdc,0x8e,0xbf,0xfe,0xfe,0x43,0x28,0xba,0x29,0x39,0x17,0x6d,0xcb,0x75,0x1d,0xd6,0xab,0x3d,0x1c,0xf7,0xf3,0xa7,0x45,0xd7,0xe1,0x63,0x1f,0x78,0x67,0x9b,0x4b,0xb7,0xb7,0xbf,0xc2,0x93,0x4f,0x3f,0x8f,0x67,0x9e,0x7f,0x11,0xcb,0xc5,0x2,0x37,0x5f,0x7f,0x35,0xae,0xbc,0xe2,0xf4,0xc6,0xbc,0xbd,0x9f,0x3c,0xf2,0x18,0xbe,0xfd,0xc0,0x63,0x80,0x73,0x48,0xa3,0xcc,0xcf,0x4b,0xc3,0x70,0x64,0xe5,0x5c,0x2d,0x5,0x1f,0x7d,0xef,0xdd,0xb8,0xe9,0xfa,0x6b,0x1,0x48,0x98,0xfa,0xd4,0x33,0xcf,0xe3,0xf1,0xa7,0x9e,0x45,0xca,0x5,0x37,0x5f,0x7f,0x2d,0xae,0xbd,0xe6,0x4a,0xc4,0x59,0xf8,0xf8,0xf2,0x99,0x73,0xf8,0x77,0x5f,0xb9,0x4f,0xc2,0xd5,0x3a,0x1c,0x79,0xdc,0xe3,0x98,0xf0,0xf4,0xb3,0x2f,0xe0,0x89,0xa7,0x9f,0xc3,0xcb,0x67,0xcf,0x21,0x84,0x88,0xcb,0x4e,0x9d,0xc0,0xcd,0xd7,0x5f,0x83,0x6b,0xae,0xba,0xe2,0xc8,0xe7,0xf0,0x7d,0xf7,0xbe,0x5,0x5f,0xbb,0xff,0xa7,0xf0,0x3e,0xa2,0xa2,0xb4,0x96,0xd9,0xde,0x79,0x69,0x9b,0x85,0x43,0xec,0x3a,0xb8,0x23,0xce,0x95,0x73,0x1e,0x31,0x4,0xc,0x69,0x44,0xd7,0xcb,0x96,0x62,0x5b,0x42,0x93,0xd2,0x88,0xa3,0xc2,0xcf,0x10,0xa4,0x65,0x58,0x8e,0x77,0xc4,0xb7,0xef,0xfb,0x31,0xfe,0xe2,0x6b,0xf7,0xe1,0xd9,0x97,0xce,0x49,0x6b,0x7b,0xad,0xd8,0x5d,0x2e,0x71,0xef,0x9b,0x6f,0xc5,0xc7,0x7f,0xed,0x5d,0x87,0x2a,0x1c,0xfb,0xbe,0xc3,0x47,0xde,0x7f,0x2f,0xbe,0xff,0x93,0x9f,0xcb,0xb9,0x1b,0x65,0x53,0xb5,0x2d,0x95,0xf1,0xbe,0xc7,0xb0,0x5e,0xe9,0xf2,0x12,0xb9,0xbe,0x53,0xd2,0xd,0xc8,0x29,0xe9,0xe6,0xe0,0xb1,0x5,0x80,0xb6,0x29,0x5b,0xaa,0x3,0xb5,0xe5,0xfd,0x6f,0x5b,0x7a,0x4a,0x44,0x44,0x44,0x44,0x44,0xaf,0xa,0x3,0x40,0x22,0xa2,0xb,0x28,0x79,0x94,0x79,0x7c,0xfa,0xff,0x52,0xe4,0xe7,0x50,0xab,0x44,0x2c,0x16,0x44,0x59,0xc8,0x67,0x33,0xce,0x4a,0xc9,0x1b,0xdb,0x4e,0x6d,0xb3,0x6b,0x4e,0x9,0x3e,0xf8,0x56,0x25,0x55,0x72,0x96,0x25,0x21,0x45,0x36,0xcb,0x9a,0x10,0x23,0x2e,0x14,0x85,0xc4,0xd8,0xb5,0xa5,0x1e,0x16,0x2,0xa6,0x71,0x90,0xf9,0x77,0x4e,0xaa,0xc2,0x64,0xde,0x5e,0xd4,0x0,0xd0,0x1,0xce,0x4f,0xcb,0x19,0x0,0xe4,0x34,0x62,0xb1,0x58,0xe2,0xb7,0x3f,0xf5,0x51,0x5c,0x71,0xf9,0x65,0x87,0xee,0xe3,0x99,0xe7,0x5e,0xc0,0xef,0x7f,0xee,0x8b,0x78,0xf4,0xa9,0x97,0x10,0x3b,0x99,0x2d,0xe7,0xbd,0x87,0xf3,0x3,0x9e,0x79,0xf1,0x2c,0x7e,0xf8,0xd8,0xb3,0x78,0xeb,0x6d,0xaf,0xc5,0x3f,0xfc,0xf8,0xfb,0xb0,0x33,0xb,0x8b,0x9c,0x73,0xf8,0xc0,0x2f,0xdf,0x8d,0xef,0x3c,0xf8,0x18,0xd6,0x63,0x6e,0x4b,0x2d,0x0,0x79,0xfc,0x7d,0xbf,0x3c,0x36,0xe7,0x79,0xcb,0xed,0x37,0xe3,0xc6,0xeb,0xae,0x46,0x29,0x5,0xf,0xfc,0xe4,0x31,0xfc,0xc9,0x5f,0x7c,0x13,0x4f,0xbf,0x78,0x4e,0x67,0xda,0x39,0xec,0x2c,0x3a,0xbc,0xe3,0x4d,0x37,0xe3,0x23,0xef,0x7f,0x27,0x2e,0x3b,0x75,0x12,0xe7,0xf7,0xf6,0xf1,0x87,0x7f,0xfa,0x65,0x38,0x1f,0xd0,0xf9,0x4e,0x2b,0x2e,0x33,0x7c,0x58,0x1e,0xd9,0x2,0x7c,0xf2,0xe4,0x2e,0xde,0xf2,0xc6,0xdb,0xe0,0x9c,0xc3,0xf3,0x2f,0xbe,0x8c,0x3f,0xfe,0xb3,0x2f,0xe3,0xbe,0x87,0x9e,0x68,0x5b,0x6d,0x73,0x4a,0x78,0xe3,0x2d,0xd7,0xe2,0xe3,0xbf,0xf6,0x4e,0xdc,0x7a,0xd3,0xf5,0xc8,0xb9,0xe0,0xb,0x5f,0xfc,0x2a,0x9e,0x79,0xfe,0x45,0xa9,0xd0,0xb4,0x56,0x55,0xb5,0x5a,0xf,0xf8,0x9b,0xfb,0x1e,0xc4,0x97,0xbe,0xf9,0x0,0x9e,0x7d,0x79,0x1f,0xa5,0x64,0xc4,0x4e,0x9e,0x9b,0xc5,0x72,0x17,0xc8,0x23,0x3e,0x74,0xef,0x9b,0xf0,0xa1,0x5f,0x79,0xfb,0xa1,0x76,0xe6,0xab,0xaf,0xba,0x12,0x37,0x5e,0x73,0x5,0x7e,0xfe,0xd4,0xb,0x70,0xce,0x36,0x4c,0xcb,0x35,0x14,0x63,0x7,0xe7,0x3,0x4a,0x49,0xc7,0xce,0x82,0x74,0x21,0xc0,0xa5,0x84,0xd8,0xd9,0x12,0x91,0xc,0x87,0x69,0x46,0xdf,0x71,0xce,0x9d,0xdf,0xc7,0x1f,0xfd,0xe9,0x5f,0xe1,0xfe,0x47,0x9e,0xd4,0x8a,0x51,0x89,0x4a,0x53,0x1a,0xb1,0xbf,0x5e,0xe3,0x4b,0xdf,0x7a,0x0,0x67,0xcf,0x9e,0xc3,0x3f,0xf9,0xf4,0x47,0x75,0x8b,0xf2,0xe4,0x96,0x9b,0xaf,0xc7,0xd,0xd7,0x5c,0x89,0x5f,0x3c,0xfd,0x3c,0x9c,0xf,0x12,0x4d,0xd6,0x8a,0x94,0x24,0x7c,0xf4,0x7e,0x33,0x70,0x46,0x95,0xed,0xd9,0xd5,0xf9,0x56,0xe9,0x8,0xab,0x74,0xac,0xb2,0xbc,0x46,0x16,0xe8,0x40,0xe6,0x1e,0x86,0x5,0x90,0x56,0x7c,0xe1,0x21,0x22,0x22,0x22,0x22,0xba,0xc8,0xd8,0x2,0x4c,0x44,0xf4,0x4a,0xaa,0x6d,0x2e,0x45,0x6b,0x55,0xac,0x35,0x6b,0x6c,0x52,0xe1,0xbc,0xcc,0x3f,0xab,0xb5,0x58,0x2a,0x8,0xef,0x65,0x5e,0x60,0xce,0x49,0x6e,0xa2,0x54,0xd,0xdf,0x74,0x26,0x5e,0x94,0x4d,0xbd,0xe3,0xb0,0x96,0xb0,0xe,0x4e,0x17,0x74,0x24,0xdd,0x1a,0x9c,0x50,0x8f,0x79,0x89,0xf6,0x21,0xca,0x8c,0xbd,0xd8,0xe9,0x72,0x91,0x0,0x6b,0x25,0xf6,0xda,0x12,0xbc,0xda,0x3f,0x8f,0xac,0x73,0x2,0x7d,0x8,0xe8,0x16,0xcb,0xb6,0x71,0xb6,0x16,0x99,0x93,0xb7,0x73,0xe2,0x14,0x6e,0xba,0xf6,0x72,0xdc,0xfd,0x96,0x37,0x1e,0xba,0x8f,0x97,0xcf,0x9c,0xc3,0xff,0xfe,0xaf,0x3f,0x8f,0x9f,0x3e,0xf9,0x62,0x9b,0x4f,0xe7,0xbd,0xdc,0x97,0x54,0xe,0x76,0xc8,0x69,0xc4,0x7d,0x3f,0x7d,0x6,0x7f,0xf2,0xe7,0xdf,0x3c,0xd4,0x72,0x7a,0xd5,0x15,0x97,0xe1,0x75,0x37,0x4a,0x95,0x5d,0xa7,0xe1,0x9f,0x6d,0x4a,0xae,0xba,0xa9,0xf7,0x20,0xe7,0x1c,0xee,0x79,0xcb,0xed,0x0,0x80,0xef,0xdc,0xff,0x13,0xfc,0xc1,0x17,0xbe,0x8e,0x67,0x5e,0xde,0xd3,0x45,0x2a,0x11,0xde,0x7b,0x9c,0xdb,0xdb,0xc7,0x5f,0x7e,0xfb,0x47,0xf8,0x1f,0xff,0xf9,0x67,0xf1,0xc8,0x63,0x4f,0xe0,0xaf,0xbf,0xf9,0x7d,0x3c,0xfd,0xc2,0x59,0x9d,0x85,0x38,0x4e,0x9b,0x86,0x35,0x64,0x3a,0xe8,0xf6,0xd7,0xdf,0x82,0xe5,0x72,0x81,0xa7,0x9f,0x7b,0x11,0xff,0xdb,0xef,0x7f,0x1,0xf7,0x3f,0xf2,0x34,0x5c,0x8,0xf0,0x31,0xa0,0x42,0x5a,0x6a,0x1f,0x78,0xf4,0x49,0xfc,0x4f,0xff,0xd7,0xbf,0xc1,0x5f,0x7e,0xed,0xbb,0x78,0xf4,0x67,0x8f,0xe3,0x1b,0xf7,0xff,0x54,0xc2,0x2e,0x9d,0xef,0x68,0xbd,0xb6,0x3f,0x7f,0xfc,0x29,0xfc,0xaf,0x9f,0xf9,0xb7,0xf8,0x83,0x2f,0x7c,0x1d,0xcf,0x9f,0x5b,0xcb,0xfc,0x3d,0x9d,0x7b,0xe8,0x9c,0x47,0xc9,0x19,0xc5,0x5,0xfc,0xbb,0xbf,0xbe,0xf,0xf,0x3d,0xfa,0x8b,0x43,0xc7,0xd2,0xc5,0x88,0x5b,0xae,0xbf,0x1a,0xa1,0xeb,0xda,0x7c,0x49,0xd9,0xda,0x9c,0xda,0x35,0x14,0x42,0x3c,0xa6,0x2a,0xae,0xb6,0x36,0x6b,0xb9,0xc6,0x1c,0xc6,0x61,0x90,0x4a,0xd2,0xf1,0xf8,0x39,0x7a,0x67,0xce,0x9e,0xc3,0xbf,0xf8,0xec,0x9f,0xe3,0xfb,0xf,0x3d,0x2e,0x8b,0x6a,0x66,0x33,0x2c,0xa5,0xe5,0x5a,0xc2,0xea,0xef,0xfe,0xe4,0x71,0xfc,0xe0,0x47,0x8f,0x1c,0xfa,0xfc,0x45,0xdf,0xe3,0x8e,0x5b,0xaf,0x97,0xa,0xc4,0xd8,0xa1,0x16,0x6d,0xdd,0xad,0xf2,0xfc,0x5a,0xb,0xbb,0x55,0xa7,0xca,0x5c,0x4c,0xfd,0x85,0x69,0x19,0x4e,0x88,0xb1,0xcd,0xff,0x9b,0x2f,0xd9,0xa9,0x69,0x8f,0xaf,0x37,0x44,0x44,0x44,0x44,0x44,0x97,0x0,0x2b,0x0,0x89,0x88,0xfe,0x36,0xea,0xac,0x2,0xd0,0x42,0x8e,0x8,0x5d,0x68,0x23,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x5a,0x11,0x75,0x7e,0x5f,0x88,0x51,0x36,0xee,0x6a,0x9b,0xa3,0x2d,0xbb,0x28,0x25,0x4f,0x3b,0x3d,0xb4,0x62,0x2f,0x84,0x28,0x9b,0x7a,0x35,0xdc,0xb2,0xaa,0x29,0xa7,0xb7,0x33,0xcd,0x9,0x3c,0x7c,0x10,0xb2,0x31,0xb5,0xc2,0xc5,0xe,0x25,0x4,0x8c,0xe3,0x20,0xf7,0x3d,0x4c,0x2d,0xaa,0x21,0xc6,0x16,0xca,0x94,0x9c,0xd1,0x2d,0x96,0x40,0xa9,0x38,0x71,0xd9,0x15,0x2d,0xc8,0xfc,0xd0,0xaf,0xdc,0x8b,0xee,0x40,0xeb,0x6f,0xad,0x15,0xff,0xe1,0x2b,0xdf,0xc1,0xd3,0x2f,0x9c,0xc1,0x62,0x79,0x42,0xb7,0x5,0xeb,0xf6,0xe3,0x18,0x51,0x53,0x9a,0x5a,0x38,0x1,0x7c,0xf3,0x81,0x47,0xf1,0xee,0x7b,0x6e,0xc7,0xcd,0x37,0x5c,0xdb,0x6e,0xc3,0x7b,0x8f,0x77,0xdf,0x75,0x1b,0x7e,0xf8,0xf0,0xcf,0xd1,0xf5,0x4b,0xa9,0xa,0xb,0x6e,0x5a,0xaa,0x72,0xcc,0xc,0x40,0xe7,0x1c,0x7e,0xfe,0xc4,0xd3,0xf8,0xc3,0x2f,0x7c,0xd,0x43,0xca,0xed,0xdc,0x15,0x6b,0xb5,0x76,0x1e,0xa1,0xeb,0xf0,0xc2,0xd9,0x7d,0xfc,0xb3,0x7f,0xf1,0xc7,0xf2,0x39,0x5e,0x2a,0x1b,0x65,0xc9,0x48,0x94,0x25,0x14,0x7e,0x71,0xe4,0x1c,0x3c,0xef,0x1d,0xf6,0x56,0x3,0xfe,0xe0,0x4f,0xbe,0x84,0xe7,0x5f,0x3e,0x87,0x10,0x23,0xc6,0x61,0x8d,0x34,0x8e,0x2d,0x98,0xaa,0x90,0x6a,0xb4,0x3f,0xfc,0xb3,0xaf,0x62,0x67,0xb1,0x90,0x2a,0xc6,0x71,0x40,0xbf,0xdc,0x41,0x1e,0x7,0xd4,0x5a,0xf1,0xfd,0x1f,0xfe,0x4,0xbf,0xff,0xf9,0x2f,0xe3,0xfc,0x4a,0x3e,0xcf,0x5a,0xbb,0x4b,0x95,0x59,0x7e,0xa8,0x15,0x25,0x67,0x84,0xd8,0x21,0xc4,0x88,0xef,0xfc,0xe0,0x11,0xdc,0x71,0xdb,0xcd,0x87,0x1e,0xeb,0xa9,0x13,0x3b,0x12,0xa8,0x6,0x59,0xe0,0x51,0xa7,0x27,0x1,0x69,0x1c,0x34,0x7c,0x3d,0xa2,0x95,0xb9,0xda,0x7c,0x49,0xb,0xda,0x3c,0x96,0x3b,0xbb,0xd2,0xfe,0xab,0x73,0x1d,0xf,0x1a,0xc7,0x84,0xff,0xfb,0xf3,0x5f,0xc6,0x23,0x8f,0x3f,0x8b,0x5a,0xb,0x4a,0x29,0x53,0x75,0x28,0x64,0x6,0xa5,0x54,0xb2,0xca,0x35,0xfb,0xf5,0xef,0xfe,0x8,0x77,0xdf,0xf9,0x6,0xf8,0x3,0xcf,0xd5,0xcd,0x37,0x5c,0x8b,0x10,0x7f,0x84,0x34,0xe,0xb2,0x81,0x7a,0x44,0xdb,0xe8,0x1b,0xfb,0x5,0xf2,0xfe,0x1e,0xa0,0xed,0xcb,0x39,0x25,0xb8,0xe0,0x91,0x87,0x61,0x3a,0x2f,0x25,0xcb,0x35,0x1f,0x22,0x52,0x59,0xb7,0xc7,0x68,0xb3,0x35,0xe1,0xc2,0x31,0x5b,0xa2,0x89,0x88,0x88,0x88,0x88,0xe8,0x3f,0x16,0x2b,0x0,0x89,0x88,0x2e,0xf4,0x22,0xa9,0x5b,0x4b,0x1,0x2d,0xee,0xf3,0x52,0x1,0x26,0x5b,0x58,0x43,0xab,0x6e,0xb2,0xd9,0x66,0xc3,0x7a,0x25,0xad,0xb7,0x5a,0xd9,0x64,0x21,0x94,0xd7,0xcd,0xa7,0xed,0xb6,0x34,0xb8,0x29,0xa5,0xe8,0x12,0x87,0x29,0xb4,0x9,0xba,0x34,0xe3,0xb8,0x45,0x1b,0xce,0xc9,0x82,0x88,0xd8,0xf5,0xd2,0x36,0xe9,0x64,0xd9,0x42,0x4e,0x53,0x3b,0xb0,0xf7,0x5e,0x3,0xa8,0x88,0xaa,0x5b,0x59,0xbd,0xf3,0x58,0xee,0x9e,0x40,0xce,0x23,0x96,0xbb,0x27,0xb0,0xe8,0x7b,0xdc,0xf9,0xa6,0xdb,0xf,0xdd,0xfe,0x8b,0x2f,0x9f,0xc5,0xd7,0xef,0x7b,0x8,0x5d,0xbf,0x4,0x50,0xe1,0x43,0x44,0x8c,0xb2,0xc4,0x43,0x5a,0x96,0xa1,0xad,0xbc,0x8b,0x56,0x7d,0x76,0xdf,0x8f,0x1e,0x3d,0x74,0x3b,0x37,0x5c,0x77,0x35,0x76,0x77,0x4f,0xb4,0x73,0x93,0x73,0x46,0x8,0xb2,0xa1,0xd6,0x1d,0xd3,0xe0,0x9c,0x73,0xc1,0x9f,0xff,0xf5,0xf7,0x90,0xab,0x6b,0xe1,0x59,0x4e,0x49,0x3e,0xcf,0x7,0xa4,0x34,0x62,0xbd,0xbf,0x27,0xad,0xa4,0xce,0xa3,0xd4,0x2a,0x21,0xde,0x7a,0xd5,0x42,0x31,0xe7,0x3c,0x52,0x3e,0x3e,0x40,0xfa,0xc1,0x83,0xf,0xe3,0xf1,0xe7,0xce,0xca,0xbc,0xc5,0x34,0x6a,0x78,0x18,0xda,0xf9,0xb7,0xb6,0xea,0x10,0x3a,0x9c,0xdf,0x5f,0x69,0xb5,0xa5,0x4,0x85,0xde,0x7,0xdc,0xf7,0xc0,0x43,0xf8,0x97,0xff,0xe6,0x2f,0x71,0xe6,0xdc,0x5e,0x5b,0x76,0xb1,0x5e,0xed,0x49,0xc8,0xb,0xe8,0x35,0x21,0x2d,0xaf,0xa5,0x24,0x78,0x1f,0xf0,0xdc,0x4b,0xe7,0x8f,0x3c,0xa6,0x3e,0x3a,0xd,0xde,0x2a,0xbc,0x56,0xd5,0x79,0xe7,0xa5,0x6a,0xb3,0x5f,0xb4,0xea,0xcb,0xc3,0xd7,0x80,0x54,0x80,0xc6,0xd8,0xc1,0x39,0x87,0x10,0xa4,0xf2,0x2e,0xc6,0x1e,0xb1,0x5f,0xe0,0xa8,0xd0,0xb0,0xd4,0x82,0x67,0x5e,0x3c,0xa7,0xd7,0x75,0x44,0xc9,0x49,0x5b,0x76,0xb3,0xb6,0x78,0x6b,0x28,0x98,0xe5,0x7c,0xff,0xec,0xc9,0x67,0xb1,0xb7,0x7f,0xb8,0x1d,0xf7,0xaa,0xd7,0x5c,0x1,0x87,0xa9,0xfd,0x5d,0x2a,0x5a,0x83,0x56,0x3d,0x26,0xdd,0x42,0x8c,0xa9,0xba,0x30,0x49,0x45,0x62,0x29,0x65,0xaa,0x2,0x2d,0xa5,0xb5,0xcd,0xdb,0xec,0x42,0xe7,0x3c,0x5c,0xe8,0x0,0x14,0xbe,0xf0,0x10,0x11,0x11,0x11,0x11,0x5d,0x64,0xac,0x0,0x24,0x22,0xba,0x0,0x99,0xc3,0x66,0x4b,0x3f,0x30,0x6b,0x57,0x74,0x28,0x59,0xaa,0xbd,0x6a,0x91,0x76,0xcc,0x8a,0xda,0xaa,0xa8,0x24,0xf4,0xf2,0xb2,0xc5,0x75,0xcc,0xd2,0xea,0x88,0x8c,0xae,0x93,0xb0,0xc7,0xb6,0xd5,0xb6,0xb9,0x81,0x1a,0x16,0x76,0x8b,0x65,0x5b,0xf2,0xe1,0xfc,0xd1,0xe1,0x4f,0x45,0x45,0xd7,0xf7,0x5a,0xb5,0x16,0xb0,0xda,0x3b,0x87,0x9d,0x13,0xa7,0xe0,0x7d,0x68,0x33,0xf0,0xaa,0x55,0x25,0x6a,0x90,0x64,0x1,0xb,0x0,0xa9,0xea,0x3,0x70,0xdd,0x35,0x57,0xe1,0xca,0x2b,0x4e,0x1f,0xba,0xfd,0x1f,0x3f,0xfc,0x18,0x86,0x54,0xd1,0xeb,0xb1,0xd4,0x5a,0x30,0x8e,0x6b,0xd4,0x5a,0xd1,0xf7,0x4b,0x5d,0xf8,0x10,0xb0,0x5e,0xed,0xb7,0xb0,0xe7,0xa7,0x8f,0x3f,0x8f,0x94,0xd2,0xc6,0x42,0x90,0xcb,0x4e,0x9e,0xc0,0x6b,0x4e,0x9f,0xc0,0xe3,0xab,0x95,0x6c,0xb6,0xf5,0x1,0xce,0x3b,0xe4,0x31,0x21,0x8d,0x47,0xcf,0x79,0x7b,0xee,0xf9,0x17,0xf0,0xe0,0x63,0xcf,0xb4,0x2d,0xbe,0xb6,0x11,0x77,0xbd,0xda,0xc3,0x72,0xf7,0x44,0x9b,0x8d,0x38,0xc,0x6b,0xc4,0xd8,0xa1,0x94,0x82,0xb4,0xbf,0x87,0xd8,0xf5,0x12,0xd0,0x85,0x80,0x92,0x13,0x62,0x58,0x1e,0xd9,0x2,0x3c,0x8c,0x23,0xbe,0xf2,0xed,0x7,0x90,0x73,0x6e,0x95,0x85,0x3e,0x4,0x84,0xae,0x3,0x46,0xb4,0xf6,0xd9,0x92,0x33,0xa,0x32,0x52,0x1a,0xd0,0x87,0x25,0x0,0xd7,0x42,0xc2,0xcf,0x7d,0xf1,0xdb,0x80,0xf3,0xe8,0x3a,0x39,0xaf,0xe3,0xb0,0x42,0xd7,0x4f,0xf7,0x67,0x6d,0xc0,0xa8,0x5e,0x2b,0x45,0x2b,0xc6,0x94,0xb4,0x92,0xf2,0xc0,0xf5,0xe5,0xa4,0x2d,0xdc,0x39,0x27,0x4d,0xb0,0xda,0xb6,0xbd,0xb3,0x3c,0x89,0x9c,0xac,0x9d,0xf9,0x88,0xb0,0x54,0x2b,0x30,0x73,0x4e,0x88,0x5d,0xdf,0x2,0xdf,0xb1,0xc,0xd2,0x7e,0xee,0x8f,0xfe,0xf2,0x9e,0x4b,0x69,0xd7,0xb1,0x73,0x41,0x3,0x4a,0x9,0xee,0x8a,0x56,0x31,0xca,0xc,0xc3,0x11,0xeb,0xe2,0xb1,0x5a,0x8f,0x38,0x79,0x60,0x59,0xf2,0xa2,0xef,0xda,0xfc,0x4b,0xdb,0xe6,0x1b,0x42,0x44,0x2a,0x12,0xbe,0xd6,0x92,0x74,0xe9,0x4d,0x46,0xd1,0x6b,0xa5,0xb8,0x2,0x67,0xed,0xdf,0xa5,0xb6,0x78,0xd2,0x2,0x74,0x1d,0x2,0xd8,0x66,0x65,0x12,0xd1,0xc5,0x77,0xd5,0xd,0xb7,0xe1,0xb5,0x37,0xbd,0x1e,0xfd,0x72,0x47,0xb7,0xd6,0xcb,0x6b,0x9d,0xf7,0xf2,0x77,0xaf,0x96,0xa,0xe7,0x80,0x9c,0x65,0x96,0xa9,0x85,0xf5,0x25,0x67,0x78,0x7d,0xed,0xb5,0x19,0x9f,0xde,0xbb,0xf6,0x75,0xcb,0xaa,0xe1,0xdb,0x8c,0x59,0xe7,0x64,0x61,0x56,0xc9,0xfa,0xfa,0xd0,0xb5,0xaf,0x9b,0x4e,0x2b,0x9d,0xa5,0x3a,0xdd,0xeb,0xd7,0x6,0x1d,0x47,0x10,0xa2,0xbc,0x9e,0x76,0x8b,0xf6,0x3,0x15,0x1b,0x89,0x61,0x5b,0xe1,0xe5,0xb5,0xcb,0xb5,0xff,0xba,0xb6,0xfc,0xa9,0xd3,0x1f,0x60,0xc8,0xf,0xbc,0xb2,0x3e,0x2e,0xd9,0x4e,0x2e,0xaf,0x87,0xb5,0x64,0xf9,0xba,0x5a,0xd1,0xee,0xdb,0xe6,0xf4,0x7a,0xbf,0x39,0xb3,0xb7,0xe4,0xac,0x3f,0x3c,0xeb,0xa6,0x1f,0x8c,0xc4,0x8,0xb4,0x2d,0xe7,0x68,0x3f,0xa4,0xb3,0x63,0x91,0xc7,0xe2,0xda,0xf,0x36,0x0,0xe8,0xf,0xa,0xed,0x7,0x42,0xfa,0x7e,0xfd,0x5a,0x1d,0xbb,0x1e,0x79,0x1c,0xdb,0xf,0x7a,0x72,0x4e,0x8,0xfa,0x6f,0x8e,0xf6,0x9c,0xe8,0xf,0x52,0xa4,0x6a,0xbb,0xea,0xc6,0x78,0xa7,0x3f,0x4c,0x73,0xed,0xcb,0x41,0x3b,0xf6,0xd9,0x71,0x39,0xe7,0xf4,0xdf,0x28,0x3a,0x97,0x58,0xc7,0x78,0xd8,0xf3,0xe2,0x74,0xe4,0x83,0x7c,0x6d,0x9b,0x96,0x94,0xc9,0x22,0xa7,0x3c,0x3d,0x9f,0x55,0xb7,0x79,0xe9,0x63,0xb7,0x31,0x15,0xf6,0xc3,0xa7,0x71,0x18,0x64,0x61,0x95,0xf7,0x48,0xc3,0x20,0x3f,0xdc,0xf1,0x1,0x75,0xf6,0xc3,0x25,0xfb,0x77,0xc3,0xfc,0xd8,0xec,0xfe,0x2a,0xa6,0xb1,0x20,0x55,0xbf,0xe6,0xe7,0x24,0xe3,0x53,0xba,0x7e,0x81,0x71,0x58,0xc9,0xb9,0x4a,0x9,0xa5,0x16,0x4,0xfd,0xb7,0x84,0x7c,0x9d,0xd1,0x1f,0xa6,0xe6,0xa2,0xff,0xb6,0x8a,0x5a,0x5,0xaf,0xf7,0xa3,0x95,0xe7,0x32,0x63,0xd7,0xb5,0xe7,0x33,0xe8,0x8c,0xe6,0x36,0xe2,0x45,0x3f,0x4e,0xce,0x59,0x40,0x1a,0xd7,0xf2,0x43,0x42,0x3d,0xf,0xf3,0x6b,0xbc,0x96,0x82,0x34,0xe,0x78,0xfe,0x99,0xc7,0xf1,0xf2,0xb,0xcf,0x62,0xff,0xcc,0xf3,0x7c,0x71,0x21,0x22,0x6,0x80,0x44,0x44,0xdb,0x20,0x8f,0x2b,0x38,0x5b,0xfc,0xa1,0xdf,0xfc,0x58,0x8,0x28,0xff,0x10,0xce,0x88,0x31,0xca,0x66,0xe0,0x3,0xf3,0xed,0xbc,0x6,0x46,0x56,0xa5,0x57,0x72,0xd2,0xad,0xc1,0x5,0x1,0x51,0xbf,0x61,0x48,0x1a,0xfa,0x49,0x60,0x62,0xff,0xa0,0x95,0x99,0x70,0xc7,0x6f,0x1,0xb6,0x6d,0xb7,0xeb,0xd5,0x1e,0xfa,0xe5,0xe,0xf6,0xcf,0x6b,0x65,0x97,0xf7,0xfa,0x8f,0xf0,0x35,0x86,0xd5,0x3e,0x4e,0x9e,0xbe,0x12,0x0,0xd0,0x2f,0x76,0x5a,0x5,0xa2,0xdd,0xec,0x8d,0xaf,0xbd,0xa,0xdd,0x11,0xb,0x23,0xc6,0x54,0xf0,0xee,0xbb,0x6e,0x93,0x7f,0x28,0xe7,0x4,0xef,0x23,0x72,0x1e,0xe1,0xbc,0x54,0xcc,0xd5,0x5a,0xe0,0xb5,0x2,0xd2,0xb2,0x9a,0x45,0xe7,0xf,0xe5,0x36,0xb1,0x8b,0xb8,0xfa,0xf2,0x53,0x78,0xf2,0xb9,0x97,0xe0,0x43,0x6c,0x9b,0x6a,0xe5,0x1b,0xbd,0xee,0xc8,0xc7,0xf6,0xe8,0xe3,0xcf,0x61,0xd0,0x8a,0xbf,0x61,0xbd,0xdf,0x5a,0x7a,0x17,0x3b,0xbb,0xad,0x52,0xd2,0xfe,0x41,0xee,0xbc,0x87,0xaf,0x41,0x17,0xc8,0x16,0x94,0x5a,0xe4,0x9b,0xd6,0x52,0xa4,0x95,0xf6,0x88,0x20,0xe9,0xe5,0x33,0xe7,0xf0,0xf4,0xcb,0x7b,0x12,0xea,0xea,0x3f,0xf4,0xb3,0x1e,0x53,0x1a,0x7,0xfd,0x1e,0xc7,0xc9,0xf1,0x55,0x59,0x8f,0x51,0x52,0xd6,0xb7,0xc9,0x86,0x66,0x1f,0xe5,0x3e,0x73,0x4e,0x40,0x71,0x88,0xb1,0x6f,0x55,0xa0,0xb6,0x9c,0x65,0xfa,0xe6,0x6,0xe8,0x3a,0x8f,0x1b,0xae,0x3e,0x7d,0xe4,0xdc,0x43,0xe8,0x35,0x15,0xf4,0x1b,0x5f,0x1f,0x23,0x42,0xad,0x18,0xd6,0x2b,0x9,0x12,0x4b,0x3d,0xb2,0x12,0xb4,0xa2,0x2,0x3a,0xcb,0xb1,0xe4,0x8c,0xac,0xdf,0x34,0xc5,0xda,0x21,0x25,0x5b,0x5c,0x73,0xf0,0x93,0xf4,0x9b,0x37,0xfd,0xc6,0xcf,0x2a,0x15,0x73,0x1a,0xe5,0x9b,0x74,0xad,0x26,0xb4,0x6f,0xa2,0x6b,0x8,0xba,0x51,0xf8,0xc0,0xf3,0xaa,0xcb,0x4c,0x4a,0x29,0xed,0x76,0xac,0x3a,0xd2,0xda,0x92,0x25,0xd4,0x96,0xf7,0x57,0x5b,0x7e,0xa3,0xdf,0x4c,0x4a,0x85,0x66,0xd2,0x6f,0x4a,0xcb,0xf4,0x4d,0x60,0xc9,0xa8,0x69,0xe4,0x8b,0xe,0xd1,0x45,0x76,0xfa,0xea,0x1b,0xf0,0xa6,0xb7,0xff,0xa,0xae,0xb8,0xea,0x3a,0xd,0x32,0xa,0x70,0x5c,0xce,0xee,0x70,0xfc,0xfb,0x66,0xaf,0x3f,0xe,0xae,0xfd,0xb7,0xbd,0xcd,0x82,0xb9,0x59,0x5,0xf2,0xfc,0x63,0x2f,0x70,0x83,0x80,0x3b,0xe6,0xed,0xb3,0x63,0x6a,0xaf,0xab,0x7,0x8f,0xd5,0xa1,0xbd,0xd6,0x1c,0x7d,0x83,0x75,0xf3,0x83,0x8f,0xbc,0xc3,0x7a,0xe4,0x49,0x98,0x7f,0xa4,0x66,0x63,0x98,0x7f,0x79,0x99,0x7f,0x99,0x3e,0xf8,0x52,0x7d,0xf0,0x4b,0xf8,0xa1,0x97,0x72,0x67,0x3f,0x58,0xbc,0xc0,0x79,0xdf,0xf8,0x80,0xd9,0xdb,0xe,0xdd,0xa0,0x7b,0x85,0x93,0x79,0xd4,0xb9,0x38,0xea,0x49,0x77,0x47,0x9c,0x8f,0xbf,0xe5,0xf3,0xf6,0xb7,0x64,0xe7,0x75,0x7e,0x7e,0xf,0xbf,0xaf,0x6e,0xfc,0x50,0x4f,0x1e,0xba,0x86,0xca,0x7a,0xd8,0xf5,0xc0,0x89,0xb4,0x71,0x2d,0xce,0xe1,0xd8,0x8e,0x8a,0xe3,0x4e,0xfc,0xf1,0xd7,0xec,0xf4,0xf1,0xd7,0xde,0xf4,0x3a,0x9c,0x7d,0xe9,0x5,0x3c,0xfc,0xc3,0xef,0xe0,0x85,0x27,0x1f,0xe5,0xb,0xd,0x11,0x31,0x0,0x24,0x22,0xda,0xe,0x6e,0x9a,0x79,0xe7,0x3c,0xac,0x45,0xb1,0x55,0x22,0xe8,0x3f,0x16,0x9d,0xf7,0x12,0x22,0x5,0xf9,0xe9,0x7c,0xc9,0xa9,0x6d,0x46,0xad,0xb5,0xa2,0x5f,0xec,0xa0,0x96,0xdc,0xfe,0xd5,0xef,0x42,0x40,0xd5,0xc5,0x1f,0xb6,0xcc,0xa3,0x64,0x9,0xb9,0xfa,0x65,0x7f,0xfc,0x3f,0xbf,0xf5,0xa7,0xdc,0x39,0x8d,0xe8,0xfb,0x25,0x56,0xfb,0xe7,0x61,0xcb,0x45,0x24,0xc4,0x92,0xe3,0x8c,0xfd,0x2,0xa5,0x24,0x38,0xbf,0xd3,0x7e,0xd2,0xdd,0xc5,0x5,0xba,0xae,0x47,0xec,0x16,0xb8,0xfa,0x35,0x57,0x1c,0x59,0x25,0xf7,0xfe,0x77,0xdf,0x7d,0x91,0xce,0x1a,0x70,0xd9,0x89,0x5,0x42,0x94,0x2d,0xb5,0x12,0x8e,0x4d,0xb3,0xfc,0x8e,0xf2,0xf8,0x53,0x32,0x9f,0x2e,0xe7,0x24,0xb3,0x3,0x73,0x42,0xbf,0xd8,0xc1,0x7a,0x7f,0xaf,0x55,0x7b,0xc8,0xbf,0xe3,0xb,0xce,0x9f,0x79,0x9,0xfd,0x62,0xa9,0x55,0x88,0x1e,0x28,0xb2,0xd9,0xd8,0xaa,0x3d,0x8e,0x7a,0x6c,0x2f,0x9d,0x39,0x8f,0xa4,0x95,0x9b,0x0,0x30,0xc,0x7b,0x12,0xe0,0xea,0x22,0xb,0xe8,0x3c,0x41,0xa9,0xde,0xa8,0xfa,0x31,0x2b,0xf4,0x8b,0x1d,0xa4,0x61,0x2d,0x33,0xc,0xf5,0xf9,0xb3,0xca,0x8c,0x52,0xb,0xf2,0x90,0xb4,0x62,0xa6,0x20,0x8f,0x19,0xbb,0xbb,0xbb,0xb8,0xfe,0xca,0x13,0x78,0xfb,0x9b,0x6f,0xc3,0x1d,0xb7,0xdd,0x8c,0x2b,0x2f,0x3f,0x75,0xe4,0xf1,0xd8,0xfc,0xc2,0x5a,0x25,0xcc,0x5b,0xed,0x9f,0x97,0xb0,0xd6,0xb9,0x56,0xb5,0x71,0xe4,0xb9,0x75,0x56,0xb1,0x23,0x55,0x15,0x59,0xdb,0x76,0xed,0xed,0xfe,0xc8,0x19,0x8b,0xda,0x7a,0x9b,0xb,0x7c,0xd7,0x49,0x20,0x5b,0x8a,0xb4,0x87,0x57,0x69,0x71,0xb6,0x63,0xec,0x17,0x4b,0xac,0x57,0x7b,0x47,0x7f,0xd3,0xe4,0xbc,0x54,0x4f,0x64,0xbd,0x5f,0x6d,0x61,0x96,0x85,0x33,0x5a,0x31,0xe1,0x1c,0x5c,0x90,0x79,0x98,0x15,0xb2,0x8,0x26,0xeb,0xb5,0xd,0x40,0xaa,0x5c,0x20,0x55,0x36,0xe,0xd2,0x9e,0x2c,0x8f,0xb5,0xc2,0xf9,0x88,0x5a,0x12,0x5f,0x76,0x88,0x2e,0x82,0x2b,0xaf,0xbb,0x15,0xf7,0xbc,0xe7,0xd7,0xa5,0x92,0x6a,0xbd,0x92,0x4a,0xb2,0x5a,0x5a,0xae,0x64,0x15,0x6f,0x55,0x83,0x7b,0xb,0xd2,0xe4,0x6b,0x5b,0x9d,0xc2,0x10,0xad,0x92,0xaa,0x5a,0x11,0x6f,0x15,0x74,0xf6,0x5a,0x6b,0xcb,0x7f,0xe,0x7,0x75,0x75,0x76,0x3f,0xfa,0x96,0x52,0x37,0x5e,0xa3,0xed,0xbe,0x6a,0xa9,0x9b,0x61,0x1f,0xaa,0xbe,0xc,0x5b,0xf5,0xa0,0x6b,0x1b,0xe1,0xa7,0x1c,0x66,0x96,0x1e,0xcd,0xc2,0xab,0x3a,0xcb,0xb3,0x9c,0x96,0x1d,0xca,0xf,0xd7,0x5c,0x3b,0x9e,0xa9,0x1a,0x6d,0x9e,0xa5,0xcd,0x2a,0x15,0xeb,0xa1,0x8,0xf0,0x70,0xc2,0x37,0xab,0x48,0x3c,0xe2,0x85,0xfa,0x98,0xa0,0xee,0x3f,0xa1,0xca,0xf9,0x55,0x84,0x6e,0x2d,0x2c,0xab,0xf3,0x60,0xc,0xff,0x2f,0x7b,0x6f,0xf6,0x6c,0x59,0x76,0x97,0x89,0x7d,0x6b,0xd8,0x7b,0x9f,0x7b,0x6f,0xe,0xa5,0x92,0xaa,0x4a,0x25,0x55,0x21,0x9,0x4a,0x8,0x34,0x20,0x9,0x31,0x8,0x59,0x4d,0xcb,0x80,0x1a,0x1a,0xe8,0x6,0x37,0xa6,0x9,0x88,0xee,0xb0,0x1f,0xdc,0xd1,0xd1,0x1d,0x61,0x3f,0x3a,0xec,0x7f,0xc2,0xf,0x76,0xd8,0x2f,0x84,0x1d,0x61,0x87,0x1d,0x6d,0xbb,0x3,0x1b,0xd3,0x74,0xe3,0xa6,0x45,0x33,0xa,0x21,0x9,0x9,0x84,0x84,0x24,0x24,0xa1,0x79,0xa2,0x54,0x43,0x66,0xde,0x7b,0xce,0xd9,0xc3,0x1a,0xfc,0xf0,0x1b,0xf6,0xda,0xe7,0xec,0x93,0x59,0xaa,0x4a,0xc2,0x2a,0x62,0xfd,0x14,0xa9,0xca,0xbc,0xf7,0x9e,0x3d,0x9d,0x73,0xd7,0x5a,0xbf,0x6f,0x7d,0xc3,0x82,0x31,0x68,0xa,0xac,0x4f,0xbf,0x5f,0xcc,0x6d,0xf3,0x2d,0xf0,0xb3,0xc3,0xe9,0xfb,0x2c,0x7f,0xe6,0xff,0xd7,0x5a,0x43,0x65,0x9f,0xf7,0xa1,0xf2,0xcc,0x4e,0x3f,0xf1,0x16,0xa4,0x9c,0xd0,0x76,0x1b,0x3c,0xf1,0x86,0xb7,0xe1,0xf3,0x4d,0x8b,0x27,0xbf,0xf8,0xa9,0x3a,0xe0,0xd4,0xaa,0x55,0xab,0x2,0x80,0xb5,0x6a,0xd5,0xaa,0xf5,0x62,0xaf,0x2c,0xec,0x3e,0xe,0xf2,0x28,0x99,0x6,0x39,0x27,0xe4,0xc4,0xf2,0xcd,0x9c,0x29,0xd4,0x83,0xe5,0x3e,0x84,0x53,0x25,0x24,0x13,0x69,0xd,0xa9,0xec,0x39,0x7,0x38,0xa7,0xd2,0x1f,0x49,0x48,0x15,0x99,0x8a,0xf3,0xcd,0xf1,0x8e,0xff,0x21,0x0,0xe8,0x1a,0x65,0x2,0x3a,0xe7,0x99,0x41,0x36,0xa0,0xed,0xce,0xb0,0xdf,0x5e,0x52,0x98,0x88,0x31,0x0,0x36,0x8,0xd3,0x40,0xa0,0x5f,0xdb,0x8a,0x91,0x21,0x72,0x4a,0xd8,0x6c,0xba,0xbf,0xf6,0x67,0x77,0xed,0xbc,0x43,0x9c,0x26,0xbe,0xb7,0xa8,0x80,0xd5,0xa9,0xba,0xda,0xed,0xe1,0x7d,0xcb,0x9,0xc9,0x3d,0x31,0xe,0x41,0xbe,0x88,0x14,0x28,0xe1,0x0,0x66,0x55,0x9e,0x5d,0x5c,0x7,0x0,0x66,0x25,0x66,0x78,0xf1,0x4d,0xcc,0x19,0x61,0x9a,0x56,0x5b,0x91,0x7d,0xcf,0xa9,0xcb,0xc2,0xa2,0xf4,0xd,0x42,0x18,0x49,0x1a,0xe5,0x1c,0x72,0xca,0x9c,0xc6,0x3c,0xe9,0xd7,0xe8,0x1c,0x23,0x3d,0xb7,0x18,0x10,0x23,0xf4,0x1e,0x1c,0x33,0x28,0xd,0x7,0xb1,0x3c,0xfe,0xc8,0xcb,0xf0,0xbd,0xaf,0x7f,0xd,0xde,0xf0,0x9d,0xaf,0xc1,0xc3,0x2f,0x7b,0x9,0x9c,0xbb,0xb7,0xd5,0xae,0x0,0xc4,0x31,0x6,0xb4,0xed,0x6,0x61,0x1c,0xd1,0x9d,0x9d,0x63,0x9a,0x26,0x18,0x96,0x8f,0xad,0x7d,0x26,0x49,0xc6,0x95,0xd1,0xb4,0xc4,0xa6,0x8c,0x89,0xe4,0xcc,0x26,0x4c,0x24,0xa7,0x3d,0x86,0xff,0x58,0xe,0xe7,0xe8,0xb3,0xd2,0x76,0xea,0xfb,0x27,0xb2,0xab,0x9c,0x13,0xbc,0x6b,0x58,0x4e,0xed,0xd7,0x81,0x44,0x95,0x8,0xb6,0x1a,0x26,0x42,0xf7,0xe1,0x10,0x13,0x7d,0x1e,0x89,0xd,0x1b,0x39,0xac,0xc6,0x30,0x93,0xd4,0xa9,0x5c,0x9a,0xa4,0xc3,0xa3,0x36,0x6b,0x92,0x82,0xac,0xbf,0x6f,0xb5,0x6a,0xd5,0xba,0x2f,0xf5,0xea,0xef,0x7c,0x13,0x9c,0xa7,0xdf,0x69,0x91,0xa1,0xca,0xef,0x99,0x30,0xce,0x69,0xce,0x62,0x30,0xcf,0xda,0x2,0x28,0xcb,0xfc,0x33,0x59,0x7d,0x3f,0x25,0x38,0x28,0x70,0x12,0x79,0xce,0x22,0xad,0xb5,0x33,0x98,0x24,0x6c,0x78,0xb6,0x9e,0x10,0xd6,0xa1,0x8c,0x7,0x59,0xe7,0x53,0xd9,0x2c,0xe3,0xb9,0x95,0xcf,0x55,0xc2,0x64,0x99,0x43,0x83,0xe8,0xfa,0xb2,0xca,0x77,0x65,0x53,0x2e,0xa7,0x62,0x43,0xce,0x5a,0x7e,0x5d,0x66,0x60,0x6e,0x3e,0x5e,0xc6,0x2c,0xdf,0xd4,0xeb,0x34,0xc2,0x1f,0x2b,0x98,0x63,0xc6,0xce,0x12,0xd2,0x15,0x86,0xe1,0x2,0x84,0x3c,0x9,0xe,0xd2,0xf7,0xe4,0xde,0xe5,0xdf,0xa,0x84,0x22,0x63,0x5,0x79,0xbc,0x7,0xce,0xb7,0xe,0x1c,0x96,0xb8,0xa5,0x29,0x1,0xbd,0x2,0x0,0x5c,0x23,0xc,0xae,0x9e,0xda,0x1c,0x1c,0xf0,0x88,0x45,0xf9,0x2d,0xb7,0x38,0x53,0x3b,0x8a,0xe7,0xc,0x10,0x1e,0x51,0x36,0xcd,0x31,0x48,0x5a,0x0,0xa7,0x25,0xab,0xf5,0x10,0xe0,0x94,0x4d,0xba,0x18,0x3,0x6e,0xbe,0xe4,0x21,0x7c,0xe3,0xcb,0x9f,0xd1,0xcf,0x57,0xad,0x5a,0xb5,0x6a,0x55,0x0,0xb0,0x56,0xad,0x5a,0xb5,0x5e,0x84,0x65,0x5d,0xa3,0xac,0x2a,0x9,0x39,0x48,0x29,0x91,0xff,0x5c,0x4e,0xb0,0x98,0xd9,0x57,0xd6,0x92,0x27,0x5b,0x42,0xd4,0xd0,0xf,0xf5,0xa6,0x61,0xf0,0xc5,0x59,0x47,0xaf,0xe3,0x85,0x63,0x6,0x35,0x2d,0xc4,0x5a,0xcb,0x33,0x90,0x12,0x23,0x52,0x18,0x57,0xaf,0x89,0xc2,0x30,0x46,0x95,0xc1,0x82,0x65,0x94,0xe2,0x9b,0x23,0x1e,0x37,0x4d,0xd3,0x6a,0x23,0x43,0xbe,0x80,0x49,0x1,0x47,0xf2,0xd1,0xf9,0xeb,0xcf,0x81,0xea,0xda,0x96,0x7d,0xea,0x28,0x30,0x24,0x32,0x2b,0xf2,0x14,0x53,0x20,0x26,0x90,0xdf,0x8f,0x6f,0x91,0x8c,0x81,0x67,0x2f,0x28,0x92,0xb9,0xce,0xe9,0xc3,0x40,0xc6,0x34,0xe,0xea,0xd5,0xd4,0x76,0x1b,0x92,0xad,0x22,0x33,0x68,0xb5,0x7e,0xfc,0x91,0xfd,0x89,0x72,0x36,0xea,0x21,0x24,0x52,0xe7,0x69,0x1c,0xd4,0x7,0xc9,0x5a,0x8b,0x71,0xd8,0x93,0x77,0x95,0xa1,0x86,0xd3,0x1a,0xe8,0xfb,0xdf,0x6d,0xce,0xc8,0x7f,0x70,0x9a,0xb0,0xd9,0x6c,0xf0,0xd6,0xd7,0x3d,0x8e,0x1f,0x78,0xf3,0xeb,0xf0,0xf8,0x2b,0x1f,0x41,0xd7,0xb6,0x7,0x3d,0x47,0xc6,0x9d,0xab,0x1d,0xae,0x5f,0x9c,0x1f,0x25,0x3b,0x4b,0x83,0x98,0x62,0x84,0xf7,0xd,0x86,0x7e,0xf,0xdf,0x34,0xb0,0xd6,0x92,0xe7,0x51,0x8a,0xab,0xf7,0x62,0x58,0xa6,0xac,0x16,0x4d,0xa0,0x10,0x11,0x3,0x43,0xe1,0x2d,0x79,0x5d,0xd2,0xe4,0x5c,0x3,0xdf,0x90,0x97,0xd5,0xd5,0x9d,0x5b,0xf0,0x9c,0x0,0x6d,0xad,0xc3,0xd8,0xef,0xe0,0x5d,0x83,0x7e,0xbc,0xa2,0x0,0x16,0x6d,0xba,0xf,0x2a,0x51,0x63,0x1b,0xa6,0x51,0x3,0x3c,0x72,0x4a,0x7c,0xad,0xf4,0x4c,0x8d,0x85,0x32,0xfe,0xe8,0xfd,0x98,0xfd,0xa,0x85,0xd5,0x98,0x72,0xe2,0xf7,0x92,0x1,0x1,0x63,0x60,0xfc,0x6,0x18,0xee,0xd4,0x81,0xa7,0x56,0xad,0xfb,0x50,0xaf,0xfc,0x8e,0x37,0xe1,0x65,0x8f,0x3e,0xae,0xd6,0xb,0xa,0x9a,0x14,0xa0,0x18,0x79,0xf5,0xa5,0x19,0x0,0x2,0x16,0x8c,0x2f,0x1a,0x1f,0xac,0x8e,0xaf,0xea,0x95,0x26,0xd2,0x5f,0xf6,0x9c,0x45,0xc1,0x20,0x34,0xce,0x29,0xab,0x3a,0xc6,0x9,0xd6,0x31,0x10,0xc8,0x1e,0x7c,0xe4,0x63,0xc7,0x60,0x5c,0x86,0x8e,0x21,0x3a,0x2f,0xe4,0xc,0x23,0x9b,0x64,0xcc,0x34,0x34,0xec,0x51,0x8,0x63,0x96,0xe3,0x92,0x1,0x1,0x98,0x39,0x29,0xc8,0x36,0x3,0x80,0xf3,0x18,0x4c,0x1b,0x3c,0x49,0x99,0x88,0x39,0xce,0x9b,0x78,0xe2,0xe5,0xcb,0x3,0x5c,0x1,0x1e,0x26,0x41,0x82,0x68,0xe,0x7,0xa,0xe6,0x64,0xe9,0xff,0x77,0x20,0xf,0x46,0x56,0xbf,0x44,0x7a,0x26,0xe5,0x8c,0x97,0x67,0x66,0x61,0xc1,0x60,0x34,0x38,0x66,0x21,0x2e,0xe7,0xc9,0x3,0xef,0xbc,0x15,0xe4,0x6e,0xf1,0x65,0x7d,0xbf,0xc1,0x57,0x93,0x4f,0xff,0xec,0x1,0xc6,0x37,0xcb,0x6d,0x57,0x0,0xc7,0x9c,0xb,0x58,0xd0,0xac,0x2a,0xaa,0x55,0x6,0xbe,0xc2,0x3e,0x2c,0x99,0x82,0x4b,0xd1,0xb2,0x42,0xb7,0x77,0xad,0xb5,0xfb,0x3f,0xf2,0x15,0xbc,0x17,0x8,0x78,0x78,0xd3,0xf9,0xf8,0x58,0xe5,0xb3,0xc0,0x5d,0xae,0x4c,0x0,0x6f,0x63,0xcd,0xb7,0x24,0x46,0x5a,0xab,0x56,0xad,0x5a,0x15,0x0,0xac,0x55,0xab,0x56,0xad,0x6f,0xa2,0x52,0x9c,0x66,0xa3,0x73,0x6e,0x88,0xac,0xb5,0xe4,0xff,0xc6,0xa0,0x85,0x55,0xc6,0x84,0x53,0xe9,0x66,0x69,0x14,0x9e,0x8a,0x14,0x5e,0xcb,0xbe,0x6a,0x62,0x3a,0x4e,0x0,0x1e,0xf9,0xcf,0x59,0x4b,0x60,0x94,0x95,0xa4,0x61,0xd7,0x9e,0x5e,0x70,0x82,0x1,0x96,0x34,0x4b,0x27,0x53,0x4c,0x98,0x86,0x1e,0x6,0x94,0xd2,0x6b,0x0,0x6c,0x2e,0xae,0xc3,0x5a,0xf2,0x68,0x6b,0xda,0x4e,0x81,0x9b,0x6e,0x73,0x8e,0x7d,0xdf,0xaf,0x1e,0xfb,0x8f,0x3e,0xfc,0x71,0x5c,0x6e,0xf7,0xc5,0x4e,0xb8,0xc8,0xb4,0x96,0xcc,0x82,0x14,0x23,0xe3,0x37,0x7c,0xcf,0xc,0xe8,0x58,0xe7,0xe9,0xda,0x62,0xc4,0x97,0xbf,0x71,0x9b,0xd3,0x91,0xf7,0x70,0xce,0xc3,0xfb,0x46,0xcd,0xdc,0xd7,0xd6,0xe5,0x99,0xd,0xe6,0x5,0xe0,0xc,0x61,0x22,0xa0,0x2f,0x67,0x8c,0xfd,0x9e,0xe4,0xa6,0xda,0xc4,0x19,0x65,0x94,0x44,0x36,0x6c,0xf7,0x4d,0x8b,0x69,0x1a,0x91,0x73,0xbb,0xce,0x24,0xe3,0xc6,0x4e,0x76,0xed,0xad,0xb1,0xd8,0xef,0xb6,0xca,0x30,0x24,0xd0,0xd7,0xb1,0x81,0xbc,0x53,0xe0,0xd4,0x75,0x67,0xea,0x2f,0x64,0x60,0x30,0xe,0x3,0xac,0x31,0xf8,0xde,0x37,0xbe,0x1a,0x3f,0xf1,0xae,0x1f,0xc0,0x2b,0x5e,0xfe,0xd0,0x11,0xb,0xa1,0x1f,0x46,0x7c,0xee,0x8b,0x5f,0xc5,0x87,0x3f,0xfe,0x39,0xdc,0xba,0x1a,0xf0,0x4f,0x7f,0xe1,0xc7,0x8e,0xc2,0x39,0xe8,0xf8,0xf4,0x5e,0x8e,0xe3,0xc0,0xe9,0xcf,0x9,0xe3,0xc8,0x69,0xd2,0xce,0x61,0x8d,0x9,0x4a,0xd,0x56,0x46,0x4a,0x99,0x24,0xc8,0xc,0xb6,0x49,0xd3,0xb5,0xca,0x88,0x30,0x86,0x59,0x95,0xf4,0xb3,0x5d,0x77,0x86,0x98,0x2,0x85,0x87,0xc,0x3,0xdf,0x77,0x38,0x30,0x6a,0x5f,0x97,0x12,0x13,0x10,0x4a,0x8d,0xff,0xd4,0xef,0x17,0xac,0x1f,0x61,0x64,0xc6,0x18,0x61,0xac,0x51,0xcf,0x4c,0xdf,0x34,0xca,0xbe,0x9c,0xc6,0x91,0xee,0x2d,0x67,0x44,0x6e,0xd6,0x71,0xe0,0xf1,0x54,0xab,0x56,0xad,0xe7,0x5f,0xae,0xd9,0xe0,0xdb,0x5e,0xfb,0x6,0x38,0xeb,0x35,0x90,0x62,0x1e,0xc8,0x93,0x6e,0x6c,0x95,0xb2,0x49,0xc3,0x80,0x98,0xe8,0x43,0x45,0x92,0x2b,0xd6,0x15,0x62,0x57,0x70,0x24,0x13,0xb5,0x96,0x81,0x40,0x2,0xe3,0x20,0xac,0x62,0x6b,0xd5,0x6b,0x94,0x18,0x7a,0xcb,0xb1,0xdf,0x3a,0xc7,0xc0,0x1d,0x34,0x54,0x82,0xc2,0x2c,0x18,0xf4,0xe3,0x20,0xc,0x2b,0x60,0x1a,0x50,0x8c,0xfd,0x46,0x37,0x20,0xc8,0xd7,0x74,0x6,0xa4,0xc,0xc8,0xeb,0x36,0xa9,0xd7,0x21,0x8d,0x59,0xf3,0x71,0xcd,0xc,0xd8,0x14,0x2c,0x42,0x3a,0x82,0x65,0x46,0x7f,0x9a,0x1,0x22,0x9e,0xf3,0x8,0xd4,0x2b,0xc6,0x29,0x6,0xf7,0x14,0xcd,0xe2,0xf0,0x13,0x61,0x37,0x42,0x3d,0x12,0xe9,0x99,0xcb,0x4f,0x9b,0x42,0x7f,0x4b,0xc3,0xe3,0xa,0xbc,0x74,0xe4,0x6b,0x28,0xc0,0xdd,0xf3,0x41,0x99,0xf2,0x89,0xbf,0x63,0xd5,0x78,0x6f,0x75,0x1c,0x56,0x1b,0x94,0x75,0xb3,0xc6,0x25,0xbb,0x90,0x41,0xd3,0x7c,0xc,0xa,0x2e,0xa1,0xd0,0xd3,0x57,0x39,0xdf,0xf1,0xfa,0xfa,0xe7,0x6e,0x6b,0xa3,0xfb,0x52,0x87,0x3a,0xe9,0xf5,0xbb,0x5e,0xc7,0x14,0x6b,0xd5,0xaa,0x55,0xab,0x2,0x80,0xb5,0x6a,0xd5,0xaa,0xf5,0x22,0xae,0x22,0xe9,0x2f,0x2f,0xd8,0x13,0x80,0x15,0x1f,0xb6,0x42,0xc6,0x64,0x9d,0xd7,0xc4,0x3e,0x63,0x2c,0x1,0x1f,0xd3,0x4,0xdb,0x76,0xca,0x16,0x24,0xdf,0x3f,0xab,0x3e,0x32,0xde,0x38,0xa4,0x9c,0x61,0x52,0xd4,0xf4,0x42,0x61,0x18,0xac,0x2d,0x3b,0x29,0xbc,0x61,0xe0,0x34,0x46,0xcb,0x4c,0xb9,0x44,0xe9,0xad,0xc3,0x5e,0x93,0x63,0xfb,0xed,0x25,0x36,0xe7,0xd7,0xb0,0x39,0x3f,0x53,0xe0,0x4c,0x40,0x9a,0xcb,0x6d,0x7f,0x64,0xac,0x6d,0x8c,0xc1,0x93,0xcf,0xdc,0xc1,0xfb,0x3f,0xfe,0x45,0x4d,0xc7,0xb3,0xce,0x69,0xb0,0x88,0xf3,0xd,0xfa,0xdd,0x15,0x5c,0xd3,0xc0,0x1a,0xc7,0x12,0xdd,0x19,0x2c,0xca,0x89,0xc0,0xa8,0x30,0x8d,0xda,0xac,0xe8,0xd7,0x6d,0x50,0xf9,0xe9,0xea,0x92,0x9a,0x7d,0x11,0x9d,0x6f,0x10,0xa6,0x11,0xe3,0xd0,0x6b,0xa,0x25,0x5,0x55,0x48,0xe2,0x6f,0x43,0x8c,0xc9,0xa2,0x91,0x33,0x0,0xfa,0x7e,0x4f,0xd,0x56,0x4e,0x18,0xfb,0xfd,0xc2,0x88,0xbe,0xbc,0x3f,0x1,0xb9,0x3c,0xcb,0xe2,0x72,0x8a,0x18,0x38,0xe5,0xd8,0x39,0x8f,0xb1,0xdf,0x13,0x53,0x4d,0xe5,0x3f,0xd0,0xa6,0x34,0x4c,0x23,0x9c,0x6f,0x70,0xed,0xac,0xc5,0x2f,0xfc,0xd4,0xf,0xe3,0x6d,0x6f,0x7e,0xc3,0x91,0xcc,0xf7,0xf2,0x6a,0x8b,0xf,0x7d,0xf4,0xd3,0x78,0xdf,0x9f,0x7e,0xa,0xbb,0x60,0x31,0xc,0x3d,0x1e,0x79,0xf0,0xda,0x89,0xb7,0x92,0x58,0x2b,0x61,0x9a,0x34,0x4c,0x43,0x12,0xa5,0x8d,0x49,0xc8,0xd9,0x9e,0x48,0xf,0xb6,0x8,0x61,0x82,0x75,0xd,0x62,0x20,0x86,0x64,0xd3,0x76,0xd8,0xef,0xb6,0x68,0xda,0x16,0x71,0x2d,0x4c,0x43,0x3c,0xb,0xf9,0x73,0x20,0x8c,0xcc,0x71,0xe8,0xe1,0x9b,0x6,0x63,0xbf,0x47,0xc3,0xb2,0x60,0xc3,0x3f,0xb7,0xa,0xa2,0x72,0xe0,0x49,0x98,0x46,0x6,0xfb,0xa0,0x89,0x91,0x13,0x7f,0x46,0x6c,0x91,0xd2,0x19,0xa6,0x91,0xd9,0xb3,0x94,0x9c,0x28,0xa1,0x29,0x99,0x41,0x2,0xf5,0x1,0x3,0x90,0xc2,0x58,0x30,0x6f,0x6a,0xd5,0xaa,0xf5,0x7c,0xeb,0x81,0x87,0x5e,0x81,0xb6,0xdb,0x2c,0x1,0x17,0x4d,0x79,0x9d,0x13,0x57,0x4b,0xf9,0x6b,0xd6,0xef,0x65,0x5,0x9,0x65,0xe3,0xc3,0x72,0x6a,0xaa,0x48,0x76,0x4b,0x79,0x2d,0x81,0x79,0x7e,0x31,0x57,0x3a,0xf6,0x56,0xb5,0xba,0xe1,0x43,0x1e,0x7f,0x59,0x80,0xbf,0x14,0x61,0x8c,0x53,0x6,0x9d,0xa6,0xc0,0xe6,0xac,0x9,0xc3,0x84,0x55,0x26,0x62,0x7,0x8b,0x7,0x2c,0x1f,0xc7,0xf0,0xbc,0x44,0x63,0x87,0x48,0x6e,0x8d,0xb2,0xff,0x92,0xa4,0xe7,0x22,0x11,0x3,0x4e,0x1,0x1d,0xcc,0xc0,0x5f,0x96,0x80,0x27,0x61,0x2c,0xce,0x30,0xd4,0x7c,0x7f,0x79,0xc1,0x7a,0x93,0xf9,0x26,0xa5,0xcc,0xec,0xc5,0x12,0x28,0x9d,0xaf,0x75,0x1d,0x94,0xca,0x40,0x36,0x7,0x81,0x15,0x58,0xa4,0xf7,0x96,0x1,0x52,0xf9,0x6e,0xc0,0xdd,0x5d,0xa1,0xb3,0x13,0x3f,0xb2,0x36,0xf1,0x16,0x92,0xd7,0xf2,0x1a,0x8e,0x5f,0x67,0x56,0xd8,0x7c,0xc,0x1e,0x1e,0xea,0x89,0xb,0x40,0xb3,0x4,0xfd,0xee,0xc6,0xef,0xcb,0x77,0x91,0x37,0xbf,0x40,0xd7,0xc4,0xe7,0x57,0x8b,0x7b,0x5c,0x3e,0x87,0xa3,0x67,0x6e,0x50,0x0,0xea,0x75,0xec,0xa9,0x55,0xab,0x56,0x5,0x0,0x6b,0xd5,0xaa,0x55,0xeb,0x45,0x5d,0xd2,0x64,0x88,0x54,0xc9,0xb2,0x9c,0xd1,0x71,0x42,0x2d,0xc,0x38,0x64,0x23,0x17,0x1e,0x47,0x6,0xd6,0x59,0x6,0x5d,0x1c,0xe0,0x67,0x90,0x44,0x16,0xd8,0x86,0x19,0x6e,0x65,0x88,0x83,0x0,0x5e,0xe9,0x6e,0xb,0xde,0x42,0x36,0x24,0x1e,0x6c,0xd3,0xd8,0xa3,0xdf,0x51,0x18,0x48,0x18,0x47,0x38,0x3e,0x66,0x77,0x76,0xa1,0x4c,0xad,0x59,0xde,0xea,0x60,0x9d,0xc7,0xd7,0x9f,0xba,0x85,0x10,0x22,0x9a,0x66,0x39,0x15,0xbc,0xee,0x35,0xaf,0xc4,0x7b,0x3f,0xf2,0x19,0x0,0x50,0xaf,0x41,0x9,0x27,0x29,0xd9,0x8c,0xe3,0xb0,0x27,0xf6,0xd8,0xd8,0xeb,0x65,0x75,0x9b,0x33,0x62,0xec,0xf1,0xaa,0x38,0xc6,0x40,0xff,0xe5,0xfb,0xcc,0x39,0xa1,0xed,0xce,0xd6,0xc3,0x2d,0x44,0x46,0x56,0x48,0x9d,0x52,0x8a,0x94,0xae,0xdb,0xb4,0xd8,0xef,0xae,0x14,0xa0,0xb,0x61,0xc2,0xf9,0xb5,0x1b,0xc4,0xda,0x33,0x24,0x61,0xa5,0x9f,0xb9,0x84,0xb3,0xe,0x83,0x19,0x57,0x9b,0x1d,0xf5,0xb6,0x62,0xb9,0x99,0x4,0x86,0xc4,0x40,0xbe,0x7f,0x63,0xce,0xf0,0x2d,0x87,0x71,0xb4,0x1b,0x18,0x67,0x61,0x9d,0x25,0x40,0x91,0x65,0x6a,0xce,0x24,0xfc,0xa3,0x9f,0xfd,0x9,0xbc,0xf5,0x4d,0xdf,0x7d,0x70,0xec,0x8c,0x8f,0x7e,0xe2,0x33,0xf8,0xf5,0xdf,0xfd,0x13,0xdc,0xda,0xe,0xc,0x82,0x1a,0x95,0x97,0xe5,0x35,0x26,0x5f,0x4a,0xe8,0x77,0x5b,0xe,0x3e,0x21,0x36,0xa7,0xf7,0xd,0x0,0x83,0xb6,0xeb,0xe8,0xf9,0x9f,0x90,0x6a,0xb7,0xed,0x6,0x91,0x7f,0x7e,0x3f,0xe,0x30,0x61,0x52,0x76,0xdd,0xaa,0xcf,0xa2,0x1,0x52,0x26,0x26,0xde,0xee,0xea,0x8e,0x32,0x68,0xac,0xb5,0x4,0x4a,0x9b,0x9,0xe3,0xd8,0xa3,0x69,0x3a,0xc4,0x69,0x64,0xe6,0xe5,0x3a,0x8b,0x72,0xec,0x77,0x1a,0xe8,0x22,0xcc,0xc9,0x49,0x40,0xc7,0x9c,0x0,0x10,0xdb,0x75,0xec,0x7b,0x38,0xef,0xd4,0xbf,0x2b,0x3,0x48,0x39,0x2a,0x4b,0xa7,0xc,0x1f,0x98,0x7d,0xb,0x6b,0x7,0x55,0xab,0xd6,0xb,0x5e,0xe0,0x7b,0x7f,0xc0,0xd6,0x62,0x70,0xc9,0x18,0x62,0xe8,0x29,0xa0,0x6,0x5,0x9c,0xe4,0xf7,0xd7,0x8,0xdb,0x4f,0xe4,0x91,0x3c,0xc7,0x19,0xe,0xee,0x29,0x3d,0x70,0x1,0xc0,0x8,0xa0,0x6,0xa8,0x57,0xa0,0x6c,0x64,0x89,0xd,0x40,0xce,0x86,0xc6,0x2,0x66,0x23,0x8a,0xc5,0x0,0x6d,0x4a,0x44,0xb5,0x6e,0xa0,0x30,0x23,0xa3,0x9e,0x81,0xd6,0xcf,0xbe,0x83,0x1a,0xd6,0xc4,0x63,0xa7,0x5c,0x9f,0x75,0xcb,0xd,0x8b,0xcc,0xf3,0xb6,0x32,0x0,0xcd,0xbc,0x41,0x25,0x60,0x53,0xc9,0x80,0x9c,0xc1,0x3f,0x86,0xac,0x24,0xc5,0xdc,0x3a,0x65,0x27,0x2b,0x38,0x97,0x8,0x50,0x14,0x76,0xb3,0x30,0x1d,0x5,0x3c,0x95,0x6b,0x2f,0x81,0xb4,0xd9,0xfb,0x6f,0xe9,0x5,0x58,0xb2,0xfb,0x72,0x1,0x9e,0x1e,0x27,0x16,0xdf,0x8f,0x85,0xc,0x66,0x69,0x77,0x9,0x70,0xe9,0xf7,0x8e,0x19,0x7e,0xf9,0x20,0xe0,0x44,0xfd,0x1b,0xf3,0x81,0x84,0xf7,0xf0,0xfb,0x8b,0xbf,0xe7,0x17,0x7c,0x17,0xf9,0x39,0xfd,0x84,0x79,0x8e,0x3f,0xb3,0x40,0x3b,0x95,0xa9,0xa9,0xd4,0xcc,0x35,0x3a,0x5f,0x3e,0x58,0x7b,0xad,0xcc,0x89,0xe2,0x15,0x5d,0xab,0x56,0xad,0x5a,0x15,0x0,0xac,0x55,0xab,0x56,0xad,0x17,0x71,0x9,0x9b,0x4f,0xd6,0xcb,0x29,0x25,0xc4,0x74,0x68,0x90,0x9e,0x58,0x16,0x4c,0xe9,0xa7,0xf2,0xb3,0x39,0x51,0xe3,0x23,0x80,0x58,0xc3,0x7e,0x76,0x28,0x64,0xc2,0xd6,0x3a,0x65,0x20,0x94,0xe9,0xad,0x14,0x8a,0xb0,0xbe,0xa0,0x15,0x7f,0x25,0x49,0xab,0x35,0x6c,0xa4,0x2e,0xc0,0x8e,0xf3,0x5e,0x59,0x73,0x39,0x25,0xf8,0x6e,0xc3,0x20,0xb,0x83,0x35,0xc,0x46,0x3e,0xf9,0xec,0x25,0x76,0xfb,0x1e,0x37,0x9b,0x25,0x3b,0xed,0x55,0x8f,0xbd,0x1c,0x2f,0xbd,0x71,0x81,0x67,0xae,0x7a,0x64,0x64,0x2,0x89,0xbc,0x27,0x6,0xd7,0x38,0x22,0x30,0xd0,0x63,0x9d,0x63,0x1f,0xc1,0xcc,0xac,0xbf,0x89,0xc1,0x2c,0x5a,0xc,0x7b,0xdf,0x22,0x8c,0x23,0x33,0x3b,0xb2,0x2e,0x9c,0xa7,0x71,0x40,0x8a,0xeb,0x29,0xaf,0x29,0x93,0xaf,0x1e,0x40,0xcf,0x7a,0x1c,0x7a,0x18,0x63,0xb0,0xbd,0x73,0x8b,0xee,0x9,0x1,0xd3,0x34,0x52,0xa2,0x70,0x8,0xb3,0x31,0x3c,0xf8,0x79,0x3b,0x92,0x6f,0x79,0xdf,0x9e,0x58,0x8b,0x13,0x23,0xad,0x69,0x3b,0x8c,0x7d,0xaf,0xcf,0x7b,0x73,0x7e,0x81,0x3b,0xcf,0x3e,0x4d,0x72,0x65,0x61,0x12,0xb6,0x99,0x1,0x5a,0x2,0x7a,0xd3,0x44,0x9e,0x8c,0x3f,0xfd,0xae,0x1f,0xc2,0x5b,0xde,0xb8,0x4,0xff,0x52,0x4a,0xf8,0x9d,0x3f,0xfc,0x13,0xfc,0x9b,0x3f,0xf8,0x53,0x64,0x58,0x66,0xb7,0x18,0xf8,0xa6,0x45,0x98,0x6,0x66,0xd3,0xac,0xdf,0xaf,0xa4,0xef,0x5a,0xe7,0x90,0x63,0x42,0x34,0x91,0x19,0x8f,0x11,0x4d,0x13,0x4e,0x26,0x1,0xc7,0x18,0x10,0x38,0x45,0x77,0x73,0x76,0xce,0xc,0xd0,0x3d,0x52,0x38,0xf1,0x9a,0x4c,0x61,0x2a,0x61,0xea,0xc9,0x5f,0x30,0x4c,0x80,0xa1,0xf7,0xa3,0xdf,0x6d,0x59,0x7e,0x9c,0xb1,0x9f,0x2e,0xd1,0xb4,0x1b,0xa,0xf3,0x38,0x91,0xd6,0x1c,0xa6,0x9,0x86,0x3f,0xdb,0x39,0x67,0x8c,0xc3,0x9e,0x3e,0x6b,0x4d,0x8b,0x10,0xc,0xa5,0xfe,0x6,0x4e,0x46,0x4e,0xa9,0x0,0x1a,0x29,0xd4,0xc4,0x20,0x23,0xa6,0x48,0xcf,0x95,0x7f,0xbf,0x52,0xa,0xc8,0x29,0xdc,0x5f,0x19,0x57,0xad,0x5a,0xb5,0xa,0x90,0xa9,0x4,0x29,0x72,0x1,0x5a,0x41,0x3,0x11,0x4a,0x36,0xda,0xec,0xc9,0xa7,0xc8,0x9e,0xb2,0x76,0x25,0x41,0x7c,0x4e,0x2,0x4f,0xb,0xac,0x64,0x96,0xff,0x1a,0x6,0xfc,0x9c,0x32,0xca,0x67,0xa0,0x4d,0x6c,0x1c,0xf2,0xc,0x9a,0x1,0xb0,0xde,0x23,0x4c,0x13,0xda,0xae,0xd5,0x31,0x46,0xbd,0xfb,0x90,0xe1,0xd8,0x3e,0x83,0xc6,0x21,0xb3,0x4,0xd8,0x8c,0x1,0x38,0x89,0x3c,0x1b,0x6,0x1c,0x85,0xa9,0x97,0x67,0x66,0x9f,0x80,0x9e,0xa,0x82,0xb2,0x8f,0xaa,0x30,0x8,0x25,0xc4,0x4b,0x9f,0x9e,0xc1,0x62,0x2d,0xa0,0x8c,0x7a,0x2c,0x41,0xb1,0x25,0xe0,0xb7,0xcc,0xf3,0x92,0x63,0xeb,0xd7,0x35,0xa1,0x63,0x9e,0x1f,0x8d,0x5e,0xc3,0x31,0xd8,0x74,0xca,0xff,0x6f,0x99,0x58,0x3c,0x83,0x72,0xa,0x4c,0x16,0x40,0x9f,0xc1,0x9,0x79,0x2f,0xb0,0xf4,0xe7,0x93,0xf7,0xee,0x2e,0x32,0xde,0x5c,0xbe,0xb6,0x4,0x2,0xb1,0x64,0x3e,0xfe,0xf5,0x33,0xf9,0xd6,0x2,0x59,0xcc,0xca,0xcf,0x94,0xdf,0x2a,0xd2,0xa3,0xcd,0xf2,0xc7,0x66,0xf5,0xaf,0x39,0xf0,0x3c,0xbc,0x1b,0x32,0x69,0x2a,0x3,0xb0,0x56,0xad,0x5a,0x2f,0x8e,0xde,0xb6,0x3e,0x82,0x5a,0xb5,0x6a,0xd5,0x3a,0x5d,0x89,0x19,0x6c,0xb2,0xce,0x9d,0x17,0xd5,0x69,0xfe,0x93,0xe6,0xdd,0xfe,0xc4,0xac,0x4,0x1,0xbd,0x4,0x88,0x31,0xc6,0x20,0xa6,0xa0,0xcd,0x8f,0x84,0x7e,0x10,0x48,0xd4,0x14,0xc9,0x84,0xd2,0x64,0xe4,0x93,0x9b,0xc9,0x99,0xd9,0x86,0x2,0xb4,0x29,0x33,0x2,0x4,0x38,0xe5,0x94,0x58,0xa2,0x39,0x91,0xfc,0x38,0x6,0x50,0x8,0x31,0xb1,0xe2,0x52,0x24,0x26,0xc7,0x6e,0xdf,0xe3,0x2b,0x5f,0xff,0xc6,0xd1,0xf1,0xcf,0x36,0x2d,0xde,0xf1,0x96,0x27,0x68,0x49,0x2d,0x92,0xde,0x71,0xc0,0xd0,0xef,0x28,0xc0,0xc4,0x39,0x0,0x19,0xd3,0xd0,0x63,0x7b,0xe7,0x16,0x6,0x66,0x83,0x2d,0x64,0x9b,0xec,0x6b,0x17,0x63,0x60,0xc6,0x97,0xc1,0x38,0xf4,0xca,0x56,0xbc,0x1b,0xc8,0x63,0x9d,0x63,0xa9,0x2d,0x31,0x41,0xe8,0xf8,0x4,0x6a,0xed,0xae,0xee,0xa0,0xdf,0x5d,0x31,0x33,0x70,0x9c,0xa5,0xc1,0x61,0xe2,0x70,0x11,0xa8,0x61,0xfb,0x29,0x1f,0x3c,0xf5,0xa7,0x3,0xa5,0xd9,0xc6,0x18,0xb0,0xdf,0x5e,0x6a,0xf0,0x87,0xf8,0x3b,0x8e,0xfd,0x1e,0xd6,0x50,0xe0,0xca,0xc4,0xd2,0xdf,0xa6,0x69,0xf0,0xc3,0xef,0xf8,0xfe,0x23,0x30,0xef,0xb3,0x9f,0xff,0x22,0xfe,0xef,0x7f,0xf7,0x87,0x18,0x86,0x41,0x19,0x1c,0x29,0x12,0xb8,0x17,0x63,0x64,0x36,0xdd,0xca,0xbd,0x4a,0x4a,0x6e,0x22,0xff,0x46,0xe7,0x3d,0xa6,0x81,0xd2,0x8f,0x13,0xfb,0x2,0xe2,0x84,0x94,0x59,0xd8,0x30,0x96,0x13,0x88,0xc7,0x61,0x4f,0xec,0x41,0x83,0xf5,0x36,0x8b,0x1b,0x9b,0x18,0x26,0xf6,0xa9,0xca,0x5,0x53,0x90,0x40,0xbc,0xed,0xd5,0x2d,0x5,0x8f,0x77,0x57,0xb7,0x57,0x19,0xd,0x89,0x81,0x3e,0x2,0xf6,0x82,0x2,0x98,0x31,0x90,0x9c,0x38,0x86,0x9,0x43,0xbf,0xa3,0xe0,0x14,0x66,0xe1,0x78,0xdf,0x28,0x60,0x2e,0xde,0x8a,0x96,0x3,0x58,0x66,0x9f,0x2b,0xc3,0x6c,0xc7,0xea,0x3,0x58,0xab,0xd6,0xb,0xad,0x5c,0x62,0x33,0x8b,0xc4,0x5b,0x49,0x4,0xcf,0x33,0x80,0xc3,0xc0,0x98,0xb1,0x76,0x1,0x66,0x9,0x3,0x59,0xec,0x11,0xb2,0xf8,0xf2,0x61,0x66,0xc6,0x4b,0xea,0xfd,0x2,0x11,0x29,0xe6,0xc3,0x72,0xcc,0x25,0x5f,0xc1,0xb4,0x90,0x1e,0xcf,0x73,0x58,0x54,0x9,0x6f,0x98,0x26,0x34,0x6d,0xcb,0x36,0x7,0x56,0x6d,0x28,0x28,0x6c,0xcb,0xe9,0xcf,0x58,0x6b,0x59,0xad,0x9c,0x8a,0x39,0x25,0xab,0xd7,0x1f,0x94,0x99,0x86,0x45,0xa2,0xb1,0xe0,0x6e,0x62,0xf1,0x40,0x8c,0x47,0xbb,0xd8,0x38,0xb1,0xe2,0x5b,0x68,0x66,0x70,0x69,0xf6,0x44,0xe5,0xf0,0x22,0x6,0x3a,0x5,0xb8,0x13,0x20,0x6f,0x96,0x34,0x1b,0x2c,0xb2,0x34,0x56,0x3,0x28,0xe,0x3,0x2d,0xd2,0x71,0x5c,0xef,0x1,0xc0,0x76,0x78,0xc,0x91,0x2a,0x1f,0xc0,0x82,0xca,0x6c,0x2c,0x3,0x60,0xf4,0x38,0x19,0xc5,0x7b,0x3d,0x83,0xa0,0x25,0x0,0x7c,0x2c,0x43,0x7e,0x2e,0x31,0x1d,0xa7,0x31,0xb0,0xfc,0x9c,0x7e,0xea,0x5e,0xaf,0xcc,0xcf,0xf1,0x47,0x8a,0x67,0x9b,0xf3,0xd1,0xe7,0x53,0x7f,0x41,0xe,0xdf,0x9f,0x83,0x20,0x15,0x73,0xea,0x77,0x6b,0x6d,0x72,0xad,0xd6,0x15,0xb5,0x6a,0xd5,0xaa,0x0,0x60,0xad,0x5a,0xb5,0x6a,0xfd,0xd,0x68,0xa4,0x72,0xd2,0xb6,0x89,0x0,0x90,0xd9,0xff,0x88,0xa4,0xbc,0xb6,0x60,0x32,0x70,0x83,0x93,0x93,0x36,0xc,0x22,0xb9,0x4d,0x91,0xbc,0xda,0xca,0xe6,0x27,0x25,0x92,0x5b,0x19,0x6b,0x59,0x66,0x9b,0xa,0x79,0xd0,0xfa,0x62,0x52,0x80,0x2e,0x69,0x7a,0xa6,0x61,0x28,0x82,0x40,0x82,0x2e,0x4c,0xbb,0xb3,0x73,0x8c,0x43,0xf,0x67,0x1d,0x9c,0x73,0xf0,0x4d,0x33,0x37,0x3d,0xbc,0xfb,0xfd,0xbe,0xf,0x7f,0x9c,0xbc,0x8c,0xe,0xea,0x7,0xdf,0xf2,0xdd,0xf8,0xee,0xd7,0x3c,0x3a,0x33,0xd3,0x40,0xf2,0xde,0x38,0x4d,0x98,0x86,0x9e,0xfd,0xf9,0xc4,0x9b,0x2f,0xab,0x17,0xdc,0x34,0xf6,0x48,0x29,0xe2,0x6c,0xd3,0xe1,0xdd,0x6f,0x7f,0x23,0x1e,0x7e,0xd9,0x4b,0x61,0xc,0x49,0x68,0xa7,0x71,0xc0,0xb0,0xdf,0x21,0xa5,0x84,0x14,0xa7,0x55,0x50,0x4b,0xc0,0x4d,0x1,0x1,0xbd,0x6f,0xe0,0x3d,0xb1,0xd5,0x86,0xfd,0xe,0x99,0x19,0x82,0xbb,0xed,0x25,0xf6,0xdb,0x4b,0xec,0xae,0xee,0x10,0xa0,0x98,0x28,0x6d,0x52,0x0,0xcb,0x65,0xf7,0x7b,0x8,0x9e,0x42,0x53,0x28,0x65,0x71,0x1f,0x43,0x40,0x8,0x13,0x9c,0xf3,0xd8,0x5d,0xde,0xc1,0xc8,0x20,0xe5,0xd5,0xe5,0xb3,0xc8,0x89,0x2,0x33,0x42,0x98,0xf0,0xda,0x57,0xbd,0x2,0x2f,0x79,0xe0,0xe6,0xd1,0x71,0xff,0xf4,0x63,0x9f,0x42,0xe4,0x86,0x2a,0x4c,0x23,0x25,0xe4,0xa6,0xc8,0xc6,0xf3,0xb3,0x77,0xd5,0xea,0xfb,0xc9,0x20,0xb0,0x75,0xe,0xc3,0xb0,0x57,0x26,0x4c,0xe4,0xd7,0xae,0x35,0x15,0x92,0xe8,0x9c,0x73,0x56,0xc9,0x6f,0x8a,0xc4,0xa8,0xb,0xd3,0x78,0x57,0xa7,0x25,0x23,0x0,0x36,0x32,0xfa,0xdd,0x15,0x72,0x22,0xa0,0xd2,0x3a,0xaf,0xb2,0xb8,0x30,0x8d,0x27,0xe5,0x4c,0xc6,0xcc,0x5e,0x8a,0x29,0x25,0xc,0xfb,0x1d,0xa6,0x71,0xc4,0x34,0xd,0xd8,0x5d,0xdd,0xc1,0xd8,0xef,0x11,0xa7,0x9,0x21,0x6,0x6e,0xfa,0xb1,0xf0,0x1d,0x9c,0x26,0xf2,0xae,0x4c,0x39,0x21,0x85,0xa0,0xa9,0xa2,0xd6,0x5a,0xd8,0xe6,0x1c,0x95,0x42,0x51,0xab,0xd6,0x7d,0x99,0xb8,0xa,0x10,0xa4,0x90,0x71,0x5a,0xcb,0xf0,0x15,0xc7,0x53,0x88,0xc5,0x80,0x39,0xe0,0x86,0x19,0xb1,0x6e,0x20,0x20,0x5f,0x2,0x7c,0x66,0xa9,0xe8,0xc,0x1a,0x36,0xd,0x5,0x56,0x59,0xeb,0x8,0x10,0xe3,0x90,0x2b,0xcb,0xb6,0x9,0xc6,0x58,0x78,0xcf,0x49,0xf7,0xc6,0xc0,0x35,0xad,0x6,0x6a,0x19,0x33,0x33,0x1,0x1d,0x8f,0x41,0xc2,0x20,0x13,0x5b,0xc,0xd9,0x38,0x93,0xd,0x32,0x1,0xec,0x64,0x7e,0x32,0xd6,0x2a,0x9b,0x5e,0x80,0x2d,0x53,0x1e,0xdb,0x3a,0xdd,0x57,0x98,0x37,0x86,0xe,0x2,0x29,0x78,0x8c,0x5a,0x48,0x5e,0xad,0x51,0x66,0x61,0x66,0x16,0xb7,0x32,0xf4,0x90,0x8b,0x8d,0xb8,0x19,0x12,0x92,0xd7,0xca,0x9c,0xac,0x5e,0x86,0x38,0x8,0xd7,0x30,0xe6,0xe0,0x7a,0x0,0x98,0xbb,0xb0,0xf3,0xee,0xf9,0x76,0xe7,0xa3,0xd7,0x88,0x65,0x9d,0xde,0x53,0xe1,0xcd,0x7a,0x90,0x4b,0xbc,0x7a,0x9c,0xfc,0xd7,0x3a,0x16,0x3f,0xd7,0x8d,0x9e,0x12,0x94,0xcb,0xa7,0x9f,0x4b,0xc9,0xa4,0x54,0xb9,0x75,0x9,0xf2,0x89,0x16,0xfc,0x9b,0xbf,0xb2,0xfc,0x5c,0x7e,0xcf,0xca,0x73,0xd6,0xaa,0x55,0xab,0x56,0x5,0x0,0x6b,0xd5,0xaa,0x55,0xeb,0xc5,0xdd,0x48,0x95,0x1e,0x37,0xb6,0x30,0x7,0x97,0xef,0x2b,0x3,0xae,0x94,0xfd,0x28,0xb8,0x34,0x71,0xca,0xaf,0x83,0xf5,0x9e,0x64,0xaa,0x79,0x96,0x13,0xc5,0x18,0x30,0xd,0x3d,0x83,0x84,0x1,0xc6,0x0,0xd3,0x38,0x72,0xf2,0xe2,0xca,0xe5,0x30,0x43,0x4b,0x9a,0x1f,0xdf,0x34,0x2c,0xc3,0xec,0x35,0x74,0x24,0xa5,0x88,0xa6,0xdb,0x14,0x81,0x12,0x96,0xd3,0x5f,0xe7,0x6b,0x9a,0xc6,0x1,0x1f,0xf9,0xe4,0x67,0xf1,0xe4,0x37,0x9e,0x3e,0x3a,0x47,0xdb,0x36,0xf8,0xb9,0x1f,0xff,0x21,0xbc,0xf6,0xf1,0x87,0x58,0xb2,0x1b,0x35,0x1c,0x62,0x1c,0x7a,0x18,0x18,0x84,0x10,0x18,0x84,0x4a,0xca,0x24,0xeb,0xba,0xd,0x7e,0xf8,0x6d,0xaf,0xc7,0x7f,0xf9,0x4f,0x7f,0x1e,0x3f,0xf9,0xee,0x77,0x2,0x39,0xb2,0x4f,0xa1,0x78,0xdb,0x1,0x63,0xbf,0x5f,0xa4,0x2e,0x96,0x8d,0x47,0x6,0x10,0xc2,0x44,0xf2,0xd4,0x4c,0x12,0xd9,0x9c,0x89,0x71,0xe6,0x7c,0x83,0xdd,0xd5,0x25,0x9c,0xf7,0x8,0xe3,0x40,0x12,0xb1,0xcd,0x19,0x52,0x8c,0x70,0xde,0x69,0xc2,0xae,0x36,0x64,0x66,0x3d,0x3d,0x37,0x84,0x11,0x89,0x83,0x4a,0x72,0xc1,0xa4,0x4,0x80,0x7e,0xbf,0x5d,0x30,0x1e,0xe9,0xb9,0x4d,0xe4,0x3f,0xe8,0x3d,0x1e,0x7e,0xe9,0x4d,0x6e,0x64,0x97,0xb5,0xdb,0x12,0x2b,0x71,0xec,0xf7,0xc8,0xc8,0xf0,0x4d,0xb,0xdf,0xb4,0x18,0xfa,0x3d,0x33,0x21,0xe3,0x49,0x26,0x81,0xbc,0xa7,0x30,0x86,0x24,0xd6,0xd3,0x44,0x80,0xe4,0x34,0xad,0x87,0x79,0x80,0x9a,0xd0,0xc8,0x20,0xa3,0x65,0xf0,0x78,0x36,0xdd,0xf7,0x27,0xdb,0x90,0x14,0x49,0x5e,0x1c,0x63,0xe0,0xe7,0xd6,0xe8,0x33,0x10,0x4f,0xc7,0xdd,0xe5,0x1d,0x18,0x18,0x38,0x7e,0xbf,0x8e,0x4f,0x4e,0x8d,0x75,0xd3,0x76,0x70,0xce,0xb3,0xe4,0x3c,0x62,0x7b,0x29,0x89,0xcf,0x3d,0xa6,0x40,0x40,0xb1,0x78,0x47,0x96,0xbf,0x2b,0x56,0x58,0x34,0x7,0xd,0x5c,0xc,0x1,0x69,0xdc,0xd6,0xf1,0xa6,0x56,0xad,0xfb,0x50,0x87,0x36,0x0,0x6,0x12,0x58,0x91,0x14,0x1c,0x83,0x2,0x43,0xcc,0xc,0x67,0x69,0xad,0xb0,0xde,0x4a,0x56,0xbb,0xb2,0xf0,0x78,0xfc,0xf3,0x4d,0x8b,0x94,0xd8,0xff,0x73,0x1a,0x68,0x1c,0xe0,0xb1,0x44,0x0,0x41,0x9a,0x8f,0x8,0xec,0x4b,0x5,0x3,0x98,0x36,0x6a,0x22,0xca,0xa8,0x8,0x61,0xe0,0xc9,0xb8,0x24,0x1b,0x6,0xce,0x35,0xc8,0x91,0xc2,0x47,0xa0,0xde,0x7d,0x5,0xb,0x71,0x11,0x9c,0x41,0xa9,0xe8,0xe2,0xd7,0x9a,0x72,0x9a,0x65,0xb7,0x2a,0x63,0xc6,0x1,0x23,0x2f,0x73,0x78,0x97,0x23,0xa0,0x51,0x19,0x71,0x7c,0xbc,0x34,0xcf,0xed,0x32,0x57,0xc8,0x18,0x36,0xb3,0xfe,0xa0,0xa0,0xe7,0xbc,0x39,0x68,0x97,0x81,0x61,0xd6,0xe2,0x30,0xf,0x64,0xc1,0xb6,0x2b,0x27,0x84,0xbb,0xa6,0xa1,0x1f,0xcb,0x72,0x17,0x40,0xa2,0x84,0x72,0x98,0x59,0xa2,0xbb,0xf4,0x17,0x2c,0xe7,0x11,0xf3,0xbc,0x61,0xb9,0xfb,0xb0,0xb0,0xc2,0x92,0x4b,0x97,0x57,0x0,0xbe,0x3,0x59,0x6f,0x5e,0x3,0xdf,0x70,0xa8,0xb3,0x56,0xdf,0xc6,0xc3,0x89,0xb6,0xc,0x5e,0x59,0xc3,0x11,0xf3,0x89,0xab,0x33,0x2b,0x57,0x7b,0xc4,0x67,0xac,0xec,0xbf,0x5a,0xb5,0x6a,0x55,0x0,0xb0,0x56,0xad,0x5a,0xb5,0xfe,0x66,0x14,0x35,0x1c,0xd0,0x86,0x43,0x16,0xd5,0xd2,0xc8,0xc8,0xc2,0xff,0x70,0x35,0x29,0xd,0x8d,0x34,0x29,0x0,0x18,0x74,0x2,0xa5,0xf,0xf2,0xbf,0x1,0x10,0xd8,0x92,0x33,0x8c,0x75,0xda,0xfc,0x9c,0xa,0x7f,0xc8,0x39,0x73,0xf3,0x15,0x91,0x42,0xc4,0xc8,0x12,0x4c,0xcf,0x4d,0x97,0x0,0x6c,0xfb,0xed,0xa5,0x32,0xe6,0xa6,0x69,0xd0,0x10,0xe,0x1,0x95,0x9c,0x73,0x48,0xd9,0xe2,0x37,0x7f,0xe7,0x7d,0x2c,0x21,0x5e,0xd6,0xb5,0xf3,0xd,0xfe,0xf1,0xcf,0xbe,0xb,0xff,0xe0,0x47,0xbe,0xf,0xf,0xdf,0x3c,0x47,0x4e,0x1,0xd0,0x46,0x90,0x1a,0xc9,0x30,0x51,0xe0,0xc8,0x83,0xd7,0x37,0xf8,0xbb,0xef,0x7c,0x33,0xfe,0xeb,0x7f,0xf6,0xb,0xf8,0xa5,0x7f,0xf0,0xe3,0x78,0xc5,0xcb,0x1f,0x26,0x6f,0x42,0xeb,0xe0,0xac,0xc7,0xf9,0xb5,0x9b,0xca,0x72,0xd4,0x67,0xb2,0xd2,0x7a,0x38,0xe7,0xb9,0xd1,0x3,0x62,0x9c,0x90,0xa,0x20,0xcc,0x58,0x8b,0xa6,0x6d,0xe9,0xbe,0x0,0x65,0x5b,0x9e,0x5d,0xdc,0x40,0x9c,0x88,0x3d,0x99,0xb8,0x51,0x74,0xde,0x9f,0x60,0x4e,0xd0,0xd7,0xf6,0xbb,0x2b,0x65,0xda,0x65,0xf6,0x53,0x14,0x50,0x95,0x7c,0xec,0x28,0x14,0x84,0x98,0x8d,0x19,0x9b,0xb3,0xb,0x58,0x63,0xd1,0x36,0xeb,0xa0,0xd8,0x13,0xdf,0xf1,0x1a,0x78,0xdf,0xc2,0xb7,0x1d,0xbf,0x8f,0x56,0xbd,0x6,0xd,0xc,0xae,0x5d,0xbb,0x58,0x6d,0xb6,0x2c,0x37,0xdc,0x4d,0xdb,0xc1,0xfb,0x6,0x9b,0xf3,0xb,0x92,0x3e,0xf3,0xf3,0x21,0xb0,0x6e,0x5a,0x6d,0xee,0xad,0x6f,0x66,0x3f,0x2e,0x66,0x8e,0xd2,0xe7,0x2b,0xa9,0xd1,0xfe,0xe1,0xad,0xb,0x33,0x15,0xc6,0x10,0x60,0xc8,0x1e,0x92,0xe4,0x61,0x19,0x14,0x70,0x9d,0xa6,0x91,0x4d,0xfd,0x4f,0xb3,0x16,0x9d,0xf3,0x70,0x4d,0xa3,0xc,0x9b,0x6e,0x73,0x86,0x30,0xd,0xd8,0x6f,0x2f,0x15,0x5c,0x15,0xbf,0x47,0x95,0x5d,0xeb,0xef,0x84,0x51,0x49,0x3d,0xfd,0xe,0xd9,0xd9,0x3,0x6c,0x2d,0xc0,0xa4,0x56,0xad,0x5a,0xdf,0x1c,0xbc,0x52,0x4a,0x3f,0xb,0xc6,0xb9,0xa4,0xd5,0x96,0x29,0xa7,0x92,0x26,0x2f,0x96,0x16,0x12,0x9e,0x31,0xcb,0x7f,0x9b,0x99,0xd9,0xc6,0x63,0x86,0x30,0xf4,0x84,0x89,0x2c,0x16,0x14,0xc2,0xda,0xb,0x61,0xd4,0xd7,0x2b,0x43,0xf,0x33,0x58,0xe7,0x59,0xfe,0xaf,0x6c,0x77,0x61,0xd1,0xdb,0xd9,0x16,0x41,0xc6,0x78,0xdf,0xb4,0xb4,0x39,0x6,0x3,0xef,0x3d,0x72,0x8e,0x7a,0x5e,0x62,0x7,0xce,0xe0,0x97,0x84,0x88,0x18,0x6b,0xe1,0xac,0x57,0xcf,0x3a,0x3a,0x16,0x79,0xd8,0x41,0x42,0x3e,0x58,0xa6,0x9b,0x53,0xd6,0x4d,0x2e,0x3a,0x2f,0xa,0xa6,0xa3,0x65,0x56,0x22,0xf3,0x26,0xad,0x30,0x0,0x8d,0x3e,0x42,0x1,0x1c,0x73,0x1,0x19,0x89,0xb4,0xd9,0xf2,0xfc,0x4f,0x63,0x72,0x11,0x3e,0x62,0x64,0xfc,0x9b,0x99,0x99,0xea,0x3,0x28,0xeb,0x8e,0x43,0xa0,0x4f,0x52,0x89,0x31,0x33,0xf,0xcd,0x21,0x76,0x26,0x72,0xe8,0xbc,0x84,0xf4,0x4c,0xc1,0xf0,0x3c,0x5,0x8,0x1e,0xc3,0x5a,0xcf,0xe3,0x43,0x77,0xf2,0xeb,0x79,0xe5,0xe8,0xe6,0xe0,0x3a,0xcd,0xc,0xde,0xdd,0xcd,0x30,0x50,0xce,0x63,0xb0,0x22,0xf3,0x3d,0xc8,0xec,0x58,0x59,0x3f,0xad,0xfd,0x5c,0xbe,0xc7,0xfd,0xaf,0x43,0xa5,0xc5,0xc,0x79,0xe0,0x3,0x59,0xab,0x56,0xad,0x5a,0xdf,0xaa,0x55,0x43,0x40,0x6a,0xd5,0xaa,0x55,0xeb,0x5e,0x6b,0xda,0x62,0xe7,0x59,0x99,0x6b,0x1c,0x8,0x32,0x2f,0x3c,0xd3,0x22,0x10,0x24,0xa5,0x84,0x69,0x9a,0xd0,0xb4,0x9d,0xfa,0x6,0xaa,0x81,0x3a,0xad,0xf6,0x55,0x5a,0x95,0x13,0xc9,0x39,0x29,0x61,0xb7,0xd1,0xd0,0x10,0x63,0x4e,0x3,0x21,0xd4,0x84,0x59,0xa4,0x3c,0xe9,0x35,0xa5,0x18,0x31,0x8e,0x14,0xf0,0x40,0x12,0x51,0x32,0x68,0xf7,0x4d,0xab,0x5e,0x73,0x2,0x1e,0x52,0x18,0xc6,0x4,0xeb,0x3c,0x3e,0xf4,0xc9,0x2f,0xe1,0x90,0x26,0x6e,0xf,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x7b,0x3f,0xf5,0x39,0xbc,0xf1,0xbb,0xbe,0xe3,0xe8,0x3c,0x6d,0xd3,0xe0,0x1d,0xdf,0xf7,0x6,0xbc,0xf5,0x8d,0x4f,0xe0,0xc9,0xa7,0x9e,0xc1,0x57,0xbf,0xfe,0xd,0xdc,0xbe,0x7d,0x7,0xe3,0x34,0xe1,0x6c,0xb3,0xc1,0x4b,0x1f,0x7c,0x0,0x8f,0x3c,0xf4,0x20,0x5e,0xfa,0xe0,0x3,0xe8,0xda,0xf6,0x8,0xe4,0x72,0xbe,0x81,0xf5,0xc4,0x48,0x6b,0xbb,0xd,0x7c,0xd3,0x92,0x7c,0x38,0xa5,0xd5,0x27,0x2d,0xcc,0x44,0x4a,0x9a,0x5c,0xb2,0x1b,0x62,0xc,0x94,0x2a,0xeb,0xc8,0x27,0xcf,0xfb,0x6,0x21,0x4c,0x18,0xf6,0x5b,0xf8,0xb6,0x83,0xb5,0x16,0xed,0xd9,0x85,0x6,0xa4,0xac,0x2d,0xc6,0xd,0x27,0x13,0xb7,0xdd,0x46,0x4d,0xd3,0x13,0xcb,0x86,0xc7,0xa1,0x2f,0x3c,0x92,0xa8,0x79,0xa3,0x73,0x8c,0xc0,0x3e,0xe3,0xfc,0xda,0xd,0x3c,0x7d,0xeb,0x52,0x93,0x2b,0xcb,0x7a,0xf3,0x9b,0xbe,0x1b,0x1f,0xfc,0xb3,0x4f,0xe3,0xb3,0x5f,0x7b,0x16,0xd3,0x34,0xc2,0x4e,0xd4,0xfc,0xa6,0x10,0xf0,0xfa,0x6f,0x7f,0x5,0x7e,0xfe,0x27,0x7f,0x18,0xce,0xb9,0x15,0x20,0x8d,0xd2,0x30,0x8d,0xb5,0x78,0xec,0xc1,0x9b,0xe8,0x1a,0x87,0x8f,0xff,0xe5,0x97,0x1,0x4,0xc4,0x10,0xf8,0x33,0xb2,0xf2,0x3a,0x6b,0x95,0x21,0x9a,0x12,0x85,0xb3,0x64,0x5,0x99,0xa7,0xd5,0x36,0x46,0x53,0x30,0x39,0xf5,0x52,0x98,0x83,0x31,0x92,0xfc,0x39,0x31,0x40,0x47,0xcc,0x3f,0x92,0x93,0xdb,0x95,0x10,0x10,0x63,0xc,0x7c,0xbb,0x41,0xc,0x23,0x7c,0x6a,0xd1,0x76,0x1b,0xc,0xfb,0x1d,0x90,0x81,0xab,0x3b,0xb7,0xd1,0x76,0x1d,0xa7,0x43,0xf,0xca,0x12,0x14,0xa0,0xd2,0xb9,0x39,0xbc,0xc5,0x7b,0xaf,0x9,0xd5,0x22,0x95,0x73,0xdd,0x5,0xc2,0xfe,0x56,0x1d,0x74,0x6a,0xd5,0x7a,0xa1,0xb,0x7c,0x66,0xf0,0x96,0xe0,0x6,0x1,0x6b,0x59,0xd3,0x6d,0xd,0xc,0x8c,0xb3,0x4,0x4e,0x19,0x3,0xc3,0xbf,0x8b,0x56,0x40,0x2a,0x80,0xe5,0xbf,0xd3,0x1c,0xde,0x71,0x18,0xe,0x91,0x29,0xe0,0x6a,0x1,0xae,0x18,0xa0,0x69,0x37,0x6a,0x87,0x61,0xac,0xa3,0xdf,0xff,0xa6,0x25,0xc0,0x8b,0xa7,0x9,0x6b,0xc8,0xdf,0x2f,0xc6,0x40,0x49,0xe9,0x39,0x33,0x93,0x99,0xc6,0x22,0xcb,0xb2,0xca,0xc4,0x73,0xa4,0xa4,0xb,0x1b,0xe3,0x16,0x73,0x8d,0x86,0x60,0xe4,0xd2,0xdb,0x30,0x21,0x22,0xa9,0xf7,0xa1,0x58,0x77,0xc8,0x3c,0x20,0x20,0xa0,0x48,0x87,0x73,0x8a,0xf4,0x6c,0x44,0x9a,0x6b,0xf9,0xb9,0xf0,0x58,0x2f,0xe3,0x94,0x81,0xd5,0x73,0xc2,0x58,0xe4,0x14,0x54,0xc2,0x8c,0x7c,0xcc,0xc8,0x3b,0x4e,0xd0,0x4d,0x3a,0x1b,0xe9,0xda,0x60,0xf1,0x73,0x3c,0xb6,0x1b,0x33,0x6b,0x78,0xf,0xbc,0xf9,0x84,0x79,0x58,0x26,0xee,0xea,0x9b,0xc1,0xef,0xe3,0x1c,0xd4,0x71,0x1a,0xec,0xbb,0xd7,0xca,0xe7,0x9b,0xe6,0x3,0x9e,0x62,0x2e,0x96,0xd7,0x7,0x14,0xe9,0xbb,0x7,0xe7,0x5a,0x5c,0xa3,0xa4,0xf3,0xe6,0x63,0x64,0x4e,0xde,0xf0,0xc3,0x74,0x91,0x7c,0xa,0xac,0x7b,0x4e,0x2e,0x82,0x27,0xbf,0x9f,0xef,0xf1,0x7c,0xf2,0xc9,0xb3,0xd6,0xaa,0x55,0xab,0x56,0x5,0x0,0x6b,0xd5,0xaa,0x55,0xeb,0x45,0x88,0x0,0xe6,0x83,0x2e,0x63,0x36,0xf,0x2f,0xe2,0xe2,0x20,0xfe,0x6a,0x89,0x4d,0xce,0x9d,0x23,0x16,0x9a,0xb0,0x2d,0xc,0xf2,0x9c,0x16,0xec,0x2c,0xa6,0x91,0x0,0xb8,0x94,0x12,0x2c,0x3,0x24,0x96,0xd9,0x13,0xce,0xb9,0x55,0x9f,0xbc,0xb2,0x91,0x50,0xdf,0x19,0x83,0x2,0x48,0x21,0x90,0x72,0xe8,0xf7,0x68,0x9a,0xe,0x4d,0xb7,0xe1,0x34,0x45,0x4a,0xb4,0x55,0x36,0x83,0x9f,0xfd,0xea,0x72,0xf6,0xf8,0x17,0xff,0xea,0x77,0xf1,0x5f,0x3c,0xf8,0x0,0x1e,0x79,0xf8,0xa5,0xab,0xe7,0x3c,0xdb,0x74,0x78,0xd5,0x63,0x8f,0xe2,0x55,0x8f,0x3d,0xfa,0x4d,0xf6,0xf,0x94,0xfc,0x9a,0x53,0x86,0xf3,0x16,0x51,0xc0,0xbf,0x13,0xc0,0x12,0xa,0xf9,0x2e,0x35,0x9e,0x59,0x65,0x61,0xe2,0x17,0x97,0x91,0xd1,0xef,0xb7,0xd8,0x9c,0x5f,0x63,0x2,0x0,0x85,0x51,0x78,0xef,0xd5,0x7b,0xf,0xe6,0xda,0x89,0x66,0x84,0x1a,0x35,0x62,0xe7,0x6d,0x30,0x8d,0xbd,0x6,0x58,0x48,0x73,0x29,0x2c,0x3a,0xe0,0xc,0x29,0x27,0x34,0x4d,0x8b,0x76,0x73,0x8e,0x8c,0x8c,0xbf,0xfc,0xf2,0x93,0xb8,0xda,0xee,0x70,0xe3,0xfa,0x32,0x39,0xf9,0xe2,0x6c,0x83,0xff,0xec,0x97,0xfe,0x1e,0x7e,0xeb,0xf7,0x3f,0x80,0x4f,0x7c,0xf6,0x6b,0xc8,0x30,0x78,0xf4,0xa1,0x7,0xf0,0x3d,0xdf,0xf5,0x1a,0xbc,0xfe,0xb5,0xaf,0x46,0xd7,0xb5,0xab,0x8f,0xe8,0x55,0x8f,0xbd,0x1c,0x6f,0x7c,0xe2,0x31,0xbc,0xe1,0x89,0xc7,0xf1,0x96,0x37,0x7e,0x27,0x7e,0xeb,0xf7,0xde,0x8f,0x4f,0x7e,0xfe,0x6b,0x14,0xa2,0xe1,0x3c,0xcb,0xb6,0xf3,0xea,0xb3,0x15,0x49,0xb6,0x0,0x6d,0x43,0xbf,0xa3,0x4,0xcd,0x13,0x4d,0x58,0xca,0xf4,0x19,0x49,0xc,0x6e,0x4a,0x40,0x89,0x24,0x38,0x3,0xc0,0xd4,0xef,0x71,0x76,0x7e,0x4d,0x19,0x38,0x6b,0xcc,0x50,0x64,0x20,0xc5,0x49,0xc1,0xea,0x99,0x71,0x63,0xd0,0x6d,0x36,0xb0,0xce,0xa3,0xdf,0x5d,0xaa,0x34,0x3d,0x4c,0x23,0x31,0x5,0xd9,0x68,0x3e,0xc6,0x80,0xa6,0xed,0x48,0x16,0x5f,0xb0,0xc,0x5d,0xd3,0x1,0xdb,0x2a,0x1,0xae,0x55,0xeb,0xfe,0x4c,0x5b,0x69,0x9,0x5d,0x48,0x32,0xbd,0x4,0x64,0x48,0x3a,0x5,0x33,0xc6,0x6c,0x91,0x6c,0x2f,0x8c,0x36,0x18,0xa3,0x92,0x5c,0x9,0xa6,0x72,0x9e,0x18,0x77,0xc2,0xec,0x95,0x40,0x20,0xd,0xca,0x10,0xdf,0x3f,0x6b,0x14,0x18,0x11,0x26,0x5f,0xe4,0x31,0xcb,0x1a,0x8b,0x10,0x2,0x9c,0x73,0x88,0x21,0xb0,0xd4,0xd7,0x6b,0xd2,0xaf,0x80,0x41,0x2,0x1c,0x4a,0xd8,0x93,0x91,0x4d,0xb3,0xc2,0xcf,0x70,0xde,0x5c,0x70,0xf3,0x78,0x95,0x12,0xac,0x6f,0x18,0xd8,0x84,0x32,0x5,0x8d,0x21,0xa6,0xb3,0xc6,0x7a,0x30,0xf8,0x47,0xd6,0x1b,0x94,0x46,0x6c,0x79,0xbe,0x2a,0xe7,0x24,0x53,0x78,0xe7,0x2d,0x92,0x78,0xe5,0x79,0xf1,0xe6,0x1f,0x8e,0xc2,0xa7,0xcc,0xfc,0xec,0xf5,0x38,0x47,0xb0,0xec,0xcc,0x7e,0x66,0x36,0xe4,0x32,0x8c,0xe5,0x38,0xd0,0x6a,0x4e,0x23,0x3e,0x4,0x15,0x97,0x73,0xa9,0x80,0x9d,0xcf,0xcf,0xcb,0xcf,0x3c,0x3f,0x20,0xb0,0x5c,0x13,0x95,0x4c,0x3e,0x35,0x42,0x2c,0x90,0xe3,0x92,0xfd,0x77,0x38,0xcf,0xe5,0xbc,0xe,0xb7,0xe5,0x19,0xd6,0xd4,0x43,0x1f,0x2a,0xa8,0x71,0x9c,0x9,0x5c,0x7e,0xfd,0x6e,0x8b,0x16,0x99,0xa7,0x96,0x40,0x65,0x5e,0x39,0xaa,0x1,0x90,0x16,0xf7,0xbc,0x9e,0xd2,0x5c,0xab,0x56,0xad,0x5a,0x15,0x0,0xac,0x55,0xab,0x56,0xad,0x17,0x37,0x10,0x78,0x20,0xf5,0x30,0x9c,0x6c,0x8,0x6b,0x38,0xaf,0x21,0xab,0x1f,0x5b,0x64,0xb9,0x14,0x35,0x22,0x89,0x25,0x9f,0x46,0x83,0x3f,0xd4,0xc4,0xbc,0x68,0x9c,0x9c,0x6f,0x8a,0x6,0x6d,0xe5,0x32,0x38,0x5c,0x22,0x86,0x0,0x18,0xc0,0x59,0x8f,0x21,0xec,0x30,0xe,0x7b,0xec,0xaf,0x2e,0xd1,0x76,0x1b,0x34,0x4d,0x8b,0xa1,0xdf,0x91,0x24,0xab,0x21,0xa6,0x5c,0xc7,0xa9,0xba,0x29,0x6,0x4c,0x99,0x0,0xca,0x14,0x29,0x14,0xe3,0xd9,0x3b,0x57,0xf8,0xe5,0x7f,0xf1,0xeb,0xf8,0x27,0xbf,0xf8,0xd3,0x27,0x41,0xc0,0x6f,0xb6,0xb6,0xbb,0x3d,0xf6,0xfd,0x9e,0x2,0x2a,0x10,0x11,0x3,0xf9,0xd4,0xf9,0xa6,0x41,0xc,0xe3,0xca,0xe3,0xcd,0x2a,0x51,0x56,0x79,0x6e,0x4e,0xa,0x6e,0x8d,0xc,0xd6,0x85,0x71,0xc4,0xf5,0x9b,0xf,0x22,0x86,0x9,0x9b,0xb3,0x73,0x5d,0xac,0xc7,0x10,0xe0,0xdb,0xe,0xdd,0xe6,0xfc,0x60,0xd9,0xbf,0xec,0x69,0x62,0x8,0x68,0x1a,0x4a,0x98,0x24,0xef,0xc6,0xac,0xde,0x56,0xfd,0x7e,0x8b,0x38,0x4d,0x70,0x4d,0x83,0x69,0x1a,0xd1,0x9d,0x5d,0x43,0x8a,0x11,0x61,0x1c,0xb0,0x39,0xbf,0x86,0x29,0x1,0xef,0xff,0xd0,0x9f,0xe1,0xdd,0xef,0x7a,0xc7,0xd1,0xa1,0x2f,0xce,0xcf,0xf0,0xf7,0x7f,0xfc,0x6f,0xe3,0xef,0x4e,0xe4,0x8b,0xe5,0xbc,0x3b,0x9,0xc6,0x49,0xbd,0xfa,0xf1,0x47,0xf1,0x4f,0x7e,0xf1,0xa7,0xa,0x76,0x7,0xb4,0xa1,0x8c,0x61,0x52,0x3,0xfd,0xb5,0x46,0x25,0x86,0x11,0xc6,0x78,0x6,0x93,0x29,0x7d,0x38,0x26,0x92,0xb1,0x9d,0x62,0x3f,0x8a,0xb4,0x4d,0x58,0x23,0xe2,0xcd,0xd8,0xb4,0x1d,0xe2,0x34,0xa1,0xed,0x36,0xf4,0x2c,0x63,0x44,0x77,0xb6,0x2e,0x5b,0xce,0x9a,0xb2,0x49,0x9e,0x61,0x39,0x67,0x62,0x79,0x5a,0x7,0xdf,0xb4,0x98,0x46,0x4a,0x70,0xe,0x13,0xf9,0x38,0x9e,0x5d,0x5c,0x9b,0x59,0x7e,0xc,0x26,0x8c,0x43,0xaf,0xac,0x57,0xcb,0xcc,0xc4,0x14,0x46,0x96,0x99,0xd7,0xaa,0x55,0xeb,0xfe,0x4d,0x59,0xb2,0x31,0x94,0x97,0xa3,0xa2,0xc8,0x6e,0xad,0x55,0x3f,0xa0,0x92,0x65,0xe6,0x7c,0x43,0x41,0x4c,0x4d,0x33,0x33,0x4,0x8d,0x25,0x19,0x2d,0x83,0x1d,0x96,0x1,0x3a,0x23,0xc,0x76,0xe7,0x10,0xc2,0xc4,0x69,0xe4,0xc4,0x44,0x33,0x60,0x3b,0xc,0x60,0x96,0xc4,0x2,0xb0,0x2c,0xed,0xa5,0x73,0xb4,0xb,0xc0,0xc5,0x18,0x1a,0x83,0x74,0xf3,0xcc,0x5a,0x78,0xb6,0x86,0xd0,0x31,0x83,0x37,0xd7,0xb2,0xd8,0x71,0x8,0x8b,0xd8,0x79,0xc0,0x51,0x28,0x92,0xe5,0xff,0xa,0xd3,0x8e,0xae,0x51,0xac,0xf,0xa,0x9b,0xe,0x1,0x3d,0x63,0xd2,0xd,0x3c,0x61,0x91,0x8b,0x74,0x59,0xcf,0x1,0x6,0xdc,0x32,0x90,0x4d,0x54,0xc6,0x9e,0xb5,0xc4,0x64,0xd4,0xd1,0xd6,0xce,0x81,0x24,0xd6,0x1a,0x64,0x5e,0x7,0x94,0xe3,0xf9,0xc,0x66,0x8a,0x3c,0xd7,0x68,0x62,0x31,0xf2,0x12,0xf8,0x53,0x70,0xd6,0x2c,0x25,0xbc,0xc4,0x3c,0xcc,0xb3,0xcc,0xf9,0x90,0x71,0x88,0x17,0xca,0xfc,0x3b,0x60,0xea,0x9,0x98,0x77,0xf8,0x9a,0x23,0x8f,0xc5,0xbc,0xc0,0x0,0x17,0x4c,0x3e,0x1,0x54,0x15,0x95,0xcb,0x47,0x67,0xce,0x27,0xe0,0xc8,0x53,0x57,0xfc,0x5c,0xbe,0xbe,0x76,0xcc,0xbc,0x32,0xbf,0x95,0xc0,0xed,0x1,0xf5,0xf0,0x0,0xc,0x3c,0x58,0xbf,0xd4,0x0,0xab,0x5a,0xb5,0x6a,0xbd,0x8,0xaa,0x7a,0x0,0xd6,0xaa,0x55,0xab,0xd6,0xdd,0x6,0x49,0x6e,0x3a,0xca,0xa5,0x5d,0xe6,0xc5,0x9e,0x34,0x26,0xf2,0x7,0x99,0x17,0xf4,0x89,0x24,0x96,0xc2,0xfe,0x33,0xc6,0xc2,0xb2,0xb7,0x9d,0xb1,0x46,0x1b,0xb,0x61,0x8,0x6a,0x13,0x5,0xa,0xc0,0x90,0xd0,0x8c,0x53,0x6b,0x49,0x61,0xd,0xba,0xa6,0x41,0xc,0x13,0xc6,0x61,0xcf,0xbe,0x81,0x96,0x7c,0xd8,0xc2,0xc8,0xa9,0xbd,0xe7,0x2a,0x63,0x8a,0x21,0x50,0x5a,0xac,0x73,0xea,0x59,0x28,0xcd,0x8a,0x61,0x56,0xe2,0x97,0xbe,0xfe,0x34,0xfe,0xdb,0xff,0xf9,0x57,0xf1,0xc9,0x4f,0x7f,0x6e,0x9d,0xf9,0xf5,0x1c,0x6b,0x1c,0x27,0xfc,0xe9,0xc7,0xfe,0x2,0xff,0xcd,0x2f,0xff,0x9f,0xd8,0x8f,0x91,0xa5,0xbb,0x7b,0x6d,0xf0,0x9c,0x6b,0xd4,0xe7,0xef,0xb0,0x82,0x7a,0x15,0x66,0x5,0x50,0xc7,0x7e,0xf,0x67,0xdd,0x7c,0xcd,0xc6,0x60,0x77,0x75,0x1b,0xbe,0xe9,0xd0,0xef,0x77,0xf0,0x1c,0x64,0x21,0xfe,0x72,0x61,0x1a,0xa9,0xd1,0xc2,0x7a,0x8,0x88,0x75,0x96,0xbd,0xa2,0x1c,0x35,0x83,0x89,0x2,0x3a,0xc2,0x38,0xa2,0xdb,0x9c,0xa1,0xe9,0x36,0xf0,0x9e,0x64,0xd3,0x61,0x1c,0xe0,0xdb,0x4e,0x9b,0xe1,0x30,0x8d,0xf8,0xd5,0xf7,0xfc,0x11,0xbe,0xf0,0xa5,0xaf,0x9e,0xbc,0xff,0xa6,0xf1,0x68,0x1a,0xaf,0xe0,0xdf,0x30,0x4e,0xf8,0x9d,0x3f,0xfc,0x30,0x76,0xfb,0x7e,0xf5,0xe7,0xa5,0xc9,0x4b,0x29,0xa1,0x1f,0x49,0x8a,0xdb,0xb4,0x1d,0x3,0x64,0x69,0xb5,0xbd,0xc9,0x39,0x23,0xc5,0x84,0x69,0x1a,0xb8,0xcf,0xa2,0xe6,0xd2,0x1a,0x2,0x3,0xcd,0x29,0x16,0x60,0x4a,0x8,0x1c,0x4a,0x23,0xc1,0x35,0x43,0xbf,0x47,0x18,0x7,0x24,0x6,0x5f,0x3,0xcb,0xfd,0x2,0xfb,0x0,0xae,0x1,0x89,0xd2,0x0,0x3b,0xeb,0xe0,0xdb,0xe,0x4d,0xd3,0xc2,0xfb,0x6,0xd6,0x7a,0x8c,0xc3,0x1e,0xfd,0xf6,0xa,0x61,0x1c,0x90,0x91,0x31,0xb0,0x5c,0x5b,0x9b,0xd2,0x44,0xf7,0xa7,0x9e,0x5b,0xec,0xc5,0x65,0xac,0x55,0xb9,0x5d,0xad,0x5a,0xb5,0x5e,0x28,0xf8,0x97,0x14,0x54,0x2,0xe6,0xf4,0x6e,0xfd,0x92,0x2,0x7a,0x69,0xe,0xce,0x28,0xa4,0x99,0x31,0x4e,0xec,0x4b,0x37,0xa7,0xf6,0x4a,0x38,0x8,0xc,0xe0,0x7c,0xab,0x3e,0x7c,0x2a,0x81,0x5,0xd0,0xb6,0x1b,0x1e,0x6c,0xb2,0x82,0x84,0xce,0x37,0xe4,0x6d,0xaa,0xc1,0x23,0x50,0x86,0xb0,0xb1,0xc4,0x12,0xb7,0x32,0x8f,0x42,0x7c,0x6e,0x1b,0x9d,0x5b,0x2d,0x8f,0xff,0x64,0xa1,0x61,0xf4,0x35,0xb2,0x59,0x22,0xec,0x46,0x39,0x47,0xe6,0x73,0xd3,0x58,0xe6,0x95,0xf5,0x98,0xd3,0x9c,0xdc,0x2b,0xf7,0x2e,0xf3,0xaf,0x58,0x71,0x18,0x66,0x89,0xe7,0x92,0xd1,0x5f,0x80,0x57,0x74,0x6c,0x3a,0xa7,0x80,0x82,0xf3,0x86,0xc8,0x1c,0xa0,0x22,0x2c,0x48,0x61,0xfd,0xe9,0xeb,0x16,0x7c,0x34,0x5e,0x5d,0x70,0x58,0xc9,0xcc,0xe8,0xcb,0xba,0xce,0x30,0x5,0xe3,0xb1,0x64,0xfa,0xc9,0xfc,0x26,0xaf,0x95,0xe7,0xa6,0x60,0xd4,0x37,0xc5,0x44,0xcb,0x2b,0x50,0xdb,0x81,0x2b,0xde,0x61,0xca,0x70,0xf1,0x67,0x61,0x35,0x9,0x53,0xc8,0x97,0x31,0xb3,0x3a,0xcb,0xb9,0xa4,0x90,0x8a,0xaf,0x29,0x7c,0xf,0x79,0x76,0xe5,0x15,0xdd,0xdd,0xaf,0xef,0x0,0xe4,0xbe,0x7,0x34,0x98,0x17,0x47,0xcc,0x27,0x80,0xd0,0x83,0xb3,0xe7,0x25,0x60,0x59,0xde,0x93,0xa9,0x32,0xe0,0x5a,0xb5,0x6a,0xbd,0x8,0xaa,0x32,0x0,0x6b,0xd5,0xaa,0x55,0xeb,0xae,0x4d,0xd4,0xec,0xef,0x62,0x0,0x5,0x64,0x8c,0xb5,0xcb,0x7f,0xf3,0xa2,0x37,0xb3,0xbc,0x57,0x20,0x43,0xf1,0x37,0x92,0x0,0xe,0x63,0xc,0x22,0x37,0x1d,0xe2,0xc3,0x46,0xa1,0x1c,0xd4,0x34,0x8,0x28,0x88,0x22,0x28,0xe4,0xb0,0x24,0xc4,0x63,0xec,0xf7,0xa,0x42,0x86,0x71,0x50,0x85,0xcd,0xb0,0xdf,0x61,0x77,0x75,0x7,0xd7,0x6e,0xbc,0x44,0xfd,0x9a,0xda,0x76,0xc3,0xcc,0x3b,0x96,0xba,0x22,0xa8,0xdc,0x48,0xc0,0x1c,0xeb,0x2c,0x9e,0xb9,0x7d,0x85,0xff,0xfe,0x7f,0xfb,0xd7,0xf8,0x81,0x37,0x7c,0x7,0x7e,0xe2,0x3f,0x7c,0x3b,0x1e,0x7c,0xc9,0x8d,0x55,0xef,0xba,0x35,0x40,0x6a,0xbb,0xdd,0xe1,0x2f,0x3e,0xf3,0x5,0xbc,0xe7,0xbd,0x1f,0xc2,0x67,0xbf,0xf2,0x94,0xfa,0x46,0x85,0x69,0xd2,0xb5,0x7f,0x4a,0x9,0xe3,0xb0,0x27,0x5f,0xbd,0x15,0x20,0x4c,0x92,0x13,0xc3,0x34,0x12,0xf8,0x9a,0xf3,0xcc,0xaa,0xe0,0x66,0x43,0xe4,0xa3,0x4,0x86,0x3a,0x7e,0x2d,0xb3,0x4a,0x24,0x69,0xd9,0x9a,0xd5,0xa5,0x3f,0xf9,0xfa,0xcd,0xec,0xc8,0x71,0xd8,0xb3,0x34,0x2d,0xc2,0x7a,0x8f,0x7e,0xb7,0xc5,0xb0,0xdf,0x92,0xc,0xb6,0x21,0x16,0x4b,0xc,0x93,0xb2,0x40,0x52,0xca,0x18,0xc6,0x80,0xff,0xe9,0x5f,0xfe,0x5b,0xfc,0xd2,0xdf,0x7f,0x17,0x9e,0xf8,0xf6,0x57,0xc1,0x9d,0x0,0xad,0xa6,0x29,0xe0,0xb3,0x5f,0xfc,0xa,0xfe,0xf5,0xbf,0xff,0x0,0xbe,0xfc,0xf4,0x25,0xac,0x1,0xde,0xf9,0xf6,0xb7,0xae,0xb2,0x2,0x6f,0xdd,0xbe,0xc4,0x7b,0x7e,0xff,0x83,0x78,0xff,0x47,0x3e,0x85,0x9c,0x13,0xfa,0xdd,0xd5,0xec,0xf,0xb5,0xca,0xe6,0x3,0x22,0xcb,0xcc,0x85,0x89,0x67,0x8c,0xc1,0xd5,0x9d,0x67,0xd1,0xb4,0xdd,0x89,0x96,0x87,0x92,0x7e,0xad,0xa5,0xb4,0xcb,0xb1,0xdf,0xf1,0x7d,0x8d,0x8,0xfc,0x99,0x8a,0x61,0xc2,0xa6,0x69,0x31,0xd,0xe4,0xb5,0x68,0x4e,0x0,0xb,0x30,0x86,0x93,0xad,0x3d,0xe2,0x34,0xb2,0x9c,0x8f,0xd8,0x88,0x2,0xee,0x66,0x66,0x99,0x3a,0xe7,0x55,0x2a,0x2c,0x8c,0x9d,0x59,0xc2,0xe7,0x80,0x3c,0x69,0x70,0x89,0xb1,0x7e,0x21,0xb5,0xaf,0x55,0xab,0xd6,0xf3,0x2c,0x63,0x34,0xb0,0xaa,0x4,0x85,0x8c,0x1,0x52,0xcc,0x33,0x50,0x5,0xa8,0x17,0x6d,0x19,0xce,0x34,0x7,0x7f,0xe4,0x82,0x89,0x9c,0x67,0x86,0x3a,0xfb,0xb3,0x49,0xe8,0x87,0xb5,0x76,0xe,0xe6,0x60,0xdf,0x52,0x4a,0x19,0x4f,0x73,0x80,0x5,0x87,0x74,0x84,0x34,0xc2,0x18,0x9a,0x3,0x7d,0xd3,0x72,0x0,0x93,0x85,0xb5,0x46,0x65,0xc7,0x7a,0x1c,0x1e,0x84,0x22,0xdb,0x14,0xd8,0x62,0x3e,0x92,0x84,0xf8,0x10,0x26,0x65,0xd6,0x67,0x65,0xce,0x19,0x1d,0x1f,0x61,0xc,0x2c,0xc,0xb2,0x3,0x7,0x20,0x35,0x40,0x4e,0x48,0xec,0x77,0x18,0x39,0xe0,0x2a,0x27,0xa3,0x60,0x21,0x59,0x57,0x10,0x88,0x37,0xcb,0x74,0x51,0xc8,0x80,0xb1,0xc,0xb4,0x52,0xe0,0x91,0xff,0xc9,0x9b,0x6f,0xb3,0xcf,0xdf,0x41,0x32,0x70,0x4e,0x0,0xec,0xc2,0xd3,0x8f,0xd8,0x88,0xb3,0x7,0xa1,0x1,0x16,0x7e,0xb9,0x8b,0x8d,0x1d,0x3,0xbd,0x5f,0xf9,0x5e,0x3e,0x4,0xe9,0xcc,0x73,0x5,0xa4,0xd6,0x59,0x7e,0xf2,0x79,0x59,0x80,0x96,0x26,0x9f,0x22,0xc1,0xe9,0x79,0x97,0x4c,0xbe,0xbc,0x70,0xca,0x3b,0x5c,0x5f,0x9d,0x92,0xeb,0x9e,0x62,0xef,0xdd,0x4d,0xc6,0xbb,0x90,0xef,0x9e,0xe4,0x13,0x9a,0x7b,0x80,0x83,0x27,0xae,0x22,0x1f,0x3f,0xa6,0xc5,0x3c,0x25,0x40,0x67,0x9d,0xba,0x6a,0xd5,0xaa,0x55,0x1,0xc0,0x5a,0xb5,0x6a,0xd5,0x7a,0x51,0xf7,0x50,0xf3,0x32,0x56,0x16,0xd4,0x59,0x76,0xdd,0xc1,0x52,0x24,0x68,0xc0,0x87,0x75,0x6e,0xd1,0x70,0xc1,0x14,0x29,0x87,0xc0,0x81,0xb7,0xf,0x8a,0x66,0x25,0x2b,0x3b,0x82,0xc0,0x2f,0x87,0x3f,0xfc,0xe0,0x47,0xf1,0xd4,0x33,0x77,0x96,0x69,0x7f,0xc6,0xe0,0xeb,0x4f,0xdd,0xd6,0x54,0x5c,0xf1,0xfe,0x8b,0x2c,0x67,0x4d,0x29,0xc2,0x37,0x1d,0xda,0xee,0xc,0x43,0xbf,0xc3,0x19,0x5f,0x8f,0xb1,0xe4,0xf9,0xe6,0x7d,0xc3,0x7e,0x4e,0x50,0x50,0x72,0xec,0xf7,0xe8,0xce,0xce,0x9,0x1c,0x64,0xc6,0xc5,0xfb,0xfe,0xec,0xd3,0xf8,0xe3,0x4f,0x7c,0xe,0xdf,0xf5,0x9a,0xc7,0xf0,0xba,0xd7,0x3c,0x8a,0x57,0x3f,0xfe,0x28,0xae,0x9d,0x9f,0x11,0xb3,0x8d,0x59,0x11,0xc3,0x30,0xe2,0xf2,0x6a,0x8b,0x2f,0x7f,0xf5,0x6b,0xf8,0xd4,0x67,0xbf,0x8c,0x4f,0x7f,0xf1,0xeb,0x78,0xe6,0xf6,0x95,0xb2,0x3e,0x72,0xce,0xd8,0x5d,0xdd,0xd1,0xeb,0x76,0x1c,0x4a,0x92,0x62,0xc4,0xa7,0x3e,0xfb,0x25,0xfc,0x1f,0xbf,0xf2,0x6b,0xba,0x9c,0xb7,0x8e,0xc0,0xb6,0xcf,0x7c,0xe1,0xab,0xd8,0x6d,0xaf,0xb8,0x29,0x24,0x6f,0x28,0x63,0x2c,0x86,0x61,0x87,0xfd,0xee,0xa,0xce,0x7b,0xdc,0x7e,0xfa,0x49,0x9c,0x5f,0xbf,0x89,0x18,0x27,0xb4,0x7e,0xa3,0x52,0x2f,0x9,0xb8,0x98,0x86,0x1e,0x97,0xd6,0xe0,0x57,0x7e,0xed,0x37,0x71,0xb6,0xe9,0xa,0x3,0x7c,0xe0,0x8b,0x5f,0x79,0x92,0x24,0x67,0xbe,0x61,0x7f,0x3d,0xf2,0xa4,0x8b,0x21,0x60,0xd8,0xef,0x60,0xad,0x85,0x6f,0x28,0xcd,0x77,0xd8,0xef,0xb0,0x39,0xbb,0x60,0xdc,0x31,0xc1,0xfb,0x4e,0xd7,0xff,0x4f,0xdd,0xde,0xe2,0x7f,0xf8,0x5f,0x7f,0x1d,0xdf,0xff,0xc6,0x27,0xf0,0xd6,0x37,0xbe,0x16,0x8f,0x3c,0xfc,0x32,0xb4,0x4d,0x83,0x10,0x2,0x2e,0xb7,0x7b,0xfc,0xe5,0xe7,0xbe,0x88,0x3f,0xf9,0xe4,0x17,0xf0,0xd5,0xa7,0x2f,0x31,0x4d,0xc4,0xea,0xfb,0x95,0x7f,0xf7,0x1,0xdc,0xbe,0xdc,0xe2,0x2d,0x6f,0x78,0x2d,0x6e,0xdc,0xb8,0x6,0x93,0x81,0x5b,0x97,0x57,0xf8,0xe4,0xa7,0x3f,0x87,0xf7,0xbc,0xf7,0x4f,0x71,0xeb,0x6a,0xa7,0xf7,0xdc,0x76,0x67,0x94,0x54,0x9c,0x22,0x7e,0xe3,0x3d,0xbf,0x87,0x7,0x5f,0x72,0x13,0xd6,0x39,0x58,0xd7,0x20,0xa7,0x88,0x5d,0x3f,0x11,0x6b,0x91,0x81,0xd0,0xa1,0xdf,0x71,0x53,0x6e,0x30,0xf4,0x7b,0xfc,0xfe,0xfb,0x3e,0x84,0xaf,0x7c,0xf5,0x6b,0xd4,0x60,0xb7,0x1b,0x18,0x18,0x8c,0xd3,0x84,0x5d,0x3f,0x21,0x84,0x80,0x3c,0xf6,0xcc,0xc,0x9d,0xf8,0xbe,0x1d,0xb1,0x9,0xf9,0x98,0xd,0x87,0xaa,0xfc,0xc6,0x6f,0xfd,0x1,0x6e,0x5c,0xbf,0x58,0x74,0x3e,0xb7,0xef,0x5c,0x21,0x85,0x88,0x9c,0x32,0x42,0xa4,0xb0,0x13,0x62,0xe,0x8e,0x2c,0x4b,0xe7,0x24,0x4e,0x6,0x4d,0x91,0x13,0x72,0xb6,0xea,0xf3,0x35,0x7b,0x6e,0x2d,0x81,0x3e,0xeb,0x1c,0xd2,0xb4,0xaf,0xe0,0x5f,0xad,0x5a,0xf7,0xa1,0xd4,0x27,0xf6,0xa0,0x28,0x50,0xc3,0xea,0x26,0x94,0x6c,0x38,0x39,0xef,0x11,0x63,0x54,0x2f,0xbd,0xc4,0x21,0x43,0x2,0x7a,0x59,0xe7,0x14,0x14,0x74,0xc2,0xfc,0x53,0x9,0x2d,0x8d,0xf9,0xd6,0x58,0x64,0xb1,0x59,0x90,0x50,0x28,0x63,0x81,0x94,0xe0,0x7c,0x3b,0x3,0x76,0xd3,0xa4,0xde,0x6a,0xf3,0x79,0x98,0x59,0x58,0x24,0xb2,0x8b,0x64,0x97,0xac,0x31,0xfc,0x22,0x28,0x43,0xc6,0x71,0xb5,0xb2,0x90,0x31,0x24,0x25,0xe4,0x14,0x19,0x5c,0x32,0xbc,0x21,0x27,0xac,0xe9,0x38,0xcf,0xeb,0xc6,0x20,0xc5,0x4,0x83,0xa0,0x52,0x5c,0x1,0xd1,0x8,0xc8,0x84,0x2,0xa8,0x64,0xcf,0x81,0x39,0x29,0xf9,0x30,0x88,0xa3,0xf4,0xe0,0x33,0x16,0xce,0x3a,0x24,0xde,0x0,0x91,0xd,0xc0,0xc4,0x9,0xcb,0x2,0x8,0x8a,0x6f,0xa0,0x61,0xc9,0xb3,0x4,0x90,0xe8,0x9a,0x20,0x67,0xa4,0x9c,0x57,0xde,0xd3,0x63,0xb0,0x4f,0xe6,0xe4,0xf2,0x7b,0xe6,0x20,0x5c,0xe4,0x8,0x10,0x3c,0xf4,0xe7,0x2b,0x20,0x36,0xb5,0xeb,0x2b,0x21,0x37,0xf1,0x31,0x5c,0x0,0x62,0xbc,0x76,0x29,0xe,0x77,0x8,0xa3,0x99,0x23,0xf0,0xae,0x94,0x3c,0xdf,0x1d,0x4b,0xbc,0x1b,0x10,0xb8,0x76,0xa6,0xbc,0xc2,0xae,0x5c,0x72,0x9,0xf3,0x3a,0x1e,0xb8,0x76,0x11,0xe6,0x4,0xe8,0x27,0xd9,0x24,0xc8,0x8b,0xe7,0xa6,0x40,0x77,0xad,0x5a,0xb5,0x6a,0x7d,0xab,0xf7,0xb6,0xa8,0x7b,0x15,0xb5,0x6a,0xd5,0xaa,0x75,0xd7,0x7a,0xfb,0xdf,0xf9,0x87,0x68,0xba,0xe,0x29,0x72,0x63,0x1,0x91,0x57,0xc9,0xbe,0xf6,0xcc,0x38,0xd0,0xa5,0xa7,0x98,0x87,0x17,0xc0,0x14,0xc,0xe0,0x7d,0x4b,0xa0,0x96,0x48,0x85,0x78,0x41,0x69,0x38,0x15,0x18,0xa0,0xf4,0x46,0x91,0x1e,0x5b,0x6b,0x99,0xa1,0xe1,0x0,0x96,0x4a,0x66,0xf6,0x23,0xa,0x81,0x40,0xa0,0x61,0xd8,0x23,0xc5,0x88,0xfd,0xf6,0x12,0xe3,0xd0,0x63,0xd8,0x6f,0x29,0xfd,0xd7,0x53,0x42,0x6b,0x77,0x76,0x4e,0xbe,0x80,0xed,0x6,0x19,0x19,0xde,0xb7,0x4a,0xb2,0x12,0xd6,0x84,0xa4,0x15,0x3,0x50,0xf9,0xa9,0x0,0x36,0x89,0x83,0x22,0x72,0x18,0xa9,0x71,0x41,0xc6,0x38,0x8e,0x18,0xc7,0x91,0x52,0x10,0xf9,0x98,0x9a,0xe0,0xc8,0xd2,0xd2,0x71,0xe8,0x91,0x73,0x46,0xb7,0x39,0x57,0x69,0x69,0xd3,0x76,0x18,0xfb,0x3d,0x25,0xcc,0xa,0x3b,0x83,0x9b,0xd2,0xcd,0xd9,0x5,0x8c,0x25,0x86,0x9e,0xb0,0x3c,0x52,0x8a,0xd8,0xde,0xa6,0x64,0xdd,0xfd,0xf6,0x12,0xd6,0x79,0xec,0xb7,0x97,0xd8,0x9c,0x5f,0xa0,0x61,0xe9,0x29,0x49,0x9d,0x1d,0x8c,0x1,0x7c,0xdb,0xa9,0x24,0xd8,0x5a,0x87,0xc4,0x92,0xe1,0x39,0xf5,0x31,0x6b,0x3,0x46,0x5e,0x83,0x14,0x28,0x32,0xec,0x77,0xf4,0x67,0xd8,0xc3,0x0,0xe8,0xce,0x2e,0xb0,0x39,0xbb,0x80,0x75,0xe,0x9b,0xf3,0xb,0x18,0x18,0xf6,0x2f,0xec,0xb4,0xd9,0x6b,0xda,0xe,0xbe,0x69,0x61,0x90,0xe1,0xbd,0x7,0x32,0x49,0xb8,0xc1,0x5e,0x78,0xd2,0x70,0x36,0x6d,0x87,0x7e,0x77,0xa5,0x6c,0x48,0xe7,0x3c,0xbc,0xa5,0x56,0x65,0x9c,0x48,0xb2,0x4c,0x20,0x5a,0x40,0xce,0x49,0xfd,0xfc,0x44,0x72,0x6c,0xad,0x43,0x77,0x76,0xe,0xe7,0x89,0x4d,0x27,0xa6,0xfb,0x96,0xd,0xf4,0x8d,0x31,0x98,0xa6,0x11,0x71,0x1a,0x31,0xe,0x3d,0xa6,0x71,0xa0,0x67,0xce,0xe9,0xbe,0xe7,0xd7,0x6e,0xd0,0x75,0x1a,0xf1,0x9e,0x34,0x2a,0x6b,0x1b,0xfb,0x3d,0x76,0x57,0xb7,0x9,0x0,0x1d,0xf6,0x68,0x5b,0x2,0x4c,0xaf,0xdd,0x78,0x9,0xbc,0x27,0x9,0x1e,0x81,0x81,0x8e,0xc1,0x58,0xfa,0xac,0xc,0xfb,0x2d,0xcb,0xda,0x12,0x86,0x61,0x87,0x30,0x8e,0x18,0xfa,0x1d,0xf6,0xdb,0x4b,0x5c,0xde,0x7a,0x1a,0xd6,0x79,0x9c,0x5f,0xbb,0xe,0xe7,0x5b,0x34,0x6d,0x4b,0x69,0xd0,0xd6,0x2a,0x53,0x91,0x42,0x7,0x48,0xae,0x1c,0xc2,0x84,0x7e,0x77,0x85,0xaf,0x7c,0xfe,0xd3,0xe8,0xb7,0x5b,0x84,0xe1,0x4e,0x1d,0x74,0x6a,0xd5,0x7a,0x81,0xf5,0xf0,0xe3,0xaf,0xc5,0xeb,0xde,0xf2,0x76,0x9c,0x5f,0xdc,0xd0,0x94,0xef,0x18,0x3,0x4b,0x36,0x39,0x88,0xa9,0x48,0xe8,0x2d,0x41,0x8c,0xa6,0xe9,0x10,0x23,0x31,0xd3,0x25,0xc1,0xde,0x5a,0xb7,0x48,0xb0,0x7,0x40,0x60,0x21,0xcf,0x1b,0x96,0xe7,0xb4,0xac,0x61,0x1d,0x4e,0x37,0x66,0x94,0x9,0xce,0xac,0x38,0x91,0x85,0xe6,0x44,0x52,0x5f,0x19,0xf3,0x8c,0xb1,0xf3,0xe6,0x80,0x6,0x41,0x85,0xc5,0xf8,0x23,0xc0,0x56,0x98,0x26,0xf6,0x3,0x34,0xec,0x45,0x4a,0x2c,0xe2,0xcc,0xc,0xb6,0xc4,0xbe,0x7c,0xd2,0xe6,0x68,0xe8,0x48,0xc,0xc,0xc,0x3a,0x65,0xdf,0x9b,0x22,0x8c,0x48,0xa4,0xc6,0x0,0x34,0x30,0x29,0x27,0x9,0xf0,0xa,0xea,0x2b,0x8,0x4e,0x89,0x8f,0x2c,0x33,0x96,0xb9,0x46,0xe7,0x74,0x4e,0x1e,0x16,0xc0,0x52,0xd6,0x9,0xa6,0x4,0xe5,0xf8,0x79,0xcd,0x1e,0x85,0x33,0xd3,0x52,0x82,0x98,0x16,0xa0,0x60,0x9,0x2,0xca,0xeb,0x17,0xfa,0x5b,0xb3,0x6c,0xec,0xca,0x0,0xb3,0xa3,0x20,0x8b,0xbc,0x9e,0xac,0x7b,0xb2,0x63,0x5c,0xff,0x7e,0xc6,0xdd,0xe3,0x42,0xf2,0x37,0xdd,0x7c,0x1e,0x82,0x78,0xf7,0xfa,0x99,0x13,0x7f,0x5f,0x43,0x24,0x71,0x77,0x50,0x6f,0xf5,0xc2,0xee,0x42,0x18,0x4c,0x89,0x2,0xc8,0x42,0x18,0x71,0xe7,0xd6,0x33,0xf8,0xcb,0x3f,0xfb,0xa3,0xda,0x56,0xd7,0xaa,0x55,0xeb,0x5b,0xbe,0xaa,0xd9,0x4e,0xad,0x5a,0xb5,0x6a,0xdd,0xa3,0x16,0x7e,0x78,0x92,0xd2,0x57,0x9a,0x6d,0x17,0xb2,0x23,0x61,0x6,0x1e,0x6,0x86,0xc8,0x4f,0x6,0x66,0xee,0x21,0x43,0xd9,0x5e,0xb2,0xc8,0x97,0x8a,0x31,0xaa,0x17,0xa0,0x34,0x6e,0xc4,0x92,0xf3,0xa,0x62,0x4d,0xe3,0x80,0x9c,0xa2,0x9a,0xb2,0xd3,0xa5,0x51,0xc3,0x21,0xaf,0xc9,0x39,0x69,0xd3,0x14,0xc2,0xc4,0x7e,0x71,0x6c,0x9c,0x9e,0x8,0x60,0x92,0x9d,0xec,0x69,0x1c,0x54,0xd6,0x15,0xa6,0x11,0x43,0x4f,0x4c,0xac,0x30,0x8e,0x6a,0xb6,0x3e,0x4e,0x13,0xf6,0xfd,0x80,0x67,0x9f,0x7d,0x16,0xfd,0x38,0x92,0xf0,0xd9,0x5a,0x18,0xcc,0xac,0xc5,0xc4,0x2c,0x44,0x63,0x88,0x49,0xd7,0x6d,0xce,0x30,0x8d,0x43,0xf1,0x2c,0x89,0xad,0xe7,0x9a,0x16,0xd3,0x34,0x3,0x5d,0xce,0x79,0xf5,0xff,0x93,0x7b,0x91,0x86,0xe,0x85,0x9c,0x6b,0x1a,0x7b,0xc4,0x30,0xaa,0xec,0x2c,0x48,0x32,0x30,0xcb,0xb3,0xe4,0xbe,0x84,0x19,0x57,0xca,0xad,0x72,0x9a,0xff,0x24,0xe,0x5b,0x9,0xd3,0xa4,0xcf,0xcf,0x3a,0xa7,0xe6,0xf5,0x29,0x6,0x4a,0x1f,0xe6,0x50,0xd,0x3a,0x7,0xb4,0xa1,0x13,0xf6,0xcc,0xd8,0xef,0xd1,0xf7,0x3d,0xf6,0xfb,0x1e,0x21,0x25,0x44,0xf6,0x7f,0xdc,0x6f,0xaf,0x30,0xe,0x7b,0x95,0xe5,0xca,0x7d,0xa6,0x14,0xb1,0xdb,0xde,0xc1,0xd5,0x76,0x8b,0xed,0x76,0xab,0x72,0xe8,0x30,0xe,0x88,0x61,0xd4,0x6b,0x1f,0xfb,0x1d,0xa6,0xa1,0x67,0xe0,0x8e,0x18,0x7e,0x72,0x3f,0xd3,0xd0,0x13,0x20,0xcb,0x80,0xab,0x0,0x8d,0x89,0x1b,0xed,0x8c,0x8c,0xed,0xd5,0x2d,0x4c,0xd3,0x40,0xcc,0xd0,0x30,0x61,0xec,0xf7,0x1a,0x1a,0x33,0x8d,0x23,0x49,0xab,0xd9,0xb,0xb0,0xdd,0x9c,0x11,0x93,0x34,0x46,0xf4,0xbb,0x2d,0xac,0xb1,0x18,0xfb,0x9d,0x3e,0x7f,0x69,0xc8,0xe5,0x13,0xda,0xef,0xb6,0xca,0x2e,0xa,0xfc,0x5e,0x84,0x30,0x61,0xbf,0xbd,0xc2,0xd0,0xef,0xe1,0xdb,0xe,0x4f,0x7d,0xed,0x4b,0x88,0x21,0xa0,0xed,0x36,0xf4,0x59,0xf0,0xd,0x7c,0xd3,0xc1,0x59,0xf2,0xd8,0xb2,0xca,0x5e,0x4d,0xc,0x6c,0x53,0x13,0x9f,0xe2,0x50,0x7,0x9c,0x5a,0xb5,0xee,0xd3,0xbc,0x95,0x53,0xd6,0xf9,0x48,0x98,0x7b,0xd6,0x39,0x96,0xde,0xe7,0x5,0xf8,0x57,0x8e,0xdb,0xc2,0xbc,0x76,0xde,0x43,0x92,0xd3,0x73,0x4e,0xec,0x65,0xeb,0x14,0xf0,0x73,0xbe,0x61,0xef,0x4f,0x3a,0xae,0x6f,0x5a,0xfa,0x3d,0xf7,0x8d,0xfa,0xdc,0x8a,0x8f,0x5e,0xd3,0x75,0xb,0xaf,0x3f,0xf1,0xde,0x13,0x7f,0x58,0x5b,0x7c,0x4f,0x82,0x36,0x24,0x65,0xd8,0x3a,0xa7,0xd6,0x6,0x14,0x5c,0x45,0xc0,0x61,0xd3,0x76,0xb,0x56,0x1b,0x49,0x7b,0xa1,0x1,0x1f,0x96,0xfd,0x6d,0x65,0x7e,0x4e,0x6c,0x9b,0xa0,0xe0,0x1a,0x5f,0x37,0xf9,0xc0,0x9a,0x25,0x68,0xc7,0xf6,0xb,0xf2,0x1c,0x52,0x4e,0x7c,0x7c,0xba,0x2f,0x27,0x9e,0x84,0x96,0x41,0x4b,0xeb,0xf8,0xdc,0xb4,0x1e,0x50,0x8f,0x5d,0x59,0x2b,0x64,0xe8,0x79,0xd9,0x90,0x51,0x37,0xe,0x45,0x19,0x20,0x52,0xe1,0x72,0xee,0x9a,0xb1,0xbc,0x19,0xe8,0x13,0xa9,0xeb,0x32,0xfd,0x77,0xe6,0xd7,0x29,0xf8,0x57,0x78,0xf1,0x1d,0x51,0xda,0x44,0xb9,0xb0,0xf8,0xf9,0x35,0xbc,0x6c,0x66,0xff,0xc9,0xcb,0xf2,0x9,0xf0,0xef,0x10,0x67,0x7b,0xae,0xac,0xbe,0xd3,0x10,0xe1,0x9a,0x20,0xf8,0xc4,0xdf,0x73,0x9,0x68,0x96,0x49,0xc4,0x58,0x37,0xf,0xcc,0x58,0x3e,0x8b,0xbb,0x61,0x8d,0xf9,0x1e,0xf7,0x90,0x51,0x24,0x61,0xd7,0xaa,0x55,0xab,0xd6,0xb7,0x76,0x55,0x9,0x70,0xad,0x5a,0xb5,0x6a,0xdd,0xa3,0x2c,0x3,0x76,0xb2,0xc8,0xa4,0xd4,0x5f,0x4e,0xdd,0x9b,0xb3,0xfb,0x8e,0x58,0x81,0x22,0x83,0x35,0xdc,0x4c,0x8,0x90,0x98,0xb,0xc6,0x84,0x34,0x24,0xd2,0x80,0x21,0x3,0xbe,0x9d,0x25,0x50,0xe2,0x61,0x14,0x43,0xc0,0x94,0xd8,0x47,0x4d,0x98,0x80,0x19,0x98,0xc6,0x1e,0xc6,0x0,0xe3,0x30,0x68,0xb3,0x41,0x6c,0x83,0x84,0xfd,0xee,0xa,0xd7,0x6f,0x3e,0x88,0x89,0x25,0x9d,0xc4,0x8a,0x48,0x30,0x26,0x32,0x43,0xb0,0x41,0x8,0x23,0x9f,0xa7,0x61,0xc6,0x87,0x87,0x73,0x96,0xe5,0xa5,0x4,0x56,0x9a,0x94,0x19,0x8,0xcb,0x98,0xc6,0x9e,0xae,0xa7,0xf,0xea,0xbd,0xd4,0x9d,0x9d,0x23,0x5,0x92,0xd1,0x5a,0x67,0x55,0x66,0x15,0xc3,0x84,0xc0,0x8d,0x67,0x98,0x46,0xe4,0x9c,0xd0,0x76,0x1b,0x4c,0xc3,0x80,0x14,0x3,0xba,0xcd,0x5,0x52,0xc,0xf0,0x4d,0xa3,0xcd,0x88,0x48,0x84,0x9d,0x6f,0x34,0x31,0x31,0x4c,0x23,0x79,0x6,0xb2,0x37,0xd4,0x34,0x8e,0x98,0xc6,0x1,0xd6,0x39,0x9c,0x5f,0xbb,0x81,0x69,0x1c,0xd0,0xb4,0x1b,0x18,0x4b,0x7e,0x7d,0x30,0x80,0x73,0x1e,0x43,0xbf,0xa3,0x6,0x2b,0x1a,0x34,0x6d,0xab,0x40,0x66,0x8c,0x1,0xce,0x78,0x8c,0xc3,0xc8,0x40,0x1a,0x1,0x5d,0x74,0x9e,0x89,0xc1,0xb8,0x9,0x6d,0x47,0x81,0x20,0x29,0x46,0x24,0x9,0x4e,0x9,0xd4,0xfc,0x25,0x7a,0xc3,0xa0,0xe9,0x90,0x29,0x2a,0xc3,0xc6,0xc1,0xab,0xbf,0xe0,0xb0,0xdf,0xa3,0xed,0x3a,0xe,0xdd,0x8,0xda,0x64,0x4f,0xc,0x7a,0xaa,0xf4,0x8c,0x3f,0xb,0xc2,0x84,0xc9,0x99,0xfc,0xfa,0xa6,0x89,0x58,0x97,0x72,0x1d,0x94,0x22,0xcd,0x1,0x1d,0xa0,0x40,0xd,0xeb,0x1c,0x9c,0xa7,0xf0,0xd,0x91,0x40,0xd3,0xe3,0x74,0xb0,0xce,0x63,0x1c,0x7a,0x7a,0xee,0x2c,0xf1,0x15,0xa3,0x7c,0x7a,0x4f,0x8,0xe4,0xd,0xd3,0x48,0x81,0x1d,0xfd,0x4e,0x25,0xe2,0xe2,0x51,0x9,0x90,0x7c,0x5c,0x12,0x41,0x43,0x18,0xe1,0x5d,0x83,0xcc,0x9e,0x95,0xc2,0x40,0x75,0x9e,0xee,0x27,0x4c,0x3,0x1e,0x78,0xe8,0xe5,0x48,0x29,0x12,0x1b,0xf1,0xec,0x9c,0x3f,0x77,0x9,0x31,0x4e,0x70,0xae,0x29,0x3e,0x8b,0x96,0x25,0xd6,0x19,0x29,0x4e,0xb0,0xcd,0x39,0x52,0xa8,0x20,0x60,0xad,0x5a,0xf7,0x63,0xde,0x3a,0xc,0x3,0x92,0xe0,0x1f,0x83,0x22,0xd0,0x83,0xe7,0x2c,0xf2,0x9f,0xc5,0x2c,0x93,0xe5,0xcd,0x1d,0x98,0xe3,0x63,0xf9,0xa6,0xd1,0x8d,0x2b,0xf2,0xf1,0x6b,0xe6,0x54,0x60,0x4f,0xc0,0x59,0xb3,0xe9,0xf0,0xc0,0xc5,0x19,0xae,0x5f,0x3b,0x47,0xe3,0xd,0x9c,0xf5,0xd8,0xee,0xf7,0x78,0xf6,0xf6,0x25,0xb6,0x43,0x42,0xe0,0xf3,0x8,0x3b,0x78,0x1c,0xf6,0x70,0x7c,0x9c,0x52,0x8e,0x9b,0x73,0x52,0x6,0x60,0xd3,0x75,0x34,0xf7,0xf2,0xd7,0x53,0x8c,0x68,0x9a,0x56,0xc7,0xd3,0x18,0x83,0xb2,0xd0,0x45,0x9e,0x2c,0xff,0xf6,0xbe,0xa1,0xf1,0x9e,0x1,0x38,0x5f,0x30,0xd0,0x75,0xe3,0xc9,0x3a,0x58,0x43,0x73,0x57,0x8e,0x59,0x37,0xfc,0x88,0x9,0xe9,0x20,0x82,0x57,0x61,0x2,0xb2,0xff,0x7,0x16,0xcc,0x3b,0xb6,0xc9,0x2b,0xfd,0x14,0x69,0x83,0x83,0x6d,0x42,0x94,0xe9,0x37,0x7b,0xec,0x25,0x4d,0x1d,0x4e,0x8b,0x20,0x90,0x52,0x26,0x5c,0x82,0x63,0x99,0xfd,0x17,0x51,0x60,0x58,0xfa,0xf,0x5,0xfe,0x4e,0x8,0x72,0x8b,0xef,0x97,0xcf,0xb9,0xf4,0x84,0x34,0xb,0x82,0xa0,0x59,0x55,0xce,0x1e,0x42,0x73,0x66,0x5,0x2b,0x7b,0xee,0x4c,0xbf,0xf2,0xef,0x7,0x52,0x5d,0xb3,0x42,0xcd,0xcb,0xc7,0x78,0xe6,0xe2,0x2,0x4c,0xf1,0xda,0x92,0xb9,0x68,0xe,0x1e,0xc3,0x21,0xa3,0x31,0x9f,0xba,0xd2,0x65,0xc0,0x47,0x3e,0x9,0x4c,0x56,0x61,0x5d,0xad,0x5a,0xb5,0x2a,0x0,0x58,0xab,0x56,0xad,0x5a,0x7f,0x83,0x2a,0x2f,0x16,0x7f,0xa5,0xac,0xd4,0x5a,0x4b,0x7e,0x42,0x96,0x40,0x19,0xc0,0x20,0xa6,0x59,0xea,0x2b,0x26,0xe8,0x86,0x59,0x9,0xb9,0x48,0x8,0x46,0xce,0x8,0x31,0xc0,0x59,0xa7,0xcd,0x8a,0x2d,0xc,0xc4,0x53,0x8a,0x68,0x1a,0x5a,0x18,0x27,0x36,0x25,0x4f,0x2,0x64,0x39,0x7,0x44,0xc3,0x6c,0xbf,0x88,0x38,0x4d,0x2c,0xbf,0xdd,0x23,0xb3,0x24,0xd5,0x8e,0x16,0xde,0xb7,0xda,0xc,0x91,0x27,0x91,0x55,0x96,0x7,0x4c,0x46,0x32,0x51,0x59,0x1b,0x30,0x6,0xd3,0xd8,0xa3,0xdb,0x9c,0x33,0x8b,0x84,0xe4,0xbc,0x22,0x1b,0x95,0x66,0x24,0x86,0x49,0x3d,0xa4,0xda,0x6e,0x43,0xbe,0x50,0x85,0xa7,0x13,0x81,0x78,0xc4,0x8c,0xb0,0xad,0xd1,0xf4,0x59,0x63,0x2d,0x2c,0x58,0x32,0x5,0xc0,0x1a,0x87,0xbe,0xdf,0xaa,0xd4,0x56,0x18,0x15,0x81,0xef,0x45,0x80,0xbf,0x71,0xd8,0x63,0xbf,0xbd,0xc4,0xb5,0x1b,0xf,0xe8,0x39,0xa4,0x79,0x8b,0x61,0x82,0x6f,0x5a,0x1c,0xea,0x7b,0xe8,0xf9,0x5,0x98,0x49,0xfc,0xa6,0xc4,0x27,0x70,0x60,0xc0,0xca,0x21,0x22,0xe8,0x7d,0x4d,0x3,0x25,0xf5,0xaa,0x3c,0x39,0x25,0x18,0x2f,0xbe,0x50,0x5e,0x19,0x96,0x25,0x38,0x9b,0x5d,0x46,0xce,0x56,0x9b,0xc5,0x18,0x83,0x86,0x6d,0xe4,0x9c,0xb0,0xbb,0xba,0xa4,0x44,0x4d,0x69,0x1c,0x2d,0x31,0x4e,0x22,0x7f,0xdf,0x37,0x1d,0x42,0x18,0xe8,0xf9,0x37,0x19,0xe3,0xd0,0x33,0xf8,0x4a,0x8c,0xc4,0x7e,0xbf,0x55,0xe9,0xb4,0xb0,0x6a,0x7c,0xd3,0x50,0xd0,0x89,0x71,0x9a,0xfa,0xeb,0x7c,0x83,0xfd,0xd5,0x1d,0x38,0x96,0xa5,0xed,0xb7,0x97,0x38,0xbf,0x7e,0x3,0x80,0x2d,0x92,0x9f,0x29,0x90,0x25,0xc6,0xc8,0x4c,0x9f,0x48,0xd,0xbe,0x1a,0xf9,0x3b,0xa4,0x44,0x52,0xb6,0x61,0xbf,0x45,0xbb,0x39,0x87,0xe1,0xf7,0x8c,0x40,0xc3,0x49,0x1,0x4c,0x20,0xab,0x8f,0x60,0x98,0x6,0xfe,0xcc,0x65,0x92,0x39,0xfb,0x6,0x29,0x12,0x23,0x71,0x1a,0x6,0x6c,0xce,0x2f,0x18,0x30,0x9c,0x83,0x5,0x28,0x10,0x27,0xea,0xef,0x96,0x80,0x9b,0xb5,0x6a,0xd5,0x7a,0xe1,0x25,0xfe,0xb0,0xb3,0xf7,0x5b,0xc1,0x4a,0x97,0xb1,0xb3,0x8,0xa5,0x30,0xc6,0xc0,0x7a,0xc7,0x8c,0xec,0x46,0x90,0x2b,0x66,0xea,0x31,0x20,0x68,0xac,0x7a,0xf2,0x9,0x23,0x8f,0xac,0x9,0x1c,0x0,0x83,0x9b,0x17,0x1b,0xbc,0xe5,0xf5,0xdf,0x8e,0x37,0xbd,0xee,0x35,0x78,0xf9,0x23,0x2f,0xc3,0xb5,0x8b,0x73,0x78,0x66,0xf6,0xd1,0x58,0x9c,0x31,0x4e,0x13,0x6e,0xdf,0xb9,0xc4,0x17,0xbe,0xf4,0x55,0x7c,0xe4,0x13,0x9f,0xc5,0x9f,0x7f,0xe6,0xcb,0x98,0x62,0xe2,0x24,0x7b,0x96,0xfe,0x96,0xa0,0x14,0x6f,0x64,0x7c,0xcf,0x77,0xbe,0xa,0xef,0xfe,0xe1,0xef,0x27,0x4f,0x51,0x70,0xf0,0x53,0x4e,0xf8,0xb5,0x7f,0xfb,0x7b,0xf8,0xf8,0x67,0xbf,0xa2,0x0,0xa4,0xb0,0xcc,0x73,0x4a,0x30,0x6c,0x61,0x21,0x12,0x5f,0xeb,0x1c,0x52,0xa0,0x8d,0x18,0x19,0x8b,0x5,0xec,0xcc,0x29,0xd1,0x26,0x84,0xf3,0x3a,0x17,0xa,0xc3,0x8f,0x40,0x43,0x86,0x81,0xac,0x81,0x5,0x87,0x78,0x99,0x25,0xcb,0x90,0xc6,0xc4,0xa4,0xc7,0x9d,0x7d,0x18,0x33,0xac,0x71,0x8,0x39,0xa9,0xe5,0x47,0x9,0x18,0x95,0xe1,0x20,0xe5,0xbc,0x46,0x60,0xa2,0x55,0x1f,0xda,0x12,0x8,0x2c,0xd3,0x81,0xe5,0x7d,0x95,0x50,0xb0,0x43,0x8f,0xe1,0xd9,0x43,0x78,0x76,0xcb,0x13,0x46,0x22,0xa,0x5f,0xbf,0x99,0x4,0x68,0x34,0xbc,0x23,0xe3,0xb9,0x5,0x70,0xe4,0x5,0x8,0x76,0xfa,0x6b,0x58,0xfd,0x9a,0x39,0x86,0x14,0x15,0x89,0xc4,0x7a,0x5a,0xc8,0xdd,0x2e,0x68,0x81,0xcb,0xad,0xd3,0xf7,0x56,0x5,0xc6,0x85,0xbf,0x5f,0x9,0xf8,0x3d,0x97,0x74,0x5f,0x53,0x43,0x40,0x6a,0xd5,0xaa,0x55,0x1,0xc0,0x5a,0xb5,0x6a,0xd5,0xfa,0x9b,0x8,0xfe,0xd1,0x72,0x90,0x52,0x66,0x8b,0x5d,0xfa,0x54,0x2e,0xb8,0xed,0xc,0x14,0xe6,0xac,0xbb,0xfd,0x2a,0xb5,0x62,0xb9,0x26,0x31,0xff,0x8a,0x94,0x5b,0x5,0xac,0x92,0xb2,0x6,0x9d,0x21,0x8f,0x25,0x61,0x4,0xa4,0x94,0x60,0x12,0x9b,0x97,0xb3,0xf7,0x9b,0x1c,0x2f,0xc5,0x88,0x94,0x13,0x27,0x3a,0x66,0xf8,0xb6,0x65,0x4f,0xa4,0x42,0x7a,0x54,0xa4,0x19,0xa,0x70,0xd6,0xb0,0x4c,0x73,0xd8,0x6f,0xe1,0xbc,0xc7,0x34,0xf4,0x30,0xd6,0x62,0xbf,0xbd,0x54,0x2f,0x3b,0x91,0x6a,0x85,0x30,0x2a,0xd3,0xcd,0x30,0x30,0x77,0xed,0xe6,0x83,0x4,0xee,0xb1,0xbc,0xd9,0x18,0x5b,0x98,0xc3,0x13,0x83,0x4f,0x1a,0x8d,0x10,0xc8,0x3,0xcf,0x35,0x6d,0x21,0x3,0xcd,0xea,0x6b,0x97,0x78,0x57,0x3e,0x70,0x70,0x49,0x8e,0xb3,0xb4,0x59,0xd2,0x19,0xfb,0xfd,0x16,0xbe,0xe9,0x70,0x71,0xfd,0x5c,0x3,0x50,0x7c,0xdb,0x29,0x58,0x68,0x0,0xf4,0xbb,0x2b,0x2,0xaf,0xa,0x80,0xd0,0x79,0xaf,0xc,0x40,0x1,0x58,0x53,0xc,0xe8,0xf7,0x57,0x1a,0xa2,0xd2,0x34,0xad,0x4a,0xe6,0x62,0x8c,0x98,0xa6,0x1,0xd6,0xf9,0xd9,0x73,0x91,0xef,0x59,0x80,0x54,0x69,0xe,0xc7,0x69,0x84,0xe7,0xaf,0x87,0x40,0x72,0xe8,0x7e,0xbf,0xd5,0x80,0x12,0x61,0x18,0xce,0x80,0x30,0x85,0x6d,0x48,0xa3,0x19,0xd8,0x8f,0x90,0xce,0x4d,0x26,0xfd,0xd3,0x14,0xb1,0xbb,0xda,0xc1,0xb7,0x1d,0xf6,0xdb,0x4b,0x5c,0xdc,0x78,0x9,0xa6,0xb1,0x47,0x6e,0xba,0xd9,0xf,0x8b,0xbd,0xac,0xa6,0x71,0x40,0xbf,0xdf,0x12,0x83,0x10,0x59,0x59,0x79,0xc3,0x7e,0x87,0xeb,0x37,0x1f,0x44,0x18,0x47,0x4d,0xe9,0xc,0xc2,0xb8,0x4b,0x74,0x4d,0x22,0xa9,0x1b,0xf6,0xbb,0xe2,0x33,0x4d,0x9f,0x97,0x69,0xe8,0x91,0x99,0xe1,0x13,0x26,0x2,0x59,0xe5,0x7d,0x13,0x7f,0x2e,0x4a,0x90,0xf6,0xc4,0x36,0xec,0x9,0x40,0x1d,0x87,0x3d,0xa5,0x35,0x8f,0xe3,0x9c,0x84,0x9d,0x1d,0x3,0x5,0x59,0x81,0x9,0x6b,0x2d,0x22,0x32,0xf7,0x68,0x6,0xb9,0xb2,0xff,0x6a,0xd5,0xba,0x3f,0x33,0x56,0x21,0xe9,0x2c,0x59,0xe7,0xb0,0x34,0x26,0xc3,0xcc,0x1b,0x4a,0xd6,0xd2,0x5c,0x94,0x13,0xcb,0x76,0xd,0x54,0x26,0x2c,0xa9,0xf6,0x22,0xdd,0x37,0xc6,0xc0,0xb7,0x34,0x6,0x89,0x4,0xf7,0xac,0x71,0xf8,0xb1,0x77,0xbc,0x19,0xef,0xf8,0xfe,0xef,0xc1,0xcd,0x1b,0xd7,0x8f,0x98,0x87,0xa,0x30,0x5a,0xc0,0x7b,0x87,0xf3,0xb3,0xd,0x1e,0x7d,0xe4,0x21,0x7c,0xff,0x5b,0xdf,0x84,0x27,0xbf,0xf1,0x14,0xde,0xfb,0xc7,0x1f,0xc5,0x6f,0xff,0xd1,0x47,0x91,0x8c,0x85,0x95,0xb9,0x14,0x89,0x25,0xb8,0x64,0xc9,0xf0,0xe0,0xcd,0xb,0x7c,0xd7,0x6b,0x5f,0x73,0x74,0x8f,0xd7,0xdf,0xfb,0xc7,0xa,0xf8,0x39,0xef,0x91,0x27,0x7a,0x4d,0x48,0x9,0x49,0x13,0xdc,0x85,0xc5,0x46,0x9b,0x70,0x8d,0xf5,0x85,0x3d,0x5e,0xc9,0xe8,0x73,0x9a,0x1a,0x2c,0x32,0x64,0xb,0x9e,0x83,0x99,0x39,0xe8,0x9c,0x7,0x6c,0x86,0x83,0x55,0x30,0x55,0xa4,0xcb,0x61,0x8a,0x2a,0x13,0x16,0x6,0x75,0xca,0x4,0x14,0x4a,0xd2,0xba,0x31,0x56,0xc7,0x6f,0xde,0x43,0x9c,0xd9,0x77,0x9,0xa,0xd6,0x92,0x3d,0xc2,0x7c,0x9f,0x65,0x38,0x88,0x29,0x52,0x9b,0x73,0x4a,0x5,0x2e,0x96,0x75,0x2d,0x82,0xe2,0x6b,0xe6,0x8,0xc,0x33,0x47,0xf0,0x5c,0x9,0x26,0x96,0x72,0xdf,0x53,0xb8,0xda,0x9,0x18,0xec,0xae,0xeb,0xa7,0xf9,0x42,0xf,0xe5,0xc8,0xf2,0x59,0x3d,0x64,0xe4,0xe5,0x3,0x83,0x41,0x73,0x17,0xf4,0xee,0x1e,0x40,0xe0,0xa9,0x1b,0x28,0x43,0x3d,0x38,0x38,0x66,0xe1,0xef,0x5c,0x84,0x8b,0x98,0x45,0xd0,0x48,0x71,0x48,0x83,0x93,0xdf,0xaf,0x55,0xab,0x56,0xad,0x6f,0xb5,0xaa,0x1e,0x80,0xb5,0x6a,0xd5,0xaa,0x75,0xcf,0x46,0x2a,0x61,0xb1,0xa,0x65,0xf0,0x44,0xcc,0xbb,0x35,0xe1,0x57,0xc3,0x26,0x64,0xc7,0x9d,0xd9,0xc,0x6e,0x96,0x4f,0xa9,0xbc,0xa7,0x48,0x59,0x14,0x3f,0xa4,0x18,0x83,0x2,0x7a,0xb2,0xf3,0x2d,0xc0,0x50,0xe0,0x24,0x59,0x62,0x5c,0x5,0x95,0x70,0x8a,0xa1,0x7b,0xf9,0x6f,0xf2,0x68,0x4b,0xe4,0xe3,0x87,0xac,0xac,0x8,0x0,0x88,0x71,0xe2,0xbf,0xe7,0xa2,0x9,0x64,0x8f,0x41,0x61,0x26,0x32,0x48,0x99,0x33,0x49,0x42,0x51,0x78,0xf,0x79,0x4f,0xe9,0xbc,0xbb,0xcb,0xdb,0x24,0xc3,0xb5,0xe,0x63,0xbf,0x57,0xd6,0x81,0x73,0x5e,0x25,0xa6,0x4d,0xd3,0x1,0x2c,0x13,0x25,0x36,0x83,0xa1,0xa0,0xf,0x6e,0xb8,0xc2,0x44,0xa9,0xb1,0xe2,0x9d,0x93,0x32,0x35,0x34,0x21,0x4c,0x2a,0xd5,0x22,0x70,0x8a,0xfc,0x75,0xc6,0xb1,0x9f,0x7d,0x6,0x19,0x50,0x93,0x66,0x47,0x19,0x81,0x1c,0x6c,0xd1,0xb4,0x9d,0x9a,0x73,0xe7,0x4c,0x9e,0x7f,0xe3,0xd0,0xeb,0xfb,0x30,0xb1,0x24,0x99,0x82,0x59,0x1a,0xf5,0x11,0x1c,0xc7,0x1e,0xdb,0xcb,0x5b,0x64,0xec,0xce,0x0,0x97,0x48,0x77,0x5,0x3c,0x14,0x50,0x54,0xae,0x4f,0xe5,0x5c,0xfc,0x7e,0x49,0x63,0x1d,0x26,0xba,0x8f,0xa1,0xdf,0x13,0xab,0x2f,0x4c,0xf4,0xb5,0x10,0x0,0x4e,0xc3,0xa4,0xfb,0x99,0x4d,0xee,0x63,0x98,0xc8,0x8f,0x91,0xd9,0x9c,0xc2,0x7e,0xa4,0xfb,0x1d,0xd4,0x37,0x4b,0x1,0x5d,0x6b,0x14,0x88,0x94,0xcf,0x92,0x3c,0x57,0xef,0x1b,0x84,0x71,0xc0,0x7e,0x77,0x35,0xb3,0x62,0xd8,0x9b,0x4a,0x83,0x64,0xa6,0x11,0xe3,0xb0,0x47,0x4c,0x11,0xbe,0x25,0x10,0xd6,0x33,0x73,0x93,0xcc,0xff,0xa1,0x32,0x60,0xb9,0xd6,0x69,0xe8,0x89,0xed,0x29,0xe6,0xfe,0x61,0x24,0x46,0x90,0xdc,0xf,0x27,0x77,0x52,0xb3,0x6d,0x34,0x44,0x84,0x1a,0xdf,0x38,0x7,0xe4,0x88,0x2c,0xde,0x58,0xf6,0x2e,0x4,0x52,0x1c,0xeb,0x80,0x53,0xab,0xd6,0x7d,0x28,0xd9,0x88,0x82,0x2,0x4c,0x33,0xb8,0x63,0xc,0xcd,0x49,0xae,0x69,0x94,0x5d,0x36,0xb3,0xbb,0x69,0x83,0x42,0x36,0x3a,0x32,0x7b,0x5,0x4a,0x8,0x91,0xf8,0xb3,0xfa,0x86,0xc6,0xcd,0x47,0x5e,0x72,0xd,0xff,0xf9,0x7f,0xfa,0xb3,0xf8,0xc9,0x1f,0x7b,0x27,0x1e,0xb8,0x79,0x63,0x15,0xfc,0x3b,0x55,0xce,0x59,0x3c,0xfa,0xf2,0x87,0xf1,0x73,0x3f,0xf5,0x23,0xf8,0xaf,0xfe,0xf9,0x2f,0xe2,0x15,0x2f,0xbd,0xce,0x7e,0x7b,0x11,0x6d,0xdb,0xc1,0xb7,0x14,0x64,0x45,0xe7,0x5a,0x67,0x7,0x3b,0x4e,0xb6,0xd7,0x50,0x24,0x4b,0xd7,0xe7,0xbc,0x57,0x3b,0x3,0xd9,0x94,0x2,0x7b,0xfc,0xc5,0x18,0x75,0xde,0x90,0xfb,0x96,0xfb,0xb2,0xce,0x6b,0xf0,0x96,0x11,0x16,0x1e,0x6f,0x6c,0xa9,0xa7,0x6f,0xa6,0xf9,0x5b,0x99,0x83,0xec,0x17,0x2b,0xde,0xb4,0x12,0xf8,0x91,0x72,0x52,0x30,0x10,0x98,0xa5,0xc6,0x32,0x27,0x9a,0xc5,0x1a,0x3,0x7c,0xed,0x99,0x97,0x19,0x79,0xf1,0xde,0x9,0xf8,0x97,0x1,0x5,0x23,0x85,0xb1,0xbf,0x78,0xe6,0x12,0xb0,0x22,0x7f,0xcf,0x4b,0xb,0x3c,0x53,0xfe,0x5c,0x1,0xf4,0x99,0xe7,0x60,0x87,0x67,0xee,0x89,0xb0,0x1,0x47,0x42,0xe0,0x43,0xbf,0xbd,0x5,0x10,0x79,0xf8,0x77,0x1c,0xab,0x81,0x17,0x40,0x5d,0x3e,0x6d,0xd,0xf8,0x7c,0xd6,0x76,0x7,0xa7,0x57,0x6f,0x45,0xfe,0xdf,0x9c,0x2c,0x3c,0x3,0x82,0xc7,0x17,0x56,0x5a,0x3e,0xa7,0x3a,0xf0,0xd4,0xaa,0x55,0xab,0x2,0x80,0xb5,0x6a,0xd5,0xaa,0xf5,0xa2,0x6e,0xa2,0xac,0x5b,0x2a,0x48,0x16,0x6,0x37,0x56,0x7d,0x93,0x66,0xe3,0xf2,0x62,0x17,0xbd,0x30,0x32,0xcf,0xa0,0x44,0x41,0x49,0x4,0x26,0x7f,0x25,0x5a,0x38,0xc6,0x69,0x9a,0xc1,0x40,0xcc,0xd2,0x1e,0x61,0xf5,0x95,0xd,0x6,0x35,0x1f,0x50,0xb0,0xac,0xfc,0x19,0xe7,0x3d,0xc0,0x8d,0x8e,0x6b,0x5a,0x18,0x0,0xfb,0xed,0x95,0x7a,0xbd,0x9,0x98,0x26,0x6c,0x36,0x69,0x20,0xe2,0x34,0xb1,0xdc,0x96,0xae,0x5b,0x0,0x48,0x69,0x98,0xc6,0xb1,0xc7,0x38,0xf4,0xb0,0xd6,0xb1,0x17,0x1c,0x87,0x75,0x64,0xa0,0xdf,0x6f,0x11,0xa6,0x11,0xfb,0xab,0x4b,0x4d,0xd6,0x25,0x80,0x92,0xbd,0x8b,0xa4,0xe1,0xf1,0x5e,0xc3,0x40,0x32,0x8,0x74,0x73,0xde,0x73,0xa,0x23,0x54,0x52,0x9b,0x53,0xa2,0x64,0x49,0xe,0xea,0x10,0x86,0x8a,0x24,0xfb,0xfa,0xa6,0x55,0x49,0x2c,0x1,0x6d,0x4,0x9a,0x5a,0x63,0xb9,0x71,0x25,0x39,0xf2,0x34,0xe,0xc,0xac,0x7a,0x2,0xdc,0x18,0xb8,0x15,0x16,0x86,0x63,0xc0,0x4d,0x42,0x4e,0xc6,0xa1,0x47,0xc,0x41,0x93,0x7d,0x73,0xa6,0xe0,0xd,0xeb,0x3c,0x82,0xa4,0xf2,0x6,0x4a,0xe4,0x1d,0x7,0x4a,0x31,0x8e,0x2c,0x7f,0x2d,0xa5,0x75,0x61,0x1c,0x89,0x55,0xb8,0xa3,0x10,0x90,0x18,0x2,0xa6,0xb1,0xc7,0x34,0xf6,0xfc,0xbd,0xa8,0x6c,0xc9,0x10,0x26,0xe,0xdb,0x98,0x19,0xd,0xc6,0x18,0x4d,0x40,0x16,0x66,0x1f,0x79,0xfa,0x91,0x6c,0x79,0x1a,0x7,0xa,0x8,0x19,0x7,0x2,0x45,0xfb,0x3d,0x3,0x7e,0x93,0x4a,0xaa,0x85,0x55,0xb8,0xbd,0xbc,0x4d,0xbe,0x8a,0x81,0xc2,0x47,0x28,0x48,0x64,0x66,0x5c,0x88,0xcf,0x24,0x1,0xac,0x91,0xc1,0xc0,0x1e,0xfb,0xed,0x25,0x7f,0x8e,0xd,0xb3,0x32,0x13,0x83,0x93,0x41,0xa5,0x6e,0x31,0x46,0x95,0xf,0x3b,0xd7,0xa8,0xdf,0x9f,0x4,0xba,0x10,0x33,0x33,0x14,0x7f,0x26,0x4d,0xe,0x4d,0x21,0x28,0xc8,0x2c,0x4c,0x97,0x14,0x2,0xb3,0x68,0x9a,0x3a,0xe8,0xd4,0xaa,0x75,0x1f,0x2a,0x6b,0x30,0x1,0xa,0x26,0x5d,0x54,0x7f,0x3c,0x0,0x9c,0xb0,0x6b,0xf5,0x4f,0x69,0xf3,0x60,0x38,0x81,0x9e,0x80,0x2b,0x1a,0x5f,0xe7,0x4,0x7b,0xb,0xdf,0x74,0x78,0xe5,0x43,0xf,0xe0,0x9f,0xfd,0xe3,0x9f,0xc1,0x6b,0xbe,0xed,0x95,0x2f,0x10,0xac,0x34,0x78,0xfc,0x15,0x8f,0xe0,0xf5,0x4f,0xbc,0x4a,0x37,0x92,0xac,0xf3,0xb,0x30,0xb3,0xfc,0x77,0x59,0x31,0x26,0x1d,0xcb,0x8c,0x35,0x9a,0x94,0xee,0x7d,0x3,0xb1,0x7d,0x88,0x31,0x92,0x35,0x87,0xa1,0xf9,0x8f,0xfe,0xd0,0x3d,0xcb,0x26,0x1b,0xb,0x63,0x57,0x51,0x25,0x19,0x97,0xc9,0x66,0x82,0x8e,0xe1,0xfd,0x2c,0x93,0x16,0xfb,0x4,0x81,0x87,0x8,0x3c,0x24,0x26,0xbe,0xe3,0xb9,0x4e,0x98,0xec,0xc4,0xd8,0x63,0x98,0x69,0x1,0xf2,0xcd,0x9e,0x87,0x9a,0x18,0x7c,0x0,0xee,0xe5,0x12,0xd0,0x2d,0x94,0x1,0xa,0xc,0xe6,0x19,0xe6,0x13,0x66,0x61,0x2e,0x19,0x80,0x5,0xe0,0x28,0xeb,0x92,0x39,0x5d,0x58,0x48,0x78,0x87,0x52,0xdc,0xbc,0xb2,0xfc,0x39,0x34,0xdb,0xc3,0x8a,0xd4,0x36,0x1f,0x7f,0xed,0x48,0x22,0x9b,0x4f,0x63,0x89,0x6b,0xc1,0x1d,0x27,0x5f,0x7a,0x7c,0x9e,0x8c,0x7c,0x4f,0x98,0x12,0x85,0xcc,0xb9,0xfc,0x1a,0xee,0x2,0x74,0x9a,0xa3,0x9f,0x91,0x4d,0xc8,0xb4,0xe2,0xbb,0x58,0xab,0x56,0xad,0x5a,0x15,0x0,0xac,0x55,0xab,0x56,0xad,0x17,0x1f,0x8,0x58,0x4a,0x53,0x8a,0xbf,0x2b,0x43,0xcd,0xcc,0x1,0x1e,0x46,0x77,0xd5,0x45,0x32,0xe5,0x16,0x4d,0x8c,0x82,0x5a,0xc6,0x20,0xf1,0xcf,0x59,0xe7,0xd4,0xbf,0x8,0x86,0x3c,0x4,0x89,0x5d,0x98,0xd8,0x7b,0xce,0x15,0x8b,0x74,0x6a,0x10,0xc8,0xeb,0x6f,0x6,0x18,0xa5,0x71,0x23,0x5f,0xbe,0x88,0xed,0x9d,0x67,0xd1,0x74,0x1b,0xf2,0xd5,0x63,0x56,0x98,0xf8,0xd3,0xe5,0x9c,0x35,0xc1,0xd0,0x39,0x4a,0x37,0x8c,0x9c,0x3a,0x4c,0x60,0x19,0xdd,0x23,0xc9,0x43,0x3,0xac,0xa1,0xf3,0xb,0xf3,0xd0,0x35,0x2d,0x1,0x7a,0x1c,0x2a,0xb1,0xdb,0xde,0x41,0x4a,0x91,0x83,0x48,0x8c,0xb2,0xc0,0x62,0xc,0xa,0x76,0x4a,0x22,0xac,0xb0,0x12,0x45,0xf6,0x9c,0xa,0xbf,0xc2,0x18,0x88,0x99,0x16,0x43,0x80,0x1,0x98,0x9,0x17,0x30,0xe,0x3d,0x6,0x96,0xa2,0xee,0xaf,0x6e,0xc3,0xfb,0x16,0xe3,0xb0,0x3,0xc4,0x4,0xbe,0xed,0xf8,0x7c,0x4,0x3e,0x8a,0x14,0x39,0x86,0xa0,0xc9,0xbb,0xda,0x28,0x81,0xde,0xab,0xc8,0xef,0x97,0x30,0x33,0x1a,0x6e,0xec,0x62,0x8c,0xd8,0x5d,0xdd,0x81,0xf3,0x9e,0x7c,0x13,0x63,0x54,0x63,0x7a,0xc3,0x61,0x18,0xf2,0x5e,0xa,0x3,0x51,0xcf,0x13,0x23,0x27,0x2a,0x8f,0xca,0xa6,0x1c,0xf6,0x5b,0xf4,0xbb,0x2d,0x62,0x88,0xca,0x2c,0x94,0x94,0xe5,0xc8,0x20,0x6c,0xc,0x13,0xa6,0x61,0xd0,0x64,0xe1,0xc0,0x80,0xac,0x3c,0xbf,0x91,0xe5,0xbc,0x56,0x59,0x77,0xe4,0x3d,0x98,0xd8,0xf0,0x7e,0x1a,0x29,0x60,0x24,0x46,0x2,0xe1,0x86,0xfd,0x56,0x53,0x7c,0xe9,0x7d,0xa7,0x67,0x9b,0xf8,0x33,0x25,0x40,0xa8,0x7c,0x16,0x84,0x11,0x94,0xc4,0x17,0x90,0xdf,0x3b,0x91,0x8a,0xc7,0x69,0x5a,0xb8,0x3a,0xa5,0x94,0x14,0xb8,0x15,0x70,0x4f,0x19,0xab,0xd3,0x88,0xfd,0xf6,0x72,0xd1,0xdc,0xca,0xf3,0x57,0x4f,0x32,0xb3,0x64,0x53,0x58,0x63,0x17,0x6c,0x96,0x5a,0xb5,0x6a,0xdd,0x87,0x5,0xbe,0x65,0x50,0xa9,0xe0,0x33,0x9,0x98,0x27,0xe3,0xd9,0x9c,0x0,0x9c,0x16,0x56,0x15,0xca,0xf6,0x83,0xa1,0xd,0x99,0x38,0x5b,0x35,0x10,0x9b,0xce,0xa0,0x75,0xc0,0x3f,0xfa,0x8f,0x7e,0xc,0x8f,0x3c,0x9,0x39,0xb1,0x5,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0xf4,0xd2,0xfb,0x76,0xcd,0x91,0x59,0x75,0xb2,0x81,0x24,0xcc,0xb1,0x18,0x23,0x6f,0xf2,0x1c,0x3,0x73,0x0,0xd0,0xb4,0x1b,0x65,0xdd,0x5b,0xeb,0xd4,0xba,0x20,0x67,0xa,0x2c,0x69,0x9a,0x96,0x18,0xd7,0xc2,0x4,0xe4,0xe0,0xd,0x63,0x2d,0x85,0x50,0x61,0xf6,0xf2,0x15,0x30,0xf,0x30,0xca,0x80,0x24,0x69,0x6d,0x9a,0x93,0xd6,0x85,0x49,0x2d,0x73,0x3d,0x27,0x6,0xdb,0x22,0x7c,0x83,0x18,0x81,0x8e,0x2d,0x42,0x24,0x41,0xd9,0x13,0x98,0x69,0x1d,0x31,0x9f,0x85,0x59,0x88,0xa5,0x4c,0x5b,0x36,0x4b,0x64,0x6e,0x47,0xe9,0xd3,0x68,0xad,0x6e,0xd0,0x29,0x48,0xa8,0x21,0x2d,0x86,0x81,0x3c,0x2,0x33,0xc5,0xf6,0x3,0x47,0x20,0xe2,0x2c,0x72,0x2d,0x1,0xbf,0xbc,0x90,0xe2,0x9a,0x55,0xff,0xc8,0xf9,0x7b,0x38,0x46,0xe7,0x72,0x3e,0xc6,0x7,0x17,0x88,0xf4,0x31,0xc0,0xb7,0x4a,0xe2,0x5b,0xb5,0xed,0x5b,0xc2,0x73,0xf9,0x28,0x6e,0x64,0xf9,0x7a,0xb3,0x60,0xed,0x95,0xff,0x7f,0x8,0xe,0xe6,0xc3,0x18,0x97,0xe2,0x9,0xe5,0x93,0xd7,0xa1,0xd7,0x92,0xe7,0xf5,0xdd,0xaa,0xdf,0x60,0xad,0x5a,0xb5,0x6a,0x7d,0x8b,0x55,0xf5,0x0,0xac,0x55,0xab,0x56,0xad,0xbb,0x81,0x7f,0x90,0x26,0x6a,0xfe,0x77,0xe6,0x9d,0x7a,0x5d,0xb4,0xe7,0xd9,0x0,0x5a,0xfc,0x7e,0x64,0x51,0x2f,0xc,0xb,0x11,0x95,0x18,0x6b,0xb4,0x21,0x30,0xec,0x1b,0x24,0xa9,0x8b,0x30,0xe4,0xdf,0x43,0x18,0x62,0x52,0x70,0x64,0x1a,0x7,0x95,0xeb,0x88,0xbf,0x90,0x31,0x86,0x65,0x40,0xb3,0x5c,0x37,0xb1,0x54,0x35,0x5,0x4a,0x8b,0x1d,0xf6,0x5b,0x6e,0xe2,0xc0,0x8d,0x4e,0xcb,0x0,0x65,0x42,0xe4,0x6b,0xde,0xef,0x2e,0xe1,0x7d,0x3,0xeb,0x1b,0x6d,0x34,0xb2,0xa1,0x63,0xc1,0x10,0xf3,0x6e,0x9a,0x6,0x58,0x6b,0xe1,0x1a,0x4f,0x21,0x1f,0xcc,0x4,0xdb,0x6f,0x2f,0x39,0x59,0x31,0xe2,0xe2,0xfa,0x3,0xd8,0x6f,0xef,0x20,0x4c,0x94,0xc8,0x2b,0xd2,0x5a,0xd,0x3f,0x61,0x1f,0x38,0x62,0xfd,0x11,0xb8,0x44,0x4d,0x5a,0xa6,0x64,0x58,0xdf,0x0,0x30,0x8,0x13,0x35,0x80,0x12,0x52,0x31,0x8d,0x3d,0x52,0x8c,0xd8,0x9c,0x5f,0x60,0xbf,0xbd,0x3,0xdf,0xb4,0xd8,0xef,0xb6,0x38,0xbf,0x76,0x3,0x29,0x26,0x65,0x36,0x1a,0x63,0x60,0xd4,0xf,0xb0,0x25,0xd9,0x55,0x8e,0x70,0xc,0xaa,0x8d,0x43,0xcf,0xfe,0x50,0x81,0x4d,0xe6,0xe5,0x1c,0xd,0x76,0x57,0x7b,0x7e,0xaf,0x48,0x7e,0xdb,0x76,0x1b,0xf5,0xeb,0xf3,0x4d,0x83,0x61,0xbf,0x83,0xb5,0x8e,0x82,0x38,0x86,0x1e,0xb6,0xed,0xc8,0xcb,0xd0,0x53,0x33,0x17,0x98,0xdd,0x26,0x49,0xc5,0x30,0xc0,0x38,0xf4,0xa,0xee,0xe6,0x21,0x61,0x18,0x7b,0x0,0x6,0x43,0xbf,0xc3,0xc5,0xf5,0x9b,0x68,0xbb,0xcd,0x2c,0xf5,0x42,0xa6,0x26,0x54,0xd2,0x27,0xb,0xc6,0x5d,0x19,0x4,0x23,0xe0,0xac,0x75,0x8e,0x9b,0x58,0xc3,0xac,0xc5,0x96,0x83,0x43,0x88,0x7d,0x37,0x70,0x8a,0xf2,0xe5,0xad,0x67,0x34,0xdc,0x43,0x4c,0xe0,0x63,0x98,0x60,0x9d,0xa3,0xfb,0x47,0xd2,0xd4,0xe4,0x7e,0xbf,0x55,0x9,0xb2,0x0,0x9f,0xc3,0x7e,0x87,0xee,0xec,0x82,0x80,0x3d,0x66,0xc9,0x90,0x94,0x37,0x23,0x86,0x88,0x8c,0xa0,0x6c,0x22,0xc3,0x48,0xb9,0x6f,0x1a,0xb4,0x9b,0x73,0x8c,0x43,0x8f,0xcd,0xf9,0xb5,0x39,0x65,0x93,0x9b,0x66,0xe9,0xa,0x25,0x41,0x33,0x9b,0x34,0xb7,0x52,0xa4,0x6d,0xab,0x83,0x4e,0xad,0x5a,0xf7,0xa1,0x4a,0x66,0xb1,0xfc,0x8a,0x59,0x66,0x57,0x83,0xfd,0x52,0xc5,0xeb,0xb4,0xdd,0x6c,0x90,0x39,0xed,0xdd,0xf1,0x5c,0x60,0xd9,0x9a,0x22,0x63,0xe,0xaf,0xb2,0xd6,0x31,0x43,0x3a,0xe1,0xef,0xbc,0xe3,0xcd,0x78,0xd5,0x63,0x8f,0xae,0x9e,0x3b,0x84,0x80,0x27,0x9f,0x7a,0x16,0x5f,0xf8,0xca,0x93,0xf8,0xf2,0xd7,0xbe,0x81,0x29,0x44,0x74,0x5d,0x8b,0x7,0x6f,0x5e,0xe0,0xf1,0x47,0x1f,0xc2,0xa3,0x8f,0x3c,0x84,0x8b,0xf3,0xcd,0x2a,0xf0,0xd3,0x34,0xed,0xec,0xd,0xdb,0xb6,0xc,0x98,0x19,0x4e,0xa9,0x3f,0x2e,0xc7,0x92,0x5f,0xda,0x8,0x4a,0x73,0x2a,0xbc,0xb3,0x68,0xd9,0x1a,0xc3,0x35,0x1e,0x61,0x9a,0x16,0xcf,0xc1,0x30,0xe0,0x8,0xa0,0x90,0x36,0x67,0xf5,0xe7,0x93,0x8d,0x11,0x6b,0xb3,0xce,0x59,0xce,0x35,0x3a,0xa7,0x1b,0xe3,0x74,0x85,0xe0,0x9a,0x6,0xd3,0x34,0xc2,0x7b,0xcf,0xcc,0xcb,0xa8,0x81,0x56,0x74,0xdd,0x14,0x6c,0x12,0x53,0x64,0xf6,0xbc,0xa4,0x1b,0x5b,0xf5,0xf3,0xa5,0xcd,0x95,0xac,0x60,0x92,0x58,0x7b,0xc8,0x7b,0x51,0x7a,0xb3,0x16,0x79,0xbd,0xa,0xe0,0xa2,0x0,0x78,0x13,0x7,0x91,0xc9,0xb8,0x7c,0x64,0x63,0x52,0xac,0x69,0x16,0xb2,0x56,0x73,0xb4,0x0,0x3a,0x6,0x1,0x5,0xcc,0x2b,0x6d,0xfc,0xca,0xff,0xe6,0x93,0x8b,0xa9,0xd5,0xef,0x99,0x13,0xdf,0x3b,0x8e,0xe,0x31,0x8b,0x70,0xe,0x73,0xf0,0xef,0x63,0x80,0xee,0xf0,0xa0,0x87,0x92,0xde,0x7c,0xf0,0x1a,0x73,0x12,0xe8,0x3b,0x5,0x50,0x2e,0x60,0xd5,0x22,0xb5,0xb9,0x56,0xad,0x5a,0xb5,0x2a,0x0,0x58,0xab,0x56,0xad,0x5a,0x2f,0xd2,0x4a,0x29,0x2c,0xfc,0xe5,0x74,0xc5,0x77,0xd0,0x58,0xe9,0x2,0x3b,0xb3,0x79,0xb9,0xb2,0x2b,0xb2,0x4a,0x61,0x2d,0x2f,0xe,0x55,0x7e,0x93,0x66,0x1f,0x22,0x6b,0x2d,0x52,0x48,0x2a,0xc3,0x52,0x0,0x91,0x93,0x84,0x5,0xe4,0x12,0x29,0x65,0x96,0x4d,0xf8,0x98,0x14,0x38,0x1a,0xfa,0x1d,0x62,0x20,0x90,0xad,0xc1,0x66,0x1,0xbc,0x48,0xda,0xa3,0x32,0xb,0x58,0xae,0x22,0x20,0x9d,0x80,0x47,0x92,0x42,0x9c,0x99,0x69,0x40,0xfe,0x77,0x49,0x43,0x38,0xac,0xb5,0x98,0x26,0x92,0x7a,0x5a,0x4b,0x41,0x17,0x6,0x6,0x97,0xb7,0x9e,0xa6,0xf4,0x59,0x65,0x45,0x0,0x93,0xe9,0x35,0xec,0xa4,0x6c,0x66,0xa4,0x28,0x59,0x38,0xc2,0xfb,0x16,0xfb,0xed,0x25,0xda,0xee,0x8c,0xd8,0x27,0x1a,0xe,0x92,0xb8,0xf7,0x30,0xd8,0x5d,0xde,0x26,0xe9,0x72,0x1e,0xe1,0x9c,0xc3,0x38,0xf4,0xf0,0x6d,0xab,0xd,0xad,0x63,0xb0,0xd5,0x68,0x30,0x45,0x86,0x6b,0xda,0xc5,0xf5,0xc4,0x69,0x52,0x36,0xa5,0x24,0x20,0x8f,0x1c,0x78,0x32,0xb2,0x4f,0x9e,0x30,0x2e,0x62,0xc,0x38,0x6f,0x3b,0x95,0x14,0x8b,0x6f,0x94,0x0,0x57,0x14,0xe0,0xe1,0x35,0xe9,0x17,0xb0,0xb3,0x17,0x20,0x3,0x6e,0x61,0x9a,0xd0,0xef,0xb6,0x1a,0x9c,0x62,0xc,0x31,0x8,0xf7,0xdb,0x2b,0x74,0x9b,0x33,0xb4,0x67,0xe7,0x2a,0xf7,0x8d,0x31,0x22,0x8d,0x24,0xf1,0x95,0x67,0x34,0xf4,0x3b,0x4d,0x60,0x6e,0xba,0xd,0xc6,0x61,0x8f,0x8d,0xbd,0xa0,0x67,0xef,0x3c,0x42,0x9e,0xc8,0x1b,0x8b,0xdf,0x2b,0xeb,0x1c,0xfa,0xdd,0x55,0xe1,0xab,0x48,0xef,0x73,0xe6,0x6,0x52,0xc5,0x4b,0x29,0x21,0xf2,0xd7,0xc5,0x63,0x90,0xfa,0x44,0x62,0x8f,0x58,0xf5,0xfd,0x22,0xe0,0x3a,0xe5,0x4,0x9b,0x85,0x81,0x5a,0x78,0x57,0x1a,0xb,0x63,0x33,0x72,0x8c,0x48,0x39,0x63,0xe2,0xa4,0x68,0x61,0x78,0xe6,0x22,0x74,0x46,0x8c,0xfc,0x85,0x11,0x4b,0xde,0x89,0x4b,0x66,0x60,0xce,0x11,0xc6,0xd6,0x65,0x49,0xad,0x5a,0xf7,0x5,0x0,0x94,0x39,0x4b,0x19,0x4a,0x40,0x4a,0x9c,0xbe,0xcd,0xe3,0x91,0x73,0xd,0x8c,0x9d,0xbd,0x4c,0xbd,0x6f,0x54,0x3a,0x2a,0x73,0x90,0x1,0xcd,0x13,0xc2,0xd2,0x9d,0xc6,0x1,0xf,0xdc,0xb8,0x8e,0x1f,0x7c,0xdb,0x9b,0x56,0xcf,0xfb,0x8d,0xa7,0x6f,0xe1,0xd7,0xff,0xfd,0xfb,0xf1,0xc9,0x2f,0x3c,0x89,0xc0,0xe7,0x1,0xc0,0xac,0x61,0x9a,0x17,0x1f,0xbc,0x71,0x81,0xef,0x79,0xed,0x63,0xf8,0xa1,0xb7,0x7d,0x37,0x1e,0x7a,0xe9,0x83,0x33,0x98,0xe7,0x24,0xc5,0xd7,0xeb,0x6b,0x8c,0x35,0x34,0x7f,0xba,0x66,0x1d,0xe4,0xb4,0x9e,0x8f,0x6b,0x61,0xcc,0xbc,0x49,0x36,0xe,0xbd,0x8e,0xf7,0x61,0xa4,0xc0,0x25,0x18,0xc0,0xb0,0x5,0x81,0x24,0x1c,0xcb,0xd8,0x27,0xe3,0x2e,0x5,0x52,0x45,0xbd,0x7f,0x6b,0x1d,0xb2,0xa7,0xd,0xad,0x69,0x1c,0xf4,0x1a,0x9d,0x6f,0x78,0xc,0xa5,0x4d,0x20,0xef,0xe7,0x24,0xf5,0x71,0x1a,0xe1,0x9b,0x46,0xff,0x3d,0xcf,0xeb,0xf3,0x38,0x6a,0x99,0x85,0xcf,0x1e,0x22,0xa,0xde,0xc9,0x98,0x28,0x7e,0xb7,0xb3,0x3f,0x61,0x5e,0xcc,0x31,0xa2,0x28,0x90,0x39,0x5d,0xee,0x41,0x58,0x7f,0xb2,0x49,0x28,0xcc,0xc0,0x79,0x3d,0x72,0x80,0x62,0x29,0xf6,0x55,0xb2,0xfe,0xe,0x10,0x38,0xf9,0x9a,0x39,0xc0,0xd6,0x56,0xc2,0x7b,0x17,0xdf,0x3f,0x65,0x9f,0x72,0x2,0x50,0x5b,0x2,0x7c,0xcb,0x98,0x92,0xf9,0x90,0xf9,0x0,0x14,0x3c,0x5,0xd7,0x1d,0xdc,0xcf,0xe2,0x22,0xee,0x15,0x1d,0x5c,0xdc,0x48,0xf9,0x3c,0xb0,0x5c,0xff,0xe5,0x62,0xff,0x2a,0xf1,0xda,0xae,0x56,0xad,0x5a,0xb5,0x2a,0x0,0x58,0xab,0x56,0xad,0x5a,0x2f,0xf2,0x12,0xbf,0xa4,0xd9,0x30,0x3a,0x2f,0x8d,0xaa,0xa5,0xbb,0xe2,0xef,0xe5,0x22,0xb9,0xcf,0xf0,0xe2,0x5f,0x2,0x43,0x92,0x30,0x0,0xc0,0x3e,0x74,0x29,0xaa,0x7f,0x9d,0xae,0x26,0x19,0x44,0xb4,0x86,0x3c,0x85,0x66,0x16,0x21,0x14,0xe0,0xb2,0xec,0x9f,0x47,0x81,0xd,0x86,0x19,0x6a,0x1b,0x8c,0x7d,0xaf,0xac,0xb8,0x30,0x8d,0xf0,0xbe,0xc1,0xf9,0xb5,0x1b,0xc,0xf4,0x84,0x45,0xc3,0x23,0x8d,0x81,0x30,0x2b,0x72,0x1e,0x55,0x26,0x6a,0xad,0x43,0xd4,0x94,0xc1,0xc8,0xff,0x8e,0x98,0xa6,0x11,0xe7,0xd7,0x6e,0xb0,0xb7,0x20,0x49,0x55,0x37,0x67,0x17,0xb8,0xbc,0xfd,0xc,0x2e,0xae,0x3f,0x40,0x1e,0x80,0x13,0x49,0x70,0x9b,0x6e,0x3,0xef,0x3c,0xfa,0xfd,0x15,0x9c,0xf3,0x6c,0xbc,0x9e,0x95,0xf5,0x97,0x53,0x56,0x26,0xe0,0xd9,0xc5,0x75,0x62,0x8,0x3a,0xb7,0x90,0xa6,0x89,0xf4,0x98,0xae,0x3b,0xab,0x44,0xd6,0xdf,0x68,0x94,0x49,0x99,0xc,0xb3,0xe3,0xc,0xe0,0x7d,0x4b,0xa0,0xa8,0xe5,0x50,0x14,0x64,0x6a,0x6a,0xb,0x60,0x2e,0xb1,0xc4,0x38,0x23,0x69,0x53,0x27,0xd,0x58,0x98,0x46,0x4c,0xe3,0x80,0x6e,0x73,0x46,0x4d,0xb1,0xb5,0xcc,0x4e,0x9c,0x99,0x86,0x65,0x8a,0x70,0xc,0x14,0xa,0x42,0x1e,0x89,0xf4,0xb3,0xf4,0x73,0x4,0x96,0xb6,0x5d,0x47,0xc1,0x2b,0x9c,0x28,0xdc,0xb4,0x1d,0xa6,0x69,0x20,0x60,0x35,0x67,0x65,0x9e,0x88,0x3f,0x54,0xc,0x93,0x6,0xc1,0x38,0xe7,0x11,0x12,0xf9,0xfb,0xe5,0x44,0x72,0xde,0x5d,0x22,0xa6,0x4b,0xb7,0x39,0x83,0xf3,0xf4,0xc,0xd4,0x77,0x11,0x86,0x59,0x93,0x23,0x3,0xba,0xf4,0xcc,0xa6,0x91,0xd8,0x78,0xf2,0x7c,0x25,0x74,0x23,0xa4,0xc8,0x5e,0x80,0x1,0xc3,0x7e,0xc7,0x60,0x2c,0x5,0x87,0x64,0x66,0xf1,0x35,0x6d,0x7,0x93,0xa1,0xe6,0xfa,0xe2,0x23,0x66,0x9d,0x67,0xc9,0x9b,0xc5,0x6e,0xb8,0x52,0x46,0xab,0xc8,0xef,0x9c,0xf3,0x2a,0x4b,0xb3,0x96,0x40,0x65,0xef,0x1b,0x2,0x13,0x55,0x92,0x36,0xff,0x31,0x58,0x82,0xc3,0xb5,0x6a,0xd5,0x7a,0x81,0x0,0x60,0x91,0x2e,0x5f,0x2,0x66,0x59,0x19,0xe4,0x19,0xd9,0xca,0x66,0x53,0xa6,0xcd,0x9f,0x44,0x96,0xa,0x73,0xc0,0x55,0x56,0xc9,0x29,0x8d,0x1d,0x34,0x6,0xbc,0xe1,0x3b,0x5e,0x89,0x7,0x6e,0x5e,0x5f,0x1,0xff,0x9e,0xc5,0xff,0xf8,0x2f,0xdf,0x83,0x27,0x6f,0x5d,0xc1,0x39,0x7,0xef,0x3d,0x2,0xfb,0x80,0xfa,0xa6,0x51,0xe0,0xff,0xa9,0x5b,0x97,0x78,0xcf,0xfb,0x3f,0x86,0x3f,0xfa,0xc8,0xa7,0xf0,0x63,0x3f,0xf4,0x26,0xbc,0xf3,0x7,0xde,0x8c,0xb6,0x65,0xc0,0xcc,0x79,0x9d,0xbb,0x74,0xfe,0xcd,0xa7,0x69,0x65,0xd6,0x5a,0x1e,0xeb,0x88,0x9,0x27,0xa0,0x9a,0xc8,0x98,0x27,0x96,0x15,0x4b,0x2a,0x3d,0x31,0x1c,0x69,0x7c,0x25,0x9f,0x57,0x57,0x84,0x2b,0x59,0xdd,0x1c,0x22,0x42,0x72,0xa4,0x40,0x10,0x66,0x12,0x8a,0xfc,0xd9,0x16,0x48,0x98,0x6f,0x1a,0xb6,0x6b,0x20,0xb9,0x71,0xc,0xb4,0x31,0x63,0x9d,0xe7,0xb9,0x60,0x7e,0xee,0xde,0x53,0x80,0x14,0x9c,0x43,0xa,0x41,0x2d,0x38,0x72,0x4a,0xc4,0x68,0x33,0xd0,0xd,0x9b,0x9c,0xb2,0x5e,0x93,0xac,0x1b,0x64,0xf3,0x50,0xd7,0x17,0x62,0x9d,0xb0,0xc2,0xd2,0x5b,0x84,0x5b,0xa8,0x62,0xc0,0x28,0xb4,0x26,0xf3,0xa7,0x86,0x81,0x8,0x8,0x28,0x94,0xbc,0xf2,0xdf,0x2b,0x96,0x7f,0x38,0x80,0xe9,0x4e,0x62,0x69,0x87,0xe4,0xc1,0x3,0x40,0x6f,0x89,0x35,0x9a,0x3,0x20,0xf0,0x98,0xe1,0x57,0x1e,0xf0,0x18,0x97,0x33,0xc7,0xc,0xc0,0xf5,0x13,0xad,0x5f,0xe7,0xe1,0xd7,0x4d,0x5e,0xbf,0xf,0xd5,0xfe,0xce,0xdf,0x17,0xb,0x97,0x2a,0x3,0xae,0x55,0xab,0x56,0x5,0x0,0x6b,0xd5,0xaa,0x55,0xeb,0xc5,0x5e,0x29,0x15,0xb,0xbf,0xac,0xec,0xbb,0x85,0xc7,0x8c,0x2c,0xc0,0xb3,0x2c,0x6,0xed,0x2c,0xa9,0x15,0xef,0x20,0x6,0x44,0x8,0x18,0x34,0x85,0xe4,0xb6,0x58,0x63,0x8b,0xac,0x37,0x65,0xa4,0x38,0x69,0x82,0xb0,0xfa,0x13,0xa5,0xb9,0x1,0x20,0x2f,0x38,0x66,0x7a,0xe5,0x84,0xfd,0xf6,0xe,0x60,0x48,0x66,0x3a,0xf6,0x7b,0x65,0x51,0x90,0x37,0xe0,0x8,0x63,0x3a,0x62,0x70,0x45,0xa,0xc,0xa1,0x40,0x7,0x92,0x35,0x91,0x5c,0xd5,0x2f,0x58,0x5b,0x0,0x90,0x2,0x85,0x72,0xc8,0x3d,0x3a,0x96,0x4e,0x19,0x63,0x71,0x7e,0xed,0x6,0x7c,0xd3,0xe2,0xf2,0xd6,0xd3,0x94,0x76,0xbb,0xdf,0xaa,0x67,0xde,0xb5,0xeb,0xf,0x60,0xec,0x77,0xd8,0x4d,0x13,0x31,0x0,0x9b,0x8c,0x69,0x1a,0xd0,0xb6,0x1b,0x6c,0x2f,0x6f,0xc3,0x79,0x8f,0x71,0xd8,0x93,0x5c,0x98,0x81,0x37,0x32,0x7f,0x3f,0xc7,0x34,0xd,0x2a,0x2d,0xce,0x89,0x92,0x28,0xc3,0x34,0xf2,0xbf,0x93,0xfa,0x1a,0xa,0x6b,0xc5,0x79,0x2,0xcf,0x88,0xb9,0x91,0x88,0x81,0xa9,0xb,0x74,0xc3,0xb2,0xaa,0xac,0x1e,0x7d,0x86,0x3d,0xe7,0xc4,0xb,0x4f,0x53,0x1d,0x59,0x3a,0x1b,0x39,0xe9,0xd6,0x5c,0x7f,0x80,0x80,0x4b,0xf6,0xbb,0x6b,0x3a,0x3f,0x33,0xeb,0xa,0x39,0xac,0x80,0x8c,0xf2,0xec,0xad,0x75,0xc4,0xec,0x63,0x46,0x46,0xc,0x1,0xfb,0xed,0x25,0x42,0x18,0x61,0x0,0xa4,0x18,0x70,0xed,0xc6,0x83,0x18,0xfa,0xdd,0xdc,0xe4,0x32,0x3b,0x54,0xbc,0xfd,0xc8,0xcf,0xaf,0xd7,0xcf,0xd3,0xd0,0xef,0x61,0xad,0x81,0x6f,0x3a,0x6,0x83,0xcf,0x0,0x64,0x4,0x96,0x87,0x5b,0xe7,0x90,0xa7,0x8c,0x7e,0x77,0xa5,0xe6,0xf0,0x22,0xff,0xf5,0x4d,0xcb,0xef,0xbf,0xc5,0xc4,0xcc,0x45,0x69,0x58,0x84,0xd5,0x48,0x9,0x9a,0x13,0xb6,0x97,0xb7,0xd1,0xb4,0x1d,0xae,0x19,0x83,0xb6,0x3b,0x53,0x20,0x32,0xa5,0x0,0x8b,0xa6,0x8,0xb9,0x99,0xd3,0x30,0xad,0x75,0x88,0x8,0x48,0xcc,0xb6,0x34,0xd6,0x61,0x77,0x75,0x1b,0x9b,0xf3,0x6b,0xcc,0x30,0x9d,0x3,0x5d,0xc4,0x1f,0xd2,0xe4,0x59,0x8e,0x26,0x9,0xca,0xe2,0x9f,0x69,0x8c,0x43,0xce,0xb1,0x8e,0x3b,0xb5,0x6a,0xbd,0xa0,0x32,0x8b,0x3c,0x7,0xb1,0x1,0xc8,0x59,0xec,0x27,0xe8,0x77,0xd0,0xe9,0x58,0xc5,0x1e,0xa0,0xc,0xd6,0x9,0xb,0xd8,0x38,0xb7,0x0,0x39,0xac,0xb5,0x78,0xe2,0xd5,0xaf,0x3c,0x4a,0xfb,0xcd,0x39,0xe3,0x3d,0xef,0xfd,0x13,0x3c,0x7d,0xb9,0x57,0xc0,0x69,0xa,0x13,0xac,0xf3,0xc4,0x8e,0x4b,0xcb,0xd,0x2e,0xe4,0x8c,0xab,0xfd,0x80,0xff,0xe7,0xb7,0x3f,0x84,0x4f,0x7d,0xee,0xab,0xf8,0x87,0x3f,0xfd,0xb7,0xd9,0x4e,0x80,0x82,0x3c,0xc8,0x52,0xa0,0x63,0xe0,0xce,0xac,0x45,0xd0,0xd2,0x1c,0xc5,0x89,0xea,0x92,0x4a,0x2f,0xc1,0x1e,0x62,0x79,0xe0,0x7c,0xc3,0xc,0xf1,0x49,0x25,0xbe,0xd6,0x39,0x4c,0xd3,0x88,0xa6,0xdb,0x20,0xc7,0xa4,0x1b,0x39,0x22,0xff,0x15,0x60,0xd1,0x78,0x92,0xe,0xd3,0x58,0x3a,0xaa,0xbf,0x9e,0x75,0xcc,0xd0,0xcf,0x1,0xd3,0x38,0xe8,0xe6,0x6,0xcd,0x61,0xd,0x32,0x12,0xc,0x2c,0x1,0xac,0xa0,0xb0,0x2a,0xcf,0x73,0x8b,0x30,0xf8,0x8d,0xb5,0x7a,0x3e,0x49,0xff,0x35,0x59,0xec,0x11,0xe8,0x41,0x11,0xe8,0x47,0xf3,0xae,0x24,0x17,0x6b,0x62,0xb0,0x78,0xce,0x49,0x60,0x8b,0x78,0x26,0xae,0x24,0xe7,0x66,0x14,0x9,0xc3,0xfa,0x7e,0xa5,0x42,0xe2,0x8b,0xe5,0xa6,0xe6,0xa9,0xf0,0x8e,0x2,0x48,0xcb,0x0,0xcc,0x41,0x40,0xc8,0xea,0x5b,0xb4,0x12,0xd6,0x61,0xb0,0x94,0xea,0x96,0x92,0xe6,0x43,0x9f,0xbe,0x5c,0x82,0x9b,0xcb,0x65,0xd6,0x82,0xf7,0xb7,0x0,0xff,0xf2,0xa,0x78,0x77,0x4,0xee,0x9d,0x2,0xf6,0xd6,0x5e,0x73,0xf2,0xee,0xf4,0x65,0xb9,0x6e,0x60,0xd5,0xaa,0x55,0xeb,0x45,0x52,0x35,0x4,0xa4,0x56,0xad,0x5a,0xb5,0xee,0xd9,0x47,0x1d,0xec,0x33,0xb,0x60,0xa7,0x69,0x7d,0xf3,0x22,0x51,0x98,0x4,0xea,0xdb,0x83,0xcc,0x92,0xc9,0xac,0x29,0xc1,0xca,0xbe,0x60,0x6f,0x25,0x1,0x48,0x8c,0x81,0x4a,0x6e,0xa5,0x29,0x20,0x9f,0xbb,0xa4,0xc9,0xab,0xe2,0xb9,0x26,0x89,0xb2,0x12,0xee,0x60,0xac,0x45,0xb7,0xb9,0x50,0x40,0x66,0x7b,0xe7,0x96,0x6,0x8b,0xa8,0xa1,0x39,0x3,0x86,0x56,0x53,0x76,0xa3,0x2,0x34,0x21,0x4c,0x98,0x86,0x9e,0x1a,0x2a,0x6,0xd6,0x88,0xe9,0x25,0xcd,0x14,0xc9,0xb0,0x28,0x61,0x16,0x68,0xbb,0x8d,0x6,0x5a,0x58,0xe7,0xe0,0x9c,0xc7,0x6e,0x7b,0x7,0xd3,0x34,0xa2,0xed,0x36,0xe8,0xfb,0x1d,0xae,0xee,0xdc,0x62,0x46,0xdb,0x80,0x67,0x9f,0xfa,0x3a,0xc6,0x7e,0x8f,0xdb,0xcf,0x7c,0x43,0x83,0x39,0x90,0xa1,0x29,0xba,0xc4,0xae,0xa0,0xc4,0x61,0x62,0x2f,0x4e,0xfc,0xef,0x81,0x31,0xd8,0xa4,0x72,0xd8,0x69,0x1c,0x48,0xba,0x6b,0x96,0x3a,0xa3,0x9c,0x93,0xca,0xcc,0x62,0x88,0x2a,0x7f,0xa2,0x84,0xdc,0xa8,0x9,0x91,0x74,0xbc,0x88,0x74,0x20,0xd7,0xf1,0x85,0xf7,0x94,0xe1,0x94,0x60,0x7a,0xbe,0x91,0xc3,0x59,0x8,0xcc,0x15,0x46,0xa6,0xc8,0xbe,0x25,0x4,0x64,0x1a,0x7,0x6,0xf2,0xb2,0xb2,0xf6,0x88,0x5d,0x62,0x61,0x1d,0x25,0x46,0x6f,0xaf,0xe8,0x19,0xf5,0xfb,0x2d,0xa6,0xa1,0xc7,0xb0,0xdf,0xe9,0xbd,0xb,0xd3,0x31,0xe7,0x8c,0x7e,0x47,0x60,0xea,0xf6,0xf2,0x16,0x84,0xc5,0x37,0xec,0xf7,0xf4,0xba,0xb1,0xe7,0x73,0x4e,0x2a,0xc9,0x8b,0xfc,0xfe,0x49,0x9f,0x12,0x63,0xc0,0xee,0xea,0xe,0x44,0x1a,0x17,0x26,0x92,0xd2,0x9,0xf8,0x97,0x62,0xe2,0x40,0x13,0xa,0x2a,0xa1,0x70,0x17,0x62,0x4a,0x36,0xdd,0x46,0xcf,0x43,0x40,0x71,0xa0,0xe7,0xc1,0xbe,0x56,0xfa,0x2c,0xf8,0x73,0xeb,0x7c,0xc3,0x8c,0x3f,0x36,0xdf,0xcf,0x19,0x6d,0x77,0x36,0x1b,0xef,0x4b,0xe2,0x35,0x66,0x7f,0x2b,0x5,0x2d,0x17,0xb2,0x29,0x49,0x1e,0xad,0x8d,0x54,0xad,0x5a,0x2f,0xb4,0x66,0xf9,0x64,0x3e,0x98,0xcb,0xb0,0xb0,0x8,0x20,0x8b,0x82,0xc0,0x56,0x0,0x86,0x19,0x72,0x73,0xa,0xb8,0x58,0x5c,0xc8,0xd8,0x66,0x8c,0xc5,0xc3,0x2f,0x7b,0xc9,0xd1,0xf9,0xf6,0xfd,0x88,0xbf,0xf8,0xc2,0x5f,0x29,0x23,0x2d,0x84,0x30,0xb3,0xd1,0x8b,0x70,0x29,0xf1,0xbe,0x13,0x86,0x70,0x8,0x13,0x3e,0xf1,0xf9,0xaf,0xe1,0x97,0xff,0xf7,0xff,0x17,0x9f,0xff,0xf2,0x5f,0x11,0x23,0xdd,0x8,0x2b,0x98,0x82,0x34,0x9c,0xf3,0x77,0x49,0x8b,0x20,0x76,0x5e,0xd3,0x76,0x3c,0x97,0x4c,0x9a,0x1a,0x6c,0xec,0x6c,0x7d,0x61,0x8c,0x45,0xd3,0x6e,0xe0,0x7c,0x83,0xa6,0x21,0x16,0x35,0xd3,0xfb,0xe0,0x98,0xc5,0xd7,0x76,0x1b,0xe,0x63,0x8a,0xa,0x94,0xca,0x71,0x3d,0x87,0x5f,0xa5,0x14,0x79,0xce,0x75,0x94,0x2a,0xcc,0x1b,0x64,0xba,0xc1,0xc7,0x4c,0x75,0x4a,0x48,0xf7,0xcc,0xc,0xf7,0x34,0x4f,0xf2,0x46,0x91,0x0,0x88,0xba,0x51,0x14,0xe7,0xb1,0x95,0x58,0x7f,0xf2,0xac,0x72,0xc1,0xfa,0xa3,0xb5,0x83,0x35,0xc4,0x92,0x9f,0x81,0xbb,0x39,0xc8,0x9,0xb,0x38,0x4c,0x40,0x60,0x9,0x2d,0xcb,0xc5,0xc7,0xc1,0xcc,0xff,0xe5,0xc7,0xa8,0x80,0xee,0xdd,0xd4,0xb1,0xc5,0x52,0xe8,0x14,0x2f,0x6f,0x19,0xb6,0x71,0x4a,0x9c,0x3b,0xfb,0xe,0x2e,0x7e,0x26,0xe7,0xa3,0x3b,0xc0,0x41,0x8,0x5b,0x3e,0x91,0x1c,0x9c,0xf,0x95,0x19,0x87,0x9,0xc2,0x77,0x63,0xff,0xad,0xdd,0xb2,0xc8,0xe7,0xcd,0xf1,0xdd,0x2d,0x40,0xf6,0x12,0xb0,0xac,0xec,0xbf,0x5a,0xb5,0x6a,0x55,0x0,0xb0,0x56,0xad,0x5a,0xb5,0x5e,0xe4,0x83,0xa4,0xf3,0xa7,0x17,0x87,0x58,0x2e,0xbe,0x45,0xc6,0x29,0x8b,0xf5,0x94,0xa2,0xfa,0x29,0xe9,0x72,0xb1,0xf0,0xb7,0x33,0x98,0xbd,0x7c,0xa0,0x86,0xe3,0xb3,0x44,0x57,0x16,0x9f,0xba,0xb0,0xe7,0x73,0x9,0x4b,0x70,0x36,0xe,0xf,0x9c,0xe0,0xda,0xa8,0x8f,0xdf,0x83,0xf,0xbf,0x82,0x43,0x2a,0xc,0xa6,0xb1,0x67,0x39,0x2c,0x98,0x15,0x11,0x34,0x5,0x32,0x30,0x38,0x26,0xac,0xb5,0xc0,0x29,0xc2,0x2,0x88,0x45,0x6e,0xe2,0x42,0x98,0x14,0xd4,0x72,0xde,0xc3,0x37,0xd,0xba,0xcd,0x39,0x2e,0xae,0xdf,0xc4,0xcd,0x7,0x1f,0xc2,0xe6,0xfc,0x2,0x6d,0x77,0x6,0xdf,0x34,0x78,0xf6,0x1b,0x5f,0xa7,0x24,0x5d,0xe7,0x31,0xc,0x7b,0x84,0x69,0xe2,0xa6,0x29,0xa2,0x3b,0x3b,0x83,0xf3,0x4,0x40,0x76,0x67,0xe7,0xe8,0x36,0xe7,0x68,0x3b,0x92,0xb3,0x8a,0x8c,0x36,0x17,0x69,0xb5,0x6d,0xbb,0xe1,0x46,0x91,0xee,0xf7,0xe2,0xfa,0xcd,0xb9,0x79,0x45,0x46,0x8a,0x69,0xe9,0xad,0xc4,0xcf,0x59,0xd2,0x17,0xc5,0x4b,0x89,0x64,0x64,0xd0,0xf7,0x44,0xe5,0xc0,0x2c,0x5,0x43,0x86,0xfa,0xd6,0xa9,0x3c,0x3a,0x17,0x8d,0x8a,0x26,0x36,0xfb,0x39,0x5,0xb2,0x78,0x56,0xe2,0x97,0x67,0x0,0xf6,0x6,0xf4,0x7a,0xc,0xdf,0xb4,0xe8,0x36,0xe7,0x4,0xd2,0x76,0x67,0x98,0xfa,0x1e,0xbb,0xab,0xdb,0x18,0x87,0x3d,0x81,0x79,0x31,0x60,0x1a,0xe9,0xde,0x49,0xba,0xdb,0x68,0x2a,0x31,0xa5,0xf3,0x26,0x8c,0xfd,0x1e,0x30,0xc0,0xe6,0xec,0x2,0xc6,0x3a,0x4a,0x6,0x4e,0x71,0x21,0x95,0xf3,0x4d,0x4b,0xc0,0x2c,0x4b,0xd8,0xba,0xb3,0x33,0x6e,0xb0,0x47,0x4e,0x82,0x9e,0x10,0xc6,0x91,0x8d,0xfc,0xc9,0x27,0x2b,0xc5,0x88,0xa6,0x3b,0xd3,0x4,0x4d,0x9,0x8a,0x11,0x20,0x7b,0xd8,0xef,0x16,0x3d,0x58,0x8c,0x91,0x3,0x56,0x92,0x7e,0x4e,0x63,0x98,0x28,0xc8,0xc4,0x37,0xb0,0xde,0xf1,0x67,0x61,0xa3,0xcf,0x37,0xb1,0xcc,0xcc,0x60,0xf6,0x1b,0xcc,0x2a,0xd5,0x63,0xf,0x27,0xf1,0xc5,0xac,0x43,0x4e,0xad,0x5a,0xf7,0x9,0x1,0xcc,0xb3,0xe4,0x53,0x7d,0xe3,0xc,0x1,0x63,0xc6,0x22,0x31,0xc0,0xe5,0x5c,0xa3,0x69,0xf3,0x29,0x6,0xe,0xb0,0xa0,0x5f,0x78,0x99,0x43,0xac,0xb1,0x1a,0x28,0x5,0x3,0x6c,0xba,0x76,0xe5,0x74,0x9,0xd3,0x34,0xfb,0x83,0x92,0x3f,0x29,0xcd,0x5d,0x29,0x6,0x9d,0x83,0x20,0xfe,0x82,0x7c,0x7d,0x32,0xe7,0x7d,0xe5,0x1b,0xcf,0xe2,0x73,0x5f,0x7b,0x86,0x81,0x2a,0x1e,0x9b,0x79,0x43,0xc4,0x18,0x73,0x22,0x21,0x9c,0x60,0x22,0xdf,0xb6,0x7a,0x7c,0xc7,0x3e,0xad,0x2,0xfe,0x11,0x3,0x3f,0x73,0xc2,0xfc,0x4,0xa7,0xf3,0x5c,0xe2,0x30,0x10,0xba,0x3f,0xa,0x37,0xa1,0x73,0xf9,0xb6,0x83,0xe7,0x31,0x58,0xe6,0x8,0x19,0xf3,0x9b,0xb6,0xa3,0x8d,0x14,0xde,0x6c,0x53,0x70,0x92,0xaf,0x4f,0xbe,0xa6,0x32,0x6a,0xbe,0x52,0x92,0x9,0x27,0xd,0x16,0x93,0x75,0x84,0x4,0x4c,0xa1,0x9c,0x77,0xc4,0x83,0xd5,0x94,0xf7,0x69,0x66,0xbf,0x61,0x3,0x2,0x20,0x79,0xd3,0x44,0x8e,0x65,0x6c,0x91,0x67,0x5b,0x80,0x86,0x38,0x4c,0x58,0xcf,0xc7,0xec,0xb8,0xbc,0xc6,0xfa,0x3b,0xc4,0xcb,0xee,0x9a,0x8b,0x91,0x61,0x8e,0x90,0xb5,0x99,0xd5,0xb7,0xee,0xd1,0x77,0x8,0x50,0xcf,0x27,0x5e,0xb0,0xf9,0x4e,0x63,0xbf,0x27,0x1,0xca,0xa3,0xef,0x1,0xeb,0xc,0xbf,0x23,0xf6,0xdf,0x32,0x27,0x79,0xfe,0xba,0xb9,0xcb,0x8b,0xf2,0x12,0x50,0xad,0x55,0xab,0x56,0xad,0x6f,0xe1,0xaa,0x12,0xe0,0x5a,0xb5,0x6a,0xd5,0xba,0x6b,0xf,0x95,0x97,0xb2,0x99,0xd2,0x51,0x3d,0xcf,0x7f,0x17,0x86,0x84,0xf8,0xfd,0x8,0x28,0xb4,0x90,0x85,0xf0,0xa,0xda,0x70,0xf2,0x1f,0xb1,0x8,0x8c,0xfa,0xa7,0x9,0x1b,0x6a,0x5e,0xd0,0x93,0xc1,0x38,0xc9,0x5a,0xb3,0x32,0xc,0xa5,0x49,0x89,0x9c,0x44,0x9b,0x52,0xd2,0xe6,0x65,0x73,0x7e,0x41,0x9,0xc0,0x6e,0x7,0xef,0x5b,0x4a,0x46,0x8c,0x11,0x2d,0x83,0x3c,0xd2,0x14,0x44,0xf1,0x87,0x4a,0xd0,0x6b,0x48,0x12,0x56,0x62,0x5d,0xd1,0xb0,0xe4,0xc2,0x5f,0x29,0xce,0xec,0x44,0x63,0x70,0x7e,0xfd,0x26,0x86,0x7e,0x8f,0xfd,0xf6,0xe,0xce,0xaf,0xdd,0xd4,0x66,0xa6,0xdb,0x9c,0x63,0xd8,0xef,0xd0,0xef,0xae,0x88,0x1d,0xe6,0x3d,0x7c,0x6a,0xf9,0x98,0x11,0xd6,0xfa,0x99,0xad,0xe7,0xe9,0xb8,0x4d,0xb7,0x61,0xaf,0xbe,0x82,0x19,0x1,0x4e,0xad,0x35,0xe4,0x27,0xd8,0x6,0xf2,0x1c,0x3c,0xbf,0x76,0x3,0x4d,0xb7,0xa1,0xc4,0x48,0xe,0xea,0x88,0x9c,0x5a,0x2c,0xac,0x91,0x9c,0xb2,0xfa,0x28,0x65,0x24,0x4d,0x67,0x16,0xbf,0x25,0xcb,0xec,0xd,0xe7,0x3c,0xa6,0x38,0xa0,0x69,0x5b,0x34,0xed,0x83,0x68,0x9a,0xe,0x43,0xbf,0x43,0xd3,0x76,0x2a,0xbf,0x26,0x76,0xc6,0xfc,0x3c,0x60,0xc,0xf9,0x8,0x5a,0xa7,0xa1,0x2b,0x28,0x12,0x7d,0xc5,0x3,0xd1,0x3a,0xf,0xf,0xa,0x92,0xe9,0x36,0xe7,0x9c,0x18,0x3c,0x22,0x83,0x8c,0xea,0x67,0xb9,0x1d,0x3f,0x1b,0xf6,0xaa,0xa,0xd3,0x8,0xeb,0x3d,0x5c,0x6a,0xb1,0x39,0x7,0x86,0xfd,0xe,0x9b,0xf3,0x6b,0x33,0xd8,0x96,0xc5,0xac,0x9f,0xc0,0xb3,0x59,0x46,0x46,0xfe,0x56,0x6d,0xbb,0x51,0x6f,0x40,0x5,0x8c,0x45,0xce,0xc7,0x40,0xa0,0xb0,0x51,0x9a,0xb6,0x83,0x61,0x1f,0xc7,0x89,0xd9,0x96,0xde,0xb7,0x9c,0x4a,0x6c,0x58,0x1a,0x1c,0x60,0x9a,0x56,0xfb,0x47,0x39,0x66,0x66,0x50,0x56,0xbc,0xa9,0xac,0xb5,0xb8,0xb8,0x76,0x53,0x25,0x71,0xdd,0xd9,0x39,0x85,0xc,0xa8,0x89,0x7d,0x9a,0x65,0xe6,0xc,0x96,0x4b,0x7a,0x22,0x7d,0xa6,0xb9,0xed,0x32,0xb6,0x4a,0x80,0x6b,0xd5,0x7a,0x81,0x65,0xac,0x21,0xfb,0xa,0x9e,0x7c,0x74,0x2c,0x2b,0x80,0xaa,0x9c,0x12,0x42,0x1a,0x39,0xd0,0x22,0xc3,0x3a,0xd9,0x34,0x31,0x45,0x9a,0x3d,0x8d,0x79,0x81,0xc1,0x2f,0x3,0x83,0xb8,0x22,0x77,0xec,0xda,0x16,0xf,0xbf,0xe4,0x1a,0xbe,0xfc,0xd4,0x1d,0xf5,0xdb,0x93,0x4d,0x31,0x49,0x4c,0x27,0x8b,0x83,0xb8,0xf0,0x4,0xa4,0xf1,0x2f,0x63,0x9a,0x46,0xda,0xe8,0x61,0x2f,0x35,0xef,0x3d,0x31,0xe0,0x85,0x51,0x97,0xd7,0xa9,0x69,0xd6,0xd2,0x5c,0x4c,0x52,0x5f,0x9,0xf,0x9,0x88,0x31,0x60,0x73,0x7e,0xd,0x81,0x19,0xe3,0x92,0x5e,0x4c,0x63,0xdc,0x6c,0x4d,0x50,0x2,0x63,0xb2,0xc1,0x35,0xfb,0xc5,0xce,0x16,0x9,0x94,0xa,0xdf,0xea,0x6,0x55,0xce,0x19,0x4d,0xd3,0xf0,0xe3,0xb1,0x48,0x31,0xe8,0x46,0x10,0x0,0x7a,0xa6,0x3c,0x1f,0xd8,0x42,0x46,0x2d,0x73,0xa9,0x48,0x7d,0x53,0xa,0xc8,0x79,0xe,0xdd,0x22,0x10,0xcb,0x2c,0x36,0xa3,0x12,0xcf,0xd,0x90,0xcd,0x14,0x33,0xdb,0x74,0xcc,0xeb,0x87,0xac,0xbe,0x81,0x92,0x0,0xad,0xa9,0xb4,0xb,0x10,0x30,0xaf,0x4a,0x78,0x8f,0x0,0x34,0xdd,0xfb,0xca,0x7,0x8e,0x7d,0xe5,0x5a,0xc8,0x2c,0xd8,0xdd,0xa5,0xa8,0x37,0x1f,0x82,0x64,0x87,0xa9,0xd4,0x38,0x1,0xd6,0x99,0xbc,0xee,0x21,0x68,0xee,0x2,0x4,0xae,0x2,0x7d,0x77,0x97,0xed,0xde,0x7b,0xb7,0x69,0x3d,0x4d,0x38,0x1f,0xdd,0x1f,0x74,0xbd,0x87,0xba,0x85,0x55,0xab,0x56,0xad,0xa,0x0,0xd6,0xaa,0x55,0xab,0xd6,0x8b,0xbc,0x89,0xd2,0xdd,0x74,0xfa,0x3f,0x53,0xf8,0xe3,0xe9,0xe2,0x30,0x1f,0x80,0x83,0x98,0x13,0xf9,0xa,0xee,0x9f,0x82,0x6f,0xe0,0x9d,0x7a,0x73,0xd0,0x10,0x98,0x22,0x10,0x21,0x86,0x49,0x1b,0x36,0xe7,0x5c,0xe1,0xcd,0x37,0xcb,0x79,0x48,0xaa,0x94,0xb4,0x99,0x6b,0xdb,0xe,0x29,0x6,0x74,0x67,0x67,0xf0,0x4d,0x8b,0x30,0xd,0x94,0x8,0xdc,0x8,0x48,0x46,0x7e,0x7c,0x64,0x4e,0x1e,0xa,0x90,0x92,0x98,0x1e,0x31,0x64,0x95,0xfd,0x96,0x40,0x1a,0x5d,0xdf,0x2c,0x69,0xca,0xac,0x33,0xcd,0x39,0xa1,0x69,0x5a,0x84,0xb6,0x53,0xc6,0x83,0xb0,0xd9,0x9c,0xf7,0xd8,0x9c,0x5f,0x63,0xa9,0x6f,0x46,0xc3,0x0,0xa5,0x18,0xa5,0x37,0xdd,0x6,0xc3,0x7e,0xc7,0x6c,0x39,0xcb,0x52,0x29,0xa7,0x6c,0x8b,0x14,0x67,0xe6,0x9e,0xa4,0x53,0x76,0x67,0x17,0xf0,0x7e,0xd2,0xe6,0xcb,0x72,0xc8,0x85,0xc8,0xac,0xe4,0xb9,0x13,0x18,0xb,0x5,0x95,0x84,0xad,0x46,0xa0,0x27,0xb3,0x4f,0xc,0x90,0x42,0x0,0x98,0xf9,0x21,0xc0,0x96,0x6f,0x3b,0x66,0xc9,0x38,0x6,0x2a,0x33,0x3,0x94,0x1d,0x7,0x80,0x24,0x6a,0x8e,0x99,0x19,0xaa,0xef,0x33,0xff,0xd7,0x37,0x8d,0x32,0x3f,0xac,0x0,0x84,0xae,0x1,0x3a,0xc3,0xd2,0xeb,0xd,0x1b,0xc9,0x5b,0x6e,0x20,0xa9,0xa1,0x6c,0xda,0x4e,0x8f,0x13,0xa7,0x9,0x6d,0xb7,0x41,0xdb,0x76,0xd8,0x5e,0xdd,0xc1,0xcd,0xf3,0xb,0x80,0xdf,0xf,0x63,0x2c,0x5,0x7a,0x30,0xeb,0x8e,0x1a,0xfa,0xd9,0x47,0xd0,0xfb,0x6,0xe6,0xec,0x9c,0x80,0x4d,0x4e,0x6a,0x96,0xb4,0xe4,0x39,0xf8,0x25,0x2b,0x13,0xcf,0x5a,0x87,0xb6,0x23,0xff,0x3f,0x77,0xde,0x28,0xcb,0x13,0x19,0x70,0xae,0xe1,0x50,0x0,0x5f,0x18,0xcf,0x47,0x38,0xd7,0x30,0x0,0x60,0xd8,0x54,0x9f,0x58,0x86,0xbe,0x69,0x29,0x2c,0xc0,0x37,0xc5,0x33,0x89,0x68,0xdc,0xa6,0x90,0xfc,0x66,0xd,0x96,0x29,0x7e,0x59,0xd8,0xc7,0xca,0x23,0x85,0xdb,0xcb,0xef,0xd5,0xaa,0x55,0xeb,0x79,0xcf,0x5e,0xca,0xb1,0xca,0xb3,0x97,0x9a,0xc8,0x4a,0x8d,0x71,0xa,0x54,0xd1,0xef,0x76,0x42,0x4a,0x34,0x3e,0x58,0x66,0x50,0xcb,0x46,0x91,0xc8,0x69,0x25,0x8c,0xe2,0x99,0x67,0xef,0xe0,0x55,0x8f,0x3d,0xba,0x6c,0x28,0xbc,0xc3,0xf,0xbe,0xf9,0x3b,0xf1,0xa5,0xf7,0x7c,0x70,0x61,0xc1,0x56,0x26,0xd5,0xca,0x1c,0xe8,0x38,0xc4,0xca,0x58,0x87,0x30,0xd,0x3a,0xef,0xa5,0x18,0xd0,0x74,0xcd,0x1c,0x40,0xe2,0x2c,0x52,0x22,0xf9,0xad,0x6c,0x8c,0xad,0x20,0x9d,0x7c,0x8d,0x8e,0x2,0x8c,0x8a,0xb0,0xad,0x18,0x26,0x58,0xeb,0x74,0x2e,0x6a,0xda,0x73,0xf2,0x5e,0x6d,0xc8,0x63,0xd6,0x39,0xda,0x94,0x12,0x3f,0x44,0x5,0xdd,0x78,0x7c,0x2e,0xc1,0x1d,0x93,0xa1,0x81,0x59,0xe2,0x17,0x48,0x0,0x1e,0x85,0x8e,0x8,0x7b,0x3a,0x83,0x3c,0x80,0xc7,0xa1,0x67,0xb6,0x7c,0xab,0xbe,0x84,0x12,0x1e,0x25,0xa1,0x48,0x93,0x4,0x8b,0x18,0xf2,0xaa,0x9d,0x55,0x1,0x46,0x83,0x48,0x12,0x87,0x67,0x19,0x0,0x91,0x7d,0x1c,0x4b,0x40,0x2f,0x3,0xc8,0x31,0x2e,0xc6,0x58,0xdd,0x90,0xca,0xe9,0x98,0x39,0x99,0x71,0x62,0x3,0x73,0x5e,0x5f,0x2c,0xd8,0x6f,0x19,0xc8,0xe6,0x78,0x8d,0x33,0x43,0x63,0x79,0x6,0xc4,0x18,0xe4,0x5b,0xe5,0x72,0xaf,0x1,0x79,0x6b,0xf8,0x5c,0xe9,0xb7,0xb7,0x2,0x48,0x9e,0xc0,0xe5,0x70,0xfa,0x84,0x87,0x27,0xcf,0xc0,0xc2,0x75,0xf0,0x5e,0xe0,0x1f,0x56,0xef,0xf9,0xf8,0xb2,0xab,0x75,0x45,0xad,0x5a,0xb5,0x2a,0x0,0x58,0xab,0x56,0xad,0x5a,0x2f,0xfa,0x4a,0x29,0xcc,0xeb,0x65,0xcc,0xec,0x3e,0x5d,0x42,0x16,0xcc,0xa5,0x59,0x76,0x34,0x1b,0xae,0x1f,0x9a,0xd1,0x88,0x14,0x55,0x76,0xe8,0xa9,0xe1,0xe0,0xaf,0x19,0x91,0x3e,0xcd,0xec,0x41,0x6b,0x67,0xb6,0x86,0x48,0x87,0xe5,0x98,0x24,0x61,0xf2,0x70,0xce,0x28,0x3b,0xcf,0x32,0x90,0x66,0x5d,0x42,0xd3,0x75,0xb,0x76,0x56,0x99,0x52,0xa7,0x20,0x14,0xfb,0xdb,0x4d,0xe3,0xc8,0x4d,0x1f,0x98,0x3d,0x46,0xcc,0x36,0xe3,0xa8,0x1,0x29,0x13,0x7,0x93,0x4a,0x74,0xa9,0x71,0xe9,0x36,0x17,0x18,0x87,0x3d,0xba,0xb3,0x73,0x66,0x1b,0x6e,0x16,0xcc,0xc9,0x30,0x8d,0xec,0x99,0x97,0xd9,0xb,0xc9,0x73,0xd2,0xee,0x39,0xa7,0x26,0x92,0x41,0xba,0x34,0x78,0x72,0x9d,0xd2,0x4,0x59,0xb,0xc0,0x5a,0xb8,0x48,0xe9,0xbd,0x2,0x2e,0x9,0x3b,0x2d,0xe7,0xc,0xd3,0x74,0xb0,0xd6,0xa8,0x24,0x57,0xce,0x95,0xe2,0xfc,0xfe,0x88,0x11,0x3a,0xbd,0x41,0xb3,0x74,0xca,0x30,0xd3,0x25,0xc6,0x89,0x65,0xd4,0x4e,0xcd,0xda,0xad,0xf7,0xa,0xc0,0x4a,0xa2,0xb3,0xbc,0xad,0x2,0xa2,0x49,0xa3,0x66,0xc,0x18,0x34,0x4d,0xca,0x8,0x11,0xe6,0x8d,0x78,0xf,0x9a,0x48,0xe1,0x29,0xce,0x37,0x18,0xfb,0xbd,0x4a,0xec,0x48,0xbe,0x46,0x12,0x5c,0xdf,0xb6,0x4,0xca,0x3a,0x8f,0x8b,0x6b,0x37,0xd8,0x5b,0x6f,0x4f,0xa9,0xbf,0x80,0xa6,0x14,0xcf,0x8d,0x62,0x91,0x9f,0x58,0x34,0x8e,0x24,0x55,0xa3,0xd7,0xe4,0x94,0xc8,0xd0,0x3e,0x4c,0x4,0xd4,0xf1,0xfb,0x23,0xa1,0x27,0x6d,0xb7,0xc1,0xc4,0x72,0xe2,0x94,0xc9,0xd7,0xf,0x85,0xc7,0x21,0xa9,0xea,0x66,0xcf,0xca,0x52,0x76,0x96,0x52,0x42,0xd3,0x6e,0x34,0x2c,0x85,0xfc,0x16,0x9,0x44,0x14,0x49,0x77,0x52,0x73,0x7d,0x50,0xc8,0x87,0x34,0x99,0x79,0x6e,0xf8,0x52,0x9c,0xe8,0x9c,0x35,0x49,0xb1,0x56,0xad,0x17,0x5c,0xa,0x48,0xf0,0x86,0x88,0xfc,0xfe,0xc5,0x18,0xd5,0xb,0x94,0xa6,0xad,0xa4,0x5e,0xb1,0x2,0x20,0xd1,0xc6,0x93,0xe1,0xf4,0x5f,0xcf,0x29,0xb5,0x73,0x3d,0xf5,0xcc,0xb3,0xab,0xe7,0x7c,0xdb,0x9b,0x5e,0x8b,0x4f,0x7c,0xe6,0xb,0xf8,0xf3,0xcf,0x3f,0xa9,0x6c,0x43,0xe7,0x9c,0x6,0x12,0x21,0x12,0x98,0x18,0xd9,0x13,0x30,0xf2,0xdc,0x20,0xe3,0x66,0xbb,0x39,0xc3,0x34,0xf4,0x6c,0x4b,0x40,0xe3,0xb5,0x6f,0x3c,0xcd,0x53,0x27,0x0,0x16,0xda,0x8c,0xa1,0xf3,0x4,0x80,0x13,0xe7,0x3,0xac,0x33,0xf0,0xb6,0x61,0x3f,0xdb,0x80,0x6e,0x73,0x86,0x69,0x18,0xe0,0xac,0x53,0x56,0xb7,0x24,0xa9,0xb,0xe0,0x97,0x4c,0x54,0xbf,0x40,0x99,0x4b,0x24,0x8,0xca,0x18,0x8b,0xa6,0xe9,0x74,0x73,0xce,0x1a,0x7,0xe3,0x2d,0xc,0xdb,0x22,0x18,0xeb,0x54,0x3e,0x2d,0x3e,0xa8,0x60,0x76,0x7a,0x6,0xe8,0xb5,0x31,0x90,0x5d,0x42,0xd3,0x42,0x7c,0x79,0x5,0xb0,0x94,0xf5,0x83,0x35,0x96,0x6d,0x3d,0xa,0xdf,0x3f,0xeb,0x10,0x26,0x66,0xfc,0x73,0x18,0x16,0x34,0x1c,0xcc,0xa9,0x65,0xc6,0x2a,0x53,0xb2,0xfc,0x37,0xcf,0x19,0x49,0xa4,0xc8,0x2,0xfe,0x15,0x1b,0x99,0xc2,0x2c,0x5f,0x9a,0xfd,0xe5,0xe2,0x7b,0x7,0x20,0x61,0x9,0x88,0xdd,0x8b,0xa5,0x77,0xb7,0x4,0xde,0x7c,0x80,0xa,0x9a,0x95,0xef,0x1f,0xab,0x8b,0xf,0x2,0x3a,0x4a,0x85,0xc6,0xa9,0xb,0x31,0x77,0xc5,0x1f,0x4f,0x41,0x7d,0xe6,0x4,0xe,0x59,0x6,0xc4,0xd5,0xaa,0x55,0xab,0x56,0x5,0x0,0x6b,0xd5,0xaa,0x55,0xeb,0x45,0x5e,0x86,0xe5,0xb0,0xf9,0x68,0x69,0x48,0x49,0x20,0xd6,0xcc,0xac,0x6,0xea,0xb5,0x8a,0xa5,0xb3,0x30,0xfd,0x54,0xc6,0x8b,0x42,0x92,0x65,0x94,0x91,0xa1,0x1e,0x76,0xb2,0xfb,0x6e,0xc,0xb1,0x12,0x94,0xad,0x11,0xf5,0x5a,0x68,0xb1,0x9e,0x75,0xe1,0xaf,0xb2,0x23,0xe,0x6f,0xb0,0xce,0x91,0x97,0x9e,0x71,0xca,0x92,0xb3,0xa6,0x61,0xe6,0xc2,0x72,0x91,0x2e,0xd,0xe,0x58,0x2e,0x2b,0xd,0x56,0x2e,0xbc,0x6,0x25,0x81,0x51,0xd8,0x76,0x12,0xb2,0x21,0x80,0x24,0x79,0x38,0x59,0xb4,0x9b,0x33,0x6,0xb4,0x1a,0xd8,0xec,0x34,0x1c,0x44,0x9a,0xba,0xc3,0x25,0x77,0xdb,0x6e,0xa8,0x9,0x35,0x6,0x4d,0x47,0x32,0x65,0x93,0xd3,0xcc,0x30,0xcc,0x9,0x31,0x73,0x10,0x4a,0x60,0x46,0x1a,0x37,0x6b,0xae,0x8,0x93,0x20,0xb6,0x86,0x53,0xc6,0x9f,0x48,0xa4,0x53,0x9a,0xf8,0xbd,0xc8,0x88,0x51,0x0,0x2b,0x83,0xcc,0x21,0x2a,0xf2,0x9c,0x45,0x2,0xe6,0x9b,0x46,0xaf,0x37,0x30,0x90,0x25,0x0,0x2d,0x24,0x4d,0x19,0x4b,0xd3,0x75,0x92,0x4a,0x67,0x5,0x2b,0x63,0x8,0x70,0xdc,0x4c,0x82,0x59,0x9c,0xda,0xa0,0x32,0x13,0xd1,0x19,0xb,0x4,0x6a,0xba,0x9b,0x6e,0x3,0xcb,0xe9,0x96,0x86,0x3d,0xf7,0x90,0x33,0xbc,0x6f,0x15,0x60,0x6c,0x37,0xe7,0x18,0xfb,0x1d,0xa5,0x55,0x32,0xeb,0xce,0x31,0x2b,0xd2,0x72,0x63,0x2d,0x89,0x9b,0x96,0x93,0x36,0x53,0x4e,0x38,0x3b,0xbf,0xa6,0xfe,0x8e,0xc2,0xc,0x91,0x67,0x5b,0x3e,0x3,0x95,0x79,0x37,0xcd,0xc2,0x44,0x3d,0xb1,0x3c,0xce,0xb7,0xad,0x36,0x7d,0xf3,0xe7,0xb1,0x60,0x50,0x48,0xc3,0x69,0xe6,0x90,0x19,0xdf,0xb4,0x1a,0x1c,0x33,0x9b,0xe3,0xcf,0x3e,0x97,0xc2,0x76,0x4d,0x39,0x1d,0x8,0xab,0x8,0x1c,0xac,0x8d,0x54,0xad,0x5a,0xf7,0x3,0x1,0x2c,0x40,0x9,0xf9,0x8f,0xf8,0xd2,0xb1,0x15,0x82,0x6c,0x0,0xc8,0xf8,0x21,0xa9,0xb9,0x32,0xde,0xe5,0x18,0xd9,0x87,0xd5,0xf0,0x9c,0x41,0x63,0xf4,0x1f,0x7f,0xec,0xb3,0xf8,0x5b,0x6f,0xff,0xde,0x23,0x2f,0xc0,0xa6,0x69,0xf0,0xf3,0x3f,0xf5,0x2e,0x98,0x7f,0xf3,0x7b,0xf8,0xf3,0xcf,0xfd,0x15,0xac,0xf7,0xd8,0x6f,0x2f,0xe1,0xf2,0xbc,0xa9,0x25,0x4c,0xb9,0xa8,0xc1,0x20,0x6c,0x25,0xe0,0x1b,0xf4,0xbb,0x2b,0x18,0x63,0xd1,0x32,0x88,0x23,0x16,0xe,0xf9,0xd0,0xc3,0xae,0x98,0x4f,0x44,0xb6,0x4b,0x72,0x61,0xf6,0x72,0x65,0xb6,0x3e,0x49,0x98,0x69,0x63,0x6c,0xec,0xf7,0x70,0x4d,0x83,0x27,0x5e,0xf1,0x30,0x1e,0x7f,0xe5,0x23,0x34,0xde,0xa6,0x8,0x58,0x7,0xa4,0x84,0x7e,0x18,0xf1,0x81,0x8f,0xfd,0x25,0xbe,0xe7,0x75,0xaf,0xc6,0x4b,0x6e,0x5e,0xd3,0xb1,0xce,0x64,0x72,0xb0,0xfb,0xc6,0xd3,0xb7,0xf0,0xe1,0x4f,0x7c,0x4e,0xc7,0x77,0xeb,0x89,0x49,0xef,0xbc,0x47,0x9c,0x26,0x9d,0xb,0x0,0xa8,0x8d,0x86,0x75,0xe,0x4d,0xe3,0xf0,0xc3,0xdf,0xf7,0x7a,0x58,0x9e,0x2b,0x13,0x7b,0xb4,0xa6,0x9c,0xf0,0x7,0x1f,0xfc,0x28,0xee,0x6c,0xfb,0x22,0x68,0x2a,0xe9,0xfd,0x1a,0x6b,0xe7,0x4d,0x95,0x42,0x9a,0xac,0x20,0x54,0xce,0xb0,0xcc,0xd2,0x34,0x90,0xcd,0xc5,0x99,0xf1,0xb7,0x8,0x57,0x9a,0x1f,0x74,0x11,0xc6,0x54,0x0,0x81,0x58,0x32,0xf9,0x68,0x2e,0x32,0xb,0xa4,0x2b,0x1f,0x38,0xf9,0x65,0x4d,0xe5,0x35,0x78,0xce,0xee,0xad,0xa7,0x3c,0xf8,0xf2,0xa,0x48,0x57,0x9a,0xe,0x66,0xf3,0x1c,0xf,0x2e,0x12,0xe7,0x39,0x64,0x64,0x1d,0x39,0x7c,0x2e,0x47,0xcb,0x8b,0xa0,0xe0,0xf2,0xe5,0xf9,0xe8,0xb,0x2b,0x1e,0x8a,0xb5,0x6a,0xd5,0xaa,0x55,0x1,0xc0,0x5a,0xb5,0x6a,0xd5,0x7a,0x11,0xf6,0x50,0xbc,0x33,0x5f,0x6e,0xf7,0x2a,0x10,0x92,0x78,0xc9,0x6c,0x66,0x43,0x6f,0x59,0x6c,0x8a,0x14,0x8,0x99,0x25,0xa8,0x45,0xff,0x92,0x17,0xbe,0x7a,0x89,0x18,0x67,0x12,0x26,0xc1,0xc0,0x1c,0xb1,0xd9,0x92,0x2,0x5c,0x99,0x19,0x12,0xe5,0x8e,0xb4,0x26,0xd6,0x72,0x63,0x17,0xf9,0xe7,0x9b,0xb6,0xe3,0x14,0xc6,0x49,0xcf,0xd7,0x6e,0xce,0xd5,0x8f,0x50,0x98,0x6b,0x4,0xe4,0x59,0x24,0xa4,0xe2,0xda,0xd,0x9b,0x9b,0x5b,0x5,0xff,0xc0,0xe0,0xd,0xf9,0x16,0x79,0x4e,0x9,0x66,0x89,0x55,0xc,0x6a,0xa4,0xde,0x32,0x48,0x15,0x13,0xd0,0x9d,0x5d,0xa8,0x64,0x15,0x0,0xc9,0x91,0x1d,0x81,0x4c,0xe4,0x9f,0x67,0xb5,0xd1,0x4,0x0,0xef,0x2d,0x20,0x80,0x5e,0x61,0xf8,0x4e,0x52,0x67,0x2,0xb9,0xc,0x3,0x47,0x19,0xb9,0x8,0xe8,0x60,0xe9,0x9a,0x30,0x4b,0x72,0x84,0xe5,0x30,0x15,0x61,0x4b,0x3a,0xef,0x9,0xc,0x9c,0x31,0x4e,0x7d,0x76,0x1a,0x3a,0xc2,0x40,0xa0,0xf5,0x1e,0x5e,0x8c,0xe9,0x15,0xec,0x63,0x69,0x5c,0x9a,0x83,0x2f,0x14,0xc8,0x52,0x3f,0xa6,0xcc,0xcc,0x93,0xb8,0x60,0x8b,0x8a,0x3f,0x60,0xce,0x19,0x9b,0xcd,0x39,0xa6,0x69,0x84,0xa4,0x3b,0x8a,0x7,0xa0,0xb0,0x2e,0x29,0x25,0x1a,0x68,0xda,0x16,0x29,0x6,0xd8,0xc6,0x69,0xc3,0x4c,0xac,0x1d,0xf2,0xd,0xc,0xe3,0xc0,0xcd,0x67,0x54,0xe9,0x74,0x14,0x89,0xba,0x31,0xcc,0x34,0x21,0x96,0x8a,0xa4,0x4f,0x2a,0xb0,0x97,0x22,0xbc,0x6f,0xe7,0xf0,0x12,0xea,0x1c,0x41,0x5e,0x5a,0x4e,0xc1,0x1,0xef,0x1a,0x2,0x79,0xd9,0x70,0xde,0x59,0x3a,0x8f,0x9a,0xe7,0xb,0x8,0xc9,0x9,0xbf,0x2,0x34,0x7a,0xdf,0xb0,0xec,0xce,0xf2,0xef,0x85,0x61,0x6,0x8b,0x65,0x99,0xaf,0x5,0x52,0x9c,0x9b,0xcc,0x83,0xb2,0xcd,0x19,0xe2,0xb4,0xab,0x3,0x4f,0xad,0x5a,0xf7,0x1,0x1,0x14,0x39,0xa8,0x8c,0x85,0xc4,0xf2,0xf3,0x88,0x71,0xa2,0xb1,0x9c,0xfd,0x50,0x65,0xf3,0xc1,0x3a,0xaf,0x4c,0xb2,0xb6,0xdb,0x70,0x82,0xef,0xa8,0x63,0x90,0xfc,0xde,0x7f,0xed,0xe9,0xdb,0xf8,0xc2,0x97,0xbe,0x86,0xd7,0x3d,0xf1,0xaa,0xa3,0xb3,0x5e,0xbb,0x38,0xc3,0x2f,0xfd,0xcc,0x8f,0xe0,0x77,0xdf,0xff,0x11,0xfc,0xd6,0x7,0x3e,0x89,0x6e,0x73,0xae,0xde,0x7f,0x29,0x45,0xec,0x77,0x57,0xca,0x64,0x6e,0xba,0xd,0xc2,0x34,0x61,0x64,0x86,0xb3,0xf3,0x1e,0x29,0x4,0xc,0xc3,0x7e,0x66,0xad,0xfb,0x86,0x37,0xa1,0x9a,0xf5,0x7b,0x4c,0x34,0x36,0x12,0x78,0x68,0x10,0x19,0x94,0xa3,0xd0,0x8e,0x11,0xae,0xa1,0xd7,0x39,0xef,0xf1,0xa6,0x27,0x1e,0xc3,0x7f,0xf2,0xf3,0x3f,0x81,0xb3,0xcd,0x66,0x79,0x94,0x9c,0xf1,0xbe,0xf,0x7e,0x4,0x1f,0xfc,0xf8,0x17,0x70,0xf3,0xfa,0x5,0x7e,0xee,0xa7,0x7e,0xe4,0x68,0x7c,0xba,0x7d,0xe7,0x12,0x5f,0xfc,0xef,0xfe,0x17,0xdc,0xd9,0x73,0xa0,0x9,0xcf,0xb5,0x29,0xc6,0x85,0x85,0x83,0x30,0x98,0x33,0x4f,0xfa,0xef,0xfe,0xf,0xbe,0x17,0xff,0xf1,0xdf,0xfb,0xd1,0xa3,0x2b,0x7f,0xf6,0xd6,0x6d,0xbc,0xef,0xc3,0x9f,0x50,0xb0,0xd2,0x7a,0x4f,0x89,0xf0,0xc,0xe6,0xc9,0xfc,0x24,0xe0,0x1f,0x31,0x19,0xa3,0xce,0x41,0x2a,0xa7,0x76,0x8e,0x59,0xf9,0x99,0x15,0xb8,0x99,0x37,0x5e,0xdc,0xd2,0x83,0x98,0xd9,0x9e,0x46,0x8d,0x4d,0x4a,0x46,0x5f,0x11,0x70,0x91,0xf,0x2,0x38,0xd6,0xa4,0xb7,0xc0,0x12,0xfc,0xbb,0x5b,0xf0,0xc6,0xbd,0x58,0x81,0x77,0xd5,0x5,0xaf,0xe9,0x7c,0x73,0x79,0x43,0x7,0x5f,0xcb,0x47,0xff,0x6f,0xbe,0xa9,0xdf,0x98,0xf5,0xdb,0xc8,0x4b,0xcc,0x79,0x26,0x1e,0xea,0x24,0x8a,0xd5,0xf9,0xac,0x56,0xad,0x5a,0xb5,0xbe,0x15,0xab,0xa6,0x0,0xd7,0xaa,0x55,0xab,0xd6,0x73,0xa8,0x59,0x51,0x62,0x16,0xc9,0x7e,0x86,0x17,0xd5,0xd4,0x60,0x15,0x72,0x53,0xf5,0xbd,0xe6,0x0,0x86,0x22,0xdd,0x4e,0xbc,0xd1,0x44,0xd2,0x2b,0x3b,0xf8,0xb6,0x90,0xa4,0x66,0xcc,0x41,0x18,0x73,0x38,0xc8,0x32,0x4d,0x98,0xe4,0xb1,0x24,0x1f,0x26,0xcf,0xba,0xf9,0x6b,0xd6,0x51,0xd2,0xab,0xb5,0x16,0x9e,0x1,0x25,0x91,0x1a,0x53,0x18,0x84,0x9b,0x9,0x15,0xec,0xb5,0x44,0x86,0xe1,0x73,0x2,0xe3,0xc,0x82,0x26,0xd,0x9a,0x50,0x59,0x2b,0x37,0x26,0xe0,0x64,0x57,0x61,0x1b,0x58,0xef,0x55,0x4a,0x26,0xc,0x39,0x6b,0x2d,0x7c,0xd3,0x31,0x50,0x48,0x8d,0x98,0xf3,0x8d,0xfa,0xd2,0x59,0xeb,0x60,0x9c,0x63,0xb9,0xf3,0xcc,0x4e,0x11,0xc0,0x53,0x80,0x2b,0x65,0x2c,0x30,0xcb,0x4e,0x92,0x7e,0x9d,0xf3,0xb,0x73,0x73,0x1,0xf7,0xb4,0x81,0xe2,0xeb,0x4b,0x21,0x14,0x4d,0xe,0x1,0x76,0x2,0xd4,0x59,0xf1,0x11,0xe4,0xfb,0xb7,0xce,0xc1,0x3b,0x8f,0xb6,0x3b,0xa3,0x40,0x10,0x96,0xff,0x1a,0x6b,0xf5,0xfd,0x54,0x16,0x5d,0x8,0x88,0xd3,0xc4,0xd7,0x36,0x3f,0x33,0x4a,0xd5,0x8c,0xca,0xa6,0xc,0x9c,0xbe,0x6c,0x9d,0xe3,0xf0,0x92,0xc4,0xf2,0x38,0x47,0xd,0x9b,0x2,0xa0,0xf2,0xfe,0x1a,0xe,0x13,0x71,0x68,0x1a,0xa,0xe6,0x10,0x56,0xa7,0x1,0x81,0x6d,0xe0,0x64,0xca,0x39,0x7c,0xc6,0x20,0xa5,0xc0,0x49,0xbf,0x2d,0x25,0xf3,0x72,0x83,0x9f,0x12,0x7,0xa1,0xa4,0x58,0x34,0x2c,0xa6,0x48,0x9c,0x26,0x16,0x9f,0x24,0x52,0x4a,0x62,0xb2,0xb2,0x2a,0xb,0x49,0x33,0x1d,0x8b,0xde,0xfb,0x28,0x2c,0x54,0x66,0xad,0x38,0xef,0xd5,0x6b,0x52,0xde,0x6b,0x94,0xa0,0x35,0x8a,0xdf,0x8d,0x19,0x85,0x84,0x59,0x6d,0xf0,0x6b,0xd5,0xaa,0xf5,0x7c,0x2a,0xb1,0x15,0x41,0x96,0x39,0x85,0xe7,0x9c,0x30,0xd,0xb,0x2f,0x5b,0x61,0x10,0x8b,0xcf,0xa8,0x30,0x86,0xa7,0x71,0x54,0x89,0x3f,0xd9,0x0,0x38,0xf6,0x31,0x25,0xc0,0xed,0x57,0x7f,0xf3,0xbd,0xd8,0xee,0xfa,0xd5,0x73,0xb7,0x6d,0x83,0x77,0xff,0xad,0xef,0xc3,0x3f,0xff,0x85,0x1f,0xc5,0xb7,0x3f,0xfa,0x0,0xc2,0x34,0x62,0x1c,0xf6,0x88,0x2c,0x5f,0x8d,0x71,0xe,0x3c,0x12,0x79,0x2d,0x0,0x8c,0xfb,0x3d,0x8c,0xb1,0x18,0x87,0x3d,0x72,0xca,0x9c,0x60,0x3f,0x90,0x87,0x1e,0x87,0x14,0x2d,0xe7,0x65,0xa3,0xc1,0x42,0x62,0x6d,0x0,0x18,0x4c,0x43,0xaf,0x73,0xa6,0xcc,0xb3,0xaf,0x7b,0xd5,0x2b,0xf0,0x8b,0x3f,0xf3,0xa3,0x47,0xe0,0x1f,0x0,0x7c,0xf4,0xe3,0x9f,0xc6,0xff,0xf5,0x9e,0xf,0x20,0x1,0xf8,0xc0,0xc7,0x3e,0x8b,0xa7,0x9e,0xb9,0x75,0xf4,0x33,0x37,0x6f,0x5c,0xc7,0xbb,0xdf,0xf9,0x7d,0x3a,0x6,0x3b,0x1e,0xdf,0x85,0x81,0x7f,0x78,0x4d,0x4d,0xbb,0xc1,0xa6,0xeb,0xf0,0xce,0x1f,0x78,0xf3,0xea,0x33,0x7a,0xef,0x7,0xfe,0x4,0x57,0x43,0xd0,0x31,0x53,0x36,0x70,0x64,0x4e,0x8a,0x21,0xcc,0x9b,0x2d,0x22,0xfb,0x5,0x16,0x9,0xbf,0x28,0x2,0x52,0xe,0xf1,0x27,0xb5,0xc3,0x10,0xe6,0x5e,0x2e,0xc0,0xbd,0xc2,0x1b,0xd7,0x2c,0xcc,0x4a,0xf2,0x12,0xe0,0x83,0x59,0xda,0xe6,0x1d,0x20,0x63,0xb,0xe9,0xef,0x1a,0xd9,0xee,0x8,0x5e,0xcb,0x27,0xe0,0xb6,0xc3,0x44,0xe0,0x55,0xe8,0xd,0xeb,0x1a,0x60,0x73,0x70,0x71,0xc7,0x97,0xa4,0x67,0xcf,0xeb,0x47,0x3b,0xd8,0xe3,0x5d,0x42,0x92,0x87,0x97,0x95,0x67,0x80,0x31,0x17,0x2f,0x4c,0xa9,0x7a,0x0,0xd6,0xaa,0x55,0xab,0x2,0x80,0xb5,0x6a,0xd5,0xaa,0xf5,0xe2,0x7,0xfe,0x94,0x15,0x95,0x8f,0x96,0x9d,0xc0,0xba,0xec,0xe3,0x70,0x21,0x5e,0x32,0x4,0xe7,0x30,0x85,0x7c,0xf4,0x3d,0x5,0x8b,0x58,0x5a,0x99,0xb,0x69,0xb0,0xb5,0x7e,0xf1,0x3a,0x91,0xe7,0x4a,0x18,0x87,0x48,0xbb,0x24,0xe8,0x82,0x98,0x85,0x8d,0x36,0x77,0x4e,0xc1,0x15,0x39,0x36,0x1,0x31,0xb2,0x68,0xa5,0x66,0x83,0xcc,0xc6,0x45,0x7e,0x4c,0x80,0x20,0x4f,0x16,0x6e,0xe,0x1c,0x11,0x40,0x8b,0x80,0xaa,0xc2,0x7,0xa8,0x0,0xcf,0x52,0x8c,0xea,0x2b,0x65,0xac,0x55,0x70,0xcd,0x70,0xe8,0xc6,0xdc,0x74,0x42,0xc3,0x4e,0x84,0xc5,0xb0,0x58,0xc2,0x9b,0x62,0x9,0xcf,0xc,0x33,0x2b,0xc7,0xc3,0x1c,0x38,0x31,0x83,0xa7,0x4b,0xe3,0xf3,0x74,0x10,0x36,0x31,0x27,0x24,0x1a,0x5,0x67,0xa5,0x91,0x51,0xf,0x42,0x6,0xae,0x44,0x4e,0x26,0x20,0x97,0xb2,0x2d,0xb5,0x6d,0x62,0xf0,0x92,0x9f,0xf,0xbd,0x7,0xe5,0xb3,0x80,0x26,0x37,0x8b,0x77,0x9e,0x86,0x90,0x80,0xbc,0xa5,0x44,0x4e,0xe6,0x19,0x24,0x2b,0xd9,0x1c,0xea,0xcb,0xc5,0x9e,0x88,0x99,0xc1,0x4d,0x23,0x0,0x2b,0x4b,0xa8,0x5,0x40,0xa3,0xcf,0x45,0xd4,0xa6,0x7d,0xf6,0xa4,0x2c,0x59,0xa9,0xf3,0x67,0x4b,0x3e,0x5f,0xd2,0xc4,0xce,0x40,0x2a,0xdf,0x1b,0x4b,0x8c,0x15,0x84,0x66,0x20,0x41,0xdf,0xb3,0x9c,0x66,0xcf,0x41,0x69,0x7e,0xf2,0x1c,0x20,0xe0,0x54,0x9e,0x4c,0xcc,0x51,0xe5,0x9d,0xe4,0xa2,0xe9,0x14,0x2a,0x45,0x4e,0xc8,0x31,0x20,0xa7,0x50,0x7,0x9d,0x5a,0xb5,0xee,0xc7,0x2,0xdf,0xba,0x82,0x25,0xcd,0x63,0x81,0x80,0x81,0x12,0x12,0xc1,0xac,0xb2,0x8c,0xd9,0xb,0x50,0x3c,0xe9,0xc4,0xeb,0xd3,0x33,0x33,0x2f,0x84,0x49,0xc1,0xba,0x10,0x26,0x7c,0xe5,0xa9,0x3b,0xf8,0x8d,0xdf,0x7e,0x3f,0x42,0x3c,0x1d,0xda,0xf3,0x6d,0x8f,0x3d,0x8a,0xff,0x8f,0xbd,0x37,0x6d,0x96,0xe4,0x3a,0xcf,0xc4,0x9e,0xf7,0x9c,0x93,0x99,0x75,0xef,0xed,0x6e,0x34,0x76,0x62,0x21,0xc1,0x9d,0x4,0x29,0x2e,0xa0,0x48,0x4a,0x5c,0x44,0x4a,0x43,0x69,0x28,0x6a,0xb4,0x58,0x33,0x1a,0x72,0x42,0x1e,0x79,0x34,0xd2,0xc8,0xe3,0x70,0x78,0x1c,0x72,0xf8,0xa3,0xbf,0xf8,0x1f,0xd8,0xe1,0xf,0x76,0xd8,0x9a,0xb0,0x3c,0xe,0x4b,0x23,0xcf,0x48,0x63,0x6d,0x23,0x93,0x22,0x41,0x41,0x24,0x1,0x82,0x20,0x41,0x80,0x20,0x16,0x12,0xe0,0x2,0x70,0x1,0xb1,0xa3,0xbb,0xef,0xbd,0x55,0x95,0x79,0x36,0x7f,0x78,0xcf,0x39,0x79,0x32,0xab,0x6e,0x37,0x40,0x40,0x34,0xfa,0xc6,0xfb,0x20,0x1a,0x7d,0x6f,0x55,0x2e,0x27,0x4f,0x65,0x57,0x55,0x3e,0xf9,0x2c,0xbf,0xfd,0xb1,0x8f,0xe0,0x9f,0xfd,0xca,0x7,0x71,0xcd,0x15,0x97,0xc2,0xa4,0xd2,0x27,0xe7,0x86,0x52,0xd2,0x61,0xed,0x80,0x10,0x3c,0x86,0xf5,0xa,0xde,0x3b,0x56,0x19,0x3b,0xf,0x6b,0xfb,0xf4,0x7e,0x43,0x49,0x11,0xa8,0x37,0x29,0xa5,0xba,0xd8,0x24,0x29,0xe5,0xa8,0xa8,0xe7,0x55,0x69,0xb5,0xbf,0xee,0x8a,0xd3,0xf8,0xf5,0x5f,0xf9,0x69,0x5c,0x72,0xea,0xe4,0xc6,0x36,0x1e,0xf9,0xde,0xf,0xf0,0x7f,0xfd,0xf9,0x2d,0x58,0xf,0x7c,0xe3,0xa4,0xb7,0x1e,0x9f,0xb9,0xfd,0xee,0xad,0x9f,0xed,0xef,0x7e,0xc7,0x8f,0xe1,0xf4,0xc9,0xbd,0x92,0xe1,0xc7,0x37,0x87,0x78,0x8e,0x94,0xd6,0x1c,0xeb,0x90,0x15,0x95,0x88,0xb8,0xe9,0x8d,0xaf,0xc0,0x55,0x57,0x5e,0xb6,0xb1,0x9d,0x73,0xfb,0x7,0xf8,0xe4,0x67,0xef,0xe4,0xcf,0x49,0x52,0x93,0x28,0x90,0x92,0x95,0xaa,0xa8,0x7c,0x46,0xc4,0x9c,0xdb,0x9b,0xde,0xef,0x79,0x1f,0xaa,0x7c,0xfe,0xe7,0x9b,0x38,0xf9,0x26,0x55,0xad,0x46,0xa3,0xea,0xc6,0x63,0xfe,0x5c,0xaf,0x49,0xad,0x89,0xd5,0x95,0x68,0x93,0xe0,0x3b,0x8a,0x8b,0x9b,0x5b,0x78,0xe3,0xb6,0x1c,0xc0,0xa3,0xb2,0x1,0xe3,0x16,0xc6,0x90,0xa6,0xa4,0xe2,0x11,0xe4,0x61,0x9c,0xc,0x20,0x16,0x8a,0x13,0x55,0x3a,0x21,0x8e,0xa0,0x13,0x4b,0xec,0xec,0x54,0x5b,0x84,0xae,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0xfc,0xb9,0x2d,0x92,0xbf,0x38,0x59,0x31,0x5e,0xc0,0x45,0x1c,0x45,0x1,0x28,0x10,0x8,0x84,0x0,0x14,0x8,0x4,0x82,0xe3,0xc3,0x2,0xce,0xbe,0xc1,0xce,0x8,0x41,0xda,0x64,0xfc,0xb6,0x7d,0x43,0x9c,0x58,0x80,0xe7,0xe4,0xa1,0xaa,0x1b,0xe,0xab,0xfc,0x9a,0x4c,0xba,0x85,0xa2,0x88,0x43,0x45,0xfa,0x54,0x2a,0x8f,0x44,0xfa,0xa8,0x92,0x13,0x38,0xed,0xb8,0xcb,0xe4,0x1e,0x30,0x1f,0xc3,0x78,0xd1,0x51,0x37,0x1f,0xe6,0x8b,0x40,0x22,0x24,0x5,0x42,0xd8,0x42,0x6a,0x72,0xa6,0x5e,0xfd,0x5,0x3e,0x13,0x4f,0x7c,0xe1,0x92,0xac,0x50,0x59,0x71,0x96,0xd4,0x6c,0x75,0x79,0x45,0x56,0x43,0x96,0x86,0xc7,0x6a,0xff,0x6c,0xed,0xf5,0x23,0xa9,0x56,0x1d,0x6b,0xfe,0xc3,0x56,0x64,0x55,0x54,0x69,0xe5,0xc2,0xf,0xf5,0x3a,0x5b,0x2,0xc2,0xf3,0x9c,0xc6,0x58,0x48,0x56,0x67,0x6d,0x69,0x74,0x1c,0xe7,0x68,0xbc,0x22,0xa8,0x55,0x85,0xde,0xbb,0x42,0xa,0xc6,0xb2,0xad,0x50,0x96,0xd3,0x3a,0x67,0x24,0xf2,0xdc,0xe7,0x52,0x11,0xce,0x84,0xa4,0x62,0x87,0x9b,0x5e,0x42,0xc4,0xa2,0xbc,0xcb,0xca,0x8e,0x5a,0xad,0xa7,0x93,0x2a,0x51,0x97,0xa6,0xc7,0x91,0x8c,0xcd,0xcb,0xe7,0x62,0x8f,0xfa,0x82,0xae,0x64,0xf0,0x61,0x24,0x73,0xb3,0x6a,0x25,0x5b,0x77,0xf3,0x36,0xa,0x91,0x9a,0xc2,0xe8,0x47,0xa2,0x5a,0x8d,0x4d,0x91,0xe9,0x35,0x8e,0x21,0x11,0x77,0x75,0x29,0x8,0x62,0x3a,0x57,0x12,0xa1,0x1d,0xe2,0xb8,0x9f,0x42,0xea,0xa6,0x8b,0xce,0x74,0x1,0x5b,0x8f,0xd,0x72,0x11,0x25,0x10,0xbc,0x28,0x98,0xb6,0x92,0xc6,0xf1,0x7d,0x91,0x50,0x8,0x3d,0xaa,0x32,0xeb,0xca,0x8d,0x99,0x38,0xbe,0x2f,0x7a,0xc7,0x84,0xdc,0xd0,0xaf,0xcb,0xfb,0x49,0x2e,0xac,0x0,0x11,0x6e,0xbd,0xfb,0x41,0x7c,0xe2,0x6f,0xbe,0x0,0x6b,0x8f,0x26,0xee,0xdb,0xc6,0xe0,0x1d,0x6f,0x79,0x3,0x7e,0xf7,0xb7,0xfe,0x21,0x7e,0xe1,0xfd,0x6f,0x85,0xa,0x16,0xde,0x5a,0x38,0x3b,0xc0,0xe,0x3d,0x7f,0xd2,0x91,0x42,0xdb,0x2d,0x60,0x9a,0x16,0x43,0xbf,0x2a,0x1f,0xb7,0x43,0xbf,0xc2,0xd0,0xaf,0xd2,0x7b,0xb3,0x3d,0xe2,0xe3,0x99,0x8a,0xf5,0xd7,0xda,0x1,0xc3,0x7a,0x85,0xa6,0xe9,0x60,0x93,0x62,0xf0,0xd4,0x6e,0x8b,0xdf,0xfa,0xd8,0x47,0x70,0xc5,0xe5,0x9b,0x44,0xdc,0xd3,0xcf,0x9c,0xc5,0xef,0xfd,0xdb,0xbf,0xc2,0x10,0x38,0x6f,0x36,0x93,0x8c,0x5f,0xf8,0xea,0xb7,0xf0,0xf4,0x16,0x15,0xe0,0xa9,0x93,0x7b,0x78,0xdf,0x3b,0xde,0x50,0x3e,0x27,0x22,0x0,0xd3,0x74,0x0,0x50,0x54,0x7c,0x39,0x4f,0xb6,0x6d,0x5a,0xfc,0xf4,0x7b,0x7e,0x7c,0xfa,0xd9,0x9e,0x70,0xd7,0x3d,0xf,0xe0,0xdc,0xe1,0x9a,0x3f,0x5b,0xd3,0x8d,0x28,0x55,0x7d,0x6,0x8e,0x37,0xe0,0x62,0xc9,0x15,0xe,0xe9,0x33,0x84,0x3f,0xd7,0x52,0xd9,0x54,0x6e,0x4f,0x4e,0xaf,0x59,0x7e,0x6f,0xae,0x6d,0xbe,0x11,0x71,0xe3,0x33,0x7f,0x7e,0xa3,0x2d,0x56,0x9f,0x6f,0x53,0xa2,0x6b,0x4b,0xa1,0x48,0x66,0xc6,0xe6,0xcb,0x4e,0xc8,0xb1,0xf1,0x3b,0xc1,0xb8,0xcd,0xf3,0x5b,0x7b,0x63,0xa9,0x86,0x1a,0x4b,0x48,0xb6,0x91,0x78,0x54,0x2d,0x3f,0x89,0xb9,0x9c,0xab,0x12,0x71,0x3e,0xc2,0xe,0xdb,0x99,0xc0,0x6d,0x25,0x25,0xf3,0xef,0x7f,0x33,0xa,0xf2,0xb9,0x66,0xa,0xa,0x4,0x2,0x81,0x10,0x80,0x2,0x81,0x40,0x70,0xd1,0xf0,0x7f,0x53,0x23,0xc9,0x9c,0xf0,0x9b,0x2b,0x5,0xe2,0x16,0x2b,0xc8,0x51,0x1,0xd1,0x11,0x55,0x19,0x45,0x21,0x40,0xa8,0x90,0x49,0x59,0x91,0x31,0xc9,0x73,0xaa,0xd4,0x5d,0x45,0xf1,0x96,0xd4,0x69,0x99,0x30,0xca,0xf6,0xe1,0xac,0x94,0x2b,0xdf,0xdd,0xd3,0xfa,0x39,0xbb,0xad,0x90,0x69,0x15,0x59,0xa6,0x93,0x1d,0x36,0x8f,0xcb,0x39,0xb,0x55,0x95,0x99,0x8c,0xf9,0x43,0x0,0x94,0xe2,0xe2,0x6,0xa2,0xa2,0x58,0xa8,0x2f,0x1e,0xb3,0xdd,0xb8,0xbe,0x8,0xca,0xeb,0x8e,0x39,0x7c,0xba,0xe4,0x18,0x32,0x61,0x16,0x26,0x6a,0xc9,0x9a,0x38,0xcd,0x36,0xd4,0xdc,0xbe,0x9c,0xdb,0x85,0xe7,0xf6,0x9b,0xbc,0x8d,0x50,0x48,0xc4,0x0,0xa2,0x64,0xc9,0xf5,0x7e,0x7a,0x21,0x11,0xc7,0xed,0x11,0x46,0x4b,0x9c,0x9a,0xbc,0x16,0xe3,0xbe,0x6a,0x62,0x90,0x15,0x97,0x28,0x64,0x56,0xb6,0x4f,0x17,0x22,0xb2,0x22,0xd1,0x38,0x6c,0xdf,0x17,0x45,0x20,0xe5,0x0,0x77,0xa2,0x12,0xae,0x9f,0xf3,0xa0,0xf8,0xfa,0x2a,0x14,0x12,0x94,0x33,0x7,0x43,0xa,0x86,0xe7,0xe2,0x8e,0x90,0xc2,0xfb,0x31,0x2b,0xa2,0xc9,0xf3,0x9e,0xad,0x64,0xa3,0xaa,0x23,0x8e,0x17,0x85,0x31,0x24,0x3b,0x6e,0x2c,0xaa,0x92,0x18,0x2a,0x62,0x3b,0xcd,0x5d,0xf9,0xb9,0x6a,0x57,0x2e,0xb9,0x4f,0xd9,0x39,0xc,0x2a,0xaf,0x65,0xce,0x85,0x2a,0xa5,0x26,0xb4,0xa9,0x80,0xcd,0x17,0xa7,0xe5,0xf8,0xc2,0xd8,0xa6,0x6c,0xda,0x1d,0x79,0xc3,0x11,0x8,0x5e,0x8c,0xcf,0x2d,0xa5,0x26,0x9f,0x45,0x35,0x51,0xcf,0xcd,0xdd,0x5d,0xe1,0x3f,0x42,0xf0,0xac,0x2,0xcf,0x8d,0xb6,0xa0,0x42,0xde,0x64,0xb5,0x70,0x56,0xa,0xe6,0xcc,0xcf,0x5c,0x98,0xf4,0xe9,0x3b,0x1f,0xc4,0x9f,0x7f,0xf2,0x36,0xf4,0xbd,0x3d,0xef,0x78,0x4e,0xec,0xed,0xe0,0x23,0x1f,0x7a,0x3f,0xfe,0xbb,0x7f,0xf5,0x4f,0xf1,0xbe,0x1f,0x7f,0x33,0x82,0x1b,0x60,0x4c,0x5b,0x94,0x85,0xcb,0xc3,0x7d,0x80,0x80,0xb6,0xdb,0x41,0xc,0x1,0xc3,0x7a,0x55,0xde,0x33,0xbc,0xb3,0x1b,0x37,0xa1,0x6a,0xf2,0xca,0x98,0x86,0x1b,0xcc,0xbd,0x47,0xdb,0xed,0x40,0x69,0x7e,0xdf,0xdd,0xed,0x5a,0xfc,0x17,0xbf,0xfe,0x4b,0xb8,0xf6,0x65,0x57,0x6d,0xac,0x79,0xb8,0x5c,0xe3,0xf7,0xff,0xf8,0x13,0x38,0xbb,0xec,0x39,0x4f,0x35,0x29,0x26,0x4d,0xd3,0xc0,0x45,0xe0,0x96,0xcf,0xdf,0xb5,0xf5,0x73,0xfb,0xfd,0xef,0x7e,0x3b,0x4e,0xec,0x74,0x68,0xda,0xae,0xa8,0xbf,0x1,0x94,0xd8,0x83,0xac,0xa6,0x7e,0xed,0xf5,0x57,0xe1,0x86,0x97,0x5f,0xb3,0xb1,0xfe,0x72,0xb5,0xc6,0xa7,0x6e,0xfd,0x72,0xf9,0x6c,0xc8,0xef,0xbf,0x25,0xe,0x43,0x8d,0x51,0x1c,0x53,0xce,0x8c,0xca,0xf7,0x85,0x7c,0x3,0x27,0x22,0x96,0x46,0xe7,0x7c,0x3,0x9,0x75,0x26,0x71,0xbe,0xd1,0x56,0x91,0x7c,0x99,0x30,0xcd,0x37,0x62,0x6a,0x92,0xaf,0x7c,0xd7,0x29,0xae,0x5a,0xda,0x98,0xef,0xf1,0x6f,0xc2,0x36,0xcb,0x6e,0x9c,0x49,0xe5,0xa6,0x7a,0xbc,0x5a,0xb5,0xb7,0x6d,0xcb,0xe3,0xfa,0x5b,0xba,0x7d,0xb,0xe1,0x37,0xcf,0xe4,0x3b,0x92,0xbc,0xdb,0xf6,0x73,0x45,0xfa,0xd5,0x31,0x28,0x53,0xd9,0xdf,0x44,0x22,0x89,0xa3,0xac,0xc9,0x13,0xfe,0x50,0x4a,0x40,0x4,0x2,0x81,0x10,0x80,0x2,0x81,0x40,0x70,0x3c,0x30,0xb7,0xff,0xc6,0xb8,0x3d,0xf0,0xb9,0x26,0x7b,0xb6,0xad,0x5f,0x1c,0x32,0xb4,0xa9,0x26,0x2c,0x8f,0x25,0x25,0x59,0x6d,0xc5,0x9a,0xda,0x82,0xd4,0x48,0xa6,0x94,0xac,0xbb,0xf1,0xe2,0x40,0x55,0x17,0x78,0xa3,0xc5,0x16,0x13,0x75,0x1a,0x25,0x5,0x5b,0xb6,0xce,0xf2,0x77,0xdf,0x80,0x3a,0xdf,0xd,0x55,0xe3,0x6b,0xce,0x25,0xaa,0x49,0xa0,0x90,0x72,0x1,0xb3,0x2,0x30,0x93,0x56,0xbe,0x14,0x8f,0x4,0x98,0xa6,0x29,0x8a,0xc0,0x50,0x29,0xf1,0x46,0x2b,0x17,0x8d,0x4a,0xbf,0x10,0x26,0x56,0x56,0x9a,0xcd,0x67,0x51,0x9d,0xa5,0x67,0x55,0x35,0xf,0x85,0x1c,0xcd,0x17,0x10,0xd5,0x45,0x6f,0xce,0xc0,0x2a,0xd9,0x78,0x5a,0x8f,0xc7,0x52,0xac,0xab,0xd9,0x2a,0xcb,0xf3,0x5b,0xf2,0x96,0xd2,0x1c,0x64,0x3b,0x6b,0x26,0xfb,0x72,0xd6,0x9e,0x2a,0x39,0x84,0x94,0x32,0x16,0x13,0xf1,0x95,0x9a,0x29,0x73,0x2e,0x5f,0xac,0x82,0xf6,0x63,0xc9,0x28,0x64,0x82,0xb2,0x6d,0x17,0xe5,0xf8,0x6a,0x85,0x27,0x29,0x5d,0x94,0xa0,0xac,0x9a,0x1c,0xe7,0x31,0xdb,0x97,0xc7,0x9c,0xc8,0x91,0x90,0x65,0xfb,0x2d,0x2a,0x65,0xa4,0x2a,0x17,0xfe,0x79,0x9d,0x58,0x4a,0x69,0x46,0x62,0xb0,0xb4,0x83,0x56,0x41,0xf3,0x99,0x14,0x8d,0x35,0x21,0x10,0xc2,0xd8,0xfe,0x8,0x9a,0x9c,0xdf,0xd9,0xe,0x9e,0x2f,0x2a,0x73,0xe0,0x7c,0x6e,0x63,0xa6,0xe4,0xff,0x9d,0x36,0x9,0x63,0x9c,0x27,0x22,0xd8,0xf5,0xa1,0xbc,0xe1,0x8,0x4,0x2f,0x2,0x8a,0xea,0x36,0xdf,0xe0,0x49,0xff,0x26,0x73,0x1c,0x44,0x5d,0xe2,0x43,0xc8,0xed,0xb9,0x7c,0xe3,0x82,0x63,0x1c,0x5c,0xc9,0xd0,0x33,0x4d,0x3b,0xbe,0x37,0x16,0xd5,0xb3,0x2f,0xf9,0x7b,0xb7,0x7e,0xe5,0x1b,0xf8,0xbd,0x3f,0xfa,0x2b,0x3c,0xfe,0xd4,0xb3,0x17,0x1c,0xd7,0x35,0x2f,0xbb,0x1a,0xbf,0xf9,0xb1,0x5f,0xc2,0xbf,0xfc,0xa7,0xbf,0x82,0x2b,0xaf,0xb8,0x1c,0x8b,0xdd,0x13,0x68,0xbb,0x5,0x4e,0x5e,0x72,0x19,0x93,0x8a,0x76,0x80,0x73,0x36,0xa9,0x1,0xd7,0x18,0xfa,0x75,0x19,0xfb,0xe6,0x67,0x2e,0x4a,0xc1,0x10,0x88,0xb0,0xd8,0x3d,0x91,0x6e,0xa4,0x0,0xad,0x51,0xf8,0xad,0x7f,0xf4,0x21,0xbc,0xf2,0x15,0xd7,0x6e,0xac,0xd7,0xf7,0x3,0xfe,0xf0,0xcf,0x3e,0x85,0xef,0x3c,0xf6,0x4c,0x22,0xc,0x35,0x42,0xba,0x19,0xe5,0x9d,0x83,0xf7,0x1e,0xb7,0xdd,0xfd,0x20,0x9e,0x7a,0x7a,0x53,0x5,0x78,0xe9,0xe9,0x53,0x78,0xdf,0x4d,0x6f,0x4,0x0,0x34,0xdd,0x22,0xbd,0xf7,0xf1,0xfb,0x70,0x26,0xf1,0x82,0x77,0xf8,0xd0,0xfb,0x6e,0x2a,0x65,0x5f,0x35,0xee,0xfe,0xea,0xfd,0x78,0xfc,0xd9,0x83,0x14,0x8d,0xa1,0x47,0x95,0xb6,0xd2,0x85,0xcc,0x1b,0x6f,0xf0,0x51,0xb9,0xc1,0x53,0xe7,0xf3,0x8e,0x2a,0x6c,0xfe,0xec,0xd4,0xca,0x8c,0xc4,0x5e,0x8a,0x11,0xc9,0x4,0x70,0x2c,0x44,0x62,0x26,0xe,0x31,0xb9,0xd1,0x34,0xb2,0x6d,0x63,0x21,0x48,0x9c,0xb5,0x47,0xcf,0x7f,0x99,0x7e,0xff,0x89,0x13,0x62,0x90,0x66,0xcb,0x6f,0x5a,0x76,0xa7,0x54,0xe2,0x5c,0x88,0xb7,0x75,0x8f,0x71,0x93,0x7e,0xdc,0xaa,0xe0,0x8b,0xd3,0xe1,0xd0,0xc6,0xae,0xe3,0x84,0x38,0xdc,0x88,0x1c,0x99,0xc8,0xfe,0x8,0x47,0x18,0x89,0xb7,0x10,0x97,0xf4,0xfc,0xda,0x46,0x4,0x2,0x81,0x40,0x8,0x40,0x81,0x40,0x20,0x78,0x89,0x92,0x7f,0x13,0x9b,0xe6,0xd4,0xe,0xba,0x49,0xf4,0x85,0xea,0xcb,0xf1,0xa8,0xa4,0x2a,0x5f,0xca,0xd3,0xf3,0x93,0x3b,0xc6,0x34,0x25,0x51,0xea,0x86,0xdf,0x9a,0x40,0x1c,0x55,0x73,0xa1,0x52,0xd3,0x4d,0x9,0x94,0xf9,0xb2,0x85,0x8,0x8c,0xe3,0x97,0xfa,0x39,0x9,0x97,0x2f,0xac,0xb2,0x82,0x2d,0x5b,0x59,0xeb,0xd0,0x71,0xbe,0xd8,0xc0,0xa8,0x14,0xab,0x2e,0xc4,0x72,0x19,0x48,0x29,0x41,0xa9,0x32,0x13,0x9d,0xb5,0x93,0x1c,0xba,0x4c,0x1c,0x4e,0x2c,0x48,0x29,0xfb,0xb0,0x94,0x72,0x54,0x8a,0xc4,0x5c,0x42,0x51,0x32,0xfd,0x8,0x13,0x8b,0xda,0x78,0x9c,0xd3,0xf9,0xad,0x89,0x2d,0x64,0x52,0x34,0xcf,0x9f,0x1f,0xd5,0x66,0xd9,0xf2,0x4a,0xd9,0xca,0x9c,0xc9,0x3a,0xad,0xb,0xf9,0x57,0xbf,0x6,0x8a,0xd4,0x8c,0xd0,0x1d,0x83,0xda,0x73,0xeb,0x64,0x8,0x1e,0xa4,0x75,0xc9,0xa1,0x9a,0x12,0xc8,0x54,0x15,0x6f,0xf0,0xc5,0x19,0xdb,0xd4,0x22,0x2f,0x5f,0x5b,0x9b,0x8b,0xb2,0x70,0x7a,0x91,0x12,0x32,0xe1,0x9a,0x8e,0xa9,0xd8,0x72,0x63,0x98,0x59,0xc6,0x28,0x29,0x74,0x86,0xd4,0x1e,0xe9,0x8a,0x35,0x3d,0x86,0xb8,0x61,0xf7,0xce,0x73,0xab,0x74,0x65,0x15,0x4e,0x63,0x8c,0xd5,0xb9,0x5c,0x24,0x13,0xb3,0xac,0x28,0x3e,0x4f,0xe2,0xb4,0x11,0xbb,0x6a,0xaa,0xcc,0x19,0x86,0x1b,0xaa,0x91,0x4a,0x80,0x12,0xbd,0x83,0x6e,0x3a,0xc8,0x95,0x94,0x40,0xf0,0x22,0x60,0x94,0x34,0x4f,0xe2,0x2,0x98,0x40,0xf2,0xe5,0x7d,0x3,0x40,0x22,0xbf,0xd4,0x24,0x37,0x50,0xa5,0xbc,0x3e,0x6d,0x9a,0xd1,0xae,0x4b,0xc4,0xed,0xf2,0x15,0x41,0x64,0x6d,0x8f,0x18,0x23,0xbe,0xf5,0xe8,0xd3,0xf8,0xd7,0x7f,0x72,0xb,0x6e,0xbf,0xf3,0x3e,0xc,0xf6,0xfc,0x6a,0xc0,0xa6,0x31,0xf8,0x89,0x77,0xbc,0x5,0xbf,0xfb,0xcf,0x7f,0x15,0xaf,0xbf,0xe1,0x9a,0xd4,0xa6,0xeb,0xd0,0x2e,0x76,0xb0,0xd8,0x3d,0x81,0xbd,0x93,0xa7,0xa1,0xb5,0xc1,0x89,0x53,0x97,0x72,0xf4,0x81,0x69,0x38,0xa3,0x74,0xe3,0x33,0x37,0x42,0xe9,0xa6,0x90,0x65,0x9c,0xc5,0xa7,0x60,0x14,0xe1,0x37,0x7f,0xed,0xc3,0x78,0xd3,0x1b,0x5f,0xbb,0xb1,0x8e,0xf7,0x1e,0x7f,0xfa,0x89,0xcf,0xe2,0xfe,0x6f,0xfd,0xa0,0xe4,0xd5,0xda,0x61,0x28,0xf9,0xa5,0x39,0xa6,0x22,0x90,0xc1,0x6d,0x77,0xde,0xbb,0xf5,0xb3,0xfe,0x7d,0xef,0x7e,0x2b,0x4e,0xec,0xed,0x15,0x35,0xbd,0x31,0x6,0x4d,0xdb,0x96,0xe7,0x5f,0x75,0xfd,0xd5,0x78,0xf5,0xd,0xd7,0x6d,0x12,0x8f,0x83,0xc5,0xa7,0x6e,0xbd,0xbb,0x7c,0x5f,0xe0,0xd7,0x82,0x3f,0x47,0x86,0x7e,0x5,0x3b,0xf4,0x93,0xf8,0x8b,0xfa,0x6,0x61,0x56,0xa0,0xe7,0x79,0xc8,0x2a,0xfd,0x9a,0x1c,0x2d,0x25,0x4b,0x11,0x93,0x6c,0xc0,0x18,0x92,0x12,0xaf,0x7c,0x3e,0xc4,0x49,0xfc,0x47,0x61,0xd4,0x62,0xc5,0x65,0xc5,0x39,0x2d,0x97,0x83,0x45,0xb6,0x91,0xb1,0xdb,0x48,0x32,0x9a,0xa9,0xf8,0xe2,0xc6,0x1a,0xe7,0xab,0xf8,0xa8,0xfb,0x48,0x30,0x76,0x7c,0xcd,0x88,0xbb,0xb8,0x9d,0x91,0xcb,0x82,0xbe,0xba,0xe5,0x63,0xae,0x29,0xdc,0xda,0x20,0x4c,0x47,0x52,0x7c,0x93,0x7f,0x57,0x1b,0xc7,0x11,0xc5,0x9,0x2c,0x10,0x8,0x2e,0x1a,0x68,0x0,0xff,0xbd,0x4c,0x83,0x40,0x20,0x10,0x6c,0x87,0x52,0x6,0x57,0x5c,0x7b,0x3,0x4c,0xdb,0xb1,0x45,0xb2,0x52,0x6a,0xd5,0x77,0xe5,0x27,0x3f,0x57,0xc4,0x5a,0xbe,0xb8,0xaa,0x73,0x78,0xe6,0x64,0x5d,0x2e,0x87,0xc8,0x17,0x13,0x25,0xaf,0x6f,0xd2,0x24,0x3c,0x7e,0x91,0x65,0x5,0xd9,0x68,0x35,0xe,0x31,0x60,0x7e,0xeb,0x3b,0x86,0x50,0x7b,0x67,0xcb,0x17,0xf0,0xac,0x5e,0xcc,0xd9,0x6f,0xc5,0x26,0xb6,0x25,0x97,0x90,0x2a,0xdb,0x6e,0x88,0x63,0xb9,0x4,0x61,0xaa,0xe,0x1c,0xed,0x9f,0x11,0x11,0xa1,0x8c,0x2d,0x26,0xcb,0x6a,0xad,0x28,0x1b,0xad,0xa5,0x4,0x64,0xf2,0xa,0x99,0xd8,0xf3,0x25,0x3f,0x2e,0x5f,0xa4,0xb0,0x25,0x38,0x8e,0xb9,0x54,0x59,0x51,0x96,0xbe,0xe4,0x67,0x5b,0x6c,0xb9,0xe8,0x9,0x71,0xf2,0x65,0xbc,0x14,0xa4,0x24,0xb2,0x8f,0x49,0x45,0xbe,0x98,0xf2,0xce,0x4d,0x48,0xd2,0x7c,0x31,0x55,0x88,0xbb,0xac,0x78,0xcc,0x4a,0xcb,0x50,0x85,0x8d,0x87,0x50,0xed,0xab,0x52,0x67,0xf8,0xf1,0xb5,0xcb,0x65,0x2b,0xa5,0x30,0xa3,0x3a,0x2f,0x8a,0x3a,0x2e,0x65,0xe6,0xe5,0x9f,0x89,0x50,0xce,0x83,0x92,0xcb,0x14,0x62,0x39,0xce,0x7c,0xe1,0x12,0xaa,0xd6,0xce,0xdc,0x20,0x9c,0x55,0x9d,0x3c,0xe7,0xae,0x22,0xa5,0x93,0x8a,0x24,0x8c,0xe7,0xa4,0xf7,0xac,0x10,0x2c,0xca,0xbf,0x34,0x81,0x7c,0x5e,0x8c,0xf6,0xe3,0xc9,0xf9,0x8d,0x71,0x1b,0x45,0xb5,0x59,0x5f,0x40,0x65,0xdb,0x72,0xa8,0xaf,0xbe,0x46,0xf2,0x70,0x4e,0xdc,0x66,0x6b,0xb6,0xf7,0xe,0xfd,0x7a,0x8d,0xfd,0x33,0xcf,0x20,0x38,0x8b,0xe0,0xd6,0xf2,0xc6,0x23,0x10,0xbc,0x40,0x74,0x3b,0x27,0x71,0xe5,0xcb,0x5e,0x8e,0xa6,0x5b,0x4c,0x9,0x9b,0x42,0x90,0x84,0x92,0xd1,0xa9,0x72,0xb6,0x27,0x8d,0x59,0xab,0xf9,0xfd,0x21,0xb7,0xae,0x13,0x11,0x97,0x6c,0xe4,0x9b,0x27,0xa4,0x11,0xa2,0x4f,0x2d,0xf4,0xfc,0xfc,0xba,0x1f,0x70,0xcf,0xd7,0x1f,0xc6,0xf7,0x1f,0x7d,0x1c,0x2f,0xbb,0xe2,0x34,0x4e,0x9d,0x3c,0x71,0xde,0x31,0x9e,0x3c,0xb1,0x87,0x37,0xbd,0xee,0x95,0x78,0xf8,0xbb,0x8f,0x62,0x1d,0x74,0x8a,0x3a,0xf0,0x30,0x4d,0x93,0xb8,0x16,0x4a,0xfb,0x6d,0xf0,0xf2,0xab,0x2f,0xc3,0x5b,0x6e,0x7c,0xed,0x6,0x39,0x73,0xd7,0x7d,0xf,0xe1,0xcc,0x21,0x93,0x92,0xfd,0xea,0x10,0x31,0x46,0x7c,0xf4,0x23,0xef,0xc7,0x7b,0xde,0xf5,0xb6,0xd4,0x2c,0x3f,0x22,0x84,0x80,0x9b,0x3f,0xf7,0x65,0xdc,0xfc,0x85,0x7b,0xcb,0xe7,0x74,0x21,0xd3,0xd2,0xfb,0x26,0x17,0x2f,0xf1,0x67,0xc4,0x63,0x4f,0x9d,0xc3,0xdb,0x6f,0xbc,0x1,0xbb,0x3b,0xd3,0x68,0x82,0xdd,0x9d,0x5,0xce,0x9c,0x3d,0x8b,0xef,0x3d,0x71,0xa6,0xbc,0x37,0x76,0x8b,0xdd,0xa2,0xbc,0xfe,0x7,0x1f,0xb8,0x9,0xaf,0x7c,0xf9,0xa6,0xf2,0xf0,0x81,0xaf,0x7f,0xb,0x37,0x7f,0xfe,0x9e,0x92,0x7b,0xab,0x94,0x82,0xb5,0xc3,0xe4,0xc6,0x89,0x52,0xba,0x2a,0x4,0x19,0xdb,0xd5,0xa9,0x7c,0x27,0xd1,0x93,0xef,0x1a,0xe3,0xfb,0xeb,0x78,0x63,0x88,0x67,0x26,0x59,0x8b,0xd3,0x6b,0x5e,0xab,0xc1,0xf9,0x9e,0x8c,0x9a,0xde,0xdc,0xd9,0xaa,0x80,0xab,0x1f,0xa1,0xc9,0xe9,0x53,0x48,0x3a,0xda,0xda,0x89,0x1,0x3a,0x2a,0x4f,0xaf,0xbe,0x8f,0xb4,0xf5,0xf9,0xb9,0xf9,0x97,0xb6,0x14,0x8b,0xd0,0x16,0x72,0x2e,0x1e,0xf1,0x18,0xe1,0xe8,0x9b,0x4a,0x74,0x81,0xdf,0xcf,0x8f,0x5a,0x35,0xdf,0xaf,0x97,0x38,0xfb,0xd4,0xf,0xe4,0x8d,0x47,0x20,0x10,0xbc,0xe4,0x61,0x64,0xa,0x4,0x2,0x81,0xe0,0x68,0x84,0xe0,0xf0,0xc8,0x37,0xee,0xc5,0xf5,0xaf,0xba,0x11,0x4d,0xb2,0xb4,0x86,0xd2,0x1e,0x4b,0xb3,0x2f,0xad,0xf9,0x3b,0xe4,0x94,0x78,0xc3,0xac,0x92,0x63,0xde,0x22,0x4c,0x44,0x93,0x2c,0xa0,0xda,0xaa,0x12,0xd3,0x76,0xea,0x65,0x26,0xe4,0xde,0xfc,0xeb,0x6b,0x5d,0xd6,0x90,0xec,0xab,0xb1,0x52,0x8a,0xd5,0x2a,0xae,0x32,0x9e,0xd9,0x38,0xf3,0x17,0x67,0xaa,0x15,0x6f,0x25,0x4f,0x48,0x4d,0x2f,0x26,0x93,0x7a,0x4c,0x29,0xb6,0x50,0xa5,0xa0,0xc1,0x49,0xd6,0x14,0xa5,0x39,0x19,0xad,0xcd,0xa3,0x5a,0x8d,0x94,0x2a,0x99,0x7c,0x99,0xa4,0xcc,0x17,0x98,0xd3,0xdb,0xfe,0xe3,0x8c,0x10,0x69,0xc4,0xe0,0xc6,0xf2,0x8,0x52,0x88,0xd1,0x27,0xdb,0x2c,0xc6,0x62,0x8a,0x6c,0x21,0xce,0x17,0x1d,0x93,0x26,0x5e,0x2a,0x17,0x50,0x75,0xa6,0xe1,0x58,0x4c,0x12,0xca,0x18,0x8a,0x8a,0x2,0xa1,0x28,0x30,0x72,0x3,0x73,0x21,0x6c,0x93,0x85,0x2a,0xcf,0x67,0xbd,0xaf,0x6c,0x91,0xce,0x64,0x21,0xa5,0xd6,0xc7,0xa9,0x12,0xb2,0x52,0x2e,0x56,0x17,0xe1,0xe5,0xf7,0x38,0x55,0xd7,0x95,0xd7,0x26,0xf8,0x72,0x21,0x47,0x55,0x66,0x21,0xcd,0x14,0x9f,0xf5,0xf1,0x45,0x6c,0x66,0x3e,0xc5,0xd9,0x15,0x5d,0x39,0x7f,0xf2,0xf6,0x94,0x9e,0x58,0x87,0xcb,0xd9,0x19,0x51,0x7,0x29,0x55,0x3e,0x77,0x35,0xfb,0x37,0x90,0x96,0x2b,0x84,0x24,0xdb,0xa6,0xbd,0xb3,0xe8,0xfb,0x1e,0x4f,0x3d,0xfe,0x28,0xa0,0xc,0x48,0x7c,0x9,0x2,0xc1,0x8b,0x2,0x95,0x5b,0xbd,0xe3,0xb4,0x9,0xd8,0x25,0x75,0x9e,0x4a,0x19,0xb2,0x2a,0xdf,0x30,0x48,0xff,0xe6,0xb5,0x36,0x25,0xe7,0x8f,0x6f,0x94,0xd8,0x62,0x55,0xb5,0x43,0x9f,0xb2,0xee,0x74,0x29,0x36,0x82,0x52,0xb0,0x43,0xf,0xd3,0xb4,0x68,0x92,0x3a,0xed,0x9e,0x7,0x1f,0xc1,0xd7,0xbf,0xfd,0x3d,0xfc,0xfc,0xfb,0x6f,0xc2,0x7b,0xdf,0xf5,0x16,0x9c,0xd8,0xdb,0x3b,0x72,0x9c,0x97,0x9e,0x3e,0x85,0xdf,0xf9,0xf5,0x5f,0xc4,0xef,0xff,0xfb,0xbf,0xc6,0xc3,0x3f,0x78,0x1a,0x66,0xf7,0x4,0xe7,0x98,0x36,0x2a,0x15,0x6b,0xf0,0xd,0x28,0x52,0xdb,0xdf,0x1c,0x48,0x29,0xc,0xeb,0x15,0x4c,0xdb,0xa2,0xb1,0x2d,0x7e,0xfa,0xc7,0x5f,0x87,0x9f,0xfa,0xc9,0xb7,0x6f,0x90,0x7f,0x31,0x46,0xdc,0xfe,0xe5,0xfb,0xf0,0x89,0xdb,0xef,0x3,0x29,0x85,0xa6,0xed,0xd0,0xaf,0x96,0xa5,0x4d,0x3d,0xcf,0x4b,0xd3,0x76,0x9c,0x4b,0xe8,0xf9,0xb8,0xbf,0x78,0xcf,0x43,0xf8,0xf9,0xf,0xbe,0x6b,0xda,0xac,0x4b,0x84,0xf7,0xbe,0xe3,0x4d,0xf8,0xd2,0x7d,0xf,0xc3,0x25,0xc5,0x75,0xf0,0xe,0x5a,0x1b,0x9c,0xde,0xeb,0xf0,0xd6,0x37,0xbd,0x6e,0x63,0x9c,0xd6,0x5a,0x7c,0xf2,0xb3,0x5f,0x4c,0xad,0xbb,0xfc,0x3e,0x6c,0x87,0xa1,0xbc,0x44,0x5c,0xee,0xa4,0x4a,0x79,0x54,0x26,0x43,0x6b,0x52,0x2a,0xdb,0x7f,0x55,0x6a,0x8b,0xaf,0xb,0x43,0x7c,0x70,0xfc,0x6e,0x5e,0xc9,0xe6,0x8a,0x83,0x81,0xa8,0xba,0xa1,0x15,0xeb,0x2f,0x20,0x93,0xe8,0x8d,0xf1,0x7b,0xc1,0xd4,0xee,0x3b,0x59,0xa7,0xfe,0xb6,0x50,0xe5,0xc0,0x4e,0x34,0x7e,0x5b,0x2c,0xb8,0x33,0xc1,0xfe,0x84,0xb2,0xdb,0x58,0xb8,0x7c,0x15,0xa1,0x4d,0xc6,0x71,0x2b,0x49,0x77,0xbe,0x8a,0xde,0xf3,0x49,0xf3,0x2e,0xbc,0x6c,0x8c,0xcf,0xad,0x9b,0x4a,0x32,0x0,0x5,0x2,0x81,0x10,0x80,0x2,0x81,0x40,0x70,0x4c,0x70,0xe6,0xf1,0xef,0xe2,0xf0,0xec,0xb3,0x38,0x7d,0xe5,0xb5,0x68,0x9a,0x76,0xcc,0xe9,0xa9,0xbf,0x99,0x12,0xcd,0x2c,0x25,0xd3,0x3b,0xd8,0x85,0x3c,0x29,0xd6,0x5b,0x3f,0x69,0x3f,0x1d,0xb3,0xfe,0xd8,0x52,0xab,0xb4,0x2e,0xe4,0x4e,0x79,0x3e,0x97,0x65,0xd4,0x64,0x4e,0x9c,0xe6,0xdd,0x15,0x8b,0x6b,0x75,0xb1,0x94,0x49,0x43,0x26,0x71,0xfc,0xc8,0xcb,0x94,0x50,0x78,0x9a,0x12,0x91,0x95,0xbd,0x34,0xab,0xcc,0x88,0x14,0x54,0x69,0xec,0xcd,0xa,0x84,0x71,0xfd,0xfc,0x5,0x38,0x13,0x62,0x31,0x78,0x28,0xdd,0x24,0x32,0xae,0xba,0xe4,0x89,0x1,0x4a,0xb7,0x88,0xc1,0x55,0x3c,0x67,0x48,0xa5,0x11,0x23,0x59,0xc9,0x24,0xa2,0x2e,0x76,0xea,0xf1,0x98,0x75,0x52,0xe4,0x25,0x82,0x2c,0x93,0xaf,0xa4,0xd3,0x9c,0xea,0xca,0x12,0x8b,0x9,0x9,0x9a,0xbf,0xc9,0xe7,0xbc,0x3e,0x24,0xa2,0x91,0xe7,0xcd,0x71,0x9e,0x55,0x1a,0xaf,0x52,0xba,0x28,0xff,0xf2,0xe3,0xac,0xc6,0x18,0x2d,0xd5,0xa8,0xac,0xb7,0x99,0x50,0xc,0x31,0x95,0x87,0xd0,0xa8,0xc2,0xe3,0x8b,0x6d,0x3d,0xcd,0x5e,0xca,0x17,0x64,0x39,0xdb,0x31,0x35,0x39,0x8e,0x17,0x99,0x54,0xd9,0xf4,0xb2,0xd5,0xda,0x43,0xd1,0x98,0x41,0x39,0xaa,0x57,0xf4,0xb8,0x6e,0x1c,0x2f,0xb0,0xb2,0xf5,0x39,0x93,0xc8,0x39,0x3,0x90,0xcf,0x43,0xaa,0xce,0x19,0x37,0x66,0x41,0x22,0x80,0xd3,0x41,0xaa,0xb,0xc3,0x18,0x40,0xca,0x20,0x78,0x3b,0x69,0x70,0xe6,0xf3,0x43,0x25,0x15,0xe9,0x78,0xa1,0xc9,0x39,0x5a,0xb6,0xcc,0x71,0x26,0x11,0xa,0xe5,0x98,0x6c,0x89,0x21,0x44,0xf4,0xab,0x25,0xac,0x8f,0x88,0x64,0xc0,0xfc,0xad,0xd8,0x7f,0x5,0x82,0x17,0x5,0x71,0xb3,0xb9,0xbd,0x44,0x1c,0xc4,0x98,0xde,0x3,0x98,0xf8,0x52,0xa9,0xf5,0x1b,0x31,0x96,0x76,0x60,0x6d,0xc,0xbc,0xe3,0x72,0x22,0xd3,0x34,0x70,0xce,0x95,0xe2,0xa2,0x72,0x23,0x4,0x11,0xd1,0x3b,0xb4,0xdd,0x2,0xde,0xb9,0x52,0x12,0xa5,0x94,0xc6,0x7a,0x70,0xf8,0xf3,0x5b,0xee,0xc4,0xed,0x77,0x7f,0xd,0x1f,0xfd,0x85,0x9f,0xc2,0xeb,0x5e,0xf3,0xca,0xad,0x99,0x78,0x0,0x70,0xc9,0xc9,0x13,0xf8,0xd5,0xbf,0xff,0x5e,0xfc,0xaf,0xff,0xf7,0x27,0x30,0x78,0x60,0xcc,0xa1,0xe3,0x92,0x8b,0x46,0x77,0xd0,0xa6,0x3d,0x82,0xc0,0x21,0x28,0xc3,0xc7,0xf4,0x9e,0xb7,0xbe,0x16,0x1f,0xf9,0xd0,0xfb,0xb6,0x36,0xef,0x7e,0xed,0x1b,0x8f,0xe0,0x4f,0x6f,0xfe,0x52,0x6a,0x2f,0x8f,0x58,0x2f,0xf,0xb0,0xb3,0x77,0xa,0xce,0xe,0x8,0xde,0xc3,0x98,0x6,0xd6,0xf6,0x70,0xd6,0xc2,0x7,0xc7,0x59,0x89,0x4,0xdc,0xfe,0x95,0x87,0xf0,0x93,0x37,0xdd,0x88,0x4b,0x2f,0x39,0x39,0xd9,0xde,0x35,0x57,0x5f,0x89,0x1f,0x7b,0xed,0x75,0xb8,0xe7,0x9b,0x8f,0x1,0x31,0xc2,0xa7,0xcf,0x8b,0xf,0xbe,0xfb,0xc7,0xb0,0xb3,0xe8,0x36,0xf6,0xff,0xf0,0x77,0x7f,0x80,0x6f,0x7c,0xef,0xc9,0xf2,0x59,0x99,0x95,0xfe,0x2a,0x11,0xae,0x79,0x5e,0xcb,0x67,0x49,0xba,0xc9,0xe5,0x83,0x2b,0x9f,0xad,0xf9,0xb3,0xc6,0x97,0x9b,0x66,0xe3,0xf7,0xb,0xaa,0x32,0xfc,0xf8,0xfd,0xde,0x23,0xdf,0xc0,0x8a,0x71,0xfb,0x77,0x92,0xca,0x33,0x80,0xd1,0xb2,0x5b,0x2d,0x97,0x3e,0x53,0x28,0x37,0xb7,0x97,0x1b,0x5a,0x23,0x31,0xc6,0x9b,0x8e,0x1b,0x1c,0xdd,0x79,0x39,0x3b,0xda,0xf2,0x35,0x29,0x1e,0x41,0xee,0x6d,0x6c,0xe8,0xa8,0xdc,0xbe,0xbf,0x1b,0xd4,0x25,0x64,0x35,0x9,0x3c,0xb9,0x69,0x86,0xed,0x19,0x95,0x2,0x81,0x40,0x20,0x4,0xa0,0x40,0x20,0x10,0x5c,0xa4,0xb0,0xeb,0x3,0x3c,0xf9,0xdd,0x7,0x1,0x10,0x4c,0x77,0x12,0x7a,0xb1,0x7,0x3f,0xf4,0x20,0x2,0x7c,0xbf,0xf,0xd5,0x9e,0xe4,0x8b,0x95,0xa6,0x83,0x5b,0xef,0x43,0x99,0xe,0xde,0xae,0x4a,0x13,0x2c,0x48,0x41,0xb7,0xb,0x44,0xef,0x11,0x5c,0x9f,0x88,0xb0,0x6,0xc1,0xf5,0xd0,0xed,0x2e,0xbc,0x1b,0xa0,0x74,0x53,0x88,0x14,0x52,0x26,0x39,0x57,0x14,0x10,0x3c,0x48,0x1b,0x56,0xba,0xd9,0x15,0x62,0x24,0x0,0xbc,0x7e,0x4c,0x4,0x4d,0xf0,0xe,0xca,0xb4,0x40,0xf4,0x8,0x76,0xd,0xdd,0x9d,0x0,0x62,0x80,0xb7,0x3d,0x10,0x3,0x54,0xb3,0x60,0xf5,0x47,0x7f,0xc8,0xcf,0xd5,0x19,0x83,0xc1,0x81,0x54,0x83,0xe0,0xd6,0x20,0xd3,0x81,0xf2,0xc5,0x43,0x56,0xd2,0xa9,0x26,0x7d,0xe1,0x65,0x22,0x88,0x88,0xe0,0x87,0x25,0x94,0x59,0x20,0x6,0x5b,0xf2,0x3,0x33,0x31,0xc8,0x56,0x2a,0x5b,0x94,0x8c,0xa4,0x5b,0x20,0x3a,0x20,0x2,0xba,0xdb,0x45,0x70,0x16,0xa4,0x88,0xe7,0xa9,0xdd,0x4b,0xa,0x94,0x44,0x76,0x5,0xf,0x65,0x5a,0x26,0xdf,0xd2,0xcf,0xa4,0x14,0x82,0xb3,0xa9,0xb4,0xc3,0x41,0xe9,0x6,0x7e,0x58,0xa5,0x6d,0x37,0x0,0xa5,0x46,0x63,0xef,0xa0,0xda,0x1d,0x20,0xfa,0x32,0x2f,0xf9,0x42,0x47,0x29,0x8d,0x60,0x57,0x3c,0x9f,0xa4,0x46,0x92,0xab,0x52,0xad,0x29,0xdd,0x30,0x69,0x17,0x3,0xc8,0x34,0xbc,0x3d,0xd3,0x30,0x99,0x96,0xf2,0x9,0x7d,0xbf,0x64,0x92,0xcb,0x34,0x69,0x55,0x26,0x3a,0x63,0x8c,0x8,0x76,0x5,0xd2,0x2d,0xbf,0xa6,0xcd,0xe,0x82,0x5b,0x31,0x61,0x9,0x82,0x6e,0x3b,0x84,0x61,0xd,0x28,0x8d,0x98,0x8e,0x95,0x52,0x81,0x87,0x32,0x2d,0x5f,0x5c,0xc5,0x8,0x3f,0xac,0x40,0x69,0x7b,0x4a,0x37,0x20,0x6d,0x10,0xec,0x8a,0xc7,0xd2,0x2c,0x2a,0x32,0xd9,0x43,0x35,0x3b,0x70,0xeb,0x7d,0xce,0xcd,0x23,0xcd,0xaf,0x9f,0x6a,0xa6,0x41,0xf0,0xba,0x81,0x22,0xe2,0xf3,0x80,0x8,0x61,0x58,0xa2,0xd9,0xbd,0x4,0xae,0x5f,0x41,0x69,0x93,0x54,0x24,0x1e,0xca,0x2c,0x10,0xfc,0x80,0x76,0xe7,0x24,0xdc,0x90,0x2c,0xb8,0x59,0x4d,0x8a,0x94,0x21,0xa5,0x59,0x79,0xa9,0x94,0x49,0xe7,0x5b,0x53,0xce,0x1f,0x40,0x55,0x25,0x1f,0xac,0x4c,0xd4,0xed,0x4e,0x22,0x5b,0x91,0x8e,0xa3,0x2f,0x17,0x52,0x88,0x1,0xa6,0x3b,0x1,0x52,0x84,0xe8,0x7a,0x98,0x6e,0x2f,0x65,0x8b,0xc9,0x7b,0x8d,0x40,0xf0,0xa2,0xf0,0x7f,0xb1,0xce,0x92,0x4d,0xef,0x87,0xe9,0x6,0x88,0x22,0x85,0xe0,0x3,0x94,0x56,0x25,0x6e,0x20,0x33,0x1d,0xaa,0x44,0x13,0x30,0x29,0xa6,0x8c,0x86,0xb5,0x43,0xca,0x9e,0x9b,0xaa,0xca,0x83,0x7,0x8c,0x69,0x46,0x55,0x72,0xca,0x8,0xcc,0x37,0xa3,0x9c,0x1d,0xf0,0xe8,0x93,0x3,0xfe,0x87,0xdf,0xff,0x7f,0xf0,0xd3,0xef,0x7e,0xb,0x7e,0xe9,0xef,0xff,0x14,0x4e,0xec,0xed,0x6e,0x1d,0xef,0xd,0xd7,0xbf,0xc,0x3f,0xf7,0x9e,0xb7,0xe2,0xe3,0x9f,0xbf,0x9f,0x6f,0x82,0x1,0xe9,0x66,0xdb,0xf8,0x1e,0xbe,0x8d,0x9d,0xc9,0x9f,0xb1,0x6f,0xba,0xe1,0x4a,0xfc,0x27,0x3f,0xff,0x1,0xb4,0xcd,0xe6,0x72,0xdf,0xf9,0xfe,0xe3,0xf8,0x37,0xff,0xe1,0x66,0xb8,0xa8,0x4a,0x99,0x53,0xb7,0xd8,0x85,0x1d,0xfa,0xa4,0x6a,0xd4,0xe5,0x26,0x14,0x29,0x5,0x8a,0x4c,0x20,0x7a,0xe7,0x70,0xce,0x39,0xdc,0x76,0xe7,0x7d,0xf8,0x85,0x9f,0xf9,0xc9,0x89,0x12,0x8c,0x8,0xf8,0xe0,0x4f,0xbc,0x15,0xf,0x3c,0xf2,0x14,0x5c,0x8,0x80,0x77,0xb8,0xe4,0xe4,0x9,0xbc,0xfd,0x4d,0xaf,0xd9,0xd8,0xbf,0x73,0xe,0x7f,0x73,0xdb,0x97,0x93,0x4a,0xdd,0x22,0xc7,0x48,0x90,0xd2,0xa0,0x44,0xba,0x22,0xb5,0xa3,0x87,0x62,0xd3,0x1d,0x6f,0x7c,0xa9,0x72,0x73,0xd0,0x4d,0x22,0x41,0x4a,0x24,0x45,0x15,0xb7,0xa0,0x52,0xd1,0x47,0xf0,0xbc,0xde,0x98,0xc7,0x1a,0xca,0xcd,0xa7,0x51,0xbc,0x4d,0x13,0x22,0x8d,0x36,0xce,0xa1,0xca,0x4e,0x1c,0x23,0x22,0xc5,0x91,0xbb,0xa3,0x71,0x1b,0x1b,0x9d,0xbe,0x73,0x37,0xee,0x44,0xf2,0x57,0x2b,0xc6,0x6b,0x26,0x90,0x66,0xec,0xe1,0x51,0x37,0x57,0x5f,0x5c,0xf2,0xef,0x42,0x9a,0xc2,0xf1,0x78,0x69,0x46,0x4,0x4e,0x1b,0x94,0x5,0x2,0x81,0xe0,0x62,0x81,0x98,0x6d,0x4,0x2,0x81,0xe0,0x79,0x7e,0x5d,0x74,0xfd,0x39,0xc,0xfb,0x4f,0x20,0x7a,0xb,0x32,0x1d,0x54,0xb3,0x83,0xe8,0x99,0x68,0xb3,0xcb,0x33,0x20,0xb3,0x80,0x1f,0x96,0xfc,0x16,0x4b,0x29,0xcf,0x47,0x37,0x8,0x21,0xc2,0xbb,0x9e,0xd7,0x69,0xf7,0x10,0x62,0x84,0x5e,0x9c,0x82,0xb7,0x3,0x94,0xe9,0x10,0x9c,0x63,0x82,0xcd,0xb4,0x7c,0xe1,0x96,0xf2,0xf6,0xf2,0x17,0xe8,0xe0,0x2c,0xa0,0xda,0xf4,0x2b,0xc1,0xd,0xab,0xf2,0xe5,0x9e,0xb4,0x49,0x44,0x61,0x3,0x32,0x1d,0x5b,0x95,0x53,0x16,0x9b,0xde,0xb9,0x4,0x0,0x5b,0xba,0xcc,0xe2,0x14,0xa2,0x4f,0xe4,0x5a,0xb3,0x60,0xf2,0x4c,0xb5,0xa0,0x44,0xe6,0xa8,0x44,0x34,0x2,0xa,0x50,0xd,0x54,0xbb,0x7,0x80,0xa0,0xdb,0x1d,0x28,0x52,0x4c,0x4c,0x2,0x68,0x76,0x2f,0x5,0x69,0x3,0x32,0xb,0xa8,0x76,0x87,0x9,0xc6,0x44,0xd6,0x81,0x14,0x74,0xd3,0x81,0x94,0x82,0x59,0xec,0x71,0x98,0x7c,0xb3,0x60,0x95,0x1e,0xc6,0x82,0x8,0xdd,0x9d,0x44,0x51,0x7a,0x4,0x26,0x34,0x91,0x14,0x90,0xa4,0x1b,0xe8,0x76,0xa7,0xa8,0xf0,0x8a,0x2d,0x35,0x15,0x5a,0xa8,0x66,0x1,0xdd,0x9d,0x0,0xe9,0x96,0xd5,0x89,0xcd,0x2,0x11,0xc4,0x24,0x13,0x69,0x44,0xcf,0xea,0x89,0xe8,0x7a,0xbe,0x70,0x72,0x49,0xbd,0xa6,0x1b,0x28,0xd3,0xa5,0xb2,0xb,0x3e,0x2e,0x52,0x9a,0xc9,0xd3,0x6c,0x99,0xd3,0x6,0xa4,0x5b,0xe8,0x6e,0x37,0x65,0xde,0x25,0x35,0xa2,0xd2,0x30,0xbb,0xa7,0x60,0xda,0x1d,0xa4,0xca,0xe5,0x62,0x2d,0x26,0xa5,0xa0,0xcc,0x2,0x44,0x40,0xb3,0x73,0x12,0xd1,0x5b,0xfe,0xdd,0x74,0x7c,0xf1,0xe5,0x3d,0x54,0xbb,0xcb,0xa,0x1c,0x63,0x78,0xbe,0xb3,0x9a,0x31,0x59,0x88,0x23,0x0,0xd5,0xee,0xf2,0x6b,0xa8,0x4d,0x51,0x6b,0x92,0x6a,0xf8,0x38,0x95,0x6,0xa2,0x2b,0x56,0x5f,0xdf,0x33,0x99,0x97,0x4b,0x3d,0xcc,0xe2,0x4,0x54,0xd3,0xa5,0xf9,0xee,0x40,0xa4,0xc7,0x8b,0x48,0xd2,0xd0,0xa6,0x41,0xb3,0x77,0x39,0x80,0x8,0xb3,0x38,0x1,0x32,0x2d,0x4c,0xb7,0xb,0xbd,0x38,0x5,0x28,0x26,0x22,0xbd,0x1b,0xd2,0xb1,0x34,0x50,0xda,0xf0,0xb1,0x2a,0x3,0xd3,0x75,0x30,0x4d,0x9b,0x2,0xf7,0x51,0x8,0x42,0xd2,0x86,0xe7,0x2e,0xe5,0x17,0x36,0x8b,0x3d,0xe8,0xa6,0x4b,0x73,0xc7,0x4d,0xcb,0xaa,0x59,0xc0,0xad,0xe,0xa1,0x9a,0x1d,0x98,0x6e,0xf,0xba,0x59,0x40,0x35,0x4c,0x7a,0xc7,0xe0,0xa0,0x9b,0x1d,0xc,0xfd,0x1a,0xbe,0x3f,0x84,0x3d,0x7c,0x52,0xde,0x62,0x4,0x82,0x17,0x1,0x63,0x2b,0x37,0xc6,0x26,0xd9,0x10,0x58,0xe9,0x47,0x18,0x8b,0x8a,0x72,0x84,0x83,0x1f,0x55,0xbc,0xa5,0xdd,0x3c,0xbd,0x7f,0xe4,0xdc,0xb9,0xac,0x16,0xc,0xde,0x15,0xa5,0x60,0x6e,0x9c,0xd,0xde,0xf3,0x67,0x18,0xb1,0xe2,0x37,0x17,0xd,0x5,0xef,0x99,0x0,0xbb,0xe3,0x5e,0xfc,0xde,0x1f,0xfc,0x19,0x1e,0x7b,0xe2,0xe9,0x23,0xc7,0xfc,0xe3,0x6f,0x79,0x3d,0x16,0xad,0x46,0xdb,0x76,0x68,0x3b,0xbe,0xe1,0xa1,0x52,0x9,0x88,0xda,0xa6,0x1e,0x4c,0xc4,0xd7,0xab,0xaf,0xbd,0x1c,0xbf,0xfa,0xe1,0xf7,0x6d,0x25,0xff,0x9e,0x7c,0xea,0x19,0xfc,0xef,0xff,0xee,0xe3,0x58,0x59,0x2e,0x95,0x52,0x4a,0x97,0x86,0xe1,0x18,0x3c,0xb4,0xe6,0xf7,0xc6,0x3a,0x83,0x37,0x93,0x3d,0xc6,0x34,0x50,0x4a,0xe1,0x8b,0xf7,0x3d,0x8c,0xb3,0xe7,0xf6,0x37,0xb6,0x7d,0xed,0xd5,0x97,0xe3,0x75,0x2f,0xbf,0x12,0x31,0x4,0x98,0xa6,0xc5,0x3b,0x6f,0x7c,0x39,0x2e,0x39,0xb5,0x99,0x7b,0xf8,0xe8,0x63,0x4f,0xe2,0xbe,0x6f,0x3d,0xca,0x64,0xa3,0x69,0xa,0x59,0x9a,0x33,0x57,0xc7,0xc3,0x9,0xac,0xa4,0x8c,0x63,0x36,0xac,0xd6,0x26,0xdd,0x2c,0x42,0xb2,0x62,0xab,0x49,0x9,0xd3,0xc4,0xc0,0x9b,0xb2,0x67,0x43,0x18,0xe3,0x36,0xf2,0x76,0xb,0x61,0x38,0x21,0xf5,0x50,0x59,0xc4,0xf3,0x9f,0xb0,0x41,0x8b,0xc5,0xaa,0x91,0x23,0xce,0x8,0xbd,0x18,0x43,0xf5,0x7b,0x3c,0x82,0x9f,0x23,0x6c,0xf6,0xfe,0xce,0xa,0xa1,0x26,0xd4,0x5b,0x9c,0xbd,0xc6,0x38,0xf,0x45,0xf7,0x42,0x48,0xf2,0xb8,0x75,0x14,0xa5,0x38,0xb9,0xca,0x59,0x9c,0xb7,0xd7,0x63,0xa3,0xef,0x58,0x20,0x10,0x8,0x2e,0xe,0x48,0x9,0x88,0x40,0x20,0x10,0xfc,0x70,0xdf,0x1c,0x11,0xfd,0xc0,0x64,0x9a,0x77,0xac,0xda,0xa,0x59,0xa5,0x95,0x88,0xb7,0x44,0x14,0x29,0x63,0x58,0x65,0x87,0x31,0x4f,0x2f,0x3a,0x26,0xaa,0x88,0xbf,0xd5,0xa7,0x82,0x56,0x57,0xbe,0x98,0x67,0x9b,0x6b,0x6e,0xd6,0xd,0xde,0xf1,0x17,0xf6,0x60,0xd3,0x7e,0x5a,0xb6,0xd2,0x3a,0x56,0x76,0xc5,0x44,0x2c,0x86,0xfe,0x90,0x89,0x25,0xbb,0x62,0x62,0xce,0x74,0xf0,0xc3,0x21,0xdb,0x49,0x95,0x82,0x1f,0x56,0xac,0x18,0x53,0x1a,0xc1,0xf6,0x49,0x71,0x18,0x11,0x6c,0xf,0x52,0x6,0xde,0xae,0x99,0x64,0xd2,0xdd,0x68,0xb5,0x45,0x52,0x79,0x91,0x2,0x82,0x83,0x1f,0x96,0xf0,0x76,0xc9,0xca,0xb7,0x44,0xe2,0x50,0x52,0xe7,0x91,0x22,0x26,0x3d,0x6d,0x9f,0xc8,0x27,0x20,0xd8,0x75,0x22,0xaf,0x22,0xdc,0xfa,0x1c,0x5b,0x44,0x6d,0xcf,0x17,0x63,0xc9,0x8e,0x16,0x7d,0x9f,0x1c,0x40,0xc4,0x64,0x6a,0x60,0x72,0xd5,0xf7,0x4b,0xb6,0xf5,0xaa,0xa4,0x62,0x8b,0x11,0xba,0x59,0x20,0x7a,0x9b,0x6c,0xb4,0x8e,0x55,0x91,0x81,0x15,0x28,0x7e,0x38,0x48,0xc4,0x57,0x0,0x94,0x86,0xef,0xf,0x10,0xfd,0x0,0xe4,0xb,0xa7,0x9c,0xd5,0x97,0xd7,0xf5,0x6e,0xb4,0xda,0x26,0x55,0x5b,0xce,0x3f,0xa,0x76,0xcd,0x4,0xa5,0xe7,0xb,0xdd,0x60,0x7b,0xc4,0x74,0x61,0xcb,0xcf,0x29,0x90,0xa2,0x72,0x6c,0x7c,0x21,0x40,0xf0,0xeb,0x3,0x40,0xf1,0xf9,0x40,0x5a,0x43,0x37,0x6d,0xd9,0xd6,0x68,0xab,0x8d,0xa3,0x45,0x9a,0x8,0x48,0x85,0x21,0x31,0x4,0x26,0x8f,0x43,0x2a,0x28,0xb1,0x3d,0x93,0xbb,0xd1,0x97,0x6,0xcf,0x60,0x87,0x72,0x91,0x1e,0xdc,0xf8,0x1a,0xf9,0xf4,0x7a,0xb2,0x5a,0x32,0x29,0x43,0xed,0x8a,0x49,0xe5,0xac,0xb2,0x84,0x4f,0x56,0xbd,0x54,0xea,0x32,0xac,0x81,0x18,0xa0,0xb5,0x86,0xb7,0xc3,0xd8,0x22,0x1c,0x3,0xfc,0xb0,0x62,0x72,0x1a,0x40,0x70,0x9c,0xd7,0x7,0x6f,0xa1,0x94,0x41,0x24,0x5,0xbf,0x3e,0x80,0xd2,0xa,0xc3,0xc1,0x33,0x85,0xec,0xf6,0x43,0x9f,0xd4,0x97,0x11,0x31,0x5b,0xac,0xd3,0x39,0xec,0xd6,0x7,0x70,0xfd,0xa,0xed,0xce,0x1e,0x82,0x77,0xe9,0xfc,0xb,0xf0,0xc1,0xc3,0x1e,0x3c,0xc9,0xa,0x4d,0x51,0x54,0x8,0x4,0x2f,0xa,0x9a,0x6e,0x7,0x57,0xbc,0xec,0x15,0x68,0x17,0x8b,0x92,0x9,0x5a,0xe7,0xc9,0x22,0xc5,0x4,0x14,0xf5,0x5e,0x9c,0xe5,0x7f,0x26,0x6b,0xbf,0x4e,0xef,0x53,0x63,0x4e,0x69,0x22,0xa5,0x92,0x25,0x55,0x6b,0x3,0x67,0x87,0x44,0xd8,0xc5,0xa4,0x2a,0xd4,0xe8,0x57,0x4b,0x6e,0xd,0x1e,0x7a,0x44,0x0,0x5a,0x1b,0x9c,0x39,0x58,0xe3,0x81,0x6f,0x3d,0x8a,0xd7,0xbf,0xf2,0x1a,0x9c,0x3c,0xb1,0x99,0xb,0xd8,0xb6,0xd,0x9e,0x7a,0xfa,0xc,0x1e,0x7d,0xf2,0x6c,0x6a,0x31,0x66,0x3b,0xb1,0x6e,0x1a,0x5c,0x75,0xc9,0x2,0x6f,0x7e,0xfd,0xd,0x1b,0xeb,0x7c,0xff,0xf1,0x67,0xf1,0x91,0xf,0xbc,0x1d,0xa7,0x4e,0x6e,0x6e,0xef,0xe0,0x70,0x89,0xdf,0xff,0xf7,0x1f,0xc7,0xf,0x9e,0xde,0x87,0x31,0x3c,0x4e,0x67,0x7,0x98,0xa6,0x2d,0x45,0x46,0x21,0xf0,0x7b,0x22,0x14,0xa5,0x9b,0x5c,0x89,0xfc,0xf4,0xae,0x58,0x6b,0x5d,0x88,0xd8,0x31,0x84,0xd7,0xcc,0x9a,0x7d,0x95,0x52,0x38,0x7d,0x6a,0xf,0x5f,0xfe,0xda,0x77,0x61,0x34,0xf0,0x8f,0x3e,0xfc,0x5e,0xec,0xed,0x2e,0x26,0xcb,0x84,0x10,0xf0,0x17,0x9f,0xbc,0x15,0xdf,0xfe,0xde,0xe3,0x25,0x3f,0xb6,0x14,0x28,0xd1,0x58,0x20,0x5,0x0,0xde,0x5b,0x44,0xa4,0xa6,0xdf,0x2a,0xea,0xc3,0xa7,0xd8,0x8a,0x58,0x22,0x38,0x2,0xdf,0xac,0xab,0xf2,0x66,0xc7,0xcc,0xde,0x54,0x20,0x92,0x69,0xaa,0xa4,0x56,0xcb,0x11,0x11,0x2a,0x95,0x49,0xc5,0x6d,0xcc,0x15,0xd5,0x19,0xaf,0x28,0xf6,0x5f,0xaa,0x7e,0xde,0xb4,0xea,0xd2,0x84,0x14,0xcb,0x4a,0xf0,0x4d,0x5d,0xdd,0x96,0x9d,0xfd,0xe8,0xbe,0xae,0x6d,0x44,0x33,0xe7,0x28,0xa,0x9a,0x1d,0x67,0xb9,0xe1,0x58,0x8f,0x74,0xa6,0x94,0x9c,0x7c,0xf,0x4c,0x6d,0xce,0xab,0xc3,0x7d,0x9c,0x7b,0xe6,0x71,0x79,0xe3,0x11,0x8,0x4,0x2f,0x79,0x88,0x5,0x58,0x20,0x10,0x8,0x5e,0x0,0x82,0x5b,0xf1,0xf,0xbe,0x67,0xf5,0x9a,0x5d,0x96,0xe7,0xfc,0x70,0x38,0xfd,0xba,0x9b,0x72,0xe5,0x6a,0xf8,0x1f,0x72,0xbf,0xf3,0x6d,0x3,0x40,0xf0,0x89,0xd0,0x4b,0x63,0x8,0x87,0xc3,0x46,0xe,0x14,0x0,0xc,0xd5,0x18,0x8f,0xc4,0x96,0xed,0x83,0x34,0x10,0xc7,0x11,0xdb,0xe5,0xb3,0xe3,0xbe,0x69,0xcc,0x17,0xdc,0x3e,0xde,0x83,0xf2,0xb3,0xf3,0x43,0x22,0xb7,0x66,0xb,0xd9,0xd5,0xf4,0xf7,0xfe,0x20,0x2d,0x77,0x78,0xe4,0xb6,0xb6,0xad,0xeb,0xd6,0x67,0xd2,0xfa,0xf9,0x2a,0xcd,0x20,0xf4,0xe7,0xce,0x3f,0x9f,0x17,0x9c,0xef,0xfd,0xb,0x4e,0x19,0xd5,0x73,0x90,0xce,0x8b,0x74,0xa8,0x2f,0x8,0x5b,0xf7,0x6d,0x9f,0xc7,0xb9,0xd3,0x1f,0x5c,0x70,0x11,0xcb,0x27,0xe8,0xd6,0xf3,0xc5,0x83,0x95,0xa1,0x39,0xd3,0x30,0x4f,0x35,0x29,0x8d,0xfe,0xdc,0x41,0xba,0x70,0x1d,0xe0,0xfb,0xf3,0x4d,0xe,0x9f,0x3b,0x44,0x1a,0x87,0x4f,0xed,0xcb,0x1b,0x87,0x40,0xf0,0x77,0x8c,0xf1,0xc6,0xc4,0x98,0x15,0x4b,0x8a,0x52,0xfb,0x76,0x2c,0xed,0xe4,0xdc,0x7a,0xab,0xe0,0x53,0xce,0x5c,0xc,0x1,0xa4,0x59,0x11,0xd8,0xb4,0x5d,0xb1,0xfb,0x66,0x5,0x1e,0x11,0x61,0xe8,0x57,0x58,0xec,0xec,0xa5,0x6,0x78,0xbe,0x94,0x58,0x1e,0x9c,0xc3,0x62,0x77,0x8f,0x33,0xf4,0x9c,0x43,0xd3,0x2d,0xb0,0xdc,0x3f,0x8b,0xa6,0x65,0x45,0xba,0x1d,0x7a,0xb4,0xdd,0xe,0xce,0xec,0x2f,0xf1,0x87,0x7f,0xf9,0x39,0xfc,0xce,0x47,0x7f,0x6e,0x43,0x2d,0x47,0x44,0x78,0xdb,0x1b,0x5f,0x8d,0xbb,0x1e,0xfa,0x41,0xc9,0x19,0xcd,0x2d,0xf5,0xdb,0x32,0x0,0x89,0x8,0x97,0x9c,0xe8,0x70,0x62,0x77,0x67,0xeb,0x1c,0x9c,0x39,0x77,0x80,0xa7,0xcf,0xad,0x12,0xe9,0xa6,0xa1,0xb4,0xc1,0x62,0x77,0xf,0x87,0xfb,0x67,0xa1,0x93,0xba,0x2f,0x4,0x8f,0xa6,0xeb,0x8a,0x52,0x51,0x29,0x56,0xf3,0x65,0xfb,0x31,0x29,0x5,0xef,0x3d,0x3e,0x7b,0xd7,0x43,0x78,0xf7,0xdb,0xdf,0x84,0x4b,0x4e,0x4d,0x89,0xc6,0x97,0x5f,0x73,0x25,0x5e,0x7b,0xed,0xa5,0x38,0x7d,0x62,0x7,0x97,0x5f,0x7a,0x6a,0x63,0xc,0x8f,0x3f,0xf9,0xc,0xbe,0xf8,0xd5,0x6f,0xc0,0x98,0x16,0xce,0xdb,0xb4,0x1f,0xfe,0x3b,0x6,0x5f,0xb2,0xff,0x9c,0xb5,0x25,0x5f,0x78,0xe8,0xd7,0x29,0x7,0x98,0x49,0x4a,0x2e,0x8,0x49,0x6d,0xf0,0x18,0x33,0x6a,0x41,0x28,0xcd,0xc3,0x99,0x54,0xcc,0x44,0x5f,0x40,0x28,0x25,0x4e,0xd9,0x46,0xab,0x12,0x59,0x18,0x27,0xc4,0x56,0xac,0x4a,0x80,0x53,0xd2,0x1f,0x4d,0x6d,0xbe,0xbc,0x70,0x26,0xcf,0xce,0xd7,0xbc,0x3b,0x2b,0x94,0x9a,0xbe,0x5a,0xa8,0xcb,0xd0,0x9e,0xbb,0x6e,0x6e,0x4a,0xba,0x3d,0x97,0x52,0x8e,0x49,0x1,0x56,0x3e,0x8e,0xb2,0xe2,0x38,0x2,0xc2,0xb4,0x88,0xd,0x95,0xe3,0x22,0x56,0xb6,0xe4,0xb8,0xd5,0x82,0x3c,0xfb,0x4d,0x6e,0x5e,0x9,0x4,0x82,0x8b,0x4,0x62,0x1,0x16,0x8,0x4,0x82,0x17,0xb,0x17,0x8,0x81,0x9e,0x93,0x7f,0x2f,0xfe,0xee,0xfd,0xf3,0x1a,0xcf,0xf3,0xdf,0x81,0x3f,0xcf,0x17,0x6e,0xff,0x12,0x7e,0x59,0xdc,0x8f,0x66,0x3f,0x2f,0xe1,0x39,0x78,0xa1,0xe7,0x6f,0x5d,0x68,0xf2,0x43,0x9d,0xcf,0xa5,0x7c,0xc6,0xcb,0xfb,0x84,0x40,0xf0,0x23,0x79,0x3f,0x8a,0x53,0x6f,0x28,0x80,0x51,0x85,0x9c,0x7e,0x4e,0xff,0xb6,0xbd,0xe3,0x6,0xdb,0x98,0x5a,0xee,0xd9,0x2a,0x5b,0x95,0x32,0x61,0x2c,0xa8,0xa,0x81,0x89,0x41,0x52,0x9a,0xad,0xc3,0x81,0x8b,0x42,0x74,0xca,0x4b,0xa5,0xa4,0x4e,0xf6,0x29,0xeb,0xb5,0x5f,0x2f,0x99,0x80,0xf3,0x1e,0x43,0xbf,0x82,0xf7,0x16,0xdf,0x7f,0xe2,0x19,0x7c,0xee,0x8b,0x5f,0xdd,0xda,0x9c,0x7a,0xea,0xe4,0xe,0x7c,0x22,0xc8,0x0,0x26,0x32,0x99,0x24,0xdb,0xfe,0xde,0xf1,0xc8,0xf,0x9e,0xc5,0x27,0x3f,0xf7,0x65,0x38,0xbf,0xf9,0xfe,0x75,0xfd,0x35,0x57,0xe1,0xb7,0x7f,0xed,0x43,0xb8,0x64,0x6f,0xa7,0xb4,0xfc,0x3a,0x6b,0x8b,0xb5,0xd7,0x7b,0x37,0x92,0x9c,0x88,0x68,0x9a,0x26,0x29,0x2,0x2d,0x86,0x7e,0xcd,0xd1,0x4,0xce,0x82,0x0,0x2c,0x7b,0x8b,0x2f,0xdf,0xf7,0xd0,0xc6,0x3e,0xb4,0x56,0xf8,0xc0,0x3b,0x6f,0xc4,0xbb,0xde,0xf6,0xfa,0xad,0xe5,0x23,0xb7,0x7d,0xe9,0x5e,0xc,0xce,0xc3,0xda,0x21,0xb5,0xe9,0x12,0x4c,0xd3,0x30,0x19,0x9b,0x6c,0xa5,0x99,0xbc,0x1b,0xfa,0x15,0xab,0xba,0x43,0x48,0x4,0x61,0x18,0x8b,0xa0,0x72,0xd9,0x14,0xd8,0xe6,0x1b,0x11,0xa1,0x94,0x49,0xb6,0xdf,0xb8,0xd1,0x52,0x3c,0x46,0xeb,0x51,0x51,0xc8,0xa7,0x27,0xd3,0xab,0x4f,0xe9,0xf5,0xc5,0xb4,0x75,0x17,0x71,0x62,0x85,0x2d,0x36,0xe1,0xf1,0x97,0xea,0xe8,0x68,0xda,0x2,0x5f,0x9d,0x57,0x5b,0xce,0xc8,0xf3,0x3e,0x7b,0xf4,0x1a,0xd3,0x73,0xa4,0x2e,0xe5,0x40,0x35,0x4e,0xfe,0x13,0xcb,0x5e,0xca,0xb1,0x4d,0xdc,0xc5,0xa9,0xe6,0x24,0x5b,0xe2,0xe3,0x7c,0x5b,0x47,0x59,0x91,0xe7,0x8a,0xc7,0x8d,0x7f,0x6c,0xcf,0xad,0x2a,0x58,0x20,0x10,0x8,0x5e,0x2,0x10,0x2,0x50,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x38,0x46,0x28,0xea,0xad,0xba,0x35,0x3e,0x84,0xa2,0x7a,0xca,0xa5,0x10,0x4c,0xe2,0x71,0x94,0x40,0x88,0x1,0x4d,0xd3,0x15,0x52,0x2a,0xc6,0x0,0xef,0x1d,0xb4,0x31,0x25,0xe7,0x2e,0xa4,0x7c,0x55,0x67,0xfb,0xa2,0x20,0xb,0x21,0xa0,0x69,0x3b,0xd8,0x61,0x5d,0x5a,0xec,0xb5,0x36,0x8,0xde,0x63,0xb1,0xb3,0x57,0x8,0x45,0xa5,0x34,0x5c,0x8a,0x20,0xf8,0xd2,0xfd,0xf,0xe3,0x70,0xb9,0xda,0x18,0xf7,0xde,0xee,0x2e,0xba,0x6e,0x1,0x97,0x72,0x5b,0x79,0xbd,0xb1,0x6d,0xbe,0x46,0x8c,0xdc,0x9e,0xfb,0x99,0xbb,0xbe,0x89,0x4f,0xdf,0xfa,0x65,0x38,0xb7,0x49,0x12,0xbe,0xfa,0x86,0xeb,0xf1,0xdb,0x1f,0xfd,0x30,0xae,0xbc,0xec,0x54,0x51,0xd8,0x71,0x8b,0x2e,0x6f,0x6f,0xe8,0xd7,0x70,0xc3,0x0,0x22,0x85,0xe5,0xe1,0x7e,0x22,0x2a,0xd7,0xf0,0xce,0xc1,0xbb,0xa1,0x10,0x98,0x31,0x4,0xdc,0x72,0xc7,0xbd,0x38,0x7b,0x6e,0x53,0x51,0xfd,0x9a,0x57,0x5e,0x87,0x97,0x5f,0x7b,0xd5,0xc6,0xe3,0xcf,0x3c,0x7b,0x6,0x77,0xdc,0xfb,0x4d,0x28,0xa5,0xa0,0x35,0x2b,0x2d,0xdd,0xd0,0xc3,0xdb,0x2c,0x7f,0x8f,0x25,0x8b,0x90,0xdb,0x88,0x3,0xfa,0x7e,0xc5,0xa,0xc1,0x64,0xf7,0x25,0x52,0x50,0x3a,0xb5,0xc0,0x6b,0xd,0x95,0x73,0x85,0x41,0x8,0xf5,0xcd,0xad,0x38,0x36,0xf8,0x16,0x55,0x5b,0xc8,0x7e,0x57,0xa6,0xf5,0x42,0x56,0x54,0xa2,0x2a,0xf8,0xa0,0xf1,0x7c,0xe1,0xd5,0xeb,0x6c,0xc0,0x3a,0xaf,0xf,0xd8,0xcc,0xf1,0xab,0x89,0xc1,0x6a,0x20,0x69,0x83,0x2f,0x58,0x13,0x57,0x11,0x74,0xd3,0x2c,0xbe,0xf1,0xf5,0xcf,0xdc,0xdb,0x26,0xff,0x46,0xc0,0xa4,0x24,0x65,0xdc,0xe8,0x51,0x8a,0xbe,0xb,0xe,0x64,0xcb,0x3a,0xb1,0x64,0x28,0x8a,0x2,0x50,0x20,0x10,0x5c,0x1c,0x10,0x2,0x50,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x38,0x6e,0x48,0xca,0x36,0xfe,0x91,0xc9,0x90,0x10,0x23,0x8c,0x69,0x98,0xa0,0x8b,0x1,0x31,0xc6,0x94,0x89,0x17,0xa1,0x4d,0x93,0x1a,0x69,0x39,0xb3,0x8f,0x40,0x30,0xa6,0xe1,0xfc,0xcf,0x44,0xb0,0x98,0xa6,0xc3,0x4d,0x6f,0x7c,0x5,0x4e,0x9e,0xd8,0x2b,0xa4,0x47,0xf0,0xe,0x43,0xbf,0xe2,0x75,0x12,0xd1,0x8,0x0,0x4d,0xdb,0xc1,0x39,0xcb,0x76,0x56,0x44,0x56,0xb8,0x79,0x87,0xa1,0x5f,0xe3,0xec,0xfe,0x21,0xe,0x97,0xeb,0x8d,0x21,0x6b,0x5,0x2c,0x1a,0x2a,0xb6,0xd7,0x61,0xbd,0x42,0x29,0x8b,0xda,0x82,0xac,0x6c,0xfb,0xf4,0x9d,0xf,0xe1,0xd3,0xb7,0xdd,0x95,0xc8,0xbd,0x29,0x5e,0x7d,0xc3,0x75,0xf8,0x67,0xbf,0xfa,0x21,0x9c,0xde,0x6d,0xe1,0x9d,0xe5,0xbc,0xc2,0x74,0xdc,0x79,0x1e,0xe,0xcf,0x9d,0x29,0x45,0x20,0x76,0xe8,0xb9,0x88,0x2b,0x65,0x10,0x6,0xcf,0x39,0x81,0xcb,0x3e,0xe0,0x8e,0xbb,0xbf,0xb6,0x79,0x31,0xa5,0xd4,0x44,0x81,0x97,0xa6,0x1e,0xb7,0xdd,0x79,0x1f,0x96,0xeb,0x1,0xd6,0xe,0x8,0x31,0xc0,0xd9,0x1,0x4a,0x33,0x81,0xe7,0xec,0x0,0x37,0xc,0xf0,0xde,0x61,0x79,0xb8,0x8f,0x61,0x58,0xe3,0x70,0xff,0xc,0x13,0x8e,0x49,0x95,0xc9,0xd6,0x65,0x9f,0x88,0xbc,0xaa,0xcd,0xb7,0xa8,0x33,0x47,0x95,0x67,0x48,0x76,0xe1,0x5c,0xa,0x85,0x54,0xce,0x82,0x94,0xf7,0x98,0x73,0x1f,0xcb,0x63,0xd5,0x38,0xcb,0xf9,0xb1,0x41,0xe6,0x95,0xa5,0x2a,0xfb,0xec,0x64,0xf6,0xcf,0x7b,0xee,0x1d,0xa9,0x5,0x8c,0x33,0x95,0x21,0x36,0xb5,0x85,0x35,0xe1,0x97,0xa9,0xcd,0x58,0xa9,0x14,0x6b,0xc6,0x6f,0x52,0xd0,0xb1,0x55,0xa9,0xf8,0x77,0xf6,0xf,0x4c,0xde,0x63,0x4,0x2,0xc1,0x45,0x7,0x21,0x0,0x5,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x82,0x63,0x4,0x52,0xa6,0x6a,0x78,0xad,0xa4,0x52,0x31,0xc2,0x7b,0x7,0xef,0x5d,0x22,0xb7,0x5c,0x79,0x3e,0x38,0x56,0x94,0x29,0xc5,0xc5,0x4b,0x2a,0xb5,0x1,0x3,0x4c,0xc1,0x10,0x31,0xd9,0xf7,0x8e,0xb7,0xdc,0x88,0x7f,0xf2,0xf,0x3e,0x80,0x46,0xb3,0x3a,0x4f,0x9b,0x26,0xfd,0x31,0xd0,0xda,0xc0,0xb4,0xdc,0x2,0xdf,0xed,0xec,0xc1,0x34,0xd,0xd6,0xab,0x31,0x77,0xd6,0xe,0x5c,0x5c,0x65,0xad,0xc5,0x6a,0xb5,0x99,0x47,0x1b,0x42,0x84,0x75,0xa1,0xa8,0x17,0x9b,0xae,0x2b,0x56,0xd8,0x4d,0x70,0xc9,0x10,0x88,0x6d,0xb1,0x1f,0xff,0xdc,0xdd,0xf8,0xd4,0x67,0xee,0xd8,0x4a,0x2,0xbe,0xf2,0xe5,0xd7,0xe0,0x9f,0xff,0xda,0xcf,0xe1,0xaa,0x2b,0x2f,0x87,0x69,0x1a,0x78,0xef,0x46,0x95,0x63,0xb2,0x2b,0x6b,0xd3,0xa0,0x5f,0xaf,0xe0,0xbd,0x83,0xb3,0x43,0x69,0x34,0xce,0xe4,0x28,0x69,0x85,0x5b,0xef,0x7e,0x8,0xe7,0xf6,0x2f,0x9c,0xab,0x7a,0x6e,0xff,0x0,0xb7,0xdd,0xfd,0x20,0x80,0x88,0xae,0x63,0xb,0xb2,0xaf,0xf2,0x17,0x9d,0x1d,0x4a,0x1,0x9,0x81,0x60,0xfb,0x35,0x82,0x67,0x2b,0x36,0xbf,0x36,0xbc,0xef,0xdc,0xe6,0x1b,0x43,0x4,0xc2,0x58,0x1a,0x92,0xcb,0x5b,0x28,0xd5,0x56,0xa9,0xf4,0x5a,0xe4,0xec,0xc4,0x91,0xc,0x4b,0x84,0x59,0x2e,0x71,0xd9,0x28,0xf1,0xd8,0x62,0xf,0x2f,0x4f,0x4f,0x2a,0x8a,0xb7,0xce,0xff,0xc6,0x72,0xdb,0x96,0xaa,0x15,0x7b,0xc0,0x2c,0x5c,0x70,0x6a,0xd5,0x1d,0x79,0xc8,0x6d,0x16,0xf6,0xfc,0x33,0x4d,0x77,0xbd,0x61,0x43,0xc6,0xb,0xb3,0xe4,0x9e,0xf7,0x58,0x8f,0xf8,0xf7,0x26,0x16,0x60,0x81,0x40,0x70,0x91,0x40,0x8,0x40,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0xe0,0x18,0x21,0x78,0x57,0xf2,0xd0,0xb8,0xd9,0x75,0x6c,0x9b,0x55,0xa5,0x15,0x3d,0xa4,0x72,0x2a,0x26,0xdc,0xb4,0x31,0x50,0x4a,0x3,0x88,0x8,0x3e,0x14,0x55,0x19,0x11,0x95,0x9f,0x4d,0xdb,0x1,0x88,0x78,0xf7,0x3b,0xde,0x8a,0xdf,0xfc,0x87,0x3f,0xb,0xc4,0x0,0xe7,0x2c,0xda,0x76,0x51,0x8,0x33,0x44,0x6e,0xb2,0x35,0xa6,0x41,0xf0,0x1,0x8b,0x9d,0xbd,0xd2,0x1c,0x6c,0x4c,0x3,0x67,0x7,0xec,0x75,0x1a,0x97,0x5f,0x76,0xd9,0xc6,0xb8,0xd7,0xfd,0x80,0xb3,0xe7,0xce,0xf2,0x31,0xe4,0x86,0x5e,0xe0,0xc8,0x92,0x85,0x18,0x23,0xdc,0x30,0x70,0x66,0x1e,0x80,0xbf,0xfc,0xec,0xdd,0xf8,0xd4,0x67,0xbe,0x30,0x36,0xed,0x56,0xb8,0xfe,0x9a,0x2b,0xf1,0x1b,0xbf,0xf8,0x3e,0xec,0x18,0xa4,0x9c,0x41,0x56,0xda,0x79,0xef,0xe0,0x86,0x1,0x43,0xbf,0xc2,0xd0,0xaf,0x8a,0xa2,0xac,0x5f,0x2d,0xe1,0xbd,0x4f,0xc7,0xce,0xcb,0x1c,0xf6,0x16,0x5f,0xba,0xe7,0xeb,0x17,0x9c,0xff,0x3b,0xef,0xf9,0x1a,0xce,0xee,0x1f,0xc2,0x7b,0x8f,0x61,0x58,0xc3,0x18,0xc3,0xc4,0x5c,0x22,0x60,0x89,0x54,0x21,0xf3,0x86,0x61,0xd,0x3b,0xf4,0x18,0x86,0x9e,0x55,0x82,0xca,0xc0,0x39,0x9b,0x88,0xc2,0xbe,0x58,0xb6,0x43,0x6a,0x6f,0x7,0xb8,0xd0,0x65,0x6c,0xf3,0xd,0x99,0xe3,0x1b,0x8b,0x53,0x4a,0x1b,0x6f,0x5d,0xf6,0x11,0x8b,0x12,0x74,0xde,0x66,0x8b,0xea,0xfc,0x40,0x65,0x91,0x9d,0x12,0x5b,0xe7,0xcf,0xf7,0xab,0x37,0x37,0xb7,0xdd,0xe6,0xd5,0xc7,0x76,0xe2,0x71,0x9b,0xc5,0xc2,0x7b,0x54,0x35,0x71,0x19,0x52,0x6d,0x5b,0xae,0xc6,0xbc,0xed,0xdc,0x78,0x21,0x96,0xdc,0x39,0x99,0x17,0xb7,0xb4,0x1a,0x17,0x36,0xf3,0x45,0xd8,0x9f,0x40,0x20,0x10,0xfc,0x8,0x21,0x4,0xa0,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x70,0x8c,0x10,0x2a,0xd5,0x5c,0x56,0x8b,0x21,0xd9,0x65,0x73,0xc6,0x9c,0xf7,0xdc,0x20,0x9b,0xc9,0xa2,0x18,0x63,0x51,0x4,0x52,0x52,0x93,0x11,0x11,0x4c,0xc3,0xd,0xbc,0x3a,0x91,0x58,0x8a,0x8,0x4a,0x11,0xde,0x79,0xd3,0x8f,0xe1,0xbf,0xfa,0x8d,0x5f,0xc6,0xeb,0x9a,0x9c,0x41,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x55,0x97,0x5d,0x82,0x7e,0xbd,0x84,0xb3,0x3,0x9a,0x6e,0x1,0xef,0x3d,0x93,0x86,0xde,0xa3,0xed,0x16,0xe8,0x16,0x3b,0x68,0xba,0x45,0xb2,0xdb,0x32,0x99,0xf5,0x53,0xef,0x7c,0x13,0x4e,0x9e,0xd8,0xdd,0x18,0xf7,0x63,0x4f,0x3c,0x5,0x22,0x95,0x14,0x71,0xdc,0x98,0xeb,0x83,0xab,0xaa,0x29,0xa6,0xf0,0x6e,0x28,0x56,0x63,0x67,0x2d,0x6c,0xdf,0xe3,0x4f,0x3f,0xf5,0x5,0x7c,0xfa,0xb3,0x77,0x6c,0x25,0x1,0x5f,0x71,0xfd,0x35,0xf8,0x9d,0x8f,0x7e,0x18,0x57,0x5e,0x7a,0xaa,0x58,0x7d,0x73,0x8b,0xae,0xb3,0x16,0x4a,0x1b,0x34,0x4d,0xcb,0x16,0x56,0x42,0xb2,0x22,0x7,0x56,0x0,0xa6,0x96,0xe4,0x5b,0xef,0x7a,0x10,0xfb,0x7,0xcb,0x23,0xe7,0xfe,0x70,0xb9,0xc2,0x2d,0x77,0xdc,0xcb,0xea,0xbe,0x64,0x23,0xb6,0x89,0xa4,0xb4,0x96,0x6d,0xbf,0xde,0xb9,0xb2,0xff,0xf5,0xf2,0x0,0xb6,0x5f,0x27,0xb,0xb2,0x46,0xbf,0x3e,0x44,0xc,0x1,0xde,0x7b,0x68,0x63,0xe0,0x9d,0x2b,0x4a,0x40,0xa4,0x2c,0x3f,0x2e,0x9,0x19,0x95,0x9d,0x4c,0x26,0x56,0xc7,0x3b,0x2b,0xf5,0x20,0xa2,0x9,0x87,0xc5,0xaf,0x6d,0xb6,0x50,0x53,0xf5,0x7,0xa8,0x17,0xac,0x33,0xf7,0x70,0xe4,0xab,0x30,0xe5,0xbf,0x28,0x97,0x8f,0x60,0x46,0x4,0x56,0x4,0xe3,0x48,0x12,0xc6,0xd9,0x3e,0xe6,0x1b,0xdd,0xcc,0xeb,0x7b,0xd1,0xf2,0xf6,0x9e,0xeb,0x76,0x36,0xd4,0x7d,0x71,0x32,0x5d,0x51,0x4a,0x40,0x4,0x2,0xc1,0x45,0x4,0x21,0x0,0x5,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x82,0x63,0x84,0x4c,0x56,0x21,0x56,0xf6,0xd9,0x54,0xaa,0x41,0x44,0xa9,0xa8,0x83,0x73,0xf6,0x72,0x66,0x5f,0x26,0xac,0x6a,0x3e,0x83,0x52,0x5b,0x2e,0x29,0x2e,0x95,0xc8,0x99,0x79,0x0,0x93,0x48,0x6f,0x7e,0xe3,0x6b,0xf1,0xdf,0xfe,0xce,0x3f,0xc6,0x7,0xdf,0x79,0x23,0x4e,0x9c,0x38,0x51,0x48,0x1d,0x6d,0x1a,0x98,0xb6,0xc5,0xee,0x89,0x53,0x0,0x80,0x6e,0xb1,0xb,0x80,0xd0,0xb6,0x1d,0x7e,0xf2,0x2d,0xaf,0xc5,0x87,0xde,0xff,0xae,0xad,0xe3,0xfe,0xca,0xfd,0xdf,0xc0,0xd0,0xaf,0x93,0x3d,0x37,0xb5,0xd5,0xfa,0x23,0x1a,0xca,0x89,0x40,0x4a,0x63,0xe8,0xd7,0xe5,0xb8,0x88,0x0,0x28,0x8d,0x3f,0xfa,0x8f,0xb7,0xe0,0xe6,0xcf,0xdc,0xb1,0x95,0x2c,0xba,0xfe,0xda,0xab,0xf0,0x2f,0x3e,0xf6,0xf3,0xb8,0xe2,0x92,0x3d,0x0,0x84,0x61,0xbd,0x4e,0xc4,0x67,0x40,0xc,0x1e,0xd6,0xf6,0x20,0xa5,0xd0,0x76,0x3b,0x7c,0xb1,0xa4,0x34,0xab,0xc,0x53,0x2e,0xdf,0xb9,0x95,0xc5,0x1d,0x77,0xdf,0x7f,0xe4,0xdc,0xdf,0x7d,0xef,0x83,0x78,0xe6,0xdc,0x1,0x4c,0xd3,0xc0,0x26,0x55,0x1f,0x88,0x55,0x7b,0xa4,0x14,0x9c,0xb5,0xdc,0x88,0xec,0x2c,0x9c,0x1d,0x98,0xe0,0x4b,0xf6,0xe9,0xf5,0xea,0xb0,0x14,0xb3,0xf8,0x44,0x6a,0xe6,0xcc,0x3b,0x6d,0x1a,0x3e,0x66,0x8c,0x36,0x6d,0x56,0x2,0x66,0x45,0x20,0xff,0xc9,0x8a,0x3f,0x52,0x34,0x29,0x82,0x99,0x66,0xff,0xc5,0x42,0xc6,0x4e,0x4a,0x3d,0xb0,0xc9,0x65,0x15,0xe7,0x30,0x36,0x35,0x80,0x71,0xf6,0x53,0x9d,0xef,0x37,0xcf,0x1a,0x24,0xa2,0xad,0x5,0x1c,0x44,0x84,0xa9,0x2a,0xf1,0x47,0xa4,0xa6,0x3b,0x2f,0x69,0x37,0x1b,0xc3,0xac,0x14,0x65,0xae,0x72,0xc,0x5e,0x1a,0xee,0x5,0x2,0xc1,0xc5,0x1,0x21,0x0,0x5,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x82,0x63,0x6,0x56,0xc0,0xf1,0x57,0x7d,0x2,0x52,0xa9,0x4,0x17,0x5d,0xc4,0x10,0x8a,0xb5,0x14,0x60,0x72,0x4f,0x69,0x9d,0xa,0x26,0x42,0x69,0x2,0x6,0x80,0xe0,0x43,0x21,0xa5,0x42,0xd5,0xa0,0x9b,0x71,0xd9,0xa5,0xa7,0xf1,0xd1,0x5f,0xfe,0x59,0xfc,0x37,0xbf,0xf9,0xcb,0xf8,0xd0,0xbb,0x6e,0xc4,0xf5,0xd7,0x5c,0xd,0xa3,0xb8,0xa1,0x17,0x60,0x12,0x91,0x82,0xc3,0xab,0xaf,0xbd,0x1c,0xbf,0xf5,0x6b,0x3f,0x8b,0xdf,0xf8,0xc7,0xbf,0x88,0xc5,0xa2,0xdb,0x18,0xef,0xd3,0xcf,0x9c,0xc1,0x57,0xbe,0xfe,0x8,0xec,0xb0,0x2e,0x85,0x21,0x21,0x35,0x11,0x7,0x67,0x37,0xf,0x30,0xd9,0x3f,0x49,0x51,0x39,0x36,0xe7,0x5c,0x22,0xce,0x1c,0xfe,0xe4,0xaf,0x6f,0xc3,0xa7,0x3f,0x73,0xfb,0x56,0x25,0xe0,0xcb,0xaf,0x7b,0x19,0xfe,0xcb,0xff,0xec,0x57,0x71,0x7a,0x47,0x17,0x85,0x63,0xf0,0xbe,0xd4,0xe1,0x2e,0x76,0x4f,0x94,0x9c,0x40,0xfe,0xdb,0x33,0x1,0x97,0xa,0x49,0x1e,0x7a,0xe4,0x71,0xf8,0x2d,0xdb,0x5d,0xf7,0x3,0x3e,0x7d,0xeb,0x9d,0x18,0xfa,0x1e,0x76,0xe8,0x8b,0xfd,0x9a,0xd2,0x1c,0x7b,0x3b,0xc0,0xd9,0xbe,0x64,0xb,0xe,0x43,0x8f,0xa6,0xed,0xd0,0xaf,0x96,0x50,0x5a,0xc3,0x34,0xd,0xda,0xc5,0xe,0x94,0x62,0x3b,0x76,0xb6,0x6b,0x7b,0x67,0x8b,0x12,0x90,0x4a,0x73,0x33,0xa,0x81,0x1b,0xc3,0xb4,0xf0,0x85,0xd5,0x9c,0xd9,0xe,0x4c,0x53,0xb1,0x5b,0x52,0x76,0x52,0x39,0x33,0xca,0x13,0xe3,0x36,0x4b,0x7e,0x24,0x26,0x65,0x23,0xe3,0xf3,0xe3,0x6b,0x30,0x2d,0xec,0x40,0xd5,0x22,0x3c,0x79,0xb1,0x8e,0x54,0xee,0xfd,0xdd,0x35,0xe8,0xc6,0xe7,0xff,0x7c,0xac,0xc2,0x5,0x63,0x9c,0xe6,0x67,0x56,0xd,0xc9,0x2c,0x72,0xac,0x99,0x51,0x51,0x0,0xa,0x4,0x82,0x8b,0x3,0x46,0xa6,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x38,0x3e,0x8,0x6e,0x18,0x73,0xe2,0x12,0x99,0xc7,0x36,0xe0,0xac,0xf4,0x3,0x94,0x6a,0x92,0xb2,0x8f,0xb3,0x0,0x33,0xb4,0xe6,0xcb,0x3,0x95,0x1a,0x63,0xa9,0x34,0x0,0xb7,0x47,0xa6,0xc0,0x29,0xa5,0x70,0xcd,0xd5,0x57,0xe0,0x97,0x3f,0xfc,0x1,0xfc,0xfc,0x30,0x60,0xff,0x70,0x89,0x73,0xe7,0xf6,0xe1,0x7c,0x40,0xd3,0x34,0x38,0x79,0x62,0x17,0x97,0x9c,0x3a,0x81,0xc6,0x6c,0xbf,0xf4,0x88,0x31,0xe2,0x53,0x7f,0x7b,0x1b,0x9e,0x7c,0xf2,0x49,0x34,0x6d,0x87,0x18,0x23,0xd6,0xa9,0xb1,0x98,0x7f,0x3f,0xe2,0x38,0x3d,0x5b,0x69,0xbd,0x77,0x70,0x6e,0x48,0x16,0x65,0xce,0xd0,0xf3,0xde,0xe3,0x8f,0xff,0xfa,0x76,0x34,0x6d,0x87,0xf7,0xff,0xc4,0xdb,0xf9,0x78,0x2a,0x5c,0x77,0xcd,0x55,0xf8,0xaf,0xff,0xc5,0xc7,0xf0,0x3f,0xfd,0xeb,0x3f,0xc2,0x77,0x97,0xfb,0xd8,0x3b,0x71,0x9,0x93,0x76,0xa9,0x9,0x98,0x88,0xd0,0xb4,0xb,0x98,0xa6,0x49,0x63,0xc,0x68,0xda,0xe,0x21,0x78,0xfc,0xc4,0xdb,0x5e,0xf,0xad,0x36,0x75,0x14,0xf7,0x3f,0xf0,0x20,0xbe,0xfd,0xfd,0xc7,0x4b,0x3b,0x31,0x0,0x80,0x52,0x9e,0xa1,0x77,0x8,0x3e,0xab,0x27,0x15,0xbc,0x1f,0x0,0x0,0xcb,0x83,0x73,0xd8,0xd9,0x3b,0x9,0x22,0x82,0xd6,0x86,0xad,0xd4,0x6d,0x57,0x32,0xf1,0x88,0x14,0x88,0xb8,0x49,0x99,0x5f,0x4b,0x56,0x9b,0xb1,0x72,0x33,0xd9,0xb5,0x73,0xe9,0x7,0x11,0x40,0xa,0x31,0xf8,0xa4,0xac,0x9b,0x16,0x64,0x30,0x97,0x57,0x91,0x76,0x18,0xdb,0x7a,0x8b,0x25,0xb7,0xa8,0x8,0xb3,0xfa,0x8f,0xa,0xd1,0xc7,0x84,0x26,0x15,0x1b,0xef,0x54,0xd5,0x57,0x5e,0xcd,0x23,0x1e,0xff,0x3b,0x46,0xac,0xdb,0x8a,0xeb,0x63,0x47,0x35,0x7,0xf3,0x4c,0xc3,0x58,0xf2,0x13,0xe7,0x36,0x69,0x56,0x5b,0xc6,0xaa,0xa0,0x24,0x6e,0x9c,0xb3,0xd5,0xe4,0xc9,0x9b,0x8e,0x40,0x20,0xb8,0x28,0x20,0x4,0xa0,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x70,0x9c,0x90,0xb2,0xdd,0x62,0xb2,0xeb,0x32,0x79,0x14,0x4a,0x1b,0x6c,0xc9,0x7,0xc,0x71,0xb4,0xb,0x2b,0x5e,0x27,0x84,0x0,0xd3,0x34,0x15,0x9,0xc4,0x7f,0xbb,0xa1,0x47,0xd3,0x2d,0xce,0xcb,0x75,0x10,0x1,0x5d,0xd7,0xa2,0xeb,0x5a,0x5c,0x71,0xd9,0xe9,0xe7,0x3c,0xdc,0xaf,0xde,0xff,0x75,0x7c,0xfc,0x33,0x77,0x22,0x92,0x42,0xdf,0xaf,0x0,0x10,0x16,0x3b,0x7b,0x70,0x88,0xe8,0xd7,0x4b,0x28,0xfd,0x9a,0xad,0xeb,0xd5,0x45,0x1e,0x8a,0x14,0xbc,0x73,0x58,0xf7,0x7,0x45,0x25,0xe7,0x1c,0xf0,0xef,0x3e,0x7e,0x2b,0x42,0x8c,0xf8,0xe0,0x7b,0xde,0xb1,0xd1,0xd6,0x7a,0xdd,0x35,0x57,0xe3,0x77,0xff,0xf3,0x5f,0xc7,0xff,0xf2,0x6f,0xfe,0x4,0x8f,0x3c,0xfa,0x44,0x29,0x2a,0x69,0x9a,0x96,0xdb,0x7f,0x75,0x2e,0x4c,0x61,0xf2,0xcd,0xda,0x1,0x97,0x5f,0xb2,0x87,0x1b,0x5f,0x77,0xc3,0xc6,0x58,0x6,0x6b,0xf1,0xc9,0xbf,0xbd,0x9d,0x1b,0x84,0x95,0x2,0x91,0xe2,0xf2,0x13,0x10,0x86,0xbe,0x2f,0xaf,0x3,0x37,0x2,0x3b,0xac,0x97,0x87,0x18,0xd6,0xab,0x42,0xb4,0x9a,0xa6,0x5,0x29,0x85,0xa6,0xed,0x60,0xc,0x93,0x8e,0xda,0x34,0xa9,0xe0,0x24,0xb7,0xfe,0x32,0xd9,0x4a,0xa0,0x54,0x26,0xc2,0x4,0x6e,0x24,0x2,0x91,0x42,0xf0,0x7e,0x26,0x46,0xab,0x1b,0x77,0x9,0x44,0x89,0x8,0xc4,0x48,0x91,0xe5,0x66,0x62,0x5e,0x8f,0x4a,0xe7,0xc5,0x68,0x1f,0xde,0x56,0x8a,0x91,0x7f,0xdc,0x4e,0xf6,0x1d,0x4d,0xfe,0x6d,0xd9,0xde,0xf3,0x44,0xde,0xe7,0xb6,0xfd,0xd1,0xb6,0x65,0xeb,0x93,0x33,0x8f,0x9f,0xea,0xbc,0xc3,0x38,0x1b,0xf3,0xe6,0x31,0x89,0xbe,0x4f,0x20,0x10,0x1c,0x17,0x88,0x5,0x58,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x38,0x4e,0x28,0x36,0x4e,0xa6,0x2e,0x46,0xf5,0xdb,0x48,0x65,0xb0,0x6d,0xd6,0xb3,0x2a,0x2d,0xd9,0x19,0x43,0xb2,0xed,0x3a,0xcb,0xea,0x34,0xef,0x3d,0x28,0xad,0xab,0xb4,0x41,0xf0,0x1e,0x9f,0xba,0xf5,0x2e,0x7c,0xfd,0xa1,0x6f,0xc1,0x1f,0x95,0xcd,0xf7,0x3c,0xf1,0xd0,0x37,0xbf,0x8d,0xdf,0xfb,0xc3,0xbf,0x40,0x0,0x60,0x87,0x1e,0xeb,0xe5,0x21,0xb4,0x52,0x38,0x38,0xfb,0xc,0x96,0xfb,0xe7,0xb8,0x21,0x77,0xb9,0xbf,0x65,0x4d,0xce,0xd4,0x63,0x3b,0x6c,0xc0,0x7a,0x79,0x50,0xa,0x4c,0x96,0xfb,0x67,0xe0,0x2c,0xdb,0x6c,0xbd,0xf,0xf8,0xb3,0x9b,0xbf,0x88,0x2f,0xde,0xfd,0xc0,0x56,0x62,0xea,0x9a,0xab,0xaf,0xc4,0xbf,0xfc,0x4f,0x7f,0x19,0xd7,0x5f,0x75,0x29,0x8c,0x69,0x41,0x44,0xc5,0xbe,0x9c,0xed,0xc3,0x4a,0x2b,0xb6,0x0,0xc7,0x88,0x9f,0x79,0xf7,0x9b,0xb1,0xe8,0xda,0x8d,0xed,0x7c,0xf3,0x5b,0xf,0xe3,0x4b,0x5f,0xfd,0x1a,0xd6,0xab,0xc3,0x94,0xbf,0x18,0xe1,0xec,0x90,0x32,0x5,0x9,0xce,0xe,0x58,0x1e,0x9c,0xe3,0x72,0x93,0x94,0x33,0x48,0x8a,0x4b,0x56,0x22,0x58,0x79,0x99,0xf3,0x18,0x73,0xb1,0x44,0x6e,0x41,0x8e,0x21,0x35,0x1,0xa7,0xd7,0x95,0x73,0x19,0x15,0x42,0x88,0xc5,0xd2,0x1b,0xb2,0xea,0x2f,0x91,0x57,0x63,0xbe,0x5f,0x39,0x29,0xca,0x39,0x91,0x89,0xbf,0x51,0xc5,0x87,0x49,0x4b,0x70,0xac,0x5a,0x6e,0x6b,0xae,0x6d,0x5b,0xe1,0xc5,0xf3,0x53,0xfa,0x6d,0x53,0xe6,0x6d,0x3f,0x7f,0x8f,0x62,0x9a,0x47,0xf2,0x6f,0x6c,0x2,0xae,0x73,0x2e,0x63,0xb1,0x20,0x27,0x22,0xaf,0xcc,0xc2,0xb8,0xcd,0x58,0xff,0x5d,0xec,0xd0,0xe7,0x39,0xa6,0x23,0xed,0xcb,0x98,0xee,0x5f,0x20,0x10,0x8,0x5e,0xe2,0x10,0x2,0x50,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x38,0x46,0x88,0xc1,0x63,0x52,0xcc,0x10,0xb2,0x95,0xb4,0x5e,0x6a,0xfc,0x85,0x8b,0x41,0x4c,0xb2,0xff,0x56,0x76,0x51,0x1a,0x15,0x64,0x21,0x78,0x28,0xad,0xf1,0xfd,0x27,0xcf,0xe0,0x7f,0xfc,0x3f,0xfe,0xc,0x7f,0xf2,0x97,0x37,0xe3,0x99,0x67,0xcf,0xfe,0xd0,0x63,0x74,0xde,0xe3,0xce,0xaf,0xdc,0x87,0xff,0xf9,0xf,0xfe,0x23,0x56,0x36,0xa6,0x8c,0x3b,0x5,0xad,0x35,0xe,0xf,0x98,0xf8,0x8b,0x60,0xcb,0x2b,0x69,0xbd,0xed,0x28,0x27,0x8d,0xc3,0x4d,0xb7,0x80,0xb7,0x3,0x62,0x8,0xd8,0x3b,0x75,0x9a,0x6d,0xc1,0x76,0xc0,0xd0,0xaf,0x71,0xee,0xdc,0x59,0xfc,0xfe,0x1f,0x7f,0x2,0x5f,0xb8,0xf3,0x9e,0xad,0xc9,0x70,0xd7,0x5d,0x77,0x2d,0xfe,0xd5,0x6f,0xff,0x13,0x5c,0x79,0xfa,0x4,0x4c,0xcb,0xf9,0x84,0x85,0xf8,0x4c,0x6a,0x3e,0xef,0x2c,0x2e,0x3b,0xb5,0x87,0xb7,0xdd,0xf8,0xea,0x8d,0xf5,0xbd,0xf,0xb8,0xf9,0x73,0x5f,0x2a,0xad,0xba,0xcb,0x83,0x73,0xe8,0xd7,0x4b,0x26,0xed,0xbc,0x2f,0x2d,0xc3,0xa6,0x69,0x93,0x1d,0x38,0x20,0x78,0x87,0xa6,0x5d,0xa4,0x82,0xf,0x3,0x9b,0xf2,0x0,0x6b,0xf2,0x49,0x69,0xcd,0xea,0x3c,0x95,0xf3,0xe7,0xb2,0x8a,0x33,0x65,0x3b,0x12,0xa,0x59,0xa6,0x92,0xc5,0x9b,0x40,0x25,0x3b,0x30,0xab,0x3d,0xc7,0x46,0xde,0x51,0x15,0x9a,0xe7,0x30,0xd6,0xb9,0x77,0xf5,0xdf,0x95,0x60,0x6e,0x3a,0xed,0x3f,0x44,0xb6,0xde,0x4,0xcf,0x81,0x38,0x4e,0x44,0xe6,0x91,0xfb,0x8a,0x53,0x9b,0x6f,0x51,0x5,0x56,0xea,0xd6,0x62,0xa1,0xae,0x56,0x19,0x6b,0x3c,0xea,0xcc,0xc2,0x78,0x41,0x5d,0x62,0x3c,0xe2,0xb8,0xa6,0x4,0xa3,0x40,0x20,0x10,0xbc,0xf4,0x21,0x16,0x60,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0xe0,0x38,0x81,0x54,0xc9,0x88,0xe3,0xdf,0x39,0xcf,0x2c,0x4,0x2e,0xa4,0x0,0x11,0x5b,0x66,0x3d,0xe7,0x1,0x72,0xb9,0x7,0x93,0x70,0x6d,0xb7,0x48,0x19,0x75,0x36,0x11,0x49,0x6c,0x33,0xd5,0xa6,0x61,0x32,0xe,0x1,0xaa,0x69,0x71,0xcb,0x97,0x1e,0xc0,0x17,0xef,0xfd,0x26,0xde,0xf7,0x8e,0x37,0xe2,0x5d,0x6f,0x7f,0x13,0xae,0xbc,0xfc,0x52,0xb4,0x6d,0x73,0xc1,0xa1,0x39,0xe7,0xf1,0xfd,0xc7,0x9e,0xc0,0xcd,0x9f,0xbb,0x13,0x5f,0xbc,0xef,0x9b,0x0,0x0,0x6d,0xc,0x16,0x3b,0xbb,0x18,0xfa,0xa4,0x8c,0xf3,0x1e,0x3e,0x78,0xac,0xe,0xf6,0xa1,0xb4,0x82,0x1b,0xfa,0xcd,0x43,0x24,0x42,0xf0,0x36,0x29,0xf6,0x3c,0x9c,0x1d,0xa,0xa9,0x73,0xf6,0x99,0x27,0x71,0xea,0xf4,0xe5,0x9c,0x97,0xe7,0x93,0x42,0x2e,0x46,0xfc,0x6f,0xff,0xf6,0x2f,0x10,0x63,0xc4,0x4f,0xbe,0xf3,0x6d,0x1b,0xaa,0xad,0x97,0x5d,0x7d,0x25,0x7e,0xf7,0x5f,0x7c,0xc,0xff,0xe7,0x7f,0xf8,0x4,0xbe,0xf1,0x9d,0xc7,0xb,0xa9,0xe4,0xbd,0xe3,0xa2,0x90,0x18,0xf1,0xbe,0x9b,0xde,0x80,0xbd,0xdd,0x9d,0x8d,0xb1,0x3c,0xf2,0xdd,0xef,0xe1,0xf3,0x77,0x3d,0xc0,0x84,0x65,0x6a,0x53,0x76,0xd6,0x22,0x86,0x80,0xa6,0x5b,0xf0,0xf8,0x9,0x18,0xd6,0x2b,0x38,0x67,0x81,0x18,0xb8,0x60,0xc4,0xd,0x50,0x4a,0x41,0x25,0xeb,0x2f,0xdb,0x86,0x1b,0x28,0xa5,0x4b,0x9e,0xdd,0xa8,0xe4,0xe4,0xe6,0x5e,0x45,0x48,0x99,0x8e,0x54,0xa9,0xf7,0x80,0x18,0x3d,0x88,0x14,0x22,0xc2,0x86,0x35,0x97,0xcb,0x5d,0x46,0x55,0x5c,0xb1,0xbe,0x52,0x56,0x3,0x2,0x1b,0x2d,0xbc,0xf1,0x87,0x6d,0xe5,0x9d,0x48,0x6,0xb7,0x14,0x64,0xd0,0x64,0x7c,0xf3,0xbf,0xf3,0x6b,0x5b,0xd6,0xad,0xf2,0x7,0x8b,0x82,0xf,0x0,0xcd,0x89,0xbb,0xb4,0x7c,0x4c,0xb9,0x95,0xf1,0x8,0x66,0x8e,0x30,0xd7,0x45,0x3e,0x97,0xa3,0xdc,0x4e,0x11,0x8e,0x24,0x62,0x90,0xf7,0x1c,0x81,0x40,0x70,0x51,0x40,0x8,0x40,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0xe0,0x98,0x81,0x94,0xae,0xc8,0x23,0x26,0x9c,0x48,0x29,0x4,0xef,0xa0,0xc8,0x30,0xb1,0x65,0x1a,0x38,0x37,0x70,0xcb,0xaf,0xf7,0x30,0xa6,0x49,0x4d,0xc1,0x48,0x8f,0x39,0xd8,0x44,0xac,0x4,0xef,0xa1,0x9b,0x6,0xda,0x18,0xf8,0xd4,0xca,0x7b,0x8,0xe0,0xaf,0x3e,0x73,0x27,0x3e,0xf5,0x85,0x7b,0x71,0xd5,0xa5,0x27,0xf1,0xd6,0x37,0xbe,0x6,0xd7,0xbf,0xec,0x72,0x5c,0x76,0xfa,0x14,0xf6,0x76,0x17,0xd0,0x49,0x3d,0x37,0xc,0x3,0xce,0xec,0x1f,0xe0,0xd1,0xc7,0x9f,0xc6,0x57,0xee,0xff,0x26,0xbe,0xf3,0xc4,0x19,0x38,0xe7,0x60,0x4c,0x9b,0xa,0x3b,0x5c,0x69,0x28,0x76,0x36,0x42,0x69,0x3,0xbf,0x5e,0x21,0x4,0xf,0xd3,0x34,0xb8,0xfb,0xbe,0x7,0x81,0x3f,0xfa,0x33,0x44,0x44,0x6e,0xc8,0x35,0xd,0x62,0xf0,0xf8,0xf6,0xf7,0x9e,0x40,0xbf,0x5e,0xc1,0xdb,0x1,0xc3,0x7a,0x9,0x6d,0x1a,0xf4,0xab,0x25,0x88,0x14,0x13,0x6d,0x44,0xc0,0xd0,0xa7,0xc7,0xf,0xd1,0x74,0xb,0xfc,0xde,0x1f,0xfc,0x29,0xee,0xb9,0xef,0xeb,0xe8,0xda,0xa6,0x58,0x6f,0x95,0xd2,0xa9,0xfd,0x18,0x70,0xd6,0xb2,0xe5,0x57,0x8f,0x97,0x49,0x31,0x6,0xec,0x76,0x6,0x6f,0xbb,0xf1,0x55,0x1b,0xf3,0x1c,0x42,0xc4,0x5f,0xdf,0x72,0x3b,0x93,0x8d,0x49,0x35,0xc9,0x63,0x20,0xb4,0x8b,0x1d,0xc4,0x18,0xe1,0x9c,0xc5,0xd0,0xaf,0x99,0x50,0xb4,0x3,0xef,0x43,0x29,0xc0,0x18,0xb4,0xdd,0xa2,0x34,0xfe,0x2a,0xad,0xc1,0xc5,0x1e,0x4c,0xd2,0x95,0xa2,0x89,0x64,0xcf,0xa5,0x94,0xd1,0x98,0x5b,0x99,0xa9,0x22,0xbc,0x6a,0x22,0xd,0xb9,0xe8,0x23,0x33,0x61,0x95,0x42,0x8e,0x9d,0xb0,0x21,0x1f,0xd8,0x36,0x5d,0x1b,0x7e,0x58,0x4d,0xdb,0x9c,0xd0,0xcb,0xe4,0x5f,0x2c,0x65,0x32,0x55,0xae,0x64,0xbd,0xec,0x11,0xdb,0xa9,0x87,0x13,0xe7,0x56,0xdf,0xbc,0x6c,0xfd,0x77,0xd5,0x5e,0x7c,0xe4,0x18,0x7f,0xa8,0x23,0xdc,0x56,0x28,0x52,0x8f,0x57,0xde,0x6f,0x4,0x2,0xc1,0xc5,0x1,0x21,0x0,0x5,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x82,0x63,0x84,0x69,0x89,0x41,0x2c,0xb6,0xd1,0x6c,0x7,0xe,0xd1,0x25,0x7b,0x6d,0x0,0x51,0xb6,0xd7,0x12,0x42,0xc,0x20,0x70,0x99,0x4,0x92,0x52,0x4c,0x25,0x22,0x8c,0x6d,0xa8,0x91,0x33,0x3,0x15,0xff,0xee,0x9c,0x85,0xd6,0x6,0x21,0x44,0x7c,0xef,0xb1,0xa7,0xf0,0xd8,0xd3,0xe7,0x8a,0x12,0xab,0xeb,0x3a,0x10,0x71,0x1,0x86,0xf,0x1e,0x4d,0xd3,0xc1,0x7b,0xf,0xa5,0x98,0x4c,0x8c,0x31,0x22,0xc2,0x43,0x91,0x42,0xd7,0xed,0xe0,0x60,0xff,0xc,0x94,0xd2,0xd0,0xa6,0xc1,0x7a,0xb9,0xf,0xad,0x99,0xa4,0xf4,0xce,0xe1,0x91,0xef,0x3f,0x86,0x87,0xbe,0xf5,0x30,0x2e,0xbb,0xf2,0x1a,0x34,0x6d,0xc7,0x6d,0xbc,0x9e,0x2d,0xc9,0xde,0x71,0x1e,0x1e,0x88,0x92,0xa,0x90,0xc9,0x2d,0xef,0x1d,0xda,0x76,0x81,0x8,0xa0,0x5f,0x2f,0xd1,0x34,0x2d,0x6c,0xdf,0x63,0xe5,0x6,0xfc,0xcd,0xed,0x77,0x23,0x4,0x8f,0x6e,0xb1,0xcb,0xb6,0x63,0xd3,0xa0,0xed,0x16,0x85,0x84,0x6c,0xda,0x45,0x22,0x4,0x23,0x9c,0x65,0xb5,0xdd,0x7b,0xde,0x76,0x23,0x2e,0x3d,0x7d,0x6a,0x63,0xae,0x1f,0x7d,0xec,0x9,0xdc,0xf5,0xc0,0xb7,0x61,0x4c,0x3,0xef,0x1c,0xfa,0xe5,0x12,0xd6,0xf6,0xa5,0xd8,0x83,0xb3,0x8,0x3,0x9c,0x1d,0xe0,0x9d,0x1d,0xb3,0x9,0xad,0x45,0xbb,0xd8,0x2d,0xc7,0x5c,0x5e,0xbb,0x62,0x39,0x76,0x55,0xb6,0x9f,0xc2,0x28,0x8a,0x53,0x88,0xb1,0x52,0x64,0x16,0x4e,0x6c,0x93,0x7c,0xab,0x33,0x5,0x33,0xe9,0xb6,0x99,0xd9,0x57,0x18,0xb6,0xaa,0x45,0x77,0x13,0x35,0xb9,0x78,0x94,0xca,0x6f,0x5e,0x1c,0x93,0x9f,0x27,0xd4,0x82,0xbe,0x69,0xf3,0x70,0xd9,0x63,0xa5,0xfe,0x8b,0x55,0x6,0x60,0x9c,0xe,0x62,0x6c,0x23,0x7e,0x1,0xac,0xdb,0x7c,0x9b,0xa8,0xc8,0xc9,0x29,0x45,0x78,0x4,0xf1,0x27,0xbe,0x5f,0x81,0x40,0x70,0x91,0x42,0x8,0x40,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0xe0,0x18,0xc1,0x3b,0x5b,0xe5,0xa4,0x85,0xd2,0x2,0x1c,0x2,0x97,0x7a,0x28,0xa5,0xe1,0x9d,0x4d,0x44,0x4a,0x80,0x52,0x66,0x6c,0xc,0xe,0x1,0xca,0x70,0xe1,0x7,0x67,0xd6,0x39,0x10,0x8,0x44,0x26,0x59,0x5c,0x7,0x44,0x6d,0x0,0x97,0x8,0xae,0x38,0x40,0x1b,0x56,0x6,0xc6,0xa4,0x32,0x8c,0x31,0x60,0xbd,0x5e,0x21,0x86,0x8,0x63,0x9a,0xd2,0x5a,0xcb,0xc5,0x23,0x94,0xf6,0xcd,0xd6,0xd7,0x88,0x0,0x6b,0x7,0x34,0xd,0x93,0x7a,0xa4,0x8,0x4d,0xbb,0xc0,0xd0,0xaf,0xf8,0x60,0x88,0xb0,0x3a,0x38,0x87,0xc5,0xde,0xc9,0xf2,0x58,0x2e,0xac,0xd0,0x91,0x95,0x7b,0xc3,0x7a,0x5,0xdb,0xaf,0x11,0x63,0x44,0xbf,0x5e,0x55,0x16,0xdc,0xd4,0xae,0x4b,0x8a,0x7f,0x47,0xe4,0xd6,0xdc,0x10,0x61,0x9a,0x6,0x43,0xbf,0xc6,0x62,0x67,0x2f,0xd9,0x89,0x43,0x29,0xfb,0x8,0xc1,0x3,0xe0,0x16,0x5e,0xa5,0x14,0x16,0x6d,0x83,0x77,0xbf,0xed,0xd,0x5b,0xdb,0x67,0x3f,0x77,0xc7,0x57,0xe0,0x52,0x49,0x87,0x4a,0x8d,0xca,0x4,0x26,0x47,0xfb,0xf5,0x32,0xe5,0x2b,0xf2,0x7c,0xe7,0x72,0xe,0x52,0x1a,0x8a,0x4c,0xc9,0xea,0xd3,0xc6,0x40,0xeb,0xa6,0x64,0xfa,0x31,0x41,0x1a,0xf8,0xf5,0x2b,0x56,0xdf,0xb1,0xa0,0x43,0xa5,0xf2,0x13,0xaa,0x8a,0x50,0xb2,0x1d,0x58,0xa9,0x54,0x2,0x12,0xd2,0xfa,0x55,0x16,0xe4,0x64,0xfc,0x13,0x9f,0x2c,0x5d,0xb0,0x9b,0x83,0x68,0x96,0x11,0x38,0x9d,0x88,0xa9,0x5d,0x37,0x6f,0x1f,0x23,0x4f,0x36,0xc9,0xdd,0xc3,0x54,0xb9,0x57,0xd3,0x8e,0x13,0x52,0x70,0xbe,0x9b,0x6a,0x99,0xe7,0x8e,0xb,0x24,0xfc,0x6d,0x6b,0x7,0x2e,0xa4,0x60,0xb5,0xd7,0x58,0x2d,0x3b,0x61,0x0,0xa5,0x4,0x44,0x20,0x10,0x5c,0x3c,0x90,0x12,0x10,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0xe0,0x18,0x81,0x74,0x22,0xf4,0x12,0x89,0x44,0xa4,0xc6,0xf2,0x88,0x44,0x42,0x29,0xad,0x4b,0x49,0x5,0xb7,0xde,0xb2,0x32,0x8f,0xc9,0x25,0x26,0xb,0xed,0xd0,0x23,0xf8,0x80,0x8,0xc0,0xb9,0x1,0xde,0xbb,0x8a,0x5c,0x62,0x2b,0x69,0xc,0xdc,0x76,0xeb,0x2c,0xdb,0x82,0x9d,0x1d,0x10,0x7c,0x48,0x76,0x55,0x8f,0x7e,0xbd,0x84,0x1d,0x7a,0x5e,0x37,0xf0,0xfe,0x72,0xb6,0x9e,0x1d,0x7a,0x78,0xe7,0x10,0xab,0x6,0xdb,0x4c,0xbe,0xc4,0xa4,0xa0,0x5b,0x2f,0xf,0x40,0x4a,0x71,0xa3,0xee,0xd0,0xc3,0x27,0x62,0x2d,0x4,0xf,0xef,0x98,0x54,0xf4,0xc1,0x43,0xe9,0xb1,0x48,0xc3,0xd,0x7d,0xc9,0xdd,0x73,0x6e,0x48,0x8a,0x46,0x26,0x37,0x63,0x8c,0xb0,0xc3,0x1a,0xce,0xe,0x68,0x52,0x29,0x7,0xe5,0x2,0xd,0xa5,0x99,0xa8,0xf4,0xae,0xb4,0xf2,0xc6,0x10,0x70,0xd3,0xeb,0xaf,0xc7,0x15,0x97,0x5f,0xba,0x31,0xcf,0x4f,0x3d,0xfd,0x2c,0xbe,0x74,0xff,0xc3,0x68,0xda,0xe,0x4a,0x69,0xd8,0xa1,0x67,0xb2,0x2f,0xcd,0x93,0x77,0xae,0x34,0x1b,0x33,0xc9,0xe8,0xa0,0x94,0x86,0x1b,0xfa,0x42,0x80,0x6a,0x63,0xa,0x11,0xe7,0x9d,0x4b,0x85,0x1d,0xb9,0x7d,0x58,0x33,0x85,0x1b,0x7c,0x51,0xbe,0xd5,0xa5,0x1e,0x31,0x6,0xf8,0xe0,0xb,0x21,0x9a,0x15,0x76,0x99,0x9a,0xca,0xed,0xcf,0x54,0x59,0x71,0xd3,0x19,0x2,0xa4,0x1c,0x41,0xc6,0x96,0xd6,0xdd,0xaa,0x29,0xb7,0x6e,0x8,0x9e,0x23,0x5b,0x8d,0x63,0x45,0xfe,0x95,0xd2,0x91,0x44,0x3a,0xe6,0x31,0xd3,0x8c,0x14,0x9c,0x6c,0x63,0xeb,0xef,0x3f,0xac,0xcc,0x2e,0x5e,0x60,0x2f,0x5b,0xc,0xc4,0x59,0xdd,0x38,0x23,0xfa,0x6a,0x8e,0x74,0x73,0x9e,0x62,0xb1,0x27,0xb,0x4,0x2,0xc1,0xc5,0x0,0x51,0x0,0xa,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0xc7,0x8,0xd1,0x7b,0x80,0xd4,0x58,0xf2,0x50,0x17,0x3e,0x0,0xdc,0xb8,0xab,0x39,0x23,0x90,0x94,0x62,0x82,0xcd,0x59,0xce,0x0,0x4c,0xe4,0x13,0x5b,0x7b,0x3,0x40,0xac,0x28,0x34,0xa6,0x45,0x4c,0xea,0x34,0xd5,0x6a,0x38,0x67,0x79,0xd9,0xc8,0x44,0x95,0x52,0x1a,0x36,0x84,0xb2,0x9d,0xa1,0x5f,0xa1,0x69,0xda,0x94,0x3b,0xc8,0x64,0x1d,0x90,0x1a,0x8a,0x33,0x11,0x89,0x88,0x61,0x58,0x27,0x45,0x22,0x2b,0x9,0x33,0x59,0xa9,0x8d,0xc1,0xb0,0x5e,0x17,0x8e,0xc6,0x3b,0x7,0xa7,0x2d,0xac,0xe5,0xcc,0x42,0x63,0x1a,0x38,0x3b,0x40,0x6b,0xc3,0x8a,0x3b,0xdb,0x23,0xc6,0x88,0x83,0xb3,0xcf,0xb0,0x25,0xd8,0x59,0x74,0x40,0xd9,0x56,0xb6,0xd5,0xf6,0xab,0xc3,0x44,0x26,0xe,0xf0,0xce,0xa1,0xe9,0x3a,0x84,0xe0,0xb1,0xb3,0x77,0x12,0x2a,0xea,0x9,0x49,0xa,0x10,0x14,0x1,0x1f,0x7c,0xcf,0xdb,0xb7,0xaa,0xbc,0x6e,0xfd,0xe2,0x57,0x70,0xb8,0x5c,0xc1,0x7b,0x56,0xc,0x32,0x61,0x79,0x58,0xe6,0x76,0xbd,0x3a,0x4c,0xc7,0xcc,0x84,0xab,0xb3,0x7c,0x8c,0x4d,0xb7,0x60,0xcb,0xb1,0xf7,0x40,0xc3,0x56,0xeb,0x9c,0x19,0x98,0x4b,0x57,0x22,0x72,0x1e,0xa1,0x4e,0xc5,0x2d,0xd8,0x50,0xa9,0x91,0x52,0x89,0x83,0xca,0xd,0xbf,0xe9,0xb1,0x44,0xd0,0x66,0x25,0x63,0xb1,0x7,0x87,0x90,0x48,0xd6,0x30,0x92,0x76,0xb3,0xbc,0xbe,0x4c,0x7a,0xd5,0x8a,0xbd,0x5a,0xc,0x17,0x31,0x2a,0xf4,0xa8,0x94,0x88,0x54,0xe5,0x1d,0x69,0x6c,0x69,0xf1,0x62,0x1,0x9e,0x2b,0x0,0x8f,0x38,0x73,0x31,0x55,0xeb,0xd1,0x11,0x8f,0x9f,0x6f,0x9d,0xbc,0xde,0xb6,0x76,0xe3,0x38,0xdd,0x66,0x2e,0x3f,0xa9,0x89,0x67,0x9e,0xc9,0xb1,0x3f,0xa7,0xde,0x4d,0xbd,0xd7,0x38,0xce,0x47,0x26,0xc4,0x5,0x2,0x81,0xe0,0xa5,0xe,0x51,0x0,0xa,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0xc7,0x8,0x31,0x78,0x44,0xef,0x58,0xa1,0x87,0x51,0xc5,0x15,0xbc,0x47,0xc,0x1,0xa6,0x6d,0x27,0xea,0xac,0x5c,0x0,0xe2,0x9c,0x2d,0x16,0x59,0xdb,0xf7,0xc5,0x8e,0x1a,0x2,0xdb,0x74,0x63,0x52,0x8d,0x45,0x44,0x26,0xb9,0xc2,0xa8,0xb4,0x1a,0xfa,0x15,0x2f,0xeb,0x3d,0x86,0x7e,0x5,0xa5,0xd4,0xa8,0x18,0x8c,0x31,0xe5,0xdf,0xd,0x79,0x80,0x6c,0x89,0xd,0x21,0xed,0xc3,0xc1,0xda,0xbe,0xd8,0x94,0xb3,0xb2,0x90,0x14,0x5b,0x5c,0xad,0x1d,0xb0,0x5e,0x1e,0x94,0x1c,0xbd,0xbc,0x3d,0x22,0xb6,0xbf,0x82,0x80,0xb6,0x63,0xf2,0xac,0xed,0x16,0xd0,0x4a,0xb3,0x7d,0xd9,0xfb,0x62,0x8f,0xcd,0xa,0x3b,0x6d,0x1a,0x6e,0x41,0x56,0xa,0x67,0x9f,0x7d,0x12,0x76,0x60,0xc5,0xa2,0x1d,0x7a,0xb6,0x11,0x27,0xd2,0xcc,0x27,0x65,0xe4,0xdb,0x5e,0x77,0x3d,0xae,0xba,0xe2,0xf2,0x8d,0x39,0x7e,0xf6,0xec,0x39,0x7c,0xfe,0xae,0xaf,0x55,0xe4,0x97,0x2,0x81,0x55,0x77,0x39,0x97,0x30,0x67,0xff,0x29,0xad,0xb1,0x3c,0x38,0x7,0x0,0xe5,0xf8,0x9c,0x1d,0x12,0xe1,0xc7,0xeb,0x98,0xa6,0x2d,0x73,0xc4,0xf6,0x5e,0x8c,0xa4,0x1d,0xb2,0xa,0xf,0xa5,0xd4,0x83,0xb7,0x15,0xc6,0x42,0x8f,0x6c,0xf5,0xd,0x63,0xc1,0x47,0x29,0x12,0xa9,0x1f,0xc7,0x94,0xcb,0xaa,0x89,0xcd,0xbc,0x8f,0x6c,0xe1,0xad,0x15,0x7b,0x13,0xfe,0xab,0x22,0xfe,0x26,0x7a,0xb8,0xad,0x19,0x83,0xa3,0x4a,0xf0,0x3c,0x67,0xec,0x5,0xce,0x68,0x3a,0xff,0x73,0x1b,0xaa,0xbc,0x8a,0xe8,0x1b,0x6b,0x92,0x37,0x77,0x39,0x86,0x11,0x96,0x82,0x94,0x22,0xf4,0xdb,0x32,0xba,0xc9,0x3c,0xd0,0xf6,0x39,0x14,0x8,0x4,0x82,0x97,0x32,0x44,0x1,0x28,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x10,0x1c,0x23,0x50,0xb1,0x7e,0xa6,0xbf,0x41,0x50,0x5a,0xc1,0xc7,0x50,0x6c,0xb8,0x11,0x49,0x99,0x96,0x96,0xf5,0xde,0x25,0xd2,0xce,0x43,0x6b,0xd,0xd2,0xb9,0x34,0xc4,0x43,0x29,0xd,0xc4,0x80,0x91,0x5b,0x62,0xf2,0xb0,0x69,0xbb,0xd4,0xe2,0xdb,0x73,0xe1,0xc7,0xb0,0x46,0xf0,0xac,0xf4,0xb3,0x3,0x3f,0x66,0x9a,0x16,0x4a,0x1b,0x4,0xef,0x46,0x35,0xa0,0xb7,0x68,0xbb,0x9d,0x94,0xf9,0xc7,0xf6,0x5e,0xa5,0xc,0x86,0xbe,0xe7,0x46,0xde,0x64,0xd5,0x3d,0xdc,0x3f,0x5b,0x8a,0x2b,0x9c,0x1b,0x92,0x8a,0xcf,0x16,0x42,0x4f,0x79,0x57,0x14,0x72,0xcb,0xc3,0x7d,0x1c,0x9c,0x7d,0x86,0xd5,0x84,0xc1,0xa3,0x3,0xb0,0xd8,0xd9,0xe3,0x62,0x93,0x52,0x68,0xa2,0x1,0x68,0x18,0xd3,0x42,0x69,0xd,0x9d,0x6c,0xc3,0xdd,0x62,0x17,0xc3,0x6a,0x5,0x2c,0x58,0xc5,0xa7,0xb5,0x82,0xd2,0x1a,0x4d,0xd3,0xe2,0xef,0xbd,0xef,0x26,0x28,0xb5,0x49,0xf0,0xdc,0x79,0xf7,0xfd,0x38,0xb7,0xb2,0xb0,0x36,0x1f,0x67,0x83,0xa1,0x67,0x4b,0xaf,0x69,0x1a,0xac,0xe,0xf6,0xd3,0x1c,0x28,0xac,0x96,0x7,0xe8,0x57,0x87,0xbc,0x6d,0x52,0xd0,0x4d,0xc3,0xd9,0x80,0x4a,0x41,0x25,0xbb,0x76,0x26,0x57,0xb5,0x6e,0x4a,0x1,0x9,0xe7,0xfd,0xe9,0xd,0x95,0x59,0x69,0xd1,0x55,0x2a,0x71,0x57,0x54,0x65,0x6,0xd6,0xa3,0x8c,0x85,0xa8,0xab,0x73,0xf9,0xb6,0x61,0x9e,0xcf,0xc7,0x44,0x58,0x9c,0x14,0x6e,0xfc,0x70,0x19,0x7c,0x47,0xad,0x53,0x33,0x70,0x17,0x22,0x7,0x6b,0x7b,0x2e,0x36,0x7f,0xdf,0x96,0x3f,0xb8,0x6d,0x8c,0xb1,0x3e,0xa,0x4c,0xe3,0xfd,0x62,0x25,0xf9,0x8b,0x93,0xa7,0x37,0x34,0x89,0x71,0xc6,0x10,0x8a,0x1,0x58,0x20,0x10,0x5c,0x2c,0x10,0x2,0x50,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x38,0x4e,0xa0,0x2a,0x87,0xad,0xa8,0xc7,0x12,0x11,0xa6,0x98,0xd8,0x53,0x44,0x8,0x59,0xb1,0x15,0x63,0x21,0xa2,0xea,0xdc,0xb8,0x5c,0x8c,0x81,0x18,0x8b,0x2a,0x4d,0xa5,0xf5,0x43,0x8,0x40,0x52,0xf4,0x5,0xef,0x4b,0x9,0x48,0x48,0xb9,0x79,0x79,0x99,0x10,0x2,0x93,0x80,0x4a,0xa7,0xed,0x30,0x51,0x65,0x7,0xb6,0xec,0x6a,0xad,0xe1,0xac,0x85,0x69,0xb8,0x45,0x77,0xd5,0xaf,0x38,0x7f,0xb0,0xef,0x13,0x41,0xa9,0x11,0xa3,0x2f,0x64,0x64,0x8c,0x26,0x3d,0xc6,0x74,0x4f,0xf0,0x1,0xab,0xe5,0x1,0xec,0xd0,0x43,0x37,0x2d,0xbc,0xb5,0x29,0xbb,0xd0,0xa3,0xed,0x16,0xa9,0xd1,0x37,0x42,0x29,0x26,0xe9,0x72,0x1,0x48,0x4c,0xd6,0xe5,0x18,0x3,0xec,0xb0,0x46,0xf0,0x1e,0x4d,0xdb,0x61,0x75,0x78,0x80,0xb6,0xeb,0xd0,0xb4,0xb,0xbc,0xf9,0xd5,0xd7,0xe2,0xba,0x6b,0xae,0xde,0x98,0xde,0xc3,0xe5,0xa,0xb7,0xdc,0x71,0x6f,0x2a,0xfc,0x60,0x22,0xd5,0x27,0xe2,0x53,0x69,0x83,0xa6,0xe9,0x30,0x98,0x15,0xdc,0x21,0x67,0x23,0x86,0xc0,0x85,0x2a,0x43,0xbf,0xc6,0x62,0x77,0xf,0x31,0x4,0xe8,0xa6,0x4d,0x73,0xe1,0x4b,0xa9,0x47,0x8c,0x59,0x21,0xc8,0xf6,0xe8,0x9c,0x4d,0x88,0x80,0x42,0x62,0xe6,0x2c,0xc1,0x9c,0x93,0x58,0x32,0xf6,0x42,0x9c,0x90,0x57,0x54,0xe7,0xf2,0xa5,0xe6,0xe0,0x8d,0xa6,0x5d,0x54,0x6a,0x3f,0x60,0xd2,0xb0,0x1b,0x67,0xe4,0xdf,0xe4,0xf4,0x7a,0x81,0x2d,0xbc,0x18,0xf7,0x5c,0x21,0x13,0x7a,0xdb,0x68,0xb7,0x8d,0xaa,0x90,0xd9,0x53,0x73,0xab,0xf2,0xd1,0x63,0xdb,0xd6,0x81,0x3c,0xd9,0x53,0x9c,0x3e,0x37,0xee,0xb1,0x98,0x83,0x9f,0xc3,0x56,0x5,0x2,0x81,0xe0,0xa5,0x9,0xb1,0x0,0xb,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0xc7,0xec,0x2b,0xfe,0xb4,0xb5,0x75,0x6c,0x2a,0xcd,0x7f,0x87,0x10,0xc0,0xd1,0x6f,0x94,0x94,0x64,0xa3,0x95,0xb5,0x10,0x79,0x49,0x89,0xe6,0xbd,0x2b,0x8a,0x41,0x26,0xba,0xd8,0x9e,0x6b,0x87,0x3e,0x91,0x7d,0x4c,0xfa,0xb9,0x64,0x13,0x1e,0xfa,0x35,0x96,0x7,0x67,0xb1,0x5e,0xee,0xc3,0x3b,0xb,0xef,0x1d,0x96,0x7,0x67,0x31,0xa4,0x12,0x8f,0x6c,0x3b,0x76,0xd6,0x72,0x7e,0x1e,0x1,0xfd,0x6a,0x59,0x59,0x84,0x59,0x91,0xd8,0xb4,0x1d,0x86,0x7e,0x89,0x18,0x2,0xda,0x6e,0xc1,0xa,0x40,0xef,0xb0,0x5e,0x1d,0xa6,0x12,0x91,0x35,0x37,0xb,0x3b,0xb,0xef,0x1c,0xef,0xcb,0x59,0xf4,0xab,0x65,0xc9,0xd8,0x53,0x4a,0x25,0x92,0x4c,0xa1,0x69,0x3a,0x34,0x6d,0x8b,0x6e,0xb1,0xb,0x4a,0xb6,0xe1,0x18,0x23,0xce,0x3d,0xfb,0x14,0x7c,0xf0,0xac,0x66,0x74,0xb6,0x90,0x40,0x7f,0xef,0xbd,0x37,0x41,0x6b,0xbd,0x31,0xbb,0x5f,0xbe,0xe7,0x1,0x3c,0x75,0xe6,0xa0,0x94,0xa7,0x78,0xcf,0x8d,0xbc,0xa6,0x69,0xd1,0x34,0x2d,0x2b,0xff,0x12,0x91,0x1a,0x92,0x82,0xb2,0xe9,0x16,0x20,0x2,0x9a,0xb6,0x43,0xdb,0xed,0xc0,0x34,0x6d,0x69,0xf4,0xcd,0xf3,0x4f,0x8a,0xca,0xbc,0x73,0xf3,0x32,0x46,0x35,0x5a,0x21,0x73,0x43,0xc9,0xfe,0xcb,0x59,0x83,0x21,0x59,0xbd,0xc7,0xe5,0x90,0xc8,0xc5,0xac,0x16,0xc,0x25,0xaf,0x2f,0x2f,0x43,0x95,0xc5,0x17,0x95,0x95,0x77,0xa2,0x4,0xac,0x7e,0xae,0xc5,0x83,0xcf,0x89,0xfc,0x8b,0x73,0xe3,0xec,0xec,0x4f,0xfd,0xfc,0x5c,0x7d,0x57,0x5b,0x9d,0x8b,0xef,0x76,0x46,0xfa,0x6d,0x76,0x71,0x4c,0x9e,0x3e,0xa,0x34,0x5b,0xaa,0x26,0xf8,0xe2,0xec,0xf9,0x58,0x3d,0x43,0x5b,0xf2,0x8,0xf3,0x12,0x21,0x65,0x40,0xa,0x4,0x2,0xc1,0x4b,0x1d,0xa2,0x0,0x14,0x8,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x8e,0x11,0x72,0x96,0x5b,0x6e,0x86,0x5,0x50,0x14,0x66,0xb9,0x90,0xa2,0x28,0x9a,0x92,0x5a,0x8f,0x49,0xa5,0x88,0x0,0x56,0x1,0x66,0xab,0xa3,0x52,0x9a,0x73,0xf6,0x22,0x10,0x22,0x93,0x59,0x3e,0x11,0x6b,0x5c,0xe8,0xc1,0x99,0x7a,0xce,0x71,0xb,0xf0,0x30,0xf4,0xe8,0xd7,0x4b,0xc4,0xc8,0x44,0xa0,0xb5,0x3,0xda,0x76,0x1,0x52,0xa9,0xa4,0x82,0x14,0xb4,0x77,0xa9,0xd,0x58,0x61,0x9d,0x2c,0xb4,0x76,0x18,0x92,0x4a,0x51,0xa1,0x5f,0x1d,0xc2,0xe,0x3d,0x9c,0xb3,0x68,0xbb,0x5,0x56,0xcb,0x3,0x74,0x8b,0x5d,0x44,0x44,0x74,0xed,0x2,0xde,0xbb,0x62,0xa1,0xcd,0xc7,0x63,0x1a,0xce,0x30,0x24,0xa5,0x58,0x65,0x17,0x23,0xec,0xd0,0xa3,0x5d,0x2c,0x10,0x42,0xc0,0xee,0x89,0x93,0x9c,0xcd,0x47,0xa,0x11,0x11,0xda,0x34,0x68,0x8d,0xc1,0xb0,0x5e,0x41,0x27,0x75,0x62,0xbf,0x3e,0xe4,0x76,0x5e,0xad,0x71,0xe3,0xab,0xae,0xc1,0x2b,0x5f,0x71,0xed,0xc6,0xdc,0xae,0xd7,0x3d,0x6e,0xbe,0xf5,0x2e,0xb6,0x24,0x83,0x12,0x59,0xc7,0x99,0x81,0xb1,0x52,0x3c,0x5a,0x3b,0x14,0x82,0x31,0x4,0xf,0x6f,0x2d,0xba,0xdd,0x3d,0xce,0x25,0x34,0x1e,0x1a,0x1a,0x4d,0xb7,0x3,0x20,0x72,0xf9,0x4a,0x52,0x46,0x2,0x21,0xf1,0x61,0x1,0x5a,0x1b,0x38,0xc7,0x45,0x20,0xd1,0xa3,0xb0,0x70,0x31,0x59,0xb8,0x43,0xca,0x50,0xa4,0x54,0xf8,0x52,0x67,0xf3,0xd5,0xb6,0xe0,0xdc,0xe,0x3c,0x3f,0x47,0x80,0x69,0x35,0xc6,0x84,0x2,0x8b,0xd3,0xe2,0x98,0xe9,0xea,0x47,0x95,0x72,0xa4,0xc7,0xeb,0xb2,0x92,0x9,0x71,0x56,0xef,0x11,0x18,0x3,0x7,0xb1,0x29,0xea,0xa3,0x2d,0xab,0x10,0x36,0xcb,0x38,0xb6,0x2c,0x72,0x9e,0xc5,0xab,0x65,0xab,0xd2,0x93,0x4a,0x7,0x18,0xe7,0x45,0x21,0xa8,0x9b,0x8b,0xb7,0xa4,0x1,0x46,0xc9,0x0,0x14,0x8,0x4,0x17,0xf,0x84,0x0,0x14,0x8,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x8e,0x11,0xd8,0x22,0x9b,0x2c,0x9f,0xa4,0x30,0x52,0x3d,0xa1,0xa8,0x96,0x72,0xdb,0x6d,0xc9,0x4f,0x4b,0x6a,0x34,0x2e,0xe6,0x0,0x7c,0xe0,0x2c,0xc0,0x98,0xac,0xbf,0xd9,0x92,0x4a,0x69,0x99,0xc0,0x1b,0x81,0x77,0xae,0x90,0x70,0x1,0x91,0x1b,0x66,0x63,0xc4,0xe1,0xb9,0x33,0x50,0xda,0x60,0xbd,0x3c,0x80,0xd2,0x6,0xbb,0x7b,0x27,0x31,0xf4,0x6b,0x34,0x4d,0x7,0xd3,0xb6,0xb0,0xfd,0x1a,0x6d,0xb7,0x3,0xef,0x5d,0x2a,0xe7,0x30,0xa5,0x9d,0x97,0xcb,0x40,0xb8,0xfc,0x62,0x79,0x70,0xe,0x3b,0x7b,0x27,0xd1,0x76,0x8b,0xa2,0xc,0x4,0x90,0xd6,0x5f,0xc0,0x7b,0xcf,0xeb,0xd9,0xa1,0xb0,0x54,0x43,0xbf,0x86,0xc9,0x8d,0xc2,0x20,0x84,0xe0,0x52,0xa3,0x31,0x93,0x86,0x26,0xb6,0xd0,0xba,0x81,0x1d,0xd6,0xdc,0xdc,0xeb,0xe,0x11,0xad,0x83,0xf7,0xe,0x6d,0xbb,0xc0,0xd0,0xaf,0xf1,0x73,0x1f,0x78,0x37,0xda,0xa6,0xd9,0x98,0xdb,0xaf,0x3e,0xf0,0x20,0xbe,0xf7,0xf8,0x53,0x20,0xa5,0x13,0x1,0xe8,0xa,0x61,0x45,0xa9,0xcc,0x23,0x84,0x80,0xa6,0x6d,0xd1,0xaf,0x8,0x4d,0xd3,0xc1,0xe,0x6b,0x34,0x5d,0x87,0xa6,0x69,0x61,0xda,0x2e,0xb5,0xfa,0x12,0xbc,0xb7,0x25,0x47,0x31,0xcf,0xfd,0x48,0xdc,0x29,0x38,0xc7,0xa,0x43,0x2e,0x5b,0x41,0x55,0xc2,0x82,0xa4,0x6c,0x54,0xf0,0x8,0xa5,0xb8,0xa4,0x90,0x81,0xe5,0x15,0xa7,0x9,0x79,0xc7,0x2e,0x62,0x6e,0x9,0xde,0x34,0xd5,0xce,0x48,0x3d,0x9a,0x3f,0x1e,0x2b,0x66,0x6e,0x8b,0x7d,0x77,0x6e,0xa6,0xdd,0xe6,0xa5,0x25,0x1c,0x5d,0xc6,0x11,0x67,0xbf,0xc6,0x79,0xfb,0x70,0xe5,0xe,0xc6,0xac,0xc8,0x64,0xcb,0xe6,0xe6,0xcb,0x4c,0x77,0x19,0xb1,0xd9,0xa,0x5c,0x6d,0x6d,0x42,0x4c,0xc6,0x19,0x1b,0x39,0x5b,0x36,0x67,0x10,0xa,0x4,0x2,0xc1,0x45,0x0,0x21,0x0,0x5,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x82,0x63,0x84,0xe0,0x6,0xd4,0xc4,0x6,0x25,0x75,0x58,0xc,0x28,0x6a,0xb7,0x10,0x2,0xab,0xf2,0xbc,0x4f,0x2a,0xbf,0xc0,0xf4,0x60,0x8,0x88,0x3a,0x65,0xcd,0x5,0x56,0xe9,0xe5,0xcc,0x37,0x22,0xc0,0xd9,0x81,0xf3,0xfe,0x12,0xd1,0xc7,0xea,0xc0,0x88,0x18,0x55,0x22,0xaa,0xd8,0x52,0xac,0x94,0xc6,0xd0,0xaf,0xe1,0x9d,0x85,0x1,0xd0,0xaf,0x97,0x0,0x8,0xea,0x84,0x46,0x58,0x33,0x69,0xc7,0xa,0xbf,0x1d,0xf4,0xeb,0x25,0x94,0xd2,0x70,0xb6,0x7,0x29,0xd,0x20,0x62,0xe8,0x57,0x30,0x89,0x80,0xcb,0x6a,0x42,0xd3,0xb4,0xd0,0xc6,0x80,0x94,0x42,0xdb,0x2e,0xb8,0x0,0x84,0x14,0xfa,0xaa,0x8,0x63,0xe8,0x57,0x5c,0x5c,0xa2,0xd,0x8c,0x31,0xb0,0xfd,0x1a,0xba,0x69,0x31,0xac,0x97,0xd0,0xa6,0x1,0x51,0xc3,0x99,0x7c,0xa6,0x41,0x30,0x6,0x21,0x4,0xec,0xec,0x9e,0xc0,0xf2,0xe0,0x5c,0x51,0xdc,0xbd,0xe5,0xd,0xaf,0xc2,0x1b,0x5e,0xfb,0xaa,0x8d,0x79,0xed,0x87,0x1,0xb7,0x7c,0xfe,0x2b,0x29,0x37,0x31,0xc0,0xfb,0x0,0x3b,0xc,0x0,0x78,0x3e,0x87,0x7e,0x95,0xca,0x3e,0x1a,0xac,0xe,0xd7,0x20,0xa5,0xd2,0x71,0x70,0x11,0x8a,0x4e,0x7f,0x94,0x52,0xd0,0xda,0x94,0xbc,0xc4,0x4c,0x54,0x12,0xb1,0x92,0x50,0x69,0x5d,0xec,0xcb,0x9c,0x7d,0x18,0x4a,0x3e,0x5f,0x6e,0xe7,0x65,0x95,0xe7,0xd4,0x7a,0x5a,0xb2,0xfe,0x12,0xe6,0x24,0x19,0xbb,0x88,0xe7,0xcf,0xcf,0x49,0xb0,0xac,0xe2,0x43,0x62,0xdc,0xa8,0x7a,0x78,0x46,0xf0,0x4d,0x98,0xb6,0xb8,0x29,0xb9,0x9b,0x33,0x71,0x5b,0x8,0x3c,0xaa,0x87,0x10,0xa7,0xb5,0x20,0x1b,0xe3,0x3f,0xe2,0x7c,0x8f,0xe7,0xfd,0x7d,0xdc,0xd3,0xa8,0x72,0xdc,0x36,0xa8,0x3a,0x40,0x71,0x7e,0xc,0x47,0x30,0x8f,0xc9,0xa6,0xfc,0xc2,0xf3,0x10,0x5,0x2,0x81,0xe0,0x47,0x3,0x21,0x0,0x5,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x82,0xe3,0x84,0x4a,0xb1,0xc4,0x44,0xdd,0x68,0xf9,0xf4,0xde,0x57,0xf9,0x6f,0x54,0x2c,0xb1,0x11,0x11,0x14,0x9,0x94,0xa,0x36,0x72,0xf6,0x9d,0x4b,0xea,0x3c,0x24,0x42,0x50,0x9b,0xb6,0x10,0x29,0x99,0x9c,0x62,0x62,0x8d,0x46,0xf2,0x89,0x8,0xda,0x34,0x30,0xc1,0x63,0x7d,0xb8,0x5f,0x4a,0x39,0x9a,0x6e,0x81,0x33,0x4f,0x3d,0x8e,0x76,0xb1,0xe0,0x32,0x8e,0xb6,0xc5,0xb0,0x5e,0x15,0x52,0xcb,0xe,0x3,0x94,0xe6,0x66,0xdb,0xac,0x8c,0x33,0xa6,0x1,0x40,0x5c,0x22,0x2,0x30,0x1,0x8,0x2e,0xc2,0xb0,0xb6,0x2f,0x4a,0x41,0x80,0x2d,0xb1,0xc1,0xb3,0xd5,0xd9,0xe,0xac,0x2,0xd4,0x4d,0xc3,0x19,0x78,0x4a,0xc3,0x7b,0x56,0x2,0xea,0x54,0x78,0xd2,0x2d,0x76,0xd9,0x6a,0x6c,0x7,0xec,0xec,0x9d,0x4c,0x6a,0x46,0x8f,0xf,0xff,0xcc,0x7b,0xb1,0x58,0x74,0x1b,0xd3,0xfa,0xcd,0x6f,0x7f,0x7,0x5f,0xfb,0xf6,0xf7,0xd8,0xd6,0x6b,0x6d,0xb2,0x22,0x23,0x65,0x19,0xba,0xa2,0x9e,0xec,0xfb,0x25,0x2b,0x15,0xd3,0x9c,0x9b,0xa6,0x65,0x45,0xa2,0x52,0x49,0xc1,0x68,0xa0,0xd,0xa5,0x39,0xa6,0xca,0x2d,0x4b,0xa5,0x5,0x39,0x8f,0x31,0xbf,0x16,0x21,0xcd,0x35,0xb2,0x65,0xbb,0x90,0xb2,0x55,0x6a,0x5d,0x4d,0xee,0x4d,0x32,0xf8,0xaa,0xf2,0x8a,0x89,0x3d,0x17,0x98,0x12,0x7c,0x1b,0x27,0xd2,0xb8,0xce,0x7c,0x5d,0xa2,0x4d,0x75,0xdc,0x4c,0xc5,0x57,0x67,0xf3,0x51,0xbd,0xc9,0x6d,0x7c,0x59,0x3c,0x7f,0x76,0xdf,0x9c,0xd4,0xa3,0x49,0x21,0xc7,0x85,0xd,0xbf,0x35,0xf5,0x77,0xd4,0xf3,0x5b,0x37,0x35,0x77,0x3,0x4f,0x76,0xc3,0xf,0x2a,0x92,0x58,0x7d,0x81,0x40,0x70,0x71,0x40,0x8,0x40,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0xe0,0x18,0x81,0xb4,0x29,0xb6,0x50,0x2,0x21,0x20,0x8c,0x99,0x6e,0x8a,0x2d,0xa5,0x94,0x88,0x1b,0x6e,0xfe,0x35,0x50,0xc4,0xd,0xb6,0xde,0xdb,0x49,0xce,0x9f,0x52,0xa,0xd1,0xfb,0x44,0xd2,0xb1,0x6d,0xd8,0x7,0x5f,0xf2,0xe7,0x78,0x1d,0x7,0x67,0x43,0x21,0x13,0x8d,0x69,0xd1,0xed,0xec,0xc2,0xb9,0x1,0x27,0x2f,0xbd,0x2,0xfb,0x67,0x9e,0x66,0x85,0xdd,0x6a,0xc9,0x59,0x83,0x89,0xf0,0xeb,0xfb,0x55,0xb2,0xea,0x12,0x6c,0xcf,0x85,0x1e,0xd6,0x6,0x2c,0x76,0xf6,0x40,0x44,0x68,0xdb,0xe,0xa6,0x69,0x59,0x29,0xb8,0xe0,0x36,0x5f,0xce,0xf1,0x23,0xb4,0xdd,0xe,0x13,0x8d,0x1a,0x70,0x89,0x60,0xf4,0xde,0x95,0xcc,0xbd,0x21,0x5b,0x8c,0x9d,0x43,0xd3,0xb4,0x0,0x2a,0x6b,0x34,0xa1,0x14,0x8a,0x50,0x22,0x2b,0x73,0x39,0xc9,0x75,0x57,0x5f,0x8a,0xb7,0xbf,0xf5,0xcd,0x1b,0x73,0xea,0x9c,0xc3,0xff,0xfb,0xa9,0xcf,0xc2,0x59,0xb,0x6d,0x4c,0x99,0x83,0x52,0xba,0xe1,0x43,0x69,0xcf,0x75,0x76,0x40,0x48,0x63,0x71,0x8e,0x5b,0x89,0x4d,0xd3,0x40,0x29,0xd,0xdd,0x34,0xd0,0xda,0xf0,0xdc,0x35,0x4d,0x51,0x90,0xb1,0xda,0x92,0x8a,0xca,0x2f,0x2b,0x2b,0xb3,0xa,0x10,0x93,0x42,0xe,0x2a,0xa5,0x20,0xa4,0x74,0x79,0x7d,0xca,0x31,0x6,0x3f,0xb1,0x7a,0xe7,0x65,0xd3,0x81,0x97,0x9c,0xc0,0x54,0x1,0x9c,0x36,0xa,0x4c,0xb2,0xf9,0x0,0x1c,0x99,0xf5,0x17,0x2b,0xed,0xe0,0xbc,0xc0,0xa3,0x5e,0x6c,0xcb,0xcf,0xb4,0xa5,0xb0,0xe3,0x7c,0xea,0xbe,0xcd,0x2d,0x32,0xb,0xb7,0x41,0xe7,0xd5,0xe4,0xe4,0xe4,0xd8,0xe2,0x91,0x22,0xc7,0xc9,0xb2,0xdb,0xca,0x87,0x8f,0x38,0x88,0x58,0x2d,0x1c,0x11,0x8b,0x2d,0x5d,0x20,0x10,0x8,0x5e,0xea,0x10,0x2,0x50,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x38,0x46,0x60,0xcb,0x28,0x55,0x84,0x8,0xd8,0xd5,0xe9,0x53,0x6,0x20,0xa1,0xb2,0xf7,0x2a,0x2e,0xe4,0x50,0x4,0x67,0x7b,0x28,0x6d,0x8a,0xb2,0x2f,0x0,0x9c,0x2b,0xa7,0x14,0x42,0xe0,0x72,0x90,0xa1,0x5f,0x41,0x6b,0x93,0x94,0x79,0x55,0x99,0x44,0x52,0xb7,0xb5,0xdd,0xe,0x56,0x87,0xfb,0x68,0xda,0xe,0x27,0x4e,0x5d,0x8a,0xe5,0xe1,0x3e,0x4e,0x9d,0xbe,0x1c,0xc3,0xb0,0x86,0x1d,0xfa,0x64,0xdb,0xa5,0x52,0xa2,0x31,0xf4,0x6b,0x10,0x0,0x65,0xc,0x16,0x8b,0x5d,0x6e,0xe2,0xf5,0xe,0x3b,0x7b,0x27,0x71,0x78,0xee,0x59,0x34,0xdd,0x2,0xdd,0xce,0x5e,0xb2,0x17,0x8f,0xa5,0x24,0xce,0xd,0x4c,0x54,0x3a,0x57,0xb2,0xf7,0x16,0x49,0xd1,0x68,0x92,0xb5,0x38,0x5b,0x69,0xd1,0x62,0xb4,0x6a,0xa6,0x29,0x71,0xce,0x32,0x11,0x97,0x8,0x40,0xad,0x35,0x9c,0x76,0xd8,0xdb,0x3b,0x81,0x4f,0x7e,0xfa,0x33,0x95,0xb2,0x8e,0x49,0xb6,0xfd,0x83,0x15,0xee,0x7d,0xe8,0x3b,0x88,0x91,0x8b,0x53,0xbc,0xb5,0x85,0x48,0x8c,0x20,0xb6,0x34,0x27,0x5b,0x73,0xc,0x11,0xce,0x32,0xf1,0xb7,0x77,0xf2,0x34,0x94,0xd2,0xa5,0x6d,0x39,0x93,0x77,0x5a,0x1b,0x9e,0xfb,0xc0,0xe4,0x51,0x3e,0x2e,0x9d,0x6c,0xc9,0xb9,0xc5,0xb7,0xb6,0x98,0x32,0x19,0x58,0x9,0xf8,0x22,0x10,0xbc,0x9b,0x90,0x7c,0x99,0x48,0xcc,0xb6,0xdc,0x91,0xfc,0x1b,0x4f,0x84,0x8,0x4c,0xc9,0x32,0xa0,0x8a,0xc4,0xa3,0x91,0xa5,0xab,0xda,0x77,0xf3,0xff,0x69,0x16,0xed,0x37,0x9e,0x74,0x47,0x57,0x83,0xd4,0x8a,0xbd,0xa9,0x6a,0xf,0x18,0xc9,0xbc,0xed,0xa6,0xdf,0x51,0xe9,0x77,0x9e,0x16,0x90,0x9c,0xc3,0x97,0x5f,0x5f,0xc2,0xd4,0x96,0xbc,0xd9,0xe9,0x71,0x84,0xa2,0x2f,0xcf,0xc7,0xf3,0xcc,0xf4,0x93,0x8,0x40,0x81,0x40,0x70,0x91,0x40,0x8,0x40,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0xe0,0x18,0x21,0x7a,0xcb,0xc4,0x49,0x8,0x89,0x74,0x2,0x72,0xc9,0x2c,0x45,0x26,0x5c,0x94,0xe6,0xcb,0x80,0xac,0x88,0xcb,0xcb,0xe6,0x26,0x5e,0xa5,0xd9,0x32,0xab,0x52,0x26,0x1f,0x11,0x25,0xbb,0xaf,0x41,0xc,0xb1,0x34,0x3,0xf3,0xfa,0x94,0x5a,0x79,0x35,0x67,0xfe,0x19,0x53,0x9a,0x85,0x9b,0xa6,0x83,0xa7,0x1,0x9d,0xda,0xc1,0xee,0x89,0x53,0x18,0xfa,0x75,0x21,0xbb,0xba,0xc5,0x6e,0xc9,0x14,0xc,0xde,0xc3,0x79,0x7,0x10,0xc1,0x98,0x6,0xb6,0x67,0xf2,0xcc,0xd9,0x1,0xad,0xd2,0xd0,0x8d,0x49,0xea,0x41,0x24,0x65,0xa2,0x6,0x22,0xb8,0x1,0x38,0x36,0x18,0xbc,0x87,0x69,0xc,0x82,0x6f,0x81,0x18,0xa1,0x8d,0x81,0x4a,0x99,0x78,0x4,0xc5,0x5,0x24,0x6d,0x97,0xac,0xb5,0x99,0xd4,0xf4,0x29,0xaf,0x50,0x81,0xdd,0xb5,0x1e,0xf,0x3f,0xf6,0xc,0x1e,0xf9,0xcb,0xbf,0x85,0x77,0x16,0xde,0x31,0x39,0xa7,0x8d,0x29,0x59,0x88,0xa6,0x6d,0x8b,0x5a,0xd0,0x7,0x8f,0x18,0x1c,0x2b,0xfc,0xda,0x16,0xfd,0xea,0x10,0xce,0xe,0xf0,0xde,0xc2,0xda,0x1,0x4a,0x6b,0x74,0x8b,0x5d,0x20,0xb5,0xe,0x13,0x11,0xbc,0xb3,0x68,0xdb,0x5,0x0,0x14,0x95,0x20,0x0,0x90,0xa2,0xf4,0xbc,0x9b,0x91,0x76,0x6a,0x9c,0xff,0x3c,0xdf,0x55,0x33,0x2d,0x17,0x91,0x54,0xc5,0x2e,0xe0,0xd7,0x92,0x1f,0xc8,0x27,0x44,0xfa,0x9b,0x8e,0x2e,0xe9,0x28,0xdc,0x68,0xdc,0x4c,0xd0,0xab,0xd2,0x24,0x67,0x89,0x79,0x79,0x4,0xd3,0xe5,0x6b,0x64,0x1a,0x6f,0x7b,0xf1,0xc6,0x85,0x42,0x3,0xe7,0xc6,0xdd,0x2d,0x2c,0x23,0x1d,0x51,0x23,0xbc,0x6d,0xf3,0x9b,0x3,0x3b,0xe2,0x9,0x4c,0xf6,0x4f,0xb3,0xc7,0x2a,0x83,0xbd,0xbc,0xd9,0x8,0x4,0x82,0x8b,0xa,0x42,0x0,0xa,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0xc7,0x9,0xc4,0xe4,0x56,0x46,0x2e,0x90,0x88,0x49,0xe1,0x45,0x59,0x39,0x36,0xb3,0x97,0xea,0x54,0x6,0x2,0x44,0x84,0x18,0x2a,0x3b,0x29,0x0,0x50,0x51,0xef,0x5,0x30,0x31,0xe6,0x3,0xab,0xcf,0x28,0x46,0x84,0xb4,0x1d,0x52,0xdc,0x14,0x4c,0x11,0x30,0x4d,0xca,0xb4,0x8b,0xbb,0x38,0x3c,0xf7,0x2c,0x94,0x36,0x58,0xec,0xec,0xc1,0x7b,0x87,0xc5,0xce,0x1e,0x62,0xc,0x68,0xda,0x8e,0xc9,0xbc,0x6,0xf0,0xce,0xa1,0x5d,0xec,0x20,0x78,0x8f,0xc5,0xce,0x2e,0xec,0x30,0xa0,0x69,0x17,0xd0,0x49,0x6d,0xc8,0x96,0x63,0xd,0xa5,0x46,0xab,0x72,0x2e,0xc8,0x68,0xbb,0x45,0x6a,0x13,0x76,0x85,0xd4,0xd3,0xa9,0x44,0x84,0x89,0x3e,0x56,0xe0,0x65,0x15,0xa2,0x52,0xac,0xe,0xd4,0xc6,0x20,0x10,0x93,0x99,0x4d,0xdb,0xb1,0xf2,0x31,0x78,0x70,0x36,0x1f,0xab,0x28,0xb9,0xa5,0x57,0xa3,0x69,0x17,0x3c,0x3f,0x81,0xd9,0x32,0xa5,0x35,0x7c,0x6a,0x40,0x5e,0x2f,0xf,0xe0,0x83,0x4f,0xa,0x46,0xcf,0xdb,0x89,0x11,0x76,0x58,0xa3,0xdb,0xd9,0x2b,0xb6,0xdf,0xb6,0xdb,0x41,0x96,0xd7,0x85,0x30,0x16,0xb0,0x20,0x91,0x76,0x39,0xd7,0x4f,0x55,0xaf,0x5,0x2b,0xf9,0x30,0x16,0x78,0x64,0xb5,0x5b,0x8c,0x88,0xe9,0xe7,0x4c,0xde,0xd6,0x64,0x5f,0x26,0x6d,0xcb,0xf2,0x45,0xa,0x1a,0xa7,0xee,0xd8,0x78,0xfe,0xd2,0x8d,0xcd,0xc7,0xa7,0xad,0xbf,0x9b,0x34,0x18,0xd3,0x66,0xe3,0x73,0xf3,0xaa,0xdf,0x5a,0xc6,0x38,0xcb,0xe0,0x2b,0x8b,0x1f,0x41,0xe8,0x6d,0xb0,0x8d,0xb9,0xc9,0x7a,0xcb,0xbf,0x83,0x58,0x8f,0x86,0xa6,0xdb,0x7a,0x8e,0xdc,0x1d,0x6d,0x69,0xb,0x8e,0xe9,0x75,0x8a,0x78,0x7e,0xdb,0x12,0x8,0x4,0x82,0xff,0xbf,0x21,0x4,0xa0,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x70,0x8c,0x10,0x43,0x9c,0x74,0x3b,0xd4,0x36,0xd2,0x98,0xac,0xbf,0x99,0x80,0xa1,0x62,0x15,0xe6,0x2c,0x33,0x6d,0x1a,0x56,0xfe,0xa5,0xbc,0xbf,0xac,0xf1,0xe2,0x72,0x8e,0x4c,0x5c,0x5,0x28,0x62,0x25,0x1a,0x11,0x8d,0x8d,0xb5,0xa8,0x32,0xe7,0x92,0xda,0x50,0x29,0x5,0x67,0x2d,0x4e,0x9e,0xbe,0x9c,0x55,0x75,0x69,0x1f,0x4a,0x29,0xd8,0x21,0x65,0xe5,0x81,0x55,0x7d,0xd4,0x28,0x10,0x80,0xa6,0x6d,0xe1,0xec,0x0,0xd3,0xb4,0x4c,0x8,0x3a,0x9b,0x8e,0x8c,0xf3,0xb,0x5d,0xb0,0x89,0xfc,0x4a,0xd,0xba,0xd1,0x1,0x4a,0x81,0x14,0x95,0xcc,0xc0,0x6c,0xbb,0xcd,0x6a,0xb8,0x4c,0xf8,0x31,0x69,0x18,0x1,0xc5,0x4,0x5e,0x8c,0x11,0xc1,0x73,0x23,0x32,0xcf,0x85,0x2,0x10,0x4a,0x36,0x60,0x2e,0x22,0x21,0xa5,0x78,0xac,0x9e,0xed,0xbb,0x6e,0xb0,0x25,0x47,0x71,0xe8,0xd7,0xc5,0xf2,0x1b,0x83,0x87,0xed,0xd7,0x68,0xda,0x16,0x0,0x8f,0x7,0x60,0xe2,0x12,0x40,0x6a,0x57,0x66,0x92,0x8f,0x9b,0x80,0x63,0x19,0x7,0x67,0xf9,0xf1,0x71,0x66,0x6b,0x73,0x29,0xf6,0xa8,0xa,0x3f,0x26,0x44,0x5f,0x22,0xc0,0xea,0x2,0x10,0xd4,0xaf,0x79,0x21,0xff,0xea,0xe5,0xb1,0xb5,0x74,0xa3,0x76,0x5,0xd7,0xa,0xb7,0x6c,0xc3,0xa5,0xea,0x91,0x4d,0x45,0xdf,0x36,0x85,0xdf,0x11,0xea,0x3d,0x9a,0xfd,0x3e,0xc7,0x73,0xd9,0xdc,0x64,0xd9,0xf3,0x33,0x70,0xb4,0x75,0x27,0xdb,0x76,0x3e,0x27,0xfa,0xe6,0x16,0xe4,0x2d,0xc3,0x95,0x6,0x60,0x81,0x40,0x70,0x11,0x41,0x8,0x40,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0xe0,0x98,0x81,0x33,0xf3,0x32,0x9f,0x54,0x17,0x3f,0x64,0x53,0x26,0x4a,0x19,0x48,0xb6,0xfd,0x2,0x48,0xb6,0xd7,0x88,0xc8,0x9,0x80,0x20,0x64,0x6b,0xaa,0x4f,0xf6,0x5b,0x26,0xb2,0x72,0x86,0x60,0xce,0xf,0x44,0x22,0xdb,0x72,0xb6,0x1f,0x92,0xcd,0xd8,0xbb,0x8,0xd3,0xb4,0xa9,0x6c,0x44,0x43,0x37,0x2d,0xbc,0x1d,0xa0,0x4d,0x53,0x32,0xef,0x88,0x78,0x2c,0x6c,0x4b,0x4e,0x63,0x52,0x80,0x36,0xba,0x58,0x84,0x33,0xcf,0x43,0x89,0xd0,0xca,0x47,0xe7,0x9c,0xcd,0xa3,0x4,0x91,0xe2,0xf6,0xe1,0xa6,0x83,0xf7,0x16,0x5a,0x37,0x80,0x46,0x3a,0xbe,0x44,0x6c,0x6a,0x3d,0x25,0x44,0x63,0x80,0x31,0xfc,0x98,0x4f,0xaa,0x48,0x2,0xa0,0x93,0xd5,0x37,0x93,0x7f,0x31,0x84,0x49,0xd9,0x43,0xdd,0x7a,0x3c,0xf4,0x6b,0x78,0xc7,0xa4,0xe4,0xd0,0xaf,0x4b,0xa3,0x71,0xce,0x49,0xcc,0x85,0x23,0xc6,0x34,0x85,0x24,0x5,0xc0,0xf9,0x84,0x44,0x8,0x2e,0x95,0x78,0x54,0x16,0xdd,0x4c,0x5e,0x16,0x4a,0x8a,0x0,0x90,0xaa,0x2c,0xc0,0x71,0x92,0x75,0x97,0x55,0x9e,0xc8,0x8d,0xce,0x89,0xc0,0x9d,0x16,0x76,0x54,0xe7,0x47,0xfa,0x3f,0xd5,0x64,0x5e,0xdc,0xc6,0xc7,0x8d,0x4,0xd8,0x56,0xaa,0x6b,0xb2,0xe1,0xa3,0xe4,0x75,0xb4,0x9d,0x28,0xbb,0x50,0xfb,0x24,0xe9,0x18,0x34,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x47,0x11,0xc,0x8e,0xe3,0xdc,0x20,0xf3,0x62,0xa5,0xf0,0xdb,0x1a,0x11,0x78,0xd4,0xba,0xb4,0x71,0x54,0xf9,0xdf,0x8,0x51,0x9a,0x93,0x8,0x44,0x8a,0x47,0x8e,0xeb,0x3c,0xf,0x8,0x4,0x2,0xc1,0x4b,0x12,0x42,0x0,0xa,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0xc7,0x9,0xc1,0x22,0x17,0x40,0xc4,0xf2,0x37,0x90,0xc2,0xfe,0xd8,0x36,0xa,0x0,0x89,0x28,0x8a,0x60,0x32,0x2b,0x46,0x8c,0xad,0xb3,0xe9,0x31,0x52,0xe3,0xdf,0x88,0x11,0x21,0xab,0x3,0x53,0x91,0x8,0x5b,0x7c,0x23,0x62,0x4c,0x4,0x21,0x54,0xc9,0xd7,0xab,0x55,0x6b,0x80,0x2,0x69,0x62,0x92,0x2f,0x11,0x53,0x4d,0xbb,0x28,0x44,0x1c,0xdb,0x58,0xa9,0xca,0xba,0xe3,0xb1,0x99,0xc6,0xb0,0xb5,0xb7,0x69,0xa,0x9,0x39,0x36,0xef,0x26,0x52,0x2d,0x8e,0xea,0xc5,0x98,0x9a,0x79,0xb9,0x5d,0x78,0xe4,0xc0,0x62,0xc,0xac,0xdc,0x73,0x96,0xb9,0xb6,0xa0,0x52,0x77,0x84,0x82,0xb3,0x43,0xda,0x77,0xca,0xd0,0x8b,0x11,0x6e,0x18,0x4a,0xe6,0x60,0x2c,0x6d,0xbf,0x23,0xb1,0x96,0xc7,0x60,0x87,0x3e,0xcd,0x1d,0xb7,0xff,0x2a,0xa5,0xe0,0xbc,0x87,0xd2,0x1a,0x4d,0xb7,0x80,0x69,0x5a,0xfe,0x63,0x9a,0x54,0x4a,0xe2,0x58,0xf9,0x97,0x95,0x8f,0xc4,0xd6,0xea,0x10,0xc2,0x38,0x57,0xf9,0xf5,0xa2,0x91,0xb2,0x1a,0x5b,0x9b,0x33,0x41,0x35,0x76,0x75,0x8c,0xa2,0xba,0x38,0x21,0xba,0xea,0x24,0xbd,0x5a,0xc5,0x97,0x36,0xcd,0x85,0x26,0xc0,0x96,0xa2,0x8d,0xe7,0x8a,0x78,0xb4,0x88,0x2e,0x1e,0xb1,0xdc,0xb6,0xc8,0xbf,0xf2,0x54,0xdc,0x6a,0xb9,0xcd,0xc7,0x43,0x47,0x8c,0x8d,0x8e,0xa8,0xf8,0x3d,0x82,0xb2,0x9c,0x90,0x82,0x93,0xc7,0xb,0xf,0x3a,0x16,0xa3,0xcc,0x97,0xdb,0x96,0xfd,0x47,0x4a,0xc9,0x7b,0x8e,0x40,0x20,0xb8,0x28,0x20,0xef,0x56,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0xc1,0xb1,0xfa,0x86,0x6f,0x66,0x5f,0xf3,0x67,0xc5,0x6,0x21,0x96,0xf2,0x88,0x18,0x23,0x54,0x2a,0xb8,0x18,0x99,0x24,0x2a,0xab,0x14,0x72,0xa8,0x88,0xc9,0x46,0x6f,0xb1,0x52,0x7a,0x24,0x47,0x62,0x1c,0xd5,0x81,0xde,0x41,0x2b,0x83,0x90,0x9,0x40,0x2,0xb4,0xd6,0x45,0x7d,0x8,0x24,0xd2,0xa4,0xe4,0xdd,0xa9,0x94,0x2f,0xa8,0x8a,0xca,0x4f,0x29,0x5d,0x32,0xfe,0xb2,0xad,0x98,0xed,0xc6,0xa1,0x8c,0x9d,0x14,0x2b,0x4,0xb9,0x9,0x97,0xad,0xc8,0x0,0x97,0x76,0xb0,0x5,0x98,0x8f,0x4b,0x69,0x5,0xef,0x1c,0xab,0x2,0x95,0x66,0x65,0x5e,0x64,0x2b,0xb3,0x4f,0xc5,0x23,0x88,0xe0,0x6d,0x55,0x65,0x28,0xac,0x1c,0xa4,0x94,0xf7,0xa7,0x92,0xa2,0xd1,0x71,0x53,0x72,0x8,0x70,0x76,0x80,0x1d,0x7a,0x78,0xe7,0xd0,0xaf,0x96,0x8,0x21,0xa0,0x5f,0xaf,0x98,0x8c,0xd4,0x86,0xdb,0x8e,0xed,0x80,0x18,0x39,0x57,0xd0,0x3b,0x7e,0x5c,0x29,0x5d,0x72,0xa,0x63,0x6a,0xfc,0x2d,0xca,0xc6,0x44,0xe2,0x55,0xcc,0x65,0x99,0xfc,0x52,0xee,0x81,0xf2,0x12,0x8c,0x5c,0x1b,0x8d,0x45,0x22,0xfc,0x72,0x8c,0x6a,0xbc,0x42,0xfe,0x11,0x55,0xca,0xc7,0x79,0xd1,0xc6,0xb4,0xed,0x77,0xaa,0xe6,0x8b,0xe3,0x4e,0xb0,0xf9,0x54,0x56,0xf,0x6e,0x9c,0x6a,0x73,0x5e,0x6e,0xbe,0xcc,0x8c,0x9f,0xa3,0x49,0x39,0xc8,0x26,0xe6,0x85,0x20,0x71,0xae,0x4d,0x8c,0xf5,0x23,0x9b,0x45,0x22,0x71,0xbe,0x4e,0xac,0xf6,0x19,0xb7,0xca,0x1f,0xa7,0xfb,0xac,0x8f,0x37,0xaf,0x3,0x20,0xf8,0x20,0xef,0x39,0x2,0x81,0xe0,0xe2,0xf8,0x7a,0x20,0x53,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x10,0x1c,0x23,0xd4,0x99,0x70,0x89,0xbd,0xcb,0xc4,0x10,0x11,0xb1,0x9a,0xaf,0x3c,0xc6,0x44,0x58,0x51,0xff,0xa5,0xfc,0xc0,0x4c,0x6a,0x84,0xe0,0x47,0xb,0x2a,0x46,0xdb,0x6c,0x5d,0x3a,0x91,0xad,0xaa,0x6c,0xb,0x66,0xb2,0xc9,0x7b,0x97,0x54,0x6e,0x11,0xc1,0x7b,0x56,0xb,0x92,0x42,0x8,0x81,0x1b,0x71,0x95,0x4a,0x44,0x9d,0x2a,0xca,0x3b,0x95,0xa,0x44,0xf8,0x31,0x62,0x15,0x61,0x52,0xc8,0xe5,0x71,0xc5,0x34,0x5e,0x4a,0x25,0x17,0x9c,0xa3,0x17,0x52,0x14,0x1e,0x15,0xbb,0x6e,0x51,0x28,0xa6,0xe2,0x92,0xa2,0x1c,0x24,0x82,0x1d,0xfa,0x34,0xa6,0x50,0x88,0xc3,0x4c,0xfc,0x5,0xef,0x52,0x51,0x8,0x93,0x7c,0x31,0x6d,0x3b,0x84,0x80,0xe0,0x3d,0x9a,0x6e,0x91,0x8e,0x37,0x16,0x4b,0xf0,0xd0,0xaf,0xe1,0x9c,0xc5,0x7a,0x79,0xc0,0x65,0x22,0x4d,0xb,0xd3,0x34,0x45,0x89,0xa8,0xb4,0xe1,0xdc,0xc3,0x94,0xa3,0xe8,0x53,0xfb,0x6f,0x1e,0xef,0xc4,0x9e,0x9d,0x64,0x68,0xc5,0x56,0x8d,0x31,0x57,0xb1,0x10,0x7e,0x15,0xb9,0x17,0x2b,0x56,0x2d,0x24,0xa5,0xe2,0xd4,0xd6,0x3a,0x36,0xf7,0xe6,0xc6,0xe6,0xad,0xcd,0xba,0xe9,0xc7,0x5a,0x77,0x57,0xce,0x9f,0x71,0x3,0xdb,0x15,0x7e,0x55,0xa9,0xc8,0x6,0x77,0xb8,0x5,0x71,0xa3,0x69,0xf8,0xc2,0xbf,0xe7,0x5a,0x91,0x38,0xd1,0x2a,0xd6,0x7d,0xbc,0xf1,0xf9,0xf6,0x7b,0x4c,0xd4,0xa4,0xd3,0x86,0x64,0x6c,0xc4,0x17,0x6e,0x25,0x38,0xcb,0x3f,0x37,0x92,0xf7,0x1c,0x81,0x40,0x70,0x51,0x40,0x8,0x40,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0xe0,0x38,0xa1,0xca,0xfa,0xcb,0x54,0x49,0x21,0x7f,0xb2,0xca,0x2c,0xab,0x97,0xc2,0xa8,0x74,0x8b,0x21,0xb2,0xf2,0x2d,0x4,0x56,0xec,0x25,0x50,0x22,0xee,0x6a,0x65,0x60,0xf0,0x2e,0x3d,0x96,0x96,0x1,0xc6,0xe6,0xda,0xda,0xfa,0x5b,0x14,0x53,0x84,0x10,0xc3,0xd8,0x5e,0x5b,0x95,0x54,0x64,0xc5,0x5f,0x26,0x21,0x51,0xd9,0x5d,0x63,0x35,0xbe,0x90,0xda,0x75,0x33,0x91,0xc6,0x4d,0xbb,0x61,0x62,0x8f,0xf5,0xce,0x8e,0xe4,0x1a,0x11,0x67,0xf3,0xa5,0xfd,0x13,0xa8,0xb4,0x7,0xe7,0x79,0xa,0xc1,0x8f,0xa,0x42,0xe7,0xa,0xe1,0xe6,0xec,0xc0,0x63,0x4b,0x76,0xe6,0x58,0xc8,0x42,0xc7,0x8a,0x3e,0xef,0x31,0xf4,0x6b,0xc4,0xc8,0x4a,0x40,0x22,0x80,0x94,0x46,0x8c,0x1,0xdd,0xce,0x1e,0x2b,0x2b,0x95,0x86,0x69,0xbb,0x72,0xcc,0x54,0xac,0xd6,0x63,0x99,0x4a,0x9e,0x7,0x9a,0xb4,0xf9,0x46,0x84,0x90,0x1e,0xcf,0xaf,0x11,0x30,0x5a,0x7f,0xcb,0x9c,0x57,0x85,0x15,0x31,0xcc,0x14,0x74,0x53,0xb3,0x2a,0xe5,0xa6,0xdc,0x79,0x21,0x8,0x3f,0x59,0xfe,0xce,0xca,0xb8,0xaa,0x9,0x64,0x3b,0xe6,0x62,0xbd,0xad,0x51,0x79,0xf1,0x88,0x55,0xa7,0x16,0x5d,0xda,0x12,0xde,0x17,0xab,0xff,0xf2,0x32,0x71,0xb6,0xdd,0x78,0xe4,0x1e,0x36,0x6,0xf2,0xfc,0x9e,0xdc,0x7a,0x4c,0x71,0xf6,0x58,0xa5,0x95,0x8c,0xa2,0x0,0x14,0x8,0x4,0x17,0x7,0x84,0x0,0x14,0x8,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x8e,0x11,0x32,0x19,0x94,0xb3,0xfc,0xb2,0xca,0x2b,0x5b,0x48,0x73,0xa1,0xc6,0xc4,0x6,0x1a,0xc3,0x4c,0x4,0x35,0x92,0x74,0x45,0xd9,0x97,0xc8,0xc1,0xbc,0x9e,0x4a,0x19,0x79,0xd9,0x5a,0x9a,0xc9,0x37,0x60,0x2c,0x9,0xc9,0xe4,0x5c,0xce,0xd2,0xcb,0x44,0x60,0x6d,0x2d,0x66,0x32,0x8c,0xcb,0x47,0xea,0x71,0x33,0x89,0xa7,0x26,0x63,0xd0,0xc9,0x86,0x1b,0xa3,0x67,0x5,0x5e,0x44,0xb1,0xf,0x3,0xb1,0x64,0x12,0xf2,0x32,0x95,0xaa,0x2e,0x6d,0x3,0x40,0x51,0xe0,0xe5,0x9c,0xc1,0x52,0xe8,0x91,0x8b,0x37,0x92,0xfd,0x37,0x38,0x97,0x2c,0xbc,0x71,0x52,0x2,0x62,0x87,0x1,0x43,0xdf,0x83,0x88,0xb0,0x5e,0x1e,0x8e,0x2a,0x42,0xef,0xd0,0xed,0xec,0xa1,0x5f,0x2d,0x41,0x44,0x68,0x12,0xf9,0xa7,0x34,0x5b,0x7e,0x39,0x2b,0x2e,0xab,0x2f,0xf9,0x32,0x8c,0x2a,0x45,0xde,0x48,0xcc,0xa6,0xbc,0x41,0x54,0x19,0x7f,0x34,0x7d,0xbd,0x88,0xca,0xff,0x30,0x92,0xbc,0xe3,0xbc,0x4d,0x88,0xaa,0x18,0x27,0x76,0xe6,0xd,0xb,0x6f,0x95,0xc3,0x38,0xd,0x15,0x3c,0xdf,0x49,0x6,0xd4,0xea,0xc1,0xe7,0x42,0xc5,0xc5,0xd9,0x7f,0xd3,0xc7,0x2a,0x8b,0xee,0xf3,0x20,0x13,0xcf,0x3f,0xbe,0x6a,0x9c,0x93,0xe3,0xad,0xfe,0x10,0x6d,0x7f,0xae,0x9e,0xda,0xf2,0xaf,0x66,0x5c,0x30,0xd6,0xaa,0x48,0x51,0x0,0xa,0x4,0x82,0x8b,0x4,0x42,0x0,0xa,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0xc7,0xa,0xc4,0xa5,0x1c,0x71,0xa6,0x5a,0xa2,0x9a,0xf8,0x1b,0xd5,0x77,0xe5,0xc9,0xf4,0x37,0x91,0x2a,0x8a,0xb7,0x82,0x38,0x6a,0xcf,0x26,0x39,0x73,0x95,0x9a,0x30,0xef,0x4c,0x69,0x8d,0x6c,0x63,0xd,0x39,0xc3,0x2f,0x70,0x9,0x47,0x26,0xc,0x73,0x81,0x48,0x56,0xee,0x65,0xe2,0x8e,0x2d,0xc7,0xbc,0xfd,0x3a,0x63,0x30,0x96,0xcc,0x3e,0x3f,0xe,0x27,0x91,0x5d,0xa1,0x3c,0x96,0x49,0x4b,0x26,0xf3,0xb4,0x36,0xc5,0xbe,0x5b,0xb2,0xef,0xd2,0x38,0xe6,0xb6,0xe0,0x7a,0x1b,0x7c,0x8c,0xa,0x21,0x13,0x81,0xc9,0x8a,0x1c,0x43,0x2c,0x85,0x21,0x59,0xf9,0x97,0xf7,0x39,0xf4,0x6b,0x68,0x63,0xe0,0x6c,0x8f,0xa6,0xeb,0xa0,0xb4,0x1,0x29,0xb6,0x2f,0xe7,0xe3,0xf1,0xde,0x31,0x69,0x5a,0x32,0xc,0x59,0x59,0x49,0x18,0xed,0xce,0x63,0x23,0x33,0x55,0xb4,0x58,0x2e,0x45,0xa9,0x68,0xa8,0x50,0xe5,0x3,0x96,0x56,0x60,0x2a,0xc7,0x38,0x5a,0xb6,0x47,0x82,0xab,0x10,0xc2,0xf3,0x9e,0x8d,0x9,0x61,0x88,0x4d,0xb,0xec,0x1c,0x11,0x63,0x73,0xf0,0xd6,0xa7,0xa7,0x96,0xdd,0x78,0x1,0xad,0x5e,0xd6,0x67,0x4e,0x1e,0xa8,0xc7,0x71,0x21,0x6f,0x6f,0x3c,0xe2,0xf7,0x49,0x85,0x32,0x36,0xb7,0x5f,0xd4,0x8e,0xb3,0x95,0x8b,0x78,0x36,0x6e,0x19,0x4,0x36,0xf3,0x14,0x83,0xb4,0x0,0xb,0x4,0x82,0x8b,0x3,0x42,0x0,0xa,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0xc7,0xe,0x54,0xec,0x89,0xb1,0xa8,0x99,0x12,0x89,0x94,0xd4,0x67,0x35,0x79,0x97,0x9,0x36,0x56,0x9a,0x85,0xf2,0xd8,0xb4,0xe1,0x34,0x3d,0x5e,0x3d,0x32,0xaa,0xd6,0xa8,0xb2,0xcf,0x72,0xb,0x71,0xf0,0x7e,0x6c,0x10,0x6,0xe0,0x9c,0x4d,0x4d,0xc2,0x3e,0xe5,0xed,0x79,0x64,0x32,0x2c,0x13,0x60,0xd9,0x92,0x3c,0x96,0x4f,0xc4,0x49,0x13,0x2e,0x11,0x41,0x1b,0x53,0x7e,0xe,0xc1,0x17,0xd2,0x8f,0x8b,0x3f,0x50,0xac,0xce,0xce,0x59,0x80,0x90,0x94,0x7b,0x63,0xf9,0x88,0x4f,0xf6,0xe5,0xd2,0xfa,0x9b,0x8a,0x38,0x32,0x9,0xc8,0xb6,0x60,0x3f,0x5a,0x85,0x41,0xa9,0x20,0x84,0xb3,0x2,0x6d,0xcf,0xc5,0x1f,0x5c,0xfe,0x71,0x88,0xb3,0xcf,0x3c,0x59,0xc6,0xb3,0x7b,0xe2,0x12,0x68,0x6d,0xb8,0x68,0x24,0xcf,0x11,0x62,0x21,0x3c,0xbd,0x73,0xe5,0x58,0x62,0x7a,0x8c,0x8b,0x4a,0x4c,0x3a,0x6e,0x2a,0x6a,0xcc,0x71,0xff,0x18,0x9,0xbc,0x4c,0x3c,0x11,0xa6,0x6a,0xb9,0x62,0xdb,0x9d,0xa9,0xdd,0x26,0xc1,0x7e,0x71,0x6b,0x8e,0x5f,0x6d,0x61,0x2d,0x74,0x5d,0xdc,0x64,0xd5,0xe2,0x66,0x6b,0x47,0x79,0xa6,0x5e,0xaa,0xda,0xdb,0xf3,0x38,0x57,0x67,0x64,0xf5,0xd4,0xeb,0x3c,0x1d,0xf3,0x36,0x5e,0x6e,0xa2,0x66,0xac,0x9e,0x98,0x36,0xd8,0x4c,0x1f,0xdb,0x3c,0x9b,0xcb,0x39,0x8d,0xb,0x10,0x96,0x71,0xb,0x21,0x2e,0x10,0x8,0x4,0x2f,0x75,0x18,0x99,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0xe0,0xf8,0x80,0x74,0x3,0xe7,0x2c,0xe,0xf,0xf6,0xb1,0xb3,0xb3,0xb,0x95,0x48,0xaf,0x58,0x95,0x44,0xb0,0x30,0x2a,0x29,0xd1,0x12,0x1,0x53,0xb2,0xd8,0x48,0x15,0x52,0x88,0x30,0xaa,0xd2,0xf2,0x32,0xd9,0xb6,0x9a,0x8b,0x39,0x72,0x7e,0x60,0x86,0x36,0x6,0x76,0xe8,0x91,0x15,0x7a,0xb1,0x52,0xee,0x79,0xde,0x68,0x2a,0x4,0xf1,0x95,0xfa,0x2c,0x26,0x55,0x15,0xe0,0x8b,0x3a,0x91,0x6d,0xbd,0x59,0x69,0xc8,0x84,0x98,0xc7,0xd0,0x73,0x13,0xaf,0xa2,0xb1,0xc5,0xd7,0x59,0x56,0xfd,0x31,0xff,0xa7,0x26,0xd9,0x71,0x44,0x80,0xf3,0xe,0x44,0x3c,0xf,0x75,0x21,0x4a,0xce,0xdf,0x53,0xda,0xf0,0x78,0x22,0xb7,0xe9,0x2a,0xa5,0xe1,0xdc,0x90,0x72,0x3,0x5d,0x69,0xee,0xb5,0xc3,0x1a,0xc3,0x7a,0x8d,0x10,0x3c,0xd6,0xab,0x43,0x38,0x67,0x61,0x9a,0x6,0x21,0x4,0xa8,0x10,0xb1,0x5e,0x1e,0xa0,0x5d,0xec,0x82,0x94,0x2f,0x16,0xe3,0xe8,0x3d,0xbf,0x6,0xc4,0xaa,0x4c,0x8a,0xaa,0x90,0x8d,0x54,0xcf,0x75,0x35,0x9e,0x51,0x9,0xc8,0xf3,0xac,0xb4,0x9e,0x64,0x37,0xa2,0xb6,0x37,0x6f,0x21,0xa0,0x8,0xe0,0x16,0xe6,0xfc,0xb,0x4f,0x71,0x55,0x34,0xb2,0xf9,0xf3,0x34,0x47,0xb0,0x3e,0x3f,0x50,0x9d,0x1f,0xd5,0xe,0xe2,0xb4,0x1b,0x63,0xe4,0xe8,0xaa,0x65,0xcb,0x72,0xb1,0xca,0xf1,0x9b,0x49,0x52,0xa9,0xde,0x28,0xaa,0xe3,0xc3,0x94,0x87,0x9b,0x1c,0x7,0xa6,0xa,0xbf,0x72,0x1c,0xd5,0xc2,0x89,0x50,0xdd,0x18,0x7,0x8d,0x2d,0xbe,0xa5,0x4c,0x64,0x46,0x32,0x6e,0x2b,0x52,0xa9,0x13,0x18,0xbd,0xb3,0xf0,0xde,0x61,0xbd,0x3c,0xc4,0xd9,0xa7,0x1f,0x97,0x37,0x1d,0x81,0x40,0x70,0x71,0x7c,0x3f,0x0,0x20,0x9a,0x65,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0xe0,0x98,0xc0,0x2c,0x2e,0xc1,0xa9,0x2b,0xae,0x5,0x29,0x85,0x9d,0xdd,0x3d,0xec,0xed,0xee,0x94,0x56,0x5a,0xce,0xb3,0xf3,0xc9,0x5e,0x8b,0x51,0x31,0x45,0xc9,0x8e,0x1b,0x58,0xb1,0x47,0xc4,0x8d,0xb8,0x89,0xe1,0x83,0x4a,0x6a,0x3b,0x22,0x55,0xac,0xbd,0x31,0x46,0xa8,0x94,0xd1,0xc7,0x60,0xf2,0x70,0x24,0x5e,0xe6,0x36,0xd1,0x64,0x67,0xd,0xa1,0x94,0x7d,0xc4,0xc0,0x2a,0xc3,0xac,0x88,0x3,0x29,0xc4,0xa4,0xea,0xcb,0x4d,0xbc,0x39,0xff,0x8e,0xc9,0x32,0x9f,0xf6,0x91,0xad,0xba,0x34,0xb1,0xed,0x66,0xfb,0x6f,0x26,0x2e,0xeb,0x65,0x28,0x29,0xc,0xf3,0xb8,0x74,0x22,0xd5,0xea,0x4b,0xa3,0x51,0x7d,0x48,0x65,0x7b,0x39,0x8b,0x30,0x4,0xf,0x67,0x2d,0xec,0xc0,0xad,0xbf,0xb6,0x5f,0xc3,0x5a,0xb,0xef,0x6,0x0,0xc0,0xce,0xde,0x25,0xd0,0x5a,0xa1,0xe9,0x16,0x6c,0x3f,0x6,0x93,0xa1,0x3a,0x91,0x8b,0x99,0xe0,0x2c,0x63,0xca,0x25,0x2a,0x34,0x12,0xa5,0x20,0xe2,0x36,0xe6,0xdc,0xb0,0x9c,0x8f,0x27,0x1d,0x73,0xac,0x8,0xbf,0x92,0xeb,0x57,0x1d,0xfb,0xe6,0x6b,0x52,0x5e,0x99,0xb4,0x5a,0x22,0xc6,0xf2,0xf6,0x26,0x45,0x1c,0x98,0x12,0x5d,0xe9,0x35,0x21,0x52,0x85,0x2c,0xac,0x5b,0x87,0x9,0x28,0xaa,0xc5,0x42,0x5a,0xe6,0x16,0x66,0x8c,0x44,0x6c,0x21,0x88,0xe9,0x88,0x4b,0xd1,0xb1,0xde,0x78,0x96,0x6b,0x88,0x42,0x50,0x8f,0x23,0xab,0xc6,0x4b,0xe3,0xeb,0x55,0xab,0x5a,0xe7,0xcb,0x65,0xfb,0x74,0xb6,0xee,0x96,0x3,0xc5,0x8c,0x44,0x9d,0xaf,0x5b,0xbd,0x46,0x63,0x4e,0x64,0x6a,0x72,0xb6,0x16,0xab,0xe5,0x3e,0x9e,0x7d,0xe2,0x51,0xd8,0xf5,0x81,0xbc,0xe9,0x8,0x4,0x82,0x8b,0x2,0x42,0x0,0xa,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0xc7,0xc,0x8b,0xcb,0x6e,0x80,0x36,0xd,0x9a,0xb6,0x63,0xd2,0xe,0x11,0x9a,0xc2,0x48,0x2,0x1,0x8,0xde,0x2,0x44,0x68,0xda,0x5,0xbc,0xf,0x20,0xe2,0x72,0x83,0x90,0xca,0x2e,0x48,0x69,0x20,0xf8,0x14,0xd2,0xa6,0x41,0x88,0x85,0x4,0x2c,0x16,0xc8,0xe8,0x11,0x62,0x48,0x24,0x17,0x97,0x84,0x90,0x36,0x40,0xf0,0xa5,0xf4,0xc2,0xbb,0x1,0x4a,0x1b,0x98,0x66,0x81,0x61,0x7d,0x0,0xad,0x9b,0xd4,0xac,0xeb,0x60,0xba,0x3d,0x44,0xef,0x10,0x62,0x84,0x56,0x94,0x14,0x7a,0xa,0xa4,0xc,0x37,0xf6,0x26,0xd2,0x4e,0x29,0x42,0x4,0x21,0xb8,0x1,0xda,0xb4,0xf0,0xce,0x8e,0xa4,0x13,0x0,0x28,0xd,0xc4,0x50,0xa2,0xa,0xb5,0x36,0x70,0xd6,0xa2,0x69,0x3b,0xce,0xe,0x74,0xac,0x48,0xd4,0x5a,0x23,0x4,0xf,0x6f,0x79,0x3b,0x11,0x60,0xf5,0x9f,0xe3,0x3c,0x3f,0xdd,0x74,0x89,0x7c,0x8b,0x50,0x29,0xa3,0x4f,0x29,0x8d,0xe0,0x1d,0x94,0x69,0x92,0xb2,0x11,0x70,0xb6,0x47,0xc,0x5c,0x36,0x2,0xa5,0x41,0xe0,0xf9,0x53,0xba,0x5,0xa2,0x87,0x69,0x3a,0xc4,0x18,0x61,0xda,0x5,0x10,0x43,0x69,0xf,0xd6,0xa6,0xe3,0xb9,0xf,0xae,0x58,0x49,0x49,0x19,0x28,0xad,0xe1,0xfa,0x65,0x22,0x0,0xcd,0x48,0x5e,0x6a,0xc3,0xc4,0x5b,0xf0,0xd0,0xa6,0x85,0x1d,0xd6,0xd0,0xa6,0x1,0x62,0x48,0x8d,0xc6,0xd,0x88,0x8,0xce,0xf5,0x20,0x52,0xbc,0xfd,0x9c,0x5b,0xb8,0xa1,0xdb,0x23,0x4,0x6f,0x41,0x4a,0xf1,0xb1,0xd7,0xc4,0x6d,0xc5,0xd5,0x6,0xef,0x41,0xc4,0xe7,0x81,0xd2,0x6,0x99,0xc,0xac,0x55,0x7d,0x39,0x23,0xb2,0xb4,0x1a,0xa7,0xb9,0xf3,0x8e,0xb7,0xef,0x9d,0x85,0x56,0x7a,0x24,0x11,0x95,0x2e,0x4,0x67,0x4c,0xe7,0x46,0x6e,0x97,0xd6,0x5a,0x17,0x45,0xe4,0xd8,0x5e,0xad,0x10,0xa3,0x3,0x51,0xca,0x93,0x24,0xa4,0x63,0x62,0x2,0x93,0xe7,0x25,0x80,0x94,0x46,0x70,0x16,0x4a,0xb7,0x69,0x79,0x55,0xd9,0xda,0x43,0x21,0xf5,0xb4,0x69,0xe1,0x7d,0xcf,0xdb,0xd,0xe,0x20,0x8d,0x98,0xd4,0xa3,0xda,0xb4,0xe9,0xb8,0x5d,0xb2,0xab,0x2b,0x20,0x3a,0xe4,0xb4,0x2c,0xb6,0x97,0x2b,0x84,0xc8,0xff,0x66,0x94,0x36,0x18,0x96,0x7,0x70,0x76,0x35,0x6b,0x55,0x16,0x8,0x4,0x82,0x97,0x36,0x84,0x0,0x14,0x8,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x8e,0xdb,0x97,0x7c,0xdd,0xa2,0xbb,0xe4,0x1a,0x34,0xdd,0xe,0x14,0x29,0x26,0x98,0x9c,0x4d,0x5c,0x5e,0xc3,0x6d,0xba,0xde,0x2,0x11,0xd0,0x86,0x9,0x2e,0xef,0x99,0x74,0x6a,0x9a,0x26,0xe5,0xdd,0x45,0x10,0x2,0x74,0xb3,0xc0,0xd0,0xaf,0x59,0xb5,0x17,0x1c,0xa0,0xc,0x82,0x77,0x4c,0x44,0x21,0xa6,0xa2,0xc,0x0,0x88,0x68,0xbb,0x5d,0x4,0x6f,0x11,0xbc,0x85,0x77,0x8e,0x49,0x44,0x0,0x5d,0xd7,0xa0,0xef,0x2d,0x6c,0xbf,0xc4,0x62,0x67,0xf,0xd6,0xe,0x50,0xa6,0x85,0x52,0x4c,0x2c,0xb9,0x61,0x85,0xa6,0xdb,0x65,0x72,0x2e,0xb5,0xef,0x36,0xdd,0x2,0x6e,0x58,0x17,0x92,0x26,0x24,0x22,0x31,0x46,0xc0,0xf5,0x87,0x30,0x6d,0x87,0x10,0x81,0xe8,0x7a,0x98,0xa6,0x43,0x7f,0x78,0xe,0xba,0xdb,0x5,0x0,0x84,0x61,0x9,0xbd,0x73,0xa,0x61,0x58,0x23,0x46,0xf,0xa5,0x5b,0xf8,0x61,0xd,0xd2,0x4c,0x3c,0x29,0x6d,0x30,0x1c,0x3e,0xb,0xdd,0x9e,0x0,0x14,0xab,0xbf,0x7c,0x7f,0x0,0xd5,0xee,0x22,0xba,0x1,0xaa,0xdd,0x61,0xf2,0x33,0xe7,0xee,0x5,0xb,0x90,0x61,0x6b,0x6d,0x70,0x50,0x66,0x81,0xe8,0x7,0xa8,0x76,0x81,0xe8,0x98,0x48,0x8d,0x89,0xe4,0x63,0x85,0xa5,0x41,0x8,0x16,0xba,0xdd,0x83,0xd2,0x9a,0x9,0xc6,0x30,0x66,0xed,0x51,0x2e,0x40,0x9,0x11,0x31,0x8c,0xed,0xc9,0xa6,0xdd,0x61,0x95,0x22,0x29,0x20,0x7a,0xf8,0xfe,0x0,0xcd,0xee,0xa5,0x0,0x8,0x6e,0x7d,0x16,0xa4,0x17,0x50,0x4d,0x8b,0x60,0xd7,0x50,0xba,0x81,0x5b,0x9f,0x83,0x6e,0xf7,0x40,0xba,0x41,0x70,0xc3,0xa8,0xa4,0x44,0x44,0xf4,0x96,0x8f,0x27,0x30,0x91,0x46,0x4a,0x23,0x7a,0xb,0x28,0x83,0xe8,0x7a,0xde,0x7,0x0,0x95,0x8,0x30,0x10,0x21,0xd8,0x1,0xba,0x5d,0xc0,0xf7,0x87,0x20,0xd3,0xa5,0xe5,0xd8,0xfe,0x9c,0xd5,0x99,0xca,0xb4,0x8,0xae,0x47,0x74,0x3d,0x48,0x1b,0x90,0x6a,0x41,0xba,0x61,0xe5,0x66,0xf0,0x4c,0xa8,0xda,0x25,0x93,0x8f,0xa4,0xf8,0x58,0x75,0x3,0x8a,0x21,0x11,0x90,0x1a,0x61,0x58,0x42,0xb5,0x27,0x98,0x8c,0x4b,0x73,0x96,0x6d,0xe0,0xaa,0xdd,0x83,0x1f,0x56,0xa9,0xcd,0x38,0x0,0xaa,0x1,0x10,0x26,0x6d,0xc6,0x59,0x21,0xa9,0x9a,0x5,0xa2,0x1b,0x46,0x2b,0x70,0x56,0x4b,0x2a,0x83,0xe8,0x87,0xa2,0x70,0x25,0xd5,0xb0,0x6d,0xdd,0xf5,0x20,0xd3,0xa5,0x62,0x1a,0x7,0x84,0x90,0xc8,0xe3,0x54,0xb8,0x12,0x1c,0x48,0xb7,0x69,0xce,0x14,0x6f,0x43,0x69,0x10,0x69,0x5e,0x1e,0x84,0xe0,0xd6,0x72,0x9,0x2d,0x10,0x8,0x2e,0xce,0xef,0x6,0xf2,0xee,0x25,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x10,0x1c,0x4f,0xa8,0xe6,0x4,0x54,0xbb,0x3,0xdd,0xee,0x24,0x35,0x17,0x98,0xec,0x72,0x3,0xda,0xc5,0xff,0xc7,0xde,0x9b,0x7e,0x59,0x76,0x95,0x67,0x9e,0xcf,0x1e,0xce,0xb9,0x37,0x22,0x23,0x95,0x52,0x2a,0x35,0xcf,0xb3,0x40,0x2,0x9,0x9,0x21,0x61,0x81,0x1,0x31,0xba,0x8d,0x29,0xe3,0x2a,0xdc,0x65,0xf7,0x50,0xdd,0x65,0x77,0xf7,0xdf,0xd2,0x7f,0x40,0x7f,0xa8,0xb5,0xaa,0xbb,0x56,0xaf,0x5e,0xe5,0xb2,0xbb,0x5c,0x6e,0x8f,0x60,0x30,0x98,0xc1,0x98,0x41,0x20,0x81,0x90,0xd0,0x8c,0xe6,0x1,0x9,0x49,0xa9,0x4c,0x65,0x66,0xdc,0x7b,0xce,0xd9,0x7b,0xf7,0x87,0x77,0xd8,0xfb,0x44,0x44,0x8a,0x4,0x9,0xd6,0xea,0xec,0xf7,0x57,0x8b,0x4a,0x65,0xc4,0xbd,0x67,0xd8,0x67,0xdf,0x74,0xe4,0x93,0xcf,0xf3,0x3e,0xfb,0x74,0x26,0x5e,0xd1,0x78,0x6f,0x40,0x9a,0xa8,0xc4,0xa3,0xe4,0x84,0x7e,0x63,0x3f,0xc6,0xf5,0x9,0x12,0x80,0x9a,0x99,0x69,0x6d,0x8b,0xaf,0xf3,0x1,0xc3,0x89,0xa3,0xe8,0x96,0x5b,0x58,0x1f,0x7d,0x19,0xdd,0xe6,0x99,0x70,0xec,0xea,0x72,0xe,0x8,0x91,0x9c,0x61,0x12,0xf3,0xa4,0x32,0x8c,0xa1,0x46,0x59,0xa7,0x9,0x4e,0x66,0xdc,0xe5,0x84,0xd0,0x2f,0xa9,0x2c,0x64,0x5c,0x23,0x2c,0x36,0x90,0x86,0x35,0xbb,0xfb,0xb2,0xc6,0x51,0xc9,0x75,0x96,0x39,0x42,0xcc,0xf1,0xd4,0x3c,0xc1,0x89,0x7b,0x2e,0x27,0xe4,0x34,0xd0,0xef,0x33,0xdd,0xa3,0xef,0x36,0x51,0xf2,0xc8,0x5f,0x2b,0xa0,0x52,0x93,0xc2,0xbf,0xcf,0x7c,0xbc,0x9,0x2e,0xf6,0xf4,0x37,0x24,0x11,0x83,0x40,0xc7,0xa3,0x8b,0xcd,0x70,0x71,0x89,0x34,0x1c,0x3,0x9c,0x47,0xe8,0x36,0xc8,0x9d,0x36,0xd,0x80,0xeb,0x90,0xa7,0x15,0x42,0xbf,0x64,0xc1,0xcd,0x21,0x4d,0x13,0xf2,0xfa,0xd,0xf8,0xb8,0x20,0xe1,0x74,0xdc,0x46,0xe8,0x36,0x59,0x6c,0xdb,0x66,0xf7,0xa0,0x3,0x7c,0x24,0x71,0x15,0x5,0x3e,0xf6,0x48,0xc3,0x71,0x5e,0x1f,0x4f,0xd7,0x90,0xd6,0x70,0x9e,0x45,0xbe,0xd0,0x21,0x8f,0xc7,0x11,0x37,0xcf,0x46,0x1e,0x49,0x8c,0xf2,0xa1,0x43,0x29,0x8e,0x9d,0x6b,0x40,0x1a,0x8e,0x21,0xf4,0x5b,0xbc,0x16,0x3,0x5c,0xdc,0x54,0xf1,0x32,0x74,0x4b,0xe4,0x71,0x5d,0xe3,0xbb,0x9e,0xa3,0xd5,0x20,0xd1,0xd1,0xf9,0xe,0x25,0x93,0x5b,0x8e,0x4,0xb5,0x40,0x6b,0x1f,0x16,0x40,0x9e,0x78,0x9d,0xa5,0xcd,0x98,0xc4,0xd5,0x92,0x33,0x8b,0x79,0xbc,0x4e,0xa1,0x87,0x2b,0x9,0xa5,0x48,0x7c,0x38,0xb3,0x3e,0xc7,0x73,0xd,0xd3,0x88,0x2,0x20,0x74,0xfb,0x68,0x2d,0xf9,0x39,0xd0,0xdf,0x50,0xc9,0x1,0xea,0x9c,0x43,0x1a,0xb7,0x11,0xfa,0x2d,0xa4,0xf5,0x51,0xda,0xcf,0x71,0x9,0x71,0x1,0x16,0xde,0xa3,0xce,0x77,0xbc,0x6,0x91,0x4,0x46,0x17,0x48,0x54,0xcd,0x89,0x9f,0xb1,0x83,0xf3,0x1d,0xb9,0xe,0x7d,0x87,0x3c,0xad,0xf9,0x51,0xd2,0x5e,0x20,0x61,0x91,0x67,0x32,0xfa,0x8,0x94,0x44,0x1e,0xc4,0xb8,0x44,0x49,0x23,0xf2,0xb4,0x9a,0xcd,0x6a,0x34,0xc,0xc3,0xf8,0xff,0x2a,0x26,0x0,0x1a,0x86,0x61,0x18,0x86,0x61,0x18,0x86,0x61,0x18,0x86,0x61,0x18,0xc6,0x69,0x8c,0xb7,0x25,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0x8c,0xd3,0x17,0x13,0x0,0xd,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xe3,0x34,0xc6,0x4,0x40,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x38,0x8d,0x31,0x1,0xd0,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0x4e,0x63,0x4c,0x0,0x34,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0x8c,0xd3,0x18,0x13,0x0,0xd,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xe3,0x34,0xc6,0x4,0x40,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x38,0x8d,0x31,0x1,0xd0,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0x4e,0x63,0x4c,0x0,0x34,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0x8c,0xd3,0x18,0x13,0x0,0xd,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xe3,0x34,0xc6,0x4,0x40,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x38,0x8d,0x31,0x1,0xd0,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0x4e,0x63,0x4c,0x0,0x34,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0x8c,0xd3,0x18,0x13,0x0,0xd,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xe3,0x34,0xc6,0x4,0x40,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x38,0x8d,0x31,0x1,0xd0,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0x4e,0x63,0x4c,0x0,0x34,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0x8c,0xd3,0x18,0x13,0x0,0xd,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xe3,0x34,0xc6,0x4,0x40,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x38,0x8d,0x31,0x1,0xd0,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0x4e,0x63,0x4c,0x0,0x34,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0x8c,0xd3,0x18,0x13,0x0,0xd,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xe3,0x34,0xc6,0x4,0x40,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x38,0x8d,0x31,0x1,0xd0,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0x4e,0x63,0x4c,0x0,0x34,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0x8c,0xd3,0x18,0x13,0x0,0xd,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xc3,0x30,0xc,0xe3,0x34,0x26,0xda,0x12,0x18,0x86,0x61,0x18,0x86,0xf1,0x8b,0x72,0xd9,0xf5,0xb7,0xe0,0xfc,0x4b,0xae,0xc4,0xc6,0xbe,0xfd,0x28,0xa5,0xa0,0x94,0x2,0xe7,0x1c,0x4a,0x29,0xf0,0x9e,0xfe,0x7d,0x31,0xa7,0x4,0x38,0x0,0x70,0x70,0x0,0x9c,0xf7,0x28,0xa5,0xf0,0x11,0xe8,0x6b,0x5,0x45,0x8f,0xe9,0xbd,0x47,0x4a,0x9,0xce,0x39,0x7a,0x85,0xf7,0x28,0x29,0xa1,0x0,0xf0,0x3e,0xa0,0x94,0xc,0xf0,0xb9,0x20,0xaf,0x71,0xe,0x25,0x67,0x38,0xef,0xe9,0x7b,0xfc,0x35,0xb9,0x16,0x0,0x28,0x39,0xf3,0x31,0x3c,0x72,0xce,0x74,0x49,0xf2,0xde,0x9d,0xc7,0x2a,0x5,0xe,0x8e,0xaf,0xab,0xc0,0xc1,0xcf,0xae,0x51,0xae,0x4d,0x48,0x69,0x42,0x8,0xf4,0xe3,0x54,0xbd,0x37,0x86,0x8f,0x5d,0x72,0x82,0xf3,0x1,0x39,0x27,0xba,0x8f,0x9c,0xe9,0x7e,0x3,0xff,0xf7,0x8e,0xf3,0x3,0x5,0x25,0x17,0x5d,0x2f,0xbd,0x5e,0xb9,0x7e,0xe7,0x74,0x1d,0xf4,0x35,0xce,0xa1,0x94,0x8c,0x92,0x33,0x62,0xd7,0x23,0xa7,0xc4,0xdf,0xcb,0x0,0xdc,0xec,0x38,0xe0,0xd7,0x7a,0x1f,0x90,0x73,0x86,0x77,0xe,0xb9,0x14,0xbe,0xc,0xfe,0x9e,0xf3,0xc8,0x7c,0x2d,0x74,0x6c,0xb9,0x1f,0x0,0x45,0xae,0x25,0x1,0x5,0x8,0x21,0x20,0xe5,0xc4,0xef,0xc9,0xbc,0xfe,0x1e,0xe,0xe0,0xdf,0x7b,0x7a,0x53,0x81,0xae,0xd3,0x6c,0x2f,0xe8,0x33,0x68,0xd7,0x1e,0xfc,0x3e,0x7e,0x7e,0x25,0xc3,0xf9,0xc0,0xdb,0x69,0x7e,0xfd,0xbb,0x9e,0x4d,0x29,0x74,0x5f,0x21,0xe8,0xfb,0x33,0xbf,0xbe,0xee,0x39,0xa7,0x6b,0x26,0xe7,0x99,0xaf,0x29,0xaf,0x5b,0xce,0x75,0xdf,0x38,0xbe,0xa6,0x66,0xfd,0x79,0x87,0xcd,0x9e,0x2b,0x9a,0xe3,0xe6,0x9c,0x68,0x7f,0xe8,0xbe,0xa5,0x63,0xd0,0x9e,0x2c,0x0,0x3f,0x3b,0xef,0x23,0x52,0x9a,0x68,0xed,0xbc,0xd7,0x7d,0x51,0x72,0x82,0xf,0xb1,0x39,0x36,0x78,0x8d,0xea,0xfd,0xca,0xb3,0xcd,0x85,0x5f,0x53,0xa0,0xeb,0xe3,0x9c,0xa3,0x67,0xc0,0xeb,0xea,0x50,0x3f,0x17,0x8e,0x6e,0x48,0xf7,0x85,0xec,0xde,0x9c,0x12,0xaf,0x5d,0x7d,0xe,0x3b,0xd7,0x70,0xe7,0x31,0xe5,0x58,0xf4,0xac,0xe8,0xcf,0x80,0xb2,0xe3,0x99,0xcb,0xde,0xf1,0x21,0xd0,0xda,0xc9,0x5e,0xe6,0xf5,0x74,0xce,0x61,0x18,0x56,0x78,0xed,0xe5,0x17,0xf1,0xb3,0x17,0x9f,0xc1,0xe1,0x9f,0x3e,0x6d,0x7f,0xd0,0x1a,0x86,0x61,0x18,0xc6,0xdb,0x88,0x6b,0xfe,0xef,0xbd,0x61,0x18,0x86,0x61,0x18,0xc6,0x9b,0x72,0xe0,0x9c,0x8b,0x70,0xe3,0x6d,0x1f,0xc2,0x81,0x83,0xe7,0x20,0xa7,0xc4,0x2,0x4c,0x69,0x7e,0xa4,0x68,0x7f,0xb4,0x68,0xa5,0x85,0x56,0x38,0x2b,0xf5,0x2b,0x8d,0x68,0xb3,0xfb,0xc7,0x93,0x56,0xac,0x78,0x93,0x97,0xa9,0x18,0xc2,0x82,0xcc,0x5e,0x5f,0xd3,0x37,0x3b,0xd6,0x1b,0xa,0x9,0x1b,0x2c,0x58,0xcd,0xb5,0xbb,0xf9,0xeb,0x44,0xa0,0xc0,0x2e,0xa9,0x64,0xf,0xa,0x54,0xcc,0x3a,0x65,0x9a,0x43,0x37,0x7a,0xe4,0xfc,0x25,0x7a,0x4f,0x27,0x39,0x44,0xf3,0xfd,0x7a,0xc9,0xa5,0x11,0x89,0xea,0xd7,0x4e,0xfe,0x6c,0xca,0x1e,0x6b,0xb1,0xf3,0x7e,0x77,0xbe,0x6f,0xaf,0x75,0xd9,0x6b,0x2f,0xbc,0xd9,0x8f,0xa1,0x6e,0x8f,0x73,0xfc,0xbc,0xf7,0xff,0xa2,0x3f,0xc2,0xba,0x3d,0xae,0xef,0x97,0xe4,0x64,0xf,0xe9,0xed,0xe2,0xe7,0x1c,0xbf,0x7d,0xae,0xa7,0xfa,0x3d,0x15,0x80,0x9d,0x3b,0xf9,0xa3,0x73,0xcd,0x5a,0x95,0xdc,0x7c,0xe8,0xde,0xe4,0xa3,0xfc,0x73,0xce,0x43,0x2,0x61,0xb3,0x6f,0x64,0x5f,0xc2,0xc1,0x79,0x37,0x13,0x4d,0xe5,0xfd,0xa5,0x64,0xac,0x4e,0x1c,0xc7,0x8b,0x4f,0x3f,0x8e,0xa7,0x1e,0xbe,0x17,0x25,0x27,0xfb,0x83,0xd7,0x30,0xc,0xc3,0x30,0xde,0x6,0xcc,0x1,0x68,0x18,0x86,0x61,0x18,0xc6,0x29,0x73,0xd3,0xfb,0x3f,0x86,0x8d,0xcd,0x2d,0xac,0x57,0xdb,0xea,0xcc,0xaa,0x2,0x59,0xd5,0x8,0xc8,0x25,0x56,0xbf,0x4e,0x9a,0x6,0x3b,0x86,0x9c,0x43,0xc9,0x73,0x61,0x4f,0x4,0x82,0xc2,0x4e,0xb4,0xaa,0x33,0x54,0xe5,0xa1,0xc8,0x31,0x1,0x72,0xc8,0xa9,0x63,0xad,0xc0,0x79,0xa7,0x9e,0xc2,0xac,0xdf,0x83,0x8a,0x7c,0x33,0xdf,0xa1,0x43,0x15,0x1e,0x0,0x75,0xac,0x89,0xbb,0x8e,0xdc,0x66,0xec,0x50,0xdb,0xa9,0xac,0xb5,0xc2,0xa0,0x8a,0x1e,0x73,0xbd,0xc6,0x79,0xf,0x7,0xd7,0xb8,0xd3,0x8a,0xba,0xc1,0x5a,0xd7,0x56,0x7b,0xfe,0x52,0xe4,0x75,0x6e,0xe6,0xa6,0x54,0x97,0x55,0xf3,0x75,0x15,0x56,0xd4,0x31,0x58,0xdd,0x73,0xe2,0x3e,0xdb,0x49,0xeb,0x88,0x44,0xb3,0x16,0xe5,0xed,0xf8,0x77,0x60,0x5e,0x80,0x9d,0xe7,0xd8,0x75,0xce,0x5f,0x56,0x38,0x3b,0x95,0xf7,0xed,0xa5,0x90,0xca,0xda,0xb8,0x9f,0x7f,0xc,0x71,0x92,0xea,0x5e,0xdc,0xf3,0xa5,0x2c,0x8c,0xf1,0x79,0x5a,0xb1,0x6b,0x26,0xbc,0xcd,0x44,0x63,0x0,0x8d,0x3,0xb2,0xa,0x62,0xf5,0x7d,0xc0,0x9b,0x4b,0xa1,0xc0,0x6e,0xb9,0x52,0x85,0xde,0xbd,0xbe,0x87,0x3d,0xa4,0x58,0x71,0x2d,0x2,0x7b,0xee,0x41,0xcc,0x5c,0x99,0xf3,0x4f,0xdf,0x49,0x34,0xf7,0x37,0x39,0xd7,0xce,0x6b,0xdb,0x4b,0x35,0x2c,0xcd,0x1e,0x6c,0x2f,0xa3,0xe8,0x73,0x38,0xf7,0xa2,0xcb,0x30,0xc,0x2b,0x3c,0xff,0xf8,0xfd,0xf6,0x7,0xaf,0x61,0x18,0x86,0x61,0xbc,0xd,0x98,0x0,0x68,0x18,0x86,0x61,0x18,0xc6,0x29,0x71,0xc9,0xb5,0x37,0x61,0xb1,0xdc,0xc4,0x38,0xac,0x91,0x73,0x42,0x29,0x99,0x44,0xae,0x99,0xe3,0xae,0x7a,0xee,0x5c,0xae,0x22,0xd6,0x4e,0xf1,0x45,0x62,0xbb,0x12,0x75,0xf4,0x8e,0x5,0x33,0x89,0x82,0x3a,0xaf,0xd1,0x59,0x11,0x5,0x51,0x0,0x57,0x28,0xea,0x2b,0x51,0x53,0x3a,0x4e,0x80,0x87,0xc7,0x38,0x8d,0x35,0xf6,0x98,0x29,0x86,0x38,0x4d,0x43,0x8d,0xc7,0x96,0x2,0xef,0xbc,0xc6,0x3c,0x45,0xa0,0xa1,0x68,0xa3,0x87,0xc4,0x5f,0x4b,0x29,0x8,0x3e,0x20,0xa5,0x44,0x5f,0xe7,0x6b,0xa7,0x68,0xa4,0x6f,0xc4,0x3a,0x89,0x3a,0x4f,0x74,0x3c,0x16,0x34,0xf2,0x38,0xb0,0xf0,0xd8,0x44,0x66,0x45,0x20,0x6b,0xa2,0xba,0x73,0x31,0xb1,0xde,0x37,0xe9,0x4c,0xa5,0x89,0xa8,0xba,0x5d,0x2,0x4a,0x3d,0xf6,0x6e,0x21,0x90,0x1f,0x46,0xa3,0xc4,0xb6,0xe2,0xe1,0xc9,0x1d,0x77,0x5,0x98,0x9,0x8e,0xd5,0x4e,0xe9,0xb0,0x97,0x6d,0x6c,0x26,0x66,0xe9,0x71,0xf8,0x3b,0x65,0xa7,0x16,0x57,0xc5,0x53,0x3d,0x5f,0x69,0x2e,0x13,0xcd,0xa5,0x7b,0xc7,0x11,0xe8,0x2a,0x5a,0xc9,0xff,0x47,0xcf,0xad,0xd9,0x65,0xa5,0x75,0x3d,0xba,0x5d,0x6b,0x83,0x1d,0xd7,0xd7,0x9e,0xbf,0x46,0x4f,0x6b,0x5c,0x95,0xe2,0xab,0xad,0x78,0xeb,0xea,0x72,0x36,0xf6,0x52,0x8d,0x35,0xeb,0xbd,0xec,0x10,0x57,0x1b,0x51,0xb7,0x5d,0xef,0x1a,0x95,0x2d,0x7a,0xd3,0xb2,0x37,0x74,0xff,0xcf,0x44,0x54,0xbf,0x43,0xd0,0xfd,0x5,0xdd,0x8b,0xce,0x1,0x4d,0xcc,0x7c,0x76,0x4c,0x52,0xd4,0xeb,0x35,0xa6,0xa9,0x79,0x60,0x60,0x51,0x17,0x7b,0x8b,0xb8,0x3b,0x44,0x68,0x89,0x49,0xd7,0x3f,0x7,0xe6,0xd7,0xd9,0x8a,0xd7,0xd5,0xed,0xba,0x43,0xfc,0x6c,0x3e,0x67,0x29,0x4d,0x48,0xd3,0x88,0xcd,0xad,0x3,0xb0,0xc0,0x92,0x61,0x18,0x86,0x61,0xbc,0x3d,0x98,0x0,0x68,0x18,0x86,0x61,0x18,0xc6,0x29,0xe1,0x43,0x9c,0x9,0x4,0xe4,0x90,0xc3,0x7c,0x8e,0x58,0x33,0x5f,0x4c,0x44,0x8e,0xe2,0xd8,0x49,0x57,0x5a,0x3f,0x50,0x8d,0x4,0xfa,0x9d,0xe,0x2a,0x76,0xcb,0xc5,0xd8,0x21,0xa7,0x54,0x67,0xfc,0x35,0x2e,0x26,0x3d,0x8f,0xf,0x24,0x8,0xa6,0x4,0xf1,0x0,0xa6,0x69,0x42,0x8,0x1,0x80,0xe3,0xb9,0x82,0x53,0x9d,0x53,0xa6,0xf7,0x51,0x78,0x66,0x1a,0x8b,0x19,0x5,0x32,0x59,0x6d,0x36,0x8b,0x4f,0xe6,0xb0,0x15,0x0,0x21,0xd2,0x9c,0x36,0x40,0x84,0xb2,0xcc,0x2f,0xf1,0x3a,0x77,0xad,0x80,0x1d,0x80,0xce,0xa3,0xa4,0x89,0x75,0xb,0xc7,0xf3,0xe2,0xd8,0xd1,0x97,0x73,0x23,0xec,0xb0,0x0,0x23,0xe6,0x32,0x57,0xe0,0xf8,0x58,0x70,0xbe,0x3a,0x18,0x4b,0x99,0x39,0x2a,0xdb,0xeb,0xae,0xe2,0x48,0xeb,0x73,0xa4,0xeb,0x13,0x61,0x49,0x84,0xb3,0x2a,0xcc,0xb9,0x1d,0xc7,0x14,0x2f,0x16,0xb,0xb6,0x5,0xfa,0x7d,0x71,0x5b,0xee,0x35,0xe7,0x51,0xbf,0xc6,0x51,0x70,0x39,0x8f,0xdb,0x33,0x6,0xcd,0x82,0x53,0x69,0xaf,0xd7,0x55,0x17,0x9d,0x8,0x8a,0x32,0x37,0xae,0x11,0x94,0xa,0xcf,0xbe,0xd3,0x59,0x7a,0x2,0xb,0x6d,0xb3,0x38,0x29,0x76,0x3a,0xcb,0x5c,0x23,0x2,0xd3,0x9,0x5c,0xe3,0xe0,0xcb,0x3b,0x22,0xa6,0x3b,0xe3,0xe0,0x22,0xee,0xa2,0x54,0xd1,0xba,0x3a,0x5f,0x5b,0xa1,0x70,0x8f,0xfb,0x6d,0xbe,0xa5,0x2,0x65,0xae,0x73,0x11,0x4b,0x11,0xd7,0x5b,0xd1,0xcf,0x51,0x9e,0xc5,0x78,0x9b,0x67,0xea,0x50,0xc5,0x43,0x16,0xd2,0xea,0xe7,0x66,0xc7,0xf9,0x1b,0xb7,0x61,0xeb,0xe7,0xa3,0xe7,0x98,0xeb,0x91,0x4b,0x75,0xbd,0xd6,0x25,0xf5,0x80,0x2b,0x3a,0x7,0x51,0x45,0xd8,0x3d,0x16,0x48,0x9e,0x45,0x2b,0xfe,0x55,0x17,0x21,0xf4,0x6b,0xb3,0x7f,0x1c,0x28,0xf3,0x59,0x9a,0xbb,0x1c,0x80,0x8d,0x6b,0x18,0x3b,0x8e,0x65,0x18,0x86,0x61,0x18,0xc6,0x5b,0xf8,0x59,0xde,0x96,0xc0,0x30,0xc,0xc3,0x30,0x8c,0x53,0xfa,0xa1,0xc1,0xd7,0x62,0x80,0xa2,0x91,0x53,0xcc,0xb,0x11,0x6a,0xc3,0x6,0x8b,0x76,0x55,0x4,0x20,0xb7,0x11,0x89,0x1c,0x52,0x80,0x21,0x4e,0xb9,0x52,0x8a,0x96,0x18,0x90,0xf8,0xd7,0x23,0x73,0xa1,0x80,0x26,0x2b,0xf9,0xf7,0x99,0xb,0x27,0x9c,0xf3,0x54,0x34,0x2,0x2e,0xc,0x61,0xc1,0xce,0x7,0x2a,0x87,0x48,0x69,0x22,0xd7,0x9e,0xf3,0xf0,0x21,0xd4,0xb2,0x7,0x90,0x60,0x18,0x63,0x7,0xe7,0x1c,0x62,0xd7,0xb1,0x3,0x91,0x22,0xba,0x6e,0x87,0x70,0xe1,0x9c,0x47,0x8c,0x9d,0x96,0x34,0x78,0xef,0xf9,0xfa,0x4b,0x15,0xba,0x9a,0x82,0x88,0x92,0x59,0x90,0xe4,0xdf,0xab,0x28,0x52,0xc4,0xd9,0x57,0xb,0x30,0xa,0xe6,0xbf,0xa7,0x2,0x8b,0xa2,0x45,0x9,0x59,0xc4,0x22,0x5e,0x6a,0xb9,0x87,0x5a,0x94,0xe2,0x66,0xf2,0x5f,0x9d,0x7b,0xd8,0xce,0x50,0x14,0x31,0x96,0xaf,0xd7,0x61,0xe6,0xaa,0x54,0x11,0xaa,0x15,0x6f,0xc1,0x22,0x5f,0xd9,0x4b,0xd4,0x2a,0x5c,0x0,0xb2,0x33,0xce,0xed,0x54,0xc8,0xda,0xe9,0x8a,0x6b,0xc5,0xaf,0xb9,0x7e,0xe7,0x55,0x0,0x73,0x40,0x23,0xbc,0x42,0xd7,0x1a,0x68,0x4,0x63,0x60,0x7e,0x4c,0x89,0x8c,0xe7,0xbc,0xeb,0x98,0xbb,0xaf,0x7b,0x87,0x4b,0xb0,0x89,0x9b,0xb6,0xe,0xcb,0x32,0x9b,0xf7,0xc8,0xc2,0xa2,0x88,0x56,0xed,0xb5,0xb7,0xd7,0xb4,0xe3,0xf2,0x44,0x98,0x73,0x4d,0xc1,0x85,0xac,0x33,0x7d,0x3f,0xcf,0xd6,0xdb,0x79,0xa7,0x8e,0x5a,0xdd,0x47,0x33,0xb1,0x93,0xae,0x55,0xf6,0x7b,0xfb,0xb9,0xd2,0x35,0x6b,0xb5,0x32,0x87,0x46,0xac,0xd,0xf4,0x4c,0x1c,0x9a,0x58,0x7b,0xdd,0xdb,0xb3,0xfd,0xa4,0xc2,0xe4,0x8e,0x48,0xff,0x1e,0x9c,0x74,0xd6,0xa0,0x73,0xb3,0xf5,0xa9,0xf7,0x5c,0x66,0x5,0x36,0xb3,0x3f,0x2e,0x9a,0x67,0xd2,0xba,0x37,0xdd,0xaf,0x72,0xd6,0xa2,0x61,0x18,0x86,0x61,0xfc,0xff,0xed,0x67,0x79,0x5b,0x2,0xc3,0x30,0xc,0xc3,0x30,0x4e,0x85,0x34,0xd,0x40,0x33,0x37,0x6e,0xf6,0x17,0x76,0xb1,0x6e,0x35,0x8e,0xb4,0x36,0xbe,0x2a,0xaf,0x25,0x51,0xd0,0x37,0xed,0xaa,0x89,0x1d,0x73,0x4e,0xe3,0xbb,0xde,0x7,0x64,0x76,0xda,0x69,0x74,0xd4,0x57,0x31,0x2d,0x84,0xa8,0xef,0x9,0x31,0x90,0xa3,0xaf,0x14,0xfa,0x7a,0xd3,0xec,0xeb,0x59,0x58,0x11,0x5,0xd1,0x3b,0x5f,0xa3,0xba,0x2c,0x56,0x89,0xe8,0x52,0x50,0xd0,0xf5,0x8b,0x59,0x3,0xb1,0xf3,0x41,0xa4,0x17,0xa4,0x69,0x84,0x6f,0x66,0xfb,0x69,0xcb,0x2c,0xdf,0x9f,0x88,0x1d,0x5e,0x4,0x15,0x3e,0xaf,0x8,0x2a,0x21,0xc6,0xaa,0x74,0xf0,0x75,0x91,0x28,0x59,0x9d,0x68,0x21,0x4,0x3e,0x2f,0x5d,0x9b,0x1c,0x2b,0x17,0x12,0xa0,0xb2,0x44,0x9f,0x9b,0x6,0x5d,0x11,0xce,0xb4,0x55,0x59,0x22,0xad,0xb9,0x71,0x5b,0x36,0xe,0x2c,0x27,0x42,0xa2,0x6f,0xe7,0xe,0x42,0x1b,0x6e,0x75,0x6c,0x1d,0xdf,0x67,0x8d,0xd6,0x4a,0x44,0xd9,0x35,0x42,0x2a,0x9a,0x28,0x6b,0x13,0x15,0x6d,0x23,0xe1,0x6d,0x53,0xad,0x5e,0x7,0x3f,0x1f,0x6e,0x46,0x6e,0xdf,0xe4,0x58,0x24,0xae,0xae,0xb3,0x1d,0x8d,0xce,0x3b,0xf6,0xe4,0xde,0x73,0x7,0x73,0x73,0x2c,0xec,0x72,0xac,0xcd,0x44,0xa5,0x76,0x5d,0xf8,0xf5,0xb2,0xf,0xe5,0xba,0x48,0x40,0xab,0x5,0x15,0xf5,0x58,0xb5,0x75,0xb7,0x6d,0x6a,0x6e,0x8f,0x2b,0x73,0x25,0xa5,0x2c,0x67,0x26,0x90,0xb5,0xce,0x38,0x11,0x51,0x45,0x34,0xe7,0xfd,0xbc,0x47,0x23,0x4b,0x73,0x7c,0x37,0x6f,0xbc,0x76,0x4d,0xfc,0xbe,0x8d,0xa4,0xb3,0x58,0x3b,0x2f,0xdc,0x28,0xbb,0xe2,0xc5,0x4e,0x22,0xbf,0xb3,0x28,0x2f,0x76,0x7c,0xdf,0xed,0x6a,0xd9,0x6e,0xbf,0xdf,0x32,0x8f,0x88,0xbb,0xbd,0x5b,0xb7,0x9b,0xa7,0x3f,0x2f,0x29,0x91,0xf5,0x4b,0xb3,0xfd,0x66,0x18,0x86,0x61,0x18,0xc6,0x2f,0x8f,0xfd,0x5f,0x54,0xc3,0x30,0xc,0xc3,0x30,0x4e,0x9,0x11,0xc4,0x0,0xa8,0x33,0x4b,0xc5,0x2f,0x4d,0xcc,0xba,0xb9,0x18,0x50,0xda,0xc8,0x21,0x89,0x10,0xd5,0xa3,0x46,0x22,0x97,0x8,0x70,0xc0,0x7c,0xde,0x18,0xb9,0xe8,0x1c,0x42,0x8c,0x24,0x18,0xb2,0x60,0x90,0x73,0x6e,0xdc,0x80,0x19,0x69,0x1a,0x1b,0x81,0xc2,0xc3,0x7b,0x8f,0x10,0x2,0x72,0xd1,0x9c,0x24,0x4a,0x29,0x48,0x79,0x62,0x17,0x23,0x9,0xc,0x39,0x27,0x84,0x10,0xe9,0xf8,0x7c,0x2c,0x39,0x8e,0xcc,0x38,0x14,0xd1,0xf,0x8d,0x90,0x19,0x38,0xa,0x9d,0x75,0x46,0x60,0xbd,0x1f,0x71,0xce,0x55,0xf7,0x13,0xcd,0x28,0x24,0xb7,0x23,0x6b,0x3b,0x7c,0xed,0x25,0x97,0x59,0xbc,0x36,0xe5,0x34,0x5b,0x47,0x11,0x8f,0x9c,0x6a,0x36,0x24,0x1e,0xe5,0x94,0xeb,0xb1,0x45,0x9c,0x53,0x81,0xaa,0x71,0xf7,0xd5,0x6c,0xb3,0xa,0x2f,0x59,0xee,0x53,0x5e,0xa3,0x42,0x52,0xfd,0x91,0x90,0x44,0xb9,0x7a,0xc,0x72,0xab,0x89,0x3b,0x73,0xa7,0xe8,0x23,0xf2,0x8d,0xec,0x91,0x3a,0xdf,0x4f,0xef,0xb1,0x29,0x98,0x28,0x8d,0x6b,0x50,0xae,0xdf,0x79,0x5f,0x9f,0xb,0x1a,0xa7,0x62,0xa9,0x2,0xad,0xba,0xd2,0xf6,0x10,0xf0,0x66,0x71,0x52,0x16,0x40,0xe5,0x19,0x2,0x80,0xb,0x55,0x30,0xf5,0x3c,0x53,0x72,0xe7,0x4c,0xca,0xcc,0xb1,0x5e,0x11,0xc5,0xda,0xc2,0x96,0x9c,0x39,0x86,0x2e,0xae,0x56,0x3d,0xb5,0x53,0xb7,0x64,0x69,0xf6,0x9a,0xcc,0x97,0x94,0xbd,0x32,0x8f,0x4e,0x7,0x7d,0x6f,0xdd,0x73,0x3b,0x8a,0x4b,0x34,0x56,0x9b,0xaa,0xab,0xd3,0xb9,0x99,0x9b,0x54,0x22,0xd7,0xf2,0xfe,0xf6,0xba,0x80,0xc6,0x11,0xd9,0xcc,0xdb,0x6b,0x9f,0x81,0x1c,0xdf,0x35,0x4e,0xc3,0xd2,0x14,0xa9,0xec,0x2d,0xf0,0xf9,0x99,0x9b,0x6f,0xd7,0x9f,0xf,0x3b,0xca,0x45,0x66,0xc7,0x28,0xbb,0xe7,0x24,0x6a,0x89,0xa,0x3f,0xf3,0xdd,0x47,0xac,0xff,0x90,0x60,0x18,0x86,0x61,0x18,0xc6,0x5b,0xc7,0x66,0x0,0x1a,0x86,0x61,0x18,0x86,0x71,0x4a,0x88,0xe8,0x40,0xe2,0x41,0x6e,0x66,0x96,0xb1,0x70,0xa6,0x2d,0xb4,0xa8,0xb3,0xf2,0x9c,0xa3,0xe2,0xd,0x54,0x47,0x1b,0x9c,0x83,0x6b,0xe2,0x8a,0xde,0xcf,0x23,0xb1,0xe0,0xb2,0xe,0x1f,0x1a,0xc1,0x91,0xff,0x3b,0x4f,0x93,0xc6,0x63,0xc9,0xd,0x48,0xd1,0x5c,0x71,0x10,0x89,0x63,0xa8,0xe4,0xc4,0x73,0x0,0xd1,0x88,0x3f,0x71,0x2e,0x5e,0xb0,0x38,0x32,0x8d,0x3,0x5d,0x63,0xce,0x62,0x43,0xd2,0x7b,0x49,0x29,0xa9,0xa0,0x23,0xd1,0x63,0xbd,0x66,0xc7,0xf3,0x6,0x63,0x64,0x21,0x26,0x37,0xb3,0xfe,0x30,0x8b,0x0,0x43,0xa,0x4f,0x0,0x2e,0x99,0x48,0x8d,0xe8,0x59,0xcf,0x29,0xb3,0xe5,0xe8,0x57,0x8e,0x36,0xe7,0xc4,0x8e,0x46,0x16,0x1b,0x5d,0x51,0xa1,0x4b,0x5d,0x65,0xea,0xb0,0xc2,0xbc,0xb,0x44,0x66,0xf2,0xf1,0xac,0xbf,0xda,0xfc,0xeb,0x9a,0x67,0x5a,0x8d,0x66,0x22,0x50,0xe9,0xdc,0x41,0xe7,0x67,0x31,0xef,0x36,0x1e,0x5a,0x66,0x31,0x4d,0xa7,0xcf,0x8e,0x9f,0x4,0x76,0x96,0x86,0xb8,0x59,0x11,0xc5,0xbc,0x98,0xa4,0x34,0xee,0xb8,0x52,0xda,0x28,0xf3,0xdc,0x49,0x38,0x2f,0x91,0x80,0xc,0x4e,0x44,0x73,0x60,0x9d,0x5d,0xa7,0xe2,0x28,0x5f,0x93,0xf7,0xbe,0xd9,0xab,0x3b,0x6a,0x50,0x5c,0x23,0xd8,0x36,0xa5,0x1c,0x35,0xea,0xcd,0x6e,0x4b,0x5f,0x37,0x4e,0x66,0x17,0xab,0x14,0x60,0xd0,0x3e,0xce,0x33,0x91,0x92,0x62,0xe3,0xf4,0x9c,0x76,0xcf,0x45,0x7c,0x13,0xc7,0x5d,0x53,0xb2,0x31,0x7b,0x40,0x70,0x8,0xc1,0xd3,0xbe,0x6c,0x85,0xba,0x2c,0x6b,0xe5,0x81,0x1d,0x62,0xba,0x9c,0xb5,0x15,0x31,0xeb,0x73,0x2f,0x7b,0x3e,0x93,0x56,0x18,0x6c,0x85,0x50,0x11,0xb0,0xb1,0xc7,0xb3,0x54,0x37,0x67,0x33,0x9f,0x10,0x3b,0xce,0x57,0xe3,0xf0,0x3c,0x5f,0x93,0xaf,0x59,0x3f,0x7b,0xad,0x60,0x2d,0xfb,0x71,0x47,0x31,0x8a,0x61,0x18,0x86,0x61,0x18,0xbf,0x1c,0xe6,0x0,0x34,0xc,0xc3,0x30,0xc,0xe3,0xd4,0x7e,0x68,0x68,0x1c,0x80,0x3b,0x1b,0x7f,0xbd,0xf,0xea,0x30,0x12,0x51,0xa4,0x75,0xc,0xb5,0x73,0xcd,0x44,0x78,0x50,0x27,0x52,0x4a,0x55,0x14,0xe0,0x52,0xd,0x11,0x93,0x2,0x8b,0x7d,0x22,0xee,0x84,0x18,0x69,0x26,0x5f,0xd7,0xa9,0x2e,0xe2,0x64,0x1e,0x60,0xae,0x85,0x6,0x12,0x11,0x96,0xf3,0xf8,0x50,0x85,0xad,0xd8,0x75,0x2a,0xd0,0xe5,0x9c,0x49,0x3c,0x53,0x17,0x9a,0xab,0x4d,0xad,0x2c,0xe6,0x88,0x3,0xad,0x8d,0x86,0xca,0x3c,0x38,0x72,0xe4,0x25,0x75,0x8f,0x85,0x10,0xe9,0xde,0x7d,0xa0,0xb8,0x2e,0x8b,0x7a,0x69,0x1a,0xf5,0x5a,0x52,0x33,0xb7,0x50,0xe3,0xc9,0x21,0xd4,0xb9,0x7d,0x52,0x8,0xc1,0x25,0x13,0x22,0xf0,0x89,0xf3,0xcb,0xa1,0xce,0xc6,0xab,0x11,0x5b,0xe8,0x7b,0xda,0xd9,0x6b,0x74,0x2c,0xcc,0x4,0x3c,0x5a,0xb,0x71,0xda,0xc9,0xb3,0x72,0xbc,0x1e,0xa9,0xae,0x99,0x67,0x31,0x69,0x47,0x9,0x84,0xe7,0xb5,0x92,0x5f,0x5b,0x3d,0x55,0xce,0x21,0x73,0xed,0x6a,0xac,0xb4,0x34,0xf3,0xe6,0x6a,0xf4,0x54,0x84,0xc6,0xfa,0x8c,0x9a,0x86,0xe1,0x56,0xf8,0x91,0x36,0x69,0x11,0xa0,0x9a,0xd9,0x90,0x68,0x1a,0x66,0x7d,0x33,0xe7,0x71,0xd6,0x7a,0xec,0xd0,0xcc,0x2d,0xe4,0x98,0xf1,0xe,0xf7,0xe0,0x1c,0x8a,0x28,0x53,0x1,0x8d,0xab,0xe,0x3a,0xb9,0xba,0xa6,0x39,0x3a,0xe7,0xcc,0xfb,0x74,0x2e,0xe4,0x89,0x90,0x49,0xae,0x48,0x68,0x59,0x8a,0xcc,0xb6,0x54,0x31,0xd5,0xd5,0x58,0xbd,0xab,0x95,0xc6,0xba,0xc6,0x75,0x96,0x23,0xad,0x17,0xb5,0x53,0x7,0xbd,0xce,0xb9,0xa3,0xb1,0xcc,0x5c,0x90,0xad,0x6b,0x51,0xf6,0x90,0xce,0xcd,0xdc,0xc3,0x3d,0xa9,0xf3,0x3c,0x73,0xd9,0xf5,0x7d,0xf0,0xae,0x91,0xcf,0x52,0xbb,0xcf,0xe4,0x3a,0x65,0x5d,0x5b,0x27,0x6b,0x49,0xa9,0x39,0x47,0xfd,0x47,0x4,0xbd,0x5e,0x71,0x2b,0xee,0x9c,0x15,0x8,0x79,0x66,0xf6,0x67,0xaf,0x61,0x18,0x86,0x61,0xbc,0x2d,0x3f,0xcb,0xdb,0x12,0x18,0x86,0x61,0x18,0x86,0x71,0x2a,0x14,0x8e,0x76,0xb6,0x62,0x1,0x40,0xa2,0x4b,0x4e,0xa9,0x46,0x25,0xd1,0x44,0x3c,0xd9,0x75,0x25,0xe,0xbb,0xc2,0x5,0x1c,0xce,0x57,0xf7,0x1a,0x9,0x50,0x60,0x11,0xae,0x8a,0x51,0xe2,0xf4,0x53,0x11,0x87,0x63,0xa5,0x3e,0x4,0xa4,0x69,0x62,0xe7,0xd5,0xc4,0xc2,0x5c,0x15,0x34,0xaa,0x8b,0x8d,0x4,0x44,0x9a,0xa5,0x56,0xbf,0x9f,0xa6,0x69,0x36,0xb,0x50,0x84,0x9,0x1f,0xc2,0x2c,0xa2,0xa9,0xa2,0x66,0x3b,0xb,0xaf,0x89,0x60,0xea,0x2c,0xbe,0xc6,0xd8,0x25,0xaf,0xcd,0x39,0x69,0xdc,0xb4,0x94,0x5a,0xa0,0x42,0xe7,0xf1,0xb5,0x51,0x99,0xdd,0x7f,0x39,0x4d,0xdc,0x86,0x9c,0xd5,0x11,0x59,0x63,0xc0,0x5e,0x63,0xbd,0xb2,0x14,0x74,0x7c,0xaf,0x42,0x4f,0x15,0x50,0xd8,0x89,0xc5,0x6b,0xa8,0x45,0x1f,0xa8,0x73,0xe1,0x24,0x42,0x2c,0xf7,0xdd,0x3a,0x22,0x5b,0x97,0x5a,0x9e,0x35,0xcc,0x56,0xa1,0x55,0xee,0x2f,0x97,0x1a,0x79,0x46,0xb3,0xfe,0x3a,0xb7,0x11,0x35,0x96,0x5d,0xa3,0xc2,0x4e,0x45,0x46,0x3d,0x29,0x23,0x42,0xb0,0xa,0x4f,0x33,0x27,0x1a,0x3b,0xd0,0x7c,0x9d,0x15,0xd9,0x16,0xa1,0xc8,0xec,0x3c,0x5a,0xbf,0x30,0x73,0x94,0x96,0x42,0xf1,0x71,0x59,0x2b,0xf9,0x5a,0x2d,0x24,0x69,0xe6,0x14,0xfa,0x46,0x48,0x16,0xb9,0x2f,0xe7,0x46,0xbc,0x9a,0xbf,0x1e,0xe,0x33,0x91,0xba,0xdd,0x23,0xde,0xd7,0xf2,0x17,0xfe,0x26,0x9,0x68,0xcd,0xfe,0x94,0xb5,0xf1,0x8d,0x60,0x5d,0xcf,0xd5,0x88,0xc5,0xce,0xcf,0x4a,0x51,0xda,0x35,0x9c,0x47,0x6d,0xe7,0x2,0xeb,0xcc,0xd5,0xe7,0x5d,0xf3,0xf9,0x6a,0x4a,0x46,0x76,0xb4,0x2a,0x4b,0x51,0x8c,0x5c,0xa3,0xac,0x95,0x88,0x93,0x12,0x21,0x6f,0x45,0x4b,0x89,0xeb,0xa3,0x11,0xeb,0xdb,0x7b,0x94,0xfd,0xa9,0xe2,0xab,0xee,0xd7,0xa6,0xad,0xd9,0x69,0xf,0xf7,0xee,0xe2,0x10,0xc3,0x30,0xc,0xc3,0x30,0xde,0x32,0x26,0x0,0x1a,0x86,0x61,0x18,0x86,0x71,0x4a,0xe8,0xbc,0xae,0xf6,0x2f,0xf9,0x22,0x8,0x48,0x6b,0x6b,0x68,0x66,0xac,0x15,0x68,0x83,0xaa,0x34,0xe8,0xca,0x6b,0xe4,0xef,0xff,0x8e,0x45,0x2c,0x11,0x45,0x66,0x82,0x7,0x8b,0x6f,0x8e,0xa3,0x95,0x22,0xa8,0xa4,0x71,0xd0,0xd7,0xcc,0xc5,0x29,0x37,0x77,0xb4,0x79,0x4f,0x62,0x9f,0xba,0xa0,0x48,0xcc,0xf2,0x1c,0x8b,0xf5,0xde,0x23,0x76,0x3d,0x3b,0xad,0xe2,0x7c,0xe6,0x9f,0x50,0xa8,0xc0,0x23,0xc6,0xd8,0x68,0x24,0xe,0x8e,0x1d,0x5f,0xa1,0xeb,0xf8,0x3e,0xe8,0xb8,0x22,0x88,0xb5,0xd7,0x20,0x33,0xf4,0x9c,0xf3,0x8,0xdc,0x3c,0x2c,0xd1,0x68,0xfd,0x81,0x8c,0xd7,0x44,0xe3,0xcd,0x72,0xee,0x10,0xb5,0x60,0xa5,0x6d,0xee,0xd5,0x39,0x85,0x39,0x91,0x64,0xe2,0xab,0x68,0x52,0x1b,0x96,0xeb,0x63,0xaa,0xfa,0x9b,0x53,0xa7,0x9d,0xce,0x33,0xdc,0x11,0x95,0x15,0xc1,0x52,0x1c,0x7d,0x5a,0xe6,0x30,0xbb,0xe,0xdf,0xf4,0xbe,0x14,0x75,0xb6,0x39,0x2d,0x5a,0x29,0x5a,0x96,0x22,0x22,0xa3,0x8,0x6b,0x7a,0xcf,0xbe,0xa,0x4d,0xd5,0x7d,0xd9,0xc6,0x8f,0xdd,0x8e,0xf2,0x10,0xa8,0xdb,0x72,0xa7,0x38,0x54,0x72,0x9e,0x89,0x67,0xda,0x1e,0xac,0xf3,0x0,0x33,0xa,0x8b,0x66,0x22,0x30,0xa9,0xc3,0x11,0xb5,0x71,0x78,0xd6,0xec,0xdc,0x8a,0x57,0xc0,0xac,0x48,0x45,0x1d,0x98,0x7c,0x5f,0xad,0x90,0x46,0x5,0x37,0xa1,0x29,0x0,0x49,0xf0,0x21,0x6a,0xf1,0x8d,0x8,0xe3,0x54,0xc,0x53,0x45,0xd6,0x2a,0x3c,0xd6,0x19,0x90,0xb2,0xa7,0x24,0x1a,0xad,0x2d,0xc1,0xa8,0xe2,0xdc,0xac,0x98,0xa3,0x5a,0xef,0x54,0xcc,0x94,0x7d,0x2f,0xa5,0x2e,0x6d,0xb4,0x57,0xf6,0xa8,0x3,0x9a,0x35,0x73,0x33,0x61,0x58,0x84,0xf0,0xf6,0x33,0x2f,0xef,0xd1,0xb5,0x51,0x31,0xdc,0xa9,0x10,0x5d,0x9d,0xa7,0x79,0x26,0x8c,0x62,0x8f,0x19,0x8c,0x65,0xe7,0x9f,0x31,0xcd,0x9a,0x17,0x8b,0xff,0x1a,0x86,0x61,0x18,0xc6,0xdb,0x82,0x9,0x80,0x86,0x61,0x18,0x86,0x61,0x9c,0x12,0xad,0x98,0xa0,0x7f,0x39,0xe7,0xbf,0xb5,0xb7,0xf1,0x4c,0x75,0xc8,0x35,0xf1,0xd6,0x3a,0xb7,0xcf,0x6b,0xd1,0x81,0x67,0x11,0xad,0x75,0x12,0x49,0xe1,0x87,0x73,0x34,0xef,0x4f,0xa2,0xbc,0x72,0xfe,0x10,0x22,0x1c,0xb7,0xe5,0xc2,0x39,0xc4,0xae,0x23,0x21,0xc5,0x1,0xb1,0xeb,0x91,0xd2,0xa4,0xee,0x3b,0x94,0x82,0xd0,0xf5,0xdc,0xa2,0x5b,0x85,0x88,0x52,0x40,0x51,0x62,0x6e,0xa1,0xa5,0x58,0xb1,0xab,0xa2,0x8d,0xa7,0xa6,0x61,0xcf,0x45,0x22,0x52,0x12,0x22,0xc2,0x7,0xb5,0x14,0x27,0x84,0xd0,0xa1,0xf0,0x35,0xcd,0xae,0x4f,0xe2,0xb4,0xec,0x8a,0x22,0x81,0x31,0xa8,0xae,0x64,0x29,0xea,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x20,0x92,0x52,0x42,0x4e,0x9,0x89,0x1d,0x6f,0x21,0x46,0x8d,0xd9,0x96,0x1d,0x82,0x89,0x16,0x76,0x48,0x14,0x74,0x26,0x44,0xf9,0xda,0x4c,0x5b,0x9a,0x98,0x75,0xce,0x35,0x9a,0xcb,0xd7,0x22,0x91,0x53,0x6a,0x83,0x4d,0x3a,0x5f,0xb0,0x8d,0x58,0x8a,0x58,0xe9,0x76,0x44,0xb5,0x77,0x3e,0xdb,0x2a,0x2c,0xd6,0x88,0x70,0x15,0x58,0x4b,0x33,0x73,0x2f,0x34,0xe,0x45,0xb7,0x63,0x6,0xa0,0x47,0xce,0x4d,0xb4,0xb9,0x14,0x6d,0x26,0xf6,0x21,0x6a,0xb,0xb1,0x5c,0x83,0x2a,0x90,0xad,0xb,0xb3,0x71,0x28,0x96,0x82,0x59,0xe3,0x6c,0xfd,0x7e,0xfd,0x5a,0x75,0x14,0xb2,0x40,0xe8,0x6a,0x44,0x59,0xef,0xd5,0xbb,0x46,0x84,0xf3,0xb3,0xeb,0xe5,0x17,0x35,0x45,0x2b,0xae,0xce,0x6f,0x74,0x8e,0x4b,0x72,0x1c,0x42,0xec,0x54,0xf0,0x95,0xfd,0x2f,0x42,0xb6,0x8,0x69,0x25,0x17,0xa4,0x89,0xe6,0x64,0xe6,0xd4,0x3e,0x8f,0xea,0xce,0x94,0x7d,0xb7,0x33,0x5a,0xd,0x94,0x1d,0xd1,0xdd,0xe6,0xfa,0x5b,0x41,0x34,0x37,0x42,0xa8,0x77,0x33,0x77,0x67,0xd9,0x21,0xc6,0xd6,0x39,0x7d,0x8e,0xbf,0xe7,0x6b,0xe9,0x4c,0x23,0xe2,0xb6,0xaf,0xcd,0xba,0x6,0x75,0xe6,0xa2,0x43,0x33,0x77,0xd2,0xd5,0x88,0xbb,0xc4,0xb6,0x77,0x5d,0xb4,0xcc,0xcb,0xe4,0xff,0xde,0x29,0xf5,0x99,0xf8,0x67,0x18,0x86,0x61,0x18,0x6f,0x1f,0x26,0x0,0x1a,0x86,0x61,0x18,0x86,0x71,0x6a,0x3f,0x34,0xa8,0x63,0xaa,0x34,0x42,0x41,0x8d,0x56,0x7a,0x71,0xed,0x35,0x42,0x8a,0xf3,0x12,0xf,0xce,0x2a,0x84,0xb0,0xa2,0xa2,0xe,0x37,0x15,0x96,0x64,0xe,0x9f,0xab,0x73,0xcd,0x4a,0xd3,0xa6,0xea,0x7d,0x68,0x66,0x3,0x46,0xa4,0x69,0x84,0xf7,0x14,0x7,0x96,0x39,0x7e,0xb1,0xeb,0x49,0x80,0xa9,0xb2,0xf,0x62,0xec,0xe0,0x43,0x40,0x88,0x9d,0x46,0x36,0x43,0xec,0x74,0xae,0x9c,0x5c,0x5b,0xe6,0xe2,0xd,0x72,0xae,0x51,0x9c,0x39,0x76,0x1d,0xd2,0x34,0x91,0x98,0xc2,0xe2,0x5e,0x4e,0x93,0xce,0x87,0x93,0x79,0x7a,0x12,0xf1,0x15,0xd1,0x82,0x5c,0x5f,0x1,0x39,0x4d,0x0,0x8a,0x96,0x4f,0xe4,0xc2,0x22,0xa1,0xba,0xad,0xc0,0xa2,0xa5,0x14,0x79,0xf8,0x3a,0xb,0x4f,0xb,0x2f,0x5c,0x15,0x80,0x54,0x18,0x73,0xb3,0x48,0xea,0xcc,0x39,0xa8,0x73,0x10,0xe9,0x18,0x99,0x5d,0x82,0x12,0xa5,0x55,0xb7,0x5f,0x41,0xb3,0xd6,0x74,0xf9,0xea,0x44,0xd4,0x18,0xb2,0x9f,0x9f,0x87,0x85,0x45,0x8a,0x0,0x37,0xae,0xbb,0x5c,0x66,0x42,0x2d,0x50,0x6a,0xe4,0xb8,0x11,0x13,0xc5,0x9,0x2a,0x2d,0xc3,0x32,0x1f,0x4f,0x72,0xca,0x5a,0xa,0xc2,0x6d,0xd1,0x73,0x45,0xa8,0xa8,0x78,0x2c,0xc2,0x30,0x39,0x46,0x8b,0xba,0x32,0x65,0x4d,0x9b,0x77,0xf0,0x3d,0x37,0x82,0x26,0x3b,0xfd,0x44,0xa8,0x94,0x56,0x62,0x7e,0x41,0x8d,0xb8,0x72,0xc,0x57,0xd6,0xa0,0x46,0x6e,0xd1,0x8,0x9b,0x74,0x1f,0xb5,0xb0,0xa6,0x68,0x2b,0xb5,0xca,0x59,0xea,0xa4,0xf3,0xf3,0xb8,0xb5,0xf7,0xba,0x17,0x24,0x3a,0x8f,0x5d,0xb7,0x5b,0xdf,0x3b,0x8b,0xed,0xa2,0xba,0x67,0x45,0xb4,0x6d,0xa3,0xcf,0x24,0x4a,0xcf,0x5b,0x78,0x85,0xea,0xd2,0xac,0xef,0xa9,0x9f,0xcf,0xa4,0xc7,0xad,0xaf,0x77,0xf0,0xbe,0xa,0xdb,0xed,0x22,0xb7,0x65,0x34,0xb9,0x69,0xe6,0xd6,0x22,0xf,0x11,0x87,0x5d,0xfd,0xcc,0x17,0xd9,0xa3,0xfa,0x9,0xad,0x5b,0x72,0xd7,0x23,0xc7,0x6e,0xb7,0xa0,0x61,0x18,0x86,0x61,0x18,0xbf,0xe4,0xcf,0xf2,0xb6,0x4,0x86,0x61,0x18,0x86,0x61,0x9c,0xa,0x1a,0x3,0x6c,0xe4,0x8d,0x92,0x8b,0x46,0x2b,0x53,0x4e,0x3c,0xdf,0x4f,0x84,0xa7,0x1a,0xe5,0xf4,0x2c,0x72,0xf8,0x10,0xe6,0x2,0x95,0xfe,0xe5,0xbf,0xd4,0x32,0xd,0x3e,0x43,0x8c,0x1d,0xbc,0xf,0xea,0xb0,0x3,0x68,0xde,0xa0,0xb4,0xfc,0x76,0xfd,0x82,0x1d,0x7c,0x1d,0xc5,0x7d,0xc7,0x51,0xcf,0x23,0xc2,0x8a,0xb8,0xf5,0x74,0xee,0x9a,0x38,0x14,0x79,0xe6,0x9f,0x88,0x13,0xe3,0xb0,0x22,0x1,0xa6,0x90,0x93,0x50,0xde,0x2b,0x91,0x65,0xcf,0x6e,0x2c,0x8d,0x43,0x96,0x2,0x1f,0xb9,0x99,0x58,0x63,0x99,0x3c,0x63,0x50,0x9b,0x5f,0xc9,0xcd,0x86,0xc2,0x82,0x4c,0xeb,0x80,0x4,0x54,0x94,0x6c,0xe7,0xf8,0x49,0xf1,0x88,0xcc,0xb3,0xab,0xa2,0x18,0xaa,0x70,0x24,0xdf,0x43,0x9d,0xe9,0x56,0x9a,0xf8,0x28,0xf8,0x3a,0x45,0x88,0x23,0x57,0x9d,0xd7,0x79,0x73,0x22,0x24,0x55,0x41,0x56,0x22,0xbc,0x49,0x85,0x30,0xbd,0xa7,0xd6,0x1d,0xe7,0xf8,0xa9,0x3b,0xa8,0xc3,0x52,0x4,0x24,0x99,0x83,0x97,0x73,0x51,0xc7,0x61,0x9a,0x46,0xe9,0xdf,0xe0,0xc6,0xe6,0xa8,0xce,0x3b,0xbd,0x19,0x38,0x7d,0xce,0x12,0x23,0x4f,0x69,0xd2,0x48,0x73,0xdb,0x4,0x5d,0x4a,0x15,0x15,0x51,0xaa,0x8,0x47,0x3a,0x53,0x66,0x27,0x5d,0x75,0xe,0x4a,0x21,0x8a,0xc6,0x5c,0xb5,0x58,0xa5,0x54,0xd,0x54,0x9c,0x7a,0x8d,0xab,0xb2,0xa,0x75,0x4e,0xb,0x3a,0x44,0x80,0x96,0xd7,0x48,0x19,0x87,0x20,0x7b,0xb7,0x16,0xd1,0xb4,0x85,0x1a,0xe4,0x68,0x9d,0xc6,0x51,0xaf,0xbd,0xa8,0xc8,0xd8,0x46,0x9c,0xab,0x78,0x27,0x5,0x35,0xd2,0x30,0x2c,0xc7,0x6,0x50,0xb,0x76,0xf8,0x99,0x79,0x75,0xe,0x36,0x4e,0xd1,0x59,0xd9,0xc6,0x8e,0xe6,0x66,0x9e,0xe9,0x97,0x73,0xc2,0x34,0xc9,0x35,0x15,0x6d,0xf6,0x56,0xc7,0x1f,0xea,0xdc,0xc3,0x9c,0xa6,0x59,0x71,0x49,0xbb,0x96,0x3a,0xab,0x52,0xcf,0x58,0xe0,0x5c,0xbb,0x56,0x65,0xa6,0xea,0xed,0x74,0x98,0x16,0xec,0x35,0xeb,0xaf,0x71,0x3,0x96,0x6c,0x7f,0xf8,0x1a,0x86,0x61,0x18,0xc6,0xdb,0x40,0xb4,0x25,0x30,0xc,0xc3,0x30,0xc,0xe3,0x54,0x28,0x7b,0x44,0xf8,0xe6,0xb1,0x4e,0x6e,0x7e,0x85,0x43,0x71,0x5,0xde,0x5,0x2e,0x2b,0xc8,0x70,0x2e,0x52,0x69,0x44,0x4e,0x2c,0x62,0x84,0x5a,0xe6,0xe0,0x3d,0xf2,0x34,0x91,0xd8,0x53,0x80,0xe2,0x4a,0x75,0x8b,0x89,0x60,0xc4,0x62,0x13,0x5c,0x15,0x60,0xaa,0x40,0x47,0x6e,0xc0,0xd0,0xf5,0xf4,0xc3,0x4d,0x17,0x1a,0x41,0x7,0xe8,0xc2,0x42,0x67,0xf3,0xf5,0x8b,0x2d,0xac,0xb7,0x4f,0xcc,0xc4,0x14,0x11,0x5d,0x64,0xde,0xdf,0x34,0x8e,0x75,0x76,0x5b,0x13,0x63,0x4d,0x79,0x52,0x11,0xaf,0x20,0x6b,0x99,0x49,0xec,0x3a,0x75,0xb,0x96,0x52,0x10,0x63,0xf,0x71,0x44,0x79,0x1f,0x90,0xca,0x4,0x5f,0x9c,0x16,0x7f,0x94,0x9c,0x6b,0x69,0x82,0x77,0x4d,0xe4,0x17,0x5a,0xa,0xd2,0xa,0x4d,0x65,0x36,0x9b,0xcf,0xf3,0x72,0x94,0x2a,0x52,0x21,0x57,0x97,0x5b,0xa9,0x6d,0xbe,0x5e,0x5,0x41,0x16,0x12,0x59,0xb8,0x94,0x7b,0x4f,0xe3,0x38,0x8b,0xbc,0xaa,0x18,0xd8,0xb4,0xc8,0xca,0x22,0x8a,0x20,0x15,0xb8,0xd4,0x45,0xe6,0xd8,0x89,0xb3,0x4b,0xa,0x3a,0x44,0xe4,0x75,0x20,0x21,0x4f,0xe3,0xa4,0xa8,0xee,0x3f,0xbd,0x77,0x16,0x1e,0x8b,0x96,0xc1,0x4,0x15,0xe4,0x44,0xc0,0x4c,0x69,0x6a,0xca,0x4e,0x78,0xdd,0xe4,0xc1,0xa2,0x8a,0x9a,0x39,0x17,0x75,0x9b,0xea,0xbc,0xb9,0x46,0x3c,0xaa,0x5,0x26,0x45,0x45,0x2d,0x15,0x4f,0xb5,0xd5,0x37,0x34,0xf7,0x5b,0x1b,0x95,0x75,0xe6,0xa0,0x94,0xa3,0xe4,0x34,0x73,0xb7,0x6a,0x49,0xb,0xcf,0xc5,0x53,0x31,0xb6,0x54,0xb7,0xa0,0xec,0x5,0x47,0xea,0x29,0xcf,0x72,0x2c,0x5a,0xe6,0x21,0x22,0x79,0x8d,0xd4,0xea,0xa7,0x6a,0xd6,0x3c,0xad,0x71,0x6a,0xef,0xe0,0xf9,0xdf,0xf1,0x93,0xac,0x9,0xa0,0xb1,0x5f,0x3a,0xe7,0x34,0xdb,0xe3,0xb4,0xa7,0xc5,0xc1,0xdb,0x44,0xc9,0xbd,0x9f,0xb5,0x2d,0xfb,0x18,0x51,0x72,0x99,0x95,0xd1,0xf0,0xe0,0x43,0xbd,0x37,0x9d,0x4f,0xc8,0xfb,0x50,0x9c,0xb2,0x9e,0xf7,0x6c,0xce,0x24,0x82,0x8b,0xf3,0xb5,0x4d,0x62,0xb7,0x7f,0x8e,0xb4,0xc7,0xd0,0xfb,0x96,0x4b,0xdc,0x31,0x6b,0xd4,0x30,0xc,0xc3,0x30,0x8c,0xb7,0x86,0x39,0x0,0xd,0xc3,0x30,0xc,0xc3,0x38,0x25,0x26,0x2e,0xdf,0x68,0x45,0x92,0x9d,0x3,0xfb,0x65,0x4e,0x5d,0x4e,0x49,0xa3,0x90,0xce,0x79,0x12,0x72,0x58,0x18,0x92,0xbf,0xdc,0xe7,0x9c,0x30,0x8d,0x83,0x8a,0x46,0x25,0x93,0x38,0x15,0x23,0xcd,0xf5,0x13,0xf7,0x9f,0xcc,0xd5,0x2b,0x28,0x88,0xb1,0xab,0x22,0x1,0xc0,0x11,0xe0,0x91,0x8a,0x3a,0xba,0x4e,0x5,0x29,0x2d,0x35,0xd0,0x36,0x59,0x2a,0xe0,0x10,0x97,0x53,0x8c,0x1d,0x2,0xbb,0xcb,0xe4,0x57,0x17,0x2,0xa6,0x71,0x44,0xd7,0x2f,0xa8,0xe0,0x83,0x23,0xc3,0x72,0xf,0x21,0x4,0x38,0x1f,0xe0,0x3d,0x1d,0x4b,0xee,0xc7,0xfb,0x0,0x1f,0x22,0x72,0xaa,0x42,0x9e,0x8,0x51,0x24,0x16,0xf9,0x59,0x53,0xac,0xf,0xb5,0x69,0x58,0xfe,0x9f,0x88,0x9f,0x5a,0xf0,0x90,0x4b,0x33,0x3b,0xcf,0xeb,0x75,0x56,0xf7,0x54,0xd1,0x72,0x91,0xd6,0x3d,0xe7,0x9c,0x43,0x6e,0x66,0x8,0xfa,0xa6,0x14,0x45,0xe2,0xd7,0xe4,0xbc,0x74,0xfa,0xab,0x76,0x36,0x70,0x34,0xd4,0x35,0x4d,0xb0,0x29,0x4d,0xb3,0xe7,0x2b,0xe2,0x57,0x88,0x9d,0xc6,0xb7,0x51,0xca,0x7c,0xbc,0x1b,0x3b,0xc8,0x74,0x1e,0xa2,0xf7,0x2c,0x86,0x71,0xc3,0xae,0xba,0x0,0xe9,0xbe,0xf5,0xba,0xb5,0x44,0x44,0x5c,0x94,0x98,0xcd,0xb4,0x13,0xc1,0x48,0xa3,0xe2,0xba,0x6,0x45,0xe3,0xdc,0xda,0xde,0x8c,0xda,0x26,0xdb,0xba,0xe5,0xea,0xbd,0x78,0x15,0xdf,0xb4,0x28,0xa6,0xe,0xa3,0x53,0x27,0xa9,0xdc,0xbf,0x88,0x99,0x54,0x1a,0xc3,0x82,0x5e,0xb3,0xb6,0x5a,0x78,0xc1,0xfb,0x4b,0x36,0xa9,0x46,0xa8,0x4b,0x53,0x94,0xd1,0xcc,0xf0,0xa3,0xbd,0x11,0x9b,0xf9,0x93,0x5e,0xe7,0x47,0x4a,0x61,0xc8,0xec,0x9a,0x9b,0x12,0x14,0xd9,0x1f,0xb2,0x1f,0x25,0x2a,0x5f,0x85,0xd3,0xea,0x50,0xad,0x91,0xdb,0xba,0xc7,0xd4,0xed,0xd8,0xcc,0x1d,0x54,0x77,0x6b,0xd3,0x86,0x9c,0x52,0x9a,0xcd,0x9e,0x94,0x2,0x15,0x89,0xe9,0xe7,0x9c,0x91,0xa7,0xba,0xdf,0xdb,0x73,0xd4,0x19,0x84,0xbe,0x29,0x77,0xa9,0x6d,0xd3,0xf3,0x7b,0x1,0x54,0xf0,0x6c,0xe3,0xe4,0x26,0xfe,0x19,0x86,0x61,0x18,0xc6,0xdb,0x82,0x39,0x0,0xd,0xc3,0x30,0xc,0xc3,0x38,0x25,0x9c,0xce,0x14,0xd3,0x5c,0xa8,0xa,0x2,0x55,0xc0,0xa9,0xae,0x31,0x71,0xe8,0x89,0x28,0x20,0x8e,0xba,0x92,0x5a,0xd7,0x13,0x17,0x6a,0xc4,0xe,0xce,0x3,0x31,0x74,0xc8,0x69,0x52,0x41,0x43,0x5,0xa7,0xae,0xa3,0xf3,0x83,0x5,0x34,0x15,0x5e,0x1c,0xfa,0xb8,0xa1,0x42,0x4e,0x8c,0x5d,0x35,0x33,0xe5,0x84,0xe0,0xa3,0xea,0x31,0x22,0x26,0xf4,0x8b,0x25,0x9,0x2c,0x21,0xea,0xb5,0x95,0x52,0xd0,0xf1,0x5c,0x40,0x89,0x7c,0x92,0x68,0x21,0xaa,0x50,0x51,0xb1,0xa,0x3e,0x22,0xa5,0xa4,0xf7,0x27,0x31,0xcf,0x18,0x3b,0x4c,0x69,0xd4,0xb9,0x67,0x25,0x67,0xc4,0xbe,0x6f,0x84,0xa4,0x3a,0x3,0x4d,0xe2,0xb4,0x14,0xa5,0xe5,0xf8,0x2a,0xb8,0xc1,0x56,0xc4,0x29,0xc8,0xcc,0xc5,0x2a,0x8a,0x14,0x9e,0xaf,0x96,0x53,0x9d,0x3b,0x98,0x39,0xd2,0x59,0x4a,0x41,0xe8,0x3a,0x4,0x44,0x75,0xca,0x15,0x8e,0x0,0x17,0x64,0x3d,0xbe,0x73,0x1e,0x2e,0x38,0x2d,0xa6,0x0,0xc0,0xb3,0xa,0x1d,0x90,0xd9,0x8d,0x17,0x1c,0xaf,0x51,0x98,0xb9,0xf6,0xe4,0x39,0x23,0xa7,0x99,0x88,0xa5,0xbf,0xba,0x42,0x42,0xab,0xc4,0xb9,0x39,0xf2,0x4c,0xe2,0xf,0xc5,0xab,0x6b,0xc,0xbb,0xf0,0x79,0xc1,0xe7,0xf1,0x2a,0x32,0x3b,0x57,0x4b,0x3b,0x74,0x46,0x9e,0xab,0xd,0xba,0x55,0x68,0xe2,0xc2,0xe,0x2d,0x59,0x81,0xee,0x43,0x99,0x59,0x29,0xa5,0x1f,0xd2,0xd6,0x5c,0x52,0x5d,0x7,0x11,0xb3,0x44,0x9c,0x84,0x2b,0x3a,0x4f,0xd2,0xc7,0x2a,0x9a,0x16,0x8e,0x62,0xcb,0xdc,0xc9,0x18,0xfd,0xac,0xd9,0x5a,0xe6,0x37,0xa2,0x71,0xbc,0xe9,0xf1,0x25,0xc6,0x2c,0x33,0x26,0x53,0x82,0x7,0x8b,0xd7,0xba,0x4e,0x14,0x91,0x26,0xf7,0x5c,0x22,0x17,0x5e,0x2b,0x20,0x8a,0xb,0x96,0xb,0x63,0x64,0x3f,0x93,0xe0,0x47,0xa2,0xa2,0x38,0x28,0x5b,0xe1,0x31,0x84,0xa0,0x85,0x26,0x69,0x1a,0xb8,0xf5,0xd9,0x3,0x8d,0x50,0xe7,0xbd,0x9b,0x35,0x2b,0xd3,0xaf,0x49,0xf7,0x76,0x68,0x3e,0x27,0x6d,0x23,0xb3,0x8a,0x9d,0xa5,0xa0,0xb8,0x2,0x57,0x6a,0xd4,0xbf,0x60,0xee,0xe,0x6e,0x85,0xc1,0xda,0xd2,0xec,0x67,0x6e,0xcc,0x52,0x92,0xf8,0x59,0xad,0xfc,0xc3,0x30,0xc,0xc3,0x30,0x7e,0x5,0x98,0x3,0xd0,0x30,0xc,0xc3,0x30,0x8c,0x53,0xfb,0xa1,0x21,0xc6,0x59,0x4d,0x41,0xdb,0xec,0x5b,0xc5,0x2c,0x12,0xa,0xbd,0xf3,0xea,0xf2,0x3,0x8b,0x1d,0x24,0xc6,0xb1,0x83,0x4b,0x9c,0x5f,0xde,0x35,0x6d,0xa7,0xec,0x26,0xca,0x52,0xf,0x40,0x4e,0x3d,0xe7,0x1c,0xba,0x6e,0xd1,0x94,0x30,0x90,0x70,0x28,0xed,0xbd,0x72,0x2d,0xb1,0xef,0x59,0x14,0xa1,0xd6,0xe1,0xc0,0xff,0x93,0xf9,0x7c,0xde,0x79,0x74,0xfd,0x82,0xdd,0x80,0x74,0x2f,0x5d,0xd7,0xab,0xd3,0x30,0x4b,0x2b,0x6f,0x88,0xe4,0xfe,0x13,0xc1,0x22,0x27,0x9d,0x75,0xd6,0x96,0x32,0x78,0x9e,0xd5,0xa6,0x6b,0x81,0x8c,0xbe,0x5f,0xaa,0xa0,0x44,0x25,0x20,0x6d,0x81,0x86,0x9f,0x89,0x70,0x12,0xc7,0x15,0x51,0x85,0xae,0x39,0x72,0x8c,0xb8,0x6b,0x12,0xc1,0xae,0x8a,0x31,0x5d,0xc7,0xf1,0x4c,0xb9,0xef,0xa8,0xeb,0xeb,0xf9,0xbd,0x59,0x8a,0x36,0xb8,0x45,0x43,0x9a,0x7e,0x65,0x2d,0x64,0xde,0xa2,0x88,0x38,0xa5,0x11,0xf3,0xc0,0x4d,0xcc,0xd4,0x50,0xeb,0x54,0xfc,0xd3,0xd9,0x87,0xce,0xd7,0x32,0x8,0x6e,0xbe,0x6d,0x1d,0x5d,0x0,0xcd,0xba,0x73,0x9e,0x5,0xbc,0xa6,0xc5,0x39,0x76,0xbd,0xa,0x89,0xa5,0x64,0xc4,0x18,0x6b,0x34,0x97,0x1d,0x7a,0xe2,0xee,0x13,0x41,0x57,0x4,0x67,0xc7,0xe2,0x96,0xec,0x37,0x79,0xfe,0xb2,0x1f,0x68,0x76,0x64,0x6d,0xf5,0x15,0x17,0xa1,0xac,0x8d,0xcc,0xb3,0xd3,0x48,0x32,0x3b,0x4a,0xb5,0xd0,0xc3,0x93,0x1b,0xe,0xd2,0x1c,0xcc,0xf7,0x5d,0x64,0x7e,0x63,0xdb,0xbc,0xdb,0xc4,0xc3,0x81,0xd6,0xa1,0x58,0xd4,0x69,0x59,0x58,0x48,0xd6,0x98,0x30,0x6a,0x13,0x72,0x8c,0x3d,0x9c,0xf,0x98,0xa6,0xb1,0xa,0x88,0x9e,0x5,0x45,0x3e,0xa6,0x43,0x13,0xa7,0x66,0x27,0xa7,0x8,0xc0,0x59,0x5,0x74,0xbf,0x63,0x96,0x5e,0x61,0xa1,0x32,0x68,0xc4,0x3e,0xe7,0x42,0xb1,0x5c,0x76,0xa2,0x92,0x8,0x9e,0xd5,0x5d,0xe8,0x58,0x24,0x8d,0x5d,0x3f,0x9b,0xd5,0x29,0xce,0xd3,0xd6,0xf5,0xd7,0x7e,0x6,0x64,0xde,0x22,0x40,0xa2,0xa4,0x38,0x74,0xc5,0x6d,0xe8,0x54,0xf8,0x93,0x59,0x84,0xb5,0x81,0x59,0xaf,0xa3,0xb6,0xdc,0x68,0x9,0x4a,0x1,0x5d,0x2f,0x7d,0x11,0x35,0x96,0x6d,0x18,0x86,0x61,0x18,0x86,0x9,0x80,0x86,0x61,0x18,0x86,0x61,0xfc,0x9a,0x7e,0x68,0x68,0x84,0x13,0xb0,0x8,0x20,0xcd,0xbc,0xe,0xec,0x22,0x73,0xd0,0x68,0xa5,0xb8,0xba,0x50,0x40,0x82,0x92,0x43,0x33,0x57,0xaf,0xce,0x33,0xf3,0x4d,0xc4,0x97,0x84,0x22,0x9e,0x27,0xc6,0x2,0xa3,0xf,0x11,0xc3,0x7a,0x5,0x1f,0x2,0xba,0x7e,0xc1,0x2d,0xbe,0x91,0xe2,0xb8,0x81,0x22,0xb9,0x12,0xf9,0x8c,0x5d,0xaf,0xee,0xc2,0xd8,0xf5,0xe4,0x44,0xd4,0xd7,0xbb,0x59,0x14,0x11,0x2c,0xa0,0x4,0x3e,0x6,0x1c,0xd0,0xf5,0xb,0x8e,0x14,0x77,0xdc,0x1e,0xec,0xb1,0xd8,0xd8,0x24,0xe1,0xad,0x80,0x85,0xa8,0x42,0x31,0x61,0x29,0x4b,0x28,0x75,0x6e,0xde,0x34,0xd,0x33,0xe7,0x9a,0xe3,0xb6,0x57,0x11,0x8b,0x64,0x4d,0x28,0xb2,0xdc,0xab,0x38,0x27,0xd7,0xdc,0xba,0xe3,0xe0,0x80,0x18,0x22,0x89,0x7d,0xec,0xb4,0x22,0xe1,0xa5,0x71,0x5d,0x8a,0xa0,0x86,0xea,0x3a,0x14,0x2b,0x9c,0x88,0x67,0x22,0xa2,0xca,0x6b,0x54,0xb0,0x73,0xd5,0x59,0xe8,0xbc,0x88,0xa2,0x4e,0xe3,0xc7,0xce,0x3b,0x9d,0x73,0x28,0x45,0xe,0x3b,0xb,0x2b,0xa8,0x0,0x6,0xb3,0xd9,0x7d,0xde,0x7b,0xe4,0x94,0x91,0x53,0x2d,0x5c,0x91,0x72,0xf,0x89,0x68,0x7b,0x2f,0xad,0xcb,0x52,0x8,0x43,0x11,0x70,0x7,0x6e,0xc7,0xe5,0x6b,0x96,0xb2,0x11,0x11,0xa1,0x68,0x8d,0x48,0xbc,0x4c,0xd3,0xc4,0x73,0xf7,0x6a,0x81,0x8a,0xd3,0x26,0xdc,0x79,0xa1,0xc4,0xce,0x78,0xb3,0x73,0xe,0x81,0x9f,0x49,0x4a,0x93,0xc6,0x5e,0xa5,0x44,0xa3,0x46,0x9d,0x63,0xf3,0x7c,0xeb,0x73,0xf0,0x2c,0xa,0x6a,0x39,0x46,0x29,0xdc,0x2c,0xc,0xdd,0xa7,0x22,0xae,0xea,0x2c,0x3d,0x8d,0xcd,0x8a,0x8e,0xe8,0x6b,0xa1,0x87,0xb4,0x5e,0x37,0x73,0x18,0xc9,0x2d,0x49,0x9f,0xa5,0xcc,0xe5,0x38,0x22,0x9e,0x7,0x16,0xc6,0x76,0x46,0xb4,0x81,0x26,0x9e,0xcb,0x2,0x27,0x9,0xab,0x41,0xdf,0x5b,0x8b,0x49,0x3c,0x3f,0x13,0x72,0x36,0xca,0xba,0xd1,0x6b,0x92,0x3e,0xe3,0x94,0xc6,0x26,0x6e,0x1c,0xe6,0xa5,0x2a,0x3c,0xd7,0x50,0x3e,0x57,0xf2,0xfd,0x76,0x6,0x67,0x15,0x12,0xe7,0xa2,0x22,0x44,0x16,0x9d,0xcd,0x22,0x84,0xfe,0x79,0xd2,0x96,0x90,0x18,0x86,0x61,0x18,0x86,0xf1,0xd6,0xb1,0x8,0xb0,0x61,0x18,0x86,0x61,0x18,0xa7,0x44,0x3b,0x43,0x4d,0x5,0x19,0xef,0x80,0xcc,0x33,0xbe,0x90,0xd5,0xd,0x48,0x62,0x5f,0xe6,0x78,0x6f,0x54,0x77,0x9f,0xce,0x8d,0xe3,0x59,0x6f,0x2a,0x5e,0xb0,0xa0,0x40,0xf3,0xf8,0xaa,0x5b,0xae,0xeb,0x17,0x2a,0xba,0xc4,0xd8,0x21,0x4f,0x13,0xc5,0x81,0xd9,0x85,0x26,0x6d,0xb8,0x12,0x53,0x94,0x22,0x86,0xc4,0x6d,0xc4,0x12,0xb5,0xa4,0xf9,0x6a,0x24,0x56,0xf4,0x8b,0xd,0x75,0x23,0x49,0xe4,0x34,0xc4,0x6e,0xe6,0x3e,0x2a,0x25,0x23,0xb3,0xe0,0xe6,0x9c,0x47,0xec,0x16,0x18,0xf3,0x8a,0x84,0xc5,0x7e,0xa1,0x6d,0xb9,0xce,0x7b,0xf4,0x2c,0xe4,0x95,0x5c,0x85,0xc0,0xe2,0xa4,0x3d,0x35,0xb1,0x93,0x89,0xd6,0xa5,0x34,0x2d,0xb1,0xda,0x2a,0xec,0x1c,0x72,0x9a,0x34,0x52,0x2a,0xf7,0x9e,0xa6,0xa4,0xeb,0x41,0xa5,0x1e,0xdc,0xa4,0xcc,0xed,0xbc,0x99,0xe3,0xc0,0xc1,0x77,0x34,0x4b,0x11,0x89,0x23,0x9e,0x3c,0xfb,0xe,0x85,0x1c,0x88,0xd2,0xae,0xcb,0x82,0x19,0xdd,0x63,0xeb,0xc4,0xe2,0x16,0xe6,0x32,0x21,0x84,0xa0,0x73,0xb,0x51,0x68,0x5d,0xa4,0x35,0x37,0xe7,0x84,0x3c,0x25,0x8e,0x47,0xc7,0xea,0x50,0x2c,0x12,0x43,0x4e,0xb5,0xc,0xc3,0x39,0xb8,0x22,0x62,0x21,0xc7,0x4c,0xa5,0x44,0x23,0x25,0x3d,0x4f,0x69,0x84,0x44,0x71,0x84,0xb5,0x2,0x15,0x78,0x3d,0xe8,0x3d,0xb1,0xb6,0x1f,0x87,0xa0,0x73,0xf7,0x44,0x51,0xb,0x81,0x8a,0x66,0x44,0x58,0xa,0xb1,0x43,0x9a,0x46,0x12,0x8a,0x9d,0x43,0x71,0x1,0x69,0x9a,0x10,0x2,0x1d,0x6f,0x2a,0x9,0x31,0x76,0xe8,0xfa,0x5,0xc6,0x61,0xad,0x2e,0xb8,0xa2,0x2d,0xca,0x1c,0xa3,0x76,0xe,0x5d,0xd7,0x53,0xec,0x3b,0xd0,0x7c,0x41,0x69,0xb8,0x16,0x91,0x39,0xf8,0x5e,0x3e,0x14,0x80,0x73,0x98,0x38,0x2a,0x4c,0xa5,0x32,0x43,0x15,0x12,0x73,0x41,0xe2,0x82,0x8c,0xd8,0xd1,0x73,0xf3,0x3e,0x50,0xec,0x1b,0x19,0x12,0xe5,0x85,0xab,0x71,0x7b,0x8a,0x54,0x4f,0x28,0xda,0xf6,0xec,0x91,0x78,0xbd,0x44,0x58,0xa3,0x68,0x71,0x9e,0xb5,0x20,0xb,0x21,0x44,0x4c,0xd3,0xa8,0xf3,0x1,0x45,0x9c,0xcf,0x29,0xb3,0x28,0x1c,0x58,0xdc,0xf6,0xfa,0x6c,0x5a,0xa1,0x4e,0x3f,0xb3,0x0,0xa6,0x69,0x50,0xd7,0x66,0x4a,0xa3,0xce,0x9f,0x14,0xd1,0xb8,0x15,0xec,0x24,0x62,0xde,0x36,0x19,0x3,0x6e,0x36,0x73,0x50,0x23,0xc4,0xa5,0xc0,0x71,0x36,0xbe,0xf0,0xcc,0x41,0x20,0x63,0x2e,0xe4,0x1a,0x86,0x61,0x18,0x86,0xf1,0x56,0x30,0x7,0xa0,0x61,0x18,0x86,0x61,0x18,0xa7,0xf6,0x43,0x83,0xce,0x32,0x63,0xa9,0xa6,0x71,0xec,0x80,0xe7,0xa0,0x81,0x5d,0x66,0xd2,0x38,0xa0,0xe5,0x17,0x8e,0xfe,0x3b,0x4d,0x63,0x75,0x7,0x35,0x62,0xf,0xb9,0xf0,0x82,0x3a,0xf6,0x72,0xe6,0x12,0xe,0x76,0xb0,0xa9,0x9b,0x2f,0x46,0x75,0x1e,0x86,0x48,0x51,0x5d,0x99,0xf5,0x26,0x91,0x60,0xe7,0xa9,0x74,0xc3,0x73,0xf1,0x47,0xec,0x3a,0x15,0x7a,0x20,0x11,0x51,0x16,0x4e,0xa8,0xcc,0xa2,0xa3,0xf7,0xf8,0x38,0x13,0x23,0x63,0xec,0xb0,0xd8,0xd8,0x87,0xae,0x5f,0x20,0xa7,0x9,0xb1,0xeb,0x10,0x38,0x2e,0xec,0xbc,0xa3,0xe3,0x86,0x4e,0x45,0x42,0x71,0x23,0xb2,0xa5,0x8f,0xdc,0x85,0x31,0x2,0xe,0x5a,0x72,0x92,0xd2,0x34,0x8b,0xdf,0x8a,0x23,0x4b,0x45,0x17,0x54,0x1,0x27,0x4,0x16,0x82,0x72,0xe2,0x56,0xdd,0x3a,0x2f,0x4e,0x9e,0x7,0xb9,0xfb,0xa0,0x8e,0x48,0x38,0xcf,0x73,0xf5,0x8a,0x96,0x92,0x88,0xe0,0xd2,0xf5,0xb,0x75,0x8e,0x39,0x5f,0x63,0xaf,0xe2,0x7c,0x6b,0x23,0xce,0x1a,0x3b,0xce,0x19,0x89,0x85,0xba,0xae,0x5f,0x90,0x8,0x9b,0x53,0xfd,0x3a,0x7f,0x8f,0xda,0x5f,0x29,0x92,0xdc,0x3a,0xe1,0xe6,0xcd,0xd1,0xd0,0x96,0x58,0x71,0x60,0x4a,0xf4,0x59,0x1b,0x92,0xd9,0x89,0x27,0xe2,0x96,0x77,0xd5,0xdd,0xc7,0xf5,0xbf,0x14,0x97,0x9d,0x46,0x2e,0x8d,0x21,0x87,0x61,0xec,0x7a,0x12,0xff,0x74,0x1e,0x25,0x89,0x77,0x12,0xdf,0x15,0xf1,0xb5,0x63,0x87,0x68,0x8,0x91,0xc4,0x3c,0x1f,0x90,0xb9,0x30,0x43,0x4,0x4c,0x89,0xaf,0xeb,0xbc,0x43,0x8e,0x6a,0x87,0x10,0x38,0xaa,0x9c,0x6b,0x54,0xb9,0x8d,0x6,0xcb,0x99,0x38,0xce,0x4e,0xcf,0x80,0x67,0x4d,0xf2,0xb3,0x93,0xc2,0xe,0x69,0x5f,0x76,0x8d,0xb,0x53,0x1d,0x78,0xcd,0xfd,0x57,0x47,0x6d,0x23,0xa8,0x71,0x2c,0x38,0xc6,0xbe,0x46,0x96,0x79,0x3f,0xe8,0x67,0x90,0x8b,0x73,0x4b,0x29,0x1a,0x35,0x16,0x31,0xd5,0x79,0xaf,0x51,0xdd,0x2a,0xaa,0x96,0x2a,0xf6,0xf1,0xfa,0x48,0x13,0xb7,0xb8,0x13,0x9d,0x77,0xea,0x2,0xd5,0x59,0x92,0x33,0x67,0xa0,0xaf,0xfb,0x9f,0xf7,0x90,0x36,0xfc,0x4a,0xc1,0x4b,0x53,0xec,0xa2,0x17,0x29,0x8d,0xca,0x39,0xed,0x6a,0x40,0xde,0xf9,0x8f,0xe,0x86,0x61,0x18,0x86,0x61,0xfc,0xf2,0x98,0x3,0xd0,0x30,0xc,0xc3,0x30,0x8c,0x53,0x62,0x1a,0x87,0x1d,0xd1,0xc2,0x3c,0x73,0xac,0x89,0x40,0xe3,0x39,0x66,0x9a,0x78,0x56,0x99,0xf7,0x9e,0x9c,0x57,0x2c,0xc6,0x65,0x89,0x41,0xb2,0x4b,0xac,0x15,0x10,0x7d,0xd3,0x8a,0xea,0xf8,0x78,0x5a,0x40,0xe1,0x43,0x3d,0x17,0xa0,0xe7,0x3e,0x78,0xd6,0x1,0x9c,0x7f,0x70,0xb,0xfb,0xf7,0x6d,0x60,0x63,0xd9,0x63,0x73,0x73,0x3,0xc1,0x3b,0xc,0xc3,0x88,0xd5,0x30,0xe1,0xd5,0xc3,0x47,0xf1,0xea,0x91,0x63,0x78,0xe9,0xd5,0x23,0x28,0xd9,0x23,0x76,0x3d,0xa6,0x71,0x40,0xbf,0x58,0x60,0x1a,0x47,0xa4,0x34,0x91,0x4b,0x6a,0x5c,0xc3,0xf9,0x80,0xbe,0x5b,0x22,0xe7,0x4c,0xae,0x30,0x9e,0xb,0x17,0x62,0xa4,0xe6,0x60,0xb0,0x7b,0xb1,0x8b,0x98,0xd2,0x84,0xcc,0x6e,0x2a,0x69,0x89,0xa5,0x8,0xf1,0x84,0xec,0x92,0xce,0x4a,0xab,0x33,0xf0,0x3a,0x8d,0x44,0xca,0xf5,0xd7,0x32,0x14,0xaf,0x62,0x49,0xd7,0xf7,0x2a,0x9c,0x65,0x2d,0x54,0xa0,0xf7,0x63,0x87,0x40,0x47,0xaf,0x49,0x5a,0x90,0x92,0xa6,0x41,0xe7,0xc8,0xc5,0xae,0x53,0x51,0x4d,0xe2,0xc2,0x68,0xc4,0x9b,0x94,0xb8,0x34,0x45,0xa,0x44,0x62,0x64,0x91,0x29,0xa2,0xe4,0xc4,0xfe,0x2b,0x71,0xbf,0x4d,0xec,0x12,0xac,0x4d,0xb3,0x41,0xe2,0xb6,0x12,0x45,0xf6,0x52,0x2c,0xc2,0x2,0xa5,0xf7,0x33,0x37,0x9a,0x34,0xe8,0x4a,0xd3,0x2c,0x40,0xae,0x35,0x1f,0xbd,0x7e,0x3f,0xcb,0x2c,0x40,0x16,0x54,0xc7,0x61,0xad,0x42,0xa8,0xea,0x4a,0x0,0x42,0xe3,0xba,0x74,0x3a,0x1b,0x6f,0x42,0xec,0x7a,0x8a,0x70,0xcb,0x3c,0xc4,0x92,0x11,0x63,0x8f,0x94,0xa8,0x91,0x9a,0xe6,0xec,0xf9,0x5a,0x6e,0x91,0x46,0x15,0x1f,0x73,0x4a,0x34,0x3f,0x31,0xf0,0x6c,0xc5,0x52,0xe0,0x83,0x57,0x97,0x9e,0xb8,0xeb,0x2,0x17,0x71,0x48,0xd1,0x85,0xc4,0xda,0xa5,0xb9,0x57,0x9c,0x74,0x12,0x13,0x2e,0xb9,0xa8,0x5b,0x51,0xe6,0x1d,0x8a,0x38,0xd8,0xa,0x89,0x22,0xc6,0xc9,0xe7,0x86,0x84,0x44,0xf6,0x33,0xba,0xda,0x5c,0xc,0x9e,0xef,0x57,0x50,0xe0,0x64,0x6d,0xd8,0xd,0x4a,0xe,0x58,0xcf,0x1f,0x45,0xa7,0x31,0x75,0x80,0x5d,0x96,0x2c,0x32,0x43,0x9d,0xa0,0xe0,0x35,0x9b,0x9a,0x39,0x98,0x68,0xda,0xab,0xbd,0x8a,0xce,0x25,0xf3,0xc,0xca,0x76,0x5f,0x6b,0xc,0x9d,0x67,0x4b,0xf2,0xbd,0x85,0x18,0x91,0xc6,0x91,0xcb,0x7c,0x78,0xf,0x34,0x6b,0xe6,0xf8,0xf7,0xf2,0x75,0x6d,0xeb,0x2e,0xd5,0x55,0x2a,0xe5,0x2a,0x2a,0x14,0x1a,0x86,0x61,0x18,0x86,0x61,0x2,0xa0,0x61,0x18,0x86,0x61,0x18,0xbf,0x7a,0xbc,0xf,0x3a,0x6f,0x4d,0xca,0x3e,0xd2,0x94,0x6a,0xa1,0x0,0xff,0xc5,0xbe,0xe4,0xc4,0x71,0x45,0x6e,0xf7,0x75,0x1e,0x91,0xdd,0x60,0x29,0x65,0x75,0x8,0xe6,0x9c,0xd8,0x51,0x36,0x9f,0x6f,0x26,0x82,0x8a,0xf,0x41,0xe7,0xad,0xd1,0x3c,0xb6,0xe,0xe,0x5,0x7,0xf,0xec,0xc7,0x75,0x97,0x9f,0x87,0x9b,0xde,0x71,0x15,0xce,0x3d,0x74,0x10,0xfb,0xf7,0x6f,0xa1,0xef,0xe2,0x4c,0x1c,0x6c,0x21,0x17,0x54,0xc2,0x89,0xed,0x15,0x5e,0x7e,0xe5,0x35,0x3c,0xf9,0xec,0x8b,0x78,0xf8,0x27,0xcf,0xe1,0x89,0xe7,0x5e,0x42,0xf2,0x1e,0x1,0xd4,0xb8,0xea,0x43,0x64,0x11,0xac,0x60,0x1a,0x7,0x44,0x16,0x3b,0x1c,0xb,0x13,0xff,0xf3,0xef,0x7f,0x12,0x57,0x5e,0x7e,0x9,0x54,0x89,0x2,0x70,0xe4,0xe8,0x31,0xfc,0xaf,0xff,0xee,0xcf,0x30,0x8e,0x34,0xff,0x4f,0xa2,0x94,0xe,0x40,0x9e,0xc6,0x5a,0x82,0x21,0x2e,0x32,0x8e,0xa5,0x4a,0xcc,0x74,0x1a,0xd7,0x24,0x90,0xa6,0xa4,0xa2,0x19,0x89,0x89,0x45,0x85,0x26,0x89,0x60,0x8a,0x50,0x7,0x7,0x75,0xa9,0x25,0x2d,0xa3,0x20,0x8d,0x49,0x66,0x20,0xa,0xe2,0x60,0x83,0xaf,0x25,0x12,0xb2,0x9e,0x28,0xd8,0x25,0x10,0xea,0x8c,0xb8,0x26,0x9e,0x4c,0xd1,0x64,0x12,0xf3,0xba,0xae,0xc7,0x7a,0xb5,0x4d,0x22,0x25,0xbb,0xc8,0x4a,0x23,0x8a,0x89,0x8,0x45,0x6b,0x3e,0xb1,0x8,0x58,0x45,0xd0,0x69,0x1a,0xd1,0x75,0x3d,0xc6,0x71,0x8d,0x10,0x58,0x7c,0xcc,0x85,0x1a,0x60,0x79,0xde,0x9f,0xc4,0x6f,0xa5,0xc,0x5,0x8e,0xa2,0xdc,0x32,0xfb,0x50,0x66,0x4a,0xca,0xdc,0x46,0x89,0x7b,0x4b,0x5c,0xd9,0xfb,0xa0,0xe7,0xf6,0xdc,0x7e,0xeb,0x43,0x54,0x7,0x5d,0x9d,0xa3,0x98,0x11,0xa2,0x5c,0x4b,0xd0,0xf5,0x47,0x13,0x7f,0x9d,0xa6,0x11,0xdd,0x62,0x49,0x31,0x5e,0x9e,0x93,0x8,0xd4,0x67,0xc,0x40,0xdf,0xab,0x6e,0x39,0x5e,0xf,0x5a,0x47,0xf0,0x3c,0x3d,0x87,0xd8,0x2d,0x78,0x6f,0x7b,0x2d,0x2c,0x19,0x87,0x15,0x15,0x96,0x8c,0x13,0x97,0xaf,0x90,0xd3,0x30,0x71,0xe4,0x39,0xc4,0x88,0xf5,0xf6,0x9,0x15,0x13,0xa5,0x45,0x79,0xe2,0x39,0x95,0x35,0x52,0xef,0x58,0x27,0xe3,0xf9,0x9c,0x4d,0x39,0xcf,0xac,0x41,0xba,0x69,0x9,0xce,0xb9,0x36,0x61,0x3b,0xef,0x34,0xe,0x5f,0x35,0x39,0xa7,0x73,0xfd,0xe0,0x78,0xe6,0x62,0xa9,0x33,0x35,0xd1,0x14,0xe2,0x50,0x74,0x17,0xb5,0x44,0x44,0x4,0x65,0x8e,0xfd,0xaa,0xc0,0xb7,0x23,0x6,0x2f,0x6e,0xdf,0x56,0xd8,0x96,0x5f,0x5b,0xe1,0xd0,0x30,0xc,0xc3,0x30,0xc,0x13,0x0,0xd,0xc3,0x30,0xc,0xc3,0xf8,0x35,0xa2,0x6e,0x22,0x16,0x8e,0x74,0x96,0x5b,0xa1,0x18,0x6a,0x2e,0x34,0xa3,0x4e,0xe7,0xc8,0x41,0xa,0x22,0x48,0x34,0xf0,0xde,0x63,0x58,0xaf,0xea,0xcc,0x3d,0x76,0x56,0xd1,0x1c,0x3f,0x12,0x52,0x22,0x37,0xf3,0x8a,0xa3,0xb,0xce,0xa1,0xef,0x7b,0x5c,0x75,0xe1,0x41,0x7c,0xe4,0xfd,0xef,0xc1,0x15,0x97,0x5d,0x84,0x7d,0x9b,0x1b,0xa7,0x7c,0xcd,0xd4,0x22,0x1c,0x71,0xa0,0xdb,0xc2,0x81,0x33,0xb6,0x70,0xcd,0x95,0x97,0xe2,0xae,0x3b,0xdf,0x8b,0xd7,0x5e,0x3f,0x82,0xc7,0x9e,0x78,0x16,0xf7,0x3d,0xfc,0x24,0x1e,0x79,0xf2,0x39,0xac,0x8b,0x94,0x45,0x14,0x75,0xab,0x89,0x20,0x59,0x72,0xc6,0xbe,0xcd,0x25,0xe,0x9c,0xb1,0xb5,0x63,0x3d,0x80,0xe0,0x3d,0xd6,0x79,0x4d,0x62,0xc,0x80,0x9c,0xb8,0x88,0x41,0xa,0x31,0x74,0x36,0x5e,0x75,0xfc,0x89,0x28,0xd3,0x2f,0x37,0x30,0x8d,0x3,0x1c,0xbb,0xa0,0x24,0x4a,0x99,0x40,0x2d,0xbc,0xe2,0x4e,0xb,0x7d,0xd4,0xe8,0xb0,0x88,0x85,0x70,0x1e,0xc1,0xd7,0x58,0x75,0xd0,0x56,0x66,0x9a,0x8f,0x98,0xa6,0x91,0x5,0xa0,0x1a,0x69,0x75,0x1c,0x63,0x2d,0x8d,0x83,0xd0,0x69,0x49,0x45,0x9d,0xf9,0x46,0xef,0xa1,0x98,0xaf,0xb6,0xb2,0x2,0x48,0xd3,0x88,0xae,0xef,0x55,0xa4,0x71,0xa0,0x76,0x68,0x11,0xc0,0x9c,0xf3,0xfc,0xfc,0x27,0x75,0xe6,0x49,0x54,0x54,0xa2,0xa6,0x14,0x49,0x25,0x41,0x51,0xd6,0x37,0xc4,0x4e,0x1d,0x89,0x99,0x1b,0x61,0xbd,0xf3,0x28,0x8e,0x4,0x23,0x88,0x43,0x32,0x97,0x99,0x83,0x90,0xd6,0xcc,0x91,0xe0,0xd7,0x79,0x12,0xbe,0xbc,0x47,0x88,0x24,0x2c,0x79,0x1f,0x50,0x12,0x1d,0x83,0x9e,0xcd,0x44,0xc7,0x95,0xbd,0x7,0x50,0x8c,0xda,0x7b,0x64,0x4c,0x8,0xbe,0xd7,0x75,0x96,0xf6,0x5d,0x72,0xc7,0x75,0x2a,0xac,0x76,0x5d,0xcf,0x33,0xf,0xb9,0xdc,0x64,0x1a,0xd1,0xf5,0xb,0xf4,0xfd,0x52,0x3f,0xb,0x0,0x66,0xcf,0x82,0xd6,0x67,0xe4,0xa8,0x31,0x89,0xb0,0xe3,0xb8,0x46,0xc7,0xef,0x69,0x85,0x45,0xcf,0x9f,0xa3,0x9c,0x13,0x5c,0xf2,0xba,0x17,0xd3,0x34,0xf1,0x4c,0x43,0xcf,0x8d,0xca,0x13,0x32,0x47,0xad,0xbd,0x23,0x17,0x6a,0x60,0x47,0x67,0x4a,0x23,0xba,0xbe,0xd3,0xf8,0xad,0x77,0x1e,0x25,0xd0,0x7e,0x9a,0x86,0x35,0xc7,0xe4,0x79,0x46,0x22,0xc7,0xc6,0xa5,0xa0,0x46,0xef,0x8b,0x5,0x4d,0x29,0x90,0xa1,0xfd,0x5d,0x6a,0x5b,0x2f,0xcf,0xd6,0x2c,0x0,0xa,0x3b,0x2,0x7d,0x8,0x48,0x8d,0x7b,0xd5,0x73,0xa9,0x8a,0x88,0xf3,0x39,0x97,0x5d,0xfb,0x4e,0x67,0xa,0x0,0xea,0xc,0xae,0xc5,0x2f,0x56,0x2,0x62,0x18,0x86,0x61,0x18,0x6f,0x17,0x26,0x0,0x1a,0x86,0x61,0x18,0x86,0x71,0x6a,0x42,0x1a,0x3b,0xae,0x58,0xde,0x68,0x66,0xd1,0xc5,0x3a,0xe7,0x8b,0xff,0xa2,0xef,0x43,0x44,0x9a,0x46,0xe4,0xec,0x38,0xd2,0x4b,0x22,0x43,0xc9,0x14,0xf1,0x8d,0x3d,0xc5,0xe,0xa9,0x8d,0x35,0x4a,0x1f,0x28,0xa5,0x19,0x59,0x4c,0xe8,0xfa,0x25,0xe0,0x80,0xab,0x2e,0x3c,0x1b,0x9f,0xf9,0xc4,0x9d,0xb8,0xfc,0x92,0xb,0x11,0xe3,0xdb,0xf3,0xa3,0x4b,0x8c,0x1,0xe7,0x1e,0x3a,0x88,0x73,0xf,0x1d,0xc4,0xed,0xb7,0xde,0x88,0x9f,0xbd,0x72,0x18,0xf7,0xfc,0xe8,0x21,0x7c,0xeb,0x87,0x8f,0xe1,0xf0,0xd1,0x63,0x3a,0x4f,0x90,0x6f,0x95,0x1d,0x89,0x7b,0x9d,0x5b,0x9c,0x7d,0x7d,0x6d,0x93,0xd,0x11,0x69,0x1c,0xd0,0x2f,0x96,0x18,0xd6,0xdb,0x24,0x80,0x45,0x69,0x43,0x1e,0x79,0xee,0x5c,0x2,0x90,0x91,0x53,0xd1,0xd8,0x30,0x50,0x90,0xa6,0x91,0x67,0x2d,0x16,0xa4,0x34,0x92,0x3,0xe,0xec,0xbe,0x82,0x53,0xc1,0x8b,0xca,0x32,0x6a,0x74,0x97,0x4,0x1b,0x29,0xd7,0xc8,0x0,0x64,0x86,0xe2,0x1e,0xe5,0x2d,0x28,0x8,0x2c,0xde,0x4,0x76,0xdb,0x85,0x10,0x31,0xc,0x2b,0x38,0x57,0x1b,0x6f,0x43,0xec,0xe0,0x4b,0xe0,0x59,0x7b,0x9,0x91,0x9d,0x7b,0x5e,0x4a,0x5f,0x4a,0x26,0x27,0x28,0xcf,0x6f,0x74,0x5d,0x3b,0xa7,0x10,0x10,0x1,0xb3,0x94,0xac,0x25,0x14,0x22,0x86,0x91,0xdb,0x6d,0x42,0x9a,0x26,0x74,0xba,0x17,0xc8,0x9,0x29,0x73,0x1c,0xd5,0xbd,0xc6,0xae,0x32,0x72,0x69,0x6,0x16,0xa4,0xf8,0x1a,0x12,0xb9,0xeb,0xba,0x7e,0x41,0xfb,0x8e,0xbf,0xa7,0xb3,0xfc,0x50,0x67,0x57,0x7a,0xe7,0x90,0xb3,0x53,0x47,0xa6,0x88,0x4f,0x39,0x25,0x1e,0x8a,0x5d,0xf7,0xb3,0x73,0xc0,0x34,0x4d,0x1a,0xbb,0x6e,0xa3,0xcc,0xd3,0x34,0x22,0xe7,0x84,0xae,0x5b,0xd0,0x5a,0xc6,0x6e,0x16,0xd9,0x8e,0xb1,0xc3,0x34,0xd,0xf0,0x9e,0x66,0x45,0x6,0x8e,0xcf,0x66,0x71,0xc9,0xf2,0x1c,0xc4,0xc0,0x9f,0x11,0x75,0x89,0x92,0x6f,0x54,0x67,0x25,0xfa,0x40,0xf3,0x23,0xf3,0x54,0xe3,0xc2,0x51,0xe6,0x70,0xf2,0x75,0x8a,0x63,0x95,0x3e,0x9f,0x1,0x39,0x4f,0x3c,0x77,0xb2,0x8a,0x68,0x12,0x9f,0xcf,0xd3,0x88,0x5c,0x26,0x15,0x63,0x6b,0xd1,0x6f,0x8d,0x26,0xe7,0x92,0xd0,0xf5,0x4b,0xba,0x3e,0xc4,0x2a,0x5e,0x3b,0x7,0xc7,0x71,0x68,0x4,0xdf,0xc4,0xbf,0xc1,0xae,0xc0,0xa8,0xed,0xe0,0x12,0xdf,0xa7,0xf3,0x80,0xae,0xa9,0x11,0xa7,0x1,0x9e,0x7f,0xa9,0x2,0x20,0x66,0xdf,0x53,0x31,0xb0,0x80,0x9a,0xa2,0x6b,0xdd,0x8c,0x61,0x18,0x86,0x61,0x18,0x6f,0xe5,0xe7,0x5f,0x5b,0x2,0xc3,0x30,0xc,0xc3,0x30,0x4e,0x85,0x34,0x4d,0xfc,0xf7,0x70,0x12,0x51,0x52,0x4e,0x3a,0xd7,0x8b,0x66,0x9f,0xcd,0x1b,0x3b,0x43,0xec,0x38,0xc6,0xb,0x6d,0x50,0xd5,0x88,0x67,0x33,0x1b,0x4f,0x4,0x21,0x11,0x35,0x0,0x9a,0x77,0xb7,0xb9,0xec,0xf1,0x99,0x8f,0xbc,0x17,0x77,0xdc,0xfa,0x6e,0x74,0xdd,0xaf,0xee,0x47,0x96,0x18,0x2,0x2e,0x38,0xef,0x10,0x3e,0xfd,0xf1,0xf,0x62,0x73,0xb9,0xc4,0x5f,0x7c,0xf9,0x6e,0x4c,0xd3,0x40,0xed,0xab,0x99,0xae,0xbb,0x8d,0x47,0xb6,0xc8,0xcc,0xbe,0x69,0xb5,0x46,0xf0,0x1,0xd3,0x34,0x20,0xc6,0x85,0x16,0x6f,0x78,0x1f,0x30,0x8e,0x3,0x62,0x24,0xf1,0xcb,0xc7,0x88,0x3c,0x4d,0x5c,0xdc,0xea,0x74,0xc6,0x9c,0xac,0x81,0xb8,0xcf,0x42,0xa0,0x79,0x81,0xd4,0xdc,0xcb,0xeb,0xd6,0x91,0xd0,0xea,0x41,0xb1,0x58,0x71,0x6f,0x89,0x23,0x4e,0x4,0x15,0xc7,0xe5,0xe,0xd4,0x44,0x5b,0xe7,0xd,0xca,0xdc,0x3f,0x2a,0x31,0xf1,0x88,0xbe,0xce,0x2e,0xf4,0x2c,0x42,0x79,0x16,0x76,0x28,0x9e,0x3c,0x68,0xdb,0xae,0x8,0x3c,0xb1,0xeb,0x49,0xf4,0xf3,0x32,0x7f,0x30,0xab,0xa0,0x25,0xef,0x25,0xe1,0xc7,0x69,0xbb,0xb1,0xf3,0x1e,0x3d,0x8b,0x4a,0x94,0x50,0x25,0x87,0x5f,0x88,0x51,0x1d,0x73,0xdd,0x62,0xd9,0x44,0xa3,0xbd,0xee,0xb1,0x69,0x1a,0x79,0x5f,0x4,0x9d,0xbf,0x97,0x25,0x46,0x2e,0x42,0x61,0x92,0x46,0x5c,0xaf,0x42,0x99,0xcc,0x29,0x4,0xe6,0x65,0x2b,0x32,0x6f,0xae,0x5f,0x2c,0x75,0xad,0x65,0x6e,0x60,0xbb,0x4e,0x24,0x78,0x76,0xfc,0x1c,0x9d,0x46,0x6f,0x75,0x36,0x1e,0x37,0xf3,0x4a,0xbb,0xb2,0x38,0x18,0x3,0xc7,0x63,0xc5,0xd5,0x97,0xa6,0x9,0x3e,0xf0,0x67,0x83,0x67,0xfb,0x41,0x67,0x13,0x76,0x70,0x91,0x9a,0x80,0x9d,0xf7,0x28,0x99,0xd6,0x3d,0xa5,0xa9,0x8a,0x63,0x1c,0x93,0x9d,0x39,0x29,0x1b,0x1,0x57,0xce,0x4d,0x73,0xa,0x3d,0x3f,0xb,0x72,0x35,0x26,0x76,0x3b,0xca,0xbc,0x4e,0x6a,0xfe,0x4d,0x75,0xcf,0xc8,0xfd,0xf2,0xfe,0xe1,0xa0,0x35,0xcf,0xa,0x74,0xda,0x68,0x3d,0xff,0x9c,0xb2,0x20,0x9d,0x12,0x39,0x41,0x53,0xd2,0x35,0x2d,0x69,0x2,0x1c,0x95,0x80,0xe4,0xb6,0x49,0xb9,0x99,0x75,0x29,0x9f,0x19,0x75,0xd6,0x4a,0x6b,0x33,0x5f,0xc3,0xac,0x34,0xc6,0x1,0xde,0x91,0x18,0x6e,0x18,0x86,0x61,0x18,0xc6,0xdb,0xf0,0x33,0xaf,0x2d,0x81,0x61,0x18,0x86,0x61,0x18,0xa7,0x42,0x8d,0xe3,0x15,0x1e,0xf7,0xe6,0x50,0x1c,0xd0,0xc5,0xe,0x29,0x25,0x64,0x9e,0x5b,0xe6,0x58,0xc0,0x11,0x87,0x9a,0xcc,0x3b,0x53,0x87,0x20,0xc7,0xfc,0xa4,0xec,0xa3,0x94,0xa6,0x55,0x95,0x5,0xa0,0xb3,0xf6,0x2d,0xf0,0xc7,0x7f,0xf0,0xdb,0xb8,0xfc,0x92,0xb,0x7f,0x89,0xeb,0xac,0x42,0xc2,0xc9,0xe6,0x2,0x9e,0xc,0xe7,0x48,0x9c,0xe9,0xfa,0x25,0xc6,0x61,0xa5,0x33,0xf5,0xfa,0xc5,0xc6,0x9e,0x42,0x4,0x39,0x3,0x3b,0xf8,0x90,0x50,0x7c,0x41,0x1f,0x3,0xa6,0x61,0xe0,0x7b,0x77,0x2c,0x7e,0x2d,0xb8,0xa0,0x63,0xac,0x62,0x8,0x6a,0xc,0x98,0x1c,0x6a,0x34,0x93,0x2f,0x76,0xbd,0xbe,0x96,0xda,0x71,0xe9,0x7b,0xa1,0xa3,0xd8,0xad,0xcc,0x10,0x4,0xa0,0x91,0xcc,0xd2,0xb4,0xd2,0x92,0x8b,0x70,0x52,0xd7,0x9f,0xf,0x11,0xde,0xd7,0x72,0x86,0x18,0xa3,0xa,0x47,0x2a,0xc8,0x0,0x3a,0x73,0x8e,0x66,0xe5,0x25,0x12,0xb0,0xba,0x4e,0x1d,0x62,0x80,0xd3,0x68,0xa8,0x14,0x3e,0xc4,0xd8,0x61,0x1c,0x7,0xba,0xd6,0xc8,0xe,0x30,0x60,0xd6,0x22,0xb,0xef,0x54,0x78,0xf2,0xc1,0xc3,0xd1,0x88,0x3c,0x72,0xe9,0x65,0x69,0xe3,0xa5,0x6b,0xcf,0x3e,0xc1,0xd1,0xa9,0x66,0xf3,0xe5,0x64,0x16,0x21,0x1c,0x8b,0x4d,0xdc,0xb4,0x4b,0x82,0x51,0xe6,0x86,0xe9,0xb8,0xa3,0x95,0x56,0x9e,0xbb,0x43,0xec,0x3b,0x2d,0xb0,0x21,0xa1,0x99,0xe6,0xdd,0x69,0xeb,0x31,0x97,0xb7,0x4c,0xd3,0x8,0xef,0x3c,0xa6,0x69,0x52,0x57,0x65,0x46,0x9d,0xb7,0x48,0xe7,0x72,0xb3,0x42,0x15,0xe7,0x3,0xba,0x3e,0xec,0x6a,0xd8,0x8d,0xb1,0xa7,0x76,0x62,0x11,0x91,0xbd,0x43,0x61,0x57,0x65,0xce,0x19,0x48,0x24,0x2,0x7b,0x6e,0x95,0x2e,0x7c,0x7c,0xfa,0x3d,0xb5,0x13,0xcb,0x7e,0xd1,0x2,0x1c,0x16,0x2,0x1,0x2a,0xe4,0x9,0x5d,0x7,0xf,0x12,0x3d,0x3,0xb,0xcc,0x52,0xfe,0x31,0xae,0x57,0xea,0x24,0x2d,0xc5,0x69,0x91,0x48,0x10,0x57,0xa1,0xcc,0xdd,0x63,0x21,0x5a,0xdc,0x96,0x39,0x25,0x78,0x16,0x14,0x43,0xe3,0xb6,0x95,0x46,0x60,0x2a,0x6,0x9,0x5a,0x56,0x22,0xd,0xca,0xad,0xf4,0x1f,0xbb,0x8e,0xcb,0x44,0xa,0x37,0x20,0x4f,0xf4,0xeb,0x34,0x6a,0x9,0x88,0xcc,0xb3,0x94,0xfd,0x54,0x5d,0x89,0x85,0x4b,0x81,0xa0,0x62,0xb1,0x61,0x18,0x86,0x61,0x18,0x6f,0xf,0x26,0x0,0x1a,0x86,0x61,0x18,0x86,0x71,0x4a,0xc8,0x8c,0x3b,0x11,0x66,0x32,0x68,0xa6,0x1a,0xcd,0xc8,0xe3,0x26,0xd4,0x52,0x80,0x94,0x10,0x78,0xbe,0x1a,0x6b,0x47,0x2c,0x2,0x89,0xfb,0xcc,0x35,0x5a,0x5a,0x99,0x39,0xcf,0x42,0x8,0xb8,0xfe,0xf2,0xb,0xf0,0xdf,0xfd,0xcb,0x4f,0xe0,0xac,0x33,0xf,0xfc,0xdc,0x6b,0x5a,0xad,0xd6,0xf8,0xd9,0x6b,0x47,0xf0,0xec,0xf3,0x2f,0xe1,0xa7,0x3f,0x7b,0x15,0xc7,0x4e,0xac,0x70,0x7c,0x7b,0x8d,0x2,0x87,0x18,0x3c,0xe,0x6c,0x6d,0xe2,0xe0,0x99,0xfb,0x71,0xde,0xa1,0x33,0x71,0xee,0xa1,0xb3,0x70,0xf0,0xcc,0x3,0xe8,0xfb,0xee,0xa4,0xc7,0xf3,0x3e,0xa8,0x7b,0x8a,0x44,0x3f,0x96,0x91,0xa4,0x91,0x74,0x7,0x59,0x4a,0x15,0x58,0x78,0x21,0xc7,0x57,0x54,0x67,0xd5,0xb0,0x5e,0x91,0x78,0xa3,0xd1,0x66,0x68,0x6b,0xb0,0x44,0x44,0x33,0x75,0x52,0x20,0x25,0x72,0x9d,0x8d,0xc3,0xba,0x89,0xa9,0x82,0x22,0xbf,0x3c,0x93,0x8d,0xa,0x1b,0xc8,0x65,0xe5,0xbc,0x87,0x87,0x43,0xf1,0xe4,0x52,0x53,0x7,0x60,0xc7,0x6e,0xbe,0x52,0xb,0x17,0xa4,0xe1,0x57,0x1a,0x63,0xd5,0x65,0xe7,0x5d,0x15,0x25,0x25,0x8a,0xea,0x3c,0x9c,0x23,0x91,0x72,0x9c,0xd6,0x58,0x2c,0x37,0xc9,0x7d,0xe7,0xc2,0xbc,0xf5,0x15,0x3c,0x7f,0x2e,0x76,0x3c,0x13,0xaf,0xa,0x3e,0x22,0x88,0x69,0xc3,0x2b,0xa,0xdd,0xaf,0x3,0xd2,0x6a,0x5b,0x67,0x10,0x86,0xd8,0x6b,0x5b,0xb0,0xcc,0xa4,0xf3,0x4e,0xca,0x3d,0xa6,0xea,0xf2,0xe3,0xfb,0xd0,0xb9,0x88,0x2a,0x98,0x75,0xec,0x12,0x74,0xea,0xce,0x2b,0x3c,0x3f,0x4f,0x66,0xfc,0x65,0x76,0xb4,0xb5,0xfb,0xcc,0xb9,0x2a,0x36,0x3b,0xef,0x69,0x2e,0xa1,0x1c,0xc3,0xd3,0xb5,0x4f,0x23,0x37,0x7,0x63,0x42,0xec,0x16,0x70,0xa0,0x58,0x31,0x3d,0x3b,0x7a,0x26,0xb1,0xeb,0x90,0xa6,0xa9,0x96,0x5d,0xb0,0xd3,0xe,0x0,0x72,0xa2,0x67,0xe7,0x5d,0xe4,0xfb,0x27,0x67,0x22,0x30,0x21,0x76,0x1b,0x98,0x86,0x41,0x1d,0x92,0x99,0xe3,0xc6,0xc3,0x7a,0x8d,0xae,0xeb,0xeb,0xcc,0x46,0x27,0xf3,0xe,0xc9,0x85,0xb8,0xde,0x3e,0x4e,0xd1,0xdf,0xae,0x23,0x27,0xa4,0x73,0x8,0x31,0xd4,0x26,0xe4,0x92,0xe1,0x8a,0x9b,0xad,0x9b,0xf,0x5e,0xb,0x5e,0xe4,0xf3,0x28,0x7b,0x5d,0x1a,0xa1,0x91,0x69,0x2f,0x84,0x10,0x59,0x0,0x5f,0x54,0x41,0x57,0xa,0x49,0x42,0x40,0xe1,0x18,0x3b,0x35,0x4c,0x37,0xce,0xbe,0xc6,0x39,0x99,0xd6,0x55,0x5c,0xd6,0x96,0x70,0x16,0x4f,0x65,0x3e,0x68,0x29,0xe4,0x62,0x4c,0x39,0x51,0x1,0x4c,0xfb,0xd9,0x2a,0xa5,0x46,0x93,0x7d,0xb0,0x3f,0x78,0xd,0xc3,0x30,0xc,0xe3,0x6d,0xc2,0x4,0x40,0xc3,0x30,0xc,0xc3,0x30,0x4e,0x89,0xd6,0x61,0x25,0x22,0x8f,0xb6,0x79,0x72,0x53,0xa8,0x63,0xa7,0x58,0x61,0xc1,0x23,0x37,0xd1,0xc5,0xd8,0x2d,0x20,0x3,0xff,0x63,0xbf,0xa8,0xd,0xbf,0x22,0xbe,0x5,0x8f,0xcb,0xce,0x3b,0xb,0xff,0xf6,0x5f,0xff,0x36,0xb6,0xf6,0x6d,0x9e,0xf4,0x3a,0x72,0x2e,0x78,0xf9,0x95,0xc3,0xf8,0xe7,0xef,0xfd,0x8,0x3f,0x7e,0xe2,0x5,0x1c,0x39,0xbe,0xe2,0xd6,0xd7,0x50,0xaf,0xb,0xd2,0x5e,0x2b,0xb1,0x43,0x72,0x63,0x9d,0x73,0xe6,0x3e,0xdc,0x70,0xf5,0xa5,0xb8,0xf1,0xba,0xcb,0x71,0xd1,0x5,0xe7,0x62,0xb9,0xe8,0x67,0xc7,0x16,0xe7,0xa0,0x94,0x51,0x48,0x6c,0x35,0xc6,0x8e,0xc4,0xcd,0x9d,0x6b,0x2,0x9e,0x7b,0x7,0x31,0x36,0xf2,0xdc,0xb9,0xae,0xc7,0x38,0xac,0xc8,0x21,0xe8,0x3d,0x17,0x3e,0xf4,0x0,0xa8,0xf9,0x35,0x70,0xd4,0x59,0x1c,0x60,0x69,0x1a,0xd1,0xb1,0x30,0x18,0xb8,0x99,0x35,0x76,0x8b,0x99,0x3,0x4a,0xe6,0x1,0x4a,0xa9,0xa,0x4a,0xe6,0x78,0x32,0xb9,0xeb,0x4,0x15,0xfb,0xc0,0x7a,0x8f,0xf,0x48,0x13,0xc5,0x4c,0x49,0x5c,0x73,0x8,0x3e,0xd4,0x36,0x66,0x47,0x73,0xf4,0xbc,0xaf,0x42,0x91,0x88,0x45,0x1b,0xfb,0xf6,0x73,0x9,0x6,0x3b,0xb9,0x54,0x24,0xac,0x25,0x19,0x72,0x1f,0xf5,0x7e,0x42,0x8d,0x32,0xb3,0x3,0xae,0xeb,0x17,0x3a,0xdf,0x2f,0xf6,0x8b,0x26,0x96,0x4b,0x4e,0x49,0xdd,0x53,0x2c,0xfa,0x94,0x92,0x75,0xbf,0x68,0xac,0x38,0x53,0x29,0x49,0x8c,0x1d,0xb,0x88,0x22,0xc6,0x5,0x8d,0x8b,0x4a,0xbb,0xb0,0xcc,0x35,0x94,0x18,0x70,0x88,0x9d,0x36,0x2c,0x83,0xb,0x6b,0x28,0xe2,0xdc,0xa9,0xc3,0x50,0x9c,0x8a,0x60,0x31,0xd4,0x7,0x72,0xb6,0xa9,0xbb,0x8e,0x9d,0x73,0x1d,0xbb,0x42,0xa5,0x64,0x4,0x1,0xb5,0xbd,0xda,0x79,0x64,0x9e,0xef,0xe7,0xdc,0x54,0x5d,0x86,0x0,0x7c,0xec,0x90,0x44,0xa4,0xcc,0x99,0x8a,0x3c,0xd8,0xa9,0x19,0x23,0x89,0xeb,0x8b,0xe5,0x86,0x96,0x72,0xa4,0x94,0x10,0xa3,0x14,0xb3,0x4,0xac,0xb7,0x4f,0xd0,0x5c,0x4c,0x71,0xeb,0xf9,0xac,0xee,0xbf,0x34,0x4d,0x24,0xfe,0xb1,0xb3,0x34,0x76,0x1d,0x9,0x9a,0x8e,0x3e,0x6f,0xe4,0x1e,0x2c,0xb2,0x23,0x1a,0xd7,0x21,0xb,0xcc,0xa0,0x8,0xb0,0xcc,0x26,0x4,0x50,0xdb,0x92,0x5d,0x9d,0xc1,0x57,0xf4,0xde,0xf8,0x33,0xcd,0xcf,0x57,0xf6,0x9d,0x2f,0x55,0x54,0x94,0x39,0x8c,0xe3,0xb8,0xd6,0x3d,0xa5,0x71,0xf3,0x48,0x7b,0x3e,0xf8,0xa8,0xef,0xa7,0x7f,0x18,0x70,0x80,0x8a,0xdc,0xe6,0x0,0x34,0xc,0xc3,0x30,0x8c,0xb7,0x13,0x13,0x0,0xd,0xc3,0x30,0xc,0xc3,0x38,0x25,0x72,0x49,0xb5,0xb5,0xb3,0x81,0x22,0x80,0x8e,0x5c,0x60,0x32,0xf,0xac,0x54,0x87,0x1a,0x40,0x73,0xd8,0x5c,0x90,0x46,0x54,0x76,0xcc,0xb1,0xf0,0xe2,0x9c,0x87,0xf7,0x1e,0xe7,0x9f,0x7d,0x0,0x7f,0xf4,0x7,0x9f,0x7e,0x53,0xf1,0xef,0x67,0xaf,0xbe,0x8e,0x7f,0xf8,0xc6,0xdd,0xf8,0xe1,0xe3,0x2f,0x62,0x18,0xc8,0xa1,0x85,0x92,0xb9,0x60,0x24,0x73,0x69,0x42,0xaa,0x42,0x85,0xf7,0xe4,0xa8,0x3,0x30,0x96,0x82,0x17,0x5f,0x99,0xf0,0xd2,0xe1,0x7,0xf1,0xc5,0x6f,0xde,0x8b,0xcb,0x2e,0x3c,0x17,0x77,0xde,0x72,0x3d,0x6e,0xba,0xe1,0x1a,0xec,0xdf,0xda,0x47,0x22,0x44,0x33,0xa7,0x2c,0xb3,0xd8,0x44,0x22,0xe6,0xc9,0xd7,0xa5,0xef,0x17,0x18,0x27,0x72,0x31,0x75,0x3d,0x9,0x4b,0xd2,0xbc,0x9a,0x30,0x71,0x2b,0x6d,0x87,0x34,0x52,0xe1,0x43,0xbf,0xd8,0x20,0x77,0xe0,0x6a,0x9b,0x5,0xe,0x5f,0xc5,0xb2,0x94,0xe1,0x2,0x89,0x74,0x85,0x67,0xde,0xc9,0xb5,0x8,0x21,0x76,0x8,0xa1,0xc3,0x34,0xae,0x29,0x9e,0xbc,0xdc,0x40,0x4e,0x9,0xd3,0x34,0xa0,0xeb,0x16,0x70,0xde,0x23,0xb1,0xf0,0xd5,0x2f,0x37,0x48,0x24,0x63,0x57,0x62,0x16,0x77,0x26,0x47,0x2e,0x29,0xd2,0xd9,0xa9,0xab,0xf,0x48,0x2c,0x84,0x65,0x84,0x2e,0x62,0x5c,0x6f,0x23,0x74,0x3d,0x95,0x3e,0xb0,0x73,0x2b,0xf6,0xb,0x9d,0xd7,0x27,0xcf,0xba,0x63,0xd7,0xa4,0x1c,0xd3,0x7,0x99,0xef,0x97,0xd5,0x19,0xd6,0xb1,0xe0,0xe5,0x9c,0x3,0x42,0x40,0xce,0x54,0xa0,0x21,0xae,0x30,0x20,0x20,0x84,0x85,0xce,0xc4,0x8b,0x5d,0x87,0x69,0x1c,0x39,0xb6,0x2c,0xb3,0x11,0xa5,0x70,0xa6,0xfe,0x3e,0xb1,0x68,0xe7,0x43,0x44,0xcf,0xc5,0x31,0x9d,0xa7,0x6b,0xd4,0x39,0x7c,0x2c,0x28,0x75,0x1d,0x95,0x85,0xe4,0x9c,0xc8,0xd9,0x28,0xa5,0x23,0x2e,0xa8,0x78,0x96,0x4b,0x41,0x66,0x57,0x61,0x60,0x61,0x6e,0x1a,0x7,0x84,0x10,0xd0,0xf7,0x4b,0x12,0xb4,0x7c,0x9d,0xf5,0xe7,0xbc,0x47,0xd7,0x2f,0xb0,0xda,0x3e,0xae,0x51,0x5a,0x71,0x80,0x86,0x10,0x30,0x8d,0x63,0x9d,0xe3,0x7,0x7,0x78,0x20,0x27,0x2a,0x6a,0xf1,0xea,0x70,0x2b,0xbc,0xcf,0x38,0xa,0x8b,0x82,0x7e,0xb1,0xd4,0xfb,0x2,0xa,0x97,0xa5,0xd0,0x3d,0x51,0xb9,0xa,0xff,0xb7,0xf,0xc8,0x2e,0x21,0x84,0x4e,0x9d,0x89,0xe,0xe,0xe3,0x38,0xf0,0x7c,0x40,0x3a,0xbf,0xf3,0xdc,0x6a,0x9c,0xa7,0x2a,0x4a,0x86,0x40,0x82,0x65,0xec,0xf8,0x5c,0x24,0x32,0x8f,0xeb,0x15,0x96,0x9b,0x5b,0x18,0xc7,0x1,0xfd,0x82,0x4a,0x4e,0x28,0x36,0x4d,0xf7,0x4,0x8d,0xf1,0xe6,0xc6,0x49,0xc8,0xe7,0x2e,0x4e,0x5,0xe0,0x29,0x8f,0x3a,0xdf,0x2f,0xb3,0x20,0x38,0x4d,0x23,0x1c,0xff,0xc3,0x80,0xcc,0x6c,0x2c,0x99,0x1c,0xa4,0x24,0x2c,0x4b,0x8b,0xb4,0xb7,0x3f,0x74,0xd,0xc3,0x30,0xc,0xe3,0x6d,0xc4,0x4,0x40,0xc3,0x30,0xc,0xc3,0x30,0x4e,0x89,0xc0,0x6e,0x3d,0xe7,0x3d,0x15,0x1a,0xb0,0x60,0x41,0xa2,0x44,0xa7,0xf3,0xd9,0x42,0x23,0x36,0xc9,0xc,0x3d,0x71,0x59,0x15,0x8e,0x17,0xa2,0x99,0xb,0x18,0xfa,0xe,0x31,0x4,0xfc,0xb7,0x9f,0xfd,0x18,0xe,0x9d,0x7d,0xd6,0x9e,0xe7,0x4e,0x29,0xe3,0xde,0xfb,0x1f,0xc6,0x5f,0x7d,0xed,0x7,0x38,0x7e,0x62,0xa5,0xc2,0x4d,0x29,0x59,0x9b,0x42,0x49,0x24,0xaa,0xb3,0x6,0x4b,0x29,0xc8,0xec,0xc,0x94,0x18,0x25,0x0,0x75,0xb9,0x3d,0xff,0xb3,0xd7,0xf1,0x9f,0xfe,0xee,0x9b,0xf8,0xe2,0x37,0x7f,0x88,0x8f,0xdc,0x7e,0x3,0x6e,0xbb,0xf9,0x9d,0xc8,0x39,0x6b,0x79,0x46,0x3b,0x93,0x90,0xa2,0xa7,0x7b,0xc4,0x11,0x59,0x19,0x8c,0xb1,0xd3,0xf9,0x6f,0x21,0x72,0x1,0x7,0x8b,0x47,0x22,0xb6,0x74,0x8b,0xa5,0xde,0xb3,0xcc,0xa0,0xcb,0x25,0x43,0xba,0x53,0xd2,0x34,0x72,0x3b,0xf2,0x58,0xe7,0xcc,0x25,0x12,0xfc,0x22,0x17,0x91,0x88,0x20,0x39,0xb1,0xb8,0x23,0xb3,0xd4,0x7c,0x8,0xe8,0x3,0x45,0x96,0xe5,0xb9,0x78,0x1f,0x30,0xae,0x57,0x34,0x2b,0x8e,0x5,0xb0,0xd8,0xd1,0xfb,0x49,0xdc,0xec,0xeb,0x1a,0x85,0x80,0x89,0x85,0x2d,0x89,0x5f,0x96,0x9c,0xd1,0x2d,0x36,0x68,0xde,0x5b,0x26,0x97,0xa3,0x7,0x3f,0xef,0x10,0x59,0x4,0x4a,0x7a,0x3c,0x71,0x8e,0x89,0x8b,0x51,0x62,0xdf,0x75,0x16,0x5e,0xd6,0x32,0xd,0x12,0x9,0x8b,0xc6,0x6e,0x49,0x6c,0xa3,0x62,0x8d,0xae,0x5f,0x60,0x1c,0xd6,0xe4,0x8a,0xec,0x48,0x58,0x4,0xef,0xbb,0xae,0x5f,0x60,0x58,0x6f,0xab,0x3b,0x32,0x73,0x6c,0x5a,0xe7,0xca,0x1,0xda,0x42,0x2c,0x2,0x62,0xeb,0x68,0x14,0xc1,0x4a,0x4,0xd1,0xc0,0xef,0x95,0x99,0x7e,0x21,0x76,0x70,0x39,0xa1,0xe4,0xa2,0x25,0x20,0x52,0xee,0x11,0xbb,0x85,0x16,0xac,0xe4,0x9c,0xe0,0x4a,0xe0,0x72,0x13,0x6e,0x6f,0x66,0x51,0x50,0xe2,0xac,0x1b,0x1b,0x3d,0xa2,0x3,0x8e,0xcb,0x4c,0x4a,0x11,0x6,0x67,0x73,0xef,0xe8,0xbd,0x14,0xab,0xed,0xf5,0xb9,0x91,0x8b,0xaf,0xd7,0xa2,0x17,0x9a,0xf5,0x58,0xb0,0xd8,0xd8,0x9c,0x9,0x6f,0x75,0x1b,0x36,0x25,0x3c,0x5,0x98,0xd2,0xa8,0x22,0x24,0x39,0x4f,0xc1,0x5,0x23,0x49,0xf7,0x73,0x4a,0x13,0x48,0xa2,0xaf,0x73,0x6,0xc5,0x71,0xd7,0x2d,0x96,0x54,0x84,0xc3,0x2d,0xce,0x80,0x53,0xa1,0x59,0x84,0xbe,0x89,0x3f,0x47,0x74,0x2f,0x1d,0x4a,0x49,0x48,0x53,0xd2,0xcf,0x4a,0xce,0x1c,0x47,0xe6,0xcf,0x40,0xc9,0x19,0xc5,0x43,0x5d,0xa4,0xb9,0x29,0x67,0x71,0xde,0x71,0x5a,0xdc,0x1,0x48,0xba,0xaf,0x45,0x48,0x34,0xc,0xc3,0x30,0xc,0xc3,0x4,0x40,0xc3,0x30,0xc,0xc3,0x30,0x7e,0x4d,0xc,0xeb,0x15,0xa,0xca,0x4c,0x7c,0x2b,0x5,0xb3,0x39,0x5d,0x14,0x79,0xd,0x1a,0xcd,0x24,0x7,0x57,0xd7,0x38,0xc3,0x9a,0xd7,0x3a,0xf,0x1f,0x3,0x62,0x8c,0xf8,0xf4,0x87,0x6e,0xc5,0x15,0x97,0xee,0x5d,0xf8,0x31,0x8e,0x23,0xbe,0xfc,0xcd,0x7b,0xf1,0xf,0xdf,0x7d,0x10,0x39,0x25,0x8e,0x5a,0x92,0x70,0x34,0x17,0xeb,0x50,0xe7,0xbf,0x39,0x60,0x1c,0x48,0x64,0xeb,0xfa,0x25,0xcd,0xae,0xcb,0x9,0xd3,0x38,0xd1,0xdc,0x3b,0x11,0x20,0x51,0xf0,0xda,0xd1,0x63,0xf8,0xf3,0x2f,0x7d,0x7,0xdf,0xf8,0xde,0x83,0x38,0xeb,0x8c,0x4d,0x6e,0xba,0xad,0x45,0x22,0x24,0xea,0x49,0x84,0x72,0x7,0x25,0xd3,0x4c,0xb6,0x28,0x22,0x1e,0xdd,0x77,0xf0,0x59,0xc5,0x16,0x69,0x53,0x95,0x78,0x28,0x0,0x15,0xef,0xbc,0x8a,0x58,0xdc,0x44,0x2b,0x71,0x6a,0x80,0xe6,0xb0,0xe5,0xac,0x2d,0xaf,0xce,0x7b,0x38,0x1f,0x78,0xbe,0x22,0x5d,0x8b,0x63,0x1,0x46,0x94,0x1f,0x11,0x37,0x73,0x2,0xbf,0xde,0xab,0xb8,0x26,0xa2,0x23,0x3d,0xa7,0x2a,0xd0,0x81,0x63,0xdd,0xb1,0x5b,0x90,0xc,0x45,0x38,0xb7,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x38,0xe4,0x80,0xbe,0x5b,0x92,0x78,0xe6,0x1c,0xa6,0x44,0x6e,0xca,0x18,0x7b,0x88,0x53,0x4d,0x1a,0x8b,0x7d,0xec,0x11,0xb8,0x81,0x37,0x25,0x9a,0xa3,0x27,0x85,0x29,0x34,0xd3,0x71,0xc1,0xa5,0x24,0x19,0x21,0xd0,0xde,0x98,0x72,0xd6,0x75,0xf3,0xde,0xc3,0x17,0xcf,0x6b,0x15,0xd4,0x4d,0xd6,0x2f,0x36,0x90,0x4b,0x82,0xf3,0x1,0x2e,0x67,0xc0,0x91,0x6b,0x74,0x58,0xaf,0xe0,0x39,0x36,0x2a,0xb3,0xd,0xdb,0xb9,0x83,0xae,0xd4,0xb9,0x71,0x69,0x22,0x31,0x51,0x44,0x2d,0x12,0xd7,0xa2,0x8a,0xba,0x12,0x47,0x25,0x81,0xaf,0xd3,0xe8,0x6f,0xec,0x3a,0x2e,0x19,0x1,0x72,0xe1,0x67,0x55,0xa,0xc5,0xac,0xb,0xc8,0x99,0x7,0xe8,0x8c,0x40,0xd9,0xdb,0x8b,0x45,0x8f,0x94,0x13,0xba,0xae,0x43,0x70,0x5,0xff,0xd3,0x7f,0xfd,0x5b,0xf8,0xf6,0x3d,0xf,0xe0,0x7b,0xf,0xfc,0x4,0x9e,0xdd,0xaf,0x22,0xe2,0x8e,0xc3,0x5a,0x5,0x54,0x29,0xc3,0x1,0x8a,0xee,0xb,0x29,0x7b,0x71,0x4d,0x64,0xbb,0xb8,0xac,0x42,0x28,0xcd,0x8,0x4,0xcf,0x5a,0xc,0xb3,0x99,0x7b,0x6d,0xa1,0x48,0xe1,0xe7,0x25,0x11,0x65,0x29,0x89,0xe9,0x17,0x4b,0x75,0x53,0x8a,0x93,0xb1,0x8a,0xe4,0x8e,0x9d,0x93,0xe3,0xec,0x9a,0x24,0xa,0x2e,0x33,0x28,0x63,0xdf,0x23,0x4f,0x13,0x47,0x9a,0x93,0x16,0x7c,0x10,0xe,0xce,0x15,0x12,0xc1,0x45,0xfc,0xe3,0xcf,0x41,0x29,0xa9,0xf9,0xb5,0xb9,0x5e,0x8e,0xd,0xeb,0xbc,0x47,0x8b,0xff,0x1a,0x86,0x61,0x18,0x86,0x9,0x80,0x86,0x61,0x18,0x86,0x61,0xfc,0xfa,0xa1,0x42,0x2,0xb0,0x48,0x50,0xea,0xaf,0xfc,0x97,0x76,0xfe,0x6b,0x3f,0x9,0x4c,0x21,0xb0,0xa0,0xe2,0xb4,0xed,0x34,0xe7,0x84,0xc5,0x62,0xc9,0x73,0xcb,0x82,0x96,0x4e,0x9c,0x7f,0xf6,0x1,0x7c,0xe0,0xf6,0x9b,0x1a,0xf1,0xa0,0x92,0x72,0xc6,0xd7,0xbe,0xf5,0x3,0x7c,0xf9,0xbb,0xf,0xd2,0x39,0x4a,0x26,0x7,0x1d,0x37,0x7,0xcb,0x7b,0xc4,0xc1,0x45,0xa2,0x64,0x46,0x29,0x35,0x5e,0x38,0xac,0xb7,0xb9,0xd8,0x23,0xd1,0x7c,0xba,0x42,0x4d,0xbf,0x65,0x1c,0x79,0xd6,0x5c,0x8f,0x9c,0x33,0x5e,0x7b,0x63,0x1b,0xaf,0x1c,0x39,0x6,0x71,0x13,0x92,0x78,0x7,0x12,0xa3,0x58,0x3c,0xd9,0xa5,0xff,0x91,0x2,0x84,0x61,0xbd,0xad,0x2,0xa7,0x38,0xf2,0xc4,0x5,0x45,0x4e,0x26,0x16,0x4a,0x12,0x50,0xa,0x89,0x3e,0x63,0x5a,0xb1,0x38,0x53,0xe7,0x1,0x92,0x50,0x16,0x6b,0x91,0x44,0x1,0x47,0x6b,0xb,0x36,0xf7,0xed,0xc7,0x38,0xac,0x59,0xb4,0xa1,0x48,0xb1,0x44,0x84,0xc5,0x51,0x15,0x58,0xbc,0xf4,0x8d,0xf0,0x97,0xa5,0xad,0x95,0x5,0x38,0x38,0x8a,0x36,0xaf,0x57,0xdb,0x33,0x37,0xa6,0x3c,0x37,0x87,0x1a,0xe1,0xce,0xfc,0x6b,0x88,0xdd,0xae,0x7d,0x20,0xf3,0xd,0x3d,0xc7,0x5c,0x43,0x88,0x2a,0x64,0x86,0xd8,0x63,0x58,0xaf,0x0,0xb0,0x83,0xd1,0x39,0x4c,0x1c,0x1b,0xe,0x2c,0x5a,0xca,0x5a,0xe5,0x54,0xb4,0x78,0x85,0xc4,0xdc,0x1e,0xe3,0xb0,0xae,0xc5,0x30,0xd2,0x7c,0xec,0x1c,0xfa,0x5,0x39,0xee,0x7c,0x21,0xc1,0x4c,0x66,0xcd,0x95,0x52,0xb8,0x7d,0x96,0x63,0xe8,0xa0,0x59,0x83,0xf4,0x90,0x48,0xf0,0x95,0x56,0x5b,0xe7,0x3d,0x8b,0x60,0x24,0x54,0x8a,0x1b,0x50,0x9a,0x87,0x4b,0x41,0x75,0x29,0xc6,0xc0,0xc2,0x57,0xe0,0x92,0x13,0x12,0xb7,0x9d,0xa7,0xef,0x89,0x0,0x27,0xe,0xc3,0x18,0x23,0xf6,0x6d,0x6e,0xe0,0xdf,0x7c,0xf6,0x2e,0xdc,0x70,0xdd,0x55,0xb8,0xfb,0xbe,0x87,0xd1,0x2f,0x16,0x24,0xa6,0xfa,0x80,0x7e,0xb1,0xa4,0x73,0x2f,0x37,0x90,0xa6,0x49,0xd7,0x3c,0x8d,0x23,0xc4,0xa1,0x2a,0xee,0xd5,0xae,0x5f,0xce,0x8a,0x4d,0xe8,0x19,0x50,0x4,0x5b,0x5a,0x76,0xc5,0x79,0x59,0x58,0x50,0x95,0x52,0x91,0xae,0x5f,0xa2,0x94,0xac,0xe,0xc8,0xae,0x93,0xf7,0x54,0x37,0xa6,0xf,0x81,0x84,0xc8,0x9,0x3a,0x8f,0x51,0xe6,0x1e,0x6a,0xac,0x38,0x46,0x75,0x3c,0xd2,0x5a,0x5,0xfe,0x9c,0x7b,0xe4,0x22,0xe,0x40,0x7,0x17,0x7a,0x2a,0xa9,0x1,0xaa,0x3,0x37,0x4d,0x5a,0x2,0x23,0x51,0x63,0x69,0x88,0x1e,0xc5,0x1,0x2b,0x82,0x75,0x66,0x61,0x33,0x67,0x72,0x22,0xb2,0x2b,0xf4,0xcd,0xa2,0xf7,0x86,0x61,0x18,0x86,0x61,0x98,0x0,0x68,0x18,0x86,0x61,0x18,0xc6,0xaf,0x44,0x0,0x84,0x96,0x3f,0x24,0x9e,0xb7,0xe7,0x40,0x73,0xc5,0x44,0xec,0xca,0x25,0x23,0x8f,0x89,0xc4,0xa,0x57,0xdb,0x7e,0x49,0xc0,0x88,0x2c,0xfe,0x75,0x33,0x2d,0xed,0xae,0x3b,0x6e,0xc4,0xe6,0xc6,0x72,0xb7,0xb8,0x56,0xa,0xee,0xb9,0xef,0x11,0xfc,0xfd,0xb7,0xee,0x47,0xca,0x6d,0xdb,0xa8,0x43,0x29,0x4e,0x5d,0x49,0x6d,0xd1,0x2,0x35,0x12,0x93,0x78,0xd3,0x2d,0x96,0x18,0x56,0xdb,0x24,0x74,0x8c,0x23,0xa4,0x3c,0x81,0x66,0x8e,0x15,0x72,0xf,0x86,0x88,0x71,0x18,0x0,0x14,0xc,0x25,0x93,0xd3,0x8a,0x5d,0x51,0x2a,0x52,0x71,0xac,0x79,0x2f,0x1,0xd0,0x3b,0xcf,0x73,0xfd,0x96,0xec,0x40,0x2c,0x0,0x32,0x8a,0x73,0x28,0xb9,0xb0,0x58,0x96,0x34,0x32,0x9b,0xd9,0x29,0x85,0x52,0x68,0xc6,0xda,0xb0,0xe6,0xb5,0x75,0x18,0x56,0xd5,0x61,0xe5,0xb8,0xf5,0x57,0xdc,0x8a,0x1d,0x8b,0x3e,0x41,0x67,0x12,0x3a,0x74,0xb,0x12,0x79,0x4a,0x96,0xf8,0x2a,0x39,0xea,0x86,0xd5,0x36,0xcd,0xd6,0x63,0x61,0x2e,0x76,0x1d,0x72,0xe0,0xd8,0xe7,0x34,0x92,0x23,0xb2,0x14,0x6d,0x9b,0x25,0x11,0x2f,0x6a,0x73,0xae,0x94,0xa7,0x74,0x5d,0x5f,0x1f,0x3c,0x8b,0x9a,0x14,0x59,0x9d,0x54,0x90,0x12,0x21,0xaa,0xeb,0xfb,0x66,0xa6,0x5b,0xc0,0x38,0xc,0x1a,0xb,0x17,0xc7,0x5a,0x60,0x51,0x54,0x1c,0x9b,0x0,0x30,0xe,0x2b,0x74,0x5d,0xcf,0xcd,0xbb,0x2c,0x2e,0x79,0x12,0xef,0x24,0x6e,0x3b,0x4d,0x23,0x42,0x53,0x90,0x92,0x72,0xc2,0x34,0xc,0x1a,0xf1,0x5,0x28,0x82,0x2d,0x2,0x9d,0x88,0xa9,0x40,0xe1,0x66,0xe5,0x5a,0xb6,0x21,0xe7,0x88,0x7c,0x4e,0x6a,0xc0,0xcd,0xd5,0xc5,0xc6,0x62,0x6a,0xe8,0xfa,0x2a,0x6a,0x6e,0xf4,0x1c,0x45,0x25,0xc1,0x5b,0x4,0xe3,0x76,0xed,0x4a,0x4e,0xf0,0x31,0x62,0xdf,0xc6,0x12,0xff,0xc3,0x67,0x3f,0x82,0x1b,0xae,0xbf,0x9a,0x8e,0x5,0xba,0xaf,0xc5,0xb2,0x63,0xb7,0x6a,0x50,0x37,0x5c,0x29,0x5,0x5d,0xb7,0x40,0xe2,0xd8,0x73,0x9d,0x1,0x58,0x10,0xbb,0x88,0x61,0xbd,0xd2,0xe7,0x2e,0x22,0xa3,0x73,0x5e,0x9d,0x78,0x12,0x81,0x16,0xf1,0x4f,0x3e,0xb,0x34,0x17,0x91,0x5c,0x8d,0x52,0xda,0xc3,0xaa,0x9d,0xfe,0xb7,0x8,0x77,0x22,0x48,0x7a,0xef,0xa9,0xa4,0x84,0xd7,0x18,0x28,0xe8,0x16,0xe4,0x40,0xcd,0xfc,0xbf,0x56,0x4,0x6e,0xe3,0xdc,0xf2,0x79,0xa1,0xe3,0xf2,0xfe,0x60,0x97,0xa8,0xf7,0x1,0x69,0x1a,0xe9,0xf5,0xec,0x7c,0x4c,0xa9,0xa8,0xfb,0x90,0x4,0xd6,0xb1,0xa,0xab,0x22,0xfa,0x15,0x76,0xb0,0x3a,0x6b,0x1,0x36,0xc,0xc3,0x30,0xc,0x13,0x0,0xd,0xc3,0x30,0xc,0xc3,0xf8,0xb5,0x42,0x2e,0x3f,0xc7,0x2e,0x22,0x12,0x55,0x72,0x4a,0xc8,0x28,0x40,0x6e,0x62,0x96,0xa1,0xb6,0xaa,0x6a,0xac,0x35,0xd0,0x6c,0xb4,0x10,0xa2,0xa,0x86,0xa5,0x14,0x5c,0x78,0xce,0x59,0xb8,0xf9,0xc6,0xeb,0xf7,0x3c,0xdf,0xcb,0xaf,0x1c,0xc6,0x5f,0x7f,0xed,0x1e,0x64,0x9e,0xd,0x36,0xae,0x57,0x70,0x9e,0x9c,0x6e,0xe,0x14,0xdf,0x15,0xf1,0x40,0xa2,0xa3,0x32,0x6b,0x6d,0x1c,0x7,0x15,0xe7,0x64,0x46,0xa1,0xb8,0xfa,0xa6,0xf5,0x80,0x94,0x26,0x2c,0x96,0x9b,0x3a,0x4b,0x4f,0x8b,0x12,0xa4,0x40,0x61,0x18,0x58,0x4,0x64,0x71,0xd1,0x53,0x6c,0x76,0xd7,0x9a,0xb0,0x18,0x52,0xa,0xcd,0x9c,0x4b,0xd3,0x88,0x9c,0x24,0xb2,0xc9,0xa2,0xa4,0x27,0x21,0x34,0xe7,0x84,0x7e,0xb1,0xc4,0xb0,0x5a,0x21,0xf6,0x7d,0x9d,0x3,0xc8,0x33,0xdd,0xaa,0x2b,0x8c,0x44,0x33,0x57,0x48,0x28,0x1b,0x87,0x35,0x42,0xec,0xd0,0xf5,0xb,0x4c,0xd3,0x84,0x7e,0xd1,0xab,0xa3,0x6d,0x58,0xaf,0x74,0x76,0x9c,0x94,0x34,0xf4,0xcb,0x4d,0x72,0xef,0xa5,0x9,0xb1,0x63,0xb1,0xb5,0x50,0xc1,0x82,0x88,0x72,0xe2,0xf6,0xe2,0xe5,0x2,0x0,0x74,0x1d,0xb9,0xb8,0x62,0xd7,0xe9,0xbc,0xb8,0x18,0x3b,0x84,0x10,0x30,0xc,0x6b,0x5a,0x3b,0x16,0x14,0x65,0xde,0xdf,0x88,0x7a,0xf,0x40,0x56,0xf7,0x57,0xb7,0x58,0xc0,0xf1,0xda,0x80,0x63,0xb9,0x8b,0xd,0x2a,0xdd,0x48,0x69,0x42,0x9a,0x46,0x2a,0x43,0x59,0x6c,0xa8,0xa8,0x9b,0xb3,0xc4,0x40,0x65,0x2f,0x79,0x6e,0x43,0xee,0x48,0xdc,0xf2,0x14,0x87,0xf5,0x8e,0x66,0x1,0x16,0xd0,0x3d,0x45,0x8e,0xe8,0xb6,0xb3,0xf,0x8b,0xec,0x39,0x2e,0x98,0xa1,0x19,0x7e,0xbd,0xba,0x29,0xb5,0xb5,0xda,0x79,0x4,0x16,0x84,0xbb,0xe5,0x86,0xa,0x8a,0x2a,0xf4,0xa5,0x89,0xda,0x9f,0x59,0x95,0xd2,0x59,0x8a,0xdc,0x2a,0xc,0x3e,0x7e,0x29,0x11,0x1b,0x8b,0xe,0x7f,0xfc,0xb9,0x8f,0xe3,0x9a,0x2b,0x2f,0xab,0x1b,0x84,0x3f,0x7,0x21,0xf6,0xea,0x1c,0xa4,0xeb,0x48,0x70,0x1d,0x35,0x2f,0x3b,0xcf,0xb3,0xff,0x4a,0xd6,0x67,0x8,0x76,0x7c,0x4a,0x94,0x3e,0xf0,0xc,0x48,0x7a,0x86,0x51,0x9b,0x7d,0x3b,0x16,0xc5,0x4b,0x2e,0x88,0x4b,0x8a,0x79,0xb7,0xb3,0x2b,0x4b,0xae,0xf3,0xf6,0xaa,0x5b,0xb0,0x3e,0x73,0xc7,0xb1,0x6b,0x11,0x1f,0xc5,0x61,0x29,0xb3,0x19,0xb,0xc7,0x8f,0x1,0x3a,0xef,0xb8,0x5e,0xc1,0xc7,0x88,0x8e,0x1b,0x96,0x5d,0x70,0x8d,0x63,0x92,0x5,0xd5,0x48,0xff,0x30,0x30,0xac,0x57,0xea,0xaa,0x54,0xb7,0x1f,0x5f,0x9b,0x63,0x31,0x52,0x9c,0xa9,0xd2,0xa0,0x4c,0x9f,0xe9,0xc4,0x22,0x63,0x9a,0x95,0xdf,0x18,0x86,0x61,0x18,0x86,0x61,0x2,0xa0,0x61,0x18,0x86,0x61,0x18,0xbf,0x6,0x9c,0xb6,0x7d,0x7a,0xfe,0xcb,0xb9,0x8,0x35,0x34,0x6f,0x2d,0xc4,0xc0,0xdf,0xcb,0x70,0xae,0xe8,0xcc,0x2f,0x80,0xca,0x16,0xd2,0x34,0xd5,0x38,0x60,0xce,0xe8,0x16,0xb,0xdc,0x71,0xf3,0xb5,0xd8,0x58,0x2e,0x76,0xb,0x6b,0xa5,0xe0,0x4b,0xdf,0xbc,0x17,0xc7,0xb7,0xd7,0x40,0x21,0xb7,0x5e,0xd7,0x2f,0xb0,0x5e,0x9d,0x80,0xf3,0x1e,0xeb,0xf5,0xb6,0xc6,0x4f,0x45,0xbc,0x98,0xa6,0x69,0xd6,0xfc,0x5a,0xb8,0x79,0x35,0xe7,0x84,0xc4,0xa5,0x25,0xd3,0x30,0x0,0x0,0xb6,0x8f,0xbf,0xa1,0x82,0xc5,0xf6,0xf1,0x37,0x10,0xfb,0x5e,0xdd,0x59,0x53,0x4a,0x3a,0x23,0xcd,0x87,0x88,0x69,0x5c,0xab,0xd3,0x6a,0xd7,0x9a,0x34,0x45,0xb,0x24,0x8e,0xf5,0xd8,0x1e,0x8f,0xa1,0xe4,0x82,0x3,0x5b,0x1b,0x38,0xb0,0xb5,0x1,0xef,0x3c,0xb6,0x57,0x2b,0x1c,0xdd,0x1e,0x71,0xe2,0xc4,0x9,0x74,0x8b,0x5,0x35,0xd7,0xb2,0xe8,0x56,0x0,0x75,0x5a,0x95,0x92,0xb1,0xd8,0xd8,0xa7,0xee,0xb2,0x52,0x80,0x7d,0xfb,0xf,0x20,0xa7,0x84,0x71,0x1c,0xd8,0x75,0x45,0x51,0xea,0x65,0x1f,0x70,0xd1,0xa1,0x73,0x28,0x9e,0xea,0x3c,0x5e,0x7d,0xed,0x8,0xb6,0xd7,0x3,0x52,0x41,0xe3,0xb4,0xa4,0xb8,0x73,0xf4,0xbd,0x68,0x31,0x14,0x2b,0x85,0x67,0xb1,0x8c,0x5a,0x92,0xfb,0x25,0x47,0xb3,0x1d,0x39,0x7,0xbd,0xf3,0x70,0xce,0x53,0x5c,0x94,0x8b,0x5b,0x72,0x4e,0x54,0x4,0x21,0x65,0x1b,0x39,0x21,0x7a,0x87,0x73,0xf,0x1d,0xc4,0xd6,0xc6,0x12,0xaf,0x1f,0x3d,0x8a,0x57,0x8f,0x6e,0x93,0x2c,0xda,0x44,0x6a,0xa9,0xd,0x97,0x9f,0x49,0x29,0x5a,0xc,0xe3,0xbc,0x43,0xf4,0x1,0x9b,0xcb,0x1e,0x9b,0x8b,0x1e,0x1b,0x4b,0x12,0xf5,0x86,0x61,0xc2,0xeb,0x6f,0x9c,0xc0,0xf1,0xd5,0x8a,0xc4,0x3d,0xf9,0xa1,0xb5,0x89,0xae,0xe,0xeb,0x15,0x16,0x1b,0x9b,0xea,0x30,0x74,0x2a,0x0,0x7a,0x75,0xc4,0x79,0x8e,0x30,0x4b,0x8c,0x58,0x5c,0x77,0x81,0xbf,0x57,0x0,0xf4,0xd1,0xe3,0x8c,0x7d,0x9b,0xd8,0xe8,0x3,0xba,0x2e,0x62,0x3d,0x4c,0x38,0xbe,0x1a,0x71,0x6c,0x35,0xd0,0x9e,0x91,0xa6,0x5f,0x38,0x8d,0xe6,0x6,0x15,0x4e,0x49,0x45,0xb,0x21,0x62,0xa3,0xf7,0xf8,0x37,0x9f,0xbd,0xb,0xd7,0x5d,0x7d,0xf9,0xfc,0x7,0xed,0x6e,0x1,0xe7,0xb9,0x60,0x25,0x4,0x72,0x78,0x76,0x1e,0x8e,0xa3,0xdc,0xf4,0xbf,0x44,0xed,0xcf,0x9e,0x9c,0x9e,0xde,0x7,0x4c,0xd3,0x48,0x5,0x31,0x2c,0x7a,0x6a,0xac,0x97,0x1b,0xb4,0x73,0x29,0x38,0xb0,0x6f,0x3,0x5b,0x9b,0x4b,0x6c,0x2c,0x7b,0x8c,0xa9,0xe0,0xc8,0x91,0x23,0x38,0xb6,0xa,0xc8,0x2c,0xe,0x36,0xbb,0x14,0x3e,0x14,0x2d,0xdf,0x10,0x91,0x3c,0x4,0x3a,0xf,0xad,0x5f,0x66,0xd1,0x98,0x44,0x3a,0xe7,0x3d,0x62,0xa8,0xa5,0x20,0xe0,0x75,0xed,0x17,0x1b,0x70,0xc1,0x63,0x62,0x81,0xfc,0xe0,0xfe,0xd,0xec,0xdf,0x5c,0x62,0x9a,0x26,0xbc,0x7c,0xf8,0xd,0x1c,0x3f,0xb1,0x4d,0x7b,0x8e,0x1d,0x84,0x39,0x65,0x6e,0xfc,0x2d,0x18,0xa7,0x9,0x3e,0x78,0xe4,0x71,0x2,0x58,0x54,0x24,0xb1,0x11,0x3a,0xc7,0x30,0x71,0x21,0xd,0x0,0xb8,0xd1,0xed,0x39,0x16,0xc0,0x30,0xc,0xc3,0x30,0xc,0x13,0x0,0xd,0xc3,0x30,0xc,0xc3,0xf8,0x55,0x8b,0x80,0x94,0xfb,0x25,0x97,0x8e,0x64,0xf5,0xa,0x7d,0x4d,0x9c,0x45,0x52,0x3e,0xd0,0xf4,0x1,0x68,0x39,0x46,0xc9,0x9,0xd3,0x44,0xc2,0x57,0x1f,0x3,0xde,0x79,0xed,0x15,0x7b,0x9e,0xe7,0xb9,0x17,0x5e,0xc6,0x7d,0x8f,0x3c,0x43,0xae,0x33,0x6e,0x9d,0x5d,0xaf,0xb7,0x49,0x30,0x91,0x26,0x52,0x69,0x32,0xf5,0x54,0x22,0x81,0x42,0x45,0x13,0xab,0x13,0xc7,0xb1,0xdc,0xd8,0xa7,0x33,0xd0,0xc6,0x71,0x8d,0xd0,0xb8,0x9c,0xd6,0xab,0x6d,0x2c,0x96,0x1b,0x58,0x9d,0x38,0x46,0xf1,0xcd,0x52,0x30,0x1e,0x5f,0x23,0x2f,0x13,0x86,0xf5,0xa,0x9b,0x5b,0xfb,0xb1,0xde,0x3e,0x1,0x80,0xa,0x1f,0x48,0x10,0x21,0xb7,0xd2,0x2e,0xa1,0x32,0x67,0xf4,0xfd,0x12,0xab,0x35,0x9,0x3c,0x5b,0x1b,0x3d,0xee,0xba,0xf5,0x66,0xdc,0x78,0xfd,0x55,0x38,0x74,0xf0,0x0,0xc5,0x5e,0x59,0x14,0x3d,0x76,0xfc,0x4,0x9e,0x79,0xee,0x45,0x7c,0xf3,0xfb,0xf,0xe0,0xb1,0xe7,0x5e,0xc1,0x30,0xc8,0xac,0xbd,0x40,0xe,0x43,0x14,0x2c,0x36,0xf6,0x21,0xa7,0x9,0xd3,0x38,0x62,0x63,0xdf,0x7e,0x3d,0x67,0xd7,0x2f,0x10,0xc6,0x8c,0xf7,0xde,0x78,0x25,0xde,0x73,0xc3,0xd5,0xb8,0xe8,0xfc,0x73,0xb1,0xb5,0x6f,0x13,0x31,0x46,0x4d,0x78,0xe,0xc3,0x88,0xd5,0x6a,0x8d,0xe7,0x5e,0x7c,0x19,0xf7,0xde,0xff,0x8,0xee,0x7b,0xf4,0x19,0xc,0x63,0x86,0x7,0x50,0x1c,0xb5,0xfd,0x92,0x10,0xd7,0xb8,0x1d,0x9d,0xe7,0x48,0x30,0x3d,0xa8,0x2b,0x2f,0x3a,0x7,0x9f,0xfa,0xd0,0x6d,0x2c,0x6e,0x6a,0x21,0x30,0xbe,0xf2,0xed,0x1f,0xe1,0xa9,0x17,0x5f,0xe1,0x62,0x97,0x1,0xde,0x7b,0xdc,0x79,0xeb,0xf5,0xf8,0xe0,0xed,0x37,0xe1,0xdc,0x43,0x7,0xd9,0x65,0x56,0xf0,0xea,0x6b,0xaf,0xe3,0x7,0xf,0x3c,0x8a,0x7f,0xba,0xe7,0x41,0x1c,0x39,0xb6,0xcd,0xf1,0xd8,0xcc,0x85,0x1d,0x14,0x19,0xee,0xba,0x1e,0x7,0xf7,0x2f,0x71,0xfb,0xbb,0xaf,0xc6,0x75,0x57,0x5d,0x86,0x73,0xe,0x1d,0x44,0x17,0x23,0x97,0x6c,0x14,0xe4,0x52,0x30,0xc,0x23,0xe,0xbf,0xfe,0x6,0x1e,0x7d,0xf2,0x59,0x7c,0xeb,0xde,0x87,0xf0,0xf2,0x6b,0x47,0x51,0x0,0x4c,0xe3,0xb0,0x63,0x6,0x22,0xb7,0x4f,0x73,0x84,0x38,0x97,0x4c,0x33,0xff,0xf8,0xde,0x62,0x57,0x85,0xb0,0x9c,0x13,0x16,0xcb,0xd,0x1c,0x3a,0x63,0x89,0x3b,0xde,0xf3,0x4e,0x5c,0x73,0xc5,0xc5,0x38,0xfb,0xac,0x33,0xb1,0x5c,0xf6,0x88,0x1c,0x7b,0xcd,0xa5,0x60,0x9a,0x12,0x8e,0x1f,0x3f,0x81,0xe7,0x5f,0x7c,0x9,0xf,0x3d,0xfe,0x2c,0xee,0x7e,0xe0,0x71,0xac,0x87,0x9,0x5,0x60,0x47,0x65,0x99,0x9,0x53,0xfb,0x36,0x7a,0xfc,0xd1,0xbf,0xfa,0x18,0xae,0xbc,0xec,0xa2,0xf9,0x67,0xc5,0x39,0x7c,0xf0,0xb6,0x1b,0x70,0xeb,0x8d,0x57,0xcb,0x6e,0xd1,0xa6,0x62,0xf9,0xef,0xf5,0x30,0xe2,0x4f,0xfe,0xe6,0x1b,0x18,0xa6,0xa4,0x65,0x18,0xe0,0x18,0x6f,0xe1,0x22,0x95,0x18,0x3b,0x0,0xe,0xdd,0xa2,0xc7,0xd9,0x5b,0x3d,0xee,0xb8,0xf9,0x7a,0x5c,0x7b,0xc5,0x45,0x38,0xeb,0xcc,0x3,0x58,0x2c,0x16,0xea,0x4a,0x9c,0xa6,0x9,0x27,0xb6,0xb7,0xf1,0xd2,0xcf,0xe,0xe3,0xfb,0x3f,0x7a,0x4,0xf7,0x3d,0xfa,0x34,0xb6,0x57,0xe0,0xd9,0x98,0xa5,0x3a,0x2a,0x63,0x84,0x6c,0x1a,0x71,0xf2,0x76,0xfd,0x12,0x9b,0x8b,0x88,0x3f,0xfc,0xcc,0x5d,0xe8,0xbb,0xc0,0xd7,0x42,0x2f,0x7b,0xf8,0xf1,0x67,0xf1,0x8d,0x7b,0x1f,0xd6,0xa6,0x63,0x0,0xb8,0xfa,0xe2,0x73,0xf1,0x7b,0xbf,0xfd,0x61,0x5c,0x72,0xe1,0xf9,0xe8,0xfb,0xe,0xb9,0x14,0x1c,0x3d,0x7a,0xc,0x8f,0x3c,0xf6,0x4,0xbe,0xf0,0xb5,0xef,0xe2,0xd9,0x9f,0xbe,0x4a,0x6b,0x9e,0xc8,0xd1,0x5a,0xa,0x78,0x5e,0x25,0x97,0xda,0xf0,0xb1,0xa4,0x39,0xbb,0x5d,0x4f,0x99,0x59,0x29,0x5,0x26,0x75,0xe6,0xa8,0x61,0x18,0x86,0x61,0x18,0x26,0x0,0x1a,0x86,0x61,0x18,0x86,0xf1,0x2b,0x47,0x84,0x6,0x38,0xa8,0x5b,0xc8,0x79,0x69,0x1f,0xa5,0x28,0x64,0xce,0x19,0x5d,0x17,0x59,0x70,0xc9,0xf0,0x81,0x67,0xbb,0x71,0xec,0x4f,0xda,0x70,0x1,0xe0,0xfc,0xb3,0xb6,0x70,0xce,0xa1,0x83,0x7b,0x9e,0xeb,0xbe,0x87,0x9e,0xc0,0xd4,0xb8,0x81,0xa6,0x69,0x40,0xdf,0x2f,0x31,0xac,0xb7,0xd9,0x95,0x37,0x0,0x9e,0x63,0xc9,0xdc,0xdc,0x9a,0x26,0x87,0xf5,0xf6,0x9,0x38,0xe7,0x70,0xec,0xe8,0x61,0x76,0x7d,0x65,0x4c,0xc3,0x1a,0xeb,0x94,0xa8,0xf0,0x42,0xb,0x33,0x12,0x86,0xd5,0x36,0x37,0xc6,0x92,0x2b,0x6d,0xb5,0x7d,0x1c,0xc1,0x7,0x12,0xff,0x9c,0xc3,0x62,0xb9,0x49,0xe2,0x84,0xf,0x70,0x28,0xb3,0xb6,0xe3,0x56,0xe4,0x49,0x69,0x82,0x77,0xe,0xef,0xbf,0xe9,0x6a,0x7c,0xe4,0xfd,0x37,0xe1,0xcc,0x33,0xb6,0x76,0xbd,0x2e,0x4,0x8f,0xb3,0xce,0x3c,0x3,0x67,0x9d,0x79,0x6,0x6e,0x7c,0xc7,0xd5,0xb8,0xef,0xc7,0x8f,0xe1,0x4f,0xfe,0xf6,0x9f,0x30,0x72,0x69,0xc5,0x34,0x26,0x8d,0xac,0x86,0x10,0xd0,0xf5,0x4b,0x8c,0xc3,0xa,0xa5,0x14,0xf4,0xfd,0x2,0xb7,0x5c,0x7f,0x29,0x3e,0xf9,0xa1,0xdb,0x70,0xfe,0xb9,0x87,0x4e,0xea,0x8a,0x8a,0x1b,0x1,0x9b,0x1b,0x4b,0x1c,0x3c,0xeb,0x0,0x6e,0xbc,0xfe,0x2a,0x3c,0xf7,0xc2,0x4b,0xf8,0xeb,0xaf,0xdc,0x8d,0x47,0x9f,0x7e,0x91,0xc5,0xda,0x35,0xb9,0xfd,0x16,0x4b,0x24,0x16,0x16,0x25,0x16,0x9a,0x73,0x46,0xbf,0x58,0xe2,0x82,0x73,0xcf,0xc6,0xcd,0xef,0xda,0x1d,0xc9,0xbe,0xff,0x91,0xa7,0xf0,0xcc,0x4b,0x87,0x31,0x4d,0x13,0xe,0x9c,0xb1,0x85,0xdf,0xff,0xd4,0x9d,0x78,0xf7,0x3b,0xaf,0xae,0x7b,0x82,0xb9,0xe0,0xfc,0x73,0x70,0xfe,0x79,0x87,0x70,0xeb,0x4d,0xd7,0xe3,0xcf,0xff,0xee,0xeb,0x78,0xf0,0xc9,0x17,0x10,0xfa,0x9e,0xbb,0x62,0xa,0xb6,0x36,0x7b,0x7c,0xe6,0xae,0xdb,0x71,0xcb,0xbb,0xae,0xc3,0xc6,0x1e,0x73,0x1f,0x85,0xbe,0xeb,0xb0,0xb5,0x6f,0x13,0x97,0x5c,0x74,0x1e,0xee,0xbc,0xed,0xdd,0xf8,0xd6,0xf7,0xee,0xc3,0xdf,0x7c,0xf5,0xfb,0x28,0xb9,0xe3,0xf8,0xf6,0x82,0x67,0xcb,0xa5,0x2a,0x98,0x95,0xc,0xef,0xa2,0xc6,0x90,0x29,0x4a,0x9b,0x1,0xe7,0x11,0x63,0xc4,0xd9,0xfb,0xcf,0xc0,0xef,0x7c,0xf4,0x7d,0x78,0xd7,0x3b,0xae,0x45,0xdf,0x77,0x7b,0x9e,0x37,0x0,0xe8,0x62,0xc4,0xc6,0x72,0x81,0x43,0x67,0x9f,0x85,0x77,0xdf,0x70,0x1d,0x3e,0xfd,0xf1,0x3b,0xf1,0xa3,0x1f,0x3f,0x8a,0xcf,0x7f,0xe3,0x7,0x78,0xf5,0xc8,0x1b,0xd8,0xd8,0xb7,0x45,0x8e,0xd0,0x9c,0xb1,0x7f,0xa3,0xc7,0x1f,0x7d,0xee,0x63,0xb8,0xe2,0xd2,0x8b,0xf6,0x3c,0xde,0x55,0x97,0x5f,0xfc,0xa6,0x9f,0xa9,0x13,0xdb,0x2b,0x6c,0xfc,0xc3,0x77,0x31,0x1c,0x3b,0xc1,0x7b,0x5d,0x4a,0x35,0x82,0x7e,0xa6,0x4a,0x29,0x38,0x74,0xc6,0x6,0x7e,0xef,0x93,0x77,0xe2,0xba,0x6b,0x2e,0x47,0xdf,0xed,0x7d,0xed,0x31,0x6,0x2c,0x97,0xb,0x1c,0x3c,0xeb,0x4c,0xbc,0xe3,0xda,0x2b,0xf0,0xf1,0x97,0x5f,0xc5,0x97,0xbe,0xfe,0x5d,0xdc,0xfd,0xc0,0x13,0x14,0x39,0x96,0x46,0x6c,0x6e,0x8b,0x9e,0xd8,0x2d,0x2b,0x65,0x2e,0x5d,0x8c,0xb8,0xf1,0x1d,0x57,0x61,0xb9,0x98,0x3b,0x72,0x87,0x61,0xc2,0xb7,0xef,0x7f,0x2,0xde,0x7,0xc4,0xe0,0xf0,0xe1,0x5b,0xaf,0xc3,0x6f,0x7d,0xf4,0x4e,0x2c,0x9a,0xd7,0x5,0x0,0x67,0x1f,0x3c,0x13,0xbf,0x71,0xfb,0x2d,0x78,0xf7,0xd,0xd7,0xe1,0xcb,0xdf,0xf8,0xe,0xfe,0xe6,0x2b,0xdf,0xc6,0xe4,0x3d,0xf2,0x94,0x58,0x38,0x9e,0xb8,0x29,0x18,0xb3,0x99,0x9a,0x72,0x8f,0x0,0x34,0xba,0x9c,0x33,0xef,0xf1,0x52,0x60,0xe2,0x9f,0x61,0x18,0x86,0x61,0xbc,0x3d,0x98,0x0,0x68,0x18,0x86,0x61,0x18,0xc6,0x29,0xa1,0x45,0x1b,0x5c,0x12,0x21,0x5,0x15,0x52,0x1c,0xe0,0xbc,0x87,0x7,0xb5,0xd6,0x7a,0x6e,0xb2,0x15,0xd7,0x91,0x88,0x4c,0x21,0x76,0x24,0xce,0x78,0x8f,0x2b,0x2e,0x3e,0xf,0x5d,0xdc,0xfd,0xa3,0xc8,0x6a,0x3d,0xe0,0x87,0x8f,0x3c,0xd,0xe7,0x3,0xb5,0xba,0x72,0xd4,0x78,0x1c,0xd7,0xc8,0x25,0x63,0x38,0x71,0xc,0x5d,0xbf,0xc0,0x8a,0x7f,0x2d,0x39,0x63,0x7d,0xe2,0xb8,0x16,0x59,0x48,0x5c,0xf7,0xf8,0x1b,0xaf,0x63,0xb1,0xdc,0xa0,0x6b,0xcf,0x19,0xe3,0xb0,0xe2,0x32,0x7,0x60,0xbd,0x3a,0xa1,0xd7,0x45,0x38,0xf4,0xcb,0x25,0xc6,0x71,0xd,0x9f,0x48,0x10,0xc9,0x5a,0x72,0x50,0xa3,0xa5,0x7b,0xd1,0xc7,0x88,0xdf,0xfd,0xc4,0x7b,0xf0,0xae,0xeb,0xaf,0x82,0xf7,0x3f,0x3f,0xb2,0x18,0x42,0xc0,0x7b,0xde,0x75,0x1d,0xce,0x3c,0x63,0x1f,0xfe,0xdd,0x9f,0x7d,0x9,0xdb,0x6b,0x8a,0x37,0x8f,0xe3,0x0,0x20,0xab,0x8,0xe2,0x7d,0x40,0x17,0x23,0x7e,0xf7,0x63,0xef,0xc3,0x6f,0xde,0x71,0xb,0x62,0x3c,0xf5,0x42,0x4,0xef,0x3d,0x2e,0xbd,0xf8,0x2,0xfc,0xdb,0xdf,0xff,0x4,0xfe,0xfa,0x4b,0xdf,0xc2,0x77,0x1e,0x78,0x82,0xdc,0x88,0xcb,0xd,0x0,0xe,0x5e,0xf2,0xc0,0xe0,0xc2,0x13,0x6d,0xa,0x3e,0xc9,0x8f,0x86,0x3c,0x6b,0xee,0xc0,0xfe,0x2d,0xfc,0xe1,0xa7,0x3f,0x80,0x1b,0xae,0xbb,0xf2,0xa4,0x42,0xa4,0x73,0xe,0xe7,0x9d,0x73,0x36,0xfe,0xf8,0xf,0x3e,0x8d,0x2f,0x7c,0xf5,0x3b,0xf8,0xf2,0x77,0xee,0x87,0xf,0x11,0x97,0x9d,0x77,0x10,0xff,0xcd,0x67,0x3e,0x8c,0xb,0xce,0x3f,0xe7,0x17,0xda,0x77,0xcb,0x45,0x8f,0x8f,0xdc,0x79,0x1b,0x2e,0xbe,0xe0,0x1c,0xfc,0x1f,0x7f,0xfe,0x15,0x1c,0xdb,0x5e,0xf1,0x8c,0xc2,0x51,0x8b,0x28,0xa4,0xc0,0x84,0x22,0xe6,0x5e,0xe3,0xb3,0x3e,0x74,0x8,0x3e,0xe0,0x3,0x37,0x5f,0x8d,0x4f,0x7c,0xf8,0x76,0x9c,0xb1,0xb5,0xef,0x17,0x3a,0xb7,0x73,0xe,0x5b,0xfb,0x36,0xf1,0xfe,0xdb,0x6e,0xc2,0x3,0x8f,0x3d,0x83,0x23,0xc7,0x57,0x24,0x3e,0xc3,0xe1,0xe0,0x19,0x5b,0xf8,0xe3,0xcf,0x7d,0x1c,0x17,0x5f,0x78,0xee,0x5b,0xfa,0x4c,0x49,0x31,0x8a,0x14,0xe7,0x38,0xe7,0xb4,0x5c,0x23,0xf6,0x3d,0x6e,0xba,0xea,0x2,0xfc,0xee,0x27,0x3f,0x80,0x3,0x67,0xec,0xff,0x85,0x8e,0x7d,0xfe,0xb9,0x67,0xe3,0xf,0x3f,0xfb,0x49,0x5c,0x74,0xfe,0x3d,0xf8,0xeb,0xaf,0xfd,0x40,0x63,0xe7,0x25,0xd7,0x8,0x30,0x0,0x9e,0xfb,0x97,0xb1,0x58,0x6e,0x68,0x4c,0x7c,0xb6,0x97,0x78,0x46,0x5f,0x29,0x19,0x1f,0xbb,0xfd,0xdd,0xf8,0xd4,0x5d,0xbf,0xc1,0x2e,0xc2,0xbd,0xd9,0xda,0xda,0x87,0xdf,0xf9,0xe4,0x87,0x71,0xc1,0xb9,0x67,0xe3,0x7f,0xff,0xd3,0xbf,0xc5,0x9,0x8e,0x3a,0xcb,0x5c,0xca,0x52,0x80,0x2c,0x33,0x1d,0x67,0x6b,0x91,0xab,0x93,0x18,0x8e,0x8b,0x40,0x2,0x9c,0xb,0x28,0xc5,0x66,0x1,0x1a,0x86,0x61,0x18,0xc6,0x5b,0xc5,0xdb,0x12,0x18,0x86,0x61,0x18,0x86,0x71,0x2a,0xe4,0x94,0x38,0xda,0xeb,0x75,0x7e,0x59,0xce,0xec,0x5c,0xf3,0x1e,0x25,0x51,0x2b,0xa9,0x94,0x52,0x90,0x70,0xe6,0x74,0x8e,0x99,0x38,0x1,0x29,0xb2,0x3b,0xe1,0x92,0x8b,0xce,0xdf,0xf3,0x3c,0xaf,0x1f,0x39,0x86,0xc3,0x6f,0xac,0x48,0x14,0x40,0x61,0x51,0x8a,0x4,0x1,0x69,0x43,0x1d,0x86,0x15,0xfa,0xe5,0x26,0xd6,0xeb,0x6d,0x8c,0xe3,0x1a,0xeb,0xd5,0x36,0x8e,0xbe,0xfe,0x2a,0xb6,0x8f,0xbf,0xa1,0x31,0x51,0xef,0x3d,0xc6,0xf5,0x1a,0xc3,0x9a,0x44,0x9b,0x37,0x5e,0x7f,0x8d,0x23,0xc1,0x3,0xbb,0xee,0x6,0xc,0xeb,0x6d,0x9a,0x2d,0xb8,0x7d,0x1c,0xc7,0x8f,0xbe,0x8e,0x69,0x18,0xa8,0x99,0xd7,0x79,0xac,0x4e,0x1c,0xa7,0xd7,0xac,0xb6,0xd9,0xe9,0xb6,0x5b,0xf0,0x72,0xde,0xe1,0x73,0x9f,0x78,0x2f,0x6e,0x7a,0xe7,0xd5,0xa7,0x24,0xfe,0xe9,0xfb,0x9c,0xc3,0x95,0x97,0x5f,0x82,0xcf,0x7d,0xea,0x37,0x54,0x88,0x91,0xe6,0xe1,0x18,0x3b,0x6d,0x20,0xfe,0xe4,0x7,0x6e,0xc6,0x87,0xef,0x7c,0xef,0x2f,0x24,0xfe,0xb5,0x6c,0x6e,0x6c,0xe0,0x33,0x9f,0xb8,0x13,0x57,0x5c,0x70,0x36,0x42,0x88,0x34,0xdb,0x30,0x46,0x74,0xfd,0x2,0xb1,0xeb,0xb9,0x99,0x98,0x5c,0x8e,0xe4,0x40,0x2b,0x27,0xb9,0x5e,0x8a,0xe7,0x7e,0xfa,0x43,0xef,0x79,0x53,0xf1,0xaf,0x65,0xb1,0xe8,0x71,0xe3,0x75,0x57,0xa0,0xeb,0x3a,0x6c,0x2c,0x7a,0xfc,0xf7,0xbf,0xf7,0xd1,0x5f,0x58,0xfc,0xab,0xe7,0x7,0xae,0xbd,0xea,0x72,0xfc,0xc1,0xa7,0x3f,0x88,0x9a,0x2c,0x77,0xea,0xe8,0xec,0xb8,0x35,0x18,0x1a,0x9b,0xe5,0x6,0xe3,0x2,0x7c,0xf4,0x7d,0xef,0xc4,0x67,0x7f,0xeb,0x43,0xbf,0xb0,0xf8,0xb7,0xeb,0x87,0x66,0xe7,0xb4,0x54,0xe5,0xe0,0x19,0x5b,0xf8,0xa3,0xb7,0x28,0xfe,0x81,0x77,0x54,0xca,0x99,0xc5,0xeb,0x8c,0xc4,0xc5,0x30,0x8e,0xe7,0x5b,0x7e,0xe0,0xa6,0xab,0xf0,0x7,0xbf,0xfb,0xb1,0x5f,0x58,0xfc,0x13,0x62,0xc,0xf8,0xc8,0x9d,0xef,0xc5,0x7f,0xf5,0xc1,0x9b,0x10,0x63,0x87,0x94,0x46,0x38,0xef,0xb0,0x58,0x6e,0xa0,0xeb,0x65,0xce,0x65,0x40,0xe0,0xb2,0x97,0x3d,0x15,0x40,0x50,0x9c,0xfa,0x37,0x6f,0x7d,0x27,0x3e,0x75,0xd7,0x9d,0x6f,0x2a,0xfe,0x9,0x21,0x4,0x5c,0x7f,0xed,0x55,0xd8,0xda,0x58,0xe8,0x9f,0x15,0xea,0xfe,0xe5,0x19,0x85,0x85,0x6a,0xb3,0xf9,0x39,0x71,0xde,0xb8,0x50,0xa1,0x50,0xce,0x22,0x6,0x26,0x13,0xff,0xc,0xc3,0x30,0xc,0xe3,0x6d,0xc2,0x1c,0x80,0x86,0x61,0x18,0x86,0x61,0x9c,0x12,0x54,0x40,0xe0,0xc0,0x7f,0x55,0x57,0x71,0xa0,0x70,0x5b,0x28,0x1c,0xe0,0x63,0xc4,0x38,0xac,0xd5,0xd5,0x44,0x85,0xc,0x9d,0xa,0x82,0x40,0xd0,0x26,0xd9,0xf3,0xcf,0x39,0x6b,0xcf,0xf3,0xbc,0xfc,0xca,0x6b,0xe4,0x2e,0xd4,0x59,0x6e,0xe4,0x68,0x9b,0x38,0xb6,0x2a,0x22,0xe0,0xea,0xc4,0x71,0x6e,0x8d,0x25,0x11,0x21,0x4d,0xa3,0xb6,0xf,0x6f,0x1f,0x3f,0x86,0xf5,0xea,0x4,0x35,0xde,0xa2,0x60,0x1a,0x47,0x9e,0xf,0x78,0xc,0xdd,0x62,0x81,0x69,0x58,0xeb,0xfc,0xbf,0x63,0x47,0xf,0x93,0x38,0x32,0x91,0x93,0x6c,0xb9,0xb1,0xf,0xe3,0x7a,0x45,0xad,0xa7,0xc3,0x9a,0x1c,0x8b,0xdb,0xc7,0x29,0x4e,0xba,0x83,0x33,0xb6,0xf6,0xe1,0x1d,0xd7,0x5c,0xae,0xbf,0x1f,0xc6,0x9,0xcf,0xbd,0xf0,0x53,0x3c,0xfc,0xd8,0x53,0x38,0xf2,0xc6,0x71,0xf4,0xd1,0xe3,0x1d,0xd7,0x5e,0x85,0xab,0x2e,0xbf,0x18,0x8b,0x45,0xbf,0xeb,0xfd,0x37,0xdf,0x70,0xd,0x7e,0xf0,0xe3,0x9f,0xe0,0xfe,0xc7,0x9f,0x3,0xa,0xcd,0xfa,0x9b,0xc6,0xb5,0x16,0xa6,0x5c,0x78,0xde,0x21,0xf8,0x93,0x88,0x6d,0x24,0xc0,0xd2,0x8c,0x34,0x59,0xa3,0xbd,0xd8,0xdc,0x58,0xe2,0x93,0x1f,0xbc,0x5,0xff,0xdb,0x9f,0x7c,0x9e,0x8a,0x2d,0x4a,0x26,0xc7,0x26,0x8b,0xb2,0x1a,0x9f,0xd,0x11,0xa5,0xb8,0x93,0x3e,0xfb,0xf7,0xdf,0x74,0xd,0xde,0x77,0xcb,0xd,0xf3,0x79,0x6d,0x59,0xa2,0xdd,0xbb,0xdf,0x37,0x8e,0x13,0x3e,0xff,0x8f,0xdf,0x41,0x2e,0xc0,0xd6,0xb2,0xc3,0x99,0x7,0xce,0x38,0xe9,0xde,0x92,0x26,0xe5,0x82,0x82,0x18,0x4e,0x2e,0x76,0xde,0x70,0xdd,0x95,0xb8,0xf1,0xea,0x4b,0xf1,0xf0,0x33,0x2f,0x51,0x39,0x7,0x3b,0x4c,0x9d,0x73,0xe8,0x16,0x4b,0xa4,0x69,0x44,0xc9,0x34,0xb,0x32,0x17,0x87,0x3b,0xde,0x75,0xd,0x7e,0xeb,0xae,0x3b,0x54,0x64,0xdd,0x7b,0x1d,0x81,0x71,0x1c,0x91,0x12,0xb5,0x44,0x77,0x5d,0x77,0x52,0x31,0xb7,0x94,0x82,0xfd,0x9b,0x4b,0xfc,0x8f,0xff,0xf2,0x2e,0x5c,0xf2,0x16,0xc5,0x3f,0xfa,0xf8,0x50,0x83,0x6f,0x88,0x91,0xdc,0xa9,0x2c,0x8e,0xc7,0xae,0xc7,0xf5,0x97,0x9e,0x8b,0xdf,0xfa,0xc8,0x1d,0x27,0x8d,0xfc,0xae,0xd6,0x3,0x5e,0x3f,0x7a,0xc,0xdb,0xdb,0xb4,0x57,0xf7,0x6f,0x6e,0x60,0xff,0xfe,0xcd,0x5d,0xeb,0xe7,0xbd,0xc7,0x47,0xee,0xbc,0x15,0xcf,0xbc,0xf8,0xa,0x1e,0xf8,0xc9,0xb,0xe4,0xda,0x9d,0x46,0x6e,0x39,0xa6,0xd9,0x98,0x52,0x42,0xb3,0x57,0xcc,0xbd,0x94,0x8c,0xb,0xe,0x9d,0x89,0x4f,0x7d,0xf8,0xb6,0x99,0x10,0x4d,0xfb,0xaf,0x20,0x4,0xbf,0xe7,0x3a,0x7d,0xe5,0x6b,0xdf,0xc2,0xcb,0xaf,0x1f,0x63,0x47,0x70,0x80,0x77,0xe,0x29,0x15,0x2e,0x53,0xc9,0x3a,0x32,0x40,0x5e,0xef,0x40,0x42,0x73,0x1,0xcf,0xf8,0x2c,0x16,0xfd,0x35,0xc,0xc3,0x30,0x8c,0xb7,0x13,0x13,0x0,0xd,0xc3,0x30,0xc,0xc3,0x38,0x25,0x42,0x8,0xd5,0xf9,0x57,0x32,0x82,0xf,0x3a,0xa7,0x2f,0x84,0x40,0xe2,0xd2,0x34,0xa1,0x5b,0x2c,0x51,0x4a,0xe1,0x66,0xe0,0xe,0xb9,0x89,0x8,0xc3,0x39,0x72,0xb8,0x79,0x8f,0x8d,0x8d,0x8d,0x3d,0xcf,0xf3,0xda,0x91,0x63,0x34,0xa3,0x6c,0xa4,0xc6,0xde,0x9c,0xc9,0x1,0xa4,0xae,0xa1,0x9c,0x90,0xc6,0x89,0xe3,0xbc,0xd4,0x10,0x5c,0x72,0x46,0xe2,0x16,0xe0,0x69,0x1a,0xb1,0xda,0x3e,0x8e,0x18,0x23,0xb5,0xf2,0x9e,0x38,0x86,0xd8,0xf5,0x18,0x56,0x27,0xb0,0x75,0xc6,0x59,0xc8,0x25,0x63,0xb9,0xb9,0x85,0x61,0xb5,0xd,0x0,0x3c,0xb,0xad,0xd7,0xc2,0xd,0x8a,0x65,0x7a,0xc,0xeb,0x15,0x62,0xd7,0x63,0xb1,0xdc,0xd4,0xfb,0xde,0xb,0x11,0xbf,0x9e,0x7d,0xe1,0x65,0x7c,0xfe,0x6b,0xdf,0xc7,0xc3,0x4f,0x3e,0x8f,0x71,0x18,0x28,0xae,0xbc,0xda,0xc6,0x17,0xbe,0xf9,0x3,0xbc,0xe7,0x9d,0xd7,0xe0,0xf,0xff,0xc5,0x5d,0x38,0xeb,0xcc,0x3,0xf3,0x1f,0xc4,0x62,0xc4,0x6f,0xbe,0xef,0x6,0xfc,0xf8,0xc9,0x17,0x35,0xea,0x1c,0x42,0xa7,0x71,0xd6,0xbd,0x84,0x95,0xc3,0x47,0x8e,0xe1,0xa1,0xc7,0x9e,0xc2,0x93,0xcf,0xbd,0x8c,0xc3,0x47,0x8f,0x63,0x9c,0x12,0xf6,0x6f,0x2e,0x70,0xd5,0x65,0x17,0xe0,0xd6,0x1b,0xaf,0xc1,0x81,0x3d,0x66,0x10,0x5e,0x79,0xd9,0x85,0xb8,0xe2,0xa2,0xf3,0xf1,0xd4,0x8b,0x3f,0x83,0xf7,0xd4,0x88,0x3b,0xe,0x6b,0x74,0x5d,0xf,0xe7,0x3d,0xd2,0x94,0xb9,0x6c,0x42,0xdc,0x5a,0xf3,0x73,0xef,0x5b,0x2e,0xf0,0xe1,0xdf,0xb8,0x19,0x91,0x5b,0x97,0x9f,0x7d,0xe1,0x65,0xdc,0xff,0xc8,0x93,0x78,0xee,0xc5,0x57,0x10,0xbc,0xc3,0xbb,0xae,0xbd,0x14,0xef,0x7a,0xe7,0x35,0xd8,0xb7,0x59,0x9f,0xe9,0xf7,0x7e,0xf8,0x20,0x1e,0x7f,0x9e,0xca,0x20,0xbc,0xf7,0xbb,0x4,0x9d,0x61,0x9c,0xf0,0xcc,0xf3,0x2f,0xe1,0xd1,0x27,0x9f,0xc7,0x33,0xcf,0xbf,0x8c,0xe3,0xdb,0x6b,0xf4,0x7d,0xc4,0x39,0x7,0xcf,0xc4,0xbb,0xaf,0xbb,0x14,0xd7,0x5e,0x75,0xe9,0x2e,0x31,0x2b,0xc6,0x88,0xf,0xde,0x76,0x3,0x1e,0x7a,0xfa,0x25,0x6d,0x8e,0x95,0x8e,0x8,0x7a,0x7e,0x34,0xe7,0x2e,0xa5,0x9,0xe7,0x9c,0xb5,0x1f,0xbf,0xf3,0xb1,0x3b,0x4e,0xea,0x58,0x3b,0x76,0xfc,0x4,0x1e,0x7a,0xfc,0x19,0xdc,0xf7,0xe3,0xc7,0xf0,0xb3,0x23,0xdb,0x78,0xe3,0xd8,0x31,0xf4,0x5d,0x8f,0x3,0x5b,0x4b,0x5c,0x75,0xc9,0x79,0xb8,0xe1,0xba,0x2b,0x70,0xc9,0x45,0xe7,0xa3,0xe7,0x99,0x96,0x29,0x4d,0x5c,0xe2,0x51,0x70,0xff,0x43,0x3f,0xc1,0xc3,0x4f,0x3c,0x4f,0xf3,0x6,0x1,0x1c,0x3a,0x78,0x6,0x6e,0x7d,0xf7,0xee,0xd9,0x89,0xdf,0xfb,0xe1,0xc3,0x38,0x7c,0xf4,0x18,0xed,0x63,0x89,0xe0,0x72,0xd1,0x87,0xf7,0x1,0xdb,0xdb,0xdb,0x18,0x33,0xc5,0x72,0x1d,0xc7,0x80,0x4b,0xce,0xd8,0xda,0x58,0xe2,0xf7,0x3e,0x79,0xe7,0x9e,0xd,0xd9,0xc7,0x8e,0x6f,0xe3,0x9b,0xdf,0xbb,0x1f,0xf7,0x3d,0xfa,0x2c,0xe,0x1f,0x5b,0x63,0x18,0x56,0xe8,0xba,0x5,0x16,0x9d,0xc7,0x79,0x67,0x6d,0xe1,0xe3,0xbf,0x71,0x13,0xae,0xb9,0xf2,0xd2,0xd9,0xf6,0xe9,0xbb,0xe,0x9f,0xfa,0xd0,0x6d,0x78,0xf0,0x27,0x7f,0xa5,0xe7,0x9e,0xc6,0x81,0x9c,0x9f,0x3e,0xc0,0xc7,0x8e,0x9c,0xb6,0x7b,0x88,0xdc,0xde,0x79,0xfc,0xee,0xc7,0xef,0x50,0x17,0xe2,0x2b,0xaf,0xbd,0x8e,0xfb,0x1f,0x7a,0x2,0x8f,0x3f,0xfd,0x3c,0x86,0xf5,0x1a,0x57,0x5e,0x7a,0x3e,0x6e,0xbb,0xf9,0x6,0x1c,0x3a,0xbb,0xa,0xfa,0xcf,0x3c,0xf7,0x2,0xbe,0xf4,0xcf,0x3f,0xa0,0x18,0x7b,0xbf,0xe0,0x3f,0xf,0x46,0x3d,0x2f,0x1c,0x8d,0xf,0x98,0x7d,0x86,0xd8,0xc1,0xe9,0x9c,0x7,0x5c,0xaa,0x8d,0xc5,0x86,0x61,0x18,0x86,0x61,0xbc,0x2d,0x98,0x0,0x68,0x18,0x86,0x61,0x18,0xc6,0x29,0xd1,0xb6,0x75,0x3a,0xe7,0x91,0x72,0xe2,0xf2,0x8d,0x49,0x4b,0x6,0x0,0x60,0x1c,0xd6,0x88,0x5d,0xa7,0xe5,0x2,0xd4,0x0,0x1b,0xf5,0x2f,0xfa,0xd3,0x34,0x62,0xd1,0x2f,0xb4,0x2c,0x64,0x27,0xdb,0xdb,0x2b,0x38,0xe7,0x10,0xbb,0x1e,0xd3,0x38,0x20,0x76,0x3d,0x17,0x73,0x0,0xe3,0x9a,0x1c,0x79,0xc3,0x7a,0x85,0x52,0xb2,0x96,0x79,0xc,0xeb,0x15,0xc6,0x61,0x35,0x9b,0x39,0x38,0xc,0x6b,0x94,0x52,0xa8,0x41,0x37,0x44,0x6c,0xec,0xdb,0x8f,0x61,0xb5,0x8d,0xc0,0x2e,0xa6,0xd8,0xf5,0x28,0xa5,0x60,0xb9,0xb9,0x45,0x51,0x48,0x69,0x24,0xf5,0x1e,0x69,0x1c,0xd1,0x2f,0x96,0x88,0x5d,0x8f,0x34,0x8d,0x2c,0x4c,0xec,0xbd,0x2e,0xa5,0x14,0x3c,0xf0,0xf0,0x93,0xf8,0x8b,0xaf,0x7c,0xf,0x47,0x8f,0x9d,0x80,0xe3,0x16,0xe4,0xf5,0xea,0x84,0x8a,0x7a,0xf,0x3c,0xf6,0x34,0xfe,0xaf,0xbf,0xfc,0x47,0xfc,0x2f,0x7f,0xf8,0xdb,0x58,0xf4,0x73,0x27,0xe0,0xa5,0x17,0x5f,0x88,0x33,0xb7,0x36,0xf1,0xfa,0xb1,0x13,0x18,0x87,0x15,0xba,0x7e,0x81,0x3c,0x15,0x78,0x9e,0x7,0x27,0x1c,0x3e,0xf2,0x6,0xfe,0xf1,0x9f,0xef,0xc5,0xdd,0x3f,0x7e,0x1a,0xc3,0x48,0x5,0xe,0x21,0xd0,0xff,0x7e,0x7a,0xf8,0x38,0x7e,0xf2,0xe2,0xeb,0xb8,0xfb,0xfe,0x27,0xf0,0xc7,0x9f,0xfb,0x18,0xe,0x1d,0x9c,0xb,0x8d,0x7d,0xdf,0xe3,0xba,0xcb,0xcf,0xc7,0x53,0x2f,0xbe,0x4c,0x85,0x1c,0x39,0x53,0x29,0xa,0x23,0xf3,0xe7,0xb0,0xe3,0x9c,0xc2,0xfb,0xde,0xf3,0xe,0x1c,0x3c,0xf3,0x0,0xc6,0x71,0xc4,0x97,0xbe,0x7e,0x37,0xfe,0xf1,0xee,0x7,0x31,0x26,0x72,0xda,0x4d,0xe3,0x88,0x87,0x9e,0x7e,0x19,0xff,0xf0,0xed,0x7,0xf0,0xaf,0x3e,0x79,0x7,0xae,0xbb,0xfa,0x72,0xbc,0x7a,0xf8,0x8,0xfe,0xf2,0xcb,0xdf,0x61,0xf1,0xd6,0xb1,0xd3,0x8b,0x9d,0x9a,0x39,0xe3,0xc1,0x47,0x9e,0xc0,0x17,0xbf,0x71,0xf,0x9e,0x7b,0xe5,0xa8,0xa,0x4f,0xd4,0x48,0x9b,0xf1,0xf4,0x4b,0xaf,0xe3,0xbe,0xc7,0x5f,0xc0,0x87,0x6e,0x79,0x15,0x1f,0xff,0xc0,0x2d,0xbb,0x1c,0x66,0x17,0x5f,0x78,0x1e,0x36,0x96,0x3d,0xb6,0x57,0x24,0xfa,0x95,0x5c,0xd8,0x51,0x16,0xe0,0x3d,0x39,0x4d,0x63,0xd7,0xe3,0x33,0x1f,0xbd,0x1d,0x67,0xec,0xdf,0xda,0xf3,0x79,0x3d,0xf6,0xe4,0xb3,0xf8,0x8b,0x2f,0x7d,0x7,0x2f,0xbf,0x7e,0x8c,0xb,0x3d,0xe8,0x18,0x6e,0x3d,0xe1,0xf0,0xb1,0x13,0x78,0xea,0xa7,0xaf,0xe1,0x2b,0x77,0x3f,0x88,0xab,0x2e,0x3a,0x1b,0x9f,0xf8,0xcd,0xdb,0x70,0xcd,0x15,0x97,0xd0,0x73,0x2d,0x5,0xc7,0x57,0x23,0xbe,0x72,0xf7,0xc3,0x55,0x90,0x6,0x70,0xfb,0xbb,0xae,0xde,0x53,0x0,0xfc,0xf1,0x63,0xcf,0xe0,0xc7,0x4f,0xfe,0x54,0x9b,0xb0,0x1,0x12,0x43,0xd3,0x34,0x91,0x88,0x1e,0x3b,0xc,0xc3,0x1a,0xfd,0x62,0x3,0x8d,0x96,0x89,0xdf,0xbc,0xe5,0x9a,0x3d,0xb,0x72,0x5e,0x7a,0xe5,0x30,0xfe,0xcf,0xbf,0xfc,0x3a,0xe,0xbf,0xb1,0xa2,0x46,0xdf,0xae,0x43,0x57,0x68,0x3f,0x6d,0xaf,0x47,0x3c,0xf9,0xe2,0x6b,0xf8,0xf7,0x7f,0xf1,0x55,0x7c,0xee,0x13,0x77,0xe0,0xb6,0x9b,0xae,0x9b,0xbd,0xf7,0xa2,0xf3,0xcf,0xc1,0x2d,0xef,0xb8,0xc,0xdf,0x7f,0x88,0xe6,0x6b,0x7a,0x0,0x81,0x3f,0xbf,0xe3,0x30,0xc0,0xef,0xdf,0xdc,0x53,0x74,0xbe,0xe4,0xe2,0xf3,0x71,0xf6,0x59,0x67,0xa0,0x94,0x82,0x7b,0x7f,0xf4,0x8,0xfe,0xf3,0x17,0xbe,0x81,0xe3,0xeb,0xc4,0x25,0x2c,0x19,0xf,0x3f,0xf3,0x32,0xbe,0xf8,0x4f,0xf7,0xe2,0x5f,0x7c,0xf4,0x76,0xdc,0x79,0xc7,0x2d,0x70,0x0,0xfe,0xfc,0xaf,0xbe,0x88,0x63,0x27,0xb6,0xa9,0x28,0x88,0x4b,0x77,0xe8,0x73,0x35,0x68,0x4b,0xb8,0xb8,0xfe,0x0,0x20,0x97,0xc,0x7,0x4f,0xf3,0x9,0xc1,0xd1,0x60,0xe7,0x4f,0x29,0x6a,0x6e,0x18,0x86,0x61,0x18,0xc6,0xa9,0x61,0x2,0xa0,0x61,0x18,0x86,0x61,0x18,0xa7,0x84,0x3a,0x72,0x4a,0xd1,0xf9,0x7e,0x39,0x25,0xf8,0x40,0x31,0xdc,0x10,0xa9,0x81,0x35,0xf8,0xa0,0x25,0x6,0x9d,0x5f,0x20,0xe7,0x84,0x94,0x92,0x8a,0x80,0xde,0x7b,0xf4,0x7d,0x87,0x18,0xf6,0x8e,0xac,0x66,0x36,0xfd,0x64,0x76,0x5b,0xa5,0x69,0x42,0xbf,0x58,0x52,0xa4,0xd7,0x1,0xd3,0xb0,0x46,0x29,0x14,0x5b,0x1c,0x56,0xdb,0x98,0xc6,0x91,0xaf,0x23,0xaa,0xcb,0xca,0x39,0xa0,0xe3,0x19,0x77,0xfd,0x62,0x83,0xc4,0x9a,0x9c,0x11,0x62,0xc0,0xc6,0xe6,0x7e,0x8c,0xc3,0x1a,0xcb,0xcd,0x2d,0xbd,0x2f,0x71,0x20,0x75,0xb1,0x23,0x61,0x70,0x59,0xb4,0xdc,0xa4,0xeb,0x16,0x74,0xbe,0x3d,0xdc,0x48,0xa5,0x14,0xfc,0xf8,0xd1,0xa7,0xf0,0xa7,0x5f,0xfc,0x2e,0xc6,0x29,0x21,0xa5,0x89,0x22,0xd0,0x9e,0xc4,0xc,0xef,0xb9,0x40,0x1,0xc0,0x4f,0x9e,0xfb,0x19,0x1e,0x7c,0xf4,0x29,0xbc,0xe7,0xc6,0x6b,0x67,0xc7,0x58,0x2e,0x7a,0x5c,0x7e,0xd1,0x39,0xf8,0xd1,0x63,0xcf,0xa2,0x5f,0x6c,0xb0,0x80,0x4a,0xc2,0x23,0x39,0xf,0x81,0x87,0x1f,0x7b,0x2,0x7f,0xf9,0x8f,0xf7,0xe2,0x95,0x23,0xc7,0xe0,0xc0,0x73,0x15,0xb,0x54,0x60,0x29,0x3c,0x43,0xed,0xf5,0xe3,0x6b,0xfc,0xc3,0x3f,0xff,0x10,0xff,0xfa,0xd3,0xbf,0xb9,0x4b,0x3c,0xb9,0xe8,0x82,0xf3,0x10,0x7c,0xd4,0xc8,0x2c,0xc5,0x2c,0xc1,0x65,0xb,0x9e,0xdc,0x6c,0x27,0x11,0x5c,0x2e,0xbe,0xe0,0x5c,0xa4,0x94,0xf1,0xf9,0xaf,0xde,0x8d,0xaf,0xdf,0xf3,0x8,0xe0,0x2,0x62,0x24,0x37,0xa0,0xf7,0x1,0x69,0x1a,0xf1,0xe2,0xcb,0xc7,0xf0,0xef,0xff,0xcb,0x57,0xf1,0xd1,0xf7,0x5d,0x8f,0xd7,0x5e,0x3f,0x86,0x35,0x19,0x34,0xd1,0x2d,0x7a,0xc0,0x79,0x94,0x2,0x6c,0xaf,0xd6,0xf8,0xdb,0x2f,0x7f,0x1b,0xdf,0x7f,0xe4,0x39,0x4c,0xd3,0x44,0xad,0xb4,0xa5,0x20,0xa5,0xa2,0xb9,0x72,0x89,0x36,0x7f,0xf5,0x7b,0xf,0xe1,0x5d,0xd7,0x5d,0x8e,0x8b,0xce,0x3f,0x34,0xbb,0x96,0x8d,0xe5,0x2,0x7,0xf7,0x6f,0xe0,0xa5,0x54,0x30,0x1,0x8,0x11,0x7a,0x1d,0x52,0xd8,0x72,0xce,0x99,0x5b,0x78,0x67,0x13,0xcd,0x6e,0xf9,0xd1,0xc3,0x4f,0xe0,0x4f,0xfe,0xfa,0xeb,0x98,0x8a,0x43,0x49,0x99,0xf7,0x1a,0xcf,0xae,0xf4,0xe,0xc3,0x6a,0x9b,0xf6,0x73,0x88,0x78,0xf4,0x99,0x97,0xf1,0x93,0xff,0xf8,0x77,0xb8,0xe5,0x9d,0x57,0xe2,0xf0,0xd1,0xe3,0x34,0x27,0x91,0xab,0x6c,0x27,0x76,0xb4,0x85,0x18,0x75,0x6f,0xef,0xdc,0x1b,0x71,0xb1,0x84,0xf,0xb4,0x3e,0xd2,0x9c,0x4d,0xf3,0xed,0xd8,0x1,0x57,0xc4,0x79,0x49,0x9a,0x57,0x29,0x19,0xfb,0x36,0x16,0xb8,0xed,0xa6,0xdd,0x62,0xe2,0xf6,0x6a,0x8d,0xff,0xfc,0x85,0x6f,0xe1,0xe5,0x57,0x8f,0xa0,0xeb,0x17,0xe4,0x48,0x2c,0xb4,0x4f,0x63,0x24,0xc1,0x9d,0x8e,0x5f,0xf0,0x57,0x5f,0xbd,0x7,0x17,0x9c,0x77,0x36,0x2e,0x6e,0xd6,0xce,0x7b,0x8f,0xdb,0x6f,0xbe,0x1e,0xf7,0x3d,0xf6,0x2,0x72,0x29,0xc8,0x1c,0xe9,0x8f,0xb1,0x83,0x5f,0x2c,0x4f,0xda,0xb5,0x7b,0xee,0xd9,0x67,0x2,0x0,0x7e,0xf0,0xc0,0x23,0xf8,0x4f,0x5f,0xf8,0x16,0xb6,0x4f,0xc,0xfa,0xac,0x7c,0x20,0x17,0xf0,0x7a,0x1a,0xf1,0x1f,0xff,0xf6,0xeb,0x78,0xf4,0x89,0xa7,0x71,0xd9,0xc5,0x17,0xe0,0x81,0x9f,0x3c,0x4f,0xf3,0xfe,0x3c,0xb9,0x85,0xb,0xcf,0xf6,0xa3,0x3d,0x46,0x6e,0x50,0x7,0xa0,0xb8,0x79,0x1c,0xd8,0x79,0xf,0xb0,0xe3,0x57,0x9a,0x96,0xd,0xc3,0x30,0xc,0xc3,0x78,0x7b,0xb0,0x12,0x10,0xc3,0x30,0xc,0xc3,0x30,0x4e,0x89,0x69,0x1a,0xe9,0x3f,0x1c,0x95,0x2,0x38,0x88,0x20,0xc8,0x65,0x6,0xd3,0xc8,0x2,0x44,0xe2,0x12,0x8e,0x80,0x94,0xa8,0xed,0x53,0xa,0x40,0x32,0xb,0x83,0x34,0x8b,0x6e,0xef,0xf3,0xf4,0x5d,0x60,0xb7,0x21,0x15,0x3d,0x38,0xe7,0x30,0x8e,0x83,0xce,0xb,0x1b,0x87,0x35,0x52,0x9a,0xb0,0x5e,0x6d,0xeb,0xdc,0xb6,0x9c,0x49,0x2c,0x98,0xd8,0x61,0xd4,0x2f,0x37,0xb0,0xdc,0xd8,0x87,0x7e,0xb1,0x24,0xc7,0xd5,0x38,0x20,0x84,0x88,0xe5,0xe6,0x96,0x46,0x80,0xc5,0x9d,0x58,0xb8,0x9d,0x78,0xb1,0xdc,0xa4,0x26,0x54,0x9e,0x21,0xd7,0xf5,0xbd,0xb6,0xe2,0xfa,0x40,0x5,0x1d,0x3b,0x79,0xe3,0xf8,0x36,0xfe,0xef,0xbf,0xff,0xe,0x26,0x6e,0x2b,0xd6,0xa6,0x64,0x9e,0xeb,0x26,0x22,0x4d,0xf0,0x1,0xd3,0x30,0xe0,0x87,0x3f,0x7e,0x7c,0x97,0x90,0xe8,0x9c,0xc3,0x85,0xe7,0x9c,0x49,0xee,0xc5,0x44,0xee,0xc5,0x92,0x33,0x3b,0xcc,0x32,0x7e,0xf0,0xc0,0x23,0xf8,0xf,0xff,0xcf,0xd7,0xf0,0xf2,0xe1,0x23,0xc8,0xd3,0x44,0x4d,0xc7,0xdc,0xca,0xea,0x63,0x44,0x1,0xc8,0x89,0x99,0x48,0x64,0x7a,0xea,0x85,0x57,0xb0,0x1e,0xc6,0x5d,0xd7,0xba,0xb1,0xec,0x0,0x7,0x84,0xae,0x67,0xf7,0x1f,0xcd,0x4b,0x94,0x8,0x37,0x5f,0xcd,0x49,0x63,0x97,0xf,0x3d,0xf6,0x24,0xbe,0xf9,0xc3,0xc7,0x69,0x1f,0x38,0xc7,0xf7,0x46,0x22,0xed,0x34,0x51,0x93,0xf1,0x94,0x12,0xfe,0xfe,0x5b,0xf7,0xe3,0x5b,0x3f,0x7c,0x84,0xa,0x61,0xfa,0x5,0x46,0x16,0x6c,0x8f,0x9d,0xd8,0xc6,0x7f,0xf8,0xb3,0xcf,0xe3,0x1b,0xf7,0x3c,0x84,0xf5,0x6a,0x1b,0x21,0x44,0xa4,0x69,0xa4,0x19,0x71,0x3e,0x20,0x4d,0x13,0x62,0xdf,0xd7,0xd2,0x98,0xd8,0xe1,0x89,0x67,0x5e,0xdc,0x75,0x1d,0x21,0x4,0x6c,0x2c,0x97,0x5a,0x0,0x22,0x7b,0xb1,0x6d,0x75,0xbe,0xf3,0x96,0xeb,0xd1,0xf7,0xbb,0x67,0xe7,0xbd,0xf0,0xd3,0x9f,0xe1,0x4f,0xff,0xe6,0xeb,0x18,0x12,0x9,0x86,0xd3,0x34,0xa8,0x43,0x75,0x58,0x6f,0x63,0x1a,0x6,0x6a,0xb0,0xe6,0x59,0x7c,0x40,0x41,0x2a,0xc0,0x3d,0xf,0x3d,0x85,0x67,0x7e,0xfa,0x2a,0x0,0xa7,0xe2,0x57,0xd7,0x2d,0xaa,0x73,0x34,0xed,0x2e,0xaa,0xa0,0xbd,0x95,0x30,0xe,0x6b,0x76,0xb8,0x91,0x63,0x71,0x1c,0xd6,0xf4,0x2,0x16,0x70,0xc5,0x75,0x19,0x3b,0x12,0x9f,0x6f,0xb8,0xea,0xc2,0x3d,0x4b,0x3f,0xee,0xb9,0xff,0x71,0xbc,0xf8,0xda,0x71,0x12,0xc5,0x59,0x9c,0x16,0xb7,0x5c,0xec,0xc8,0x5,0xd8,0x2d,0x16,0xf0,0xc1,0x63,0x4c,0x5,0xdf,0xb8,0xfb,0x1,0xe4,0x3c,0x7f,0x96,0x17,0x5d,0x70,0xe,0x36,0x96,0x9d,0xce,0x81,0x14,0x71,0x9a,0x84,0xe0,0x82,0x93,0xf9,0xed,0x5e,0x7b,0xfd,0x28,0xfe,0xcb,0xdf,0xff,0x33,0x56,0xab,0x15,0x9,0xfe,0xbc,0x3f,0x25,0x76,0x4f,0x51,0x68,0x87,0xef,0xfc,0xe8,0x71,0xfc,0xd9,0xe7,0xff,0x9,0x59,0x66,0x6f,0x4e,0x23,0xff,0x83,0x41,0xd1,0x3f,0xb,0x12,0x47,0xb5,0x4b,0xce,0x34,0x6b,0xb1,0xf9,0x73,0x41,0x5e,0x4b,0x7b,0xb0,0xe8,0x9e,0x34,0xc,0xc3,0x30,0xc,0xe3,0xad,0x63,0x2,0xa0,0x61,0x18,0x86,0x61,0x18,0xa7,0x44,0x2b,0x80,0xe9,0xec,0x35,0xcc,0x9b,0x7a,0xb,0xff,0xa5,0x5d,0xda,0x45,0x73,0x4a,0xc8,0x89,0xe2,0x82,0x5,0x40,0x61,0xf7,0xd9,0x34,0x4d,0xd8,0x5e,0xad,0xf6,0x3c,0xcf,0x19,0xfb,0xf7,0x71,0x23,0x2d,0xc5,0x80,0x25,0x7a,0xec,0x79,0x5e,0x99,0x14,0x26,0x94,0x52,0x34,0xfe,0x5b,0x4a,0x41,0xbf,0x58,0xa2,0xeb,0x7a,0xf4,0xcb,0xd,0x38,0x38,0x8c,0xe3,0xfa,0xff,0x65,0xef,0x4d,0x7f,0x25,0x3b,0xef,0x3b,0xbf,0xef,0xb3,0x9c,0xa5,0xea,0x2e,0xbd,0xb1,0xbb,0xd9,0x6c,0xb2,0xb9,0x8a,0x8b,0x5a,0x12,0x29,0x51,0xa2,0x65,0xd2,0x12,0x35,0x63,0x49,0x96,0x26,0xb6,0xc7,0x96,0xc6,0xe3,0x19,0x18,0x13,0xd8,0x18,0x3,0x83,0xbc,0x49,0x30,0x79,0x91,0xd7,0xf9,0x13,0x2,0x24,0x40,0x80,0xac,0x40,0x26,0x46,0x26,0xe3,0xc0,0xe,0xe4,0x78,0xc6,0x96,0x46,0x92,0x25,0xd9,0xda,0x69,0x53,0x5c,0x24,0x91,0x14,0x49,0x71,0x51,0x37,0xc9,0x66,0x6f,0xf7,0xde,0xaa,0x73,0xce,0xb3,0xe6,0xc5,0xef,0xf7,0x3c,0xe7,0xd4,0xbd,0x75,0x69,0xda,0xa2,0x0,0xd,0xf0,0xfc,0x0,0x5b,0xdd,0xb7,0x6f,0x55,0x9d,0xbd,0x78,0x3e,0xe7,0xbb,0x64,0x1b,0x72,0x33,0xdb,0x80,0x90,0x12,0x4d,0x3b,0x47,0x55,0x35,0xa8,0xea,0x6,0x52,0x69,0x68,0x5d,0x61,0xbe,0xb9,0x9d,0x41,0x63,0x88,0x1,0x55,0xd3,0x2,0x20,0x8b,0x70,0x3b,0x9b,0xa3,0x6a,0x5a,0x6a,0x99,0x5d,0x57,0x90,0x10,0x2,0x1c,0x43,0x16,0x21,0x25,0x94,0x52,0xac,0xc4,0x22,0x78,0x24,0xa5,0xcc,0x9f,0x15,0x63,0xc0,0x4f,0x2e,0x5d,0xc7,0x60,0xcc,0x81,0xf7,0x39,0x7e,0xec,0x8,0x67,0xc0,0x69,0x2e,0x4b,0xa1,0xcf,0xff,0xce,0x53,0x2f,0xe0,0xdf,0xfd,0xd9,0x37,0x31,0x58,0x47,0x90,0x2b,0x6,0x28,0xad,0xd9,0x32,0x4a,0x86,0xd1,0xa4,0x94,0x12,0xdc,0xe8,0xdb,0x19,0xf,0xb3,0x6,0x0,0x6a,0xad,0x33,0x88,0x75,0xce,0x42,0xeb,0x6a,0x54,0xf0,0x71,0x9e,0x62,0x2a,0x7,0xd9,0x3f,0xd6,0x3a,0x7c,0xf1,0x1b,0x4f,0x50,0xe6,0x63,0xca,0x71,0x63,0x34,0xe3,0xb9,0x55,0x39,0x4,0xf,0x3b,0xf4,0x70,0x86,0x40,0xa4,0x10,0x82,0x6c,0xd9,0x52,0x62,0xd1,0xd,0xf8,0x3f,0xff,0xf8,0x4b,0xf8,0xe1,0x4b,0xaf,0x93,0xc5,0x39,0x84,0x9c,0xd,0x9,0x20,0x83,0xc8,0x4,0x70,0x11,0xa9,0x51,0x7a,0x6f,0x39,0xac,0x3d,0x46,0x9a,0xba,0x5a,0x81,0x4a,0xba,0xae,0x9,0xa8,0x5,0xda,0x3e,0x77,0xdd,0x7a,0xe6,0xc0,0x6b,0x42,0x8,0xf8,0xe2,0xd7,0x1f,0x47,0x67,0xa9,0x3c,0xa4,0xef,0x16,0xa8,0x9a,0x19,0xe5,0x35,0x86,0xc0,0x2d,0xb9,0xe,0x31,0xf8,0xc,0x9b,0xc1,0x6a,0x4b,0xa5,0x75,0x2e,0xcf,0x48,0xd9,0x75,0xd4,0x16,0x4d,0x4a,0xbf,0x18,0xe,0x2,0xc0,0x18,0x63,0x56,0x68,0xa,0x88,0x5c,0xee,0x1,0x1,0x38,0x4b,0x19,0x91,0x9,0xfe,0x25,0x35,0x6d,0x8c,0x1,0xf7,0xdd,0x79,0xee,0xc0,0x3e,0x30,0xc6,0xe2,0xbb,0xdf,0xff,0x31,0x9c,0xb3,0x10,0xe0,0xc6,0x68,0x56,0x99,0xd6,0xed,0xc,0xde,0x91,0x25,0xdc,0xe,0x3,0x1,0x51,0x21,0xf0,0xc3,0x17,0x2f,0x60,0xd9,0x75,0x2b,0xef,0x33,0x9f,0xcd,0x70,0xc7,0x99,0x13,0x93,0xf7,0x1f,0x8f,0xfb,0xb7,0xca,0xdc,0xfb,0xc6,0x63,0x4f,0x63,0x61,0xd8,0xc2,0x9d,0xce,0x3d,0xb6,0xe1,0x27,0x3b,0xb3,0x4d,0x99,0x9d,0xc,0xbd,0x1d,0x43,0xf7,0x74,0xfe,0xa,0x6e,0x0,0x56,0x4a,0xe7,0xed,0xe6,0x1c,0xed,0x3f,0xde,0x60,0x93,0xcf,0x4f,0x56,0xf4,0x64,0x8a,0x2e,0x53,0xa6,0x4c,0x99,0x32,0x65,0xca,0xfc,0xb4,0x53,0x0,0x60,0x99,0x32,0x65,0xca,0x94,0x29,0x53,0xe6,0x6d,0x4d,0x6a,0xf2,0x4d,0x37,0xe9,0x91,0xc1,0x97,0x14,0x12,0xce,0x19,0x80,0x6d,0x93,0xfc,0xcb,0x2b,0x96,0x52,0xa9,0x34,0xa2,0xf,0xac,0xae,0x52,0x10,0xba,0xc2,0x62,0xd9,0xad,0xfd,0x9c,0x53,0x27,0x8e,0x64,0x25,0xa1,0x35,0x3d,0xa4,0x52,0xc,0x48,0x1c,0x96,0x7b,0x3b,0x70,0xd6,0x92,0xaa,0xca,0x3b,0x56,0x25,0x52,0xce,0x9f,0xae,0x48,0xb1,0x67,0xcd,0x80,0xaa,0x69,0xb1,0xb1,0x75,0x94,0x9b,0x71,0x5,0x65,0xe5,0x69,0x4d,0xa,0x2f,0xb6,0x1b,0x6a,0xad,0x9,0x9e,0x78,0x7,0x5d,0x55,0x19,0x80,0x24,0x60,0x98,0xac,0x99,0x4a,0x6b,0x2a,0x32,0x58,0xb,0x79,0x2,0xab,0x1f,0x5d,0x6e,0x52,0xb5,0x66,0x20,0xdb,0xb3,0x23,0xb5,0x97,0x10,0x82,0x60,0x88,0xd6,0xe8,0x6,0x43,0x76,0xd7,0x7d,0xd3,0x54,0xe3,0x76,0x83,0x10,0xd9,0x92,0xfb,0x83,0x17,0x2f,0x60,0xb0,0x2e,0xab,0x1c,0x2b,0x6,0xa2,0xa9,0x69,0x39,0x6,0x52,0xc1,0x91,0xc5,0xba,0x62,0x15,0x22,0x70,0x98,0x6a,0x4a,0x71,0x1,0x8b,0xae,0x6a,0xce,0x4c,0x14,0x8,0x81,0xc0,0x94,0x10,0x2a,0xc3,0xc7,0xfd,0xf3,0xc6,0xe5,0xab,0x78,0xf5,0xd2,0x4e,0xde,0xf,0xce,0x1a,0x2a,0x5e,0xf1,0x94,0xed,0x6,0x2e,0x7d,0x91,0x52,0x21,0x15,0x89,0x78,0x47,0xd6,0xd4,0xe8,0x3,0xba,0xc1,0xe2,0x85,0xb,0x97,0xb8,0x6d,0x58,0xa1,0x69,0xe7,0x4,0xb3,0x78,0x5f,0x24,0xf5,0x68,0x3a,0xce,0x84,0x54,0x50,0xba,0x82,0xf3,0xeb,0x96,0x27,0x66,0x85,0xa9,0xae,0x2a,0x2,0x47,0x21,0x40,0xd7,0x35,0xb4,0xae,0x70,0x6c,0x6b,0x3,0x27,0x8e,0x1f,0x3d,0xf0,0xaa,0x4b,0x97,0xaf,0xe2,0xa9,0xe7,0x2f,0x4c,0xf2,0x1e,0x3d,0xc3,0x4b,0x82,0x91,0x7d,0xb7,0x84,0x80,0xc0,0xc0,0xe5,0x30,0x52,0xd2,0x71,0x6d,0x4c,0x8f,0xa1,0xef,0x72,0x7b,0xad,0x73,0x96,0x95,0x73,0x91,0x14,0x7d,0xc3,0x90,0x95,0xa2,0xfb,0xce,0x18,0xca,0x40,0x14,0x2,0x8a,0x4b,0x36,0x42,0x8,0x6c,0x29,0x8f,0xbc,0x1d,0x2d,0xaf,0x11,0x97,0xcf,0x8,0x89,0x9b,0x4e,0x1f,0xcc,0xfe,0xbb,0xfd,0x1b,0xef,0xa6,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x74,0x75,0x7,0x17,0xdf,0xbc,0xc6,0x6a,0xc5,0x2a,0x97,0x9e,0xd4,0x2d,0x29,0x5c,0x9d,0x35,0x18,0xba,0x25,0x84,0x14,0xdc,0xbe,0x1d,0xd1,0x19,0x8f,0xbd,0x45,0x77,0xe0,0x1c,0xbe,0xe5,0xcc,0xd,0x39,0x2b,0x33,0x15,0xec,0x28,0x6e,0xd6,0x5e,0x97,0x1,0xd8,0xf5,0x3,0xbe,0xfd,0xbd,0x67,0x19,0xce,0xca,0x7c,0x6e,0xa6,0x9,0xc1,0xe7,0x5c,0x49,0x52,0x65,0x8e,0x76,0xf2,0x64,0xc9,0xa6,0xeb,0x45,0xe0,0x6d,0x18,0xe1,0xed,0x8,0x89,0x9,0x92,0xca,0xbc,0x7d,0x13,0xd8,0x8e,0x1c,0x35,0x50,0xa6,0x4c,0x99,0x32,0x65,0xca,0x94,0x79,0x67,0xa6,0x64,0x0,0x96,0x29,0x53,0xa6,0x4c,0x99,0x32,0x65,0xde,0xd6,0xa4,0x3c,0x2e,0x21,0x4,0x17,0x1a,0xc4,0xac,0xf0,0x51,0x5c,0x90,0x10,0xbc,0xcf,0xc5,0x2,0x40,0x84,0xd2,0x15,0x94,0xae,0xe0,0x9d,0xe5,0x5c,0x3b,0x97,0x41,0xdb,0xc5,0xd7,0x2e,0xe1,0xce,0xdb,0x6e,0x39,0xf0,0x39,0xc7,0x8e,0x6c,0x63,0xde,0x54,0xe8,0x8c,0xc8,0xa0,0xc7,0xb1,0xca,0xc,0x31,0xc2,0x9a,0x3e,0xc3,0xa2,0x8d,0xcd,0x6d,0x58,0x6b,0x32,0xac,0xdb,0xd8,0x3e,0x9a,0xcb,0x20,0x92,0x62,0x30,0xc1,0xa,0xad,0x6b,0xe8,0x56,0x3,0x42,0x30,0x40,0x23,0xe8,0xd7,0xce,0x36,0x30,0xf4,0x4b,0xd4,0xdc,0x88,0xdb,0xcc,0x36,0xd8,0xa6,0x8,0xce,0x76,0x23,0xa8,0xb2,0x4e,0x1,0x48,0xd9,0x76,0x31,0x97,0x9b,0xa4,0x66,0x5a,0x67,0x2d,0x5b,0x5c,0x9,0x10,0xd5,0x6d,0x4b,0xca,0xa9,0x10,0x56,0xe0,0x49,0xfe,0xf,0x32,0xad,0xd9,0x2,0x6c,0xd1,0xb4,0x73,0x82,0x33,0xc,0xf5,0xd2,0xf6,0xb2,0x43,0x8f,0x98,0xfe,0x4e,0x1f,0x9e,0xd5,0x63,0xde,0x53,0x1b,0xf3,0xe9,0xa3,0x1b,0x78,0xff,0xbd,0xb7,0xa2,0x6d,0xf,0xda,0x5f,0x5,0xa8,0xc9,0x36,0x29,0xd8,0xda,0x8d,0x2d,0xb8,0xc,0x12,0x9,0x68,0xc5,0x43,0xd4,0x56,0x2f,0xbe,0x74,0x1,0xde,0x53,0xc6,0x21,0xa9,0x14,0xa9,0xb5,0x36,0x7a,0xbf,0xb2,0xde,0x64,0x43,0x56,0x19,0xfa,0x38,0x6b,0xe9,0x5d,0x3d,0xa0,0xc0,0xe5,0x31,0xce,0xc1,0x7b,0x87,0xaa,0xaa,0xe1,0x9c,0x61,0x60,0x15,0xa0,0x34,0xd9,0x7f,0x23,0x22,0x6a,0x29,0xf0,0xae,0x5b,0x4e,0xe0,0xdd,0x77,0x9e,0x5d,0xbb,0x3c,0x8c,0x88,0x50,0x55,0x94,0x85,0x17,0x82,0x7,0x42,0x44,0x54,0x2,0xc7,0xb7,0xda,0xdc,0xdc,0x3b,0x9d,0x57,0x2e,0x5e,0x46,0x88,0xc,0xb8,0x58,0x95,0x97,0xb2,0xfe,0xc8,0x3e,0xac,0xe0,0xd9,0x46,0xec,0x9d,0x83,0xf5,0xe,0xba,0x6e,0x32,0xf0,0xa2,0x75,0x22,0x6b,0xea,0x68,0xd1,0x4e,0x45,0x1a,0x7,0x55,0x9d,0x42,0x0,0x52,0x8,0x4,0x2e,0xff,0x0,0x0,0x33,0x74,0x4,0x2c,0x41,0x0,0x4f,0xb1,0xa,0x33,0xf8,0x1,0x75,0xd3,0x62,0xde,0x6a,0x6c,0x6e,0xcc,0xf,0xbc,0xd7,0x7c,0xd6,0xe2,0x3f,0xff,0xb5,0x5f,0xca,0x9f,0x4d,0xc7,0x80,0x60,0xcd,0x2d,0x59,0x8d,0x95,0x52,0x23,0x48,0xe4,0x8c,0xc8,0x69,0x2b,0x73,0x9a,0x93,0x27,0x8e,0xe6,0x7d,0xd7,0xb4,0x73,0x82,0xaf,0x31,0xc0,0xc,0xc3,0x5a,0x5,0xe0,0x95,0xab,0xd7,0x71,0xbd,0x33,0x70,0x76,0x0,0x78,0xbf,0x86,0x10,0xe8,0x98,0x61,0xf0,0x17,0x26,0x36,0x5e,0x67,0x7,0x44,0x70,0xf3,0x33,0x80,0xe8,0x43,0x6e,0x3e,0x76,0x76,0xb4,0x5c,0x7,0x3e,0x17,0x24,0x67,0x86,0xe6,0x2c,0x4a,0x56,0x18,0x2,0x58,0x6b,0xbb,0x2f,0x53,0xa6,0x4c,0x99,0x32,0x65,0xca,0xfc,0xfd,0xa6,0x0,0xc0,0x32,0x65,0xca,0x94,0x29,0x53,0xa6,0xcc,0xdb,0x1a,0xb2,0xee,0x9,0xc4,0xac,0xfa,0xa,0xf0,0xc1,0x8f,0x59,0x80,0x69,0x58,0xb9,0x23,0x53,0xae,0x5c,0x56,0x6,0xa6,0x9b,0x7a,0x82,0x56,0x2f,0xbe,0xfa,0x3a,0x7e,0x69,0xcd,0xe7,0x6c,0x6d,0x6e,0xe0,0xae,0x73,0xa7,0xf1,0xbd,0x67,0x5f,0x61,0x98,0x36,0x64,0x35,0x9d,0xaa,0x2a,0xe8,0xe0,0x21,0xa4,0x82,0x35,0x3,0xba,0xe5,0x82,0x14,0x6c,0xc,0xc6,0x48,0x3d,0x26,0x72,0xc6,0xa0,0x54,0xa,0x15,0xc3,0x35,0x82,0x64,0x2d,0x29,0x4,0xab,0x9a,0x5b,0x5d,0x43,0xb6,0x66,0x46,0xce,0x53,0xeb,0x97,0x7b,0x54,0xfe,0xc1,0xb6,0x5f,0x31,0xb1,0x69,0xee,0x9f,0x18,0x3c,0x1,0xf,0x41,0x10,0xc3,0x7,0x2,0x62,0x4a,0xd7,0xe8,0x97,0x7b,0xc,0x45,0x2c,0x84,0x91,0x98,0x6f,0xb5,0xdc,0x6c,0xba,0xe,0x6a,0xa4,0x36,0xe,0x91,0x4b,0x44,0x80,0x64,0xa7,0x4,0xac,0xe9,0xc9,0x3e,0xca,0xf9,0x89,0x79,0xdb,0x2,0x38,0xbe,0x35,0xc3,0x7d,0xb7,0x9d,0xc6,0x7b,0xef,0xbd,0x1d,0x67,0xcf,0x9c,0x42,0xa5,0xd5,0xda,0xfd,0x17,0x18,0x54,0x26,0x5,0xe4,0xd0,0x2d,0xb2,0xfd,0x57,0x80,0x20,0x64,0xf4,0x6e,0xed,0x6b,0xaf,0xec,0x2c,0x0,0x0,0x52,0x2a,0x98,0xa1,0x47,0xd3,0xce,0xb0,0xb7,0x73,0x35,0x2f,0x13,0x62,0x2a,0x7b,0x0,0x22,0x2f,0xb3,0xae,0x2a,0x44,0xc4,0x49,0x93,0x32,0xb2,0xf2,0x2d,0xa9,0xd4,0xc8,0x7e,0x4a,0x5,0x1c,0x4a,0x0,0x77,0xdd,0x72,0x12,0xef,0xbb,0xeb,0x2c,0xde,0x75,0xe7,0x39,0x1c,0xdd,0xde,0x5c,0x5f,0x4a,0x22,0x4,0x20,0x24,0x97,0x7e,0x90,0xf5,0x58,0xb3,0x2a,0xce,0x79,0x87,0x93,0xc7,0xb7,0xf2,0xf6,0x9b,0xce,0xcb,0x17,0xde,0x80,0xf3,0x64,0xe1,0x1d,0x96,0x7b,0x14,0xe7,0x27,0x25,0xec,0x40,0x8d,0xba,0x35,0xc3,0xb0,0xc8,0x8a,0x44,0xb0,0x3a,0x8d,0xf2,0x15,0x3d,0xdb,0xba,0x81,0xaa,0x66,0x0,0xca,0x56,0xdb,0xa9,0xca,0x6d,0xdd,0x7e,0x25,0xcb,0xb3,0x27,0x15,0x21,0xdb,0xb4,0xc9,0x62,0x2c,0x72,0x8e,0x61,0xca,0xbd,0x6b,0x6b,0xbd,0xb6,0x1c,0xe7,0xd8,0xf6,0x6,0x8e,0x6d,0x6f,0xbc,0x23,0xe7,0xf1,0xf6,0x26,0xad,0xa7,0xd6,0x1a,0x66,0x20,0x15,0xa8,0x4,0xa0,0xab,0x76,0xed,0xf6,0xde,0xdd,0x5b,0xb2,0xdd,0x59,0x42,0x29,0xd,0xeb,0xc9,0xba,0x2f,0x95,0x26,0x28,0x1d,0x23,0xdb,0xfd,0x5d,0xb6,0xee,0xb,0x1,0x4,0x1f,0x18,0x76,0x26,0x75,0xa8,0x64,0xfb,0x3e,0xad,0xbf,0xf7,0xe,0x2a,0x1,0x7a,0x86,0x7f,0xa3,0xa,0x54,0x1e,0x6a,0x47,0x2e,0x53,0xa6,0x4c,0x99,0x32,0x65,0xca,0xfc,0xfd,0xa6,0x0,0xc0,0x32,0x65,0xca,0x94,0x29,0x53,0xa6,0xcc,0xdb,0x9a,0x10,0xe9,0x86,0x3e,0x41,0xc0,0xc8,0x1a,0x24,0x21,0xb9,0x80,0x41,0x57,0xb9,0xc1,0x55,0x4e,0x8a,0x3f,0x48,0x21,0x46,0xff,0x9e,0xb1,0x48,0x8c,0x78,0xe6,0xc7,0x17,0xd1,0xf5,0x3,0x66,0x6d,0xb3,0xf2,0x39,0x4a,0x49,0xbc,0xef,0x9e,0x5b,0xf1,0xc4,0x8f,0x5e,0x45,0x64,0xb1,0x5c,0xca,0x0,0x8c,0x88,0xac,0x22,0x92,0x90,0x52,0x62,0xeb,0xc8,0x31,0xca,0xc5,0x93,0x54,0x1c,0x42,0x65,0x8,0x91,0xac,0xa7,0x11,0x90,0x92,0xec,0xa4,0x49,0xa1,0x66,0x86,0x1e,0x55,0x5d,0x13,0xa4,0x3,0x8,0x6a,0x70,0xf6,0x1b,0x80,0x9c,0x39,0xa8,0xeb,0x6,0x11,0x94,0xd5,0x56,0x37,0x33,0x24,0x4b,0xe2,0xfe,0x91,0x4a,0x13,0x48,0xf4,0xa4,0x70,0x4a,0x6d,0xc8,0xce,0x1a,0xce,0x7a,0x1b,0x50,0xd5,0xd,0xe5,0xb3,0x99,0x1,0xa1,0x6d,0xb0,0x2e,0xd3,0x2c,0xd9,0x87,0x23,0x67,0xe3,0x1,0x69,0x99,0x55,0xce,0x31,0x4c,0x6a,0x48,0x21,0x25,0xe6,0x6d,0x83,0xf3,0x77,0xdc,0x84,0x7,0xee,0xbb,0x1d,0xe7,0xce,0x9e,0x42,0xdb,0xd4,0x87,0x36,0xf8,0x8e,0x3b,0xd0,0x67,0xf8,0x17,0xbc,0x47,0x55,0x35,0x30,0xa6,0x67,0xe5,0x98,0xa0,0xd6,0x62,0x5d,0xaf,0x7d,0xe9,0xde,0x62,0x99,0x55,0x9d,0x42,0x8,0xec,0x5e,0xbb,0x8c,0x66,0x36,0x67,0xb0,0x47,0xea,0xc7,0x94,0x1f,0x98,0xec,0xb0,0xe9,0x73,0xbc,0xb3,0x39,0x63,0x2f,0xc6,0x88,0xd9,0xc6,0x66,0x2e,0x6f,0x1,0x80,0x73,0xa7,0x8f,0xe3,0x81,0x7b,0x6f,0xc5,0xf9,0xbb,0x6f,0xc7,0x89,0xe3,0x47,0xa1,0xd4,0xdf,0xa2,0xfa,0x8a,0x11,0xde,0x5b,0x98,0xa1,0xcb,0x96,0x58,0xcf,0xe5,0x29,0x88,0x1,0x5b,0x9b,0x1b,0x6b,0x5e,0x12,0xb1,0xbb,0xe8,0xa9,0x88,0x23,0x78,0xd4,0xcd,0x8c,0xac,0xbf,0x9c,0x81,0x18,0x42,0x80,0x33,0x94,0x9f,0x27,0x95,0x82,0xc,0x3a,0x37,0x4e,0x7,0xce,0x4,0xd4,0x15,0x59,0xac,0xcd,0xd0,0xe5,0x75,0xac,0x9b,0x96,0x14,0x8e,0x6b,0xac,0xaa,0x54,0x7c,0x4b,0x39,0x85,0xc9,0xaa,0x4e,0x3f,0x9b,0x2a,0xdc,0xaa,0xc,0x19,0x85,0x10,0x50,0x88,0x2b,0x70,0xf7,0x67,0x31,0x4d,0x53,0x67,0xf0,0xab,0x14,0x1,0x38,0xa9,0x52,0xe,0xe4,0xfa,0x7d,0x9f,0x94,0xb4,0x7d,0xb7,0xa0,0xfd,0x18,0x1c,0xbc,0xa7,0x82,0x93,0xaa,0x6e,0x60,0xfa,0x2e,0x1f,0xd7,0x29,0xcb,0x31,0x59,0xe1,0x53,0xdb,0x74,0x86,0xa6,0x52,0x20,0x38,0x7a,0x28,0x90,0xca,0x4c,0xbc,0xb3,0x10,0x51,0x70,0xc7,0xa,0xe9,0x3b,0x95,0xd2,0x87,0x2a,0x52,0xcb,0x94,0x29,0x53,0xa6,0x4c,0x99,0x32,0x7f,0xf7,0x29,0x0,0xb0,0x4c,0x99,0x32,0x65,0xca,0x94,0x29,0xf3,0xb6,0x26,0x87,0xf2,0xc7,0x8,0x8e,0xe9,0x82,0xf7,0x16,0x52,0x35,0x2b,0x5,0x2,0xe9,0xf7,0x2,0x3,0xa7,0xd4,0xea,0x2a,0x0,0x82,0x65,0x21,0x2,0x2a,0xe2,0xca,0xce,0x2,0xaf,0xbc,0x7a,0x11,0x77,0xdf,0x75,0xdb,0x81,0xcf,0xba,0xef,0x5d,0xb7,0xe1,0xcc,0xf1,0x27,0xf1,0x93,0x37,0xae,0x40,0xe9,0xa,0xd6,0x18,0x52,0xc7,0xd,0x3d,0xa4,0xd2,0xe8,0x16,0xbb,0xd4,0xf6,0xdb,0xb4,0x88,0xce,0x42,0x28,0x5,0xcd,0xe0,0x24,0x41,0x32,0x25,0x24,0xa4,0x26,0x3b,0xe7,0x34,0x5b,0x4c,0x57,0xd,0x67,0xd5,0x8d,0x90,0x2a,0x41,0xb6,0xb4,0xfc,0x9,0xe8,0x48,0xa9,0xd8,0x3a,0xeb,0xc7,0xb2,0x82,0xfd,0x13,0x63,0xb6,0x5d,0xe,0xc,0xc2,0xac,0x19,0xd0,0x34,0x33,0xb6,0x4d,0xb,0x38,0x63,0xd0,0xcc,0xe6,0x93,0x86,0xd3,0x7d,0xdb,0x56,0x2a,0xc,0xdd,0x32,0x37,0x7,0x57,0x4d,0xbb,0xa2,0x9a,0x3,0xa8,0xe4,0xe4,0xf8,0xd6,0xc,0xf,0xdf,0x7f,0x17,0xce,0xdf,0x73,0x1b,0x8e,0x1d,0xd9,0x3a,0x0,0xfd,0xfa,0xc1,0xe2,0xe2,0xeb,0x6f,0xe2,0xc6,0x53,0xc7,0xf,0x80,0xd5,0x18,0x23,0xac,0x31,0xd9,0x32,0x9c,0x94,0x73,0x9,0x40,0x85,0x18,0xb2,0xca,0xed,0xc0,0x2a,0x42,0x72,0x53,0x6e,0xf,0xc9,0x19,0x82,0xcb,0xdd,0x1d,0xca,0x71,0x93,0x4,0xf,0xc9,0xb2,0xac,0x73,0x4e,0xa4,0xf7,0xe,0x52,0x48,0xb2,0x83,0xa,0x2,0x8f,0x52,0x91,0x5,0x38,0x4,0x8f,0xf3,0x77,0x9e,0xc1,0x23,0x1f,0x7a,0x2f,0x6e,0x3f,0x77,0x16,0x4d,0xb3,0xa,0x1e,0x43,0x88,0xb8,0x72,0xf5,0x1a,0xf6,0xba,0x1,0xb7,0xdd,0x7c,0xe3,0x81,0xe3,0x30,0x1d,0x63,0xa6,0xef,0x50,0x35,0xdc,0x38,0x1d,0x49,0x79,0xd9,0x54,0xeb,0xf3,0xf8,0x8,0x3a,0x6a,0x48,0x19,0x31,0xf4,0x4b,0x82,0x93,0xde,0xa1,0x6e,0xe7,0xd0,0x5c,0x58,0xa2,0x74,0x85,0xc5,0xce,0x35,0x68,0x5d,0xd1,0x71,0xc2,0x76,0x60,0x20,0xc2,0xe,0x4,0xee,0xda,0xf9,0x66,0xde,0x9e,0x66,0xe8,0x50,0xd5,0xed,0xda,0x63,0x43,0x8,0xb2,0xc1,0x5a,0x6b,0x10,0xbc,0xa3,0x6d,0xc7,0xcd,0xb9,0x64,0x3,0xa7,0x7d,0x47,0xad,0xd3,0x47,0x60,0x83,0x81,0x90,0x9b,0x6b,0x3b,0x2f,0x42,0x8,0x8,0xa9,0xae,0x37,0xf2,0x9b,0xd3,0x1f,0x90,0x9a,0x80,0x47,0xd5,0x1c,0x41,0xfa,0x95,0x12,0xdd,0x5c,0xf5,0x4b,0x93,0x6c,0xdb,0x9e,0x4b,0x4a,0x28,0x27,0x53,0x1d,0xb2,0xef,0xc1,0x8a,0x5f,0x3a,0xd6,0x87,0x6e,0x91,0x9b,0xb9,0xc1,0x50,0x1d,0x0,0x74,0xd5,0x50,0x96,0xe2,0x72,0x8f,0x54,0xb5,0xc,0xd6,0xed,0xd0,0xe7,0x6c,0x41,0x21,0x24,0xea,0xba,0x61,0xdb,0x70,0xc8,0xb9,0x95,0x69,0xd9,0x5,0x0,0xcf,0x51,0x3,0xde,0x3b,0x5e,0x15,0x85,0x18,0x7d,0xb9,0x0,0x97,0x29,0x53,0xa6,0x4c,0x99,0x32,0x3f,0xe5,0x14,0x0,0x58,0xa6,0x4c,0x99,0x32,0x65,0xca,0x94,0x79,0x5b,0x93,0xc1,0x95,0x10,0x10,0x90,0x88,0x31,0xa9,0xae,0x56,0xe1,0xc,0x29,0x8b,0x28,0xfb,0xb,0x8a,0xda,0x53,0xa5,0xd2,0xf0,0xde,0x43,0xcb,0xd1,0x16,0x8c,0x18,0xf1,0xf5,0xbf,0xfe,0x3e,0xee,0xba,0xe3,0xdc,0x1,0xcb,0xe6,0x7c,0xd6,0xe2,0x53,0x1f,0xfd,0x0,0xfe,0xcd,0xe7,0xbe,0x8a,0xc5,0xde,0x6e,0x2e,0x6d,0x48,0xa3,0x94,0x46,0xd5,0xb4,0xa4,0x64,0xab,0x1b,0x68,0x5d,0x73,0x8e,0x1b,0xb5,0xa3,0x4a,0xa5,0x10,0xb9,0x81,0xb8,0x6e,0x5a,0xc,0xdd,0x82,0x8a,0x2e,0xa4,0x84,0x35,0x64,0x5b,0xd4,0xba,0x42,0xdd,0xb4,0xb9,0x84,0x22,0xa9,0xfe,0xa6,0xcd,0xad,0x52,0x4a,0x18,0xd3,0x53,0x9,0x88,0x5f,0x5f,0x2,0xe2,0x9c,0x45,0x84,0x84,0x77,0x96,0x7e,0xbf,0xef,0x60,0xfa,0x2e,0x97,0x1e,0xe8,0xaa,0x82,0xae,0x6b,0x86,0x7a,0x6e,0xbd,0x95,0x38,0x6,0x6a,0x86,0xe5,0x4c,0x34,0x6f,0x2d,0x7f,0x6e,0xb,0x29,0x5,0xea,0xba,0xc6,0x47,0xee,0xbf,0x1d,0x1f,0xf9,0x85,0x7,0xb0,0xb5,0x39,0x3f,0xb0,0x5f,0x2e,0x5d,0xbe,0x86,0xc7,0x9e,0x7c,0x16,0x8f,0x3f,0xf3,0x32,0x7a,0x7,0xfc,0xeb,0x7f,0xf1,0xa9,0x3,0x0,0x30,0x95,0x91,0x0,0x91,0xf2,0xc,0x63,0x84,0x8f,0x4,0xfc,0x9c,0x35,0x90,0x6c,0x95,0x5e,0xbf,0xf3,0x3,0xab,0x3c,0x9,0x2,0x86,0xe0,0x79,0x5b,0x92,0x9d,0x9a,0xec,0xd5,0x1a,0xd1,0x1a,0xd4,0xed,0xc,0xb6,0xef,0x21,0x24,0x41,0x22,0x21,0x4,0xaa,0xd9,0x6,0xb7,0x4,0xf,0xb8,0xfd,0xa6,0x1b,0xf0,0x99,0x4f,0x3d,0x8a,0xdb,0xcf,0xdd,0x74,0x40,0xed,0xd7,0x75,0x3d,0x5e,0x78,0xe5,0x35,0x7c,0xf7,0xa9,0xe7,0xf1,0xec,0xcb,0x6f,0xe0,0xa1,0x77,0x9f,0x3b,0x0,0x0,0xd3,0xf2,0x6,0xef,0x50,0xd5,0xd,0xbc,0x73,0x70,0xd1,0x64,0xf5,0xa6,0x31,0xeb,0xf3,0xf8,0x66,0xac,0xbe,0x34,0x6c,0xa7,0x36,0xbe,0x83,0xae,0x1a,0xca,0x41,0xd4,0x9a,0x15,0xa2,0x1d,0x65,0x2,0x7a,0xf,0x13,0xba,0xc,0x87,0x8d,0xe9,0x9,0xce,0x72,0xd9,0x8b,0xae,0x6a,0xe8,0xba,0xc9,0xe0,0xcd,0x5b,0xbb,0x76,0xb3,0x11,0x8,0xd3,0xb0,0x9c,0x19,0xa8,0x75,0xd,0x6f,0x2d,0x41,0x45,0xe6,0xe9,0xf3,0xcd,0x6d,0x74,0xcb,0x5d,0x68,0x5d,0xc1,0xc,0x3,0x29,0x6d,0xb1,0xa,0xe3,0x1e,0xff,0xfe,0xb,0xf8,0xea,0x77,0x7f,0x40,0xc7,0xb6,0x10,0xb0,0xc6,0xe4,0xd2,0x8e,0xe8,0x1d,0x82,0x77,0xc,0x75,0x23,0x4,0x22,0x20,0x28,0xf3,0xd2,0x9a,0x81,0x60,0x76,0x1c,0xb5,0x74,0xc6,0x58,0xda,0x87,0xde,0x61,0xbe,0xb9,0x4d,0xdb,0x64,0xe8,0x80,0x19,0x15,0xaa,0x1c,0xdc,0x76,0x32,0x2b,0xfa,0x22,0x5b,0xbd,0x9d,0xb1,0x70,0x66,0x80,0xd2,0x15,0x74,0x55,0xc1,0x9a,0x81,0x4b,0x65,0x64,0x6,0x77,0x66,0x18,0x10,0x82,0x83,0xe5,0xc2,0x98,0x18,0xc9,0xe,0xbd,0xb4,0x6,0x55,0x5d,0x73,0x1e,0xa4,0x65,0x2b,0xf7,0xd8,0xba,0x9c,0x0,0x26,0x41,0xc1,0x50,0xe0,0x5f,0x99,0x32,0x65,0xca,0x94,0x29,0xf3,0xe,0x4d,0x1,0x80,0x65,0xca,0x94,0x29,0x53,0xa6,0x4c,0x99,0xbf,0xc3,0xc4,0x9c,0x63,0x96,0x6e,0xf6,0x95,0xae,0x10,0x9c,0x7,0x62,0x80,0x0,0x1,0xa,0xa9,0x34,0xa0,0x90,0xc3,0xff,0x1,0xb2,0x6,0x92,0x9d,0x52,0x42,0x49,0xca,0x51,0x7b,0xfc,0x99,0x97,0xf0,0xa9,0xcb,0xd7,0x70,0xe3,0xc9,0x83,0xcd,0xa7,0xe7,0xef,0xbe,0x1d,0xef,0xbf,0xfb,0x5,0x7c,0xfd,0x7b,0xcf,0xc2,0xe,0x3,0x37,0xcd,0x5a,0x68,0x5d,0x41,0xce,0xa9,0xdd,0x57,0x8,0x1,0x5d,0x35,0xd0,0x5a,0x43,0xca,0x96,0xb3,0xd5,0x48,0x55,0x55,0x73,0x99,0x86,0x19,0x7a,0xcc,0x37,0x8f,0xc0,0xda,0x81,0x94,0x68,0xde,0xa3,0xaa,0x2b,0x24,0x95,0x62,0xb2,0xe,0x87,0x10,0xb2,0xb2,0x2a,0x46,0x82,0x28,0xc9,0x22,0x9a,0x4a,0x2f,0xd6,0x6c,0xe,0xe8,0xaa,0x46,0x3f,0xc,0xb9,0xb0,0xa3,0xf,0x94,0xad,0x17,0x79,0x3b,0x21,0x92,0x6d,0x79,0xb9,0x7b,0x1d,0x6a,0x73,0x3,0x6b,0xa3,0xcd,0x38,0xcb,0x2e,0x95,0xf7,0xe,0xfd,0x32,0x17,0x2a,0x9c,0x38,0x7a,0xa,0xbf,0xf5,0xc9,0xf,0xe1,0x9e,0xbb,0x6e,0x5d,0x81,0x87,0x31,0x46,0x5c,0x7c,0xfd,0x32,0xfe,0xe2,0x5b,0x4f,0xe0,0x7b,0xcf,0xfd,0x84,0xed,0xa6,0x16,0x75,0x55,0xad,0x5f,0x56,0x56,0xce,0x51,0xc6,0x20,0x65,0xb5,0x59,0xd3,0xa3,0x6e,0x67,0xd4,0x8c,0x1b,0x15,0xc4,0x21,0x96,0x4b,0xef,0x5d,0x86,0x97,0xce,0x1a,0x18,0x6e,0xc5,0x75,0xd6,0x50,0x81,0x4a,0x33,0xcb,0x16,0xe0,0x94,0xa9,0x27,0xa1,0xe8,0x7d,0x95,0x82,0x73,0xe,0xce,0xe,0xf8,0xd8,0x43,0xef,0xc5,0x67,0x7f,0xf5,0x1f,0x62,0x63,0xbe,0xa,0x31,0xfb,0xc1,0xe2,0x89,0x1f,0x3c,0x8f,0xbf,0xf8,0xf6,0xd3,0x78,0xfd,0xca,0xe,0xe5,0xef,0xb9,0x43,0xd4,0x88,0x91,0x20,0x6d,0x44,0xcc,0xd9,0x7c,0x4,0x34,0x49,0x91,0xba,0xec,0xcd,0xda,0xd7,0x9d,0x3a,0xbe,0xc9,0xfb,0x83,0x1a,0xac,0xc9,0x2e,0x4e,0xc7,0xa8,0x1d,0x6,0x2a,0xb5,0x8,0x21,0x2b,0xf4,0x34,0x17,0x74,0x18,0xd3,0xaf,0xe4,0x58,0x52,0x61,0x46,0x47,0xb0,0xd8,0x39,0x6e,0xc0,0x5e,0xdf,0x56,0x1b,0x43,0x80,0x31,0x3,0x9c,0x31,0x50,0x4a,0xc1,0xf4,0xcb,0xdc,0x20,0xec,0xd,0xe5,0x11,0xee,0x5d,0xbf,0x4a,0x76,0xea,0xe0,0x71,0x7d,0xd1,0xc3,0x18,0xda,0x87,0xd3,0x39,0x79,0x7c,0x1b,0x17,0xdf,0xbc,0xe,0x55,0x55,0xd9,0x62,0x4f,0xea,0xc7,0x16,0xdd,0xde,0x2e,0x74,0x55,0x65,0x25,0x1e,0x0,0x3e,0x3f,0x81,0xa1,0xef,0x46,0x85,0xa7,0xf,0x64,0xb1,0x15,0x82,0xf7,0x15,0xbd,0x87,0xd4,0x3a,0x17,0xed,0x60,0x6d,0xce,0xa5,0x83,0x52,0xd4,0xb8,0xbc,0xd8,0xb9,0xe,0x21,0x5,0xf6,0xae,0x5f,0x41,0xdd,0xb4,0xb0,0x9d,0x81,0xe8,0xc5,0x68,0xd1,0x8f,0x1,0x2,0x2,0x8b,0xbd,0x6b,0xd9,0x76,0x6f,0x87,0x9e,0xca,0x67,0x38,0x53,0x31,0xb5,0x2e,0xeb,0xaa,0xce,0xad,0xe1,0x94,0xd,0x48,0x8d,0xc9,0x8,0x82,0x95,0xb3,0xb1,0x94,0x80,0x94,0x29,0x53,0xa6,0x4c,0x99,0x32,0xef,0xe0,0x14,0x0,0x58,0xa6,0x4c,0x99,0x32,0x65,0xca,0x94,0x79,0x5b,0x93,0x14,0x78,0xc9,0x66,0x48,0x19,0x7b,0xa,0xce,0xda,0xc,0xa6,0x72,0xb1,0x83,0x77,0x74,0xf3,0x2e,0x40,0x6a,0x27,0x4d,0xff,0x46,0x85,0xa,0x8e,0x4b,0x42,0x34,0x8c,0x95,0xf8,0xf2,0x5f,0x7e,0x7,0xff,0xec,0x37,0x7e,0xe5,0x0,0x7b,0x50,0x4a,0xe2,0xd7,0x3e,0xf1,0x8,0x5e,0x7b,0xf3,0x2a,0x9e,0x7e,0xf6,0x85,0xac,0x20,0xa2,0x5c,0x39,0x6a,0x68,0x55,0x4a,0x41,0x4e,0x4a,0x14,0xa4,0x52,0xb9,0xd5,0xd5,0x59,0x43,0xea,0xbb,0xaa,0x42,0x8c,0x1,0x5a,0xd7,0xa4,0xde,0x6a,0xaa,0x6c,0x53,0x95,0x4a,0xa3,0xaa,0x55,0xce,0x15,0x24,0x9b,0xaa,0xce,0xb9,0x65,0x10,0x31,0xdb,0x14,0xe3,0x21,0xea,0xa8,0xa9,0xdd,0x71,0x18,0x3a,0x48,0x49,0xca,0xa6,0x88,0x8,0x6f,0x2d,0x3,0xc7,0x1a,0xa2,0x4e,0xc5,0x17,0x6b,0x40,0x51,0xa4,0x8c,0x3c,0x8,0x1,0xc7,0xb9,0x6a,0xd6,0xc,0x98,0xb5,0x2d,0x3e,0xf3,0xf1,0xf,0xe0,0xde,0x77,0xdd,0xb6,0xf2,0xfb,0xd6,0x79,0x7c,0xed,0xdb,0x4f,0xe0,0xb,0xdf,0x78,0xa,0xce,0x53,0xce,0xa2,0xf7,0x16,0x31,0x44,0x88,0xb8,0x7e,0x59,0x11,0x3,0xba,0xe5,0x1e,0x2f,0xb7,0xe7,0x6c,0xc2,0x8a,0xed,0xba,0x1e,0x11,0x26,0x3,0xd4,0x75,0x53,0x37,0x2d,0xba,0xc5,0x6e,0xb6,0xe0,0x6,0xef,0xb8,0x4d,0x59,0x22,0x78,0x87,0xe5,0x22,0x6d,0x6f,0xda,0xce,0x9e,0x1b,0x9b,0x1,0xa0,0x69,0xe7,0x78,0xff,0xbd,0xb7,0xe3,0xb7,0x7f,0xe3,0x93,0x68,0xea,0x55,0xbb,0xef,0xeb,0x97,0xae,0xe0,0xf,0xff,0xfd,0xd7,0xf0,0xc2,0x85,0xcb,0xf9,0x18,0xa3,0x63,0x47,0xac,0xb5,0x24,0x13,0xa3,0xd,0x18,0x96,0x4b,0xa8,0x4a,0xc3,0x19,0x43,0x39,0x74,0xac,0x0,0xbd,0xf0,0xda,0x25,0x78,0x1f,0xe,0xa8,0xb,0x6f,0xbb,0xf9,0x34,0xa4,0x94,0xa8,0xdb,0x19,0xfa,0xe5,0x82,0x41,0x36,0xe7,0xdf,0xf5,0x1d,0xe7,0x3,0x12,0x4,0x1e,0xfa,0xe,0x5e,0x3b,0x44,0x44,0x48,0x21,0xe1,0x9c,0xc9,0xeb,0x12,0xb8,0x85,0x57,0xb2,0xba,0x55,0x40,0x1e,0xba,0xdd,0x92,0x92,0x54,0x8,0x81,0x61,0xe8,0x61,0x87,0x7e,0xb4,0x82,0x87,0x98,0x9b,0x70,0x83,0xf7,0xa8,0x9a,0x6,0x3b,0xbb,0x7b,0xb8,0x72,0xf5,0xda,0x81,0x26,0xe0,0x93,0xc7,0x8f,0xe0,0xc6,0x1b,0x8e,0xe0,0x8d,0x6b,0xb,0x82,0x7f,0x43,0x4f,0x99,0x7d,0x43,0x4f,0x8a,0x3c,0xce,0x59,0xa4,0xd2,0x18,0x6e,0x68,0x66,0x98,0xd9,0xb4,0x33,0xf4,0x6c,0x2f,0x47,0x88,0x70,0xde,0x61,0xf0,0x4b,0x8,0x29,0x51,0xd7,0x2d,0x34,0x0,0xa1,0xc5,0xe1,0xb0,0x4d,0x24,0xdb,0x36,0x59,0xb8,0x9d,0x25,0xa5,0xeb,0xde,0xce,0x35,0xcc,0xe6,0x9b,0xdc,0xf8,0xab,0xb0,0x5c,0xec,0x40,0x4a,0x9,0xe7,0xa8,0xc,0xc4,0x1a,0x43,0x80,0xb8,0x5b,0x40,0xf0,0x39,0x41,0xb9,0x7e,0x64,0x41,0xde,0xd8,0x3a,0xa,0xa9,0x22,0x83,0x6e,0xbe,0x86,0xc4,0x98,0xdb,0x96,0x53,0x46,0x63,0x99,0x32,0x65,0xca,0x94,0x29,0x53,0xe6,0x9d,0x99,0xf2,0x58,0xad,0x4c,0x99,0x32,0x65,0xca,0x94,0x29,0xf3,0xb6,0x46,0x29,0x9d,0x73,0xba,0x92,0x55,0x8f,0x60,0x10,0x72,0x78,0x7f,0xe4,0xd8,0xfe,0xd4,0xce,0x9a,0xf2,0xf7,0x52,0x8e,0x5a,0x52,0x5,0x49,0xa5,0x73,0xfe,0xde,0x5f,0x3d,0xfe,0x1c,0x9e,0xf9,0xd1,0xb,0x6b,0x3f,0x73,0x6b,0x73,0x8e,0xdf,0xfd,0x27,0x9f,0xc4,0x5d,0xb7,0xdc,0xc8,0x4d,0xbf,0x94,0xeb,0xa7,0xeb,0x86,0x73,0xda,0xea,0x6c,0xf9,0xad,0xf8,0x67,0x9,0x2,0x56,0x75,0x3,0x52,0x9,0x4a,0x56,0xe7,0x21,0x97,0xa,0x88,0xdc,0xb2,0x4b,0xc0,0x49,0x4a,0x85,0xed,0x8d,0x16,0xbf,0xf6,0xb1,0x7,0xa1,0x25,0x13,0x3a,0x31,0xfe,0x1e,0xe,0x29,0xd8,0x88,0x8,0x50,0x4a,0xc3,0x39,0x8b,0xa1,0x5b,0x92,0x5d,0xd2,0x59,0xa8,0xaa,0xa2,0xe6,0x62,0x6b,0x32,0x9c,0x74,0xc6,0x40,0xbe,0x45,0x51,0x47,0x88,0x64,0x45,0x76,0xce,0xa1,0x5b,0x2e,0x20,0x95,0xc6,0x2f,0xbe,0xef,0xe,0xbc,0xfb,0xee,0x3b,0xf6,0xfd,0x5e,0xc4,0x17,0xff,0xf2,0x31,0x7c,0xe1,0x5b,0xcf,0x20,0x40,0xe4,0x6c,0xc3,0xaa,0x6e,0xb3,0x12,0x6b,0x9d,0x22,0x8d,0x32,0xfe,0x7c,0x56,0xf2,0x91,0x95,0x37,0xa0,0x5f,0xee,0xc1,0x39,0x43,0xaa,0xb6,0x78,0x38,0xc8,0x1a,0xfa,0x8e,0xac,0xd0,0x21,0xa0,0x6a,0x9a,0xfc,0x3e,0x64,0xff,0x1c,0x0,0x6e,0x7b,0x4d,0xea,0x45,0x3b,0xf4,0x5c,0xa0,0x2,0xd4,0x4a,0xe2,0x37,0x3f,0xfd,0xe8,0x1,0xf8,0x77,0xe9,0xf2,0x55,0xfc,0x4f,0xff,0xf7,0xe7,0xf1,0xe2,0xc5,0x2b,0x94,0xbd,0xc8,0x8a,0x4b,0x33,0x74,0x64,0x4b,0x5d,0xb7,0xcd,0x19,0x70,0x29,0xad,0x79,0x9b,0x53,0x9,0x49,0xf0,0x4,0x7d,0x2f,0x5e,0xba,0xa,0xbb,0xc6,0x92,0x7b,0xcb,0xd9,0x33,0x38,0x79,0x64,0xe,0x67,0x2d,0x35,0x3c,0xb,0x41,0x60,0x8b,0x2d,0xdf,0xc6,0xf4,0xb0,0xa6,0x87,0x33,0x43,0x2e,0x9,0x11,0x24,0x99,0xa3,0xbc,0x3b,0x8,0x38,0x6b,0x31,0x9b,0x6f,0x12,0xac,0x5,0xb5,0x33,0x7b,0x6f,0xe1,0x9d,0x59,0xbb,0x9c,0x0,0xd0,0x71,0x26,0x9e,0x0,0x78,0x99,0x17,0x64,0x5b,0xb6,0x3,0xc1,0x70,0x56,0xbb,0x29,0x45,0xe5,0x31,0x3f,0x7e,0xe5,0xe2,0x81,0xf7,0x6a,0xdb,0x6,0xef,0xb9,0xe3,0xc,0xbc,0x25,0xd5,0x60,0x55,0xb7,0x9c,0x17,0xe9,0x51,0x25,0xe0,0xea,0x1d,0x22,0x0,0xcb,0xd0,0x2d,0x78,0x52,0x31,0x52,0x41,0x8b,0x22,0x0,0xc7,0xaa,0x46,0x30,0xfc,0x1c,0x86,0xe,0xdd,0x62,0x17,0xce,0x59,0x38,0x3b,0x1c,0xd2,0x74,0x1d,0xb2,0x82,0x2f,0xad,0xb3,0xae,0x6a,0xd4,0x4d,0x8b,0xcb,0x6f,0x5c,0xc0,0xd0,0x2d,0xb0,0xdc,0xbb,0xe,0x6f,0x2d,0x86,0xae,0xcb,0xc5,0x30,0xb4,0xc,0x4,0x3,0x9d,0x31,0xb0,0xc6,0x60,0x6f,0xf7,0x1a,0x1d,0x23,0xdd,0x12,0x66,0xe8,0x48,0x95,0xc8,0xe7,0xdf,0xb8,0xdd,0x2,0x20,0x92,0xc2,0xb7,0x5c,0x77,0xcb,0x94,0x29,0x53,0xa6,0x4c,0x99,0x77,0x6a,0xa,0x0,0x2c,0x53,0xa6,0x4c,0x99,0x32,0x65,0xca,0xbc,0xed,0x11,0x6c,0x12,0x8d,0x88,0x59,0x71,0x24,0x84,0xcc,0x16,0x56,0x91,0x3c,0xac,0x49,0x91,0x27,0xe4,0x58,0xb0,0xc1,0xd,0xa8,0xce,0xda,0x6c,0x8d,0xa5,0x4c,0xb6,0x1,0x9f,0xfb,0xe2,0xb7,0xb1,0x58,0xae,0x7,0x3e,0xc7,0x8f,0x1d,0xc5,0x7f,0xf5,0xfb,0xbf,0x8d,0x47,0x3e,0x70,0xf,0x81,0x45,0x6,0x1b,0xa9,0x1,0xb6,0x6e,0x67,0xac,0x9e,0x3,0x29,0xc,0x9d,0xcd,0xff,0x6,0x90,0x72,0x8d,0x40,0x24,0x72,0xd6,0xa0,0xd6,0x64,0x3f,0xac,0xdb,0x16,0x1b,0xb3,0x19,0x3e,0xf1,0xf0,0xfd,0xf8,0x6f,0xfe,0xd5,0x6f,0xe3,0x23,0x1f,0xfe,0x0,0xda,0xb6,0xcd,0xcb,0xcc,0xfa,0x2d,0x6,0x88,0xeb,0x2d,0xc0,0x91,0xdb,0x7b,0x25,0x43,0x96,0xba,0x69,0xe1,0xad,0x45,0xdd,0xce,0xd0,0xce,0x37,0xe0,0xec,0x0,0x33,0xf4,0x50,0x4a,0xa3,0xeb,0xf6,0xd6,0xab,0xf3,0x4,0x15,0x69,0x28,0x5d,0x8d,0x65,0xc,0xd1,0xe1,0xc3,0xf,0xbe,0xf7,0x0,0x94,0xb9,0xf8,0xfa,0x25,0x7c,0xe5,0xb1,0x67,0x39,0x2b,0x8e,0xec,0xb9,0xd6,0xc,0xe8,0x97,0xb,0x52,0x21,0x76,0xb,0x64,0x2f,0xf1,0xca,0x47,0x28,0xb4,0xf3,0x4d,0xd4,0x4d,0x43,0xa0,0xd1,0xc,0x30,0xfd,0x92,0xe0,0x99,0x73,0xd4,0x78,0x7b,0x48,0x13,0x6c,0xc,0x23,0x24,0x4b,0x40,0xc7,0x7b,0x7,0x67,0xd,0x2d,0x33,0xb7,0x1c,0xf7,0xdd,0x82,0xad,0xb8,0x2e,0xab,0xb,0xdb,0xd9,0x26,0x1e,0xb8,0xef,0xe,0xdc,0x74,0x66,0x35,0xcb,0x2f,0xc6,0x88,0x3f,0xff,0xf2,0x37,0xf0,0xc6,0xe5,0xab,0x4,0xc,0xed,0x0,0xa9,0x14,0xfa,0xe5,0x1e,0x6f,0x6b,0x71,0x88,0x2,0x4c,0xac,0x6c,0x43,0xe7,0x2c,0x62,0x8,0x39,0xa3,0xee,0xf5,0x37,0xaf,0xe0,0xe2,0x1b,0x6f,0x1e,0x78,0x55,0x5d,0x69,0x7c,0xfa,0xa3,0x1f,0x40,0x5d,0xd7,0x39,0x7b,0xe,0x0,0xa9,0xcf,0x0,0x54,0x75,0x3,0x29,0x35,0x5c,0xce,0x69,0x14,0x79,0xdd,0xdb,0xf9,0x6,0x94,0xd6,0x68,0xe7,0x1b,0xb0,0x66,0xa0,0x63,0xd8,0x3b,0x52,0x6c,0xba,0xf5,0xf9,0x7f,0x82,0x8b,0x6f,0x66,0xf3,0x4d,0xb2,0xba,0x4e,0xa0,0x6b,0xb2,0x10,0x2b,0xad,0xd1,0x6e,0x6c,0xa2,0x65,0xa8,0xa8,0xab,0x1a,0x4f,0x3e,0xf3,0xe2,0xda,0xf5,0xfe,0xf0,0x7,0xde,0x8d,0xed,0x79,0x8d,0xbe,0x5f,0xc2,0x9a,0x1e,0xc1,0xfb,0xac,0x74,0x75,0xd6,0xc0,0xe,0x1d,0x9c,0x19,0xa0,0xb5,0x46,0x33,0xdb,0x80,0xaa,0x2a,0x8,0x45,0xe7,0x1d,0x1,0xd3,0xa,0xde,0xe,0xa8,0x59,0x39,0x4b,0x10,0xd2,0xe4,0xdc,0x4b,0x2,0xc0,0x6b,0xfd,0xe9,0x79,0xfb,0xe,0x7d,0x87,0x10,0x2,0x86,0x7e,0x89,0xa1,0xef,0xd0,0xce,0xe6,0x18,0xfa,0x8e,0xdf,0x27,0xa2,0xaa,0x6b,0x6a,0x16,0xf6,0xe,0xdb,0xc7,0x6e,0x80,0x54,0xa,0xcd,0x6c,0x3,0x75,0x3b,0x43,0xdd,0xce,0x10,0x3c,0x5d,0x33,0x9a,0x76,0x46,0xcd,0xc2,0xac,0xf0,0xcc,0xaa,0x4a,0xa9,0x18,0x88,0x4e,0x4e,0xb0,0x32,0x65,0xca,0x94,0x29,0x53,0xa6,0xcc,0x3b,0x32,0x5,0x0,0x96,0x29,0x53,0xa6,0x4c,0x99,0x32,0x65,0xde,0xd6,0x8,0x41,0xa,0x3f,0x42,0x23,0xa4,0xac,0x13,0x29,0xf7,0x2b,0x59,0x80,0x27,0xd6,0x3d,0x29,0x24,0xa9,0xce,0x2,0xb5,0xa7,0x3a,0x67,0xb3,0x52,0x2c,0xb2,0xd5,0xd3,0x31,0xac,0x7b,0xe1,0xd5,0xd7,0xf0,0x27,0x5f,0xf8,0x2b,0x38,0xb7,0x1e,0x40,0xcd,0xe7,0x33,0xfc,0x8b,0x7f,0xfa,0x6b,0xf8,0x2f,0x7f,0xf7,0x37,0x70,0xd3,0xc9,0x63,0x8,0x9e,0x6c,0x88,0xd9,0x62,0x29,0x25,0x59,0x35,0xad,0x45,0x55,0x35,0xd9,0x6a,0xab,0x34,0xd9,0x81,0xeb,0xa6,0x85,0x90,0x2,0x75,0x33,0x23,0x85,0xa0,0xd6,0xd8,0xde,0xdc,0xc0,0xc7,0x1f,0x3a,0x8f,0x7f,0xfd,0x7b,0xbf,0x8e,0xdf,0xf8,0xd4,0xa3,0x38,0x7e,0xec,0x48,0x2e,0x1f,0x10,0xd9,0x56,0x1c,0xe0,0xbc,0x85,0x1d,0xfa,0x43,0xcb,0x8,0x2,0xaf,0xaf,0x52,0x9a,0xd5,0x52,0x9e,0x5a,0x56,0x85,0x44,0xbf,0x5c,0x0,0x9c,0xb9,0xe6,0x83,0x43,0xf4,0xe1,0xd0,0x36,0x61,0xa9,0xc8,0xb6,0xa9,0xb4,0x86,0x52,0xa,0x5b,0xb3,0x6,0x27,0x4f,0x1c,0x3b,0xf0,0x7b,0x17,0x5e,0xbf,0x6,0x63,0x53,0x43,0x30,0x81,0xb4,0xba,0x9d,0x41,0x4a,0xb2,0x18,0x37,0xf3,0x8d,0x75,0xfc,0x2f,0xdb,0x76,0x53,0xfe,0x9b,0xe0,0x16,0x58,0x29,0x15,0x97,0x75,0xc8,0x43,0x1,0x60,0x82,0x6e,0x82,0xa1,0x9c,0x19,0xfa,0xc,0xff,0xf6,0xae,0x5f,0xc5,0xf5,0xab,0x6f,0x66,0x25,0x5d,0x8c,0xa4,0xe2,0x23,0x90,0x49,0x0,0xe7,0xce,0x5b,0x6f,0x82,0x94,0xab,0xb,0x65,0xad,0xc3,0x33,0xcf,0xbf,0x9c,0x8f,0xf,0x21,0x24,0x86,0x6e,0x49,0xd9,0x70,0x5a,0xa3,0x66,0x95,0xde,0x9a,0x45,0x21,0x20,0xcb,0x76,0x5e,0xa5,0x74,0x5e,0x9e,0xa1,0x27,0x6b,0xeb,0xdf,0x3c,0xf5,0xdc,0xda,0xb5,0x38,0x7f,0xcf,0xed,0xf8,0xe8,0x3,0x77,0x42,0x4a,0x91,0x81,0x55,0xf0,0x64,0xf5,0xd,0xde,0xb3,0x92,0xb4,0x86,0x64,0x85,0xa1,0x64,0x70,0x96,0xb2,0xea,0xea,0x66,0x86,0xa6,0x9d,0x67,0xfb,0x74,0xca,0x3e,0x3c,0xec,0xb8,0x3d,0x7e,0x6c,0x7b,0xdc,0xbf,0x42,0x72,0x2b,0x36,0x65,0x4a,0x56,0x29,0x3,0x2f,0xa6,0xfd,0xaf,0x20,0x95,0xc2,0xf3,0x3f,0xb9,0x8c,0xd7,0x2f,0x5d,0x3e,0xf0,0x5e,0x5b,0x9b,0x73,0xfc,0xf3,0x5f,0xfd,0x28,0xda,0x9a,0xd5,0xa5,0x66,0xa0,0x76,0x61,0x33,0x0,0x10,0x68,0x67,0x9b,0x5c,0x9c,0x41,0x25,0x29,0xc9,0x4e,0x1b,0xf8,0xfc,0x3c,0x71,0x64,0x13,0xbf,0xfb,0xd9,0x4f,0xe0,0xe1,0x7,0xee,0x86,0x77,0x2e,0xaf,0x5f,0x64,0x20,0x29,0xd2,0x1,0xb5,0x66,0x14,0x5b,0xdc,0xeb,0xa6,0x25,0xb0,0x1e,0x91,0x95,0x97,0xa6,0xef,0x60,0x86,0x1e,0x31,0x44,0x56,0x4a,0x4a,0xb6,0xd3,0x7b,0xd4,0xcd,0x3c,0xc3,0xcf,0x18,0x2,0x66,0xf3,0x4d,0x34,0xb3,0xd,0xce,0x84,0x24,0xd5,0x64,0x8,0x1,0xde,0x93,0x6a,0x30,0x95,0xcb,0xa4,0x87,0x3,0xc5,0x2,0x5c,0xa6,0x4c,0x99,0x32,0x65,0xca,0xbc,0x73,0x53,0x32,0x0,0xcb,0x94,0x29,0x53,0xa6,0x4c,0x99,0x32,0x6f,0x6b,0x3c,0xab,0x75,0x52,0xce,0x5f,0x32,0xd4,0xa,0x46,0x82,0x21,0x78,0x28,0xbe,0xf1,0x17,0x42,0x64,0x85,0x5a,0x52,0xfe,0x69,0x6,0x29,0x94,0x7b,0x16,0x0,0x50,0x99,0x41,0x10,0x1,0x4a,0x48,0xfc,0xe5,0x5f,0xff,0x0,0xa7,0x8e,0x6f,0xe3,0xd1,0x47,0x3e,0x8,0xb5,0x6,0x92,0x55,0x5a,0xe3,0x83,0xef,0x7f,0x1f,0xee,0xbb,0xfb,0x4e,0x7c,0xef,0xa9,0x1f,0xe2,0x6b,0xdf,0x7e,0x12,0x2f,0xbf,0x7e,0x15,0x50,0x8a,0xd4,0x44,0x21,0xa0,0x6a,0xc8,0xe,0xa9,0x44,0x45,0xad,0xb4,0xd1,0x41,0x4a,0xca,0x21,0x94,0x52,0x43,0x4b,0xe0,0xde,0x73,0x37,0xe2,0x83,0xef,0xbb,0x7,0xf7,0xdc,0x79,0x1b,0x8e,0x1c,0xd9,0x5a,0xfd,0x10,0x6,0x95,0x0,0x1,0xe,0x30,0x60,0x54,0x95,0x3e,0x44,0x1d,0x5,0xb6,0xad,0x4a,0xf4,0xdd,0x2,0x4a,0x57,0xe8,0xbb,0x5,0x62,0x8c,0xe8,0x97,0x7b,0x59,0xd1,0x97,0x0,0xe5,0x6c,0x63,0x73,0x9f,0xc2,0x69,0x84,0x43,0x4d,0x3b,0x47,0xf0,0x1e,0x7b,0x3b,0x57,0xa1,0xab,0x1a,0x5b,0xf3,0x16,0x4a,0xab,0x83,0xdb,0xa1,0x26,0x9b,0x73,0xc,0x3e,0xc3,0x23,0x3b,0xc,0x0,0x80,0x76,0xb6,0x41,0xb6,0xca,0x43,0x96,0xb5,0x6e,0x67,0x94,0x8d,0x58,0x37,0x80,0x19,0x20,0x44,0x93,0xb3,0xfc,0xe,0xcb,0x27,0xa4,0x8d,0x1,0x8,0x29,0x10,0x2c,0x59,0x88,0xe7,0x9b,0xdb,0x64,0x99,0x1d,0x6,0x34,0xed,0x8c,0xb3,0x0,0x13,0xc,0x96,0xac,0xec,0x22,0xcb,0xb7,0xf7,0x16,0x37,0xac,0x1,0x99,0x40,0x84,0xae,0x5b,0x88,0x6e,0xc1,0xd6,0x67,0x9b,0x21,0x58,0x2,0xc6,0x62,0x7d,0x60,0x22,0x65,0x39,0xea,0xa,0xce,0x1,0x51,0x85,0xfc,0x7e,0x88,0x11,0xa6,0xef,0xf0,0xb5,0xef,0x3c,0x89,0x8f,0xfd,0xe2,0x3,0x38,0x7e,0xec,0xe8,0xca,0x4b,0x95,0x52,0xf8,0x95,0x8f,0x3d,0x84,0x8d,0x59,0x8d,0x3f,0xfd,0xda,0x13,0xb8,0xbe,0xb7,0x43,0x9b,0x30,0xd0,0x6b,0xb5,0xd6,0xf9,0x18,0x48,0x99,0x8c,0x31,0x4,0x1c,0xdd,0xde,0xc4,0xbd,0x77,0xdc,0x8c,0xc7,0x9f,0x79,0x9,0x36,0x59,0x88,0x59,0x21,0x1a,0x62,0xc0,0xf5,0x45,0xcf,0xed,0xd7,0xab,0xfb,0xeb,0xde,0x3b,0x6f,0xc1,0x97,0xbf,0xfd,0x34,0xcc,0xa4,0x9c,0xa6,0x1f,0x48,0x25,0xe9,0xac,0x41,0x33,0x9b,0xe3,0xc4,0xf6,0x6,0x66,0xb3,0x39,0x5e,0x7d,0xed,0x12,0x66,0x9b,0xdb,0x70,0x21,0xe2,0xaf,0xbe,0xfb,0x34,0x3e,0xfb,0x8f,0x1e,0x3d,0xb0,0xfe,0x77,0x9c,0xbb,0x11,0xbf,0xf7,0x1b,0x8f,0xe2,0xf,0x3e,0xf7,0x65,0xbc,0x79,0xdd,0x70,0x21,0x8a,0xc3,0x60,0x6,0xcc,0xe6,0x9b,0xa8,0x9a,0x86,0xce,0xb7,0x48,0xe5,0x36,0x31,0x6,0x9c,0xbe,0xe1,0x38,0x1e,0x79,0xff,0xdd,0x78,0xe4,0xa1,0xf7,0xe3,0xc8,0xf6,0x26,0x5e,0xb9,0x78,0x89,0x40,0xbe,0x90,0x70,0xde,0xb2,0x45,0xb8,0x3a,0x14,0x4c,0x23,0x46,0xb6,0x30,0x93,0x15,0xda,0x3b,0xb,0x63,0x86,0x5c,0xee,0x11,0x82,0x87,0x16,0x15,0xfd,0x6f,0x55,0x33,0x98,0x27,0x5b,0x7c,0x55,0xd7,0x18,0xfa,0x25,0x9a,0xa6,0x45,0xcd,0xb9,0x96,0xde,0xb9,0x6c,0xd7,0xa7,0xb7,0xf,0x7c,0xfe,0xfa,0xfc,0x77,0x82,0xef,0x18,0x15,0xc5,0x65,0xca,0x94,0x29,0x53,0xa6,0x4c,0x99,0x9f,0x7a,0xa,0x0,0x2c,0x53,0xa6,0xcc,0xcf,0x7c,0xda,0xcd,0x63,0xb8,0xf9,0xce,0xfb,0x70,0xea,0xa6,0x5b,0x51,0x37,0x2d,0xfd,0x47,0x7e,0x4,0xdd,0x58,0xa5,0x8c,0x25,0x8c,0x79,0x49,0xe9,0xe6,0x2f,0x86,0xa4,0x94,0x89,0x59,0x4d,0x20,0x72,0xde,0x15,0xdd,0x91,0xc6,0x18,0xf8,0x46,0x46,0xf0,0xfd,0x6e,0xcc,0xca,0x84,0x38,0x6d,0x10,0x4c,0x37,0xc3,0x7c,0x33,0x27,0xa4,0xe0,0x9b,0xa4,0xc0,0xea,0x21,0xb2,0xdf,0x9,0x39,0xbe,0x77,0xb2,0x30,0xa,0x29,0xb3,0xcd,0x31,0xa9,0x5b,0xc0,0xea,0xa0,0x64,0xad,0x4a,0xef,0x9f,0xfe,0x1c,0x62,0xc8,0x59,0x56,0x10,0xd3,0xf7,0x12,0x39,0x27,0x2d,0xdd,0x38,0xa,0x21,0x9,0x9f,0xf0,0x7b,0x86,0x49,0x6,0x97,0xd8,0x67,0x75,0xa3,0x55,0x17,0x2b,0xea,0x24,0xb0,0xfa,0x29,0xab,0xb0,0x18,0xb6,0xa4,0x2,0x6,0x81,0x31,0xe8,0x1e,0x7c,0x53,0x35,0xb6,0x9c,0x32,0xba,0x11,0x72,0xbc,0x71,0xe7,0xf7,0xa1,0x40,0xfc,0x98,0x55,0x45,0xd3,0x75,0xa7,0xfb,0xec,0xc0,0xad,0xae,0xa4,0xf4,0xca,0xaa,0x2f,0x56,0xb7,0xa4,0xd7,0x25,0x42,0x91,0x3e,0x23,0x6d,0x8f,0xf1,0xde,0x32,0x66,0xf5,0x4f,0xfa,0xc,0x7a,0xbd,0x1a,0x55,0x4c,0xfc,0xfb,0xe9,0xe7,0xe9,0xb3,0x72,0x19,0x1,0x37,0xd2,0xd2,0x7e,0x25,0x24,0x95,0x6e,0x24,0x79,0x23,0xf0,0xb6,0xe4,0x80,0xff,0xe5,0x2,0x7d,0xb7,0x87,0xab,0x97,0x5e,0xc3,0xd5,0x37,0xdf,0x40,0xb7,0xfb,0xe6,0x5a,0x28,0x53,0x66,0x1f,0x3,0xe2,0x7d,0x14,0x26,0xe7,0x59,0x3a,0x66,0xa8,0xe0,0x83,0xe1,0x1b,0x97,0x68,0x84,0x98,0x54,0x80,0x1e,0x4a,0x55,0xf0,0xc1,0x23,0x3a,0xca,0x12,0xc,0xde,0xb3,0x3a,0x2f,0x0,0xa0,0x73,0xdb,0xc6,0x88,0x3f,0xf9,0x8b,0xc7,0xe0,0xbc,0xc7,0xc7,0x3f,0xfa,0xe1,0x3,0x8a,0xb1,0x34,0x1b,0x1b,0x1b,0x78,0xf8,0x17,0x1e,0xc4,0x43,0xf,0xde,0x8f,0x2b,0x57,0xaf,0xe3,0x85,0x97,0x2f,0xe0,0xc2,0x6b,0x97,0xf0,0xda,0xe5,0x5d,0xec,0x75,0x6,0x5d,0xdf,0xc3,0x5a,0x8b,0xb6,0x69,0xd0,0x54,0x12,0xa7,0x6e,0x38,0x8e,0x53,0xc7,0xb7,0x71,0xfb,0x2d,0x67,0x70,0xe6,0xf4,0xd,0xd8,0xdc,0x98,0x1d,0x0,0x35,0x53,0x28,0x25,0xa4,0x82,0xed,0xa8,0x6c,0x81,0xf2,0x5,0x75,0x2e,0x7,0x59,0x37,0xa9,0xc8,0x1,0xe0,0x4c,0x38,0xe7,0xb0,0xb1,0x75,0x4,0x57,0xde,0xb8,0x80,0x8d,0xed,0x63,0xa4,0x74,0x72,0xd4,0xa4,0xba,0x2e,0x9b,0x2e,0x9f,0x7,0xfc,0x3e,0x1b,0x5b,0x47,0x29,0xcf,0x4d,0xae,0x87,0x8e,0x37,0x9f,0x3e,0x86,0x5a,0x4b,0x18,0x17,0x72,0x8e,0x62,0xd3,0xce,0xe0,0xbd,0x87,0xb5,0x3,0xee,0xba,0xe9,0xf8,0x81,0xac,0xbd,0x74,0x1,0x9,0xde,0xe5,0x82,0x11,0x29,0x80,0xc8,0x9b,0x58,0x69,0xcd,0x40,0xe7,0x90,0xe5,0xb,0x94,0xe9,0x97,0x40,0x8d,0x65,0xf8,0x17,0x82,0x83,0xb3,0xe,0x21,0x38,0x74,0x8b,0x5d,0xcc,0x36,0xb6,0x21,0xa5,0xcc,0xad,0xca,0x42,0x8,0xd4,0xed,0xc,0xd6,0x1d,0x3c,0xbf,0xea,0xba,0xc6,0x83,0xe7,0xef,0xc0,0xe7,0xbf,0xf9,0x7d,0xe8,0xaa,0x42,0xd3,0xce,0xd1,0xf7,0xb,0x52,0xae,0x41,0x40,0x6b,0x85,0xb3,0x67,0x4e,0xad,0x5d,0x8f,0x74,0xd,0xa4,0xc,0x42,0x83,0xaa,0xae,0x61,0x86,0x1e,0xd6,0x52,0x21,0xc8,0xf5,0xdd,0x3d,0xfc,0x87,0x2f,0xfe,0x15,0xfe,0xf9,0x67,0x3e,0x9d,0x6d,0xdf,0x19,0xa0,0x56,0x15,0x3e,0xf6,0xc8,0x7,0x71,0xf7,0x9d,0xe7,0xf0,0xcd,0xc7,0x9e,0xc2,0x63,0x4f,0xfc,0x10,0x17,0xde,0xbc,0x46,0x10,0x77,0xb9,0x80,0xae,0x6a,0x34,0x4d,0x83,0x63,0xdb,0x9b,0xb8,0xe3,0xe6,0xd3,0x78,0xe8,0xfd,0xef,0xc6,0xdd,0x77,0xdd,0x1,0x63,0x2d,0x7e,0xf8,0x3f,0xfc,0x5f,0x80,0xe8,0x46,0x8b,0x39,0xef,0x9f,0xab,0xbb,0x1d,0xfa,0x7e,0xc0,0xc6,0xbe,0xf2,0x8e,0x3b,0x6f,0xbb,0x5,0x1f,0xff,0xf0,0x7b,0xf0,0x85,0xaf,0x7f,0xf,0x83,0x31,0x68,0x66,0x1b,0xd0,0x55,0xd,0xef,0x3d,0x6e,0xbe,0xf1,0x6,0x3c,0xfa,0xd0,0x7b,0xf1,0xb,0x1f,0xbc,0x1f,0x7f,0xf1,0xf5,0xc7,0xf0,0xda,0x95,0x1d,0xb6,0xc7,0xce,0xf1,0xad,0xa7,0x7f,0x8c,0x87,0x1f,0x3c,0x8f,0x9b,0x6e,0x3c,0xb9,0x6f,0xd5,0x5,0xee,0xba,0xfd,0x66,0xfc,0xd7,0xbf,0xff,0x59,0x7c,0xf7,0xf1,0xef,0xe3,0x3b,0xdf,0x7b,0x6,0x2f,0x5f,0x34,0x0,0xef,0x53,0x82,0xbc,0x2d,0x8e,0xcd,0xe6,0xb8,0xe7,0xf6,0xb3,0x78,0xff,0x7b,0xee,0xc2,0xed,0xe7,0xce,0x62,0x6b,0x73,0x63,0x84,0xcd,0x52,0x65,0xf8,0x16,0x94,0x42,0x8c,0xd4,0xe6,0x6c,0xba,0xc5,0xda,0xc,0xc8,0x10,0x3,0xad,0xab,0x60,0x95,0x65,0xb7,0x84,0x14,0x82,0xad,0xe7,0x7d,0xce,0x2e,0xd4,0x75,0xc3,0xd7,0x6f,0xfa,0x1e,0xa8,0x2a,0x52,0x8,0x26,0xb0,0x9d,0x0,0x63,0xdd,0xce,0x72,0xc9,0xcb,0xca,0xf1,0x9d,0x4a,0x40,0xa6,0xd0,0x4f,0x16,0xb3,0x52,0x99,0x32,0x65,0xca,0x94,0x29,0x53,0x0,0x60,0x99,0x32,0x65,0xfe,0x93,0x98,0x9b,0xee,0x38,0x8f,0x7b,0x1f,0xf8,0x45,0x34,0xb3,0x39,0xd9,0xbc,0x42,0x4c,0xdd,0x1,0xfb,0x6e,0xe8,0xf0,0xd3,0x45,0xfd,0x1c,0x78,0x7d,0x9c,0xfc,0xc3,0xea,0xcf,0x46,0xc5,0x12,0xf6,0xbd,0x68,0xfc,0x59,0x42,0x48,0xcc,0xc8,0x8,0x36,0x22,0xae,0xbe,0x2a,0xae,0xf9,0xfc,0x7d,0x6f,0x2b,0xc4,0x2a,0x7f,0x5c,0x5d,0x16,0x71,0xc8,0xdf,0xf7,0xff,0xdb,0xf4,0x67,0xf1,0xed,0x6e,0x80,0xc9,0xb2,0x1f,0xf2,0x96,0x23,0x2f,0x5d,0x59,0xce,0xc4,0xe7,0x46,0x4e,0x37,0xbe,0xf8,0xe0,0xfa,0xac,0xdb,0x7e,0x38,0x64,0x39,0x7f,0xda,0x9d,0xbc,0x7f,0xa5,0xde,0x62,0x93,0xee,0xfb,0xbd,0xb1,0xb8,0x82,0x7e,0xad,0x6d,0xe7,0xd8,0xa,0x27,0x70,0xe4,0xf8,0x69,0x9c,0x3a,0xbb,0x83,0xcb,0xaf,0xff,0x4,0x17,0x5e,0xfc,0x3e,0x1c,0xb7,0x7c,0x96,0x39,0x7c,0xfb,0x47,0x6,0xac,0x31,0x7a,0x2e,0xfa,0xa0,0x72,0x3,0x70,0xcb,0x67,0xca,0x4e,0x13,0x42,0x65,0x58,0xcb,0xad,0x20,0x4,0x13,0xbc,0xcf,0xfb,0x47,0xb1,0xda,0x2a,0xb2,0x4d,0x18,0xd1,0xa3,0xeb,0x5,0xfe,0xe8,0xb,0xdf,0x82,0xf3,0x1,0x1f,0xff,0xc8,0x43,0xa8,0xeb,0xea,0xf0,0xff,0x88,0xd1,0x1a,0xa7,0x4e,0x9e,0xc0,0xa9,0x93,0x27,0xf2,0x7e,0xf6,0xde,0xc3,0x87,0x90,0x1,0xa5,0x94,0x12,0x4a,0xc9,0xf5,0x4a,0xb2,0x43,0xd7,0xd3,0x73,0xe1,0x49,0xc8,0xf6,0x45,0x67,0xcd,0x21,0x90,0x38,0x12,0xe0,0x13,0x32,0x83,0x10,0xc4,0x88,0xbd,0xeb,0xa4,0xe2,0x33,0xfd,0x92,0x0,0x9b,0x52,0x10,0x42,0x42,0x73,0x2e,0xde,0xc1,0x77,0x19,0x8f,0x59,0xa9,0x14,0x16,0xbb,0xd7,0x70,0x15,0xe,0xcb,0x65,0x8f,0xfa,0xc8,0xea,0x36,0x38,0x71,0xec,0x8,0x7e,0xed,0xd1,0xf,0xe0,0x8f,0xbf,0xf4,0x5d,0x8,0xb6,0x1d,0x4b,0xa5,0xa0,0x25,0xf0,0x4b,0xf7,0xdf,0x87,0x5f,0xf9,0xd8,0x43,0x98,0xcd,0xda,0x83,0xdb,0x4b,0x69,0xd4,0xcd,0xc,0xde,0xe,0x78,0xf0,0xbe,0xdb,0x71,0xf6,0xd4,0x11,0xfc,0xe1,0x9f,0x7d,0x9d,0x94,0x76,0x52,0x66,0xf5,0xd8,0xba,0x91,0xac,0xb2,0x4c,0x65,0x10,0x29,0xeb,0xb0,0x5b,0xee,0xa2,0x99,0xcd,0x60,0x86,0x9e,0xad,0xd7,0xa9,0x8c,0x22,0x92,0x1a,0x91,0x21,0xe0,0xc5,0xd7,0xdf,0x5c,0xfb,0xbe,0x8f,0x3e,0xfc,0x20,0x5e,0x7a,0xed,0x2a,0x5e,0xb8,0x70,0x5,0x21,0x78,0x34,0xcd,0x1c,0xce,0x1a,0x9c,0x3c,0x32,0xc3,0x3f,0xfe,0xc4,0xc3,0x38,0x7f,0xcf,0xed,0x6b,0xae,0x24,0x2,0x4d,0x3b,0x83,0x90,0x12,0x37,0x6c,0x6f,0xe0,0xe3,0x9f,0xfa,0x45,0xfc,0xf9,0x57,0xbe,0x85,0x17,0x5e,0xd9,0x65,0xd8,0xe4,0xa0,0xab,0x6,0xdf,0x7c,0xe2,0x79,0xbc,0xf7,0xdd,0xcf,0xe3,0x7d,0xef,0x7e,0xd7,0x1a,0x86,0x28,0x70,0xf6,0xcc,0x69,0x7c,0xf6,0x57,0x4f,0xe3,0xd3,0xbf,0xfc,0x30,0x76,0xf7,0x3a,0xec,0x5c,0xbf,0x8e,0x7e,0xe8,0xd1,0x34,0x2d,0xb6,0x36,0x37,0xb0,0xb5,0xb9,0x81,0xf9,0x7c,0x96,0x1,0xe2,0x95,0xab,0xd7,0xe1,0xac,0x81,0xf7,0x1e,0xba,0xaa,0xe0,0xac,0xe1,0x7,0x2b,0xc0,0xa5,0xab,0xbb,0xb8,0xf0,0xfa,0x9b,0x78,0xd7,0x1d,0xe7,0xf6,0x1d,0xa3,0xa,0x9f,0xfe,0xe5,0x87,0xf1,0x9e,0x7b,0xef,0xc4,0xb3,0x3f,0x7a,0x11,0x7d,0xdf,0xe3,0xc8,0xf6,0x26,0xce,0xdd,0x7c,0x13,0x4e,0x9f,0xba,0x1,0x73,0xde,0x4f,0x42,0x90,0x5d,0x5a,0x57,0xd4,0x72,0xed,0x5c,0xc0,0x1f,0x7f,0xe1,0x9b,0xf8,0x97,0xbf,0xf5,0x49,0xb4,0x6d,0x73,0x60,0xf9,0xb7,0x36,0xe6,0xf8,0x7,0x8f,0x7c,0x10,0x8f,0x7c,0xe8,0x7e,0x2c,0xbb,0xe,0x7b,0x7b,0x4b,0x18,0x6b,0xa1,0xab,0xa,0xf3,0xb6,0xc1,0xc6,0xc6,0xc,0xb3,0xb6,0x5d,0xbb,0xcd,0x43,0x8,0x68,0xda,0x39,0xcc,0xd0,0x41,0x2a,0xd,0xef,0x2c,0xb4,0xd6,0x6c,0xdf,0x5d,0xc7,0x5b,0xa9,0x94,0x25,0x72,0x79,0x88,0xae,0x1b,0x2c,0x76,0xaf,0xb1,0x85,0x97,0x40,0xa8,0xae,0x6a,0x82,0xb6,0xfc,0xbf,0x52,0x4a,0x78,0x1f,0x72,0x31,0x4d,0x6a,0xd2,0x9e,0x6f,0x6e,0xc3,0x39,0xc7,0xf,0xd5,0x4,0x95,0xca,0xa4,0xf3,0x21,0xee,0xfb,0xe2,0x4,0x72,0x54,0x40,0x99,0x32,0x65,0xca,0x94,0x29,0x53,0xa6,0x0,0xc0,0x32,0x65,0xca,0xfc,0x1c,0xcf,0xcd,0xef,0x7a,0x1f,0xce,0x3f,0xf8,0x11,0x84,0xe0,0x39,0x1f,0xc8,0x1f,0xe6,0x4a,0x3b,0x40,0x71,0x92,0xbd,0x30,0x5,0xe3,0xa7,0x3f,0xaf,0x90,0x39,0x8c,0x99,0x63,0xe9,0xe6,0x5e,0xf0,0xef,0xa7,0xbf,0x87,0xac,0x8a,0x63,0xa8,0x97,0x72,0xca,0x42,0x52,0xec,0x89,0x55,0x9a,0xc7,0xca,0xb7,0xf4,0xf6,0x49,0xb5,0x36,0x7d,0x4f,0x21,0x45,0x6e,0x2e,0xdc,0xbf,0xcc,0xd3,0x1b,0xfb,0xa4,0x80,0x4b,0x6a,0xb8,0x90,0x6f,0x64,0x56,0x41,0x58,0x56,0xc6,0xbd,0x15,0xdf,0xdc,0xaf,0x94,0x78,0x2b,0xa8,0x37,0x85,0x5e,0x13,0x95,0xcc,0x68,0xdb,0xc4,0x5a,0x0,0xb1,0xff,0x33,0xd6,0x7e,0xe6,0x21,0x30,0xef,0xad,0x7f,0xf7,0xef,0x4c,0x99,0xd8,0xfa,0x95,0xdf,0x3c,0xbf,0xb7,0x98,0x7e,0xbe,0xc0,0x7e,0x52,0x79,0x90,0x2b,0xb,0x0,0x51,0xe4,0xe6,0xd7,0xf1,0x6,0xd8,0xe7,0x30,0x7a,0x67,0xd,0x9c,0x73,0x68,0xb7,0x8e,0x63,0x79,0xed,0x12,0xc2,0x21,0xa,0xa8,0x32,0xc8,0x79,0x5c,0x42,0x0,0x91,0xad,0xb1,0x21,0x58,0x3a,0x6f,0x58,0x2d,0x2b,0x40,0x70,0x48,0xd4,0x6a,0x72,0x22,0x51,0x3b,0xac,0xaa,0xaa,0xac,0x9a,0x4d,0x10,0x9,0x42,0x40,0xb,0xcd,0xa,0xb8,0x8,0x68,0x82,0x4d,0xff,0xe1,0x6b,0x8f,0xe3,0xc2,0xeb,0x57,0xf0,0x99,0x4f,0x7f,0x94,0xb2,0xf9,0xde,0xc6,0x8,0x21,0xa0,0xb5,0xfe,0xa9,0xfe,0xe3,0xc6,0xfb,0x80,0x10,0x68,0x5d,0xbc,0xa3,0x96,0x54,0xa5,0xaa,0xdc,0x5e,0xbc,0xee,0x92,0xa5,0x94,0xc6,0x60,0xd9,0xc2,0x2a,0x15,0x65,0xfd,0x21,0x62,0xe8,0x97,0xa8,0xea,0x6,0x55,0xdd,0x42,0x2a,0x4d,0x45,0xc,0x87,0xc0,0x48,0xc9,0xb6,0x59,0x29,0x15,0x9c,0xb5,0x68,0xe7,0x9b,0xd8,0x5d,0xee,0xe1,0x85,0x1f,0xbf,0x8c,0xf,0xdc,0x7f,0xfe,0xc0,0x7a,0x3e,0xf4,0xc0,0x7d,0xb8,0xf5,0xe6,0x1b,0xf1,0xd4,0xf,0x9f,0xc7,0xb2,0x1b,0x70,0xfc,0xe8,0x16,0xee,0xbe,0xfd,0x66,0x9c,0xbc,0xe1,0xf8,0xa1,0xca,0xc9,0x9b,0xcf,0x9c,0xc4,0x6f,0x7d,0xe2,0x83,0x38,0x7d,0xf2,0x4,0xce,0xdd,0x7c,0x23,0x9e,0xfa,0xfe,0x73,0x18,0xfa,0x25,0xa8,0xb1,0x75,0xc9,0xd0,0xc6,0xad,0xdf,0xf7,0xce,0xc1,0x7b,0x97,0x5b,0x73,0x63,0x4c,0xe7,0x91,0x87,0xf1,0x4,0x87,0x44,0xd,0x6e,0x7d,0xd5,0x59,0xe5,0xa9,0xab,0x1a,0x5a,0xd7,0x78,0xea,0xb9,0x57,0xf0,0x2b,0xff,0x60,0x38,0x0,0xb3,0xb6,0x36,0x37,0xf0,0xfb,0xff,0xec,0x1f,0xe1,0x87,0xcf,0xfd,0x18,0x2f,0x5f,0xb8,0x4,0x21,0x22,0x6e,0x3d,0x7b,0xa,0x77,0xdd,0x7e,0xe,0xb3,0x35,0xe0,0x2b,0x1d,0x7f,0x9f,0xfc,0xa5,0x7,0x70,0xfe,0xae,0xb3,0xb8,0xef,0xee,0x3b,0xb0,0x31,0x6b,0xf1,0xe5,0xaf,0x3f,0x86,0xd9,0x7c,0x13,0xdd,0x62,0x97,0xc0,0x33,0x80,0x5e,0x4a,0xfc,0x1f,0x7f,0xfc,0x25,0xfc,0x17,0xb3,0x16,0x77,0xde,0x7e,0xcb,0xa1,0xfb,0x7c,0x3e,0x9b,0x61,0x3e,0x9b,0xe1,0xf4,0xc9,0xe3,0x6f,0x7d,0x65,0xe2,0x63,0xbc,0x66,0xfb,0xaf,0x8f,0x8e,0xb2,0xfc,0x6a,0x2,0xa7,0xff,0xf1,0x6b,0xdf,0xc5,0x1d,0xb7,0x9e,0x3d,0xa0,0x2e,0x55,0x52,0xe2,0xb6,0x5b,0xce,0xe0,0xb6,0x5b,0xce,0x1c,0x7e,0x6e,0xb1,0xf2,0xcf,0x7b,0x9b,0x95,0xdf,0xcf,0xfe,0xf8,0x2,0xfe,0xe4,0x8b,0xdf,0xc0,0x6f,0xfe,0xca,0x47,0xa0,0xf5,0x7a,0xc5,0x6a,0x5d,0x57,0xa8,0xeb,0xa,0x47,0x8f,0x6c,0xbf,0xed,0x63,0x5c,0x4a,0x99,0xb3,0x2e,0xa5,0x54,0xb0,0x81,0xb2,0x4,0x63,0xd4,0xeb,0x1f,0xb0,0xa4,0xf6,0x68,0xde,0xff,0x3,0x5b,0xdd,0x95,0xf7,0x20,0xc5,0xac,0xcc,0x2a,0xd4,0x9c,0xfb,0x19,0x23,0xc1,0xd8,0x54,0xee,0xa1,0x14,0xcc,0xd0,0x3,0x11,0x4,0xc1,0xb5,0x86,0x92,0xa,0x3e,0xf8,0x9c,0xaf,0x48,0xdb,0x38,0xe4,0x7,0x36,0xa4,0x30,0x56,0xe5,0xc2,0x5b,0xa6,0x4c,0x99,0x32,0x65,0xca,0x14,0x0,0x58,0xa6,0x4c,0x99,0x9f,0xf7,0x39,0x79,0xe6,0x1c,0xbc,0xb3,0x9c,0x11,0x14,0xc6,0xff,0xb0,0xe7,0xc6,0xd0,0x98,0xe4,0x67,0x99,0x28,0x44,0x4c,0x29,0x4f,0xb2,0xca,0x26,0xbd,0x5e,0x9c,0xfc,0xbb,0x20,0x3a,0xb7,0x2,0xb7,0xc0,0x10,0x4d,0xe9,0xa,0x21,0xc4,0x7c,0x33,0x91,0x80,0x43,0xba,0x11,0x49,0x39,0x57,0x52,0x2a,0x78,0xeb,0x32,0x18,0x9c,0xda,0x56,0xf3,0xd,0x7a,0xa4,0x96,0xc7,0x64,0x3f,0x4e,0x98,0x29,0x7d,0x3e,0xdd,0x1b,0x85,0x6c,0xfd,0x9d,0x2e,0x8f,0xe7,0x65,0x95,0x52,0xc1,0x1a,0x7b,0x40,0x20,0x37,0x82,0x41,0x9b,0x79,0x9a,0x98,0x42,0x47,0x8c,0x16,0xe0,0x55,0xc0,0x76,0x50,0xdd,0xb8,0xaa,0xd6,0x9b,0x0,0xb9,0x15,0x39,0x1f,0xb2,0xf5,0x78,0x5,0xb4,0x8a,0x9,0x10,0x4d,0x36,0x5f,0x88,0x95,0x9c,0xb7,0xe9,0x87,0x4c,0x3f,0x7d,0x3f,0x30,0x4,0x56,0xc5,0x77,0xe3,0x22,0xac,0x93,0x7c,0xf2,0xb6,0x9c,0x40,0xc9,0xbf,0x15,0x24,0x66,0x30,0x9b,0xf6,0xf9,0x78,0x84,0x4c,0x41,0xf0,0xca,0xd,0xfb,0x1a,0x30,0x98,0xc0,0x85,0x77,0x94,0x5f,0xb5,0xb7,0x73,0xd,0x43,0x3f,0x0,0x42,0x1,0x28,0x0,0xf0,0x50,0x70,0xc0,0x19,0x6f,0x69,0xdb,0x27,0xeb,0x75,0x2,0x47,0x82,0x15,0x42,0x92,0x5b,0x40,0xc9,0x8a,0x8f,0xac,0xa6,0x4b,0x30,0x3f,0xd9,0x1,0x93,0xb2,0x2a,0x78,0x7,0x21,0xa9,0x98,0x3,0x88,0x70,0xc6,0x20,0x6a,0x8d,0xbf,0x79,0xe6,0x25,0xbc,0xf0,0xd2,0x1f,0xe0,0x53,0x8f,0x3e,0x84,0xf,0x3e,0x70,0x1e,0xf3,0xf9,0xec,0x67,0xb6,0x6e,0x83,0x31,0x78,0xee,0xf9,0x97,0xf1,0x67,0x5f,0xf9,0x36,0xba,0x7e,0x60,0x98,0x49,0xc7,0x6a,0xc,0x1e,0x1,0x31,0x37,0x96,0xee,0xa7,0x51,0x11,0x91,0x60,0x66,0x24,0x35,0xa0,0xd6,0x15,0xbc,0x25,0xeb,0xa3,0x77,0xe,0x66,0xe8,0x50,0xb1,0x3d,0xda,0x1d,0x52,0xb2,0x31,0x16,0x70,0xd0,0xf5,0xc4,0xc,0x3,0x94,0xd2,0xf8,0xdc,0xe7,0xbf,0x86,0xfb,0xee,0xb9,0xf3,0x80,0x9a,0x4b,0x4a,0x81,0x33,0xa7,0x8e,0xe3,0xcc,0xa9,0x83,0xd0,0xca,0x39,0xc7,0x2d,0xc6,0xab,0xe7,0x83,0xd6,0xa,0x1f,0x7e,0xf0,0xbd,0x2b,0xd7,0xd,0x5d,0xd5,0xe8,0x97,0xb,0x54,0x75,0xd,0x44,0xda,0xc7,0xeb,0xc1,0x28,0x35,0xed,0xc6,0x48,0x85,0x11,0xf4,0x33,0x7,0x5d,0xd5,0x40,0x8c,0xe8,0x96,0x7b,0xa8,0x62,0x44,0xd3,0xcc,0x72,0x39,0x8b,0xaa,0x6a,0x7a,0x0,0x64,0x7a,0xbc,0xf2,0x86,0xc5,0xe3,0x4f,0x3f,0xbb,0xf2,0xf9,0x69,0x9a,0xba,0xc2,0xfd,0xe7,0xdf,0x85,0xfb,0xcf,0x1f,0x54,0xea,0x19,0x63,0xd7,0xaa,0x40,0x6f,0x39,0x7b,0x23,0x6e,0x39,0x7b,0x23,0x2f,0x87,0x87,0x0,0x60,0x6,0x2a,0xc3,0x88,0x9,0x58,0x6a,0x87,0xbd,0x65,0x87,0xff,0xf9,0xf,0xbf,0x80,0xdf,0xf9,0xd5,0x8f,0xe0,0xfc,0xbd,0x77,0x1d,0xa,0x47,0xdf,0xee,0x8,0x8,0x38,0x67,0xf8,0xd8,0xa5,0xd6,0x5a,0x3b,0xf4,0xd0,0xba,0xc6,0xf7,0x5f,0xbc,0x88,0xbf,0x7e,0xe2,0x87,0xf8,0xd0,0xfb,0xcf,0xff,0xbd,0xde,0xbb,0x5f,0xee,0x41,0xa9,0x8a,0x94,0xa7,0x15,0x65,0xf2,0x7d,0xe3,0xc9,0x17,0x11,0x43,0xc4,0xaf,0x7e,0xfc,0x17,0xb3,0x5a,0xf0,0xa7,0x99,0x4b,0x6f,0x5e,0xc1,0x8f,0x5e,0x78,0x9,0xdd,0x62,0x37,0x67,0xfb,0xe9,0xaa,0x82,0xe3,0xc6,0xee,0x75,0x99,0x7b,0xf9,0x94,0xc,0xa7,0x21,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0xfb,0x2d,0x84,0x6c,0x1f,0xef,0xbb,0x5,0xcc,0xd0,0x51,0xe,0xa3,0xb5,0xd8,0xd8,0x3a,0x92,0x23,0x20,0x92,0xbd,0xd8,0xc,0x3d,0xea,0xb6,0xa5,0x92,0xf,0x2e,0x1d,0x49,0xa0,0x3f,0x95,0x7d,0x28,0x31,0x1e,0xff,0x39,0xee,0xc3,0x5b,0x16,0xd,0xc7,0xbf,0xf5,0xe1,0x58,0x99,0x32,0x65,0xca,0x94,0x29,0x53,0xa6,0x0,0xc0,0x32,0x65,0xca,0xfc,0x1c,0x4c,0xdd,0xb4,0x39,0xc8,0x3b,0x5b,0x7,0x23,0x26,0xff,0x41,0x3f,0xb1,0x96,0x82,0xb3,0xa8,0xe2,0x8,0x5,0x63,0xba,0x43,0xcd,0xd6,0x38,0x31,0xc2,0x24,0x81,0xc,0xe5,0x98,0xc2,0xe5,0x2c,0xb2,0x10,0x42,0xce,0xe1,0xd3,0x9a,0xda,0x12,0x11,0x29,0xa4,0x3f,0xfd,0x1c,0x51,0xc0,0x7,0x47,0x37,0x20,0xc,0x7,0xd3,0x32,0xe6,0x9b,0x8e,0x9c,0x91,0x37,0xde,0x14,0x65,0xd1,0x99,0x1a,0xdb,0x32,0x23,0x22,0x22,0xb7,0x5f,0x26,0xe8,0x94,0xf2,0x7,0x63,0x8,0xf0,0xc1,0xf2,0x9f,0x63,0x86,0xa,0x1,0x1,0x29,0x87,0x8f,0xf2,0x7,0xe9,0xa6,0x3f,0x86,0x74,0xc3,0x33,0x81,0x6f,0x19,0xa0,0x8d,0x8a,0xc8,0x11,0xcc,0xad,0x1,0x75,0x40,0x86,0x9d,0xbc,0x11,0xf3,0x6b,0x4,0xd6,0x6c,0xff,0x38,0x2,0xba,0x18,0xd3,0x36,0xe,0x18,0x73,0xf4,0x12,0xf4,0x9c,0xfc,0x59,0xc8,0x6c,0x5,0x9d,0xc2,0xb6,0xe9,0x6d,0x72,0x5a,0xae,0xbc,0x2c,0x53,0x28,0x27,0xa6,0x0,0x34,0xec,0xfb,0x37,0x71,0xe0,0xef,0x59,0x1,0x28,0xc6,0xec,0xc6,0x55,0x2e,0x18,0xd7,0x2c,0xc3,0x2a,0x2e,0x9d,0xbc,0xe9,0xea,0xf,0x63,0xc4,0xd0,0x2f,0x10,0x9c,0x83,0xac,0x37,0x10,0x5c,0xb1,0x1,0x1f,0xa,0x3f,0xf8,0x3c,0xdc,0xff,0x33,0xcf,0xca,0x35,0x52,0xf5,0x39,0xc8,0x8a,0xce,0x3b,0xa9,0xc8,0xe2,0x3b,0x36,0xcb,0x92,0x45,0x37,0xc6,0x8,0x9,0x95,0xc1,0x1f,0x14,0x20,0x82,0x47,0x8,0xe,0x51,0x53,0x89,0x80,0x35,0x3,0x84,0x10,0xb8,0x6c,0x15,0xfe,0xb7,0xff,0xe7,0xcf,0xf0,0x85,0xaf,0x7c,0x13,0xff,0xd9,0xc7,0x1f,0xc1,0xf9,0xfb,0xee,0x5e,0xc9,0x33,0xfb,0x69,0xc6,0x7b,0x8f,0xeb,0x3b,0x7b,0xf8,0xde,0xd3,0xcf,0xe0,0x9b,0xdf,0x7b,0xe,0xaf,0xbe,0x71,0x95,0x6d,0xbe,0x74,0x1e,0x4a,0x21,0xb9,0x88,0x42,0x42,0x84,0x70,0xa8,0x81,0xdd,0xf4,0x1d,0xa9,0xce,0x84,0x84,0x90,0x16,0xc3,0x72,0xf,0x21,0x78,0x2c,0xf7,0x76,0xa0,0xab,0x9a,0x14,0x62,0x0,0x15,0x6d,0x4,0xbf,0xb6,0xa0,0x23,0x4,0x37,0xa,0x9c,0x83,0x47,0x55,0x37,0x30,0x7d,0x87,0x17,0x2f,0x5c,0xc2,0x1f,0x7d,0xee,0xf3,0xf8,0xa7,0xbf,0xf9,0x69,0x54,0x55,0xf5,0xb7,0xae,0xd3,0xe5,0xab,0xd7,0xf1,0xa7,0x5f,0xfc,0x6,0x1e,0xfe,0xe0,0x7b,0x70,0xd7,0x6d,0x37,0x1f,0xfa,0x7b,0xce,0x39,0xbc,0xf4,0xea,0x45,0x6e,0x37,0xe,0xe8,0x97,0x3,0x5f,0x23,0xd7,0x3,0x97,0xa4,0xaa,0xf3,0x8e,0x9a,0x60,0x17,0xbb,0x3b,0x10,0xac,0x1c,0xf4,0x9e,0xb6,0x91,0x14,0x72,0x5,0xfe,0x7a,0x6e,0x16,0x96,0x52,0x21,0x86,0x88,0x7f,0xfb,0xff,0x7d,0x5,0x37,0x1c,0x3b,0x82,0xbb,0xf6,0xd9,0x64,0xd7,0x2f,0x9f,0xc7,0xf,0x9e,0xfb,0x31,0xfe,0xfa,0xa9,0xe7,0xf0,0x3b,0x9f,0xf9,0x4,0xb4,0x3a,0x5c,0x9,0x76,0xe9,0xf2,0x15,0xec,0x2e,0x96,0x8,0xde,0x11,0x88,0x5,0x50,0x35,0x6d,0x7e,0xf0,0xb4,0xbb,0xb7,0xc4,0xff,0xf2,0x87,0x9f,0xc7,0xc7,0x1e,0xba,0x80,0x7f,0xf8,0xc8,0x83,0x38,0xb2,0xbd,0xf9,0xf7,0x3a,0x5e,0x42,0x88,0xb9,0xad,0x36,0xad,0x97,0xe7,0x63,0xd8,0x7b,0x7,0xa9,0x14,0xfe,0xed,0x9f,0x7e,0xd,0x95,0x56,0xb8,0xff,0x3d,0xf7,0xbc,0x6d,0xdb,0xb9,0xf7,0x1e,0xbd,0xb1,0xf0,0xde,0xa3,0xaa,0x5b,0xc4,0x28,0xc8,0x6,0x6c,0xc,0x94,0xd6,0xf8,0xab,0xc7,0x9f,0xc5,0xe5,0xab,0xd7,0xf1,0xeb,0x9f,0x78,0x18,0x37,0xdd,0x78,0xf2,0xef,0x66,0x67,0xe7,0x4b,0xde,0xde,0xde,0x1e,0xbe,0xf1,0x9d,0xbf,0xc1,0xff,0xfb,0xe7,0x5f,0xc5,0xc2,0xc4,0x6c,0x67,0xb7,0xc6,0x50,0x46,0xac,0x94,0x39,0x97,0xf7,0xc0,0xeb,0x43,0xc8,0xca,0xd0,0x54,0xfc,0xa1,0xd4,0xd8,0x90,0x5c,0x4d,0x72,0xfa,0x48,0x39,0xeb,0x72,0xd3,0x36,0xe5,0x86,0x2,0x11,0x94,0x8b,0x9b,0xd4,0x80,0x49,0x39,0x18,0x5d,0xe0,0x4b,0xca,0xe4,0xa1,0xdd,0xe4,0xda,0x52,0x2a,0x40,0xca,0x94,0x29,0x53,0xa6,0x4c,0x99,0x2,0x0,0xcb,0x94,0x29,0xf3,0x9f,0xc0,0xc4,0xa9,0x14,0x8c,0xc1,0xd,0x41,0xae,0x90,0x41,0x42,0xe4,0x96,0x48,0x82,0x40,0x22,0x5b,0x70,0x57,0x0,0x10,0xbf,0x26,0xbf,0x7,0xc3,0x25,0xc9,0x21,0xe2,0x60,0x55,0x61,0x4,0xff,0x8c,0x3f,0x4f,0x44,0xc1,0xc1,0xfd,0xa9,0x5d,0x90,0x20,0x16,0xa9,0x91,0xe2,0xa4,0x48,0x83,0x6f,0x34,0xb8,0x7c,0x24,0xab,0x4,0xa5,0xe2,0xf7,0x16,0xd9,0xa6,0xb4,0x6a,0xe7,0x4d,0x6a,0x46,0x0,0xe9,0x63,0x31,0x2a,0xd3,0x48,0xfd,0x27,0x57,0x95,0x8e,0xfb,0xb6,0x49,0x44,0x84,0x88,0x62,0x9f,0x8d,0x75,0x5c,0x8f,0x4,0xfe,0xa6,0xd,0x89,0x7,0x1,0xc,0x56,0x60,0xdc,0x98,0xd1,0x16,0x21,0xa5,0xd8,0x97,0xd7,0x27,0x56,0x80,0xe3,0x34,0xd3,0x6d,0x2c,0xe0,0xc0,0xc4,0xa,0x1d,0xc6,0xf,0x99,0xe0,0xb4,0xd4,0xf2,0xba,0xe,0xe,0x25,0xf5,0xe2,0x14,0x44,0xee,0x57,0x57,0xc6,0x49,0xa9,0xc7,0x8a,0x3d,0x39,0xae,0xc2,0xc4,0xfd,0xa,0xc8,0xc3,0x2c,0xca,0x6f,0xa5,0x1c,0x1c,0x95,0xa4,0x38,0xa0,0x32,0x4d,0xe8,0x50,0xe9,0x86,0x54,0x67,0x6e,0x28,0x27,0xee,0x5b,0x2,0x40,0xb9,0x4f,0x25,0x1a,0x0,0xc8,0xc,0x84,0xc7,0xd2,0x1c,0x3a,0x56,0xbd,0x23,0x75,0x91,0x35,0x3,0x17,0x0,0x5,0x48,0x3e,0xd6,0xd3,0xef,0x28,0x2e,0xd9,0x91,0x4a,0x41,0x49,0xc5,0xb9,0x62,0x74,0xad,0xa8,0xaa,0x86,0xd5,0x5d,0x2,0x2f,0xbd,0x76,0x19,0xff,0xdd,0xff,0xfa,0xef,0x70,0x7c,0xab,0xc5,0x87,0xee,0xbf,0xf,0x1f,0xfe,0xe0,0x3,0x38,0x7d,0xea,0x24,0xb6,0xb6,0xb6,0x50,0x55,0x6f,0xef,0x3f,0x67,0x7c,0x8,0x18,0x7a,0x83,0xeb,0xbb,0x7b,0xf8,0xd1,0x8b,0xaf,0xe2,0x6f,0x9e,0x7e,0x16,0x2f,0x5e,0xb8,0x82,0xae,0xef,0x20,0xa4,0xca,0x6a,0x51,0xef,0x3,0x9d,0x3b,0x72,0xcc,0xbe,0xf4,0xde,0xc1,0x39,0x7,0xc3,0x25,0x1e,0xe9,0x1a,0x64,0xcc,0x0,0xad,0x2b,0xc,0xd6,0xc2,0x3b,0x9b,0xe1,0x97,0x35,0x3,0x74,0x55,0xc3,0x31,0xc8,0xec,0xbb,0x5,0x66,0x1b,0x5b,0xf4,0x1a,0x6b,0xf3,0xfb,0xa4,0x43,0xd3,0x39,0x8a,0x4a,0x68,0xda,0x19,0x9c,0x25,0x18,0x94,0x72,0xd7,0xfe,0xe4,0x4b,0xdf,0xc0,0xde,0xde,0x2e,0x3e,0xf3,0xeb,0x9f,0xc2,0xd,0x37,0x9c,0x38,0x0,0x45,0x42,0x8c,0xb8,0x7e,0x7d,0x17,0x8f,0x3d,0xf9,0xc,0xbe,0xf5,0xc4,0xb,0x78,0xe3,0xea,0x75,0x5c,0xba,0xba,0x8b,0xdf,0xfb,0x27,0x9f,0x3c,0x60,0x9f,0xf6,0x21,0xe0,0x95,0x57,0x2f,0xe2,0x8f,0xff,0xfd,0x97,0xf1,0xf8,0x33,0x2f,0x72,0xc9,0x89,0x82,0x6,0x29,0xb6,0xcc,0x30,0xc0,0x18,0xb3,0x6a,0x5,0xe5,0x56,0xdc,0xe0,0x1d,0x3d,0x64,0x71,0xe,0x75,0xd3,0xa0,0xef,0x68,0x5d,0x9d,0xb5,0xa8,0xdb,0x19,0xe7,0xbc,0x6,0x44,0xde,0x8f,0x4a,0x69,0x28,0xad,0x19,0x10,0x4b,0x18,0x1f,0xf1,0x3f,0xfe,0xc1,0x9f,0xe0,0x77,0xfe,0xf1,0xc7,0x71,0xfe,0x9e,0xdb,0xd1,0x34,0xf5,0x1,0x50,0x35,0x98,0x1,0x3f,0xb9,0xf0,0x3a,0xbe,0xf4,0xf5,0xc7,0xf1,0xe4,0xf3,0x17,0x20,0x4,0x70,0xe7,0x77,0x9f,0xc0,0x2f,0x7c,0xe0,0xbd,0x7,0xf6,0xf3,0xde,0x62,0x89,0x6f,0x3d,0xf6,0x4,0x3e,0xf7,0xf9,0xbf,0xc4,0x1b,0x97,0xaf,0xc0,0x59,0x4b,0x2a,0xb3,0x10,0x60,0x87,0x1e,0x4a,0x6b,0x38,0x4b,0xc0,0xce,0xb9,0x88,0xff,0xf8,0xcd,0x27,0xf1,0xed,0x27,0x9e,0xc5,0x23,0xef,0xbf,0x7,0xf,0xbe,0xef,0x5e,0x1c,0x3f,0x7e,0x74,0x7d,0x59,0xca,0xe4,0xfb,0xc7,0x5a,0x8b,0x2b,0xd7,0x76,0xf0,0xe3,0x97,0x7f,0x82,0xaf,0x7e,0xfb,0x49,0xf8,0x10,0xe1,0xec,0x0,0xef,0x4,0x74,0xd5,0x50,0xfe,0x22,0xc7,0x16,0x28,0x5d,0xa1,0xb7,0xe,0xff,0xfb,0x1f,0x7d,0x9,0x8f,0xbc,0xf0,0x32,0x1e,0x7d,0xf8,0x41,0xdc,0x70,0xfc,0xe8,0xda,0xc2,0x99,0x10,0x2,0x96,0xcb,0x25,0x7e,0xf4,0xc2,0x4b,0xf8,0xea,0xb7,0x9e,0xc0,0x53,0xcf,0xbf,0xa,0xa5,0x74,0x86,0xe9,0xb9,0x54,0x89,0xb7,0xfd,0x33,0x2f,0x5f,0xc2,0x7f,0xff,0x6f,0xfe,0x14,0x1f,0x7e,0xef,0x1d,0x78,0xf0,0xfe,0x7b,0x71,0xe6,0xd4,0xd,0x87,0xda,0x82,0xd3,0x74,0xfd,0x80,0x37,0xde,0xb8,0x84,0xc7,0x1e,0x7f,0x1a,0x5f,0xfd,0xce,0x93,0x78,0xe3,0xf2,0x55,0x82,0xb9,0x4a,0x93,0xe5,0x5b,0x29,0x6,0xa6,0x2,0xd6,0x3b,0x88,0x63,0x5b,0x30,0xc6,0xd2,0xf2,0x8a,0x31,0x1e,0x63,0x5a,0x5c,0x23,0x39,0x73,0x32,0x78,0xcf,0xca,0x3e,0xb,0x3d,0xdb,0x40,0xf0,0x1e,0xb2,0x55,0xb0,0xd6,0xa0,0x6d,0xe7,0xb4,0xfc,0xac,0x88,0x9d,0x5e,0xa7,0x53,0xfb,0x77,0x7a,0x40,0xa6,0x74,0x85,0x5c,0x4a,0x5,0xca,0x1b,0xc,0xde,0xe7,0xef,0xd9,0x77,0x2e,0x5a,0xa2,0x4c,0x99,0x32,0x65,0xca,0x94,0x29,0xf3,0xe,0x24,0xb2,0x97,0x29,0x53,0xa6,0xcc,0xfa,0xf9,0xd0,0x2f,0x7f,0x6,0xdb,0xc7,0x6e,0x80,0x77,0x8e,0x2c,0x74,0xa9,0xc,0x0,0x13,0x20,0xb5,0xf,0xe0,0xed,0xcf,0xe3,0x23,0x68,0xc8,0x10,0x28,0xc1,0x20,0xbe,0x31,0x50,0xac,0x48,0x49,0x1,0xf8,0xb9,0x39,0x38,0x67,0xf5,0xc9,0x15,0xab,0x62,0xba,0x9,0x8b,0x7c,0xa7,0x49,0xf6,0x57,0x91,0xed,0xc8,0x19,0x4,0x4e,0x80,0x54,0xf0,0x9e,0x97,0x2b,0xf2,0x8d,0xa,0x95,0x18,0xa4,0xdf,0x4b,0x16,0x38,0x67,0x2d,0xdd,0xb0,0xc4,0xb1,0x7c,0x20,0x35,0xce,0xa,0xce,0x4a,0x4b,0x6a,0xc6,0x30,0x29,0x28,0x18,0x6f,0xe0,0xc7,0xac,0xc2,0xc,0x7,0x53,0xb3,0xed,0xa4,0x4d,0x75,0x55,0x9d,0x21,0x72,0x73,0xef,0xb4,0xb8,0x64,0x54,0xdf,0x61,0xb4,0x5c,0xaf,0xb9,0xd4,0x67,0xb0,0xa,0x1c,0x72,0x93,0x35,0xc2,0xc2,0xe9,0xd7,0xc5,0xf8,0x7e,0x22,0x37,0xf,0x8f,0xaf,0x1f,0x7f,0x36,0x5,0x7c,0xf9,0xe7,0x58,0xad,0x33,0xc9,0xdb,0x3a,0xad,0xf3,0xbe,0xe5,0x10,0xd3,0xdc,0xc7,0x29,0x18,0x9c,0x6c,0x8b,0xb7,0xca,0x35,0x3c,0x40,0x17,0x78,0x13,0xc7,0xe0,0xa9,0x2c,0xc2,0x3b,0xf4,0xcb,0x5,0x5e,0xfc,0xe1,0xf7,0xe0,0x5c,0x84,0x54,0x12,0xc3,0xee,0xa5,0x72,0xf2,0x1e,0x32,0x67,0xef,0x7c,0xf,0xee,0x3c,0xff,0x20,0x9f,0xcf,0x31,0x67,0xd6,0x65,0x35,0x6c,0x8c,0xd9,0xee,0x9b,0x1a,0x3f,0x63,0x8c,0x64,0x9,0xcc,0xc7,0x34,0x9d,0xb,0x8a,0x4b,0x25,0x8c,0x19,0x50,0xd5,0xd,0xc1,0x79,0xad,0xf3,0x79,0x98,0x4a,0x27,0x42,0xf0,0x59,0xd5,0xe5,0xac,0x81,0xe9,0x3b,0x58,0x6b,0xd1,0xb4,0x2d,0x9a,0xaa,0xc2,0x6d,0xb7,0xdc,0x84,0xdb,0xce,0xdd,0x84,0xd3,0x27,0x4f,0x60,0x6b,0x73,0x13,0x4d,0x5d,0x61,0x63,0x3e,0x43,0x44,0x84,0x73,0x1e,0x7d,0x3f,0x60,0x6f,0xb1,0xc4,0xe5,0x6b,0x7b,0x78,0xed,0xcd,0xab,0x78,0xed,0xf2,0x2e,0x76,0x16,0xcb,0x95,0x73,0x2d,0xb0,0x62,0xc9,0x7b,0xc7,0x96,0x46,0x83,0x90,0xec,0x8e,0x76,0xc8,0xeb,0x71,0xf2,0xd8,0x51,0xd4,0xa,0xdc,0xe,0x4c,0xcb,0x36,0xf4,0x3d,0xae,0x2d,0x2d,0x2c,0xbf,0xc6,0x3b,0x87,0xa1,0x5f,0xc2,0x59,0x3,0x6b,0x6,0x2a,0xc4,0x8,0x1e,0xf3,0xcd,0x23,0xa8,0x9a,0x16,0x1b,0x9b,0xdb,0x38,0x7d,0xfc,0x8,0xa4,0x94,0xa8,0xea,0x86,0x80,0x8f,0x0,0xf6,0x96,0x3,0xae,0xef,0x2d,0x9,0xb0,0xc4,0x8,0x67,0x6,0x58,0x3b,0x60,0xe8,0xbb,0xdc,0x9c,0x7e,0xfc,0xd8,0x11,0x7c,0xe0,0xfc,0xdd,0x78,0xcf,0xbb,0xef,0xc6,0xe6,0xc6,0x1c,0xce,0x7b,0xbc,0x79,0xf9,0x2a,0x5e,0xba,0x78,0x19,0xcf,0xbf,0xf2,0x6,0x96,0xbd,0xc9,0xd7,0x56,0xef,0x3d,0x4e,0x1d,0xdd,0xc4,0x7,0xce,0xdf,0x81,0x9b,0x4e,0x1d,0x47,0xd3,0x34,0xb8,0x7a,0x6d,0x7,0x4f,0xfe,0xe0,0x47,0xf8,0xee,0xd3,0xcf,0x43,0x48,0x89,0xa1,0x5b,0x72,0x6,0x26,0xc1,0x3d,0xef,0x1d,0x8e,0x6c,0x6f,0xe3,0xe6,0x9b,0xce,0x40,0xea,0xa,0x9a,0xb3,0xd9,0xbc,0x77,0x78,0xe3,0xea,0x2e,0xac,0x23,0xdb,0xbc,0xe9,0x97,0x6c,0x1,0x1d,0x60,0xd,0x35,0xc3,0x2a,0x5d,0x41,0xeb,0xa,0x1b,0xdb,0x47,0x51,0x37,0x2d,0x95,0x41,0x8,0x9,0xa5,0x35,0x5b,0x82,0xc9,0xf2,0xad,0xaa,0xa,0x4a,0x2a,0xdc,0x7c,0xea,0x18,0xce,0xdf,0x75,0x33,0x6e,0xbe,0xe9,0x34,0x94,0x52,0x58,0x76,0x3,0x2e,0xbc,0x76,0x9,0xdf,0x7f,0xfe,0x15,0x5c,0x78,0xf3,0xfa,0x8,0x90,0x19,0x10,0xbd,0xf7,0xae,0xb3,0x38,0xff,0xae,0x5b,0xb1,0xb5,0x49,0xd,0xb2,0x2f,0xbd,0x7a,0x11,0x5f,0xf9,0xe6,0xdf,0xe0,0xea,0xde,0x0,0x6b,0x6,0x38,0x6b,0xd1,0x77,0x7b,0x19,0xa2,0xcd,0x37,0xb6,0xa1,0x34,0xd9,0x68,0x9b,0x76,0x6,0xc4,0x8,0x5d,0x37,0x94,0x51,0xc7,0x2d,0xc6,0xe7,0x4e,0x1f,0xc7,0xb9,0x1b,0x8f,0xe1,0xa6,0x1b,0x4f,0x62,0x7b,0x6b,0xb,0x6d,0xdb,0x20,0x46,0x60,0xd1,0xf5,0xb8,0x7c,0x6d,0x17,0x3f,0xb9,0xf0,0x3a,0x2e,0x5d,0xdb,0xc3,0xcb,0x17,0x2f,0x41,0xb1,0x9a,0x9c,0x1e,0xc4,0x88,0x3,0xcd,0xc2,0x4a,0x57,0xf9,0x7b,0x41,0x4a,0x52,0x8e,0x6e,0xcc,0x5a,0xdc,0x76,0xf6,0x14,0xde,0x75,0xeb,0x19,0x9c,0x3c,0x7e,0x4,0x5a,0x2b,0x18,0x6b,0xf1,0xfa,0xeb,0xaf,0xe3,0x47,0x2f,0xbe,0x82,0xa7,0x9e,0xfd,0x31,0x8c,0xa7,0xf3,0xa1,0x6e,0x66,0x8,0xde,0x51,0x43,0xee,0xe4,0xda,0x5c,0x37,0x6d,0xbe,0xa6,0x9b,0x7e,0x9,0xa9,0x35,0xdc,0xd0,0xe3,0xdc,0x99,0x1b,0x70,0xeb,0x99,0x13,0x38,0x77,0xd3,0x29,0xcc,0xe7,0x73,0xb4,0xb3,0x96,0xb6,0x81,0xb1,0x78,0xf3,0xf2,0x55,0xbc,0x76,0xe9,0xa,0x5e,0x78,0xe9,0x2,0x2e,0x5d,0xdd,0x85,0x71,0xa4,0xde,0xf3,0xd6,0x22,0x22,0xe6,0x8,0x84,0xc,0xf4,0xb8,0xb5,0x5e,0x2b,0x89,0x33,0x27,0xb6,0xe9,0x7c,0x54,0x1a,0x52,0x8,0x8,0xa9,0xb0,0xbb,0xe8,0x70,0x6d,0xb7,0xc3,0x30,0x2c,0x61,0x86,0x1e,0xcb,0xdd,0x1d,0xf4,0xcb,0x5d,0x86,0xab,0xc0,0x6c,0x73,0x1b,0x2,0x40,0xd5,0x50,0xde,0xa5,0xd2,0x7a,0xfc,0xce,0x8b,0x31,0xb7,0xd2,0xa7,0x87,0x58,0xe9,0x3b,0x64,0xbf,0x3a,0x1c,0x42,0x0,0xac,0x36,0xf4,0xce,0xc1,0x98,0x1e,0x6f,0x5e,0x7c,0x5,0x6f,0xbc,0xf2,0x5c,0xb9,0xf8,0x96,0x29,0x53,0xa6,0x4c,0x99,0x32,0x5,0x0,0x96,0x29,0x53,0xe6,0xe7,0x79,0x1e,0xfa,0xf8,0x67,0xb1,0x75,0xe4,0x38,0xdd,0xc0,0x27,0x40,0x10,0x92,0xdd,0x67,0xdf,0xe5,0x27,0x62,0x5,0x10,0x24,0x75,0xda,0x14,0xec,0x24,0xc8,0x97,0x60,0x4e,0x52,0xf,0x8e,0x7c,0x87,0x6d,0x7b,0x52,0xad,0x0,0xbc,0x94,0x19,0x27,0xa5,0xe6,0xa0,0xf3,0x8,0xa5,0x35,0xdb,0x9e,0x54,0xfe,0xdc,0xdc,0x56,0x2a,0x4,0xc1,0x36,0x8c,0x36,0x29,0xc1,0x37,0x42,0x42,0x50,0xfe,0x93,0x52,0xd5,0x4,0x1c,0xb2,0x3d,0x77,0x92,0x67,0x98,0x6e,0x78,0x62,0x8,0x59,0x5,0x48,0x2a,0x38,0x95,0xd7,0x71,0x4,0xa2,0x93,0x82,0x13,0x4c,0x8b,0x49,0xb0,0x4f,0xe1,0x36,0xb5,0x46,0xc9,0xc,0xda,0xd2,0x9f,0xa9,0xb8,0x40,0x4c,0x36,0xeb,0x24,0x93,0x10,0x60,0x50,0xe3,0x26,0xd0,0x75,0x9d,0x7d,0x97,0x5b,0x48,0x93,0xca,0x51,0x8c,0xf9,0x8b,0xa9,0x60,0x65,0x5a,0x8e,0x32,0x55,0xe6,0x8d,0xf6,0xd0,0x43,0x94,0x78,0xfb,0xec,0xc0,0x2b,0xb6,0xde,0x15,0x4e,0x77,0x78,0x2e,0xe0,0xa1,0x4a,0xbf,0xc3,0xda,0x81,0xa7,0xbf,0x3b,0xb5,0x68,0x47,0x2,0x35,0xde,0x39,0xf4,0xdd,0x2,0x2f,0x3e,0xf3,0x14,0x20,0x15,0xfa,0x9d,0xcb,0x88,0xbe,0xa8,0x0,0xf,0x9b,0x1b,0x6f,0xbb,0xf,0x77,0xbf,0xef,0x21,0x52,0x0,0xb1,0xda,0x2b,0x17,0x83,0x48,0x41,0xc5,0xf,0x13,0x85,0xaf,0x77,0xa3,0x22,0x4b,0x6a,0x9d,0xcf,0x81,0x4,0x4a,0x32,0x68,0xe6,0xac,0xcc,0x4,0xb4,0x35,0xe7,0xe5,0x25,0x1b,0xa1,0x77,0x54,0xd6,0x32,0xf4,0x4b,0x84,0x10,0xe0,0xac,0xc9,0xc7,0xf5,0xc6,0xe6,0x36,0xda,0xd9,0x6,0x84,0x52,0xa8,0x18,0x3a,0x4d,0x15,0xa7,0xf9,0xda,0xc1,0x16,0x5e,0xef,0x2c,0x74,0x55,0x67,0xe5,0x13,0xc5,0x2,0xf8,0xf1,0x1,0x82,0x54,0xb9,0xcd,0x58,0xca,0xf1,0xf3,0xc9,0xae,0x2c,0x33,0xfc,0xf1,0xde,0x23,0x6,0x3f,0x2a,0xa2,0x18,0xa2,0xc,0xfd,0x12,0x66,0xe8,0x20,0x20,0xd0,0x77,0x4b,0x7a,0x58,0xa1,0x14,0xe6,0x9b,0x47,0xa0,0x94,0x46,0xdd,0xb6,0xf9,0x5a,0xa2,0xb4,0x86,0x52,0x15,0x29,0xeb,0xf8,0x21,0x85,0xaa,0x6a,0xc,0xcb,0x5,0xbc,0xa7,0xec,0x40,0x21,0x4,0x86,0x9e,0xc0,0xa0,0xd6,0x35,0x9a,0xd9,0xc,0x8a,0xff,0x4c,0xdb,0xa7,0xca,0x9f,0x1f,0x9c,0x63,0xb,0xa6,0xcd,0xa0,0x8a,0x0,0xa3,0xcc,0x50,0x56,0x8,0x49,0xed,0xaf,0x52,0x61,0xe8,0x16,0x8,0x81,0x32,0xfd,0x2,0x5f,0xab,0x84,0x94,0x98,0x6f,0x92,0x6a,0xb0,0xaa,0x1b,0x68,0xde,0x6f,0xde,0xb9,0x7c,0x7a,0xc7,0x18,0xb1,0x7b,0xed,0x32,0x1c,0x67,0xbc,0x2e,0x77,0xaf,0x43,0x2a,0x85,0x76,0xbe,0x9,0xad,0x6b,0x6c,0x6c,0xd1,0xeb,0x75,0x55,0xe5,0x96,0x57,0xef,0x1d,0xaa,0xaa,0x46,0x8,0x81,0x60,0x17,0xab,0xaa,0xd3,0x75,0x38,0xa9,0x8a,0x45,0xba,0x4e,0x71,0xf6,0x22,0xd8,0x56,0x9e,0x94,0x64,0xd3,0x6b,0x0,0xd9,0x8d,0x59,0x29,0x19,0x3,0xfa,0xc5,0x1e,0x2b,0xbe,0x23,0x74,0xa5,0xd1,0xcc,0x36,0xa8,0x84,0xa5,0x22,0xb,0xb6,0xae,0x6b,0x82,0xce,0x7d,0x47,0x8a,0x4e,0x6b,0x60,0x87,0x9e,0xd6,0xc3,0x39,0xb4,0x73,0xfa,0x7d,0x3d,0x39,0x8e,0x34,0xef,0x7f,0x2,0xc4,0xa4,0xfc,0xd6,0x55,0x9d,0x2d,0xea,0x4,0x6,0x6d,0x56,0xb2,0x51,0x86,0xdf,0xfe,0xe2,0x27,0xb6,0x7f,0xc7,0x8,0x67,0x2d,0x43,0x53,0xda,0x47,0xed,0x6c,0x83,0xf3,0x12,0x69,0x3f,0xb6,0xb3,0x8d,0xfc,0x1d,0x95,0xad,0xb4,0xc,0x35,0x95,0xae,0xe0,0x33,0x58,0xf6,0xcc,0xcb,0x2,0xcc,0xd0,0xd3,0xb1,0xa3,0xc7,0xcf,0x96,0x52,0x21,0xc4,0x0,0x6f,0xed,0x98,0xc1,0x1b,0x2,0x9a,0xd9,0x1c,0x66,0xe8,0x33,0x90,0xed,0xbb,0x45,0xb6,0x32,0x27,0x38,0x9a,0xd6,0xaf,0x9d,0x6f,0xd0,0xef,0xf1,0x77,0x6f,0x82,0x7e,0xce,0x1a,0x2c,0xf7,0x76,0xd0,0x2d,0xf7,0xe0,0x9d,0xc5,0x6c,0xbe,0xc9,0xfb,0xbe,0x82,0xaa,0xea,0x6c,0xf,0x4e,0x20,0x93,0x9a,0xa3,0x27,0x19,0x7f,0x93,0xed,0x92,0x96,0x17,0x18,0x4b,0x86,0x42,0xf0,0x79,0x3b,0x5d,0xba,0xf0,0x32,0x2e,0xbd,0xfa,0xa3,0x72,0xf1,0x2d,0x53,0xa6,0x4c,0x99,0x32,0x65,0xde,0x81,0x29,0x16,0xe0,0x32,0x65,0xca,0xfc,0xcc,0x26,0xc6,0x35,0xb9,0x6c,0x62,0xa,0x65,0x92,0xf2,0x2f,0x95,0x5f,0x8,0xf8,0x1c,0xe9,0x17,0x56,0x20,0x60,0x86,0x87,0xc,0x72,0x84,0x24,0x55,0x5d,0xb2,0x6,0x8f,0x37,0x11,0x64,0x3f,0x4c,0x61,0xe3,0x9a,0x43,0xe8,0x5,0x5b,0x6a,0x15,0x67,0x93,0x25,0x10,0x1,0x90,0xca,0x84,0xd4,0x81,0x32,0x5b,0x45,0x43,0xf0,0x94,0x53,0xc4,0x30,0x32,0x78,0xf,0xc4,0x0,0xef,0xe9,0x66,0xd5,0x3b,0x3,0xa9,0x74,0xbe,0x51,0x25,0x30,0x10,0xf3,0x72,0x2a,0x86,0x90,0xc8,0x10,0x62,0xbc,0xc9,0xc9,0xeb,0xc5,0xea,0x46,0x81,0x71,0x1b,0x84,0x49,0x53,0xf2,0x2a,0xa0,0xb,0xc8,0x36,0x5d,0x4c,0x55,0x70,0x11,0x11,0xa3,0xa2,0x50,0x40,0x50,0xbe,0xe0,0xa4,0x91,0x35,0x81,0xc3,0x54,0x60,0x20,0x88,0xf0,0x71,0x26,0xe1,0x8,0x3,0x33,0xc8,0xc4,0x68,0xf1,0xcd,0x76,0x60,0x91,0x91,0x62,0xbe,0x49,0xcc,0xa,0x4b,0x8c,0xff,0xce,0x1,0x87,0xac,0x1c,0xa4,0xf7,0x1f,0x6d,0xc0,0xf8,0x5b,0xe1,0xdf,0x41,0x20,0xb9,0xa,0xf1,0xe,0x34,0x15,0xf3,0xf1,0x90,0x3b,0x80,0xd3,0x86,0xdc,0xf,0x4,0x53,0x46,0xe2,0xc4,0x8a,0x9d,0x73,0x13,0x63,0x84,0xd4,0xd,0x7c,0xf0,0xd0,0xf5,0x1c,0xb6,0x2b,0x0,0xf0,0xb0,0x49,0x59,0x76,0xe9,0x18,0x94,0x4a,0x65,0x25,0xe7,0x14,0xb8,0x25,0x10,0x9f,0x8a,0x12,0x74,0x55,0x67,0x6b,0x23,0x56,0x2c,0xdd,0x4,0x10,0xb5,0xd2,0xf0,0xac,0x1e,0x94,0x52,0xc1,0xda,0x1,0x6d,0xbb,0x41,0x4a,0xa5,0x10,0x18,0x88,0x54,0xdc,0x90,0x6b,0xc8,0xe2,0xe9,0xc,0x74,0xd5,0xa0,0xef,0x16,0x80,0x10,0x4,0x79,0x22,0xd0,0xce,0x37,0x32,0x30,0xa2,0x42,0x20,0x7a,0xe8,0xe0,0x6d,0x82,0x34,0x7c,0xdd,0x88,0x94,0x4b,0x66,0x86,0x1e,0x5a,0x6b,0x2e,0x26,0x51,0xd9,0xfa,0x1e,0x3,0x9d,0xcb,0xce,0x1a,0x86,0x4a,0x1,0xd1,0x7b,0x28,0x5d,0xc1,0x98,0x9e,0xd6,0x4f,0xa9,0x51,0xdd,0xc4,0x9f,0x9,0xbe,0xb6,0x38,0x6b,0x31,0xf4,0x4b,0xce,0x41,0x43,0x2e,0x43,0x92,0x5a,0x41,0x8,0x8f,0xba,0x21,0xab,0x2f,0xe5,0xbc,0x55,0x74,0xae,0xc4,0x8,0xdf,0x2f,0x69,0xfb,0x32,0x30,0x8f,0x7c,0xdd,0xb1,0xc3,0x0,0xbd,0x5d,0xb1,0x3d,0x32,0x65,0xcf,0x49,0x56,0x73,0x11,0xcc,0x76,0x6e,0x2c,0xea,0x48,0x99,0xab,0x42,0xd1,0xf5,0x25,0xc4,0x0,0x38,0x2e,0x4a,0x52,0x9a,0x14,0x8b,0x31,0xc2,0xda,0x21,0x43,0x55,0x0,0x98,0x6f,0x6e,0x67,0xfb,0xae,0x33,0xc3,0x8a,0x75,0x3f,0xbd,0xbf,0xf,0x9e,0x5e,0xef,0x1d,0x86,0x6e,0x9,0x20,0x66,0x28,0x9b,0xf2,0x1b,0x2b,0xb6,0xd6,0x1a,0xb6,0xe2,0x7a,0x37,0xe6,0x44,0x12,0xd8,0x94,0x19,0xf2,0x3a,0x67,0x20,0x85,0x62,0x40,0xd6,0xe7,0x7,0x37,0x9,0xd2,0xa6,0xeb,0x11,0x29,0xce,0x48,0xc9,0x27,0xf8,0x3c,0x1e,0xd5,0xa1,0x16,0x31,0x46,0x2c,0x76,0x49,0x3d,0xd8,0xb4,0x73,0xce,0xd3,0xa3,0xdf,0xa9,0xdb,0x19,0xbc,0xb3,0xb0,0x61,0xc8,0xdf,0x1d,0x66,0xe8,0xf9,0x81,0x87,0x82,0xf1,0x7d,0x3e,0xde,0x8,0xc6,0x52,0x76,0x9d,0x90,0x12,0x52,0x2b,0xc,0x5d,0x47,0x25,0x35,0x31,0x52,0xb,0x2e,0xab,0x23,0xad,0xa1,0xb2,0x16,0xef,0x52,0x46,0xde,0x0,0x5d,0x55,0x8,0x42,0xae,0x3c,0xf0,0xf0,0xdc,0xa2,0x6c,0xfa,0x8e,0xf7,0xa9,0xcd,0xcb,0x5f,0xb3,0x42,0x31,0xd9,0xa5,0xd3,0x32,0xeb,0x9a,0x2c,0xc6,0x3e,0x5a,0xde,0x36,0x86,0xf7,0x2f,0x35,0x4c,0xb,0x41,0x99,0xb2,0x43,0xb7,0x40,0x3b,0xdf,0x84,0xeb,0xa8,0x75,0x1a,0x4a,0xc1,0x9a,0x21,0x97,0xf6,0xd0,0xf7,0x9b,0x82,0x73,0x36,0x43,0x5b,0xa5,0x34,0x9c,0xa5,0x3c,0xc7,0xb4,0xe,0x9,0xfe,0x1,0xe0,0x87,0x64,0x1,0x42,0xc4,0xac,0x76,0x8f,0xac,0xe6,0xeb,0xbb,0x25,0x3c,0x1f,0xb,0xf4,0xbd,0x5a,0xe7,0xef,0xca,0xf4,0xb0,0x4a,0x8,0x35,0x82,0xfa,0x18,0x1,0x90,0xdd,0x37,0x30,0xc,0x4c,0xdf,0x4b,0x74,0x7c,0x81,0x61,0x6f,0x52,0x68,0x8f,0xf,0x11,0x84,0x90,0x2b,0x8a,0xc8,0x32,0x65,0xca,0x94,0x29,0x53,0xa6,0x4c,0x1,0x80,0x65,0xca,0x94,0xf9,0x79,0x4,0x80,0xf9,0x3f,0xd8,0xc7,0xb6,0xdc,0xc,0xaf,0xf8,0xff,0x27,0xeb,0x6b,0x88,0x11,0x8,0x63,0x66,0x5e,0xba,0x39,0x4c,0x36,0xc2,0x31,0x1f,0xf,0x10,0x31,0x22,0x84,0x38,0x51,0xf9,0x84,0x15,0x75,0xdb,0x14,0x12,0x8d,0x4a,0x3,0xfe,0xbb,0xf,0xf9,0x26,0x35,0x81,0x6,0xc5,0x37,0xf7,0x32,0x1,0x33,0x0,0x10,0x11,0x52,0xe9,0x7c,0xe3,0x95,0x9a,0x31,0xa5,0x60,0x2b,0x1b,0xdf,0x2c,0xad,0x34,0xf1,0x26,0xb0,0x37,0xf9,0xfc,0xf4,0xde,0xc1,0x3b,0xb2,0x44,0x4d,0x55,0x83,0xc,0x43,0xc3,0x44,0xad,0x94,0xd4,0x8b,0x19,0x52,0xa5,0xfc,0xba,0xe9,0x7a,0xb1,0x25,0x36,0x2b,0x66,0x26,0x6a,0xbc,0x15,0x28,0x96,0x21,0xea,0x34,0xbb,0x2d,0x8e,0x2d,0xba,0x88,0xb9,0xfd,0x37,0x5b,0x36,0x57,0x60,0x9b,0x24,0x9a,0xb7,0x92,0xcf,0x24,0xf2,0xb6,0xda,0x6f,0xd9,0x15,0x52,0x22,0x7a,0xcf,0xd0,0x13,0xb9,0xbc,0x64,0xcc,0x1a,0x64,0xbb,0x72,0xc,0x6b,0x41,0xdf,0x14,0x6,0xae,0xe4,0x4,0x4e,0x8e,0xa9,0x69,0xa6,0x60,0xfe,0xb7,0xe9,0x8d,0xa1,0x18,0x3b,0x8e,0x57,0x8e,0x99,0x29,0x8,0x9c,0x80,0xe9,0xf4,0xde,0x6e,0x58,0x40,0x56,0x2d,0x8a,0x28,0xfe,0xad,0x67,0xaa,0xdc,0xa1,0xf3,0x69,0x54,0xf6,0x3a,0x2e,0xb7,0x20,0x15,0x12,0x38,0x7f,0x53,0xb3,0x2,0x78,0xba,0xbf,0x23,0x42,0x14,0x23,0x3c,0x90,0xa,0x21,0x46,0x28,0x6e,0x12,0x4e,0xbf,0x43,0xd6,0x5b,0x1,0xc9,0x16,0x7e,0xc7,0xa0,0x2a,0x84,0x0,0xc7,0x60,0xc8,0x59,0x6a,0x63,0x35,0x7d,0x7,0x67,0xd,0x6a,0x6e,0xa0,0x4d,0xe7,0x8b,0x31,0x3d,0x10,0x1,0x15,0x75,0x2e,0xf3,0x20,0x58,0x66,0xa8,0xad,0xb7,0x6a,0x72,0x5e,0x9f,0xd2,0x35,0x62,0xc,0xb0,0xd6,0x65,0x9b,0x3f,0x40,0x56,0x4e,0x8d,0x51,0x6d,0x66,0x87,0x8e,0x80,0x1d,0xab,0xeb,0x84,0x90,0xe8,0x97,0xbb,0x6c,0x7d,0xac,0x10,0x1,0x98,0xc5,0xe,0x59,0x2a,0x75,0x85,0xbe,0x5b,0x90,0xa5,0x52,0xec,0x61,0xbe,0x79,0x24,0xb7,0xa4,0x4a,0x56,0xea,0x25,0xf5,0x58,0x82,0x5b,0x19,0x72,0xb2,0xb2,0x96,0xd4,0x80,0x1e,0x75,0xdb,0x92,0x72,0x4f,0x29,0x8,0x21,0xe1,0xa2,0xc9,0xb0,0x85,0x32,0x3,0x9,0x40,0x52,0x36,0x9b,0xcf,0x16,0x4c,0x1d,0x35,0x5c,0xca,0x42,0xe5,0xf6,0x65,0xa5,0x34,0x4c,0xbf,0x24,0xa0,0xe3,0x29,0x7b,0x50,0x72,0x16,0x60,0xbf,0x5c,0xa0,0x99,0xcd,0xa1,0x94,0x82,0x60,0x98,0x97,0x1e,0x20,0x4,0xce,0x3d,0x4c,0xca,0x66,0xef,0x2,0x6f,0x33,0xb,0xad,0x2b,0xd8,0x61,0x40,0x5d,0xb7,0x54,0x68,0x12,0xab,0xac,0x2a,0xf3,0x6e,0x54,0x97,0x9,0x7e,0x60,0x12,0x82,0x3,0x84,0x86,0x1b,0x2c,0xea,0xba,0x85,0xb5,0x3,0xc3,0x43,0xc3,0xf0,0x56,0xe7,0xf5,0xaa,0xaa,0x9a,0x54,0xcc,0x4a,0x31,0x21,0xa2,0x6b,0xe2,0x72,0x6f,0x7,0x55,0xdd,0xd0,0xb2,0x79,0x7,0x33,0x10,0x3c,0xa4,0x6,0x5d,0x52,0xa0,0x7a,0xab,0x1,0xd,0x74,0x8b,0x5d,0x28,0x5d,0x31,0xf8,0x32,0x39,0x1e,0x62,0xe8,0x97,0xe3,0xf5,0x35,0x44,0x2a,0x45,0x9,0x1,0x4e,0xa,0x34,0xb3,0xd,0xf4,0xcb,0x5,0x43,0x5c,0x91,0x55,0x74,0x0,0x95,0xa8,0xa4,0x6b,0x67,0x3a,0xf6,0xd2,0x35,0xc6,0x7b,0xf,0xad,0x25,0x2b,0x1f,0x6d,0x7e,0x0,0x95,0xa,0x9e,0xbc,0x77,0x70,0xc6,0x10,0x44,0xe3,0xb,0x54,0x55,0x35,0x8,0x21,0xa0,0x69,0x35,0x4c,0xdf,0x41,0xd7,0xd,0xb5,0xb,0x57,0x35,0x86,0x7e,0x89,0x66,0xb6,0x91,0x33,0x5b,0x53,0xa6,0xa2,0x73,0x96,0x4b,0x5c,0x58,0xa1,0x99,0xbe,0xe7,0x38,0x7b,0xd3,0x39,0x4b,0xcb,0x13,0x3c,0xa2,0xf7,0xf9,0x18,0x40,0x44,0x3e,0xee,0xec,0x30,0x20,0x82,0x14,0x93,0x61,0x70,0x39,0x6e,0x82,0x60,0x9d,0xcf,0x20,0x30,0x78,0x52,0x6c,0xe,0x7e,0x9,0x29,0x45,0xce,0xe7,0x73,0x86,0x54,0x94,0x42,0x8,0x28,0xa9,0x48,0xbd,0xcb,0x0,0x9a,0xe0,0x9d,0x80,0x62,0x80,0xe8,0xbd,0xe3,0xeb,0xef,0xc1,0xc2,0xaa,0xe9,0xc3,0xad,0x49,0xe6,0xc3,0x24,0x86,0xa2,0x4c,0x99,0x32,0x65,0xca,0x94,0x29,0x53,0x0,0x60,0x99,0x32,0x65,0x7e,0x6e,0x47,0xec,0x2b,0x8e,0xc8,0xd6,0x53,0x4c,0x4a,0x21,0x42,0xcc,0xd9,0x7f,0x39,0xeb,0x2f,0x29,0x89,0x12,0x40,0x2,0x20,0x59,0x39,0x90,0x40,0x93,0x62,0xb,0x9e,0xe0,0xcc,0xa0,0x94,0x2b,0x96,0x54,0x7d,0x22,0xe5,0xd7,0xed,0x2b,0x8e,0x98,0x42,0xac,0xa4,0x2e,0x98,0xbe,0xe,0x22,0x52,0x49,0x1,0x24,0xbc,0x35,0x74,0x23,0x57,0xd5,0x2b,0x16,0xdc,0x74,0xa3,0xa8,0xab,0x3a,0x97,0x19,0x44,0x6,0x66,0x21,0xfa,0x6c,0x73,0xce,0xad,0xbf,0xc,0xe9,0x42,0xf0,0xd4,0x92,0x29,0x24,0x62,0x52,0x3c,0x3a,0x4b,0x39,0x86,0x31,0xae,0xb4,0x1b,0x67,0x1b,0x72,0x52,0xfe,0x25,0x85,0x61,0x9c,0x96,0x7e,0x24,0xd0,0x3a,0x66,0x28,0x8a,0x5c,0xa7,0x8c,0xc9,0xef,0xcb,0xc9,0x8d,0x15,0xb2,0x6a,0x72,0x54,0xe3,0xad,0xc2,0xbf,0x64,0xc7,0xcb,0x2a,0x22,0x4c,0xa1,0xaa,0xc8,0x6a,0xcd,0x74,0x83,0x97,0x97,0x3d,0xc4,0xc,0xe4,0xf6,0xdb,0x30,0x57,0x14,0x86,0x42,0x42,0x30,0x8,0xdd,0xf,0xfe,0x46,0x8,0x3a,0xbd,0xe1,0x9b,0xa4,0x1b,0x8a,0x51,0xf5,0x99,0xc1,0xf0,0x44,0xf1,0xb7,0x62,0x33,0x8e,0x63,0x2e,0xe2,0x58,0x2a,0x42,0xcb,0x30,0xde,0x66,0x72,0x11,0x8d,0xaa,0x10,0x6c,0xf,0xa1,0xeb,0x72,0xe2,0xbe,0x25,0xd5,0x8f,0x7,0x5a,0x94,0x29,0xc8,0x5f,0xb3,0x52,0xc9,0xb3,0x7d,0x56,0x66,0x9b,0xfd,0x34,0xef,0x4b,0x4a,0xc1,0x60,0xc7,0xf0,0xb1,0x46,0xc7,0xb8,0xae,0x1b,0xf8,0x54,0xae,0x21,0xc8,0x4a,0x4c,0xf,0x1,0x3c,0xac,0xb1,0x39,0x47,0x4e,0x2a,0x95,0x55,0xbd,0xfd,0x72,0x81,0xa1,0x5f,0x62,0x36,0xdf,0x44,0xdd,0xcc,0xa0,0xb4,0x86,0xae,0x6a,0x74,0x8b,0x5d,0x54,0x4d,0x9b,0x73,0xe7,0x7c,0x70,0x80,0xa3,0x63,0xd5,0x65,0x6b,0x2c,0xb2,0x82,0x2b,0xa9,0x53,0x63,0xf0,0x18,0x86,0xe,0x5a,0x55,0xd9,0xf2,0x48,0x50,0x4a,0x65,0x78,0x11,0xb8,0xc1,0xd8,0x4f,0xb2,0xcc,0xa4,0x94,0x50,0xaa,0x82,0x73,0x26,0x67,0xc4,0x29,0x55,0xa1,0x37,0xb,0x2c,0xf7,0x76,0xf2,0xc3,0x83,0xa4,0xd6,0x33,0x7d,0x87,0x58,0x87,0x1c,0x8d,0x10,0x1,0x58,0x56,0x14,0x6,0xb6,0xa6,0x47,0x56,0x99,0x25,0x55,0x1f,0x20,0x60,0xfa,0x1e,0xb3,0x8d,0x2d,0x2c,0x77,0x77,0xb0,0x75,0xe4,0x38,0x3,0x2e,0xfa,0xbc,0xa1,0x5b,0x72,0xa4,0x0,0xed,0x18,0x6b,0x7a,0xb6,0xbd,0xa,0xf4,0xfd,0x92,0xa0,0x97,0xb3,0x68,0xda,0xd9,0xa8,0x44,0x94,0xa,0xc6,0xf4,0x8,0xde,0x51,0x61,0x9,0xef,0x97,0xa4,0x0,0x8b,0x91,0x54,0x75,0x10,0x5c,0x9c,0x94,0xaf,0x9d,0x63,0x26,0xa3,0x19,0x6,0x44,0x0,0x5a,0x6b,0x54,0x75,0x3,0xa9,0x24,0x96,0x8b,0x1d,0x6c,0x6e,0x1d,0x85,0x73,0x16,0x2d,0x5b,0xad,0x95,0xa6,0xed,0x53,0x49,0x82,0x5c,0x2,0x9c,0x15,0x19,0x42,0x5e,0xb6,0x18,0x2,0x8c,0xb3,0x18,0xba,0x25,0x4,0xc0,0xdb,0x93,0x94,0xd7,0x31,0x12,0x80,0x4a,0xd6,0x5c,0x21,0x25,0x9c,0xb5,0xd0,0x75,0x4d,0x50,0xd6,0x18,0x58,0x6b,0xd0,0xcc,0xe6,0xf4,0x6f,0x66,0x80,0x35,0x6,0x55,0xdd,0xc2,0x5a,0xc3,0xf6,0xda,0x98,0x41,0x21,0x4,0xc1,0x63,0xcf,0x8a,0x3f,0xc4,0xc8,0x19,0x8e,0xa4,0xae,0x9c,0x49,0x9,0x19,0x53,0x21,0xd,0x6d,0x53,0x67,0x9,0x12,0x8b,0x1c,0x81,0xe0,0x9,0x2a,0xf3,0xf5,0xd9,0x9a,0x7e,0x2c,0xf1,0x50,0x9a,0x15,0x7a,0x2,0xba,0x6e,0xe0,0x38,0xa3,0x30,0x65,0xcd,0x5a,0x33,0x60,0xb1,0x77,0x1d,0x55,0x45,0x36,0x6e,0x67,0x4c,0xb6,0x29,0x9b,0xa1,0x5f,0x69,0x30,0x4e,0x5,0x3a,0x49,0x5d,0x9a,0xa0,0x2d,0xb5,0x2c,0x53,0xf6,0xa4,0x77,0xb4,0xf,0xe7,0x9b,0xdb,0x59,0x69,0xeb,0x87,0x3e,0x3f,0x8,0x92,0x52,0x1,0x6c,0x61,0x26,0x65,0x7c,0x95,0x21,0xa8,0xe2,0x66,0xe9,0x10,0x3c,0x29,0x2b,0x79,0xdb,0x80,0x2d,0xda,0x74,0xcd,0xf5,0x19,0x74,0xa6,0xeb,0x34,0x29,0x2e,0x43,0x86,0xb2,0xed,0x6c,0x9e,0x1f,0x28,0xd1,0xf7,0x2a,0x3,0xcf,0x20,0xf2,0xb5,0x59,0xa6,0x86,0xe0,0xc9,0x35,0x7e,0x54,0xc,0xa,0x20,0x8a,0xf1,0x1a,0xbd,0x2f,0x96,0xa2,0x4c,0x99,0x32,0x65,0xca,0x94,0x29,0x53,0x0,0x60,0x99,0x32,0x65,0x7e,0xbe,0x9,0xe0,0xf8,0x47,0x20,0x17,0x79,0xe4,0x1c,0x29,0xc4,0xfc,0x67,0xca,0x4b,0x4a,0xe0,0x6c,0x54,0x89,0x8c,0x16,0xdf,0xb0,0xd2,0x2a,0x1c,0x2,0x29,0x31,0x54,0x55,0x21,0x75,0xce,0x26,0x7b,0x59,0x64,0xb8,0x24,0x20,0x19,0x2e,0xb1,0xcd,0x30,0x95,0x78,0x70,0xd6,0x56,0xb2,0x41,0x1,0x64,0x8f,0x1b,0x6f,0x66,0x38,0x8b,0x48,0x8,0xca,0xaf,0xe2,0xd0,0xf4,0x4,0x94,0xe8,0xf7,0x34,0xbc,0xb3,0x74,0x23,0x83,0xd1,0xbe,0x2b,0xa5,0x44,0xae,0xcc,0x50,0xc8,0xd6,0x29,0xb2,0xe3,0x22,0x2b,0xfe,0xa8,0x10,0x43,0xe4,0xfc,0x30,0x82,0x77,0x22,0x5b,0x77,0x25,0xdb,0xc7,0xc6,0xcd,0x18,0xb3,0x65,0x72,0xb4,0x45,0xa9,0xc,0x60,0x22,0x67,0x9,0xa,0x21,0x11,0x45,0x9c,0x6c,0x53,0x56,0xfc,0x1,0xb9,0x54,0x64,0x15,0xac,0x4d,0x60,0x6d,0x2a,0x36,0x71,0x8e,0xad,0x6e,0x40,0x8c,0x7e,0x5f,0x6b,0x6f,0xe0,0xb2,0x93,0x38,0x51,0xf5,0x89,0xd5,0x9b,0xb8,0x4,0x15,0xd9,0x9a,0x1b,0x27,0x60,0x91,0x7e,0x9e,0x60,0x70,0x52,0x86,0x7a,0x5e,0x97,0xd1,0x1a,0xbe,0x6a,0x1,0x4e,0xeb,0x26,0x56,0xe0,0xe5,0x78,0x3c,0x8c,0x4d,0xd1,0x21,0x26,0x8,0xba,0xf,0xfa,0xf2,0xdb,0xc4,0x75,0x37,0x94,0xcc,0xb3,0x8,0xc6,0xfa,0x72,0xde,0xbe,0xc5,0x84,0x6c,0xc3,0xc7,0xc4,0x71,0x2d,0x18,0x2c,0x84,0x83,0xb9,0x92,0x31,0x22,0x82,0x72,0xf2,0x24,0x58,0x11,0xeb,0xfd,0x6a,0x51,0x4f,0x20,0xc8,0xa1,0x18,0xb4,0x65,0x5,0x70,0xb4,0xf9,0xbc,0xf,0x7c,0x8c,0x48,0x19,0x19,0xb2,0x78,0x2a,0xeb,0x50,0x3a,0xe7,0xd7,0x9,0x3e,0x5f,0xa9,0xf1,0xd5,0x62,0xb6,0xb1,0x85,0x18,0xe9,0xbc,0xf5,0x29,0x77,0x93,0xa1,0x4a,0x52,0x16,0x7,0x6b,0x32,0xa0,0x74,0xe9,0x7c,0x8e,0x1,0xde,0x93,0xea,0x57,0x80,0x5f,0xc3,0x96,0x77,0xca,0x71,0xb,0x59,0x1d,0x55,0xd5,0x4d,0x56,0x71,0x69,0x5d,0x21,0x8,0x9f,0xa1,0x9d,0xf7,0x94,0x99,0x97,0xca,0x36,0x9a,0xd9,0x3c,0x2b,0xb7,0x92,0x2a,0x90,0xca,0x12,0xc0,0x4a,0xc6,0xd1,0x4e,0x9d,0x4a,0x2d,0x8,0x7c,0xaa,0x6c,0xa3,0xed,0x96,0xbb,0xa8,0x9b,0xa4,0x4,0xd4,0x8,0x9a,0xae,0x59,0x9e,0x4b,0x1d,0x9c,0x25,0x55,0x99,0x63,0x28,0x44,0xc5,0x12,0x9e,0x14,0x74,0xc,0x8e,0xbc,0x73,0x80,0x9a,0xee,0xd3,0x8,0xa5,0xa8,0xbd,0x35,0x1,0x1f,0xb2,0xf4,0xe,0xf9,0xe1,0x88,0x4c,0xa,0xe2,0x9c,0xd1,0x16,0x60,0xfa,0x2e,0x67,0xaa,0x76,0x8b,0xdd,0xac,0x5c,0xdc,0x3a,0x7a,0x2,0x52,0x69,0xb6,0xc5,0x8e,0xea,0xb7,0x94,0x4f,0x27,0xa4,0xc8,0xcb,0x91,0x62,0x11,0xb4,0xae,0xa8,0x94,0xc7,0x59,0x8,0x0,0x36,0x29,0x20,0x43,0xa0,0x62,0x9e,0x6e,0x81,0xa6,0xdd,0xc8,0xd7,0x78,0x9f,0x9a,0x96,0xed,0x80,0x18,0xc8,0x3a,0xeb,0x9c,0x85,0x19,0x7a,0x6e,0x9f,0xd,0x79,0x3b,0x54,0xc,0xe0,0x0,0x40,0x54,0x4d,0x6e,0x69,0x4e,0x8a,0x35,0x0,0x18,0xfa,0xe,0x43,0xb7,0xc0,0x7c,0xeb,0x8,0x3c,0x8,0x50,0x35,0xb3,0x79,0x56,0xbd,0x59,0x33,0xe4,0x6b,0x94,0x73,0x94,0xfd,0x28,0x84,0xcc,0xeb,0x28,0x21,0x39,0x17,0xd2,0x8d,0x2d,0xf0,0x7c,0x9d,0xf6,0xdc,0xe8,0x4c,0xff,0x46,0xa,0x40,0x82,0x93,0xd,0x2b,0x31,0x3b,0x34,0xb3,0x39,0x86,0x7e,0xc9,0x10,0x55,0xb3,0x45,0x3d,0xe4,0xdc,0xca,0x6e,0xb1,0x47,0xad,0xd8,0x6c,0xc1,0x4f,0xa0,0x30,0x4,0xcf,0x19,0x7f,0x1e,0x42,0x68,0xf4,0xcb,0x3d,0xca,0x3d,0xac,0x6a,0x28,0x5d,0xa1,0x6e,0x5a,0x2c,0x17,0xbb,0x19,0xd2,0xa5,0x76,0x5d,0xc1,0xa,0xbf,0xd5,0x5c,0xd6,0x51,0xa9,0x4f,0x25,0x3c,0x9a,0x8f,0x6d,0x7e,0x90,0xc5,0xaa,0x79,0x2,0xe1,0x74,0xe,0x2c,0xf7,0xae,0xa3,0x6e,0xe7,0x1c,0xad,0xe1,0x33,0xec,0x46,0x8c,0xe3,0x3,0x30,0x7e,0xdf,0x30,0xb1,0xf6,0xe6,0x58,0x8a,0xc0,0xdf,0x7,0x18,0xf3,0x63,0x57,0x1e,0x56,0x21,0x96,0x16,0xe0,0x32,0x65,0xca,0x94,0x29,0x53,0xe6,0x1d,0x1c,0x5,0xe0,0xbf,0x2d,0x9b,0xa1,0x4c,0x99,0x32,0x3f,0x8b,0x39,0x7b,0xc7,0x7d,0x68,0xda,0x39,0x97,0x6b,0xc4,0x51,0x29,0x36,0x72,0x9e,0xd5,0xd6,0x5d,0x56,0xa1,0x65,0x25,0x20,0x37,0x81,0x12,0x3c,0x92,0xf9,0x7f,0x93,0xaa,0x48,0xf0,0xd,0xd7,0xb4,0xf4,0x23,0xe7,0x6,0x49,0xc1,0x37,0xad,0xa0,0x1b,0xb7,0x89,0x6a,0x4d,0x6b,0x4d,0x37,0xb6,0x5c,0xc,0x10,0x42,0x80,0x66,0xcb,0xd8,0x98,0x5b,0x46,0xcd,0xa5,0x9,0x5a,0x2a,0xa5,0xd9,0x7a,0x47,0xea,0x6,0x82,0x87,0x55,0x66,0x9c,0x2,0x94,0x13,0x35,0x5a,0x22,0xc7,0x12,0x90,0xb1,0x15,0x38,0x66,0x90,0x95,0x1,0x28,0x46,0x3b,0x6e,0x86,0xa4,0x9,0x94,0xa5,0xcc,0xc0,0x49,0x2b,0xf1,0x2a,0xd4,0x4a,0xa,0x47,0xe4,0xf5,0x4b,0x37,0x70,0x89,0x71,0x25,0x4b,0xf5,0x6a,0xee,0x5a,0x6a,0x6a,0x8d,0x63,0xce,0x5f,0xea,0x31,0x49,0x80,0xcf,0x53,0x71,0x41,0x56,0x69,0x70,0xe6,0x62,0x86,0x85,0x31,0xae,0x14,0x89,0x88,0x69,0xe1,0x2,0x5b,0x30,0xf3,0x96,0x91,0xe3,0xcd,0x9d,0x60,0xd5,0x27,0xbd,0xcf,0x2a,0x8c,0x4c,0x5,0x29,0x71,0xa,0x25,0x93,0xb2,0x4f,0x4a,0xb6,0x66,0x8f,0xd9,0x87,0xe9,0x46,0x73,0xff,0x64,0xd5,0xe1,0xa,0x8b,0x16,0xab,0xd8,0x2f,0xa6,0x9c,0x37,0xca,0x32,0xbb,0xfa,0xe6,0xeb,0x74,0xc3,0xa,0x20,0xb8,0xbe,0x9c,0xbc,0x87,0xcc,0xf6,0x89,0xd3,0x38,0x76,0xf2,0xc6,0x5c,0x4,0x81,0x18,0x72,0xde,0xa3,0xda,0x57,0xd2,0x93,0xf6,0x53,0xca,0x5b,0xcb,0x8d,0xda,0x40,0xb6,0x16,0x42,0x10,0x20,0x90,0x62,0xb4,0xed,0x2a,0xce,0xd6,0x8c,0x88,0xfb,0xa,0x66,0xe2,0x4a,0x1,0x88,0x90,0x8a,0x94,0x6e,0x75,0x43,0xe0,0xa3,0x9d,0xc1,0x1a,0xc3,0x90,0xc2,0x92,0x15,0x96,0x2d,0x87,0x42,0xa,0x56,0xc,0x4b,0x86,0xf5,0x11,0xce,0x99,0x8c,0x1c,0x52,0x71,0x86,0x92,0x9a,0x1,0xcd,0x90,0x97,0xd3,0x39,0x3,0x67,0x5d,0x56,0xbd,0x79,0x4f,0xd,0xb2,0x74,0xd,0x20,0xfb,0xb2,0x54,0x4,0xbf,0x9c,0xa5,0x36,0xdd,0xc8,0xaa,0xb2,0x10,0x3c,0x96,0xbb,0xd7,0xd1,0xb4,0x33,0x8,0x21,0x50,0x37,0x6d,0xb6,0xe3,0xb,0x99,0x32,0xe2,0xb8,0xc5,0x3b,0x89,0x59,0xf9,0x7a,0x84,0x18,0xd1,0x2d,0xf6,0x58,0x1d,0x47,0x0,0x49,0xf0,0xb1,0xac,0xab,0x9a,0xce,0xb3,0x48,0xd9,0x72,0x81,0xf3,0xe5,0x3c,0xab,0xf9,0xc6,0x73,0x8f,0xae,0xa9,0xa4,0x4a,0x53,0x2b,0xd6,0x51,0xad,0x6b,0x58,0x86,0x48,0xa9,0xb4,0x24,0x81,0x35,0xa9,0x34,0xa4,0xd6,0xa8,0x58,0xd,0x8,0x81,0xac,0x7e,0x4c,0x8a,0xc1,0x14,0x81,0xd0,0x2f,0xf6,0x48,0x51,0x67,0x6,0x6c,0x1d,0x3d,0xc1,0xa0,0x48,0x64,0x76,0x9f,0x32,0x1c,0xa7,0xd,0xb0,0x21,0x4,0x56,0x5a,0xa7,0x63,0xa1,0x82,0x1d,0xba,0xdc,0x9a,0x9c,0x5a,0x7a,0x13,0xb8,0xd3,0xac,0x8e,0x73,0xd6,0x8c,0xb1,0x6,0x4a,0xa2,0x62,0xdb,0xbe,0xe9,0x7b,0x0,0x31,0xc3,0x30,0x6b,0x6,0x34,0xcd,0xc,0x55,0xd3,0xe6,0xac,0x3a,0xa5,0x2b,0x8a,0x7c,0xd0,0xd4,0x2e,0xed,0x39,0x3b,0xd1,0xc,0xe3,0xe7,0xf8,0x9,0x44,0x14,0xf9,0xa1,0x45,0xcc,0xdb,0x2e,0xc5,0x39,0xa4,0x96,0xf5,0xd4,0x82,0xab,0xb4,0xa6,0x62,0xd,0x8,0x3e,0x76,0x1,0xa5,0x18,0x8,0x86,0x38,0xda,0x65,0xad,0xe1,0x2,0xe,0x5a,0x97,0xc5,0xf5,0xab,0x98,0x6f,0x1d,0xc9,0x25,0x55,0xe9,0x1a,0x45,0x85,0x32,0x71,0xc5,0xee,0xec,0xec,0x90,0x21,0x6e,0xfa,0x8e,0x89,0x31,0x66,0x38,0xe9,0xd9,0xe,0xaf,0x14,0x3d,0xbc,0xf1,0xde,0xf2,0x83,0x2f,0x3a,0x9f,0x8,0x68,0x63,0x8c,0xd5,0xe0,0xa7,0x4b,0x54,0x96,0xe5,0xb2,0x4a,0xdd,0xda,0x81,0xbf,0x13,0x62,0x3e,0xde,0xd3,0xd5,0xbf,0xef,0x16,0x8,0xde,0x8f,0x45,0x37,0x9c,0x7d,0x99,0xac,0xd5,0x9a,0x8b,0x4c,0x12,0x2c,0xcd,0xe5,0x5a,0x88,0x2b,0xc5,0x3f,0xf9,0xbb,0x82,0xbf,0xb,0x45,0xce,0x71,0x1d,0xcf,0x81,0xb4,0xae,0x8b,0xbd,0x1d,0x2c,0x77,0x2e,0x97,0x8b,0x6f,0x99,0x32,0x65,0xca,0x94,0x29,0xf3,0xe,0x4c,0x51,0x0,0x96,0x29,0x53,0xe6,0x67,0x38,0x71,0xca,0xfa,0xf2,0x8d,0xe4,0x14,0x80,0x11,0x10,0xf2,0xd9,0x56,0xa,0x99,0x32,0xe2,0x22,0x5b,0x66,0x19,0x75,0x4d,0x6e,0x1e,0xb4,0xa6,0x22,0xf,0xa9,0x35,0xb4,0x4c,0x21,0xe7,0xac,0xe4,0xb,0x9c,0x59,0xe4,0x49,0x29,0x46,0x6a,0x23,0x6,0x8,0x6c,0x65,0xcb,0xad,0x98,0xa0,0xbf,0x2b,0x8d,0x9c,0x9b,0x55,0xd5,0x7a,0xa2,0x72,0xa2,0xd7,0x24,0x30,0x95,0xad,0xa8,0x13,0xd8,0x96,0xf2,0xf0,0xb2,0x5a,0x45,0x8e,0x2d,0x8a,0x29,0x97,0x89,0x20,0xc8,0x98,0x81,0x47,0xb6,0x44,0xb3,0x7a,0xd3,0xb3,0x92,0xf5,0x7,0xb6,0x42,0x61,0x54,0xd0,0x65,0x60,0x28,0xc6,0xf2,0x8a,0x4,0xde,0x82,0x67,0xfd,0x84,0xe0,0x52,0xf,0x31,0xc2,0xb3,0xc,0xc5,0x46,0x85,0x5d,0x86,0x76,0x42,0x4e,0xa0,0xa4,0x64,0x46,0x37,0xaa,0x33,0x7c,0xca,0x54,0xe4,0x9b,0xf4,0x9c,0x2d,0x18,0xe3,0x1,0xe8,0x97,0xf2,0x6,0x53,0x3b,0xac,0x94,0x3a,0xab,0x7d,0x28,0xdc,0x9d,0x7f,0x37,0x84,0xc,0x78,0x53,0xab,0xaa,0x98,0xb6,0x30,0xb,0xb1,0xb2,0x8c,0x19,0xfe,0xf1,0x3e,0xd9,0xdf,0xed,0x11,0xf7,0xff,0x2e,0x30,0x69,0xa5,0xe5,0x1c,0x49,0x60,0x1f,0x10,0x8c,0xab,0x19,0x82,0x9,0x50,0x7,0x8f,0x18,0x6c,0x39,0x6d,0xdf,0x62,0xc6,0x9c,0x4c,0x56,0x5a,0xca,0x49,0x21,0x4c,0x18,0xb3,0x15,0x29,0x93,0xd3,0xaf,0x94,0x42,0xa7,0x92,0x1,0xa1,0x54,0x6e,0xd1,0x5,0xc6,0x42,0x8b,0x8a,0x8b,0x4,0xc2,0xa4,0xd8,0x27,0x86,0x80,0xaa,0xae,0x61,0xad,0x1d,0x1f,0x2,0x28,0x85,0x4a,0x4a,0x74,0xcb,0x3d,0x84,0x10,0xd0,0x2f,0xf7,0x50,0xd5,0xd,0x96,0x7b,0xa4,0x74,0xb2,0xa6,0x47,0x3b,0xdb,0x60,0x1b,0x24,0xb5,0xdd,0xa6,0x36,0x5a,0x6b,0x86,0xc,0xcf,0x12,0x28,0x71,0x8e,0x32,0xcc,0x94,0xd6,0x58,0xee,0xed,0x8c,0xc5,0x1a,0x21,0x50,0xe,0x61,0x8c,0xd9,0x86,0x9b,0xc0,0xb8,0x9f,0x64,0xa3,0xa5,0x87,0x14,0x8a,0x1,0xb,0x10,0xb1,0xb7,0x73,0x95,0xb2,0xe9,0xc2,0x8,0x3f,0x62,0x20,0xa8,0x13,0x4,0xa9,0x91,0xc7,0x7,0x10,0x3e,0x43,0xa6,0xc0,0x39,0x6d,0xd6,0xf4,0xc,0x19,0xa9,0x9,0x55,0xe9,0xa,0x43,0xb7,0x40,0x6c,0x66,0xa8,0xdb,0x79,0x56,0x5d,0x2,0xac,0x84,0xb4,0x6,0x7d,0xbf,0xcc,0x76,0xcf,0xa1,0x5f,0x72,0xb9,0x43,0x8f,0xd9,0x7c,0x8b,0x61,0x6a,0xc8,0xc5,0x45,0x9a,0x9b,0x6b,0xa5,0x52,0x70,0xb,0xda,0x26,0xfd,0x62,0x97,0xd7,0x2b,0x15,0x25,0x75,0x50,0x5c,0x74,0x42,0x59,0x74,0xd,0x5d,0x97,0x39,0x47,0x35,0x86,0x4,0x9f,0x4,0x82,0x71,0xd9,0x62,0x4d,0xd,0xcb,0xf4,0x80,0x24,0xb7,0xbe,0x32,0x9c,0xac,0x9b,0x19,0xac,0x37,0x74,0xd,0x0,0xa9,0xe3,0x54,0x55,0x61,0xe0,0x3c,0xc2,0x64,0x79,0xd,0xde,0xe5,0x76,0x5a,0x33,0x90,0xf5,0xb9,0x99,0xcd,0x73,0xe3,0x6e,0x33,0xdb,0xa0,0x9c,0xc0,0x66,0x7c,0x90,0x41,0x96,0x6a,0xcb,0x10,0xd6,0xc3,0x7,0xcf,0xa,0xc0,0x96,0xe1,0x25,0x6d,0xf7,0xc0,0x8a,0x69,0x2a,0x78,0xa1,0xdc,0xc5,0xaa,0x69,0xe1,0x16,0xbb,0x58,0x2e,0x76,0xd1,0xb4,0x33,0x2,0x75,0x7d,0x87,0xba,0xa5,0xb6,0x62,0xc7,0xad,0xd0,0x4,0xa8,0x55,0x8e,0x43,0x48,0xed,0xd6,0x66,0xe8,0x9,0x4e,0x36,0xe3,0xb5,0xcd,0xf0,0xf5,0x53,0x4d,0x72,0xb,0x47,0xb0,0x69,0xe0,0xbc,0x83,0xae,0x6a,0x2c,0xf7,0x76,0xa0,0xb5,0xc6,0x6c,0x63,0x1b,0x52,0x52,0x69,0x49,0xf4,0x7e,0xa5,0xcc,0x8a,0xf6,0x47,0x80,0x7,0x17,0xd9,0x70,0x21,0x4a,0x56,0x9a,0x82,0x2d,0xcc,0x91,0xf2,0x31,0x9b,0xd9,0x6,0xaf,0xc7,0x0,0xef,0x25,0xb4,0xae,0x72,0xce,0x63,0xca,0xe1,0x4b,0x51,0xf,0x80,0x80,0x35,0xfd,0xca,0x31,0x58,0xd5,0x3a,0x5f,0xd7,0x53,0xd1,0x4d,0x52,0xc7,0xab,0xaa,0xca,0x76,0x5e,0x17,0x23,0xfa,0x7e,0x89,0x8d,0xad,0x23,0x59,0x21,0x3b,0x9b,0x6f,0xf2,0x83,0xa7,0x31,0x1e,0x20,0xa9,0x7e,0x3,0x5b,0xbe,0xfd,0x24,0xce,0x23,0xc1,0xbe,0x1c,0xd7,0x80,0xf1,0x21,0x42,0x3c,0xe4,0x21,0x4f,0x99,0x32,0x65,0xca,0x94,0x29,0x53,0xe6,0xef,0x37,0x45,0x1,0x58,0xa6,0x4c,0x99,0x9f,0xd9,0x9c,0xbd,0xe3,0xdd,0xa4,0x0,0xc,0xa9,0x48,0x22,0x4c,0x7c,0x98,0x31,0x2b,0x5f,0x48,0xa9,0xa2,0xc6,0x52,0x0,0xe,0xd2,0x4f,0xb0,0x6f,0xc,0x14,0x17,0xf9,0x46,0x3a,0x3,0xc1,0xc,0xe3,0x8,0x36,0x91,0xea,0x2e,0x66,0x5,0x5d,0x56,0xfc,0xc5,0x51,0x5,0x26,0xa5,0x1e,0x5b,0x4b,0x19,0xda,0x65,0xe5,0xdf,0x34,0xb7,0x4e,0x2a,0x2e,0xf1,0xf0,0xb9,0x30,0x23,0xdd,0xcc,0xa4,0xd7,0xc4,0x38,0xb6,0x18,0xa6,0x1b,0x26,0x80,0xd5,0x85,0x9e,0xac,0x8f,0x31,0xfa,0xfc,0xfe,0x29,0xf7,0x4f,0x29,0x52,0x3f,0xc5,0x40,0xbf,0x93,0x6e,0x10,0x25,0x43,0x9,0x52,0xdc,0x50,0x9b,0x70,0xce,0x43,0xf,0x31,0xab,0x13,0x81,0x11,0x90,0x4c,0x33,0x1,0x43,0x60,0xa0,0x87,0x31,0x57,0x70,0xaa,0x90,0x24,0x58,0x91,0x2c,0xd2,0x62,0xb4,0xe3,0x4e,0xe0,0x58,0xda,0xb6,0x72,0x6a,0xd7,0x4c,0x37,0x68,0x93,0xbc,0xc4,0x69,0x17,0x6f,0xda,0xb6,0xa3,0x95,0x6c,0x6c,0x27,0xde,0xf,0xf5,0x56,0xca,0x5d,0x56,0xde,0x33,0x1e,0x28,0x2,0xc9,0xf2,0xc4,0xc9,0xfb,0x1c,0x6c,0x10,0x8e,0x99,0x33,0xc9,0x49,0xeb,0xf2,0xfa,0xc,0x29,0xb6,0xa1,0x63,0xcc,0xd2,0x72,0xd6,0x62,0x67,0xe7,0xda,0x8,0x9d,0xbc,0x29,0x27,0xef,0x21,0xb3,0x75,0xfc,0x54,0x56,0x0,0xd2,0xbe,0xf4,0xfb,0x32,0x1,0xa9,0x24,0x22,0xed,0xdf,0x51,0xed,0x29,0x32,0x28,0xa4,0xd2,0x9f,0x90,0xcf,0x87,0x98,0xb3,0xeb,0x44,0xce,0x63,0x9b,0xe6,0x77,0x26,0x7b,0xfc,0xa,0x78,0xe,0x31,0x2b,0x52,0x63,0x8c,0x30,0xac,0x48,0x4b,0xd,0xb3,0xce,0x98,0x9c,0x11,0x9a,0x0,0x83,0x35,0x3,0xbc,0xb3,0xb9,0x31,0xd7,0x7b,0xcb,0x4a,0x41,0x87,0x18,0x81,0xe5,0xde,0xf5,0xdc,0x5c,0x9b,0x81,0x14,0x2b,0xe,0x83,0xa7,0xfc,0x4e,0x33,0x74,0x18,0xb8,0x88,0x43,0xeb,0x2a,0x2b,0xf3,0x28,0x36,0x80,0x6c,0xad,0x86,0xa1,0x23,0x59,0x9b,0xfb,0xdc,0x4e,0x9b,0x33,0xc,0x19,0xe0,0x64,0xc0,0x91,0x9a,0xba,0x27,0x4a,0xe1,0xe0,0x3,0x15,0x2b,0x48,0x82,0x64,0xfd,0x72,0xf,0x52,0x2a,0x7a,0x60,0xa1,0x58,0xd1,0xcc,0xed,0xca,0xd6,0xe,0xb9,0x4,0x45,0x4a,0x85,0xbe,0x5b,0xf0,0x32,0x48,0x68,0x4d,0xed,0xcb,0x9,0x24,0x4d,0x55,0xbd,0x76,0xe8,0x31,0xc,0xdd,0xca,0xb5,0xab,0xef,0x16,0xfc,0xbb,0x21,0x97,0x6b,0xc4,0x18,0xb3,0xba,0x92,0x94,0x94,0xb4,0xed,0x9c,0xb3,0x18,0xba,0x8e,0xce,0x25,0xde,0xcf,0x5a,0x33,0x5c,0xe5,0xeb,0x76,0x7a,0x40,0x91,0xb2,0x54,0xa7,0xd6,0x4f,0x0,0x70,0xde,0xd2,0x32,0x85,0xc0,0xdb,0x6e,0x40,0x60,0xe5,0x1a,0x29,0xf3,0x38,0x93,0x90,0xf3,0xe4,0x8,0x22,0x87,0xbc,0xbc,0xce,0x59,0x98,0xbe,0xe3,0xe2,0x10,0x2a,0x89,0x49,0x79,0x78,0x82,0xbf,0x4b,0xa4,0x52,0xd4,0xa8,0xab,0x6b,0xbe,0x8e,0x87,0xc9,0x43,0xe,0x2,0x83,0xc9,0x62,0x6b,0x59,0xfd,0x97,0x8e,0xb3,0x74,0xac,0x8,0x41,0xdb,0x4b,0x2a,0x2,0x92,0x60,0xf5,0x9f,0xb3,0x6,0xd6,0x98,0xdc,0xc4,0x1c,0x73,0x26,0xec,0x18,0x7b,0x90,0xa2,0x26,0x8c,0xe9,0xf3,0xb6,0xf0,0x9e,0xca,0x3b,0xfa,0xe5,0xde,0xd8,0x0,0xcd,0xca,0x39,0xcd,0x80,0x2d,0x78,0xcf,0x56,0xe8,0x11,0x22,0x2b,0x5d,0xf3,0x77,0x83,0x5b,0xd9,0x67,0x9,0x2e,0x7a,0xe7,0x38,0x13,0xd0,0x8e,0xe7,0x12,0xb7,0x28,0x23,0x46,0x18,0x93,0x54,0x8a,0x54,0xfc,0x92,0x8a,0x43,0x92,0x75,0x3c,0x78,0xc7,0xd0,0x7b,0xcc,0x8e,0x15,0x10,0x2b,0xf,0x69,0x4c,0xbf,0xcc,0xc0,0x30,0x6,0x4f,0xc5,0x1f,0x75,0x8d,0xa6,0x9d,0x41,0x2a,0xc5,0x4d,0xde,0xf4,0xa0,0x40,0x69,0xc5,0x39,0x8f,0x63,0xd1,0x56,0x2,0xde,0xe3,0xb3,0x81,0xd5,0xea,0x8f,0x11,0x96,0x93,0x6a,0x78,0xb9,0x77,0x1d,0xcb,0x9d,0x2b,0xe5,0xe2,0x5b,0xa6,0x4c,0x99,0x32,0x65,0xca,0xbc,0x3,0x53,0x14,0x80,0x65,0xca,0x94,0xf9,0x99,0x4d,0xb2,0x51,0x41,0xa,0x44,0x17,0x27,0xd,0xad,0xac,0x64,0xe3,0x9b,0xc3,0xc4,0x4,0x13,0xd0,0xf3,0xce,0x65,0x66,0xe3,0xbd,0xcf,0x6a,0xa2,0xa4,0x86,0x4b,0x39,0x5d,0x63,0x1b,0xed,0x58,0x90,0x91,0xb2,0x4,0x63,0x4c,0x4d,0xbf,0xa3,0x8d,0x56,0x65,0x98,0x38,0x81,0x51,0x98,0x96,0x4e,0x50,0x63,0x61,0xba,0xf9,0x4b,0xb6,0x3c,0x25,0xb9,0xf1,0x57,0x33,0x40,0xe4,0x6c,0x30,0x21,0x25,0x44,0x8,0x63,0x61,0x49,0x60,0x80,0x7,0xb0,0x92,0x47,0xb3,0xaa,0x6d,0x52,0x0,0xa2,0x34,0xa2,0xa,0x79,0x9d,0x92,0xdd,0x91,0x32,0xd2,0x64,0x6,0x6b,0x54,0xec,0x21,0x56,0xda,0x82,0x95,0x5e,0x55,0x9e,0x80,0x95,0x94,0x80,0xc8,0x37,0xed,0xd3,0x2,0x8e,0xa9,0x1d,0x3a,0x38,0x8f,0x18,0x5,0x54,0x52,0x66,0xa4,0xf7,0xc5,0x98,0xd,0x38,0x16,0x6f,0xd0,0xfb,0x25,0x85,0x50,0xde,0x1e,0x29,0x80,0x3e,0x8c,0x50,0x30,0x17,0x28,0xac,0x28,0x4a,0xc0,0x37,0xbf,0x7a,0x84,0xb7,0x2b,0xfb,0x58,0x64,0x8b,0x68,0x6e,0xad,0xe4,0xd7,0x25,0x50,0xb2,0xa2,0xc2,0xc4,0xa8,0xe,0xd9,0x9f,0x31,0x37,0xb6,0x20,0xc7,0x9c,0x73,0x8,0x8c,0x65,0x25,0x29,0x1b,0x71,0xa,0x1,0x3,0xe7,0x28,0x62,0x52,0x70,0x12,0xbc,0x87,0x1f,0x16,0x80,0x28,0x5f,0x8b,0x6f,0x35,0x63,0xf3,0x35,0x43,0x9,0x29,0xe9,0x8f,0xbc,0x97,0xb2,0xbd,0x33,0xd2,0xf9,0x21,0xf9,0x7c,0x49,0xaa,0xd0,0x4,0x7f,0xc4,0x4,0x60,0x4b,0xa9,0xc6,0xde,0x1a,0xde,0x57,0xde,0x79,0x86,0x80,0x1,0x31,0xca,0xb1,0x78,0x86,0x81,0x39,0x41,0x23,0x82,0x25,0x9,0xc,0x5d,0x7e,0xe3,0x27,0xa8,0x9b,0x19,0xa9,0xb5,0x66,0x54,0xca,0x30,0xf4,0xb,0xcc,0x36,0xb6,0xa1,0x18,0x98,0x78,0x86,0xf7,0x55,0xdd,0x50,0xd1,0x2,0xdb,0x75,0x93,0x4d,0xd5,0x39,0x9b,0xa1,0x8c,0xe9,0x96,0xb0,0x5c,0x7a,0xa0,0xab,0xa,0x8b,0xdd,0x6b,0x9c,0xf,0xe8,0xb9,0xad,0x76,0x40,0x33,0x9b,0xa3,0x69,0x48,0x69,0x95,0xca,0x33,0x94,0xaa,0xa8,0x9c,0xc1,0xc,0xe8,0xf6,0x76,0x11,0x82,0x47,0xa1,0x82,0x73,0x7a,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0xdd,0xce,0x32,0x6c,0x32,0xa6,0xe7,0x68,0x4,0xc9,0x20,0x47,0x70,0x76,0x28,0x29,0xb3,0xaa,0xba,0xcd,0x96,0xf7,0x94,0x77,0x67,0x4c,0xcf,0xcd,0xac,0x54,0x2e,0x51,0xb7,0x33,0xb6,0x91,0xe,0xc,0x5c,0xa9,0x19,0xb8,0x5b,0xec,0x2,0x10,0xb0,0x43,0xcf,0xf,0x14,0x54,0x7e,0xf8,0xa0,0xab,0x26,0xdb,0x45,0xed,0xd0,0xe5,0xed,0x6f,0x4d,0x9f,0xdb,0x73,0xeb,0x86,0x54,0x7e,0x52,0x2a,0x5a,0xbf,0x76,0x6,0xef,0x2c,0x86,0x1e,0xb9,0xc,0x9,0x18,0x6d,0xc7,0x75,0xd3,0x60,0xf7,0xfa,0x55,0x78,0xef,0xd0,0xb4,0xf3,0x9,0x98,0x33,0xa8,0x9b,0x36,0x3f,0xb4,0x90,0xdc,0xc8,0x5b,0xd5,0x4d,0xbe,0x56,0x78,0x6f,0xa9,0x21,0xd8,0x5a,0x84,0x18,0x73,0xf1,0x10,0x20,0xd0,0x2f,0x17,0x94,0x7b,0xc8,0xc0,0x2d,0xf2,0x76,0x49,0x2a,0x36,0xa5,0x36,0x60,0xc3,0x0,0x6f,0x1d,0x35,0xc2,0x73,0x86,0x63,0xc8,0xc0,0xd6,0x41,0x71,0xd1,0x5,0x59,0xaf,0x67,0xe8,0xfb,0x25,0xaa,0xaa,0xce,0x2d,0xc8,0xe9,0x61,0x8f,0x10,0x12,0x75,0x3b,0x83,0xe9,0x97,0xc,0xfd,0x3c,0x6c,0x1c,0xf2,0xba,0x2a,0x2e,0xa0,0x52,0xba,0x62,0xb5,0x69,0xb,0x3b,0x4c,0x81,0x73,0xcf,0xd7,0x3b,0x7a,0x28,0x94,0xde,0x23,0xc7,0x2f,0xf0,0x71,0x57,0x37,0x33,0x74,0xac,0x24,0xcc,0xf1,0xb,0xc,0x62,0xd3,0x75,0xb7,0x5f,0xec,0xae,0xb4,0xd9,0x27,0x6b,0x77,0x33,0x9b,0xe7,0xed,0xa4,0x39,0x7f,0x52,0x48,0x5,0xa9,0x34,0x36,0x36,0x8f,0xa0,0x5b,0xee,0xc2,0xe,0x3,0xfa,0x7e,0x41,0x65,0x22,0xbc,0x3d,0x8d,0xae,0xd0,0xce,0x36,0x72,0x8e,0x61,0x33,0x9b,0xc3,0xf4,0x1d,0x35,0x3,0x3b,0x83,0x18,0x22,0x9c,0x95,0x13,0xdb,0x38,0x72,0x7b,0x70,0x88,0x81,0xb2,0x23,0x43,0xe0,0x66,0xf7,0xd5,0x7,0x2f,0xa6,0xef,0x8,0xdc,0xb2,0x7d,0xd8,0x9a,0x1,0xb3,0x8d,0x2d,0x3a,0xff,0x38,0x33,0x30,0xfa,0xc8,0xaa,0x5e,0x3f,0xc9,0x6e,0x94,0xe3,0x77,0xaf,0x90,0xa3,0xaa,0x7b,0x8d,0xe2,0x2f,0x95,0xa6,0x94,0x29,0x53,0xa6,0x4c,0x99,0x32,0x65,0xde,0x99,0x29,0xa,0xc0,0x32,0x65,0xca,0xfc,0xcc,0xe6,0xa6,0xdb,0xef,0xe5,0x20,0xf5,0x90,0x1,0xdd,0x3e,0x42,0xb8,0xda,0xdc,0xcb,0x20,0x46,0x2a,0xb6,0xfa,0x9,0x99,0x6d,0x72,0x49,0x39,0x4,0x56,0x4,0x25,0xa5,0x97,0x94,0x8a,0x83,0xf4,0x45,0x56,0x0,0xe6,0x9b,0x8f,0x10,0x50,0x35,0xed,0x8a,0x8a,0x48,0x24,0x28,0xc8,0x1,0xee,0x92,0x2d,0x6e,0x9,0x3c,0x69,0x56,0x1f,0x26,0x70,0x98,0x8a,0x41,0x52,0x66,0x5e,0x4,0xe5,0x16,0xe5,0xfc,0x41,0xb6,0x33,0x66,0x85,0x8f,0x94,0xac,0xe6,0x88,0x19,0xa8,0xa5,0xa6,0x4b,0x6a,0xf7,0x1d,0xb,0x51,0x24,0xe7,0x87,0xa5,0x36,0xcc,0xb1,0x9d,0x78,0xf2,0xf9,0xdc,0x96,0x99,0x15,0x19,0x21,0x70,0xb6,0xe1,0xa4,0x65,0x97,0xed,0x98,0x54,0xb0,0x42,0x40,0x4e,0x48,0xc5,0x10,0x91,0x6e,0x2c,0x33,0x58,0xf3,0x3e,0xc7,0xad,0x8f,0x99,0x8b,0x4,0xe2,0x48,0x95,0x48,0xeb,0x97,0x6e,0xdc,0x23,0xc3,0x1a,0x5a,0x26,0xca,0x40,0x9c,0x2a,0xa,0x63,0x8c,0x4,0x56,0xc3,0x8,0xe3,0x90,0xcb,0x2,0x26,0x6d,0xae,0xb4,0x14,0x63,0x98,0x3c,0x67,0xb1,0x65,0x15,0xe3,0x4,0xd4,0x8a,0x49,0xc3,0xaf,0x98,0x6c,0xdb,0x4,0xfd,0xd2,0xef,0xc9,0x74,0x3c,0xc4,0x7d,0x65,0x26,0x13,0x33,0x19,0x26,0xb0,0x97,0x0,0xa2,0x1c,0x8b,0x1d,0xd8,0x66,0x6e,0xcc,0x80,0xdd,0x6b,0x57,0x20,0x94,0x86,0xf7,0xb6,0x28,0x0,0xdf,0x62,0x36,0x8f,0xdc,0x80,0x13,0xa7,0x6e,0x42,0xce,0xf7,0x2,0xb2,0x75,0x53,0x8a,0x49,0x66,0xe5,0x44,0xa5,0x3a,0x55,0x7e,0x52,0xc6,0xa4,0xca,0xc0,0x4d,0x48,0x99,0xdb,0xbe,0xc7,0x7f,0x5b,0x85,0x27,0x74,0xbc,0x70,0x39,0x8d,0xd2,0x70,0x6e,0x2c,0x71,0x48,0xe7,0x1,0x65,0x9d,0xd5,0x18,0x86,0x8e,0xed,0xfc,0x64,0x25,0x35,0x43,0x87,0xaa,0xaa,0x33,0x44,0x1a,0x96,0xb,0xb6,0x7b,0x7,0x74,0x8b,0x5d,0x78,0x6b,0xb1,0xdc,0xdb,0x41,0x2a,0x1,0x19,0xba,0x25,0x4c,0xbf,0xcc,0x65,0xe,0xa4,0x1c,0x24,0x15,0x9f,0x1d,0xfa,0xfc,0xd9,0x9,0xda,0x69,0x2e,0x52,0x48,0xc7,0x7d,0x5a,0xcf,0xbe,0x5b,0x60,0xe8,0x16,0xd0,0x55,0x85,0x2b,0x97,0x2e,0x62,0x36,0xdf,0x84,0xd6,0x1a,0x2d,0x37,0x16,0xc7,0x89,0x4d,0x5d,0x4a,0x1,0xa5,0x2a,0x6e,0x1c,0x26,0x10,0xef,0xcc,0xc0,0x2a,0xb1,0x1,0xce,0x59,0xd4,0x75,0x8b,0xc5,0xee,0x35,0x34,0xed,0x1c,0x75,0x4b,0xb9,0x77,0x55,0xd5,0x64,0xc5,0x59,0xca,0x6e,0xb3,0x66,0x40,0xb7,0xdc,0x81,0xd2,0x3a,0x2b,0xb9,0x2,0x5b,0x4d,0x53,0xa1,0x3,0xe5,0xde,0x75,0x9c,0x67,0x47,0xf6,0xd6,0xe0,0x1c,0xd9,0x88,0xbb,0x45,0xb6,0xf0,0x46,0xce,0xa1,0xd3,0x55,0x9d,0x1f,0x54,0xf8,0xbc,0xfe,0xc8,0xad,0xb9,0xde,0x59,0x98,0xbe,0x47,0xd5,0x34,0x64,0x6d,0x96,0x12,0x75,0xd3,0xe6,0x7,0x4,0xc9,0x3a,0x9a,0xce,0x47,0x3f,0xc9,0x65,0x9c,0x7e,0x17,0xc4,0x9,0x4,0xc,0xc1,0xc3,0x99,0x1,0xcb,0xc5,0x6e,0xfe,0x3b,0xb5,0x2b,0xd3,0xf7,0xc1,0xd0,0x2f,0xb9,0xfd,0x37,0xa9,0xf1,0x48,0xc1,0xe6,0xad,0xc5,0xd0,0x93,0xfa,0x71,0xe8,0x96,0xc,0xb,0x9,0x36,0xa6,0xd2,0xd,0xba,0x16,0xa4,0x7,0x3d,0x9,0x2a,0x53,0x23,0xb2,0xe9,0x3b,0x56,0xf3,0x79,0x86,0x5a,0x4,0x46,0xbd,0x77,0xfc,0xbe,0xa,0xa6,0x5f,0xe6,0xfc,0xc8,0xbe,0x5b,0x64,0xe0,0xe5,0xb8,0x35,0x3e,0x1d,0xf3,0xd6,0xc,0xac,0x8c,0xa6,0xb2,0x12,0xcf,0x76,0x5d,0xef,0x1d,0xef,0x5f,0x97,0xd5,0x9b,0x4a,0x13,0xc0,0xb5,0x49,0x6d,0xca,0x85,0x2a,0x43,0xbf,0x24,0x7b,0xf6,0x72,0x41,0xd6,0x79,0x41,0xd6,0xf9,0xb4,0x3f,0x10,0x23,0x86,0x61,0x99,0x15,0x98,0x49,0x19,0x98,0xa,0x3f,0xf2,0xff,0xb1,0xfa,0x36,0xb5,0xf8,0x7a,0x6b,0x30,0x30,0x60,0xb5,0x66,0xc0,0xd0,0x2f,0x31,0xf4,0x4b,0x52,0xc5,0x3a,0xb,0x44,0xda,0xef,0xd3,0x58,0x7,0x2,0xbf,0x96,0x95,0x82,0xf4,0xf7,0xb4,0x1f,0xda,0xd9,0x9c,0x1e,0x62,0x29,0x45,0x45,0x26,0x32,0x65,0xfb,0xfa,0x49,0x49,0xd5,0x34,0x7e,0x2,0xf9,0x21,0x4c,0xce,0xbf,0xe5,0x7,0x8,0x53,0xd5,0xae,0x77,0x16,0xdd,0x62,0xa7,0x28,0x0,0xcb,0x94,0x29,0x53,0xa6,0x4c,0x99,0x2,0x0,0xcb,0x94,0x29,0xf3,0xf3,0x3e,0x67,0xef,0x78,0x37,0x9a,0x66,0x96,0x43,0xbd,0x31,0x16,0xd,0x12,0xf4,0xe2,0x1b,0xb1,0xa4,0xc8,0x22,0x98,0xc4,0x39,0x61,0x18,0xf3,0xf7,0x12,0x7c,0x2,0x48,0x8d,0x41,0x37,0xe,0x80,0xae,0xeb,0x31,0x58,0x9e,0x95,0x1c,0x62,0x62,0xeb,0x4d,0x37,0xbd,0x4a,0xab,0xac,0x42,0xa2,0xb0,0x72,0x95,0x95,0x1f,0x19,0x62,0xa9,0x8a,0x55,0x29,0x3e,0x83,0xc7,0xd1,0x92,0x1b,0xb2,0xd5,0x38,0x65,0xf8,0xa5,0x1b,0x36,0x0,0x39,0xd7,0x8,0x13,0x80,0x47,0x37,0xab,0x7a,0xcc,0xc9,0x13,0x63,0x66,0x5e,0xb6,0x1f,0xc7,0xb8,0xa6,0x61,0x57,0x8d,0x96,0x47,0x86,0x6a,0x9,0x34,0x46,0xb6,0xf7,0x86,0x30,0x2d,0x4a,0x19,0xb7,0x77,0x82,0xa4,0x54,0x66,0x22,0x27,0x4a,0xbb,0x4c,0xc7,0xb2,0x8a,0x4e,0x4a,0x95,0x8b,0x30,0x4,0xb7,0x55,0x8e,0xca,0x3e,0x4c,0x9a,0x1a,0x45,0xde,0x27,0xb9,0xd5,0x92,0x33,0xa7,0x30,0x29,0x2c,0x51,0x5a,0xe5,0x9b,0xe6,0xdc,0xd6,0x31,0xb1,0xe1,0x66,0x7b,0xf6,0x24,0xd4,0x1e,0x13,0xb0,0xb7,0x2,0x85,0x27,0x37,0x8a,0xb4,0x4d,0xf4,0xa4,0xbc,0x44,0x8d,0x79,0x7e,0x62,0xb4,0x90,0x61,0x5f,0x41,0x89,0x90,0x49,0xfd,0x28,0xf7,0x39,0x80,0x27,0xea,0x92,0x4,0x1a,0xac,0xc5,0xd5,0x2b,0x97,0x20,0x10,0x11,0x7c,0x44,0xf4,0x43,0x39,0x79,0xf,0x99,0xad,0xe3,0xa7,0x71,0xfc,0xd4,0x99,0x95,0x46,0xec,0xb4,0x7f,0xf3,0xae,0xc0,0x58,0x4c,0x33,0xee,0x2b,0xb6,0xee,0xcb,0x11,0x96,0xc9,0x49,0x9e,0x1a,0x81,0x19,0xce,0x3a,0xe3,0x63,0x2b,0x1d,0x1b,0x4,0xb3,0xc,0x42,0x70,0xd9,0xd2,0x9f,0x5b,0xb3,0xf9,0xb3,0x82,0x27,0x95,0x9d,0xe4,0x86,0x59,0xad,0x2b,0x2c,0xf7,0x76,0x48,0xbd,0xc5,0xaa,0x41,0x2a,0x51,0x20,0xd0,0x4e,0x96,0x59,0x2,0x84,0xba,0xaa,0x73,0xe6,0x5b,0x55,0xd7,0xdc,0xda,0xea,0x8,0x6,0xe,0x1d,0x37,0xb5,0x2e,0xa1,0xb4,0x26,0x55,0x1b,0x22,0x95,0x74,0xf0,0xf5,0x88,0x40,0x5c,0xc8,0xb9,0x86,0xd6,0xa4,0x62,0x8d,0x3e,0x5f,0x1b,0x84,0x10,0x2b,0xad,0xb2,0x4a,0x29,0x2,0x2c,0x7c,0xfd,0x8,0xc1,0x43,0xeb,0x3a,0x97,0x82,0x38,0xb6,0x26,0x3,0x11,0x43,0xb7,0x40,0x88,0x14,0x7,0x20,0xa5,0x42,0xd5,0x34,0xe3,0x75,0x91,0xb7,0x5f,0xb2,0xb6,0x52,0xf3,0x2d,0xbd,0xb6,0x5f,0x2e,0xb8,0x55,0x56,0x61,0xe8,0xa9,0xb0,0xc1,0x3b,0xb,0xe7,0xa8,0x38,0x89,0xd4,0x8e,0xbb,0x94,0x23,0xe7,0x28,0x73,0x4f,0xb0,0xcd,0x39,0x65,0xbe,0x51,0x53,0x2c,0xc7,0x1d,0xf0,0x43,0x81,0x4,0x88,0x9c,0xb3,0x30,0xa6,0x27,0xe8,0xc8,0x2d,0xc0,0x4a,0x6b,0xca,0x5f,0x54,0x12,0x4a,0xd7,0xa4,0x4c,0x4e,0x56,0xec,0xf4,0x40,0x64,0x52,0xa0,0x21,0x79,0xbf,0xa7,0x6b,0xa3,0x52,0x8a,0xad,0xc0,0x7d,0xce,0xcb,0x8b,0x93,0xe2,0x97,0x74,0x1d,0xf0,0x6c,0x77,0xf5,0x6c,0x6d,0x75,0x96,0x72,0x1c,0x23,0x22,0x96,0xbb,0xd7,0xf2,0x77,0xc,0xd9,0xbe,0x1d,0xaa,0xaa,0xe2,0x87,0x38,0x81,0x23,0x26,0x62,0x56,0xea,0xa5,0xe3,0x48,0x4a,0xfa,0xec,0xaa,0x6e,0xd9,0x56,0xdc,0xc3,0x1a,0x3,0xef,0xa8,0x5c,0xc3,0x59,0x43,0x16,0xe3,0xac,0x26,0x75,0x19,0xea,0xd,0x5c,0x8e,0x21,0x55,0x7a,0xa0,0x44,0xfb,0x31,0x7d,0xef,0x0,0x93,0x78,0x7,0x3e,0x6e,0xfa,0x6e,0x91,0x41,0xf3,0xb4,0x60,0x26,0x78,0x82,0xb1,0x31,0x46,0x52,0xd9,0x21,0x66,0x1b,0x71,0x7a,0xd8,0x35,0xb5,0x29,0xa7,0x3f,0xa7,0xed,0x19,0x2,0xef,0x4b,0x29,0xc8,0x42,0xcc,0xf0,0x94,0xa0,0xf7,0x1e,0x95,0x78,0x64,0x9b,0x3c,0xdb,0xe1,0x9d,0x45,0x55,0x35,0xb9,0x8d,0xb9,0x6e,0xda,0x31,0x2,0x22,0x7d,0x57,0xf2,0xf7,0x5a,0x8,0x1,0x43,0xdf,0x65,0x58,0xaa,0x75,0x95,0x1b,0x87,0x53,0xee,0x65,0x6a,0x7c,0xa6,0xaf,0xbe,0xd5,0xf2,0x8f,0x51,0x1,0x39,0x29,0x8b,0x5a,0xb1,0xfd,0x87,0x6c,0x1,0xf6,0x21,0x72,0x9,0x48,0x1,0x80,0x65,0xca,0x94,0x29,0x53,0xa6,0x4c,0x1,0x80,0x65,0xca,0x94,0xf9,0xb9,0x9e,0x33,0xb7,0xdd,0x8d,0x76,0xb6,0x91,0x9f,0xe6,0x67,0xe0,0x94,0x2c,0x52,0x62,0x2c,0xcc,0x20,0xc8,0x27,0x73,0x38,0xf9,0xd8,0x4e,0xe8,0x73,0x31,0x6,0xdd,0x88,0xca,0x6c,0x9d,0x4a,0x20,0x8d,0xda,0x79,0xb9,0x20,0x84,0x3,0xc6,0xb5,0xae,0x18,0xfe,0x88,0xdc,0xb0,0x28,0x85,0x80,0xe6,0x1b,0x14,0x7a,0x1f,0x86,0x77,0x5a,0x67,0x68,0x98,0x40,0x84,0xe4,0x9b,0xf6,0x54,0x2a,0x92,0x6e,0x1c,0x33,0x3c,0x62,0xeb,0x62,0x56,0xf4,0x31,0xec,0x4a,0x2a,0xbc,0xd4,0xb4,0x9,0x90,0xa5,0x2a,0x29,0x26,0xe8,0x26,0x9c,0xa,0x4c,0x92,0x22,0x2d,0x4c,0x94,0x51,0x23,0xab,0x13,0xb9,0xed,0x18,0x49,0x61,0xc4,0x37,0x47,0xba,0xaa,0x79,0x1d,0x54,0x6,0x83,0x63,0x9b,0x72,0xc8,0xaa,0xbd,0xc0,0xd,0xc9,0x48,0x8a,0x3e,0x2e,0xfa,0x48,0xcb,0x98,0xb2,0xd4,0x14,0xb7,0x44,0x4e,0xf3,0xd,0x93,0xc5,0x5a,0x29,0xc5,0x4a,0x13,0xe4,0x36,0x5f,0x52,0x1,0x4a,0x84,0xd4,0xd0,0x9b,0xb3,0xd8,0x30,0xc9,0xab,0x92,0xbc,0x4e,0xac,0x48,0xc4,0xa8,0xf6,0x9b,0x4e,0x98,0xe4,0x39,0x8a,0x89,0x65,0x3b,0xa9,0xff,0xa6,0xd6,0xe3,0x74,0xe3,0x98,0xda,0x2c,0xe3,0xc4,0x46,0x9c,0x5b,0x7e,0xf7,0xe7,0x19,0x62,0x54,0xd,0x62,0x9f,0x7d,0x38,0xad,0xa3,0x35,0x3d,0xae,0x5f,0xbd,0xc,0x1f,0xc8,0x66,0xed,0xcd,0xb2,0x9c,0xbc,0x87,0xcc,0xf6,0xb1,0x53,0x38,0x7e,0xf2,0xc,0xc6,0x86,0xcf,0x64,0x7f,0xf,0x93,0x56,0x68,0x3a,0x23,0xd4,0xb4,0x78,0x6,0x23,0xfc,0x27,0x45,0x27,0x95,0x58,0x44,0x56,0x62,0x66,0x75,0x60,0xb2,0x9c,0x13,0x31,0xa7,0x7d,0xe4,0x5c,0xce,0xe3,0x4c,0xef,0x4f,0xad,0xc3,0x9a,0x14,0x69,0x29,0xc3,0x53,0x49,0x4,0x1f,0xc8,0x6e,0xcb,0xd7,0x15,0x29,0x15,0xfa,0xe5,0x1e,0xf6,0xae,0x5f,0x41,0xc,0x3e,0x2b,0xf8,0x28,0xcb,0x8c,0xac,0x90,0x43,0xbf,0xcc,0x56,0x4e,0x6a,0x39,0x75,0xb9,0x2c,0x44,0x30,0xb8,0x57,0xc,0x10,0x53,0x96,0x5e,0xdb,0x6e,0x10,0xc,0x4c,0xe7,0x0,0xb7,0x12,0x27,0xc0,0x63,0x19,0xe0,0xf4,0xcb,0x3d,0xc4,0xe0,0xd1,0xb4,0x73,0x8,0x1,0xb4,0x5c,0x90,0xb0,0xba,0x2d,0xc6,0x12,0xa1,0xb1,0x18,0x89,0x40,0x13,0x65,0xcc,0xd,0x59,0xdd,0x56,0x37,0x2d,0x65,0x8,0x32,0x18,0x1d,0x73,0x45,0x5d,0x2e,0xb8,0x10,0x2,0xe8,0x97,0xa4,0x3e,0x1c,0xfa,0x8e,0xc1,0xe9,0x8,0x8c,0x92,0xb5,0x7f,0xda,0xb8,0xbc,0x5c,0xec,0x62,0xe8,0x16,0xdc,0xaa,0xdc,0x42,0x71,0xb1,0x8,0x4,0x48,0xcd,0x87,0xd4,0x6c,0x4e,0xd0,0xd6,0x5a,0x43,0xed,0xc8,0xc6,0xe4,0xa2,0x87,0x8a,0x1,0x90,0xd8,0x67,0x85,0x4d,0x6a,0xe9,0xa4,0xbe,0x9b,0x3e,0xb0,0xa0,0x52,0x11,0xca,0xc4,0x4b,0x6d,0xc5,0x40,0x24,0x38,0xc5,0xb0,0x32,0x95,0xb7,0x8c,0xf,0x4d,0x18,0x46,0x45,0x4f,0x9f,0xc7,0xc7,0x44,0xca,0x6d,0xb4,0x76,0xa0,0x3c,0x40,0x1f,0xd0,0xb4,0x73,0x34,0x2d,0x29,0x2e,0x55,0x55,0x73,0x61,0xd2,0xd8,0x7c,0x9b,0x4a,0x82,0x42,0xc8,0x3e,0x54,0xb2,0x61,0xf3,0xbe,0x4d,0x56,0x75,0xe7,0x2c,0xa4,0x50,0x19,0x48,0x7a,0xb6,0x8a,0xa7,0xeb,0xb3,0xe3,0x7,0x4d,0xc1,0x7b,0x54,0x55,0x8d,0xe0,0xdc,0xc4,0x12,0xae,0x56,0xae,0xf3,0x69,0x7f,0x99,0xa1,0x23,0x4b,0x77,0x47,0xd7,0x9b,0x4,0x6f,0xff,0x7f,0xf6,0xde,0xf4,0xc9,0x96,0xb3,0x3e,0x13,0x7c,0xde,0x2d,0xf3,0x9c,0xaa,0xba,0x8b,0xee,0xa2,0xe5,0x6a,0x5f,0x90,0xd0,0x86,0x4,0x88,0x45,0x60,0xcc,0xe,0x36,0x6,0x6,0x43,0x77,0xbb,0xc3,0xf6,0x78,0x3a,0x66,0xa2,0xbb,0xe7,0xcb,0xfc,0xf,0xfe,0xb,0xe6,0xc3,0xc4,0xc4,0x84,0x63,0xa6,0x27,0x3a,0x3c,0xee,0xee,0xb1,0xc7,0xb8,0xdd,0xb4,0x31,0x66,0x6b,0x30,0x8b,0xd,0x18,0x21,0x4b,0x20,0x90,0x40,0x8,0xb4,0x2f,0xf7,0xea,0xae,0x75,0xab,0xce,0xc9,0xcc,0x77,0x99,0xf,0xbf,0x25,0xf3,0x54,0xd5,0x15,0xc2,0xe6,0x46,0xe0,0x1b,0xef,0x43,0x8,0x55,0x9d,0x3a,0x27,0xd7,0x37,0xf3,0xe8,0x7d,0xf2,0x59,0xe2,0x40,0xf6,0x69,0x22,0xa4,0x83,0x36,0x3d,0xcb,0x77,0x82,0x3c,0xb0,0x9a,0x5e,0x73,0xd3,0xef,0xa2,0xc8,0x19,0xb3,0x5b,0xe7,0x4e,0x6b,0x89,0x8e,0x2c,0x9f,0xe9,0x79,0x2a,0x50,0xe1,0x32,0x1b,0x29,0x6e,0x91,0xac,0xc4,0xa6,0x9d,0xe9,0x3,0x22,0x51,0x6b,0x13,0xa9,0x9,0xce,0xe5,0x8b,0x9a,0x31,0xb8,0x79,0xe6,0x24,0x9c,0xf7,0xf0,0xd,0x95,0xec,0xf8,0x10,0x68,0xdb,0xe4,0x61,0xd6,0x84,0xf4,0x9f,0xb6,0x79,0x4f,0x9e,0x16,0x8c,0xdf,0x79,0x30,0x2b,0xf,0x8e,0x72,0xe1,0xc,0xc0,0xcd,0x33,0xd8,0xde,0x3c,0x5d,0x6f,0xbe,0x15,0x15,0x15,0x15,0x15,0x15,0x95,0x0,0xac,0xa8,0xa8,0xf8,0x65,0xc6,0x35,0x5c,0x2,0x92,0x35,0xe4,0x7f,0x65,0xfa,0xb7,0xa2,0xf0,0x1b,0x9b,0x0,0xc7,0x5c,0x36,0xe7,0x1c,0xe5,0x1c,0xf1,0x44,0x92,0x26,0x2c,0x11,0xc6,0x1a,0xd,0x1a,0x97,0x96,0x42,0x23,0x45,0x22,0x28,0x9a,0xf3,0x4,0x50,0x89,0x88,0x28,0x70,0xc8,0xaa,0x2a,0x96,0x5e,0x9a,0x9c,0x84,0xd0,0x12,0xf1,0x67,0x3d,0x11,0x75,0x39,0xf1,0x44,0xbe,0xa8,0x1d,0x56,0xb3,0xaf,0x98,0x94,0x72,0x6c,0xc5,0x5a,0xb5,0xe0,0x12,0x59,0x41,0xb9,0x46,0xa3,0x3d,0x51,0x26,0xba,0x42,0x54,0x69,0x6e,0x9d,0x2a,0x1f,0x9,0x96,0x27,0xb5,0xa2,0xa8,0x33,0xc6,0xc0,0xf1,0x4,0x52,0xa6,0x46,0x62,0xd1,0xd5,0xe5,0x1a,0x4c,0x88,0x2f,0xb1,0xd,0x2b,0x23,0x49,0x8d,0x99,0xac,0x1e,0xcc,0x29,0x69,0xb8,0xfc,0x98,0x95,0x37,0x2a,0x48,0xec,0x84,0x6c,0x95,0xe5,0x58,0xc7,0x99,0x88,0x9c,0x3b,0x45,0x25,0xbe,0x99,0x49,0x11,0x3a,0x2f,0x96,0x15,0x81,0xc6,0xec,0x6c,0x17,0xce,0x93,0xdf,0xc7,0x63,0x31,0x12,0x9f,0x46,0xed,0xdd,0x63,0x6e,0x63,0x61,0x32,0xb6,0xa8,0xa,0xc,0x13,0xc5,0x24,0x0,0xfd,0xcc,0x98,0x21,0x38,0x99,0x48,0x4e,0x8f,0xcb,0xe4,0x77,0x7d,0x41,0x3b,0x5a,0x1,0x94,0x4c,0x36,0x6d,0x6e,0x2,0x3d,0xfd,0xf2,0x71,0xb2,0x6e,0x17,0x83,0xdc,0x6f,0xd5,0x8b,0xf7,0x2,0xd8,0xb8,0xec,0x72,0x5c,0x76,0xe4,0x4a,0x55,0x72,0x96,0x15,0x95,0xe7,0xc4,0xa6,0x3d,0x55,0xfc,0x58,0xb3,0x43,0xf9,0x33,0x8e,0xb,0x39,0xf7,0x74,0xde,0x93,0xaa,0x6,0x85,0x54,0xb4,0x86,0xaf,0x7,0x6b,0x28,0x3f,0x33,0x67,0x2d,0xf7,0x90,0x2c,0x3e,0x51,0xad,0x92,0x45,0x9d,0x14,0xb0,0x8e,0x7f,0x86,0x31,0x4c,0x9a,0x79,0x78,0x56,0x38,0x49,0xe1,0x46,0x2e,0x49,0x33,0xce,0x44,0x1d,0xe7,0xb8,0x2d,0x38,0x27,0x22,0x5c,0x84,0x44,0xc,0x4d,0xab,0x84,0x9b,0xe4,0x7c,0xd2,0x43,0x1,0xaf,0x64,0x9a,0x28,0xb3,0x32,0x93,0x1f,0x63,0xc9,0x90,0x63,0x22,0x6d,0xae,0xa,0xb1,0x69,0xf1,0x90,0xe6,0x5d,0xf2,0x71,0xd3,0x22,0x9,0x56,0x91,0xb9,0x40,0x99,0x82,0x80,0x41,0x68,0x5a,0x5a,0xe,0x5f,0xa3,0x74,0x8f,0xb4,0x4c,0xf0,0x44,0x6e,0x10,0xee,0xc6,0x87,0x18,0x4c,0x60,0x79,0x17,0x54,0x3d,0x16,0x9a,0x76,0x24,0x83,0x98,0x5c,0x6f,0x42,0xab,0xf7,0xbe,0xa6,0x69,0xe1,0x43,0x43,0xcd,0xae,0x0,0x7c,0x33,0xe6,0x2,0x96,0x49,0x63,0xf8,0x48,0xf0,0xd0,0xb6,0x18,0x4b,0xc7,0xcb,0xb3,0x4a,0x5b,0x33,0x58,0xd,0x94,0x9c,0xc4,0xe4,0xde,0x83,0x52,0x34,0x2,0x1,0xa0,0x76,0xd9,0x91,0xec,0x1f,0x33,0x7,0x53,0x1c,0xb0,0xbe,0xef,0x0,0xfa,0xe5,0x2,0xed,0x7c,0xae,0xea,0xea,0xc2,0x24,0xb3,0xb5,0x16,0x7d,0xbf,0x44,0xd3,0xce,0x99,0xa8,0x25,0xf2,0x75,0xb6,0xbe,0x41,0x44,0x34,0x17,0x81,0x8c,0xe3,0x63,0x8c,0x98,0xd0,0xa2,0xa8,0x10,0x38,0x7b,0xd6,0xb0,0x22,0xb4,0xa3,0xe3,0x94,0x13,0x9c,0xb,0xaa,0xc4,0x6,0x17,0x6a,0x58,0x37,0x3e,0x8c,0x12,0x75,0x9d,0xf,0xd,0x93,0xc2,0xa3,0xfa,0x4f,0xca,0x9e,0x44,0x5,0xaf,0xcd,0xe4,0x4c,0xbe,0x1a,0xeb,0xd0,0xb6,0x73,0x6e,0xa0,0x6f,0x91,0x62,0x44,0xd3,0xce,0xe8,0x7b,0x33,0x45,0x6e,0x2,0xe,0xe3,0x98,0x71,0x5e,0x23,0x21,0x7c,0x18,0x95,0x8c,0x42,0x42,0x7b,0xdf,0xe8,0xb6,0xb5,0x6b,0xeb,0xac,0xca,0xc,0x5a,0x28,0x92,0xd8,0xae,0x4c,0x16,0xe3,0xe,0x21,0xd0,0x58,0x6f,0x9a,0x16,0x86,0x15,0x9f,0xd3,0xef,0x4b,0x22,0x9a,0x83,0x7e,0x7f,0x4b,0xc6,0xea,0x74,0xfc,0x84,0xd0,0x60,0xc6,0x16,0xf7,0xcc,0xfb,0xe8,0xe5,0xa1,0x9a,0x73,0x2b,0xd7,0xfc,0x18,0xcb,0x60,0xc7,0xc2,0xf,0xac,0x3e,0xa0,0x91,0xef,0xda,0xcc,0x44,0xeb,0xd6,0xb9,0x33,0x58,0x9c,0x3f,0x53,0x6f,0xbe,0x15,0x15,0x15,0x15,0x15,0x15,0x95,0x0,0xac,0xa8,0xa8,0xf8,0x65,0xc6,0xb1,0x1b,0x6e,0x43,0xbb,0xb6,0xa1,0xca,0x3f,0xb5,0xac,0xae,0xe4,0x1,0x15,0x25,0xb8,0xa6,0x16,0x5b,0x21,0x15,0xd4,0x22,0xc8,0x93,0xb,0xa7,0x13,0xa0,0xc2,0xc1,0xf0,0xad,0x66,0xf,0x49,0x9b,0xae,0xf5,0x9e,0x9,0x0,0xab,0x61,0xfa,0xd3,0x30,0x7c,0xb1,0xfe,0x8a,0xca,0x8f,0x26,0x4c,0x4e,0x6d,0x6f,0x81,0x5b,0x27,0xa5,0x9d,0x58,0x27,0x3f,0x5,0x6a,0x87,0xcb,0xda,0x1e,0x3c,0x92,0x1e,0x32,0xa9,0x2b,0x20,0xf5,0xc2,0x34,0xcb,0x4e,0xca,0x28,0x9c,0xf7,0x2b,0x93,0xe3,0x69,0xc3,0x2e,0x91,0x5b,0x49,0x9,0xcd,0xcc,0xea,0x14,0x9d,0x24,0x95,0xa2,0xc7,0x46,0x32,0x5,0x8d,0xb1,0xda,0xb0,0x48,0xaa,0x28,0xa7,0xa5,0x26,0xa5,0x80,0x15,0x55,0x44,0x14,0x64,0x6e,0x6d,0xd4,0xbc,0x3d,0xde,0x86,0x92,0xd3,0x6a,0xb,0xaf,0x19,0xf3,0x18,0x65,0x9d,0xd2,0x1e,0x2c,0x39,0x84,0x1a,0xe8,0xce,0x24,0x20,0xc,0x4f,0x48,0x85,0x90,0x35,0x63,0x6e,0xa0,0x75,0x74,0xcc,0x73,0x19,0xf3,0x4,0x35,0x1f,0xe,0xa3,0x42,0x4f,0x1a,0x33,0xa7,0x61,0x91,0xa2,0x9e,0x51,0xb,0x39,0x93,0x7f,0x65,0xa2,0xee,0x1b,0x1b,0x85,0xb,0xcc,0xa,0x25,0x8,0x8c,0xf2,0xc3,0xd5,0x7c,0x41,0x6d,0x98,0x9d,0x28,0x0,0x4b,0xce,0xc8,0x43,0x57,0x2d,0xc0,0xaf,0x44,0x0,0x1e,0x38,0x8c,0xc3,0x57,0x5c,0xd,0x0,0xc8,0x93,0xf3,0x37,0x92,0x7b,0x50,0x72,0xdd,0x4c,0xc8,0xeb,0x29,0xe1,0x87,0x15,0x35,0xb0,0x51,0xb5,0xf,0x71,0x3,0x13,0xa5,0xea,0xc4,0xa2,0x49,0x76,0xe3,0xa4,0x96,0x76,0x6a,0x35,0x9d,0x5e,0x77,0x4e,0x6d,0xb8,0x42,0x2e,0x7b,0x1f,0xd0,0xce,0xd6,0xe0,0xac,0x43,0x68,0x67,0x80,0x81,0x12,0x79,0xa1,0x69,0x11,0x9a,0x19,0x96,0xdb,0x5b,0x58,0xdf,0x77,0x40,0x55,0x4e,0x3e,0x34,0x40,0x1,0xda,0xd9,0x9c,0x1f,0xe,0x90,0x55,0x96,0x8a,0x43,0xe8,0xc1,0x42,0xd3,0xcc,0xb8,0xd1,0xb6,0xe8,0x7a,0xe4,0xa1,0x84,0xe1,0x6c,0x51,0x6a,0x57,0x85,0x12,0x84,0xd6,0x58,0x55,0x56,0xc9,0xe7,0x2c,0x5f,0xb7,0x44,0x46,0x19,0xb6,0x29,0xf,0xe3,0x35,0x8,0x51,0xfe,0x66,0xce,0x64,0xb,0x7c,0xef,0xa1,0xd2,0x20,0x18,0xe8,0x3d,0xac,0x94,0x2,0x58,0xb9,0xe6,0xac,0x46,0x20,0xe4,0x52,0x88,0xdc,0x61,0xf2,0x28,0x34,0xd,0xad,0xc3,0xd1,0x75,0x99,0x12,0xd9,0x53,0x73,0x4e,0xd8,0x38,0x70,0x8,0x4d,0x3b,0x43,0x8c,0x3,0x91,0x52,0x25,0xed,0x20,0xff,0xa0,0x4,0x9a,0xe4,0xc2,0x49,0xe6,0x9d,0xe3,0x7b,0xae,0xf3,0x1,0x2e,0x50,0xcc,0x42,0x8,0x8d,0x3e,0xcc,0x91,0x7,0x20,0xa2,0x30,0x16,0x5,0x32,0xf4,0xa1,0xf,0xf4,0xc1,0x49,0xd1,0x56,0xe1,0x49,0x51,0x10,0xaf,0x43,0x48,0x55,0xe7,0xe9,0x58,0x87,0xb6,0x65,0x15,0x79,0xe0,0x16,0x64,0xba,0xe7,0x37,0x5c,0xf0,0x22,0x4,0x58,0xd3,0xb4,0x6a,0x57,0xa5,0xfc,0xd0,0xd5,0xc2,0x22,0xc9,0x9d,0x24,0x65,0xba,0x61,0xeb,0xb3,0xa1,0x42,0xd,0x69,0xc2,0x65,0x62,0x8b,0x88,0x36,0x22,0xc7,0x72,0x4a,0xf0,0x4d,0xa3,0xcd,0xce,0x52,0x48,0x63,0x9d,0xd7,0x66,0x5f,0xe7,0xbd,0x5a,0x7d,0xa7,0x24,0x79,0xce,0x99,0x88,0x47,0x56,0x56,0x5a,0xe7,0xb0,0xef,0xe0,0x61,0x6a,0x5a,0x66,0xa2,0xce,0xf3,0x3e,0xc7,0xbe,0x87,0x75,0x76,0x45,0x2d,0x9f,0x58,0xb9,0x27,0xa,0x70,0x60,0x54,0x9b,0xcb,0x31,0x77,0x9e,0xbe,0x2f,0xbb,0xc5,0x16,0xe6,0xeb,0xfb,0x48,0xad,0xc7,0x24,0xb8,0x6f,0x5a,0x18,0x3,0x34,0xb3,0xb9,0x3e,0xb0,0xa1,0xeb,0xc0,0xc2,0x18,0x52,0x59,0xfb,0x40,0x96,0x60,0xc3,0xdf,0x59,0x72,0x4d,0x82,0xc7,0x7b,0x33,0x9b,0x1,0xfc,0xbd,0x27,0xff,0x78,0x1f,0x58,0xfd,0x3b,0x46,0x49,0x4c,0xb3,0xfd,0xf4,0x18,0xf0,0xfd,0x59,0xc6,0xc1,0xa4,0x16,0x58,0xd5,0x92,0x39,0x45,0x6c,0x6d,0x6d,0x62,0x51,0x15,0x80,0x15,0x15,0x15,0x15,0x15,0x15,0xbf,0x10,0xd4,0xba,0xc3,0x8a,0x8a,0x8a,0x8b,0x87,0x89,0x6d,0x55,0xd4,0x23,0x44,0x7e,0x1,0x39,0x8d,0xb6,0x60,0xe3,0xca,0xa4,0x0,0xa3,0xa8,0xba,0xc5,0x60,0x6c,0xf,0x14,0x85,0x83,0xda,0x54,0x99,0xd8,0x52,0x25,0x52,0xce,0xf0,0x81,0xda,0x3d,0x53,0x8a,0x80,0x77,0xaa,0x48,0x90,0x9,0x8f,0x64,0xf2,0xc9,0x4,0x43,0xad,0xab,0x20,0x62,0xcc,0xb3,0xa,0x46,0x8a,0x49,0x9c,0xf,0xda,0x8e,0x48,0x8a,0x43,0x21,0xc0,0x12,0x4f,0xbc,0xf2,0xa8,0xd2,0x71,0x46,0xb3,0xa1,0x88,0x90,0xa0,0x9,0xa2,0x28,0x49,0xe2,0x30,0x50,0x76,0x9f,0xe4,0x37,0x9,0xa9,0xc5,0x44,0x5c,0xc9,0x64,0x75,0x2c,0x0,0xac,0xec,0xd3,0xe4,0x7d,0x6a,0x8d,0xe5,0x6d,0x13,0xb,0x97,0x1c,0x1f,0xc3,0x2a,0x93,0x14,0x7,0x7e,0xcf,0x98,0xa9,0x36,0x12,0x69,0x44,0x18,0x48,0x6e,0x5e,0x1c,0x7a,0x9d,0x48,0xe7,0x9,0x31,0x28,0xeb,0xd1,0x92,0x5,0xce,0xa0,0x22,0x32,0x34,0xeb,0x4,0x5e,0xcb,0x4f,0x8c,0xd5,0xf3,0x67,0x59,0xa5,0x69,0xd9,0x1a,0x97,0x73,0x86,0x85,0xd5,0x92,0x12,0xb1,0xb0,0x89,0x5d,0xd7,0x87,0x46,0x43,0xea,0x77,0x96,0x79,0x88,0x75,0x50,0x14,0x47,0xc6,0x18,0x9e,0x2c,0x5b,0x98,0x82,0x49,0x56,0x62,0xd6,0x36,0xe2,0x51,0x41,0x66,0x94,0xd0,0x1c,0x55,0x68,0x42,0x36,0x8e,0xad,0xc2,0x45,0xc7,0x4e,0x83,0x6e,0xfb,0x3c,0x7c,0x33,0x43,0xea,0xce,0xd5,0x6b,0xf7,0x42,0x28,0xd0,0x6c,0x2f,0x4c,0xc8,0xdb,0xe9,0xbf,0xf3,0x24,0xeb,0xd,0xd2,0x44,0x8d,0xb2,0x42,0xbc,0x12,0x39,0x16,0xd8,0xda,0x38,0xc6,0x46,0x5a,0x1e,0x6f,0xc8,0x5,0x5,0x5c,0xfe,0xc3,0xd7,0xa9,0x10,0x11,0xf2,0x3e,0x19,0xa7,0xc0,0x68,0x6f,0x34,0xc6,0x50,0x4b,0x6b,0xdf,0x8d,0x31,0x1,0xce,0xc1,0x14,0xb,0x3b,0xa3,0xc6,0xd1,0x14,0x7,0xb5,0xf8,0xae,0x6d,0xec,0xa7,0x5c,0xb3,0x42,0x85,0x41,0x54,0xfb,0xd,0x6e,0x8,0x26,0xc2,0x48,0xca,0x10,0xb4,0xc5,0x9b,0xaf,0x39,0x22,0x11,0xe9,0x7e,0xe3,0xac,0x67,0x9b,0x3f,0xed,0x9b,0xf7,0x1e,0x5d,0x12,0xe2,0x70,0x86,0x9c,0xa3,0x92,0x4a,0x42,0x94,0x48,0xc6,0x26,0x50,0x90,0x72,0xe6,0xc6,0x64,0xcb,0x43,0x77,0x24,0xc8,0xe5,0xa1,0x83,0x28,0xca,0x72,0xe1,0x7b,0x1a,0xdf,0xb7,0x74,0x3f,0xd,0xd9,0xf5,0x43,0x33,0x53,0x45,0xe3,0xf4,0xda,0x16,0xb5,0xa1,0x28,0xa0,0x49,0xe5,0xeb,0xd0,0xb4,0x33,0xa4,0xa6,0x45,0xe2,0xc,0xb9,0x3,0x87,0x8e,0xa2,0xef,0x96,0xf0,0xa1,0x21,0x3b,0x6b,0xc9,0xfa,0x70,0x45,0x55,0xb9,0x4c,0xb4,0x86,0xa6,0xd5,0xfb,0x9c,0x64,0xfe,0x59,0x6b,0x39,0x7b,0x91,0xee,0x8d,0xc8,0x5,0x43,0x5c,0x8e,0xca,0x4f,0x6e,0x7,0x27,0xb,0x78,0xd1,0xbc,0xd5,0x3e,0x45,0x25,0x8e,0x24,0x63,0x31,0xfb,0x8c,0xd9,0xda,0x6,0x11,0x68,0x39,0x23,0x34,0x33,0xa4,0x14,0x99,0xcc,0x63,0x5,0x65,0xa4,0x7b,0x68,0x3b,0xa3,0x86,0xdb,0xd9,0x7c,0x1d,0x7d,0xb7,0x50,0x22,0x50,0x62,0x17,0x88,0xe8,0x12,0x12,0x92,0xbe,0xb,0x54,0x4d,0xc8,0x25,0x1a,0x54,0x60,0xc1,0x5,0x22,0xed,0x4c,0x9,0xab,0xbe,0x5b,0xa0,0x69,0x67,0x18,0x7a,0x2a,0x3e,0xa1,0x76,0xe4,0xa8,0x25,0x48,0x2,0x55,0x83,0xf2,0x39,0xa3,0x63,0x33,0xa8,0xba,0x9c,0x2c,0xeb,0x46,0x89,0x3c,0xf9,0xe,0x90,0xdf,0x25,0xfb,0xb5,0x99,0xcd,0x11,0x87,0x1e,0xed,0x8c,0xf6,0xa5,0x9d,0xcf,0x61,0x39,0xde,0xc2,0xc1,0x21,0x27,0xab,0xd7,0x8f,0x10,0x99,0xce,0x53,0xe6,0xe1,0x7c,0x63,0x1f,0x36,0xcf,0x9c,0xd4,0xc6,0xe5,0x9c,0x33,0xd6,0x36,0xf6,0x13,0x99,0xcb,0xbf,0xcb,0xbd,0x37,0xd,0x3,0x9d,0x33,0x6e,0xd4,0xd6,0x48,0x5,0xfe,0xe,0x26,0xb5,0x35,0xf8,0x1a,0xa3,0xef,0x12,0xeb,0x3d,0x3c,0xa,0x32,0xbf,0x97,0x94,0xa6,0x6c,0x95,0x67,0x8b,0x7c,0x9e,0x5a,0x80,0x31,0x89,0xf2,0x10,0x5,0xe4,0x94,0xf4,0x9b,0x7c,0x7,0x96,0x49,0x59,0x18,0x6d,0x8b,0x99,0x28,0xbd,0x2b,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x1,0x58,0x51,0x51,0xf1,0xcb,0xcb,0xff,0x4d,0x7e,0xce,0xa2,0x0,0x64,0xf2,0x4d,0x26,0xb4,0x89,0xb3,0xf1,0xc4,0x3a,0xa4,0x56,0x4f,0x21,0x97,0x64,0xa2,0xcc,0xb9,0x47,0x62,0x89,0x92,0x66,0xd0,0x5c,0xa,0xda,0x76,0x8e,0xbe,0x5b,0x90,0x75,0xd4,0x14,0xce,0x85,0xb2,0x2b,0x8a,0x20,0x18,0x52,0x8,0xd2,0xa4,0xd8,0x60,0xd6,0xb6,0x1c,0x8e,0x9e,0x91,0x8a,0x5,0x24,0xb7,0x8a,0x89,0xad,0x84,0xc8,0x93,0xf7,0x56,0x27,0x69,0x12,0xd6,0x2f,0x93,0xdb,0x2,0x3,0x9a,0x4b,0x11,0xa1,0xe4,0x7d,0x83,0x94,0x23,0x9c,0x21,0xe2,0xd0,0x32,0xe1,0x38,0xc,0xbd,0x6,0xff,0x47,0x5e,0x7f,0x1c,0x6,0x6a,0xdb,0xe5,0x9,0xa4,0x31,0x34,0xe9,0x1a,0xfa,0x7e,0xb4,0x3e,0x83,0x95,0x4e,0x4c,0xb8,0x91,0x8d,0xb7,0x61,0xb2,0x83,0xa,0x38,0x1c,0x68,0xf9,0x6d,0x3b,0x67,0xbb,0xaf,0x5f,0xb1,0xab,0x11,0xf9,0xd8,0x8d,0x8d,0xbf,0x13,0xc5,0xa1,0xf3,0xab,0xa1,0xf4,0x92,0xd7,0x85,0x89,0xa5,0x93,0xc8,0x36,0x52,0xdf,0x8,0x29,0x90,0x86,0x8,0x63,0xa1,0x41,0xef,0x29,0x45,0x78,0xde,0xd7,0x18,0x7,0x38,0x3b,0x21,0x26,0xdd,0x48,0xe0,0xa8,0x62,0xd1,0x8f,0xa,0xca,0xd8,0xf7,0x6a,0x43,0xf6,0x6c,0x47,0x93,0xcc,0x42,0x52,0x13,0x7a,0x64,0x9e,0x78,0x62,0x6a,0x25,0xe6,0xac,0xb8,0xc4,0xdb,0x2c,0xa,0x96,0x82,0x32,0x19,0x78,0x66,0x62,0x27,0x1d,0x1b,0x9c,0x73,0x2e,0xab,0xa5,0xd4,0x9c,0xe1,0x65,0x7c,0x40,0x4e,0x43,0xbd,0x70,0x5f,0x91,0xd3,0xb7,0xc2,0x9c,0x8e,0x84,0xc5,0x24,0x5f,0x4e,0xc8,0x78,0x21,0xed,0x75,0x52,0xcf,0xe4,0xa1,0x5a,0xb1,0xd,0xb7,0xc1,0x12,0xc3,0x45,0x63,0x26,0x45,0x2d,0x8b,0xd5,0x82,0x9d,0x34,0x2a,0x69,0xb5,0x1,0x95,0x49,0x6,0x18,0x3,0xc3,0x63,0x59,0x54,0x48,0xd2,0x30,0x4b,0x79,0x9e,0x33,0x26,0x51,0xd6,0x48,0x41,0xc8,0xb9,0x7a,0xce,0x79,0xcc,0xd6,0xd6,0x47,0x42,0x83,0x8b,0x27,0x24,0x13,0x4d,0xda,0x7d,0x33,0x2b,0x69,0x49,0x39,0xd7,0xb2,0xa2,0xcc,0xc2,0x78,0xaf,0xf7,0x28,0x2d,0xe8,0x91,0xe2,0x99,0xc2,0x79,0x70,0xce,0x21,0x84,0x96,0x9,0x6c,0x83,0x18,0xa5,0x68,0x82,0x8b,0x81,0x50,0x90,0x23,0xab,0x7d,0x39,0xdb,0x74,0x65,0xec,0x73,0xd1,0xc8,0xd0,0x51,0xee,0x60,0x3b,0x5f,0x1b,0x2d,0xaa,0x8e,0xae,0x3b,0xdf,0xd0,0x3d,0x6c,0x3c,0xf6,0x79,0x25,0x76,0x40,0x72,0xdd,0x86,0xbe,0x53,0xb5,0xb4,0xe4,0xba,0xd,0x7d,0x87,0x76,0x36,0x1f,0xb3,0x52,0x99,0xa6,0x5,0xdf,0x5b,0xe4,0xf8,0xe4,0x42,0x31,0x9,0x54,0xa6,0x44,0x36,0x62,0xd9,0xc6,0xb1,0x20,0xc4,0x62,0xc6,0x5,0x27,0x42,0xd0,0xa3,0x14,0x18,0x27,0xea,0x69,0xab,0xaa,0x64,0xb9,0xd6,0x84,0xad,0xa7,0xdb,0x51,0xd6,0x76,0x6e,0xb2,0x77,0x43,0xd5,0x71,0x74,0xec,0x28,0x67,0xd0,0x4,0xb6,0xfd,0x3a,0xb2,0x29,0xe7,0xc2,0xf,0x38,0xf8,0x7a,0x97,0x82,0x94,0x92,0xb,0xd6,0x36,0xc8,0x32,0x2c,0x4a,0xcd,0xa2,0xe3,0xd4,0xae,0xe4,0xcb,0x7a,0xce,0x3a,0xb4,0x1c,0x3d,0x20,0xf,0xc,0x3c,0x13,0xa2,0x98,0x10,0xbd,0x71,0xe8,0x69,0x3f,0xf9,0xc1,0x8f,0x2c,0x9b,0x32,0x51,0x89,0xf8,0x4c,0x39,0xc1,0x4d,0xca,0x5d,0xe4,0xe1,0x93,0x28,0x0,0xc5,0xda,0x5e,0xc,0xab,0xb8,0x11,0x69,0x7c,0x72,0x76,0x6b,0x4a,0x9,0xed,0x7c,0xd,0x3e,0x30,0xf1,0xc,0xc3,0xd6,0x66,0xca,0x72,0xd,0x7c,0x4e,0xe5,0xde,0x47,0x84,0x2b,0x95,0xaf,0xc4,0x81,0xee,0x5d,0xfd,0x72,0x89,0x76,0xb6,0xae,0x44,0x5e,0xb7,0xbd,0x85,0xf5,0xfd,0x7,0xf5,0xef,0x4e,0xc9,0xfc,0x2,0xd7,0xd2,0xd8,0xd,0x2d,0xd9,0x8f,0x7d,0x18,0xc7,0x36,0x5d,0x1b,0x5e,0xad,0xe9,0xf2,0x9d,0xc,0xb1,0xb5,0x3,0xf0,0xa6,0xd5,0xef,0x75,0x21,0xa7,0xad,0x9b,0x3c,0x64,0xd3,0xe8,0x5,0x7e,0xa0,0x55,0xc,0xab,0xb7,0xcb,0xe4,0x81,0x42,0xd2,0xff,0x5a,0xa0,0x47,0x5,0xa3,0x55,0xbc,0x94,0x8c,0x14,0x6b,0x2b,0x7b,0x45,0x45,0x45,0x45,0x45,0x45,0x25,0x0,0x2b,0x2a,0x2a,0xfe,0x9,0x90,0x5,0xa3,0xa,0x4b,0x54,0xa,0xa2,0xc4,0x93,0x20,0x72,0xfa,0x9b,0xb4,0xc4,0x9a,0x49,0x68,0x7c,0x1a,0xc3,0xee,0x39,0xa8,0x9e,0xd4,0x40,0x63,0x31,0x4,0x84,0x4,0xcc,0xd4,0x0,0x2a,0x93,0x40,0xb1,0x5,0xfa,0xd0,0xe0,0xda,0x2b,0xe,0xe3,0xda,0x2b,0xe,0xe1,0x9a,0x2b,0x8f,0xe0,0x9a,0x63,0x57,0x60,0x3e,0x9f,0x21,0x4,0x87,0x26,0x34,0x0,0xa,0xfa,0x21,0x22,0xc6,0x84,0xc5,0x62,0x89,0x13,0x27,0xcf,0xe0,0x99,0x17,0x8e,0xe3,0xc9,0xe7,0x5f,0xc6,0x73,0xc7,0x4f,0x23,0xe6,0x2,0x67,0x88,0xc,0x14,0x42,0x43,0xa,0x43,0x8c,0xe5,0xd0,0xff,0x4,0xd,0x4f,0x7,0x87,0xa4,0x17,0xcb,0x79,0x83,0x25,0x93,0x3a,0xce,0x59,0x55,0xd0,0x49,0x60,0xbb,0xb5,0x99,0xd5,0x73,0x66,0xa5,0x18,0xa5,0x99,0xcd,0x58,0x49,0x34,0x99,0xcc,0x3,0x9a,0x53,0x45,0xf6,0x3f,0x22,0x4f,0xe9,0x98,0x39,0x98,0x61,0x50,0xbb,0xae,0xaa,0xee,0x78,0x52,0x48,0xb6,0xe9,0xa0,0xaa,0xb,0x9,0xa0,0xa7,0x9,0x96,0x58,0x92,0x47,0x2,0x56,0xf6,0x73,0x6a,0xd5,0xcb,0x39,0x2b,0xf9,0x28,0x6a,0x39,0x22,0x67,0x12,0x7f,0x6e,0xb4,0x2b,0x3b,0xb6,0xa,0xfa,0xc0,0xc4,0x23,0xcc,0x48,0xf2,0xb0,0x55,0x5b,0x32,0xb3,0x1c,0x4f,0x70,0x25,0x6c,0x3f,0x33,0x81,0x89,0x52,0x98,0x80,0x75,0x5a,0x58,0x0,0x60,0xc5,0x32,0xac,0x8a,0x92,0x9,0xdd,0xac,0xf9,0x64,0x3c,0xb9,0x55,0x45,0x21,0x49,0xa4,0xc8,0x4a,0x29,0x96,0x44,0x6b,0x80,0x3c,0xb6,0x2f,0xa3,0x14,0x94,0x14,0x91,0x86,0x3a,0xd9,0x7c,0x25,0x8c,0xa,0xbe,0xc9,0x91,0x5f,0xb1,0xba,0x8f,0x63,0x50,0x55,0x44,0x62,0xd7,0x66,0x65,0x9f,0x9d,0xd8,0x3,0xa5,0x55,0x54,0x15,0xa4,0x56,0xd4,0x84,0x42,0x40,0x58,0xce,0xeb,0xcb,0x13,0xdb,0xfb,0xd8,0xb6,0x2d,0x2a,0x50,0xe7,0x3c,0x17,0x35,0x10,0x41,0x49,0xe4,0x14,0x60,0x4c,0xa3,0xe3,0x1d,0x60,0x4b,0x23,0x13,0x93,0x81,0x15,0x5e,0xa5,0x14,0x6e,0xe8,0x8d,0x70,0xa1,0xd1,0x72,0x22,0x52,0x72,0x39,0x2d,0xc5,0x19,0xb3,0x46,0x47,0x92,0x2d,0x89,0x65,0x17,0x0,0xca,0x68,0x4f,0x55,0xf2,0x84,0x1f,0x7e,0x48,0x2e,0x69,0x61,0x1b,0x7e,0x1c,0xa8,0xcd,0xd8,0xc0,0x10,0x89,0xc7,0xc7,0x24,0xc5,0xc8,0xa,0x3a,0x56,0x2f,0x37,0xd,0x86,0x8e,0x8,0x7c,0x52,0x74,0x65,0x8d,0x36,0x88,0x7d,0xa7,0xf6,0x52,0x24,0x22,0x4d,0x9b,0xd9,0x1c,0xfd,0x72,0x41,0x84,0x11,0xe7,0x22,0x8a,0x1a,0x98,0x32,0x56,0xe9,0x58,0x37,0xed,0x4c,0xcf,0x8f,0x58,0x49,0xb3,0x9d,0xc4,0x3,0x88,0x1d,0x94,0xf7,0xa5,0x9d,0xad,0x11,0x11,0x57,0xb8,0xdc,0xc5,0x62,0x52,0xda,0xc2,0x8a,0x5a,0xeb,0x10,0xf8,0x1a,0x97,0x66,0xde,0x10,0x1a,0x2d,0x79,0x91,0xd7,0xa5,0x4c,0xa2,0x99,0xad,0x21,0xe,0x1d,0x13,0xf5,0x3c,0x6,0x34,0x2a,0x62,0xbc,0x87,0x9a,0x64,0x31,0x5b,0xdb,0xd0,0x8,0x81,0x94,0xb8,0x29,0x1a,0x44,0xa2,0xd,0x43,0xbf,0x62,0xc9,0xce,0xac,0xc4,0x6e,0xe7,0xeb,0xac,0x8a,0x8e,0x68,0x37,0x36,0x30,0xc,0x3d,0xc,0x9f,0x17,0x51,0xfe,0xa5,0x44,0x85,0x4c,0x4a,0xce,0x4d,0xf3,0x1b,0xad,0x85,0x75,0x41,0xb3,0x15,0x25,0xf3,0xd5,0x70,0x11,0x86,0x9c,0x5f,0x33,0x29,0x17,0x72,0x9c,0x53,0xe9,0x94,0x1c,0xa4,0x32,0x1b,0xe7,0x29,0xc7,0x51,0xc6,0x3a,0xdd,0x8f,0x9d,0xaa,0x14,0x63,0x1c,0x34,0x8b,0x52,0x8,0x6e,0x6b,0xc7,0x12,0xaa,0x9c,0x13,0xbc,0x6b,0x50,0x0,0xc4,0x18,0xe1,0x3d,0xdd,0x27,0xd,0xc,0x86,0xd8,0x73,0x16,0xa0,0x81,0x37,0x1,0xd9,0x24,0x58,0x4f,0xf,0xbb,0x52,0x24,0x8b,0xb2,0x58,0xd3,0xa9,0x28,0x27,0xa9,0xa5,0x9b,0xda,0x8d,0x49,0xa9,0xea,0x66,0x73,0x2d,0xe1,0xd2,0x16,0x75,0x2e,0xb7,0xd1,0xf3,0xc3,0x51,0xc,0x94,0xdb,0x68,0x60,0x2d,0x17,0xb7,0xf0,0x3d,0xd6,0x80,0xb3,0xfd,0xf8,0xba,0x97,0x62,0x28,0x8d,0x5f,0x28,0x58,0x51,0xb3,0xab,0x6c,0x5b,0xfa,0x57,0x30,0xbd,0xb7,0x48,0x34,0x44,0x9d,0xaa,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x2,0xb0,0xa2,0xa2,0xe2,0x97,0x1e,0xa2,0x38,0xd0,0x49,0x12,0xab,0xae,0xb4,0xf9,0x75,0xa2,0x30,0x1b,0x2d,0x41,0x52,0xf0,0x91,0x21,0xaa,0x81,0x9c,0x26,0x4a,0x40,0x9e,0x80,0xcb,0xc4,0x5d,0xc2,0xe5,0xa7,0x36,0xac,0xeb,0xae,0x3c,0x8c,0x37,0xde,0x75,0x33,0xee,0xbc,0xed,0x16,0x5c,0x7e,0xe4,0x32,0x34,0x4d,0x78,0x55,0xdb,0x7b,0xe3,0xf5,0x57,0xe3,0xcd,0xb8,0x13,0x31,0x26,0x9c,0x3e,0x73,0xe,0x4f,0x3c,0xf5,0x1c,0x1e,0xfc,0xfe,0x13,0xf8,0xc9,0xf3,0x2f,0x63,0xb9,0x58,0x8e,0x39,0x79,0xd6,0xa1,0x24,0x51,0x45,0xc8,0xcc,0x8f,0x3,0xfc,0x99,0xd8,0x24,0xb2,0xcf,0x69,0xd3,0xa9,0x34,0xfc,0xca,0x44,0x35,0xc5,0xa2,0xe4,0x86,0x10,0x50,0xb2,0x5f,0x62,0x35,0x13,0x92,0x41,0x26,0x7a,0x44,0x7a,0xd0,0xf4,0x2a,0xc6,0x5e,0xf3,0xa9,0x24,0x2c,0x5f,0x54,0x39,0x89,0x27,0x93,0x71,0x4a,0x4e,0xb0,0x7a,0x8e,0x2c,0xc2,0xd0,0x60,0x7b,0x21,0x3a,0x68,0xd2,0x1a,0x56,0xad,0x5a,0xc4,0xc,0x2a,0x1,0x97,0x39,0x2b,0x50,0x54,0x98,0x40,0x44,0x8,0xd,0x62,0x1a,0xd4,0x4e,0x27,0xe7,0x19,0x76,0xcc,0x64,0x2c,0x0,0x9c,0xb4,0x6,0xf3,0xbc,0x8e,0x82,0xf6,0x7b,0xb5,0x54,0xea,0x24,0x59,0x42,0xea,0x35,0xfb,0x31,0xa8,0x3a,0x6,0x3a,0x89,0x24,0x45,0x8f,0x66,0x9f,0x29,0x5,0x38,0x69,0xf9,0x95,0x7d,0xc6,0x68,0xfb,0x35,0x13,0x45,0xa0,0x90,0x7f,0x32,0xc1,0x24,0xd5,0xcf,0xc,0xb9,0xaa,0x4d,0x5e,0x11,0xd6,0xda,0x49,0x9f,0x4a,0xd9,0xa3,0xe0,0x67,0x72,0xe,0x26,0xc7,0x78,0xaa,0x1a,0x14,0x8c,0xb6,0x6f,0xa3,0x19,0x8d,0x63,0x63,0xf3,0xb8,0xc,0x63,0x89,0x8c,0x92,0xf1,0x92,0xd9,0x16,0x2e,0x79,0x81,0x62,0xe3,0xd6,0xfb,0x42,0x1e,0x6d,0x99,0xc6,0x3a,0xf8,0x40,0xe3,0xbe,0x88,0xda,0xae,0x71,0x4a,0x58,0xc3,0x39,0xba,0x4f,0x15,0x2a,0xe9,0xd0,0x4c,0x3e,0x8c,0x76,0x4e,0xc9,0x1e,0x95,0x8c,0x50,0xcd,0x25,0x9c,0x5a,0xf3,0xf9,0xe1,0x43,0x86,0x28,0x97,0xc0,0xd,0xd8,0x16,0xb6,0xc8,0xb1,0x30,0xaa,0xe4,0x32,0x90,0xcc,0xbf,0x5e,0xd5,0x7f,0xa4,0x8a,0x66,0x22,0x24,0x17,0x7d,0x18,0xe2,0x38,0x77,0x4e,0x49,0x70,0x29,0x40,0x99,0x14,0x2c,0x94,0x9c,0x1,0xb,0xb2,0xae,0x3a,0x7,0x8b,0x51,0x85,0x25,0xf,0x28,0x2c,0x17,0x27,0xe5,0x4c,0xa5,0x3f,0x42,0x48,0x5a,0xdb,0x6a,0xdb,0xb1,0xb7,0x74,0x2f,0x19,0xfa,0x8e,0x8e,0xa1,0x19,0x55,0x9e,0x42,0x6e,0xf5,0xa9,0x83,0xb5,0x14,0xb1,0x20,0xa,0xc8,0x38,0xc,0xda,0x1c,0x6c,0xdd,0x98,0x53,0xaa,0x64,0x3d,0x80,0xa2,0x8d,0xdd,0x16,0x19,0x60,0x22,0x8f,0x28,0x62,0x94,0x82,0xc8,0xe4,0xa7,0x31,0x4e,0xd5,0xa3,0x44,0xe4,0xd2,0x7e,0x96,0x44,0xf,0x3a,0xda,0xd9,0x7c,0x8c,0x6,0x0,0x54,0xc9,0x28,0x6d,0xb6,0x71,0xb0,0xac,0xee,0xe6,0x87,0x16,0x5,0x4a,0xf8,0x1,0xd0,0x87,0x38,0x2,0x29,0xde,0x48,0x71,0x40,0xe1,0xdf,0xa5,0x8,0x43,0xef,0xc1,0x20,0x7b,0x70,0xce,0x9,0x8e,0x95,0x78,0x7d,0xdf,0x8d,0x8a,0x40,0x7e,0x10,0xb2,0xf2,0xa0,0x62,0x12,0x9d,0x10,0x87,0x5e,0x9,0x3e,0xb1,0x64,0xcb,0x83,0x90,0x82,0x32,0x2a,0x5,0xa5,0xd,0x9d,0x1f,0xd4,0xd0,0x76,0x45,0xcc,0xd6,0x36,0x10,0xfb,0x4e,0xd7,0x13,0x63,0xd4,0x76,0xfa,0xa6,0x6d,0x11,0x99,0xe4,0x96,0x18,0x3d,0xb9,0xf6,0x7c,0xd3,0x0,0x25,0x4c,0x1a,0xe5,0x1,0x67,0xdc,0x98,0xa7,0xa,0x6a,0x79,0x26,0x82,0xd1,0x23,0xe5,0x71,0x5c,0x91,0x52,0xd1,0x90,0x3a,0x1d,0xd0,0xfb,0xb7,0x28,0x3c,0xad,0xb6,0x3b,0x7,0x55,0x1,0xbb,0x49,0x16,0xef,0xce,0xc2,0x1f,0xba,0xd4,0x39,0xdf,0xd1,0x4c,0xb2,0x5f,0xf9,0x5a,0xd6,0xeb,0x99,0xc9,0xdd,0xf1,0x5e,0x5e,0xea,0x8d,0xb7,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0x12,0x80,0x15,0x15,0x15,0xbf,0xec,0x50,0x12,0x49,0x26,0x24,0x93,0x90,0xef,0xd5,0xff,0xd8,0x1f,0xdb,0x5d,0xd,0xa0,0x24,0x94,0x58,0xc0,0x64,0x32,0xe2,0x42,0x80,0xb3,0x14,0xb0,0xef,0x7c,0xd0,0xbf,0x3b,0x4f,0xb6,0xba,0xeb,0xae,0xb8,0xc,0xbf,0xf6,0xce,0x37,0xe1,0xf6,0xd7,0xdc,0x88,0xd9,0xac,0xfd,0x87,0xdf,0x18,0xbd,0xc3,0xd1,0x23,0x97,0xe1,0xe8,0x91,0xcb,0x70,0xdf,0x3d,0xb7,0xe3,0xc9,0x67,0x9e,0xc3,0x57,0xbf,0xf5,0x3d,0x7c,0xef,0x89,0xe7,0x69,0xe2,0x15,0x3c,0x4c,0xb4,0x4a,0x56,0x49,0x46,0x96,0x10,0x60,0x9a,0xef,0xc4,0x1,0xfc,0x62,0x79,0xb3,0x3c,0x21,0x36,0x86,0x26,0x5d,0xc3,0xd0,0x11,0xb9,0x66,0xc8,0xea,0x28,0xea,0x95,0xc4,0x56,0x43,0x18,0xc0,0xb3,0x2,0x85,0xb2,0x9c,0x8a,0x96,0x6a,0xb8,0xe2,0x95,0x30,0xcb,0x13,0x75,0x61,0x4e,0x91,0x3,0xf1,0x87,0x51,0x31,0x65,0x2d,0xa9,0x88,0x1a,0xab,0xec,0x98,0x90,0xa9,0xde,0x53,0xc8,0xbb,0x14,0x78,0x8c,0xa,0x20,0xbb,0x32,0x9,0x13,0x82,0x83,0x94,0x88,0xd,0x13,0x72,0x64,0x79,0xf3,0xbe,0x21,0xf5,0x94,0xa5,0xa2,0x11,0x98,0x42,0x76,0x4e,0x26,0xde,0xa4,0x34,0x65,0x1a,0x2,0x6f,0x40,0x84,0x4b,0xdf,0x2f,0x99,0x10,0x29,0x3a,0x89,0x24,0xd2,0xc7,0x2a,0xd1,0x63,0x58,0x41,0x8,0x90,0xed,0xd,0xd3,0x30,0x7d,0x26,0x6b,0xa4,0x3d,0x55,0xb6,0x7a,0x85,0x30,0x99,0x34,0x6f,0xaa,0xd2,0x84,0x49,0x55,0x5a,0x5f,0x42,0xea,0x17,0x88,0xb0,0x30,0x7e,0x6,0xd4,0x16,0xe0,0xb,0x62,0x9a,0xf5,0x67,0x76,0xa8,0x0,0x73,0x2e,0x64,0x87,0xcf,0xe3,0xf5,0x2c,0x44,0x58,0x66,0xa2,0x4f,0xc8,0x21,0xc9,0xee,0xe4,0x53,0xa7,0x84,0x8e,0x16,0x3,0x89,0x45,0x74,0x72,0xee,0xe8,0x9c,0x17,0xbd,0x7f,0x48,0x39,0x48,0x2e,0x19,0x86,0x33,0xf3,0x2c,0x5b,0xce,0x53,0x1c,0xb8,0x7d,0xd7,0xe8,0xfd,0x85,0xc8,0x97,0xac,0xcb,0x29,0x4c,0x3a,0x8e,0x39,0x98,0x93,0xe6,0x6a,0x6e,0xab,0x1e,0x63,0xb,0x38,0x77,0x54,0x14,0x4c,0xa2,0x56,0x9e,0x5c,0x27,0x42,0x2a,0x9,0xf1,0xa1,0xf,0x3a,0x8c,0x83,0xf5,0xb4,0xfc,0x94,0x22,0x2b,0x9b,0xa9,0x49,0x55,0x94,0x8b,0x62,0x3f,0x16,0xb2,0x2d,0xb3,0x1d,0x55,0x14,0xb9,0xd3,0xe5,0x8a,0x72,0x58,0xf2,0x11,0x8d,0x31,0xb0,0x7c,0x1d,0x5b,0x3b,0x36,0x5d,0x8f,0xe4,0xf8,0x58,0x78,0x24,0xf7,0x56,0x4c,0x72,0xd5,0x8c,0xe6,0x7d,0x16,0x8d,0x49,0x90,0x32,0x89,0x10,0x5a,0xc,0x7d,0xcf,0xa4,0xe,0xd8,0xae,0x3d,0x92,0x8b,0x52,0x94,0xe4,0x83,0x51,0x32,0x9,0xc6,0x20,0x95,0xc8,0xe4,0x22,0x93,0x9a,0x98,0xee,0x43,0xd1,0x76,0x5f,0x21,0xa5,0xe4,0x58,0xc9,0x79,0x4a,0x71,0x20,0xdb,0x6e,0xa4,0x66,0x62,0x51,0x79,0x6a,0x9b,0x70,0x11,0x1,0x59,0x61,0x55,0x1c,0xb5,0x24,0xd3,0x43,0xf,0xc0,0xfa,0x80,0x32,0x14,0x6d,0x8f,0x17,0xf5,0x9e,0x3c,0xc0,0x30,0xc6,0x60,0x18,0x7a,0xcd,0x55,0x8c,0xc3,0xb0,0x42,0x4a,0x49,0x16,0x2c,0x11,0x9f,0x4e,0xa3,0xe,0xe4,0x1e,0x28,0xdf,0x4f,0x42,0xd2,0x96,0xc9,0x3d,0x53,0xee,0x77,0xd4,0xea,0x9b,0xf4,0x1e,0x3c,0x55,0xc2,0xcb,0xcf,0x42,0x54,0xc7,0x48,0x31,0x11,0xf0,0x46,0xaf,0x1,0x33,0x29,0xfc,0x98,0x16,0x9a,0x88,0xa2,0x52,0x6c,0xc6,0x62,0xd,0x97,0xef,0x83,0x91,0xac,0xf6,0x3a,0x2e,0x2d,0x97,0x62,0x15,0x6d,0x9e,0xa7,0x31,0x50,0xb8,0x0,0xc6,0x70,0x9c,0x86,0x3e,0x24,0x91,0xef,0xe4,0x42,0xeb,0x49,0x59,0xf2,0x37,0x27,0x25,0x4a,0x28,0x1a,0xe5,0x21,0xc7,0x94,0xff,0xc8,0x25,0x58,0x52,0xe0,0x2,0x25,0xd6,0x55,0x11,0xe,0xc3,0x11,0x1e,0x79,0x6c,0x12,0x67,0xa5,0x2f,0x2f,0x2,0x65,0x8f,0x7,0x3b,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x95,0x0,0xac,0xa8,0xa8,0xf8,0x65,0x25,0x0,0x77,0x4c,0x5c,0x1,0xc0,0x5,0x9a,0xf0,0x6,0xcf,0x85,0x1b,0x4c,0xd0,0xc4,0xbe,0x27,0xc2,0xcb,0x37,0x6a,0x53,0x1b,0xb3,0x87,0x1c,0xc,0x5b,0xcb,0x44,0x15,0x26,0xea,0x1c,0x6b,0x1d,0xe6,0xb3,0x6,0x9f,0xf8,0xc0,0xfd,0x78,0xd3,0xbd,0x77,0xbe,0x6a,0xb5,0xdf,0xcf,0x43,0x6,0xde,0x72,0xe3,0x75,0xb8,0xe9,0xfa,0x6b,0xf0,0xd8,0xe3,0x3f,0xc5,0xa7,0xbe,0xf4,0x0,0x5e,0x3a,0x75,0x4e,0xb7,0x23,0xe7,0xc,0xc4,0xac,0x59,0x5f,0xce,0x13,0x91,0x96,0x4b,0x46,0x61,0x82,0x80,0x4a,0x0,0x12,0x17,0x77,0x10,0xd9,0x10,0xd9,0x32,0x2c,0x44,0x47,0x60,0x9b,0x56,0x66,0xc5,0x5f,0x8c,0x83,0xe6,0xee,0x89,0xcd,0x4e,0x1a,0x71,0x65,0x32,0xac,0xaa,0x9d,0xa6,0x45,0x4e,0x49,0x95,0x84,0xa2,0xa6,0x12,0xd2,0xe,0x80,0x96,0xa7,0xf8,0xd0,0xe8,0xc4,0x33,0xe,0x3d,0x62,0x1c,0x54,0x65,0x92,0xa4,0x6d,0x99,0x97,0xa5,0xa4,0xac,0xa8,0x9c,0x12,0xa9,0x4f,0x24,0x47,0x4d,0xe6,0xf5,0x79,0xd2,0x70,0xe9,0xd8,0xe6,0x47,0xfb,0xd8,0x93,0xf5,0x2c,0x84,0x15,0x4b,0x6e,0x4e,0x9,0xb9,0x14,0xe4,0xa1,0x23,0x8b,0x34,0x2b,0x49,0xca,0x24,0x5b,0x4a,0xb2,0xbe,0x44,0xbd,0xe3,0x39,0x6f,0x70,0x4a,0x42,0x29,0xa9,0xc8,0x33,0x46,0xb1,0x10,0x8a,0x4a,0x94,0x14,0x66,0x98,0x28,0xd6,0x26,0x13,0x51,0x63,0x90,0x64,0xb2,0x9,0xc0,0xfa,0x96,0xf6,0x25,0xa6,0x7a,0xe1,0xbe,0x8a,0x6b,0x5a,0x8e,0x9b,0x58,0xfd,0x88,0xb0,0x9a,0x90,0x5f,0xac,0xfa,0x92,0x31,0x24,0x8a,0xa1,0x9c,0xb2,0x12,0x66,0x42,0xea,0xe5,0x9,0xf1,0x55,0x98,0x60,0x53,0x32,0x2e,0x17,0x3d,0x67,0x23,0x9,0xd,0xa0,0x64,0x55,0x79,0xa,0xb9,0x23,0x4d,0xe3,0xaa,0x32,0x2b,0x19,0x25,0x4d,0xce,0x37,0x97,0x72,0x50,0x14,0x1d,0x17,0xd3,0xf0,0x3d,0x44,0xb2,0xd9,0x46,0xa2,0x8a,0x8,0x6e,0x21,0x2c,0xc7,0x26,0xf0,0xb1,0xb8,0x43,0xc8,0x2c,0xd9,0x4f,0xda,0x67,0x33,0x36,0xe5,0xea,0x7e,0x41,0xed,0xa9,0x52,0xca,0x20,0xc4,0x63,0x62,0xa2,0x9e,0xf6,0xcd,0x28,0x91,0x5a,0xa,0x56,0x15,0x65,0xc6,0xe8,0xf8,0xd,0x4d,0x83,0x14,0x69,0xd9,0x69,0x18,0xf8,0xfa,0x31,0xfa,0xd0,0x0,0x5,0xa3,0x1a,0x17,0x2b,0xb5,0xeb,0x13,0xf5,0xdb,0x68,0xb5,0x1c,0x95,0x97,0x42,0x9c,0x4a,0xfe,0xaa,0xe1,0xec,0xc0,0x46,0xf7,0x41,0x73,0xf4,0x0,0x14,0xd0,0x3d,0x6e,0x5a,0x18,0x4,0x8c,0x6a,0xcc,0x69,0xb1,0x13,0x7d,0x8e,0x32,0x10,0x25,0x67,0x91,0xb2,0xf4,0x12,0x90,0xa1,0xc5,0x4f,0x39,0x25,0xa4,0xd4,0x8f,0x4a,0xd3,0x49,0xbe,0x27,0x59,0x9f,0x29,0xf7,0x91,0x4f,0x1e,0x3f,0xb8,0x28,0x4c,0xac,0x15,0x2d,0xa8,0x71,0xce,0xaa,0x72,0x79,0x6c,0xa8,0x36,0xfa,0x70,0xc5,0x58,0xb,0xcb,0xf,0x96,0x62,0x89,0x9a,0x65,0x28,0xef,0x1d,0xc9,0x5b,0xab,0xc4,0x6c,0x8,0x8d,0x6e,0x3b,0x7d,0x37,0x84,0x15,0x35,0x7b,0x59,0x89,0x18,0x60,0xb5,0xb5,0x28,0x31,0x59,0xb1,0xe9,0x26,0xaa,0x4d,0x5a,0x76,0xe4,0x31,0xe8,0x47,0x4b,0xec,0xa4,0xd4,0x69,0xaa,0x6e,0xb7,0xde,0x71,0xfb,0x72,0x56,0x15,0xa8,0xf7,0x1,0xb1,0xc,0xfc,0x70,0x24,0xf2,0x57,0xa,0x65,0xd5,0x1a,0xbe,0x77,0x8b,0x92,0x9b,0x32,0x50,0xa7,0x4d,0xbe,0x96,0x15,0xde,0x5e,0x55,0x77,0x52,0xe2,0x24,0xad,0xc7,0x0,0x13,0x83,0xd2,0x46,0x2d,0x94,0x1c,0x9f,0x1f,0x51,0x67,0x4b,0xfe,0xaa,0xb5,0x6e,0x25,0xee,0x63,0xea,0xe8,0x15,0x95,0xba,0x19,0x6b,0xd9,0x57,0x1f,0x26,0x18,0xac,0x90,0xfb,0x3b,0xf4,0xdc,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0xbf,0x0,0x38,0x0,0xbf,0x5f,0xf,0x43,0x45,0x45,0xc5,0xc5,0xc0,0xb1,0x1b,0x5e,0xcb,0x1,0xe7,0x4c,0xd8,0x70,0x86,0x93,0xd1,0x76,0xc1,0xa2,0x93,0xc7,0x52,0x8a,0x12,0x45,0xc6,0x58,0x55,0x57,0x68,0xe6,0x15,0x4f,0x8a,0x9c,0xf3,0xda,0x34,0x69,0xad,0xc3,0x1d,0x37,0x1d,0xc3,0xbf,0xfd,0xed,0xf,0xe3,0xf6,0x5b,0x6f,0xe2,0x66,0xcb,0x8b,0x47,0x7c,0x1c,0x3d,0x72,0x8,0x6f,0xb8,0xe3,0x26,0xc4,0xbe,0xc7,0x73,0x27,0xce,0xa8,0x42,0x44,0xb6,0x4b,0xac,0x8a,0xc6,0xb2,0x7d,0x8d,0x15,0x14,0x99,0x33,0xa3,0x64,0x32,0x3e,0x2d,0x36,0x18,0x27,0xcf,0x46,0x9,0x51,0x37,0x9,0xe6,0x17,0xd5,0x91,0xf3,0x81,0x55,0x3f,0x4e,0xd7,0xa5,0x59,0x7e,0x4c,0x2e,0xd0,0xb1,0x9,0xfc,0xba,0xd1,0x49,0x71,0xe6,0x49,0x23,0x1d,0xd3,0xc,0xef,0x79,0xc2,0x27,0x24,0x66,0x9a,0x34,0x49,0x8a,0x6a,0x84,0xd5,0x3b,0x42,0xa0,0x15,0x56,0x67,0x88,0x52,0x50,0x2c,0x7e,0x79,0x45,0x9d,0x35,0x69,0xd6,0x2d,0x45,0x2d,0x95,0xd3,0xd7,0x64,0x42,0x28,0x4d,0xc9,0x32,0x79,0x14,0xc2,0x6e,0xcc,0xf2,0xd3,0xde,0x58,0x9d,0x28,0x53,0xb8,0xfc,0x38,0x2d,0x1c,0x33,0xc5,0xa,0x13,0xb2,0x5e,0x5b,0x2b,0xcb,0xc4,0x82,0x26,0x44,0xa,0x1d,0x6e,0x29,0x39,0x29,0x6a,0xdd,0x1b,0xfa,0x25,0x36,0xcf,0x9e,0xa1,0xd0,0x7f,0x18,0xe4,0xb8,0xac,0x17,0xef,0x5,0xb0,0xb6,0xff,0x10,0xe,0x1d,0x3d,0x46,0x67,0x86,0xf3,0xc0,0x46,0x3b,0xa5,0x59,0x21,0x8,0xa7,0x64,0xed,0x78,0xfc,0x77,0x3c,0x1c,0x58,0x21,0x50,0x76,0x5a,0x6,0x57,0x7f,0x1f,0x97,0x37,0xb1,0x6f,0x6b,0xb3,0xe8,0xf4,0xb5,0x49,0x86,0x1f,0xc,0xa9,0xe2,0xa6,0xad,0xd6,0x65,0x42,0x1c,0x4f,0xc6,0x53,0xe6,0x71,0x3d,0x92,0x75,0x79,0xa5,0x14,0x7,0x7a,0x4d,0x4c,0xf7,0x17,0xe3,0xb8,0xd6,0xeb,0xc6,0x8e,0x56,0x62,0xdd,0x2f,0xab,0x9f,0x97,0xa6,0x73,0x51,0xe3,0x11,0xe1,0x94,0x76,0x28,0xb4,0x8a,0xda,0xe7,0xa7,0xcb,0x25,0x4b,0x6d,0x54,0x52,0x92,0x48,0x77,0x51,0xfa,0x4a,0x23,0x36,0x26,0x4d,0xbd,0xd0,0xeb,0x5a,0x8,0x52,0x52,0x83,0xed,0x3e,0x37,0x40,0x99,0x58,0xe6,0xa1,0xfb,0x9d,0xb5,0xc8,0x45,0xb6,0xdf,0xac,0x9c,0x3,0x29,0x6f,0x32,0x93,0xfb,0xa1,0x90,0x71,0x40,0x5e,0x3d,0x6,0x93,0x66,0x6e,0x39,0xaf,0x76,0x12,0x1f,0x30,0x5d,0xb7,0x1c,0x7b,0x29,0xc,0x92,0xc8,0x8,0x21,0x18,0x35,0x23,0x94,0x89,0x2a,0x79,0x60,0x40,0x8d,0xdf,0x79,0x72,0x5f,0xcd,0x5a,0xe6,0x24,0xc7,0x3f,0xc7,0x51,0x35,0x5d,0x72,0x56,0x3b,0xf3,0xca,0xba,0xd,0xe5,0x33,0xca,0x43,0x9,0x21,0xeb,0xe8,0x78,0x3a,0x2d,0x56,0x91,0xfc,0xd5,0xa2,0xe7,0xda,0xc6,0x7b,0xd5,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x3b,0x6b,0x51,0xc6,0x78,0x3e,0xa1,0xf6,0x5f,0xb9,0x1f,0xcb,0xbd,0x8d,0xc6,0x40,0x1a,0xd5,0xca,0xd3,0xfc,0xd2,0xf1,0x42,0x5a,0x39,0x66,0xa5,0xe4,0xc9,0xbd,0x1e,0xda,0xce,0xac,0xd,0xdb,0xce,0xad,0x8c,0x9d,0xb1,0xef,0x7e,0x72,0xf,0x34,0xe3,0x3,0xa2,0xe9,0x36,0x12,0xb7,0x6a,0x57,0x48,0x62,0x94,0xd5,0x6c,0x3e,0xb5,0x9d,0xf3,0xfd,0x55,0x1e,0x4,0xc8,0xd8,0x98,0x66,0xf1,0xee,0x7a,0x78,0x30,0x4a,0xfb,0xa6,0x43,0x6f,0xf5,0xe1,0x2,0x93,0xb3,0x29,0x25,0x6c,0x9f,0x3f,0x83,0xe5,0xd6,0xe6,0xae,0x8,0x81,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x9f,0x1f,0x55,0x1,0x58,0x51,0x51,0x71,0xd1,0x30,0xb6,0x7f,0x8e,0x64,0x8c,0xbc,0x36,0x9d,0x1c,0x48,0xc1,0x45,0x29,0x98,0x10,0x52,0x62,0x9,0x63,0x62,0x8d,0x9,0x2e,0x51,0xb,0x58,0xe7,0x71,0xff,0xdd,0xb7,0xe0,0x13,0x1f,0x7e,0x37,0xd6,0xd7,0xe6,0x3f,0x7b,0x5b,0x4a,0x41,0x4c,0x19,0x5b,0x5b,0xdb,0x58,0x2c,0x97,0x88,0xa9,0x50,0xe3,0x62,0xd3,0xa0,0x6d,0x1c,0xd6,0xd7,0xd7,0xd1,0x4,0xbf,0x8b,0xc0,0xd8,0x89,0xf5,0xf5,0x35,0x7c,0xf4,0x3,0x6f,0xc7,0xe1,0x83,0xfb,0xf0,0xe9,0xaf,0x3e,0x84,0x65,0x4a,0x80,0x65,0x8b,0x55,0x36,0x4c,0x5a,0x8e,0x8a,0x3b,0x9a,0x50,0x15,0x26,0xed,0x1c,0x4a,0x4e,0x28,0xb6,0x50,0x33,0x30,0x7,0xb9,0xf,0x7d,0x7,0xd7,0xce,0x58,0x51,0x92,0x74,0xf2,0xaa,0x93,0x5f,0xe7,0x65,0x86,0xc4,0xaa,0xc0,0x5,0xd9,0x8,0x8d,0x81,0xf7,0x1e,0x7d,0xd7,0x51,0xc6,0x1e,0xab,0x3a,0x9a,0xb6,0x55,0x6b,0x98,0x63,0x45,0x87,0x34,0x9b,0x16,0x3b,0x2a,0x41,0x24,0x9b,0x4a,0x2,0xdd,0xa9,0x4,0xb4,0x83,0xb5,0x9e,0xb7,0x9f,0xb,0x3e,0xd8,0xe6,0x46,0xd6,0x5f,0x9e,0xdc,0x61,0x9c,0x6c,0xda,0x1d,0x93,0x56,0x29,0x79,0x51,0xb5,0x8d,0x28,0x77,0x98,0x4c,0x90,0xf6,0xe3,0x52,0x32,0xe7,0x6a,0x65,0xb5,0xd7,0xa9,0x4a,0x2a,0x25,0x2e,0x7f,0x49,0x1a,0xcc,0x5f,0x72,0x19,0xc3,0xe8,0xd3,0xa8,0xd4,0x9b,0xaa,0x87,0x84,0x65,0x1a,0xd7,0x51,0xc6,0x76,0xcf,0xb,0x11,0x53,0x5,0xc8,0x69,0x80,0xf5,0x1,0x39,0xd6,0x16,0xe0,0x57,0x26,0xc2,0xed,0xd8,0xa7,0x32,0x21,0x89,0xa6,0xe4,0xde,0x68,0x55,0xc5,0x9e,0x44,0xd3,0xb4,0x21,0x58,0x27,0xfb,0x31,0x8e,0x24,0xe0,0x84,0x74,0xa3,0xc6,0xe6,0xac,0x45,0x4,0x3b,0xc9,0xab,0xa9,0x22,0xcb,0x18,0xb2,0x4a,0x66,0x3b,0xb5,0x7d,0xd3,0xd8,0x10,0xca,0x4a,0x73,0x2c,0x73,0xe2,0x71,0xcb,0x77,0xaa,0x5c,0x56,0x88,0x2b,0xcd,0x14,0x2c,0xa3,0x55,0x98,0x6c,0xa0,0xd4,0x52,0x2b,0x4a,0x2b,0xca,0xa7,0xcb,0x80,0xa8,0x96,0xb9,0xc9,0x56,0x90,0xa4,0x70,0x41,0xf2,0xe,0x4d,0x9e,0xa8,0xfc,0xca,0xd8,0x5c,0xcc,0x65,0x20,0xda,0xce,0xcd,0x64,0xa4,0x28,0xb7,0x84,0xe4,0x13,0xe6,0xc4,0x39,0xaf,0xd1,0x1,0x29,0xd,0xac,0x3c,0x96,0x46,0xf5,0x71,0x1f,0x85,0xc0,0x4f,0x1c,0xa1,0x90,0x62,0x5c,0x21,0xdb,0xa6,0x19,0x86,0x7a,0x5e,0xd4,0x26,0x6c,0x26,0xe7,0x62,0x24,0xfd,0xa6,0x24,0x65,0x29,0x5,0x48,0x89,0xb2,0xeb,0xcc,0xd8,0xf6,0x3d,0x12,0x55,0xac,0xba,0x95,0x82,0x8e,0x9c,0xf5,0x9e,0x48,0xdb,0xe1,0x94,0x38,0x9a,0x5a,0xb0,0x85,0x27,0x92,0xeb,0xdd,0x5a,0x6a,0x50,0xb7,0xd2,0x34,0xd,0x20,0x67,0xc9,0x82,0x24,0xb,0xad,0x92,0x59,0xa2,0xac,0x9e,0x94,0x57,0xc8,0x7e,0x97,0x92,0xb4,0x44,0x49,0x5a,0x97,0x8d,0xe4,0x22,0x4e,0xec,0xbd,0xa2,0xb0,0x33,0x80,0x36,0xd,0x53,0x53,0x31,0xd,0x74,0x51,0x5,0x76,0xcb,0xed,0xb1,0x50,0x43,0x5b,0x8f,0xa1,0xcb,0x94,0xcc,0x3e,0x21,0x1e,0xcb,0xc4,0x82,0x6e,0x8c,0x9b,0x7c,0x7,0x42,0x9,0xdc,0xd1,0x8a,0x6c,0x27,0xf,0x5a,0xe2,0x8e,0x6b,0xab,0x60,0xe8,0x96,0x44,0x2,0xa6,0xa8,0xca,0xbe,0x95,0x71,0x9b,0x13,0x9c,0x6f,0x46,0x65,0xb8,0x3e,0x14,0x1a,0xaf,0x97,0x51,0xb1,0x1b,0x95,0xb0,0xdc,0x49,0xb2,0xcb,0x77,0xf,0x95,0x92,0x8c,0x6a,0xce,0x29,0x71,0x6e,0xad,0x85,0x29,0x66,0x85,0x2c,0x5f,0xb1,0xee,0x96,0x71,0x8c,0xe9,0x7f,0x3,0xe4,0x32,0xb1,0xb8,0x17,0x7d,0x28,0x35,0xde,0x9f,0x59,0x15,0x2c,0x45,0x39,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x95,0x0,0xac,0xa8,0xa8,0xf8,0x25,0x26,0x0,0x45,0x19,0xc4,0xa5,0xb,0x5,0xa3,0x9a,0xa3,0x4c,0x72,0xdc,0xa6,0x79,0x59,0x71,0xe8,0xe1,0x7d,0xd0,0xf6,0x41,0xc7,0xad,0xb1,0xa2,0xca,0xb0,0x6c,0x7f,0x7d,0xdf,0x5b,0xef,0xc2,0x47,0x3e,0xf0,0xab,0x8,0xc1,0xbf,0x22,0xe9,0x77,0x6e,0x73,0xb,0x4f,0x3d,0xfb,0x2,0xbe,0xfb,0xd8,0x4f,0xf1,0xcc,0x4b,0xa7,0x71,0xf2,0xec,0x16,0x72,0x81,0x5a,0xb4,0x8c,0xb1,0xf0,0xce,0xe2,0xc8,0x81,0x75,0x1c,0xbb,0xe2,0x30,0x6e,0xbb,0xf1,0x18,0x6e,0xb9,0xfe,0x18,0x2e,0x3b,0xb8,0xff,0x82,0x64,0xa0,0x77,0xe,0xef,0x78,0xcb,0x3d,0x98,0xcf,0x5a,0x7c,0xf2,0x8b,0xf,0x60,0x18,0x7a,0xb5,0x31,0x5a,0xef,0x81,0xc8,0x76,0x43,0x26,0xb3,0x9a,0x66,0x86,0xbe,0x5f,0x22,0x71,0x8b,0xa6,0x61,0x32,0x4e,0xe6,0x45,0x4d,0x3b,0x87,0xf,0x1,0x43,0xdf,0x8d,0x13,0x7c,0x4f,0x5,0x1,0xa2,0xae,0x91,0x89,0x59,0x4e,0x11,0x21,0xb4,0x4a,0x86,0xe4,0x5c,0xd0,0xb4,0xad,0xe6,0xe6,0x69,0xd8,0x3a,0xc0,0xa4,0x6a,0x81,0x6f,0x5a,0xa4,0x61,0x50,0xeb,0xae,0xe4,0x44,0x19,0x63,0x35,0xb3,0x2b,0x77,0x1d,0x9a,0x66,0xc6,0x21,0xfe,0x6c,0xfd,0x75,0x6c,0xb3,0xf3,0x1,0x43,0xdf,0xd3,0xb9,0x50,0x42,0xce,0x6a,0x99,0x87,0x10,0xe,0x56,0x5b,0x22,0xa9,0xb,0x52,0xf2,0xd6,0xd4,0xd6,0xcb,0xd,0xa9,0x94,0x2b,0x65,0x91,0x62,0x51,0xd5,0x15,0x40,0xed,0x9c,0x62,0x5,0xa6,0xed,0x2,0xb7,0x6d,0x4e,0x72,0xc1,0x54,0xed,0x17,0x74,0x5c,0x4c,0xc9,0x66,0x51,0xb7,0x48,0x46,0x95,0xaa,0xb9,0x78,0x62,0x3d,0x55,0x20,0xea,0xcc,0xdb,0x5a,0x94,0x62,0x60,0xd,0x11,0x39,0x15,0xaf,0x8c,0xa9,0x25,0x77,0x4a,0x48,0x4c,0x89,0xbe,0xd1,0xae,0x3d,0x99,0xf8,0x4f,0x88,0x41,0x94,0x3c,0x21,0x1c,0xb0,0xa2,0xd2,0x9c,0x16,0x34,0x10,0x99,0x42,0xad,0xa4,0x16,0x4e,0x97,0x39,0xb5,0x7d,0x8f,0xab,0xcd,0xaa,0xa8,0x9b,0x92,0x51,0x9a,0xfd,0xa6,0xa4,0x5f,0x9e,0x10,0x64,0x93,0x5c,0x3d,0x6e,0x3e,0x95,0x72,0x3,0xbd,0x7d,0x19,0xb3,0xda,0x82,0x4a,0xc,0xcd,0x58,0xe8,0x60,0x56,0xa5,0x4c,0x2b,0xea,0x28,0x33,0xb5,0x3b,0x4e,0x15,0x8d,0x50,0x82,0x63,0x24,0x1a,0xb3,0x8e,0x73,0x22,0xc9,0x2c,0x72,0x49,0xba,0x3d,0x4a,0xd2,0x9,0xb9,0x18,0xc7,0xd7,0x32,0xab,0xd3,0xe8,0xc1,0x81,0x51,0xa2,0x4d,0xd4,0x8f,0x25,0x67,0xe4,0x49,0x1b,0x72,0x66,0x85,0xb2,0xb6,0x82,0x4f,0x95,0x5a,0x76,0xb4,0x3d,0xe7,0x69,0xb9,0xa,0x30,0x96,0x49,0x40,0x38,0x42,0x37,0x21,0x98,0x26,0xe2,0xae,0x49,0xde,0xe7,0x74,0x9d,0xd3,0xe2,0x21,0x25,0x78,0xd8,0xe6,0x2a,0xd7,0xbe,0x99,0x64,0x2c,0xaa,0xd2,0x2f,0x25,0x5d,0x86,0x58,0x4b,0x45,0x19,0x5e,0xb8,0xa4,0x45,0xee,0x6f,0x65,0x92,0x2d,0x69,0xac,0xd3,0x56,0x75,0x19,0x27,0x79,0x4a,0x1a,0xb,0xf5,0x54,0xb0,0x62,0x25,0x17,0xd2,0x12,0x6c,0x75,0xd5,0xed,0xd3,0x1,0x38,0xc6,0x53,0xd0,0x43,0x8,0x87,0x1c,0xe3,0x4a,0x8b,0xfa,0xa8,0x22,0x2c,0x80,0x85,0x66,0x1,0x4e,0x6,0xba,0x12,0xc1,0x5a,0xbc,0xc1,0x83,0x7b,0xda,0x3a,0x9c,0x38,0xe,0x42,0x23,0xf,0xa4,0x70,0x83,0xb7,0xc9,0x59,0xa7,0x2a,0x52,0x4c,0x8,0x57,0xb0,0xed,0x7d,0xca,0xe5,0xd1,0xf2,0xe2,0x98,0xb1,0xa,0x83,0x62,0x30,0x96,0x6c,0x65,0xe8,0x4d,0x92,0x94,0xd8,0xd0,0xf1,0x4e,0xa7,0x39,0x73,0xd3,0x36,0xef,0xe7,0x64,0x9d,0x86,0xcf,0x27,0xa6,0xf7,0x3,0x91,0x8f,0xb,0xc9,0x37,0xba,0xec,0x47,0xc2,0xb9,0xe4,0xc9,0x7b,0xa6,0x57,0x12,0x15,0x6e,0x55,0xe5,0x5f,0x45,0x45,0x45,0x45,0x45,0x45,0x25,0x0,0x2b,0x2a,0x2a,0xfe,0x9,0x60,0xc,0xf5,0x37,0x3c,0x81,0xe7,0x5c,0xae,0x3c,0xda,0x35,0x29,0xa7,0xc9,0xe8,0xe4,0xdc,0x18,0xab,0x41,0xf4,0xce,0x1b,0x9d,0xe8,0x48,0x3,0xa3,0xb5,0x1e,0x6f,0xb9,0xfb,0x26,0x7c,0xf8,0xfd,0xbf,0xf2,0x8a,0xe4,0xdf,0xa9,0x33,0xe7,0xf0,0x8d,0x7,0x1e,0xc1,0x37,0x1f,0xf9,0x9,0x16,0x7d,0x62,0x3b,0x51,0x54,0x12,0x4a,0x88,0xb6,0x94,0x22,0xe2,0x90,0xf1,0x62,0xce,0x78,0xf1,0xd4,0x26,0xfe,0xfe,0xb1,0xa7,0x10,0x1c,0xf0,0xc6,0xdb,0x6f,0xc4,0xbb,0xee,0xbf,0x17,0x47,0xf,0x1f,0xdc,0x93,0x8,0xb4,0xd6,0xe2,0xbe,0x7b,0x6e,0xc7,0xf6,0xa2,0xc3,0x5f,0x7c,0xe5,0xef,0x1,0x47,0x93,0xa8,0xa1,0x5f,0xb2,0xa5,0x8d,0x33,0xb1,0xfc,0xd4,0xe6,0xe8,0x48,0xcd,0x64,0x2c,0x4a,0x49,0xfa,0x3b,0x4d,0x5e,0x99,0x44,0x93,0x89,0x98,0x94,0x6d,0x94,0x4c,0xb9,0x74,0xc6,0xac,0x58,0x9c,0xad,0xf5,0x3a,0x51,0x97,0x32,0x12,0x6f,0x9c,0x4e,0xe0,0xd,0xc,0xba,0x6e,0x5b,0xb,0x49,0x7c,0x8,0x44,0x6e,0x38,0xa7,0xd6,0xb7,0x81,0x1b,0x48,0x4b,0xa6,0x9c,0x2f,0x69,0xf7,0x35,0xc6,0x20,0x4f,0x54,0x17,0x94,0x35,0xe5,0x27,0x93,0x42,0xab,0xe1,0xfd,0x0,0x5b,0x2e,0x4b,0x6,0xcc,0xa8,0xe0,0x93,0x8c,0xc0,0xa4,0x65,0x20,0x50,0xb,0x1f,0x4d,0xc2,0x23,0xb5,0x57,0x72,0x86,0x99,0xf3,0x54,0xee,0x62,0xad,0x85,0xf1,0x94,0x13,0xc9,0x54,0x9,0xcd,0xb7,0x59,0xed,0x63,0x50,0x38,0xbf,0x9e,0xc7,0x13,0x13,0x13,0xca,0xc,0x99,0x49,0xd3,0x2f,0x38,0x9b,0x6d,0x62,0xaf,0x1c,0x55,0x29,0x6,0x13,0x8f,0x1c,0x35,0x20,0xe7,0x8c,0x9c,0x16,0xf5,0xc2,0x7d,0x25,0x52,0x5f,0xec,0xb3,0xbb,0xc8,0xbe,0xa9,0x45,0x70,0xd7,0x87,0x26,0x65,0x40,0x19,0xc6,0xb9,0x49,0x6e,0x9b,0x90,0x43,0x65,0xfc,0xb4,0x90,0x78,0x13,0x72,0x66,0x2c,0xf9,0x60,0x42,0x80,0x9,0x36,0x4c,0x68,0x27,0x51,0x34,0xc9,0xf8,0x12,0x32,0xf,0x3c,0xe,0xe5,0xbc,0x93,0x9a,0x2a,0xe9,0x75,0x20,0xfb,0x30,0x55,0x1d,0x4d,0x2d,0x8c,0x63,0x8e,0xdd,0x48,0xe8,0x9,0x45,0x32,0xbd,0x37,0x28,0xe9,0xc3,0xfb,0xb0,0xab,0x74,0x1,0x98,0x90,0x86,0x63,0x54,0xc0,0xce,0xfb,0xa5,0x31,0xa2,0xf6,0xe3,0xf5,0x32,0x49,0x6e,0x99,0x70,0xca,0x39,0x71,0x9b,0xf7,0x68,0xa3,0xc6,0x94,0x70,0x33,0x63,0xc4,0x42,0x99,0x10,0x38,0x98,0x6c,0xb9,0x92,0x8e,0x18,0x55,0x59,0x6,0x52,0xd6,0x52,0xc6,0x2c,0xc6,0x94,0x90,0x98,0xf0,0xa2,0x6b,0x9b,0x95,0xbc,0x25,0x73,0x96,0xe2,0x98,0xc7,0x37,0x5a,0x60,0xc7,0xe6,0x5f,0x4c,0xb,0x51,0x2c,0x17,0xa2,0x58,0xab,0x4a,0x4a,0x2a,0x36,0xb2,0x4a,0x54,0x15,0x26,0xc6,0xc4,0x12,0x2a,0xf,0x85,0x20,0x56,0x61,0xc9,0x55,0x9c,0x8c,0x27,0x21,0xfb,0x49,0x3d,0x9e,0xb4,0xec,0x47,0xb,0x4f,0x26,0xf6,0xdc,0x31,0x9f,0x8e,0x8a,0x2a,0xac,0x99,0xb6,0x38,0x8f,0xe7,0x5a,0xf2,0xf0,0x64,0x74,0xc9,0xc3,0x7,0xb9,0x8f,0xc1,0x4c,0xdf,0xb,0xb5,0x8b,0x4b,0x99,0x8b,0xb5,0x63,0xc1,0x15,0xb8,0xe4,0xc6,0x5a,0x37,0xc9,0xb7,0x64,0x2,0x1a,0x65,0xd2,0xa0,0x6e,0x35,0xb0,0x94,0x48,0x3c,0x52,0xbf,0x49,0x49,0xca,0xf4,0xc1,0x86,0xe5,0xd2,0x1a,0x8d,0x61,0xe0,0xd,0x25,0x2,0x31,0x8f,0xad,0xf0,0xd6,0xa1,0x98,0xf1,0x38,0xf1,0x80,0xe0,0xf3,0x34,0x16,0xca,0x10,0x69,0xc9,0x8d,0xdb,0xd6,0x4f,0x5a,0x96,0xc5,0x8a,0x3e,0xb1,0x1f,0xf3,0x98,0x9c,0xfe,0x3e,0xbd,0xc6,0xe9,0x3c,0xf2,0xf5,0xc9,0xf,0xdb,0x88,0x40,0x36,0x4a,0x8,0x4a,0x8b,0x37,0x26,0x45,0x35,0x98,0x10,0xfb,0x7b,0xdd,0x3b,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x1,0x58,0x51,0x51,0xf1,0xcb,0x4c,0x0,0x4e,0x73,0xbd,0x8a,0x94,0x35,0x8c,0x93,0xdd,0x8c,0xac,0x93,0x18,0xb2,0x65,0x79,0xcd,0xa3,0x9b,0x2a,0x25,0xac,0xb5,0x18,0xfa,0x1e,0x21,0x34,0xb8,0xf1,0xd8,0x61,0x7c,0xfc,0x43,0xef,0x46,0xd3,0x34,0x7b,0xae,0x33,0xa5,0x8c,0xef,0x7c,0xef,0x87,0xf8,0xc2,0x37,0x1e,0xc1,0xa9,0xb3,0xe7,0xc9,0xe2,0xca,0x85,0x17,0x32,0x89,0x4,0xc,0xba,0xc5,0x36,0xe7,0xd9,0xd1,0x84,0x30,0xf6,0x9d,0xb6,0xf4,0xa6,0x64,0xf0,0xb5,0x7,0x1f,0xc3,0x83,0x8f,0x3d,0x89,0xf7,0xbe,0xe5,0x2e,0xbc,0xf3,0xfe,0xd7,0xa3,0xd9,0x83,0x6c,0xb4,0xd6,0xe0,0xed,0x6f,0xbe,0x1b,0x2f,0x9c,0x38,0x85,0x7,0x7f,0xf4,0x1c,0x6,0x5e,0x86,0x64,0x9a,0xc5,0xd8,0xd3,0x64,0xdb,0x7b,0x80,0xad,0xa5,0x6,0xd2,0x1e,0x69,0x35,0xc3,0x29,0x71,0x59,0x46,0x3b,0x5f,0x47,0xb7,0xd8,0xd2,0x16,0x5f,0xcb,0x64,0x28,0xd8,0x52,0x3c,0x36,0xa5,0x4e,0x9a,0x71,0xf9,0xf8,0x61,0x47,0x7e,0x92,0x16,0x75,0x30,0x99,0x2a,0x64,0x18,0x85,0xc8,0xa7,0x91,0x54,0x4d,0x9,0xce,0xd1,0x32,0x13,0x6,0xb5,0xfc,0x39,0xef,0x61,0x92,0xe1,0xd6,0x52,0x3f,0x66,0x9b,0x25,0x43,0x59,0x8d,0x86,0x14,0x48,0xd4,0x72,0x1c,0x1,0x5e,0x66,0xd1,0xd6,0x47,0xfa,0xdd,0xdb,0x86,0x27,0x9f,0x19,0x3e,0x34,0xa3,0xc2,0x90,0x27,0x81,0xa2,0x74,0xb4,0x3e,0xe8,0xa4,0x94,0xb2,0xa9,0xac,0x12,0x79,0x34,0x27,0xa6,0xe2,0x14,0xef,0x3,0x72,0xc9,0x4a,0x56,0x96,0x32,0xec,0x2a,0x7,0x31,0x6a,0x13,0x2c,0x23,0x3f,0x64,0x30,0x36,0x5c,0x1a,0x29,0x79,0xc0,0x98,0xe3,0x68,0x1d,0x72,0xb7,0x80,0x6b,0xd6,0x90,0x87,0xed,0x7a,0xf1,0x5e,0x0,0xa7,0x8f,0xbf,0x80,0xb3,0x57,0xbd,0x8c,0xf9,0xfa,0x86,0x12,0x3d,0xab,0x4,0xe0,0x8e,0x80,0x2f,0x83,0x51,0x19,0x2a,0x18,0x76,0x2a,0x2,0xcb,0xae,0xcc,0xbf,0x69,0x51,0x82,0x64,0x43,0xc2,0x0,0x86,0xdb,0x5e,0x35,0xe3,0x4f,0x14,0x44,0x92,0x6b,0xb6,0x23,0x57,0x74,0x77,0xae,0x20,0x94,0xc4,0x8b,0xb9,0xd7,0xfb,0xcc,0xd4,0x5e,0x2b,0xd9,0x7e,0x4a,0x28,0x4f,0xc8,0xc6,0x95,0xc,0xc1,0x1d,0xea,0x47,0x69,0xb1,0x4d,0x13,0x25,0x98,0x66,0xb3,0x31,0x71,0x5e,0xca,0x52,0x49,0xf0,0x1d,0x2c,0x29,0x93,0x8f,0x45,0x2d,0xc3,0x23,0x91,0x68,0x56,0x14,0x82,0x65,0x92,0x25,0x38,0xcd,0x1a,0xdc,0xf1,0xf4,0x5,0x25,0xa5,0xc9,0x59,0xa1,0x2,0xe,0x52,0x5c,0x8e,0x2a,0x46,0xeb,0xe8,0x1,0x0,0x17,0xfc,0x2a,0x9,0x2a,0xc7,0x6b,0x94,0x70,0x2,0x65,0x28,0x9a,0xc1,0xa7,0xd7,0xd8,0x24,0xb7,0xce,0xf0,0x67,0x72,0x29,0xbb,0x48,0xe2,0xa9,0x72,0x6d,0x6a,0x3d,0x95,0x56,0x74,0x22,0xf3,0x8a,0x5a,0x6d,0x45,0xf1,0x9d,0x39,0xd3,0x70,0xcc,0x10,0x64,0x52,0x48,0xa,0x37,0x98,0x5c,0xa2,0xe3,0x34,0x28,0x61,0x24,0x24,0xa5,0x3c,0xe0,0x90,0x7b,0x8a,0x10,0xcd,0x5a,0x84,0xa1,0x43,0x75,0x6a,0x71,0xa6,0xc,0xbd,0x21,0xf7,0xbb,0x8,0x4c,0x21,0xb4,0xf2,0x8a,0x25,0xd5,0xb0,0x4d,0xdd,0xae,0x14,0x5a,0xc8,0xc3,0x6,0xcd,0xbe,0xe5,0x92,0xa2,0x95,0x72,0x96,0x32,0x9e,0xe3,0x95,0xe2,0x96,0x1d,0xc7,0x6e,0x85,0x18,0x37,0xd0,0x38,0x4,0x79,0x5d,0xbe,0x5c,0xc5,0x2a,0x2f,0xeb,0x1e,0x58,0x91,0xa7,0xc4,0x23,0xef,0x65,0x1c,0xfa,0x71,0xdf,0xa7,0xf9,0x82,0x32,0xf6,0x84,0xc0,0xde,0xb1,0x9f,0xd3,0x5c,0x45,0x1d,0xb7,0x7c,0x8d,0x68,0xe6,0xe1,0x54,0x5d,0x3d,0x21,0x60,0xe5,0x81,0x8e,0x64,0x8,0x48,0x51,0x8f,0xd5,0x7f,0x1b,0xb5,0xe4,0xc7,0x18,0x11,0x87,0x1e,0x9b,0x67,0x4e,0x62,0xf3,0xf4,0xa9,0x7a,0xe3,0xad,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0x4,0x60,0x45,0x45,0xc5,0x2f,0x3f,0x98,0x6c,0xc9,0xa3,0x72,0x41,0x8,0x9a,0x14,0x89,0x8,0x72,0xbe,0xa1,0xa0,0x75,0x9e,0x58,0x3b,0x1f,0x48,0xd5,0x50,0x32,0x35,0x2,0xb3,0x4d,0xcf,0x39,0x6a,0xfb,0xfd,0x97,0x1f,0x7d,0x2f,0xf6,0x6d,0xac,0xef,0xb9,0xb6,0xae,0x1f,0xf0,0x99,0x2f,0x7d,0xb,0x5f,0x7d,0xf0,0x31,0x9e,0xa0,0xa,0x29,0x38,0x6,0xa5,0xc7,0x61,0x80,0xb5,0x69,0xb4,0xe9,0x29,0x99,0x60,0x91,0x86,0x81,0x1a,0x67,0x59,0x35,0xb7,0x58,0xe,0xf8,0xcc,0xd7,0x1e,0xc2,0xd3,0xcf,0x9f,0xc0,0xbf,0xf8,0xf0,0x3b,0xf7,0x5c,0x6f,0xf0,0x1e,0x1f,0x7e,0xef,0xfd,0xf8,0xf1,0x33,0x9f,0xc2,0xd9,0x9c,0x31,0xf4,0x9d,0xaa,0x23,0x48,0xf1,0xe1,0x34,0xcf,0x2e,0x34,0x63,0x8b,0xe3,0xb4,0x2d,0xb1,0x69,0x29,0xc3,0x30,0xc6,0x1e,0xbe,0x69,0x75,0xe2,0x14,0x5a,0x22,0xe8,0x4c,0xa0,0x89,0x6f,0x68,0x66,0x4a,0xa6,0x89,0xa2,0x30,0xa5,0x71,0x82,0x27,0x64,0x89,0x73,0x9e,0x32,0xb9,0x58,0xe1,0xa8,0xcd,0xc9,0xd6,0xc2,0xf8,0x80,0xa1,0x5b,0xf2,0xe4,0x97,0x42,0xec,0x85,0x30,0xd4,0xc,0x2c,0x3e,0x56,0xa1,0x6d,0x51,0x96,0x44,0x36,0xf4,0xdd,0x12,0xa6,0xb1,0xdc,0x48,0x59,0x90,0x62,0x22,0x25,0x52,0x8a,0x28,0x39,0xa1,0x69,0x67,0x6a,0x27,0x2c,0x60,0x52,0x52,0x6c,0xde,0xd6,0xc0,0xbb,0x56,0xcb,0x52,0xc6,0x42,0x92,0xc4,0x3f,0x37,0xaa,0xfe,0xc3,0x64,0xb2,0x2d,0xfb,0x22,0xf6,0x36,0x3a,0x2f,0x5,0x16,0x16,0xc5,0x19,0xb6,0x4a,0xae,0x12,0x46,0x42,0x48,0x64,0xb6,0x96,0x16,0x2e,0x42,0xc1,0x64,0x8e,0x6f,0x74,0x12,0x3a,0x16,0x38,0xa4,0x7e,0x1,0x17,0x1a,0x24,0x26,0x8a,0xab,0xed,0x6c,0x6f,0xf4,0x8b,0x73,0xf8,0xe1,0x43,0x7f,0x8b,0xa3,0xc7,0xae,0xc7,0xfa,0xfe,0xcb,0x56,0xda,0xba,0x55,0xb5,0x27,0x45,0x10,0x13,0xe2,0xa6,0x88,0xa,0x53,0xee,0xb,0x13,0xe2,0x43,0x55,0x5f,0x30,0xbb,0x4a,0x13,0x44,0x8d,0x36,0x5d,0x8f,0x66,0xf6,0x59,0x33,0x96,0x7f,0x30,0x71,0x24,0xaa,0x62,0xb1,0x89,0xea,0x78,0xe0,0x7b,0xc,0x30,0x69,0xf2,0x9d,0x7c,0x6,0x93,0xed,0xd6,0x46,0x57,0xe5,0x8f,0xcb,0xe8,0x64,0xb4,0x23,0x41,0xb3,0xf3,0x75,0xcd,0x9a,0x5c,0x29,0xf,0x31,0x64,0xe3,0x35,0x4e,0xc9,0x8e,0x32,0xd9,0x7f,0x4c,0xb3,0x51,0x47,0xff,0x2c,0x56,0x7c,0x9b,0x3b,0xec,0xa9,0xd3,0xe3,0x34,0x25,0x1a,0xcb,0x84,0x74,0x19,0xc9,0xb2,0x51,0x81,0x38,0xb6,0xd4,0xae,0x2a,0xad,0x56,0x88,0x9b,0x9,0x1,0x28,0x65,0x3c,0xc2,0xde,0x14,0x6d,0x18,0x1f,0xb7,0x7d,0xea,0xdc,0x2c,0x93,0xff,0x9b,0x5e,0x97,0xf2,0x60,0x7,0x46,0x72,0x40,0x47,0x1b,0xf1,0x94,0xbc,0x9a,0x5e,0x77,0x2b,0x84,0xb0,0x8e,0x2d,0xb6,0x9c,0xf2,0x72,0xd4,0x46,0xbc,0xa2,0x24,0x1b,0x23,0x25,0xac,0x66,0xfb,0xd9,0x15,0x3e,0x6a,0x9a,0x3f,0x29,0x6a,0xec,0x91,0x98,0x2a,0x58,0x7d,0x6a,0xb0,0x63,0x3f,0x45,0x69,0x89,0xf1,0xe1,0xc1,0xb4,0x28,0xc3,0x68,0x6b,0xb1,0x5d,0x39,0xee,0xa2,0x5c,0x1d,0xcb,0x3f,0x8c,0x12,0xa1,0x3b,0x89,0x6f,0xfa,0x6e,0x88,0x63,0x41,0x88,0x10,0xe0,0x42,0x8,0xd3,0x80,0xc3,0xd8,0xae,0x6c,0x76,0x90,0xaa,0x79,0x24,0x46,0x61,0x60,0x4c,0xd1,0xf3,0x30,0xdd,0x6f,0x7a,0xd0,0xc6,0xd9,0x9a,0x53,0xae,0x57,0x2c,0xbe,0xc0,0x24,0x97,0x91,0x8f,0xc1,0xa4,0x61,0x7b,0x6c,0xf3,0xb5,0x13,0x5b,0xb6,0x58,0xdd,0x47,0x2b,0xb5,0x44,0x53,0x50,0x9c,0x83,0xd7,0x7,0x31,0x92,0x6b,0x68,0xc,0x29,0xe1,0xa7,0x79,0x8c,0x7d,0xb7,0x44,0xb7,0x58,0x62,0xf3,0xec,0x69,0xc4,0xe5,0xd9,0x7a,0xe3,0xad,0xa8,0xa8,0xa8,0xa8,0xa8,0xf8,0x5,0x61,0xc7,0x7f,0x65,0x56,0x54,0x54,0x54,0xfc,0xe2,0xf0,0x86,0x77,0x7e,0x4,0x7,0xe,0x1d,0xd5,0x92,0x7,0x67,0x1d,0x67,0xc4,0x4d,0xf2,0x9b,0xd8,0x2,0xab,0x76,0x3d,0xce,0x9c,0x13,0x5,0x99,0xe5,0x96,0x4b,0xeb,0x3c,0x3e,0xf6,0xde,0x37,0xe1,0x83,0xef,0x7e,0xdb,0x9e,0x96,0xdc,0xae,0xef,0xf1,0x9f,0xfe,0xfc,0x8b,0x78,0xe4,0xa7,0x2f,0xe9,0xa4,0x2d,0xa7,0x44,0xe1,0xf0,0x5c,0x26,0x91,0x52,0x84,0xc1,0x98,0xaf,0x94,0xb8,0x9,0x52,0x32,0xec,0x64,0xc2,0x9b,0x53,0x42,0x68,0x5a,0x9e,0x24,0x45,0x38,0xdf,0xe0,0xe6,0xab,0xf,0xe3,0x7f,0xf8,0xc4,0x7,0xb0,0x7f,0xdf,0xde,0xe4,0xe3,0x23,0x8f,0x3d,0x81,0x3f,0xfc,0xd4,0x57,0x91,0x26,0x4d,0xa2,0x71,0x18,0x94,0x28,0x48,0x71,0x60,0xa5,0x4d,0xd1,0x7c,0x2d,0x51,0x89,0xa4,0x94,0x38,0xe7,0x6e,0xd2,0x8c,0xca,0xf6,0x60,0x2d,0xec,0xe0,0x32,0xf,0xe2,0x9,0xb8,0x54,0x64,0xa2,0xc,0x92,0xbf,0x1,0xe3,0x64,0x4f,0xf9,0x3,0x6e,0xf1,0xf4,0xbe,0x41,0xdf,0x2d,0x60,0x8c,0xd1,0xec,0xbe,0xa9,0x72,0xc3,0x48,0xab,0x26,0x5b,0x34,0x8d,0x66,0x59,0x19,0x78,0xdf,0x60,0xb9,0xdc,0x42,0x8,0x8d,0xda,0x76,0xc5,0x16,0x18,0x87,0x41,0x4b,0x4f,0x1c,0xab,0x5,0x77,0xe6,0x58,0x61,0x32,0xf1,0x37,0xc6,0x20,0x72,0xe,0x61,0x41,0x41,0xe2,0xe5,0xa5,0x61,0x80,0x71,0x16,0xb1,0xef,0x55,0x19,0x18,0x59,0x4d,0x25,0xcb,0x88,0x43,0xaf,0xd6,0x4d,0x21,0x2d,0xe3,0x84,0x8,0x14,0x45,0xda,0x34,0x5f,0xb2,0x68,0x8b,0xa9,0x4a,0x8d,0x90,0x73,0x41,0x4a,0x3,0x62,0xdf,0xe3,0xfc,0xb9,0xd3,0x78,0xee,0xc9,0x1f,0x23,0xa6,0x8c,0x3c,0x2c,0xab,0x2,0xf0,0x55,0xc2,0x35,0xeb,0xf0,0x4d,0xb,0xdf,0xcc,0x50,0x72,0x54,0x85,0x95,0xe4,0xa2,0x11,0x89,0xe1,0x80,0x92,0x60,0x5c,0xe0,0xf7,0x10,0xb9,0x6f,0x5d,0x40,0x1a,0x96,0x4c,0x48,0x14,0x18,0xcb,0x5,0x3c,0xfc,0x7e,0x52,0x21,0xd9,0x89,0x75,0xbe,0x20,0xc5,0xe,0xd6,0x85,0xf1,0xda,0xe0,0x2c,0x41,0x29,0xa,0x98,0x16,0x44,0x40,0x32,0xf4,0x52,0xd4,0x96,0x52,0x21,0xf9,0x84,0x24,0x94,0x7c,0x49,0xc0,0x22,0xe7,0x81,0xaf,0xc9,0x51,0x89,0x2c,0xdb,0x9d,0x75,0x7c,0xb1,0x86,0xc9,0x1a,0xce,0xea,0xeb,0x98,0x40,0xb,0x23,0x79,0xc4,0x84,0xd2,0xb8,0x8e,0xa4,0xb1,0x6,0xb4,0xee,0x34,0x92,0x3c,0x4c,0xe4,0x3b,0xdf,0x22,0x27,0x52,0x36,0x96,0x9,0x29,0x43,0x43,0xda,0x52,0x41,0xd,0x13,0xe1,0xa2,0xee,0x1a,0xd5,0x80,0x64,0x15,0x35,0x2e,0xf0,0x75,0xc7,0xca,0x48,0x1b,0x54,0x3d,0x67,0xe5,0xbe,0x5b,0x12,0x8c,0xd,0x0,0x48,0x41,0x2b,0xfb,0x6f,0xad,0x3,0xac,0x43,0x8e,0x3d,0x13,0x58,0x74,0x7e,0xad,0xb,0xba,0x2f,0x44,0x6e,0x89,0xcd,0xd8,0x23,0xc7,0xe,0xd6,0xb7,0x63,0x96,0x1c,0x5,0xee,0x1,0x39,0xf2,0x79,0x49,0x70,0x61,0xa6,0xb9,0xa5,0x72,0x2f,0x73,0x3e,0x20,0x71,0xb6,0x29,0xa6,0x6a,0xca,0x94,0x48,0x29,0xd,0x5e,0x4e,0xc9,0xba,0xdc,0xb2,0x52,0x84,0x64,0x51,0x52,0xa4,0xf3,0x6b,0x2d,0x6f,0x33,0x97,0x43,0xd9,0x51,0x71,0x99,0x73,0x82,0xe3,0x7,0x26,0xd8,0xa1,0x68,0x33,0xbe,0x41,0x89,0x3d,0x95,0x84,0xa4,0x38,0xda,0x52,0xed,0x98,0x15,0x6a,0x8c,0x1b,0xc9,0x3e,0x47,0xef,0xd3,0x2,0x1c,0xc8,0xf7,0x56,0xe0,0xa8,0x8a,0x6,0x29,0x76,0x70,0x61,0x8e,0x52,0x22,0x93,0x93,0x9c,0x59,0xa,0x6e,0xaa,0x96,0x52,0x15,0xe3,0x38,0xfe,0xc1,0xc2,0x18,0x87,0x38,0x2c,0x39,0xce,0xc1,0x21,0xf6,0xb,0x25,0xa0,0x53,0xec,0x61,0xad,0x47,0x68,0x5a,0xc4,0x44,0xd7,0x83,0x75,0x1,0x39,0xf6,0x14,0x57,0xc0,0xf7,0x39,0xb9,0xc7,0x8a,0xa,0xd1,0xfa,0x86,0xc6,0xab,0xf5,0x48,0xc3,0x42,0x89,0x46,0x18,0xca,0xd1,0xc,0xa1,0x41,0xca,0x5,0xb1,0x5b,0x50,0x36,0x6c,0x8a,0x5a,0xb2,0x62,0xac,0xc7,0xb0,0x3c,0xf,0x17,0x5a,0x1d,0x8b,0x39,0x47,0xf8,0x66,0x8d,0x54,0xea,0xfc,0x40,0x2b,0xf6,0x4b,0xb8,0xd0,0xc2,0x18,0x20,0xf6,0xb,0xf8,0x30,0x3,0xac,0x47,0x4e,0x3,0x3c,0xc7,0x37,0xf8,0xd0,0xc2,0x0,0xe8,0x97,0x5b,0xf0,0xcd,0x1c,0x28,0x69,0x7c,0xf0,0x53,0x38,0xd3,0x36,0x45,0x2a,0x65,0xe1,0x31,0x67,0xf8,0x7c,0x64,0x63,0x91,0x63,0x44,0xbf,0x75,0x6,0x25,0xd5,0x46,0xf6,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x5f,0x24,0xaa,0x2,0xb0,0xa2,0xa2,0xe2,0xa2,0x61,0x54,0x39,0xd0,0xa4,0x34,0x31,0xd1,0x6,0x14,0xe,0x76,0x1f,0xb8,0x59,0x96,0xed,0x55,0x13,0xe5,0x8a,0x31,0x63,0x70,0xbf,0xf,0x16,0x87,0xf7,0xcf,0xf1,0xb6,0x37,0xdd,0xb3,0x27,0xf9,0x97,0x52,0xc6,0x5f,0x7c,0xe1,0x1b,0xf8,0xfe,0x53,0x27,0x34,0xdc,0x3e,0x4a,0x68,0xbe,0xe4,0x58,0xc5,0x41,0x8b,0x23,0x6,0x26,0x98,0x84,0x50,0x72,0x81,0xac,0xab,0x7d,0xb7,0x64,0x62,0xd,0xaa,0x88,0xc9,0x39,0x3,0x71,0xc0,0x8f,0x9f,0x39,0x8e,0x3f,0xf9,0x8b,0x2f,0xe3,0x77,0x7e,0xf3,0xfd,0x58,0x9b,0xb7,0xbb,0xb6,0xe1,0xb5,0xaf,0xb9,0x1,0xaf,0xb9,0xee,0x47,0x78,0xfc,0xd9,0x13,0x4a,0xfc,0x79,0xef,0x31,0xc,0xbd,0x92,0x7,0xa4,0x4,0xb2,0xb0,0xce,0xaa,0x85,0x95,0x28,0x3b,0x20,0x84,0x66,0x2c,0xc3,0x68,0x84,0x9c,0xa0,0x5c,0x3e,0x21,0x12,0x80,0xd1,0xa,0x4c,0xca,0xf,0x8b,0x38,0x74,0xf0,0x4d,0xb,0x5b,0x9c,0xaa,0x3a,0x38,0xb9,0x69,0xcc,0xea,0x2a,0xa3,0x2a,0x6a,0x36,0x5f,0xc7,0xc0,0xf6,0x2f,0x22,0x21,0xc0,0xa,0x42,0x22,0xdc,0x7c,0x68,0x60,0x60,0x10,0xf3,0xc0,0x44,0x21,0x6d,0xa3,0x2a,0x32,0xd9,0x1e,0xac,0xcd,0x97,0x3c,0x79,0x4c,0x9c,0x7f,0x26,0x39,0x86,0xd6,0x5a,0x52,0xd,0xaa,0xaa,0x23,0x8d,0xf9,0x86,0xa2,0x58,0xb4,0x6,0xa6,0x18,0x64,0xb6,0xce,0x39,0x9e,0x3c,0x36,0xed,0xc,0xc3,0xd0,0xd3,0x24,0xd2,0x8c,0x5,0x8,0x29,0x8d,0xca,0xa1,0x94,0x47,0xd5,0xce,0x94,0xfc,0x13,0x35,0x95,0xd8,0x4e,0xa9,0x10,0x54,0x2c,0xaa,0x45,0x9,0x55,0x94,0x41,0xed,0x7c,0xc6,0x18,0x14,0xe3,0x61,0xd0,0xc3,0xcf,0xd6,0xd1,0x57,0x2,0xf0,0x55,0x21,0xf5,0x5b,0x48,0xfd,0x16,0xba,0x57,0x75,0x33,0xb0,0xaa,0x46,0x13,0x12,0x64,0x72,0xa3,0xd8,0xa5,0xb8,0x5c,0x79,0xcf,0xe4,0xb3,0xbb,0xef,0x31,0x3b,0x96,0xf5,0xaa,0xee,0x4b,0xab,0x9f,0x31,0xd6,0xa3,0xe4,0xf8,0x6a,0x3e,0x89,0x9f,0xf5,0xcc,0xd4,0x4c,0xed,0xbb,0x42,0x40,0x93,0x1,0xf4,0xe7,0xde,0xce,0xe9,0xf6,0x42,0x46,0x6f,0xc9,0x7b,0xaf,0xcf,0xd8,0x9,0xc9,0x99,0x7e,0xee,0x63,0xb0,0xe3,0x8f,0x3f,0x5b,0x1,0xcb,0xe7,0xe4,0x82,0xcb,0x31,0x16,0x28,0xa7,0x2f,0xb0,0x4c,0x51,0x89,0xb9,0x7f,0xd0,0x31,0xd1,0xcf,0x31,0x59,0x7c,0xc1,0xf7,0x2d,0xce,0xef,0x18,0x67,0xab,0xe3,0x68,0x5c,0xce,0x1e,0xe3,0xeb,0x15,0xc6,0xdc,0xae,0x73,0x63,0xcc,0xab,0x1c,0x3f,0x3f,0xcf,0x58,0xa2,0xbf,0x2f,0x77,0xbd,0x77,0xef,0xcf,0x5d,0x68,0xc,0xef,0x7a,0x7d,0x8f,0xfd,0xda,0xf9,0x1e,0x22,0xd8,0x57,0xc7,0x91,0x71,0xd,0x4a,0xea,0x57,0x3e,0x23,0x56,0xe4,0x65,0x49,0x7b,0x1e,0x7,0x25,0xd2,0x77,0xac,0x8b,0x14,0x95,0x44,0x46,0xd3,0x7f,0x1b,0x78,0x94,0xdc,0x8f,0xdb,0xf1,0x2a,0x8f,0x7d,0x45,0x45,0x45,0x45,0x45,0x45,0xc5,0xcf,0xf,0x7,0xe0,0xf7,0xeb,0x61,0xa8,0xa8,0xa8,0xb8,0x18,0x38,0x76,0xe3,0x6b,0xd1,0xcc,0xe6,0x6a,0xdf,0x13,0x95,0x1b,0x91,0x57,0x54,0x72,0xa1,0xed,0xb9,0xac,0xd8,0x12,0xcb,0xa7,0x65,0x62,0xc6,0xb1,0x6d,0xe9,0x23,0xef,0x79,0x33,0x6e,0xbf,0xf5,0xe6,0x3d,0xd7,0xf3,0xdd,0x47,0x9f,0xc0,0x5f,0x7e,0xed,0xe1,0x31,0x24,0xbd,0x14,0x52,0x4c,0x58,0x22,0xd2,0xa,0xab,0xe6,0x8a,0x6,0xc0,0x93,0x35,0x4a,0x88,0x34,0xb2,0x11,0x16,0x6d,0xe6,0x25,0xa2,0x30,0x6b,0x76,0x9e,0xa8,0xe4,0x5e,0x3a,0x79,0x16,0xf3,0x60,0x70,0xd3,0xf5,0x57,0xef,0x22,0x22,0xad,0xb5,0x58,0x9f,0x5,0x3c,0xf8,0x83,0x9f,0x32,0xb1,0x26,0x93,0x72,0x26,0xa0,0x8c,0x41,0xd3,0xb4,0x6a,0x1b,0x23,0x75,0xa3,0x94,0x7a,0xd0,0xb1,0xf1,0x3e,0x68,0x1e,0x15,0xe5,0x89,0x79,0x6d,0x1,0x4e,0x29,0xb2,0x2a,0x91,0x8e,0x89,0xf3,0x94,0xfb,0xd7,0xb4,0x73,0xb5,0x5d,0xd2,0xf6,0x9b,0x95,0x46,0x55,0x17,0x2,0x42,0x68,0xb4,0xdc,0x23,0x4d,0xda,0x42,0x8d,0xb1,0xfa,0x19,0x1f,0x82,0xb2,0x86,0xd6,0xd2,0xb6,0x88,0x3a,0xc8,0x5a,0x56,0xf9,0x49,0x9,0x89,0x99,0xb4,0x41,0xf2,0xe4,0xde,0x39,0x87,0x10,0x5a,0x3e,0x5e,0x5c,0x5a,0x12,0xbc,0x5a,0xde,0xbc,0x27,0x85,0x52,0xd3,0xce,0x90,0x53,0x42,0x3b,0x9b,0x6b,0xb0,0xbd,0xda,0xd7,0x98,0x40,0x1c,0x58,0xe5,0x47,0xaa,0x17,0x37,0x66,0xf5,0x4d,0x72,0xa7,0x48,0xb1,0x62,0x75,0x82,0x99,0xb5,0x50,0x86,0x8f,0x1f,0xab,0x49,0xad,0x31,0x2b,0xd6,0x4e,0x2d,0x43,0x60,0x62,0x34,0xe7,0x84,0x6e,0xb1,0x8d,0x73,0xa7,0x4f,0xd2,0xa4,0x37,0x67,0xe4,0x58,0x8b,0x40,0x7e,0xf1,0x28,0x17,0xf8,0xf9,0x1f,0xfb,0xfe,0xf2,0x8f,0xdc,0x16,0xfc,0x62,0xc9,0x86,0x3d,0x89,0xb3,0x82,0x7f,0x9c,0xd9,0xa2,0x5c,0x78,0x19,0x2b,0x96,0xd5,0x9f,0x67,0x3d,0xe5,0x17,0x74,0x3e,0xcb,0x3f,0x62,0xf9,0xe5,0x22,0xad,0xfb,0x42,0xcb,0x2f,0x3f,0xc7,0x72,0x7e,0x8e,0xe3,0xf8,0xcb,0x40,0x56,0x5d,0x68,0x1b,0x76,0xbd,0x5e,0x7e,0xf6,0x7b,0xca,0x1e,0xe3,0x68,0x27,0xd1,0xaa,0x59,0x92,0xe5,0x82,0xc7,0xa1,0xec,0xb5,0x4d,0xd3,0xcf,0xc8,0xcf,0xb2,0xec,0x92,0x7f,0x41,0x63,0xb3,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xe2,0x42,0xb0,0xf5,0x10,0x54,0x54,0x54,0x5c,0xb4,0x39,0x9,0x5b,0x41,0x85,0x0,0x13,0x25,0x1e,0xa9,0xb8,0x46,0x45,0x88,0x73,0x1e,0x39,0x65,0x6d,0x69,0x74,0x42,0x3c,0x31,0xa1,0xb3,0x6f,0x7d,0xd,0xf7,0xdd,0x7b,0xd7,0x9e,0xeb,0x38,0x7d,0x76,0x13,0x7f,0xf6,0xf9,0x6f,0x8c,0xd9,0x71,0x5c,0x87,0x68,0x9d,0xc3,0x72,0xfb,0x3c,0x0,0x56,0x22,0xf2,0xf6,0x50,0xce,0x5f,0x46,0x1c,0x3a,0x2a,0xbb,0x70,0x81,0x88,0xa0,0x94,0x30,0xc,0x3d,0x96,0xdb,0x54,0x1c,0x92,0x53,0x42,0xdf,0x2d,0xc8,0x5e,0x6a,0xad,0x6,0xfb,0x7f,0xf6,0x6b,0x7f,0x8f,0xe7,0x5e,0x78,0x69,0xcf,0x6d,0xb9,0xe9,0x86,0x6b,0x70,0xd5,0x91,0x3,0x0,0x37,0x52,0x1a,0x3,0xcd,0x34,0x74,0xce,0xab,0x95,0x31,0x34,0x33,0xe2,0xda,0xac,0x45,0xd3,0xce,0x10,0x9a,0x99,0x36,0x44,0x92,0xdd,0xcd,0x92,0xaa,0xcf,0x39,0x5d,0x56,0x3b,0x9b,0xf3,0xbe,0x58,0xb5,0xff,0x7a,0x1f,0xa8,0xac,0x63,0xd2,0xe8,0x29,0xf9,0x4b,0xa1,0x69,0x69,0x1b,0x98,0xc,0x93,0x66,0x4c,0xb1,0xcf,0x52,0x9,0x48,0x3,0xeb,0x1c,0xe5,0x0,0xe6,0x8c,0x66,0x36,0x23,0x5,0xa0,0xa5,0xc2,0x8d,0x3c,0x21,0xe0,0x42,0xdb,0xb2,0x2,0x8f,0x6c,0x64,0xaa,0xf4,0x73,0x8e,0x2c,0xda,0xbc,0xe,0x2a,0x39,0x69,0x68,0xd9,0xc6,0x22,0x84,0x80,0xa6,0x9d,0x53,0x21,0x8,0x13,0xac,0x21,0x34,0x93,0xf2,0x17,0xf,0x1f,0x2,0x9a,0x76,0xa6,0xc4,0xe3,0xda,0xfa,0x3e,0x3a,0x6,0xfc,0x3e,0xc3,0xff,0x73,0xde,0x23,0xb4,0x33,0xb6,0x76,0x26,0x3a,0x27,0xb2,0xde,0x1d,0xff,0x8,0xb9,0x27,0xc7,0xd9,0x4c,0xf2,0xba,0xca,0x18,0xe8,0x35,0xaa,0x0,0xd5,0x32,0x9d,0xea,0x85,0x5b,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x71,0xc9,0xa1,0x5a,0x80,0x2b,0x2a,0x2a,0x2e,0x1a,0x44,0x87,0xa6,0xd9,0x76,0xc6,0xc0,0x1a,0xa7,0xc4,0xdf,0x18,0x30,0xe,0xb5,0xc5,0xfa,0xd0,0x68,0xb6,0x1b,0x92,0x81,0xf7,0x1e,0x77,0xde,0x7c,0xec,0x82,0xd9,0x7b,0xdf,0x7e,0xf8,0x87,0xd8,0x5a,0xf6,0xd3,0xb5,0x71,0x31,0x45,0xa6,0xfc,0xa4,0x38,0x68,0xfa,0xbb,0x34,0xd0,0xe6,0x48,0xaa,0xc0,0x76,0x36,0xc7,0x72,0xb1,0x8d,0x52,0x32,0xe2,0x30,0xa0,0x9d,0xcd,0x39,0xd3,0xae,0xd7,0xc6,0xd9,0x38,0xf4,0xe8,0x97,0xb,0xb4,0xf3,0x35,0xa4,0x14,0x91,0xbc,0xc7,0x97,0xbf,0xf1,0x30,0x7e,0xe7,0x37,0xaf,0x80,0xb5,0xab,0x2a,0xc0,0x26,0x78,0xdc,0x75,0xcb,0xd5,0x78,0xf1,0xd4,0x79,0x58,0x90,0xd5,0xb4,0xef,0x97,0x2b,0x4d,0x9e,0x42,0xd6,0x35,0x52,0xbe,0xc1,0x25,0x15,0xc6,0x5a,0xa4,0x94,0x70,0xe0,0xc0,0x7e,0xac,0xcd,0x5a,0x94,0x14,0xe1,0xc,0x60,0xfd,0x7e,0xb2,0xc6,0xf6,0x1d,0xdb,0x7f,0xa9,0x2d,0x11,0xc6,0xa0,0xeb,0x96,0x68,0xdb,0x19,0x86,0x7e,0x89,0x33,0x5b,0xd,0xfa,0x18,0x11,0x42,0x83,0x61,0xe8,0xd1,0x36,0xd,0xe,0xed,0x9b,0xc1,0x3a,0x2a,0xed,0x40,0xc9,0x88,0x31,0xe1,0xd4,0xf9,0x25,0x52,0x4a,0x1c,0x95,0x45,0x79,0x85,0xb3,0xd6,0xe3,0x9e,0xbb,0x6e,0xc2,0xad,0x37,0x1c,0xc3,0xc6,0xfa,0x1c,0x9b,0x5b,0xb,0xfc,0xe8,0xa7,0xcf,0xe2,0x91,0xc7,0x9f,0xc5,0xd9,0xcd,0x4d,0x22,0xea,0x8c,0x65,0x92,0x6e,0x54,0x23,0x96,0x52,0xb4,0xd9,0x57,0x54,0x77,0x4d,0x68,0x60,0x90,0x71,0xcd,0xe5,0x97,0xe1,0x86,0xab,0x2f,0xc7,0x55,0x47,0xf,0x61,0x63,0x63,0xd,0xc1,0x7b,0xf4,0x31,0xe2,0xe5,0x97,0x4f,0xe3,0x99,0x17,0x4f,0xe2,0xf1,0xa7,0x9e,0xc7,0xb9,0xad,0x25,0x7c,0xa0,0x26,0xe4,0xd0,0x34,0x30,0xc6,0x60,0xe8,0x7b,0x88,0x2,0x24,0x4f,0xf2,0x9,0xa5,0x44,0x42,0x82,0xf6,0xdd,0x24,0x3,0x30,0xe5,0xc2,0xcd,0xc9,0xbd,0x66,0xc,0xe6,0x24,0xc5,0xe,0xdc,0xae,0x4a,0xbf,0x70,0x3e,0x1c,0x56,0x44,0x26,0x6,0x40,0x5c,0x9c,0x87,0xd,0xd,0x4a,0xe5,0xff,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x41,0x54,0x2,0xb0,0xa2,0xa2,0xe2,0xe2,0xc1,0x50,0xe3,0x64,0xce,0x45,0xad,0xbe,0xd3,0x2c,0xa8,0xc2,0x65,0x0,0xda,0x5e,0x8,0x9,0xce,0x87,0x5a,0x56,0x8d,0xb1,0x78,0xe3,0x3d,0xb7,0xab,0x45,0x78,0x8a,0xed,0xc5,0x12,0xdf,0xfc,0xee,0x13,0xb4,0x2a,0x6b,0x81,0x4c,0xcd,0xb4,0x6,0x64,0x7d,0x1d,0xfa,0x6e,0x5c,0x76,0xce,0xda,0xba,0xeb,0x43,0x8b,0x6e,0xb9,0x8d,0xcd,0xb3,0xa7,0x60,0x8c,0x41,0xd3,0xce,0xd0,0x77,0x4b,0x6c,0x6d,0x9e,0x41,0x3b,0x5b,0x43,0xdf,0x11,0x31,0xb5,0xd8,0x3a,0x4f,0x8a,0xb7,0xb6,0xc5,0xf9,0xb3,0xa7,0xd1,0xb4,0x33,0xb4,0xf3,0x35,0xfc,0xcd,0x83,0xdf,0xc7,0x7,0xdf,0xf9,0x26,0x5c,0x7e,0xe4,0xd0,0xae,0x6d,0xba,0xeb,0xb6,0x1b,0xf1,0xc5,0x6f,0x3d,0x8a,0x62,0x2c,0x52,0x26,0x82,0x4a,0xa,0x2d,0x68,0xdf,0x48,0xd9,0xd8,0x2f,0x17,0xb0,0xd6,0xe1,0xe0,0xc6,0x1a,0xee,0xb8,0xe9,0x18,0xee,0x78,0xcd,0xf5,0xb8,0xe2,0xe8,0x61,0x6c,0xac,0xcf,0xe1,0xbd,0x87,0x63,0xb,0xab,0x91,0xae,0xd1,0x5d,0x19,0x69,0x46,0xb,0x55,0x50,0x80,0x7f,0xff,0xa7,0x9f,0xc5,0xf7,0x9f,0x78,0x4e,0xf3,0x4,0xef,0xba,0xe5,0x5a,0xfc,0xee,0xc7,0xdf,0x4f,0xed,0x8e,0x74,0xb0,0x61,0x8c,0xc1,0x9f,0x7c,0xfa,0x2b,0xf8,0xf6,0x23,0x3f,0x81,0xb1,0xd4,0xd8,0x7b,0xe3,0xb1,0xc3,0xf8,0xc4,0xaf,0xfd,0xa,0xae,0xbe,0xea,0xa,0x38,0x37,0x1e,0xe3,0xb7,0xbe,0xf1,0x6e,0x9c,0x3e,0xbb,0x89,0xaf,0x7d,0xeb,0x61,0x7c,0xe1,0x6f,0x1f,0x6,0x38,0xd4,0x9e,0x6c,0xc3,0xd,0x67,0xce,0x53,0xeb,0x31,0xc,0xad,0x33,0x38,0x83,0x5f,0x79,0xfd,0x6d,0x78,0xf3,0x1b,0xee,0xc4,0x15,0x47,0xe,0x23,0x84,0xbd,0xbf,0x62,0x4a,0x29,0x38,0xbf,0xb5,0x8d,0x47,0x1f,0x7f,0x12,0x9f,0xfb,0xea,0x3,0x78,0xf1,0xe4,0x26,0x86,0xbe,0x47,0xe1,0xa6,0xdf,0x18,0x89,0x50,0xb4,0x8e,0x14,0xa1,0xc8,0x64,0x7b,0x16,0xcb,0xb6,0x36,0xc7,0xc2,0x68,0x91,0x1,0xb5,0x23,0xf3,0xf0,0x92,0xe6,0x49,0x69,0xd8,0xe4,0x1c,0xc8,0xd5,0xc6,0xd7,0x32,0x5a,0x8b,0x4b,0x81,0xd,0x33,0x2a,0x4c,0x70,0x55,0x3,0x58,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x71,0xe9,0xa1,0x12,0x80,0x15,0x15,0x15,0x17,0xf,0x13,0xd2,0x4a,0x2d,0x98,0xc5,0xb0,0x8a,0x8c,0x1b,0x63,0x33,0x37,0x78,0x3a,0xc7,0x6d,0x8a,0x64,0xb9,0x2d,0x39,0xc3,0x86,0x0,0x1f,0x3c,0xae,0x39,0x76,0xc5,0x9e,0x8b,0x7f,0xfa,0xb9,0x97,0x70,0xe6,0xfc,0xb6,0x96,0x50,0x48,0xcb,0x6f,0x4a,0x89,0x88,0x29,0x40,0x5b,0x1d,0x73,0xce,0x8,0xcd,0xc,0xfd,0x72,0x9b,0x54,0x79,0x85,0xac,0xb5,0xdd,0x62,0x4b,0xdf,0x3b,0xf4,0x1d,0xd9,0x5f,0x87,0x5e,0x9,0x3b,0x63,0xc,0xba,0xc5,0x36,0x59,0x56,0xbd,0xc7,0xf6,0xf9,0x4d,0x84,0xa6,0xc1,0x23,0xdf,0x7f,0xc,0xef,0x79,0xe7,0xdb,0x76,0x6d,0xd3,0x91,0x43,0x7,0xb1,0x6f,0xde,0xe0,0xf4,0xe6,0x16,0xbc,0x6f,0x90,0xd,0xb5,0x8e,0x52,0x2b,0x64,0x64,0xbb,0xac,0xc3,0x65,0x7,0xf6,0xe3,0xdd,0xf7,0xbd,0x16,0xf7,0xbd,0xfe,0xe,0xec,0x5b,0x5f,0xdb,0xb3,0xdc,0xe4,0x67,0x83,0xcb,0x1,0x4a,0xe1,0x9c,0x3f,0xcf,0xfb,0x5c,0x90,0x63,0x8f,0x66,0xf,0x2,0xce,0x6a,0x49,0x86,0xc3,0x3d,0xb7,0x5e,0x87,0xdf,0xfa,0xc8,0xbb,0xb1,0xb1,0x3e,0xdf,0xf5,0x3e,0x63,0xc,0xe,0x1d,0xdc,0x8f,0x8f,0xbc,0xff,0xed,0xb8,0xfd,0x96,0xeb,0xf0,0xef,0x3f,0xf9,0x5,0x6c,0x2e,0xc6,0xf3,0x98,0x12,0x11,0xad,0xa1,0x25,0xfb,0xf0,0xad,0xd7,0x1e,0xc5,0x27,0x3e,0xf4,0x4e,0x5c,0x75,0xc5,0xd1,0x9f,0xb9,0x2f,0xc6,0x18,0xec,0xdb,0x58,0xc7,0x9b,0x5f,0x7f,0x27,0xee,0xbc,0xed,0x26,0xfc,0xe5,0x17,0xbe,0x8e,0xbf,0x79,0xe8,0x71,0xf4,0x3,0x65,0x2e,0x7a,0x17,0xe0,0x5d,0x20,0xf5,0x26,0x0,0x58,0x22,0x4c,0x29,0xd7,0xf,0x80,0x29,0x48,0x43,0x4f,0x96,0x69,0x14,0xb5,0xfb,0xca,0xb2,0x33,0xef,0x67,0x8c,0x91,0xb,0x4b,0x2c,0x13,0x84,0x63,0x23,0x71,0x41,0x81,0xe1,0x7c,0x42,0x52,0x32,0x6,0xc,0xcb,0x5,0x8c,0xe6,0x8,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x5c,0x3a,0xa8,0x19,0x80,0x15,0x15,0x15,0x17,0xd,0x92,0xb5,0x46,0xf9,0x74,0x85,0x2c,0xbf,0xac,0x6c,0x93,0x3c,0x38,0x7e,0x27,0xac,0xa5,0x76,0x5c,0x0,0xd4,0x66,0x69,0x80,0x14,0x7,0x5c,0xb6,0x6f,0x1d,0xfb,0xf7,0x6d,0xec,0xb9,0xec,0x47,0x7e,0xf4,0x14,0xd9,0x37,0xe3,0x0,0x29,0x86,0xe0,0x10,0x40,0x2a,0x94,0x70,0xd4,0x22,0x2c,0x44,0x52,0xce,0x9,0x7d,0xb7,0xe4,0xb2,0x10,0x60,0xb9,0xb5,0x9,0x63,0x28,0xef,0x6e,0xe8,0x3b,0xc4,0x61,0xc0,0xd0,0x2d,0x89,0x98,0x2c,0x19,0xdd,0x72,0x1b,0xdd,0x72,0x81,0xed,0xf3,0xe7,0x90,0x52,0x44,0xbf,0x5c,0x0,0x6,0xe8,0x96,0xdb,0xf8,0xce,0xf7,0x7e,0x88,0x94,0x77,0x87,0x9c,0x7,0xef,0x70,0xc5,0xa1,0x75,0xa4,0x18,0x99,0x90,0x64,0xa5,0x1e,0xa0,0xa5,0x19,0xb7,0x1c,0x3b,0x84,0xff,0xe5,0x77,0x7f,0x3,0xef,0x79,0xc7,0x9b,0xb0,0x7f,0x63,0xfd,0x1f,0x48,0xfe,0xad,0xc2,0x0,0x93,0xac,0x41,0xca,0xf8,0x2b,0x65,0xaf,0xb6,0x48,0xca,0x7,0xbc,0xf6,0xe8,0xbe,0xb,0x92,0x7f,0x2b,0x5f,0x12,0xd6,0xe2,0xd6,0x9b,0xaf,0xc7,0xff,0xf4,0x2f,0x3e,0x8,0xe7,0x58,0x2d,0x67,0x9d,0xe6,0x7,0x5a,0x63,0xf1,0xf6,0x7b,0x5e,0x83,0x7f,0xfd,0xdb,0x1f,0xc5,0xb1,0x2b,0x2f,0xff,0xb9,0xf7,0x65,0x7d,0x6d,0x8e,0x8f,0x7f,0xf8,0x3d,0xf8,0xd0,0x3b,0xee,0x45,0x68,0x67,0x93,0xd2,0xf,0x50,0x99,0x89,0x34,0x23,0x3b,0x37,0x92,0x77,0x39,0x4f,0x1a,0x7c,0x2d,0x37,0x2e,0x7,0x55,0x7a,0xa,0xe1,0x27,0x65,0x28,0x29,0x45,0x3d,0x7,0x34,0x76,0x32,0x4a,0x4a,0xdc,0x90,0x4c,0x99,0x89,0xfd,0xf6,0x26,0x5c,0x68,0x91,0x63,0xac,0x17,0x6e,0x45,0x45,0x45,0x45,0x45,0x45,0x45,0x45,0x45,0x45,0xc5,0x25,0x87,0x4a,0x0,0x56,0x54,0x54,0x5c,0x34,0x48,0x23,0xef,0x98,0xf3,0xe7,0xd4,0xd6,0xab,0xe4,0xb,0x37,0xbf,0x52,0xeb,0x6e,0xd4,0x92,0xa,0x69,0xbb,0xbd,0xfa,0xe8,0x7e,0x34,0x21,0xec,0x5a,0x76,0x4a,0x9,0x4f,0x3d,0x77,0x9c,0x8,0x45,0x40,0xed,0x9d,0x71,0xe8,0x49,0xd,0xc6,0x4,0x91,0xf7,0x1,0x6,0x16,0x71,0x18,0xb0,0xdc,0xde,0x2,0x8c,0xc1,0xd0,0x77,0xd8,0x3a,0x77,0x1a,0xc3,0xd0,0x63,0xb1,0xb5,0x89,0x14,0x23,0x16,0x5b,0x9b,0xc8,0x39,0x21,0xa5,0x84,0xad,0x73,0x67,0x74,0xfb,0x9b,0x76,0x6,0x1f,0x2,0x66,0xb3,0x35,0x18,0x56,0xa2,0x95,0x2,0xbc,0xf0,0xd2,0xcb,0x58,0x6c,0x2f,0x77,0xdf,0x54,0xad,0xc5,0x95,0x87,0xf,0xf0,0x36,0x46,0xc,0xfd,0x12,0xce,0x39,0x18,0x6b,0x10,0x66,0x33,0x5c,0x73,0xf9,0x1,0xfc,0xce,0x6f,0xbe,0x17,0x97,0x1f,0x3d,0xf4,0xb,0x38,0xbe,0xdc,0xfb,0x59,0x80,0x94,0x6,0xb6,0x4d,0x5b,0xb6,0x1d,0x37,0x7b,0x92,0x71,0x25,0x27,0x6c,0xcc,0x67,0xf8,0x9d,0x8f,0xbd,0xef,0x67,0x92,0x7f,0xd3,0xf3,0xf8,0xd3,0x67,0x5e,0x0,0x8c,0x83,0xf7,0x9e,0x72,0xf6,0x60,0x10,0x9a,0x16,0x6f,0xbd,0xfb,0x26,0x7c,0xe2,0xc3,0xef,0xc6,0x6c,0xd6,0xfe,0xcc,0x65,0x5c,0x8,0xde,0x39,0xbc,0xf7,0x9d,0x6f,0xc1,0x5b,0xef,0xbc,0x81,0x8f,0x21,0xa9,0xf0,0xc,0xc,0x5c,0x68,0x94,0x74,0xcc,0xac,0xe2,0x73,0xdc,0x50,0x5c,0x4a,0xd1,0xa2,0x8f,0x98,0x22,0x11,0x84,0x3c,0x76,0xc0,0x85,0x24,0xa5,0x14,0xe4,0x44,0xe5,0x30,0x56,0xca,0x52,0xd4,0x2b,0x2c,0xe3,0x26,0xc1,0x35,0x33,0xe4,0x34,0xc0,0x85,0xb6,0x5e,0xb8,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x97,0x1c,0xaa,0x5,0xb8,0xa2,0xa2,0xe2,0xa2,0x41,0xd4,0x59,0x80,0x81,0x35,0x76,0x42,0xf2,0x59,0x52,0xa8,0x81,0x18,0xac,0x94,0xa9,0x54,0x42,0x8,0x1c,0x21,0x69,0x4a,0xc9,0x38,0x78,0x60,0xff,0x9e,0x44,0x56,0x1f,0x13,0xce,0x6d,0x77,0x6a,0xab,0xa5,0xb6,0x5e,0xca,0xf3,0x1b,0x86,0x9e,0xda,0x7e,0xfb,0xc4,0xc4,0x53,0x61,0x8b,0x68,0x41,0x8a,0x44,0xca,0x59,0xef,0xa9,0xf9,0xb7,0x5f,0x52,0xb3,0x2e,0x2b,0xc8,0xbc,0xf,0x38,0x7f,0xf6,0x34,0x42,0x3b,0xa3,0xdc,0xc0,0x14,0x61,0xad,0xe7,0xfd,0x1,0x42,0x33,0x87,0xb5,0x16,0xa7,0x36,0x17,0xd8,0x5a,0x6c,0x63,0x63,0x63,0x6d,0xd7,0xb6,0x1d,0xdc,0xbf,0x4e,0x5,0x15,0x85,0x14,0x6a,0x3d,0xab,0xa,0xe7,0xc1,0xe1,0x77,0x3e,0xfa,0x2e,0xec,0x5b,0xdf,0xfd,0x99,0x52,0xa,0x16,0xcb,0xe,0x9b,0xe7,0x17,0x48,0x39,0x61,0x6d,0xd6,0xe2,0xc0,0xfe,0x8d,0x5d,0xfb,0xbe,0xbd,0x58,0xe2,0xaf,0xbe,0xfa,0xf7,0xd8,0x3c,0x77,0x4e,0x55,0x7e,0x39,0x27,0x3c,0x7b,0xfc,0xac,0x36,0x1f,0x87,0xa6,0x65,0x6b,0x6c,0xd9,0xf5,0x79,0xe7,0x3c,0x3e,0xfa,0xce,0x7b,0x71,0xf9,0x91,0xcb,0x0,0x10,0x91,0x7a,0x7e,0x6b,0x81,0x73,0x9b,0x5b,0x30,0x86,0x2c,0xcc,0x3b,0xc9,0xbc,0xe3,0x27,0x4e,0xe1,0xbf,0x7d,0xe3,0x7b,0x4a,0xd8,0x1a,0x0,0xc6,0x3a,0x5c,0x7d,0x64,0x1f,0x3e,0xf2,0xfe,0xb7,0xef,0x49,0xd0,0xc6,0x98,0xf0,0xec,0xb,0x2f,0xe1,0xd1,0x27,0x9e,0xc7,0x4b,0x27,0x4e,0x62,0x48,0x5,0xfb,0x36,0xd6,0x70,0xdd,0x95,0x87,0x70,0xe7,0xad,0x37,0x60,0xff,0xbe,0x55,0xe5,0xa3,0x77,0xe,0xbf,0xf1,0xbe,0xb7,0xe1,0xc7,0xcf,0x1c,0xc7,0x8b,0x2f,0x9f,0xa6,0x2c,0x40,0xf4,0x88,0x3,0x95,0xb1,0x90,0x8a,0x8f,0x6c,0xbe,0xd4,0x94,0xec,0x50,0x72,0x41,0x8a,0x3,0xb5,0x48,0x23,0xb3,0xb2,0xb3,0x90,0xfa,0x8f,0xc9,0xe6,0xb1,0x19,0x1a,0xda,0x92,0x2c,0x2f,0x58,0x6b,0x11,0x87,0x8c,0x2,0xca,0x9c,0x4c,0x31,0x22,0xd,0x5d,0xbd,0x70,0x2b,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x39,0x54,0x2,0xb0,0xa2,0xa2,0xe2,0x22,0xc3,0x20,0xe7,0x48,0xcd,0xb5,0x28,0x70,0xce,0x31,0xc9,0x97,0x57,0x2d,0xc2,0xfc,0x4f,0xe6,0xdc,0x36,0x51,0x71,0xcd,0xdb,0xb0,0xe7,0x52,0xe3,0x10,0x31,0x70,0x5b,0x43,0x4a,0x44,0x2,0x96,0x92,0x11,0xe3,0x80,0xc2,0xf9,0x82,0xdd,0x62,0x9b,0x1b,0x6a,0xa1,0x36,0x5f,0x52,0x84,0x25,0x98,0x52,0x10,0xf9,0xf7,0x94,0x7a,0x52,0x95,0x59,0x6a,0x0,0x9e,0xaf,0x6f,0xa0,0x94,0x8c,0xf9,0xfa,0x3e,0x26,0x7,0x3d,0x86,0x6e,0x89,0xd0,0xce,0x0,0x14,0xcc,0xd6,0xc8,0xe2,0xdb,0x75,0x7b,0xdb,0x45,0x37,0xd6,0xd7,0x69,0xb9,0x31,0xc2,0x58,0x7,0x6b,0x69,0x1f,0xdf,0x7c,0x7,0x15,0x7d,0xec,0xc4,0x62,0xd9,0xe3,0xeb,0xdf,0x7e,0x4,0x7f,0xf7,0x83,0xa7,0xb0,0xb9,0xbd,0x44,0xc9,0x9,0xeb,0x6b,0x6b,0xb8,0xf5,0xda,0x23,0x78,0xcf,0xfd,0xf7,0xe0,0x72,0x56,0x14,0x2,0xc0,0xda,0x7c,0x86,0xb7,0xdc,0xf3,0x1a,0xfc,0xbb,0x4f,0x7e,0x19,0x5d,0x4c,0xc8,0x89,0x8a,0x4f,0x42,0xd3,0x22,0xc5,0x1e,0xcd,0x6c,0xd,0x94,0x6b,0x87,0x3d,0x89,0xd3,0x63,0x97,0x1f,0xc2,0xeb,0xee,0xb8,0x5,0x0,0x70,0xea,0xf4,0x39,0x7c,0xf6,0x2b,0xdf,0xc6,0xf7,0x7f,0xf2,0x3c,0xfa,0x4,0x94,0x1c,0x71,0xf4,0xc0,0x1a,0xde,0xf5,0x96,0xd7,0xe1,0xde,0x3b,0x6e,0x46,0xdb,0x36,0x88,0x31,0xe1,0x2f,0xbf,0xf4,0x4d,0x6c,0x2d,0x7b,0xb6,0x46,0x17,0xa0,0x14,0x58,0x0,0x1f,0x7b,0xff,0xfd,0xd8,0xd8,0x83,0xcc,0x3c,0x71,0xf2,0x34,0x3e,0xf5,0xf9,0x6f,0xe0,0x47,0xcf,0x9d,0xd2,0xf6,0x63,0x39,0xdf,0xdf,0x79,0xf4,0x49,0xfc,0xd5,0xd7,0x1e,0xc2,0x6f,0xbe,0xef,0x3e,0xbc,0xfe,0xae,0xdb,0x56,0xb6,0xf1,0xc0,0xfe,0x7d,0x78,0xef,0xfd,0x77,0xe3,0x3f,0xfd,0xe5,0xd7,0x55,0xd,0x6a,0x6d,0x42,0xce,0x99,0x33,0x18,0x69,0x2c,0x94,0x52,0x80,0x9c,0x91,0x4b,0x62,0xcb,0xb0,0xa1,0x71,0xe3,0x2,0x4a,0x8e,0x54,0x50,0xc2,0x56,0x5e,0xe7,0x3d,0x86,0x14,0x61,0x9d,0x57,0xeb,0x37,0x65,0x7,0x26,0x2d,0x2,0xb6,0xd6,0x21,0xd,0x1d,0x17,0x84,0x94,0x7a,0xc9,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x5c,0x72,0xa8,0x16,0xe0,0x8a,0x8a,0x8a,0x8b,0x6,0x6a,0x6c,0x95,0x9f,0xb,0xdb,0x55,0xb,0x72,0x8a,0xc8,0x89,0x1a,0x5f,0xc5,0xa6,0xb,0x56,0xb2,0x59,0xce,0x7d,0x23,0xa2,0xc6,0x61,0x7d,0x6d,0x6f,0x9b,0xea,0x10,0x23,0xba,0xbe,0x23,0x35,0xa1,0xf3,0x63,0xbb,0x6b,0x2e,0xb0,0xde,0x23,0xe,0x3,0x9c,0xf7,0x8,0x4d,0x4b,0xb6,0x60,0x26,0xca,0xe2,0xd0,0x93,0x9a,0x2c,0x45,0xc4,0x14,0xc9,0x52,0xea,0x2,0x66,0xf3,0x75,0xce,0x21,0x74,0xfc,0xb3,0x58,0x91,0xc9,0x8a,0x1a,0xda,0x19,0xbc,0xf,0x98,0xad,0x6d,0x20,0xa7,0x4,0x6b,0x1d,0x6,0x2e,0xad,0xd8,0x89,0xe0,0x49,0xf5,0x97,0x52,0x42,0x91,0xdc,0xc1,0x9c,0x70,0xef,0x9d,0x37,0xef,0x7a,0xef,0xf9,0xad,0x5,0xfe,0xf0,0x3f,0x7f,0x11,0x5f,0xfa,0xce,0x8f,0xb0,0xb9,0xb5,0xe0,0xec,0x3a,0x87,0xad,0xed,0x5,0x1e,0x7a,0xfc,0x39,0xfc,0xc1,0x1f,0x7f,0x1e,0x4f,0x3f,0xf7,0xe2,0xca,0x67,0xae,0xbe,0xe2,0x8,0x3e,0xf8,0xb6,0x3b,0x91,0xe2,0xa0,0xc4,0xda,0xd0,0x53,0x73,0xae,0x31,0x46,0x1b,0x97,0xf7,0x72,0xdd,0xbe,0xe9,0xde,0xdb,0xe0,0xbd,0xc3,0xb3,0xcf,0x1f,0xc7,0x1f,0xfc,0xf1,0xe7,0xf0,0xed,0x1f,0x3c,0x89,0x6e,0xc8,0x48,0x69,0x80,0xb1,0xe,0xcf,0xbf,0x7c,0x16,0x7f,0xf4,0xa9,0x2f,0xe3,0xff,0xfa,0xe3,0xcf,0xe0,0xc4,0xc9,0xd3,0xf8,0xfe,0x63,0x3f,0xc6,0x23,0x3f,0x79,0x41,0x89,0x3c,0x63,0xc,0x8c,0x75,0xb8,0xfd,0xc6,0x63,0xb8,0xf1,0xba,0x63,0xbb,0x96,0x7f,0xf2,0xf4,0x59,0xfc,0xdf,0x9f,0xfc,0x12,0x1e,0x7f,0xe1,0xc,0x95,0xbd,0xc4,0x81,0x73,0xf9,0x1c,0x42,0xd3,0x2,0x30,0x58,0xc6,0x8c,0x3f,0xfb,0xd2,0x43,0x78,0xec,0xc7,0x4f,0xef,0xfa,0xfc,0xeb,0xee,0xb8,0x15,0x7,0xd6,0x5a,0x84,0xa6,0xe1,0x75,0xd1,0x39,0x91,0x73,0x2c,0x4a,0x3d,0xcd,0x93,0x2c,0xe0,0x71,0x43,0x4d,0xcb,0xce,0x7,0x2a,0x5a,0x71,0x4e,0x9,0x61,0x52,0x4a,0x4a,0x6,0x60,0xe1,0xf6,0x64,0x33,0x2a,0xa,0x4b,0x6,0x60,0x50,0x8c,0xad,0x16,0xe0,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x4b,0x12,0x95,0x0,0xac,0xa8,0xa8,0xb8,0xa8,0xc8,0x5c,0xca,0x20,0x99,0x6b,0x30,0x6,0xd6,0x3a,0xca,0x6d,0x1b,0x7a,0xb5,0x6d,0x2,0x80,0x31,0x8e,0x55,0x5f,0x96,0xde,0x5e,0x32,0x16,0xcb,0xe5,0xde,0x37,0x2f,0x3,0x34,0x21,0xc0,0x58,0x8b,0x9c,0xc7,0x42,0x7,0x6b,0x2d,0x72,0x22,0x42,0x8b,0x8a,0x38,0x28,0xd7,0x4f,0xf2,0xe3,0x84,0x30,0x8b,0x31,0x62,0x36,0x5b,0x43,0xd3,0xce,0xd0,0xb4,0x33,0xb2,0x9a,0x86,0x86,0xb6,0xc3,0x5a,0xb4,0xf3,0x35,0x84,0xa6,0x25,0x65,0xa0,0x27,0x52,0xd0,0x71,0xfe,0x9d,0xf3,0x1,0xa1,0x6d,0xe1,0xfd,0xde,0x22,0xea,0x7e,0x88,0xf0,0xde,0x23,0xa5,0x48,0x84,0x63,0x1c,0x30,0xf,0x16,0x47,0xe,0xaf,0xe6,0xfe,0x95,0x52,0xf0,0xa5,0x6f,0x3c,0x8c,0xa7,0x8e,0x9f,0x43,0x4e,0xa4,0x48,0xf3,0x21,0x20,0xc7,0x48,0xdb,0x52,0xa,0xb6,0xbb,0x1,0x7f,0xfe,0xc5,0x6f,0xa3,0xeb,0x47,0xb2,0xd1,0x18,0xe0,0x9e,0xdb,0x6f,0xc6,0xa1,0xfd,0x1b,0x9c,0x6f,0x67,0xb8,0x5d,0xd8,0x8e,0x6f,0x28,0x7b,0xab,0xd9,0xda,0xa6,0xc1,0xe6,0xf9,0x5,0xfe,0xe3,0x7f,0xfd,0xa,0x4e,0x9f,0xa7,0x52,0x13,0x1f,0x2,0x4a,0x2e,0x58,0x2e,0xb6,0x88,0x64,0x73,0xe,0x3f,0xf8,0xf1,0xd3,0xf8,0xdf,0xff,0xe8,0x2f,0xf0,0xff,0xfd,0xd5,0xd7,0x31,0xc,0xc3,0x58,0x64,0x62,0x1d,0x50,0x32,0xde,0xfe,0x86,0xdb,0x49,0xcd,0x39,0x41,0x4a,0x19,0x9f,0xfb,0xda,0x43,0xd8,0xec,0x32,0xc,0x9f,0xfb,0xa6,0x9d,0xa3,0x99,0xcf,0x91,0xe2,0xa0,0x24,0xac,0xb5,0x16,0x7d,0x3f,0xe0,0x2f,0xfe,0xfa,0x41,0x6c,0x2f,0x56,0xcf,0xef,0xc6,0xfa,0x1c,0x77,0xdf,0x76,0x23,0xd9,0x7b,0x53,0xa2,0x42,0x18,0x0,0x39,0x47,0x18,0x6b,0x28,0xaf,0x8f,0xcb,0x5d,0xac,0x19,0xc9,0x41,0x18,0xc0,0x3a,0xaf,0xca,0xcb,0xd1,0xae,0x4c,0x6a,0x53,0xf9,0xb7,0xe4,0xb,0x4a,0xf9,0x87,0x1c,0x23,0x63,0x1d,0xac,0x73,0x48,0xfd,0xb2,0x5e,0xb4,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x97,0x1c,0xbc,0x44,0x91,0x82,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x2a,0x1,0x58,0x51,0x51,0x71,0x11,0xc1,0x4,0x94,0xe4,0xb2,0xb1,0xea,0x2a,0x97,0x42,0x4,0x11,0x2b,0xf0,0x44,0xad,0x65,0x8c,0x41,0xe2,0xbf,0x67,0x26,0xed,0x96,0xdd,0xde,0x2a,0xbb,0xa6,0x69,0x46,0xc2,0x8b,0x95,0x6f,0x62,0x1b,0xf6,0x21,0x70,0xfb,0x6e,0x62,0xdb,0x6f,0x46,0x8a,0xd4,0xf0,0x3b,0xf4,0x1d,0x65,0xd8,0x19,0x83,0xed,0xad,0x73,0x6c,0x2f,0x4d,0xaa,0x16,0x24,0x85,0x1f,0xe5,0xfe,0x59,0xeb,0xd0,0xb4,0x73,0x84,0xd0,0xa0,0x14,0x22,0xb3,0xa4,0x64,0x24,0x84,0x6,0x4d,0xb3,0xb7,0x3d,0xb9,0x8f,0xf4,0x5e,0xef,0x3d,0x91,0x50,0xd6,0xe1,0xca,0xc3,0xfb,0x11,0x76,0x10,0x86,0x9b,0xe7,0xb7,0xf1,0xd0,0x8f,0x9e,0x3,0x8a,0x34,0xf8,0x3a,0xa4,0x94,0x34,0x9f,0xd0,0xf9,0x0,0x63,0x1d,0x8e,0x9f,0x5d,0xe0,0xf9,0x97,0x4e,0xae,0x7c,0x76,0x3e,0x6b,0x71,0xc3,0x95,0x97,0xc1,0x3a,0x7,0x1f,0x1a,0x58,0x47,0x44,0x68,0xc9,0x19,0xa1,0x69,0xa9,0xa8,0xe3,0x2,0x8d,0xbc,0x5f,0x7f,0xe0,0x11,0x9c,0xdc,0x22,0xfb,0xb3,0x81,0x21,0xab,0xb2,0xe1,0xcc,0x46,0x63,0x90,0x4b,0x46,0x33,0x9b,0xe3,0xc4,0xc9,0x33,0xd8,0x5c,0x46,0x6a,0x53,0x4e,0x51,0x15,0x75,0xfb,0xd7,0xe7,0xb8,0xee,0x9a,0xab,0x76,0x2d,0xf7,0xd9,0x17,0x4f,0xe0,0x91,0x9f,0x3c,0x4f,0xa4,0xaf,0x73,0x44,0x2c,0x72,0xee,0x22,0x6d,0x93,0x81,0xf,0xd,0x86,0xbe,0x87,0x75,0xe,0x2f,0x9d,0x3c,0x43,0xe5,0x22,0x13,0x18,0x63,0x70,0xe7,0xad,0xd7,0xa3,0x99,0xcd,0xd1,0xb4,0x94,0x65,0x38,0x66,0x34,0x5a,0x56,0xef,0xd1,0xf1,0xca,0x39,0x21,0x27,0xb2,0xfa,0x66,0xb6,0x7d,0x3,0x44,0xfc,0x89,0xaa,0x2f,0x97,0x4c,0x59,0x8e,0x65,0xb5,0xb1,0x99,0x88,0x60,0x56,0x8d,0x8a,0xad,0xd9,0x35,0x28,0xa5,0xb6,0x0,0x57,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x5c,0x7a,0xa8,0x4,0x60,0x45,0x45,0xc5,0x45,0x43,0x51,0xfe,0x6f,0x2c,0xf5,0x20,0x4e,0x90,0xfe,0x60,0x9d,0x67,0x65,0x59,0x1,0xc,0xdd,0x8e,0xc8,0xd2,0xeb,0x54,0xbd,0x75,0x6e,0x6b,0xb1,0x67,0x83,0x6c,0x13,0x2,0x8e,0x1c,0x58,0x47,0x1c,0x6,0x0,0x64,0x4d,0x1d,0xfa,0x1e,0x25,0x67,0x74,0x8b,0x6d,0x5a,0x76,0x4a,0xf0,0x21,0x70,0x6b,0xac,0xe5,0x22,0x89,0x8c,0x94,0x13,0x52,0x1c,0xb0,0xb6,0xb1,0x1f,0xa1,0x69,0x11,0xda,0x19,0x9a,0xd9,0x5c,0xb,0x35,0xe6,0xeb,0xfb,0xe1,0xbd,0x87,0x75,0x1e,0xc6,0x1a,0x58,0xe7,0x11,0x9a,0x19,0x72,0x4a,0x98,0xaf,0x6f,0x60,0xbe,0xbe,0x1f,0xfb,0x36,0xd6,0xb1,0x6f,0x63,0x7d,0xcf,0xfd,0x3e,0x7b,0x6e,0xb,0x86,0x8b,0x4e,0x72,0xa2,0x22,0x92,0xe0,0x2d,0xd9,0x9b,0x27,0x58,0x2c,0x3b,0x6c,0x77,0x3d,0x42,0xdb,0xc2,0x5,0x22,0xb8,0xbc,0xf,0xb0,0xc6,0xaa,0xb2,0xb1,0x64,0xca,0xf9,0x3b,0x73,0x6e,0x6b,0xe5,0xb3,0xc6,0x0,0x47,0xf,0xed,0x47,0x68,0x1a,0x2e,0x33,0xe9,0x10,0xe3,0xa0,0x36,0x67,0x98,0xbd,0x9b,0x77,0xcf,0x6f,0x2f,0xf1,0x9d,0x47,0x9f,0x46,0xc9,0xb4,0xaf,0xa2,0x9e,0xcc,0x39,0xeb,0x9,0x33,0x30,0x64,0xa7,0xd,0x1,0xfd,0x72,0x81,0x38,0xf4,0x4a,0x2a,0x5a,0x6b,0x71,0xc3,0xb1,0xa3,0x58,0x5f,0x9b,0xed,0x5a,0xf6,0xc3,0x8f,0xfe,0x14,0x85,0x2d,0xb9,0x54,0xc6,0x41,0x76,0xef,0x38,0xf4,0xa4,0xba,0x64,0x2b,0xb6,0xf,0xd,0x72,0x8c,0x30,0xd6,0xe2,0x27,0x4f,0x3d,0xbf,0x6b,0x39,0x57,0x1e,0x3d,0x84,0x14,0x3b,0xb6,0x5a,0xd3,0x71,0x88,0x3d,0x29,0x29,0x75,0x5c,0x19,0xb0,0xd,0x98,0xc8,0x49,0x1f,0x2,0xe2,0xd0,0xeb,0x31,0x30,0xc6,0x8e,0x8a,0x3f,0x43,0x25,0x34,0x5,0xd0,0xf1,0x46,0xea,0xbf,0xd1,0x26,0x9d,0x86,0x5,0x72,0xec,0x61,0x4c,0x8d,0xc6,0xad,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xb8,0xf4,0x50,0x67,0x3a,0x15,0x15,0x15,0x17,0xd,0xa2,0x40,0x23,0xbb,0x25,0xc6,0x2,0x86,0x52,0x50,0xc,0x54,0x89,0x27,0xc5,0x1c,0xce,0x39,0xe4,0x94,0x51,0x72,0xcf,0xe4,0x60,0xc2,0xb,0xc7,0x4f,0x63,0x88,0x71,0x57,0xd3,0x6c,0x8,0x1e,0x97,0x5f,0xb6,0x81,0x67,0x4f,0x9c,0x41,0x8e,0x51,0x95,0x7f,0x39,0x25,0x18,0x6b,0xb5,0xfc,0x63,0xe8,0x3b,0x56,0x2,0xf6,0x70,0xce,0x63,0xbe,0xbe,0x86,0x34,0xf4,0x18,0x86,0x1e,0xc6,0x58,0x34,0xb3,0x39,0x11,0x5b,0xc6,0x20,0x21,0xa1,0x9d,0xad,0xf1,0x76,0x1b,0xb2,0xf8,0x1a,0xa3,0x36,0xe5,0xd0,0xb6,0xdc,0x4a,0xdb,0xe0,0xb2,0x8d,0x19,0x66,0x6d,0xb3,0x6b,0x9f,0x4b,0x29,0x38,0x7e,0xfa,0x3c,0xc,0x8c,0x2a,0xd7,0xac,0x73,0x18,0x62,0x46,0x2e,0x85,0xcb,0x50,0x8,0xce,0x59,0x4,0x67,0x89,0xc4,0x64,0x26,0x2a,0x97,0x2,0x18,0x20,0x84,0x6,0xfd,0x72,0xc1,0xc7,0xd1,0xee,0x59,0x86,0x62,0x9d,0x45,0xdf,0x75,0x94,0xa1,0xc8,0xd9,0x7f,0xd6,0x79,0xa4,0x38,0x8c,0x8a,0xc8,0x1d,0x78,0xee,0x85,0x13,0x38,0xb7,0xbd,0x60,0xf5,0x24,0x15,0x63,0xe4,0x94,0x94,0xa8,0x1c,0xb3,0x18,0xc9,0x2a,0x2b,0xca,0x3d,0xe2,0x6d,0x33,0xbc,0x6f,0x71,0xc5,0xe1,0xdd,0xcd,0xcc,0x29,0x67,0x6c,0x6e,0x75,0x38,0x7a,0x60,0x8d,0x2c,0xde,0x4c,0x2a,0x1a,0x6b,0x49,0xd5,0x68,0x2d,0x4a,0x9e,0x3,0x52,0xfc,0x92,0x13,0x60,0xc,0xb6,0x17,0xcb,0x5d,0x6d,0xc5,0x1b,0x1b,0xeb,0x58,0xb,0x16,0x27,0xb7,0x7,0xe4,0x34,0x0,0xc6,0x22,0x34,0xa4,0x1c,0xcc,0x39,0xc2,0x39,0x87,0x18,0x33,0xb7,0x11,0x5b,0xa4,0x42,0xed,0xd2,0x6,0xd4,0xe2,0x2c,0x79,0x90,0x96,0x49,0xe5,0xa2,0x63,0xd0,0x30,0x29,0xca,0x83,0xd1,0x68,0x21,0x30,0x8c,0x9f,0x71,0x3,0x30,0x93,0xd1,0x3b,0x14,0x83,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0xff,0x94,0x51,0x9,0xc0,0x8a,0x8a,0x8a,0x8b,0x6,0x21,0xa1,0xc8,0xe2,0x4b,0xb6,0x5f,0xb0,0xe5,0x57,0xec,0xaa,0x3e,0x8c,0x65,0xf,0x42,0x14,0x51,0x73,0x2e,0x95,0x70,0x9c,0x38,0x7d,0xe,0x8b,0xc5,0x72,0x17,0x1,0x8,0x0,0x77,0xde,0x7a,0x3,0xbe,0xf3,0xc3,0x67,0x50,0x50,0x28,0xf,0xce,0x7a,0x5d,0x8f,0x10,0x4a,0x43,0xdf,0x63,0xe8,0x97,0x54,0x6,0x61,0x1d,0x91,0x79,0x28,0xd8,0xd8,0x7f,0x10,0xdd,0x72,0xc1,0x85,0x19,0x19,0x61,0xb6,0x86,0xd0,0xce,0x11,0x87,0x8e,0xad,0xbf,0x33,0xe4,0x52,0xd0,0x84,0x6,0x31,0xe,0xaa,0x24,0x74,0xce,0xc3,0x85,0x80,0x3b,0x6e,0xbe,0x1a,0xde,0xbb,0x5d,0xdb,0xd4,0xf,0x3,0x8e,0x9f,0x3a,0x7,0xdf,0x34,0xc8,0x25,0x63,0x16,0x36,0xb0,0x38,0x7f,0xe,0xe7,0xb6,0x3b,0xc4,0x61,0x40,0xd3,0x8c,0xa4,0xe1,0xc1,0xfd,0xfb,0x70,0x64,0xff,0x1c,0xc7,0xcf,0x75,0xab,0x4,0xa6,0x31,0x6a,0xc7,0x75,0xce,0x63,0xde,0x6,0x5c,0x75,0xc5,0x91,0x5d,0xeb,0x3a,0x7b,0xee,0x3c,0x6d,0x67,0x4e,0x4c,0x38,0x52,0xce,0x1d,0x2e,0x50,0x0,0x2,0x0,0x4f,0x3f,0x7f,0x2,0x25,0x17,0x14,0x64,0x26,0xfd,0xb8,0x44,0xc3,0x79,0xc4,0xa1,0x3,0x38,0x73,0x2f,0xe,0x1d,0x72,0x2e,0x4c,0x14,0x16,0xb4,0xf3,0x75,0xe4,0x4c,0x16,0xe0,0x2b,0x2f,0xdf,0xdd,0x64,0xec,0xac,0xc5,0x6f,0x7d,0xf8,0x57,0xe8,0x17,0x56,0x79,0x8a,0xd8,0x73,0x24,0xf7,0x8a,0xfe,0xbf,0x64,0xfb,0x91,0xf5,0x78,0x95,0x4c,0x6c,0x42,0xc0,0xfe,0x8d,0x75,0x9c,0xdd,0xea,0x90,0x8c,0xa1,0xd2,0x18,0xde,0x21,0xb5,0x49,0x5b,0x87,0x6c,0xc6,0x6c,0x47,0x6b,0x2d,0xb2,0x58,0xcd,0x2d,0xa9,0x3d,0x65,0x1d,0x28,0x50,0xbb,0x33,0xc,0x8d,0x41,0x63,0x2d,0x4a,0x1c,0x40,0x9c,0x67,0x46,0xee,0xb7,0xe0,0x9a,0x39,0x4a,0x31,0x48,0xfd,0xf9,0x7a,0xf1,0x56,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x54,0x5c,0x52,0xa8,0x16,0xe0,0x8a,0x8a,0x8a,0x8b,0x6,0x51,0x95,0x95,0x9c,0xd9,0xca,0x1a,0x55,0xed,0x57,0x32,0x29,0xc1,0x62,0x1c,0x10,0x7,0x69,0x8a,0xb5,0x44,0x7c,0x95,0x82,0x94,0x22,0xa,0xa,0xba,0x3e,0xe2,0xc5,0x97,0x4e,0xec,0xb9,0xfc,0x1b,0xaf,0xbd,0x12,0xb3,0xe0,0xd8,0xee,0x59,0xd4,0xc6,0x6a,0xb8,0x48,0xa4,0x0,0x68,0xda,0x16,0xce,0x7b,0xc,0xdd,0x12,0x3e,0x34,0x58,0x6e,0x9f,0xc7,0x7c,0x7d,0x1f,0x0,0xa0,0x9d,0xcd,0xb9,0x4,0x64,0x8e,0x9c,0x13,0x9a,0xd9,0x4c,0xed,0xc0,0x30,0x6,0x81,0xc9,0x3f,0xeb,0x88,0x90,0xa4,0xd6,0xdd,0x82,0x1c,0x7,0xdc,0x75,0xdb,0x4d,0x7b,0x6e,0xd3,0x99,0xb3,0xe7,0x71,0x66,0xbb,0x9f,0x94,0x72,0x14,0x84,0x76,0x86,0x17,0x4e,0x9c,0xc6,0xa9,0xd3,0x67,0x57,0xde,0xeb,0xbd,0xc3,0x7b,0xde,0x7a,0xb7,0xaa,0xd1,0xa4,0xbc,0x22,0xa5,0x84,0xd8,0x77,0x94,0x5d,0x97,0x13,0xde,0x7a,0xe7,0xb5,0xd8,0xbf,0xb1,0xda,0x86,0x3c,0xc4,0x88,0x67,0x8f,0x9f,0x43,0xb7,0xd8,0x42,0xec,0x7b,0x55,0x3c,0xfa,0xd0,0x70,0xf3,0x6e,0xda,0x93,0x4,0x3c,0xbb,0x79,0x1e,0x39,0x27,0xa4,0x14,0xc9,0x36,0x3c,0xf4,0xb4,0x6f,0x69,0x0,0x60,0x90,0xe2,0xc0,0x99,0x80,0x94,0x21,0x38,0xc,0x3d,0x9c,0x6f,0xb0,0xdc,0x26,0xb,0xf2,0xd0,0x2d,0x31,0x6b,0xf7,0x7e,0x76,0xe4,0x9d,0xa3,0x7f,0xbc,0x83,0xf7,0x1e,0xc1,0x7b,0x84,0xe0,0xf9,0x77,0x7a,0x4d,0x5e,0x97,0xd7,0x76,0x16,0x89,0x0,0xa4,0x12,0x3d,0xb8,0x6f,0xd,0x0,0x90,0x52,0xd4,0xed,0x21,0xd2,0xb8,0x90,0xe2,0x11,0xd0,0x6d,0xb4,0xd6,0x51,0x46,0x20,0x2b,0xfb,0xa4,0xb0,0x4,0x4c,0x40,0x17,0x88,0xc2,0xb0,0xb0,0xb2,0xd1,0x8c,0xef,0x61,0x3a,0xd2,0x86,0x39,0xc8,0x1d,0x9c,0xea,0x85,0x5b,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x71,0xc9,0xa1,0x12,0x80,0x15,0x15,0x15,0x17,0xef,0x6,0x23,0xa5,0x17,0x24,0xc9,0x9b,0x64,0x1,0x16,0x26,0xfb,0x48,0xe1,0x26,0x90,0xa2,0x89,0xc2,0xaa,0xb1,0x9c,0x12,0x52,0x8e,0x78,0xe0,0xbb,0x8f,0xed,0xb9,0xfc,0x7d,0x1b,0x6b,0x78,0xf3,0x9d,0x37,0x70,0xe9,0x43,0x81,0xf3,0x1e,0x91,0xc9,0x2f,0xc9,0x6,0x24,0x92,0x6b,0xc0,0xfa,0xbe,0x83,0xf0,0xa1,0xc1,0x81,0xc3,0x97,0x93,0xba,0xd0,0x3a,0xb4,0xf3,0x75,0xb4,0xb3,0x35,0xf8,0x10,0xb0,0xb6,0x71,0x0,0x69,0x18,0x58,0x49,0xe8,0x54,0xbd,0x68,0x8c,0x41,0xd3,0xcc,0x34,0x4f,0xce,0x39,0x8f,0xd7,0xde,0x78,0x6c,0x4f,0x15,0x1c,0x0,0x3c,0xf1,0xf4,0x4b,0xe8,0x3b,0xca,0xbc,0xb,0xa1,0xd5,0xec,0xc3,0x98,0x12,0xbe,0xfd,0xf7,0x8f,0xec,0x7a,0xff,0x5d,0xb7,0xdd,0x88,0x8f,0xbd,0xf3,0x6e,0x1c,0x58,0x9f,0x11,0xe9,0xc9,0xac,0x5d,0xca,0x9,0xde,0x59,0xbc,0xeb,0xd,0xaf,0xc1,0x3b,0xdf,0x7a,0xcf,0x2e,0x95,0xdc,0xb,0xc7,0x4f,0xe1,0x99,0xe3,0xa7,0xb4,0xc4,0x24,0xa7,0x84,0xbe,0xef,0xb0,0xbd,0x49,0x24,0xa3,0xd8,0xae,0x77,0x62,0x18,0x6,0x2e,0x39,0xa1,0x9c,0x45,0xcb,0x76,0xe9,0x9c,0x12,0xfa,0x6e,0x81,0xbe,0x5b,0x2,0x28,0xdc,0x9c,0x9c,0xd0,0xb6,0xb3,0x95,0x8c,0x3d,0x1f,0x9a,0x15,0x1b,0xf3,0x45,0x19,0x37,0xd6,0xc0,0x94,0xc8,0xad,0xc4,0x64,0x15,0xee,0x96,0xdb,0x44,0xf4,0x82,0x8f,0xe7,0xd0,0x43,0x14,0x85,0x39,0x27,0x74,0xcb,0x5,0xe5,0x35,0x7a,0x4f,0xe3,0xca,0x7,0x56,0x7b,0x42,0x15,0x80,0x30,0x56,0xc7,0x98,0x8c,0x3f,0x29,0x90,0x29,0x69,0x0,0x72,0x8f,0x52,0xbf,0x16,0x2b,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x41,0x54,0xb,0x70,0x45,0x45,0xc5,0xc5,0x83,0x2a,0xd0,0x8c,0x36,0x37,0x88,0x12,0x8b,0xda,0x71,0x49,0xd5,0xa5,0x6f,0x2f,0x52,0xe,0xe2,0x50,0x72,0x66,0x12,0x7,0x78,0xf8,0xb1,0x27,0xf1,0xb1,0xed,0x5,0xd6,0xd7,0x56,0x55,0x70,0xd6,0x5a,0xdc,0xff,0xc6,0xbb,0xf0,0xc0,0xa3,0x4f,0x63,0xd1,0x1,0xcb,0xc5,0x16,0xac,0xb5,0xe8,0x87,0x9e,0x88,0x44,0xb1,0xb0,0x96,0x2,0x63,0xa9,0x15,0xd8,0x9b,0x80,0x9c,0x33,0xe6,0x6b,0x1b,0xe8,0xbb,0x5,0x59,0x90,0xad,0x45,0x1c,0x3a,0xf8,0xd0,0x6a,0xb3,0xf0,0xd0,0xf,0xf0,0xa1,0x41,0xb0,0x2d,0xfa,0x6e,0x89,0x76,0xbe,0x46,0xa4,0x9a,0xb5,0x78,0xef,0xfd,0xf7,0xc0,0xb9,0xdd,0x44,0xd1,0x10,0x23,0x1e,0x7a,0xf4,0x9,0x38,0xef,0xc7,0x9c,0x43,0x26,0xcb,0xbc,0xf,0xf8,0xea,0x77,0x1e,0xc3,0x5b,0xee,0xbb,0x7,0x97,0x1f,0x39,0xa4,0x9f,0x31,0x6,0xb8,0xef,0x9e,0xdb,0x71,0xeb,0xcd,0xd7,0xe1,0x89,0x27,0x9f,0xc7,0xf1,0xd3,0xe7,0x51,0x4a,0xc1,0x81,0x7d,0x6b,0xb8,0xf9,0xba,0x2b,0x70,0xf4,0xd0,0xc1,0x5d,0xe5,0x21,0xb9,0x14,0x7c,0xed,0x5b,0xdf,0x25,0xd2,0xcb,0x58,0x74,0xcb,0x5,0x91,0x66,0xac,0x84,0x2c,0x29,0x21,0xc6,0xbd,0xdb,0x93,0x73,0x22,0x85,0x5f,0x4e,0x49,0x49,0xd9,0x7e,0xb9,0x80,0xb,0x1,0xb1,0xa7,0xe3,0xb6,0xbd,0xb9,0x84,0x6f,0x1a,0x38,0xe7,0x31,0xa8,0x42,0x30,0x1,0xdc,0xe8,0x3b,0xb0,0xda,0x70,0x8a,0xbe,0x1f,0xf0,0xc4,0x53,0xcf,0x71,0xd0,0x23,0x59,0xad,0xa5,0x95,0x99,0xce,0x3d,0xfd,0x9e,0x52,0x4,0xca,0xa4,0x8c,0xc3,0x3a,0xca,0xdb,0x63,0xb2,0x4e,0xde,0x7e,0x76,0x73,0xb,0x25,0x13,0x71,0x9a,0x53,0x44,0x4a,0x49,0x89,0xbb,0x64,0xc,0xfd,0x3b,0x8d,0x4a,0xc5,0x92,0x13,0x4a,0xa6,0xaf,0x34,0xe7,0xbc,0x16,0xa1,0xa8,0xd,0xdd,0x5a,0x2a,0xe,0x81,0x3,0x72,0x42,0x8a,0x71,0x32,0xee,0x32,0x6c,0x20,0xa2,0xf3,0x82,0xde,0xe9,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x8a,0x7f,0xc2,0xa8,0x4,0x60,0x45,0x45,0xc5,0x45,0x43,0x11,0x62,0x27,0x27,0xc0,0x58,0x58,0x67,0x89,0x94,0x73,0x8e,0x88,0xa0,0x4,0x38,0x56,0xa2,0x95,0x9c,0x1,0xeb,0xd8,0x22,0x1c,0xe1,0x9c,0xa7,0xcf,0xc3,0xe2,0xcc,0xe6,0x36,0x1e,0x79,0xf4,0x71,0xbc,0xe5,0x8d,0xaf,0xdb,0xb5,0x8e,0xcb,0x8f,0x1c,0xc2,0x7b,0xdf,0x7c,0x3b,0xfe,0xcb,0x97,0xbf,0x3,0x67,0x9d,0x12,0x8a,0xa4,0xe2,0x8b,0xac,0xf4,0x5b,0x23,0xa5,0x21,0x93,0x71,0xa1,0x69,0x91,0x52,0xc4,0x6c,0xbe,0x8e,0x2,0xc0,0xfb,0x46,0xc9,0xc7,0xbe,0x5f,0x52,0x13,0xaf,0x23,0x1b,0x71,0x8c,0x11,0xce,0x7b,0xb6,0xa1,0x1a,0xdc,0x7f,0xf7,0x4d,0xb8,0xf1,0xba,0x63,0x7b,0xee,0xef,0xb3,0xcf,0x1f,0xc7,0x33,0xc7,0xcf,0x22,0x67,0xb2,0x30,0x87,0xa6,0x25,0xb2,0x2b,0x25,0x2c,0xfb,0x2d,0x9c,0x3d,0x3f,0xe0,0x3f,0xfc,0xd9,0xe7,0xf0,0x6f,0x7e,0xf7,0xbf,0xc3,0xc6,0xfa,0x9a,0x7e,0xce,0x18,0xe0,0xc0,0xbe,0x75,0xbc,0xe1,0xee,0xd7,0xbc,0xaa,0xe3,0xfa,0xc3,0x1f,0x3f,0x85,0xbf,0x7b,0xe4,0xc7,0x80,0xb1,0x88,0xc3,0x92,0x4a,0x3f,0x42,0xc3,0xb9,0x7d,0x99,0x8,0x2f,0x83,0x5d,0xe5,0x1a,0x74,0x5c,0xe8,0x38,0x14,0x14,0x20,0x17,0x56,0xcb,0xd1,0xfe,0x59,0xef,0xd0,0x6d,0x77,0x88,0xb1,0x87,0x61,0x22,0xb4,0xc4,0x32,0xb1,0x15,0x67,0xf8,0xa6,0xc5,0xf9,0xad,0xc5,0x5e,0x67,0x1b,0x9f,0xfe,0xf2,0x77,0xf0,0xc2,0xa9,0x73,0xf0,0xce,0x23,0x97,0xac,0x56,0xdd,0x61,0xe8,0xd5,0x4e,0x1d,0xfb,0xe,0x5,0x40,0x12,0xeb,0x77,0x29,0x70,0xce,0xa1,0x5b,0x6e,0xc3,0x5a,0x87,0x6e,0xb9,0x40,0x68,0x1a,0x2c,0x17,0xdb,0x30,0x0,0xba,0x6e,0xa1,0xb6,0x5e,0xe7,0xa9,0xb4,0x44,0x95,0xa5,0xa0,0x7c,0x40,0x18,0x6a,0x6a,0x2e,0x28,0xda,0x1c,0xac,0x39,0x80,0x86,0xc8,0x47,0x21,0x30,0xc1,0xaa,0x3f,0x68,0x21,0x8,0xb8,0x25,0x84,0xb2,0x3,0x4b,0x1a,0xea,0x85,0x5b,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x71,0xc9,0xa1,0x7a,0x9d,0x2a,0x2a,0x2a,0x2e,0x1e,0x58,0xd5,0x55,0x40,0x6a,0x3d,0x69,0x85,0xd5,0xd2,0x8a,0x9,0x11,0x63,0xd8,0x92,0x99,0x52,0xa4,0xcc,0x40,0x6e,0xa4,0x15,0xf2,0xe7,0x73,0x5f,0x7d,0x0,0x8b,0xe5,0x72,0xd7,0x2a,0x8c,0x1,0xee,0xbf,0xef,0x6e,0xbc,0xee,0x96,0x6b,0xc8,0x9e,0x6a,0x49,0x3d,0x28,0x19,0x82,0x71,0xe8,0x57,0x54,0x60,0xce,0x7,0x6e,0xa4,0x1d,0xcb,0x23,0x24,0xaf,0xaf,0x94,0x8c,0x10,0x5a,0x18,0x63,0x95,0x14,0xc,0xa1,0xe1,0xd7,0x80,0xeb,0xaf,0x3a,0x8c,0xf,0xbc,0xe3,0x8d,0x7b,0xaa,0xff,0x72,0x29,0xf8,0xda,0x3,0x3f,0x40,0xdf,0xf7,0x88,0xb1,0xa7,0xa6,0xda,0xa1,0x47,0x2e,0x19,0x2e,0x4,0x78,0x2e,0x10,0x79,0xec,0xc9,0xe7,0xf1,0x7f,0xfe,0xe1,0x9f,0xe2,0xf8,0xf1,0x97,0xff,0x41,0x87,0xf4,0xe9,0xe7,0x5e,0xc4,0x1f,0xfd,0x97,0x2f,0x21,0xe7,0x82,0x6e,0xb1,0x85,0x6e,0xb1,0x8d,0x14,0x7,0xc,0xfd,0x12,0x29,0x46,0x74,0xcb,0x6d,0x26,0xd7,0xfa,0x3d,0x3f,0x2f,0x4,0x69,0x4e,0x6c,0x1d,0xe6,0x63,0xd5,0x77,0xb,0xc,0x5d,0x87,0x6e,0xb9,0x8d,0x52,0xa4,0x3d,0x99,0xda,0x75,0xfb,0x6e,0x81,0x38,0xc,0x18,0x86,0x1e,0x7d,0xb7,0xc0,0x4b,0x27,0x4e,0xee,0x5a,0x6e,0xd3,0x34,0xb8,0xe1,0xd8,0x21,0x55,0x16,0x1a,0x50,0x73,0x70,0xce,0x19,0x21,0x10,0xa1,0x17,0xfb,0xe,0x96,0x2d,0xdf,0x39,0x67,0xc4,0xa1,0x83,0x31,0x40,0x8c,0xb4,0xec,0x38,0xf4,0xb0,0xce,0x61,0xb1,0x7d,0x1e,0x69,0xe8,0xb1,0x5c,0x6c,0xc1,0xf0,0x7b,0x33,0xab,0xf6,0xfa,0x6e,0x89,0x6e,0x7b,0x6b,0xa2,0x42,0xa4,0xc,0x40,0x39,0xef,0x40,0xd1,0x8c,0x43,0xfd,0xbb,0xf3,0x30,0xac,0x90,0x14,0x25,0xa0,0xe,0x1e,0x29,0x2b,0x91,0xb6,0xe7,0x5c,0xdb,0x7f,0x2b,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x3d,0x54,0x2,0xb0,0xa2,0xa2,0xe2,0xe2,0x81,0xd5,0x67,0x56,0xb,0x1c,0xa8,0xc,0x24,0xc5,0x81,0x73,0x1,0xe9,0x6d,0x25,0x67,0x25,0x63,0xac,0x19,0xd5,0x5b,0x31,0x46,0x22,0xb,0x8d,0xc1,0x33,0x2f,0x9e,0xc4,0xc3,0x8f,0xfc,0x68,0xcf,0xd5,0xcc,0xda,0x6,0xff,0xec,0x43,0xbf,0x8a,0x23,0xfb,0xe7,0x48,0x29,0xc2,0x85,0x40,0x2d,0xb1,0x29,0xc1,0x7,0x56,0xf7,0x31,0x9,0x18,0x9a,0x16,0xed,0x6c,0x1d,0xf3,0x8d,0xfd,0x68,0xe7,0xeb,0x70,0xce,0x53,0x16,0x9e,0x73,0xb0,0xce,0x53,0xd3,0xaf,0xf,0x70,0x9e,0x7e,0xe6,0x2d,0xc4,0xb1,0xcb,0xf,0xe3,0xf7,0x3e,0xfe,0x3e,0x1c,0x38,0xb0,0x6f,0xcf,0x6d,0xf8,0xc9,0x53,0xcf,0xe1,0xd1,0x27,0x5f,0x22,0x92,0xc9,0x58,0x55,0xe2,0xa5,0x38,0x10,0xc1,0xe8,0xbc,0x92,0x6f,0x8f,0x3d,0x7d,0x2,0xff,0xeb,0xbf,0xfb,0x53,0x7c,0xe3,0x3b,0xdf,0xc3,0x62,0xd9,0xbd,0xaa,0x43,0xb9,0x5c,0x76,0x78,0xe0,0xe1,0xc7,0xf0,0xbf,0xfd,0xe1,0x7f,0xc5,0xe6,0x36,0xb5,0x1a,0x93,0x92,0x8f,0x8e,0x73,0xdf,0x2d,0xa9,0xd,0xd9,0x52,0xa9,0x46,0x8a,0xfd,0x2e,0xf5,0x1f,0xed,0x4a,0xe1,0xa2,0x8f,0x41,0xb7,0x4f,0x4e,0x44,0xce,0x89,0xed,0xd0,0x3d,0x7c,0x8,0x18,0xba,0x5,0x7a,0xce,0xde,0xeb,0xbb,0xa5,0xda,0xa9,0x9f,0x78,0xea,0x79,0x56,0xd4,0xad,0xe2,0xde,0x3b,0x6e,0x42,0x8a,0x3d,0x86,0xa1,0x43,0xce,0x9,0x91,0xad,0xd8,0xa4,0xee,0x33,0xba,0xec,0x7e,0xb9,0x40,0x1a,0x6,0x2e,0xf6,0xc8,0x40,0x1,0x2b,0x3e,0x8b,0x96,0x7a,0xe4,0x92,0xe1,0x9c,0x47,0xdf,0x77,0x58,0x6c,0x6d,0x52,0x46,0xe1,0x72,0x81,0xbe,0x5b,0x20,0x97,0x8c,0xa1,0x5b,0x2a,0xc9,0x47,0xfb,0x20,0xd6,0x5d,0xa3,0xcb,0x31,0x30,0x9c,0x71,0x38,0x68,0xa1,0x8a,0xb4,0x6,0x97,0x92,0xa9,0x10,0x18,0xd0,0xa2,0x1a,0xca,0x2,0xec,0xea,0x75,0x5b,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x71,0xc9,0xa1,0x12,0x80,0x15,0x15,0x15,0x17,0xd,0x42,0x40,0x91,0xad,0x37,0x6b,0xbe,0x9e,0x75,0x5e,0xd5,0x56,0x42,0xe2,0xe4,0x24,0xe4,0x4c,0x66,0xd5,0x9e,0x1d,0x3f,0x5b,0x48,0x95,0xf5,0x67,0x9f,0xfd,0x3a,0x5e,0x3e,0x75,0x7a,0xcf,0x75,0x1d,0xd8,0xbf,0x81,0xff,0xf9,0xb7,0x3f,0x84,0xdb,0xae,0xbf,0x12,0x29,0x46,0x56,0xf5,0x51,0x43,0xf0,0x6c,0x6d,0x3,0xed,0x6c,0xe,0xc3,0xbf,0x1b,0x4b,0xd6,0x51,0x22,0x17,0x59,0x15,0x56,0x0,0xe7,0x1c,0xcc,0x24,0xb7,0x2f,0xa7,0x8,0xeb,0x3c,0xae,0x3e,0x7a,0x0,0xff,0xea,0xe3,0xef,0x59,0xc9,0xee,0x9b,0x62,0x7b,0xb1,0xc4,0x9f,0x7f,0xfe,0x9b,0x18,0x86,0x8,0xb1,0x99,0x4a,0xa3,0xaf,0xb5,0xe,0x43,0xdf,0x31,0x29,0x65,0x49,0x21,0x7,0xe0,0xec,0xb9,0x73,0x78,0xe1,0xc5,0x97,0x71,0x72,0x47,0x33,0xb0,0xa0,0x94,0x82,0x65,0xd7,0xe3,0x85,0xe3,0x27,0xf1,0x95,0x6f,0x3e,0x8c,0xff,0xe3,0x3f,0x7e,0x6,0xff,0xe1,0xd3,0x5f,0x43,0xcc,0xcc,0x9c,0x96,0x2,0x67,0xbd,0x2a,0xb,0x43,0xd3,0x2a,0xe1,0x16,0xe3,0x80,0xb,0xd5,0x74,0xa4,0x4c,0x65,0x26,0xb2,0x8d,0x0,0x35,0xed,0x3a,0xe7,0x89,0x44,0x2c,0x5,0x29,0xf6,0x58,0x6e,0x9f,0x47,0x4a,0x44,0x8,0xe,0xdd,0x12,0xde,0x13,0x89,0x19,0x9a,0x19,0x9e,0x78,0xfa,0x45,0x6c,0x9e,0xdf,0xda,0xb5,0xec,0xeb,0xaf,0x3d,0x86,0x5b,0xae,0xbd,0x2,0x39,0x26,0x38,0x1f,0x98,0xec,0x8d,0x70,0x3e,0x50,0x39,0x4b,0x29,0x28,0x28,0x54,0x34,0xc2,0x16,0xe5,0x38,0xc,0xc8,0x25,0xa9,0x5d,0x58,0x8e,0x8f,0xf,0xd,0x8d,0x15,0x63,0xe1,0xf9,0xf3,0x7d,0xbf,0xc4,0xd0,0xf7,0x58,0x6c,0x9d,0xc7,0x72,0xb1,0x8d,0x81,0xb,0x4b,0xe4,0x78,0x59,0x4b,0xe4,0xeb,0xca,0x71,0xcc,0x19,0x3e,0x4,0x3e,0xcf,0xa4,0x12,0x34,0xbc,0x5c,0x8a,0x26,0xe4,0xb2,0x94,0x92,0x91,0xd3,0x0,0xdb,0xac,0xd7,0xb,0xb7,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xa2,0xe2,0x92,0x43,0xcd,0x0,0xac,0xa8,0xa8,0xb8,0x68,0x10,0x95,0x98,0x34,0xd2,0x1a,0x43,0xca,0x3e,0xef,0x3,0xa9,0xad,0x40,0xaa,0xb3,0x5c,0x32,0xbc,0xb,0x44,0x2,0x82,0x4a,0x40,0x72,0x4e,0x70,0x4e,0xd4,0x6c,0x11,0xc6,0x7,0x9c,0xd9,0xdc,0xc2,0x7f,0xfe,0xf4,0x17,0xf1,0xaf,0xfe,0xe5,0xc7,0xd0,0x34,0x61,0xd7,0xfa,0x2e,0x3b,0xb8,0x1f,0xff,0xfa,0xb7,0x3f,0x8c,0x2f,0xfc,0xf5,0x37,0xf0,0xd9,0xaf,0x3f,0x44,0xcb,0x61,0xa2,0x2f,0xe7,0x8c,0xa6,0x69,0xd1,0xb4,0x2d,0x62,0x8c,0x68,0x67,0x54,0xea,0xa1,0x24,0xa0,0xb3,0xf0,0xa1,0xc1,0xd0,0x93,0x2d,0xd5,0x58,0x7,0x67,0x1c,0xde,0x7c,0xe7,0xf5,0xf8,0xf5,0x77,0xbf,0x15,0x7,0x2f,0xa0,0xfc,0xcb,0xa5,0xe0,0x6f,0x1e,0xf8,0x3e,0x5e,0x3c,0x7d,0x1e,0x29,0xe,0x68,0xda,0x99,0xe6,0xd0,0xa5,0x18,0xa9,0x99,0xd6,0x39,0xd8,0x94,0xb0,0xec,0x3b,0xf8,0xd0,0xe0,0xe6,0xab,0xf,0xe3,0xf7,0xfe,0xf9,0x87,0x70,0xc5,0xe5,0x47,0x94,0xa8,0x2b,0xa5,0xe0,0xf4,0xd9,0x4d,0xbc,0x78,0xe2,0x34,0x9e,0x79,0xf1,0x14,0x5e,0x78,0xe9,0x65,0x3c,0x7f,0xe2,0xc,0xce,0x9c,0x5f,0xa0,0xe7,0x26,0xe3,0x10,0x1a,0xf4,0x3,0x29,0xdf,0x42,0x68,0x41,0xd9,0x76,0x85,0x9,0xd6,0x44,0xa2,0x4a,0x4b,0x6a,0x3d,0x69,0x14,0xde,0xa9,0x2,0x34,0xc6,0xa0,0xef,0x16,0xdc,0x0,0xec,0x90,0x72,0x2,0x4a,0xc1,0xf6,0xd6,0x39,0xc,0xfd,0x12,0xce,0x8d,0xb9,0x7d,0x71,0x7b,0xb,0xed,0x6c,0xe,0xef,0x3,0x9a,0xf9,0x1a,0xdb,0xb1,0x13,0xfa,0x62,0xf1,0xc3,0xc7,0x7f,0x82,0xb7,0xdc,0x77,0xef,0xca,0xb2,0x9b,0x10,0xf0,0xb1,0xf,0xbc,0xd,0x7f,0xf0,0xc7,0x9f,0xc7,0x36,0x2b,0x7,0xf5,0xbc,0xc7,0x8,0xe3,0xd,0x96,0x5b,0xe7,0xd1,0xce,0xe6,0xac,0xf0,0xec,0x81,0x2,0x78,0x3f,0xa3,0x2c,0xc0,0x10,0xe0,0x4a,0xc6,0x5d,0x77,0xdc,0x84,0x6f,0x7d,0xf7,0x87,0x80,0x31,0x70,0x21,0xd0,0x7b,0x97,0xdb,0x18,0x7a,0xb2,0x9,0x87,0xa6,0x41,0x68,0x67,0x6c,0x5d,0xee,0xe0,0x59,0xf1,0x29,0xb6,0x67,0xef,0x3,0x86,0x9e,0x5a,0x82,0xad,0xa5,0x42,0x10,0x6b,0xad,0x6a,0x4,0xa5,0x89,0x5a,0x33,0x1,0xb,0x28,0x7f,0xb2,0x5f,0xa2,0xe4,0x5a,0x2,0x52,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x71,0xe9,0xa1,0x12,0x80,0x15,0x15,0x15,0x17,0xd,0xc2,0x3d,0x59,0xce,0xfd,0x8b,0x43,0x4f,0x6d,0xb3,0x43,0x4f,0xc5,0xd,0xd6,0xa1,0xb0,0xd5,0x33,0xa5,0xc8,0x8a,0x3d,0x83,0x92,0xb,0x8c,0x33,0xc8,0x39,0xc3,0x5a,0x70,0x6b,0x2c,0xa9,0xf3,0x1e,0x78,0xf4,0x69,0x5c,0xf5,0xe5,0xbf,0xc5,0x87,0xde,0xf7,0x2b,0x4a,0x10,0x4e,0x31,0x6b,0x5b,0xfc,0xc6,0xfb,0x7f,0x15,0x77,0xde,0x76,0x33,0x3e,0xf7,0xe5,0xbf,0xc5,0xb7,0xbf,0xf7,0x38,0x52,0xce,0x8,0x4d,0xb,0x1f,0xa8,0x1,0xd8,0x71,0xe,0x9d,0x31,0x86,0xc8,0x48,0x6b,0x60,0x40,0x96,0x61,0xe7,0x2,0x8c,0xb5,0xb8,0xe1,0x8a,0x3,0xf8,0xc0,0x3b,0xde,0x80,0xdb,0x6e,0xb9,0x61,0xcf,0xf5,0x0,0x44,0x24,0x7d,0xe7,0xe1,0xc7,0xf0,0xd9,0xbf,0x79,0x18,0xd6,0x7a,0x18,0x26,0x9e,0x86,0x9e,0x48,0x29,0x0,0xc8,0x43,0xe6,0x8e,0x89,0x8c,0xd9,0xda,0x3a,0xf6,0xb5,0x16,0xff,0xf6,0xbf,0xff,0x38,0xe,0xec,0xdf,0xd0,0xe5,0xc,0x43,0xc4,0x67,0xfe,0xfa,0xdb,0x78,0xf0,0x47,0xcf,0xa1,0xeb,0x7,0x18,0x18,0xb5,0x4c,0x27,0x56,0x46,0x7a,0x4f,0x16,0x62,0xeb,0x9c,0xda,0x65,0x4b,0x26,0x55,0xa1,0xf,0x1e,0xde,0x37,0x48,0x69,0xe0,0x46,0x60,0xa7,0xa,0xba,0x9d,0xb0,0x56,0x14,0x75,0x11,0xc5,0x14,0xa0,0x80,0x9b,0x79,0xb,0xac,0xf3,0x18,0xfa,0x25,0x59,0xb0,0x63,0x54,0x72,0x32,0xe7,0x4c,0x96,0xdd,0xa6,0x61,0xbb,0x76,0xc1,0xd7,0xfe,0xee,0x7b,0x78,0xfd,0xeb,0xee,0xdc,0x45,0xc4,0x5e,0x77,0xf5,0x95,0xf8,0xad,0x5f,0xbb,0x1f,0xff,0xef,0x67,0xfe,0x6,0x9,0xa4,0x78,0x1c,0x3a,0x5a,0x26,0x91,0xab,0x46,0xb,0x3f,0xa6,0x2a,0x4d,0x98,0x82,0x37,0xbc,0xe6,0x7a,0x7c,0xf0,0xdd,0x6f,0xc5,0xda,0xac,0xc5,0xc3,0x3f,0x7a,0x1a,0x83,0xf7,0x74,0xc,0x62,0xc4,0xda,0xbe,0x3,0x38,0x7d,0xe2,0x45,0x0,0x5,0xdb,0x5b,0x9b,0x58,0xe3,0xc,0xc9,0xe9,0xd8,0x21,0xc2,0x37,0x61,0xe8,0x7b,0xb6,0x43,0x73,0x11,0x8,0xe7,0x4f,0x3a,0xe7,0x91,0x4d,0xa1,0x68,0x49,0x14,0x2d,0xa9,0xc9,0x39,0x1,0x25,0xc3,0x35,0xeb,0x88,0xdd,0x56,0xbd,0x70,0x2b,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2e,0x39,0x54,0x2,0xb0,0xa2,0xa2,0xe2,0xa2,0x81,0xa2,0xf7,0x8c,0x2a,0xae,0x8c,0xb5,0x28,0xa5,0xc0,0x37,0x2d,0xb7,0xb7,0x42,0xcb,0x22,0xe8,0xfd,0xd4,0xfa,0xb,0x2e,0xef,0xf0,0x3e,0x70,0x96,0x1e,0xbd,0x96,0x73,0x81,0xc9,0x9,0x7f,0xf9,0xd7,0xdf,0xc6,0xa1,0x83,0xfb,0xf1,0xb6,0x37,0xdf,0xbb,0x67,0xce,0x9d,0xb5,0x16,0x37,0xdd,0x70,0x2d,0xfe,0xcd,0xef,0xfd,0x33,0x7c,0xe8,0xf9,0x17,0xf1,0xd0,0xf7,0x1e,0xc5,0xf,0x7e,0xfc,0xc,0x9e,0x3f,0x4d,0x65,0x16,0xb3,0xb5,0x39,0x86,0x7e,0xa9,0xf9,0x80,0x25,0x17,0x34,0x21,0xe0,0xf0,0x81,0x75,0xbc,0xf6,0xc6,0x63,0xb8,0xfb,0xb5,0x37,0xe1,0xfa,0xab,0xaf,0x40,0x8,0xfe,0x15,0xf6,0xad,0xe0,0x87,0x4f,0x3c,0x8d,0x4f,0x7e,0xfe,0x5b,0x28,0x85,0x6d,0xad,0xa0,0x86,0x63,0x0,0x9c,0x39,0x47,0xa5,0x27,0x42,0x32,0x95,0x52,0xf0,0x8e,0xfb,0xee,0x5e,0x21,0xff,0x0,0xe0,0xe4,0x99,0x73,0xf8,0xe6,0x23,0x3f,0x85,0xf3,0x8d,0x5a,0x61,0x91,0x80,0xae,0xa7,0x3c,0x3a,0x6d,0xf9,0x8d,0x3,0x42,0xd3,0x72,0x6e,0x5e,0x81,0x6f,0x1a,0x94,0x9e,0xd4,0x7f,0xce,0x7b,0x18,0xdb,0x22,0xa7,0x84,0x64,0xd3,0x5,0xcb,0x2c,0xc,0x37,0xe6,0x6,0xeb,0x38,0x9f,0x90,0x8,0xb8,0x52,0xa,0xc,0xc,0x7c,0xd3,0x62,0xb9,0x7d,0x9e,0x6c,0xbf,0x4d,0xab,0xdb,0xdd,0xd8,0x39,0x4a,0xce,0x70,0x2d,0xbd,0xf6,0xf8,0x33,0xc7,0xf1,0xa3,0x27,0x9e,0xc2,0x5d,0xb7,0xdf,0xb2,0x6b,0xf9,0xf7,0xdc,0xf9,0x1a,0x5c,0x76,0x60,0x1f,0x3e,0xf7,0xd5,0x7,0xf0,0x83,0x9f,0xbe,0x40,0x59,0x85,0x4c,0xe4,0xe5,0x92,0x61,0xac,0x43,0xdf,0x77,0x68,0xda,0x19,0xf6,0xcd,0x5b,0xdc,0x75,0xeb,0xf5,0xf8,0xd5,0xb7,0xde,0x8b,0x1b,0xaf,0xbf,0x6,0xce,0x5a,0xbc,0xf8,0xd2,0x9,0x52,0xff,0x59,0x87,0x62,0x2c,0x42,0xd3,0xa0,0x5f,0x2e,0x31,0x5f,0xdf,0x87,0xf3,0x67,0x4f,0xc1,0x5a,0x8b,0xe5,0x62,0x8b,0x8e,0xf5,0x12,0x8,0xed,0x8c,0xa,0x65,0xf8,0xbc,0x58,0xe7,0x78,0x2c,0x41,0xb,0x49,0xc0,0xfb,0xa8,0xcd,0xbf,0x80,0x8e,0x2b,0xeb,0xc8,0x1a,0x5c,0x50,0x60,0xac,0x3,0x8c,0x5,0x4a,0x2d,0x3,0xa9,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xa8,0xb8,0x74,0x50,0x9,0xc0,0x8a,0x8a,0x8a,0x8b,0x6,0x3,0x22,0xf5,0x48,0xc9,0x67,0x29,0x53,0xe,0x46,0xb,0x28,0x4,0x99,0x73,0x0,0x7d,0x68,0x56,0x8,0xc3,0x94,0x12,0x60,0x80,0x10,0x5a,0xc4,0x38,0xc0,0xfb,0x40,0xb9,0x75,0xce,0xe3,0xff,0xf9,0xd4,0x97,0xd0,0xf,0x3,0x7e,0xf5,0xfe,0xfb,0xf6,0x6c,0xe5,0x5,0x28,0xd3,0xef,0xfa,0x6b,0xaf,0xc6,0x75,0xd7,0x1c,0xc3,0xaf,0xf,0x11,0x5b,0xdb,0xb,0x9c,0x3a,0xb3,0x89,0x73,0x9b,0x9b,0xe8,0x7a,0xca,0xa4,0x9b,0xb5,0x2d,0xf6,0x6d,0xac,0xe3,0xe0,0x81,0xd,0xec,0x5b,0x5f,0x43,0xdb,0x36,0x3f,0x73,0xbf,0x4a,0x1,0x1e,0xfc,0xee,0x63,0xf8,0xd3,0x2f,0x7c,0x1b,0x43,0x22,0x42,0xb,0x88,0x70,0xde,0x23,0xe,0x3,0x11,0x53,0x5c,0x3a,0x62,0xc,0x29,0x19,0x9d,0xf,0xe8,0xbb,0x25,0xd6,0xd6,0xd6,0x76,0x2d,0xef,0xe0,0xbe,0x75,0xdc,0x76,0xed,0x51,0x3c,0xfe,0xfc,0x19,0x52,0x4b,0xb2,0x6a,0xe,0x28,0xe8,0xbb,0x4e,0xf3,0xeb,0x9c,0xf3,0x5c,0xa4,0x92,0xc7,0x66,0x63,0xe7,0xe0,0x42,0x43,0xa5,0x19,0xd6,0x21,0xa7,0x6,0x29,0x2d,0xe0,0x2e,0xa0,0x0,0x14,0xdb,0x33,0x0,0x55,0x65,0x92,0xb2,0xd0,0xc3,0xe6,0x8c,0xed,0xf3,0x67,0xb1,0xd8,0xda,0x24,0xb2,0xcf,0x79,0xe4,0x94,0xd0,0xce,0x67,0xb4,0x4e,0xe7,0x31,0x30,0x71,0x7,0x63,0xf0,0xc9,0xcf,0x7c,0x5,0xd7,0x5d,0x73,0x25,0xf6,0xef,0x5b,0x25,0x34,0x8d,0x31,0xb8,0xfe,0xda,0xab,0xf0,0x3f,0xfe,0xd6,0xaf,0xe3,0xf9,0x17,0x4f,0xe0,0x27,0x4f,0x3f,0x8f,0x67,0x5f,0x38,0x81,0xb3,0xe7,0xce,0x63,0xe8,0x3b,0x6c,0x6c,0xac,0xe1,0xc8,0xc1,0x7d,0xb8,0xf9,0xc6,0xeb,0x70,0xed,0xd5,0x57,0xe2,0xc0,0xfe,0x7d,0x2b,0xe3,0xc1,0x18,0x3,0xe7,0x9c,0xe6,0xfa,0x35,0xd,0xad,0xbf,0x5b,0x6e,0xc3,0x3a,0x47,0xaa,0x3e,0x63,0x30,0xf4,0xdd,0xa8,0xe6,0xe4,0x7c,0x49,0x30,0xf1,0x69,0xc,0x11,0xaf,0x10,0xa5,0x1f,0xab,0x2a,0xc7,0x3,0x1,0x6e,0x9a,0xa6,0x9f,0x8d,0xb5,0x30,0xce,0x23,0x47,0x3,0xf4,0x55,0x5,0x58,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x51,0x71,0x69,0xa1,0x12,0x80,0x15,0x15,0x15,0x17,0xd,0x86,0xcb,0x35,0xac,0xb5,0xd4,0xba,0x6a,0x8c,0xb6,0xfa,0x4a,0x4b,0x2e,0x0,0x56,0xa0,0x65,0xca,0xb1,0xb3,0x56,0x5f,0x17,0xb,0x67,0x4a,0x64,0x47,0xcd,0xc6,0xaa,0xba,0x2b,0x27,0x83,0x3f,0xf9,0xcc,0xd7,0x71,0xe6,0xdc,0x16,0x3e,0xf8,0xae,0xb7,0x62,0x6d,0x6d,0x7e,0xe1,0xed,0x30,0x6,0x4d,0x13,0xd0,0x34,0x1,0x97,0x1d,0xdc,0xff,0x8f,0xda,0xa7,0x7e,0x18,0xf0,0xb7,0xf,0x7c,0x1f,0x9f,0xfa,0xf2,0x3,0xb4,0xf,0x0,0x90,0x88,0x47,0x4a,0x31,0xea,0x7e,0xe5,0x42,0x44,0x9d,0xf5,0x1e,0xd6,0x5a,0xc,0x43,0x8f,0x14,0x7,0x3c,0xf8,0xbd,0x1f,0xe2,0xed,0x6f,0xbe,0x77,0xc5,0x3a,0x3b,0x9b,0xb5,0xf8,0xdd,0x8f,0xbd,0x7,0x3f,0x78,0xfc,0x49,0x3c,0xf4,0xd8,0xd3,0xf8,0xf1,0x33,0xc7,0x39,0x3f,0xaf,0xc0,0x7,0x22,0x3d,0xc5,0x36,0xdb,0xb4,0x33,0x38,0x80,0x4a,0x31,0xba,0x25,0x42,0xd3,0x12,0x19,0x98,0xa8,0x50,0xc3,0x18,0x8b,0xd0,0xb4,0x28,0x7c,0x9c,0x77,0x42,0xb6,0x4f,0x84,0x70,0xa5,0x14,0x38,0xe7,0xd0,0x71,0x56,0x22,0x40,0xc4,0x62,0x33,0x5b,0x83,0x6f,0x1a,0x7e,0x4f,0x66,0x1b,0x2d,0x11,0x68,0x94,0x6d,0x68,0xf1,0xe2,0xa9,0x4d,0x7c,0xfa,0xb,0x5f,0xc7,0x3f,0xff,0xe8,0xfb,0x10,0xfc,0xee,0xaf,0x13,0xef,0x3d,0xae,0xbb,0xe6,0x2a,0x5c,0x77,0xcd,0x55,0xa4,0xf2,0x64,0x62,0x57,0xca,0x60,0x5e,0xe9,0x7c,0x9,0x69,0xdc,0x77,0x1d,0x37,0x28,0x53,0x79,0x49,0x3b,0x5b,0x43,0xbf,0x5c,0x60,0x88,0x9c,0xf7,0x17,0x1a,0x98,0x9e,0xb2,0x6,0x9d,0xf,0xaa,0x36,0x14,0x5,0x60,0xe1,0xe5,0x19,0x63,0x60,0x8a,0xd3,0x7d,0x20,0x5b,0xba,0xa1,0xf7,0x97,0x8c,0x1c,0x7b,0x52,0x1c,0xa6,0xa1,0x5e,0xb8,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x15,0x97,0x1c,0x1c,0x80,0xdf,0xaf,0x87,0xa1,0xa2,0xa2,0xe2,0x62,0xe0,0xca,0xeb,0x6e,0x41,0x3b,0x23,0xc5,0x1b,0xe5,0xb4,0x11,0x21,0x98,0x72,0x84,0x35,0x8e,0x2c,0x97,0xc6,0x8c,0xcd,0xbb,0x62,0x9,0x2e,0x59,0x1b,0x73,0xad,0x73,0xb0,0xc6,0x22,0x73,0xa1,0x45,0x51,0x12,0xc9,0x21,0x97,0x82,0x9f,0x3c,0xfb,0x12,0x1e,0x7f,0xe2,0x19,0x5c,0x7d,0xe5,0x61,0x1c,0xdc,0xa1,0x24,0xfb,0x45,0xe3,0xb9,0x17,0x8e,0xe3,0x4f,0x3f,0xfd,0x15,0x7c,0xf5,0xc1,0x1f,0xc2,0xc0,0x90,0x7a,0xae,0x94,0x91,0xf4,0xe3,0xdc,0x3e,0xc9,0xa2,0x13,0x2,0x34,0x46,0x2a,0xa1,0x30,0xc6,0xe0,0xc5,0x13,0x27,0xe1,0x4d,0xc6,0x2d,0x37,0x5e,0xb7,0x42,0x84,0x59,0x6b,0x71,0xc5,0xd1,0x43,0xb8,0xfb,0xb6,0xeb,0x71,0xdf,0x9d,0x37,0xe1,0xd6,0xeb,0x8e,0xe2,0xe0,0xfa,0xc,0xa6,0x64,0x6c,0x6f,0x6f,0x23,0xb1,0xc9,0xd5,0x5a,0x8b,0x38,0xf4,0x98,0xcd,0xd7,0x49,0x15,0xe8,0x3,0x5b,0x5c,0xa5,0xbd,0x98,0xec,0xd3,0x57,0x1d,0xbd,0xc,0xf7,0xdd,0x73,0xc7,0xae,0x7d,0xf8,0xde,0xf,0x1e,0xc7,0x93,0xcf,0x9d,0x60,0x15,0x26,0x91,0x85,0x43,0xb7,0x44,0x41,0xc1,0xe2,0xfc,0x26,0xd9,0x7f,0x7b,0x2e,0xda,0x8,0x2d,0xbd,0x27,0x34,0xc8,0x39,0x23,0x84,0x96,0xb3,0x5,0xc9,0x2a,0x9b,0x53,0xc4,0x33,0x2f,0x9d,0x82,0x47,0xc6,0xd,0xd7,0x1d,0xbb,0x60,0x56,0x22,0x40,0x6a,0x50,0x21,0xe2,0x7e,0x16,0x4e,0x9d,0x3e,0x83,0x2f,0x7e,0xfd,0x1,0xf4,0xcb,0x5,0x4a,0xce,0x88,0xb1,0x27,0xd2,0x91,0x9b,0x83,0xfb,0xe5,0x82,0xc8,0xbe,0x52,0xe0,0x43,0x83,0xff,0x9f,0xbd,0x37,0x7b,0x96,0x24,0xbb,0xcf,0xc3,0xbe,0xb3,0x65,0x56,0xdd,0xdb,0xdd,0x33,0xd3,0x33,0x8d,0xc1,0x60,0xb0,0xc,0x89,0xc1,0x42,0x82,0x10,0x0,0xe,0x9,0x83,0x24,0xc8,0x7,0x4a,0xa4,0x28,0xca,0xb2,0x64,0x85,0x6c,0x49,0x8e,0x30,0x1d,0xe1,0x27,0xf9,0xc1,0xff,0x83,0xff,0x1,0x87,0x23,0xfc,0x66,0x5b,0xe,0x87,0xc2,0x11,0x92,0x6d,0xd1,0x21,0x2b,0x2c,0x6,0x69,0x86,0xc5,0x45,0x12,0x9,0x8,0x24,0x41,0x2,0x20,0xb1,0x2f,0x3,0xc,0x87,0x83,0xd9,0xbb,0xfb,0xde,0x5b,0x55,0x99,0x79,0x16,0x3f,0xfc,0x96,0x73,0xb2,0xee,0x6d,0x6c,0xc6,0x10,0x13,0x3d,0xe7,0x63,0x80,0x3d,0xb7,0x6e,0x55,0x65,0xd6,0xc9,0xbc,0x95,0x27,0xbf,0xf3,0x2d,0xc3,0xb8,0x61,0xc2,0xd4,0xb2,0xf5,0xb9,0x96,0x9f,0x58,0x63,0x61,0x40,0x85,0x34,0x72,0x9e,0x9,0xc1,0x98,0x73,0x42,0x4a,0x11,0xd3,0x7e,0x87,0x8b,0x8b,0x3d,0x90,0x13,0xe0,0x3c,0xf2,0xb2,0xef,0x7f,0xbc,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0xf7,0x15,0xba,0x2,0xb0,0xa3,0xa3,0xe3,0xb5,0x3,0xc9,0xaf,0x90,0xd9,0xb2,0x99,0xb8,0x1d,0xd7,0x5a,0x7,0x63,0x45,0xa9,0xc5,0x2a,0x34,0x2e,0x7c,0xc8,0xc8,0x5a,0x6,0x42,0x24,0x13,0xc9,0xeb,0x28,0x5b,0xaf,0x70,0x61,0x4,0x29,0xe0,0x9c,0x73,0x88,0x39,0xe1,0xcb,0xdf,0xf8,0xb,0xfc,0xb7,0xff,0xf8,0x57,0xf1,0xb3,0x3f,0xfe,0x23,0xf8,0xb9,0x8f,0x7c,0x10,0x6f,0x7e,0xf4,0xd6,0xf7,0x8d,0x8,0x2c,0xa5,0xe0,0xe5,0x57,0x6e,0xe3,0xdf,0x7e,0xe2,0xd3,0xf8,0xc4,0x9f,0x3d,0x8d,0xf3,0x8b,0x1d,0x11,0x91,0x96,0xd4,0x63,0xc6,0x1a,0xe4,0x18,0x51,0x78,0x73,0xd4,0x6e,0x4b,0x6d,0xc0,0x29,0x46,0x1e,0x2,0x2a,0xd5,0x28,0xa5,0x20,0xc,0x23,0x7e,0xfd,0x77,0xfe,0x0,0x39,0x45,0xfc,0xad,0x5f,0xfa,0xab,0x97,0xec,0xcb,0xd6,0x5a,0xdc,0xb8,0x7e,0x8a,0x1b,0xd7,0x4f,0xf1,0x9e,0x27,0x9f,0x40,0x4a,0x9,0x87,0xc3,0x84,0x57,0xee,0xdc,0xc5,0xd7,0x9f,0xf9,0x26,0x3e,0xf5,0xf9,0xa7,0xf1,0xf5,0xe7,0x6f,0x63,0x59,0x66,0x18,0x63,0x10,0x97,0x5,0xa5,0x64,0xcd,0xe,0xcc,0x9,0x70,0xce,0xe3,0x5e,0x9f,0x5e,0xec,0xd7,0x86,0x95,0x6f,0xb,0x37,0x6,0x4f,0x87,0x3d,0x7c,0xa0,0x76,0xe6,0x61,0xdc,0xa0,0x64,0xb2,0x60,0x8f,0x9b,0x1,0x30,0x96,0x2d,0xb9,0xf4,0xfc,0x30,0x6e,0x91,0xb9,0x78,0x63,0x59,0x66,0xfc,0xdf,0xbf,0xfd,0x7,0xb8,0x73,0xbe,0xc3,0x7f,0xf4,0x8b,0x3f,0x8b,0x6b,0xa7,0x27,0xdf,0xf3,0x58,0xa7,0x94,0xf0,0xc5,0x2f,0x7f,0x15,0xff,0xf4,0x5f,0xfc,0x26,0x72,0x4a,0x98,0xf6,0x17,0x30,0xce,0x71,0x59,0xaf,0xc5,0x61,0xbf,0x43,0x8a,0xb,0xfc,0x30,0x60,0x7f,0x71,0x8e,0x9c,0x13,0xc2,0xb8,0xc1,0xb2,0x4c,0x8,0x66,0x4,0x0,0x84,0x30,0x20,0xc6,0xb8,0xfa,0x8c,0xa2,0x72,0xcc,0x6c,0xf,0x2e,0x85,0xf2,0xfe,0x9a,0x83,0x8c,0x92,0x26,0x58,0x37,0xbe,0xa6,0x4,0x72,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0xc7,0xf,0xa,0x9d,0x0,0xec,0xe8,0xe8,0x78,0xcd,0x10,0xe3,0x52,0x4b,0x17,0xd8,0xfa,0x59,0x5a,0x25,0x5f,0x2e,0xf0,0x43,0xa0,0x96,0x5f,0x26,0x7,0xb,0x28,0x13,0xb0,0x64,0x22,0xfa,0xa4,0x29,0x38,0x2e,0x49,0x9b,0x6d,0x8d,0x25,0x55,0x17,0x35,0xbb,0xd2,0xef,0xf,0x87,0x9,0xff,0xfa,0xdf,0x7f,0x6,0xbf,0xfb,0x89,0x4f,0xe3,0xc3,0xef,0x7f,0x27,0x3e,0xfc,0xa1,0xf7,0xe1,0x89,0x77,0xbc,0xd,0x27,0xdb,0xed,0xf7,0xb4,0xef,0xbb,0xfd,0x1,0x7f,0xfe,0x17,0xcf,0xe3,0x8f,0xff,0xec,0x4b,0xf8,0xf4,0x17,0xff,0x1c,0x77,0xce,0x77,0x0,0x88,0x40,0x83,0x1,0x9c,0xf5,0x30,0xce,0x22,0x47,0xb2,0xce,0x8a,0xa2,0x4c,0xf6,0x37,0xe7,0xac,0x9f,0x5,0x20,0x12,0x74,0x13,0x1c,0x7e,0xe1,0xa3,0x3f,0x8e,0xff,0xe0,0xa9,0xbf,0x82,0x9b,0xf,0xde,0xb8,0x67,0x76,0x61,0xb,0xe7,0x1c,0x4e,0x4f,0x4f,0x70,0x7a,0x7a,0x82,0xb7,0xbd,0xe5,0xcd,0xf8,0xc8,0x4f,0xbc,0x1f,0x2f,0xbe,0xf4,0x2a,0x7e,0xfb,0xe3,0x9f,0xc6,0xa7,0xbe,0xfc,0x17,0x58,0xe6,0x19,0x30,0x8e,0xb3,0xfc,0x88,0xec,0x4a,0x71,0x51,0xb2,0xeb,0xf2,0xfb,0x79,0x6d,0xfd,0x5,0x80,0x65,0x9e,0x90,0x52,0x22,0x9b,0xf1,0xfe,0x2,0xce,0x7,0x4c,0xfb,0x1d,0x12,0x16,0x8c,0xdb,0x53,0xa4,0x18,0x61,0x9d,0x53,0x72,0xd0,0x38,0x8f,0x9c,0x28,0xef,0x30,0xa5,0x4,0xef,0x3d,0x96,0xb8,0xe0,0xdf,0xfc,0xe1,0xe7,0xf0,0xd5,0x6f,0x7c,0x13,0x7f,0xfb,0x17,0x7e,0x1a,0xef,0x7d,0xf7,0xf,0x5d,0x69,0x9,0xbe,0x17,0xe6,0x79,0xc1,0x57,0x9f,0xfe,0x3a,0x7e,0xeb,0xdf,0xfd,0x1,0x7e,0xff,0x93,0x9f,0x45,0xe2,0xd6,0x61,0xcb,0xfb,0x7a,0xd8,0x9d,0x53,0xd6,0x5f,0xc9,0x44,0xfc,0xfa,0x0,0xe7,0x9c,0xaa,0x2a,0x73,0x22,0xe5,0x65,0x31,0x94,0x33,0xe9,0xbc,0x47,0x8a,0xb,0xac,0x25,0x45,0x62,0x3d,0xef,0xac,0xe6,0x1,0x56,0x35,0xa2,0xe1,0xfc,0xbf,0x81,0x8e,0xdb,0x32,0xf5,0x3f,0xdc,0x8e,0x8e,0x8e,0x37,0x4,0x5c,0xd8,0xe0,0xb1,0x27,0xde,0x8d,0x47,0xde,0xfc,0x76,0x5c,0x7f,0xf0,0x26,0x65,0xbd,0xea,0xf7,0x6a,0xe4,0x12,0x25,0x2e,0xf4,0x92,0x28,0xf,0x92,0x9b,0xf3,0x75,0x20,0x70,0x44,0x87,0xd1,0xeb,0x3a,0x5d,0xb7,0x3d,0x2d,0xb4,0xe4,0x8c,0x5c,0x32,0x29,0xb1,0xad,0x41,0x4e,0xb9,0x5e,0x83,0x0,0x7a,0x2e,0x17,0x34,0x59,0x6b,0x91,0x72,0xa2,0x9f,0xc1,0xf9,0xac,0xa0,0xc6,0x76,0x67,0x29,0xfb,0xd5,0x39,0xaf,0xf1,0x1a,0xf2,0x3d,0x4e,0x65,0x5b,0x46,0x1f,0x3b,0x8e,0x98,0x90,0x8,0xb,0xf9,0x6c,0xb4,0x59,0xa3,0x73,0x11,0xf0,0xa2,0x4f,0xd1,0xfc,0x58,0x71,0x1a,0x64,0x58,0xe7,0x51,0x72,0xa2,0x62,0x28,0x14,0xce,0xdf,0xb5,0xaa,0xb6,0x6f,0xa3,0x4c,0xe4,0x1a,0xc3,0x2b,0x9f,0x1a,0x7b,0x22,0xb1,0x14,0x32,0x77,0x29,0x99,0xe7,0x42,0xfc,0x7e,0x80,0x44,0xa1,0xc8,0x2b,0x79,0x1f,0xd0,0xcc,0x8b,0x9a,0xf2,0xaa,0x7a,0x2d,0x2b,0xaa,0x8a,0xbf,0xbc,0x70,0xd5,0x6c,0x1f,0xcd,0x73,0xa,0x68,0xac,0x74,0x5f,0xc1,0x63,0x5d,0xb,0xb2,0xe4,0xdf,0x95,0x62,0xbf,0xd0,0xf3,0xc4,0x6d,0x50,0x9a,0x38,0x8f,0x7a,0x4d,0xa5,0xf7,0xa3,0x79,0xd0,0x7a,0xae,0x27,0xef,0x77,0x3c,0x5e,0xd0,0xf7,0x34,0xab,0xe7,0x8a,0x93,0x2,0x32,0x6,0xec,0xaa,0x0,0x8f,0xbb,0xb5,0x5c,0xdc,0x45,0x4d,0x73,0x9a,0x9d,0x6c,0x9a,0x39,0x81,0x6c,0x53,0xc6,0xbd,0x75,0x6a,0x18,0x63,0xd8,0x85,0x92,0x51,0x72,0x91,0x8f,0xc8,0xe7,0x4e,0x1,0x9f,0xc6,0x74,0x9e,0xe7,0xa4,0xfb,0x28,0xdb,0xd1,0x73,0x86,0xff,0x1e,0x72,0x4e,0xd8,0x9d,0x9f,0x61,0x99,0xf,0x38,0xbf,0xfb,0x2a,0xe6,0xc3,0x1e,0x2f,0x3c,0xf3,0xa5,0xfe,0x5,0xd3,0xd1,0xd1,0xf1,0xba,0x84,0x1,0x5a,0x19,0x44,0x47,0x47,0x47,0xc7,0xf7,0xf,0x1f,0xfc,0xe8,0x2f,0xe3,0xfa,0x43,0x8f,0x70,0x23,0x6e,0x6a,0x26,0xa1,0x3a,0xbb,0x52,0x82,0x46,0x66,0xc0,0x85,0xb3,0xde,0xa4,0x3d,0xb7,0xa0,0xc0,0x1a,0x4b,0x56,0x57,0x9e,0x20,0x6a,0x36,0x5d,0x2e,0x30,0xd6,0x20,0x84,0x81,0x73,0xe2,0x68,0xd2,0x77,0xd8,0x5d,0x20,0xa7,0x88,0x9b,0x37,0x4e,0xf0,0xd4,0x8f,0xbd,0xb,0x4f,0xfe,0xf0,0x13,0x78,0xec,0xd1,0x5b,0x78,0xf8,0xe1,0x87,0x31,0x8e,0x3,0x9c,0xb3,0x70,0xd6,0xaa,0xfa,0x30,0xc6,0x88,0x69,0x5e,0x70,0xf7,0xec,0x1c,0xcf,0x3e,0xf7,0x2,0xbe,0xfe,0xec,0xf3,0xf8,0xec,0x57,0x9e,0xc5,0x9d,0xdd,0x8c,0x18,0x17,0x25,0xe2,0x52,0x4a,0xab,0x9b,0x17,0xf9,0x5c,0x32,0x99,0x1d,0xc6,0x8d,0x16,0x4b,0xa4,0xb4,0xb0,0xf2,0x8c,0xf2,0xeb,0xde,0xf5,0xf8,0x4d,0xfc,0x67,0x7f,0xf7,0x97,0xbe,0x6f,0xea,0xc4,0x5c,0xa,0x3e,0xf3,0xd9,0x2f,0xe1,0x7f,0xff,0x8d,0x8f,0x63,0x3f,0xcd,0x4a,0x40,0x1e,0x2e,0xce,0x51,0x4a,0xc6,0x93,0x6f,0x7f,0x33,0x7e,0xf1,0x67,0x7f,0x42,0x27,0xe4,0xe0,0x16,0xe6,0xdf,0xfa,0xbd,0x4f,0xe2,0xb,0xdf,0x78,0x1e,0xde,0x7,0xc4,0x65,0x41,0x4e,0x9,0xe7,0x67,0xb7,0xe1,0xbd,0xc7,0xee,0xe2,0xc,0x17,0x77,0x5f,0xc5,0x61,0xbf,0xc3,0xb8,0xd9,0x62,0xdc,0x9c,0x20,0x8c,0x1b,0xc,0xc3,0x88,0x61,0xdc,0xd2,0xd,0x98,0xf,0xa4,0x30,0xe4,0xe3,0x63,0x9d,0xd3,0xb6,0x66,0xe7,0x3d,0xac,0x31,0x78,0xeb,0xa3,0x37,0xf1,0x91,0xf,0xbe,0x17,0xef,0x7c,0xe2,0x71,0x3c,0x7c,0xf3,0x21,0x8c,0x3,0x8d,0x79,0x61,0xbb,0x74,0x4c,0x9,0xbb,0xdd,0x1,0x2f,0xbe,0xf4,0x32,0x3e,0xff,0xc5,0xaf,0xe0,0x13,0x7f,0xf2,0x59,0x7c,0xed,0xd9,0x17,0x94,0x0,0x16,0x32,0x52,0xb2,0x1f,0x7d,0x18,0x31,0x1d,0x2e,0x50,0x72,0xc1,0x61,0x7f,0x1,0x63,0xc,0xe,0xfb,0x1d,0x2,0x9f,0x7,0xce,0x7,0x6c,0xb6,0xa7,0xf0,0x61,0x80,0xf,0x41,0x8f,0x1,0xdd,0x60,0x95,0xd5,0x65,0x8e,0x14,0x81,0x34,0x26,0x39,0x46,0x2c,0xf3,0x84,0xbb,0xb7,0x5f,0xc2,0x37,0x9f,0xf9,0x3a,0x8c,0x75,0x88,0xd3,0x39,0x72,0xec,0x24,0x60,0x47,0x47,0xc7,0xfd,0x8d,0x87,0xde,0xfc,0xe,0xbc,0xf7,0x3,0x3f,0x85,0x9b,0x6f,0x7a,0xb,0xc2,0x38,0x52,0x53,0x7b,0x9b,0x5,0x2b,0x24,0x8d,0x41,0x65,0xa6,0x4a,0x25,0xc8,0x5a,0xc2,0x46,0x6f,0x2a,0x58,0x75,0x4d,0xff,0x6d,0x2f,0xfd,0xbe,0xbe,0x51,0x25,0xf7,0x8c,0x10,0x56,0x42,0x6,0xc9,0x6f,0x4a,0xfb,0xbe,0x3c,0x6d,0x30,0x58,0x3d,0xae,0xec,0x64,0xf3,0xba,0xe3,0xff,0x16,0x92,0xec,0xff,0x37,0x4a,0xdd,0x5e,0x11,0x12,0xb1,0x1d,0x98,0xe6,0x96,0xaa,0xfe,0xee,0x7,0x78,0xbb,0x75,0xd5,0x0,0x5e,0xba,0xb,0x34,0xdf,0xf2,0x79,0xeb,0xa3,0xb5,0xfe,0x94,0xe6,0x8a,0xe7,0xe2,0x68,0x34,0xf0,0x1d,0x7f,0xea,0xe3,0x2d,0x5d,0xf1,0x59,0xda,0x93,0xe0,0xd2,0xd6,0x2e,0x1d,0x82,0xf5,0x67,0x39,0x7e,0x9,0x5e,0xdb,0xc3,0x41,0xae,0x8a,0x1d,0x5e,0x7a,0xee,0x19,0x7c,0xf1,0x53,0x1f,0x43,0xea,0xb,0x8b,0x1d,0x1d,0x1d,0xaf,0x23,0x74,0x2,0xb0,0xa3,0xa3,0xe3,0x35,0xc3,0x7,0x7e,0xe6,0x6f,0xe0,0x81,0x87,0x6f,0x91,0x42,0xab,0x60,0xb5,0x22,0x2d,0xc4,0x94,0xb5,0x1e,0xad,0xb5,0x17,0xbc,0x32,0xad,0x6d,0xaf,0x30,0x64,0xf,0xe6,0x15,0x67,0xe7,0xa8,0xd,0x17,0x4d,0x81,0x88,0xf,0x3,0xac,0x95,0x55,0x7b,0x60,0x7f,0x71,0x17,0xd6,0x3a,0xec,0x77,0xe7,0x8d,0x5,0xd4,0xe3,0xc6,0xb5,0x53,0x3c,0xf0,0xc0,0x3,0x38,0x3d,0x3d,0xc1,0xb5,0xd3,0x6b,0x30,0xc6,0x62,0x3f,0xcd,0x38,0xcc,0xb,0xe6,0x25,0x61,0xc9,0xd0,0x7d,0x91,0xd5,0xed,0x65,0x99,0x91,0xb9,0xf4,0x42,0xf7,0x53,0x89,0xa4,0xa2,0x2a,0xc4,0x9c,0xb3,0xee,0xbb,0x71,0x44,0x8e,0x89,0xed,0xf7,0xbd,0x4f,0x3c,0x86,0x7f,0xf4,0x2b,0x7f,0x17,0xd7,0xae,0x9d,0x5e,0x39,0x4e,0x39,0x67,0x4c,0xf3,0xc2,0x39,0x75,0x6,0xde,0x39,0x38,0xe7,0xe0,0xbd,0xfb,0xb6,0x63,0xfc,0xe9,0xcf,0x7e,0x9,0xff,0xc3,0xff,0xf6,0xeb,0x0,0x8c,0x92,0x95,0x33,0xdb,0x7a,0xa5,0x71,0x39,0x97,0xc,0x1f,0x6,0x6d,0xcc,0x95,0xd5,0x7e,0x63,0x2d,0x72,0x8a,0xd8,0x5f,0x9c,0x61,0x99,0x67,0x1c,0x76,0xe7,0x38,0xec,0x2f,0xb0,0xcc,0x13,0xc6,0xed,0x9,0xb6,0xa7,0xd7,0xb1,0xd9,0x9e,0x22,0xe7,0x84,0x93,0xd3,0x1b,0xac,0xc4,0x20,0x2,0x74,0xd8,0x6c,0xb1,0xcc,0x13,0xbd,0xaf,0xaf,0xed,0xc4,0x2e,0x4,0x55,0xde,0xe5,0x9c,0x71,0x7d,0x3b,0xc0,0x96,0x5,0x27,0x83,0x7,0xc,0xb0,0x2c,0x9,0xe7,0xbb,0x3,0xce,0xf6,0x13,0x62,0x22,0x82,0x37,0x2d,0xb,0x7c,0x18,0x90,0xe2,0x82,0xc4,0xab,0xed,0x29,0x45,0xcc,0xdc,0x84,0x6c,0x8c,0x81,0xb5,0xe,0xf3,0x74,0x40,0xce,0x89,0x1f,0x7,0xe,0xbb,0x73,0xc,0xe3,0x6,0xc3,0xb8,0x25,0xf2,0xcf,0x7,0x52,0x0,0x70,0xf6,0x62,0x29,0x89,0xcf,0x2b,0x51,0x9c,0x26,0x38,0x17,0x28,0xfb,0x2f,0x46,0xc4,0x38,0x23,0xce,0x33,0xee,0xbc,0xfa,0x12,0x5e,0x7c,0xfe,0x79,0xa4,0xf9,0x80,0x1c,0xf7,0x9d,0x0,0xec,0xe8,0xe8,0xb8,0xaf,0xb1,0xb9,0xf6,0x10,0x3e,0xf4,0xd1,0xbf,0x8e,0x47,0x1e,0x7d,0x2b,0xac,0x77,0xf4,0x7d,0xc8,0x6a,0xf0,0x4a,0xe0,0x9,0xc1,0x67,0x1a,0x2e,0xa5,0x5c,0x6a,0x6c,0x3f,0x56,0x9b,0xaf,0x15,0x5e,0x57,0xdf,0x6e,0xb4,0xef,0x71,0xe5,0xf3,0x94,0xe8,0xc1,0xd5,0xc4,0x15,0x2b,0xd1,0x94,0x8c,0xe3,0x1d,0x2c,0xed,0xfb,0x97,0x72,0x25,0x2f,0xf4,0x3d,0x93,0x69,0xed,0xc2,0xdd,0xf1,0xfe,0x99,0x63,0x22,0xea,0x1e,0x84,0x9b,0x10,0x53,0x97,0x8,0xba,0xe6,0x3f,0x5a,0xd2,0xf5,0x88,0x98,0xbb,0x17,0x87,0x65,0xbe,0x3,0x6a,0xad,0x1c,0x3d,0x4a,0x24,0xe5,0xe5,0x67,0xd2,0x73,0x5b,0x32,0xb6,0xfe,0x5c,0xae,0x24,0xea,0xca,0xe5,0x7d,0x3d,0xde,0xb3,0x2b,0x3f,0xd3,0x3d,0x76,0xf6,0xbb,0xb9,0x63,0xfd,0x2e,0xf,0xec,0xf1,0xe7,0xfa,0x76,0x8f,0xdf,0xeb,0x79,0x2d,0xb9,0xdb,0xfe,0x2c,0xef,0x21,0xea,0xce,0x9c,0x12,0xce,0xee,0xbc,0x82,0x2f,0x7e,0xfa,0x13,0xb8,0xb8,0xfd,0x42,0xff,0xe2,0xe9,0xe8,0xe8,0x78,0x5d,0xa0,0x5b,0x80,0x3b,0x3a,0x3a,0x5e,0x33,0xac,0x15,0x2,0xd5,0x5e,0x22,0x25,0x1f,0xa4,0xc4,0x8a,0x6a,0x9b,0x15,0x2b,0x86,0x31,0x45,0xad,0x1c,0x25,0x67,0xa4,0x48,0x96,0x53,0x69,0xaf,0x4d,0x29,0xd2,0xeb,0xd9,0xa,0xb2,0xcc,0x44,0x8,0x59,0xe7,0xd9,0xb6,0x42,0xed,0xc1,0x61,0x18,0x59,0x49,0x96,0x90,0xe2,0x82,0x57,0xe3,0x82,0x29,0x16,0x8c,0x17,0x13,0x5c,0xb8,0xc0,0x30,0x6e,0x10,0xe7,0x9,0x7e,0x18,0x57,0x13,0xfb,0x9c,0x17,0x9a,0xc2,0xb1,0x4d,0xd9,0x3a,0xab,0xb6,0x16,0xc9,0x1e,0xa4,0xc,0x3e,0x8b,0x92,0x13,0xdb,0x4d,0xa,0xac,0xf3,0xf4,0x5c,0xb6,0x5,0x1b,0xeb,0xb0,0x19,0x3c,0xfe,0xe1,0xdf,0xf9,0x85,0x2b,0xc9,0xbf,0x3b,0x67,0xe7,0xf8,0xd4,0x9f,0x7e,0x9,0x9f,0x7b,0xfa,0x9b,0x78,0xee,0x85,0x97,0x51,0x6c,0x20,0x35,0x23,0x32,0xae,0x9d,0x8c,0x78,0xe8,0xda,0x6,0xef,0x7c,0xdb,0x9b,0xf0,0xee,0x77,0xbe,0x1d,0x37,0x1f,0xbc,0x71,0x65,0x7b,0xee,0xfb,0xde,0xf3,0x4e,0xfc,0xf4,0x7,0x9e,0xc4,0xc7,0x3e,0xf3,0x35,0xcc,0x87,0x3d,0x86,0xcd,0x9,0x96,0xe9,0x0,0x1f,0x6,0x2c,0xf3,0x1,0xd6,0x79,0x38,0x58,0x94,0x94,0x60,0x7c,0xc0,0xcc,0xbf,0x13,0x2b,0x54,0xce,0x64,0x73,0x82,0x99,0x1,0x3,0x2e,0xd5,0xd8,0x62,0x9e,0x76,0x98,0x76,0x34,0x46,0x42,0x2e,0xe6,0x9c,0x90,0x1d,0xb5,0xf3,0x2e,0xf3,0x81,0xd4,0x8d,0x29,0xa2,0xe4,0x4,0x1f,0x46,0x64,0xd0,0x84,0x37,0x47,0xb2,0xc8,0x84,0x30,0xe0,0xe5,0x57,0x6f,0x63,0x9e,0xe,0x5a,0xde,0xe1,0x87,0x81,0x95,0x83,0x5e,0x2d,0xb8,0xa4,0xe8,0x34,0xda,0x14,0x2c,0x76,0x20,0xeb,0x1c,0x9c,0x75,0xb0,0xce,0x61,0x77,0x4e,0xa4,0x6e,0x4e,0x9,0x9b,0xed,0x29,0x96,0x79,0xc2,0x66,0x7b,0xaa,0x84,0x5f,0xe1,0xf7,0xcc,0x39,0x2,0x59,0x6c,0xbf,0x7c,0xfe,0xe9,0x4d,0xac,0x6d,0xac,0x67,0x46,0xff,0x55,0x72,0x79,0xd8,0x20,0xc7,0x3,0x8c,0x71,0x28,0x25,0xf5,0x3f,0xe0,0x8e,0x8e,0x8e,0xfb,0x12,0x37,0x1f,0x7d,0x1c,0x9b,0xed,0x29,0xa,0xa,0xe6,0xc3,0x1,0xcb,0x7c,0xa0,0xef,0x6e,0xb6,0xd7,0x8a,0x5d,0x54,0x88,0xd,0xb1,0x56,0x3b,0xa6,0x4,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x74,0xde,0x4b,0x49,0x57,0xe3,0x15,0xd6,0xff,0x2d,0xca,0xf3,0x6a,0x17,0xad,0xd6,0x4f,0xa5,0xa6,0x9a,0xef,0x7c,0x7a,0x49,0x6e,0x2c,0xae,0x6c,0x9f,0x6d,0xad,0xac,0x80,0x5e,0xbf,0xf4,0xfb,0xbd,0x51,0x25,0xa,0x21,0x55,0x9a,0xfd,0xae,0x97,0xf7,0xac,0x44,0x8d,0x39,0xfa,0x5d,0xfb,0x3e,0x95,0x5b,0x2a,0x95,0xd0,0x3b,0xe6,0x9c,0xd4,0xc9,0x50,0x89,0x3b,0x63,0xdb,0xcf,0x8e,0xcb,0x2a,0x49,0xd3,0x90,0x7c,0x57,0x11,0x83,0xaa,0x58,0x33,0xea,0x80,0x50,0x62,0xaa,0xfd,0x8c,0xab,0x6d,0x5f,0xfa,0x71,0x35,0x5e,0xdf,0xe2,0x49,0x95,0xbc,0xe3,0x71,0xd3,0x71,0x17,0xb2,0xab,0x39,0xf,0x84,0xe8,0x5a,0xd9,0x7a,0x85,0xfc,0x92,0xdd,0xb6,0x56,0xed,0xce,0x97,0x6,0xcc,0x34,0x84,0x59,0xab,0xcc,0x6b,0xc6,0x4a,0xf7,0xf9,0x5b,0x11,0xa8,0x47,0x73,0xcc,0x2c,0xb6,0xf4,0x63,0xca,0x73,0x45,0xe,0x96,0x15,0xbd,0xd9,0x6e,0xb8,0xfe,0xa4,0x47,0xfc,0xa,0xee,0xb1,0x55,0xa8,0x96,0xf5,0x73,0x8f,0xb8,0x4e,0x11,0xa5,0x96,0x42,0x8a,0x5a,0x1f,0x6,0x3c,0xf6,0x8e,0x27,0xf1,0xe5,0x4e,0x0,0x76,0x74,0x74,0x74,0x2,0xb0,0xa3,0xa3,0xe3,0x7e,0x87,0x92,0x2d,0xa8,0xb6,0x20,0x9d,0x1c,0x72,0x23,0x2b,0x65,0xb9,0x90,0x3d,0xd8,0x87,0x41,0xed,0x47,0x62,0xad,0x15,0x35,0x57,0x66,0x6b,0xb0,0x66,0xb4,0xb0,0x72,0xcc,0x8e,0x4e,0x9f,0x97,0xe2,0xc2,0x2a,0x3c,0x3,0xe7,0x3c,0x2e,0xce,0xef,0x20,0x2e,0xb,0x15,0x5f,0x70,0xf9,0xc8,0xc5,0xd9,0x6d,0x94,0x92,0x11,0x72,0x42,0x4e,0x11,0x61,0xd8,0xe0,0xb0,0xbb,0xe0,0xa6,0xdb,0x44,0x99,0x46,0x9c,0x5d,0x48,0x2a,0xc4,0x5,0xcb,0x92,0x99,0x90,0xf2,0xa4,0x92,0x90,0x6c,0x9a,0x52,0x73,0x66,0x52,0x8a,0xb0,0x9c,0x45,0x27,0x37,0x41,0xf3,0xb4,0xc7,0x87,0x7f,0xf4,0xbd,0x78,0xcb,0x63,0x8f,0x5e,0x1a,0x9b,0x2f,0x7f,0xed,0x1b,0xf8,0x67,0xff,0xea,0xdf,0xe1,0xa5,0x3b,0xe7,0x8,0x4c,0x40,0x3a,0x6f,0x71,0x58,0xa8,0xf9,0xf6,0xce,0xc5,0x1,0x4f,0x3f,0xfb,0x2,0xfe,0xe8,0xb3,0x5f,0x83,0xc1,0xc7,0xf1,0xa1,0xf7,0xbe,0xd,0x7f,0xf3,0xe7,0x3f,0x82,0x87,0x6f,0x3e,0xb4,0x7a,0x1f,0xe7,0x2c,0x7e,0xea,0xa9,0xf7,0xe3,0xb7,0x3e,0xf6,0x29,0x38,0xef,0x31,0x1d,0x2e,0x54,0x3d,0x49,0x24,0x5b,0x25,0x2f,0x69,0xfc,0x88,0x54,0x9b,0xe7,0x3,0x8c,0xa1,0x46,0xe1,0xaa,0xe2,0x20,0xa2,0xcf,0x98,0x88,0x9c,0x69,0x12,0x4e,0xed,0xbb,0x16,0x71,0x9e,0xb0,0xbd,0x76,0x83,0x6f,0xc6,0x28,0x9b,0x31,0x71,0xce,0x8e,0x73,0x9e,0xde,0x87,0x1b,0x8a,0x7d,0x18,0x1,0x14,0xcc,0x4c,0xcc,0xd2,0x76,0xe,0x48,0x71,0xc1,0x32,0x1f,0xf8,0xf7,0x13,0x36,0x27,0xd7,0x60,0x8c,0xe4,0x1c,0x39,0x55,0x50,0xc6,0xb8,0x68,0xe3,0xb1,0xb1,0x16,0xd3,0x61,0xa7,0x63,0x4,0x90,0x65,0xdb,0x79,0x4f,0xc5,0x27,0xc6,0x68,0xfb,0xb0,0x5a,0xd7,0xa4,0x11,0xb8,0x44,0x55,0x6c,0xa2,0xe4,0x46,0x8c,0x90,0x6b,0x96,0x15,0xff,0x2e,0xc7,0x5,0x25,0x2f,0x28,0x69,0xae,0x37,0x70,0x1d,0x1d,0x1d,0x1d,0xf7,0x21,0x84,0x6c,0xa1,0xef,0xe4,0x19,0x29,0x45,0x55,0x2c,0xd1,0xb5,0x6d,0x4d,0x83,0x68,0xee,0xd9,0x15,0xc4,0xd,0x5f,0xed,0xf5,0x7d,0xb,0xb2,0x52,0x2b,0xc6,0x18,0x6d,0x9c,0x2f,0xf9,0x72,0xf9,0x92,0x2e,0xe4,0xc1,0x36,0x25,0x4d,0x5,0x40,0xd6,0xac,0xb9,0x36,0x5f,0xd0,0x48,0x4e,0x60,0x13,0xf,0x92,0x38,0x23,0x4e,0x54,0xde,0xa6,0xc9,0x10,0x4c,0x9a,0xd1,0x96,0x35,0x3b,0xb8,0xf0,0x6b,0xc1,0xd7,0x32,0x30,0x59,0x23,0xd7,0x20,0x79,0x6d,0x66,0x7b,0x72,0x69,0x48,0x24,0x22,0x9c,0x1a,0x96,0xe7,0x88,0xbc,0x33,0x4a,0x92,0x1e,0x59,0x54,0x99,0xc8,0x94,0x45,0xaf,0x86,0x45,0x5c,0x8d,0x73,0xab,0xb8,0x84,0xaa,0xc9,0xf2,0x9a,0x17,0x6c,0xf8,0xbc,0x86,0xeb,0xa3,0x63,0x66,0x1a,0xeb,0x76,0xb3,0xfd,0x6a,0xc7,0x2e,0x8d,0x85,0xdb,0x56,0x8b,0x77,0x2e,0x7a,0x1c,0x25,0x7f,0xf0,0x78,0xef,0x32,0xbf,0x26,0x97,0x36,0x73,0xb1,0xdd,0xa9,0x42,0xd7,0xd9,0x9c,0x1,0xce,0x7c,0x6c,0xc9,0xc0,0xe3,0x3c,0xc0,0xca,0xf3,0x5d,0x61,0x23,0x4f,0x79,0xad,0xb8,0xc4,0x3a,0xeb,0xb0,0xcd,0x34,0xc4,0x6a,0x4c,0x8a,0x66,0xf7,0x29,0x71,0xd9,0x10,0xa7,0xb9,0x94,0x6f,0x6d,0x61,0xbf,0x64,0xdd,0xfe,0xde,0x21,0x7f,0x4f,0x99,0xb3,0x2b,0x57,0xc4,0x78,0x47,0x47,0x47,0xc7,0xf,0x10,0xb6,0xf,0x41,0x47,0x47,0xc7,0x6b,0x76,0x93,0xc1,0xe4,0x9d,0x4e,0xea,0xe4,0x6,0x40,0x27,0x5e,0x55,0xd,0x68,0xac,0x45,0x8c,0x33,0x2b,0xf8,0x2a,0x29,0xd4,0x6,0x73,0x2f,0xf3,0x1,0x31,0x2e,0x58,0xe6,0x89,0x42,0xc5,0x9b,0xc9,0x6e,0x8a,0xa4,0xda,0xcb,0x25,0xeb,0xcd,0x0,0x98,0x44,0x2,0xdf,0x84,0x1c,0x76,0xe7,0x88,0xb,0xbd,0x7e,0x99,0x26,0x2c,0xf3,0x44,0x4d,0xb3,0xd6,0x68,0xf6,0xd1,0x32,0x4f,0x9a,0xa7,0x97,0x96,0xa5,0x4e,0xa,0x65,0x1b,0x4c,0x96,0xa5,0x18,0xb9,0x6c,0x23,0xc1,0x3a,0x8f,0x10,0x6,0xc0,0x18,0x2e,0xe3,0x48,0x4a,0x9c,0xbd,0xef,0x3d,0x3f,0x7c,0x29,0xf3,0xef,0xec,0xfc,0x2,0xff,0xe4,0x57,0x7f,0x13,0x2f,0xde,0x3e,0x5b,0xa9,0xfa,0x4a,0x4e,0x0,0xdb,0xa4,0x97,0xf9,0x80,0x30,0x8c,0xf0,0xc3,0x80,0x5c,0xa,0x3e,0xf9,0xf9,0x67,0xf0,0xdf,0xff,0x2f,0xff,0x2,0xaf,0xdc,0xbe,0x73,0x69,0x9c,0x1f,0x7d,0xd3,0x23,0xb8,0xb6,0x1d,0x90,0x62,0xd4,0x1b,0x38,0xcf,0x99,0x89,0x42,0x8a,0x8a,0x85,0x96,0x6c,0xb8,0x93,0x92,0x96,0xf2,0x59,0xc,0x13,0x69,0x29,0x2e,0xd8,0x9f,0xdf,0x45,0x5c,0x26,0x84,0x61,0xe0,0xdf,0x1,0x30,0x56,0xad,0xc5,0xd4,0x3c,0x5c,0x74,0x32,0xbb,0xcc,0x13,0xad,0x76,0x2f,0x33,0x91,0x88,0xcb,0x84,0xb8,0xcc,0x88,0xcb,0x8c,0x65,0x9e,0x70,0xd8,0x9f,0xab,0x6d,0x37,0xe7,0x8c,0x79,0xda,0xd3,0xeb,0xf8,0xfd,0x72,0xa6,0x72,0x8f,0xcc,0x2b,0xe6,0xce,0x79,0x56,0x6f,0x10,0xb1,0x17,0xc2,0xa8,0xca,0x4e,0x63,0x2d,0x86,0x71,0x83,0x30,0x8c,0x70,0x3e,0xc0,0x87,0xa0,0xa4,0x5f,0x69,0x5a,0x7e,0x89,0x9c,0xe4,0x9b,0x2d,0x55,0x98,0x90,0xb5,0xdc,0x34,0xeb,0xf8,0x74,0x3,0x44,0x8f,0x5b,0xeb,0xe1,0x86,0x6b,0xfd,0xf,0xb7,0xa3,0xa3,0xe3,0x3e,0x27,0x0,0xdb,0xe9,0x3f,0x2b,0xe6,0x5a,0x25,0x9e,0xc1,0xfa,0x7f,0x68,0x63,0x7b,0x8f,0xec,0x92,0x86,0xd4,0x74,0x44,0xc4,0x94,0x15,0xc9,0x21,0x8b,0x31,0x4a,0x6e,0xad,0xf2,0xfa,0x8c,0x5e,0xff,0x33,0x47,0x6a,0x8,0x31,0xa3,0xaa,0x41,0xbe,0xce,0xd3,0xbc,0x81,0x58,0x2f,0xcb,0xb1,0xe,0x2d,0x81,0x55,0x4a,0xae,0x4a,0x6f,0x76,0xf,0xd4,0xcd,0x98,0x6a,0x11,0x2e,0x4c,0x2c,0xc9,0xa5,0x21,0xaf,0x49,0x31,0x21,0xe0,0x4a,0x9d,0xb8,0xa8,0xaa,0x50,0x4b,0xa3,0x84,0xec,0x33,0x56,0xb7,0x57,0x54,0x3d,0x78,0x59,0xfd,0x26,0x9f,0x5f,0x5c,0xf,0x6a,0x71,0xd6,0x31,0xa8,0x73,0x24,0x1a,0xaf,0x4a,0xdc,0x55,0xc2,0xac,0xf2,0xaf,0x12,0x75,0x52,0xfb,0x4b,0xa4,0xa0,0xc2,0xd5,0xe3,0x8,0x73,0x74,0xac,0x2b,0x29,0xa9,0x9f,0x51,0x4b,0x38,0x84,0x45,0x34,0x4a,0x2c,0xca,0x58,0xb4,0xdb,0xab,0x9f,0xaf,0xac,0xc8,0x4f,0xa1,0x29,0x85,0x7c,0x4,0xcf,0xe1,0x8e,0x95,0x80,0xed,0x7e,0xdd,0x8b,0x80,0x6b,0xb7,0x75,0x25,0xf9,0x57,0x2a,0xc9,0xb7,0x22,0x5a,0xf5,0xdc,0xb1,0x6b,0x96,0x74,0x45,0x1c,0x1e,0x15,0x8d,0x5c,0xa1,0x30,0x3c,0xb6,0xf2,0x7e,0xb,0x7a,0x6f,0xcd,0xc2,0x5e,0xfa,0xf5,0xe5,0x6c,0xc4,0x9e,0xb8,0xd5,0xd1,0xd1,0xd1,0x9,0xc0,0x8e,0x8e,0x8e,0xfb,0x1e,0xa2,0x16,0x13,0xa2,0xaf,0x5a,0x4a,0x2a,0xf1,0x97,0x52,0xd4,0x6c,0x40,0x3,0x43,0xc5,0x14,0x9c,0xa7,0x17,0x97,0x59,0x2d,0xbf,0xcb,0x3c,0xe9,0x24,0xca,0x72,0x23,0x60,0x41,0xc1,0xe1,0xb0,0x43,0x5c,0x66,0xce,0xdb,0xa3,0x39,0x96,0x73,0xd4,0x40,0x38,0xc,0x1b,0x58,0xef,0xd5,0x8a,0x41,0xc4,0x55,0xc6,0xed,0x97,0x5f,0xc0,0x7c,0xd8,0x61,0x77,0x7e,0x97,0x8,0xbf,0x94,0x88,0xb4,0xe3,0x7f,0x65,0x62,0x28,0x84,0x60,0xca,0x91,0xdf,0x3f,0xeb,0xbe,0x2a,0x71,0x57,0x40,0xa4,0x5f,0xca,0xda,0x98,0x7b,0xd8,0x9d,0x63,0x9e,0xf6,0x48,0x71,0xc1,0xc3,0x37,0x1f,0xbc,0x34,0x2e,0x5f,0x7f,0xe6,0x59,0xbc,0x72,0x7e,0x20,0xfb,0x30,0x67,0xe7,0xa1,0x14,0xce,0x5f,0xa2,0x49,0x68,0xce,0xf4,0xf9,0x97,0xe9,0x0,0x63,0x1d,0x52,0x4e,0x78,0xe9,0xce,0x5,0x3e,0xf6,0x7,0x9f,0xbe,0xf4,0x7e,0xc1,0x3b,0x3c,0xf4,0xc0,0x75,0x8c,0xdb,0x13,0x26,0xc9,0x1c,0x37,0xfd,0xd6,0x36,0xc1,0x79,0xda,0xeb,0xe7,0x91,0xbb,0x1f,0x5a,0x99,0x76,0x3c,0x36,0x33,0xf6,0xbb,0xb,0x52,0xf0,0xd,0x23,0x11,0x79,0x31,0x2a,0x81,0x2a,0x37,0x36,0xb4,0x8f,0x5,0x71,0x9e,0x49,0x61,0xc1,0x6a,0xc9,0xe9,0xb0,0x47,0xca,0x75,0x1c,0x55,0x91,0xc1,0xaf,0x93,0x86,0xc7,0xb8,0x90,0xda,0x24,0xc5,0xa8,0x2d,0x87,0xc6,0x18,0x78,0x1f,0xe0,0x7d,0x20,0x62,0xcf,0x39,0x84,0x30,0x68,0xb,0xa1,0xb1,0xa4,0xbe,0x14,0x62,0xd3,0x5a,0xcb,0xd9,0x83,0xe,0x39,0x65,0x58,0x67,0xf5,0xa6,0x4e,0x27,0xf8,0x7c,0x9c,0xa8,0xc1,0x11,0x9a,0xd7,0x98,0x34,0xcf,0xb1,0xb9,0x79,0x29,0x19,0x69,0xbe,0x80,0x1b,0x46,0xa4,0x38,0xc1,0x18,0xd7,0xff,0x78,0x3b,0x3a,0x3a,0xee,0x5b,0x64,0x29,0xb2,0x2a,0x42,0x20,0x41,0x17,0xd4,0x44,0x89,0x67,0x74,0xa9,0x4,0x95,0x84,0x6b,0x89,0xae,0xd2,0x90,0x3d,0xfa,0x3d,0xef,0xd6,0x19,0x77,0x4d,0x53,0x2c,0xc5,0x35,0x38,0x56,0x77,0x3b,0x18,0x6b,0x94,0x4,0xb4,0xd6,0xe9,0x77,0xbd,0xbc,0x56,0x7e,0x2e,0xd,0x91,0x58,0x1a,0x4b,0xb1,0x7c,0xa7,0xd3,0x6b,0xad,0x5e,0x2f,0x24,0x73,0x58,0x3e,0x43,0x5d,0x78,0x94,0x45,0xc9,0xbc,0x22,0xc8,0x60,0x2c,0xd3,0x63,0x54,0x2a,0x6,0x26,0x13,0x4d,0x23,0x2d,0x13,0xc5,0x1a,0xed,0x5a,0x5e,0x91,0x45,0x39,0xe5,0xe6,0xb9,0x55,0xbd,0x57,0x1d,0xb7,0x45,0x55,0x86,0x97,0xfb,0xbf,0xca,0x95,0x91,0x80,0x2d,0x19,0xda,0x92,0x66,0xd,0xe7,0x5a,0x5f,0xc3,0x64,0x5b,0xcd,0x58,0x6e,0x8e,0xa7,0xce,0xbf,0x4a,0x43,0xc8,0xb6,0x84,0x66,0x6b,0xab,0x5e,0x93,0x9d,0x35,0xf7,0x98,0xdf,0x67,0xa5,0xde,0x93,0x98,0x96,0xc6,0x46,0xdd,0x12,0xa8,0x47,0xd,0xcb,0xf5,0x83,0x57,0xf2,0xb0,0x75,0x4b,0x5c,0x22,0xa6,0x4b,0xd1,0xf1,0x6c,0xad,0xd4,0xa5,0xd9,0x37,0x6b,0x9d,0x2e,0xe2,0x5d,0x55,0x5b,0xb2,0x7a,0xb4,0x94,0x2b,0xd5,0x77,0x72,0xce,0x1f,0x93,0x7e,0x3a,0x57,0xd5,0x92,0x9a,0x4b,0xaf,0xbc,0x9c,0xb,0x79,0x4f,0x32,0x71,0xbd,0x5f,0x1d,0x1d,0x1d,0x1d,0x3f,0x68,0x74,0xb,0x70,0x47,0x47,0xc7,0x6b,0x86,0x5a,0xc6,0xc0,0x2b,0xb3,0xbc,0xca,0x4f,0x2a,0xac,0x82,0x9c,0x28,0xff,0xcf,0x7a,0xca,0x92,0x3,0xe7,0xbe,0x1,0x85,0x6e,0x14,0xc,0x94,0xc,0xf4,0x61,0xdd,0xfc,0x2b,0x39,0x80,0xd6,0x3a,0x6d,0xa0,0x4d,0x91,0x14,0x68,0xf3,0x74,0x80,0x75,0x8e,0x8,0x44,0xb6,0x61,0x18,0x18,0xc4,0x34,0xe3,0xee,0xed,0x97,0x10,0xc2,0x88,0x8b,0xf3,0xbb,0x94,0x6f,0x57,0xa,0xe5,0xfa,0x79,0xcf,0x85,0x23,0xa1,0xc9,0xd,0xe2,0x5c,0xb9,0x14,0xc9,0x96,0x9a,0x68,0xf2,0x6c,0x7,0xa7,0x96,0xd7,0x94,0x22,0x4c,0x36,0x88,0x7c,0xb3,0xb3,0x9f,0xc9,0xea,0x2a,0x84,0xd5,0x95,0x37,0x5f,0xc5,0x70,0x29,0x87,0x63,0x82,0x33,0x61,0xdc,0x6c,0x89,0xa8,0x8c,0xb,0xac,0x73,0x18,0xc6,0xd,0x52,0xa4,0x72,0x8c,0xc3,0xfe,0x42,0xd5,0x13,0xaf,0x5e,0xa1,0x0,0x24,0x5,0x6,0x59,0x72,0xc3,0x30,0x62,0x9e,0xf6,0x7a,0x73,0x54,0x72,0x86,0xf,0x1,0x99,0x6f,0x8c,0x42,0x18,0x57,0x21,0xef,0x92,0xed,0x27,0x24,0x5d,0x8,0x23,0x96,0x65,0xa2,0x96,0xe0,0x79,0x82,0x39,0xb9,0x6,0x3,0x26,0x3c,0xf9,0x66,0xe,0xa5,0x20,0xe5,0xc8,0xd9,0x3b,0x34,0xb5,0xd,0xc3,0xa8,0x79,0x8d,0xd6,0x59,0x5c,0x9c,0xdd,0xe1,0xcf,0x40,0xc7,0xf8,0x30,0x1d,0xb0,0x3b,0xbf,0x4b,0xf6,0xe3,0xfd,0x85,0xde,0x4,0x84,0x71,0x83,0x9c,0x33,0xbc,0x37,0x9c,0xe7,0x38,0xd1,0xb1,0x9b,0x27,0xb8,0x10,0x98,0x60,0x4d,0x7c,0x93,0x48,0x76,0xaf,0x92,0x13,0xa,0xff,0x2b,0x5,0x31,0x62,0x17,0x16,0x32,0xd5,0x38,0x47,0x9f,0x8b,0x15,0x9b,0xa2,0x26,0x94,0x1b,0xf,0x55,0x20,0xe8,0xb9,0x46,0xf9,0x82,0xd6,0xd,0x48,0xa9,0x97,0x80,0x74,0x74,0x74,0xdc,0xbf,0x70,0xde,0x33,0xc9,0xb1,0x62,0x2c,0xd6,0x64,0x9f,0xd8,0x33,0xb,0xd8,0xd6,0x6b,0x56,0x79,0x69,0x64,0xdd,0xad,0xc4,0xd7,0xa5,0x6b,0x12,0x98,0x58,0x4b,0x89,0x54,0x7b,0x2d,0xb9,0xc2,0xa4,0x94,0x75,0x4e,0x17,0xe0,0x0,0xc0,0x14,0x53,0xf3,0x69,0x53,0xa4,0xed,0xf0,0xf7,0xf8,0x2a,0x13,0x90,0xff,0xdb,0x3a,0x87,0xcc,0x64,0xa4,0xb9,0x94,0xdf,0x7,0x75,0x1c,0xe0,0x92,0xcd,0x14,0x40,0x61,0xbb,0x72,0x6b,0x33,0xce,0xd,0x6d,0xc4,0xc4,0x5a,0x4b,0xfe,0x9,0xc9,0xa9,0x36,0x62,0x1e,0x43,0x51,0xc9,0x83,0xcb,0x1f,0xaa,0x82,0x4f,0x48,0xad,0xbc,0x52,0x42,0x1e,0xf7,0x87,0x94,0x2,0x58,0xcb,0x56,0x65,0x63,0x60,0x4c,0x93,0x33,0xd7,0x58,0x5f,0x8f,0x2d,0xb0,0x46,0x55,0x8c,0x6d,0x7e,0xa2,0xa9,0xc4,0xa0,0x66,0xeb,0x15,0x55,0x2,0xb6,0x8f,0xad,0xb6,0x81,0x75,0x6e,0x62,0x5b,0x12,0x72,0x4c,0x4e,0x5e,0xfe,0xef,0xa6,0x1,0x59,0x9,0xd0,0xb5,0x4a,0xb0,0xac,0x28,0x3a,0x53,0x95,0x9b,0xc8,0xd5,0x42,0x2d,0xfb,0x6c,0xe9,0xfa,0xdd,0xe6,0x30,0xae,0x54,0xfb,0x68,0xb9,0xc5,0xe3,0x42,0x99,0xef,0x5c,0x69,0xb7,0xfa,0x2c,0x57,0xd9,0xb1,0xb,0x50,0xae,0x2c,0x2b,0x29,0xf7,0xe0,0xf3,0xae,0xf0,0x6a,0xcb,0x8,0xf4,0xda,0xcd,0x8e,0x8e,0x8e,0x4e,0x0,0x76,0x74,0x74,0xdc,0xf7,0x68,0x26,0x3b,0xa4,0x2a,0xa0,0x29,0x56,0x62,0x65,0x99,0xe1,0xf2,0x8f,0xb4,0x2c,0x6c,0x61,0xe1,0x2c,0x3d,0xeb,0x74,0xa2,0x2a,0x2b,0xd0,0x91,0x73,0x84,0x8c,0xa5,0xff,0x96,0x9,0xb0,0xf,0x54,0x2a,0x91,0x96,0x85,0x9,0x20,0xce,0x30,0x8a,0x9,0xce,0x79,0xf8,0x30,0x60,0xdc,0x9e,0x60,0x7f,0x71,0x8e,0x14,0x23,0xbc,0xb,0xc8,0x29,0x61,0x62,0x12,0x2a,0xc5,0x5,0x6e,0x99,0xb5,0x41,0xd6,0x5a,0x87,0x61,0xb3,0xe1,0x3c,0xa1,0x4c,0xd9,0x2d,0xd6,0xc2,0x1a,0xca,0x28,0xca,0xfc,0x78,0xce,0x94,0xf7,0xe7,0x7c,0xc0,0x12,0x67,0x58,0xeb,0xb5,0x18,0x83,0x48,0xc3,0x84,0x18,0x17,0x9c,0x9d,0x9d,0x5f,0x1a,0x96,0xc7,0x1f,0x7b,0x13,0x6,0x5b,0x70,0x98,0x67,0x58,0xe7,0x10,0x86,0x51,0xad,0xb0,0x46,0x73,0xf7,0x68,0x2,0xbd,0xcc,0x13,0xdb,0x5b,0xe9,0xf7,0x4f,0xfe,0xd0,0xdb,0x2e,0xbd,0xdf,0x34,0xcd,0xb8,0x7d,0xb6,0x53,0x45,0xa1,0xf,0x23,0x52,0x22,0xeb,0xaf,0x1b,0x37,0x58,0x96,0x9,0x61,0xd8,0x20,0x62,0xa6,0xd2,0xe,0x21,0x61,0x65,0x15,0x3d,0x4b,0xa3,0x71,0xc2,0xb2,0x50,0x1b,0xf0,0xb8,0x39,0xc1,0xb8,0x39,0xc1,0x74,0xd8,0x63,0xb3,0x3d,0x81,0x2d,0x44,0xb4,0x8a,0x99,0xa8,0x55,0x5b,0x18,0xb6,0x3e,0x93,0x22,0x0,0x4a,0x34,0xe6,0x44,0x99,0x8a,0x36,0x67,0x9c,0x9c,0x5e,0xc7,0x7c,0xd8,0x63,0x7f,0x71,0x6,0xeb,0x1c,0x1d,0xf,0x51,0x5e,0xc6,0x5,0x71,0x99,0x11,0x86,0x91,0x9,0x60,0xc0,0x85,0x41,0x4f,0x20,0x22,0x88,0xa9,0x68,0x25,0x67,0xca,0xaa,0x9a,0xa7,0x9,0xc6,0x1a,0x4,0x6e,0x89,0xce,0x39,0xc1,0x59,0xb2,0xf2,0xc6,0x9c,0x99,0x14,0xe,0x6a,0xc5,0xae,0x16,0x2f,0x56,0xaa,0x38,0x8f,0x14,0xf7,0xc2,0x54,0xc3,0xb8,0x40,0xe7,0x94,0xeb,0x97,0xc5,0x8e,0x8e,0x8e,0xfb,0x1b,0x29,0xa6,0x66,0x71,0xe,0x9a,0x97,0x56,0x70,0x94,0xaf,0x26,0xd,0xc0,0xcc,0x5e,0x58,0x26,0xf5,0x60,0x0,0xe5,0xa8,0x50,0xa3,0x38,0x8a,0x2a,0xb7,0x8a,0x12,0x52,0x4a,0xa6,0xb1,0xd2,0xaf,0xe4,0x4a,0x5a,0xe5,0x94,0xb4,0x38,0xc3,0x36,0xc5,0x1f,0x89,0x49,0x43,0xb9,0xbe,0xd0,0x77,0x36,0xcf,0xb,0x72,0x25,0xe,0x89,0x6b,0xb1,0x95,0xc4,0x6a,0xec,0xb8,0x42,0x3a,0xe6,0x4c,0x73,0x81,0x9c,0xd3,0x4a,0x55,0xd6,0x5a,0x46,0xd,0xef,0xab,0xec,0x3a,0x2d,0x58,0xd6,0x9,0x4c,0xbb,0xbd,0xd2,0x7e,0x2e,0x54,0x15,0x9e,0xe5,0xfd,0xae,0xd,0xc4,0x6,0x2b,0x35,0x9c,0x16,0x49,0xa0,0x21,0xeb,0x2c,0x73,0x43,0x4c,0x88,0xb2,0xe2,0xb1,0x64,0x5a,0xd4,0xa2,0x39,0x81,0xad,0x2e,0x89,0x23,0xdb,0xac,0x66,0x6,0x6a,0xde,0x1e,0x93,0xb4,0xfc,0xb3,0x14,0xac,0xad,0x9,0xbf,0x9a,0x29,0x68,0xad,0x45,0x4e,0x5,0x60,0xe5,0xa5,0x6d,0x5a,0x9d,0x4b,0x49,0xd,0xb9,0x56,0x9a,0xfd,0x68,0x88,0x4e,0x26,0x7a,0xeb,0x7c,0xed,0x48,0xa9,0x68,0x6d,0xcd,0x8f,0xe4,0xed,0xd1,0x18,0x41,0xe7,0x3b,0xc0,0x7a,0x5f,0xe9,0x1c,0x32,0x97,0xb2,0xfa,0xa,0x9a,0x7d,0x6e,0x17,0xf1,0xee,0x59,0x4c,0xd3,0x2a,0x1c,0xd,0xdb,0xd3,0xbf,0x4b,0x6,0xee,0x5e,0xa,0xbf,0xab,0x1e,0x6f,0x9b,0x8e,0x4d,0x59,0x95,0x42,0x57,0xfb,0x7b,0x47,0x47,0x47,0xc7,0xf,0x1e,0xdd,0x2,0xdc,0xd1,0xd1,0xf1,0x9a,0x41,0x56,0xf5,0xdb,0x59,0xb2,0xe5,0xac,0x20,0x99,0x74,0xcb,0xa4,0xdf,0x5a,0x47,0xb6,0xd0,0x5c,0xd8,0x16,0x5c,0xed,0x24,0x59,0xec,0x3e,0x6c,0x1d,0xa5,0x46,0x60,0xcb,0xa5,0x21,0x59,0x73,0x80,0x74,0x82,0x9c,0x33,0x9c,0xb,0xaa,0x8,0x73,0x6c,0x2f,0x75,0xce,0x3,0x6,0x98,0xe,0x3b,0x4c,0xfb,0x1d,0x76,0xe7,0x77,0x28,0x7,0xf0,0xb0,0xc3,0x74,0xd8,0x21,0xb3,0x45,0x75,0x77,0x76,0x17,0x71,0x9e,0x91,0xe2,0x82,0x79,0x3a,0x60,0x9e,0xe,0x58,0x96,0x59,0x27,0x90,0xcb,0x32,0x21,0x45,0x52,0x5,0x92,0xd5,0x37,0xaa,0xea,0x8e,0x9e,0xbf,0xc7,0x3c,0x1d,0x60,0x8c,0xc1,0xa7,0xff,0xec,0xf3,0x97,0xe6,0x7d,0xf,0x3f,0xf4,0x0,0xfe,0xfe,0x2f,0x7f,0x14,0x27,0x63,0xa0,0xcf,0xcd,0x45,0x25,0x0,0x94,0xc0,0x94,0x3c,0x41,0x2a,0xef,0xa0,0x62,0x8c,0x9f,0xfb,0xd0,0x93,0xf8,0x89,0xf,0xfe,0xd8,0xa5,0x71,0x7e,0xee,0xf9,0x17,0x71,0x76,0xb1,0xa7,0x16,0x62,0xe,0x32,0xa7,0xc9,0xb7,0xd3,0x19,0xe8,0x32,0x1f,0xb8,0xe1,0x98,0xac,0x42,0x39,0x27,0xb2,0xf1,0xf2,0xa1,0x11,0xf5,0x5e,0xce,0x9,0xc3,0xb8,0xc5,0xb0,0x39,0xa1,0x1b,0xae,0x92,0x75,0x8c,0xe5,0x46,0x22,0xa7,0x88,0x9c,0x48,0x59,0x99,0x12,0x59,0x6a,0x97,0x79,0xc2,0x7c,0xd8,0x93,0xcd,0x56,0x1e,0x67,0x85,0xe6,0x3c,0x1d,0x70,0xd8,0x5f,0xe8,0xcd,0x99,0x31,0x16,0x87,0xfd,0x5,0xa6,0xfd,0x5,0xce,0xef,0xbe,0xca,0xd9,0x8c,0x33,0x2e,0xee,0xde,0xc6,0xfe,0xe2,0xc,0x87,0xfd,0x5,0x72,0x5c,0x90,0x53,0xc6,0xb2,0x4c,0x58,0xa6,0x3,0xa6,0xc3,0xe,0x71,0x9e,0x71,0xd8,0x5d,0x60,0x3a,0xec,0x95,0x80,0x4d,0x69,0xd1,0x9b,0x7,0x30,0xb9,0xec,0x9c,0x53,0x22,0xd5,0xaa,0x9a,0x24,0xd5,0xc,0xa2,0x52,0xb,0x43,0x78,0xd0,0x81,0xc2,0x45,0x29,0x3e,0xf4,0x3f,0xdc,0x8e,0x8e,0x8e,0xfb,0x1a,0x62,0xf7,0xd4,0x46,0x56,0x83,0x95,0xca,0xac,0x6d,0xf1,0xad,0xdf,0x91,0x50,0xd5,0x5b,0x91,0x5,0xbd,0x52,0x88,0xe0,0x91,0xf2,0x85,0xab,0x8a,0x31,0x8c,0x51,0x3b,0xb1,0xe6,0xc,0xb2,0x92,0xbc,0xda,0x4e,0x85,0x80,0x2c,0x1a,0xb7,0x21,0xcc,0xa4,0xe6,0xfc,0xe5,0x9a,0x17,0xac,0xf1,0x22,0xed,0x36,0x38,0xf2,0xa1,0xc6,0x8c,0x94,0x55,0x96,0xf0,0x3a,0xf7,0x50,0x27,0x26,0x75,0xcb,0x5,0x70,0x8d,0x52,0x9c,0x6c,0xca,0xa4,0xd2,0x97,0x5,0xa8,0x96,0xb8,0x93,0x7d,0x11,0x7b,0x6c,0x61,0x45,0xbc,0xa8,0x9,0x8d,0xee,0x7f,0x5e,0x59,0x75,0x45,0x32,0xa8,0x64,0x65,0x53,0x1c,0x22,0xed,0xc2,0x54,0xcc,0x55,0x6a,0x9e,0x21,0x13,0x7b,0x5a,0x66,0xa2,0xb9,0x82,0x75,0xce,0x53,0x1b,0x90,0x8b,0x92,0x98,0x39,0x27,0x4d,0xff,0x53,0x75,0x5c,0x3b,0x5e,0xab,0x42,0x93,0x4a,0xfe,0xb5,0x64,0x63,0xcd,0xee,0x3b,0xb2,0x0,0xb,0x49,0x2a,0x24,0xb0,0xb1,0xab,0x36,0x5f,0x40,0x88,0xde,0x7a,0x5e,0x64,0xfe,0xb9,0x0,0x57,0x92,0x8b,0xad,0x75,0x78,0x6d,0x79,0x36,0xcd,0xbc,0x72,0x4d,0x86,0x1e,0x67,0x2c,0xb7,0xc4,0x5f,0xab,0xf4,0xbf,0xea,0x39,0xeb,0xf3,0xa0,0xfd,0xf7,0x88,0xd8,0xd3,0x7f,0x2f,0xe7,0xe,0xea,0xeb,0x44,0xf9,0x78,0xf4,0x67,0x70,0xa9,0xad,0xa5,0xa3,0xa3,0xa3,0xe3,0x7,0x8c,0x2e,0x75,0xe8,0xe8,0xe8,0x78,0xcd,0x20,0x8d,0xbd,0x35,0x8b,0xae,0x59,0xb9,0xce,0x89,0xb3,0x77,0x24,0x47,0x27,0xf2,0x2a,0xba,0xd5,0xc6,0x3c,0x9,0xe9,0x36,0x86,0x54,0x5e,0x64,0xcf,0x29,0x88,0xac,0xf6,0x93,0x6,0xdb,0x52,0xa,0x9c,0xf7,0x4c,0x98,0x39,0x7d,0xbf,0x9c,0x33,0x86,0x71,0x83,0x18,0x23,0xc2,0xb8,0x81,0xb5,0x16,0x67,0x77,0x5e,0xd1,0xf7,0x9a,0xa7,0x83,0x4e,0x44,0xb7,0x27,0xd7,0x34,0xb,0xcf,0x87,0x41,0x9,0xaf,0x9c,0x13,0x86,0x61,0x83,0x2,0x20,0x2e,0x13,0xdf,0x8,0x70,0x2e,0x9d,0xf5,0x3a,0x19,0x8c,0xcb,0xa2,0xa5,0x19,0x72,0x93,0xe0,0xbc,0xc7,0xc7,0xfe,0xf8,0x73,0xf8,0xa5,0xbf,0xf6,0xfc,0xa5,0x26,0xe0,0xa7,0x3e,0xf0,0x3e,0x3c,0xf1,0xf6,0xb7,0xe2,0xe3,0x7f,0xf4,0x19,0x7c,0xe1,0xe9,0x6f,0xe2,0xa5,0xdb,0xe7,0xc8,0xc6,0x21,0xb1,0x65,0xb9,0x94,0x82,0xcd,0x38,0xe0,0xc6,0x76,0xc0,0x93,0x6f,0xbb,0x85,0x9f,0xfc,0xd0,0xfb,0xf0,0xc4,0xdb,0x1e,0xd3,0xc6,0x5b,0x41,0xca,0x19,0xbf,0xfd,0xfb,0x9f,0x84,0x1f,0x6,0xa4,0x85,0xec,0xbc,0xc6,0x1a,0xd8,0x62,0x61,0x82,0x25,0x42,0x2c,0x4,0x55,0xf9,0x15,0xce,0x3f,0x2a,0xac,0xbc,0x20,0xa5,0x9c,0xc3,0x61,0x47,0x63,0xea,0xac,0xc3,0xc5,0xf9,0x1d,0xb5,0x55,0x8f,0x9b,0x13,0x9a,0xe8,0xe6,0xc,0xeb,0x83,0xde,0x48,0xe4,0x1c,0xeb,0x58,0xe7,0x4,0xef,0x83,0x36,0x49,0x96,0x9c,0xc8,0x92,0xcc,0xd6,0x6a,0xeb,0x1c,0x1c,0x2,0x42,0x48,0x18,0xc6,0xd,0xee,0xbc,0xf2,0x22,0x35,0x7,0xc7,0x5,0x9b,0x30,0x20,0xc6,0x5,0xe9,0xec,0xe,0xb6,0xa7,0xd7,0x31,0x1d,0x76,0xd4,0x4,0xec,0x6a,0xcb,0xb0,0x31,0x6,0xcb,0x32,0x69,0x33,0xa0,0x10,0xb5,0xd6,0x3a,0xf8,0x4c,0xc4,0x6e,0x49,0x89,0x89,0x61,0x9e,0xfc,0xf3,0xf9,0x93,0x35,0x1b,0xa9,0xaa,0x17,0xa,0x0,0xe4,0xa6,0xed,0x51,0xac,0x66,0xa5,0x20,0x4d,0xe7,0xfd,0xf,0xb7,0xa3,0xa3,0xe3,0xbe,0x46,0x29,0xd0,0x5c,0xde,0x63,0xde,0x43,0x1b,0x62,0xf5,0xe7,0xc6,0xbe,0xda,0x70,0x7b,0xb5,0xf4,0x1,0x95,0xac,0x63,0x75,0x9e,0xe6,0xbb,0x59,0xc7,0x8a,0xad,0x54,0xb3,0xe6,0x78,0x7,0x44,0x55,0x67,0x5c,0x55,0xdc,0xc9,0xf7,0xb4,0x5c,0x5b,0xa8,0xc9,0xde,0xa8,0x83,0x80,0x8,0x3d,0x8b,0xd2,0xd8,0x7a,0xd,0xbf,0xbf,0xd1,0x32,0xa8,0xc4,0xb1,0xe,0x35,0x83,0x4e,0xf2,0xb,0x4d,0x9b,0xf,0x67,0x0,0x6b,0xbd,0x2a,0xfb,0xe4,0x5a,0x26,0x31,0x7a,0x4a,0x52,0xb1,0xb3,0xc0,0xb0,0xb,0xc0,0xf1,0xb5,0xc9,0x5a,0xdb,0x14,0x5d,0x54,0xc5,0x64,0x5b,0x32,0x61,0x99,0x20,0x2c,0x25,0x2b,0x19,0x56,0xc9,0xc8,0xa2,0x76,0x59,0xb5,0xcd,0xaa,0xe5,0xb8,0x28,0xef,0x4a,0x73,0xd,0x5b,0x5d,0x14,0xf9,0xa8,0x15,0xb8,0x5c,0x6e,0xf6,0x6d,0x63,0x3e,0xda,0x8c,0xbe,0xc6,0xaf,0xcc,0xe3,0x4a,0xaa,0xc8,0xba,0x38,0xd7,0x92,0x7e,0xf5,0x60,0xab,0xf5,0x1a,0x75,0x61,0x57,0x48,0xda,0x55,0xd9,0xc7,0xa5,0x56,0xdf,0xa6,0xd4,0x85,0xf7,0x5f,0x2c,0xd4,0xeb,0xf3,0x31,0xeb,0x62,0x9d,0xa8,0x52,0x8f,0xf7,0xe5,0xaa,0xf6,0xde,0xab,0x48,0xc0,0xab,0x8a,0x45,0x5a,0xe2,0x4f,0x9,0xd9,0x15,0xf9,0x77,0x55,0xa6,0x5f,0xd1,0x9c,0xcb,0x4a,0x2,0x62,0x45,0xf8,0x19,0x1c,0xdb,0xcb,0xef,0xa5,0xf2,0xeb,0x19,0x80,0x1d,0x1d,0x1d,0x9d,0x0,0xec,0xe8,0xe8,0x78,0x43,0xdc,0x64,0xf0,0xa4,0x47,0xe6,0x3d,0x9c,0xaf,0x63,0x9a,0xc7,0x24,0xd3,0x4f,0x1e,0x5f,0x59,0x25,0xa,0x67,0xf0,0x65,0x56,0x94,0xa1,0xc9,0x7,0x62,0xa2,0x8d,0x42,0xc7,0xa1,0xe5,0xe,0x32,0xd9,0x94,0x42,0xe,0x29,0x21,0x71,0x9c,0x33,0xb8,0x39,0xb9,0x6,0xa0,0x60,0xda,0x93,0x8a,0x6c,0x77,0x76,0x7,0x3e,0xc,0x48,0x71,0xc1,0x30,0x6e,0x51,0x72,0xa6,0xb2,0x90,0x5c,0x10,0xe3,0xc,0xef,0x7,0x18,0x18,0x2c,0xcb,0xc,0xe7,0x1c,0x5b,0x47,0x17,0xe4,0x58,0xb0,0xe4,0x49,0x27,0x8d,0xce,0x5,0xec,0xce,0xef,0x22,0x8c,0x1b,0xec,0xcf,0xef,0xe2,0xf4,0xc6,0x43,0x0,0xa,0x6e,0xdf,0x3d,0xc7,0xff,0xf1,0x7f,0xfd,0x3a,0xfe,0xd1,0x7f,0xf9,0xf,0xb1,0x19,0xc7,0x76,0x4e,0x8d,0x47,0x6e,0x3e,0x80,0xff,0xf0,0x17,0x3e,0x8a,0x5f,0x8a,0x9,0x87,0x69,0xc6,0xe1,0x30,0x61,0x5e,0xc8,0x4e,0x6c,0xad,0xc1,0x10,0x3c,0x4e,0xb6,0x1b,0x84,0xe0,0xaf,0x58,0xb1,0xa6,0xf1,0xfd,0xe4,0xa7,0x3e,0x87,0x3f,0xfd,0xf2,0xb3,0x44,0x1a,0x32,0xe9,0x2a,0x6b,0xd4,0x99,0x9,0x4d,0xba,0x81,0x70,0xab,0x96,0x5c,0x22,0x49,0xe9,0xa6,0x2c,0xa5,0x4,0x1f,0x46,0x9c,0xdf,0x79,0x15,0xc6,0x5a,0x78,0x1f,0x30,0x6e,0xb6,0xf0,0x3e,0x10,0x39,0x36,0x8c,0x48,0x39,0x1,0xb1,0x2a,0x3,0xe4,0xa6,0xce,0xb9,0x80,0x65,0x9e,0xe0,0xd8,0x42,0x1d,0x97,0x59,0x1b,0x1a,0x63,0x5c,0x90,0x52,0x84,0xf7,0xf4,0x1c,0x39,0x3e,0xdb,0xd3,0xeb,0x38,0xbf,0xf3,0xa,0xb5,0xfe,0x2e,0xf4,0x9c,0xed,0xe9,0x75,0x1c,0xf6,0x17,0x18,0xc6,0xd,0x59,0x77,0x93,0xa5,0x56,0x61,0xb6,0x81,0xc9,0xd,0x42,0x8c,0xb,0x91,0xac,0xa5,0x20,0x99,0x8,0x1f,0x82,0x96,0x8e,0xa8,0xea,0x83,0x15,0x5,0x75,0xcc,0x58,0x2d,0x81,0x46,0x21,0x81,0x26,0xf4,0xdb,0x58,0x58,0x3f,0x50,0xb6,0xa0,0xe9,0x97,0xc5,0x8e,0x8e,0x8e,0xfb,0x1b,0xb5,0x69,0xd6,0x5c,0x62,0x6,0xc5,0x92,0x5b,0xd5,0x5c,0x47,0x25,0x14,0xdc,0xf6,0x6b,0xa,0xd8,0x3a,0x2a,0x16,0x4e,0x8b,0x62,0x9a,0x36,0x61,0xde,0x90,0xaa,0xc5,0x6c,0x51,0xd5,0x5f,0x4e,0xb5,0x4c,0xeb,0xd8,0x1e,0xe9,0x38,0xf2,0xa1,0x14,0xb2,0xa6,0xe6,0x94,0x95,0xb0,0x12,0x2b,0x2f,0x95,0x75,0x18,0xbe,0x8e,0x45,0x58,0x2e,0xfe,0xb2,0xd6,0x21,0x27,0xfa,0x1c,0xa5,0x21,0x7,0xad,0x75,0x3c,0xbf,0xc8,0x7a,0x9d,0xcc,0x29,0x69,0x41,0x88,0x6d,0x62,0x22,0x64,0x5e,0x2,0x9b,0xf5,0x35,0x92,0x67,0xec,0x38,0x5b,0xd6,0x79,0xba,0x4e,0x94,0x74,0x9c,0x21,0xd7,0x36,0x19,0x1b,0xdd,0xb6,0xe,0x9c,0x8e,0x7d,0x63,0x59,0x66,0x5,0x7b,0x75,0x4c,0x50,0x1c,0x4a,0x25,0x12,0xf3,0x8a,0xf0,0x12,0x42,0xca,0x3a,0xcb,0xb,0xa4,0xf2,0x78,0x69,0x94,0x80,0x47,0x44,0x9e,0xb9,0x7c,0xac,0x55,0xed,0x67,0xab,0xba,0x4f,0xdc,0x18,0xad,0x7b,0x43,0x6c,0xc1,0xa6,0xf9,0x97,0xde,0xd2,0xea,0x82,0xa2,0x3e,0xb7,0x21,0x2a,0xe5,0x39,0x32,0xd7,0xa8,0xef,0x9b,0x95,0x1c,0xcd,0xb9,0x12,0x7f,0xb4,0xcf,0x49,0xaf,0xdd,0xed,0xb6,0x8e,0xc7,0xa5,0x7e,0xc6,0xbc,0x3e,0x37,0x5b,0x12,0xaf,0xf9,0xef,0x35,0xf1,0x67,0x56,0xe1,0x8b,0x66,0x45,0xe4,0x36,0xc,0x79,0x4b,0xde,0xb5,0x16,0xea,0x86,0xc,0x2c,0x4d,0x8b,0xb2,0x12,0xdc,0xa6,0xaa,0x6a,0x57,0x6d,0xc0,0xad,0x23,0xa6,0xa3,0xa3,0xa3,0xe3,0x7,0x8,0x7,0xe0,0xbf,0xe9,0xc3,0xd0,0xd1,0xd1,0xf1,0x5a,0xe0,0x4d,0x6f,0xfd,0x61,0x6c,0x4f,0x4e,0x49,0xb9,0x27,0x56,0x17,0x9d,0x54,0xf2,0xaa,0xbd,0x5a,0x81,0xac,0xce,0x91,0x85,0xc4,0x33,0x1c,0x0,0xae,0x6d,0x73,0x4c,0xec,0x90,0xd,0xc6,0xb0,0xc5,0xd4,0xea,0x64,0x52,0x8b,0x3b,0x38,0x4b,0xc6,0x5a,0x22,0xeb,0x64,0xb5,0xbd,0xcd,0x98,0x71,0x3e,0xe8,0xcd,0x40,0xe6,0x46,0xe1,0x18,0x97,0xe6,0x39,0xf4,0xbf,0xb8,0xcc,0x38,0x1c,0x76,0x0,0xc8,0x3a,0xbc,0x4c,0x7,0x94,0x9c,0xb1,0xcc,0x7,0x78,0x3f,0x60,0x59,0x26,0x58,0x26,0xbb,0x24,0x94,0xfb,0xf4,0xfa,0x3,0x94,0xb4,0xc3,0xc4,0xda,0x37,0x5f,0x39,0xc3,0xd9,0x9d,0xdb,0x78,0xd7,0x3b,0x9f,0xc0,0x38,0xc,0x97,0xc6,0xc9,0x5a,0x8b,0x61,0x8,0x38,0x39,0xd9,0xe0,0xfa,0xb5,0x53,0x5c,0x3b,0xdd,0xe2,0xf4,0x64,0x8b,0xcd,0x66,0x54,0x3b,0xeb,0x31,0x72,0xce,0xf8,0xb3,0xcf,0x7f,0x19,0xff,0xd3,0x3f,0xfd,0x97,0x58,0x32,0x30,0xed,0x77,0x28,0x25,0x63,0x61,0xeb,0x72,0x5c,0x66,0xcd,0x62,0x22,0x8b,0x16,0xd4,0xca,0x6b,0x9d,0xd3,0x72,0x95,0x52,0x32,0x72,0x22,0xb,0xb3,0x63,0xa2,0x8e,0x5a,0x7a,0x17,0x58,0x6b,0xe1,0xc2,0x0,0xcf,0x65,0x1c,0x32,0x66,0x32,0x9e,0x72,0xf3,0x65,0x38,0xcb,0x89,0x5a,0xf9,0x68,0x6c,0xe3,0x32,0x6b,0x9e,0x9f,0x36,0x6,0x36,0x2b,0xfc,0x29,0x45,0x6d,0xa2,0xc,0x3,0x11,0xa3,0x96,0x55,0x9c,0xd4,0xcc,0x4c,0x39,0x88,0xd3,0xe1,0x42,0xad,0x5d,0xd3,0x61,0x47,0x64,0x23,0x37,0x4d,0x96,0x9c,0xe1,0x87,0x71,0xa5,0xa2,0xa0,0x1b,0x41,0xd4,0xec,0x23,0x60,0xad,0xaa,0x68,0x72,0x8a,0x68,0x3f,0x16,0xcc,0x87,0x3d,0x2e,0xce,0x6e,0xc3,0xd,0x27,0x34,0x5e,0xcb,0xbe,0xff,0xf1,0x76,0x74,0x74,0xdc,0xb7,0xb8,0x71,0xf3,0x51,0xdc,0xbc,0xf5,0x16,0x84,0x61,0xe0,0x38,0x85,0xa4,0xd7,0xe8,0xdc,0x34,0xfa,0xa,0x59,0xd6,0x2a,0xf8,0x2d,0x67,0xe2,0xb6,0xc4,0x8b,0x7c,0xb7,0x5b,0xb3,0x56,0x52,0xd1,0x57,0xb3,0x5d,0xd9,0x8b,0xab,0x8d,0xb5,0x5e,0xe7,0x9b,0x20,0x42,0x2e,0x97,0x32,0xaa,0xfe,0x23,0x52,0xb0,0x5e,0xaf,0x69,0x81,0x2f,0x69,0x21,0x55,0x41,0x81,0x67,0x42,0x4e,0x32,0x5,0x85,0x90,0x11,0x72,0xc9,0xf0,0x22,0x21,0x15,0x90,0xa1,0xda,0x90,0x1b,0x62,0x4e,0xc8,0x1a,0x52,0x26,0xd6,0xb6,0x78,0x52,0x15,0x66,0x58,0xe7,0x90,0x52,0x64,0x12,0x52,0x2c,0xd0,0x19,0xd6,0x9a,0x15,0x51,0x24,0xef,0x8f,0xd2,0xb8,0x20,0xf4,0xb1,0xb5,0x9d,0x56,0xf3,0x6,0x5b,0xc2,0xcc,0xb4,0x8d,0xb4,0xa6,0x5e,0xdb,0x64,0x5e,0xc3,0xb,0x6c,0x44,0xa6,0x15,0x6d,0x17,0x56,0xe2,0xd5,0x54,0x5b,0xb5,0x1c,0x43,0x69,0x21,0xae,0xef,0x59,0xf7,0xc9,0x48,0x63,0xb1,0x5d,0x2b,0xfd,0xcc,0xf1,0x31,0x6e,0xc7,0xb4,0xc9,0x67,0x5e,0x6d,0xbf,0x55,0xcd,0x31,0x79,0xd9,0x46,0x7f,0xa8,0x63,0xc3,0xf9,0x4b,0x73,0x32,0x60,0xbd,0xef,0xc7,0x20,0xc5,0x61,0x4b,0xd4,0x56,0x2b,0xb3,0x9e,0x5f,0x5c,0x1e,0x77,0x89,0x8,0x5c,0xd3,0xdf,0x55,0xdd,0xd9,0x10,0x77,0x2d,0x21,0xd8,0xbe,0x5e,0x9f,0x5b,0xd6,0x3a,0xbe,0xe3,0xfa,0x93,0xf6,0x71,0x29,0x2f,0x29,0x9c,0x47,0x3c,0x1d,0xf6,0x78,0xf5,0xf9,0x67,0xd1,0x5b,0x40,0x3a,0x3a,0x3a,0x3a,0x1,0xd8,0xd1,0xd1,0x71,0x5f,0xe3,0xd1,0xb7,0x3d,0x89,0xf1,0xe4,0x54,0x27,0xa9,0x68,0x56,0xfa,0x25,0x3f,0x47,0x26,0xa1,0xa2,0xf0,0xca,0x39,0x51,0x83,0x6e,0x5b,0x8f,0xc7,0x93,0x7c,0x51,0x8,0x2a,0x11,0x28,0xe1,0xd2,0xdc,0xfa,0x5a,0x57,0x71,0xa9,0x14,0x44,0xac,0x24,0x32,0x69,0x6f,0xb3,0x6f,0xc8,0x56,0x1c,0x38,0x2f,0xd0,0x69,0x6,0xdf,0xb4,0xbf,0xc0,0x61,0x77,0xe,0x1f,0x6,0x2c,0xd3,0x1,0x17,0x67,0x77,0xe0,0xf9,0x26,0x49,0xac,0xa2,0xd3,0x81,0x8,0xa2,0xf9,0xb0,0x57,0x3b,0xb2,0x16,0x56,0x18,0xab,0xaa,0xc5,0x30,0x8c,0x8,0xc3,0x6,0x0,0xf0,0xdc,0xcb,0xe7,0xf8,0xea,0xd7,0xbe,0x86,0x5b,0xf,0x3f,0x84,0x87,0x1e,0xb8,0xd1,0xac,0x7a,0x7f,0xf7,0x38,0x3b,0x3b,0xc3,0xff,0xfb,0x3b,0xbf,0x87,0x7f,0xfc,0xcf,0xfe,0x15,0x2e,0x76,0x7,0xc4,0xa5,0x92,0x7e,0x39,0x53,0xb1,0x46,0x8e,0x44,0xe2,0x25,0x2e,0x4c,0xd1,0xb1,0x37,0x46,0x6f,0x94,0x88,0xf8,0x4,0x67,0x16,0xee,0x1,0x3,0x1c,0xf6,0x17,0x5a,0x66,0x32,0x8c,0x5b,0x58,0xce,0x5a,0x14,0x97,0x17,0x35,0xeb,0x2,0xcb,0x34,0x35,0x59,0x3b,0xd4,0x34,0xdc,0x2a,0x15,0x4a,0xe1,0x1b,0xa6,0xb8,0xc0,0x80,0x94,0x13,0x25,0x27,0xc4,0x18,0x1,0x50,0xab,0xb3,0xb5,0x96,0xd4,0x94,0x7c,0x63,0x72,0xf7,0x95,0x17,0x39,0xd7,0x31,0x21,0xc5,0x19,0xa5,0x0,0x87,0x1d,0x35,0x20,0xef,0x2e,0xee,0x72,0x51,0x8c,0xd5,0x1b,0x4e,0x6b,0x2d,0x91,0x93,0x5c,0x4,0xa2,0x36,0x32,0xdb,0x34,0x1b,0x72,0xe6,0x64,0xc9,0x6b,0x7b,0x4f,0x29,0x40,0xce,0x11,0x39,0x25,0x1c,0x76,0x17,0xb8,0xb8,0x38,0x27,0x35,0x48,0x9c,0x91,0x7b,0xb,0x70,0x47,0x47,0xc7,0x7d,0x8c,0xeb,0xf,0xde,0xc2,0xc3,0x6f,0x7e,0x2b,0x42,0x18,0x34,0x4f,0xb5,0xb4,0xca,0x68,0x5a,0x39,0x51,0x62,0x2e,0x73,0x29,0x87,0x69,0xaf,0x5b,0x4c,0x54,0xd5,0x85,0x1d,0xfa,0xce,0x97,0x48,0xe,0x21,0xee,0xe4,0xfd,0x5b,0xf5,0xb8,0x28,0xc7,0x2c,0x5f,0x17,0x8c,0x6b,0x2d,0xbb,0xd5,0x32,0x6a,0x0,0xbd,0x9e,0xb6,0xb9,0x6f,0x12,0xf7,0xb0,0x26,0xe9,0x6a,0x9b,0x3d,0x56,0xb6,0x58,0x21,0xb8,0x6c,0x43,0x8,0x15,0x5d,0x58,0x92,0xcf,0x21,0x8b,0x88,0xb2,0x48,0x56,0x2f,0x16,0x52,0xaa,0x91,0xe8,0xfa,0x94,0x52,0x63,0x6c,0x30,0x55,0x48,0x59,0x6b,0x69,0x75,0xc,0x2b,0xb9,0x66,0x57,0xc4,0x9a,0xb5,0x6d,0x86,0x1d,0x56,0x59,0x72,0xaa,0x3a,0x14,0x72,0xcd,0x36,0xd,0xc0,0x4a,0x52,0x19,0xb6,0x14,0x97,0x95,0x22,0xcf,0xe0,0xb8,0xa5,0x37,0xeb,0xe7,0xd2,0xf8,0x10,0x21,0x52,0x95,0x38,0x13,0xfb,0x76,0x53,0x4a,0xb2,0x2a,0x1e,0xb1,0xba,0x8f,0x74,0xfd,0x35,0xd,0xf1,0x57,0x49,0x36,0xcb,0xc7,0xb0,0x94,0xc,0xe7,0xea,0x79,0x62,0x1b,0xbb,0x73,0x39,0x3a,0x2e,0xc2,0xaa,0xd5,0x73,0xa2,0x2d,0x36,0xb1,0x4d,0xc3,0xb4,0x59,0x15,0x79,0x55,0x32,0x31,0x1f,0xd3,0x84,0x4a,0xc4,0xae,0x48,0x40,0x3d,0x34,0xbc,0x2f,0xc0,0x9a,0xa4,0x6e,0x7e,0x96,0xd7,0xad,0x54,0x97,0x28,0x57,0x92,0x7c,0xb8,0x4c,0xa9,0xb6,0x8c,0x25,0x72,0xc9,0xb4,0x60,0x3c,0x1d,0xf0,0xca,0xb,0xcf,0xf4,0x22,0x90,0x8e,0x8e,0x8e,0x4e,0x0,0x76,0x74,0x74,0xdc,0xe7,0x4,0xe0,0xdb,0x9f,0xc4,0x66,0x73,0xaa,0xe4,0x5f,0xbb,0xca,0xab,0x41,0xe2,0xa5,0x54,0x35,0x81,0x4c,0x16,0xaf,0xb4,0x5f,0x60,0x95,0xf9,0x53,0xe7,0xda,0x75,0xd5,0x3a,0x37,0x4a,0x2f,0x21,0xf6,0x62,0x5c,0x28,0x23,0x8e,0x27,0x9c,0x4e,0x5a,0x5e,0xf9,0x46,0xc4,0x5a,0xb,0xe7,0x7,0xc,0x23,0x11,0x75,0x61,0xdc,0xac,0x1a,0xff,0xac,0xb5,0x6a,0x3b,0x9a,0xa7,0x3,0xd9,0x80,0x79,0x42,0xed,0xc3,0x80,0x61,0xdc,0x2,0xa5,0x60,0xd8,0x9c,0x20,0x84,0x81,0x54,0x69,0x3e,0x60,0x1c,0xb7,0x80,0xa1,0x56,0xe3,0x61,0xa4,0x56,0xe1,0x57,0xee,0xee,0xf0,0xf1,0x3f,0xf9,0x3c,0x9e,0x7d,0xf6,0x9b,0xd8,0x8c,0x1,0xdb,0xcd,0xbd,0xed,0xbd,0xeb,0x79,0x64,0xc1,0xb2,0x2c,0x78,0xe1,0xc5,0x97,0xf0,0xfb,0x1f,0xff,0x43,0xfc,0x8f,0xff,0xeb,0xaf,0xe2,0x77,0xff,0xfd,0xa7,0x90,0x33,0x15,0x92,0x48,0xb,0x2f,0x0,0x1c,0xf6,0x3b,0x56,0xce,0xed,0xd4,0xe2,0x4,0xd,0xc3,0xb6,0x9a,0xfb,0x43,0xa,0x3d,0xaf,0x16,0x1c,0xe7,0x3c,0x67,0x2a,0xd2,0xd,0x80,0xf7,0x3,0xfc,0x30,0x62,0xdc,0x6c,0x55,0x31,0xd9,0x6,0x7d,0x4b,0x8e,0x22,0x59,0xb1,0x6a,0x86,0x50,0xc9,0x49,0x6f,0x34,0x28,0x3,0x30,0xe8,0x3e,0xe4,0x52,0x30,0x8c,0x23,0xc,0x8c,0xe6,0x37,0xb6,0xcf,0x91,0x9c,0x28,0x0,0xf0,0x61,0xc0,0x61,0x77,0x81,0x30,0x10,0x51,0x68,0x9d,0xa3,0x62,0x17,0x63,0x35,0x57,0xd0,0x72,0x36,0xa4,0x73,0x9e,0x55,0x2a,0xb6,0xae,0xde,0x4b,0xe1,0x8c,0xe4,0x2a,0x35,0x24,0xad,0x64,0xff,0x51,0x89,0x48,0xc4,0x61,0x77,0x8e,0xdd,0xf9,0x19,0xdf,0xb0,0xe,0x48,0xf3,0x45,0xff,0xe3,0xed,0xe8,0xe8,0xb8,0x6f,0xf1,0xc0,0x23,0x8f,0xe1,0xe6,0xad,0xc7,0x2a,0x1,0xd8,0x14,0x26,0x8,0xd9,0xa7,0x2a,0x2b,0x21,0xe4,0x50,0x2a,0x51,0xc3,0x56,0xd1,0xf6,0x1a,0x6c,0x9d,0xa7,0xeb,0x6e,0x8,0xaa,0xf2,0x3,0x68,0x11,0xc6,0x39,0xaf,0x4,0x9d,0xd8,0x4c,0x55,0x6d,0x66,0xcc,0x8a,0xb8,0xa2,0x6b,0x4b,0xd6,0x6b,0x34,0xd9,0x68,0xbd,0xee,0x9b,0xbb,0xd4,0xd4,0x6e,0x94,0x8,0xb3,0xde,0xb3,0x42,0xae,0x96,0x9c,0xa8,0x72,0xed,0x48,0x4d,0x4f,0x19,0x7e,0xd5,0x8a,0xa,0x43,0xea,0x3f,0x59,0x6c,0x54,0x5,0xbd,0x28,0x16,0x61,0xd4,0x7d,0x80,0x46,0x6d,0x57,0x72,0x86,0x63,0x7b,0x6b,0x4b,0xa,0xb6,0x16,0xd9,0xb6,0xe1,0x18,0x4d,0xf9,0x8a,0x73,0x5e,0x55,0x96,0xb5,0xd0,0x44,0x32,0x93,0xb1,0x8a,0xb6,0x68,0x15,0xec,0x86,0xad,0xd7,0x8e,0xad,0xcf,0x4a,0x1e,0x36,0x8a,0xca,0xd2,0x38,0x2b,0x5a,0x65,0x5f,0x3b,0xbb,0x6a,0xaf,0x8b,0x4a,0xa8,0x95,0xb5,0x7d,0xb7,0xcd,0xc,0xac,0xa4,0x5b,0x59,0xed,0x73,0xbb,0x58,0xbb,0xca,0xe8,0xb3,0x44,0x4a,0x66,0xb5,0x39,0x57,0x52,0x51,0x1d,0x9,0x7c,0x9d,0xd6,0xfd,0x29,0x85,0x35,0x7a,0x4d,0x4b,0xf5,0x11,0x1,0x5a,0x89,0xb9,0x66,0x9e,0xd8,0x92,0xbc,0x2d,0x11,0xdb,0x7e,0xbe,0x86,0xc0,0xab,0x4f,0x33,0x2b,0x35,0xdf,0x6a,0x1b,0x47,0x64,0xdf,0x15,0x41,0x2c,0xdc,0x30,0xbc,0xda,0xac,0xee,0x8f,0x94,0xa8,0x4d,0x87,0x3d,0x5e,0x79,0xfe,0x99,0xfe,0xc5,0xd3,0xd1,0xd1,0xf1,0xba,0x40,0xf,0x3b,0xea,0xe8,0xe8,0x78,0xcd,0x50,0x9a,0x2c,0x18,0xf9,0xff,0x6d,0x3e,0x8d,0xcc,0x96,0x32,0x7,0x6c,0x53,0x6,0xdb,0xba,0xd5,0x4e,0xf3,0x74,0x78,0x15,0x9a,0x42,0xab,0xb,0x17,0xdd,0x35,0xea,0x40,0xb6,0x3,0xeb,0xc4,0x5f,0x72,0x0,0xad,0x53,0x5b,0x90,0x14,0x43,0xd0,0xf3,0x2,0x62,0x5c,0x70,0x72,0xed,0x6,0x2e,0xce,0xee,0x60,0xd8,0x9e,0x22,0x25,0x52,0x19,0x84,0x30,0x0,0xc6,0x60,0x99,0xe,0xf0,0x21,0x20,0x2e,0x64,0x7,0x1a,0xb7,0x9e,0x6f,0x64,0x32,0x86,0x71,0x64,0x55,0x60,0x82,0xf,0x81,0x8a,0x2a,0xe6,0x9,0xe3,0xf6,0x14,0xd6,0x7b,0x9d,0x44,0x12,0xb9,0x95,0xb8,0xc9,0x38,0x23,0x97,0x8c,0x3f,0xfa,0xdc,0x57,0xf1,0xc7,0x9f,0x7f,0x1a,0xf,0x3f,0x74,0x3,0x8f,0xbf,0xe9,0x26,0x9e,0x7c,0xc7,0x5b,0x70,0xf3,0xc1,0x1b,0xb8,0x76,0xba,0x25,0x42,0x10,0x40,0x4c,0x9,0xbb,0xdd,0x1e,0xaf,0xde,0xbe,0x8b,0xaf,0x7d,0xfd,0x19,0x7c,0xe5,0xe9,0x67,0xf0,0x8d,0xe7,0x5e,0xc4,0xbc,0x50,0x53,0xef,0xb8,0x39,0xc1,0xb4,0xdf,0x61,0x59,0x66,0x2c,0xd3,0x1,0x0,0x10,0x23,0x35,0xe2,0x1e,0xf6,0x17,0x44,0x7e,0x2e,0xb,0xc6,0xed,0x9,0xf6,0x17,0x7b,0x84,0x71,0x3,0xe7,0x3d,0x7d,0x36,0x0,0xc3,0x66,0x8b,0xf9,0xb0,0xa7,0xf1,0x6f,0x1a,0x72,0xc3,0x38,0xc2,0x3a,0x87,0x61,0xdc,0x50,0xa3,0x6f,0x4e,0x4a,0xa0,0x5a,0x67,0xb4,0x94,0x85,0xc8,0x54,0xc7,0x6d,0xbf,0x44,0x74,0xa,0x91,0xab,0xad,0xc1,0x60,0xa5,0x21,0xe7,0x49,0x11,0xc9,0x48,0x8a,0xc9,0x71,0x73,0x82,0x94,0x22,0x42,0x18,0x75,0x1f,0xa8,0xb0,0x65,0xa1,0x9c,0xa5,0x94,0x31,0x6e,0x4f,0xd8,0xa,0xe6,0x60,0x32,0x65,0x13,0x96,0x52,0xe0,0x87,0x11,0x99,0x55,0x9d,0xb2,0x6f,0x80,0xd5,0xbc,0x47,0x99,0x98,0xe7,0x5c,0xed,0x48,0x42,0x2,0x16,0x64,0xb5,0x43,0xe9,0xd,0x95,0x31,0x54,0x70,0x92,0x12,0xd2,0xdc,0xd5,0x7f,0x1d,0x1d,0x1d,0xf7,0x37,0x44,0xf1,0xae,0x39,0x65,0x65,0x9d,0x5d,0x56,0x8b,0x18,0x28,0x53,0x56,0x52,0x54,0xdb,0xbc,0x3d,0x59,0x3c,0x52,0x55,0x57,0xce,0x4a,0x2,0xd2,0xf5,0x9f,0x72,0xea,0x24,0x2b,0xcd,0x72,0xb6,0x1f,0xa9,0x0,0xe9,0xda,0xa1,0xf3,0x4,0xb1,0x10,0xf3,0xf5,0xba,0xf0,0xe3,0x99,0x1f,0x93,0x5,0x43,0xe7,0x69,0xdb,0x5a,0x3a,0xd5,0xcc,0xf,0x6a,0x63,0x70,0x55,0xac,0x49,0x14,0x88,0xf7,0x44,0x3e,0xd1,0x75,0x80,0x2c,0xbe,0x3a,0xc7,0x0,0x48,0xe5,0xaf,0x59,0xb3,0x6e,0x95,0x9,0x27,0xf9,0x81,0xaa,0x22,0x83,0x21,0xd,0x19,0xcf,0x3d,0x64,0x1,0x4b,0xc9,0x3d,0x99,0xcb,0x94,0xc4,0x1c,0x62,0x46,0xce,0x45,0xf3,0x3,0xa9,0xcc,0x8c,0x33,0xf5,0x98,0x70,0xcb,0x4d,0x4b,0x71,0x5b,0x64,0x25,0x51,0x1d,0xb5,0x48,0x43,0xa2,0x37,0x88,0x4c,0x4d,0x29,0x57,0xb5,0x64,0x6b,0x67,0x2d,0x46,0x33,0xf7,0xa4,0x74,0xc3,0x34,0xa,0xc5,0x36,0xfb,0xae,0x1d,0x3f,0x79,0xd,0x8d,0x1d,0xd9,0xac,0xd,0xc,0x72,0x91,0xfc,0x3a,0xab,0x51,0x1f,0x12,0xfb,0x61,0xd8,0x12,0x9e,0x52,0xa4,0x3c,0x64,0xeb,0x58,0xf9,0x56,0xea,0xb1,0x6f,0xc8,0x3f,0x22,0xf6,0x72,0x93,0x25,0x9c,0x6b,0x69,0x89,0x90,0xa1,0xb8,0xac,0x16,0x2c,0xd,0x31,0x59,0x74,0xcc,0xaa,0xfa,0x51,0xd4,0xaa,0x97,0x8b,0x41,0xaa,0x95,0xf7,0x52,0x4e,0x1f,0x70,0x59,0x95,0xa7,0x19,0x96,0xe5,0x72,0xf7,0x47,0xcb,0xa,0x5e,0x41,0x26,0xd2,0x39,0xd8,0xe4,0x13,0x36,0xae,0xef,0xae,0xfd,0xeb,0xe8,0xe8,0xe8,0x4,0x60,0x47,0x47,0xc7,0x7d,0x8f,0xd5,0xca,0xae,0xa1,0x49,0x73,0x4b,0x7,0x12,0x31,0x23,0x96,0x8d,0xba,0xe2,0xbb,0x9e,0x69,0x81,0x83,0xba,0xb3,0xe6,0xd9,0xb4,0x2b,0xd5,0xa5,0x24,0x5e,0xed,0xa6,0x9c,0xbb,0xe0,0x3d,0x62,0x8c,0x97,0x26,0x91,0xcd,0xdb,0xc1,0xf9,0x1,0x39,0x45,0x78,0x4f,0x64,0xd5,0xf6,0xf4,0x3a,0x72,0x4e,0xb8,0x76,0xe3,0x21,0x6e,0xa1,0x25,0x65,0x5a,0x18,0x36,0x18,0xc6,0xd,0xac,0x9d,0xa8,0x65,0x97,0xf3,0x4,0x25,0x20,0x7b,0x18,0xb7,0x80,0x81,0x92,0x82,0x92,0x1d,0x34,0x9c,0x5e,0xe7,0x4c,0x40,0x22,0x24,0x63,0x8c,0x8,0x61,0xa0,0x9,0x2f,0x5b,0x97,0x8d,0x33,0x78,0xf1,0x95,0xdb,0x78,0xe5,0xce,0x39,0x3e,0xfd,0x85,0xa7,0xd9,0x72,0x64,0x30,0x4f,0x7b,0x6d,0xd3,0x35,0xc6,0x62,0x99,0xf,0x9a,0x75,0xe7,0xc2,0x6,0x58,0xce,0x55,0x3d,0xe1,0x99,0xcc,0x23,0x45,0xdf,0x82,0x30,0x8c,0x98,0xa7,0x3d,0xc,0x5b,0x67,0x61,0x0,0xec,0x69,0xbc,0xf7,0x17,0x67,0x18,0xb7,0x27,0x88,0xcb,0x8c,0x10,0x46,0xc4,0x65,0xa9,0x8a,0x8,0x63,0x10,0x86,0x91,0xac,0x2a,0xcb,0xc,0x78,0x9a,0xe1,0x8a,0xba,0x8e,0xf6,0x85,0x6f,0xce,0x90,0xf4,0xe6,0xae,0xf0,0xd,0x97,0xaa,0xfc,0xc,0x60,0x40,0xc4,0x2b,0xad,0xec,0x9b,0xa6,0x31,0xb0,0x20,0x9b,0xc4,0x8a,0xcb,0x8d,0xde,0xc0,0x50,0x7b,0xf3,0xa2,0x96,0xab,0xcd,0xe6,0x84,0xf2,0x18,0xb1,0x28,0x81,0x2a,0x96,0xe1,0x36,0x4,0x3e,0x4,0x22,0x2a,0xc9,0xa,0xec,0x9a,0x9b,0x18,0x0,0xa6,0x12,0xcd,0x60,0xd2,0xd8,0x28,0x21,0x7d,0x15,0x51,0x4d,0x8d,0xd4,0xc6,0x7b,0x58,0x37,0x0,0xd3,0x9d,0xfe,0xc7,0xdb,0xd1,0xd1,0x71,0xdf,0x22,0xa7,0xac,0x8b,0x20,0xaa,0x8b,0x5e,0x29,0xab,0xe4,0xfb,0xd3,0xc0,0x34,0x96,0xc8,0x56,0x61,0xa5,0xb9,0x7b,0x8d,0xbd,0x97,0x22,0x3c,0x9c,0x92,0x2a,0x85,0x17,0xeb,0xb4,0x64,0xc3,0x8,0x51,0x46,0xea,0x36,0x6b,0x25,0x7e,0x83,0xad,0xc6,0x6c,0xf5,0x75,0xda,0x2,0xdf,0x58,0x54,0x65,0x2e,0x90,0x33,0xe6,0x9c,0x75,0xfb,0xea,0x28,0x28,0x35,0x43,0x4f,0x88,0x32,0xeb,0x3c,0x93,0x30,0x74,0xd,0xcb,0x47,0x24,0x93,0xb5,0x16,0x29,0x25,0x25,0x26,0x85,0xe4,0x94,0x6b,0x87,0xb8,0xa0,0xb5,0x45,0x98,0x95,0xe6,0x10,0x1b,0x2a,0x2b,0xcc,0x6b,0xbd,0x59,0x55,0xc4,0x59,0xce,0x2d,0xa6,0xeb,0xe,0xa9,0x7,0x25,0xde,0x24,0x35,0xf1,0x25,0xaa,0x4,0x2c,0xa4,0x3d,0xcc,0xd2,0x56,0x2c,0xca,0x48,0xd4,0xa2,0x95,0xda,0x2c,0x2c,0x39,0xb8,0x89,0x3f,0x33,0x93,0x6c,0x4c,0xbc,0x19,0x53,0x1a,0x5,0x21,0xf4,0x38,0x59,0x51,0xe4,0x15,0x2e,0x71,0x91,0xed,0x18,0x83,0x9c,0x4a,0x53,0xc2,0x51,0x9,0x2d,0xba,0x86,0x4b,0xe,0x61,0x9d,0xff,0x98,0xa6,0xf9,0x39,0xdb,0x1a,0xeb,0x52,0xb,0x44,0xea,0x39,0x55,0x95,0x9c,0x4c,0x3a,0x72,0x64,0x4b,0xce,0x95,0x1c,0x44,0x93,0x1f,0xac,0x16,0xea,0xb6,0xc4,0xa3,0x1d,0xe7,0x56,0xfd,0x27,0x85,0x2f,0x8d,0xc5,0xb8,0xcd,0x9b,0x3e,0xe6,0xee,0xb4,0x44,0xa5,0x55,0xfe,0x95,0x5a,0xf4,0x71,0x45,0x7f,0x87,0x72,0x7e,0x5a,0x62,0x87,0xbc,0x52,0x5a,0x5e,0xd6,0x6,0x16,0x5e,0xb0,0xe6,0xf9,0x6e,0xb9,0x87,0x4d,0xb8,0xa3,0xa3,0xa3,0xa3,0x13,0x80,0x1d,0x1d,0x1d,0xf7,0x13,0x68,0x2,0x5f,0x94,0xc4,0x3,0x6a,0x13,0xab,0xd8,0x30,0xa9,0xc9,0x8e,0x26,0xad,0xb2,0x42,0x5e,0x83,0x98,0xb1,0x6a,0x83,0x2b,0x32,0x31,0x66,0x2,0x4a,0x27,0xf1,0xce,0x69,0xc0,0xf7,0x32,0xcf,0x4a,0xa6,0x69,0x7e,0x51,0x66,0x25,0x0,0x5b,0x45,0x65,0x65,0x56,0xb2,0xe3,0xc4,0xe,0x5a,0x90,0x31,0x8c,0x5b,0x22,0xed,0x9c,0x83,0xf,0x3,0xe6,0xc3,0x5e,0x6d,0x29,0xce,0x51,0xce,0x9c,0x75,0xe,0xde,0xf,0x35,0x50,0x1c,0x40,0xb6,0x19,0x26,0x67,0xc,0x9b,0xad,0x36,0x6,0x57,0x15,0xa0,0xe7,0x1b,0x81,0x82,0x58,0x16,0x6a,0xc5,0x5d,0x26,0xb2,0xa0,0x3a,0xaf,0x56,0xe5,0x9c,0x12,0x96,0x79,0x42,0x18,0x6,0x94,0x52,0x30,0x1d,0x2e,0x54,0x25,0x67,0xad,0xc5,0xee,0xec,0x8e,0x66,0x2c,0x9,0xc9,0x6,0x26,0xe6,0xc2,0x68,0xb1,0x4c,0x7,0x58,0xeb,0x58,0x19,0x48,0xef,0x3f,0x95,0x1d,0x86,0xcd,0x96,0x72,0x2,0x53,0xc4,0xe9,0xb5,0x1b,0x98,0xe,0x3b,0x6c,0x4e,0xae,0x69,0x46,0x5f,0x8,0x3,0x29,0xfd,0x42,0x50,0xdb,0x72,0x55,0xd6,0x71,0x2b,0x23,0xab,0x11,0xae,0xca,0x17,0x8a,0xcb,0x82,0x6a,0x3f,0xaa,0x61,0xe0,0xc6,0x3a,0x59,0x76,0x27,0x35,0x84,0x28,0x4d,0xd8,0x3e,0x9d,0x4c,0xe4,0x1c,0x40,0xda,0xde,0xe9,0x8d,0x7,0xf9,0xe6,0x88,0x7e,0x6e,0x3f,0xab,0x14,0x85,0x90,0x65,0xaa,0xcd,0xaa,0xa2,0x33,0xc2,0xd8,0xc6,0x46,0x76,0xb4,0xba,0xbf,0xa,0x59,0xbf,0xb4,0x14,0x4f,0xbf,0x2f,0xcb,0x81,0x14,0x83,0xc6,0xf5,0x3f,0xdc,0x8e,0x8e,0x8e,0xfb,0x1a,0x57,0x95,0x2d,0x48,0x33,0xae,0xc6,0x26,0x34,0x4a,0x2a,0xfa,0x8e,0x76,0xc8,0xa5,0x30,0xf9,0xd5,0xb4,0xb4,0xb2,0xea,0x8e,0x94,0x81,0xb,0x5b,0x86,0x79,0x71,0xcf,0x0,0xce,0x59,0x76,0x87,0xd2,0xf7,0xbe,0x2a,0xdb,0x4c,0x2d,0xa6,0xa8,0x59,0x72,0x68,0xc8,0x32,0xc7,0x8a,0x3d,0x83,0x38,0x2f,0xa4,0xd2,0x8b,0x91,0xd4,0xda,0x7c,0x3d,0x4e,0xac,0x70,0x23,0x45,0xb8,0xab,0xca,0x7f,0x47,0x56,0x60,0x52,0x8a,0xd5,0x45,0x28,0x7a,0x8e,0x43,0xc9,0x46,0x4b,0xc8,0xbc,0xb1,0x88,0x71,0x86,0x35,0x1e,0x29,0x2d,0xaa,0x30,0x6b,0x73,0xea,0xac,0x71,0x48,0x25,0xc1,0xb0,0x7a,0xdc,0xb2,0x32,0xb2,0xe6,0x17,0x3b,0xcd,0xd4,0x95,0x39,0x8a,0xa8,0xd9,0xc5,0xee,0xa,0x53,0x95,0x7b,0xa6,0xed,0xe1,0x60,0x12,0xd2,0x18,0xa8,0x95,0xb8,0xb6,0xf2,0xd6,0x6b,0x94,0xa8,0x4,0x45,0x55,0x48,0x24,0xa7,0x41,0xe6,0xc2,0x2e,0x21,0xea,0x74,0x1e,0x85,0x5a,0x8a,0xd2,0xe6,0x2e,0xc2,0x40,0x33,0x14,0x6b,0x39,0x58,0x66,0xd2,0xcf,0x72,0x86,0x1f,0x8d,0xad,0x1,0x39,0x22,0x62,0x9c,0x79,0x3f,0xe3,0xca,0x13,0x4b,0x64,0x61,0x69,0xda,0x93,0x93,0x16,0xa0,0xa8,0x95,0xb9,0xa0,0xc9,0x70,0xb4,0x28,0x16,0xaa,0x6a,0x54,0x76,0x8d,0x49,0xdb,0xb8,0xcc,0x70,0xde,0x23,0xc5,0xd8,0xac,0x13,0x1b,0xa8,0x58,0x9f,0x17,0x91,0xb,0x17,0xc5,0x14,0x14,0x8d,0x1f,0xd1,0x79,0x62,0xe6,0xa6,0xe7,0xe6,0x1c,0xad,0x76,0xf3,0xe6,0x34,0xe3,0xf7,0x93,0x7d,0x5b,0xe7,0x12,0x4a,0x4e,0x60,0x4b,0x4,0xb6,0xc7,0x44,0x1d,0xe2,0x95,0x1e,0xd4,0xf6,0x8f,0x72,0x85,0xe2,0xef,0xa8,0xfc,0xa5,0xa3,0xa3,0xa3,0xa3,0x13,0x80,0x1d,0x1d,0x1d,0xf7,0x23,0xec,0x51,0x60,0x38,0x0,0xb5,0x83,0x5a,0x2e,0x67,0xd0,0x9,0x1a,0x2e,0xb7,0xd4,0x9a,0x46,0x3d,0x28,0x20,0x35,0x57,0x59,0xfd,0x2c,0x13,0x5b,0xb1,0x1c,0x27,0x6e,0xe4,0x75,0x61,0x20,0xf2,0xc9,0x64,0xe4,0xc,0x5e,0xd9,0x67,0x3b,0xf,0x5b,0x4b,0x25,0xa8,0x99,0x4a,0x2c,0x68,0x65,0x5e,0x32,0xe7,0xe2,0x32,0x31,0xf1,0x64,0x78,0x35,0x97,0xf6,0xcf,0x7b,0xf,0x6b,0x9d,0x66,0xe6,0xf9,0x61,0x80,0x2b,0x16,0x36,0x50,0x4e,0x5d,0x8a,0xb,0xe0,0x1c,0xac,0xb1,0x1a,0x82,0x8e,0x5c,0x50,0x5c,0xd1,0x6,0x41,0x5d,0xf1,0x76,0x5e,0x15,0x7f,0xa5,0x64,0xc4,0x38,0xeb,0xfe,0xc7,0xb8,0x68,0x20,0xf8,0x74,0x20,0x1b,0x6f,0xce,0x99,0xec,0x58,0xbc,0xbc,0xec,0xc3,0x88,0x69,0x7f,0xa1,0xc4,0x24,0xa,0xd9,0x7b,0x8d,0xb5,0x38,0xec,0xce,0x11,0x97,0x19,0xd3,0x61,0x8f,0x52,0x48,0xe9,0x78,0xd8,0x5f,0x60,0x73,0x72,0x8d,0xca,0x41,0xf2,0x3a,0x60,0x5c,0x48,0x3f,0xcf,0xe3,0x26,0x6a,0x2,0x69,0x63,0x14,0x25,0x60,0x21,0x49,0x7,0xac,0xf5,0xac,0xf8,0x60,0x55,0x23,0x6a,0x4b,0x20,0x11,0xb9,0xd5,0x6,0x2e,0x56,0x1f,0xbd,0x81,0x61,0xe2,0x96,0x8,0xc6,0x50,0x15,0x1f,0x9c,0xf,0x55,0x2,0x9d,0x32,0x29,0x45,0x38,0x1f,0xb4,0x35,0x1a,0x80,0x86,0xd1,0xb,0x49,0xbc,0x52,0x7b,0x8a,0xc2,0xc0,0x56,0xbb,0x72,0x3e,0xa,0xa,0x17,0x35,0x47,0x6b,0x4f,0xcf,0xc5,0xb0,0x6d,0x6b,0xe9,0x7f,0xb8,0x1d,0x1d,0x1d,0xf7,0x37,0x1,0x28,0xb9,0x77,0xd,0x68,0xa1,0xac,0x68,0xa1,0x43,0x61,0x75,0x33,0xc9,0x1d,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x82,0xc,0x0,0x93,0x7f,0xb9,0x2a,0xc2,0x9b,0xef,0x5c,0xbd,0xc6,0xf1,0x77,0xb9,0x52,0x22,0xb6,0xb9,0x96,0x6b,0x8c,0x6f,0xd1,0x6c,0x3f,0xa1,0x44,0xd4,0xe2,0xb,0x3,0xc7,0x56,0xdd,0x94,0x12,0x2c,0x3f,0xdf,0xf2,0x35,0x56,0xec,0xbb,0xa4,0x8,0xe7,0x26,0xde,0x52,0x89,0x28,0x34,0xa,0x44,0xb9,0x16,0x58,0x63,0x90,0x97,0xac,0x25,0x60,0x89,0x63,0x3b,0x24,0xff,0x57,0xd8,0x1c,0xef,0x7,0xfe,0x2c,0x3,0xb4,0x40,0x4a,0xb2,0x85,0x4b,0x5e,0xb5,0xdf,0xd6,0xcf,0x53,0x73,0x6,0x8b,0x58,0x6d,0x59,0xf1,0x67,0x9d,0xd7,0xfc,0x41,0x51,0x51,0x4a,0x5e,0xae,0x94,0x58,0x94,0x26,0x47,0x31,0x21,0x2,0xb0,0x1a,0xa9,0x21,0x17,0x26,0x7a,0x4d,0x6d,0x4e,0x96,0x45,0x51,0xb2,0x98,0xa6,0x55,0x9e,0x9e,0x55,0x55,0x9d,0x5c,0xe8,0xf8,0xfd,0x4d,0xcd,0xe0,0x93,0x7c,0xe4,0x72,0x34,0xaf,0x92,0xf1,0x32,0xe0,0x1c,0xdc,0xb8,0xa8,0x15,0x3a,0x65,0x5a,0x6c,0x2c,0xa2,0x92,0x6c,0xa,0x40,0xa,0xa,0x5b,0x7e,0xb,0x35,0x27,0x9b,0xda,0x10,0x5c,0xca,0xda,0xd5,0x51,0x73,0x82,0x73,0x73,0x5e,0x70,0x34,0x4b,0x43,0xf6,0xe5,0x54,0x89,0x3c,0x69,0x74,0x36,0xb2,0x50,0x7,0x56,0xeb,0x61,0xad,0xbc,0x3b,0xb6,0x38,0x9b,0x56,0xbe,0x27,0x8b,0x82,0x32,0xa6,0x66,0x3d,0x17,0x30,0xad,0x8d,0x9d,0x89,0x3f,0xad,0xfc,0x90,0x6d,0x35,0xed,0xc6,0x2b,0xfb,0xb0,0x66,0x0,0x9a,0x1a,0x41,0xb2,0xe2,0xf9,0x1a,0x25,0x6c,0x27,0xff,0x3a,0x3a,0x3a,0x3a,0x1,0xd8,0xd1,0xd1,0x71,0xff,0xe3,0x28,0x28,0x45,0x5b,0x80,0x65,0x85,0xdf,0xea,0x4,0x3a,0x73,0x26,0x8e,0x35,0x4e,0xb3,0x65,0xda,0x80,0xe9,0x5a,0xf2,0x61,0x75,0x62,0x4b,0xe4,0xdf,0xda,0x2,0x24,0xcf,0x25,0x6b,0x51,0x4,0x4a,0x9d,0x8c,0xc3,0xd6,0xe6,0x60,0xef,0x29,0xa8,0x9c,0x26,0x80,0x46,0x2d,0xb7,0xce,0x19,0x25,0xf9,0x24,0x8c,0x3c,0xa5,0xc4,0xcf,0x97,0xdc,0x9d,0x8,0xef,0x3,0xe7,0x18,0x2d,0x70,0xbc,0xaf,0xb2,0x1f,0xc3,0x66,0x8b,0x9c,0xa2,0x66,0x1c,0xc9,0x8d,0x91,0x4,0x98,0xc7,0x38,0x3,0x5,0x94,0x2f,0x18,0x67,0xb5,0x41,0xe7,0x9c,0x91,0x62,0x64,0x35,0x60,0xc4,0xfe,0xe2,0xc,0xdb,0xd3,0x1b,0xb4,0xd,0x3f,0x0,0x6c,0xc9,0x8d,0x71,0x86,0x5,0x35,0xe0,0xa6,0x18,0xb1,0x39,0xb9,0x86,0x38,0x4f,0xb5,0x79,0x97,0xf7,0x6f,0x7b,0x7a,0x1d,0x0,0x30,0x9f,0xdd,0x41,0x29,0x99,0x14,0x84,0xd6,0xc1,0xb9,0x9,0x76,0x63,0x91,0x1,0x78,0x17,0x88,0x28,0x63,0x35,0x9d,0xf,0x75,0xf2,0x9f,0x67,0xb2,0x15,0x17,0xbd,0x21,0xcc,0xbc,0x9a,0x9f,0x61,0x61,0x50,0x90,0x9a,0xb1,0xab,0x59,0x8e,0xa2,0xec,0x48,0x69,0x51,0x5,0x3,0xe4,0x46,0xcf,0x60,0xd5,0x86,0x98,0x33,0x65,0x28,0x96,0x4c,0x4a,0x49,0xc9,0x80,0x12,0x72,0xd7,0x99,0xa0,0x8a,0x4,0x7,0xaf,0x99,0x4d,0xa6,0xb9,0x91,0x45,0xd3,0xa2,0x68,0x94,0x4,0xa4,0xe3,0x9c,0xb5,0xa9,0xb0,0x69,0xc,0x14,0xbf,0x90,0x9c,0x9a,0xac,0x7e,0x2c,0xce,0x21,0x2d,0x13,0x2b,0x44,0x52,0xff,0xf3,0xed,0xe8,0xe8,0xb8,0x7f,0x49,0x40,0xb4,0x85,0x18,0xe,0x39,0x2f,0x4a,0xa0,0x50,0xfb,0xac,0x5b,0x95,0x7d,0x58,0x6d,0x61,0x2d,0xaa,0xe4,0x27,0x52,0x89,0xae,0xb1,0x42,0xac,0xe9,0x2,0x11,0xab,0xeb,0xe5,0xda,0x29,0xe4,0x8f,0xe1,0x5,0xb6,0xc4,0x25,0x55,0x72,0xbd,0x92,0x45,0x27,0xc9,0xe9,0x25,0xe2,0x51,0x16,0x9f,0x78,0x8f,0xad,0x81,0x31,0x8e,0x17,0xa6,0xdc,0x8a,0x54,0xa4,0x4c,0xb9,0xb0,0x22,0x9f,0xa8,0xc,0xaa,0x79,0x5e,0x43,0x0,0xc9,0xe2,0xa3,0xe5,0x82,0x12,0xb1,0x44,0xb7,0x19,0x7c,0xf2,0xaf,0xe5,0xe2,0x91,0x98,0x22,0x37,0xcf,0x3,0x29,0x46,0x56,0xf6,0x19,0xcd,0xba,0x3,0xc0,0xe4,0x56,0xe2,0xec,0xbc,0xc,0xe4,0xda,0x72,0x5b,0x74,0xac,0x13,0xab,0xed,0x59,0xf9,0x27,0x8a,0x7b,0x63,0xd5,0xfe,0x5a,0x52,0xae,0x24,0x60,0x46,0xa3,0x66,0x87,0x16,0xb2,0x80,0x2d,0xc3,0x32,0x16,0xa6,0x21,0x35,0xc5,0xd5,0x9a,0x53,0x86,0xb5,0x46,0x89,0x47,0xe7,0x87,0x4b,0xa5,0x5b,0x42,0xe,0x66,0x14,0x18,0x29,0x1d,0x49,0x91,0xb7,0x59,0xad,0xd6,0x92,0xdd,0x28,0x79,0x84,0x6,0x85,0xe3,0x4e,0x8c,0x5e,0xb3,0x85,0x30,0x36,0x9c,0xb,0x28,0x73,0x7,0xda,0x8e,0x6d,0xf2,0x23,0x69,0x9f,0x23,0xab,0x4b,0x29,0x69,0xb2,0x69,0x68,0x66,0x5,0x9f,0x6c,0x5b,0x49,0xd8,0xe6,0xf1,0xba,0x5f,0xb6,0xb6,0x37,0x97,0xa2,0x73,0x88,0x7a,0x3e,0xb7,0x39,0x82,0x32,0x3e,0x79,0x55,0xd4,0xd2,0x6e,0x47,0x27,0xa,0x3a,0xd9,0xa8,0x26,0xe0,0xfa,0x16,0xfc,0x3e,0xa6,0x92,0x83,0x2b,0x75,0xe4,0xd1,0x14,0xb8,0xf3,0x7f,0x1d,0x1d,0x1d,0xaf,0x17,0xd8,0x3e,0x4,0x1d,0x1d,0x1d,0xaf,0xe5,0x2d,0x46,0x69,0x56,0x76,0x5b,0x92,0xcc,0xb0,0x1d,0x46,0x26,0xa2,0x92,0x9d,0x53,0xed,0xbe,0x99,0xca,0x33,0x38,0x34,0x5b,0x66,0x50,0x35,0x6b,0x48,0x26,0x86,0x4d,0xa1,0x83,0x64,0xbb,0xf0,0x4d,0x9,0x8a,0x64,0xef,0xa4,0x1a,0xce,0xdd,0x58,0x9a,0x74,0xc2,0xc7,0xe4,0x1f,0x4d,0xa2,0x45,0x5d,0x90,0x9a,0x1b,0x8,0x21,0xaa,0x6,0x0,0x6,0x21,0x8c,0x4a,0xee,0xd,0xe3,0x56,0xdf,0x47,0x54,0x74,0xd2,0x70,0xeb,0xc3,0x80,0x94,0x22,0x13,0x7b,0x8b,0x4e,0x4c,0x73,0xca,0xda,0x2a,0x1c,0x97,0x5,0xcb,0x32,0x21,0x2e,0xb,0x97,0x96,0x90,0x95,0x57,0xda,0x84,0x49,0x8d,0xe1,0x91,0xe2,0x8c,0x99,0x95,0x7c,0xa2,0x42,0x88,0xcb,0xac,0xf9,0x76,0xd6,0x79,0x6c,0xd9,0xd6,0xeb,0x7c,0x40,0x18,0x37,0xfa,0x7b,0xe7,0x3d,0x96,0x69,0xa2,0xc9,0x2b,0xdf,0xe8,0xc4,0x58,0x57,0xeb,0x65,0x75,0x5a,0xc6,0xde,0xb3,0x2,0x40,0x72,0xb,0x4d,0x5b,0x14,0xd2,0x34,0x33,0x1a,0x2b,0x8f,0x43,0x6f,0xc,0x57,0x36,0x32,0xb6,0x69,0x51,0x46,0x9f,0xd5,0x36,0x60,0x6d,0x80,0x6e,0x6e,0x62,0xc8,0x4e,0xcd,0xc7,0xbd,0x54,0x75,0x64,0x18,0x6,0xcd,0xff,0xb3,0x6c,0xc1,0xd6,0x52,0x18,0xbe,0x91,0x6c,0xc3,0xd3,0xb3,0xbc,0x5e,0x94,0x8,0x85,0xf3,0xa,0x99,0xfc,0xbb,0x1c,0xfc,0x6d,0x78,0x7c,0xe9,0x3c,0xb3,0xe1,0xa4,0x93,0x7f,0x1d,0x1d,0x1d,0x6f,0x84,0xcb,0xb3,0x22,0xaf,0xbe,0x1f,0xe5,0x7b,0x99,0x8,0xb9,0x9c,0x53,0xfd,0x5e,0x5,0x2d,0x66,0xc9,0xa2,0x8c,0x92,0x66,0x4c,0xfa,0x58,0x5d,0xc,0x23,0x22,0x8b,0xe2,0x23,0x92,0xe6,0xf3,0x59,0xdf,0x34,0xb6,0x73,0xb1,0xc5,0x30,0x6e,0x74,0xa1,0x46,0xfe,0xcf,0x5a,0xa7,0x5,0x13,0x42,0xf0,0x18,0x5e,0xb8,0x93,0x9f,0xf5,0x1a,0xc3,0xa,0x71,0x51,0x72,0x9,0xa1,0x25,0x8b,0x3e,0x5a,0x54,0x62,0x49,0x91,0x6f,0x9a,0xfc,0x3f,0xe7,0x3c,0x59,0x77,0x1b,0xe2,0x4f,0xf7,0x8d,0x2d,0xcf,0xce,0x7,0xcd,0x7f,0xf3,0x5c,0x64,0x42,0xf3,0x7,0x22,0x9c,0x1c,0xab,0x12,0x65,0xbf,0x4b,0xe3,0x5e,0x10,0x75,0x23,0x91,0x73,0x4e,0x55,0xf2,0xd2,0xd6,0x2b,0xb,0x5a,0x49,0xc8,0xb8,0xb6,0x84,0xc5,0x92,0xf3,0xa0,0x68,0x49,0x86,0xa9,0xd7,0xce,0x66,0x11,0xcb,0x31,0x51,0xab,0xa3,0x27,0x8f,0xf3,0x62,0xa0,0xb5,0x96,0x16,0xb5,0xd8,0xe,0x4d,0x71,0x20,0x89,0x9,0x33,0xaf,0xad,0xca,0xe2,0xc4,0x48,0x91,0x54,0xf7,0x3e,0xc,0x44,0xe2,0x2a,0xd1,0x4b,0x73,0x4,0xef,0x79,0xd1,0xd0,0x1a,0x9d,0x37,0x19,0xce,0xe1,0x75,0x9c,0x2b,0x5c,0xcf,0x23,0xa7,0xd9,0x85,0x42,0x10,0xca,0x71,0xcd,0x3c,0xf7,0x13,0x42,0xd5,0xb4,0xea,0x3a,0x43,0x73,0x2,0xe7,0x7c,0xa3,0x42,0xf5,0x47,0xc7,0x17,0xd5,0x5e,0xcd,0xd,0xc0,0x39,0x25,0x5e,0xd8,0xc5,0xaa,0xe0,0xa4,0xaa,0x1d,0xcb,0xd5,0x44,0xb8,0x28,0x23,0x9b,0x5,0x43,0x70,0xfb,0x75,0x4d,0xff,0x43,0x9d,0x3b,0x5c,0x55,0xb,0xac,0x73,0xd0,0xa3,0x29,0x86,0x4c,0x54,0x4d,0xff,0xca,0xe9,0xe8,0xe8,0xe8,0x4,0x60,0x47,0x47,0xc7,0x7d,0x8e,0xe3,0xd5,0x56,0x9,0xbc,0x6e,0x67,0x4e,0x6d,0x2b,0x9c,0x34,0xf,0xca,0x6b,0x57,0x19,0x3c,0xd6,0x35,0x13,0xb8,0x3a,0xc9,0xad,0xa1,0xe4,0x46,0xc3,0xad,0x45,0x4d,0x57,0x4a,0x63,0x3b,0x29,0x99,0xf3,0x6b,0x8a,0xda,0x70,0xd6,0xfb,0x83,0xa6,0xfd,0xe,0xab,0xf0,0x6a,0xc7,0xd9,0x81,0x39,0xb1,0xbd,0x88,0xc9,0x29,0xa,0x31,0xb7,0x1a,0x56,0x9d,0x52,0xc2,0xb2,0x4c,0xba,0x97,0xd4,0x5a,0x18,0x34,0x73,0x30,0x25,0x52,0xf7,0xc5,0x65,0x52,0x2,0x52,0x56,0x99,0x97,0x65,0xc2,0x7c,0xd8,0x61,0x9e,0xe,0x30,0xc6,0x60,0x9e,0xe,0x38,0xec,0x2e,0xb0,0x3b,0xbf,0x8b,0xfd,0xc5,0x19,0x8c,0x75,0x74,0x33,0x95,0xd2,0x6a,0xc5,0xdd,0x87,0x1,0x33,0xab,0xff,0xa6,0xc3,0x5e,0x27,0xd8,0xa4,0xf4,0xf3,0xf0,0x61,0x44,0xe6,0x6c,0xc2,0xe9,0xb0,0xc7,0x3c,0x1d,0x94,0x90,0x34,0xc6,0x60,0x9e,0x27,0xc0,0x80,0xda,0x79,0x99,0xe8,0x13,0xb2,0xd3,0xf0,0xd,0xdd,0xa5,0x20,0x6e,0xb6,0xf0,0xa4,0x18,0xf9,0x26,0xae,0x5a,0x67,0x54,0x71,0xc7,0x6a,0x85,0x72,0x69,0x8c,0xb3,0x66,0x17,0xe2,0xa8,0xad,0xcf,0xf9,0xc0,0xa,0x85,0x20,0x1,0x42,0xb4,0x2d,0xce,0x97,0x12,0xcb,0x91,0xa8,0xc,0x51,0xa0,0x44,0xec,0x2a,0x23,0x52,0x72,0x7,0x1b,0xc2,0xf8,0x38,0xfb,0xaf,0x35,0x0,0xe7,0x94,0x48,0xf1,0x19,0x6,0x94,0x1c,0xfb,0x1f,0x6e,0x47,0x47,0xc7,0x7d,0x7f,0x6d,0x96,0xeb,0xe2,0xea,0xa6,0x80,0x63,0x24,0xf2,0xaa,0x70,0xc2,0x28,0xe1,0x77,0x1c,0xd3,0x21,0xd7,0x1a,0xb5,0xa8,0x1a,0x20,0xc,0xa3,0x7e,0x8f,0x4b,0xbe,0xda,0x30,0x6e,0xe0,0x98,0xd0,0x11,0x25,0x78,0x8d,0x9d,0xa8,0x25,0x21,0xf2,0xdd,0x6f,0x2d,0x2d,0x64,0x49,0x26,0xac,0x6c,0x33,0x2e,0x33,0x34,0x6f,0x96,0xf3,0x6f,0x51,0xa,0xac,0xa7,0xf9,0x41,0x18,0x6,0x25,0xa5,0x9c,0x73,0x4a,0x70,0x49,0x7e,0xaf,0x10,0x49,0xb2,0x2d,0x21,0xc1,0xe8,0x77,0xa6,0x21,0xdb,0xc0,0x96,0x56,0x9d,0x90,0xac,0xf8,0x1b,0x6b,0x2d,0x7c,0x18,0x9b,0xa9,0x4c,0xa3,0x8e,0x64,0x3b,0x72,0x5b,0x88,0xd1,0x92,0x7b,0x0,0x94,0x14,0x93,0xec,0x5a,0x27,0x2a,0x4b,0x1e,0x4b,0x51,0x4b,0x82,0xc9,0x28,0x1f,0x6,0x55,0xbf,0xc9,0xbc,0x47,0x54,0x75,0xba,0xd,0x26,0x6c,0x85,0x6c,0x84,0x81,0x92,0x6b,0x85,0xe3,0x42,0x84,0x7c,0xb5,0xd6,0x68,0xa3,0x72,0x1,0x74,0x5f,0xe9,0x77,0x96,0x1c,0x5,0xb9,0x96,0xc4,0xc8,0x62,0xad,0x5e,0x3b,0x4b,0x86,0x13,0xf5,0x27,0xff,0x2b,0xc4,0x1b,0xcd,0xcf,0xec,0xca,0xfa,0xab,0x8b,0x99,0x32,0x8f,0x6b,0x14,0x74,0x6,0x6b,0xc2,0x50,0x8e,0x93,0xcc,0x45,0x84,0xf0,0x4c,0x62,0x31,0x86,0x69,0x88,0x3a,0xb1,0xf0,0x66,0x65,0xdc,0x84,0xc8,0x84,0x2a,0x56,0x73,0x43,0xee,0xd9,0xc6,0x95,0xc0,0xfb,0xd9,0x94,0xd2,0x99,0xc6,0xde,0x6c,0x80,0xe6,0xef,0xc3,0x54,0x11,0x60,0xab,0xf4,0x6b,0xb9,0x41,0x63,0x8e,0x58,0xbf,0x52,0x65,0x80,0xea,0x7e,0xe9,0xe8,0xe8,0xe8,0xe8,0x4,0x60,0x47,0x47,0xc7,0x1b,0xe3,0x6e,0x83,0x27,0x63,0x75,0xa2,0xa4,0x19,0x32,0xe5,0x72,0x16,0x4d,0x9d,0x25,0x17,0x25,0xe4,0x54,0xa1,0xa0,0x64,0x21,0x4d,0x4e,0x25,0xe4,0x5a,0x6d,0x3f,0x47,0xc4,0x61,0x66,0x82,0x28,0xa7,0x4,0x6b,0xc8,0x96,0x54,0xb8,0xda,0x4f,0xc8,0xa4,0x76,0x52,0x2a,0xd,0xc0,0x35,0x57,0xae,0x99,0x0,0x8a,0x32,0xa2,0x21,0x97,0x96,0x79,0xa2,0x55,0xe8,0xc6,0xca,0x23,0xab,0xf4,0x71,0x99,0xd9,0x9a,0x5b,0xb0,0x4c,0x53,0x55,0x1e,0xb8,0xda,0x9e,0x98,0x13,0x2b,0xe1,0x38,0xdf,0x26,0x2e,0x33,0x97,0x6a,0x40,0x73,0x7a,0xe2,0xb2,0x60,0x9e,0xf6,0xaa,0xc2,0xb,0x61,0x50,0xc5,0x5e,0x5c,0x44,0xa9,0x67,0x11,0x86,0x91,0x33,0xb,0x29,0x4c,0xdb,0x58,0x4b,0xa,0x3a,0xef,0x31,0x4f,0x7,0x6a,0xff,0x8d,0x8b,0xaa,0x0,0x25,0x6f,0xa8,0x36,0x20,0xe2,0x12,0x69,0x47,0x2a,0x42,0x5a,0xa9,0x27,0xd5,0x40,0xae,0xc7,0x54,0x54,0x83,0x3c,0xf7,0x35,0xd6,0x22,0x2d,0x8b,0xda,0xa2,0x64,0x52,0xaf,0x37,0x46,0xb6,0xaa,0x3,0x8a,0x58,0xc2,0x51,0x5b,0x9d,0xf5,0x46,0x46,0xb,0x63,0xf8,0xc6,0xa,0x6b,0xdb,0x70,0x93,0x8,0xde,0x90,0xcb,0xa8,0x84,0xb0,0x46,0x1,0x19,0xae,0x9b,0x29,0x7a,0xb3,0x85,0xe3,0xa6,0x40,0x39,0x29,0x39,0xc4,0xdd,0xd8,0x5e,0x2,0xd2,0xd1,0xd1,0x71,0x9f,0x4f,0xfe,0xf9,0x5a,0xa4,0xea,0xa7,0x23,0xe2,0xc2,0x60,0xbd,0x68,0x22,0xc4,0x94,0x13,0xab,0xa9,0x94,0x25,0x30,0x69,0x12,0x86,0x71,0x95,0xe7,0x1b,0x86,0x51,0x15,0x62,0x61,0xd8,0xac,0xec,0x99,0x42,0xf0,0x15,0x59,0x88,0x43,0x6d,0x17,0x2e,0x5c,0x80,0x41,0xb9,0x73,0xb9,0x12,0x5e,0x86,0x8,0x2b,0xeb,0x3c,0xc5,0x61,0xa8,0x22,0xdc,0xf0,0x75,0x6e,0x3,0xc7,0xca,0x32,0x21,0x1b,0xa5,0xf4,0x4b,0x16,0x8c,0x3c,0xab,0xf,0xd1,0x14,0xa0,0x50,0xfe,0x6e,0x2d,0xca,0x70,0xde,0x57,0xc5,0xa0,0xb1,0xcc,0xdf,0x14,0x6d,0x9c,0x77,0x3e,0x54,0x1b,0x2a,0x13,0x52,0x52,0x26,0x22,0xfb,0x2a,0x4a,0x41,0x99,0x47,0xf8,0x30,0xc0,0x58,0xb3,0x5a,0xac,0xd2,0xec,0xba,0x26,0x17,0x57,0xc6,0x56,0x8f,0x8b,0x28,0xef,0x39,0xd7,0x58,0xae,0x73,0xa2,0x68,0x93,0xc5,0x39,0x21,0xc5,0xac,0xb1,0x3a,0x6,0xa4,0x68,0x2b,0x48,0x31,0xd1,0x76,0xd,0xc8,0x85,0xc0,0xe3,0xd8,0xba,0x21,0x84,0x9c,0x92,0x31,0x10,0x22,0xb8,0x0,0x55,0xc5,0xef,0xa9,0x14,0x8d,0x4a,0xd3,0xa,0x11,0x7a,0xc6,0xc0,0xd8,0x5a,0x38,0x42,0xe,0x9,0xc0,0x79,0xb7,0x22,0x2b,0x8b,0x64,0x4b,0xf2,0xa2,0x9e,0x96,0x9c,0xf0,0xb1,0x93,0xcf,0xd2,0xda,0x7d,0xc5,0x3a,0x2e,0x9f,0x91,0x16,0x5d,0x5d,0x3d,0xef,0x74,0x2a,0x69,0x57,0x44,0xa9,0xb8,0x1a,0xc,0x93,0x92,0x3a,0xdf,0x68,0xc6,0x55,0xb2,0x1c,0xdb,0x1c,0x60,0x9d,0xd3,0x94,0x86,0x20,0xd7,0x1c,0x40,0x68,0x74,0x4d,0x9d,0xfb,0xb4,0xc4,0x1f,0xd6,0x8f,0x9b,0x35,0x7,0xa8,0x6f,0x6b,0xba,0x4,0xb0,0xa3,0xa3,0xa3,0x13,0x80,0x1d,0x1d,0x1d,0xf7,0x39,0xcc,0x3a,0x6d,0xb9,0xce,0x98,0x9a,0x49,0x96,0x61,0xf6,0xc8,0x36,0x4a,0x3e,0x5d,0x81,0xb5,0x75,0xc2,0x27,0x96,0x51,0x1c,0xb7,0xbc,0x32,0xb9,0x57,0x38,0x3f,0xa8,0x55,0xab,0xc9,0x4a,0xbc,0x28,0xf1,0x34,0xe4,0x5c,0xa,0x43,0xa,0xdd,0x70,0x8,0x99,0x27,0x6d,0x7b,0x6a,0xfd,0x60,0xcb,0x4b,0x41,0x55,0xac,0x11,0xe1,0x48,0x56,0x9e,0xb8,0xcc,0x3a,0xa1,0x95,0x55,0xfb,0xa4,0xf6,0xd7,0xc,0xc3,0x4d,0xc0,0xd6,0x39,0xf8,0x61,0x64,0xeb,0xd0,0xc2,0x37,0x5c,0x19,0xcb,0x7c,0x50,0x22,0x53,0x8a,0x29,0xa8,0x14,0x64,0xc1,0x61,0x77,0x8e,0x79,0xda,0x63,0x3a,0xec,0x31,0xed,0x2f,0x38,0x6f,0x88,0xd4,0x7f,0xd3,0x61,0xa7,0x39,0x87,0xd6,0x39,0x2c,0xcb,0x8c,0x9c,0xa2,0x16,0x88,0xa4,0x94,0xa8,0xb5,0xcf,0x58,0x4c,0xfb,0x1d,0x60,0xc,0x4e,0x6f,0x3c,0x0,0x1f,0x6,0x8c,0x9b,0x13,0xc4,0x65,0xa9,0xd,0x8b,0xa2,0x90,0x6b,0x94,0x98,0x7a,0x83,0xd2,0x64,0x2b,0x51,0x3e,0xa2,0x5b,0xcd,0x7b,0x65,0xa6,0x9b,0xb9,0xc5,0x39,0xc5,0xc8,0xa1,0xe5,0x95,0xf4,0x13,0x55,0x65,0xce,0x9,0x39,0xc5,0x9a,0x3b,0x24,0x8f,0xf1,0xcf,0x62,0x5d,0x92,0x9b,0x29,0xa3,0x2d,0xce,0x68,0x1a,0x3,0x8b,0xaa,0x29,0x4b,0x9b,0xf3,0xd4,0x46,0xf6,0xf0,0xbe,0x28,0xe9,0x27,0x56,0x60,0xd3,0x64,0x40,0x59,0x73,0x49,0x89,0x9a,0x23,0x29,0x4b,0x72,0xec,0x25,0x20,0x1d,0x1d,0x1d,0xf7,0x37,0x8a,0xea,0x9f,0x9b,0x76,0x74,0x40,0xed,0xba,0xf2,0xdf,0xf2,0xf5,0xda,0x5e,0x2b,0x84,0x20,0x94,0x62,0xd,0x59,0x74,0x21,0xbb,0xa6,0xab,0x24,0x99,0x90,0x38,0xac,0x94,0x17,0xd5,0x9d,0x44,0x48,0x88,0x5a,0xf,0xa0,0xd7,0xe6,0x52,0xd8,0x22,0xec,0xd8,0x9a,0x9b,0x56,0x16,0x4e,0x51,0xcd,0x67,0x2e,0xc7,0xca,0x9c,0x2f,0x17,0xc2,0x40,0x2d,0xc0,0x81,0xac,0xc0,0x0,0x11,0x40,0x9a,0xd5,0xeb,0x1c,0xbc,0x1f,0xc8,0xce,0xcb,0x24,0x92,0x10,0x4f,0x61,0xd8,0x68,0x26,0x30,0x11,0x60,0x6e,0x25,0xd4,0xd2,0xa6,0x5f,0x26,0xa7,0x12,0x67,0x8,0x5b,0x29,0xa1,0x62,0xd5,0x5a,0x55,0x4a,0xd2,0x2,0x5d,0x4a,0x89,0x3f,0xab,0xd3,0x48,0xc,0x1f,0xc6,0xda,0x5c,0xcf,0xaf,0x6d,0xe3,0x2b,0x12,0x3b,0xc,0x48,0xb1,0x48,0x73,0xc,0xcf,0xf6,0x66,0xd9,0x2f,0x89,0xbd,0x80,0xcc,0x35,0x4c,0x6d,0xd8,0x2d,0xcd,0xb1,0xaa,0xb,0x9c,0x9c,0x81,0xd8,0x14,0x73,0x88,0x95,0xb7,0x8d,0xff,0x90,0xb2,0x15,0xf9,0x6c,0x52,0x4,0x46,0x76,0x5f,0xb6,0x7b,0xf3,0xf5,0xd7,0x28,0x1,0x9a,0x78,0x5a,0x64,0xeb,0xb8,0x1b,0x69,0x7f,0x36,0x9a,0x65,0xd8,0x66,0x2a,0xa6,0xb8,0xa8,0xd2,0xdf,0xb2,0x4d,0x5c,0xb3,0x18,0x99,0xb4,0x73,0xde,0xaf,0x2c,0xc2,0x12,0xc3,0x22,0xce,0xf,0x51,0x9d,0x4a,0x64,0x4b,0x6d,0x38,0x66,0xb5,0x1f,0x47,0x9d,0xc8,0xfe,0xc8,0xb1,0x11,0x22,0x58,0xcf,0x2b,0x7d,0x5d,0xb3,0x8f,0x52,0x36,0x22,0x8b,0x8a,0x6d,0x79,0x87,0x2c,0x22,0xca,0xf3,0xdb,0x62,0x9b,0xf5,0x1f,0xd7,0xea,0x3f,0x8d,0x92,0x8b,0x5d,0x1,0xd8,0xd1,0xd1,0xf1,0xfa,0x40,0x2f,0x1,0xe9,0xe8,0xe8,0x78,0xed,0x6e,0x32,0x4a,0x39,0x9e,0xf,0x1d,0x33,0x84,0x8d,0x75,0xb4,0x5c,0x9a,0x3d,0xd5,0xb6,0x56,0xe,0xd6,0x4e,0x49,0x9f,0xdf,0x92,0x8c,0x32,0xa9,0x75,0xce,0x21,0xc7,0x48,0xc4,0x1b,0x93,0x59,0x32,0x19,0x16,0xcb,0x6b,0xab,0x10,0x6c,0x73,0xe1,0x64,0x22,0x2b,0x13,0x46,0xdd,0x96,0xa9,0xcd,0x7d,0xd6,0x3a,0x25,0x19,0x25,0x8,0x5b,0x26,0x86,0x34,0xd7,0xa5,0xed,0xf8,0x30,0x20,0xe7,0x2,0x5b,0x68,0x12,0x2a,0x99,0x80,0xa2,0x5e,0x2b,0x8e,0x48,0xb3,0x30,0x50,0x4e,0x9f,0x75,0x5e,0x33,0x6c,0x62,0x5c,0x30,0x8c,0x1b,0x2c,0xac,0x1c,0xdc,0xef,0xce,0xa8,0xbd,0x77,0x77,0x4e,0x4d,0xbe,0x27,0xd7,0x90,0x62,0xd4,0xb6,0x62,0x29,0x35,0x11,0x35,0x82,0x58,0x90,0x51,0xa,0xf6,0x17,0xe7,0xb4,0xfd,0x79,0xae,0x36,0x1c,0x0,0x9b,0x93,0x6b,0x4d,0xee,0x5f,0x62,0x2b,0x56,0x68,0xc8,0x38,0xc0,0xb8,0xda,0x38,0xd8,0x5a,0x8d,0x64,0x72,0x2c,0x79,0x85,0xd4,0xea,0x6c,0xd6,0x64,0x9c,0x58,0x70,0x8a,0xd8,0x6c,0x50,0x1b,0x83,0x65,0xa5,0xff,0x28,0x3b,0x47,0x94,0x84,0x72,0xdc,0xa4,0x48,0x44,0x6d,0x39,0x4c,0xec,0x55,0xbb,0xcf,0x9a,0xc8,0x2b,0x8d,0xbd,0x4a,0x1f,0x2f,0x40,0x41,0x56,0xab,0x8e,0x28,0x9,0x74,0xe5,0xbf,0x21,0x7d,0x4b,0x4a,0xf0,0xdb,0x6b,0x48,0xcb,0x9d,0xfe,0x87,0xdb,0xd1,0xd1,0x71,0x7f,0x5f,0x9b,0xc5,0xea,0x5a,0x9a,0xef,0x5c,0x21,0x73,0x7c,0x6d,0x58,0x3d,0x26,0x4a,0x84,0x8c,0x11,0x55,0x15,0xd9,0x48,0x79,0x1,0xc7,0x1a,0x8d,0xbc,0x30,0xc6,0xe1,0x3d,0x4f,0x3c,0x86,0xc7,0x6e,0xdd,0x6c,0x4a,0x11,0xe8,0x7d,0x9f,0x79,0xee,0x45,0x7c,0xe1,0x6b,0x7f,0xe,0xeb,0x1d,0xb2,0x49,0x9a,0xed,0x16,0xc2,0x80,0x65,0x9e,0xf4,0x7a,0x4f,0x25,0x59,0x8b,0xfe,0x5e,0x8,0x47,0xb1,0x75,0x4a,0xe3,0xb0,0x92,0x99,0x39,0xe3,0xe4,0x64,0x8b,0xf,0xbd,0xf7,0x9,0x78,0xef,0x39,0x3f,0x8f,0x9e,0xbf,0xc4,0x88,0x3f,0xf8,0xcc,0x97,0x91,0xa,0x90,0xa6,0x58,0x89,0x2a,0x14,0x38,0x17,0x34,0x56,0xc3,0x58,0x8b,0xc2,0xc4,0xa1,0x28,0xf6,0x54,0x45,0x8,0xb0,0x4a,0x8d,0xc8,0x1f,0x6b,0x4c,0x93,0x59,0x5c,0xf4,0x35,0xf2,0x5e,0x9a,0x8b,0xab,0x73,0x97,0xa4,0x4,0x94,0x75,0xe,0x90,0xec,0x3e,0x89,0xcc,0xb0,0x96,0x88,0x43,0xe7,0x74,0x91,0x8e,0x16,0xc4,0x1c,0x5f,0x3b,0xad,0x96,0xa8,0x14,0x25,0x33,0x1d,0x9c,0x37,0x7a,0x3d,0x96,0x85,0x4a,0x6a,0xf3,0xd,0x6a,0x9b,0x2d,0x39,0xf1,0xe2,0x62,0x64,0x2b,0xae,0x55,0xd2,0x6f,0x35,0x8f,0xe1,0x79,0x99,0xc4,0x7b,0xc4,0x65,0xae,0xea,0x4e,0x54,0xeb,0x2b,0x2d,0xaa,0x7a,0xce,0x34,0xa6,0x7d,0xa6,0xeb,0xa9,0xd5,0x6c,0x60,0x69,0x26,0x96,0x6b,0xad,0xe4,0xf9,0x49,0x59,0x4c,0x56,0x45,0xa3,0x51,0xc5,0xa1,0xaa,0x51,0x39,0xbb,0x11,0xc6,0x22,0xc5,0xa4,0x96,0xf3,0xb6,0x30,0x4d,0x8e,0x57,0x66,0xb2,0xb5,0x34,0xc7,0xc2,0x38,0x87,0x92,0x62,0xb5,0x2d,0xf3,0x38,0xe7,0x66,0x4e,0xaa,0xa5,0xbd,0x4d,0xee,0xa0,0xd8,0x7e,0x69,0x7c,0xa0,0xd9,0x8a,0x32,0x2e,0x39,0x73,0x4b,0xb0,0xba,0x40,0xac,0xfe,0xac,0x73,0xd2,0x63,0x9,0x20,0xff,0x5b,0xb,0x47,0x3a,0x3a,0x3a,0x3a,0x3a,0x1,0xd8,0xd1,0xd1,0x71,0x9f,0x42,0xb2,0x7b,0xae,0xe0,0xfd,0x56,0x16,0xd0,0x96,0xc4,0x59,0x67,0x2,0x42,0x27,0xaa,0xd2,0xea,0x76,0xac,0xdc,0x82,0x12,0x77,0x50,0x3b,0x30,0x91,0x7e,0xb6,0x4e,0xbf,0x74,0xc2,0x4b,0x8f,0x90,0x2,0xa1,0xe6,0x1f,0xd5,0x1b,0x1a,0x6a,0xb7,0xa5,0x9,0xba,0x47,0x29,0x89,0x27,0xfc,0x4d,0x31,0x49,0x29,0x80,0xac,0x2e,0xa3,0x2a,0x4,0x8c,0x4c,0x8,0xa5,0xed,0x2f,0x27,0xc4,0x9c,0xe1,0xc2,0xa0,0xf6,0x5e,0x1a,0x93,0x4,0x63,0x23,0xdb,0x87,0xf,0xdc,0x4e,0x9c,0x91,0xb9,0xe8,0xc4,0x87,0xa1,0xb6,0x20,0x97,0x82,0x79,0xda,0x3,0x5,0x38,0xbd,0xfe,0x0,0xe,0xbb,0xb,0xcd,0xea,0x13,0xdb,0xd5,0xb2,0xcc,0x9c,0x91,0xe7,0x30,0x1d,0xce,0x61,0x2d,0xb5,0x4,0x67,0xe,0x29,0x2f,0xa5,0xc0,0x87,0x81,0x6e,0xb0,0x6,0xca,0x2c,0x5a,0xe6,0x3,0xfd,0x77,0x29,0xb0,0x4e,0x5a,0x13,0xd7,0xb9,0x43,0x79,0xa9,0x37,0x31,0xb4,0xea,0xdd,0x4,0x74,0x2b,0x99,0x6,0x6d,0x3a,0x14,0xf5,0x80,0x90,0xae,0x56,0xb2,0x75,0x9a,0xb6,0x46,0x9,0x12,0x2f,0x4d,0xe0,0x3b,0x4c,0xcd,0xd,0x5c,0xd9,0xad,0xd5,0x96,0x56,0x50,0x84,0xc0,0xb3,0x46,0xdb,0x7d,0xe5,0x26,0xa4,0xcd,0x1a,0x52,0xc2,0xf,0x6d,0x46,0x4f,0x51,0x35,0x4,0x56,0xb7,0x8b,0xa6,0x69,0xa4,0x4e,0x30,0xce,0x21,0xcd,0x13,0x4a,0xea,0xa,0xc0,0x8e,0x8e,0x8e,0xfb,0x1d,0x66,0xad,0xb2,0xe6,0xab,0x99,0x16,0x72,0x19,0xa8,0xd2,0x4b,0x22,0x1b,0x6a,0xe6,0x9a,0x14,0x5d,0x40,0xaf,0x59,0x86,0x8b,0x9c,0x52,0x5c,0xc8,0x7a,0xeb,0x3c,0xfe,0xea,0xcf,0x3c,0x85,0xa7,0x3e,0xf8,0xbe,0x4b,0x5b,0xfe,0xd8,0x27,0x3e,0x89,0xaf,0xfe,0xc5,0x4b,0x28,0x39,0x23,0xc,0x23,0xe6,0xe9,0xa0,0x96,0xd1,0x30,0x6e,0x48,0x25,0xf,0x22,0xef,0x5a,0xe5,0x5b,0x59,0x15,0x73,0x39,0x2d,0x21,0x91,0xc2,0x2d,0xe7,0x3c,0x1e,0xbd,0xf9,0x0,0xfe,0xf3,0xff,0xf4,0x6f,0xc1,0xbb,0xb5,0xc1,0xe9,0x70,0x98,0xf0,0x85,0xa7,0xff,0x67,0xbc,0xf8,0xf2,0xab,0x1a,0xc1,0x61,0xbc,0xe1,0x1c,0x43,0xcb,0x11,0x1d,0x74,0x9d,0x93,0xac,0x43,0x52,0xa2,0x53,0x3e,0x61,0x5d,0xf0,0xe3,0x6b,0xaa,0xb,0x14,0xff,0xc1,0xea,0x3a,0xe7,0x5c,0x53,0x1c,0x46,0x90,0x26,0x5c,0x21,0x35,0x69,0x9e,0x0,0x58,0x67,0x35,0x7a,0xc3,0xb2,0xd2,0xcd,0x58,0xb,0xcb,0xa,0xc9,0x4a,0x3c,0x3a,0xe4,0x66,0xa6,0x93,0xb3,0xcc,0x4b,0xa,0x37,0x2f,0x7,0x52,0xd4,0x39,0xa7,0x11,0x1c,0xba,0x10,0x9a,0x33,0x93,0x64,0xa2,0x88,0xb4,0x6a,0xe9,0xb5,0x8e,0xae,0xc3,0x16,0x46,0x55,0x7d,0xd6,0x7a,0xc0,0x14,0x9d,0x6b,0x51,0x79,0x4b,0x25,0x59,0x89,0x94,0xa5,0x82,0x33,0xcb,0x84,0x5d,0x3b,0x46,0xa5,0x55,0xb8,0x19,0x3,0x1f,0x2,0x39,0x1e,0x72,0xe2,0x16,0x68,0xb6,0x7a,0x1b,0xa3,0xef,0x2d,0xfb,0x25,0xf3,0x3a,0x6b,0xea,0xf9,0x68,0xf8,0x18,0x49,0xde,0xb0,0xa8,0xf1,0xac,0xf3,0x9a,0x51,0x2c,0xdb,0xc,0x61,0x40,0x8c,0xb,0x64,0xb1,0x51,0x16,0x31,0x57,0xb6,0x62,0xdb,0x58,0x9e,0xdb,0x96,0x67,0xcd,0x7,0xae,0x8b,0x82,0x6,0xe2,0x80,0x38,0x22,0xeb,0x4a,0x55,0xcd,0x9a,0xd6,0xe,0x2c,0xc4,0xe1,0xf1,0xe2,0x35,0x9f,0xab,0xcd,0x54,0xb7,0xa3,0xa3,0xa3,0xa3,0x13,0x80,0x1d,0x1d,0x1d,0xf7,0x37,0x6e,0xbf,0xf4,0x4d,0x9c,0x9c,0xde,0xa0,0x36,0xba,0x5c,0x43,0xa4,0xd7,0x21,0xce,0xed,0xdc,0xaa,0x54,0xd2,0x89,0x6d,0xa8,0x89,0x9,0x43,0xc9,0x95,0x33,0x4d,0xd0,0x72,0x1b,0x32,0xdd,0x2a,0xd5,0xd0,0xda,0x49,0x8f,0xec,0xc2,0xd6,0x5a,0x44,0xd9,0x16,0x5b,0x7e,0x96,0x79,0xae,0xa4,0x14,0xaf,0xf2,0xda,0x9c,0xd4,0xba,0x63,0x2d,0x4d,0x1a,0x63,0xa4,0x55,0xfe,0x65,0x9e,0x75,0xfb,0xde,0x57,0xf5,0x80,0x73,0x1e,0xa9,0xc9,0xb1,0xb,0x61,0xc4,0x74,0xd8,0x31,0x39,0xc6,0xa,0x8,0xc9,0xe7,0x63,0x12,0x4b,0x48,0x4b,0xef,0x29,0x3f,0x27,0xc5,0xc8,0x59,0x74,0xd4,0xdc,0x37,0x8c,0x5b,0x1c,0x76,0xe7,0x88,0x71,0xc1,0xe6,0xe4,0x14,0x76,0x3a,0x68,0xeb,0xef,0xc5,0xd9,0x6d,0x58,0xeb,0x10,0x86,0x11,0xfb,0xdd,0xf9,0x6a,0x4c,0x64,0x12,0x1f,0x97,0x19,0x3e,0xc,0xdc,0xfc,0x17,0xb1,0xd9,0x9e,0x72,0x3b,0x71,0x2,0x96,0x19,0x31,0x2e,0xd5,0xf6,0xd4,0x4e,0x78,0xc5,0xa6,0xd4,0xe4,0xf9,0xb5,0xaa,0x6,0x51,0x2e,0xc8,0x94,0x58,0x56,0xb7,0xd5,0xae,0x55,0xa2,0x12,0xb9,0x26,0x92,0xda,0xc2,0x79,0x4f,0x36,0xae,0x36,0xc7,0xa7,0xc8,0x84,0x1a,0xdc,0xdc,0xdb,0xac,0x98,0xf3,0xcd,0x91,0xdc,0xc,0x21,0x4a,0xc8,0x79,0x7d,0x7d,0xbb,0xda,0x2e,0xea,0x3e,0x1a,0xdb,0x56,0x29,0x68,0xeb,0x3e,0x5b,0x3a,0x4f,0x52,0xa2,0x4c,0xc3,0xdd,0xf9,0x5d,0x9c,0x9f,0x9d,0x21,0x6c,0x4e,0x71,0xb8,0xfb,0xa,0x72,0x9a,0xfa,0x1f,0x6e,0x47,0x47,0xc7,0x7d,0x8d,0x75,0x96,0x2b,0x54,0x2d,0x27,0xb,0x4f,0xb9,0x64,0xb2,0xd6,0xf2,0xf5,0xcc,0x39,0xaf,0x4c,0x14,0x5d,0xb3,0x38,0x83,0xcf,0x9a,0xe6,0xba,0x90,0x6b,0xf9,0x46,0x93,0xc5,0x7a,0xc,0xeb,0x3c,0x91,0x3d,0xde,0x57,0x25,0x59,0x4e,0x48,0xcb,0xa2,0x96,0x5d,0x2d,0x86,0xd0,0x96,0x61,0xdb,0xe4,0xec,0xd5,0x82,0x29,0x29,0xf2,0x10,0x82,0xc,0x4c,0x4e,0xe2,0x88,0x0,0x2c,0x28,0xf0,0xde,0xd3,0xb5,0x2f,0x46,0x58,0x67,0x31,0xcf,0x13,0xac,0xb1,0x88,0xcb,0x82,0x94,0x22,0x1c,0x1c,0x13,0x65,0x45,0xc9,0xbe,0x9c,0x32,0xe0,0xa0,0x16,0x64,0x9d,0x23,0x94,0x8c,0x71,0x7b,0xc2,0x6a,0x7c,0xca,0x8e,0x2d,0x29,0xa9,0x75,0x59,0x2d,0xb2,0xa6,0x68,0x36,0x5e,0x3b,0xee,0x39,0x27,0x55,0xd0,0xd,0xe3,0x48,0x73,0xa,0xb6,0x46,0x6b,0xd3,0x2e,0x3f,0x37,0xa6,0x58,0xb3,0x85,0x9b,0x16,0xdc,0xcc,0x63,0xa7,0x79,0xc5,0xa0,0xec,0xc1,0x36,0x57,0x59,0xda,0x83,0x85,0xd4,0xf4,0x3e,0xe8,0xfe,0xd5,0xc,0x47,0xcb,0x76,0x6a,0xf,0x6b,0xab,0xd5,0x5a,0x14,0x83,0xc6,0x58,0x78,0xcf,0x96,0xea,0x40,0xb6,0x66,0xc9,0x18,0x6,0xa8,0xc0,0x44,0x55,0x98,0x3c,0x3f,0xa0,0x38,0x10,0xab,0x2d,0xbd,0xa2,0x6a,0xcc,0xc8,0x3c,0x7f,0x71,0xc8,0xb1,0xd4,0x58,0x91,0x5c,0x90,0xf5,0xb8,0x26,0x14,0xc9,0x46,0x76,0x1,0x28,0xa9,0x21,0x83,0xb3,0xda,0x87,0x63,0x9a,0xd9,0xf5,0x30,0xeb,0x39,0x23,0x2e,0x85,0x76,0xbe,0x27,0xf6,0x6a,0x2d,0xf8,0x68,0x9a,0x98,0xc9,0xa,0xbd,0x66,0xe7,0x8c,0x28,0x3b,0x9b,0xa2,0x95,0x1a,0x47,0xd2,0xfc,0xac,0xd1,0x2d,0x3c,0x5f,0x41,0xcd,0x1c,0x5e,0xdb,0x5e,0xca,0xd1,0x2,0x67,0x47,0x47,0x47,0x47,0x27,0x0,0x3b,0x3a,0x3a,0xee,0x53,0x7c,0xf3,0xe9,0xcf,0x63,0x77,0x7e,0x86,0x9b,0xb7,0x1e,0x43,0x18,0x47,0x25,0xf5,0x84,0x6c,0x5b,0xad,0x50,0xf3,0xd,0x8,0x34,0x7a,0xd9,0x68,0xbb,0x9e,0xac,0xb2,0xae,0x5a,0xe3,0x24,0xe3,0x4d,0x54,0xc,0xbc,0x82,0x4b,0x93,0xb6,0xd2,0x4,0x33,0x1f,0xad,0xd8,0xa2,0xda,0x45,0xf5,0x26,0xc3,0xd0,0x2a,0x7f,0x55,0xa7,0x59,0x9d,0xc4,0x89,0xa2,0x4f,0x14,0x6e,0x39,0x45,0x14,0xa0,0xaa,0xfa,0x4a,0x5d,0xd5,0x5e,0xe6,0x79,0x75,0x43,0x64,0xd9,0xd2,0x63,0xf9,0xa6,0xa4,0xa0,0x34,0x76,0xa2,0x9a,0xff,0x13,0x86,0xd,0xee,0xee,0x5f,0xaa,0xa4,0x67,0x5c,0xc8,0xb6,0x34,0x1f,0xb4,0x64,0xe4,0xb0,0xbb,0x60,0x65,0x4,0x8d,0xe,0xe5,0xe8,0xd0,0xbf,0xaf,0xbc,0xf0,0x1c,0xa9,0x1a,0x38,0x87,0x29,0xf1,0x6a,0xb8,0x64,0xe9,0x1c,0x76,0x17,0x8,0xe3,0x6,0x79,0xbf,0x23,0x6b,0x51,0x93,0x89,0x23,0xe4,0xa9,0x40,0x9a,0x1b,0xe5,0xb3,0xab,0xaa,0x41,0x8e,0x1,0xdb,0xbb,0x74,0x8d,0x5b,0x6f,0x20,0x6d,0xb5,0xe1,0x96,0x4a,0x8,0xca,0x44,0x9b,0x72,0x17,0x59,0xc1,0xd0,0x28,0x39,0xe4,0x3d,0xef,0x9,0x26,0x76,0xd7,0xe5,0x1c,0xf5,0x46,0x48,0xd4,0x7,0x74,0xa,0x88,0x5d,0x38,0xd5,0x6d,0xe2,0x72,0xf6,0x4e,0xe1,0xd6,0xe5,0x69,0xbf,0xc7,0xd9,0xd9,0x19,0x50,0x32,0xa6,0xbb,0xcf,0xa1,0xa4,0xb9,0xff,0xd1,0x76,0x74,0x74,0xbc,0x1,0xd0,0x2c,0x8c,0x49,0xe6,0x2b,0xad,0xb4,0xe9,0x82,0x4c,0x2d,0x63,0x32,0x1a,0x81,0x1,0x2e,0xe4,0xf2,0x7e,0x40,0x5a,0x16,0xb2,0x87,0xa6,0x84,0x30,0x8c,0x4c,0x0,0x7a,0x2e,0xe0,0x70,0x7c,0x9d,0xb8,0xea,0x2b,0xdd,0xb0,0xdd,0x35,0x6a,0xe,0x9d,0x73,0x42,0x2c,0x2d,0x64,0x2b,0xd6,0xb6,0x61,0xba,0x4d,0x49,0xcd,0x22,0x9b,0xf3,0xb4,0xa0,0xe5,0xc2,0xc8,0x25,0x5e,0x5c,0xac,0xc5,0x84,0xe1,0x55,0xc4,0xa3,0x51,0x47,0x40,0x81,0x1f,0x6,0x6a,0xc5,0x75,0x81,0xca,0x25,0xb8,0x51,0x58,0x8,0xa1,0xaa,0x66,0x27,0xd5,0xbc,0x28,0x12,0x25,0xeb,0x8f,0x94,0x8e,0x11,0x71,0x59,0x74,0x3f,0x65,0xc1,0x8d,0xae,0x55,0x86,0xf7,0xc7,0x69,0xfe,0xad,0x7c,0x6e,0xf0,0xb8,0x7a,0x3f,0xb0,0xfa,0xb0,0x68,0xf6,0x9f,0x6c,0x63,0x95,0xcb,0x67,0x2d,0xc,0xbc,0xda,0x80,0x9d,0xab,0x8a,0x77,0xc7,0x8f,0x49,0xfe,0xb0,0xcc,0xa9,0x88,0xb8,0x5b,0x2f,0x86,0x26,0xce,0xeb,0xb3,0xce,0xeb,0x2,0x63,0xbb,0x50,0x2a,0x9f,0x2d,0xa5,0x48,0xc7,0x32,0x67,0xe4,0x92,0x6a,0xee,0x63,0x93,0xad,0x2c,0xd7,0x74,0xca,0x11,0x2e,0xab,0xc5,0x5c,0x21,0x4a,0x2d,0x67,0x2d,0x52,0x4c,0x49,0x24,0x37,0x4,0xe7,0x3b,0xaa,0xb2,0x1f,0x50,0x8b,0x77,0x66,0x65,0xbf,0x28,0xfc,0xc3,0x10,0x10,0xd9,0xc5,0x60,0x8c,0x5,0x6c,0xae,0x11,0x2a,0xcd,0x98,0xd2,0xf1,0xa0,0x63,0x94,0xa5,0xdc,0xad,0x71,0x6,0xac,0xac,0xb9,0x6c,0x51,0x56,0x62,0x94,0xc7,0xac,0x5d,0x74,0x2e,0xda,0x64,0x8c,0x26,0xff,0xaf,0x5a,0x83,0x65,0x5e,0xba,0x26,0xf3,0x38,0x6e,0xc4,0x34,0xf3,0x53,0x53,0x56,0xb9,0xd7,0x25,0xaf,0x17,0x2e,0x3b,0x3a,0x3a,0x3a,0x3a,0x1,0xd8,0xd1,0xd1,0x71,0x5f,0xa2,0x94,0x82,0x3b,0x2f,0xfe,0x39,0xee,0xbe,0xf4,0x17,0x70,0xc3,0x86,0x9a,0xfa,0x42,0x40,0x13,0xd7,0xd6,0xac,0xa4,0x42,0x2d,0x1e,0x92,0x4f,0x44,0xab,0xb3,0x99,0xdb,0xf7,0x86,0x9a,0x5b,0x64,0x2c,0x72,0x22,0xe5,0x1a,0xa9,0xe8,0x78,0xb5,0xd8,0xba,0x23,0x32,0xd0,0xd5,0x89,0x71,0x4a,0xb0,0x2e,0x20,0xe7,0xa8,0x13,0xc9,0x9c,0x16,0xb6,0xab,0x8c,0xc8,0x69,0x21,0x9a,0x90,0xed,0x1c,0xc6,0x5,0x2d,0x84,0x90,0x1b,0x9b,0x36,0x53,0x50,0x26,0x94,0xb4,0x72,0x1e,0x74,0xc2,0x28,0xa4,0x59,0xd,0x92,0xae,0x8a,0xb6,0x61,0xdc,0xf2,0x4a,0x34,0xb4,0x90,0x84,0xec,0x3a,0x3c,0xa1,0x2d,0xb5,0x40,0xc4,0xfb,0x1,0x87,0xdd,0x19,0xbf,0xf,0xd9,0x5f,0xcf,0xef,0x72,0x58,0xb6,0x1,0x52,0x9c,0xe1,0xc2,0x6,0x28,0x9,0x29,0x26,0x94,0xbc,0xc0,0xe,0xd7,0x50,0xe2,0x1,0xc6,0x7a,0x52,0xff,0x4d,0x3b,0x18,0x37,0xd0,0x64,0xdc,0x79,0x98,0x92,0x48,0x19,0x7,0x68,0xae,0x12,0x4d,0x7a,0x49,0xc1,0xd0,0x66,0xe9,0x0,0xdc,0x4,0x58,0x40,0xd9,0x45,0x6c,0x17,0x2e,0x0,0x65,0xeb,0x0,0x5a,0x94,0x62,0x9d,0x47,0x5a,0x26,0xc0,0x58,0xb5,0x53,0x83,0x57,0xe9,0x53,0x9c,0x28,0xf0,0x7d,0x3c,0x45,0x9c,0x2e,0xe0,0xc2,0x6,0xa5,0x24,0xb6,0x2f,0xcd,0x70,0x9e,0x6e,0x1c,0x73,0x9c,0x60,0x6c,0xd0,0x1b,0x12,0x94,0x4,0x18,0xc7,0x37,0x7b,0x13,0x3c,0xdf,0x94,0x48,0x5e,0xa0,0xd8,0x9c,0x34,0xd7,0x2f,0x67,0xd1,0x11,0xf2,0x8d,0x93,0x81,0xf5,0x3,0xd2,0x32,0x29,0xd1,0x49,0x8d,0xd0,0x74,0x33,0x93,0x96,0x85,0x6e,0x1a,0xe6,0xb,0xfa,0x7c,0x1d,0x1d,0x1d,0x1d,0x6f,0x94,0x6b,0xb3,0x16,0x7c,0xd4,0x4c,0xbd,0xd2,0xc4,0x2e,0xc0,0x18,0xc4,0xb4,0xc0,0xb9,0xa0,0x5,0x4a,0xd6,0x58,0x14,0x3,0x38,0xcb,0x99,0xa9,0x21,0xa8,0x4a,0x4a,0x88,0x23,0xf9,0xfe,0xa5,0x6b,0x6c,0xbe,0xc7,0xbc,0x0,0xac,0x2a,0xb,0x48,0x31,0x32,0xc9,0x46,0xd7,0x65,0xe7,0xbd,0xee,0x57,0x18,0x28,0x13,0x50,0xec,0xbe,0xa2,0x38,0x13,0x62,0xa9,0x46,0xb3,0xc9,0x42,0xda,0x48,0xcf,0xbb,0x8a,0x1,0x64,0x1b,0xb3,0xf7,0x81,0x17,0xc1,0x1c,0xcd,0x45,0x78,0xdf,0x49,0x5,0x97,0xb8,0xc4,0xb,0xd5,0x42,0xca,0x64,0x99,0x77,0x44,0x3a,0xd2,0x38,0x59,0x55,0x2d,0x1a,0xe3,0xe0,0x1d,0x29,0xfc,0x96,0x79,0x62,0x12,0xb0,0xa8,0xbd,0x57,0x4b,0xb4,0x78,0x9c,0xc4,0xd6,0x9b,0xb8,0xc0,0xc4,0x3a,0x72,0x14,0x58,0x2e,0x3d,0x93,0x7d,0xa1,0x60,0xe4,0xcc,0xa4,0x9f,0xd7,0xcc,0x5f,0x99,0x1f,0x88,0xe5,0x78,0x95,0x5f,0xc7,0xdb,0x13,0x47,0x2,0x0,0x8d,0xe2,0x10,0xab,0xb1,0x94,0x70,0xc8,0x2,0xa8,0xbc,0x3f,0xd9,0x8b,0x9d,0x12,0x62,0x4b,0xa6,0x5c,0xbf,0x65,0x9e,0x35,0x3b,0x58,0x7e,0xaf,0x5,0x64,0xc6,0x22,0x9b,0xa4,0x73,0xb6,0x94,0xc8,0xee,0x5b,0x5c,0x2d,0x1f,0x89,0xcb,0xc,0x3f,0x50,0xf9,0x49,0x4a,0x91,0xcf,0x93,0xd,0x96,0x69,0x8f,0xc0,0xca,0x48,0x52,0x72,0x1a,0x6d,0x54,0x6,0x13,0x99,0xed,0xa2,0xab,0x69,0xa,0xc1,0xc4,0x75,0x21,0x64,0xa2,0x38,0x35,0x44,0x65,0x47,0x85,0x32,0xd,0x29,0xc9,0x63,0x2f,0x2e,0x0,0x9a,0x1f,0x38,0x8d,0x2f,0x91,0xf9,0x59,0x69,0x82,0x1,0x8b,0xfc,0xcc,0xf,0x9,0x75,0x57,0x0,0xb5,0x4e,0xcb,0x79,0xa6,0x25,0x71,0xd0,0x27,0x5c,0x51,0x2e,0xdc,0x89,0xbf,0x8e,0x8e,0x8e,0x4e,0x0,0x76,0x74,0x74,0xbc,0xa1,0x88,0xc0,0x8c,0x38,0xed,0x10,0xa7,0xdd,0x77,0xf8,0x8a,0xbf,0x84,0x95,0x52,0xe3,0x98,0x70,0xfb,0x36,0x4f,0xb3,0x1e,0x25,0xc7,0xef,0xcb,0x26,0x77,0xdf,0xdb,0x8e,0xde,0x73,0x2c,0xd2,0x72,0x58,0xfd,0x9c,0xf7,0xaf,0xea,0x6b,0xe2,0xc4,0xaf,0x89,0xdf,0x81,0xa5,0x55,0x2c,0x33,0x25,0x7f,0xc7,0xe3,0xb2,0x7a,0xb9,0x71,0x57,0x92,0x68,0xed,0xe3,0xd3,0xf9,0xab,0xdf,0x97,0xcf,0x6c,0xdd,0xd0,0x90,0xa5,0xeb,0xe3,0x49,0xab,0xf4,0xe9,0x5b,0x1f,0xb7,0xc6,0x42,0xde,0xd1,0xd1,0xd1,0xf1,0xc6,0xbd,0x2e,0xaf,0x8b,0xb7,0xac,0x25,0x82,0x2f,0x45,0x29,0x86,0x72,0x48,0x71,0x56,0x45,0x18,0x11,0x4b,0xb4,0xc8,0x63,0xd8,0x6a,0x4a,0xdf,0xc9,0x54,0xb8,0x21,0xc4,0x95,0x95,0x28,0x7,0x63,0xee,0x71,0xbd,0x30,0x1c,0x7,0xb1,0xd4,0x7c,0x37,0x90,0x9d,0x17,0x91,0xb3,0x5d,0x59,0xa1,0x28,0x96,0xdd,0x9c,0x13,0x6,0xbf,0xa5,0xfc,0xb7,0x61,0xd4,0x5,0x39,0x30,0xf9,0x92,0x62,0xe4,0x26,0x5f,0x77,0x4f,0xb2,0xc5,0xb3,0x5d,0x98,0x94,0x6b,0x59,0x9,0x31,0x21,0xcf,0x9c,0xb4,0x0,0x83,0x15,0x7d,0xce,0x23,0x96,0x85,0xaf,0x37,0x85,0x9f,0x13,0xb8,0xd1,0x3e,0xa9,0xe2,0x5d,0x62,0x3c,0x44,0xa1,0x58,0x6c,0xc1,0x32,0x1d,0x60,0xdd,0x8,0x6b,0xc,0x12,0x93,0x59,0xc9,0x1c,0x29,0xd7,0xd8,0x6e,0xed,0x24,0x93,0xcf,0x39,0xa4,0x98,0xd9,0x71,0xc0,0x76,0xe4,0x52,0x5d,0x4,0x42,0xe2,0x89,0xfd,0x57,0x88,0x45,0x6b,0x24,0xf7,0x98,0x79,0xc3,0xe6,0xfd,0xe3,0x32,0x6b,0xae,0xa0,0xf3,0x5e,0x2d,0xca,0xb4,0xef,0x65,0x45,0x96,0x2d,0xf3,0x4c,0x79,0x82,0xd6,0x52,0x11,0xd9,0x32,0x63,0x18,0x37,0x1a,0xf3,0x21,0x45,0x61,0x42,0x48,0x46,0x5e,0x20,0x75,0xdc,0x52,0x2c,0x76,0x5f,0xc3,0x24,0xe4,0xb8,0x61,0xd2,0xb6,0x0,0x31,0x2d,0xea,0x7e,0x88,0x71,0xe6,0xec,0x64,0x3e,0x7f,0x1a,0x75,0xbf,0x93,0xe7,0x2c,0x33,0xa,0xb2,0x3a,0x3c,0x24,0xfb,0x4f,0x1c,0x19,0x92,0x47,0x49,0xe5,0x27,0xae,0x12,0xac,0x8e,0x2d,0xe1,0xb9,0x68,0xbe,0xa3,0xe6,0xf3,0x29,0xc1,0x57,0x2d,0xeb,0x12,0x9,0x22,0xd3,0xe,0x21,0xaf,0x57,0xf1,0x34,0xb9,0x29,0x8e,0x13,0x62,0xb0,0x80,0xb3,0x89,0xcb,0xaa,0x74,0x4c,0xde,0x43,0x94,0xad,0xd2,0x35,0x66,0xee,0xf1,0xb7,0xd0,0xd1,0xd1,0xd1,0xf1,0x83,0x80,0xed,0x43,0xd0,0xd1,0xd1,0xf1,0x3a,0xbc,0x35,0xf9,0x4b,0xd8,0xc4,0x77,0x46,0x72,0x7d,0xbf,0xc8,0xbf,0xbf,0xdc,0xb1,0xf8,0x2e,0x5f,0x53,0x72,0x55,0x6b,0x7c,0xf,0x6a,0xb8,0x7b,0x29,0xe8,0xbe,0x77,0x65,0xdd,0xbd,0xf7,0x3f,0xa7,0xf9,0xea,0x7d,0x2c,0x69,0xb5,0xbd,0x7b,0x1e,0xb7,0x4e,0xfe,0x75,0x74,0x74,0xbc,0xd1,0x27,0xff,0x62,0xc5,0x6c,0x98,0x18,0x69,0xc6,0x15,0xa5,0x17,0x0,0x56,0x84,0xd7,0xe2,0x24,0xcd,0x7d,0x2d,0x58,0x91,0x59,0xb5,0x18,0x84,0x94,0x6c,0xc6,0xd9,0x7b,0x12,0x80,0xf4,0x35,0xcc,0x84,0x1f,0xab,0xa9,0x9c,0xf,0x4a,0x8,0x4a,0x8c,0x86,0x12,0x6a,0x9c,0xb7,0x27,0xf1,0x1c,0x71,0x99,0x41,0x84,0x94,0x57,0x5b,0xf2,0x30,0x6e,0x88,0x28,0xb2,0xee,0x5b,0x7c,0xea,0x4c,0xcf,0x2b,0x85,0xcb,0xb8,0xa8,0x3c,0x84,0x48,0x22,0x22,0x71,0x28,0xe7,0x6e,0x20,0x55,0x3b,0xdb,0x7a,0x25,0x37,0xd7,0xfb,0x80,0x30,0xc,0xf0,0x61,0xc0,0x30,0x6e,0xe0,0xc3,0x80,0x10,0x46,0x8e,0xe3,0xb0,0xd8,0x6c,0x4f,0x75,0xfb,0x61,0xdc,0xac,0xb6,0x9c,0x12,0x11,0x55,0x3e,0xc,0xf4,0x7c,0xeb,0xd4,0xb6,0x2a,0x71,0x1e,0x12,0x61,0x42,0xad,0xb8,0x96,0xf7,0x83,0xec,0xc9,0x52,0x9c,0x41,0x63,0x83,0x26,0xf,0xcf,0x70,0x1e,0x9f,0xe1,0x18,0x13,0xce,0x6b,0xe4,0xe3,0x49,0x79,0xbf,0xa4,0xb2,0xd4,0xb6,0x61,0x51,0x25,0xf2,0xc2,0x9f,0x35,0x96,0xc7,0xb2,0x12,0x5f,0x29,0x46,0x84,0x30,0x68,0xd3,0xb3,0xf7,0x3,0x35,0xf3,0x1a,0x83,0xc4,0xf9,0x85,0xd6,0x39,0x22,0x8,0x9b,0xcf,0x40,0xc4,0xa3,0x45,0x8,0x3,0x29,0x3a,0x59,0xb9,0x49,0xe3,0xcc,0xc7,0x16,0x44,0xc6,0x8a,0xb,0x21,0x73,0x5b,0xaf,0x1,0xb4,0xd0,0xc4,0x79,0xc7,0x84,0xa5,0xd3,0x73,0x95,0xde,0xb3,0x16,0x92,0x81,0x15,0x9d,0x6d,0x46,0x31,0x54,0xe5,0x97,0x6b,0x81,0x9c,0x58,0xd9,0x5d,0x2d,0x6c,0xd1,0x5c,0x3e,0xce,0x26,0x96,0xf1,0x92,0xf7,0x20,0xa5,0x67,0x6d,0x29,0x6e,0x45,0xa5,0x5,0xe5,0x72,0x16,0xb5,0x3c,0xaf,0xd4,0xe9,0x4b,0xcd,0x61,0x84,0xee,0x43,0x47,0x47,0x47,0xc7,0xeb,0x1,0x5d,0x1,0xd8,0xd1,0xd1,0xd1,0xd1,0xd1,0xd1,0xd1,0xd1,0xd1,0xf1,0x6,0x1,0xd9,0x47,0x1,0x70,0x70,0x2,0x45,0x24,0x24,0x55,0x59,0x19,0x6e,0x2f,0xb5,0xfc,0x38,0x91,0x56,0x66,0x45,0xa0,0xa8,0x25,0x94,0x55,0x6c,0x6a,0xd1,0xb5,0x44,0xac,0xdc,0x7b,0x1d,0x87,0x88,0x91,0xcc,0xd9,0x77,0xcb,0xbc,0x20,0xc5,0x88,0x61,0xdc,0x90,0xb5,0x93,0xb,0x2b,0xc0,0xe4,0x96,0x73,0x1e,0x71,0x26,0x25,0xa2,0x58,0x43,0x53,0x8c,0xf0,0xdb,0x61,0x45,0x5a,0x12,0x59,0x19,0xaf,0xb6,0x0,0xf3,0x27,0x95,0x7c,0xba,0x81,0xb3,0x72,0xb,0xb2,0x16,0x64,0xe4,0x99,0xf2,0xe8,0x12,0x67,0xfb,0x51,0xbb,0xec,0x8c,0xc,0x51,0x95,0xdb,0x26,0x6b,0x2f,0x69,0x13,0x6f,0xbb,0x35,0x6b,0x29,0xff,0x30,0xc6,0x5,0xd6,0x18,0xe4,0xe6,0x73,0x51,0x84,0x8,0x94,0x3c,0xa,0xc3,0x6,0x31,0xce,0x55,0x5d,0xe8,0x3c,0x4a,0x5e,0xe0,0x7,0xc9,0xb4,0x4b,0x4a,0xa2,0x65,0x6e,0xd3,0x8d,0x69,0x61,0xb2,0x89,0x15,0x79,0x29,0x2b,0x29,0x46,0x84,0xac,0xd1,0x2c,0x42,0x51,0xbb,0x4b,0x4b,0x73,0xc9,0x5,0xc9,0x90,0x82,0xf,0x6c,0x89,0x6d,0xc9,0xaf,0xac,0x99,0x8b,0x5,0xc3,0x66,0xbb,0xca,0x80,0x6c,0x73,0x0,0xc7,0xcd,0x89,0xc6,0x71,0x88,0x9d,0x56,0x94,0x94,0xe2,0xa3,0xd5,0x2,0xd,0x3,0x2d,0xfa,0xa8,0x91,0x1d,0x46,0x49,0x3b,0x29,0x3f,0xa3,0xec,0xc0,0x85,0xf9,0x3b,0x22,0x84,0xd,0xc,0x97,0x98,0xd5,0xa2,0x17,0x21,0x34,0x2d,0x3c,0xb2,0xc9,0xb0,0xd6,0xa0,0x70,0x71,0x5a,0x81,0x51,0xd2,0x4f,0x22,0x63,0x6c,0xd3,0x2b,0x26,0xe7,0x36,0xe5,0x21,0xd6,0x7d,0x20,0x3b,0xb1,0x5d,0x29,0x1,0x4d,0x31,0x4d,0x71,0x1b,0x9a,0x3c,0x40,0xac,0x33,0x3,0xf9,0x77,0x74,0x7e,0x95,0xd5,0xd9,0xd6,0xe6,0x14,0xab,0x65,0xbd,0xaf,0x3f,0x76,0x74,0x74,0xbc,0xe,0xd0,0x9,0xc0,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x8e,0x37,0xa,0x24,0x3b,0x4e,0xa,0xb5,0x72,0x51,0x22,0x4a,0x2c,0x90,0x42,0x88,0x14,0x14,0x55,0xe7,0x89,0x85,0xd4,0x87,0x41,0x4b,0x33,0x9c,0x33,0x35,0x73,0xce,0x39,0xe4,0x18,0x11,0xc6,0x8d,0xb6,0xd3,0x1e,0xa3,0x94,0xc4,0x76,0x63,0xa3,0x6a,0x35,0xef,0x13,0xe2,0xb2,0xb0,0x75,0x92,0x48,0xb9,0x2,0x22,0xaf,0x72,0xa6,0x76,0x61,0xb2,0xe7,0x46,0x6d,0xa3,0x25,0x72,0xcc,0xc1,0x4,0x22,0x24,0x73,0x8a,0x70,0xc3,0xe6,0x4a,0xb,0x70,0xe1,0x32,0x9,0x63,0x2d,0x2c,0xa0,0x2d,0xaf,0x6,0xa4,0x28,0x4c,0x31,0x62,0xdc,0x6c,0xa9,0x74,0xcb,0x5a,0x8c,0x9c,0x4b,0x38,0x6c,0x4e,0x90,0xb9,0xd1,0x36,0xa7,0xa8,0x24,0x96,0xf7,0x1,0xc5,0x56,0xfb,0x6c,0xce,0x9,0xb9,0x14,0xa0,0x50,0x76,0x9e,0x81,0x81,0xb3,0xe,0x26,0x18,0xe4,0x94,0xe9,0x73,0xa4,0x8,0xe7,0x3,0xe6,0xc3,0x9e,0xc6,0x29,0x27,0x58,0x43,0x65,0x1a,0xa6,0x58,0xb6,0xba,0xd2,0x67,0x91,0x7c,0x42,0x0,0x30,0x3c,0xe6,0xb9,0x24,0x78,0x17,0x90,0x38,0xbb,0x58,0x6c,0xda,0xc6,0x78,0xcd,0x1,0x74,0x7e,0x58,0x29,0xf2,0x12,0x68,0x9b,0x91,0xf3,0x9,0xb5,0xb4,0x2c,0xc,0x95,0xa0,0x52,0x32,0x2e,0xa8,0xa,0x2e,0xc5,0x85,0xb3,0x97,0x89,0x1c,0x6d,0x73,0x83,0xc5,0xf2,0x6c,0x59,0xdd,0xa7,0x79,0x87,0xa0,0x82,0x98,0x1c,0xa3,0xee,0x9f,0xe5,0x2,0x12,0xc9,0x2c,0x74,0xd6,0x6b,0x89,0x8a,0x1b,0x6,0x26,0x6f,0x2d,0x72,0xca,0x55,0x35,0xc9,0x25,0x1f,0xc5,0x34,0x84,0x9f,0x64,0xb,0x73,0x16,0x25,0x8d,0x3b,0xb4,0xf1,0xd8,0x71,0x6b,0x72,0x29,0x4c,0x5a,0xe7,0x44,0xb9,0x7f,0xac,0x4a,0x4c,0x29,0x69,0xd6,0xb4,0x90,0xda,0x9a,0x15,0x6d,0x28,0x5b,0x51,0xb2,0xff,0xc,0x38,0x37,0x11,0x46,0x8f,0xb7,0x94,0xa2,0x9,0xb1,0xa7,0xd9,0x8b,0x72,0xaa,0xb5,0x2c,0xb0,0x1,0xfb,0x83,0x8d,0xe6,0x3,0xca,0xdf,0x57,0x47,0x47,0x47,0xc7,0xeb,0x1,0x9d,0x0,0xec,0xe8,0xe8,0xe8,0xe8,0xe8,0xe8,0xe8,0xe8,0xe8,0x78,0xa3,0x40,0x1b,0xf,0xd6,0xa4,0x84,0x34,0xfe,0x96,0x4c,0xa,0x33,0x2a,0xad,0xb2,0x9c,0xd5,0x57,0x9a,0x97,0x33,0x19,0x63,0x85,0x3c,0x31,0x18,0xc6,0xd,0x95,0x58,0x30,0xc1,0x72,0xaf,0xdc,0x33,0x63,0x49,0xad,0xb7,0xcc,0x93,0x16,0x67,0x1c,0xe6,0x83,0x36,0x9,0x4b,0xab,0xad,0x77,0x1e,0x71,0x99,0xaa,0x35,0x13,0x85,0x2c,0xa7,0x92,0x83,0x97,0x22,0xe7,0x4,0x92,0xd5,0xb5,0x48,0x2e,0xde,0x15,0xdb,0x14,0x65,0x9e,0xb5,0x54,0x88,0x35,0x4f,0x7b,0xfd,0xbc,0x62,0x4f,0x4d,0x4d,0xd9,0x44,0x9b,0x15,0xe8,0x3c,0x91,0x91,0x26,0x5b,0x84,0x71,0xc0,0x7c,0xd8,0xd3,0x76,0xbc,0x43,0x10,0x32,0x8b,0xcb,0xbc,0xa8,0x38,0x83,0x3e,0x93,0x10,0x65,0x0,0x97,0x77,0xf1,0xfb,0xd,0x9b,0x2d,0x11,0xaa,0xdc,0xe2,0x2b,0xe5,0x65,0x71,0x99,0x75,0x3f,0x51,0xa,0x8a,0xa5,0x3d,0xa4,0xdc,0x43,0x56,0xb4,0x31,0x31,0xaa,0xc7,0x4a,0xda,0x82,0x9d,0x3,0xe0,0x6a,0x39,0x9,0x2a,0x21,0x5b,0x72,0x46,0xe0,0xdc,0xc4,0x69,0x7f,0x1,0x67,0xa5,0x71,0xd8,0x6a,0x16,0x9e,0xf3,0x3,0x8c,0x1,0x91,0xb0,0xa6,0x96,0xb4,0x10,0x19,0x9c,0x74,0xc,0xb5,0x24,0x6,0x6,0x19,0x91,0x49,0x4b,0x5b,0xc7,0xf,0x50,0xd2,0x56,0x88,0x48,0xda,0xf,0x8f,0xc0,0xa5,0x1e,0xde,0x7b,0x26,0x56,0x17,0x64,0x64,0x2d,0x79,0x11,0x68,0x19,0x59,0xa3,0xb6,0x34,0xd6,0xc1,0x48,0x6e,0x1f,0x0,0xb,0x8f,0x18,0x67,0x18,0x18,0x26,0x14,0xa9,0xb0,0x66,0x99,0x27,0xdd,0x7f,0x58,0xb0,0xad,0x9b,0xc7,0x18,0x95,0xbc,0x84,0x66,0x5c,0x46,0x6d,0xbc,0x96,0x52,0x33,0x51,0x2e,0x16,0xa0,0xaa,0xfc,0xe4,0xbc,0xcf,0xa5,0x21,0x23,0x81,0x1a,0xfc,0xd7,0x3e,0x49,0xd4,0x80,0xdc,0xa6,0x4d,0x6f,0xd4,0xbf,0x73,0x3a,0x3a,0x3a,0x5e,0x37,0xe8,0x4,0x60,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0x47,0xc7,0x1b,0x5,0x9c,0x6b,0xd6,0xaa,0x98,0x44,0xe5,0x56,0x4a,0x51,0x72,0xc9,0x87,0x50,0x2d,0xb5,0xd6,0x68,0xce,0x9e,0xd8,0x58,0x85,0x58,0x1,0xa,0x96,0x65,0x82,0x48,0xa1,0x42,0x18,0xef,0x99,0x7b,0x66,0x60,0x48,0x45,0xe8,0x3,0x65,0xed,0xc5,0x5,0xce,0x7a,0xfd,0x2d,0x6d,0xca,0x62,0x99,0xf,0xf0,0x7e,0x80,0xf5,0x8e,0xec,0xab,0xdc,0x6e,0x2b,0x6d,0xb1,0xce,0x7,0x78,0xef,0x1,0x54,0xab,0x30,0x60,0xae,0x74,0x59,0x4a,0xd6,0x1c,0x4c,0xcd,0xe3,0x33,0x96,0xd4,0x8a,0xf5,0xb5,0xc0,0xb0,0xa1,0xac,0x41,0x21,0x30,0xc5,0xd6,0xec,0x8c,0x83,0x1b,0x49,0x21,0xb7,0x39,0x39,0x5,0x0,0x2e,0x11,0x89,0x9c,0x5f,0x38,0x23,0xc,0x3,0x59,0xa4,0x7d,0x80,0x75,0x56,0x3f,0x8b,0x58,0x5a,0xd3,0x32,0x3,0xd6,0x20,0x2e,0xb,0x1c,0xdb,0x84,0x37,0xdb,0x13,0x22,0xa9,0xb4,0xc4,0xc4,0xaa,0x52,0x4d,0xd4,0x7c,0xb2,0x1f,0x99,0x3f,0x83,0x1,0x11,0x7b,0x30,0x94,0xfb,0x97,0xb9,0xd0,0x24,0xc,0x3,0xe2,0x3c,0xc3,0x5,0x26,0xdd,0x58,0xf9,0x46,0x76,0xe5,0xa2,0xc4,0xa4,0xa8,0xf3,0x84,0x30,0xb5,0x2e,0xa0,0xe4,0x44,0x8a,0x4c,0x1f,0xd4,0x42,0xac,0x39,0x90,0xce,0x23,0x29,0xd9,0x1a,0x1a,0x15,0xa0,0xe3,0x53,0xc9,0xaa,0x6a,0x33,0x2e,0xb,0x59,0xc5,0xd9,0x46,0x9c,0x96,0x5,0xc3,0xb8,0x21,0x72,0x34,0xc,0xd4,0xba,0xcb,0x9f,0xc3,0x3a,0xf,0x17,0x8c,0x36,0x40,0x5b,0x21,0x4f,0x43,0x0,0xa,0x94,0x90,0x6d,0xdb,0xa5,0x45,0x21,0x2a,0xad,0xc8,0x25,0x13,0x49,0x18,0xc2,0x48,0x45,0x27,0xce,0xd5,0xe3,0x9f,0x1,0x6b,0x29,0xb3,0x90,0xa,0x3f,0x68,0x1b,0xa2,0x7c,0x94,0xc6,0xe7,0x22,0xe7,0x3e,0xe7,0x10,0x8a,0xd2,0x4f,0x4b,0x43,0xb2,0xa8,0xf8,0xa8,0x74,0xa6,0x34,0x76,0x60,0xb2,0x3b,0xb3,0xe5,0x9d,0x5f,0xa0,0xea,0x40,0x40,0xb,0x54,0xba,0xfa,0xaf,0xa3,0xa3,0xe3,0xf5,0x84,0x4e,0x0,0x76,0x74,0x74,0x74,0x74,0x74,0x74,0x74,0x74,0x74,0xbc,0x41,0x50,0x2d,0x90,0x46,0xd5,0x4a,0x42,0xfc,0x9,0xe9,0x25,0x84,0x9b,0xd8,0x85,0x89,0x70,0xb,0x58,0x96,0x9,0xa5,0x38,0x2d,0x96,0x90,0xcc,0x3e,0x6b,0x1d,0x95,0x37,0x38,0xf,0x7c,0xb,0xc1,0x93,0xd8,0x30,0x89,0xf8,0xe2,0x26,0xd9,0x10,0xb8,0xc,0x82,0xf6,0x81,0x9a,0x7e,0xa9,0xf9,0xb6,0x0,0xc8,0x65,0x51,0x5b,0xb1,0x6c,0x8b,0xde,0x3,0xb0,0xce,0xd4,0xd6,0xdc,0x9c,0xae,0xde,0x34,0x67,0xee,0xb9,0x3,0x91,0x3e,0x4b,0x8a,0xb4,0x9f,0xce,0x62,0xb0,0x1b,0xb2,0x92,0x5a,0x4b,0xf6,0x62,0xce,0x9f,0x33,0x96,0x3e,0x9b,0x64,0xdd,0xc9,0xb8,0x29,0x89,0x54,0x8a,0xaa,0x1e,0x89,0xc8,0xe4,0xb2,0x8d,0x9c,0x0,0xb6,0xa2,0x2,0x60,0x8b,0x6b,0xe4,0xe2,0x11,0x8b,0x30,0xc,0x4c,0xd8,0x11,0x49,0x4a,0xd9,0x85,0xb9,0x16,0x59,0xb0,0xc5,0x78,0x99,0xf,0xaa,0x58,0x2c,0x99,0x94,0x98,0x3e,0x84,0x3a,0x66,0xfc,0x3a,0xe7,0x2d,0x10,0x99,0xa0,0x1b,0x6,0x55,0xfd,0x9,0xd1,0xb7,0x39,0x39,0xc5,0x3c,0x1d,0xf4,0x78,0x19,0x63,0xa8,0x18,0x84,0xb3,0x9,0x3d,0xdb,0x81,0xb5,0x78,0x85,0xdf,0x57,0xd4,0x89,0xc6,0x5a,0x98,0x65,0xe6,0xcc,0x47,0xab,0xaa,0xcc,0x76,0x5f,0x72,0xca,0x70,0x61,0x80,0x31,0x11,0xd6,0x18,0x18,0x1f,0x74,0xc,0x96,0x79,0xaa,0xb6,0xf2,0x92,0x75,0x7b,0x42,0x50,0x4a,0x31,0x8a,0xe4,0x2e,0xda,0x56,0x3d,0xc9,0x63,0x2f,0x4,0x23,0x0,0xce,0x89,0x64,0x45,0x1f,0xb8,0x9,0x9a,0xb3,0x3,0xd,0x2b,0x43,0x39,0x6c,0x51,0x15,0x83,0xe0,0xac,0x48,0xca,0xbe,0x34,0xb5,0x19,0x98,0x89,0x6c,0xb5,0xfa,0x1a,0x39,0x43,0xa9,0x6c,0x45,0x8a,0x6e,0xc4,0x16,0x4c,0xa7,0x52,0x56,0x6e,0x90,0xca,0x6f,0x12,0x93,0xa0,0x4d,0xdb,0xf0,0xa5,0xd3,0xaf,0x34,0x19,0x89,0x1d,0x1d,0x1d,0x1d,0x3f,0x58,0x74,0x2,0xb0,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xe3,0xd,0x2,0xc9,0x73,0x53,0x8d,0x52,0xd3,0x68,0x6a,0x4c,0x25,0xba,0x52,0x8c,0xd4,0x96,0xeb,0x29,0xc3,0x6e,0x66,0x62,0xc6,0x58,0xca,0xce,0xa3,0xf2,0x88,0x8c,0x71,0x73,0x82,0x14,0x17,0x78,0x33,0x7c,0xdb,0x6d,0x97,0x4c,0xa4,0x4f,0x64,0x52,0x29,0xa7,0xc4,0xea,0xb2,0x11,0x42,0x44,0x66,0x56,0x7f,0x15,0x7e,0xbe,0x61,0xe5,0xe1,0x32,0x4f,0x8,0xc3,0xc0,0xb6,0x53,0xf,0x94,0x4c,0xf9,0x71,0x83,0xd7,0x5c,0xc2,0x7b,0x21,0x4b,0xbb,0x6b,0xa6,0x36,0xe1,0xa2,0x45,0x18,0x1,0x71,0x59,0x28,0xd7,0xf,0xa4,0xf4,0xb2,0xdc,0x40,0x2b,0x76,0x64,0x70,0x96,0x9c,0x64,0xe2,0x79,0xe7,0x10,0x23,0x97,0x41,0x58,0x8b,0xe0,0x7,0x25,0x8b,0x42,0x18,0x48,0xd5,0x18,0x2,0x72,0x4a,0x69,0x1b,0xd7,0x18,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x8,0x18,0xb5,0x9,0x57,0x89,0xad,0x48,0x79,0x87,0x64,0x7b,0x2e,0xb5,0x34,0x43,0x8e,0x4d,0x4e,0x8,0xc3,0x86,0xad,0xc2,0x16,0xa9,0x64,0x2a,0x1,0x89,0xb3,0xe6,0x34,0x92,0xf3,0x54,0x8,0xd3,0xa1,0x66,0x36,0x66,0xb6,0x5,0x1b,0x6a,0xe3,0xcd,0x29,0xa9,0x75,0x9a,0xf6,0xb1,0xf9,0x1c,0x4c,0xd4,0x9,0x69,0xda,0x5a,0x6f,0xbd,0xf,0xc8,0x39,0x63,0x3e,0xec,0x31,0x6e,0xb6,0xfa,0x78,0x8,0xa3,0x92,0xa5,0xc6,0xb0,0x9a,0x73,0x3b,0xea,0xf1,0xb4,0xcd,0xb9,0x65,0x9d,0xa7,0xf7,0x44,0x2d,0x3,0xf1,0x61,0x20,0xab,0x2e,0xa8,0xbd,0x39,0xa7,0x8,0x0,0xdc,0x20,0x3c,0x20,0xa5,0x44,0xe4,0x68,0x8a,0xc8,0x29,0x33,0xf1,0xe6,0x10,0xe7,0x59,0x49,0xcd,0x24,0x4,0xae,0x49,0x9a,0x6b,0x28,0x8a,0x53,0x22,0x26,0x23,0x29,0x54,0xbd,0xc7,0x3c,0x1d,0x30,0xc,0x1b,0xcc,0xf3,0xbe,0x2a,0x57,0xe5,0xd8,0x6a,0x16,0x24,0x2b,0xfc,0xa,0x95,0xd8,0xe4,0xc4,0x25,0x2a,0xa8,0xd,0xc0,0x44,0x60,0xf2,0x43,0xf2,0xf7,0xc2,0xc7,0x5c,0x54,0x81,0xac,0xf9,0x6c,0x4e,0x76,0xfe,0x57,0xbd,0xc0,0x1d,0x1d,0x1d,0x1d,0x3f,0x78,0x74,0x2,0xb0,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xe3,0xd,0x82,0xb6,0x28,0x83,0xd4,0x59,0x85,0x5b,0x6d,0x9d,0x12,0x52,0x4a,0x10,0x71,0xe,0x9d,0x31,0x56,0x5b,0x63,0x4b,0xa2,0x2c,0x3b,0xe7,0xbd,0x92,0x40,0x62,0xd,0xa6,0xf2,0x88,0x70,0x4f,0x32,0xce,0x8,0xb1,0x68,0x28,0x2b,0x30,0xc6,0x85,0x89,0x3c,0x52,0xc9,0x59,0x67,0xf5,0xb5,0xd6,0x39,0x58,0x2e,0xa7,0x10,0x12,0x4e,0x94,0x54,0x6,0x0,0xb8,0x3d,0x97,0x48,0xbc,0x19,0xd6,0x5e,0x7,0xcc,0x15,0xdb,0x6d,0xb2,0x1,0xa5,0xf0,0x62,0x9e,0xf6,0x9a,0x25,0x68,0x1d,0x15,0x4b,0x78,0x1f,0x50,0xb8,0x64,0x42,0x8,0xa2,0xc0,0x6a,0xc4,0xc4,0x65,0x20,0xc6,0x64,0x25,0xc2,0x62,0x5c,0x60,0xe9,0x4d,0x39,0xfb,0x2e,0x61,0x5e,0x66,0x84,0x71,0x83,0x65,0x22,0xcb,0xad,0x66,0xed,0xe5,0x75,0xb9,0x89,0x5a,0x7f,0x43,0x40,0xb6,0x16,0xce,0x54,0x92,0xd0,0x3a,0xcf,0xd,0xb8,0x44,0x26,0x6a,0x89,0x88,0x23,0xd5,0x9d,0x71,0x46,0xed,0xaf,0x32,0x8e,0x4a,0x9a,0xe5,0xa2,0x4,0xaf,0x94,0x77,0x80,0xc7,0xca,0x73,0xcb,0x2f,0x91,0xae,0x19,0xc6,0x10,0x71,0x9a,0x4b,0x12,0x27,0xb7,0x2a,0x17,0x8d,0x31,0xb0,0x0,0xb6,0xa7,0xd7,0x90,0x73,0xa6,0x36,0xe3,0x65,0xa6,0xd7,0xe6,0xcc,0x4d,0xba,0x16,0xce,0x1b,0x56,0x32,0x7a,0x38,0x78,0x56,0x92,0xb2,0xca,0x94,0x55,0x74,0x61,0xd8,0xf0,0x2e,0x58,0x56,0x2d,0x56,0xf5,0xa0,0xaa,0xc,0xf9,0xdc,0x9,0xe3,0x6,0x28,0x5,0xb1,0x0,0xc6,0x64,0xce,0xf1,0x8b,0x18,0xb6,0x94,0x9d,0x98,0x53,0xc2,0xa0,0xe4,0x28,0xa9,0x1d,0xe3,0x32,0xab,0x2d,0xdc,0x18,0xca,0x27,0x2c,0x0,0x9f,0x67,0x6,0x5,0x44,0xfa,0x52,0x8e,0x61,0x55,0x5b,0x16,0x56,0x9,0xd2,0xcf,0xb4,0x6f,0xd2,0x0,0x4c,0xc5,0x31,0xf4,0xfb,0x8c,0xd2,0x64,0x51,0x82,0x7e,0x6,0xe8,0x5c,0x6b,0xc8,0x3f,0xd6,0xe,0x5e,0x22,0xfb,0x88,0x9c,0xed,0x35,0xc0,0x1d,0x1d,0x1d,0xaf,0xf,0x74,0x2,0xb0,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xa3,0xe3,0x8d,0x2,0xb6,0xb0,0x8a,0xfa,0xab,0x70,0x36,0x5b,0x29,0x5,0x59,0x5a,0x78,0x59,0xfd,0x66,0xad,0x69,0xf2,0xde,0x8c,0x96,0x41,0xe4,0x9c,0x60,0x12,0x91,0x36,0xd6,0x1a,0x25,0x7,0xe9,0xed,0xbf,0x15,0xd1,0xc1,0x99,0x76,0x39,0x55,0x62,0xce,0x10,0x49,0x26,0xaa,0xbb,0x30,0x6,0xcc,0xd3,0x81,0x88,0x24,0x4b,0xaa,0x2e,0x94,0x82,0x5c,0x8a,0x66,0xed,0x11,0x81,0x65,0xb5,0x70,0x43,0x8,0xb8,0x2b,0x95,0x56,0x4c,0x86,0xd5,0x3c,0xbc,0x3,0x8c,0x31,0x94,0x5b,0x58,0x88,0x68,0x74,0x3e,0x70,0x36,0x62,0xc1,0x38,0x6c,0x11,0xe3,0xc,0x1b,0x6,0xb6,0xe3,0x4e,0x8,0xc1,0xe3,0x91,0x1b,0x27,0x78,0xfb,0x5b,0x6e,0xe1,0xd6,0x43,0xd7,0x71,0xb2,0xdd,0x60,0x18,0x2,0x96,0x25,0xe2,0xee,0xf9,0x5,0x5e,0x7c,0xe5,0xc,0xcf,0xbd,0xf0,0x32,0x5e,0xbc,0xe3,0x11,0x53,0xd1,0xb2,0x92,0x85,0xcb,0x3d,0x52,0x29,0x88,0x71,0x41,0x18,0x6,0xcd,0x9f,0xa3,0x46,0x5a,0x7a,0x9e,0x90,0x7f,0x37,0x1f,0xbc,0xe,0x53,0x32,0xa,0xb6,0x6c,0x79,0x2e,0x88,0x31,0xe2,0x95,0x3b,0x67,0xa4,0x7e,0xb4,0xdc,0x82,0xb,0x83,0x18,0x17,0x38,0xc7,0x4a,0xbf,0x4c,0xc4,0x61,0x18,0x3c,0x72,0x8a,0x78,0xf0,0xc6,0x29,0xd9,0x71,0xb9,0xfd,0x38,0xe7,0x8c,0xf3,0xdd,0x1,0xb9,0x0,0x8,0x52,0x2a,0x42,0xb6,0x5e,0x67,0x83,0x12,0x6a,0xd2,0xa2,0x1b,0xc2,0x80,0xc7,0x1f,0xb9,0x81,0x77,0x3c,0xfe,0x26,0xdc,0xbc,0x71,0x82,0xed,0x66,0x84,0x73,0x16,0x17,0xbb,0x9,0xcf,0xbf,0xf4,0xa,0xbe,0xf6,0xe7,0xcf,0xe3,0xa5,0xdb,0xe7,0xd8,0x1d,0x66,0xa0,0x24,0xb6,0xc3,0x66,0xca,0xe1,0xe3,0xf3,0xcb,0x7,0xb2,0x24,0xcf,0x87,0x3d,0x36,0x27,0xd7,0x38,0x87,0x30,0xc0,0xa0,0xc0,0x8d,0x5b,0x3d,0xa7,0x4a,0x29,0xb8,0xf5,0xe0,0x29,0xde,0x72,0xeb,0x1,0xbc,0xfd,0x2d,0x8f,0x62,0xbb,0xdd,0x60,0xf0,0xe,0xbb,0xfd,0x1e,0xb7,0xef,0x9e,0xe3,0xeb,0xcf,0xbe,0x88,0xa7,0x9f,0x7b,0x9,0x87,0x94,0x1,0x67,0x48,0x21,0xca,0x96,0x6f,0x1,0xa9,0x9,0x13,0x37,0x18,0x3b,0x94,0x14,0x1,0xb6,0xf9,0x8a,0x3a,0xb0,0xc8,0x39,0xce,0x79,0x7e,0x64,0xf5,0xa5,0xa2,0x16,0x51,0x6,0xca,0xdf,0x46,0x81,0x94,0xa8,0x14,0xae,0xb9,0x31,0x6a,0xf1,0x15,0x13,0x31,0x1a,0x15,0xad,0xd8,0x86,0x45,0x91,0x48,0xb9,0x80,0xcd,0xaf,0x3b,0xf9,0xd7,0xd1,0xd1,0xf1,0x3a,0x41,0x27,0x0,0x3b,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0xde,0x20,0x10,0x75,0x58,0x1,0x11,0x7e,0x0,0xd3,0x13,0xc6,0xc0,0xbb,0xb0,0xca,0xba,0x73,0x8e,0x9a,0x65,0x89,0x40,0xcb,0x9a,0x5f,0x67,0xd9,0x6,0xea,0xe0,0x61,0x3,0x65,0xb8,0x19,0x2f,0x54,0x9,0xd4,0x10,0x79,0xc,0xc3,0xd,0xac,0x94,0xf9,0x47,0x85,0xe,0x62,0xf,0x85,0xb4,0xe5,0xb2,0x1a,0xd1,0x58,0x7,0xeb,0xac,0x5a,0x5a,0xc7,0xcd,0xd0,0x58,0x3d,0x47,0x6e,0xbc,0x5,0xfc,0x38,0x72,0x8e,0x9b,0xc5,0x55,0x44,0xb,0xd9,0x3c,0x49,0xe5,0x45,0x7b,0x65,0xb4,0x9,0x58,0xb2,0xf1,0x7c,0x8,0x28,0xb9,0x20,0x84,0x91,0x2d,0xc9,0x44,0xb6,0x5d,0x3f,0x19,0xf1,0x93,0x3f,0xf1,0x6e,0x7c,0xf0,0xc7,0xde,0x8d,0x5b,0x37,0x1f,0xc4,0x30,0x84,0x7b,0x36,0x1c,0x4f,0xf3,0x8c,0x97,0x5e,0xbe,0x83,0x3f,0xfd,0xc2,0x57,0xf1,0xb1,0x3f,0xfe,0x1c,0x5e,0xbe,0xbb,0x27,0x62,0x94,0x55,0x87,0x64,0x5b,0x35,0xf0,0xc6,0x22,0xc5,0x5,0x9b,0x93,0x6b,0xc8,0x29,0x21,0x97,0xc,0x6b,0x2c,0xac,0x2b,0xf8,0xaf,0x7f,0xe5,0x6f,0xe3,0xe6,0xcd,0x7,0xe5,0x40,0x1,0x6,0xf8,0xc6,0x33,0xcf,0xe1,0xbf,0xfb,0x27,0xff,0x52,0xb,0x4b,0x2c,0x9c,0x6e,0x53,0xda,0x8d,0x5d,0x53,0x3e,0xf1,0xae,0xb7,0xbf,0x19,0xff,0xd5,0xaf,0xfc,0xc7,0xa4,0xa6,0xa4,0x5a,0x5c,0xa0,0x14,0xfc,0xda,0xbf,0xfe,0x3d,0xfc,0xce,0x1f,0x7e,0x81,0x9b,0x75,0x2d,0xd9,0x75,0x73,0x52,0xb2,0x12,0x86,0x8a,0x33,0x7e,0xe6,0x3,0xef,0xc1,0xcf,0xfc,0xe4,0xfb,0x71,0xeb,0xe1,0x7,0x31,0xc,0x57,0xdb,0xba,0x63,0x8c,0x78,0xf9,0xd5,0x3b,0xf8,0xdc,0x17,0xbf,0x86,0xdf,0xff,0xe3,0xcf,0xe3,0x1b,0xcf,0xbd,0x4,0x2b,0x8a,0xd0,0x9c,0x61,0x9d,0xa9,0x24,0xaf,0xb5,0x38,0xec,0xcf,0x31,0x6e,0x4e,0xb8,0x2c,0x64,0x86,0x75,0x16,0x27,0xdb,0xd,0xfe,0xca,0xbb,0x1e,0xc7,0x47,0x3e,0xf4,0xa3,0x78,0xcb,0x9b,0x6f,0x61,0xbc,0xc7,0xd8,0xa6,0x94,0xf1,0xca,0xab,0xaf,0xe2,0x33,0x9f,0xfb,0xa,0xfe,0x9f,0xdf,0xfb,0x13,0xdc,0xbe,0x7b,0x8e,0x69,0xbf,0xe3,0x32,0x94,0x4a,0x22,0x1a,0x5b,0x50,0xa2,0x9c,0xd9,0xd4,0x3e,0x8c,0x14,0xa5,0xd2,0x17,0x29,0x2e,0x28,0xa8,0xe7,0xb4,0x6d,0xac,0xcc,0x24,0xdc,0x63,0x1b,0x30,0x17,0x9b,0x90,0x15,0x9d,0x9,0x57,0x1e,0x43,0x51,0xf9,0x49,0xc1,0x87,0xe5,0xe7,0xca,0xf1,0x22,0x9b,0x30,0x67,0xfe,0xad,0xce,0xc5,0xae,0x0,0xec,0xe8,0xe8,0x78,0x7d,0xa0,0x13,0x80,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x6f,0x10,0x68,0xe1,0x4,0xa0,0x9c,0x4,0xa9,0xb6,0x32,0x97,0x6e,0x64,0x25,0x99,0xa6,0xc3,0xe,0xce,0x5,0x2a,0xc5,0x60,0xb,0xa7,0xb4,0xe4,0x3a,0xe7,0x89,0xa8,0x83,0x51,0xdb,0xaf,0xb5,0x46,0x15,0x60,0xf7,0x82,0xe1,0x72,0xf,0x0,0x70,0xde,0x63,0x99,0x26,0x25,0x72,0x1c,0x67,0xcf,0x39,0x47,0xf6,0xd4,0x94,0x16,0xb5,0x6e,0x52,0xbe,0xdc,0xa2,0xed,0xc1,0x42,0x12,0x8a,0xea,0x4b,0xac,0xc2,0x57,0x7d,0x5e,0xb2,0xf4,0x26,0x2c,0xf3,0x84,0xc8,0xed,0xbd,0x25,0x27,0xca,0x88,0x1b,0xb7,0x4c,0xfc,0x90,0xca,0xab,0x94,0x8c,0xc1,0x8f,0xf8,0xf9,0xf,0xff,0x28,0x7e,0xfa,0xa9,0x1f,0xc5,0x8d,0xeb,0xd7,0xee,0x49,0xfa,0xb5,0x18,0x87,0x1,0x8f,0x3f,0x76,0xb,0x8f,0x3f,0x76,0xb,0x1f,0xfd,0xf0,0xfb,0xf1,0x47,0x9f,0xfa,0x1c,0x7e,0xe3,0xdf,0xfe,0x9,0xce,0xf6,0x13,0x4a,0x21,0x5,0x62,0x8a,0xd4,0x56,0x3b,0x6c,0xb6,0x98,0xa7,0x3,0x60,0x0,0x67,0x3d,0x93,0x94,0x6,0x9b,0xcd,0x88,0xed,0x66,0x5c,0xbf,0xef,0x38,0x6a,0xa6,0xdf,0xb2,0xcc,0xda,0xcc,0x2c,0xa5,0x28,0x61,0xe0,0xc,0x3e,0xce,0x67,0xf4,0xde,0x63,0xbb,0xdd,0xa8,0x9d,0x57,0x6f,0xfa,0x58,0x61,0xe9,0x7c,0x50,0x2,0xd6,0xb2,0xda,0xd3,0x58,0x8b,0x7,0xae,0x5f,0xc3,0xdf,0xff,0xeb,0x1f,0xc6,0x8f,0xbc,0xfb,0x87,0x2f,0xbd,0xf6,0xd2,0xd,0xa4,0xf7,0x78,0xf4,0xd6,0xc3,0x78,0xf4,0xd6,0xc3,0xf8,0xc8,0x53,0xef,0xc7,0x67,0x3e,0xfb,0x45,0xfc,0xf3,0xdf,0xf8,0x3d,0x5c,0x1c,0x24,0x4f,0x51,0x72,0xf2,0x28,0x23,0x52,0x32,0x1,0xc1,0xb9,0x8b,0xef,0x78,0xec,0x61,0xfc,0xbd,0x5f,0xfa,0x28,0xde,0xf6,0xd6,0x37,0xc3,0x7e,0x9b,0xb1,0x75,0xce,0xe2,0xd6,0x23,0xf,0xe3,0xe7,0x7f,0xf6,0x61,0x3c,0xf5,0x81,0x1f,0xc1,0xff,0xf9,0x6b,0xbf,0x85,0x8f,0xfd,0xc9,0x17,0x55,0xd1,0x89,0xa6,0xd5,0x18,0x80,0x5a,0xa7,0xa5,0x30,0x46,0xca,0x3f,0x2c,0x5b,0xa0,0xc5,0xae,0xae,0xe4,0xdf,0xea,0xef,0x80,0x73,0x1,0x4b,0x2d,0xc8,0x1,0xff,0x4d,0xa8,0x12,0x50,0xce,0x6d,0x43,0xa4,0x38,0x35,0x1f,0xb3,0x35,0x9d,0xdf,0x2e,0xeb,0xf9,0x2f,0x7f,0x6b,0x9d,0xfc,0xeb,0xe8,0xe8,0x78,0x7d,0xa0,0x13,0x80,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x1d,0x6f,0x10,0x90,0x62,0xa9,0x2d,0x2b,0xa0,0xff,0x36,0xd6,0x21,0x31,0x59,0x2,0x54,0x75,0x99,0x10,0x72,0xb9,0x21,0x59,0xa4,0xbc,0x3,0x0,0x12,0x5b,0x83,0xa9,0x5d,0x18,0xb0,0xde,0xe1,0x5e,0x84,0x87,0x64,0xd2,0x39,0xe7,0x50,0xac,0xc5,0x74,0x76,0x41,0x79,0x6d,0xb,0x65,0xdd,0x79,0xcf,0xe5,0x19,0xc3,0x80,0x52,0x0,0xef,0x7,0x56,0x95,0x51,0x33,0xb1,0xf3,0x9e,0x89,0x40,0xca,0xec,0x23,0xd2,0xcf,0x5e,0x22,0x72,0xae,0xda,0x2e,0x29,0xa,0x1d,0xe2,0x61,0xc7,0x2a,0x44,0xb2,0x39,0xb,0x79,0xe6,0xc3,0x0,0x3,0x83,0x47,0x6f,0xdd,0xc4,0x3f,0xf8,0xe5,0x9f,0xc1,0xf,0xbd,0xfd,0x2d,0xdf,0x11,0xf1,0x77,0x15,0x4e,0x4f,0x4e,0xf0,0x73,0x3f,0xf5,0x14,0xde,0xf3,0xe4,0x13,0xf8,0xe7,0xbf,0xf6,0x6f,0xf0,0xa5,0x67,0x5e,0x20,0x25,0x20,0x17,0x6a,0x0,0x85,0xf2,0xff,0xd8,0x8a,0x9b,0x73,0xc2,0x38,0x6e,0xee,0xf9,0x7e,0xb,0xab,0xff,0xc,0xc,0x13,0xa3,0x44,0xe0,0x8d,0xe3,0x6,0x71,0x59,0xf8,0xf3,0xd9,0x86,0xe8,0xba,0x62,0xc,0xbc,0xaf,0x64,0x21,0x93,0x71,0x99,0xed,0xc8,0x83,0xf,0xf8,0x7,0x7f,0xe3,0xa7,0xf0,0xa3,0xef,0xfe,0xa1,0xef,0xfa,0xb3,0x6e,0x36,0x23,0x9e,0xfa,0xe0,0xfb,0xf0,0xbb,0x9f,0xf8,0x53,0x7c,0xe5,0xd9,0x17,0xe1,0x9d,0x41,0xc9,0xa4,0x26,0x34,0x7c,0xde,0x48,0x5e,0xa4,0xf3,0x1,0x3f,0xfe,0xde,0x77,0xe0,0xef,0xfc,0xe2,0x4f,0xe1,0xf4,0x64,0xfb,0x5d,0x6f,0xeb,0x81,0x1b,0xd7,0xf1,0x2b,0xff,0xc9,0xdf,0xc4,0x8d,0x6b,0xa7,0xf8,0xcd,0xdf,0xff,0x14,0xe2,0x3c,0x2b,0xa9,0x9a,0xb,0x65,0x15,0x1e,0xf6,0x3b,0x22,0x43,0x39,0x9f,0x52,0xf2,0xfd,0x80,0xc2,0x36,0x71,0xd4,0x72,0xf,0x2e,0xfa,0x10,0x95,0x5f,0xc9,0x40,0xe1,0xd7,0xc8,0xb9,0x24,0xe7,0x0,0xd9,0x7a,0xe9,0x41,0x6a,0xa8,0x66,0xb5,0xa1,0x3c,0xde,0x58,0x80,0xf5,0x4f,0xb,0xdf,0xce,0x12,0xdf,0xd1,0xd1,0xd1,0xf1,0x97,0x8b,0x4e,0x0,0x76,0x74,0x74,0x74,0x74,0x74,0x74,0x74,0x74,0x74,0xbc,0x41,0x20,0xa4,0x1e,0x0,0x2e,0x5f,0x70,0xb0,0x39,0xa1,0xb0,0xa5,0x11,0x40,0xcd,0x0,0x74,0x8e,0x32,0xf8,0x50,0x1b,0x72,0x1,0xf0,0x73,0xc9,0xb2,0xb,0x80,0x2d,0x93,0x50,0x92,0xea,0x5e,0x70,0x16,0x78,0xd3,0x43,0xd7,0xb1,0x4c,0x7,0x0,0xc0,0xb2,0xa1,0x46,0xdb,0x14,0x23,0xbf,0x97,0x81,0xf,0x27,0x70,0x7e,0xe0,0xed,0x0,0x21,0x8c,0x48,0x69,0x1,0x8c,0x83,0x35,0x64,0xb3,0x74,0x6e,0x3,0x63,0x1d,0x32,0x97,0x4e,0xf8,0x10,0xf0,0xf0,0x8d,0xd3,0x7b,0x92,0x2d,0x39,0xb3,0x82,0xcb,0x18,0xc,0x5c,0x4a,0x1,0x3,0x78,0x17,0xe0,0x43,0xe0,0x3c,0x3c,0x83,0xc7,0x1f,0xb9,0x8e,0xff,0xe2,0xef,0xfd,0x35,0xbc,0xe9,0x91,0x9b,0xff,0x1f,0x7b,0xef,0x15,0x2c,0x5b,0x76,0x9e,0x87,0x7d,0x2b,0xed,0xdd,0xdd,0xe7,0xdc,0x38,0x79,0x30,0x39,0x62,0x80,0x19,0x24,0x22,0x88,0x4,0x48,0x81,0x14,0x68,0x1,0x10,0xb3,0x29,0x9a,0x34,0x6d,0x52,0x2e,0xc9,0x32,0x4b,0x55,0x2c,0xdb,0x8f,0x2e,0xbf,0xf8,0xc9,0xaf,0x72,0x49,0x65,0xab,0xca,0x2e,0x8a,0xb6,0x44,0xca,0x34,0x3,0x48,0xa,0x4,0x41,0x82,0x0,0x18,0x90,0x89,0xcc,0x21,0xd2,0x60,0x30,0x39,0xdc,0x3b,0x33,0x37,0x9d,0xd0,0xbd,0xf7,0x5e,0xc9,0xf,0xff,0xbf,0xd6,0xde,0x7d,0x4e,0x9f,0x41,0xa0,0x41,0x9e,0xf2,0xfd,0xbf,0xaa,0x99,0x7b,0x4f,0x77,0xef,0xb0,0xd6,0x5e,0xdd,0xe7,0xee,0xaf,0xbf,0xf0,0xff,0xc9,0x5c,0xdf,0x70,0xdd,0x35,0xf8,0xa7,0x3f,0xfb,0x6e,0xfc,0xc6,0xef,0x7f,0x8,0x9f,0xfb,0xea,0x13,0x30,0xd6,0x22,0x27,0xca,0x3,0x4,0x50,0xcb,0x3b,0xda,0xd9,0x1c,0xf6,0x28,0xd5,0x9d,0x2,0x59,0x88,0xad,0x85,0x31,0x16,0x31,0xb2,0xca,0x8e,0x73,0x5,0x4b,0xb9,0x8,0x52,0x42,0x33,0x5f,0x30,0xc1,0xab,0x36,0xee,0x48,0x29,0xf0,0x7e,0xc6,0x96,0x63,0xad,0x35,0xde,0xf4,0xea,0x3b,0xf1,0xca,0x7b,0x6e,0xff,0x8e,0xc7,0x59,0x2c,0xb7,0x9a,0xad,0xc5,0x5a,0x93,0xea,0xb2,0x64,0x33,0x52,0x9,0x87,0xc6,0x6b,0xee,0xbe,0x9,0x3f,0xfd,0xae,0xb7,0xa1,0x6d,0x9b,0xef,0xf8,0x58,0xd6,0x5a,0xfc,0xf8,0x3b,0xdf,0x8e,0x4b,0x57,0xf6,0xf0,0x97,0x7f,0xfd,0x28,0xd9,0xd8,0x33,0x11,0x71,0x29,0x45,0x22,0x86,0xb5,0x62,0x62,0xd0,0xb2,0x15,0x19,0x50,0xd0,0x50,0x48,0xa3,0x22,0xb0,0xbc,0xf,0x12,0xb5,0x29,0x2b,0xa5,0xa1,0xd,0xaa,0xc2,0xb5,0x94,0x80,0xac,0xb5,0xf9,0xf2,0x1f,0x29,0xa5,0x9,0xe1,0xc7,0xef,0x19,0xae,0x9,0xce,0x19,0x6b,0xa5,0x20,0xea,0x9b,0xa8,0x29,0x5,0x2,0x81,0xe0,0x6f,0x13,0x42,0x0,0xa,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x57,0x9,0x8a,0xea,0x8b,0x32,0xcb,0x48,0x19,0x55,0xa,0x40,0x14,0xd8,0xa2,0x5b,0xcb,0xc,0x12,0xbc,0xf7,0xb0,0x4d,0x53,0x9b,0x5a,0x15,0x2b,0xee,0xc8,0x46,0x9b,0xa0,0x38,0x2f,0xd0,0x3a,0x4b,0x4,0xe1,0x1,0x15,0xd4,0x14,0xf,0xbd,0xf2,0x2e,0xbc,0xea,0xde,0x3b,0x38,0xb3,0x8d,0xcb,0x12,0x54,0xad,0x58,0x20,0x21,0x15,0xdb,0x88,0xb,0x91,0x58,0xac,0xb9,0x64,0xb3,0x4c,0xb5,0x7d,0xb5,0xd8,0x86,0xa9,0x9b,0x81,0x88,0x18,0x6b,0x36,0x93,0x2d,0xd6,0x39,0xb6,0x7c,0x6a,0x2e,0x90,0xa0,0x3c,0x43,0xe4,0x8c,0xcc,0x96,0xd8,0x6b,0x4f,0x6d,0xe3,0x9f,0xfc,0xe3,0x77,0xe2,0xba,0x6b,0x4e,0x6f,0x9e,0xb7,0x94,0xb1,0xb3,0xb7,0x8f,0x17,0x5e,0xba,0x84,0x97,0x2e,0x5e,0x41,0xdf,0xf7,0xd8,0xda,0x5a,0xe0,0xda,0x33,0x27,0x70,0xfd,0xb5,0x67,0xb1,0xb5,0x98,0x6f,0x1c,0xf7,0x7c,0xd6,0xe2,0x67,0x7e,0xe4,0xed,0xe8,0x87,0xf,0xe2,0xcb,0x4f,0x3c,0xcf,0x6a,0x3d,0x5,0x6b,0x9b,0xda,0x88,0x1c,0x43,0x80,0x76,0x9b,0x33,0xf0,0xca,0xb5,0xf0,0x43,0xcf,0xf6,0x55,0xd,0x3f,0xf4,0x58,0x6c,0x9f,0x44,0x8c,0x81,0x88,0xb6,0x62,0x99,0xe,0x1,0x19,0xba,0x92,0x51,0x6b,0xfb,0x61,0xc2,0xcf,0x58,0x5b,0x93,0x1a,0xad,0x73,0x70,0xce,0xe1,0xef,0xbd,0xfe,0x95,0x1b,0x6d,0xbf,0xab,0xae,0xc7,0x97,0x1f,0x79,0x2,0xcf,0x9e,0x7b,0x9,0x21,0x46,0x9c,0xdc,0x9a,0xe1,0xb6,0x57,0xdc,0x88,0x1b,0xae,0x3b,0xb3,0x66,0x8d,0x2e,0xe4,0xaa,0x31,0xb6,0x66,0x48,0x52,0x7b,0xb2,0x47,0xd3,0x92,0xea,0xf1,0xa6,0x6b,0x4e,0xe0,0x27,0xdf,0xb9,0x99,0xfc,0x8b,0x31,0xe1,0xfc,0x8b,0x17,0xf1,0xe8,0x13,0xcf,0xe0,0xfc,0x85,0x2b,0x18,0x6,0x8f,0xed,0xad,0x5,0xee,0xbc,0xf5,0x6,0xdc,0x73,0xc7,0x2b,0xb0,0x98,0xaf,0xab,0x23,0x9d,0xb3,0xf8,0xc9,0x77,0xfd,0x7d,0x3c,0xfa,0xd4,0x39,0x5c,0xb8,0x9c,0xa8,0xa8,0xa5,0x69,0x11,0x7c,0x8f,0xae,0xef,0xa8,0x4d,0x18,0x44,0x4c,0xf,0x43,0x7,0xd7,0xb4,0xb4,0x7c,0x22,0x59,0x84,0x43,0xf0,0x0,0x37,0x3d,0x2b,0xcd,0x65,0x20,0x5c,0x8c,0x53,0x88,0x41,0xa5,0xa6,0x76,0x5f,0x55,0x95,0x83,0xb9,0x2c,0x54,0xce,0x57,0xcc,0x6c,0xfd,0xa5,0x98,0x40,0x26,0x1,0xcb,0x9c,0x23,0x4b,0xb,0xb0,0x40,0x20,0x38,0x56,0x10,0x2,0x50,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0xb8,0x4a,0xa0,0x8c,0x61,0xd2,0x8c,0x40,0x64,0x9c,0x86,0xce,0xaa,0xaa,0xc7,0x8a,0xc2,0x8f,0x88,0x3e,0xcb,0x12,0x2f,0xc5,0xb6,0x4a,0x22,0xad,0x2,0x6,0x34,0xed,0x8c,0x4a,0x28,0x58,0x25,0x58,0xd4,0x53,0x99,0x15,0x86,0x7,0xa1,0xb5,0xfe,0xa6,0xf9,0x72,0x2f,0xf,0xf3,0x9d,0x8d,0x59,0x69,0xb8,0x66,0x86,0x6e,0xb9,0x47,0x24,0x1a,0x93,0x53,0xa5,0x99,0x76,0x36,0x3b,0x81,0x9f,0xfd,0xd1,0xbf,0xbf,0x91,0xfc,0xcb,0x39,0xe3,0xf9,0xf3,0x2f,0xe2,0xcf,0x3f,0xf5,0x30,0xfe,0xfa,0x1b,0xcf,0xa1,0xf,0x89,0xc9,0x38,0x5d,0x1b,0x92,0x4f,0x2e,0x66,0x78,0xcd,0xbd,0xb7,0xe0,0xfb,0xdf,0xfc,0xd0,0xc6,0x7d,0x6c,0x6d,0x2d,0xf0,0x9f,0xbe,0xfb,0xfb,0xf1,0xfc,0xaf,0xbd,0x1f,0x97,0x77,0xf9,0x1c,0xd8,0x76,0x9c,0x73,0x1a,0xb3,0xec,0xf2,0xd1,0xe7,0xaf,0xd,0x29,0xf7,0x74,0xb1,0x32,0x7,0xcf,0xf3,0x59,0xb2,0x10,0x3,0x5c,0x3b,0x83,0xb5,0x76,0x53,0x14,0xe2,0xd8,0xe2,0x9c,0x88,0x3c,0x35,0xc6,0xc0,0xb9,0x6,0xad,0x1,0xae,0xbf,0xe6,0xcc,0xa1,0xd7,0xef,0x2f,0x3b,0xfc,0xca,0x6f,0x7d,0x0,0x4f,0x9d,0xbb,0x58,0x1f,0x4b,0x39,0x21,0xa7,0x87,0xb1,0x98,0xb7,0x78,0xed,0x3d,0xaf,0xc0,0x5b,0x5e,0xf7,0x4a,0xdc,0x72,0xf3,0xd,0x3c,0x4f,0x9c,0x2f,0x98,0xa8,0x8d,0xb7,0x9d,0x91,0x1a,0x31,0xc6,0x0,0xa3,0x35,0xde,0xf5,0x3,0xaf,0xc7,0xc9,0x13,0xdb,0x87,0x8e,0x73,0xe9,0xf2,0x2e,0x7e,0xf7,0x8f,0x3f,0x8a,0xaf,0x3c,0xf9,0x62,0xe5,0x2c,0x33,0x97,0xba,0x7c,0xe4,0xf3,0x8f,0xe0,0xf4,0x56,0x83,0xff,0xec,0x1f,0xfd,0x0,0xee,0xbd,0xf3,0x96,0xb5,0xed,0xae,0xbd,0xe6,0xc,0xde,0xf1,0xd6,0xd7,0xe2,0x37,0xdf,0xff,0x31,0x6a,0x57,0x66,0x32,0xb5,0x99,0xcd,0xc6,0x16,0x5e,0xa5,0xd0,0xb4,0x73,0x22,0x7f,0x81,0x3a,0x6f,0xc6,0xd0,0x7c,0x95,0x16,0xe9,0x42,0x82,0x2b,0xa5,0x28,0xbf,0x4f,0x1,0xc0,0xa8,0xee,0xa3,0x7d,0x95,0xea,0x8f,0xa9,0x7d,0x9e,0x1f,0xc9,0x8a,0xb7,0x39,0x4a,0xfd,0x2a,0xe4,0x9f,0x40,0x20,0x38,0x1e,0x10,0x4d,0xb2,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x70,0x95,0x20,0x85,0x80,0x35,0x5f,0x63,0xce,0x54,0xaa,0xa1,0x34,0x0,0x22,0xf8,0x34,0xab,0x0,0x33,0x37,0x9b,0x96,0x62,0x8f,0x18,0x42,0x6d,0xeb,0x2d,0x8d,0xaf,0x39,0x93,0x92,0x2a,0x83,0x5e,0x53,0xca,0x39,0x8e,0xf,0x88,0xd4,0x29,0x5,0xf,0x5a,0x6b,0xf4,0x1d,0xb5,0x0,0x37,0xb3,0x5,0xb4,0xb1,0x78,0xeb,0xeb,0xef,0xc5,0xfd,0x77,0x1f,0xb6,0xc0,0xe6,0x9c,0xf1,0xd9,0x87,0x1f,0xc1,0xbf,0xf9,0x7f,0x3e,0x84,0xcf,0x7f,0xfd,0x39,0xec,0xed,0x2f,0x2b,0x69,0x18,0x63,0x24,0x45,0x22,0x80,0x9d,0xfd,0x15,0x3e,0xf1,0xf0,0xe3,0xf8,0xd7,0xbf,0xf6,0x7e,0x7c,0xfa,0x8b,0x5f,0x45,0x4a,0x87,0x9,0x9f,0x6b,0xcf,0x9e,0xc1,0x3b,0xdf,0xf6,0x1a,0x68,0x4d,0x85,0x1e,0xba,0x14,0x98,0x28,0x5,0xd7,0xcc,0x26,0x85,0x12,0x7,0xce,0x9e,0x95,0x97,0xd,0xe7,0xf7,0xf5,0xdd,0xaa,0xaa,0xf9,0xc8,0xe,0x6d,0xa0,0xb5,0x26,0x2b,0x70,0x69,0xa4,0xc5,0x46,0x6,0x90,0x49,0x40,0xcd,0xd,0xba,0xa,0x21,0x78,0x9c,0x3e,0xb9,0xd,0xeb,0xe,0x6b,0x42,0x1e,0x7f,0xea,0x39,0x3c,0xfb,0xd2,0xe,0x91,0x60,0x4a,0x4d,0x72,0xf1,0x32,0xba,0xde,0xe3,0xe3,0x7f,0xf5,0x28,0xfe,0xe5,0xff,0xf5,0x5e,0xfc,0xda,0xef,0xbc,0x1f,0xcf,0x9f,0x7f,0x1,0x64,0x7f,0x25,0xcb,0xec,0x6c,0xb1,0xcd,0xdb,0x69,0xb8,0xa6,0xc5,0x3d,0xb7,0xdd,0x80,0xfb,0x37,0x58,0x8c,0x2f,0x5d,0xd9,0xc5,0xaf,0xfc,0xf6,0x7,0xf1,0xd5,0xa7,0x2f,0xd4,0xb1,0x2b,0x8c,0xeb,0x2a,0xa5,0x84,0xcb,0xfb,0x1e,0xbf,0xf2,0xdb,0x1f,0xc2,0x37,0x9e,0x78,0xf6,0xd0,0xf6,0x6f,0x7e,0xfd,0x43,0x58,0xb4,0xe,0x7e,0xe8,0xc7,0x66,0x5e,0x6d,0x2a,0x11,0x59,0x14,0x8a,0xc6,0x58,0x6a,0x3a,0xe6,0xf5,0x99,0xf3,0xa8,0x74,0x85,0x1a,0x49,0xf0,0x62,0x29,0xaf,0x56,0xf8,0xd2,0x92,0x9d,0x53,0x7d,0x3f,0x68,0x6d,0xf8,0x7d,0x43,0xc7,0xab,0x6c,0xeb,0x94,0x38,0xe4,0xa7,0x84,0xf7,0x13,0x8,0x4,0xc7,0xd,0x42,0x0,0xa,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x57,0x9,0xa,0x71,0x54,0xa1,0xa8,0x58,0x82,0x1c,0xb6,0x91,0x8,0x3e,0x3d,0xe6,0x9a,0x29,0x85,0x35,0xd5,0xde,0x54,0xdd,0xe7,0x5c,0x3,0xc5,0xaa,0x32,0xa5,0x34,0x52,0x8a,0x8,0x7e,0xc0,0x71,0x62,0x3e,0x28,0x9f,0x30,0x12,0x31,0xc4,0xa5,0x14,0xed,0x6c,0x51,0xc7,0xd9,0x5a,0x85,0x1f,0x78,0xf3,0x6b,0x36,0x2a,0x13,0xbf,0xf8,0xe5,0x6f,0xe0,0x37,0xde,0xff,0x9,0xec,0xed,0xed,0x63,0xe8,0x3a,0x26,0x10,0xa9,0xf9,0xd8,0xb9,0xa6,0x5a,0x45,0x5d,0xd3,0x22,0xa5,0x88,0x55,0xef,0xf1,0xdb,0x7f,0xf2,0x69,0x7c,0xfe,0xaf,0x1f,0x39,0x94,0x47,0xa8,0x14,0xf0,0xba,0x57,0xdf,0x87,0x1b,0xce,0x9e,0xa4,0xb6,0xe5,0x18,0xd1,0xb4,0x73,0x68,0x63,0x31,0xf4,0x2b,0xcc,0xda,0xd9,0x84,0xc0,0x5b,0xdb,0x12,0x39,0x27,0x4,0x4f,0x85,0x17,0x4d,0x3b,0x23,0xcb,0x76,0x8c,0xb0,0x96,0xc6,0x93,0x62,0x64,0x55,0x63,0x60,0xd5,0xda,0xe1,0xf9,0xd7,0x5a,0xc3,0x38,0x57,0x8b,0x4f,0xa8,0x4,0x24,0x10,0x39,0xba,0x41,0xb1,0x79,0xfa,0xd4,0x9,0x58,0xa3,0x27,0x8d,0xcf,0x1a,0x4d,0x3b,0x83,0xb1,0x8e,0xc7,0x43,0x76,0xf0,0x2f,0x3c,0x7a,0xe,0xff,0xea,0xdf,0xff,0x21,0x9e,0xbd,0xb0,0x77,0xc0,0x62,0x4d,0xe7,0xa7,0xb5,0xc6,0xdb,0xde,0xf0,0x4a,0x98,0x3,0xf3,0x1b,0x53,0xc2,0xfb,0x3e,0xf4,0x29,0x9c,0xbb,0xb0,0xc3,0x76,0x5b,0x22,0xe5,0x8c,0x73,0x55,0x1d,0x69,0x8c,0x5,0x14,0xd0,0xfb,0x80,0xf7,0x7e,0xf8,0x53,0x18,0x7c,0x58,0xdb,0xc7,0xc9,0x13,0x5b,0x78,0xf0,0x9e,0x5b,0x61,0x5d,0x8b,0xa2,0xe2,0xcb,0x3c,0x2e,0x52,0x4a,0x52,0x6,0x60,0xb1,0x7c,0x17,0xdb,0x3a,0xad,0x89,0xc0,0xeb,0x63,0x5c,0xd7,0xa,0xac,0x72,0xc4,0x48,0xa,0x16,0x25,0x60,0xc9,0xf2,0x4b,0xb5,0x44,0x27,0xaf,0xbd,0x47,0xc8,0x8e,0xce,0xd6,0x79,0x7a,0xa6,0x92,0x8b,0x2,0x81,0x40,0x70,0x5c,0x20,0x4,0xa0,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x70,0x95,0xa0,0x90,0x1a,0xc0,0x54,0xe1,0x34,0x92,0x14,0x35,0x1f,0xf,0xdc,0x76,0x9a,0x41,0x24,0xa,0x2b,0xfc,0xea,0x7e,0x38,0x97,0x2e,0xfa,0x1,0x29,0x47,0x56,0x1,0x96,0xa6,0x5f,0x75,0x7c,0xc6,0xab,0x14,0x8c,0xa5,0x9c,0x42,0x52,0x82,0x4d,0x5a,0x5a,0x73,0xc6,0xeb,0x5f,0x75,0xf,0x6e,0xb8,0xfe,0xda,0x43,0xdb,0xbd,0xf0,0xd2,0x25,0xfc,0xe6,0xfb,0x3f,0x86,0xc,0xc0,0x87,0x81,0x55,0x8f,0x34,0x77,0x29,0x5,0x78,0x3f,0x54,0xbb,0x73,0xc,0x9e,0x54,0x6b,0xc8,0x8,0x31,0xe2,0x3d,0x1f,0xfa,0xc,0x9e,0x79,0xfe,0x85,0x43,0xfb,0x9c,0xcf,0x1a,0xbc,0xe5,0xa1,0x7b,0x90,0xb9,0xac,0x22,0xb1,0x62,0xae,0x69,0xe7,0xf0,0x21,0x6c,0x2c,0x50,0xc9,0x39,0xa1,0xe5,0xf6,0x60,0xd7,0xce,0x90,0x52,0x44,0x33,0x9b,0x53,0x11,0x8,0xa8,0x20,0x44,0x6b,0xca,0xb0,0xa3,0xeb,0x95,0x36,0xd3,0xaf,0x4a,0x23,0x7a,0x5f,0x55,0x80,0x54,0xf2,0x62,0x71,0x79,0x77,0x89,0xae,0xf7,0x87,0x5e,0x7e,0xcb,0x4d,0xd7,0xe1,0xa7,0x7f,0xf8,0xcd,0x30,0x9a,0xc8,0x4a,0x3f,0xc,0x9c,0x39,0x48,0x24,0xaf,0x52,0xa8,0x2a,0xbb,0xde,0x7,0x56,0x55,0xe6,0x4a,0xa4,0x1a,0x6e,0x74,0x9e,0x3b,0x8d,0xdb,0x6f,0xb9,0xf1,0xd0,0xfe,0x9f,0x7b,0xfe,0x45,0x7c,0xe9,0xa9,0x97,0x0,0x45,0x65,0x28,0xae,0x69,0xa0,0x15,0x9d,0x97,0x65,0x85,0x65,0x4a,0xb1,0xee,0xeb,0xe9,0x17,0xae,0xe0,0xa9,0x67,0x9e,0x3f,0x74,0x6d,0x5f,0xf3,0xc0,0xdd,0x1c,0xc7,0x47,0xc7,0xd5,0x9c,0x49,0xa9,0xb5,0x26,0x22,0xb0,0x92,0x77,0x19,0xc1,0xf7,0x75,0x3b,0x6d,0x2c,0x2b,0x4,0xd9,0x7e,0x8d,0xb1,0xd,0x18,0xfc,0xa7,0x82,0xaa,0xd6,0x60,0x5,0xc5,0xe4,0xef,0x78,0x6c,0xa0,0x74,0x81,0xe4,0xfa,0x1e,0x1a,0x33,0x2,0xe9,0xf,0x21,0x0,0x5,0x2,0xc1,0x71,0x82,0x64,0x0,0xa,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x57,0xd,0xc6,0x36,0x3,0xa5,0x34,0x52,0xf4,0x64,0x7,0xf5,0x3,0x29,0xb0,0x58,0x35,0x65,0x8c,0x3,0x94,0xaa,0x6a,0x2a,0xa4,0xc,0xe5,0x48,0xf5,0x15,0xfc,0x80,0x66,0x36,0xaf,0xcd,0xbd,0x60,0xa2,0xa4,0xaa,0xe8,0xf2,0xe6,0xc,0xc0,0x27,0x9e,0x39,0x8f,0x47,0x9f,0x78,0xb6,0x12,0x66,0x29,0x7a,0x6e,0x70,0x8d,0xd4,0x46,0xcc,0xe4,0x61,0x29,0x8,0xb1,0xae,0x45,0x4a,0xa1,0x5a,0x50,0xb5,0xd6,0x48,0x29,0x91,0xb2,0x2b,0xc,0xac,0xf0,0x22,0x6b,0xef,0xa2,0x6d,0xf0,0xbd,0xdf,0xf3,0xaa,0x8d,0x4a,0xbe,0xcc,0x4a,0xbd,0xbe,0x5f,0x21,0x3,0x8,0x61,0x40,0xd3,0xcc,0x90,0x91,0xf1,0xe6,0xd7,0x3d,0x70,0xa8,0x7c,0x23,0xe7,0x8c,0x8f,0x7c,0xfa,0xaf,0xb1,0x1a,0x2,0xa0,0x80,0xa6,0x69,0xb9,0x44,0x44,0xd5,0x9c,0x43,0xad,0x35,0xfc,0x30,0x60,0xbe,0xd8,0xae,0xea,0x30,0xb2,0xe2,0x3a,0x84,0x9c,0xf0,0x91,0xcf,0x7c,0x5,0x3f,0xfb,0x23,0xd7,0xaf,0x11,0x8e,0x0,0x70,0xff,0xdd,0xb7,0xe2,0x8f,0x3e,0xf1,0xd7,0x44,0x20,0x6a,0x53,0xcb,0x4c,0xb4,0x36,0xc0,0x11,0xe5,0x29,0x65,0xcc,0x39,0x67,0x34,0x4d,0xcb,0x2a,0x34,0x6a,0x4f,0x56,0xd6,0x4d,0x2c,0xaf,0x9a,0xc9,0xaa,0xd,0xfb,0xe0,0xe6,0x61,0xa5,0x35,0x34,0xc,0x59,0xa2,0x41,0xe4,0xdd,0x97,0xbe,0xf6,0x28,0xbe,0xf7,0x8d,0xaf,0x39,0xb4,0xcd,0xeb,0x5e,0x7d,0xf,0x4e,0x9d,0x58,0xe0,0x3d,0x1f,0xf8,0x14,0xce,0x5f,0xda,0x45,0x8a,0x11,0x39,0xb1,0x8d,0x96,0xff,0x4c,0x29,0x42,0x41,0x71,0xf6,0xde,0xd8,0xfc,0x6b,0x8c,0x41,0xd6,0xa,0xb7,0xde,0x70,0xe6,0x50,0x89,0x7,0x0,0x7c,0xee,0xcb,0x8f,0x1,0xa0,0x79,0xc,0xc1,0x23,0xc,0x3,0x65,0x13,0x5a,0x2a,0x6c,0xa1,0x92,0x14,0xf,0xcd,0xa,0xc8,0x94,0x22,0x1e,0x7d,0xe2,0x59,0xdc,0x73,0xe7,0xad,0x6b,0xfb,0xb9,0xfd,0xb6,0x57,0xf0,0xa,0xa4,0x82,0xf,0x3f,0xf4,0x80,0x2,0x7c,0x3f,0x54,0x32,0x90,0x8,0x3d,0xd,0xa5,0x32,0x2b,0x14,0x33,0x72,0x8e,0xe0,0x9e,0x5e,0x5e,0x7f,0x9a,0x3a,0x66,0x94,0xa2,0xf9,0x9d,0x90,0x83,0x89,0x95,0xb1,0x23,0xb3,0xaa,0xd6,0x49,0x73,0x94,0x97,0xf2,0xe3,0x19,0xf5,0x5a,0x1e,0x55,0x88,0x23,0x10,0x8,0x4,0x7f,0x17,0x10,0x2,0x50,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0xb8,0x4a,0x90,0x62,0x64,0x95,0x18,0xb7,0x0,0x2b,0x45,0x99,0x67,0xd6,0xd5,0x66,0x60,0xad,0x34,0x11,0x6f,0x89,0xed,0xc0,0x6a,0x24,0x37,0xb4,0x66,0xcb,0x70,0x26,0x62,0x8d,0x48,0x40,0x80,0xe5,0x4e,0xac,0x84,0xdb,0x8c,0x97,0x2e,0x5c,0xc6,0xfb,0xfe,0xe2,0xf3,0x0,0x80,0xbe,0x5b,0x2,0x0,0xf6,0x77,0x2f,0x3,0x99,0x88,0x1f,0xad,0x29,0x33,0x4e,0x69,0xb2,0x9b,0x2a,0x45,0x8a,0x36,0x6a,0xce,0xd5,0x9c,0x99,0xa7,0x61,0xac,0x85,0x73,0x2d,0x37,0x17,0x53,0x46,0xde,0xb5,0x27,0x5a,0xbc,0xe5,0xf5,0xf,0xe0,0x20,0xff,0x57,0x14,0x5a,0x40,0x26,0xfb,0x6a,0xc,0x40,0xce,0xf0,0xbe,0x87,0x33,0x1a,0x37,0xdd,0x70,0xcd,0xa1,0xf3,0xdc,0x5f,0xae,0xf0,0xa5,0xc7,0xce,0x11,0xc1,0x15,0x23,0x7c,0x18,0xa0,0xa0,0x10,0x13,0x91,0x46,0xc6,0x18,0x4,0x3f,0xc0,0x31,0x89,0x98,0x23,0x91,0x94,0x7e,0xe8,0x61,0xe6,0x64,0x33,0xfd,0xca,0xe3,0xe7,0x70,0xf1,0xd2,0x15,0x5c,0x7b,0xa0,0x14,0xe4,0xec,0xe9,0x93,0x38,0xb9,0x98,0x61,0xb7,0xb3,0x88,0x31,0x54,0x52,0xc9,0xf,0x3,0x59,0xb0,0xf,0x40,0x6b,0xc3,0xb9,0x73,0x1e,0x5a,0x2b,0x74,0xdd,0x12,0xc6,0x5a,0x68,0x63,0xe0,0x87,0x1e,0xd6,0x3a,0x84,0xe0,0xe1,0x5c,0x3b,0xb1,0x9c,0x1e,0x26,0x9d,0xb4,0x31,0x88,0x31,0x10,0xf9,0xc7,0x44,0x9d,0x52,0x1a,0x31,0x6,0x7c,0xfc,0x8b,0x8f,0xe1,0xa1,0x7,0xee,0xc5,0xf6,0xd6,0xfc,0xd0,0xdc,0xdd,0x75,0xdb,0xcd,0xf8,0xa5,0x9f,0x7b,0x27,0xfe,0xec,0x93,0x5f,0xc4,0x27,0x1f,0x7e,0x1c,0xfd,0xe0,0x2b,0x31,0x5c,0x88,0x63,0xd7,0xb4,0xdc,0xa8,0x4b,0xe7,0xa4,0x94,0xc2,0x10,0x23,0xac,0x6b,0x70,0xd3,0xf5,0x67,0xf,0x91,0xa0,0x21,0x46,0x9c,0xbf,0xb8,0x87,0xed,0xd6,0xc0,0x2c,0xb6,0x79,0xee,0x34,0x11,0x99,0xc1,0x3,0xad,0x45,0x4c,0x9,0x27,0x17,0xa7,0x10,0x42,0x0,0x72,0x44,0x4a,0xe,0x97,0xae,0xec,0x1e,0x1a,0xd7,0xf6,0xd6,0x2,0xdb,0xf3,0x19,0x2e,0xef,0xec,0x22,0xb1,0xdd,0x3b,0x23,0xa3,0x69,0x67,0xf0,0xbe,0x7,0x29,0x36,0x33,0x94,0x1a,0x1b,0x79,0x95,0x2,0xb4,0x32,0xa4,0x5c,0x2d,0xa,0x40,0x5e,0x23,0x99,0x73,0x4,0x13,0x67,0x5b,0x8e,0x15,0xbf,0xa4,0xc6,0xa4,0x96,0x60,0x26,0xf,0xa7,0xf9,0x7f,0xe5,0x3d,0x50,0x72,0x1,0xb3,0x84,0x0,0xa,0x4,0x82,0xe3,0x7,0x21,0x0,0x5,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x82,0xab,0x4,0xa5,0x54,0xa2,0x28,0xf7,0xb4,0xd6,0x88,0x31,0xd6,0x6c,0x34,0x0,0x50,0x56,0xd7,0xdc,0xbc,0x9c,0x33,0xc,0x17,0x47,0x18,0x63,0xc9,0x2a,0x19,0x2,0x60,0xf2,0x68,0x25,0x55,0x8a,0x55,0x68,0x89,0x15,0x78,0x47,0xab,0x9e,0x72,0x4e,0x88,0x21,0x20,0xa7,0x84,0xd5,0xfe,0x2e,0x67,0x6,0x2,0x31,0x52,0xbe,0x5d,0x4a,0x11,0x5a,0x1,0x43,0xb7,0xaa,0x36,0x4d,0xa5,0x14,0x12,0x17,0x66,0x0,0x54,0xc8,0x10,0xc2,0x80,0x9c,0x32,0x65,0xc6,0x81,0x95,0x5d,0x47,0x10,0x2e,0xa4,0x2c,0x4,0x17,0x6f,0x4,0xb8,0x66,0x86,0x18,0x3c,0xae,0x3f,0x7b,0x12,0x5b,0x5b,0x8b,0x43,0xaf,0x7f,0xe1,0xa5,0x4b,0xb8,0xbc,0xb3,0xb,0xa5,0xc9,0x3e,0xaa,0x95,0x41,0x21,0x10,0x8d,0xb1,0xf0,0x43,0x7,0x40,0xc1,0xf,0x1d,0x62,0x30,0x70,0x4d,0x5b,0x15,0x95,0x31,0x92,0xba,0xb1,0x1b,0x32,0x9e,0x3d,0x7f,0xe1,0x10,0x1,0xd8,0x34,0xe,0xd7,0x9e,0x5a,0xe0,0xd2,0xee,0x5,0x68,0xc3,0x5,0x1b,0x5a,0xa1,0x69,0x5b,0x28,0x65,0x8e,0xbc,0x66,0xd6,0x35,0x88,0x61,0x20,0x32,0x94,0xdb,0x99,0x15,0x6f,0x6b,0x4c,0x69,0xdf,0xd,0x30,0xae,0xd9,0xb8,0x8f,0x18,0x7c,0x25,0x13,0x43,0x8c,0x9c,0x5f,0x48,0xf6,0xd6,0x67,0x5f,0xb8,0x88,0xdf,0xff,0xc0,0xc7,0xf0,0x33,0x3f,0xfa,0x76,0x38,0x7b,0xf8,0xf6,0x70,0x7b,0x6b,0x8e,0x77,0xff,0xe0,0x9b,0xf1,0xe0,0x7d,0xb7,0xe1,0xf,0xff,0xe2,0xb,0x78,0xfc,0xd9,0x17,0x47,0x6b,0xac,0xd2,0xb5,0xcc,0x44,0x69,0x9a,0x8b,0x18,0x88,0x24,0x34,0xd6,0xe2,0xe6,0xd,0x4,0xab,0xd1,0x1a,0xbf,0xf8,0x93,0x6f,0x67,0xd2,0x90,0xec,0xcb,0x54,0x34,0x4d,0x5,0x20,0xd5,0xd2,0x9b,0x6b,0x9a,0x1e,0xcf,0xc3,0xe1,0x71,0xb5,0x6d,0x83,0x93,0xb,0x87,0x2b,0x7b,0x1a,0x3a,0x1,0xe0,0x5c,0xc4,0x30,0xf4,0x70,0xcd,0xc,0xbe,0xef,0x88,0xc3,0xd3,0xa,0xe0,0xf5,0x49,0xad,0xc0,0x74,0xee,0x39,0x51,0x6e,0x62,0xe6,0xac,0x3f,0xb2,0xb2,0xab,0x3,0x8d,0xc4,0x9c,0x51,0x38,0x51,0x5,0xaa,0x4a,0xa,0x8e,0xe4,0x5f,0xce,0xeb,0x84,0x60,0x16,0x12,0x50,0x20,0x10,0x1c,0x33,0x48,0x6,0xa0,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x70,0x95,0x20,0xa3,0x14,0x79,0xe4,0x83,0x8f,0x56,0xb,0x30,0x72,0x66,0x85,0x98,0xe2,0x56,0x56,0x2e,0x57,0x48,0x9,0x39,0x45,0x68,0xa3,0xeb,0xf3,0x29,0x92,0x6a,0x6d,0xe8,0xbb,0x35,0xb5,0xdd,0x26,0x94,0xcc,0x38,0xca,0x92,0xe3,0xf2,0xa,0xce,0xa6,0x2b,0x79,0x6f,0x85,0xa8,0xa2,0x63,0x11,0xf9,0x12,0x43,0x40,0xe6,0xb6,0x62,0x63,0x1d,0x59,0x88,0x27,0x19,0x71,0x80,0xe2,0xd7,0x6e,0xb0,0xff,0x72,0xc9,0x45,0xe2,0x62,0x8a,0xa9,0x4a,0xee,0xd4,0x89,0xed,0x8d,0x84,0xd7,0x85,0x8b,0x97,0x91,0x73,0x86,0xef,0x3b,0x68,0x4d,0xb6,0xda,0x10,0x3c,0x72,0xce,0x18,0xfa,0x6e,0x24,0x14,0x8d,0x85,0x1f,0x7a,0x2c,0xf7,0x76,0x10,0x63,0x64,0x95,0x62,0xa8,0xea,0xaf,0xe7,0xce,0xbf,0x74,0xf8,0xe6,0x4b,0x6b,0x9c,0x3a,0xb9,0x5d,0x5b,0x94,0x43,0xf0,0x48,0x21,0x92,0xd2,0x6d,0xe3,0x5,0xa3,0xd7,0x50,0xee,0x9e,0xe6,0x2,0x8b,0x84,0xe5,0xde,0x2e,0x17,0x7a,0x90,0xb5,0xd7,0xf,0x1d,0xda,0xd9,0xbc,0x96,0x5b,0x1c,0x84,0x62,0xb,0x71,0xc,0x1,0x7e,0xe8,0xa9,0x39,0x97,0xc7,0x3,0xa5,0xf0,0x85,0xaf,0x3f,0x87,0xdf,0xf9,0xc3,0xbf,0xc0,0x72,0xd5,0x6d,0xbe,0x69,0xd4,0x1a,0x77,0xdc,0x7a,0x33,0xfe,0xe9,0x3f,0xfe,0x61,0xfc,0xd4,0x3f,0x78,0x13,0xe6,0xe,0x55,0x31,0x9a,0x62,0x44,0x8c,0x11,0x61,0xe8,0x11,0x83,0x47,0xd3,0xce,0x48,0x99,0xe8,0x7,0xb4,0x8d,0x3b,0x7c,0x2e,0x4a,0xa1,0x6d,0x1c,0x66,0xb3,0x16,0x6d,0xe3,0xd0,0xb6,0xd,0x66,0x6d,0x83,0x86,0x1f,0x9b,0xb5,0xe3,0xe3,0xe5,0xb9,0x59,0xdb,0xa0,0x6d,0xe,0x93,0x9b,0xd6,0x18,0x9c,0x3a,0x79,0xa2,0x5e,0x6b,0xd6,0x7c,0x22,0xf3,0x5a,0x2a,0x24,0x6e,0x59,0x4b,0xbc,0x48,0xab,0x2,0xb6,0x16,0x7e,0x14,0x5b,0x6f,0x21,0xf9,0x72,0x39,0x57,0x5d,0xad,0xd5,0xf5,0x18,0xa5,0xf0,0x17,0x53,0xe5,0x1f,0xff,0xc9,0x79,0x82,0xb9,0x5a,0x82,0xe5,0x33,0x47,0x20,0x10,0x1c,0x1f,0x8,0x1,0x28,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x10,0x5c,0x2d,0xc8,0x13,0x12,0x63,0x42,0x6a,0x90,0xfa,0x89,0x88,0x11,0xe3,0x5c,0x6d,0x33,0x25,0x8b,0x6f,0xae,0xad,0xb1,0x85,0x64,0x49,0x4c,0xb8,0x69,0x63,0x91,0x62,0xa8,0xd,0xbb,0xc1,0xf,0xd0,0x47,0xe4,0x9e,0x8d,0x76,0x61,0x10,0x1,0xc5,0xa5,0x11,0x45,0x81,0xb8,0xda,0xdf,0x5,0x40,0x84,0x1f,0x14,0xa9,0x2,0x89,0x78,0x8c,0x28,0x95,0xb,0x7d,0xb7,0x64,0x32,0x2f,0xd5,0x71,0x10,0x11,0xb8,0x5e,0x52,0x52,0xa1,0xd4,0xa8,0x50,0x63,0x6b,0x66,0x51,0xaf,0x35,0x4e,0x6f,0xcc,0x68,0x5b,0x75,0x3,0xbb,0x38,0x89,0x30,0xb,0xac,0xbc,0xcb,0xdc,0x6c,0x1b,0x83,0x47,0xc,0xd4,0xca,0xeb,0x5a,0xca,0xb7,0x4b,0x91,0x88,0xb5,0xbe,0x5b,0x61,0xe8,0x3b,0xc4,0x18,0xb1,0xb7,0xbf,0xdc,0x38,0xf,0x6d,0xe3,0xb8,0x25,0xd7,0xc1,0xda,0xa2,0x4e,0xd4,0x1b,0x69,0xd3,0xcc,0xe5,0x13,0x39,0x27,0xc,0x3d,0xed,0x5b,0x6b,0xb2,0x21,0x7b,0xce,0x6d,0x8c,0x21,0x60,0xbe,0x75,0xa2,0xda,0x57,0x37,0x12,0xb0,0x6c,0x69,0x8d,0x9c,0x5,0x98,0x62,0xc0,0xd0,0x2d,0x89,0xe0,0x8d,0x1,0x29,0x27,0x7c,0xfa,0xcb,0x4f,0xe2,0xdf,0xfe,0xd6,0x7,0x70,0xee,0x85,0xb,0x47,0x2e,0x9f,0xb6,0x71,0xf8,0x7b,0x6f,0x78,0x0,0xbf,0xfc,0xb,0x3f,0x8e,0xdb,0xae,0xdb,0xae,0x36,0xd9,0x42,0xd2,0xe,0x7d,0x87,0x6e,0xb5,0x5f,0x89,0x52,0x95,0xc2,0x77,0x7d,0x49,0xcf,0x1b,0x52,0x65,0x52,0xe3,0x2f,0x91,0x91,0x0,0xad,0x1f,0x1a,0x7a,0xac,0x4,0x76,0x18,0x6,0x56,0xfb,0x8d,0x39,0x7e,0x53,0x1b,0xfb,0xf8,0x9e,0x48,0x28,0x7c,0x20,0xbd,0x7e,0x7c,0x9f,0x0,0x18,0xd7,0xdf,0xda,0x52,0x53,0x13,0xe2,0x10,0x75,0x3f,0x2,0x81,0x40,0x70,0x5c,0x20,0x16,0x60,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0xe0,0x2a,0xc1,0x94,0xb4,0x48,0x29,0x56,0xd2,0x6c,0x6c,0x35,0x55,0x8,0x43,0x5f,0x55,0x6e,0x85,0x44,0x49,0x29,0xc1,0x3a,0x57,0x4b,0x30,0x52,0x8a,0x8,0x81,0xc8,0x13,0xcb,0x25,0x14,0xc6,0x58,0x18,0xeb,0x8e,0x54,0x3d,0x15,0xd5,0x5f,0xce,0x19,0xc6,0x5a,0xc4,0x60,0x30,0xf4,0xab,0xd1,0x7a,0xac,0x35,0xef,0x97,0x4a,0x3a,0x94,0xa1,0x26,0xd7,0xc,0x40,0x69,0xb2,0x28,0x93,0x35,0x14,0x8,0x7e,0x80,0x75,0xa4,0x32,0x33,0xf6,0xe5,0x6f,0x69,0x9a,0x76,0x6,0xec,0xaf,0x0,0x80,0x94,0x7c,0x29,0x21,0xc6,0x80,0x7e,0x8,0x95,0xc,0x5c,0x7f,0x7d,0x8b,0x9c,0x1,0x63,0xc,0x62,0xf0,0x94,0x71,0x97,0x33,0xb4,0x6e,0xd0,0xaf,0x96,0x0,0x13,0x6d,0x5a,0x6b,0xf4,0xab,0x7d,0xca,0x44,0xe4,0x5c,0xbc,0xa2,0x70,0xc,0x4b,0x8f,0xb6,0xd9,0x7c,0x5e,0xdd,0x6a,0xc5,0x6d,0xba,0x1e,0xc6,0x1a,0xc4,0x44,0xa5,0x17,0x9b,0xc8,0xc8,0x92,0x39,0x57,0xc8,0x56,0x63,0x1d,0xfa,0x55,0xc9,0x1,0xb4,0x48,0x31,0xc2,0x35,0x2d,0x5d,0x1f,0xeb,0x70,0x94,0xfd,0x3a,0xe7,0x62,0x83,0xa5,0x6b,0x4d,0xc7,0xb6,0x48,0x69,0x80,0xb5,0xae,0xaa,0x1c,0x9f,0x78,0xfe,0x12,0xfe,0x8f,0xdf,0xf9,0x33,0xbc,0xfd,0xd,0xf7,0xe2,0x8d,0xaf,0xbd,0x1f,0xf3,0x59,0x7b,0x68,0x5f,0x4a,0x29,0xdc,0x78,0xfd,0x35,0xf8,0x67,0x3f,0xf7,0x23,0xf8,0x83,0x3f,0xf9,0x28,0x3e,0xfa,0x85,0xaf,0x3,0x8a,0xf2,0x25,0xb5,0xb5,0xdc,0x8a,0x9b,0xa8,0xc,0x46,0x1f,0x9e,0x3,0xef,0x3,0x9e,0x7b,0xe1,0x22,0x93,0xb1,0x11,0x28,0x76,0x5f,0xb6,0x2,0x4f,0x2d,0xb4,0x65,0x4a,0x52,0xce,0x34,0x32,0x56,0xef,0x15,0xb2,0x2d,0xe5,0x88,0x2b,0x3b,0x3b,0xf0,0xc3,0x50,0x49,0x5e,0xa5,0x35,0xac,0x75,0x18,0xfa,0xc8,0xd,0xc9,0x86,0xf3,0x1b,0x4b,0x3,0xb0,0x41,0x64,0x8b,0x3b,0x80,0xba,0xa6,0x73,0xce,0xc8,0x4c,0x1e,0x1a,0x63,0x2b,0x91,0x48,0x4a,0xd7,0x69,0x63,0x36,0x91,0xe0,0xb4,0x4d,0xaa,0xaf,0x39,0xb8,0x96,0x72,0x96,0x12,0x10,0x81,0x40,0x70,0xbc,0x20,0x4,0xa0,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x70,0x95,0xa0,0x2a,0x93,0x98,0x44,0x89,0x89,0x8a,0x34,0x88,0x10,0x51,0x35,0x7f,0x8d,0x14,0x50,0x19,0xc8,0xa,0xb6,0x69,0xc8,0x72,0x1b,0x23,0xe7,0xf4,0x25,0xce,0xa5,0x73,0xa4,0xd6,0x63,0xc4,0x18,0xc8,0x6e,0x79,0x4,0x3,0xa8,0x0,0x2e,0xd6,0x8,0x88,0xc1,0x93,0xfd,0x14,0x44,0xc0,0xac,0xf6,0x77,0xe1,0x9a,0x16,0xce,0x35,0xb0,0xb6,0x41,0xb7,0xda,0x47,0x3b,0x5b,0x54,0x62,0xa9,0x90,0x34,0xd6,0x39,0x64,0x95,0x2a,0x89,0xd5,0xcc,0x2c,0x82,0x1f,0x90,0xf3,0x16,0x8e,0xb2,0x1e,0xf,0x43,0x3f,0x9e,0x9f,0xd2,0xc8,0x8a,0x8,0xbc,0xdd,0xbd,0x7d,0x84,0x18,0xd1,0x1c,0x68,0xe,0x39,0x73,0x6a,0x9b,0x14,0x79,0x5a,0x43,0xe7,0xcc,0xf6,0x5b,0x85,0xae,0xef,0xaa,0x82,0x90,0xc6,0xdd,0x23,0x83,0xec,0xcf,0xda,0xf,0x64,0x87,0x56,0xa,0xae,0x69,0x61,0x8c,0xc1,0xc9,0x3,0xa5,0x1a,0x0,0x11,0x48,0x7b,0xcb,0x15,0x72,0xca,0x80,0x21,0xc5,0x5c,0x3b,0xdf,0xaa,0x76,0xda,0x83,0x8,0x61,0x20,0x92,0xd3,0x90,0xf2,0x30,0x2b,0x5,0xef,0x7,0x64,0x0,0x2d,0x2b,0x8,0x29,0xdb,0x70,0x80,0xe7,0x46,0xe5,0x4d,0xb3,0x60,0xc,0xd9,0xaa,0x23,0xcf,0x7d,0xce,0x60,0xfb,0x30,0xcd,0xc5,0xd0,0xad,0x60,0x5d,0x3,0x63,0xd,0x76,0xf6,0x96,0xf8,0xfd,0x3f,0xfb,0x1c,0xbe,0xf8,0xe8,0xf3,0x78,0xe7,0xf7,0xbd,0xa,0x77,0xdd,0x7e,0xcb,0xa1,0x22,0xf,0x0,0xd8,0x5a,0xcc,0xf1,0x53,0xef,0x7e,0x3b,0xb6,0x17,0x33,0xfc,0xc1,0x9f,0x7f,0x16,0x50,0x1a,0xc9,0xa7,0x4a,0xac,0xf5,0x5d,0x87,0xdd,0xbd,0xbd,0x43,0xdb,0xa5,0x9c,0xf1,0x7f,0xbf,0xef,0x63,0xb8,0xb8,0xb3,0x7,0xad,0x2d,0xb7,0x42,0xc7,0x51,0x41,0xaa,0x35,0xba,0xd5,0x12,0x8a,0x8b,0x55,0x94,0xd6,0x64,0x2f,0x8e,0x11,0x31,0x7a,0x28,0x70,0xe1,0x8a,0x25,0x2,0xd4,0xf,0x3d,0x9a,0xd9,0xbc,0x92,0xd0,0x29,0x4,0x52,0x43,0x72,0xf1,0x89,0xe2,0xd6,0xeb,0x9a,0xff,0x97,0x75,0x2d,0xac,0xd1,0xc6,0xd4,0xe6,0x5f,0x22,0xeb,0x54,0x25,0xb8,0x15,0x17,0x80,0xa8,0x52,0xf8,0xa1,0x14,0xdb,0xe7,0x4b,0xcf,0xc7,0x61,0xf2,0x2f,0x97,0x4a,0x60,0x7e,0x97,0xa5,0x24,0xa,0x40,0x81,0x40,0x70,0x7c,0x20,0x16,0x60,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0xe0,0x2a,0x41,0x9e,0x12,0x4d,0x99,0xac,0xa7,0x5a,0x9b,0x9a,0x49,0x97,0x52,0xaa,0x65,0xa6,0xc8,0xe0,0xfc,0xb4,0x5c,0x1b,0x63,0x3d,0x97,0x76,0x0,0xa4,0xa6,0x2b,0xf6,0xc9,0x18,0x43,0xdd,0xcf,0xd1,0xa2,0xa7,0x8c,0xa1,0xef,0xa1,0x94,0xc6,0x72,0x6f,0x7,0xae,0x69,0x6a,0x79,0x87,0x6b,0x66,0x6c,0x9f,0xed,0xb1,0x7b,0xe5,0x2,0x12,0x5b,0x82,0x7d,0xdf,0xc1,0xf,0x3d,0x86,0x8e,0x54,0x73,0x43,0x4f,0x7f,0x1f,0xfa,0xe,0x31,0x78,0xf4,0xab,0x25,0x82,0x1f,0x90,0xa2,0x27,0x25,0xd9,0xa6,0xf1,0x72,0x41,0x86,0xd6,0x4c,0x8,0xb1,0x4a,0xec,0xd2,0xce,0x1e,0xba,0xae,0x3f,0xb4,0xcd,0x99,0x53,0x94,0xd1,0x17,0x39,0x5f,0xcf,0xba,0x86,0x8,0x27,0x63,0x48,0xe9,0xc7,0x39,0x88,0x39,0x67,0x22,0x2f,0xf7,0x76,0x28,0x3f,0xd1,0x3a,0x52,0x43,0xc6,0x88,0xa1,0xef,0x70,0xe3,0xf5,0x67,0xf,0xed,0x3b,0x84,0x88,0x67,0x9e,0x7d,0x1e,0x43,0xbf,0xe2,0x26,0x64,0x85,0x7e,0xb5,0x4f,0xea,0xc1,0xd,0x33,0x66,0xad,0xab,0xa,0x3f,0x1a,0xff,0xa,0xd6,0x51,0x63,0xf2,0xd0,0xad,0xe0,0xfd,0x0,0x3f,0x74,0xd4,0x70,0x9c,0x73,0x55,0xba,0x1d,0x3e,0xee,0x48,0xd4,0x1a,0xeb,0x6a,0xe,0xa0,0x36,0x96,0xb3,0x11,0x15,0xba,0xe5,0x1e,0x72,0x22,0xcb,0xb5,0xb1,0x16,0x4f,0x3c,0x73,0xe,0xff,0xfb,0x6f,0xff,0x29,0x7e,0xfd,0xf7,0xfe,0x4,0x2f,0xbc,0x74,0x69,0xe3,0x7e,0x9d,0x73,0xf8,0x87,0x3f,0xf4,0x7d,0x78,0xc3,0xfd,0xb7,0x21,0x7a,0xca,0x2a,0x1c,0xfa,0x15,0x52,0xc,0xe8,0xbb,0x25,0x5e,0x78,0xe9,0xf2,0xa1,0x6d,0x1a,0x67,0x71,0xc7,0x8d,0xa7,0xa1,0xb4,0x41,0x8,0x3,0xb5,0xf7,0xa6,0x58,0xd5,0x96,0x64,0xa1,0xa6,0xed,0x63,0xf4,0x4c,0x58,0x66,0x18,0x63,0xe0,0x5c,0x4b,0xcd,0xd0,0xd6,0x62,0xe8,0x3b,0xf4,0xdd,0x12,0x19,0x40,0xbf,0xda,0x47,0xc,0x1,0xcb,0xbd,0x1d,0x84,0xe0,0x99,0x83,0xcb,0x9c,0x4f,0x18,0xb8,0xf8,0x86,0xd6,0x34,0x11,0xb5,0xa8,0x19,0x96,0xc5,0x62,0x5e,0x4a,0x3e,0x32,0x93,0xbc,0x0,0xe5,0x47,0xc6,0xc4,0xcd,0xd9,0x95,0xcc,0x1b,0xaf,0x54,0xb5,0x12,0x4f,0xb6,0x1,0xd4,0x91,0x24,0xb8,0x40,0x20,0x10,0xfc,0x5d,0x42,0x8,0x40,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0xe0,0x2a,0x2,0x29,0xa2,0x0,0xb0,0xaa,0x2b,0xa6,0x40,0xf6,0x5a,0x2e,0xbc,0x28,0x79,0x69,0xa5,0xed,0x94,0xd4,0x80,0x9,0xa5,0x39,0x38,0x70,0x8e,0x5c,0x51,0x46,0xc5,0xe0,0x61,0x34,0x5b,0x3f,0x99,0x40,0xda,0x84,0x52,0xc4,0x90,0x62,0x40,0x3b,0x5b,0xc0,0xf,0x3d,0xf6,0xae,0x5c,0x42,0xe0,0x12,0x10,0x22,0x75,0x56,0x64,0x7b,0xad,0x2a,0xc1,0x1e,0xc1,0xf,0x88,0x29,0x60,0xb5,0xbf,0x47,0x96,0xe0,0x94,0xd1,0xad,0xf6,0x91,0x38,0x1f,0x30,0x84,0x40,0x56,0xe5,0x23,0xf2,0xd6,0x14,0x50,0x9,0x2e,0x6b,0x6d,0x55,0xc1,0xad,0x7c,0xc4,0x85,0x8b,0x87,0x9,0xaa,0x33,0xa7,0x4f,0xe2,0xb6,0x1b,0x4e,0xc3,0xb0,0x9d,0x75,0xe8,0x3b,0x28,0x6d,0xb0,0xda,0xdf,0x43,0xf4,0x1e,0x91,0x5b,0x74,0x8b,0xea,0x6b,0xeb,0xe4,0x19,0x74,0xcb,0x7d,0x40,0x1,0xde,0xf,0x48,0x31,0xe0,0xd4,0xd6,0xc,0xb7,0xdc,0x7c,0xe3,0xa1,0x7d,0xef,0xed,0xef,0xe3,0xf9,0x97,0x2e,0x23,0x4,0x5f,0xdb,0x90,0x63,0x8,0x8,0x5c,0x8c,0xb2,0x79,0xe2,0x68,0xee,0xac,0x25,0x75,0x64,0x66,0x55,0x22,0xd8,0x6e,0x8c,0xc,0xf8,0x61,0x80,0xb1,0x8e,0xa,0x2b,0x8e,0x98,0x83,0xcc,0xc5,0x2a,0x9e,0x95,0x97,0x4a,0x81,0x5b,0x72,0x49,0x21,0x37,0xdf,0x3a,0x81,0xc4,0x73,0x98,0x62,0x2,0x9b,0x6d,0xf1,0xd9,0xaf,0x3c,0x89,0xff,0xf9,0x7f,0xfb,0xd,0xfc,0xe9,0x47,0x3f,0xd,0xcf,0xa4,0xe8,0x14,0xd6,0x18,0xfc,0xc4,0xbb,0xdf,0x8e,0xed,0xed,0x2d,0x6a,0x28,0x2e,0x6d,0xd1,0x31,0xe0,0xf1,0xa7,0x9f,0x3f,0x34,0x2e,0xa5,0x14,0x5e,0xfb,0xc0,0x9d,0x40,0x4e,0xa3,0x6d,0x3a,0x4,0xce,0x5b,0xf4,0xb5,0x48,0x44,0x6b,0x8d,0xa6,0x99,0x41,0x1b,0x3,0x6d,0x4c,0x25,0xae,0xb5,0xb1,0x95,0xa4,0x8b,0x31,0x62,0xe8,0x96,0xd8,0xdf,0xbd,0x82,0xe5,0xee,0x15,0xf8,0xa1,0xab,0x16,0x6f,0x22,0xb8,0x4d,0x2d,0xb6,0x49,0xdc,0x3a,0x5c,0x48,0x6d,0x6d,0xc,0x11,0x81,0x4c,0xe,0x66,0xde,0xf7,0x94,0xc0,0xde,0x34,0x9f,0x7a,0xa2,0x18,0xad,0x6d,0xc8,0x6b,0x2a,0xd2,0x49,0x96,0xa0,0x28,0x0,0x5,0x2,0xc1,0x31,0x82,0x10,0x80,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0xc1,0x55,0x2,0x6a,0x3e,0x1d,0xd5,0x4d,0x39,0xa5,0xaa,0x5e,0x4a,0x5c,0xc6,0x1,0x70,0x56,0x9a,0xd6,0x64,0x93,0xd4,0xa6,0xe6,0x99,0xc5,0xe8,0xc7,0xac,0x3f,0xe4,0xda,0x7e,0xeb,0x7d,0x8f,0x9c,0x22,0x52,0x8e,0x35,0x3f,0x70,0xc3,0xd1,0x89,0xd8,0xe3,0xff,0x2a,0x79,0xc2,0x24,0xa2,0x1f,0x7a,0x74,0xcb,0x3d,0x2c,0xf7,0x77,0xd0,0xaf,0x96,0xe8,0x56,0xfb,0x5c,0xb8,0x11,0x2a,0x69,0x95,0x12,0x95,0x61,0x90,0xfa,0x6f,0x9f,0x94,0x81,0x31,0x20,0xd7,0x82,0x92,0x75,0x28,0x0,0xfd,0x6a,0xf,0xab,0xbd,0x9d,0x51,0x49,0x17,0x88,0x74,0xf2,0x7d,0x87,0xaf,0x7d,0xe3,0xa9,0x43,0xdb,0x38,0x6b,0xf1,0xb6,0xef,0x79,0xd5,0x1,0xf2,0xa6,0x58,0x48,0xc9,0x36,0xeb,0x87,0xbe,0xe6,0x19,0x6a,0xa3,0x99,0xb0,0x32,0x64,0xff,0xb5,0xe,0xdf,0xf7,0xfa,0x7,0xb0,0xbd,0xb5,0x38,0xb4,0xef,0x27,0x9e,0x7a,0x16,0x7d,0xdf,0x57,0xb,0xf4,0x72,0xef,0xa,0xb5,0x22,0xc7,0x8,0x1f,0xe2,0x86,0x73,0x31,0x94,0x69,0xd7,0x34,0x30,0xd6,0x22,0x78,0x6a,0xef,0xf5,0x6c,0x6b,0x26,0xfb,0x76,0x20,0x75,0x22,0x26,0x39,0x7a,0x7,0x60,0x6a,0xd9,0x88,0x81,0xe2,0x5c,0xc1,0x18,0x2,0xbc,0xef,0x69,0x9e,0x63,0x40,0xf0,0x34,0xd7,0x25,0xd3,0xb1,0x96,0x64,0x68,0x8d,0x8,0xe0,0x37,0xff,0xf8,0x13,0xf8,0xf,0xef,0xf9,0xe3,0x8d,0xaa,0xc9,0x6b,0xce,0x9e,0xc1,0x7d,0xb7,0x5d,0x3f,0xaa,0x49,0x39,0x3b,0xf2,0xc9,0xe7,0x5f,0xc2,0xfe,0xf2,0x70,0xb3,0xf0,0x5d,0xb7,0xdf,0x82,0x9b,0xaf,0x3d,0x9,0x63,0x9b,0x5a,0x20,0x62,0x9b,0x86,0x9b,0x7b,0xd,0xfa,0xd5,0x12,0xd6,0x35,0xb0,0x4d,0xb,0xf0,0x3a,0xd1,0xc6,0x2,0x4a,0x55,0xa2,0xd3,0x5a,0x7,0xe7,0x1a,0x68,0xce,0xeb,0x8b,0x31,0xa2,0x5b,0x2d,0xb1,0xdc,0xdf,0x41,0x4a,0x9,0x7d,0xbf,0x42,0xca,0x54,0x7c,0x12,0x63,0x64,0x1b,0xb0,0x21,0x3b,0xb9,0x56,0x64,0x1d,0x67,0x22,0x37,0xa5,0xc4,0x5,0xc1,0x44,0x12,0x92,0x8d,0x59,0xad,0xcd,0x3,0xbf,0x31,0xaa,0x62,0xb2,0xae,0x8c,0x5a,0x8,0xa2,0x38,0xcb,0x10,0x95,0xa0,0x2c,0xb6,0x62,0x81,0x40,0x20,0x38,0xe,0x10,0x2,0x50,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0xb8,0x5a,0x50,0x5c,0x8a,0xc,0x52,0xfd,0x91,0x7d,0xd5,0x18,0x53,0x4b,0x27,0xc0,0xad,0xa7,0xc5,0x42,0xa9,0xb5,0x9a,0xa8,0xbb,0x58,0x21,0x38,0x29,0x3d,0x30,0xc6,0x2,0x50,0x23,0xa9,0xb8,0x11,0x54,0xc0,0x50,0xa,0x2b,0x88,0xcc,0xeb,0x10,0xfc,0x80,0xbd,0x9d,0x4b,0x58,0xed,0xef,0x42,0x1b,0xb,0xdf,0x77,0x58,0xee,0xef,0xc0,0xfb,0x1,0xab,0xe5,0x2e,0x11,0x83,0xab,0x7d,0xec,0x5e,0xb9,0x80,0x6e,0xb5,0x47,0x96,0x4d,0xad,0x11,0x83,0x47,0x8,0x64,0x3b,0xd,0x4c,0xea,0x1d,0x1e,0x6e,0x46,0x28,0xe4,0xd0,0x72,0xf,0xcb,0xbd,0x9d,0x4a,0xf8,0xe4,0x9c,0xf1,0xc9,0xcf,0x7f,0x5,0x5d,0x3f,0x1c,0xda,0xee,0xc1,0xfb,0xef,0xc4,0xdd,0xaf,0xb8,0x86,0x1b,0x8e,0x4d,0xcd,0x8b,0xf3,0xc3,0x0,0x3f,0xf4,0x68,0x67,0xb,0x52,0xa6,0x71,0xb,0x6f,0x21,0xbe,0xb4,0xd2,0xb8,0xf1,0xba,0xb3,0xf8,0xc1,0xb7,0xbd,0xe9,0xd0,0x3e,0x53,0xce,0x62,0x4a,0x41,0xe6,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0xf8,0xcc,0x17,0xbf,0x5c,0xed,0xab,0x31,0x6,0xc,0x3d,0x29,0xd6,0x42,0x8,0xd8,0xd9,0xd9,0x39,0xb4,0xcd,0xd6,0x62,0x8e,0xb9,0xd3,0xd0,0x4a,0x53,0x66,0x22,0x5f,0x3,0x28,0x2a,0x6b,0x21,0x15,0x5c,0xe0,0x1c,0x44,0xc0,0x39,0xbb,0x91,0x6e,0x2a,0x4d,0xc8,0x45,0xfd,0x8,0x56,0x4f,0x9e,0x98,0xcf,0xd0,0x18,0xcd,0x44,0x57,0x62,0x15,0x23,0x11,0x7c,0x29,0x6,0x26,0x5b,0x43,0xcd,0x28,0xfc,0xf4,0x97,0x1f,0xc7,0x27,0x3e,0xfd,0x85,0xc3,0x37,0x95,0x4a,0xe1,0x15,0x37,0x5e,0x7,0xd7,0xb4,0xb0,0xae,0x41,0xd3,0xce,0xa1,0x94,0xc2,0x6a,0x88,0x78,0xfc,0xa9,0xe7,0xe,0xbd,0xbe,0x6d,0x2c,0x7e,0xec,0x7,0xdf,0x8,0x3,0x52,0xfd,0xf9,0xa1,0x67,0x42,0x74,0x7,0xdd,0x72,0xaf,0xce,0x6b,0xc9,0x2b,0x34,0xc6,0xc2,0xba,0x86,0xec,0xdc,0x7e,0xc0,0x6c,0xb1,0x85,0x76,0x36,0xc3,0xab,0xef,0xbd,0xa3,0x92,0x9f,0x81,0x49,0xe8,0x6e,0xb9,0x8f,0x7e,0xb5,0xf,0xa5,0x34,0x93,0x7d,0x9a,0x54,0x7b,0x8a,0xe7,0x41,0xd3,0x75,0x2a,0xaa,0x3d,0x85,0xa2,0xe0,0xa3,0xf5,0x5b,0xec,0xd6,0x40,0xae,0xaa,0xd8,0x71,0x41,0x71,0x41,0xc9,0x44,0x21,0x3b,0x6,0x6b,0xa6,0x35,0xf2,0xb5,0x2a,0x3,0x85,0xff,0x13,0x8,0x4,0xc7,0x4,0x42,0x0,0xa,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x57,0x9,0x4a,0x49,0x7,0x29,0xfa,0x34,0x93,0x69,0x8a,0xd5,0x6c,0xa8,0x8d,0xb3,0xc8,0x44,0x96,0x68,0xad,0x99,0xdc,0xa3,0x2,0x8f,0x18,0x7c,0xcd,0x7a,0xb,0x6c,0x61,0x2d,0x4a,0x38,0x22,0x4d,0xd4,0xc6,0x32,0xb,0x3a,0x38,0x95,0x37,0xc4,0x18,0xa8,0xdc,0x62,0xe8,0x29,0x2b,0x6e,0xb5,0x44,0xc,0x1,0xc6,0x58,0xf4,0xdd,0x12,0x21,0x78,0xf4,0xdd,0xa,0xbe,0xef,0x30,0xf4,0x1d,0x76,0xaf,0x5c,0xa0,0xcd,0xa1,0x30,0x74,0x1d,0x76,0x2e,0x5f,0x84,0xef,0x7b,0x2a,0x8a,0x0,0x68,0x9f,0xbe,0xdf,0xdc,0x3e,0x9c,0x81,0x1c,0x43,0x25,0xd,0x5d,0x43,0xad,0xb6,0x61,0x20,0xc2,0xec,0xdc,0xc5,0x5d,0x3c,0xfa,0xf8,0xd3,0x87,0x36,0x6b,0x1a,0x87,0x9f,0xfb,0xf1,0x1f,0xc2,0xd,0x67,0xb6,0x11,0x82,0xa7,0xc6,0xe1,0xe0,0x61,0x5d,0x83,0xf9,0xd6,0x9,0x74,0x4b,0x2a,0xb7,0x30,0x5c,0xc2,0x51,0x6c,0xcf,0x5b,0x73,0x87,0x5f,0xfc,0xa9,0x7f,0x80,0x53,0x27,0xb7,0xf,0xed,0xf3,0xf9,0xe7,0xcf,0xe3,0xf3,0x5f,0x7d,0xaa,0xe6,0x29,0xd2,0x1c,0x7a,0x56,0x0,0x6,0xbc,0xf0,0xd2,0xc5,0x43,0xdb,0x6c,0x2d,0xe6,0xb8,0xfd,0xe6,0xeb,0x28,0x6f,0x91,0x95,0x69,0xc6,0x18,0x34,0xcd,0xc,0xf3,0xed,0x93,0xb0,0xce,0x91,0xfa,0xd0,0x58,0x6c,0xcf,0x1b,0xfc,0xc3,0xef,0x7f,0xfd,0x9a,0x45,0xb5,0x4e,0x3d,0x28,0xb3,0xb1,0x28,0x2e,0xcb,0xa3,0x6f,0x7e,0xed,0x7d,0xf8,0x1f,0xfe,0xc5,0xcf,0xe3,0xc1,0xbb,0x6f,0x81,0xb3,0x6,0xc8,0x80,0x31,0x8e,0x49,0xad,0x92,0x77,0x48,0x84,0xa5,0xd6,0x6,0x29,0x3,0x4f,0x3c,0x73,0x6e,0xe3,0xe5,0xb5,0x6c,0x99,0x4e,0x29,0xd6,0xc2,0x95,0x94,0x13,0x3e,0xf2,0x97,0x5f,0x44,0x8c,0x87,0xd7,0xc4,0x1d,0xb7,0xde,0x84,0x9f,0x7a,0xc7,0x5b,0xe0,0x4a,0x3c,0x1f,0x13,0xc3,0x63,0xeb,0xb2,0x41,0xc,0x1,0xb3,0xc5,0x16,0x17,0x7e,0x4,0xb4,0xf3,0x2d,0x34,0xed,0x1c,0xaf,0xbc,0xe3,0x66,0xfc,0x8f,0xbf,0xfc,0xb,0xf8,0xe7,0xbf,0xf8,0x33,0x70,0xcd,0xac,0x12,0xca,0xab,0xfd,0x3d,0xca,0x46,0x1c,0x58,0x91,0xca,0xd6,0xea,0xcc,0x4a,0xd6,0x42,0x6c,0x93,0x45,0x38,0xd7,0xf7,0x3,0xa7,0xff,0x55,0xcb,0xaf,0x3e,0x50,0x66,0xa3,0x36,0xcc,0x69,0xb1,0x66,0xd7,0x85,0xa7,0xd4,0x84,0xeb,0xcb,0xa3,0x95,0x5e,0xf2,0x0,0x5,0x2,0xc1,0x31,0x81,0x10,0x80,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0xc1,0x55,0x82,0xa2,0x6c,0x22,0xb,0x70,0x64,0xbb,0x66,0x62,0x12,0x90,0x6c,0x9b,0x99,0x4b,0x19,0x8c,0xb1,0xd4,0xc0,0x1a,0x3c,0xa9,0xa2,0x62,0x64,0x12,0x28,0xb1,0xe8,0x29,0xd7,0xd7,0x4e,0xf7,0x7b,0x14,0x32,0xdb,0x29,0x15,0x67,0x9,0xc6,0x18,0x60,0x9b,0x16,0xc6,0x92,0xa5,0x78,0xb5,0xbf,0x8b,0xa1,0xe3,0x86,0x5c,0xb6,0x54,0x6a,0x4d,0xaa,0x44,0x5,0xc5,0x56,0xce,0x80,0x76,0x36,0x47,0xb7,0xdc,0x23,0xc2,0xb0,0x5f,0x71,0x41,0x43,0xdc,0xa8,0x0,0x54,0xdc,0xdc,0xda,0x77,0x4b,0xda,0x7f,0x79,0x3d,0xe7,0xcf,0x5,0x3f,0xe0,0xbd,0x7f,0xf2,0x31,0x2c,0x57,0x87,0x6d,0xaa,0xd7,0x9c,0x39,0x85,0x7f,0xfe,0x73,0xef,0xc6,0xab,0xee,0xb8,0x11,0xbe,0xef,0x29,0x37,0x4e,0x6b,0xf8,0xbe,0x43,0x3b,0x5b,0xc0,0x3a,0xb2,0xa2,0x36,0xed,0xc,0xb3,0xd9,0x1c,0xf7,0xdd,0x7e,0x33,0x7e,0xf9,0x17,0x7e,0x1c,0xb7,0xdf,0x72,0xd3,0xa1,0x7d,0xc5,0x98,0xf0,0xe1,0x8f,0x7f,0x1e,0x81,0x89,0xb0,0x42,0x58,0x69,0xad,0x71,0xf9,0xc2,0x79,0xec,0xef,0x5e,0xc1,0xd7,0x1e,0x3f,0x87,0x94,0xd6,0xe7,0xcf,0x18,0x8d,0x77,0xff,0xe0,0x9b,0x31,0x6b,0x48,0x85,0xe8,0x9a,0x96,0xc8,0xd1,0xa1,0xc3,0xde,0x95,0x4b,0x48,0x31,0x22,0x78,0x8f,0x45,0x63,0xf0,0xf3,0xff,0xe8,0xad,0xb8,0xe3,0xd6,0x9b,0x36,0x4f,0xbe,0x52,0xb0,0xd6,0xd5,0x12,0x14,0x6a,0xfc,0xb5,0xd0,0x5a,0xe3,0xd6,0x5b,0x6e,0xc2,0x7f,0xf3,0x5f,0xfc,0x4,0xfe,0xc9,0x4f,0xbc,0x1d,0x77,0xde,0x74,0x96,0x32,0x1d,0x8d,0x85,0x31,0x6,0x39,0x25,0xac,0xf6,0x77,0xa8,0x75,0x79,0xe8,0xe1,0xfb,0x15,0x1e,0x7c,0xe5,0xdd,0x1b,0xf,0x71,0xf1,0xca,0xee,0x48,0x20,0x83,0x8,0x63,0x5,0x85,0x47,0x9e,0x7e,0x11,0x8f,0x3f,0xf5,0xfc,0xc6,0x6b,0xf3,0xc6,0xd7,0x3e,0x80,0x5f,0xfa,0xb9,0x77,0xe1,0xce,0x9b,0xaf,0xa9,0x24,0xad,0x75,0x4d,0x6d,0xf5,0x6d,0xda,0x19,0x32,0x5b,0x6e,0x1b,0xe7,0xf0,0x9a,0x7b,0x6e,0xc5,0x7f,0xfb,0x5f,0xfd,0x4,0xfe,0xfb,0x5f,0xfa,0x79,0xbc,0xf2,0xbe,0x7b,0x60,0x8c,0xe6,0x52,0x10,0x22,0x42,0xad,0xa3,0x8c,0xc4,0x72,0xad,0x4b,0xce,0x62,0x21,0xf0,0xb4,0x22,0x5b,0xbb,0x31,0x96,0x2c,0xc5,0x39,0x8f,0xcd,0xd7,0x29,0x71,0x6,0x22,0xdb,0x76,0x27,0xad,0xbf,0x39,0xc6,0x7a,0xce,0xa3,0xf2,0x35,0xb3,0xc2,0x6f,0x2d,0x34,0x50,0x3e,0x64,0x4,0x2,0xc1,0xb1,0x85,0x95,0x29,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0xae,0xe,0xa8,0x69,0x43,0xa9,0x52,0xdc,0xf4,0xcb,0x8f,0x71,0x13,0x30,0x65,0xfe,0x11,0x29,0x48,0x2f,0x53,0xdc,0x12,0x1c,0xa1,0x8d,0xa9,0x16,0x54,0xa5,0x34,0x82,0x27,0x75,0x5c,0x4e,0x9,0xe0,0x2c,0x36,0x75,0x24,0x9,0xa2,0xd6,0x8b,0x43,0xac,0xad,0x59,0x76,0x39,0x27,0xcc,0x16,0xdb,0xd0,0x5a,0xc3,0xb5,0x2d,0x86,0x6e,0x85,0x10,0x6,0x58,0xe7,0xe0,0xda,0x19,0x91,0x36,0xac,0xe,0xf3,0x43,0x8f,0x66,0x36,0xaf,0xd6,0xdc,0x72,0x2e,0xf9,0x8,0xf2,0x31,0xa5,0x48,0x16,0xda,0xa1,0x83,0x56,0xba,0x16,0x4e,0xcc,0xe6,0xb,0xa4,0x94,0xf0,0xc4,0x73,0x2f,0xe1,0xcf,0x3e,0xf6,0x59,0xbc,0xfb,0x1d,0x6f,0x3d,0xb4,0xed,0xb5,0xd7,0x9c,0xc1,0x3f,0xfb,0xcf,0x7f,0xc,0x5f,0xfd,0xfa,0x63,0xf8,0x8b,0x4f,0x7e,0xe,0x8f,0x3d,0xf3,0x22,0x96,0x5d,0xf,0xdb,0xb4,0xd0,0x48,0x38,0xb1,0x68,0x71,0xe7,0x2d,0x37,0xe0,0x2d,0xaf,0x7b,0x25,0xee,0xbb,0xe7,0xe,0xcc,0xda,0x76,0xe3,0x39,0xfc,0xd5,0x97,0x1f,0xc1,0x27,0xbe,0xf8,0x8,0x0,0x52,0x97,0x29,0xa5,0xa1,0x35,0xa9,0xe5,0x52,0xa4,0xd2,0x8a,0xcf,0x3c,0xfc,0x15,0xfc,0xd4,0xbb,0xde,0x86,0xb3,0x67,0x4e,0xaf,0x6d,0x7b,0xcb,0x4d,0xd7,0xe3,0x17,0x7f,0xf2,0x1d,0xf8,0xad,0x3f,0xfc,0x73,0x9c,0xbf,0x70,0x85,0x94,0x6c,0x96,0xda,0x89,0x9d,0x35,0x78,0xd3,0x83,0x77,0xe3,0x1d,0xdf,0xff,0x3d,0xb8,0xf1,0xfa,0x6b,0x8f,0xbc,0xee,0x31,0x6,0xce,0xfa,0xa3,0x2c,0xbc,0x42,0xa6,0xd6,0xa6,0x63,0x6b,0xf0,0xd0,0xab,0xee,0xc5,0xfd,0xf7,0xdc,0x81,0x27,0x9f,0x3d,0x87,0xcf,0x3e,0xfc,0x75,0x3c,0xf2,0xc4,0x39,0x5c,0xf4,0x3d,0x94,0x6a,0xd1,0xaf,0x96,0x38,0xb5,0xd5,0xe2,0x27,0xfe,0x93,0xb7,0xe1,0xd,0xaf,0x79,0xe0,0xd0,0xfe,0x87,0x61,0xc0,0xe3,0x4f,0x9f,0xe7,0x8c,0x41,0xd,0xab,0xdc,0x58,0x1e,0xa3,0x1c,0x7e,0xf7,0x3,0x1f,0xc3,0xbf,0xf8,0x2f,0x7f,0x14,0x5b,0x8b,0xf9,0xda,0x76,0x5a,0x2b,0xdc,0x77,0xf7,0xed,0xf8,0xef,0xfe,0xeb,0x9f,0xc5,0x13,0x4f,0x3e,0x8d,0x2f,0x3f,0xf2,0xd,0x3c,0x77,0xfe,0x12,0x76,0x97,0x1d,0x72,0x3e,0x85,0xed,0xc5,0xc,0xd7,0x9c,0xde,0xc6,0xdd,0x77,0xdc,0x82,0x3b,0x6f,0x7b,0x5,0xce,0x9e,0x39,0x5,0x6b,0xc7,0x5b,0x58,0xa5,0xc8,0xa2,0xdb,0xce,0x17,0xbc,0x96,0x32,0x86,0x7e,0x85,0x56,0x6f,0x61,0xe8,0x3a,0xb4,0xb,0xc3,0x96,0xf5,0x8,0x5,0x85,0x94,0x89,0xfc,0x4b,0x4c,0xf6,0x95,0x84,0x3e,0x2a,0xa1,0x71,0x9c,0xe7,0x47,0x56,0xde,0xb2,0x8e,0x4b,0x89,0x89,0xe2,0xbf,0x97,0x6c,0xcc,0x69,0x3,0xf0,0x5a,0x26,0x20,0xc6,0x1c,0x40,0x51,0xff,0x9,0x4,0x82,0xe3,0x4,0x21,0x0,0x5,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x82,0xab,0x4,0x6b,0x74,0x44,0xce,0x55,0xf5,0x54,0x72,0xd0,0x88,0xe4,0x8,0xd5,0x7e,0x69,0xb8,0x10,0xa2,0x10,0x3b,0x45,0x89,0x7,0xa0,0x2a,0x4,0xb,0x69,0x18,0x43,0x20,0xd5,0xd7,0x91,0x4,0x20,0x5b,0x2f,0xf9,0x69,0x3f,0xf4,0x30,0xd6,0x62,0xb9,0xb7,0x3,0xeb,0x1c,0xb6,0x4e,0x9c,0xc2,0xd0,0x91,0x6a,0xab,0x9d,0x2d,0xb8,0x14,0x22,0x40,0x65,0x40,0x19,0xb2,0x22,0x53,0xfe,0xde,0x9c,0xec,0x95,0x6c,0x37,0x35,0x4c,0x58,0x1e,0x45,0xb6,0x18,0xd7,0xd4,0xdc,0xc1,0xcc,0xe4,0x57,0xce,0xd4,0x24,0xac,0x8d,0x81,0xb5,0x16,0x1f,0xfc,0xd4,0x97,0x70,0xfd,0xb5,0xa7,0xf1,0xc6,0xd7,0xbd,0xfa,0xd0,0xf6,0x6d,0xdb,0xe0,0xb5,0xf,0xbe,0x12,0xaf,0x79,0xf5,0xfd,0x58,0xad,0x56,0x58,0xae,0x3a,0x64,0x28,0x18,0xad,0x31,0x9f,0xb5,0x68,0xdb,0x66,0xa3,0xed,0xb6,0xe0,0xb1,0x27,0x9f,0xc5,0x6f,0xfe,0xd1,0x27,0x60,0x6c,0x83,0xc,0xc0,0xf7,0x7d,0x25,0x8f,0x72,0x6,0x5c,0xd3,0x22,0xc6,0x80,0x2b,0x97,0x2e,0xe1,0x2f,0x3f,0xfb,0x57,0x78,0xe7,0x3b,0x7e,0x60,0x6d,0x7b,0xa5,0x80,0x7,0x5f,0x79,0x17,0xee,0xba,0xed,0x46,0x3c,0xf9,0xcc,0x39,0xbc,0xf0,0xe2,0x4b,0xf0,0x21,0xe2,0xe4,0xf6,0x16,0x6e,0xbf,0xf5,0x66,0x5c,0x73,0xf6,0xc,0xac,0x35,0xdf,0xe4,0xc2,0x67,0x18,0x63,0x31,0x74,0x2b,0x2e,0x70,0x41,0x25,0x4f,0xa7,0x68,0x1a,0x87,0x7b,0xef,0xbc,0x15,0xf7,0xdc,0x71,0x2b,0xba,0xae,0xc3,0x95,0xdd,0x7d,0x2c,0x97,0x4b,0xcc,0x66,0x33,0x9c,0x3e,0xb9,0x8d,0xc5,0x1,0x2,0xaf,0xe0,0x89,0xa7,0xcf,0xe1,0x85,0x4b,0x94,0xe1,0xd8,0xaf,0x96,0xa4,0x36,0x64,0x15,0x69,0x8a,0x11,0x4f,0x3c,0xf7,0x2,0xfe,0xf4,0x63,0x9f,0xc5,0xbb,0x7e,0xe8,0x7b,0x39,0xb3,0xef,0xc0,0x1c,0x37,0xe,0xf7,0xdf,0x7b,0x17,0xee,0xbf,0xf7,0xae,0x9a,0xcf,0x48,0x36,0x60,0xfd,0xb2,0x73,0x4b,0xe5,0x2c,0x6,0xa,0xb4,0xf6,0x0,0xc5,0xe4,0xaa,0x86,0xf7,0x3,0xac,0x6f,0x90,0xac,0xab,0xd7,0x3e,0xa7,0x84,0xc,0x26,0xb9,0xa7,0xe3,0x57,0x8a,0xf2,0x5,0x63,0xa4,0xf3,0xe3,0xd7,0x96,0xf9,0x2f,0x5,0x1f,0x8a,0x49,0x72,0x12,0x0,0x66,0x60,0x53,0x23,0x30,0xd4,0x84,0x40,0x14,0x2,0x50,0x20,0x10,0x1c,0x1f,0x8,0x1,0x28,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x10,0x5c,0x35,0xc8,0x95,0x5c,0x1,0x98,0xa4,0x48,0x19,0x99,0xed,0xbc,0x50,0x1a,0xa,0xa3,0xc2,0xa9,0x92,0x7f,0xa5,0xd9,0x35,0xe7,0x6a,0x97,0x8c,0xf0,0x30,0x70,0x54,0xc8,0xc1,0x99,0x6f,0x39,0x27,0x2a,0x8d,0xd8,0x4,0x56,0xfe,0x45,0xef,0xd1,0xad,0x96,0x40,0x6,0xf6,0x77,0x2f,0x23,0xa7,0x4,0x3f,0xc,0xe8,0xbb,0x15,0x14,0x50,0x9,0xbe,0x18,0x3c,0x66,0x8b,0x6d,0xe4,0x44,0xed,0xc1,0x39,0x27,0xcc,0xe6,0x5b,0x35,0x6f,0x4f,0x29,0x5,0x6b,0x9b,0x8d,0x44,0xd6,0x14,0x94,0x2f,0x68,0x10,0xfc,0x80,0x18,0x63,0xb5,0x80,0xc6,0xe0,0xe9,0x9c,0x62,0xc4,0xce,0x95,0xcb,0xf8,0xf5,0xff,0xf8,0xe7,0x70,0xae,0xc1,0x43,0xf,0xdc,0xbd,0x39,0x47,0x4f,0x29,0x2c,0x16,0xb,0x2c,0x16,0x8b,0x6f,0x6d,0xa6,0x33,0xf0,0xf8,0x53,0xcf,0xe0,0x57,0x7f,0xeb,0x3,0xd8,0xdd,0x5b,0xb1,0xda,0x2f,0xc2,0x36,0x64,0x53,0xd,0x7e,0x0,0x90,0xd1,0x77,0xcb,0x6a,0x61,0x7d,0xef,0x87,0x3f,0x89,0x7,0x5f,0x75,0x1f,0x6e,0xb9,0xf9,0xc6,0x43,0xfb,0x5b,0x2c,0x16,0x78,0xe0,0xbe,0xbb,0xf0,0xc0,0x7d,0x77,0x1d,0x71,0xbc,0x8c,0xaf,0x3f,0xf6,0x14,0xee,0xb9,0xf3,0xd6,0x43,0xe7,0xaf,0xd,0x5d,0x27,0xe3,0x1a,0x2c,0xf7,0xae,0xc0,0xb9,0xb6,0xae,0x87,0x23,0x2e,0x15,0xe6,0xf3,0x19,0xe6,0xf3,0x19,0x80,0x6b,0x5e,0x76,0x9c,0xab,0xae,0xc3,0x7f,0xfc,0xc0,0x47,0x10,0x62,0x44,0xf6,0x9e,0x8b,0x31,0x30,0x92,0x6e,0x99,0x54,0x73,0x1f,0xfc,0xcb,0xaf,0x62,0x3e,0x6b,0xf1,0xf6,0xef,0xfb,0x1e,0x18,0x73,0x34,0xa9,0xf7,0xf2,0x84,0xdf,0x3a,0x42,0x20,0x5b,0x79,0x8,0xbe,0x1e,0xaf,0x69,0x67,0xb8,0x7c,0xe1,0x5,0x9c,0xbd,0xfe,0xe6,0xda,0xe2,0x3b,0xb6,0xf2,0xea,0xba,0xae,0x15,0x2b,0x47,0x8b,0x2d,0x3a,0x83,0x32,0x1d,0x63,0x29,0x94,0x61,0xb,0x70,0x21,0xb4,0x33,0x5f,0xd4,0xaa,0xfc,0x3,0xe5,0x69,0xd1,0x7b,0x67,0xf3,0x2,0x50,0xda,0xc8,0x47,0x8e,0x40,0x20,0x38,0x36,0x90,0xc,0x40,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0xe0,0x2a,0xc1,0xb4,0xa1,0x97,0x88,0x8c,0x92,0x79,0x86,0xaa,0x8a,0xa2,0x32,0x4,0x26,0x3d,0x98,0xd9,0x88,0x9c,0xff,0x97,0x39,0x33,0x4d,0x1b,0x53,0x6d,0x8e,0x53,0x92,0xf0,0x50,0x26,0xda,0xf4,0xd8,0x31,0x56,0x9b,0xb1,0xe1,0x76,0x54,0xeb,0x1a,0x44,0x6e,0xda,0x5,0x32,0x8c,0x6b,0x88,0xa8,0x32,0x16,0xb3,0xf9,0x36,0x37,0xec,0xea,0x9a,0x59,0x57,0xca,0x30,0x88,0xec,0x49,0x4c,0xa6,0x25,0xca,0x9d,0xdb,0x74,0x5c,0xa5,0xd0,0xb4,0x33,0x1a,0x3,0x37,0xdd,0x52,0x7b,0xf0,0x0,0x63,0x5d,0x2d,0x8c,0x30,0xd6,0x61,0xd5,0xf,0xf8,0xd5,0xdf,0xf9,0x20,0x3e,0xfc,0xd1,0xcf,0x6c,0x6c,0x6,0xfe,0x76,0x30,0x78,0x8f,0x4f,0x7e,0xf6,0xaf,0xf0,0xbf,0xfe,0xfb,0xf7,0xe2,0xc5,0x4b,0x3b,0x95,0x88,0x8a,0xc1,0x23,0x6,0x2a,0xfd,0x88,0x29,0x22,0xf8,0xa1,0xe6,0xca,0xf5,0xdd,0x12,0x3b,0x7b,0x4b,0xfc,0xca,0x6f,0xbc,0xf,0x17,0x2f,0x5d,0xf9,0xb6,0x8e,0xe7,0x7d,0xc0,0x87,0x3e,0xf2,0x97,0xf8,0xe0,0x47,0x3f,0xbf,0x91,0x8c,0x4a,0xd1,0xd3,0x58,0xfb,0x8e,0xf2,0xef,0xb4,0xa6,0xf6,0xe5,0xdd,0x3d,0xf4,0x7f,0x83,0xb1,0x76,0x5d,0x8f,0xf7,0xbe,0xff,0xc3,0xf8,0xfc,0x97,0xbe,0x6,0xdf,0x77,0xb5,0xd1,0x37,0x78,0x4f,0xa4,0x2d,0x93,0x9e,0x0,0x11,0xc8,0x7f,0xf8,0xd1,0xbf,0xc2,0xfb,0x3f,0xf4,0x31,0xc,0x83,0xff,0x1b,0xcd,0x6f,0xca,0x19,0x8f,0x3d,0xfe,0x24,0xfe,0xdd,0x6f,0xbc,0x7,0x9e,0xcb,0x64,0xba,0xd5,0x3e,0xda,0xd9,0x1c,0x7e,0xe8,0x61,0x9d,0x43,0xc,0x9e,0xa,0x49,0x82,0x47,0x64,0xfb,0xba,0x66,0xf5,0x61,0xc9,0x4,0x2c,0x2a,0xc3,0xd2,0x14,0x5c,0xc8,0x6b,0x22,0xc6,0x53,0x7d,0xd,0x91,0x87,0x45,0xd5,0xa7,0xd6,0xde,0x1f,0xe4,0x0,0x56,0xa3,0xaa,0xb3,0x90,0xaa,0xa,0x3c,0x76,0x81,0x40,0x20,0x38,0x1e,0x10,0x5,0xa0,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x70,0x95,0x60,0x4a,0x48,0x10,0x59,0x41,0xbc,0x59,0x4a,0xb9,0x92,0x17,0x2a,0xa3,0x5a,0x7b,0x91,0x32,0x42,0x1a,0xa0,0x8d,0x19,0x95,0x83,0x19,0x55,0x25,0x95,0x53,0x84,0xb6,0xe,0x43,0xbf,0xa2,0x86,0xda,0x6c,0x8f,0xb4,0xe2,0x96,0xed,0x8b,0xa,0x2f,0x78,0x8f,0xe0,0x3d,0x72,0x4a,0x8,0xc1,0xc3,0xa5,0x84,0x76,0x36,0x27,0x95,0x9c,0x6b,0x60,0x9d,0x83,0x36,0xa6,0x9e,0xb3,0x31,0x96,0xec,0x9d,0xac,0x1e,0x33,0x9a,0x9a,0x61,0x8d,0x65,0xb,0xee,0x11,0x6e,0xcb,0xcc,0x4a,0x2c,0xad,0x35,0xa9,0xd4,0x0,0x26,0x16,0xd,0xc,0x6c,0x2d,0x3,0x71,0x4d,0x83,0xae,0xef,0xf1,0xbb,0x1f,0xfc,0x24,0x3e,0xf5,0x85,0xaf,0xe0,0xc7,0x7f,0xf8,0xad,0xb8,0xf7,0xae,0xdb,0xd0,0xb6,0xcd,0xb7,0x3c,0xbf,0xc3,0xe0,0xf1,0xe4,0x33,0xe7,0xf0,0xbe,0xf,0x7f,0x1c,0x5f,0x7d,0xfc,0x59,0x28,0x6d,0xab,0x42,0x8d,0x14,0x7f,0x80,0x56,0xa,0x89,0xcb,0x50,0x8a,0x1a,0x71,0xe8,0x3b,0x6a,0x1a,0xf6,0x3,0x9e,0x3e,0x77,0x1,0xff,0xfa,0x57,0x7f,0x1b,0xbf,0xf0,0xd3,0xef,0xc2,0xed,0xb7,0xdc,0x4,0xad,0x5f,0xbe,0x58,0xe2,0xdc,0xf9,0x97,0xf0,0x7b,0x7f,0xf4,0xe7,0xf8,0xd2,0xe3,0xe7,0x70,0xf7,0xad,0x37,0xe0,0xa8,0x89,0x88,0x91,0x4a,0x35,0x56,0xcb,0x3d,0xc4,0x48,0xc4,0xea,0x87,0x3e,0xf1,0x39,0x9c,0xbf,0xb8,0x83,0x77,0xfd,0xd0,0xf7,0xe1,0xc1,0x57,0xdd,0x8f,0xed,0xad,0xc5,0xcb,0x58,0xb8,0xd7,0x71,0xe1,0xe2,0x25,0xfc,0xe6,0x7b,0xfe,0x0,0x1f,0xf9,0xfc,0xd7,0x10,0xbd,0xc7,0x6e,0xf0,0x68,0xda,0x39,0x12,0x97,0xbb,0xb4,0xb3,0x39,0xb4,0xb1,0x75,0xdc,0x60,0xe5,0xdd,0xfb,0x3e,0xf2,0x39,0x7c,0xe5,0xd1,0x27,0xf0,0x63,0x3f,0xfc,0x36,0xdc,0x7d,0xe7,0xad,0x6b,0x99,0x7e,0xdf,0xc,0x21,0x4,0x3c,0xfb,0xdc,0x39,0xfc,0xd1,0x9f,0xfc,0x29,0x3e,0xf2,0x99,0x2f,0xe1,0xca,0x95,0x2b,0x75,0x6c,0x65,0x7d,0x37,0x33,0x2a,0x3,0xb1,0xd6,0x8d,0xa4,0x76,0x8c,0x48,0x4a,0x41,0x69,0x6a,0xb2,0xd6,0xd6,0xd6,0x16,0x6c,0x14,0xb2,0x4f,0xa9,0x9a,0x7f,0x99,0xb9,0x21,0xb8,0xac,0xe5,0x91,0xe8,0x3,0x8a,0x8a,0x56,0xad,0xad,0xb1,0x91,0x48,0x1f,0xc9,0x41,0xf9,0xbc,0x11,0x8,0x4,0xc7,0xb,0x42,0x0,0xa,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x57,0x9,0x6a,0xf3,0x29,0x72,0xa9,0xe4,0x40,0x64,0x3b,0x64,0xce,0xb9,0xda,0x28,0x53,0xe2,0x5c,0x40,0x5,0xb2,0x31,0x32,0xe9,0x67,0xac,0xa5,0x38,0xb4,0x54,0x2c,0xc3,0xa,0x39,0xf8,0x49,0x51,0x48,0xc2,0x33,0xcf,0x9d,0xc3,0xd6,0x62,0x46,0x24,0x62,0x8c,0x95,0x48,0x79,0xea,0xd9,0xe7,0x91,0x62,0x1c,0xdb,0x80,0xb5,0x86,0xd2,0xd4,0x6,0x9c,0x52,0xc2,0x7c,0xeb,0x44,0x6d,0x6c,0xcd,0x39,0x11,0x71,0xa4,0x14,0x29,0xb7,0xb4,0xae,0xdb,0x18,0xe3,0x40,0x24,0x97,0xe2,0x2,0x92,0x8c,0xfd,0x55,0x8f,0x47,0xbe,0xf1,0x4,0x8c,0xd1,0xac,0xa8,0x3,0x52,0x4e,0xf0,0x3e,0xa0,0xeb,0xfa,0xaa,0x44,0x53,0x4a,0xa1,0x5f,0xed,0x3,0xa0,0x62,0x8c,0xa1,0xef,0xb0,0x7d,0xf2,0x4c,0xb5,0x2e,0x2b,0xad,0xa1,0x14,0xf0,0xd4,0xb9,0x8b,0xf8,0x57,0xff,0xee,0xf7,0x71,0xe3,0x99,0x6d,0xbc,0xe9,0xa1,0xbb,0xf1,0xd0,0xab,0xee,0xc7,0xd9,0x33,0xa7,0x31,0x9f,0xcf,0xe8,0x7c,0x94,0x42,0x4a,0x34,0x4f,0xcb,0xd5,0xa,0x97,0x2e,0x5f,0xc1,0x63,0x4f,0x3e,0x87,0xcf,0x3c,0xfc,0x8,0x1e,0x7f,0xee,0xa5,0x9a,0x63,0x17,0x87,0x15,0x5b,0x60,0xb9,0x3c,0x85,0x8f,0x8b,0x9c,0x61,0xac,0xc5,0x6a,0xb9,0x4b,0xcd,0xca,0x29,0x42,0xa9,0x16,0x80,0x42,0xdf,0x2d,0xf1,0xcc,0xb,0x1a,0xff,0xf2,0xdf,0xbe,0x7,0x6f,0x79,0xe8,0x1e,0xbc,0xe5,0xd,0xaf,0xc6,0x8d,0xd7,0x5f,0x83,0xf9,0xac,0xe5,0x2,0x8a,0x8c,0xae,0x5b,0xe1,0xdc,0xb,0x2f,0xe2,0x93,0x9f,0x79,0x18,0x1f,0xff,0xe2,0xa3,0xd8,0xdf,0xdf,0xc7,0x7c,0xeb,0x4,0xf6,0x96,0x1d,0x1e,0xf9,0xc6,0x93,0xd4,0xe0,0x3b,0xb9,0xce,0x2f,0x5e,0xbc,0x82,0x9c,0x22,0x96,0xab,0x7d,0x78,0x3f,0x50,0x83,0x72,0xb7,0x44,0xd3,0x2e,0xf0,0xd8,0xb3,0x2f,0xe2,0xdf,0xfc,0xfa,0x7b,0x71,0xe3,0xf5,0x9f,0xc0,0x1b,0x5e,0x7d,0x2f,0x1e,0xbc,0xff,0x4e,0xdc,0x7c,0xd3,0xd,0x58,0xcc,0x5a,0x38,0x67,0xeb,0xdc,0xe7,0xc,0x74,0x5d,0x87,0x17,0x5f,0xba,0x80,0xcf,0x7e,0xe1,0x61,0xfc,0xd1,0x9f,0x7d,0xa,0x17,0xaf,0xec,0x56,0x15,0xa3,0x75,0x6d,0x55,0x63,0x2a,0xad,0xd1,0xaf,0x68,0x8c,0xda,0x58,0x1a,0x33,0xf9,0x82,0x1,0x28,0x3c,0x71,0xfe,0xa,0xfe,0x97,0xff,0xf3,0xf7,0x70,0xef,0x2d,0xd7,0xe0,0x7b,0xbf,0xe7,0x41,0xdc,0x75,0xc7,0x6d,0x38,0x7d,0xea,0x24,0x8c,0x31,0x95,0xf0,0xcc,0x39,0x23,0xa6,0x84,0xae,0xeb,0x71,0xe9,0xd2,0x25,0x3c,0xfa,0xf8,0x53,0xf8,0xf4,0xe7,0x1e,0xc6,0xc3,0x5f,0x7b,0x1c,0xfb,0xcb,0x25,0xe7,0x53,0x52,0x9b,0xb3,0xd2,0xa,0x86,0x9,0x3f,0xa5,0x35,0xfc,0xd0,0x41,0x19,0xc3,0x65,0x33,0xae,0x52,0xa2,0x39,0x27,0x52,0x9d,0xa6,0x48,0x5,0x38,0x6c,0x5b,0x7,0x30,0xc9,0xf7,0x53,0xf5,0xfa,0x15,0x32,0xaf,0xe4,0xf9,0x4d,0xad,0xf3,0x44,0x86,0x17,0x45,0x6d,0xa1,0x3,0x33,0xb5,0x58,0x97,0x47,0xa5,0x15,0x58,0x20,0x10,0x1c,0x23,0x48,0x32,0xa9,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x70,0x95,0x60,0xeb,0xf4,0xf5,0xb8,0xf7,0xa1,0x37,0xe1,0xc4,0xe9,0x6b,0x38,0xd7,0x2f,0x32,0x69,0xa3,0x10,0xd8,0x6e,0xb,0x4c,0x88,0x8b,0x4c,0xb9,0x68,0xd4,0x92,0xda,0x50,0x71,0xf0,0x84,0x18,0x21,0xf2,0x2a,0xc1,0x3a,0xc7,0x3f,0x6b,0x28,0x6d,0x28,0x73,0x2f,0x78,0x7a,0x3e,0x86,0xaa,0x4,0x23,0xe5,0xdf,0x80,0xfd,0xdd,0xcb,0x8,0xc3,0x80,0x61,0xe8,0x2a,0x21,0x38,0x5b,0x6c,0xa3,0x6d,0xe7,0x30,0xd6,0xc1,0x38,0xc7,0x19,0x7f,0x44,0xf0,0x29,0xa3,0xe1,0x5c,0x33,0x36,0x18,0x67,0x70,0x53,0xb1,0x26,0x22,0x88,0xc9,0x3d,0x63,0x6d,0x55,0x29,0x6a,0x43,0xd,0xb0,0x39,0x25,0x2c,0xf7,0x76,0xe0,0x87,0x1e,0xfd,0x6a,0x9,0xcd,0xc4,0x90,0xd2,0xba,0x1e,0xaf,0x99,0xcd,0x39,0x7b,0x10,0x70,0x4d,0x3,0x3f,0xc,0x8,0x7e,0x80,0xd6,0x1a,0xcb,0x3d,0x22,0xcf,0xce,0x9c,0x3a,0x89,0x33,0x27,0x17,0x38,0x75,0xea,0x34,0xda,0xb6,0x41,0x88,0xc0,0xde,0xb2,0xc3,0x72,0x88,0xd8,0x5b,0xf6,0x4c,0x9c,0x92,0xb2,0x30,0x30,0x29,0xa,0x90,0xcd,0x3a,0xc5,0x8,0x28,0x22,0x9c,0x0,0xb2,0x62,0xf7,0xab,0x25,0x56,0xcb,0xbd,0x9a,0x93,0x97,0x52,0xc4,0x62,0xeb,0x24,0xda,0xf9,0x2,0xc6,0x3a,0xb4,0xb3,0x5,0x42,0x18,0xe0,0x5c,0x8b,0xd6,0x24,0xdc,0x70,0xf6,0x24,0xac,0xca,0x8,0x31,0xe2,0xb9,0x17,0x2e,0xe0,0xc2,0x95,0x7d,0x58,0xd7,0xd4,0xf3,0x56,0x8a,0xae,0x87,0xb6,0x96,0x8,0x50,0xb6,0x66,0x97,0xb1,0xa6,0x14,0xd1,0x2d,0xf7,0xe9,0x3a,0xc4,0x88,0xd5,0x72,0xf,0xce,0x35,0x58,0x9c,0x38,0x45,0x6a,0x39,0x63,0x60,0x5d,0x3,0xa5,0x14,0x1a,0xe7,0x70,0x6a,0x7b,0x86,0x33,0x27,0x4f,0xc0,0xa8,0x4,0x6d,0x1c,0x56,0xcb,0x7d,0x5c,0xdc,0xd9,0xc7,0xd3,0xcf,0x3d,0x5f,0x9,0xc4,0x14,0x13,0x82,0xef,0xd1,0xad,0x96,0x98,0xcd,0xb7,0xe8,0x1c,0x8c,0x85,0xd6,0xa6,0x66,0x39,0xda,0xa6,0x41,0xdb,0x2e,0xc8,0x3a,0xce,0x8a,0xbc,0x18,0x3d,0x52,0x4a,0x58,0xed,0xef,0xc2,0x35,0x2d,0xba,0xe5,0x1e,0xae,0x3f,0x73,0x12,0x67,0x4f,0x9f,0xc4,0x62,0x31,0x87,0xb3,0x16,0xcb,0x7e,0xc0,0xfe,0xb2,0xc3,0xf9,0x17,0x2f,0x60,0xd9,0xd3,0x5a,0xea,0x56,0x7b,0x30,0xda,0x20,0xe5,0x8c,0x6e,0xb9,0x7,0x80,0x4a,0x54,0xfa,0xd5,0x12,0x39,0x27,0xb8,0x76,0x86,0x7e,0x45,0x63,0xd4,0x6c,0x75,0x6e,0xf8,0x1a,0x6b,0xb6,0x96,0x87,0xe0,0x79,0xd,0x84,0x35,0x82,0xae,0xa8,0x4d,0x2b,0x71,0xaa,0x34,0xcd,0x5f,0x1c,0x33,0x2d,0xd7,0xad,0xf1,0x19,0x58,0xd7,0x1,0x92,0xaa,0x30,0x46,0x84,0x30,0xc0,0xf,0x3,0x2e,0xbe,0xf0,0x1c,0x9e,0x7f,0xfc,0xcb,0xf2,0xc1,0x23,0x10,0x8,0x8e,0x5,0x44,0x1,0x28,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x10,0x5c,0x45,0xc8,0x39,0x11,0x6d,0x51,0x89,0x3c,0xaa,0x32,0xd8,0xa8,0x55,0xe2,0x7,0x53,0x4a,0x40,0x20,0x2b,0x27,0xd9,0x70,0x29,0xf3,0xaf,0x14,0x28,0xa0,0x34,0xf2,0x9a,0x19,0x7c,0xdf,0x21,0x59,0x4b,0xa4,0xa2,0x1f,0xc8,0x6e,0x5a,0x2d,0xc3,0x9,0x61,0xe8,0x1,0x2e,0xc1,0x18,0xba,0x25,0x56,0xfb,0x7b,0x68,0xe7,0xb,0xb8,0x66,0x86,0x68,0xc9,0x92,0x69,0xac,0x85,0x75,0x2d,0x91,0x58,0xc6,0x40,0x41,0x21,0x78,0x22,0xb2,0x22,0x5b,0x4d,0x63,0x88,0x40,0x8c,0x9c,0x4f,0x48,0x39,0x81,0x0,0xd9,0x92,0x95,0xd2,0x35,0x3,0xae,0xe4,0xbc,0x91,0xfa,0xcb,0x21,0x86,0x40,0xff,0x45,0xca,0xa1,0x5b,0x38,0xc7,0x45,0x24,0x3d,0x5c,0x33,0x43,0xf0,0x94,0x33,0x8,0x85,0xaa,0x42,0x1c,0x86,0x1,0xcf,0x3d,0xff,0x3c,0xae,0xec,0x9d,0x86,0x3e,0x7f,0x19,0xae,0x69,0xab,0xcd,0xb4,0xe4,0x20,0x2,0xac,0x96,0x64,0x2b,0x69,0x4a,0x91,0xcf,0x85,0xc9,0x52,0x45,0x84,0x64,0xc,0x1,0x43,0xb7,0xa4,0x9b,0x31,0xb6,0xfd,0xfa,0x61,0xa8,0xc7,0x2c,0x2d,0xcb,0x64,0xab,0xd6,0xf0,0xbe,0x87,0x1f,0x32,0x2e,0x3e,0xf6,0xc,0x62,0xc,0xe8,0xf6,0xf7,0x10,0x82,0xc7,0x7c,0xb1,0x8d,0xa0,0x3c,0x54,0x4f,0x99,0x88,0x28,0x4a,0xbd,0x94,0x6a,0xd3,0x71,0xc8,0x43,0x6d,0x4f,0x4e,0x31,0xc0,0xf,0x3d,0x72,0x4a,0xd8,0xdb,0xb9,0x84,0x66,0x36,0x87,0xf7,0x3,0x7c,0xdf,0x1,0x39,0x43,0x27,0x53,0xed,0xd7,0x41,0x1b,0x9c,0xbf,0x70,0x5,0x2f,0x5e,0xdc,0x9d,0x8c,0x4d,0xa3,0x5f,0x2d,0xe1,0x9a,0x16,0x29,0x46,0x38,0xd7,0xa0,0x8f,0x1d,0x94,0xd2,0x68,0x67,0x73,0x9e,0x2b,0xc0,0xc4,0x8,0xb0,0xb2,0xce,0x35,0x2d,0x72,0xca,0xf0,0x43,0x47,0x4a,0x40,0x15,0x6a,0xe,0x65,0x60,0x25,0xe2,0xfe,0xce,0x65,0xc4,0x18,0xf1,0xdc,0x8b,0x17,0xf1,0xf4,0xf3,0xe7,0xd1,0xb4,0x33,0x22,0x21,0x67,0xb,0x5a,0x27,0xdc,0x2e,0x1d,0x86,0x1e,0x89,0xb3,0x28,0x8d,0xb5,0xf4,0x3a,0xad,0x31,0x74,0xab,0x9a,0x25,0x49,0xaa,0x55,0x3,0xd7,0xcc,0x90,0x73,0x82,0x31,0xe,0xc6,0x58,0x56,0xf9,0xb1,0xe5,0x17,0xb4,0xe,0xf5,0x81,0x6,0xdf,0x62,0x35,0x1f,0xad,0xbf,0xa,0x31,0xfa,0x5a,0x7a,0x73,0x38,0x63,0x52,0x8d,0x3e,0x5f,0x2e,0x14,0x29,0x19,0x9a,0xbc,0x57,0x88,0xd6,0x46,0x20,0x10,0x1c,0x27,0x8,0x1,0x28,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x10,0x5c,0x25,0xc8,0x98,0x64,0xfd,0x4d,0x6c,0x8b,0x29,0x25,0x28,0xad,0xaa,0x1d,0x92,0xa,0x81,0xf5,0x1a,0xc9,0x57,0xec,0x92,0x94,0xe3,0x17,0x6a,0x5e,0x9a,0x73,0x2d,0x42,0x8,0x50,0x13,0xf2,0xaa,0x34,0xae,0x1a,0xb6,0x1c,0x2b,0x63,0x38,0xeb,0x8f,0x48,0xc4,0x18,0xc9,0x4e,0x5c,0x14,0x71,0xb3,0xc5,0x36,0xdb,0x5b,0x23,0xac,0x6e,0xd8,0x82,0xc9,0x44,0xd1,0x30,0x90,0xa,0x31,0x46,0x18,0x4b,0x4a,0xc3,0xa1,0xef,0x60,0x8c,0x41,0x8c,0x11,0x8e,0x5b,0x75,0xa9,0x65,0x37,0x70,0xb3,0xeb,0xc0,0x85,0xf,0xa,0x4a,0x2b,0x26,0xf5,0xc,0x96,0x7b,0x3b,0x88,0x81,0x88,0x30,0x0,0x64,0xf,0x4d,0x34,0x1e,0xd7,0xce,0x48,0x2d,0xc7,0x59,0x71,0x29,0x4,0x78,0x3f,0xa0,0x5b,0x52,0xb9,0xc4,0x90,0x33,0xf6,0x76,0x2e,0x61,0xeb,0xc4,0xe9,0x35,0xe5,0x58,0x4e,0x89,0xd4,0x63,0x29,0xc1,0x6a,0x53,0x49,0xcf,0x72,0xbe,0xc1,0x7b,0x56,0x44,0xe,0x6c,0x59,0x8d,0x55,0x21,0xd8,0xb1,0x1d,0xb9,0x90,0x4f,0x43,0xb7,0x82,0xd9,0xb2,0x44,0xca,0x1,0x70,0xcd,0xc,0x29,0x78,0x64,0x64,0xf4,0xdd,0xaa,0x2a,0xf7,0x16,0x5b,0x27,0xa8,0xec,0x22,0x27,0xb2,0x13,0x17,0x92,0x34,0x78,0x20,0x78,0x26,0xac,0x88,0xac,0xd,0x7e,0x20,0x2a,0x8a,0xc9,0x2a,0x3f,0x74,0x9c,0xd5,0x17,0xe1,0x87,0xe,0xd8,0x3a,0x31,0xda,0xbe,0x99,0x44,0x2c,0x63,0x88,0xac,0x60,0xb4,0xd6,0xb1,0x9d,0x96,0xae,0x43,0x19,0x2f,0x11,0xb5,0xe,0xab,0xbd,0x1d,0xc,0x43,0x7,0xad,0x34,0x86,0x44,0xb6,0xef,0xa1,0x37,0x68,0xe7,0xb,0xf8,0xa1,0x47,0x3b,0x5b,0x40,0x1b,0xb,0xd7,0x94,0x3c,0x45,0xb2,0xd0,0xe,0xfd,0x8a,0x33,0x12,0x7,0xa8,0xc0,0xcd,0xbb,0x4c,0x62,0x96,0xd6,0x64,0xe4,0x4c,0x5,0x32,0xa0,0x42,0x17,0x6d,0x2c,0xa2,0x1f,0x78,0x6e,0x49,0xe9,0x7,0x0,0x3a,0x1b,0x5e,0x4b,0x5b,0x40,0xce,0x6c,0xf3,0xe5,0x52,0x8e,0x3c,0x29,0xf3,0xd0,0xba,0x92,0x90,0x45,0xcd,0x3a,0x5a,0x7a,0xf3,0x24,0xcf,0x2f,0xd5,0xf5,0x89,0xe9,0x6b,0x68,0x43,0x70,0x2b,0x8,0x78,0xe7,0x44,0xf5,0x29,0x5,0x24,0x1a,0x5f,0x39,0xa6,0x40,0x20,0x10,0x1c,0x17,0x18,0x0,0xff,0x93,0x4c,0x83,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0xf0,0xff,0x7f,0xd8,0x66,0x8e,0x6b,0xae,0x7f,0x5,0x66,0x8b,0x2d,0x28,0x26,0x61,0xa,0xf1,0x91,0x52,0x21,0x93,0x2c,0x32,0x72,0xcd,0x7e,0xab,0xd9,0x67,0xac,0xf4,0xd3,0x5a,0x43,0x73,0xeb,0x6e,0x51,0xd6,0x21,0xa7,0x31,0xeb,0x8d,0x95,0x7e,0x95,0xc0,0x1,0x2a,0xa1,0x64,0xac,0x23,0x85,0x60,0x4a,0x58,0x2d,0xf7,0x30,0xf4,0x1d,0x94,0x22,0x52,0xca,0xb8,0x6,0xae,0x9d,0x41,0x41,0xc1,0xb9,0x76,0xa2,0x9d,0xa2,0xf6,0x5c,0xc3,0x96,0xde,0xd1,0x7e,0xcc,0xca,0x45,0xad,0x6b,0xeb,0x6c,0xb1,0x24,0x97,0xe2,0xd,0x22,0x99,0x3a,0xa4,0xe0,0x2b,0x29,0x37,0x74,0x2b,0x22,0x1a,0x6d,0x3,0xd7,0xb4,0x64,0x1d,0x36,0xb6,0x2a,0xe5,0x0,0xd4,0x46,0xe3,0x18,0x2,0x13,0x68,0x19,0xdd,0x72,0x9f,0xa,0x24,0xb8,0x49,0x56,0x6b,0xcd,0xa4,0x28,0xcd,0x8d,0x2,0x95,0x51,0x4,0x3f,0x4c,0xa,0x4f,0x7c,0x55,0xa0,0x15,0x22,0x95,0x32,0xf,0x23,0x8f,0x5d,0xd7,0xfd,0x2,0x64,0x83,0x2e,0xc7,0x4e,0x21,0x40,0x71,0xe1,0x49,0x8,0x1e,0xc8,0x99,0x1a,0x76,0xc3,0x80,0xc4,0x96,0xe1,0x76,0xb6,0x18,0x33,0xfa,0x52,0x82,0xd1,0x86,0xc9,0x29,0x70,0x8e,0x63,0x21,0x39,0x23,0x37,0xf4,0xe,0xd0,0x8a,0x6c,0xcd,0x21,0x78,0xb6,0xc4,0xe,0x9c,0xa5,0x98,0x58,0x35,0x67,0x91,0x33,0xc6,0x7c,0x3d,0x26,0xba,0xfc,0xd0,0x53,0x56,0x61,0xb1,0x15,0xf3,0x7a,0xc8,0x3c,0xdf,0x0,0x11,0xbb,0x39,0x93,0xb5,0x77,0xcc,0x80,0x54,0xa3,0x42,0x6f,0x42,0xf0,0xc5,0x48,0xeb,0x23,0xe5,0xc8,0xaa,0x4c,0x5f,0xd7,0x22,0x91,0x7a,0xf4,0x67,0x25,0x1e,0x73,0x42,0x62,0xfb,0x30,0xa9,0x3d,0xc1,0x99,0x90,0x94,0x77,0x68,0x5d,0x53,0xe7,0x8b,0x96,0xd,0x65,0x2f,0x42,0xd1,0xeb,0xac,0x73,0x94,0x7f,0x15,0x23,0xc0,0xea,0xbf,0xa2,0x2,0x24,0x45,0xa0,0xa9,0xc4,0xf5,0x94,0xe0,0x9d,0xaa,0x65,0xcb,0x98,0x79,0x91,0x80,0x9f,0x1a,0x5f,0xab,0x28,0x7b,0x32,0x33,0xd1,0xdb,0x2d,0xf7,0xb0,0x77,0xf9,0x25,0xf9,0xe0,0x11,0x8,0x4,0xc7,0xe3,0xdf,0x0,0x32,0x5,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0xc1,0x55,0x2,0x56,0x44,0x8d,0xca,0xa7,0xb1,0x1,0xb8,0x28,0xc6,0x32,0xdb,0x1f,0x13,0x5b,0x69,0x73,0xca,0x55,0x79,0x57,0xb2,0xe4,0xa6,0x8d,0xa9,0x9a,0xb7,0xf1,0xbe,0x87,0x31,0x25,0x8f,0x8f,0x6c,0x94,0xa9,0x94,0x26,0xb0,0xed,0xd2,0x7,0x5f,0x73,0x0,0x3d,0x5b,0x3a,0x53,0x8c,0x98,0x6f,0x9d,0xa8,0x24,0x90,0x73,0xd,0x35,0xc9,0xea,0xa6,0x96,0x38,0x18,0xa3,0x88,0x10,0xcc,0xa9,0xaa,0x13,0x13,0x2b,0x4,0x2b,0x19,0xc5,0x96,0xdd,0x42,0x1a,0x95,0xbc,0x39,0x6b,0x1d,0x93,0x73,0x1,0x7d,0xb7,0x24,0xa5,0x61,0x54,0x8,0x61,0x80,0xf1,0x16,0xb3,0xc5,0x76,0x55,0x10,0xd2,0x38,0x33,0x72,0x8a,0xf0,0xc3,0x40,0x67,0xae,0x34,0x96,0xbb,0x44,0x98,0xb9,0xa6,0x25,0x2b,0x32,0x17,0x5d,0x8c,0x45,0x24,0x9,0x21,0x6,0x22,0x1e,0x87,0x1e,0x4a,0x6b,0x68,0x26,0x15,0xbb,0xe5,0x1e,0xab,0xb,0x89,0x80,0xa4,0xf2,0x91,0x15,0x62,0xf0,0x18,0xba,0xe,0xae,0x6d,0x11,0x0,0xb6,0x35,0x93,0x6d,0xd9,0xb9,0x16,0xcd,0x6c,0x5e,0xc9,0xbc,0xe0,0x87,0xfa,0x9f,0x52,0x9a,0x54,0x91,0xce,0x61,0xb5,0xbf,0xb,0xeb,0x88,0xc8,0x9c,0x2f,0xb6,0x31,0xb0,0x72,0x50,0x15,0x62,0xcb,0xd0,0x75,0x2c,0xaf,0xcb,0x89,0x8e,0x4f,0x4,0x63,0x84,0x8f,0x3d,0xcd,0xbd,0x27,0xb2,0xb1,0xd8,0xb6,0x8b,0xd2,0x2f,0xc6,0x0,0x63,0xf2,0x24,0xd3,0x10,0x95,0x68,0xd,0xbe,0xaf,0xca,0x38,0xa5,0xc9,0x6,0x9c,0x52,0x84,0x8a,0xaa,0x92,0xc3,0x7e,0xe8,0x61,0x9b,0x66,0xb4,0x24,0x73,0x49,0x47,0x21,0xd5,0xbc,0xef,0x2b,0xf1,0x18,0x82,0xaf,0x84,0x63,0x4c,0x11,0xb3,0xf9,0x16,0x90,0x51,0xcb,0x45,0x9c,0x6b,0x11,0x15,0xcd,0x4f,0x64,0x72,0x34,0x71,0xb9,0x48,0x21,0x39,0xcb,0xb9,0x84,0x40,0x44,0x34,0xa9,0x5a,0xc1,0xb6,0xe8,0x30,0xe6,0x57,0x96,0x76,0x5f,0x26,0x2f,0xa9,0xe5,0x3a,0x8d,0xca,0xbe,0x3c,0x51,0xf5,0x61,0x3d,0xed,0xaf,0x34,0x67,0xd3,0x10,0xe,0xb6,0x1,0x1f,0x7a,0xbb,0x9,0x4,0x2,0xc1,0xb1,0x81,0x96,0x29,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0xae,0x22,0x70,0x49,0x6,0x11,0x81,0x5c,0x4c,0x51,0x9,0xbd,0x92,0x67,0x97,0x6b,0xd1,0x46,0xb1,0x65,0xc6,0x18,0x2a,0xd9,0x96,0xb9,0x2d,0xb5,0x5a,0x6f,0xb9,0x48,0xa4,0x14,0x7a,0x14,0xc2,0xa7,0x3c,0x4f,0x8d,0xbf,0x9a,0x15,0x5c,0x1,0x21,0x4,0x38,0xd7,0x40,0x6b,0x8d,0xc8,0xd9,0x74,0x89,0x2d,0x9b,0x29,0xc5,0x6a,0x59,0x35,0xc6,0xae,0x29,0xcc,0xb4,0x26,0xf5,0x5d,0x62,0x42,0x47,0x6b,0x3,0x6d,0x2c,0x52,0xc,0x48,0x4c,0xb0,0x5,0x4f,0x36,0x63,0xca,0x98,0xa3,0x42,0x8e,0x10,0x3c,0x86,0xbe,0x27,0x32,0x50,0x69,0x2a,0x1f,0xc9,0xb9,0x92,0x84,0x45,0xad,0x98,0x52,0xa8,0xaa,0x45,0x80,0x72,0xf8,0x52,0xa,0x95,0x54,0x24,0xfb,0x70,0x87,0xe0,0x7,0xac,0xf6,0x77,0xb9,0x50,0x23,0xd5,0xc2,0x10,0xa5,0x34,0x9a,0xd9,0xbc,0xce,0x45,0xf0,0x9e,0xc8,0x3f,0x1e,0x63,0xcd,0x54,0x8c,0xa4,0x0,0xd4,0xc6,0xd4,0x62,0x92,0xa1,0x5f,0xb1,0x4a,0x4e,0x57,0x55,0x5f,0x4a,0xa4,0x7a,0x2b,0xe3,0xc9,0x39,0x55,0x5,0x63,0xa,0xa4,0xb6,0xf3,0x43,0x4f,0x44,0xe3,0x6a,0xbf,0x5a,0x78,0x8b,0xb2,0x6d,0xe8,0x3a,0xf4,0xab,0xfd,0x5a,0x7c,0x92,0x72,0x42,0xdf,0xad,0x10,0x2b,0xb9,0x67,0x30,0x74,0x2b,0x44,0x1e,0x37,0x8d,0x33,0xa0,0x5f,0xad,0x48,0xb5,0x19,0xa8,0x29,0x99,0x32,0x13,0x43,0xbd,0xe,0x65,0x8e,0x15,0x14,0x5b,0x81,0x1d,0x52,0x4e,0x44,0xde,0xa6,0x8,0xa3,0xd,0xf6,0xae,0x5c,0xc2,0xfe,0xee,0x65,0x5c,0xb9,0xf0,0x2,0xf6,0x76,0x2e,0xd3,0xf9,0xb3,0xaa,0xb0,0x5c,0xdf,0x72,0x6d,0x53,0x8a,0xf5,0xba,0x2f,0xf7,0x76,0xa8,0x24,0xa5,0x5b,0x51,0xd1,0x48,0x8a,0xac,0xa0,0xf4,0x5c,0xf4,0xe2,0x6a,0x61,0x87,0x6d,0x5a,0x28,0xad,0xd8,0x3e,0x4e,0xd7,0xa1,0x5b,0x2d,0xe9,0x18,0x89,0x54,0xa9,0x4a,0x81,0x4a,0x65,0xb8,0x4,0x64,0xcd,0xfe,0x3b,0x59,0x97,0x79,0x4a,0xa,0xd2,0xe0,0xe8,0x72,0x55,0xa5,0x1f,0x29,0xfb,0x88,0xbc,0xa4,0xeb,0x58,0x88,0xe7,0x31,0x1f,0xb0,0xbc,0xb7,0xb0,0xa6,0x56,0x15,0x8,0x4,0x82,0xe3,0x0,0x51,0x0,0xa,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x57,0x9,0x12,0x67,0xf8,0x11,0xb9,0xa1,0x0,0x95,0x2b,0xc1,0x44,0xe4,0x86,0x1a,0x33,0xd3,0x90,0xa1,0x59,0x2f,0x90,0x73,0xaa,0x24,0x4b,0xb1,0xa,0x27,0xb6,0xfb,0x6a,0x6d,0xd8,0xf6,0x98,0x91,0x32,0x95,0x34,0x54,0xa5,0x20,0x80,0x9c,0x28,0x53,0x4e,0xb1,0x5d,0x38,0x45,0x2a,0xc7,0xf0,0x9e,0xec,0xb6,0x7e,0x18,0xa8,0xcd,0x56,0xeb,0x6a,0xe1,0x2d,0x14,0xa,0x65,0xb,0xb2,0xd5,0x37,0x27,0xa4,0x44,0xcd,0xc5,0xc6,0x58,0x22,0x7c,0x94,0xaf,0xad,0xbb,0xc6,0xd8,0xb5,0xac,0x42,0xa5,0x35,0xba,0xd5,0x92,0xbb,0x1a,0x52,0xb5,0xdf,0x16,0x2b,0xb0,0x6b,0x5a,0x26,0x23,0xc9,0x7e,0x3b,0x80,0x32,0xf7,0xc,0xe7,0xdb,0x25,0x56,0x94,0x35,0xed,0x1c,0x7e,0xe8,0xab,0x3a,0x72,0x7f,0xf7,0xa,0x86,0xa1,0xc7,0x7c,0x71,0x2,0x1d,0x37,0xce,0xda,0xa6,0xad,0x24,0xa9,0xb1,0xae,0xce,0x13,0xe5,0x0,0xda,0x4a,0x9e,0xad,0xf6,0x77,0x91,0x53,0x26,0xb2,0x4e,0x95,0xc6,0x65,0x8d,0x7e,0xb9,0x8f,0xed,0xd3,0x67,0x69,0x5c,0x31,0x20,0x46,0x8b,0x9c,0x7b,0xb2,0xba,0x72,0x66,0x9d,0xd6,0x6,0xdd,0xb0,0x57,0xc9,0xc4,0x62,0xab,0x75,0x4d,0x8b,0xa1,0x5f,0xa1,0x99,0x2d,0x58,0x21,0xa8,0x30,0xc,0x3d,0x13,0xb4,0x9,0x39,0x83,0x15,0x87,0xa1,0x2a,0x2f,0xb,0x99,0xb5,0x73,0x79,0x17,0x67,0xaf,0xbb,0xa9,0x12,0x5a,0x6b,0xc4,0x6e,0x8c,0xa4,0xa4,0xe3,0x8c,0x48,0x63,0xc,0x37,0x2e,0xd3,0x75,0x77,0xae,0x65,0xeb,0xad,0xc3,0xd0,0x13,0xa1,0x3a,0xc,0x7d,0x9d,0x63,0xd7,0xb6,0xe8,0xbb,0x15,0x91,0x8f,0x4c,0x6c,0xe,0x43,0x87,0xa6,0x9d,0x55,0x72,0xd6,0x36,0x2d,0x95,0xc2,0x40,0x91,0x25,0x1a,0x80,0x75,0xd,0xfc,0xd0,0x43,0xeb,0x50,0x5f,0x5b,0xce,0xc9,0x72,0xe3,0x33,0x15,0x7e,0x0,0xd1,0x13,0xd1,0xec,0x3,0xd9,0xca,0x87,0xae,0xa3,0x35,0x36,0x21,0xfb,0x48,0x8d,0x8a,0x4a,0x36,0x6b,0xce,0xa3,0xa4,0x75,0x9d,0x47,0x1b,0x3c,0x26,0x84,0x1f,0xbf,0x47,0xa,0xca,0xf1,0x15,0x40,0xaa,0xc2,0x54,0xac,0xf1,0xc0,0x58,0xf6,0xb1,0xde,0x8,0xc,0x60,0x8d,0x4c,0x16,0x8,0x4,0x82,0xbf,0x6b,0x8,0x1,0x28,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x10,0x5c,0x35,0xd0,0x6c,0xa5,0xcd,0xc8,0x6a,0x9d,0xf8,0xc8,0x8a,0x8,0x11,0xad,0x46,0x7b,0x2d,0x11,0x85,0xba,0x2a,0x1,0x15,0x5b,0x3b,0x63,0x8c,0x94,0x31,0xa7,0x14,0x42,0x62,0xb2,0x84,0x15,0x75,0xd3,0xd2,0x90,0x62,0x17,0x56,0x4a,0x91,0x4a,0x2f,0x92,0x42,0x70,0x24,0xc9,0x22,0xac,0xa3,0xa6,0x56,0x80,0x6c,0xba,0xb6,0x69,0x41,0xd,0xac,0xb1,0x2a,0xe9,0xc,0x13,0x3f,0xda,0x1a,0x34,0xad,0xe3,0x86,0xdd,0xcc,0xd9,0x78,0xc3,0x5a,0x59,0x43,0x8c,0x9e,0x6d,0xc8,0x63,0xf6,0x5c,0x51,0x25,0x2a,0x28,0xac,0xf6,0xa9,0xd9,0x76,0xef,0xca,0x25,0x2c,0xb6,0x4f,0x22,0xa7,0x8,0xc0,0x55,0xa2,0x91,0x8a,0x4a,0xe8,0x9c,0x9d,0x6b,0xd0,0x75,0x4b,0x28,0x6d,0xa0,0x8d,0x41,0xb7,0xdc,0x1b,0xf3,0xc,0x8d,0x21,0xb,0x35,0x13,0x52,0xb9,0xa5,0x6,0x61,0xd7,0x90,0x9d,0xb5,0x90,0x69,0x31,0x64,0xb6,0xb7,0xc6,0x5a,0x40,0x92,0x53,0x82,0x32,0x64,0xb7,0xd,0xc1,0x63,0x36,0xdf,0x46,0xf4,0x54,0xa0,0xd2,0xce,0xe6,0xc8,0x4c,0xba,0x69,0xad,0x11,0x38,0x77,0x90,0x54,0x72,0x9,0x7d,0xb7,0xac,0xc4,0x5b,0x64,0x5b,0x32,0x29,0x28,0xa9,0x75,0xb7,0x14,0xa8,0x4,0xef,0xa9,0xca,0x82,0x73,0xfb,0x8a,0xe2,0x10,0xc8,0x8,0xde,0x63,0xb5,0xbf,0x8b,0xc5,0xf6,0x9,0xf4,0xdd,0x3e,0x80,0x8c,0x66,0xb6,0xa8,0x6a,0xcd,0xc8,0x73,0xe0,0xfb,0x55,0xcd,0x42,0x1c,0x38,0x53,0x8f,0xc8,0x4e,0x22,0x8b,0xbd,0x1f,0xd0,0x34,0x2d,0xa9,0x1f,0x41,0x6b,0x83,0xd6,0x40,0x1c,0x8b,0x50,0x8c,0x85,0xd6,0x6,0xde,0x53,0x19,0x48,0xb9,0x16,0xc6,0x58,0x28,0xa0,0x36,0x4a,0x5b,0xeb,0xb0,0xdc,0xdb,0xa9,0x64,0x62,0x3b,0x5f,0xd0,0xd8,0x57,0xfb,0x98,0x6f,0x9d,0xe4,0xb9,0xf4,0x80,0x52,0xf5,0xfa,0x96,0xe6,0xdf,0x62,0xb,0xce,0x39,0xa2,0x5f,0xad,0x60,0x9c,0x83,0x5d,0x34,0x64,0xcd,0xf6,0x3,0x5c,0x3b,0xaf,0x5,0x36,0x65,0x9d,0x14,0x7f,0xae,0xaa,0xa,0xbf,0x5c,0x15,0x94,0x45,0x15,0xa8,0x30,0x29,0xa,0xa9,0xef,0x21,0x22,0xc9,0x35,0x13,0xcd,0x23,0xc4,0xef,0x2b,0x10,0x8,0x8e,0x37,0xa4,0x4,0x44,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0xb8,0x4a,0x60,0x9b,0xd9,0x5a,0x9,0x8,0x80,0x4a,0x8c,0x14,0xa2,0xa3,0xb4,0x4,0x6b,0xce,0xff,0x83,0x1a,0x6d,0x8d,0x7,0xcb,0x10,0x36,0x15,0x23,0x90,0xb2,0x50,0x21,0x85,0xc0,0x84,0x10,0x65,0xe5,0x81,0xb3,0x5,0x8b,0x95,0x36,0xc5,0x80,0xdd,0x2b,0x17,0xc9,0xee,0xa,0x60,0x36,0xdf,0x82,0x6b,0x5b,0x18,0x6d,0x90,0x1,0x68,0xa5,0xd9,0xba,0x1a,0xe8,0xc6,0x85,0x4b,0x46,0xfc,0xd0,0x13,0x91,0x95,0x1,0xa3,0x4d,0x6d,0xf,0x2e,0x36,0x57,0xeb,0x1a,0x7a,0x8e,0x6d,0xa2,0x31,0x6,0xce,0xcf,0xeb,0xe1,0x99,0xbc,0x53,0x4a,0x55,0xd5,0xa0,0xd6,0x6,0xae,0x69,0x60,0x39,0xe7,0xb0,0xcc,0x89,0xb1,0x16,0x50,0xa,0x46,0x1b,0x84,0x61,0x40,0x62,0xd2,0x6f,0xb5,0xdc,0x43,0xc,0x1e,0x6d,0x3b,0xc7,0xd0,0xaf,0x2a,0xd9,0x9,0xa8,0x49,0x4e,0x9f,0x82,0xf7,0xa4,0x86,0xeb,0x57,0x4b,0x7e,0x9c,0x32,0xee,0xa8,0x68,0x24,0x23,0x45,0x6a,0xf,0x36,0x25,0xab,0xb0,0x69,0x58,0xc5,0x48,0x24,0x9a,0xe6,0x12,0x8d,0xc,0xd4,0xe6,0xdd,0x62,0xf7,0xa5,0x76,0x5c,0xc0,0xb3,0xad,0x96,0xec,0xd9,0xa1,0x66,0x17,0x2a,0x28,0x56,0xf0,0xd,0xf0,0xc3,0x80,0xbe,0x5b,0xd6,0x92,0x93,0xd5,0xfe,0x6e,0x2d,0x26,0x19,0xfa,0x15,0x66,0x5b,0x27,0xa8,0xb1,0xd9,0x52,0x63,0x73,0x99,0xc3,0xbe,0x5b,0x41,0x29,0x8d,0xd5,0xfe,0x2e,0xfa,0x7e,0xc5,0x2d,0xce,0xfe,0x80,0xd,0x38,0xd7,0xa6,0xe4,0x18,0x3c,0x95,0x94,0xf8,0x1,0x4d,0x3b,0xc3,0xd0,0xad,0x28,0xc7,0x10,0x54,0xac,0xe1,0x9a,0x59,0x9d,0x5f,0xa5,0x74,0x25,0x83,0x63,0x8c,0x35,0x9f,0x2f,0xa7,0x84,0x6e,0xb5,0x4f,0x24,0x33,0x37,0x4a,0x8f,0x76,0xea,0xbe,0x12,0x9b,0xc5,0x6,0x1d,0xfc,0x0,0xdf,0x77,0xdc,0xb0,0xcc,0x65,0x22,0x29,0xf2,0xf8,0xc9,0x22,0xed,0xda,0xb6,0xae,0xeb,0xb1,0xd8,0xa6,0x5e,0x68,0x8c,0xea,0xbd,0x22,0x83,0xac,0x4f,0xd6,0x3f,0x2a,0xf9,0xc7,0x6a,0xd2,0xd2,0x62,0x5c,0xb6,0x55,0xdc,0xfa,0x5b,0x9e,0xcf,0x39,0x23,0x85,0x80,0xd5,0xfe,0x2e,0xf6,0xaf,0x5c,0x90,0xf,0x1e,0x81,0x40,0x70,0x3c,0xfe,0xd,0x20,0x53,0x20,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x10,0x5c,0x1d,0xd0,0x6c,0xb,0x2d,0xc8,0x9c,0x7,0x58,0xf8,0x8f,0xb1,0x24,0x81,0x5f,0x5f,0x94,0x50,0x13,0x92,0xaf,0x36,0xe1,0x96,0x22,0x84,0x94,0x58,0x39,0x55,0x2c,0x8f,0x19,0x4a,0x19,0xa8,0x92,0xd7,0x17,0x8b,0xa5,0x57,0x8d,0xd6,0x4b,0xce,0x7c,0x9b,0x2f,0x4e,0x60,0xe7,0xf2,0x4b,0x38,0x7d,0xcd,0xd,0x18,0xfa,0xe,0xae,0x69,0x49,0x65,0x56,0xb2,0xd9,0xd8,0x42,0xb,0x56,0x7f,0x69,0x63,0x2a,0xb9,0x45,0x2a,0x3c,0x5b,0xcf,0x39,0x6,0xf,0xa5,0x35,0x86,0xbe,0xe3,0x76,0xdb,0xb0,0xd6,0x90,0x5b,0xb3,0x9,0xd9,0x9e,0x4b,0xb9,0x7d,0x86,0xb3,0xff,0x98,0xc,0x9b,0x6f,0xd5,0x26,0xd8,0xa1,0x23,0xf5,0x5b,0x51,0x12,0x52,0x99,0xc6,0xe,0x9a,0x76,0x86,0x7e,0xb5,0xc4,0xe5,0xb,0x2f,0x60,0xb6,0xd8,0x42,0xc,0x1,0xae,0xe9,0xd9,0x8a,0x5b,0xc6,0xa0,0xab,0x5,0xb8,0xd8,0xa1,0x4b,0xe1,0x89,0xe6,0xd6,0xda,0xe0,0xfb,0x9a,0x51,0xb8,0x7d,0xf2,0xc,0x37,0xdf,0x8e,0x8a,0xb4,0x32,0xfe,0x42,0xa2,0xc6,0x48,0x16,0xd8,0x6e,0x7f,0xf,0x40,0xc6,0xde,0xce,0xa5,0x7a,0x5e,0x2e,0x4,0xcc,0xb7,0x4f,0x12,0x41,0x68,0x1b,0xac,0x96,0x7b,0x4c,0xea,0x16,0xcb,0x75,0x42,0xc8,0x19,0x7d,0xb7,0x42,0x8a,0x9,0xab,0x61,0x17,0x7d,0xb7,0xc4,0x62,0xfb,0x24,0x9d,0x97,0x52,0x88,0xde,0x43,0x6b,0x4d,0xaa,0xc9,0xe0,0xb9,0x90,0x24,0xd5,0xf9,0x1b,0x2,0x6d,0x5b,0x88,0x39,0x6d,0x2c,0x9a,0x76,0xb6,0x96,0xf9,0x58,0x8,0xd0,0x3c,0x10,0xb1,0x67,0x62,0xc4,0x9c,0x4b,0x56,0xa6,0x84,0x9e,0x6d,0x5a,0x22,0x54,0xad,0xe5,0x52,0x13,0xca,0x67,0x34,0xd6,0xd6,0xf9,0x51,0x4a,0x61,0xb5,0xb7,0x83,0xbc,0xd8,0xae,0xea,0x4d,0xca,0xda,0xa3,0x76,0xe0,0xe9,0x71,0xfb,0xd5,0x3e,0x5c,0x33,0x43,0xdf,0x2d,0x61,0xad,0x43,0xc,0x1,0xb3,0xf9,0xa2,0x66,0x45,0xc2,0x82,0xed,0xe5,0x11,0x4a,0x19,0xa4,0x44,0xe5,0x21,0x45,0xd9,0x47,0xc5,0x1e,0x13,0x72,0x30,0x67,0xb6,0xc3,0x3,0xda,0xe8,0x6a,0x93,0x1f,0x1f,0x5f,0x57,0xfb,0x65,0xac,0x5b,0x86,0x39,0x61,0x13,0xa2,0xa,0x14,0x8,0x4,0xc7,0x9,0x42,0x0,0xa,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x57,0x9,0x88,0xe8,0x50,0xb5,0xec,0x74,0xed,0x89,0xc3,0x7f,0x1d,0x9b,0x80,0x27,0x2d,0xc1,0xa,0x54,0x76,0x41,0x84,0xdb,0x48,0x12,0x96,0x9d,0x12,0xf1,0x14,0xd9,0xf6,0x4b,0xe4,0xe0,0x5a,0xa3,0x2a,0xab,0xb8,0xc8,0xde,0x4a,0xf9,0x7f,0x94,0x9,0x47,0x19,0x7e,0xe5,0x1c,0x1,0x54,0x6b,0x6f,0xe6,0x2c,0xb5,0x14,0x23,0xdb,0x37,0x1,0x63,0x1d,0xbd,0x9e,0x9f,0xcb,0x39,0x3,0x89,0x88,0xa3,0x94,0x52,0x2d,0x8a,0x28,0xfb,0x9a,0x92,0x54,0x45,0xa9,0x58,0xa,0x26,0x8a,0x55,0xb5,0x90,0x8a,0x29,0x8f,0xdb,0x43,0x6b,0xb8,0xa6,0x59,0x93,0x81,0x69,0x63,0xd1,0xaf,0xf6,0xb1,0x73,0xe9,0x2,0x16,0xdb,0x27,0xd1,0xad,0xf6,0xd1,0xce,0x16,0x70,0x4d,0x53,0x73,0xf6,0xa,0xe1,0x4,0x0,0xb6,0x69,0x49,0x11,0x18,0x2,0xe6,0x8b,0xed,0x6a,0x7b,0x55,0x4a,0x63,0xbe,0x38,0x51,0xc9,0xba,0x4a,0x9a,0xa6,0x8,0x15,0xc1,0x6d,0xc2,0x86,0xed,0xb4,0x1,0xd6,0x35,0x30,0xce,0xb1,0x4d,0x19,0xd8,0xdf,0xbd,0x8c,0xad,0x13,0xa7,0xa0,0xb5,0xc6,0x6a,0x6f,0x87,0xc9,0xd2,0x25,0x8c,0x9e,0x10,0xb4,0x9c,0x53,0x47,0x39,0x7e,0x16,0xd1,0x18,0x84,0x30,0xf0,0x79,0xd8,0x9a,0xc7,0x97,0x72,0x2,0x32,0x11,0xb6,0x31,0x46,0xb4,0xf3,0x5,0xa9,0x0,0xb5,0xae,0x84,0x22,0xcd,0x6d,0xe4,0xb1,0xad,0xea,0xbc,0xd3,0x78,0xc7,0xe2,0x12,0xa5,0x15,0xda,0xf9,0x1c,0xd6,0x3a,0x4,0x3f,0x60,0xbe,0x75,0xa2,0xda,0xc7,0xa1,0x50,0xc9,0xc0,0x18,0x42,0x25,0x4,0x95,0x36,0x88,0xd1,0xd7,0x76,0xe8,0xd5,0x72,0xf,0xae,0x69,0xb1,0xbf,0x7b,0x19,0x4d,0x3b,0x3,0xa0,0xe0,0xd8,0x7e,0xac,0x4d,0x29,0x41,0xc9,0x94,0x1d,0xa8,0x35,0x62,0xd8,0xe3,0xf1,0x3,0xd6,0x58,0x6e,0x1,0x2e,0x4d,0xc1,0x80,0x72,0xba,0xae,0xf0,0x42,0xee,0x1,0xa5,0xa9,0x5a,0x41,0x73,0xa1,0x47,0x2d,0x3,0xe1,0xff,0xad,0xbd,0x7,0x70,0x4,0xa5,0x57,0xaa,0x81,0x27,0xea,0xc2,0xf1,0x18,0x2,0x81,0x40,0x70,0x3c,0x20,0x16,0x60,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0xe0,0x6a,0xf9,0xc7,0xbf,0x6b,0x70,0xe6,0xda,0x1b,0x30,0xdf,0xda,0x26,0x52,0x3,0x79,0xcd,0xfe,0xb,0xfe,0x79,0xb4,0x3a,0x4e,0xa1,0x2a,0x69,0x48,0x39,0x69,0x54,0x86,0x90,0x53,0x84,0xd2,0x44,0xba,0x55,0x92,0x50,0x4d,0xb2,0xd3,0x74,0x29,0xbb,0x28,0x59,0x6d,0x7e,0x62,0xed,0x2d,0xcd,0xab,0x99,0xce,0x89,0xd5,0x6e,0x45,0xd9,0xa7,0x8d,0xae,0xea,0xbd,0xba,0x2f,0xce,0x68,0x3,0x17,0x55,0x28,0xce,0x1f,0xa4,0x83,0x52,0xb9,0x45,0xca,0x11,0x39,0xc6,0x7a,0x9c,0x98,0x4a,0x56,0x5c,0xa8,0x4a,0x3b,0xe3,0x1c,0x72,0xce,0x58,0x6c,0x9f,0x82,0x36,0x86,0xca,0x4b,0xf8,0x1c,0x4b,0x9e,0x61,0xce,0xa9,0x12,0x4d,0xa,0x8a,0xda,0x8e,0x51,0x22,0xf,0x13,0xac,0x6b,0x26,0xa,0xc8,0xc4,0x4d,0xbd,0x19,0xde,0x13,0x89,0xe5,0xda,0x96,0xc9,0x45,0xb2,0xf9,0x36,0xed,0x9c,0x4a,0x43,0x5c,0x3,0xe4,0xc,0xeb,0x5a,0x58,0xe7,0x46,0x4b,0x35,0x48,0x6d,0x58,0x4a,0x4e,0x4a,0x9b,0x6d,0xf0,0xc3,0x84,0x34,0x24,0x25,0x9c,0xb1,0xe,0xd,0xdb,0x90,0x73,0xca,0x70,0x4d,0xcb,0xaa,0x42,0x22,0x32,0xb5,0x1a,0x1b,0x81,0x4b,0xc6,0x62,0x9a,0xe4,0xe0,0x75,0xfb,0x7b,0xd0,0xc6,0x60,0xbe,0xd8,0xa6,0xec,0x45,0xd7,0x0,0x0,0xac,0x73,0xd5,0x56,0x5c,0x38,0xcf,0xc8,0x63,0x48,0x31,0xc2,0xf,0x1d,0xc0,0x44,0xea,0xd0,0xad,0xd6,0xdb,0x9f,0x53,0x80,0x73,0x2d,0xa9,0x20,0xf9,0xf8,0xc6,0x58,0x18,0xeb,0xea,0x31,0xca,0x5c,0xe7,0x9c,0x60,0xad,0x43,0x66,0xbb,0xb6,0xd2,0xaa,0x16,0xc2,0x94,0x79,0x1e,0xb8,0xb1,0xb8,0x94,0x89,0xd0,0x39,0xd3,0x58,0xfa,0x15,0xa9,0xfd,0x86,0x61,0xc5,0x6d,0xd0,0x54,0x3e,0xd3,0x70,0xde,0x5f,0x51,0x77,0xda,0xa6,0xa9,0xd9,0x84,0xbc,0x7a,0x2b,0xd1,0x9a,0x33,0xea,0xb9,0xa0,0x76,0x7f,0xa8,0xfa,0xda,0x31,0xf9,0x2f,0x6f,0x64,0xfe,0xd4,0xb4,0x30,0x24,0x8f,0xef,0x8d,0xcc,0xca,0x43,0xb1,0x0,0xb,0x4,0x82,0xe3,0x4,0x51,0x0,0xa,0x4,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x57,0xb,0x94,0x82,0xd2,0x96,0xcd,0x89,0x79,0xad,0x8,0xa1,0x16,0x82,0x4c,0xc8,0xbb,0xb1,0x34,0x81,0xa,0x32,0xc6,0xdd,0xa8,0xaa,0x8c,0x52,0x9c,0x61,0x47,0x44,0x50,0x42,0xc6,0x98,0xd,0x18,0x53,0x84,0x1,0x90,0x72,0xae,0xfb,0xb5,0xae,0x5,0x40,0xa,0x3e,0xd7,0xce,0x90,0x12,0x11,0x7d,0xed,0x7c,0xab,0x96,0x4b,0x28,0x6d,0x60,0xac,0x1d,0x15,0x7c,0x8a,0xc8,0x37,0x44,0x22,0x76,0x62,0x8,0x55,0x19,0xe7,0x4c,0x4b,0x99,0x85,0x5c,0x4e,0xa2,0xb4,0x46,0x4e,0x91,0x94,0x85,0xc1,0x3,0x8a,0x49,0x1e,0x64,0x38,0xd7,0x92,0xea,0x2d,0x78,0x68,0x28,0x6c,0x6d,0x9f,0xe2,0xe1,0x8d,0xd6,0x68,0x2a,0xe8,0xa0,0x1c,0xc2,0xcc,0x6a,0x36,0xad,0x2d,0x42,0x18,0xe0,0x5c,0x4b,0xc4,0x5d,0xd3,0x92,0xad,0xd7,0x46,0xb6,0xfd,0xce,0xf8,0x7c,0x3,0x95,0x71,0xb8,0x6,0xaa,0x10,0x50,0xae,0xa9,0xca,0x45,0x22,0xaa,0x2c,0x72,0xca,0x44,0x1e,0xb2,0x62,0xae,0x69,0x5a,0x18,0xeb,0xaa,0xb5,0xb4,0x34,0x10,0xc7,0x98,0x60,0xac,0x83,0xb1,0xd,0x13,0xad,0x9a,0x8b,0x3e,0x22,0xac,0x8d,0x8a,0xcb,0x97,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x75,0x9c,0x1,0x48,0xfb,0x5e,0xee,0xef,0x90,0xa2,0x4e,0x93,0x4d,0xda,0x67,0x22,0x1c,0x1,0x20,0x4,0xca,0xe5,0xf3,0xc3,0x68,0x7b,0x3e,0x7d,0xed,0xd,0xf0,0x7e,0x80,0xf7,0x3,0xa9,0x29,0xf9,0xba,0x6,0x56,0xe5,0x19,0x63,0x1,0x4d,0x24,0x6b,0x3b,0x9b,0x43,0x69,0x5d,0xc9,0x4b,0xa5,0xb8,0x1f,0x3a,0x67,0xb6,0x40,0xb7,0x6c,0x57,0x1e,0xb3,0xb,0x29,0x5f,0x91,0xca,0x4a,0xc8,0x5a,0xec,0xb8,0x5d,0x38,0x71,0xf4,0x5e,0xe6,0x32,0x99,0x58,0x5b,0x89,0xad,0x75,0x88,0x50,0x68,0xda,0x59,0x6d,0x4,0xe,0x93,0x9c,0x43,0xd7,0xb4,0x74,0xed,0x4a,0xd3,0x74,0x4e,0xd8,0x3e,0x79,0xa6,0x16,0x77,0x94,0x35,0x6b,0xac,0xab,0xaf,0xa1,0x3c,0xc8,0x62,0xaf,0xd6,0x4c,0x10,0x73,0xbb,0x74,0xce,0x13,0x45,0x63,0x1c,0xd7,0xfc,0xa4,0x19,0xf8,0xe0,0xfb,0x7,0x3c,0xee,0xa9,0x5a,0xb0,0xbe,0x35,0x26,0xb2,0xda,0x4a,0x4c,0xb,0x4,0x2,0xc1,0x31,0x81,0x10,0x80,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0xc1,0x55,0x82,0x1c,0x13,0x11,0x46,0x79,0x54,0x34,0x29,0x5,0xa4,0x94,0xc7,0xa6,0x5f,0x4c,0x8,0xc1,0x4a,0x78,0x30,0x39,0xc6,0xfb,0xa1,0x86,0x5a,0xc3,0x24,0xe,0x67,0xf1,0xa5,0x34,0xbe,0x5e,0x91,0xda,0x4c,0x2b,0x5d,0xdd,0x91,0xa3,0x8d,0x92,0x32,0xf6,0x66,0x8b,0x6d,0x58,0xef,0xe0,0x5c,0xcb,0x65,0x10,0x1,0xd6,0x3a,0xd8,0x86,0x89,0xb1,0x38,0x16,0x7b,0x14,0x12,0x50,0x71,0x89,0x8,0x29,0xe4,0xc6,0x76,0xe0,0xcc,0xe7,0x34,0x2d,0xd7,0xf0,0x43,0xbf,0xa6,0xd2,0x33,0xda,0x40,0x39,0x8d,0xec,0x7,0x6a,0xda,0x65,0x12,0x27,0xf8,0x81,0xb2,0xe7,0xb4,0xad,0x63,0x2e,0xd,0xb6,0x50,0x8a,0x5a,0x91,0x53,0xa4,0xb1,0xa8,0x51,0x19,0xb8,0x75,0xe2,0x34,0x86,0x6e,0x5,0x6d,0x6c,0x25,0x2b,0xb,0x99,0x14,0x63,0x84,0x66,0x12,0x4d,0x6b,0x3,0x18,0x20,0x46,0x8f,0x18,0x3,0x16,0x5b,0x27,0xe0,0xfd,0x50,0x73,0xf0,0xc8,0x5e,0xac,0xaa,0x42,0xae,0x28,0xf8,0x12,0x5b,0x9b,0x63,0x20,0x35,0x5f,0x21,0xe0,0x62,0x8c,0x70,0xd,0x95,0x6c,0x58,0xeb,0xd0,0xce,0xb7,0x88,0x44,0x6c,0x67,0xd5,0x9a,0xad,0x8d,0xe1,0x9f,0x49,0xaf,0xa8,0x94,0x42,0xf0,0x1e,0xed,0x6c,0x5e,0x8f,0x13,0x7c,0x8f,0xa6,0x21,0x32,0x96,0xc8,0x39,0x20,0x78,0x8f,0x19,0xe7,0xa,0x8e,0x8d,0xcd,0xb6,0x92,0x98,0xc6,0x3a,0x26,0x51,0x29,0x23,0x31,0x3,0x70,0x4c,0x64,0x2a,0xad,0x2a,0x1,0x6b,0xb8,0x39,0xb8,0x9d,0x2f,0x78,0xd1,0xd0,0x7a,0xb2,0x76,0xcc,0x39,0x24,0xa5,0x1c,0x65,0x46,0x6a,0x6d,0x90,0x72,0x26,0x92,0x52,0x71,0xc9,0xb,0x80,0x56,0x1b,0xc,0xdd,0xa,0xde,0xf7,0x30,0xc9,0xf1,0xe3,0x44,0x34,0xb7,0x33,0x26,0x37,0x99,0x94,0x74,0xae,0xa9,0xcd,0xd1,0xc6,0x5a,0x58,0xdb,0x10,0xb1,0x38,0x4a,0xf3,0x26,0xad,0xd7,0xaa,0xaa,0xfe,0x6a,0x5b,0x35,0x9f,0xa3,0x2a,0xed,0xbe,0x65,0xe1,0xf2,0xb6,0x28,0xef,0x80,0x3,0x9d,0x21,0x6b,0xef,0xaf,0xaa,0xb0,0xe4,0x4,0x40,0x21,0x0,0x5,0x2,0xc1,0x31,0x82,0x10,0x80,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0xc1,0x55,0x82,0x91,0x9a,0x98,0x42,0x71,0x5e,0xdc,0xd8,0xe8,0x4b,0x3c,0x58,0x31,0xbb,0x62,0x6c,0x5,0x9e,0xd8,0x85,0xb,0x41,0x55,0x33,0xdd,0x4a,0xae,0x5e,0x4e,0xdc,0x6c,0x9b,0xab,0xb2,0x8e,0x1e,0x67,0x2b,0x6c,0xd6,0x55,0x51,0xa7,0xa3,0x45,0xd3,0xd2,0xdf,0x8b,0xea,0xac,0x28,0xc9,0x62,0xc,0x4c,0xc0,0x30,0x89,0x55,0x48,0x1b,0x3e,0x6,0x9,0x18,0x89,0xfc,0x2b,0xed,0xb9,0x31,0x92,0x2,0x8e,0x32,0x2,0x6d,0x25,0xb1,0xb4,0x36,0x68,0x66,0x73,0x6a,0xe0,0xcd,0x16,0x5a,0x6f,0xd1,0xa8,0x72,0x42,0xbb,0xd8,0xe2,0x52,0x11,0xf,0xc5,0x6a,0xc1,0x62,0x41,0xce,0xac,0x70,0x33,0xd6,0x21,0x44,0xca,0x29,0x74,0xed,0xac,0xda,0x72,0xdb,0xf9,0x56,0x25,0x2c,0xc9,0xaa,0x9c,0x60,0x2d,0x59,0x58,0xb,0x49,0x99,0x39,0x7b,0xcf,0xb8,0x5,0x5b,0x87,0x89,0xe8,0x42,0x4e,0x95,0xfc,0xd4,0x5a,0xd5,0x7d,0x84,0x3c,0xd4,0x79,0x2f,0xcd,0xc4,0xd4,0x92,0x9b,0xd8,0x42,0x9b,0x6a,0x53,0x6f,0xc,0x1e,0xd9,0xb1,0x8d,0x9a,0x8f,0xe9,0x39,0x5b,0x90,0x2c,0xc3,0x6c,0xc3,0xd5,0x44,0xd0,0x6a,0x63,0xc8,0xea,0xab,0x80,0x30,0x50,0x96,0xa0,0xb1,0x8e,0x14,0x72,0xa,0xb0,0x4d,0x83,0xa1,0xef,0x88,0x88,0xb4,0x16,0x7e,0xa0,0x76,0x5d,0xa5,0x35,0xb4,0x52,0x38,0x71,0xf2,0xc,0xff,0x6c,0x28,0xdf,0x8f,0x4b,0x55,0x5c,0x3b,0x5b,0x23,0xc,0x53,0x8c,0xa4,0x3e,0x64,0xb2,0xcc,0xb0,0x3d,0x17,0x20,0x75,0x23,0x38,0x1b,0x51,0x6b,0x53,0xdb,0x98,0xc1,0xd7,0x57,0x1b,0xb,0xa8,0x48,0x5,0x23,0x29,0x61,0xb1,0x7d,0x12,0x19,0x94,0x33,0x18,0x3d,0x8d,0xdb,0xfb,0xfe,0x40,0x6b,0x33,0xad,0x6a,0xd7,0xb4,0x64,0x31,0x56,0x94,0x35,0x68,0x6d,0x53,0xd5,0xa3,0xc5,0x8e,0x9c,0x73,0x22,0xe5,0x6a,0x46,0xb5,0xc0,0x97,0x77,0x87,0x2a,0xed,0xbe,0x63,0x60,0xe5,0xf8,0x2e,0x99,0x2a,0x62,0x4b,0x40,0x60,0x25,0x8,0x69,0x5f,0xaa,0xbc,0x87,0x26,0xdb,0x8,0x4,0x2,0xc1,0x71,0x81,0x10,0x80,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0xc1,0x55,0x2,0xb2,0xe9,0xe6,0x35,0x62,0x83,0xec,0x97,0x44,0xd,0xa6,0x4c,0x44,0x1f,0xf1,0x16,0x79,0x8d,0x2c,0x2c,0x6d,0xc0,0x4a,0x4d,0xb2,0xf0,0x6a,0xa1,0x88,0xe6,0x26,0x54,0x5,0xcd,0x44,0xce,0x94,0xfb,0x28,0x65,0x18,0x45,0x5d,0xa5,0x94,0x26,0x32,0xd0,0xda,0x6a,0xed,0x4,0x14,0x91,0x6b,0x4c,0xbc,0x59,0xe7,0xca,0x49,0xd7,0xf3,0x54,0xda,0x0,0x93,0xc2,0x91,0x42,0xc,0xc6,0x18,0x2a,0x29,0x43,0xad,0xbb,0xa4,0x28,0xd4,0xda,0x20,0xc7,0x50,0xcb,0x44,0x5c,0x33,0xab,0x79,0x71,0xd4,0x98,0x6b,0xab,0x4d,0x77,0x4a,0xd6,0xd4,0xb2,0x11,0x1e,0x7f,0x8c,0x9e,0x89,0xd1,0xc4,0xca,0x44,0xcb,0x39,0x7c,0x96,0x2d,0xc7,0x64,0x51,0x9d,0x6f,0x9d,0xac,0x44,0x5c,0x8c,0x1,0x3a,0x99,0x9a,0x47,0x47,0x4,0x64,0x57,0x49,0x22,0xa5,0x4c,0x55,0xba,0xd5,0x7c,0x43,0x45,0x25,0x1c,0xd6,0x39,0xc4,0xe0,0x11,0x3c,0x1d,0xab,0xcc,0x3d,0x91,0x6c,0xa9,0xe6,0x1,0x42,0x51,0x96,0x61,0xf4,0xbe,0x5e,0x97,0x66,0x36,0x9f,0x34,0xe,0x2b,0x26,0x5d,0x33,0x66,0x8b,0x2d,0x4,0xef,0x6b,0x5e,0x61,0x3b,0x9b,0x43,0xf5,0x74,0x5c,0x6b,0x5d,0x2d,0x57,0x71,0x4d,0x83,0x30,0xc,0xa4,0xe4,0x33,0x16,0x19,0x19,0x26,0x67,0xb6,0x53,0xeb,0xda,0xac,0x6b,0x2c,0x91,0x80,0x75,0xcd,0x18,0x54,0xb2,0x75,0x24,0xe7,0x14,0xb4,0x56,0x63,0x21,0x7,0xdb,0xc6,0xeb,0x5a,0xac,0x59,0x8b,0xc5,0x8a,0xab,0x6b,0xb,0x75,0x3b,0x9b,0x23,0x86,0xc8,0x59,0x84,0x19,0xce,0x35,0x74,0x3c,0xb6,0x77,0x2b,0x5e,0x1b,0x7a,0x62,0x17,0x37,0xd6,0x1,0x20,0xb,0x30,0x65,0x4c,0xa2,0xae,0xd9,0x62,0xff,0xad,0x24,0xf7,0xf8,0x6,0x18,0x17,0xaa,0x6,0xad,0xaf,0x49,0xa5,0x6f,0xae,0xc4,0x60,0x22,0x2b,0x7c,0xce,0xf5,0xb1,0x2a,0x2e,0x1c,0x19,0xc3,0x4a,0x46,0xa,0x4,0x2,0xc1,0x71,0x83,0x10,0x80,0x2,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0xc1,0x55,0x82,0x14,0x3d,0x46,0xba,0x62,0xa2,0x66,0x62,0xae,0xab,0x56,0x1e,0xb0,0x1d,0x38,0x17,0x32,0x84,0x45,0x82,0x4a,0x69,0x26,0xff,0x54,0x2d,0x1,0x29,0x96,0xde,0xa9,0x42,0xaf,0xec,0x23,0xa5,0xc0,0xb9,0x70,0xd4,0x32,0x9b,0x31,0x66,0xb5,0x21,0x51,0xab,0xab,0xf2,0x8a,0x1f,0xd3,0xd5,0x46,0x5c,0x72,0xea,0xa,0x2a,0x59,0xc4,0xd6,0x62,0xc3,0xed,0xb2,0x85,0xd8,0x51,0x50,0x50,0x46,0xd7,0x1c,0x3f,0xa5,0x15,0x54,0x36,0xb5,0x11,0x18,0x2a,0xd7,0xa6,0xdd,0x92,0xdd,0xa6,0xb5,0x26,0xe2,0xca,0xd2,0x71,0xb5,0xb5,0x95,0x44,0x33,0xb5,0x8d,0x77,0x2c,0x78,0x20,0xe2,0x8c,0xe7,0x91,0x49,0x28,0x0,0x50,0x31,0xc0,0x73,0x4e,0x5e,0xb1,0xee,0x16,0x62,0xb,0x3a,0x43,0x29,0xc7,0x4a,0x42,0x5f,0x8b,0x46,0xc,0x13,0x64,0x39,0x67,0xb8,0xa6,0x41,0xc,0x91,0xdb,0x94,0xc9,0x12,0x1b,0x82,0x67,0xdb,0x2f,0x59,0xb2,0x8d,0x35,0x6c,0x75,0xce,0x9c,0x2d,0x18,0x6a,0xab,0x6f,0xce,0x19,0xba,0xa1,0xeb,0x92,0x39,0xbf,0xaf,0x94,0x58,0x94,0xb2,0x91,0x72,0xee,0x94,0x3b,0x98,0x90,0x12,0x28,0x9f,0xd1,0xb9,0x6a,0x81,0xcd,0x19,0x30,0x2d,0x93,0x8d,0x9a,0x4a,0x39,0xca,0x9a,0x88,0x9c,0xcf,0x47,0x6a,0x4b,0xca,0x47,0xc,0x43,0xf,0x6d,0x1d,0x72,0xf0,0x68,0x66,0x33,0xc4,0x18,0xa9,0x61,0x19,0xa8,0x96,0x64,0x6a,0x5c,0xa6,0x8c,0x48,0x18,0x53,0x9f,0x2b,0x24,0xe6,0x48,0xbe,0xa9,0x9a,0xd3,0xa7,0xb5,0x82,0x72,0x34,0x86,0x6c,0x32,0x94,0xb2,0xb5,0xad,0xb8,0x90,0xc3,0x99,0x33,0x25,0x63,0x8,0x93,0xc2,0x18,0xcb,0xa4,0x28,0x67,0x10,0x5a,0x4b,0x24,0x9d,0x42,0x25,0x15,0xb,0x49,0x5d,0x55,0x7e,0xa,0x35,0xb3,0x92,0x14,0xa5,0xf4,0xde,0xd0,0xd5,0x2,0xf,0xa8,0xac,0xea,0x3b,0x46,0x4d,0xc8,0xbf,0x4a,0x2,0x4e,0x30,0x8e,0x6,0xbc,0xbf,0x24,0x1f,0x3a,0x2,0x81,0xe0,0xd8,0x40,0x8,0x40,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0xe0,0x2a,0x41,0xb5,0x38,0xf2,0x4f,0xf4,0x87,0x2,0x52,0xf9,0x79,0x7c,0x2e,0xa7,0x3c,0x51,0xc5,0x29,0x6e,0x79,0x8d,0x55,0xf9,0x57,0x50,0xf2,0xfb,0xca,0x63,0x44,0xd6,0x4d,0xd4,0x82,0x55,0xf5,0x95,0xeb,0xeb,0x33,0x50,0x4b,0x3b,0x8c,0xa5,0x52,0x8c,0x42,0x8,0x95,0xed,0xe9,0xe7,0x72,0xc,0xfa,0x39,0xf8,0xc0,0xc4,0x8f,0xaf,0x2a,0xc0,0x42,0x3a,0x4e,0x95,0x7e,0xb5,0xcd,0x18,0x8a,0x1f,0x53,0xf5,0x78,0xda,0x58,0xe4,0x89,0x5a,0x4c,0x41,0x41,0x5b,0x5b,0xb,0x39,0xb4,0x31,0x5c,0x34,0x41,0xdb,0x11,0xf9,0x47,0x44,0x62,0x66,0x95,0x5a,0x21,0x47,0x29,0xb,0x51,0x73,0x93,0xaf,0xae,0x8d,0xb7,0x45,0xa9,0x57,0xda,0x83,0x33,0x93,0x96,0x4a,0xeb,0x31,0xd3,0x10,0xa,0x4a,0x65,0x4,0xef,0xe9,0x8c,0x13,0xa0,0x95,0x46,0x4c,0x91,0x5a,0x75,0x15,0x65,0xe6,0x65,0x90,0x2a,0xb0,0xa8,0x37,0xb5,0x5,0x1f,0x4b,0x97,0x3a,0x62,0xa4,0x94,0x60,0x95,0xa9,0x45,0x2c,0x80,0xaa,0x2a,0xc1,0xc,0x22,0x2f,0x8b,0xf2,0x30,0x45,0x52,0x6f,0x96,0xdc,0x46,0x6d,0xc,0x60,0x28,0xb7,0x30,0xc5,0x0,0x14,0x95,0x66,0x66,0x22,0x36,0x4d,0xc8,0xba,0xcc,0x2a,0x51,0xad,0x61,0x9b,0x16,0x39,0x25,0xcc,0x17,0x6d,0x25,0x2c,0x2d,0xab,0xf4,0xa8,0xc0,0x24,0xf2,0x7c,0x58,0x9e,0xbb,0x54,0x1b,0xa2,0x53,0x1a,0x8b,0x36,0x8a,0x82,0x32,0x67,0x54,0x2,0xb8,0x28,0x45,0xb5,0x36,0x48,0xbc,0x4e,0x8b,0x2d,0x5c,0x17,0xb2,0x38,0x27,0xe8,0xc6,0x30,0xb9,0x99,0x2b,0xd9,0x47,0x73,0x64,0xea,0x5a,0x1f,0xd7,0x81,0x82,0x82,0x26,0xd2,0x5a,0xa1,0x6e,0x87,0x89,0xd,0x58,0xd7,0x9c,0x4a,0x5e,0xc7,0x98,0x10,0xc0,0x4c,0xa,0x72,0x57,0xf6,0x48,0x9c,0x4f,0x31,0xc6,0xd,0xf2,0x7e,0xe5,0x33,0x47,0x20,0x10,0x1c,0x1f,0x8,0x1,0x28,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x10,0x5c,0x25,0x50,0xc6,0x31,0xf9,0x94,0xc7,0xff,0xf2,0x41,0xfb,0x62,0xaa,0x44,0x1c,0x6d,0xc4,0xb9,0x66,0x69,0x7c,0xcd,0x48,0x34,0xa1,0x36,0xad,0x2,0x23,0x79,0x47,0x9b,0xe9,0x5a,0xca,0xc0,0xae,0x4b,0x14,0x4b,0x68,0x25,0x5c,0x38,0x17,0x4e,0xdb,0xf1,0xb1,0xda,0xc6,0x9a,0xa,0x39,0x43,0xa7,0x41,0x8a,0x40,0xd6,0x5d,0x29,0xc5,0xd6,0xd8,0xa9,0xa5,0x54,0x57,0x35,0xd7,0x1a,0xc1,0xa4,0x14,0x72,0x4c,0xd5,0xb2,0x5b,0x32,0xfd,0x4a,0x91,0x49,0x46,0x46,0x2e,0xc4,0x60,0x3e,0x6c,0x79,0x26,0xc6,0x8a,0x5e,0x53,0xda,0x81,0x51,0x89,0x2a,0xf0,0x38,0x4c,0x25,0x9f,0x8a,0x2,0x2f,0x86,0x92,0xf1,0x47,0x84,0x5c,0x8c,0x1e,0x46,0x69,0xca,0xa5,0x9b,0xcc,0xe3,0x78,0x1c,0x5d,0xe7,0x24,0xf1,0xd8,0x23,0x8f,0xb9,0x10,0x99,0x4a,0x81,0x9,0x43,0x9e,0x83,0xa2,0xc8,0x9c,0xd8,0xa1,0x95,0x36,0xdc,0x5f,0xa1,0x26,0xd7,0x2a,0x42,0xb1,0x2d,0xb9,0x5e,0xcf,0xa2,0xb4,0xe4,0xe2,0x12,0x12,0xe8,0x95,0xcc,0x46,0xd4,0x79,0xcd,0x99,0xc6,0x4e,0x4a,0x3b,0x6a,0x1f,0x2e,0xd7,0xd8,0x70,0x91,0x89,0xb5,0xd,0x34,0x13,0x6a,0x85,0xc,0x2e,0xc7,0x4f,0x6c,0xd9,0xa6,0x52,0x8c,0x58,0xf7,0x59,0x9,0xe2,0x10,0x78,0xd,0xb1,0x85,0xbc,0x10,0x82,0x45,0x11,0x5a,0xd6,0xae,0x52,0xb5,0x8c,0xa4,0x58,0xa8,0xc1,0x63,0xd3,0x53,0x5b,0xb1,0xc9,0xd5,0x9a,0x3e,0x5a,0xd2,0x59,0xc3,0x97,0x47,0x12,0x1a,0x48,0xeb,0xc4,0x61,0xce,0x44,0x1e,0x56,0x95,0xeb,0x7a,0xcf,0x47,0x59,0x1b,0x63,0xfc,0x9f,0xaa,0x44,0x60,0xfd,0x7b,0x3d,0x59,0x8c,0xef,0xd,0x81,0x40,0x20,0x38,0x26,0x90,0x4f,0x24,0x81,0x40,0x20,0x10,0x8,0x4,0x2,0x81,0xe0,0x2a,0x41,0xa,0x7d,0xb5,0x3f,0xe6,0x89,0xe5,0x71,0x14,0x3,0xea,0x89,0xb2,0xe,0xb5,0x98,0xa2,0xd8,0x5a,0x95,0xd2,0x4c,0x50,0xa5,0xb5,0xe7,0x31,0x31,0x15,0xe7,0x49,0x2e,0xda,0x7a,0xfb,0x2f,0x9f,0x43,0x4a,0x6b,0xaa,0xac,0x52,0x56,0x51,0x4e,0x82,0xa,0x2c,0x6c,0x25,0x8b,0x4a,0x1e,0x61,0xb1,0xcf,0x2a,0xa0,0xaa,0xef,0x14,0x13,0x46,0xd5,0xca,0x9,0x52,0xb8,0xd5,0xd7,0xb2,0x2,0xae,0xe6,0x8,0xb2,0x62,0xf,0x7c,0x6e,0x65,0x22,0xe8,0xbc,0x13,0x59,0x6e,0x99,0x18,0x2b,0x24,0x19,0xb5,0xfb,0x72,0x39,0x5,0xca,0x0,0x55,0xcd,0x4,0x2c,0xea,0xc4,0xd2,0x5a,0x5c,0x14,0x83,0xda,0x10,0xb9,0x46,0x96,0x5a,0xcd,0xb6,0x5c,0xde,0x86,0xcf,0x69,0x24,0x48,0x89,0xc8,0x4a,0x29,0xae,0x15,0x53,0x64,0x26,0x38,0x4b,0x9b,0x6d,0x8,0xbe,0xda,0x5f,0xd5,0x84,0x48,0x2d,0xb9,0x7e,0x4a,0x13,0x29,0x66,0xd8,0x6e,0xab,0xb5,0x61,0x95,0x9f,0xad,0x8a,0xc6,0x32,0xf7,0xa5,0x58,0xa4,0x6c,0x5b,0xd4,0x70,0x0,0xe5,0xa,0x16,0x2b,0x72,0x99,0xe3,0x92,0x9,0x58,0x1b,0x82,0x53,0xaa,0xe5,0x2f,0x44,0x56,0x86,0x35,0xf2,0xaf,0x96,0x87,0x70,0xc3,0x6f,0x51,0xfb,0xa9,0x9a,0xe9,0x88,0x3a,0x37,0x0,0xaa,0x85,0x77,0x54,0x5,0xc6,0x7a,0xcd,0x6a,0x46,0x22,0xa8,0xa8,0x44,0x4d,0xdb,0x79,0x79,0xd,0x15,0x12,0xf,0x50,0x95,0x74,0xa4,0x97,0xe4,0x8d,0x44,0xdc,0xc1,0x86,0xde,0xa2,0x18,0x2c,0x16,0xf7,0xf2,0xf4,0x9a,0xc8,0x6f,0x22,0x9e,0x9d,0x12,0x7e,0x63,0x71,0xc8,0x68,0xab,0xa7,0xc7,0xc4,0x2,0x2c,0x10,0x8,0x8e,0xf,0x44,0x1,0x28,0x10,0x8,0x4,0x2,0x81,0x40,0x20,0x10,0x5c,0x25,0x98,0xaa,0xba,0xa,0x59,0xc1,0x2e,0xd2,0xaa,0xca,0x2a,0xe4,0x16,0x94,0x82,0x56,0xa6,0x2a,0xf2,0x68,0x3b,0x52,0xbe,0xa1,0x10,0x71,0xcc,0x1e,0x56,0x25,0x1b,0xc0,0xd9,0x71,0x13,0xe5,0x57,0x9e,0x66,0xf9,0x8d,0xf6,0x61,0x6a,0x16,0x56,0x13,0x95,0xd7,0xa8,0xa,0x24,0xb5,0x9f,0x9a,0x9c,0xab,0x1a,0x6d,0xc6,0x4a,0x55,0xb2,0x25,0x67,0xca,0x4,0x2c,0x44,0x19,0x95,0x4d,0xb0,0xe2,0x8d,0xb3,0xf2,0x2a,0x85,0xc3,0x44,0x5f,0x1d,0xa3,0x5a,0x2f,0x36,0x1,0x50,0x1b,0x88,0x2b,0x21,0xc6,0xa4,0x27,0xd9,0x56,0x47,0xf5,0xda,0xd8,0x3a,0x4c,0xe7,0x1c,0xfc,0x40,0xa4,0x24,0xef,0x3f,0xc5,0x54,0xed,0xa2,0xc6,0x3a,0x52,0xa9,0x19,0x83,0x14,0x99,0x2c,0x9d,0xa8,0x13,0x8b,0xa,0xaf,0x20,0x33,0x41,0xaa,0xd6,0x8a,0x33,0xd4,0x58,0x60,0xc1,0xa0,0x92,0x8b,0xc,0xad,0x49,0xd5,0x58,0x9,0xc6,0x94,0xf9,0x3a,0xd3,0xb1,0x8a,0x42,0xd3,0xf7,0x7d,0x25,0xf3,0x72,0x26,0x7b,0x31,0x5d,0xb3,0xf1,0xda,0xe6,0x44,0x44,0x5c,0x29,0x41,0xb1,0x76,0x6c,0x43,0xe,0x7e,0x80,0x2,0x6a,0x3,0xb3,0x71,0xe,0x39,0x46,0x80,0xf3,0xf7,0x2,0xdb,0xb2,0x33,0xb0,0xd6,0xa4,0x9b,0x52,0x1c,0x73,0x8,0x63,0xac,0x96,0x5f,0x68,0x26,0xeb,0xf8,0x58,0x69,0xa2,0xf6,0x23,0x95,0x28,0xaf,0x97,0x42,0x38,0xa7,0x8,0x28,0xcd,0x63,0xe5,0x42,0xf,0x5e,0xd3,0x69,0x4d,0x29,0x8,0x0,0xba,0x96,0x84,0x28,0xad,0xd7,0x2c,0xea,0x28,0xca,0xc9,0x18,0x27,0xa1,0x97,0xa8,0x6b,0x6f,0xbd,0x19,0x18,0xe3,0xfb,0x1,0xeb,0xaf,0xad,0xaa,0xd6,0x3,0xfb,0x40,0x2e,0xb9,0x98,0xea,0x10,0xc9,0x28,0x10,0x8,0x4,0x7f,0x97,0x10,0x5,0xa0,0x40,0x20,0x10,0x8,0x8e,0xf7,0xcd,0xaa,0x36,0xa4,0x68,0x98,0xfe,0xf2,0xd2,0x76,0xe3,0xeb,0xbe,0xd5,0xed,0xa7,0x8f,0x6d,0x7a,0xbe,0x3c,0x5e,0x8e,0x73,0xd4,0xbe,0xf,0x87,0xff,0xe0,0x65,0x8f,0xf5,0x72,0x63,0x5c,0xdb,0xb6,0xe4,0x68,0xbd,0xcc,0x98,0xe,0xbe,0xfe,0xd0,0x63,0x50,0xdf,0xf2,0x71,0x8f,0xda,0xef,0x37,0xdb,0x7e,0xd3,0x7e,0xe,0xef,0x53,0x6f,0x78,0xbd,0x5e,0xfb,0xfb,0x51,0xdb,0xd3,0xdc,0xe9,0xef,0xf8,0x78,0x2f,0x77,0xfe,0xe5,0x75,0x9b,0xc6,0x5a,0xae,0x59,0x39,0xb7,0xf5,0xbf,0xeb,0x23,0x8f,0xb3,0xf6,0xbc,0xd2,0xdf,0x7c,0xae,0xe,0xbc,0x66,0xba,0xef,0xa3,0xc6,0xfe,0xed,0xbc,0x5f,0x94,0x36,0xd0,0xc6,0xd5,0xb5,0x5c,0x6d,0x92,0x7,0xf6,0xab,0x8d,0x3b,0x74,0x1e,0x2f,0x37,0x8f,0x9b,0xc7,0xae,0xbf,0xa5,0x6b,0x7f,0xd4,0x79,0xa,0xfe,0xf6,0x10,0xe3,0xc0,0x39,0x6b,0x7,0x89,0x41,0xd4,0x56,0x59,0x35,0x36,0x81,0x30,0x31,0x35,0x5a,0x28,0xb,0x29,0x86,0x9c,0x27,0x59,0x69,0x13,0x7b,0x64,0x55,0x4,0xa2,0xda,0x88,0x49,0x35,0x68,0xc6,0x26,0xd6,0x69,0xde,0x5a,0xd9,0x66,0x93,0xf5,0x16,0x98,0x28,0xdc,0xd4,0xd8,0x16,0xcb,0xb6,0xd8,0xa9,0x72,0xae,0x16,0x38,0xe4,0x54,0x8f,0x1f,0xb9,0x24,0xa4,0xa8,0xee,0x4a,0xe6,0x5b,0x7d,0x5d,0x8c,0x95,0xc,0x2c,0xa5,0x19,0xc5,0x1a,0x3c,0xcd,0x81,0x2b,0x6a,0xb6,0xf2,0xba,0xa2,0xc8,0x2b,0xc4,0x5c,0x29,0xb5,0x28,0x65,0x13,0x79,0x4a,0xb0,0x2a,0xc5,0x24,0x64,0x51,0xb2,0x1d,0xbe,0x26,0xe5,0xf9,0xfa,0x79,0x3e,0x69,0x1f,0x2e,0x84,0x64,0xcd,0xb9,0x9b,0x64,0xf,0x16,0x72,0xb2,0x14,0x87,0xd4,0xb1,0x2b,0x22,0x4b,0x8b,0x52,0x6f,0x3c,0x3f,0x35,0xc9,0x4c,0x4c,0x6c,0x2f,0x2e,0x65,0x2d,0x89,0x95,0x97,0x86,0xb7,0x25,0xc2,0xad,0xcc,0x77,0x21,0x77,0x49,0x5d,0x68,0xeb,0x6f,0xc0,0xf2,0x3e,0xf,0x61,0xa8,0x6a,0xce,0x72,0x6d,0xa,0xc1,0x9a,0x6b,0x63,0x33,0xa0,0xb9,0x91,0xb8,0x2a,0x25,0xf9,0x98,0x65,0xcc,0x45,0x9d,0x39,0x66,0x1e,0xa6,0x9,0xa9,0x36,0x32,0x6d,0xb1,0xcc,0x29,0x32,0x13,0xa6,0x25,0xf7,0x50,0xd7,0xf2,0x8d,0xf2,0x5c,0xc,0x61,0xcc,0x3,0xc4,0xa8,0xda,0x24,0x35,0xe9,0x7a,0xdb,0x6f,0xda,0xa0,0xd8,0x2b,0x65,0x20,0x87,0x1f,0x3f,0xf8,0xc3,0x44,0x5,0xb,0x54,0xc5,0xac,0x40,0x20,0x10,0x1c,0x17,0x88,0x2,0x50,0x20,0x10,0x8,0x4,0xc7,0x6,0xd7,0xbe,0xe2,0x2e,0x5c,0x7f,0xf3,0x1d,0x38,0x79,0xf6,0x5a,0x6e,0x75,0x9c,0x96,0x53,0xe6,0x49,0x43,0x24,0xdd,0x20,0xe4,0x92,0xdf,0x94,0xd3,0x7a,0x6e,0x50,0xb9,0xf1,0x64,0x15,0x89,0xd2,0xa,0xa3,0xb5,0x6c,0xc,0x8c,0x2f,0xb9,0x47,0xe5,0x6,0xa3,0xdc,0x98,0x64,0x56,0x37,0x14,0x9b,0x5b,0xb9,0xc1,0xa9,0x37,0xcd,0xb9,0x4,0xaa,0x8f,0x6d,0x86,0x4a,0x9b,0x51,0xe1,0xc0,0x76,0xb8,0xa2,0x4a,0x28,0x8f,0x15,0xe5,0x4a,0xb1,0x35,0x95,0xe7,0xb5,0xa1,0x50,0xf2,0xcc,0x16,0xb7,0x9c,0x8a,0x42,0x62,0xcc,0xe5,0x2,0xdf,0xa8,0x24,0x56,0x91,0xe4,0x94,0xeb,0xd,0xcc,0x54,0xb5,0x53,0x1a,0x2c,0x8b,0x32,0x47,0x6b,0xca,0xc2,0x9a,0x2a,0x5c,0xca,0xf8,0xc7,0xec,0x29,0xd4,0xc6,0xca,0xaa,0x7a,0x61,0x69,0x43,0x99,0x83,0x29,0xa9,0x33,0xde,0x90,0xaa,0xb5,0x96,0xce,0xa9,0x62,0x65,0x9a,0xdb,0x34,0xce,0x7b,0x3e,0x90,0x49,0x35,0xde,0x90,0x17,0x85,0x4a,0xd,0xcd,0xe7,0xf9,0x9d,0x6,0xc4,0x8f,0xf3,0x97,0x6a,0x83,0x67,0xc9,0xff,0x52,0x13,0xf5,0xc8,0x34,0x3f,0xab,0x28,0x6b,0x4a,0x63,0xe9,0xda,0xd,0x5d,0xb9,0xd9,0xe6,0x9b,0x6c,0x54,0x22,0x60,0x5c,0x5f,0xe5,0x26,0x4e,0x97,0x20,0x7d,0x4c,0x1c,0x60,0x13,0xc5,0x50,0x9,0xd8,0xcf,0x18,0x6f,0x2,0x4b,0x78,0x7e,0x55,0x1d,0x61,0x54,0xb2,0x68,0xa5,0x28,0x48,0x5f,0xe9,0x7a,0x93,0x8c,0xd2,0x38,0x59,0xad,0x90,0x79,0x6d,0x5e,0xb,0xa1,0xa0,0x6b,0x3b,0xe9,0xb8,0x7e,0xf,0xce,0x7d,0x39,0x4e,0x25,0x3f,0x26,0x6b,0x20,0x4d,0xae,0xff,0xda,0x5c,0x14,0x42,0x50,0x8f,0xca,0x98,0x92,0x8f,0x45,0xb6,0x48,0x5d,0xc7,0xba,0xae,0x14,0x9b,0xb4,0xc5,0x1e,0xb0,0x91,0x2a,0x6d,0xa8,0xf9,0x94,0xed,0x88,0x79,0xfa,0x7e,0xe0,0xf7,0x55,0x21,0x1a,0x5e,0x3a,0xf7,0xc,0xce,0x3f,0xf3,0x18,0xfa,0xfd,0x2b,0xf2,0x61,0xf8,0x5d,0x44,0xa,0x1e,0x5d,0xb7,0xa4,0xcf,0x17,0x33,0x12,0x1f,0xb5,0x59,0x75,0xc3,0x9a,0x58,0x53,0xa,0x16,0xb,0xe9,0x44,0x85,0xb7,0x46,0xd4,0x29,0xb5,0x46,0xe8,0x95,0x75,0x9b,0x52,0xae,0xea,0xaa,0x91,0xe8,0x3b,0xfc,0xf9,0xb1,0xf6,0x79,0x51,0x3f,0x6f,0x26,0x9f,0xed,0x93,0xf7,0xde,0x5a,0x99,0x89,0x9a,0x34,0x5,0x73,0xe3,0xed,0x58,0xf2,0xb0,0x6e,0x43,0x9e,0xbe,0xff,0x8b,0x9d,0xb6,0x10,0x9c,0x31,0xf8,0xf5,0xf7,0x1d,0xd8,0x86,0xcb,0xd9,0x78,0x39,0x17,0x42,0x11,0x55,0x71,0x47,0xeb,0x3d,0x1d,0x52,0xb1,0xa9,0x49,0x2e,0x5d,0x2c,0xe3,0x98,0xcc,0x6d,0x39,0x5f,0x63,0x4c,0x25,0xca,0x14,0xcf,0x9d,0xe1,0xac,0xc6,0xc4,0x24,0x6c,0xd9,0x57,0xb5,0xc,0x3,0xc8,0x6a,0x32,0x6f,0x53,0x5,0xe7,0x64,0x5e,0x4a,0x8b,0x70,0xc,0x93,0xec,0xbf,0x5c,0x58,0xdb,0x34,0x66,0xd8,0x69,0xfe,0x6c,0x55,0x63,0x2e,0x63,0x79,0x7f,0x42,0x81,0x33,0xf6,0x14,0x28,0x37,0xf,0x35,0x67,0x71,0x4a,0xa4,0x95,0x6b,0x34,0xfe,0xe,0x50,0x7,0xd4,0x95,0x1,0x40,0x29,0x5b,0x19,0x95,0x96,0x23,0x39,0xaa,0xc6,0xe2,0x8f,0x42,0xce,0xf2,0xe7,0xbc,0xb5,0x8e,0x8,0xcb,0x49,0x76,0xe4,0xb4,0xc9,0xb7,0xac,0xc5,0x18,0x46,0x1b,0x77,0x59,0xcf,0xe3,0xe7,0x92,0x9a,0x90,0x72,0x79,0xad,0xc8,0x43,0x4d,0x88,0xbc,0x7c,0x20,0xdf,0xf,0xf5,0x4f,0x85,0xc9,0x1b,0x61,0xfc,0x6d,0x90,0x55,0xfd,0x9d,0x99,0x71,0xb0,0x20,0x47,0x3e,0x73,0x4,0x2,0x81,0x10,0x80,0x2,0x81,0x40,0x20,0x10,0x54,0xb8,0xd9,0x36,0x5e,0xff,0xfd,0xef,0xc4,0xd9,0x6b,0x6f,0xe4,0xdc,0x21,0xac,0x27,0x6f,0xaf,0xdd,0x86,0xe6,0x89,0x5d,0x29,0x4f,0x94,0x12,0x93,0x7f,0xac,0x57,0x6b,0x1a,0x11,0x73,0x85,0xd0,0x1b,0x83,0xd4,0xbf,0x15,0x5b,0x4e,0x3e,0xe0,0xef,0x99,0x34,0x63,0x1e,0xb8,0xd1,0xfd,0xa6,0xfb,0x81,0x5a,0x53,0xc8,0xd4,0x3b,0x88,0xa9,0xaa,0x60,0x7a,0x18,0x75,0xe0,0x86,0x38,0xe7,0xb5,0x1b,0xdf,0x9c,0xd7,0xe8,0xa1,0x9,0xf1,0xf4,0x5d,0x42,0x3e,0xf4,0x97,0xf1,0x8e,0x69,0xad,0x4d,0x34,0x4f,0x6e,0xa8,0x8f,0xf2,0x46,0xd5,0x81,0x8c,0xf9,0x4c,0xd8,0x3c,0xd,0x9b,0x70,0xe8,0xb9,0x89,0xb2,0xe4,0xd0,0x9e,0xca,0x4d,0xee,0xa6,0x1,0x6d,0x7c,0x2e,0x63,0x6a,0x7d,0x3c,0xf4,0xf3,0xf4,0xfa,0x1d,0xfc,0xf9,0x88,0x93,0xad,0x1,0xf3,0x7,0xd7,0x6f,0x69,0x49,0x85,0x1a,0x35,0x23,0x79,0xb2,0x5f,0xa5,0x36,0x5c,0xdb,0x3,0xe7,0x34,0x9d,0x94,0xa3,0x9e,0xfb,0x56,0xa1,0xbe,0xbd,0xed,0xc6,0xf7,0x61,0x79,0xef,0x4d,0x88,0xfa,0x4a,0x10,0xa1,0x9e,0xbf,0x1a,0x4f,0xf4,0xc0,0xb6,0xac,0x94,0x49,0x19,0xdb,0xa7,0xce,0xe2,0xcc,0x75,0x37,0xe1,0xb1,0xaf,0x7c,0x1,0xbb,0x17,0x9e,0x93,0xf,0xc6,0xef,0x22,0x9e,0x7e,0xe4,0x8b,0x58,0x6c,0x9d,0xc4,0x99,0xeb,0x6e,0x5c,0x63,0x29,0xf2,0x9a,0xaa,0x4f,0x1d,0x20,0x9f,0x27,0x9f,0x61,0x85,0x98,0x2f,0x4a,0xc0,0x49,0xe1,0x3,0x91,0xbb,0xd3,0x2f,0x32,0xc6,0xa2,0x90,0xfa,0xbc,0x52,0x13,0xd2,0x7d,0xf2,0xd9,0x96,0xd6,0xc9,0xe4,0x1c,0x73,0x25,0xa1,0xa6,0x65,0x19,0xd3,0xd7,0x1e,0xfe,0x1c,0x60,0x92,0xec,0x0,0xd9,0x46,0x44,0x9d,0x41,0xce,0xb1,0xbe,0x27,0x53,0x21,0x3c,0x27,0x5f,0xec,0x94,0x2f,0x21,0xe,0x5a,0x44,0xe9,0x4b,0x9e,0x54,0x1b,0x7c,0xa7,0xd6,0x5c,0x94,0x4c,0xbf,0xc9,0x97,0x1a,0xd5,0x2,0x5d,0xe7,0x66,0x24,0xce,0x46,0x2,0x8d,0x88,0xff,0x90,0xd2,0xf8,0xde,0x51,0xe3,0x97,0x33,0x65,0xe,0xcb,0xef,0x33,0x6a,0xc0,0x35,0x35,0xa7,0x6e,0x6a,0xf9,0x9d,0x7e,0x76,0x4e,0x89,0xd5,0xa2,0xb2,0xac,0x4,0xe9,0x84,0xa0,0x4c,0xdc,0xf4,0x4b,0x3f,0x8c,0xd7,0x9f,0xbe,0x33,0x1b,0x33,0x13,0xe9,0xf3,0x2a,0x8e,0xbf,0x3,0x53,0xac,0x36,0xeb,0xe9,0x17,0x56,0x8a,0x3f,0x8b,0xf2,0xe4,0x8b,0xa1,0x92,0xa7,0x47,0x99,0x79,0x85,0x20,0xcd,0x6b,0xeb,0xa5,0xe4,0xf7,0xa5,0xfa,0xbb,0x9a,0x15,0x9c,0x85,0xb4,0x64,0xfb,0x77,0x21,0x15,0x81,0xc,0x24,0x5d,0xc9,0xc3,0xfa,0x7b,0xb9,0xe6,0x26,0xae,0x2b,0xf1,0xc6,0x8f,0xc6,0xb1,0x10,0x5,0xd3,0xcf,0xd6,0x94,0x6b,0xf3,0x71,0x25,0x39,0x27,0x9f,0xdc,0x7,0xd7,0x11,0xf2,0x21,0xcf,0xef,0xda,0x2f,0xa6,0xa2,0xc4,0x4c,0x29,0xc2,0xf,0x9d,0x7c,0xe0,0x8,0x4,0x82,0x63,0x83,0x97,0xfb,0x37,0xb6,0x40,0x20,0x10,0x8,0x4,0xdf,0x55,0x18,0xdb,0xe0,0xbe,0xd7,0xbf,0x15,0xb7,0xdd,0xf3,0x6a,0xb8,0xa6,0x99,0x7c,0xc3,0x3e,0x65,0xb8,0xbe,0x2d,0x3a,0x68,0x3,0x89,0x94,0x2b,0xc9,0x72,0x50,0x51,0xb8,0xc6,0xab,0x6c,0x22,0x4e,0x36,0xed,0xfe,0x5b,0xfa,0xcd,0x39,0x12,0x92,0x85,0xc,0xa9,0x4a,0x2c,0xa2,0x3,0x27,0x37,0xa,0x1b,0x48,0x40,0xbc,0xc,0x1b,0x76,0x98,0x1,0x3b,0x44,0x50,0x7e,0xb,0x4c,0xde,0x77,0xfd,0x9f,0x6,0x79,0x42,0xfe,0x4d,0xef,0xd1,0xf,0x72,0x87,0x6a,0x8d,0x5f,0x9b,0xa8,0x56,0xd6,0xb6,0xd9,0x44,0x11,0xbe,0xdc,0x4,0xbd,0x1c,0x95,0xf8,0xcd,0x1e,0xfb,0x2e,0xff,0xd3,0xe8,0xe5,0xae,0xa5,0x2,0x36,0x2c,0xd4,0xf5,0x51,0xab,0x72,0xaf,0xb9,0xde,0x5c,0x59,0xb5,0x59,0xa5,0xc0,0x1,0x53,0x3e,0x71,0xa2,0x10,0xaa,0x4a,0x2e,0xb5,0xf6,0xfe,0xc0,0x46,0xa,0xf9,0xf0,0x89,0xa8,0xe9,0xba,0xfe,0x1b,0xcd,0x93,0xe2,0x9b,0x7c,0x8d,0xa9,0xd5,0x71,0xe8,0x57,0xb8,0xf8,0xe2,0x39,0x7c,0xed,0xb,0x1f,0x17,0x25,0xe0,0x77,0x19,0xcd,0xfc,0x4,0x6e,0xbf,0xef,0x21,0x6c,0x9f,0x3a,0x5b,0xe7,0x7f,0xad,0xd1,0x74,0x8d,0xf8,0x9e,0x2a,0xfe,0x30,0xfe,0x7c,0xf8,0x5b,0xb,0x26,0xcb,0xd4,0xa8,0x0,0xd3,0xaa,0x2a,0x9c,0xd5,0xe4,0x8b,0x82,0x91,0x37,0xc9,0x55,0x71,0x5d,0xbe,0xb4,0x49,0x31,0x8c,0xd6,0xf0,0x3,0xaa,0xe4,0x75,0x15,0xd6,0x54,0x21,0xac,0x27,0xaa,0xb2,0x5c,0x15,0x5c,0x55,0x49,0xac,0x46,0xb,0xe8,0xfa,0x97,0x48,0xba,0x8e,0xe9,0xa0,0x3a,0x6f,0x4a,0x3a,0x8e,0x45,0x12,0x53,0xd5,0xeb,0x38,0x37,0xb6,0x64,0xe0,0xf1,0x87,0x9e,0xaa,0xfb,0xd1,0x6b,0x24,0x18,0xf2,0x44,0x6d,0xa9,0xd6,0xbf,0x90,0x2a,0xd6,0xe2,0xaa,0xb2,0x9d,0x9c,0x63,0x7d,0x9c,0xc7,0x9a,0x73,0xac,0x63,0x2e,0x8a,0xb6,0xe9,0xe7,0x7f,0x39,0xf7,0xda,0xf2,0x6b,0xcc,0x44,0x95,0x37,0xb5,0x59,0xab,0x43,0x16,0x6e,0x63,0xcc,0x9a,0xf5,0x7b,0x24,0x7c,0x53,0xfd,0x2c,0x51,0x53,0x5,0x76,0x51,0xf3,0xc6,0xb8,0xf1,0xbb,0x4,0xa5,0x46,0xb2,0x6e,0x54,0xf4,0x8f,0x44,0xe8,0x48,0x12,0x1b,0x26,0x1a,0xd5,0x9a,0x22,0xb4,0x1e,0x17,0xeb,0xbf,0xab,0xab,0x42,0x74,0xa2,0x30,0xc6,0x44,0xf9,0x37,0x7e,0xcf,0x33,0xf9,0xc2,0xa5,0x28,0xf6,0xcb,0xef,0xe9,0x3c,0x5a,0xa9,0xf,0x7f,0x31,0x83,0xb1,0xd,0x7b,0xfa,0x3b,0xaa,0xd6,0x0,0xf3,0xbc,0x97,0x75,0xc9,0x83,0x8f,0xd1,0xc3,0xf,0x3d,0x2e,0xbd,0x78,0xe,0x97,0xce,0x3f,0x2d,0xb7,0xdb,0x2,0x81,0x40,0x8,0x40,0x81,0x40,0x20,0x10,0x5c,0xdd,0x38,0x73,0xc3,0x6d,0x78,0xf5,0x1b,0xbf,0x1f,0x27,0x4e,0x5f,0xc3,0x4a,0x87,0x74,0x4,0x99,0x75,0x14,0xc1,0xb5,0x46,0xe5,0xad,0x11,0x13,0x95,0xcc,0xa8,0xd6,0x1e,0xb5,0x46,0xb6,0xa9,0x89,0x12,0x69,0xfc,0x87,0xbc,0x1a,0xff,0xa1,0x3f,0x21,0xab,0xd6,0x6f,0x66,0x36,0xc8,0xf4,0xbe,0x65,0x86,0xf0,0x9b,0x32,0x79,0x6b,0xe4,0x99,0x3a,0xa0,0x4e,0xdb,0x24,0x74,0xab,0x37,0x8d,0xd3,0x9b,0x95,0xd,0x24,0xd9,0x78,0x83,0x79,0x34,0xe3,0x34,0xa5,0x80,0x36,0x93,0x3b,0xdf,0xce,0x78,0xd5,0xdf,0x60,0x5e,0xfe,0x16,0x71,0x40,0x35,0x74,0x98,0xa8,0x3b,0xf0,0xfc,0xcb,0xbe,0x7e,0x7c,0x6e,0x4d,0x1,0x59,0xed,0x76,0x7,0x88,0x3b,0xac,0xaf,0xbb,0xf5,0xd7,0xe5,0x75,0x3b,0xd9,0x74,0x21,0x1e,0x20,0xf2,0xa6,0x37,0xfb,0x6b,0xe4,0xc5,0xe1,0xc5,0x7b,0xc4,0x15,0xfd,0xd6,0x89,0xbc,0xb2,0xcf,0xcd,0x6b,0xe9,0x6f,0xca,0x8a,0x8e,0x6a,0xa0,0x61,0xe8,0xf0,0xec,0xe3,0x5f,0xc3,0x13,0x5f,0xfe,0x8c,0x7c,0x50,0x7e,0x97,0xa1,0xb5,0xc5,0xe2,0xf4,0x35,0x38,0x79,0xfa,0x3a,0xb8,0xa6,0x3d,0x64,0xcb,0x1c,0x3f,0x17,0x99,0xc4,0xe2,0xc,0xbf,0x69,0x29,0x48,0x55,0xf3,0x95,0x7d,0x1a,0x5b,0x49,0x95,0x42,0x8a,0x64,0xde,0x6f,0xc9,0x57,0x2b,0xa,0xbb,0x42,0x2a,0x8d,0x85,0x18,0x4c,0xc2,0xa4,0xc0,0x6a,0xbd,0x75,0xb2,0x6b,0x6a,0x1d,0x87,0xd2,0x93,0x38,0x85,0x91,0xa8,0xca,0x85,0x98,0xa9,0xa4,0x5f,0x82,0xd6,0x76,0xb4,0x9a,0x4e,0x8e,0x53,0xc8,0xc5,0x31,0x86,0x20,0xd7,0x63,0xae,0x29,0x81,0x33,0x0,0xad,0x27,0x64,0x90,0xe6,0x73,0xe4,0xf3,0x9f,0x58,0xde,0x29,0x37,0x8f,0x63,0x24,0xac,0xad,0xe4,0xd6,0x68,0x47,0x9d,0x90,0x61,0x4c,0xc0,0x8d,0x4,0x17,0x93,0x8b,0x1c,0x89,0x90,0x52,0xa8,0xad,0xbb,0x95,0xe0,0x34,0xb4,0xcf,0x52,0x72,0x32,0xc6,0x29,0x98,0x4a,0x4a,0xe5,0xe8,0x99,0x9c,0xc2,0x38,0x1e,0x4c,0x9a,0x79,0x27,0x8a,0x44,0xb2,0xfc,0x87,0xda,0xce,0x5b,0x55,0xcb,0xa,0x50,0xda,0x22,0x27,0x2a,0x51,0xc9,0x6b,0x6a,0x46,0xb6,0x4d,0xa7,0x3c,0x92,0x9d,0x93,0x78,0x8d,0x69,0xf3,0x6d,0x21,0x72,0xa9,0x4,0xc5,0x91,0x82,0x52,0x8f,0x64,0x1e,0x8d,0x2b,0x8c,0xe4,0x5c,0x89,0xb1,0x50,0xba,0xc6,0x3b,0xd0,0xf1,0x3,0xa0,0xf4,0x38,0x87,0xac,0x3c,0x4,0xab,0x21,0x31,0x25,0x51,0xa7,0x64,0xaa,0x52,0x88,0x61,0x80,0xb1,0x4d,0xcd,0x34,0x2c,0x6b,0xaa,0x7c,0xee,0x18,0x63,0x6b,0x56,0x63,0xb9,0xbe,0x25,0x6,0xa2,0x5c,0x1f,0x63,0x2c,0x12,0xb7,0xfa,0x52,0xeb,0xb3,0x43,0x4a,0x1,0x5a,0x3b,0x1e,0xef,0x48,0x20,0x77,0xab,0x15,0x96,0xbb,0x97,0x30,0x2c,0xe5,0x4b,0xc,0x81,0x40,0x70,0xbc,0x20,0x16,0x60,0x81,0x40,0x20,0x10,0xfc,0xed,0xdf,0x74,0x1a,0x87,0x57,0xbf,0xf1,0x7,0xb0,0x75,0xe2,0x14,0x86,0xbe,0x1b,0xad,0x52,0x6b,0x34,0xc5,0xba,0xca,0xa3,0xc8,0xc6,0x72,0xca,0xd4,0xe,0xb8,0x99,0x43,0x18,0xed,0x87,0x18,0x73,0x8c,0xa6,0xa,0x8e,0x3c,0xc9,0xb2,0xaa,0xa,0x4,0xce,0x37,0x8b,0x21,0xf0,0xd,0x2e,0x38,0x37,0x6f,0xfd,0x6,0xb8,0x86,0xa8,0x3,0xa3,0xf2,0x63,0x8d,0x68,0xd3,0x6b,0xa4,0xc8,0x41,0xfb,0xdc,0x5a,0xee,0x1a,0xf2,0xe4,0x86,0x65,0xbd,0xe9,0xf2,0xe5,0x88,0x95,0x75,0x55,0xc4,0x24,0xcb,0x68,0x72,0xd3,0x76,0x90,0xab,0xdc,0xa8,0xed,0x52,0xeb,0x56,0xe6,0xb2,0xcd,0xf4,0xb5,0x7,0x5f,0x53,0x8e,0x91,0x5f,0x86,0x54,0xfc,0x4e,0x5a,0xf,0xf,0x91,0x57,0xdf,0xd6,0x3e,0xe,0xca,0x26,0xbf,0x13,0xb2,0x2f,0x1f,0x69,0x25,0xfc,0xa6,0xaf,0x3d,0x40,0xb4,0xe5,0x23,0xe8,0xd2,0x51,0x8d,0x32,0x99,0xd3,0x83,0xc4,0xde,0x94,0x24,0xc0,0xff,0xcb,0xde,0x9b,0x3e,0xdb,0x76,0xd7,0xe7,0x9d,0xcf,0x6f,0x5a,0x6b,0xef,0x73,0xce,0x9d,0x34,0xf,0x8,0x24,0x24,0x10,0x8,0x81,0x40,0x8,0x81,0x99,0x8c,0x8c,0x65,0x8c,0xd,0xb6,0x69,0xc7,0xed,0x76,0x95,0xe3,0x94,0x53,0x7e,0x99,0xae,0xce,0x1f,0xd2,0xd5,0x55,0xdd,0x55,0xa9,0xee,0x74,0xa5,0x93,0xb8,0xd2,0xe9,0xc4,0xb1,0x3b,0x8e,0x8d,0x13,0x3,0xe,0xc6,0xc6,0x18,0xcc,0x8c,0x11,0x20,0x1,0x32,0x42,0x12,0x9a,0xa5,0x7b,0x75,0xa7,0x73,0xf6,0x5e,0xeb,0x37,0xf4,0x8b,0xef,0xb0,0xd6,0x3e,0x67,0x5f,0xe2,0x98,0x9b,0x4b,0xbf,0xf8,0x3e,0x2e,0x5b,0xd2,0xbd,0xe7,0xec,0xbd,0xa6,0x7d,0x74,0xf5,0xf1,0x33,0x4c,0xbd,0x97,0x9b,0x11,0x70,0x6c,0xa4,0xcd,0xdc,0xa1,0xe3,0x9e,0x7f,0xff,0x61,0x27,0xcc,0xe1,0xeb,0x3b,0xef,0xc3,0xdc,0x6,0xf9,0x2e,0x75,0x5f,0x8e,0xbc,0xfe,0x25,0xce,0x69,0x8e,0x1e,0x15,0x52,0xb7,0x2d,0x51,0x70,0xfe,0x75,0x19,0x1b,0x28,0x25,0xe3,0xc4,0x55,0xd7,0x23,0xf6,0x3b,0xc8,0xeb,0x7d,0xfb,0x81,0xf9,0xdf,0x50,0xb5,0x66,0x5c,0x38,0xfd,0x1c,0x2e,0x9c,0x7e,0xe,0x3e,0xed,0x1,0x6d,0x9c,0x45,0x53,0xb,0x9c,0xb,0xa,0x92,0xd0,0x68,0x81,0x55,0xa0,0x50,0xe3,0xaf,0xf1,0x69,0x89,0x9a,0xf,0xe0,0xd3,0x1e,0x5a,0x5e,0xc1,0x5,0x5e,0xbc,0x4d,0xb,0xd4,0xe1,0x22,0x43,0xb1,0xcc,0xc3,0xf,0x9,0xd,0x9e,0x3b,0xde,0x6,0x38,0x9f,0x50,0xf3,0x1,0x9c,0x8f,0x70,0xbe,0x23,0xd0,0xe7,0x3,0x50,0x33,0xe0,0x23,0x83,0x2c,0x87,0x9a,0x57,0x88,0xfd,0x71,0x94,0x71,0x1f,0x3e,0xf4,0x74,0x2c,0x70,0x80,0x6b,0xbc,0xfe,0x4b,0xc7,0xe4,0x42,0x42,0x2d,0x23,0x1c,0x1a,0x9c,0xef,0x0,0xc7,0x3f,0x67,0x5,0x64,0x49,0x3c,0x59,0x46,0x2a,0x20,0xa0,0xa7,0x6c,0x38,0xd2,0xe0,0x13,0x80,0x8a,0x56,0xd6,0xf0,0x61,0x41,0xc7,0xea,0x0,0xf0,0xf5,0x70,0xce,0xa3,0xe6,0x35,0xc1,0x20,0x1,0x53,0xde,0x3,0x2e,0xd0,0x39,0xd,0x17,0xe0,0xe3,0x82,0x41,0x60,0x45,0x6b,0x5,0x3e,0x2e,0xd1,0xca,0x48,0xe7,0x18,0x7a,0xfe,0x57,0x1b,0x43,0xa8,0x3a,0xc2,0xb9,0x0,0xdf,0x2d,0x51,0xc7,0x15,0x5c,0xe8,0xd0,0xca,0x8,0x1f,0x3b,0x2,0x75,0x79,0x5,0xf8,0x38,0xfd,0xb8,0xab,0x72,0xdd,0xd7,0xc,0x1f,0xb9,0x1b,0xcf,0x7,0x6,0x70,0x5,0x80,0x87,0x73,0xd,0xb5,0x8c,0x80,0x8b,0x74,0xaf,0x62,0xbf,0xd1,0xb5,0x27,0xae,0xe2,0x5a,0x32,0x1d,0xbb,0x3,0x5c,0xe8,0x51,0xf3,0xa,0x3e,0xf6,0x74,0xad,0x4a,0x46,0x2b,0x3,0x5a,0xcb,0x70,0x3e,0x11,0x63,0xc,0x89,0xa3,0xd4,0x1e,0xb5,0xac,0xd1,0x5a,0x41,0x48,0x7b,0x68,0x75,0x80,0x8f,0x4b,0xd4,0xbc,0xa2,0xe7,0xa4,0x15,0x3a,0x7f,0x6,0x92,0x2e,0x74,0x68,0xf9,0x0,0x2e,0x74,0xf0,0x71,0x81,0xbc,0x3e,0x7,0x1f,0x7a,0xb4,0x32,0xc0,0xa7,0x1d,0x75,0xdf,0xc1,0x7,0x7d,0xd,0xd4,0x2,0x17,0x3b,0xa0,0x55,0x38,0x4f,0xef,0x5b,0xc7,0x3,0xfa,0x77,0x7c,0x5a,0xa2,0x95,0xc,0x17,0x22,0x5a,0x19,0x50,0xf3,0x9a,0x9f,0x25,0xba,0xf,0xad,0x8e,0x70,0xfc,0xfa,0xad,0xc,0xf4,0x93,0xd0,0x27,0x2,0x91,0xc3,0x3e,0xd,0x90,0xa4,0x25,0x6a,0x59,0x23,0xf6,0xc7,0x90,0x57,0xe7,0xf4,0xbe,0x39,0x1f,0x51,0xc7,0x7d,0x86,0x7b,0x2,0x44,0xa7,0xf3,0x56,0xb0,0x1d,0x17,0x34,0x1e,0x32,0x5e,0xa4,0xcf,0x8b,0xfc,0xd4,0xab,0xd9,0x7e,0xc0,0x98,0x4c,0xa6,0xff,0xdf,0xc9,0x1c,0x80,0x26,0x93,0xc9,0x64,0xba,0xe2,0xba,0xfa,0xa6,0xdb,0x70,0xef,0xbb,0x3f,0x80,0x92,0xa7,0xa5,0xc1,0xaa,0xf1,0x20,0x37,0x79,0xfa,0xe,0xd,0xb,0xc8,0xef,0x6b,0xaf,0x94,0xdb,0x8c,0x2,0x1d,0xee,0xcc,0x9b,0x2f,0x37,0xa,0x98,0x70,0x87,0x9d,0x55,0x2,0x32,0xa4,0x83,0x89,0x1d,0x56,0xb5,0x55,0x4,0xf9,0xf,0x45,0xee,0x2d,0xf2,0x61,0x1a,0x94,0x68,0xe0,0x1,0x87,0x43,0x70,0xae,0xcd,0x8e,0xe7,0x70,0xaf,0x16,0x8d,0x8c,0x88,0x43,0xa2,0x6d,0x12,0x1d,0x3e,0xca,0x5a,0x2b,0x42,0x8,0x5a,0xf4,0x2e,0xd0,0x53,0x0,0xa3,0xf6,0xa9,0x89,0xeb,0x63,0xc3,0xe5,0xe1,0x8e,0x14,0xde,0x4f,0x45,0xe6,0xdb,0x22,0xae,0x6e,0x13,0xb0,0x62,0x8a,0xc3,0xb5,0xcd,0x42,0xa3,0x8d,0x8,0xd7,0xd1,0x8c,0x97,0xd3,0x98,0x95,0x1c,0xcb,0x74,0x69,0xfd,0x6,0x64,0xda,0xd6,0x85,0x38,0x8f,0x1d,0x1e,0x86,0x89,0x75,0x16,0xb1,0x73,0x47,0x7a,0x7,0x8f,0xfe,0x71,0xc6,0x1d,0x72,0xd7,0xc8,0xd0,0xc6,0x14,0x6f,0x3b,0x34,0xca,0xb2,0x31,0xb6,0x31,0x8f,0x8b,0xb5,0x8d,0xf8,0xec,0x61,0x57,0xe6,0xa5,0x0,0xd9,0x9c,0x13,0x4e,0x63,0x20,0x7e,0x33,0x46,0x38,0x1f,0x14,0x39,0x2,0xd8,0x70,0x18,0xd7,0xcd,0x18,0xd9,0x1c,0xf8,0xca,0xc0,0x4b,0xdd,0x7c,0xae,0x67,0xd1,0xc2,0x8d,0x66,0xfb,0x99,0xab,0x70,0xde,0x51,0xb6,0x31,0xc8,0xc1,0xe5,0xf7,0x2,0x94,0xbd,0x7e,0xa6,0x66,0xf7,0xbe,0x1,0xe0,0x51,0x81,0xaa,0xcf,0xdf,0x25,0xb,0x3b,0x27,0x88,0x49,0xff,0x45,0xbc,0xb1,0xc2,0x7a,0x18,0x2c,0xb6,0x56,0x9,0x0,0xe6,0x8c,0x71,0x5c,0xe3,0xbb,0xf,0x7d,0x9,0xfb,0x67,0x5f,0xb0,0x1f,0x98,0x26,0x93,0xc9,0x64,0x32,0x99,0x4c,0x97,0x41,0xb6,0x4b,0x6e,0x32,0x99,0x4c,0xa6,0x2b,0xaf,0x86,0xa3,0x8e,0x3f,0xee,0xfb,0xd3,0x55,0x3f,0x6,0x14,0x3e,0x4,0x2,0x3f,0xf2,0x6b,0x98,0xd6,0x1a,0x25,0xee,0x25,0x60,0x4e,0x0,0x2,0x0,0x5d,0x8d,0x94,0x38,0x92,0xf4,0x20,0xd5,0x19,0xe8,0xa3,0xb7,0x9c,0xad,0x14,0xb6,0xa6,0xdd,0x46,0xc1,0xcb,0x22,0xf0,0x14,0x1d,0x96,0xd5,0x61,0xc6,0x16,0x14,0xc5,0xd2,0xb3,0x98,0x62,0x64,0x4d,0xa3,0x43,0xf3,0x9e,0x25,0x3e,0xde,0x59,0x21,0xbe,0xf,0x54,0x2a,0x8f,0x6,0x5,0x90,0x0,0x50,0x4a,0xc6,0x7c,0xa1,0x50,0x7b,0xa2,0xe6,0x63,0xa,0x5c,0x6e,0xa4,0xab,0xc5,0x98,0x3b,0x8,0xb9,0x8b,0xc8,0xcd,0x9d,0x86,0x6e,0x3,0x36,0xea,0x45,0xdf,0x18,0x52,0x91,0xf3,0xa8,0x4,0x1d,0xdb,0x64,0x35,0x93,0xfb,0x45,0x83,0xd,0xf3,0x85,0x5f,0x59,0xc4,0x24,0x17,0x67,0x9d,0xbb,0x24,0xa7,0xbd,0x80,0x23,0x8e,0x3e,0xe9,0x6b,0x17,0x17,0xca,0x91,0x9e,0x40,0x38,0x65,0x56,0xb2,0x8,0xad,0xcb,0xbc,0x47,0x5e,0x6b,0x5a,0x7,0xad,0x1c,0xf1,0xa2,0xe3,0x69,0x1a,0xe9,0x93,0xf3,0xd2,0x18,0xe1,0x2c,0x7a,0xa7,0x40,0x4a,0x96,0x40,0x25,0xce,0x5,0x1c,0x1a,0x40,0x80,0x5e,0xe7,0xa3,0x2e,0x45,0x37,0xdb,0xff,0x9d,0xc7,0xb5,0xdb,0xf,0x81,0x7f,0x87,0x3e,0x16,0x6d,0x7a,0x85,0x9,0x92,0x35,0x5d,0x22,0xde,0xf8,0x75,0x5d,0xe,0x86,0xae,0x18,0xb7,0xd9,0xfd,0x12,0x27,0xab,0xd3,0x3,0x77,0xa,0xcf,0xe5,0xb8,0x4,0xfe,0x49,0x37,0xd8,0x76,0x98,0xe9,0x36,0x80,0xae,0x7c,0xe,0x4,0x10,0x62,0xb6,0x1e,0xab,0xe7,0x20,0x6e,0x44,0x5,0xea,0x55,0xef,0x51,0x9d,0xbf,0xcf,0x91,0x61,0x89,0xd9,0xb5,0xe0,0x75,0x6a,0x93,0xc9,0x64,0x32,0x99,0x4c,0x26,0xd3,0xe5,0x91,0x1,0x40,0x93,0xc9,0x64,0x32,0x5d,0x71,0x39,0x71,0x73,0x6d,0xe9,0x31,0x73,0xde,0x6d,0xac,0xe0,0xca,0x52,0xa4,0x2,0x9,0x85,0x55,0xc,0x7,0x1d,0xad,0x3,0x86,0x10,0xc9,0x91,0xc7,0xfd,0x41,0x2,0xa3,0xbc,0xf7,0xf0,0xdc,0xa1,0xe4,0xd9,0xad,0xe4,0x7d,0x98,0x15,0xbf,0x4b,0xf9,0x3d,0x10,0x53,0x47,0x60,0xce,0x7b,0x94,0x52,0x10,0x62,0x54,0x98,0xe1,0xe7,0xb1,0x31,0x37,0x75,0x29,0x51,0xe1,0x37,0x45,0x7d,0xc4,0x45,0xe5,0x7d,0xa0,0xe2,0xfb,0x36,0xb9,0x17,0x29,0x56,0x5c,0xe8,0x38,0x19,0xbc,0xd4,0x92,0x21,0x88,0x87,0x16,0x26,0x1b,0x9c,0x77,0xda,0x47,0x34,0x8f,0xe4,0x6a,0x34,0xd,0x33,0x50,0xb4,0x11,0xe1,0x75,0xdc,0x97,0xc4,0x90,0x88,0x8f,0x6d,0xa2,0x4c,0xed,0x48,0xbc,0x55,0x60,0xd0,0x66,0x77,0xdc,0x66,0x29,0xfc,0x66,0xef,0xbe,0xd3,0xdf,0x9f,0xf7,0x22,0xa,0xe0,0x73,0xbc,0x32,0x39,0x4d,0x4e,0x4e,0xce,0x44,0x7a,0xdb,0x86,0x19,0x1f,0xd2,0xaf,0x17,0xd0,0xba,0x1,0x22,0xf,0xc1,0x30,0xf9,0xeb,0xfc,0x1a,0x6c,0x38,0xc9,0x8e,0x44,0x77,0xdd,0xec,0x1f,0xe7,0x6b,0x8e,0xd2,0xe9,0xd4,0x36,0xc1,0x16,0xa0,0xc7,0x2d,0x3d,0x67,0x38,0xe2,0x54,0x3b,0xa,0xff,0xb4,0x7,0x8d,0x5d,0x71,0x2,0xfc,0xf4,0x58,0x79,0x34,0xa0,0xcd,0x0,0xb7,0x5c,0xc3,0xe9,0xf5,0x67,0xe5,0xf6,0x52,0xb0,0x2f,0xcf,0xbc,0x73,0x47,0x2,0xce,0x9b,0x31,0x5c,0x6c,0x1c,0x7,0x36,0xae,0xe9,0x1c,0x98,0x36,0x2,0xe0,0xa5,0x28,0x24,0xaf,0x85,0x7b,0xd9,0xca,0xbc,0x74,0xff,0xf0,0x7b,0x4d,0xd7,0x4b,0x9e,0x7b,0x3f,0x73,0xf1,0xe9,0x90,0x81,0xf7,0x1b,0xcf,0x95,0x42,0xd6,0x99,0x1b,0x77,0xdb,0xcf,0x81,0x8d,0xcf,0xfe,0xe1,0xfb,0xe7,0xad,0xa9,0xc6,0x64,0x32,0x99,0x4c,0x26,0x93,0xe9,0x72,0xc9,0x0,0xa0,0xc9,0x64,0x32,0x99,0xae,0xb8,0xc6,0x71,0xad,0xff,0x91,0xf,0x60,0xd6,0xc7,0x84,0xc9,0x79,0xc6,0x20,0x61,0xce,0x46,0x0,0x81,0x6e,0x40,0x8,0x11,0xa5,0x64,0x8d,0x28,0x56,0x2e,0x83,0xf7,0xc,0x17,0xe7,0x40,0xa1,0xcd,0x62,0x8f,0x12,0x8d,0xa5,0x12,0xef,0x20,0xf4,0x1,0x40,0x43,0x61,0x30,0x52,0x72,0x86,0xf7,0x1e,0x79,0x1c,0x19,0x6c,0x10,0xb4,0x89,0xb1,0x53,0x78,0xa2,0x70,0x5,0xd,0x21,0x26,0x1e,0xca,0x6c,0xa,0x6,0x1b,0x3b,0xf4,0x3c,0xc7,0x76,0x85,0x78,0x35,0x7e,0xfd,0xe9,0x7d,0xc5,0xd,0xc6,0x4e,0xb4,0xda,0x50,0x24,0x66,0xcc,0xb0,0x68,0xbe,0x46,0x49,0x5d,0x53,0x12,0xa7,0x9d,0xf5,0xff,0xf1,0xaf,0x55,0x85,0x38,0x72,0x6d,0x31,0xbb,0x80,0x6e,0x16,0xb5,0x75,0x73,0x86,0xa8,0xee,0x35,0x85,0x96,0x5a,0xf6,0xcf,0xf1,0x63,0x39,0x67,0x34,0xee,0x4c,0xc4,0x74,0x8e,0x1b,0x90,0x8b,0x5f,0x4f,0x4a,0xd9,0x8f,0xc4,0x67,0xdb,0x6,0xe0,0xa5,0xf3,0x70,0xa,0x4c,0x5,0xcc,0xce,0xa3,0xc2,0xf4,0x7b,0x47,0x1,0xdf,0x5c,0x9b,0xce,0xbe,0xc3,0xb0,0xae,0x6e,0x5d,0x18,0x9e,0xde,0x6b,0xbe,0x56,0xdc,0x36,0xe0,0xe0,0x14,0x13,0x86,0x1e,0x83,0xc0,0xbc,0x8d,0x81,0x8d,0x5a,0xd5,0xa9,0xe7,0x8e,0xf4,0xf9,0x35,0x5,0x9e,0x12,0x79,0x96,0xeb,0xec,0xb0,0x59,0xea,0xe7,0x0,0xf8,0xe0,0xf5,0x39,0x45,0xad,0x9b,0xd1,0xf2,0xf9,0xb5,0x53,0xf8,0xe8,0xe7,0x17,0x7e,0xe3,0x5c,0xa1,0x25,0xfa,0x13,0x64,0x9b,0xff,0xb3,0xc2,0xeb,0x8d,0x2a,0xc1,0xc9,0xc1,0xe9,0x79,0x58,0xc0,0xcd,0xbe,0x9f,0xbe,0xe6,0xd0,0xb5,0xd3,0x6b,0xeb,0x67,0xf1,0xe1,0xba,0xb1,0xc2,0x3a,0x3f,0x6,0x1,0x83,0x5e,0x1d,0x89,0xe2,0x3e,0x9d,0x8d,0xd1,0x98,0x5,0xd0,0x64,0x32,0x99,0x4c,0x26,0x93,0xe9,0xb2,0xc9,0x0,0xa0,0xc9,0x64,0x32,0x99,0x7e,0x3c,0x72,0x9b,0x3d,0x73,0x3a,0xa1,0xc0,0x6e,0x22,0xed,0xff,0x3,0xe,0xf5,0x9a,0x41,0xe3,0x8f,0x12,0xc7,0x15,0xc7,0x96,0xe3,0xd8,0xee,0xdc,0x89,0x37,0x87,0x7e,0xe2,0x18,0xd4,0x65,0x41,0x76,0x18,0xc6,0x94,0xe0,0x9c,0x47,0x4a,0x9d,0x76,0xaa,0x1,0x40,0x88,0xe4,0xd6,0xf3,0x3e,0x0,0xe,0x28,0x85,0x80,0x60,0x8,0x41,0x1,0x87,0x77,0x7e,0x5a,0xc0,0x64,0x70,0xe6,0x3d,0x45,0x56,0xbd,0xf7,0xb3,0x68,0x71,0x9b,0xad,0x38,0x6,0x6c,0x40,0x1f,0xcf,0x6b,0x87,0xc,0x43,0xa4,0x5b,0x50,0xdc,0x90,0x8d,0xa1,0x99,0x67,0xc8,0xd5,0x18,0x4,0xb6,0x8d,0x95,0xcd,0x3a,0xab,0x7c,0x73,0x33,0x48,0xe8,0x66,0xaf,0xcd,0x7e,0x43,0x89,0x96,0xb6,0xba,0x1,0x83,0x34,0x56,0xac,0xd1,0x59,0x1a,0x5c,0xd9,0x0,0x48,0x7c,0x9b,0xf4,0x35,0x6a,0x9d,0x5e,0xc7,0x4d,0xbf,0x3e,0x39,0x25,0xbd,0xe,0xdc,0x2a,0xc8,0x3a,0xec,0xb4,0xa3,0x9b,0xbc,0x11,0x91,0xd5,0xe7,0xa2,0x41,0xc1,0x9e,0x80,0xa4,0xb9,0x53,0x50,0xae,0xdd,0xe1,0x31,0x90,0x4d,0x63,0xe0,0x51,0x20,0x4c,0x7f,0xad,0xba,0x18,0x9,0x6c,0xf6,0x27,0x4e,0x5f,0xe7,0x30,0x5f,0x77,0x84,0x2c,0x49,0xb,0xd0,0x9d,0x83,0x2d,0xbd,0x8e,0x6d,0x6b,0x2d,0x9e,0x3a,0xec,0xe6,0xae,0x42,0x3f,0x75,0xf5,0x9,0xe8,0x2c,0xa5,0x50,0xd7,0xa4,0xf7,0x3c,0xc0,0x30,0xb9,0x0,0xeb,0xec,0x33,0x21,0xcf,0x38,0x1,0xeb,0xa0,0xd7,0x2e,0x84,0x30,0x73,0x50,0xb6,0xd,0x47,0xa0,0xdc,0x13,0x7a,0x6,0x37,0x9d,0x7b,0x2,0xfb,0x2a,0xdf,0xd3,0x9,0xd4,0xd2,0x67,0xa2,0x49,0xcc,0x78,0x23,0xec,0x7c,0x78,0xbc,0x66,0x72,0x6b,0x6a,0x5c,0x5e,0xaf,0x7d,0xe3,0x67,0xa7,0x6a,0xac,0x7b,0x2,0xea,0x15,0x1b,0xd3,0xdd,0xc0,0x96,0xae,0x47,0x93,0xc9,0x64,0x32,0x99,0x4c,0x26,0xd3,0xdf,0x55,0x6,0x0,0x4d,0x26,0x93,0xc9,0x74,0xc5,0x15,0x42,0x9c,0x16,0x65,0x5,0x1e,0x30,0x34,0xf1,0xec,0x74,0x3b,0xc,0x20,0x1c,0x26,0xa0,0x24,0xa0,0x40,0x3a,0xf9,0x14,0x22,0xd4,0x32,0xeb,0xc5,0x6b,0x33,0xe8,0x33,0x73,0x14,0xb5,0x9,0x82,0x95,0x9c,0x11,0x52,0x42,0x2d,0x4,0x5b,0x26,0x37,0x94,0x63,0x57,0x5f,0xe3,0xa8,0x2e,0xbd,0xbe,0xb8,0xf1,0xf2,0x38,0x6e,0xe4,0x58,0x25,0x36,0xc,0x38,0x76,0xf7,0x39,0x1e,0x35,0x11,0xe7,0x9a,0xd7,0x48,0xa9,0x97,0x3e,0x3b,0x89,0x53,0xce,0x60,0xe4,0x46,0xe7,0x1b,0x8f,0x8c,0xb4,0xda,0xd4,0x19,0x28,0xbf,0xa3,0xb1,0xd0,0x43,0x91,0x5b,0x82,0x9f,0x61,0xe3,0xda,0xb4,0xd6,0x50,0xa5,0x83,0xad,0x61,0x4b,0x9c,0x7a,0xd6,0xdb,0x76,0xa8,0x73,0xd0,0xe9,0xda,0xf2,0xe6,0xf8,0x5,0x1c,0x34,0x46,0x3d,0xc5,0x88,0xf9,0x1e,0xcd,0x22,0xad,0x53,0xcc,0xdb,0xf1,0xf1,0x30,0xe0,0xf4,0xd3,0x3d,0xa9,0xd2,0xd3,0xc8,0x30,0xaa,0x8a,0x73,0x70,0x7a,0xc7,0x23,0x4e,0x30,0x71,0xe5,0x49,0x94,0x5a,0x9e,0xa1,0xcd,0x5e,0xbe,0x9,0x14,0xce,0xe1,0xd7,0xfc,0x35,0x28,0xaa,0x5a,0xa6,0x73,0xc7,0xc6,0x65,0x51,0xc8,0x2b,0xef,0xc5,0x2f,0x3b,0x5b,0xcf,0xe5,0xb3,0x54,0x57,0xe9,0xf4,0x2,0x9b,0x4b,0xc9,0xd3,0xab,0x6f,0xba,0x51,0x67,0xf0,0x15,0x53,0xb7,0xe2,0x86,0x4b,0x8e,0xfb,0x8,0x5,0x6e,0xb,0x54,0x96,0xef,0xa9,0xb5,0x4c,0x6e,0xbb,0xd6,0xd8,0x19,0x5b,0x66,0xc7,0x24,0x83,0x21,0x9e,0xc1,0x34,0x3b,0x10,0x6b,0x9b,0x5c,0x9a,0x98,0xfa,0x10,0x81,0x9,0xaa,0x4e,0xc7,0xc3,0x10,0xf2,0x30,0x70,0x9f,0xc1,0x7a,0x71,0xe0,0x4e,0x90,0xb7,0xf1,0x75,0xb,0xfc,0x8c,0xf0,0x7b,0xa0,0xc1,0xc1,0x4f,0xf0,0x7f,0x16,0x75,0xd6,0xf7,0x6a,0x4d,0xfb,0x3a,0x4d,0x26,0x93,0xc9,0x64,0x32,0x99,0x4c,0x97,0x47,0x6,0x0,0x4d,0x26,0x93,0xc9,0x74,0xc5,0x15,0x62,0xba,0xe4,0xef,0x49,0x6c,0x52,0x0,0x83,0x77,0x5e,0xfb,0xf7,0x74,0xd0,0x81,0xdd,0x74,0x2,0x52,0x24,0xca,0x2b,0x91,0x42,0xef,0xbd,0x42,0x7,0xc7,0xf0,0x2d,0xcc,0xbe,0x46,0xe0,0xb,0xd,0x8c,0x30,0xb4,0x28,0x4,0x1c,0x62,0x4a,0xb4,0xc2,0x9b,0xc7,0x8d,0xbe,0xbf,0x39,0xdc,0x20,0x67,0x1e,0xc7,0x72,0x4b,0x9e,0x0,0xc,0x2f,0xf8,0x7a,0xe7,0x11,0x43,0x52,0x48,0x38,0xbd,0xf7,0xe6,0x50,0x82,0xc,0x67,0x50,0xf4,0x78,0xd6,0xa5,0x76,0x68,0x1c,0x41,0xdc,0x84,0x0,0x8e,0x74,0xd3,0xd5,0x79,0x54,0x75,0x76,0x7d,0x0,0xf0,0x62,0x31,0x1,0x57,0xc8,0x68,0xc3,0x6c,0xdb,0x63,0xe,0x78,0xd4,0x39,0x39,0x8f,0x98,0xaa,0x93,0x6d,0x1a,0x9e,0x90,0x8b,0x48,0xc0,0xe7,0x70,0xf,0x61,0xa3,0x61,0x14,0x71,0xd6,0xf1,0x28,0x8b,0xb8,0xc1,0xea,0x6c,0x18,0x45,0xe4,0x9c,0xc4,0x9f,0xd9,0xd9,0xc8,0x90,0x72,0x5b,0xc4,0x77,0x3a,0x56,0xe9,0x54,0xac,0xfa,0xbe,0xf2,0x3a,0xd3,0xb1,0x6c,0x79,0xb6,0x74,0x51,0xda,0x6d,0x8c,0x55,0x4c,0x2e,0x38,0xb7,0x71,0x9c,0x6d,0x76,0x5e,0x1a,0x8d,0x65,0x7,0xdf,0x34,0xea,0xa1,0x47,0x38,0xdd,0x43,0x81,0x8b,0x33,0xc8,0x47,0xcf,0xb1,0x57,0x77,0x28,0x5d,0xe3,0x59,0x5f,0x23,0xe,0xbb,0x13,0x37,0x1d,0x76,0x12,0x59,0x6f,0xb3,0xf5,0xe8,0xc3,0x7f,0x3f,0x8f,0xf4,0xfa,0x79,0x2c,0x78,0x6,0x41,0x5b,0xab,0x1a,0x2b,0x9e,0x1c,0xb2,0x72,0xb6,0xd0,0xd8,0xfa,0x86,0x6b,0xb2,0xc9,0x92,0x71,0x61,0x17,0xeb,0xd4,0x71,0xa8,0x43,0x3b,0x87,0x9e,0xd7,0x36,0x7b,0x16,0x15,0xa0,0xcf,0xc6,0x6c,0x30,0x1f,0xf2,0xd9,0x28,0x86,0x84,0x7e,0x36,0x61,0x9,0x60,0x93,0xc9,0x64,0x32,0x99,0x4c,0xa6,0xcb,0x26,0x3,0x80,0x26,0x93,0xc9,0x64,0xba,0xe2,0xca,0x79,0x94,0x60,0xa5,0x10,0xe,0x75,0x0,0xd5,0x56,0x19,0x22,0x11,0x7c,0x12,0xc0,0xe5,0xbd,0x3f,0x34,0x42,0x50,0x37,0x60,0xc9,0x61,0x67,0x14,0xfd,0x7a,0xd5,0x21,0xa,0xf9,0x5a,0xaf,0xf1,0xdd,0xd9,0x88,0x1,0x2f,0xf2,0xa,0xb8,0xa8,0x75,0xea,0x7,0x9c,0x43,0x40,0xf9,0x3a,0xef,0xe5,0x7f,0x23,0xc1,0x4c,0x76,0x2d,0x3a,0x86,0x24,0xa5,0x16,0x1a,0x22,0x61,0xb0,0x55,0x72,0xd6,0x78,0xae,0xf,0x61,0xea,0x4,0x4,0xaf,0x1,0xf3,0xeb,0x51,0xd2,0x57,0x20,0xa0,0x74,0x23,0xf2,0xe5,0x61,0x70,0x74,0x78,0xa9,0x55,0x86,0x4d,0xc4,0x81,0xb5,0x1,0x6e,0xb4,0xc7,0xaf,0xc8,0x15,0x81,0x80,0x1e,0xef,0x3c,0x83,0x58,0x8e,0x89,0x32,0x78,0x94,0x18,0xab,0x2e,0x2d,0x3b,0xa8,0xf3,0x4b,0x60,0xec,0xe4,0xae,0x3b,0xdc,0xc9,0xe7,0x66,0xf0,0xb2,0x2a,0x58,0x93,0x1,0x14,0xb9,0x77,0xe2,0x28,0xd3,0xeb,0xb,0xcc,0xee,0xdf,0xd4,0x89,0xb8,0x6d,0xf0,0x83,0x5e,0xd7,0x7f,0xde,0xd1,0x70,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x61,0x72,0xad,0xb1,0xc3,0x70,0xa3,0x7f,0x10,0x47,0xdc,0x7e,0x12,0x91,0x45,0xdb,0xec,0x20,0x74,0xda,0x19,0x49,0xd7,0x51,0x6,0x65,0xe,0x4b,0xba,0xef,0xe6,0xae,0x3a,0x75,0xca,0xb5,0xba,0xd1,0xcd,0x27,0xcf,0xee,0xfc,0xf8,0x65,0x9d,0x98,0xe0,0x19,0x34,0x8e,0x3e,0x3d,0x3,0x4e,0xc1,0xe2,0xb6,0xff,0x5,0x66,0x51,0xe8,0x43,0xc3,0x20,0xed,0x10,0x58,0xf5,0x21,0xa0,0x30,0x98,0x16,0x90,0x2e,0xcf,0xa9,0x44,0x9e,0x9d,0x9b,0x9f,0xd7,0xe4,0xd6,0x43,0xad,0xdc,0xad,0x29,0x9f,0x39,0xe8,0xca,0xb6,0x0,0xd0,0xc0,0x11,0x76,0x71,0x1a,0x62,0xf6,0xd9,0x52,0xb0,0x3e,0x73,0x67,0x4e,0x10,0xb5,0x6e,0x7e,0xde,0x5,0x3a,0xf3,0x35,0x10,0x8,0xac,0xfd,0x9a,0xe6,0x0,0x34,0x99,0x4c,0x26,0x93,0xc9,0x64,0xba,0x6c,0x32,0x0,0x68,0x32,0x99,0x4c,0xa6,0x2b,0xae,0x18,0xe3,0xd1,0x8a,0x34,0xe9,0x9c,0x9b,0xad,0xf3,0x8a,0x13,0x6c,0x1e,0xaf,0x74,0xb3,0xa8,0xa0,0x40,0x90,0x10,0x22,0xf5,0xd6,0x61,0xf3,0x6b,0xbc,0xf,0x70,0x70,0xa,0x74,0x8,0xb4,0xd1,0xeb,0x87,0x18,0x91,0xba,0x8e,0x7e,0x8d,0xfb,0x3,0x7d,0x8c,0x1a,0x6d,0x55,0x28,0xc7,0xaf,0x3f,0xd,0x76,0xd0,0xeb,0x35,0x34,0xd4,0x92,0xc9,0xe1,0x56,0x2b,0x42,0x88,0x33,0xd0,0x34,0x45,0x73,0xbd,0x13,0xb0,0x41,0xae,0xc5,0x92,0xb3,0x42,0x99,0x5a,0xab,0x2e,0x9,0x57,0xed,0xd1,0x23,0x57,0x15,0x2d,0x10,0x4f,0x2e,0xb4,0x92,0x47,0x68,0x6f,0x9e,0x74,0xab,0xcd,0x22,0xb6,0x1b,0x31,0x52,0xe7,0xe0,0xf9,0x78,0x36,0x7b,0xed,0x26,0xa7,0x18,0x2d,0xc2,0xe6,0x59,0x7,0xde,0x14,0xad,0xa5,0x58,0x69,0xd0,0xe6,0x39,0x81,0x79,0x2,0xb2,0xe4,0xef,0xe7,0xb1,0x59,0x71,0x4,0x36,0x4c,0xce,0xb2,0x56,0xeb,0x86,0x13,0xae,0x61,0xde,0x61,0x47,0x20,0xac,0xd6,0xc6,0xe0,0xb4,0x61,0xa3,0x87,0x4f,0xdf,0x63,0x72,0xde,0x39,0x59,0x79,0x2e,0x85,0x1c,0x71,0x12,0x2d,0x9d,0xb9,0xff,0x70,0x68,0x9d,0x57,0xe0,0xd6,0x4,0x48,0xf,0x39,0x2c,0x67,0x91,0xf3,0xf9,0xaa,0xf4,0xec,0xb1,0x9c,0x8d,0x70,0xcc,0xe2,0xc8,0xad,0x29,0xa8,0x9c,0xee,0xc5,0x14,0x15,0x96,0x5f,0xaf,0xb5,0x6e,0x38,0xfe,0xe4,0x1e,0xc9,0x39,0xc8,0x71,0x14,0x5e,0xa2,0x16,0x7,0xa2,0x8e,0x80,0x60,0x73,0x70,0x43,0x8e,0x47,0x5e,0xf7,0xf0,0xb8,0x86,0xc4,0xa2,0xa9,0xb7,0xd2,0xa1,0xd5,0xc2,0xce,0xca,0xa6,0x2b,0xd3,0xe,0x9b,0x5d,0x82,0xd3,0xb8,0x47,0x9d,0x3a,0x2c,0x65,0x74,0x66,0x3e,0xc8,0x3,0xe8,0x73,0x3c,0x45,0xae,0x2b,0x7c,0xa4,0xcf,0x97,0x74,0x4,0x8a,0x5b,0x72,0x3,0x72,0x3a,0xb7,0xe1,0x34,0x95,0xbf,0x6e,0x1c,0x7,0xdc,0xc6,0x3a,0xb7,0x6d,0x80,0x98,0x4c,0x26,0x93,0xc9,0x64,0x32,0x5d,0x3e,0x19,0x0,0x34,0x99,0x4c,0x26,0xd3,0x15,0x97,0x2c,0xe6,0x6e,0x50,0x40,0x37,0xc5,0x6,0xc5,0x4d,0x27,0xe0,0xc0,0xcf,0x48,0x80,0x80,0xd,0x80,0x1c,0x47,0x21,0x46,0x5,0x54,0x73,0x37,0xd3,0xb4,0xc6,0x4b,0xa0,0xc1,0x1d,0xea,0x70,0x43,0x3,0xc3,0x38,0x8e,0x1b,0x6e,0x74,0xd8,0x4d,0x92,0xb8,0x72,0xea,0x7a,0xc4,0xd4,0xc1,0x79,0xa7,0xf0,0x25,0xc4,0xb8,0x11,0x67,0xd6,0x8,0x2f,0xa6,0xe3,0x73,0x21,0x20,0x76,0x3d,0x39,0xa7,0x78,0x54,0x84,0x4e,0xd7,0xc1,0x7,0x8f,0x18,0x22,0x2a,0x3,0x44,0x85,0x31,0xa,0x48,0x1c,0x36,0xbc,0x5e,0xa,0x9f,0xea,0x86,0x3b,0x30,0xcc,0x40,0x8b,0x18,0xdc,0x8,0x4c,0xf2,0x6a,0x2f,0x66,0xbd,0x8a,0x98,0x7a,0xf7,0xa4,0x6b,0xd0,0x61,0x8a,0x72,0x36,0x34,0x75,0x63,0x69,0xdc,0x55,0xdb,0xfc,0x18,0xda,0xc8,0xe8,0x9,0xa0,0xbd,0x83,0xe2,0xd0,0x4,0x7f,0x5d,0x88,0x91,0x5d,0x8b,0x8e,0xef,0xd1,0xdc,0x5d,0x58,0xd5,0x91,0xe7,0xfc,0xd4,0xd3,0x38,0x1,0x3d,0x37,0xb9,0xdd,0xf8,0x75,0xe9,0x9f,0x67,0xf1,0x50,0x4c,0xd1,0x61,0xe8,0x5a,0xad,0xb8,0x1e,0xb1,0xd1,0x41,0x27,0xee,0xb5,0xc3,0x63,0x32,0x53,0xcf,0x5d,0xd3,0xa8,0xea,0xe4,0x20,0x75,0xa,0xcc,0xe6,0x50,0x77,0x8a,0xab,0x4e,0xf7,0x7c,0x2,0xb0,0xd3,0x92,0xb4,0x9f,0xc1,0x2d,0x30,0x18,0x9e,0xa6,0x6e,0xda,0xe6,0xfb,0xc8,0x73,0xd,0xcc,0xc6,0x3f,0xa6,0x7b,0xde,0x78,0x38,0xa6,0xd6,0xba,0xf1,0xbe,0xf3,0xb1,0x9c,0x5a,0x8a,0xc2,0x4c,0x79,0x1d,0xf9,0xfe,0x23,0x9d,0x83,0xc,0xb9,0x65,0xdd,0x7a,0x1e,0xd7,0x25,0x97,0x6b,0x3c,0xf2,0x2c,0xcb,0x39,0xc9,0xe7,0xca,0x39,0x2,0xe3,0xd2,0xa3,0xb8,0x71,0xff,0x5b,0x9d,0x5d,0xeb,0x69,0x7d,0x5b,0xae,0xf9,0xfc,0xd9,0x91,0x87,0x56,0x16,0xa6,0xa5,0xf3,0x50,0x7a,0x2f,0x4d,0x26,0x93,0xc9,0x64,0x32,0x99,0x4c,0x97,0x47,0x6,0x0,0x4d,0x26,0x93,0xc9,0x74,0xc5,0x25,0x2e,0xb5,0xf9,0x9a,0x2a,0x1a,0x18,0x14,0x1,0x53,0x51,0x5d,0xdb,0x88,0x1,0x7a,0x19,0xea,0x50,0x60,0x30,0xc5,0x22,0x27,0xa8,0x34,0xb9,0x8b,0xc8,0xc9,0xc7,0x8b,0xbe,0x21,0xe9,0x60,0x42,0x8,0x4,0xed,0x62,0xea,0xd0,0x5a,0x43,0x1e,0x47,0x84,0xd4,0x6d,0x38,0xa0,0x1a,0x1a,0xfd,0x3e,0xbb,0xf1,0xd6,0x7,0x7,0x98,0x56,0x4c,0xdb,0x66,0xbc,0x76,0x5a,0x7f,0xa0,0xb8,0x65,0x8,0xa,0x96,0x9c,0x73,0xa8,0x39,0x2b,0x84,0x13,0x18,0xc3,0x98,0x12,0xb5,0x11,0x2c,0x2b,0x25,0x6b,0xc7,0x9b,0x80,0x2d,0x2f,0x6b,0xad,0x8e,0x20,0x9a,0x97,0xfe,0xb4,0x59,0xe7,0x9a,0xf,0x53,0x27,0x1b,0xd4,0xc9,0x5,0x5,0x29,0xea,0xac,0x64,0x68,0x26,0xe0,0xcd,0xb3,0x13,0x6c,0xea,0x7b,0xf3,0xda,0xcd,0x6,0x4c,0xb1,0xdf,0x89,0x87,0x6e,0xe,0x55,0xcc,0x5f,0xf,0xec,0xe6,0x23,0x77,0x98,0x63,0xc7,0x62,0x9e,0xdd,0x9b,0xa9,0xbb,0xaf,0xcd,0xfa,0xe4,0xa4,0x2b,0xb0,0x96,0x32,0x8b,0x2a,0x13,0xf8,0x11,0xf0,0x37,0x5f,0x50,0x9e,0xed,0x7b,0x1c,0x72,0xc7,0x91,0x1b,0x93,0xae,0xb7,0x67,0x67,0x61,0x55,0x47,0xdc,0x1c,0x90,0xfa,0x19,0x58,0xd6,0x38,0xb4,0xf7,0x8,0x21,0xaa,0x53,0xb4,0xcd,0x3a,0xfe,0xe6,0x4e,0x3d,0xc7,0x3d,0x7e,0xd3,0x75,0x6e,0xea,0x92,0x53,0xd8,0x3c,0x73,0xad,0x4e,0xae,0xbc,0xb0,0x11,0x57,0xdf,0x70,0xc3,0xf1,0x67,0x40,0x23,0xb6,0x7c,0x6c,0xd2,0x9d,0x8,0xfe,0xac,0x94,0x9c,0xd9,0xe9,0x3a,0x8d,0x92,0x8,0x64,0xa3,0x78,0x2f,0x36,0x9c,0x8d,0xe2,0x36,0x8d,0xa9,0x3,0x40,0x40,0x50,0x3f,0x4b,0xcc,0xf4,0x6a,0x25,0xf7,0x9e,0x9c,0x37,0xb9,0x6a,0xa9,0xd7,0x52,0xba,0x0,0x2b,0x3f,0xff,0x32,0xc2,0x43,0xcf,0x86,0x3f,0xb4,0x80,0x3c,0x39,0x2,0x37,0x7,0x4a,0xa6,0x85,0x68,0x8a,0x15,0x4f,0x31,0xe0,0x69,0x10,0xc6,0x63,0x3e,0x1b,0x33,0xff,0x1c,0xc9,0x33,0x66,0x32,0x99,0x4c,0x26,0x93,0xc9,0x64,0xfa,0xd1,0x65,0x0,0xd0,0x64,0x32,0x99,0x4c,0x57,0x5c,0xd,0x9b,0x3,0x7,0x2,0x33,0xc4,0x81,0xe5,0xfd,0xf4,0x1f,0xfe,0x13,0x20,0x6c,0xc,0xd7,0xa2,0x3a,0xce,0xe6,0xc0,0xc1,0x87,0xc8,0x7d,0x75,0x1e,0x91,0xa3,0xbc,0x4,0x10,0xa6,0x71,0x8c,0x98,0x7a,0xea,0x17,0xe4,0xe,0xbe,0xd6,0x8,0xf2,0xc5,0x48,0x23,0x19,0x21,0x24,0x78,0xe7,0x10,0xbb,0x1e,0xc1,0x47,0x94,0x3c,0x22,0xc4,0xc4,0x1d,0x6a,0x1,0x25,0x13,0xa8,0x8a,0x31,0x22,0x8,0xd4,0x69,0x34,0x7c,0xe1,0xb9,0xc7,0xad,0x56,0x8a,0xfb,0x7a,0x1f,0x10,0x63,0x87,0x5a,0x8a,0x3a,0x15,0x5,0x96,0xc8,0xb1,0x83,0xdd,0x8d,0x6d,0x8b,0xeb,0xd0,0x6d,0xc,0x2b,0x34,0xd4,0x52,0xf9,0xb5,0xc5,0xfd,0xe7,0xa7,0xfe,0x3b,0x8e,0xdd,0x4e,0xe,0x2f,0xa7,0xe7,0x27,0xce,0x42,0x81,0x6d,0xd2,0xb3,0x27,0x31,0xd3,0xf9,0x7b,0xcc,0xd7,0x89,0x31,0x5f,0x6,0xe6,0xbb,0xe6,0x39,0x82,0x3b,0x45,0xae,0xe7,0x2e,0x4b,0x89,0x9f,0x4a,0xff,0x1d,0x9d,0x67,0x6d,0xf3,0x63,0xe6,0xbb,0x3f,0x87,0x8a,0x4d,0xdc,0x8f,0x75,0xe6,0x4c,0x63,0xb0,0xab,0x91,0x50,0x89,0xd6,0x36,0x5d,0xb1,0x3d,0x3c,0xc2,0xa1,0x91,0x61,0x7e,0x8f,0xc0,0x5d,0x8b,0xa5,0x64,0x8d,0xd7,0xd2,0xb9,0xce,0x6,0x48,0x66,0xf7,0xa1,0xd6,0x42,0x5f,0x57,0x67,0x3,0x2a,0xb3,0x18,0xab,0xc0,0xac,0xe9,0x75,0x26,0x37,0x9b,0x38,0x23,0xb5,0xdf,0xf0,0x10,0xe4,0x13,0xf8,0xe5,0x7d,0x50,0x18,0x29,0x60,0x4c,0x62,0xd1,0x53,0x37,0x22,0x14,0x78,0xba,0x43,0xcf,0x46,0x9d,0xf5,0x22,0x16,0x1,0x84,0xc0,0x86,0xd3,0x4e,0x1,0x6f,0xf0,0x1b,0x63,0x36,0x8e,0x41,0x5b,0x19,0x47,0x5d,0x64,0x26,0x78,0x2b,0xf1,0x73,0x8f,0x79,0x1f,0xa4,0x3a,0x3e,0x9d,0x53,0x57,0xa3,0x9b,0x2f,0x5,0xcf,0xe2,0xc6,0xd3,0xf9,0x87,0xc9,0xc5,0x89,0xcd,0xe1,0x9a,0xc3,0xd1,0xeb,0xa3,0x4e,0x45,0x6c,0x2c,0x48,0xd3,0x7a,0xb5,0x39,0x0,0x4d,0x26,0x93,0xc9,0x64,0x32,0x99,0x2e,0x97,0xc,0x0,0x9a,0x4c,0x26,0x93,0xe9,0x8a,0x4b,0x5d,0x55,0xfc,0xdf,0xf7,0xa5,0x64,0x85,0x56,0x2,0x63,0xda,0x6c,0x51,0x55,0x62,0x91,0x95,0x7,0xa,0x4,0x2a,0x60,0x16,0x33,0x84,0xac,0x8d,0xce,0x6,0x45,0xbc,0xf7,0x48,0x5d,0xaf,0xae,0x3e,0x81,0x70,0xde,0x7,0xa4,0xd4,0xa9,0x33,0x29,0x76,0x3d,0x42,0x88,0xf0,0x81,0x1d,0x77,0xad,0xc1,0xc7,0x80,0xd4,0x2f,0x50,0xd5,0xb9,0xd4,0xf8,0xb5,0xe8,0xb0,0xb,0xc7,0x20,0x63,0xea,0x8,0x36,0x35,0x72,0xcd,0x91,0x8b,0xaf,0x22,0x76,0x1d,0x6a,0x2d,0x1a,0x85,0x15,0x96,0x21,0xfd,0x7a,0x73,0x8,0x28,0x6e,0x3f,0x1,0x2b,0xe0,0xe8,0xae,0x5e,0x3,0x4c,0xab,0xa8,0x4,0x91,0xa2,0xe,0x80,0x48,0x9c,0x59,0xae,0xa7,0xf3,0x4e,0x47,0x28,0x24,0x2e,0x3d,0xd,0x5d,0xc8,0xb5,0x9d,0x22,0xa7,0xf3,0x75,0xdf,0x8d,0x3e,0x36,0x75,0xba,0x79,0x1d,0xae,0x28,0xa5,0xb0,0x93,0x91,0x63,0xaa,0x12,0x65,0xd5,0x31,0x12,0x4c,0xdd,0x71,0x68,0xa8,0x75,0x6,0xa4,0x34,0xb2,0xea,0x67,0x10,0x89,0xfe,0x4f,0xd1,0xe8,0x6d,0xd3,0xf3,0x14,0x48,0x56,0xf9,0xd9,0x90,0xd8,0x32,0x39,0x2e,0xf,0x1d,0x3f,0xa6,0x18,0xae,0x44,0x5a,0xeb,0x6c,0xe9,0x56,0x6,0x29,0xa6,0x28,0xac,0x9f,0x3d,0x87,0x14,0x5,0x27,0xd1,0x79,0x87,0x98,0x10,0x19,0xfc,0x92,0xb8,0x17,0x4f,0x86,0x5a,0x4,0x6e,0x32,0x24,0xa4,0x95,0xe5,0x9,0xa4,0x4a,0x9c,0x5d,0x62,0xcd,0x74,0xaf,0x81,0x92,0xc7,0x8d,0x5,0x64,0x89,0x45,0xcf,0x87,0x53,0xa6,0xbe,0xcb,0xf9,0x2a,0x34,0x36,0xbe,0x4e,0x3e,0x38,0x1b,0xdd,0x7d,0x98,0x9e,0xaf,0xd6,0x1a,0x6a,0x2e,0xec,0xb6,0xc,0xfc,0xb9,0x0,0x9d,0x93,0x80,0xe2,0xc9,0xd0,0xc7,0x60,0x17,0xfa,0xc,0xb,0x7c,0xe,0x21,0x52,0xcc,0x5d,0xe2,0xda,0xce,0x21,0xc4,0x4e,0xc7,0x6a,0xe0,0xbc,0x3e,0x8b,0x75,0xd6,0xff,0x87,0xd9,0xf3,0x85,0x59,0xc4,0xd8,0xcd,0x87,0x75,0x20,0xd7,0x27,0x6c,0xba,0xff,0x38,0xde,0x4e,0x7f,0x5b,0xec,0x87,0xa5,0xc9,0x64,0x32,0x99,0x4c,0x26,0xd3,0x65,0x92,0x1,0x40,0x93,0xc9,0x64,0x32,0x5d,0x71,0x4d,0xbd,0x6f,0x98,0x40,0x6,0x7b,0x8e,0x18,0xe5,0x10,0xcc,0xe0,0x48,0xae,0x9b,0x8d,0x43,0x8,0x70,0x60,0x12,0xc3,0xce,0x3f,0xea,0x92,0xf3,0x21,0x4e,0x4b,0xa4,0xb3,0x88,0x21,0x81,0x8c,0xa4,0xae,0x2b,0xf9,0xfd,0x18,0x13,0x7d,0x9d,0x40,0xc3,0x59,0xaf,0x9a,0xc4,0x84,0x53,0xd7,0xc3,0x39,0x87,0x94,0x7a,0x8d,0x19,0xa7,0xd4,0x21,0xc6,0x4e,0xdd,0x84,0x39,0x8f,0xea,0xb8,0xf2,0x9e,0x3a,0xff,0x4a,0x99,0xc6,0x3e,0x9a,0xc6,0x51,0xa7,0xde,0x3b,0xe9,0x1f,0x74,0xce,0xf3,0x8,0xc9,0xac,0x1b,0x8d,0x9d,0x6e,0xb3,0x75,0x8e,0x69,0x24,0x41,0x3a,0xf8,0x18,0x72,0x49,0xac,0x58,0xde,0x4b,0xce,0x79,0x8a,0xd9,0x8a,0xab,0x8b,0x40,0x9b,0xf7,0x81,0x97,0x56,0xab,0x76,0x23,0x8a,0xd3,0x4e,0x3a,0xf1,0xa8,0x53,0x2e,0x4f,0xa3,0x11,0x3c,0xb2,0x11,0x62,0x9c,0x8d,0x60,0xd4,0x8d,0x35,0x5f,0x5,0x4f,0xe2,0x6c,0x6b,0x8d,0x1c,0x91,0xec,0x80,0xa4,0x88,0xf0,0xac,0xc3,0xce,0xcf,0xff,0x8,0x42,0x3d,0x82,0x72,0x5c,0x74,0x8f,0xc5,0xd1,0xe7,0x39,0x4e,0x5c,0xa6,0x88,0x36,0xaf,0xd2,0x4a,0x64,0x3a,0xa6,0xb4,0xb1,0xe,0xad,0xa0,0x4f,0xdc,0x82,0x98,0xd6,0x9f,0xa7,0x88,0xaa,0xc4,0x6d,0xe7,0xcf,0xa5,0xf4,0x33,0x6e,0xf6,0xd3,0x69,0x94,0xbb,0x64,0x8d,0x67,0xd3,0xfd,0x9d,0x46,0x53,0x9c,0x9b,0xf7,0xdb,0x39,0x1d,0x2b,0x99,0xdc,0x83,0x4d,0xe3,0xdc,0x73,0x48,0x56,0x6b,0x41,0x48,0x49,0x6f,0xb5,0xae,0x2c,0xfb,0xc9,0x9d,0x29,0x70,0x5c,0x9f,0x1f,0x71,0x72,0xce,0xe2,0xcc,0xf3,0xe1,0x1b,0x2,0x7d,0x3c,0xf4,0xd2,0xaa,0x46,0x84,0xa9,0x6b,0x32,0xb0,0xe3,0x90,0x8e,0xa5,0xca,0x5a,0xb3,0x44,0xb3,0xb9,0x4b,0x70,0x5a,0xe2,0xe6,0x85,0x69,0x8e,0x9f,0x87,0x10,0xa8,0x23,0xd0,0x7b,0xd4,0x3a,0xc5,0xd6,0x53,0xea,0xb4,0xbb,0x70,0x72,0xf8,0xf2,0xb3,0xc3,0xa0,0x74,0xea,0x58,0x74,0x1b,0xcf,0xce,0x7c,0x50,0x46,0x9e,0x47,0x5,0xfa,0x26,0x93,0xc9,0x64,0x32,0x99,0x4c,0xa6,0xcb,0xa2,0x68,0x97,0xc0,0x64,0x32,0x99,0x4c,0x57,0x5a,0x2,0xd7,0x36,0xe4,0x1c,0xdc,0x6c,0xf5,0x16,0x75,0x8a,0x95,0xc2,0x87,0x8d,0x8,0x6b,0x6b,0x15,0x31,0x76,0x28,0x65,0xd4,0xf8,0xa8,0xf7,0x71,0x73,0xa9,0xd5,0x39,0x1d,0xd8,0x48,0x5d,0x4f,0xa0,0x25,0x4c,0xff,0xda,0x2b,0x25,0x23,0xf8,0x88,0xae,0x5f,0x68,0x5f,0x1c,0x30,0xb9,0xa1,0x6a,0xad,0x88,0x31,0x61,0x1c,0xd6,0x34,0xb4,0x11,0x9,0x20,0xe5,0x3c,0x2a,0xfc,0x11,0xf7,0x97,0x38,0xc0,0xf2,0x38,0xc2,0x79,0x87,0x3c,0x8e,0xfc,0x9e,0x55,0x1d,0x5f,0xce,0xb,0x8,0x24,0x47,0x5d,0xec,0x7a,0x78,0xe7,0x31,0xc,0x2b,0x84,0x10,0x35,0xa,0x29,0x4e,0xb5,0x10,0xd3,0x14,0x43,0xe5,0xf3,0x6f,0xb3,0x3e,0xbf,0x92,0x47,0x76,0x6b,0x1,0x5e,0xbe,0x9f,0x57,0x94,0xb5,0x1b,0x2e,0xd0,0xda,0xb2,0xe3,0x68,0xae,0xc,0x5a,0xc8,0xf5,0x96,0xbe,0x3d,0xe9,0xa5,0xf3,0xde,0xa3,0xd4,0x79,0x14,0x78,0x72,0x59,0x52,0x2c,0x19,0x68,0xce,0x4d,0x1d,0x7d,0x20,0x67,0x1f,0x41,0xc8,0x40,0x8e,0x2d,0x86,0x80,0x21,0x26,0x8e,0xb2,0x2,0x79,0x1c,0x38,0x8e,0x3d,0x2d,0xd4,0xd2,0xf5,0x68,0xda,0x1b,0x48,0x70,0x88,0x17,0x72,0x51,0x27,0x77,0x23,0x66,0xc0,0x88,0xb9,0x2f,0x2d,0x22,0x63,0x3,0x5a,0xcd,0x63,0xe5,0x21,0x44,0x20,0x60,0x5a,0x39,0x66,0x90,0x55,0x8a,0x38,0x13,0xb,0x64,0x20,0x44,0x3a,0xf8,0x14,0x3c,0x79,0x68,0x64,0x37,0xc6,0xc4,0x51,0xdb,0xba,0x11,0xc9,0x9d,0x3,0x37,0x71,0x19,0xca,0x33,0x24,0x70,0xba,0xd6,0xa,0x1f,0x22,0x75,0xf7,0xc5,0xc4,0x60,0xd,0x1b,0x3d,0x8e,0x4,0x2c,0xbd,0x46,0xbb,0x7d,0x8,0xa,0xbd,0xbc,0x23,0x87,0x9d,0x7,0xb4,0xd3,0xb1,0xb5,0x69,0x7d,0xb9,0xe9,0xbd,0x2e,0xa8,0xec,0x6a,0x94,0xf7,0xc9,0x79,0xd4,0xb8,0xb1,0x7e,0xbc,0x40,0xb0,0xaf,0x94,0x82,0xc8,0x5f,0x57,0x4a,0x46,0xd7,0x2f,0x14,0x46,0xc7,0x44,0xae,0xd5,0x92,0x33,0xa,0xc3,0xee,0x6,0xb0,0x73,0x56,0x42,0xc1,0x4d,0x41,0xfa,0x7c,0xb8,0x46,0x7b,0x3c,0x65,0x7d,0x98,0x5d,0xad,0xad,0xd2,0xf3,0xda,0x2a,0xc7,0xb2,0xf5,0x33,0xea,0xf5,0x3c,0xc0,0xcf,0x14,0x1c,0x50,0xf9,0x1e,0x29,0xdc,0x37,0x99,0x4c,0x26,0x93,0xc9,0x64,0x32,0x5d,0x16,0xd9,0x9f,0xac,0x4c,0x26,0x93,0xc9,0x74,0xc5,0x45,0x43,0x1e,0xfc,0xf,0x12,0xe3,0x65,0xbc,0xe0,0xbd,0xf4,0x96,0x79,0x75,0x2,0xe6,0x3c,0x28,0x90,0x1,0x28,0x8a,0x49,0xa3,0x19,0x91,0xc7,0x1f,0x80,0x36,0x1b,0xb3,0xf0,0xda,0xb3,0x36,0x2d,0x9f,0xce,0x7,0x1e,0x5a,0xab,0xe8,0xba,0xc5,0x14,0x15,0x6,0x41,0xb4,0x0,0x30,0x80,0x21,0x47,0x93,0x38,0xe6,0x4,0xc6,0xf9,0x10,0xd1,0x47,0x82,0x3a,0x12,0x47,0x96,0x51,0x88,0x5a,0x33,0x62,0x47,0xa3,0x21,0x5d,0x1f,0x26,0x0,0x57,0xb,0x1a,0xc7,0x97,0x43,0x88,0x1c,0xa3,0x9d,0xae,0x43,0xe0,0xd7,0x13,0x98,0x12,0x7b,0x7a,0x8d,0x5a,0xb,0x52,0xb7,0x40,0xc9,0xa3,0x2,0xa8,0xd6,0xca,0xc6,0x60,0x84,0xe7,0xf8,0xac,0xf,0x6d,0x8a,0xde,0x4a,0xdf,0x9b,0x44,0x5e,0xc5,0x85,0xd6,0x8,0x7a,0xe5,0x3c,0x4c,0xf0,0x85,0x9d,0x69,0x21,0x26,0x8e,0x5b,0x3a,0x5,0xaa,0x53,0x6f,0xa0,0xd3,0xeb,0x4c,0xce,0x3c,0xe8,0xb1,0x8a,0xd7,0x6b,0x1e,0x95,0x75,0xde,0xc1,0x91,0xdd,0x4f,0x9d,0x66,0x5e,0x46,0x51,0x4,0x3a,0x2,0x70,0xf0,0xc,0x1,0xa9,0x57,0xd1,0xf1,0x8,0x8c,0xae,0xd9,0x96,0xac,0xe3,0x19,0xce,0x11,0x30,0x94,0xb1,0x10,0xef,0xe3,0xe4,0x6e,0x64,0xa0,0x56,0xb,0x1,0xde,0x2a,0xc7,0x2e,0xab,0xc6,0x1c,0x5f,0xa6,0x98,0xac,0x53,0xd8,0xea,0xbc,0xd3,0xdf,0x9f,0x3,0x52,0xb1,0xe7,0xf9,0x10,0xd8,0xcd,0x8,0x75,0xc3,0x39,0x86,0xca,0x6a,0xe1,0x63,0x70,0x29,0x70,0x99,0xc0,0x9b,0xdf,0x88,0x52,0xfb,0x48,0xef,0xe7,0xf9,0xdc,0x7c,0x8,0x34,0xec,0x1,0x8a,0x91,0xab,0xab,0x6f,0xf6,0xfd,0xd2,0xc1,0x38,0xef,0xca,0x9b,0xdc,0x7f,0x41,0x5d,0x92,0x85,0xaf,0x95,0x8c,0xce,0xc8,0xc8,0xc7,0x14,0xf1,0xf5,0x1b,0xbf,0x16,0x2,0xc5,0xa1,0xe5,0xf3,0x95,0xba,0x7e,0x82,0xca,0xde,0x63,0x1c,0xd6,0xe4,0x94,0x9c,0x45,0x75,0xe9,0xfe,0x4d,0x31,0xf0,0x56,0x8a,0x1e,0xe3,0xdc,0x95,0xab,0xb,0xd3,0xad,0xc2,0xbb,0x30,0x8d,0x98,0x40,0x46,0x43,0xa6,0xc1,0x14,0x17,0x2,0x3d,0x97,0xb3,0x18,0xb9,0x8c,0xe2,0x4c,0x9f,0xd1,0x79,0xff,0xa4,0xc9,0x64,0x32,0x99,0x4c,0x26,0x93,0xe9,0x47,0x95,0x1,0x40,0x93,0xc9,0x64,0x32,0x5d,0x71,0xb5,0x2a,0xa3,0xc,0xbc,0x5c,0x8b,0xa9,0x17,0x4e,0x1c,0x55,0xd,0x80,0xb,0x1,0x39,0x8f,0x70,0x70,0x1b,0xf1,0xd3,0xca,0xf0,0xf,0xc0,0xe6,0x52,0xa8,0x76,0xc7,0x4d,0xee,0x2d,0xa0,0x2a,0xa4,0x3,0x80,0x20,0x83,0x23,0xc,0x4c,0x62,0x4a,0x68,0xb2,0x80,0xb,0xea,0xf4,0x13,0xa8,0xe3,0xbd,0x87,0x93,0x81,0x90,0x18,0x31,0xae,0x57,0xc,0x4,0x23,0xc0,0xae,0xb3,0x94,0x28,0x22,0x3c,0xe,0xeb,0x69,0xd5,0x97,0x81,0x51,0x1e,0x7,0x85,0x71,0x12,0xb9,0x24,0x17,0x58,0x98,0xf5,0xe8,0x49,0xb7,0x5a,0xd4,0x2e,0xba,0x69,0x49,0xb6,0x4c,0x23,0x9,0x98,0x8d,0x57,0xb0,0x3b,0x4c,0xc6,0x23,0x74,0x3c,0x85,0xfb,0xb,0x65,0x1c,0x43,0xe2,0xc1,0xf2,0xba,0x31,0x6,0x85,0x2b,0xce,0x79,0xd4,0x56,0x74,0xe4,0xa4,0xd4,0xa,0xef,0x79,0x9c,0x82,0x8f,0xa9,0xb1,0xb3,0x4f,0x1c,0x62,0xb4,0xba,0xdc,0x78,0x2d,0x18,0x7a,0xcc,0xf3,0xf5,0x62,0xef,0x2,0xc7,0x43,0x8b,0xba,0x0,0x15,0x4c,0xc2,0xa1,0xc9,0xf2,0x33,0xff,0xfa,0x4,0x50,0x8b,0xde,0x6b,0x71,0x20,0xa,0xfe,0xa9,0xa5,0xc0,0xb5,0x69,0x24,0xa3,0x30,0x84,0xa2,0xe7,0x85,0xae,0x8b,0x38,0x14,0x1d,0xc7,0x80,0xc9,0x4d,0x97,0x37,0x7a,0x0,0x5,0x16,0xcf,0xe3,0xc6,0x12,0x1b,0xa6,0xb5,0xe8,0xa6,0xf7,0x43,0x6,0x29,0xe6,0xc3,0x1c,0x4,0xe3,0xea,0xb4,0x5e,0x5d,0x9,0x9e,0x96,0x92,0x91,0xf3,0x48,0xce,0x3a,0x7e,0x6f,0x7,0x90,0x33,0x8f,0x8a,0x1b,0xe9,0x18,0x67,0xeb,0xd0,0x72,0x1f,0xa5,0x87,0x52,0xa0,0xb5,0xac,0x21,0xb,0xa8,0xf4,0x21,0xa8,0xab,0xb3,0x32,0x2c,0x95,0xcf,0x89,0xc4,0x79,0x5,0xae,0x3a,0xe7,0xe0,0xda,0xe6,0xa,0xaf,0xfc,0x55,0xa0,0x61,0x63,0x67,0xa2,0x3,0xd4,0x75,0x18,0x13,0xaf,0x62,0xc7,0x88,0x5a,0x28,0x26,0x5c,0x4a,0x51,0x30,0x4c,0xc3,0x37,0x74,0x8f,0xc5,0x79,0x4a,0xf1,0x70,0x28,0xe8,0xd3,0x6b,0xc6,0xae,0xd1,0x10,0x13,0x3d,0xff,0xfc,0x1c,0xc9,0xf9,0xea,0xd8,0x8f,0x1e,0xdf,0xec,0x7b,0x37,0x7e,0x48,0xb4,0xc9,0xe9,0x69,0x32,0x99,0x4c,0x26,0x93,0xc9,0x64,0xfa,0x91,0x65,0x1d,0x80,0x26,0x93,0xc9,0x64,0xba,0xe2,0x12,0x58,0x23,0xda,0xe8,0x64,0x3,0x26,0x18,0x2,0x87,0x18,0x3b,0x85,0x77,0x6d,0xf6,0xfd,0xe4,0x6,0xc4,0xe4,0xcc,0x4a,0x1d,0x75,0xfa,0xf1,0xe2,0x2e,0x45,0x5f,0x1d,0x52,0xd7,0x23,0x76,0xfd,0xf4,0x5e,0xc,0x63,0x52,0xd7,0x23,0xf5,0xb,0x72,0x94,0xc5,0xa8,0xdf,0xeb,0xd9,0x25,0x15,0x53,0x87,0x90,0x12,0xc8,0x35,0x47,0x91,0xca,0x7e,0x67,0x17,0x21,0x46,0x78,0xcf,0x5f,0xcf,0xae,0xac,0x3c,0xe,0x80,0xa3,0xe3,0x12,0xa7,0x61,0xc9,0xa3,0xf6,0xce,0x11,0x70,0x71,0xec,0xf4,0xa3,0x3e,0x36,0xcf,0xb1,0x61,0xcf,0xc7,0x7e,0x18,0x80,0xf8,0x59,0x2f,0x9b,0x1c,0xb3,0x80,0x1a,0x87,0x69,0xd4,0xc4,0x79,0x4f,0x1d,0x72,0xd2,0x99,0xc6,0x30,0xc5,0x6b,0x6c,0x9a,0x16,0x8c,0x5,0xd2,0xa9,0x43,0xb0,0x4d,0x4b,0xba,0xa,0xcc,0x6a,0x81,0x67,0x7,0x25,0x45,0x73,0x3d,0x83,0xa3,0xc0,0x80,0x94,0x62,0x9a,0x2,0x8,0xe5,0x5e,0x48,0x67,0x20,0x81,0xdb,0x36,0x8d,0x8c,0xcc,0xdc,0x65,0x72,0xed,0x3d,0x3b,0x3b,0x65,0xf8,0x25,0xe7,0x91,0xdd,0x7c,0x14,0x19,0x2d,0x25,0x53,0xf7,0x23,0x3f,0x17,0x8d,0x87,0x41,0xa8,0x7,0xf,0xa,0xed,0xe6,0x63,0x1a,0xf3,0x38,0xa9,0xe7,0x4e,0x45,0x1,0x57,0xd2,0x73,0x47,0xc0,0x2a,0x30,0xc4,0x2c,0xba,0x16,0x2c,0xeb,0xb5,0x85,0x1d,0x69,0x65,0x6,0x97,0x5b,0xab,0x53,0xb7,0x21,0x3b,0x38,0xbd,0xf7,0x1b,0x23,0x19,0x25,0x8f,0x1c,0x3,0x9f,0x62,0xea,0xe2,0x3a,0x94,0xe7,0x53,0x62,0xcb,0xb5,0x4e,0x3,0x17,0xe2,0x70,0x9d,0x20,0x24,0x1,0x47,0x81,0x81,0xe4,0xac,0xe4,0xe8,0xae,0xc2,0xca,0x30,0xad,0x5,0x33,0x20,0xf5,0xb3,0xbe,0xc3,0x5a,0xa6,0xb1,0x9c,0x6,0xe9,0x3d,0xc,0xfa,0x5c,0xcb,0xf3,0x82,0xa6,0x77,0x53,0x1d,0xa5,0x2,0x12,0xe9,0xb3,0xd3,0x18,0xb8,0xcf,0x87,0x4f,0xe8,0x9e,0x4b,0x27,0x66,0x88,0x91,0x87,0x73,0xe2,0xac,0xdb,0xd2,0xeb,0xf1,0x88,0xb3,0x72,0xde,0xf3,0x27,0x51,0xe1,0xf9,0xba,0xb2,0xb8,0x3c,0x43,0x4a,0xb3,0x42,0xc6,0x69,0x30,0xc6,0x64,0x32,0x99,0x4c,0x26,0x93,0xc9,0x74,0x79,0x64,0x7f,0xb2,0x32,0x99,0x4c,0x26,0xd3,0x8f,0x45,0xf3,0xce,0x36,0x19,0x9c,0xf0,0x9e,0x62,0x97,0xd2,0xa7,0x56,0x18,0xe,0x1d,0x1e,0xb7,0xa0,0xef,0x29,0x88,0x89,0x86,0x38,0x8,0xba,0x11,0x40,0x49,0xdd,0x82,0x1c,0x83,0x3c,0x24,0x21,0x80,0x2a,0xc6,0x44,0xf0,0x2,0x4e,0x9d,0x69,0x12,0xef,0x15,0x20,0x11,0x42,0xe2,0x28,0x69,0x40,0x4c,0x1d,0xf7,0x97,0x79,0xf4,0x8b,0x1d,0xea,0x85,0xab,0x8d,0xe1,0x10,0x1d,0x7b,0xd7,0x2d,0x78,0x45,0xb8,0x53,0x90,0x12,0x79,0xc,0xc1,0x7,0x1a,0x63,0x10,0x30,0x29,0x50,0xa5,0x94,0x51,0xe1,0x50,0x88,0x11,0x3e,0x4e,0x66,0x7c,0x1d,0xb3,0x60,0x8,0x39,0xc5,0x73,0x2b,0xba,0xc5,0x52,0x57,0x5d,0xdd,0xcc,0xd1,0x48,0x8b,0xaf,0x99,0xa1,0x62,0xd0,0xa1,0xc,0x71,0xbe,0x1,0x33,0x40,0x46,0x53,0xb5,0x3a,0x80,0xe2,0xbc,0xa7,0x85,0x57,0x38,0x5,0x45,0xf3,0xf1,0xa,0x59,0x1d,0x6,0x68,0x41,0x96,0x80,0xa5,0x9f,0xee,0xa0,0xb8,0xd9,0x38,0x6e,0x1a,0x2,0x81,0x51,0x19,0xec,0x90,0xe3,0xf4,0x31,0x2a,0x10,0x4,0xa0,0xeb,0xc8,0xde,0x79,0x86,0x9f,0xd0,0xf7,0xa7,0x55,0xe5,0xc8,0xa0,0x70,0x6,0x1b,0x1b,0xa6,0xef,0x67,0x28,0x29,0xef,0x3b,0xb9,0x24,0x9,0x32,0xe5,0x3c,0x2,0x3c,0x0,0xe2,0x79,0xa1,0x58,0xa1,0x14,0x8,0xbe,0xa,0x7c,0x12,0x7,0x1b,0x5d,0xe7,0x36,0xeb,0x89,0x74,0xd3,0xe0,0x6,0x3b,0x50,0xab,0x8e,0xc8,0xf0,0x18,0xd,0x43,0xaa,0x3c,0xe,0x82,0xf5,0x36,0x46,0x3a,0x3c,0x83,0x32,0x81,0x77,0x2,0x64,0xc1,0xae,0xbf,0xc6,0x5d,0x78,0x14,0x8d,0xa5,0xe3,0xf7,0xc,0xdc,0xd4,0xe5,0x2a,0xce,0xce,0xf9,0x22,0xb6,0x73,0x1c,0xd9,0x9e,0xba,0x18,0xd5,0xd5,0x59,0xca,0xcc,0x1,0x58,0x74,0x34,0xa6,0x71,0x1f,0x25,0xc1,0xde,0xa8,0x9d,0x8f,0xe3,0xb0,0x86,0xae,0x1c,0xf3,0x31,0x8b,0xcb,0xd5,0xcb,0x58,0xf,0xaf,0x1a,0xcb,0xe7,0x2d,0x32,0x70,0x96,0x6e,0xc5,0x79,0x7,0xa0,0x8c,0xe9,0x80,0x3b,0x2,0x3d,0x3,0xd6,0x69,0x94,0x27,0x6c,0xfc,0x1c,0xa8,0x7c,0x4f,0x28,0xc2,0x5c,0x36,0x46,0x5a,0xe6,0x43,0x41,0x26,0x93,0xc9,0x64,0x32,0x99,0x4c,0xa6,0x1f,0x4d,0x16,0x1,0x36,0x99,0x4c,0x26,0xd3,0x8f,0x55,0xb4,0x6c,0x3b,0xc1,0x21,0x1,0x3e,0x2,0x40,0x36,0x56,0x4b,0x5b,0x83,0x63,0x78,0xe1,0xd4,0xe9,0xe6,0x15,0x36,0xc4,0x94,0x74,0x60,0x3,0xad,0x21,0xf1,0xd0,0x6,0xa2,0xe7,0xee,0x38,0x76,0x4e,0xcd,0xdc,0x63,0xe4,0x26,0x23,0x48,0xe2,0xbd,0x87,0x4b,0x9d,0x82,0x1a,0xe9,0x48,0xa3,0x78,0x28,0xc5,0x83,0x4b,0x1e,0xe1,0x7d,0x7,0xc7,0x6e,0xb5,0xce,0x2f,0x68,0x5,0xb5,0x5b,0xa8,0xe3,0x4d,0x80,0x52,0x2d,0x19,0x31,0x4,0xd,0xef,0x4a,0x2f,0xa0,0xf6,0xc5,0x85,0x88,0x61,0x75,0x40,0xb0,0x51,0x3a,0xd4,0xb8,0x17,0x4e,0xc6,0x3e,0x9c,0xa7,0xae,0x36,0x81,0x38,0xd2,0x65,0x27,0xe7,0xa0,0x71,0xcd,0x10,0x91,0x73,0xd6,0xa1,0x5,0x7,0x37,0xf5,0xae,0x1,0x33,0x0,0x45,0x91,0x60,0x19,0xbd,0xa0,0x1e,0xc2,0xa4,0x91,0x5d,0xe9,0x40,0x14,0x48,0x24,0x10,0x49,0x1c,0x5d,0xf3,0xd8,0xae,0x38,0xff,0x9c,0xf,0x80,0xe7,0x81,0x8,0x86,0xa4,0x34,0x40,0x41,0x2e,0xce,0x3c,0xac,0x35,0x76,0xab,0x8e,0x48,0x6,0x8d,0x12,0xed,0xd6,0x28,0x6f,0x8,0x3a,0xa6,0x42,0x11,0x66,0x1e,0x88,0x90,0xa7,0xc3,0x3b,0x1d,0x8,0x11,0x27,0x1f,0xc1,0xda,0x8a,0x8a,0xf9,0xf8,0x9,0xfd,0x55,0xc6,0x37,0xe6,0x8e,0x47,0x87,0xa9,0x27,0x2f,0xf8,0x88,0x61,0xbd,0x9a,0xee,0xc1,0xc6,0xd0,0xc7,0x14,0xbd,0x25,0x50,0xdc,0xd4,0x86,0x2a,0xc3,0x26,0xce,0x7b,0x24,0xee,0xf7,0x13,0x37,0x25,0xd4,0xd0,0xea,0x15,0x34,0x7b,0xef,0x41,0x6,0x4d,0x87,0x5a,0xa6,0x51,0x91,0xc9,0xc9,0xb8,0x19,0xb,0x16,0xf0,0x2b,0x20,0x3c,0xc4,0x84,0x32,0x8e,0xec,0x88,0xe4,0xe,0xc6,0xda,0x50,0xdb,0x4,0xcd,0x9c,0x9f,0xe2,0xef,0x39,0x8f,0x87,0x5c,0x9a,0x34,0xd0,0x92,0x52,0x8f,0x71,0x1c,0xf8,0xb9,0xc9,0xba,0x90,0x4d,0x11,0x6d,0xf0,0x70,0xc9,0x48,0xf7,0x2a,0x26,0x4,0x1,0xbe,0xea,0xd2,0xa5,0x7b,0x1c,0x62,0xe2,0xe3,0x9a,0xba,0xb,0x1b,0x68,0x8,0x47,0x9d,0xa0,0x3c,0x8,0x43,0x6e,0x52,0xba,0x7f,0xa5,0x64,0x8a,0x4a,0xb,0xc8,0x9c,0xdd,0x97,0xa9,0xb3,0x51,0x86,0x4e,0xec,0xe7,0xa3,0xc9,0x64,0x32,0x99,0x4c,0x26,0xd3,0xe5,0x92,0x39,0x0,0x4d,0x26,0x93,0xc9,0x74,0xc5,0xa5,0x8e,0x2e,0x8,0x53,0x68,0xa,0x99,0x1a,0x3b,0xcb,0x22,0x77,0xeb,0x91,0xf1,0x4b,0xc6,0x4,0x2,0x83,0x92,0x69,0x80,0x42,0x1c,0x46,0xe4,0x98,0x63,0x27,0x99,0xf,0x48,0x5d,0xaf,0x2e,0xad,0xd4,0x2d,0x26,0x67,0x1e,0x47,0x6a,0x63,0xea,0x28,0x52,0x2b,0x8b,0xc1,0xfc,0xf5,0x61,0xe6,0x28,0x94,0xaf,0x69,0xb5,0xa9,0x3b,0x4f,0xbe,0x56,0x80,0xd5,0x14,0xcb,0xa4,0x63,0x95,0xef,0x27,0x47,0x1b,0xf,0x35,0x0,0x58,0x2c,0x77,0xd4,0x11,0xd8,0x5a,0x43,0xd7,0x2f,0xf8,0x3c,0xc9,0x3d,0x18,0x39,0x3e,0xdc,0xf7,0x3b,0xda,0xe1,0x27,0x9d,0x6d,0xb4,0x4a,0x5b,0xf5,0x78,0xd5,0x69,0xe8,0x8,0x9e,0xa,0x4c,0xf3,0xb2,0xcc,0xeb,0x3d,0xbb,0xd5,0x66,0x6e,0xbd,0x26,0xcb,0xb3,0xe4,0xee,0x9a,0x3a,0x8,0xc1,0xa3,0x10,0xe,0x95,0xc7,0x48,0x9c,0x8e,0x6f,0x88,0xdb,0x32,0xab,0x63,0x4e,0x4d,0x59,0xc,0x28,0x43,0x4c,0x1c,0x8b,0x85,0x3a,0x2,0x9d,0x73,0x18,0xc7,0x1,0xb5,0x64,0x5,0x54,0xe2,0x0,0x93,0x5b,0x3e,0x5f,0x91,0x45,0x9b,0xd6,0x88,0xb,0x3,0x3b,0x89,0x97,0x6e,0xc6,0x8d,0xe3,0x6,0x80,0x73,0xe2,0xee,0xe3,0xe,0x3c,0x79,0xbd,0x79,0x6f,0x9e,0x38,0xd,0xe5,0xfb,0x74,0xe0,0x82,0x29,0x5d,0x2d,0x65,0x5a,0x89,0x8e,0x89,0x17,0xaa,0x65,0x9d,0x16,0x1a,0x11,0x6,0x47,0x79,0x3d,0x1f,0x57,0x4c,0x9d,0xbe,0x77,0xab,0x15,0x79,0x1c,0xd8,0xed,0xd7,0xf4,0xbe,0x39,0x7e,0x76,0x9d,0xf7,0xc,0x24,0x83,0xae,0xdd,0xce,0xe3,0xb9,0xf3,0xe7,0x8e,0x62,0xba,0x7a,0x91,0xe9,0x79,0x13,0x17,0x6b,0xc7,0x6e,0x52,0xee,0xf3,0x23,0xc7,0xa0,0xc4,0x9f,0xa9,0x7f,0xd1,0x7b,0xea,0xcd,0x14,0x78,0x28,0x90,0x56,0x22,0xce,0xa3,0xf4,0xf2,0xf1,0xb3,0xdb,0x2f,0x77,0x9,0xe0,0x49,0x14,0x9d,0xaf,0x51,0xe0,0xee,0xcb,0x98,0xc8,0x39,0xab,0xef,0x23,0xbd,0x81,0xfc,0x2c,0x3,0xb4,0xfc,0x2b,0x8e,0xd3,0xc8,0xd7,0xb2,0xc9,0x80,0x8a,0x2c,0x2d,0x7b,0xcf,0xf7,0x35,0x68,0xb7,0x9f,0x80,0xfd,0xc6,0xcf,0x93,0x9c,0x2f,0x66,0xcf,0x92,0xc9,0x64,0x32,0x99,0x4c,0x26,0x93,0xe9,0xf2,0xc8,0x1c,0x80,0x26,0x93,0xc9,0x64,0xba,0xe2,0x92,0xce,0x3c,0x34,0x72,0x7e,0x35,0xd0,0xba,0x28,0xd8,0x75,0x45,0xee,0x24,0x5a,0x2a,0xf5,0x1c,0x81,0xa4,0x71,0x8a,0x29,0x46,0xd8,0x18,0x34,0x79,0x1f,0xe0,0x9d,0xc3,0xdb,0xdf,0x78,0x3b,0xba,0x4e,0x0,0xc6,0xe4,0x12,0x6c,0x4d,0x40,0x4a,0xa0,0x50,0xa8,0x80,0xb1,0x59,0xac,0xb8,0x56,0x5a,0xad,0x5d,0xf,0x23,0x2e,0xec,0xaf,0xb0,0x1e,0xb,0xce,0x5d,0x38,0xc0,0xc1,0x90,0xb1,0x7f,0x70,0x80,0xd4,0x2f,0x74,0x39,0xd5,0x73,0x87,0x5a,0x4c,0x9d,0x8e,0x7c,0x94,0xd2,0xf4,0xd7,0x9d,0x44,0x29,0x15,0x98,0x70,0xf4,0x96,0xe3,0xae,0xe3,0xb0,0xd6,0xe1,0x7,0x1,0x46,0x4,0x43,0xa,0xd,0x6b,0x4,0x87,0x7e,0xb1,0x43,0x3,0x16,0xc0,0xe4,0x90,0xab,0x95,0x41,0x8d,0x47,0x73,0x53,0x47,0x9e,0xc0,0xbb,0x10,0x13,0x72,0xce,0xec,0xc8,0x9b,0x3a,0xf1,0xa6,0x9e,0x35,0xba,0xe,0x79,0x1c,0x66,0x51,0xdd,0x29,0x92,0xda,0xb8,0x37,0x6e,0xbe,0xa,0x9b,0xf3,0x0,0xc0,0x4d,0x4e,0x4c,0x86,0x82,0xf3,0x5,0x58,0xf9,0xeb,0xdc,0xf5,0x25,0x2e,0xb4,0x5a,0x2b,0x62,0xec,0x38,0x92,0xcb,0x1d,0x86,0x8d,0x22,0xbc,0x3a,0xf4,0x51,0xeb,0x34,0x60,0xa2,0x20,0x88,0x60,0x6f,0x1d,0x57,0x74,0x8d,0x78,0x3d,0x57,0x56,0x97,0x9d,0xf,0x68,0x81,0x57,0x69,0x51,0xb5,0x93,0x4f,0xa0,0x24,0xb9,0xf1,0x2a,0xba,0x7e,0xa9,0x4e,0x38,0xc7,0xd0,0xd,0xc,0xf6,0x8,0x14,0x46,0x8d,0xf,0x7,0x8e,0x3,0x4b,0xd4,0x56,0x1d,0x84,0xec,0x84,0x93,0xaf,0x53,0xa7,0x26,0x7f,0x6d,0x4c,0x9,0x79,0x1c,0x39,0xa2,0xdd,0x10,0x4,0x16,0xca,0xf3,0xa5,0xb,0xc8,0xb3,0x45,0x5e,0x86,0xb4,0x79,0x1c,0xb5,0x9b,0xd1,0xb3,0xd3,0x15,0xc,0xc1,0x9d,0xf3,0x68,0x87,0x9c,0xae,0xba,0xca,0xec,0x39,0x56,0x4c,0x24,0x55,0xa1,0x32,0x1c,0xd0,0xa,0x2f,0x4,0xb7,0x69,0x69,0xdb,0x79,0x8f,0x28,0x63,0x31,0x1c,0x2d,0xef,0x52,0x8f,0x92,0x47,0x94,0x42,0x8e,0x3d,0x19,0xdc,0x49,0xa9,0x43,0x6b,0x2,0x53,0xe9,0x3e,0xbc,0xe9,0xf6,0x1b,0x71,0xf2,0xc4,0x9,0x5d,0x49,0x6e,0xad,0xe1,0xc2,0xfe,0xa,0x5f,0xfe,0xd6,0x63,0x4,0x1c,0xc7,0x1,0xad,0xe4,0xcd,0xfe,0x49,0x8d,0x88,0x33,0xfc,0x6b,0x3c,0x20,0xd3,0xaa,0x5e,0x1b,0x71,0x7e,0xb6,0x19,0xac,0x56,0x77,0x2f,0xaf,0x4f,0x9b,0x4c,0x26,0x93,0xc9,0x64,0x32,0x99,0x2e,0x8f,0xec,0x4f,0x56,0x26,0x93,0xc9,0x64,0xba,0xe2,0xd2,0x8,0x23,0xda,0x2c,0xbe,0xe8,0x35,0x42,0x59,0xb,0xe0,0x7d,0x54,0xd7,0x95,0x83,0x83,0xe3,0xd1,0x0,0x72,0x40,0xf1,0xd8,0x3,0xc7,0xe,0x17,0x5d,0xc4,0xaf,0xfc,0xc2,0xcf,0xe0,0xd8,0xde,0xce,0x8f,0x7c,0x6c,0xb5,0x56,0xd4,0xda,0x90,0x4b,0xc5,0xb9,0xf3,0xe7,0x71,0xfa,0xcc,0x59,0x7c,0xef,0x89,0x67,0xf1,0xcd,0xbf,0x79,0xa,0xcf,0xbe,0x74,0x56,0xdd,0x75,0xb5,0x14,0x84,0x94,0x34,0x26,0xea,0x9c,0x47,0xea,0x1c,0xc6,0x61,0x50,0x8,0xe5,0x7d,0x40,0x73,0x1c,0x85,0x2c,0x19,0x25,0x67,0xf4,0xcb,0x1d,0xee,0x19,0x8c,0x18,0xc7,0x35,0x83,0x96,0xaa,0xa0,0x27,0x76,0x3d,0x3b,0xca,0xaa,0xc6,0x2c,0x63,0xea,0xe8,0xb8,0x86,0x35,0x6a,0xc9,0x14,0x4d,0xe6,0x35,0x57,0xb8,0xb2,0x31,0xae,0xe0,0x62,0xe4,0x75,0xda,0xe,0x85,0x57,0x6f,0xc5,0x95,0x56,0x4a,0xa6,0x18,0x73,0x19,0xe1,0x9a,0x53,0x50,0x4a,0x5f,0x53,0x79,0x80,0xc2,0xa3,0xb5,0x9,0xb4,0x4a,0x74,0x58,0x21,0x5e,0xec,0x66,0x5d,0x78,0xe,0x8e,0xc1,0xe2,0x38,0xe,0xea,0x62,0x2c,0xbc,0xbe,0xeb,0x66,0xa0,0xc7,0xb1,0x4b,0xb0,0x94,0x8c,0x90,0x28,0xce,0xea,0x7d,0xd0,0x31,0x17,0x89,0xd4,0x36,0x76,0xf5,0x89,0xfb,0x8c,0xc6,0x5c,0xbc,0x8e,0xc2,0x78,0x8e,0x16,0xd3,0x90,0x8c,0xc3,0x30,0xac,0x10,0x43,0xe4,0xe1,0x10,0xa7,0x23,0x32,0xad,0x91,0xdb,0x8d,0x1c,0x9c,0x55,0x61,0x1f,0x41,0x5c,0x82,0x8d,0xad,0x52,0xdf,0xa3,0xf4,0x8,0xb6,0x59,0xbc,0x19,0x2d,0xcf,0x20,0x27,0xbb,0xd1,0xd8,0x1,0x28,0xeb,0xbc,0x60,0xc7,0x62,0xea,0x7a,0xee,0x88,0xac,0xda,0xb9,0xe7,0x7d,0x40,0x8,0x81,0x80,0xaf,0xf,0x48,0x31,0x21,0x37,0x8a,0xcc,0x8a,0xdb,0x31,0x75,0x3d,0x80,0x86,0xe6,0x3,0xbf,0x7f,0x81,0xd7,0xe5,0xe4,0x2,0x89,0xc4,0xa,0x1c,0x15,0xb8,0xdb,0x6a,0x41,0x29,0x5,0x31,0x25,0x3a,0x47,0xfe,0x3c,0x35,0x1d,0xe2,0x8,0x68,0xbe,0xce,0x20,0x37,0xdd,0xc3,0x56,0x8a,0x7e,0x7e,0xc6,0x61,0x45,0xd1,0x5f,0x0,0x5d,0xdf,0xd3,0xeb,0xf1,0xa2,0xb1,0x80,0x4f,0xe9,0x3e,0xfc,0xe5,0xf,0x3f,0x88,0x9b,0x6e,0xb8,0x6e,0xe3,0x73,0xf2,0xec,0xf3,0x2f,0xe2,0xcb,0xdf,0x7a,0x8c,0x7,0x78,0xd2,0xec,0x9e,0x43,0x63,0xc1,0xa,0x78,0x25,0xce,0xcd,0x8e,0xc0,0x52,0xa6,0xd8,0x72,0x2d,0x45,0x9f,0x51,0x89,0x5f,0xcb,0xbd,0x68,0x96,0x1,0x36,0x99,0x4c,0x26,0x93,0xc9,0x64,0xba,0x6c,0x32,0x0,0x68,0x32,0x99,0x4c,0xa6,0x2b,0xae,0xc6,0x70,0x41,0xe2,0xac,0xb4,0x4a,0xba,0xe9,0x1c,0x13,0xc8,0xd2,0xf8,0xf7,0x2,0xbc,0x46,0x44,0xbb,0xbe,0xd7,0xa1,0x10,0xef,0x3d,0x42,0xea,0x70,0xb9,0xe2,0x82,0x14,0x29,0x6,0x62,0xc,0x58,0xf4,0x57,0xe1,0xba,0x6b,0xae,0xc2,0xeb,0x5e,0x73,0x1b,0x7e,0xfa,0xbd,0x23,0x9e,0x7b,0xfe,0x34,0xbe,0xfc,0xf5,0x87,0xf1,0xd9,0xaf,0x7f,0xf,0x2b,0x5e,0x4c,0xad,0x3c,0x30,0x52,0x6b,0x45,0xe6,0x31,0xe,0x7,0xa7,0x43,0x9,0x14,0x33,0xcd,0xe4,0x40,0xe4,0xe,0x3d,0x72,0xd6,0x1,0xe0,0x15,0x58,0x1,0x7d,0xf3,0x1,0x8e,0x29,0x86,0x4c,0xe,0x33,0x71,0xbf,0xc5,0xb8,0x24,0x20,0x25,0x71,0x66,0x0,0x2e,0x4,0x8c,0xeb,0xd5,0xd4,0x35,0x87,0xac,0x31,0x5a,0x71,0xb2,0x89,0xf3,0x4f,0x5c,0x8b,0x0,0x14,0x56,0xc9,0xb5,0x8b,0xb1,0xdb,0x18,0x91,0x98,0xdc,0x80,0x41,0x97,0x5e,0x6b,0x2d,0x1c,0xcb,0x5,0x8f,0x4a,0x34,0xed,0x4b,0xac,0x39,0xa3,0xf2,0xeb,0xca,0xa6,0xb3,0xf3,0x1e,0xbe,0x89,0x7b,0x2f,0xa8,0x1b,0x4c,0x6,0x3f,0x28,0xca,0xcb,0x63,0x2d,0x98,0x46,0x38,0xc8,0x25,0x39,0x81,0x46,0xf9,0x7e,0x60,0xea,0x49,0x74,0xde,0xa1,0x93,0x9e,0xc6,0xe6,0x74,0x81,0x56,0xbe,0x36,0x84,0x80,0x32,0x8e,0x3a,0xd6,0x11,0x23,0x45,0xc8,0x9d,0x23,0x88,0xeb,0x39,0xe6,0x5a,0x39,0x42,0x3c,0x8d,0x59,0x34,0x8d,0xe8,0x96,0x92,0xd9,0xf5,0xe8,0x15,0x84,0x7a,0x8e,0x5e,0x97,0x3a,0x4e,0x7d,0x8e,0xde,0x3,0x7c,0x5d,0x43,0x8c,0x0,0x1c,0x86,0xf5,0x5a,0x1d,0x9c,0xd3,0x78,0xc7,0xcc,0xbd,0xc9,0x2e,0x57,0x79,0xee,0xe6,0x4f,0xb0,0x44,0x98,0xe5,0x3e,0xc8,0xe7,0xa6,0xf1,0x35,0xd,0x91,0x6,0x42,0x2,0xbb,0xf7,0x3c,0x9c,0x3e,0x43,0x12,0xf1,0x4d,0xdc,0x5,0x28,0x91,0x61,0x7a,0xfe,0x18,0x5e,0x56,0x6c,0xac,0x6,0xcb,0xaa,0xb5,0x74,0xf,0xd2,0x70,0x8b,0x47,0xab,0x6d,0x63,0x71,0x19,0xfa,0xe4,0xd2,0xff,0x29,0x99,0xc0,0x67,0x98,0x75,0x46,0xe,0xeb,0x95,0x2,0xd2,0x21,0x8f,0x8,0x3e,0xcd,0x86,0x50,0x9a,0xf6,0x7a,0xf2,0x8a,0xcb,0xb4,0x80,0xad,0x6b,0xc3,0x5e,0x7,0x5e,0x4c,0x26,0x93,0xc9,0x64,0x32,0x99,0x4c,0x97,0x47,0x6,0x0,0x4d,0x26,0x93,0xc9,0x74,0xc5,0x55,0xb9,0xdf,0x4b,0x7,0x0,0x18,0x2,0x8,0x6c,0xa8,0x12,0xf9,0xcc,0x19,0xa9,0xeb,0x80,0xa,0x85,0x7d,0xb4,0xba,0x3a,0x41,0x1d,0x89,0x10,0x3,0xff,0x6d,0x17,0x43,0xbb,0x94,0x70,0xcb,0xcd,0xd7,0xe3,0x15,0x37,0x5d,0x87,0x77,0xdd,0xff,0x66,0x7c,0xf6,0x4b,0xf,0xe1,0x73,0x5f,0x7f,0x14,0x43,0x76,0x18,0x72,0xe6,0x2e,0x37,0xea,0x33,0x1b,0x87,0x35,0x1c,0x80,0x61,0x58,0x73,0x97,0x1d,0x81,0x8f,0x3c,0xc,0xd4,0x4d,0x18,0x13,0x39,0xd8,0x6a,0xc1,0x1d,0xaf,0xb8,0x16,0x3f,0x71,0xef,0x5d,0xd8,0xdb,0xdd,0xc5,0x23,0x8f,0x7e,0x1f,0x9f,0x7f,0xe8,0x6f,0x70,0xb0,0x1e,0xe0,0x83,0x87,0xf7,0x11,0x79,0x5c,0xb3,0xcb,0xaa,0xe3,0x58,0x70,0xd3,0x21,0x8e,0xca,0xb1,0xdd,0x32,0xac,0xd1,0xf5,0xb,0x6,0xa7,0x55,0x9d,0x57,0x5d,0xbf,0x44,0x1e,0x7,0xc,0xeb,0x3,0x76,0x51,0x46,0x84,0x44,0xae,0xaf,0x69,0x14,0x4,0x80,0x0,0xae,0x5a,0xa8,0xb7,0x70,0x1c,0x74,0x14,0x63,0xe,0xa1,0x24,0xbe,0xe9,0x66,0xe0,0x52,0xee,0x61,0x65,0x77,0x21,0x39,0xf9,0xa2,0x82,0x50,0x52,0xd3,0x18,0x6e,0xe4,0xe8,0x29,0xe0,0x90,0xc7,0x91,0xe3,0xaf,0x93,0x3b,0xb0,0xf1,0xb2,0x6d,0x65,0x60,0x24,0xd1,0x5b,0xe9,0x9b,0xa3,0xc8,0xf0,0xb4,0x4,0xd,0x60,0xb6,0x7a,0x5b,0xd9,0x25,0xca,0x40,0x58,0x9c,0x87,0xb2,0xac,0x4c,0x4f,0x1d,0x41,0x2b,0x8d,0x47,0x7b,0x72,0xb0,0xe5,0x8c,0xc0,0x51,0xda,0xca,0xd0,0x4f,0x21,0x6a,0x6b,0x28,0x65,0x44,0x8,0xd4,0x7b,0x97,0x87,0xb5,0x46,0x81,0xe9,0xd8,0xe8,0xfb,0x69,0xa4,0x86,0xc0,0x57,0x8,0x1,0x35,0x46,0x6,0x89,0x5e,0xa3,0xce,0x55,0x1c,0x7d,0x8d,0x20,0x73,0xad,0x85,0x0,0x5c,0xea,0x34,0x6,0x1e,0x53,0xa4,0xe3,0x89,0x91,0x8f,0x95,0xe1,0x19,0x3b,0xc,0x5,0x7e,0x8e,0xfc,0x7c,0xd1,0xe7,0x26,0x4f,0xcf,0x59,0x26,0x37,0x66,0xa9,0x45,0x3f,0x33,0x85,0x3f,0x53,0x12,0xe3,0xd,0xec,0x9a,0x8c,0x31,0x91,0x63,0x6f,0xa4,0x67,0x53,0x60,0x26,0x81,0x45,0x7f,0x49,0xae,0x2e,0x43,0x33,0xa9,0xeb,0x91,0x87,0x35,0xe0,0xe8,0x7e,0x2,0x40,0xea,0x7a,0x5e,0x17,0x6,0xfa,0xc5,0xe,0x86,0xf5,0x81,0xba,0xa,0xe9,0x19,0xf2,0x1a,0xc5,0xa6,0x18,0xb0,0xd3,0x67,0x4b,0x61,0x63,0x3,0x5a,0x2b,0xf6,0xc3,0xd2,0x64,0x32,0x99,0x4c,0x26,0x93,0xe9,0x32,0xc9,0x0,0xa0,0xc9,0x64,0x32,0x99,0xae,0xb8,0x4,0x0,0xf1,0x7f,0xe5,0x93,0xb,0xab,0x55,0xa4,0x8e,0xa2,0xae,0x21,0x25,0x80,0x87,0x37,0xc4,0x9d,0x94,0x19,0x4a,0x85,0x48,0x0,0x64,0xde,0xd7,0x26,0xee,0xb4,0x2b,0x21,0xe7,0x1c,0xae,0xbd,0xfa,0x24,0x7e,0xe1,0x67,0xde,0x8d,0xb7,0xbc,0xe1,0x35,0xf8,0x37,0x7f,0xf4,0x69,0x3c,0xff,0x32,0x2d,0xeb,0xc2,0x1,0x35,0x67,0x1d,0xbc,0xe8,0xfa,0xc5,0xe4,0x30,0x6b,0x15,0xcb,0xdd,0x3d,0xe4,0x9c,0x91,0x22,0xad,0x9,0xbf,0xfd,0x9e,0xd7,0xe2,0xd7,0xff,0xbb,0x9f,0xc5,0x62,0xd1,0x3,0x0,0xde,0xf2,0xa6,0xd7,0xe3,0x9e,0xbb,0x1e,0xc5,0x3f,0xfd,0xb7,0x7f,0x8c,0x83,0x55,0x45,0xa9,0x19,0x70,0x1e,0xde,0x13,0xc8,0x2a,0x79,0xa4,0xc1,0x5,0x57,0x39,0xca,0x3a,0xad,0xa8,0xa,0xfc,0xa2,0xfe,0x44,0x72,0x4a,0x16,0x1e,0xef,0x8,0x21,0x6d,0xc4,0x30,0x4b,0xa9,0x1a,0x5f,0xed,0xfa,0x85,0xba,0xb,0x1b,0x9d,0xa0,0x8e,0x80,0x84,0xd8,0xb1,0x7b,0xd1,0x21,0x86,0x88,0x71,0x58,0xa9,0xb,0xcf,0xbb,0xa0,0x0,0xca,0x71,0x2f,0x9f,0xc,0xa4,0xc8,0x39,0x37,0x34,0x1a,0x97,0x88,0x9d,0x82,0x4b,0x5a,0xfe,0x4d,0x1a,0xbb,0x15,0xa7,0xa0,0x0,0x45,0xef,0xbd,0x2,0x3a,0x5a,0xf8,0xe5,0xde,0xc0,0x99,0x73,0xae,0x32,0x4,0xf4,0x21,0xa2,0xd5,0x32,0x8b,0x38,0x17,0x38,0xef,0xa6,0xa5,0x5d,0x8e,0xc,0xb7,0x42,0x43,0x1d,0x2e,0x4,0x8e,0x47,0x47,0x5,0xa0,0xe2,0x62,0xf4,0x81,0xa0,0x54,0x88,0xd4,0x8f,0x58,0x39,0xd2,0x5a,0xaa,0x44,0x62,0xfd,0x34,0xce,0xe1,0xe8,0xef,0x1d,0x9f,0xa7,0x38,0x2a,0x8f,0x2e,0x4c,0x13,0x74,0x4,0x8f,0xd3,0xd4,0x2a,0x83,0x23,0xbc,0x6e,0xdc,0x28,0x9a,0xec,0x7d,0x63,0x57,0x23,0x1,0xb7,0x71,0xbd,0x42,0xec,0x7a,0xc,0xeb,0x3,0xc4,0xd8,0x21,0xc6,0x1e,0x45,0x96,0x88,0xb9,0x6b,0x32,0x8f,0x23,0x62,0x9c,0x22,0xe8,0x9e,0x21,0x24,0x45,0xb8,0x9b,0xc6,0xe4,0x75,0x9c,0x86,0x9d,0x88,0xf4,0x59,0x9b,0x1c,0x9f,0x70,0x50,0x17,0x66,0xce,0xa3,0x2,0xc1,0xd6,0x68,0x21,0xb9,0xd4,0x7c,0x49,0x27,0x5e,0xe0,0xc8,0x30,0x30,0x3d,0x5b,0x4,0x76,0x7,0x8d,0x13,0x4b,0xcc,0x5d,0x9c,0x94,0xa,0xea,0x35,0x1e,0xcc,0x9f,0xe7,0xda,0x26,0x77,0xa0,0x80,0xee,0x9c,0xed,0x87,0xa5,0xc9,0x64,0x32,0x99,0x4c,0x26,0xd3,0x65,0x92,0x65,0x2b,0x4c,0x26,0x93,0xc9,0x74,0xc5,0x95,0xba,0x5e,0x23,0xbf,0xb2,0xb4,0xea,0xc4,0x11,0xc6,0xab,0xaa,0xd4,0xb3,0x97,0xe1,0x1d,0x1,0x21,0xef,0xfd,0xb4,0x1a,0xcb,0x40,0xa3,0xb0,0x5b,0xc9,0x7b,0x7,0xb4,0xba,0xf5,0xbd,0x6a,0x6b,0xa,0x17,0x6a,0xad,0xfc,0xcf,0x55,0xbb,0xfe,0xe4,0xaf,0xff,0xb5,0x1,0x62,0xe7,0x1c,0x5e,0xf9,0x8a,0x1b,0xf0,0x8f,0x7e,0xe3,0xc3,0x78,0xd7,0x3d,0xb7,0xeb,0x3a,0xae,0xc,0x72,0x38,0xe7,0x91,0xd8,0xb5,0xe6,0xbc,0x63,0xe0,0x23,0x11,0x67,0xea,0x6f,0xfb,0xd0,0xfb,0xdf,0xa9,0xf0,0x4f,0xbe,0xf7,0xae,0xd7,0xdd,0x81,0xfb,0xef,0xbe,0x5d,0xaf,0x9,0x97,0x20,0xd2,0xf7,0xc4,0x84,0x90,0x92,0xc6,0x2d,0xa5,0x77,0x2d,0xa6,0x8e,0xae,0xf,0xc7,0x37,0x53,0xea,0xd1,0x2f,0x96,0xa,0x45,0x69,0xcd,0x98,0x16,0x8d,0x7d,0x88,0x48,0x1d,0xfd,0xb3,0x7c,0x8d,0x8c,0x89,0xd0,0xea,0x2e,0xa6,0xce,0xc1,0x9a,0x39,0xce,0xa,0x5,0xad,0xd2,0xf3,0x47,0xeb,0xca,0xbd,0x46,0x84,0xbb,0x7e,0x81,0xc0,0xb1,0x59,0xb9,0x3f,0x5d,0xbf,0xd0,0x95,0xd7,0x10,0x13,0xfa,0xc5,0xe,0x2f,0xed,0xd2,0x6b,0x7a,0x4f,0xc3,0x22,0x39,0x8f,0x48,0xfc,0xb5,0x3a,0x2,0x1,0x19,0xd4,0x0,0xd,0x42,0x30,0x64,0x23,0x60,0xe6,0xb5,0xb,0x4f,0x57,0x63,0x41,0x10,0x4f,0x96,0x79,0x75,0x9d,0x59,0x62,0xc8,0xb2,0x54,0xdc,0x2a,0x3b,0x18,0x9b,0x8e,0xba,0x48,0x2f,0x9f,0xf3,0xf4,0xfd,0xe3,0xb8,0x26,0x10,0x1d,0x79,0x1,0x37,0x44,0xa4,0x44,0x2b,0xd1,0x2,0x9,0x1d,0x80,0xae,0xeb,0xd1,0xf5,0xb,0xbd,0x36,0xf2,0xf5,0x91,0x5d,0x96,0x3a,0x78,0xc1,0xcf,0x78,0x4c,0xbd,0x2e,0xdf,0x4e,0x31,0x6f,0x6c,0x9c,0xab,0x44,0xa3,0x1,0xa0,0xeb,0x97,0x0,0xa0,0x2b,0xd0,0x6d,0xb6,0x94,0x1b,0x19,0x6,0xd2,0x78,0x48,0x61,0xe7,0x25,0x1,0xc4,0xc0,0x51,0x6b,0x1f,0x2,0xf7,0x7,0x8a,0x47,0xd6,0xe9,0xf3,0x12,0xbb,0xe,0xa9,0xef,0x35,0x7e,0xdd,0x2d,0x96,0x48,0xbc,0x2c,0xad,0x1b,0x26,0xe,0x48,0xa9,0x9f,0x22,0xba,0x1b,0xcf,0xff,0xb4,0xb2,0x2c,0x10,0xcf,0x4b,0x77,0xa0,0xf3,0xbc,0xd1,0xed,0x36,0x16,0x87,0xe5,0x59,0xe1,0x8b,0xa3,0x8e,0x45,0x59,0x5,0xa6,0xc5,0xeb,0x32,0xad,0x7e,0xdb,0x8,0x88,0xc9,0x64,0x32,0x99,0x4c,0x26,0xd3,0x65,0x93,0xfd,0xc9,0xca,0x64,0x32,0x99,0x4c,0x3f,0x16,0x39,0x50,0xf4,0xb7,0x95,0xa2,0x8e,0x24,0x1,0x35,0xad,0x4d,0xdd,0x77,0x39,0x8f,0x14,0x9b,0xe5,0x58,0x29,0x18,0xda,0xa5,0xae,0xd7,0xce,0xb6,0x5a,0xca,0x56,0x80,0xd7,0x5a,0xc3,0xef,0x7f,0xec,0x33,0x78,0xfe,0xa5,0x97,0x69,0x55,0xb6,0x14,0xea,0xae,0x2b,0x55,0x57,0x4a,0x23,0x3,0xae,0xbe,0x4b,0x58,0xf4,0x1d,0xf6,0x76,0x3a,0xdc,0x74,0xfd,0xb5,0xb8,0xfe,0xda,0xab,0x71,0xf5,0xa9,0x63,0x58,0x2e,0xfa,0x1f,0xea,0x2e,0xdc,0xdd,0x59,0xe2,0xc3,0xf,0xbe,0x13,0x5d,0x4a,0xf8,0xd3,0x2f,0x7e,0x8b,0x20,0x48,0xc9,0x68,0x1c,0xed,0x4,0x8f,0x5a,0x54,0x38,0xb4,0x9c,0x51,0x2a,0xc1,0xcc,0x93,0xbb,0x3d,0x4e,0x9d,0x3c,0x71,0xf4,0xba,0x38,0x87,0x5b,0x6f,0xb9,0x1,0x7f,0xf1,0xd5,0xef,0xc0,0xb1,0xd3,0x4f,0x86,0x42,0x4a,0xa1,0x65,0x57,0x71,0x5e,0x9,0xb0,0x13,0xc8,0x15,0x53,0xc7,0x8b,0xb3,0x4,0x68,0xca,0x38,0x2a,0x2c,0x14,0x57,0x58,0xad,0x55,0x3b,0xd8,0xbc,0x8c,0x6b,0x38,0x8f,0x86,0x4a,0x8b,0xc2,0xde,0xc3,0x35,0xea,0x37,0x94,0xce,0x40,0xcf,0x83,0x25,0x29,0xf5,0x7a,0x9f,0xca,0x38,0xc0,0x7b,0x8f,0xae,0x5f,0x50,0xec,0x94,0x23,0xa4,0xa5,0x64,0x44,0xdf,0xe9,0x7d,0xf1,0xc1,0xc3,0x11,0xc3,0xe4,0xce,0x3b,0xc7,0x91,0x57,0x72,0x75,0xa6,0xd4,0xa1,0x86,0x42,0x8b,0xb8,0x34,0x6b,0xab,0xee,0x43,0x1,0x7c,0x21,0x10,0xec,0x25,0xf7,0x5c,0x51,0x8,0x98,0x1b,0x2f,0xfc,0x6e,0x39,0xc7,0xd4,0x25,0xed,0x33,0x9c,0xbb,0x1b,0x43,0x48,0x1c,0x2f,0x1f,0xd9,0x11,0x48,0xeb,0xb4,0x2,0xed,0x68,0x9,0xb7,0xe7,0x15,0xe4,0x51,0x9f,0x47,0xe7,0xdd,0x14,0x4d,0x67,0x17,0xa3,0x3c,0x63,0x68,0xc,0xb5,0xdb,0xb4,0xd4,0xc,0x5,0xa6,0x9d,0x82,0x6a,0x5a,0xfd,0x8d,0xea,0xaa,0x24,0xe0,0xe6,0xd5,0x89,0xa8,0xb,0xc6,0xc,0x4,0x1b,0xaf,0x4a,0x4b,0xc7,0x24,0x30,0xf5,0x1f,0x6a,0xa7,0x60,0x6b,0x3c,0x88,0xc2,0x10,0x94,0xe3,0xd3,0xe,0x74,0xbc,0x4,0x87,0xa7,0x7e,0x3e,0x2,0x70,0x4d,0x9d,0x86,0xf2,0xd9,0x2a,0x65,0x8a,0x5a,0x7b,0x1e,0xdc,0x51,0xa7,0xed,0xd6,0xf,0xb0,0xd3,0xe7,0xc8,0x79,0x47,0xd7,0x91,0x3b,0xfc,0x3c,0x2f,0xa,0xcb,0x7a,0xb7,0xc,0x7a,0x78,0xee,0x20,0x14,0xb7,0xaa,0xc4,0x9c,0xe5,0x3d,0x64,0x20,0x64,0xfa,0x0,0x57,0xfb,0x41,0x69,0x32,0x99,0x4c,0x26,0x93,0xc9,0x74,0x99,0x64,0x0,0xd0,0x64,0x32,0x99,0x4c,0x57,0x5c,0xe2,0xfc,0x11,0xab,0x91,0xe7,0x38,0x60,0x65,0xf7,0x8f,0xf7,0x1e,0xe3,0xb0,0x9e,0xd6,0x6e,0x7d,0x98,0xba,0xc9,0x42,0xd4,0x68,0xa5,0x73,0x9e,0x63,0x8e,0xdb,0xd,0xed,0xad,0x1,0xcf,0xbd,0xf8,0x32,0xbe,0xf7,0xf4,0x4b,0x70,0xc,0x60,0xe6,0xc0,0x41,0xe0,0x4b,0x29,0x19,0x21,0x26,0xe4,0x71,0xcd,0x4e,0xa5,0x87,0x19,0xd2,0x2d,0x70,0xfb,0x2d,0xd7,0xe1,0xbe,0x37,0xbe,0x6,0xb7,0xdf,0x7a,0xb,0x52,0xda,0xfe,0xaf,0xcd,0x14,0x23,0x3e,0xf8,0xc0,0xfd,0x48,0xd1,0xe3,0x63,0x9f,0xfd,0x6,0x3,0xcc,0x7e,0x8a,0x75,0x3a,0x87,0xf5,0xc1,0x45,0xc4,0xae,0xa3,0xa8,0x30,0x1a,0x8a,0xeb,0x30,0x8c,0x19,0x7d,0xdf,0x1d,0x79,0xbd,0xf3,0x17,0x57,0xe4,0x1a,0xac,0x8e,0xfb,0xd9,0x78,0x81,0x37,0x75,0x3a,0xda,0x21,0xbd,0x73,0xd2,0x5,0x28,0xb0,0x46,0x80,0x94,0xf4,0x6,0x6,0xee,0x52,0x14,0xd8,0x17,0x82,0xc,0x2d,0xf0,0xb2,0x2d,0x26,0x67,0xdf,0x4,0x97,0x2a,0x1c,0xa8,0xf3,0x2f,0xf5,0xb,0x2,0xa5,0x89,0xdc,0x68,0xe4,0xca,0xc,0xea,0x7c,0xab,0xb5,0xc2,0x3b,0x7,0xe4,0xa6,0x51,0x5c,0xb9,0xce,0x0,0x2f,0x9,0xbb,0x0,0x38,0xc0,0xb7,0x69,0x5c,0x44,0x8e,0xd9,0x87,0x80,0xd4,0x2f,0x30,0xac,0xe,0xd0,0xf5,0xb,0xc,0xeb,0x15,0x92,0xba,0xea,0x16,0x18,0xc7,0x35,0x9c,0xe7,0xe,0x3f,0xef,0x11,0xa5,0xfb,0xb0,0x35,0xa4,0xd4,0x73,0x5c,0x14,0xa,0x20,0xe9,0xbe,0x12,0xec,0x12,0x77,0x1a,0x45,0x88,0x9,0x86,0x41,0x63,0xbb,0x41,0xbf,0x56,0xa2,0xe6,0x9e,0xa1,0x97,0x2c,0xd2,0xa,0x60,0x8e,0xc,0x23,0xe5,0xda,0x42,0xdc,0x83,0x1c,0x57,0xad,0xd2,0x1b,0xe8,0x3,0x82,0xf,0x48,0xdd,0x2,0x39,0x8f,0xc4,0xab,0xeb,0xb4,0x12,0xec,0x43,0x20,0xe0,0xcc,0x2b,0xb9,0x8d,0x5d,0x70,0xb5,0x2,0x31,0x50,0xdf,0x9f,0x74,0x1,0x6,0x59,0x3,0x6e,0x95,0xdd,0x7f,0x53,0xf7,0x21,0x1c,0x10,0x63,0xc2,0xc8,0x5d,0x84,0xe2,0xfc,0x54,0x57,0x1e,0xbf,0xd6,0x62,0x67,0x57,0xbb,0xf8,0xe4,0x79,0xd0,0xd8,0xad,0xe,0x6d,0x90,0x43,0x4f,0x3a,0x24,0x9d,0xa3,0x75,0xe4,0x6e,0xb9,0xab,0x83,0x21,0x72,0xad,0x36,0x3f,0x5b,0x8d,0xef,0xaf,0xe7,0x51,0x15,0x8a,0xeb,0xa6,0x7e,0x41,0x83,0x34,0xce,0xeb,0x67,0xb4,0x39,0x79,0x2e,0xd6,0xea,0x1a,0x6c,0xad,0xc1,0x43,0x9c,0x91,0x9,0xa5,0x14,0xd4,0x56,0xd4,0xfd,0x29,0x9f,0x5f,0x93,0xc9,0x64,0x32,0x99,0x4c,0x26,0xd3,0xe5,0x91,0x1,0x40,0x93,0xc9,0x64,0x32,0x5d,0x71,0xb5,0x43,0xab,0xa2,0xce,0x79,0x94,0x96,0x19,0xc,0x10,0xec,0x8,0x3e,0xaa,0xa3,0x4b,0x57,0x4c,0x1d,0x8f,0x5,0x88,0x63,0xa,0xe,0x4d,0xe0,0xd0,0x25,0x5c,0x7a,0xce,0x71,0x3f,0x9d,0x44,0xe,0x67,0x4e,0x2a,0xb0,0xeb,0x6d,0x3a,0x30,0xe8,0x8,0x4,0x5a,0xc0,0x8b,0x2f,0x9f,0xc7,0xcb,0x17,0xd7,0xf8,0xf2,0x23,0x4f,0xe0,0x96,0xeb,0x4e,0xe2,0x3,0xef,0x79,0xb,0xee,0xbc,0xe3,0x56,0xc4,0x70,0x14,0x88,0x84,0x10,0xf0,0xc0,0x3b,0xef,0xc5,0xd3,0xcf,0x9f,0xc1,0x37,0x1e,0x7b,0x96,0x86,0x22,0xc0,0x4d,0x87,0xad,0x91,0x5b,0x8f,0xa1,0x11,0x5a,0xc3,0xc5,0xfd,0x7d,0x7c,0xe9,0x6b,0xdf,0xc0,0x3,0xef,0xbe,0x7f,0xe3,0x75,0xce,0xbc,0xfc,0x32,0xfe,0xea,0x6b,0xdf,0x26,0xc8,0x19,0xe9,0x7c,0xd8,0xf1,0x3e,0x78,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x9d,0x77,0xea,0xc6,0x4b,0xdd,0x2,0xeb,0xd5,0x3e,0x62,0x4c,0xe4,0x9e,0xab,0x15,0xad,0x4d,0xce,0xae,0x6e,0xb1,0x40,0x1e,0x6,0x38,0x8e,0x99,0x52,0x4,0x94,0xfd,0x61,0x32,0xfe,0xc0,0xc3,0x1a,0xe2,0xd2,0x3,0xa0,0x7d,0x74,0xe,0x50,0x27,0x9a,0x5c,0x53,0x2,0x57,0x89,0xde,0x97,0x21,0x52,0x88,0x51,0xaf,0x17,0xe0,0xd0,0xf5,0x4b,0xbd,0x5f,0xe4,0xa,0xac,0x8,0x1c,0x31,0x25,0x47,0x1a,0x0,0x50,0x6c,0x59,0x60,0xa3,0xf4,0x0,0x36,0x76,0x4,0x96,0x92,0x69,0x3d,0x59,0x9c,0x93,0x7e,0x72,0x3f,0xca,0x98,0x8a,0x0,0x50,0x1a,0xe1,0x70,0x8,0x29,0xa1,0xe4,0x82,0x7e,0xb1,0x84,0x46,0x4e,0x7d,0x9b,0x22,0xd2,0xea,0x28,0x73,0x53,0xc7,0x5c,0x6b,0xd4,0x37,0x59,0xa,0x42,0x8a,0xf4,0x7e,0xb3,0x1,0x8f,0x9a,0x33,0x47,0xa1,0x7b,0x72,0x2d,0x7a,0x7,0xe7,0x22,0x2,0x3b,0xf2,0x28,0xde,0xda,0x14,0xba,0x39,0xdf,0x74,0xf8,0x22,0xa6,0x4e,0x7b,0xef,0x1a,0xc7,0xc1,0xc7,0x61,0x85,0xe5,0xce,0x1e,0x86,0xf5,0x4a,0xdd,0x8f,0x89,0x23,0xcd,0x79,0x1c,0x34,0xea,0xdb,0xd8,0xd9,0x5a,0x5b,0x65,0x50,0x4c,0xee,0x4e,0x1f,0x13,0x7c,0xe3,0x63,0xf4,0x3c,0xc2,0xc2,0xc3,0x2a,0xa9,0x5f,0xa2,0xe6,0x2,0x3f,0xeb,0xc9,0xf4,0xfc,0x7c,0xe6,0x71,0x50,0x77,0xa2,0x2c,0x0,0x43,0x16,0x84,0xf9,0xd7,0x75,0x5d,0x99,0x97,0x9c,0x4b,0x1e,0x75,0xc1,0x5a,0x60,0xee,0xb6,0x7d,0x1d,0x82,0x7b,0x3c,0xda,0xc1,0xd1,0x64,0xc7,0x71,0xfd,0xca,0xcf,0x47,0x1e,0x7,0xfd,0x7a,0x7a,0xdd,0xe,0x79,0x1c,0x19,0x30,0x93,0x6a,0x11,0xb8,0xc9,0x4f,0x88,0x64,0x8f,0xa1,0xe9,0x6e,0x93,0xc9,0x64,0x32,0x99,0x4c,0x26,0xd3,0x65,0x90,0x75,0x0,0x9a,0x4c,0x26,0x93,0xe9,0x8a,0x4b,0x7a,0xbe,0xc4,0xb1,0x54,0xf2,0xa0,0xfd,0x7e,0xe,0x4,0xbb,0x1a,0xf8,0xef,0x63,0x52,0xd7,0x1c,0x0,0x84,0x90,0xa6,0x15,0xdd,0x99,0x1b,0xec,0x52,0xa2,0xc8,0x61,0xe1,0x35,0xd6,0xa0,0xee,0x33,0x19,0x2b,0x70,0xdc,0x27,0x27,0x3d,0x78,0x79,0x58,0x23,0x8f,0x23,0x56,0x7,0x17,0x91,0xc7,0x1,0xad,0x56,0xc,0xeb,0x15,0xbe,0xff,0xcc,0x4b,0xf8,0xa7,0xbf,0xf3,0x27,0xf8,0xdd,0x3f,0xfa,0x73,0xec,0xef,0xaf,0xb6,0xbe,0x57,0xd7,0x25,0xfc,0xd2,0xcf,0xbc,0x13,0x27,0x76,0x17,0xe8,0x16,0x4b,0xa0,0x35,0x44,0x8e,0x2a,0xa7,0xd4,0xf1,0xca,0x6e,0xe0,0x95,0x5c,0x87,0x3f,0xfc,0xb3,0xaf,0xe0,0x93,0x9f,0xfe,0x2,0x4e,0x9f,0x39,0x8b,0x8b,0xfb,0xfb,0x78,0xec,0x89,0xa7,0xf0,0x2f,0x7e,0xe7,0x8f,0xf1,0xe2,0xd9,0x7d,0x0,0x13,0x60,0x49,0xa9,0x47,0x4c,0x1d,0x52,0xea,0x31,0xe,0x2b,0x44,0x1e,0xcb,0x70,0x3e,0x68,0xd7,0x5e,0x8c,0x9,0x31,0xf5,0xd4,0xc7,0xb7,0xd8,0x41,0x8,0x81,0xdd,0x8e,0xec,0x12,0x2c,0x45,0x9d,0x69,0x12,0x65,0x15,0xf7,0x1b,0x5d,0xd7,0x48,0xae,0x2d,0xee,0xca,0xf3,0x21,0x50,0xff,0xdd,0x6c,0x71,0x97,0xe2,0xa4,0x1,0xb1,0xeb,0x75,0xc1,0x97,0x7a,0xef,0x3a,0xed,0x9c,0x73,0xc,0x98,0xbc,0xf,0x74,0xaf,0x52,0x22,0x88,0xe5,0x29,0xc2,0x2d,0xfd,0x8f,0x0,0xbd,0x77,0xd7,0x2f,0xb5,0x6f,0x4f,0xfa,0xef,0x64,0xc,0x44,0x5c,0x7c,0x31,0x76,0x7a,0x2d,0xe8,0xeb,0x8,0xa6,0x52,0x87,0x5f,0xd0,0xd1,0xa,0xcf,0x43,0x29,0xa9,0xeb,0x14,0x4c,0xf6,0x8b,0x1d,0x3a,0xa6,0x10,0xf4,0x5c,0x23,0xbb,0xeb,0x68,0xbc,0xc3,0x21,0x70,0x3f,0x22,0xc1,0xdf,0x82,0xe5,0xee,0x9e,0x5e,0x63,0x5a,0xd9,0xad,0x74,0x2c,0xc,0x21,0x9d,0xf3,0xda,0xbb,0x28,0x20,0x53,0xd7,0x89,0xa5,0xdb,0xcf,0x4d,0x10,0x2b,0xc6,0x84,0x9c,0xd9,0x15,0xc9,0xf1,0x6c,0xb9,0x96,0x72,0xfe,0xce,0x39,0x2c,0xd8,0x75,0x37,0xae,0xd7,0xda,0xb5,0x28,0x31,0x5a,0x82,0xb9,0x14,0xcb,0x16,0x17,0xab,0x8f,0x91,0x3e,0x23,0x29,0x1,0x68,0x3a,0x52,0x22,0xb0,0xd,0x20,0x7,0xa9,0x44,0x83,0x65,0xdd,0x37,0xc6,0x44,0xb1,0x63,0xee,0xd8,0x6c,0xad,0xaa,0xdd,0x2e,0xf2,0x12,0xb2,0xfc,0x73,0xd7,0xf7,0xdb,0x3f,0x5f,0xec,0x8e,0x14,0x97,0x28,0x39,0x42,0xf9,0xf,0x97,0x72,0x5d,0xa4,0xf,0x92,0x1d,0xbf,0xf3,0xb1,0x15,0x1,0xb2,0xb4,0x76,0x1d,0xf8,0x18,0xa0,0x71,0x61,0xc0,0x1c,0x80,0x26,0x93,0xc9,0x64,0x32,0x99,0x4c,0x97,0x53,0xe6,0x0,0x34,0x99,0x4c,0x26,0xd3,0x15,0x17,0x2d,0x92,0x82,0xa0,0x85,0x73,0x80,0xf,0xda,0x7,0x26,0xb,0xb0,0xe2,0x62,0x6a,0xec,0xd6,0xca,0xe3,0x48,0xa0,0xc3,0x11,0xe0,0x28,0xa5,0x20,0x75,0x1d,0x52,0xb7,0x0,0x5a,0xbd,0x4,0x2c,0x68,0x70,0x9e,0x0,0x4e,0x1e,0x87,0x59,0xff,0x98,0xa7,0x48,0x6e,0x4a,0xd4,0x33,0x7,0x87,0xf5,0x7a,0x45,0x40,0xb1,0x14,0xee,0xb6,0x5b,0xd2,0x18,0x84,0xc4,0x12,0xd9,0xc5,0xf7,0xf9,0x6f,0x7c,0xf,0x2f,0xbd,0x7c,0x1e,0xff,0xe0,0x97,0x1f,0xc4,0xb1,0xbd,0x9d,0x23,0xef,0x78,0xea,0xe4,0x71,0xfc,0xc2,0x3,0xf7,0xe1,0x5f,0x7d,0xf4,0xd3,0xda,0x8f,0xe7,0xd9,0x81,0x18,0x52,0x47,0xce,0xc0,0xd6,0x10,0xbb,0xe,0x15,0x1e,0xff,0xe1,0x53,0x5f,0xc2,0xc7,0xfe,0xf2,0x6b,0xc8,0xe3,0x88,0xb1,0xca,0xe8,0x87,0x3,0x18,0x84,0x4,0x1e,0x56,0xa0,0x73,0xce,0xe8,0x7a,0x1a,0xee,0x18,0xc7,0x35,0xa2,0x8b,0x33,0x88,0x3a,0x72,0x2f,0xdd,0xe4,0xda,0x93,0x68,0x6f,0xce,0x23,0xfa,0xe5,0xe,0x47,0x73,0x13,0x77,0xab,0x39,0x5a,0x11,0x6,0xb0,0xd8,0xd9,0xc5,0xb0,0x5e,0x1,0x68,0x88,0x21,0xa1,0x31,0xf4,0x93,0x2e,0xc6,0xca,0xce,0x39,0x19,0x31,0x11,0x98,0x45,0x51,0x6c,0x7,0x34,0x2,0x47,0xc3,0xfa,0x0,0xfd,0x62,0x87,0xc0,0x92,0x38,0x36,0x6b,0xa5,0x73,0x2d,0x5,0xc1,0x73,0x2c,0xd8,0x79,0x34,0x4f,0xe7,0xd7,0x6a,0x21,0x27,0x63,0xab,0x87,0x22,0xaa,0x93,0x53,0xb1,0xa1,0x22,0x75,0xb,0xc,0xc3,0x8a,0xc7,0x40,0xa2,0xc6,0x70,0xe9,0x3c,0x3c,0xc5,0xc8,0x1,0x72,0x4,0x32,0xe0,0x94,0x9e,0xbe,0x18,0x29,0xa,0x2d,0x83,0x1c,0xe4,0x24,0xe4,0x78,0x2a,0x18,0x58,0xb5,0x86,0xae,0xef,0xd4,0x95,0x38,0x8d,0x9f,0x50,0x94,0xbb,0xb5,0x46,0xe,0xc5,0x90,0xd0,0x12,0x39,0x12,0x11,0x9d,0x42,0xae,0xd6,0xa8,0x4f,0xb2,0x29,0x58,0xa4,0x38,0x2c,0xc5,0x89,0xe7,0xc3,0x1f,0x4d,0x1d,0x95,0xb4,0x9f,0xeb,0x10,0x13,0x43,0x38,0xd0,0x75,0xa4,0x28,0x33,0x1,0x69,0xe7,0xc2,0x86,0x53,0xd3,0xb9,0xa0,0xae,0x3d,0x27,0x3d,0x85,0xc,0x95,0x9d,0xde,0xb7,0xa9,0x5f,0x4f,0x9e,0x9f,0x5a,0xb,0xba,0x7e,0x49,0x50,0xbb,0x35,0xf4,0xcb,0x5d,0xba,0xf,0x20,0xf7,0x62,0x1e,0x6,0xfe,0x3c,0x34,0xb4,0xe6,0x18,0x20,0x36,0x86,0xf2,0xdb,0x3e,0x5a,0xe4,0x80,0xc,0x21,0x61,0x18,0x56,0xa8,0xa5,0x6c,0xf4,0x5,0xd2,0x75,0x24,0x17,0x23,0xad,0x33,0xcb,0x73,0x5a,0x74,0xe0,0xc6,0x39,0xee,0x45,0xf4,0x5e,0xaf,0xa1,0x0,0x68,0x5a,0x7,0x2f,0xf6,0xc3,0xd2,0x64,0x32,0x99,0x4c,0x26,0x93,0xe9,0x32,0xc9,0x1c,0x80,0x26,0x93,0xc9,0x64,0xba,0xe2,0xa2,0xee,0x32,0x70,0x14,0xd0,0xcd,0x96,0x68,0xa9,0x3,0xcd,0xe9,0x58,0x40,0xa1,0x48,0x66,0xa9,0xbc,0xbc,0x3a,0x75,0xb4,0x49,0x7,0xde,0x4,0x9b,0xb6,0xbd,0x93,0xdb,0xf8,0x75,0xe7,0x3c,0x8f,0x87,0x80,0x7,0x25,0x68,0x21,0xb8,0x48,0x1f,0x9b,0x27,0x97,0x98,0xe3,0xe,0x42,0x34,0xa0,0xe4,0xac,0x1d,0x7c,0x34,0x20,0x92,0xf1,0xdd,0x27,0x9e,0xc5,0xbf,0xfc,0xbd,0x8f,0x63,0xff,0x60,0xbd,0xf5,0xfc,0xde,0x70,0xe7,0xad,0x78,0xdd,0xab,0x6e,0xd0,0xf7,0xa4,0x35,0x58,0x0,0xa0,0xfe,0x33,0xe9,0x77,0xa3,0xe8,0x6b,0x87,0x8b,0xfb,0x2b,0x14,0x17,0xa8,0x7f,0x8d,0xcf,0xcd,0xb3,0x23,0x52,0xc6,0x3a,0x16,0x3b,0x7b,0x7a,0x6c,0x12,0xd7,0x4,0xa0,0x2b,0xb6,0xfd,0x92,0x9c,0x6e,0xd2,0xcd,0x47,0xf0,0xab,0x21,0x8f,0x32,0x9e,0x41,0x23,0x13,0x21,0xc4,0x69,0xa9,0xd6,0xd1,0xce,0x70,0xc9,0x59,0x7f,0x5d,0x86,0x3a,0x68,0xd1,0x97,0x5d,0x7d,0x7c,0x1e,0x12,0xab,0x95,0x71,0x8b,0x10,0x13,0xb9,0xd0,0x2,0x39,0xe0,0x16,0xcb,0x5d,0x3a,0x67,0xee,0x68,0x24,0xb0,0x43,0x10,0x33,0xf0,0x22,0x6d,0x8c,0x9,0xfd,0x72,0x57,0xc7,0x27,0xfa,0xe5,0x8e,0xc2,0x3f,0x71,0xbc,0xc9,0xc0,0x8b,0xe7,0xf7,0x8c,0x91,0x0,0x61,0xd7,0x2f,0xe1,0x3c,0xfd,0xbe,0x38,0xdb,0x62,0x4a,0xfa,0x4c,0x4,0x76,0xe7,0xc9,0x4a,0x6f,0x88,0x4,0xe7,0x7c,0x98,0x5c,0x6e,0xea,0x86,0x63,0x27,0x5d,0xc7,0xc7,0x21,0x3d,0x74,0xe2,0xb4,0x9b,0x47,0xca,0x9d,0x23,0xd7,0x1a,0x8d,0x65,0x8c,0xec,0x40,0x8d,0x7a,0xfd,0xc5,0xe1,0xe9,0x38,0x4a,0x2b,0xee,0x3d,0x1a,0xf7,0x28,0xe8,0xfa,0x5,0x47,0x94,0x69,0xc0,0x25,0xc6,0xa4,0x2b,0xc0,0x2,0xba,0xc5,0xcd,0x48,0xc7,0xd5,0xa1,0xb5,0x8a,0x7e,0xb1,0xa3,0xc7,0x12,0xd9,0xe5,0xd7,0x5a,0xd5,0xb5,0x5e,0x59,0x5d,0x4e,0x89,0xae,0x97,0x38,0x59,0x9d,0x77,0x58,0xee,0xee,0x6d,0x7c,0x56,0xa4,0x5b,0x50,0xfe,0x5e,0xd6,0xa5,0x13,0xf7,0x22,0xf6,0xcb,0x1d,0xea,0x8a,0xc,0xbc,0x26,0xdd,0x1a,0xc0,0xb,0xc1,0x97,0xca,0x0,0x8b,0x73,0x2f,0xf1,0xca,0xb4,0xbc,0x3f,0x40,0xcb,0xc5,0x0,0xf4,0xba,0x47,0x8e,0xf7,0x7b,0x7e,0x56,0xc8,0x11,0x48,0x71,0x6e,0x60,0xaa,0x5,0x68,0x3a,0x41,0x6c,0x32,0x99,0x4c,0x26,0x93,0xc9,0x64,0xba,0x9c,0x32,0x0,0x68,0x32,0x99,0x4c,0xa6,0x2b,0xae,0xae,0x5b,0x10,0x43,0xf0,0x1e,0xb5,0x15,0x8e,0x4f,0xba,0x8d,0xd5,0x50,0xed,0xcc,0xe3,0x55,0x53,0x2,0x3,0xd0,0x81,0x4,0x71,0xea,0xd5,0x5a,0x35,0x52,0xbc,0xd,0x52,0x40,0xfa,0xda,0x5a,0x43,0xad,0x5,0x7,0x17,0xce,0xa1,0xe4,0x4c,0x10,0xb2,0x16,0x94,0x3c,0xe8,0xf2,0x68,0x1e,0x7,0x1c,0x5c,0xbc,0x80,0xfd,0xb,0xe7,0xb4,0x1b,0x90,0xe2,0xc2,0x4d,0x7f,0x8f,0x1c,0x5e,0x1,0x8f,0x3e,0xf9,0x3c,0xfe,0xe0,0xe3,0x9f,0x46,0xad,0x47,0xdf,0x37,0xc5,0x88,0xf7,0xde,0x7f,0x37,0xf,0x80,0x4c,0x70,0x27,0x84,0xa4,0xe7,0xe4,0xb9,0x8b,0xaf,0xd6,0xaa,0x4e,0x31,0x89,0x78,0xd6,0x52,0xd0,0x2a,0x39,0xa5,0x8,0xd6,0x75,0x18,0xd7,0x6b,0xed,0x41,0xf4,0xce,0xa1,0x96,0xaa,0x2e,0x37,0x89,0x53,0x27,0x8e,0x95,0xa6,0x7e,0xc1,0x5f,0xeb,0xa7,0x3e,0xb7,0x98,0x66,0xb1,0xd5,0xa6,0x2b,0xb5,0x3e,0xd0,0x40,0x7,0x39,0xd8,0x12,0x16,0xcb,0x5d,0xed,0x91,0x13,0x60,0x28,0x91,0x5c,0x89,0xad,0x92,0xfb,0x8f,0xce,0xa3,0xef,0x97,0xe8,0xfa,0x25,0xf5,0xc5,0xe5,0x91,0xee,0x1d,0x47,0x61,0x69,0x8d,0x77,0x2,0x92,0x29,0xf5,0xf0,0x91,0x1c,0x99,0xdd,0x62,0x7,0x2,0x7,0xfb,0x7e,0x9,0xef,0x1c,0xf2,0x38,0xd2,0xe0,0x6,0x3b,0x40,0x53,0xd7,0x53,0x5c,0x17,0xd0,0xd8,0xaa,0x38,0x11,0xe5,0x5a,0xd1,0xb9,0xf3,0xb3,0x3,0x4c,0xcf,0x46,0xa0,0x9e,0x3b,0x82,0x8e,0x1d,0x62,0x22,0x68,0x98,0x12,0xc1,0x50,0xea,0xdd,0x73,0x3a,0x14,0x12,0x53,0x47,0x43,0x18,0x7c,0x1d,0xe4,0xf9,0xb,0x71,0x82,0x92,0x0,0xf4,0x7d,0x5,0xa,0x8b,0x5b,0x90,0xce,0xb5,0x43,0xd7,0x4d,0xae,0xcf,0x10,0x3b,0x7d,0x3f,0x8a,0x3c,0x77,0x53,0x6f,0x23,0x8,0x92,0xc9,0xb1,0xeb,0x60,0x9,0xc0,0xcf,0x9e,0x43,0x61,0xe7,0xa1,0xc0,0xd6,0x98,0x7a,0x8d,0xf,0xa7,0xae,0xd7,0x58,0x76,0xad,0x45,0xa1,0xa3,0xf3,0x41,0xbb,0xf6,0xd0,0x9a,0xc2,0xdf,0x56,0x1b,0x52,0xb7,0xe0,0xe7,0x90,0xa0,0xa1,0xf4,0x4a,0x52,0x8c,0x9e,0x80,0xa3,0xc0,0x78,0x89,0x88,0xcf,0xe3,0xf7,0x47,0x3e,0x5c,0x1c,0x3,0x2e,0x25,0x23,0x8f,0x6b,0x94,0x92,0x51,0x38,0x62,0x4e,0x7c,0xd1,0xf1,0xbd,0x8f,0x7c,0xc,0xfc,0xd9,0xf6,0x5e,0xc7,0x7d,0xe4,0x79,0x9f,0xc3,0x43,0xfd,0x2c,0x3b,0xfb,0x63,0xaa,0xc9,0x64,0x32,0x99,0x4c,0x26,0xd3,0xe5,0x92,0x45,0x80,0x4d,0x26,0x93,0xc9,0x74,0xc5,0x25,0xff,0xb1,0xdf,0x5a,0x55,0x97,0xd2,0xc6,0x30,0x8,0x47,0x47,0x9d,0x27,0xa8,0xa3,0x60,0xa0,0x56,0x54,0x4c,0x4b,0xb5,0xe4,0x64,0xc2,0xd6,0x51,0xe,0x5,0x9,0x8d,0xa0,0xd,0x41,0x35,0x1a,0x97,0xa0,0x5,0xd6,0x8a,0xf5,0x6a,0xc5,0xae,0xae,0xcc,0x4b,0xc3,0x83,0xb2,0x8e,0x61,0xbd,0x82,0xe7,0xe5,0x61,0x88,0x1b,0xcd,0x7b,0xac,0xe,0x2e,0x50,0x27,0x9d,0xf7,0xf8,0xcc,0x57,0x1e,0xc1,0x7d,0xf7,0xbc,0x1e,0xaf,0xb9,0xed,0x15,0x47,0xde,0xfb,0xb6,0x57,0xde,0x84,0x9b,0xaf,0x3b,0x85,0x1f,0x3c,0x7f,0x46,0xd7,0x62,0x13,0x2f,0x3,0xa7,0xae,0xc7,0xfa,0x60,0x1f,0x5d,0xbf,0xd4,0xbe,0xb6,0x71,0x6c,0xa,0x45,0x6a,0xab,0x28,0x63,0x41,0xd7,0x4d,0x4b,0xbb,0xb1,0xa3,0xf8,0xb0,0x74,0xd0,0x75,0x31,0xa2,0x55,0x2,0x65,0x9e,0xaf,0x85,0xf4,0x18,0x82,0xa1,0x18,0xf5,0xb9,0x11,0x4c,0xcd,0xe3,0xa0,0x6b,0xb1,0xf2,0x9e,0xc3,0xfa,0x0,0x9e,0xa1,0x24,0xc5,0xa5,0xbd,0xe,0x4d,0x48,0xa6,0x5a,0x9c,0x83,0x31,0x25,0x5,0x35,0xa9,0xeb,0x91,0xc7,0x1,0x3e,0x44,0x8a,0x22,0xa7,0xe,0x2e,0x78,0x2c,0xfb,0x63,0xb4,0xca,0xdb,0x1a,0x5c,0xf3,0xea,0x98,0x9b,0xc7,0x81,0xbd,0xf,0xf0,0x89,0xc6,0x22,0x52,0xb7,0xd0,0xfb,0x38,0x8e,0x6b,0xf4,0x8b,0x25,0x77,0x1e,0x76,0x68,0x20,0xb7,0x65,0x88,0x34,0x98,0x51,0x39,0x1a,0x2c,0xb0,0x98,0xdc,0x9c,0x91,0xd7,0xa1,0x3,0x3f,0x53,0xf4,0x5c,0x65,0x34,0x84,0x90,0xb4,0xb7,0x4f,0x86,0x37,0x0,0x71,0x25,0x3a,0x5d,0xd2,0x25,0x20,0x2b,0xe,0xc7,0x86,0xc5,0x62,0x17,0xb5,0x55,0x78,0x80,0xc7,0x31,0x80,0xe0,0x3,0xa,0xaf,0xc,0x13,0x78,0xa6,0xfb,0x29,0x40,0x2f,0xe7,0x51,0xbb,0xd,0x4b,0xcd,0xbc,0x9c,0x5c,0x74,0xe9,0x78,0xd1,0x2d,0xc9,0x29,0x17,0x7b,0x82,0x98,0x70,0xfa,0x1c,0x8,0xb0,0x74,0xde,0xe9,0xf0,0x4a,0xec,0x7a,0x5,0xd6,0x8e,0x63,0xcb,0x72,0x6e,0x31,0x75,0x3c,0x96,0xd2,0xf1,0xf7,0x66,0x38,0x4f,0x6e,0x58,0xe7,0x3d,0xfd,0x7f,0x76,0x1d,0x74,0xd9,0xb8,0xe4,0x91,0xae,0x27,0x3f,0x13,0x81,0xdd,0x95,0x34,0xc6,0xd2,0xf1,0xb5,0x73,0x7a,0xae,0xce,0x79,0x4,0xb9,0xd7,0xec,0x66,0xdc,0xb6,0x2,0x2c,0xce,0x47,0xb9,0x17,0xf2,0x19,0x2e,0x39,0x63,0x1c,0x7,0x75,0x70,0x4a,0x7c,0xba,0x61,0x1a,0xf4,0x91,0xb1,0x16,0xe9,0x3e,0x94,0xee,0x4f,0xe8,0xc8,0x4f,0xe3,0x81,0x70,0x73,0x2,0x9a,0x4c,0x26,0x93,0xc9,0x64,0x32,0x5d,0x2e,0x19,0x0,0x34,0x99,0x4c,0x26,0xd3,0x15,0xd7,0x38,0x50,0xdf,0x1c,0x40,0xfd,0x60,0xe0,0xfe,0x33,0x34,0x1a,0x64,0xa0,0xd1,0x3,0x3f,0x2d,0xf2,0x3a,0x87,0x94,0x7a,0xe4,0x3c,0xea,0xaf,0x13,0xe0,0xa0,0x78,0x65,0x66,0xc7,0xd4,0x36,0x35,0x5e,0xc,0x16,0xb7,0x53,0x6b,0xd,0xab,0xfd,0xb,0x18,0x87,0x35,0xba,0x7e,0x89,0x83,0xfd,0xb,0xc,0x41,0x32,0xd6,0x7,0xfb,0xec,0x8a,0xa3,0xe,0xc0,0xb,0xe7,0xce,0xa0,0xeb,0x16,0x14,0x8d,0x8c,0x53,0xd4,0xd2,0xbb,0x80,0x71,0x75,0x80,0x7e,0xb1,0xc4,0x47,0xff,0xe4,0x33,0xf8,0x1f,0x7f,0xf3,0xef,0x21,0xa5,0xcd,0x7f,0xa5,0x76,0x29,0xe2,0xde,0xd7,0xdd,0x42,0x0,0xd0,0x7b,0xa0,0x5,0x1a,0x23,0xf1,0x81,0xe2,0xc5,0x68,0xe8,0x52,0xc0,0x62,0x87,0x80,0x8e,0xeb,0x7a,0xed,0x31,0xbc,0x38,0x14,0x84,0xb0,0xc7,0xee,0xc6,0xc,0xd4,0xc6,0x50,0xa7,0xe3,0xf1,0x7,0xea,0xde,0xeb,0x97,0x9,0xd7,0x9f,0xdc,0xc5,0x2b,0xae,0xbf,0xa,0xd7,0x5e,0x75,0x1c,0x7b,0x7b,0x7b,0x68,0xb5,0x60,0x18,0xb,0x4e,0x9f,0xbd,0x80,0xa7,0x9e,0x7b,0x11,0x4f,0x3c,0x77,0x6,0xeb,0xb1,0x4e,0x80,0xd3,0x91,0x4b,0x2e,0x8f,0x83,0x42,0xa5,0x10,0xa6,0x5e,0xb9,0x5a,0x32,0x45,0x69,0xd1,0x70,0xf2,0xd8,0x2e,0xb9,0xcc,0x3a,0x2,0x97,0xae,0x1,0x67,0x2f,0x5c,0xe4,0xa8,0x36,0x45,0xa9,0xd1,0x1a,0xae,0x3d,0xbe,0x83,0x3b,0x5f,0x7d,0x13,0x6e,0xbe,0xe1,0x3a,0x74,0x29,0xe0,0xfc,0xf9,0xb,0x78,0xfe,0xcc,0x45,0x7c,0xeb,0x7b,0x4f,0xe3,0x2,0xc7,0xa4,0x5b,0x6b,0x28,0xc8,0xb4,0x14,0x5b,0x46,0xed,0xcb,0x6b,0xbc,0x20,0x7b,0xfd,0x35,0xa7,0xf0,0x9a,0x57,0xde,0x80,0x1b,0xaf,0xbb,0xa,0x7b,0xcb,0x5,0x86,0x71,0xc0,0x4b,0x2f,0x5f,0xc0,0xa3,0xdf,0x7f,0xa,0x4f,0x3e,0xff,0x32,0x7c,0x60,0x27,0x63,0xea,0x30,0xe,0x6b,0x75,0xa9,0x25,0x86,0x96,0xb2,0xb8,0x3c,0xe,0x6b,0xa4,0xd4,0x6b,0x5f,0x61,0x88,0x11,0xe0,0x5e,0x49,0x89,0x91,0x3b,0x47,0xfd,0x87,0x37,0x5e,0x7b,0xa,0x37,0x5d,0x7b,0x2,0x37,0x5c,0x77,0x15,0x76,0x96,0xb,0xa4,0x94,0xb0,0x5a,0xad,0x71,0xee,0xe2,0xa,0xcf,0xbe,0x70,0x6,0x3f,0x78,0xee,0x45,0x9c,0xb9,0x30,0x10,0x54,0xe5,0x75,0x5a,0x19,0x1c,0x9,0xc,0xd5,0xb4,0x7b,0xd1,0x1,0x65,0xa0,0xf3,0xa,0x21,0xa0,0x79,0x8f,0x8,0xe0,0xc4,0xde,0xe4,0x74,0x6c,0xb5,0xa0,0x94,0x82,0xe2,0x22,0xe,0xd6,0x34,0x30,0x53,0xd9,0x5,0xb8,0xbb,0xe8,0x70,0xc7,0x2b,0x6f,0xc4,0x2b,0x6f,0xbc,0x6,0x27,0x8f,0xed,0x2,0xe,0x38,0xfd,0xf2,0x39,0x3c,0xf9,0xcc,0x8b,0xf8,0xee,0xe3,0xcf,0xe0,0xe2,0x6a,0x9c,0x39,0xe9,0x28,0xee,0xab,0x3d,0x91,0x3e,0xa0,0xfa,0xaa,0x6e,0x49,0xb9,0xde,0xf4,0xbc,0x64,0x5d,0xfd,0x5,0x68,0xcc,0x45,0xe0,0xe7,0x55,0xc7,0x16,0xb8,0xe5,0x86,0x6b,0x70,0xfd,0x35,0x27,0x70,0x7c,0x6f,0x7,0xcb,0xbe,0x47,0x69,0xd,0x67,0xcf,0x5d,0xc4,0x33,0x2f,0x9c,0xc1,0x93,0xcf,0x9d,0xc1,0x85,0x75,0x3e,0xb2,0xda,0xd,0x80,0x5d,0x87,0x1,0xe3,0xd8,0x14,0xf2,0xe5,0x71,0x44,0x43,0xe3,0x7e,0xcd,0x8e,0xd7,0x9e,0xeb,0x46,0x87,0xa6,0x9c,0x6f,0x8,0x11,0xc3,0xb0,0xd6,0x58,0x7e,0xad,0x15,0x75,0x5c,0xeb,0x90,0xa,0x20,0x63,0x3d,0x26,0x93,0xc9,0x64,0x32,0x99,0x4c,0xa6,0xcb,0x21,0x3,0x80,0x26,0x93,0xc9,0x64,0xfa,0x31,0x89,0xe3,0x81,0x1,0x70,0x3e,0x61,0x58,0x1d,0x50,0x74,0x31,0x13,0xa4,0x8b,0x81,0xfa,0xee,0xbc,0xa7,0xa1,0x6,0x89,0x5a,0xca,0xd2,0x6c,0x63,0x67,0x5a,0x29,0x5,0x61,0xd1,0x6d,0xc5,0x7f,0xd2,0x6f,0x7,0x1e,0x70,0x98,0x2b,0x75,0x3d,0x2e,0x9c,0x3b,0x83,0x94,0x3a,0x8c,0x3c,0x62,0x0,0x7,0x8c,0x3,0xc1,0x9e,0x71,0x18,0x90,0x52,0x8f,0xf5,0xea,0x0,0xa9,0xef,0xe1,0xe0,0x30,0xe,0x6b,0xf4,0xcb,0x1d,0x5c,0x38,0xff,0x32,0x62,0x8c,0x70,0x6e,0x7,0xdf,0xf9,0xfe,0x53,0x78,0xe2,0xa9,0x67,0x70,0xfb,0xad,0xb7,0x1c,0x79,0xff,0x3b,0x6e,0xbd,0x5,0xf5,0x53,0x5f,0x25,0x47,0x99,0xf,0xec,0xb4,0xcb,0x3a,0xce,0xf1,0x91,0xf7,0xbf,0xd,0x6f,0x7a,0xfd,0xed,0xea,0xa4,0x6a,0xad,0x62,0xb5,0x1e,0xf1,0xbf,0xfe,0xf6,0x1f,0xe1,0xc5,0xd3,0x67,0x28,0x7a,0xeb,0x3c,0xaa,0x23,0x20,0x9a,0x87,0x35,0x9c,0xf7,0x58,0xa6,0x80,0x7,0xee,0x7f,0x3,0xde,0x7a,0xcf,0x9d,0x38,0x79,0xfc,0x38,0x62,0xdc,0xee,0x80,0xac,0xb5,0xe2,0xfc,0xc5,0x7d,0x7c,0xfd,0x5b,0x8f,0xe2,0xcf,0xbe,0xf4,0x8,0x5e,0xbe,0x40,0x80,0x2f,0x8f,0x3,0x0,0xa0,0xeb,0x17,0x28,0x25,0xeb,0xba,0x6e,0x6b,0xe4,0x34,0x74,0x70,0xb8,0xe7,0xb5,0xb7,0xe0,0xd7,0x7e,0xf1,0xa7,0xe0,0xe0,0x14,0xae,0x35,0x0,0xbf,0xf3,0xd1,0x4f,0xe1,0xa1,0xef,0x3d,0x8b,0x5a,0x32,0x6e,0x38,0xb5,0x8b,0xf,0xbe,0xef,0x6d,0x78,0xed,0xab,0x5f,0x89,0x45,0xdf,0x6d,0xbc,0x77,0x6b,0xc0,0xfe,0xc1,0x1,0xbe,0xfd,0xdd,0xef,0xe3,0x4f,0xbf,0xf8,0x30,0x9e,0x79,0xf1,0x2c,0x3,0xa1,0x82,0x7e,0xb1,0xc4,0x38,0xe,0x8,0x31,0xe2,0x96,0x6b,0x4e,0xe0,0xfd,0xef,0x78,0x3,0xee,0xbc,0xe3,0x36,0x2c,0x17,0x8b,0x23,0xf5,0x6f,0xb9,0x14,0x3c,0xf3,0xdc,0x8b,0xf8,0xe3,0x4f,0x7d,0x1e,0x8f,0x3c,0xfe,0x3c,0xa,0x3b,0x1,0x63,0xa0,0x21,0x10,0x38,0xe8,0x6a,0x2d,0xd,0xc3,0xf4,0x3c,0xee,0x31,0x39,0x18,0x53,0xd7,0xeb,0x90,0xc6,0x55,0x27,0x76,0xf0,0xde,0xfb,0xee,0xc2,0x1b,0xee,0x7c,0x35,0xae,0x3e,0x75,0xe2,0x8,0xb8,0x9d,0x6b,0xbd,0x1e,0xf0,0xfc,0x8b,0x67,0xf0,0x8d,0xef,0x7c,0x1f,0x9f,0xfd,0xda,0x77,0x71,0xee,0xc2,0x45,0x85,0xd0,0x31,0x26,0x1a,0x65,0x59,0xec,0x68,0x6c,0x3d,0x76,0x3d,0x22,0x8f,0xa3,0x94,0x92,0xb1,0xbb,0xb3,0xc4,0x3f,0xfe,0xcd,0x5f,0xc2,0xde,0xee,0xe,0x3b,0xf9,0xe8,0x3e,0x7f,0xeb,0xdb,0xdf,0xc3,0x6f,0xff,0xc1,0x9f,0xa3,0x80,0x0,0xe1,0x7,0xdf,0xfb,0x56,0xdc,0x7d,0xe7,0x6d,0x38,0x7e,0x6c,0x57,0x7,0x31,0xa6,0x7b,0xd8,0x70,0xee,0xfc,0x79,0x7c,0xf1,0x6b,0xf,0xe3,0x93,0x9f,0xff,0x26,0xf6,0x57,0x3,0x43,0xed,0x6,0x1f,0xa7,0xcf,0x87,0xb8,0xe5,0xbc,0xf,0x28,0x35,0x53,0x64,0x1a,0xd,0x31,0x71,0x74,0x39,0x52,0xbc,0xfe,0xe4,0xf1,0xe3,0x78,0xd3,0x1d,0x37,0xe1,0xad,0x6f,0xbc,0x13,0x37,0xdd,0x70,0xd,0xba,0x94,0xe0,0xfd,0xd1,0x4f,0x4f,0x6b,0xd,0xc3,0x30,0xe2,0x99,0xe7,0x5f,0xc2,0x89,0xe3,0x7b,0x5b,0x3f,0x5d,0xd,0x4e,0x1d,0x99,0xb5,0x16,0x94,0x32,0xaa,0x2b,0x35,0x8f,0x83,0x3a,0x46,0xbd,0x73,0x80,0xf3,0x70,0x3c,0xf2,0x1,0xe9,0xb6,0xc,0x1,0xad,0x14,0x64,0xfd,0x6c,0xd2,0x53,0x26,0x11,0x60,0x7,0x9b,0x1,0x36,0x99,0x4c,0x26,0x93,0xc9,0x64,0xba,0x5c,0x32,0x0,0x68,0x32,0x99,0x4c,0xa6,0x2b,0xff,0x2f,0x1f,0x86,0x13,0x2,0xf,0xa,0x2f,0x99,0x96,0x92,0xe1,0x40,0x83,0xa,0x8d,0x5d,0x6f,0x0,0xb4,0x43,0x4e,0xe2,0x81,0x4,0x9,0x30,0x75,0xbd,0x71,0xa4,0x73,0xab,0x18,0x10,0x95,0x3c,0xd2,0x6a,0x2a,0x47,0x61,0x2f,0x9e,0x3b,0x43,0x2e,0xa4,0xf5,0x8a,0xd6,0x87,0x39,0xba,0x4a,0xc3,0x24,0xc0,0x58,0x57,0xd8,0x97,0xc1,0x8b,0x94,0x30,0x94,0x51,0x1d,0x66,0x8e,0x87,0x37,0x2e,0x9c,0x3b,0x83,0x7e,0xb9,0x83,0xaf,0xfc,0xf5,0xb7,0xb6,0x2,0xc0,0x6b,0xae,0x3a,0x81,0x6b,0x8f,0x2f,0xf0,0xdc,0xcb,0xfb,0x4,0xa8,0x6a,0xe6,0xa8,0x25,0x81,0xa0,0x2e,0x6,0x2c,0x17,0xfd,0xc6,0xf7,0xd4,0xda,0x30,0xac,0x57,0x93,0xb3,0x91,0x7,0x26,0x8,0xe6,0x74,0x78,0xf3,0x6b,0x6e,0xc6,0x2f,0x7e,0xe0,0x3d,0xb8,0xfa,0xaa,0x93,0xff,0xc5,0xeb,0xec,0xbd,0xc7,0x89,0x63,0x7b,0x78,0xcf,0xdb,0xdf,0x8c,0x7b,0xee,0x7a,0xd,0x7e,0xff,0xe3,0x9f,0xc1,0xd7,0x1f,0x7d,0x9a,0x22,0xc4,0x8b,0xa5,0xc6,0x30,0xbb,0x45,0x8f,0x3c,0xae,0x75,0xf9,0x98,0xa0,0xd,0xb0,0x5c,0x2c,0x8e,0xbc,0x66,0x8,0xb4,0x68,0xfc,0xe0,0x3b,0xee,0xc6,0x4f,0xbe,0xe3,0x1e,0xec,0xee,0x2c,0xb7,0x5f,0x76,0x7,0xec,0xee,0x2c,0x71,0xef,0x3d,0xaf,0xc7,0xab,0x6f,0xbb,0x5,0x7f,0xf8,0x9f,0x3f,0x8f,0x87,0x1e,0x7d,0x4a,0x41,0x58,0xdf,0xf7,0x78,0xe0,0xad,0x77,0xe2,0x81,0x77,0xdd,0x7b,0x4,0x1e,0x6e,0x3c,0x2b,0x21,0xe0,0x96,0x9b,0xae,0xc7,0x3f,0xfc,0xd5,0x9f,0xc7,0x17,0xbe,0xf6,0x30,0x7e,0xff,0x4f,0xbf,0x4,0xef,0x3d,0x81,0x59,0xee,0xd3,0xab,0x0,0xca,0x38,0xea,0xa0,0x46,0xce,0xa3,0x8e,0x83,0x48,0x8c,0x76,0xd1,0x45,0xfc,0xfc,0x4f,0xbe,0x1d,0xf7,0xdd,0xf3,0x3a,0xec,0x2c,0x17,0x7f,0xab,0xe7,0xb4,0xef,0x3b,0xdc,0x72,0xf3,0xf5,0x78,0xc5,0x4d,0xd7,0xe1,0x5d,0xf7,0xdd,0x8d,0xcf,0x7c,0xfe,0x6b,0xf8,0xb3,0x2f,0x3d,0x8c,0xa1,0x34,0xd4,0xc2,0xeb,0xc5,0xb5,0x10,0xd8,0xe5,0x8,0x72,0xe6,0xee,0x48,0x89,0xc4,0x2e,0x16,0xb,0x2c,0xf,0xbd,0xdf,0x62,0x41,0x40,0xf2,0x6d,0x77,0xdf,0x81,0xf,0xbd,0xff,0xed,0xb8,0xea,0xe4,0xf1,0x1f,0x72,0xf,0x1d,0x4e,0x9e,0x38,0x8e,0x7,0x7f,0xf2,0xed,0xb8,0xeb,0xce,0x57,0xe3,0x5f,0xfc,0xee,0xc7,0xf1,0xdc,0xe9,0xf3,0x68,0xad,0x4c,0x31,0xd9,0x5a,0xd5,0xed,0x48,0x11,0xea,0x5e,0x1d,0x9d,0xe4,0xfe,0xa3,0xce,0xc7,0x7b,0x5f,0x77,0x1b,0x7e,0xee,0x7d,0xf7,0xe3,0xda,0x6b,0x4e,0xfd,0x17,0xe3,0xb5,0xce,0x39,0xf4,0x7d,0x87,0x5b,0x6f,0xb9,0xf1,0x12,0x5f,0xd1,0x36,0xfa,0x31,0x69,0x90,0xa7,0x62,0x58,0x1f,0xc0,0x39,0xc7,0x7f,0xd,0x58,0xee,0xec,0x72,0x27,0x22,0xa6,0xe3,0xf5,0x9e,0x9c,0xbd,0x70,0xc,0xb,0x47,0xfd,0x9c,0x4e,0xfd,0x7f,0x4,0x18,0x4d,0x26,0x93,0xc9,0x64,0x32,0x99,0x4c,0x97,0x47,0xd6,0xae,0x6c,0x32,0x99,0x4c,0xa6,0x2b,0x2e,0x81,0x6c,0xd2,0xff,0x55,0xb,0xf5,0x82,0x35,0x1e,0xe3,0x90,0xbe,0x37,0xc7,0x0,0x40,0xc7,0x8,0xc8,0xea,0xc4,0xe0,0x2f,0x20,0x70,0xaf,0x9b,0x8c,0x2c,0x6c,0xfd,0x17,0xdd,0xc,0x74,0x48,0xfc,0x90,0x1c,0x70,0xe,0xe3,0xb8,0x46,0x6b,0xd4,0x5b,0x26,0x90,0xb0,0x8c,0x3,0x86,0xf5,0x1,0x4a,0xe1,0x8e,0xba,0x52,0x70,0xf6,0xf4,0xb,0x18,0xd6,0x7,0x0,0x28,0x86,0xeb,0x0,0xac,0xf7,0x2f,0xa2,0x96,0x82,0x83,0x8b,0x17,0xf0,0xcd,0xef,0x3c,0x86,0xf5,0x7a,0x38,0xf2,0xde,0x31,0x6,0xdc,0x74,0xdd,0x29,0x1d,0x5a,0x10,0xf8,0xe5,0x3d,0xb9,0xf9,0xb6,0xad,0x9d,0x7a,0x1f,0xd0,0xf5,0x3d,0xa,0x77,0xcd,0x85,0x10,0x30,0xac,0x57,0x58,0x1f,0xec,0xe3,0xbd,0xf7,0xde,0x89,0x5f,0xff,0xe5,0x9f,0xfd,0x5b,0xc1,0xbf,0xc3,0x3a,0x7e,0x6c,0x17,0xbf,0xfa,0xe1,0x7,0x70,0xcf,0x1d,0x37,0xe9,0xa0,0x85,0x5c,0xc7,0xc6,0xc3,0x2a,0xc3,0xea,0x80,0x1c,0x7f,0xad,0x1d,0x71,0xa2,0x89,0xba,0x18,0xf0,0x6b,0x3f,0xf7,0x2e,0xfc,0xec,0xfb,0xee,0xbf,0x24,0xfc,0x3b,0xac,0x93,0xc7,0xf7,0xf0,0x2b,0x3f,0xf7,0x1e,0xdc,0x75,0xdb,0xd,0x80,0x73,0xe8,0x82,0xc3,0xaf,0x7d,0xf0,0x1d,0xf8,0xc0,0x3,0x6f,0xff,0xa1,0xf0,0xef,0xf0,0xb5,0x7c,0xc7,0xbd,0x77,0xe1,0x43,0xef,0x79,0x13,0x8f,0x78,0x2c,0x8,0x54,0x32,0x90,0x4c,0x5d,0xcf,0x83,0x26,0xe,0xdd,0x62,0x41,0xf1,0x66,0x4f,0x4e,0xbd,0x5b,0x6f,0xbc,0x1a,0xff,0xf8,0x1f,0xfc,0x2,0xde,0xfb,0x8e,0x37,0xff,0xad,0xe1,0xdf,0x5c,0xce,0x39,0x1c,0x3f,0xb6,0x8b,0xf,0xbe,0xff,0x9d,0xf8,0x47,0x7f,0xff,0x43,0x38,0xb5,0xb7,0xe0,0x28,0x30,0x8d,0x7d,0xa4,0x6e,0xa1,0x63,0x2c,0xb4,0xd0,0x3b,0xd,0x75,0x6c,0x73,0xd7,0xd5,0x5a,0xf1,0xae,0x37,0xdd,0x81,0x5f,0xfd,0xf0,0xfb,0x7e,0x28,0xfc,0x3b,0xac,0x9b,0x6f,0xb8,0x16,0xff,0xf0,0x57,0x3e,0x80,0x53,0xc7,0x77,0x69,0xd0,0x84,0xdd,0x8e,0x0,0xb4,0x1b,0xd2,0xcb,0x48,0x8a,0xf7,0x3c,0xb0,0x91,0xd1,0x77,0x1d,0x7e,0xe5,0x67,0xde,0x8e,0x5f,0xff,0xc8,0x83,0xb8,0xee,0xda,0xab,0x2e,0x53,0xb7,0x1e,0x7d,0xe,0xe5,0x1a,0x50,0x67,0x27,0xbd,0xee,0x7a,0xb5,0x3f,0xd,0xd0,0xcc,0x3e,0xcf,0x4,0x28,0x8b,0x7e,0xe,0x5b,0xab,0xc8,0xe3,0x40,0xeb,0xd6,0xce,0xc3,0x7,0x1a,0xc7,0x91,0x91,0x10,0x93,0xc9,0x64,0x32,0x99,0x4c,0x26,0xd3,0xe5,0x93,0x1,0x40,0x93,0xc9,0x64,0x32,0x5d,0x79,0xb9,0x69,0xe9,0x93,0xa2,0xbc,0xf4,0xaf,0x23,0x19,0x36,0x68,0xb5,0xf2,0x52,0x6a,0xd3,0x78,0x27,0x30,0xb9,0xaa,0xe,0x8f,0x86,0x50,0xac,0x70,0x3b,0x30,0xa0,0x91,0xb,0xea,0x4c,0xb,0x21,0xb2,0x53,0x89,0xfe,0xb7,0xe4,0x91,0x17,0x81,0x57,0xbc,0xc8,0xea,0xb1,0xd8,0x3d,0x46,0x4b,0xaf,0x7c,0x1c,0xcb,0xdd,0x63,0xd8,0xd9,0x3d,0x86,0x9d,0xbd,0xe3,0xec,0x12,0xa4,0xe8,0x62,0xd2,0xee,0x41,0xe0,0xf1,0xa7,0x5f,0xc0,0xfe,0xc1,0xea,0xe8,0x69,0x3a,0x87,0x1b,0xaf,0x39,0x81,0xd6,0xa8,0x17,0x6d,0x75,0x70,0x11,0xe3,0x7a,0x85,0x56,0x2b,0xfa,0x9d,0xbd,0xad,0x20,0xa6,0xb5,0xa,0xe7,0x23,0xf7,0xb9,0x35,0x82,0x93,0x68,0x58,0xf6,0x1d,0x3e,0xf0,0xbe,0xfb,0xd1,0x75,0xe9,0xef,0x7c,0xd9,0x17,0x7d,0x87,0x5f,0x78,0xf0,0x9d,0x38,0xbe,0x4c,0x14,0x2f,0xe,0x91,0xfb,0xf,0x9,0x1a,0x75,0xcb,0x1d,0x1d,0x68,0xf1,0x61,0xfb,0xfb,0x3c,0xf0,0xae,0xb7,0xe2,0xde,0xbb,0xef,0xd8,0x0,0x84,0xb4,0x68,0x5b,0x51,0xca,0xa5,0xa1,0xcd,0x72,0xd1,0xe1,0x23,0x3f,0xf3,0x13,0xb8,0xfe,0xd4,0x31,0xfc,0xfd,0xf,0xbf,0x17,0x6f,0x7e,0xc3,0x6b,0x37,0xe0,0x2c,0x80,0x4b,0xaf,0x39,0xcb,0xbd,0xf4,0x1e,0x3f,0x71,0xdf,0x1b,0x71,0xd7,0x6d,0x37,0x72,0xaf,0x1c,0x74,0x31,0x3a,0x84,0x40,0xe7,0xc2,0xff,0x13,0x22,0x85,0x1c,0x5e,0xfb,0xca,0xeb,0xf0,0x5b,0xff,0xc3,0xcf,0xe1,0xc6,0x1b,0xae,0xfd,0xd1,0x1f,0x5b,0xe7,0xf0,0xca,0x9b,0x6f,0xc0,0xff,0xf4,0x9b,0x1f,0xc1,0xad,0x37,0x5d,0x4b,0xc3,0x22,0xc,0x75,0xe5,0xf8,0x4,0xc2,0x9,0x98,0xdb,0x76,0x3a,0x37,0x5c,0x7b,0x15,0x7e,0xf1,0x3,0xef,0x46,0x3f,0xbb,0x97,0xa5,0x56,0xec,0x1f,0xac,0x70,0xf6,0xdc,0x5,0x1c,0xac,0xd6,0x97,0xbc,0xe,0x37,0xdd,0x70,0x2d,0xfe,0xde,0x7,0xde,0x89,0x2e,0xf5,0xfa,0x19,0x90,0xf7,0x93,0x31,0xd,0x5a,0x4,0x4e,0xf0,0x21,0x60,0x6f,0xef,0x38,0x7e,0xf5,0x83,0x3f,0x81,0x77,0xde,0xf7,0xc6,0x4b,0x46,0xc5,0xff,0xae,0xd7,0x42,0x80,0x9e,0x73,0x6e,0x36,0x90,0xe2,0x79,0x39,0x18,0x38,0xb8,0x78,0xe,0xc3,0xea,0x0,0xd,0xd,0xe3,0x7a,0xa5,0x3,0x2a,0x74,0x6d,0x9c,0xae,0x16,0x37,0x59,0xd2,0x6e,0xe0,0x1,0x90,0x69,0xb9,0xdb,0x64,0x32,0x99,0x4c,0x26,0x93,0xc9,0x74,0x79,0x64,0x11,0x60,0x93,0xc9,0x64,0x32,0x5d,0x71,0xe9,0x7f,0xf0,0x73,0xcb,0x57,0xab,0x95,0xba,0xc3,0x62,0x84,0x73,0xd0,0x9e,0x3f,0x89,0x2e,0x3a,0x86,0x4d,0xde,0x4f,0xe,0xa1,0x5a,0x2b,0x2,0x83,0x82,0x52,0xca,0xf,0x69,0xb,0x6b,0xba,0x36,0x2c,0xcb,0xb5,0xce,0x7b,0x54,0x6,0x86,0xfb,0x17,0xcf,0x21,0x84,0x88,0xe5,0xee,0x31,0x39,0x38,0xc4,0x98,0x34,0x82,0x5b,0x19,0x38,0x7a,0xe7,0xb1,0xd8,0xd9,0xa3,0x55,0xd5,0x6e,0x81,0x9c,0x7,0xf4,0xcb,0x1d,0x72,0x29,0x7a,0x8f,0x33,0x2f,0x9f,0xc1,0xa9,0x2d,0x6e,0xae,0x6b,0xaf,0x3e,0x89,0x71,0x58,0x91,0x23,0x8a,0xd7,0x54,0x87,0xf5,0xa,0xa1,0x14,0xd4,0xba,0xe5,0xa8,0x5b,0x3,0x5a,0xd1,0x5,0xdb,0xd6,0x1a,0xea,0x7a,0x85,0xb8,0xe8,0x8e,0x0,0x33,0x80,0xdc,0x55,0xeb,0x21,0xe3,0xec,0xb9,0x73,0x58,0xad,0x6,0x38,0xef,0x71,0xfc,0xd8,0x1e,0x8e,0xef,0xed,0x20,0x84,0xa3,0xff,0x7f,0xbe,0x93,0x27,0x8e,0xe1,0xc1,0x77,0xbd,0x5,0xbf,0xfb,0x89,0xbf,0xa2,0xf1,0x8f,0x5a,0x34,0x32,0xda,0x5a,0x85,0xe3,0x58,0x66,0x61,0xb8,0x79,0x58,0xd7,0x5d,0x7d,0x82,0xf,0xb3,0xe1,0xcc,0xd9,0xf3,0xf8,0xf6,0xa3,0x4f,0xe0,0xbb,0x4f,0x3c,0x87,0x73,0xe7,0x2f,0xc0,0x87,0x88,0xeb,0xaf,0x3e,0x8e,0xfb,0xef,0xb9,0x13,0xaf,0xb8,0xf1,0xda,0x23,0x80,0xf3,0xe4,0x89,0x63,0xf8,0xad,0xff,0xfe,0x41,0x9c,0x3c,0x3e,0xc1,0xcf,0x52,0x2b,0x1e,0x7b,0xfc,0x29,0x7c,0xe1,0xaf,0xbf,0x8d,0xd3,0xe7,0xe,0xb0,0x48,0x1,0xb7,0xdc,0x74,0x2d,0xee,0x7b,0xd3,0x9d,0xb8,0xfa,0xd4,0xd1,0xeb,0xd9,0xa5,0x84,0xf,0xbc,0xf7,0x3e,0x7c,0xe7,0x5f,0x7f,0xc,0x63,0x91,0x65,0xe3,0x82,0x71,0x1c,0x34,0x6,0x2b,0xce,0xd2,0x57,0x5e,0x77,0x2,0xbf,0xf1,0xcb,0x1f,0xc0,0xb1,0xbd,0x9d,0xad,0xe7,0x92,0x4b,0xc1,0xb9,0x73,0x17,0xf0,0xcc,0xf3,0xa7,0x71,0xe6,0xdc,0x45,0x8c,0xc3,0x1a,0x8b,0x3e,0xe1,0xe6,0x1b,0xaf,0xc7,0x35,0x57,0x9d,0xb8,0xa4,0x5b,0xf0,0xe4,0xf1,0x3d,0xfc,0xc6,0x47,0x1e,0xc0,0x3f,0xff,0xbd,0x4f,0xe2,0x7,0xcf,0x9d,0xa6,0x27,0xd9,0x79,0x1a,0x67,0x61,0x67,0x9b,0xe3,0xa5,0x6a,0x6c,0x79,0x32,0xe7,0xe,0xce,0x61,0x1c,0xf1,0xad,0x47,0xfe,0x6,0x5f,0x7c,0xe8,0x51,0x3c,0x73,0xfa,0x22,0xf6,0xf,0x56,0xe8,0x93,0xc7,0x5d,0xaf,0xbe,0x19,0xef,0x7f,0xf7,0xbd,0xb8,0x66,0x8b,0xdb,0xf3,0xf5,0xaf,0xb9,0x15,0xaf,0xbe,0xf9,0x9b,0x78,0xf4,0x7,0x2f,0x0,0x99,0xc0,0x75,0xad,0x45,0x97,0x9a,0x5b,0xa3,0x4e,0xc7,0x14,0x23,0x7e,0xfa,0xfe,0xd7,0xe1,0x2d,0x77,0xdf,0xb9,0xd5,0x89,0x8,0x10,0xb8,0x3d,0x73,0xf6,0x1c,0x9e,0x79,0xfe,0x25,0x9c,0x3d,0xbf,0x8f,0xf5,0x7a,0xc0,0xee,0xce,0x12,0xd7,0x5c,0x75,0x2,0xd7,0x5c,0x75,0x12,0xc7,0x8f,0xed,0x6c,0x7d,0xee,0x68,0xa8,0x87,0x56,0x89,0xc7,0xb6,0xa6,0x35,0xe6,0x40,0xb1,0x78,0x1f,0x2,0xf6,0x2f,0x9c,0xc3,0x72,0xf7,0x98,0x7e,0x1d,0x3d,0xcb,0x15,0x53,0xc2,0xd7,0x31,0x74,0x77,0xba,0x14,0x5d,0x2a,0x2f,0x75,0x37,0x6a,0x9d,0x74,0x6,0x0,0x4d,0x26,0x93,0xc9,0x64,0x32,0x99,0x2e,0x9b,0xc,0x0,0x9a,0x4c,0x26,0x93,0xe9,0x8a,0x4b,0x80,0x9e,0x93,0xea,0x3e,0xe7,0xe1,0x23,0x50,0x5b,0xc3,0xb8,0x3a,0xa0,0xe5,0xdd,0x71,0x24,0x27,0x5a,0x74,0x1c,0x13,0xec,0x90,0xf3,0x88,0xe4,0x3d,0x4a,0xa9,0xa,0x1,0x53,0x97,0xa8,0x97,0x6e,0x4b,0x4,0xb8,0x81,0x5e,0x53,0xe4,0xd9,0x29,0x58,0x4b,0x41,0xbf,0xd8,0x41,0xab,0xd,0x31,0x76,0xda,0x9d,0x26,0x23,0x15,0x8b,0x9d,0x3d,0x8a,0x50,0xa6,0x4,0x34,0x1a,0x20,0x11,0x20,0x19,0x53,0x87,0x6e,0xb1,0x44,0x2c,0x1d,0x0,0x5a,0x36,0x8d,0x29,0x61,0x18,0xb7,0xbb,0xdf,0x16,0x8b,0x85,0xf6,0xb1,0xe5,0x2,0x78,0x5e,0x38,0xe,0x71,0xfb,0xf8,0x2,0x9c,0x43,0x6b,0xd4,0x93,0x58,0x78,0x5d,0x35,0x75,0x3d,0xc1,0xbc,0x79,0x9c,0xb9,0x56,0x3c,0xfe,0x83,0x67,0xf1,0x57,0x5f,0x7d,0x4,0xf,0xff,0xcd,0x13,0xb8,0xb0,0x26,0xe8,0x53,0x6b,0xc1,0xa2,0x5f,0xe0,0xd5,0x37,0x9e,0xc4,0x7,0xdf,0x77,0x1f,0x6e,0xba,0xfe,0x9a,0x23,0x6f,0xf1,0xda,0xdb,0x6f,0xc1,0xb2,0xff,0xa,0xe,0xd6,0x3,0x2,0xf,0x36,0x0,0x14,0xe5,0x74,0x89,0x87,0x55,0x52,0x12,0xfe,0x7a,0x44,0xb9,0x14,0x7c,0xf1,0x6b,0x8f,0xe0,0x13,0x9f,0xfb,0x26,0xce,0xef,0x1f,0xf0,0xca,0x32,0xc5,0x40,0x1f,0x7b,0xfa,0x25,0x7c,0xe1,0x9b,0x8f,0xe1,0x23,0x3f,0x75,0x2f,0xde,0xfe,0x96,0x37,0x1c,0x81,0x80,0xa7,0x4e,0x1c,0xd3,0xbf,0x3f,0x73,0xf6,0x2,0xfe,0xd3,0xa7,0xbe,0x80,0xaf,0x3c,0xfc,0x7d,0x5e,0xf7,0x5d,0xa1,0x5b,0xec,0xe0,0x91,0x27,0x5f,0xc0,0x97,0xbe,0xf5,0x38,0x7e,0xf1,0x81,0xb7,0xe0,0xee,0xd7,0xdd,0x7e,0xe4,0xfd,0x5f,0x71,0xd3,0x75,0xb8,0xf9,0x9a,0x63,0x78,0xea,0xa5,0xb,0xb4,0x52,0x9c,0x7a,0x38,0x1f,0xe0,0xbd,0xa7,0x15,0xe0,0x7e,0x81,0x45,0xf4,0xf8,0xd5,0xf,0xbd,0x6f,0x2b,0xfc,0x6b,0xd,0x78,0xe2,0xa9,0xe7,0xf0,0x89,0xbf,0xf8,0x32,0x1e,0xf9,0xfe,0x33,0x70,0x3e,0x62,0xbd,0xde,0x47,0xf0,0x81,0x23,0xb4,0xc0,0xa9,0xbd,0x5,0xde,0xf2,0xba,0x57,0xe2,0x27,0xdf,0xf9,0x56,0x1c,0xdf,0xf2,0x1a,0xa7,0x4e,0x1c,0xc7,0x47,0x7e,0xfa,0x7e,0xfc,0xb3,0xdf,0xfb,0x24,0x86,0xd2,0x90,0x4b,0x86,0x73,0x41,0x47,0x42,0x3c,0x2a,0xd2,0x62,0xf9,0x43,0x67,0x2c,0x5e,0x3e,0x7b,0x1e,0xbf,0xff,0x89,0xcf,0xe1,0x6b,0x8f,0x3c,0xb6,0x31,0x54,0x32,0xe4,0x82,0x2f,0x3c,0xfc,0x4,0x1e,0x79,0xfc,0x39,0xfc,0xd6,0xaf,0x3c,0x88,0x9b,0x6f,0xd8,0xbc,0x87,0x29,0x45,0xbc,0xfd,0x9e,0x3b,0xf1,0xbd,0xa7,0x4f,0xc3,0x25,0x82,0x7f,0xde,0x5,0x94,0x9c,0x69,0x91,0x18,0x4,0xe8,0x5e,0x71,0xcd,0x2e,0xde,0xf9,0xb6,0xbb,0x2f,0x19,0x43,0x7e,0xfc,0xc9,0x67,0xf0,0xc9,0xcf,0x7f,0x13,0x8f,0x3e,0xf9,0x3c,0x2a,0xaf,0xf8,0xca,0x42,0xb4,0xf,0x1,0x5d,0xc,0xb8,0xf3,0xd6,0x9b,0xf1,0x4b,0x3f,0xfd,0x36,0x9c,0x9c,0xdd,0x37,0x7e,0x50,0x75,0x40,0x86,0xfe,0xc9,0x51,0xdc,0xb8,0x5f,0x62,0xb5,0xda,0x87,0x73,0x34,0x9a,0xb3,0xdc,0xd9,0xe3,0xc7,0x9a,0x40,0xbe,0x6b,0xc0,0x38,0xae,0xc9,0xfd,0xc7,0x10,0x50,0x62,0xdc,0xde,0x7b,0x8c,0x25,0x4f,0xdd,0x9f,0xde,0x3a,0x0,0x4d,0x26,0x93,0xc9,0x64,0x32,0x99,0x2e,0x97,0x2c,0x2,0x6c,0x32,0x99,0x4c,0xa6,0x2b,0xae,0x92,0x47,0xea,0xdc,0xe3,0xe,0x3a,0xcf,0x71,0x4e,0x89,0x12,0x96,0x32,0x12,0xd4,0xd0,0x5e,0x33,0x8a,0xee,0xa6,0xae,0xa3,0x88,0x60,0xad,0xe4,0xc,0xd4,0x1e,0xb2,0xba,0x15,0x54,0x39,0x6e,0x11,0xf4,0x3e,0xa8,0xab,0xc8,0x73,0x54,0x74,0xb5,0x7f,0x1,0x40,0x43,0x4c,0x89,0xfb,0xfe,0x3a,0x7e,0xff,0x5,0x8d,0x63,0xb0,0x43,0x30,0xa6,0x84,0x7e,0xb1,0x83,0x52,0x32,0x62,0xd7,0x23,0x75,0x3d,0x5a,0xab,0x48,0x7d,0x8f,0x7e,0xb9,0x4b,0x90,0xd2,0x7,0xac,0xd7,0xeb,0xad,0xe7,0x1a,0x3d,0xbd,0x7f,0xe5,0x88,0x71,0xc9,0x19,0x21,0x4,0x8d,0x2,0x1f,0x39,0x66,0xe7,0xe0,0xbc,0x43,0xce,0x3,0xbc,0xf3,0xf0,0x8e,0xfa,0xd0,0xa,0xf7,0x23,0x2,0xc0,0x4b,0xa7,0x5f,0xc6,0x6f,0xff,0xdb,0xff,0x80,0xff,0xe5,0x9f,0xff,0x3e,0x3e,0xfd,0xc5,0x87,0x70,0x71,0x4,0x2d,0x15,0x3b,0xc0,0x3b,0x8f,0x61,0x1c,0xf0,0xed,0x27,0x5f,0xc0,0xbf,0xfa,0xe8,0x5f,0xe2,0xe2,0xfe,0xd1,0x68,0xf2,0x89,0xbd,0x1d,0x9c,0x3c,0xb6,0x83,0x18,0x13,0x9c,0xf,0x88,0x32,0xa6,0xc1,0xc0,0xd1,0xe9,0xfd,0x38,0x7a,0x3e,0xe3,0x98,0xf1,0x1f,0x3f,0xf9,0x57,0xf8,0xc3,0x4f,0x7f,0x1d,0x17,0xf6,0x57,0xec,0xee,0xa2,0xfb,0x54,0x4a,0x41,0x1e,0x7,0x34,0x38,0xfc,0xf1,0x67,0x1e,0xc2,0x8b,0x2f,0xbd,0x7c,0xc9,0x67,0xe0,0xb1,0x27,0x9e,0xc1,0xff,0xf9,0xef,0x3e,0x81,0xaf,0x3c,0xf2,0x4,0x62,0xd7,0x33,0xe4,0xed,0x75,0x91,0xf9,0xcc,0xf9,0x8b,0xf8,0xdd,0x3f,0xf9,0x22,0x9e,0x7c,0xea,0xd9,0xa3,0xd7,0x34,0x4,0xbc,0xf1,0xce,0xdb,0xf4,0xfa,0x95,0x32,0x42,0x46,0x29,0x4,0x26,0x3d,0xf8,0xce,0x37,0xe2,0x15,0x37,0x5d,0x7f,0xf4,0xd9,0x2b,0x15,0x9f,0xfa,0xdc,0x57,0xf1,0xbf,0xff,0xce,0x9f,0xe0,0xdb,0x4f,0x10,0xf8,0x1a,0x87,0x15,0x42,0x88,0x80,0xf3,0x7a,0x1d,0x5e,0xbe,0xb8,0xc6,0x7f,0xfe,0xc2,0xc3,0xf8,0xdf,0xfe,0xe5,0x1f,0xe0,0xdb,0x8f,0x3e,0xbe,0x35,0x8e,0x7a,0xdb,0x2b,0x6f,0xc2,0xbb,0xdf,0xf2,0x5a,0x0,0xe0,0x38,0x2b,0x75,0xe,0x52,0x84,0x3a,0x90,0xdb,0xf4,0x12,0xe7,0xff,0xdc,0xb,0xa7,0xf1,0xcf,0xfe,0xdd,0xc7,0xf1,0xcd,0xc7,0x9e,0x21,0x30,0xe6,0x9,0xe0,0xf9,0x10,0x38,0xa2,0x5e,0x70,0xfa,0xec,0x79,0xfc,0xfb,0x8f,0x7d,0x6,0xc3,0x70,0xd4,0x8d,0x79,0xfb,0xad,0x37,0x23,0x6,0x8a,0xfd,0x86,0x98,0xd0,0xf7,0x4b,0xee,0x4,0xa4,0xf7,0x8e,0x21,0xe2,0xe7,0x7f,0xea,0xed,0x5b,0x87,0x5c,0x6a,0x6d,0xf8,0xd4,0x67,0xbf,0x86,0x7f,0xf2,0x6f,0x3e,0x86,0x87,0xbe,0xfd,0x18,0x1a,0x9c,0x7e,0x16,0x6b,0xc9,0x1c,0x21,0xe,0x18,0xc6,0x8c,0x6f,0x3c,0xfa,0xc4,0xd6,0x78,0x3b,0x39,0x55,0xa1,0xc3,0x39,0x21,0x25,0x84,0x10,0x91,0xf3,0xc8,0xd7,0xd2,0xa1,0xeb,0x17,0x58,0xaf,0xf,0xe8,0x99,0x68,0xd,0xad,0x4e,0x6e,0x5c,0xf0,0x72,0xb0,0xb8,0x35,0x1b,0xd3,0x66,0xcf,0xf1,0x60,0x79,0x5d,0x93,0xc9,0x64,0x32,0x99,0x4c,0x26,0xd3,0xe5,0x91,0x1,0x40,0x93,0xc9,0x64,0x32,0x5d,0x71,0x49,0x3f,0x9b,0x8c,0x7b,0x54,0x6,0x7a,0xad,0x55,0xd4,0x42,0x2e,0xa6,0x10,0x13,0x3,0xb3,0x51,0xa1,0x46,0xc9,0x5,0x85,0xa1,0x81,0x3,0x1,0x4,0xef,0x3d,0x1,0x85,0xad,0x22,0xb0,0x10,0x53,0x87,0xd4,0x2f,0xf8,0xeb,0x83,0xae,0xc5,0xca,0x7b,0x38,0x38,0xb4,0xda,0x90,0xf3,0x88,0xae,0x5f,0xc0,0x2b,0xc8,0xe1,0xae,0xb2,0x18,0xd1,0x2f,0x76,0xd0,0x2f,0x96,0x14,0xad,0x4c,0x3d,0xd0,0x8,0xfa,0x44,0x76,0x5c,0xa5,0xb4,0x7d,0xcc,0xa2,0x54,0x5a,0x8c,0x75,0xce,0xa3,0xb0,0xd3,0x6e,0x1c,0xd6,0x68,0x97,0x20,0x6c,0x2,0x3e,0x62,0xea,0x1,0x7,0xc4,0xae,0xe7,0xc1,0x87,0x5,0x1c,0x1c,0xbe,0xf7,0xd8,0x13,0xf8,0x9f,0xff,0x8f,0xff,0x7,0x7f,0xf5,0x8d,0xc7,0xb1,0x5a,0x1d,0x20,0x75,0x3d,0x86,0xd5,0x3e,0x4a,0xce,0x28,0x85,0x62,0xa0,0x14,0xa1,0xe,0x78,0xf9,0xc2,0x1,0xbe,0xf5,0xdd,0xef,0x1f,0x79,0x8f,0x18,0x3,0xae,0x39,0x75,0x1c,0xb1,0xeb,0x50,0x39,0xfa,0x1b,0xb8,0xf,0x50,0xee,0xcb,0xa5,0xf4,0x99,0x2f,0x3e,0x84,0xcf,0x7d,0xe3,0x71,0x14,0x76,0x6a,0xe5,0x71,0xc4,0x38,0xc,0x28,0x79,0x44,0x88,0x91,0x5f,0xb3,0xe0,0xc2,0xfe,0xa,0x5f,0xfc,0xeb,0x87,0xb7,0xbe,0xc6,0xd3,0xcf,0xbd,0x88,0xff,0xeb,0xff,0xfd,0x24,0x5e,0x3c,0x73,0x1,0x0,0x78,0x24,0xa5,0x80,0x89,0x12,0x1c,0x8f,0x40,0x1c,0xac,0x33,0x3e,0xf1,0x99,0xaf,0x6d,0xed,0x16,0x7c,0xd5,0x4d,0xd7,0x72,0x67,0x24,0xf5,0xc8,0xa1,0xd1,0x73,0x15,0x63,0x87,0xeb,0xaf,0x3a,0x86,0xb7,0xdd,0xf3,0xfa,0x23,0xdf,0x53,0x6b,0xc5,0x5f,0x7c,0xe1,0x21,0xfc,0xc7,0x3f,0xff,0x2a,0x56,0xab,0x3,0xe4,0x3c,0xd2,0x7b,0x33,0x94,0xa2,0x65,0x5a,0x86,0xb0,0xc,0xa3,0x5e,0x38,0x73,0xe,0xbf,0xfd,0x7,0x7f,0x8e,0xef,0xfc,0xcd,0x13,0x47,0x5e,0xcf,0x39,0x87,0x77,0xdc,0x7b,0x17,0x76,0x17,0x74,0x1c,0xad,0x56,0x54,0x8e,0x90,0xcb,0x79,0x6d,0xd3,0xb9,0xf3,0x17,0xf1,0xaf,0x3f,0xfa,0x69,0x3c,0xf5,0xc2,0x59,0x7a,0x1e,0x67,0x6b,0xc5,0x12,0x53,0xaf,0x25,0x23,0xa6,0xe,0xdf,0x7f,0xf6,0x34,0xbe,0xff,0xe4,0xd3,0x47,0x5e,0x63,0x6f,0x67,0x81,0xeb,0x4e,0x1d,0xe3,0xc1,0x8c,0x82,0x52,0xb2,0x76,0x52,0xa2,0x35,0xdc,0x7a,0xe3,0x55,0x78,0xd5,0x2b,0x6e,0xda,0xfa,0x7c,0xfd,0xc5,0x17,0xbe,0x8e,0x8f,0x7d,0xf6,0x21,0x34,0x90,0x13,0xf5,0xe0,0xe2,0x79,0x94,0x71,0x64,0xf8,0x59,0x91,0xf3,0xa0,0x6e,0x40,0x1f,0xe2,0x76,0x17,0xa3,0x9b,0x3e,0x7f,0x12,0xf1,0xad,0xad,0xa2,0x5f,0xec,0x60,0x58,0xaf,0xd0,0x2f,0x96,0xb4,0xb8,0x1d,0xe4,0xfc,0x2a,0x83,0x7a,0xea,0xe2,0x44,0x6b,0xfa,0xd9,0x73,0xce,0x93,0xeb,0xaf,0xb5,0x19,0x84,0x26,0x28,0x6a,0x32,0x99,0x4c,0x26,0x93,0xc9,0x64,0xba,0x3c,0x32,0x0,0x68,0x32,0x99,0x4c,0xa6,0x2b,0xae,0x92,0xf3,0x4,0x99,0x1c,0x81,0x99,0x56,0xb,0xbc,0xf3,0xb3,0xf1,0x4,0x82,0x77,0xb4,0x64,0x4a,0x7d,0x78,0xd2,0x8b,0x47,0x31,0x4d,0x5a,0x16,0x2d,0x3c,0xe6,0x71,0xc9,0xba,0x30,0x27,0x51,0xc5,0xc2,0x91,0x43,0x7a,0x8d,0x10,0x13,0xad,0x95,0x7a,0x7,0x1f,0x68,0x31,0x56,0x96,0x65,0x65,0xc1,0xb5,0xeb,0x17,0xec,0x42,0x74,0xe8,0xba,0x5,0x6a,0xad,0xe8,0x17,0x4b,0x82,0x55,0x8e,0x0,0x50,0xbf,0xdc,0xc5,0x62,0xb9,0x8b,0xbd,0xbd,0xdd,0xad,0x6f,0xbf,0x5a,0x8f,0x48,0x5d,0xa7,0xee,0xb4,0x61,0x75,0xa0,0xd1,0xc9,0x3a,0x73,0xf5,0x4d,0x87,0x4b,0xf0,0x31,0x8f,0x6b,0x1e,0x3c,0xa9,0xda,0x59,0xf8,0xe8,0x63,0x4f,0xe0,0x9f,0xfc,0xdf,0x1f,0xc5,0xd9,0x55,0x21,0x28,0x98,0x3a,0xee,0x48,0x24,0xf7,0x58,0xe2,0x98,0x74,0xc9,0xe4,0xe2,0x2a,0x39,0xe3,0x89,0xa7,0x5f,0xdc,0xf2,0x1e,0xe,0x7d,0x97,0x74,0x94,0xa1,0x9,0x74,0xe3,0x45,0xd7,0x98,0x28,0xde,0xbc,0x4d,0xcf,0xbe,0x74,0x5e,0x57,0x94,0xb,0x43,0x2a,0x80,0x80,0x4d,0x1e,0x6,0x75,0x85,0x1,0xc0,0xa3,0x4f,0x3c,0x8b,0xbc,0xe5,0x1c,0x5f,0x7c,0xe9,0xc,0xc6,0xea,0xd0,0xd0,0x74,0xb9,0x37,0xc6,0x84,0x71,0x58,0xd3,0xeb,0xe6,0x91,0x7a,0x1d,0x6b,0xc5,0x63,0xcf,0x9e,0xc1,0xc5,0xfd,0x83,0x23,0xaf,0x71,0xe2,0xf8,0xae,0xe,0xbf,0xd0,0x7d,0x73,0xec,0x64,0x2c,0x78,0xd3,0x9d,0xaf,0xc2,0xee,0xce,0x51,0xe7,0xdb,0xe3,0x3f,0x78,0x16,0xff,0xe9,0x2f,0xbf,0xe,0x8,0x34,0x6e,0x80,0xf7,0x11,0x7d,0xbf,0x83,0xcc,0xae,0x54,0x71,0xb6,0xe5,0x3c,0x12,0x80,0x4d,0x1d,0x2e,0x1e,0xac,0xf0,0x7b,0x1f,0xff,0x1c,0xce,0x9e,0xbf,0x78,0xe4,0x35,0x4f,0x9d,0x38,0x8e,0xbb,0x6e,0xbb,0x11,0xd4,0x67,0xd9,0x90,0x62,0x37,0x45,0xdc,0x3d,0x1,0xe4,0xc3,0x7a,0xea,0xd9,0x17,0xf0,0xec,0xe9,0xb,0xe4,0x34,0xe5,0xe7,0x52,0x96,0x71,0x15,0xc2,0xf2,0xa,0x76,0x6b,0xc0,0x63,0x4f,0x6e,0x71,0x41,0xc6,0x88,0x93,0xc7,0x76,0x18,0xfa,0x39,0xbd,0x86,0xf2,0x7a,0xf7,0xdd,0x7d,0xc7,0xd6,0xe,0xc8,0x67,0x9e,0x7b,0x11,0x1f,0xfb,0xcb,0xaf,0xc3,0x31,0x4,0x97,0x8e,0xcd,0xd6,0x2a,0x3b,0x2a,0x27,0x37,0xde,0xb8,0x5e,0xd1,0xfa,0xf5,0x25,0x9c,0x78,0xfa,0x19,0xe6,0xcf,0xaa,0x3,0x70,0xb0,0x7f,0x1,0x8b,0xe5,0xe,0x8f,0xed,0x14,0x74,0xec,0xa8,0x15,0x90,0x5f,0xf2,0x88,0x9c,0x7,0x6,0xdd,0x45,0x3b,0x40,0xe9,0x71,0x73,0x0,0x9c,0x5e,0x97,0x56,0x46,0xfb,0x61,0x69,0x32,0x99,0x4c,0x26,0x93,0xc9,0x74,0x99,0x64,0x0,0xd0,0x64,0x32,0x99,0x4c,0x3f,0x56,0xc9,0x9a,0x28,0xc0,0x63,0x1f,0x6e,0x8a,0xf5,0xb6,0x56,0x51,0xf2,0x88,0xda,0x2a,0xc6,0x71,0xad,0xcb,0xb3,0x14,0x33,0x94,0xae,0xb3,0x6,0x17,0x22,0xb6,0x3,0x2b,0x47,0x3,0x11,0xeb,0x95,0xba,0xb1,0x9c,0x3,0x86,0xf5,0x1,0x8d,0x12,0xd4,0x86,0x5a,0x2a,0x7f,0x1d,0x1,0x90,0x3c,0xe,0x4,0x45,0x1c,0x39,0x9b,0x62,0x4c,0x9c,0x1e,0x96,0xbf,0xa7,0xc8,0x65,0xd7,0x2d,0x34,0x2e,0xeb,0x1d,0x70,0x7c,0x6f,0xb9,0xf5,0xfc,0xce,0x5f,0x3c,0x40,0x4c,0x3d,0xba,0x9e,0x3a,0xde,0x22,0xaf,0xa5,0xb6,0x4a,0xe7,0x78,0x58,0xe4,0x80,0x2,0x39,0xfe,0xbc,0x27,0xf8,0x19,0x13,0x86,0x5c,0xf1,0xcf,0xff,0xfd,0x27,0x91,0x41,0xf1,0xcc,0x18,0x13,0x52,0xd7,0x23,0xa5,0xe,0x31,0xd1,0xf8,0x5,0xad,0xaf,0x3a,0x85,0xa5,0x8b,0xe5,0x2e,0x86,0x7c,0x89,0x75,0x64,0x59,0xf1,0x75,0x50,0xc7,0x9a,0x5c,0xa0,0x56,0xeb,0x25,0xdd,0x57,0xb5,0x8c,0xa,0x8c,0xa4,0xf7,0x4d,0xfa,0x19,0x75,0x0,0x83,0xaf,0xdd,0xcb,0xe7,0xf,0x90,0xf3,0x51,0x0,0xe8,0x43,0x82,0x63,0x8,0x27,0x8b,0xcc,0xd3,0xfb,0xb5,0x69,0x4d,0xb6,0x64,0x5c,0xbc,0xb8,0x8f,0x33,0x2f,0x9f,0x3d,0xf2,0x1a,0x7d,0x4f,0xe7,0xee,0xbd,0x47,0x19,0xe9,0x79,0x20,0xc8,0x4,0xbc,0xf1,0xb5,0xb7,0x1e,0xf9,0xfa,0x52,0x2b,0xfe,0xe4,0x2f,0xbf,0xca,0xa0,0x8f,0x9e,0x2b,0xe7,0x69,0xb1,0x77,0x18,0x56,0x7c,0x5c,0x14,0xdb,0x95,0x73,0x91,0x8,0x6a,0x4a,0x3d,0x5e,0x3c,0x7b,0x1,0x9f,0xfd,0xd2,0x37,0x8f,0x80,0x66,0xe7,0x80,0x37,0xbd,0xee,0x56,0x1a,0xe1,0x88,0x9,0xb1,0xeb,0xd5,0x15,0x77,0x29,0x51,0xfc,0x3d,0xf3,0xfd,0xcd,0xa,0xf1,0x86,0xf5,0xc1,0xf4,0x4c,0x79,0x4f,0x4e,0xbc,0x3c,0xe2,0xd9,0x17,0xcf,0x1e,0x89,0x20,0x3b,0xe7,0x70,0x6c,0x77,0x81,0x98,0x3a,0x85,0xd4,0xf4,0x98,0x7a,0x78,0xef,0xf1,0xea,0x57,0xdd,0x78,0xf4,0xde,0xb5,0x86,0x3f,0xfb,0xfc,0x43,0x58,0x8f,0x4,0xe7,0x4a,0xce,0x3a,0x7a,0x13,0x62,0xe2,0x85,0x6b,0x72,0xe7,0x6,0x1f,0xe0,0xbc,0xd3,0x68,0xf3,0x96,0x93,0x98,0xdc,0xb3,0xad,0xb1,0x7b,0xd2,0x21,0x72,0x9f,0x66,0xc9,0x23,0x75,0x68,0xb2,0x9b,0x32,0x75,0x3d,0x7f,0xc6,0x39,0xd6,0xef,0x83,0xc2,0x7d,0xb9,0x56,0xf4,0x99,0x6f,0xa,0x31,0x1,0xeb,0x0,0x34,0x99,0x4c,0x26,0x93,0xc9,0x64,0xba,0x5c,0x32,0x0,0x68,0x32,0x99,0x4c,0xa6,0x1f,0x8b,0x4,0xae,0xb4,0xda,0x14,0x98,0x10,0x90,0x68,0xe4,0xe6,0x8a,0x14,0xa9,0x8d,0xc,0x79,0x1c,0xbb,0x3,0x5b,0xad,0x48,0xa9,0x47,0x3,0x75,0x1,0x52,0x5f,0x5d,0xdd,0xa,0xb,0x1a,0xf7,0x5,0x52,0x6f,0x5f,0xd3,0xbe,0x31,0xef,0x3,0x8d,0x45,0x74,0x3d,0x62,0xd7,0xb1,0x83,0x90,0x9c,0x76,0x12,0xe5,0x15,0x0,0x44,0xb1,0xda,0xe,0x21,0x4,0x84,0x18,0x79,0xbc,0x83,0xe0,0x14,0xf5,0xce,0x15,0x5c,0x77,0xd5,0x71,0xec,0xed,0x6e,0x77,0x0,0x3e,0xfd,0xe2,0x59,0x85,0x19,0x79,0x18,0x90,0x87,0x35,0xbb,0x16,0xf3,0x4,0xe1,0x66,0x72,0xce,0x93,0xfb,0x8f,0x63,0xb9,0x2,0x96,0x1a,0x3c,0xe0,0x13,0xa4,0xeb,0xe,0x12,0x8b,0x2e,0x19,0xc1,0x47,0xee,0x4a,0x24,0x67,0x24,0xb8,0xc3,0x6f,0x58,0x1f,0x20,0x5c,0x72,0x48,0xa1,0x29,0x84,0x13,0xd7,0x65,0x8,0x11,0x25,0x8f,0x18,0x86,0x35,0x2e,0xe5,0x0,0xd4,0xfb,0xd0,0x1a,0xf2,0x48,0xd1,0xdf,0x71,0x58,0xc3,0x39,0xa0,0xd4,0x8c,0x3c,0x92,0xc3,0xab,0xb6,0x86,0xe6,0x23,0xca,0x36,0xf7,0x58,0x6b,0x18,0x56,0x7,0xd4,0x83,0x8,0x1a,0x62,0x19,0x87,0x35,0xc7,0x61,0x69,0x54,0x85,0x22,0xc1,0xa4,0xf5,0x98,0x8f,0xfe,0x1,0xc6,0x39,0x38,0x54,0xee,0x95,0xe3,0x7b,0x5b,0x1b,0x4e,0x1d,0xdb,0xdd,0x58,0xd9,0x15,0xbd,0xf8,0xd2,0x19,0x3c,0xfa,0x83,0x17,0xb9,0x53,0x91,0xfb,0x20,0x67,0xe,0x52,0xb4,0x46,0xce,0xcb,0x3c,0xf5,0x9,0xd6,0x5a,0x28,0x26,0x9c,0x7,0xa4,0xae,0xc7,0x97,0x1f,0x7e,0x1c,0x7,0x7,0x47,0xdd,0x88,0xd7,0x5f,0x73,0x15,0x82,0x3,0x77,0x4b,0x9e,0xe7,0xe7,0x18,0x5b,0x7b,0x3,0xa7,0xeb,0x38,0x39,0x1d,0xbd,0xf7,0xda,0x8b,0x59,0x6b,0xe1,0x48,0x34,0x3d,0xbb,0xc1,0x7,0xec,0xaf,0x56,0x5b,0x5f,0xa3,0xef,0xc8,0xe5,0xe9,0xe0,0x90,0x52,0xaf,0x20,0xed,0xf8,0x4e,0x87,0x63,0x7b,0x7b,0x47,0xbe,0xfe,0xe2,0xc5,0x3,0x7c,0xef,0xe9,0xd3,0xa,0xba,0x1b,0x9a,0x46,0xc7,0xe9,0xd9,0x69,0xc8,0x3,0x3b,0x4f,0x9,0x27,0x5e,0xba,0x87,0x8f,0x3f,0x77,0xd,0xd,0x21,0x25,0x8c,0x1c,0xe3,0x76,0x3e,0x50,0xa4,0x74,0xdf,0x15,0x60,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0xb8,0x64,0x8c,0xeb,0x15,0x5d,0xb,0xfe,0x2c,0x85,0x10,0xf4,0x63,0x2a,0x3d,0x87,0x32,0xe6,0xd3,0xf4,0x33,0x2c,0x3f,0xf,0x70,0xc9,0x67,0xd0,0x64,0x32,0x99,0x4c,0x26,0x93,0xc9,0xf4,0x5f,0x2f,0x3,0x80,0x26,0x93,0xc9,0x64,0xba,0xe2,0x9a,0x43,0x5,0x71,0xb9,0x51,0xec,0x50,0xa2,0x8f,0x5e,0xbb,0xc0,0xc8,0xd,0x44,0xb,0xbc,0xe2,0xe2,0xab,0xb5,0x62,0x5c,0xaf,0x36,0xe2,0xaf,0xdb,0x60,0x81,0x73,0xa0,0xe,0x33,0x8e,0x76,0xfa,0x10,0xc9,0xe1,0xe4,0x1c,0x52,0xbf,0x0,0xb9,0xcd,0x32,0x16,0xcb,0x3d,0xc4,0xd4,0xb1,0xf3,0xcd,0xd3,0xa8,0x85,0xf7,0xd4,0xf9,0x17,0x2,0x6a,0xcd,0xda,0x1b,0x38,0xae,0x57,0x28,0xa5,0x20,0x75,0xb,0xea,0xe9,0x83,0xc3,0xeb,0x5e,0x75,0x1d,0x62,0x3c,0xea,0x98,0x1b,0x73,0xc6,0x33,0x2f,0x9c,0x45,0x4c,0x1d,0xad,0x7,0xf7,0xb,0xa4,0x7e,0xc1,0x31,0xc8,0x71,0x3,0x72,0x4d,0x22,0x87,0xa1,0x74,0x12,0xa6,0xae,0xa7,0x18,0x26,0x30,0x1,0xc8,0x10,0x8,0x95,0x54,0x5e,0xfe,0x65,0xb7,0xa4,0xb8,0xa9,0x76,0x17,0x3d,0xee,0xba,0xf5,0x5a,0xfc,0xe6,0x2f,0xbe,0x7,0x1f,0xfa,0xa9,0xb7,0x6d,0xff,0x3,0x80,0xf,0x28,0x23,0xc1,0xbb,0x52,0x32,0x81,0x31,0x34,0x74,0xfd,0x82,0x1c,0x81,0x97,0x80,0x57,0xd2,0x19,0xe8,0x9d,0x67,0x7,0x1d,0x75,0xdf,0x49,0x97,0x5d,0xce,0x23,0xf5,0xf1,0x79,0x8e,0x69,0x6f,0x7b,0x8d,0xc6,0xe,0x2f,0x7,0xd4,0x52,0xb0,0x5e,0xed,0x3,0x8d,0x96,0x9d,0x1b,0x1a,0xc6,0x61,0xd0,0x8,0xf8,0xa5,0x9c,0x60,0xce,0x7b,0x86,0x8d,0x23,0x7c,0xf0,0x1a,0xd9,0xbd,0xfa,0xc4,0x2e,0xba,0x2e,0x1e,0xf9,0xfa,0x27,0x9e,0x7a,0xe,0xa5,0x54,0x8c,0xc3,0x80,0x9c,0xa9,0x8b,0xb1,0x94,0xa2,0xe0,0xcf,0x39,0x87,0x71,0x1c,0xe8,0x9a,0x86,0x88,0x71,0xbd,0x82,0x77,0x5e,0x7b,0x1,0xd7,0xab,0x3,0x3c,0xff,0xd2,0x69,0x3c,0xbf,0x65,0xd8,0xe4,0xd8,0xde,0xe,0x4e,0x9d,0x38,0x4e,0xd7,0x21,0x44,0x82,0x9a,0xa9,0xa3,0x71,0x9b,0xad,0x22,0xf8,0xe8,0x20,0xb1,0x5d,0xea,0xde,0x73,0xec,0xbe,0x9c,0xc3,0xdd,0xc2,0xce,0xba,0xad,0xb7,0xa3,0x35,0xc8,0xe5,0x19,0xc7,0x35,0x47,0xe8,0x1d,0xae,0x39,0x75,0x62,0xeb,0x35,0x78,0xfe,0xc5,0xd3,0x78,0xf9,0xfc,0x45,0x2c,0x77,0x8f,0xe9,0x5a,0xb0,0xf3,0xf4,0x2c,0x1d,0x5c,0x3c,0xaf,0xe3,0x1d,0xf2,0x99,0x2c,0xfa,0x8c,0x6e,0x3f,0x8f,0xcc,0x51,0xf6,0xe1,0x60,0x5f,0x3b,0x33,0xc5,0xed,0xe7,0xe0,0x18,0xc,0xae,0xe9,0xa3,0xd9,0x1a,0xc6,0x91,0x86,0x6d,0x1a,0x7f,0x16,0x9d,0x38,0x25,0xf9,0x73,0x2c,0x4b,0xd4,0x68,0x40,0x2d,0x15,0x2e,0x74,0xf6,0xc3,0xd2,0x64,0x32,0x99,0x4c,0x26,0x93,0xe9,0x32,0x29,0xda,0x25,0x30,0x99,0x4c,0x26,0xd3,0x95,0x16,0xc1,0xf,0x92,0xb8,0xf2,0xe8,0xef,0xc9,0xe1,0x7,0xe9,0x50,0xd3,0x78,0x21,0xd,0x44,0x74,0x8b,0x1d,0x86,0x24,0x5,0xa9,0xeb,0x9,0xce,0x95,0x2,0xe7,0x3a,0x75,0xb1,0x1d,0x96,0x38,0xf9,0x62,0xea,0xb0,0xda,0xbf,0xa0,0x80,0x47,0x16,0x7f,0x87,0xf3,0x67,0xe1,0x12,0x39,0xc1,0xfa,0x5,0x75,0x97,0xf9,0xbe,0x57,0x97,0xa0,0x80,0x3f,0xe9,0x59,0xf3,0x21,0x72,0xcc,0xb1,0x28,0x4,0x7b,0xe3,0xeb,0xef,0xd8,0xfa,0xde,0x67,0xcf,0x5d,0xc4,0xb,0x67,0xf7,0xe9,0x9c,0x43,0x20,0xd0,0x5,0x60,0xb9,0x7b,0x9c,0xbb,0xe6,0xb6,0x50,0x9d,0xc6,0xff,0x87,0x47,0x28,0xf2,0x38,0x60,0x75,0xb0,0x4f,0xdd,0x83,0x32,0x88,0xc2,0x8b,0xbb,0x31,0x26,0x3d,0x9f,0xc5,0xa2,0xc7,0xad,0x37,0x9c,0xc4,0xbd,0xaf,0xbf,0xd,0xb7,0xdf,0x7a,0x33,0x8e,0xed,0xed,0xfc,0xd0,0x18,0x6a,0x2d,0x99,0xd7,0x73,0x81,0x3c,0xae,0x11,0x23,0x1,0xd0,0x5a,0x69,0x48,0xe4,0x92,0xf1,0x4b,0x6,0x38,0xc3,0xfa,0x0,0x21,0x46,0xac,0xf6,0x2f,0xc0,0xfb,0x80,0xfd,0xb,0xe7,0x10,0xbb,0x4e,0x5d,0x8d,0x7,0xfb,0xe7,0xb1,0xe8,0x4e,0x6e,0xbf,0x2f,0xad,0x61,0x58,0xaf,0x28,0x3a,0x3c,0x92,0xf3,0xcf,0xf9,0x80,0xfd,0x8b,0xe7,0xd1,0x2f,0x96,0x7a,0x7c,0x97,0xba,0xa7,0xf2,0xfb,0xf4,0x52,0x15,0x7,0x17,0x2f,0x10,0xbc,0x2,0x70,0xea,0xc4,0xde,0x56,0xf0,0xf6,0xc2,0x99,0xf3,0x14,0xf1,0xad,0x5,0xbe,0x11,0x30,0x4c,0x29,0x21,0x8f,0x75,0x1a,0x1e,0x69,0x55,0xc6,0xa2,0x39,0x12,0xdb,0xd0,0x1a,0xad,0x56,0x4b,0x5c,0xf9,0x85,0x97,0xce,0xe0,0xd6,0x5b,0x36,0xe3,0xb5,0x3e,0x78,0x74,0xbe,0x52,0x34,0x5d,0xc6,0x40,0x6a,0x1,0xb8,0xdf,0xf0,0xe8,0xe9,0x57,0xed,0xd9,0xa3,0x2e,0xc8,0xac,0xf1,0xe9,0x52,0xc8,0x9,0xe8,0xc7,0x1,0x51,0x60,0xaf,0xf3,0xfc,0x60,0x6c,0xbe,0x56,0xad,0x99,0xd7,0xa1,0x47,0x7e,0xd6,0x81,0x10,0x3b,0xf4,0x51,0xf6,0xaf,0x37,0xf5,0xdc,0x4b,0xe4,0x46,0xdd,0x3f,0x7f,0x56,0xe1,0x1b,0x39,0x5f,0x3,0x47,0xc8,0x47,0x3d,0xae,0xcc,0x30,0xb9,0xa9,0x3b,0xef,0xd0,0x63,0x0,0x72,0xef,0xb6,0x5a,0xe0,0x63,0xc2,0x30,0x90,0x6b,0x75,0x58,0xf3,0x32,0x34,0xc7,0xe4,0x5,0xf6,0xd7,0x5a,0xd1,0x75,0xbd,0xba,0x76,0xf3,0xb8,0x56,0x18,0xef,0xb9,0x7,0xb4,0xd6,0xa9,0xef,0x12,0xe,0xa8,0xe3,0xca,0x7e,0x58,0x9a,0x4c,0x26,0x93,0xc9,0x64,0x32,0x5d,0x26,0x19,0x0,0x34,0x99,0x4c,0x26,0xd3,0x15,0x17,0xad,0x7e,0x72,0xef,0x17,0x2f,0xa7,0xa,0xec,0xf3,0xc,0x25,0x5a,0x3,0x62,0x4a,0x3a,0x4c,0x10,0x13,0xc3,0x3,0x8e,0xe2,0x4a,0x87,0x9a,0xf,0x81,0xbe,0xae,0x6d,0x8b,0x2a,0x3a,0x60,0x36,0x2a,0x12,0x53,0x7,0xb8,0x11,0xeb,0xd5,0x3e,0x42,0x88,0xb4,0x52,0x1a,0x29,0xfa,0xd8,0x2f,0x76,0x8,0xee,0xa5,0x84,0x5a,0x2a,0x8a,0xcb,0x58,0x2c,0x77,0x31,0x8e,0xeb,0xc9,0x89,0xd6,0x1a,0x52,0xea,0x78,0x9c,0x84,0xa2,0xb0,0x77,0xbe,0xea,0x6,0xdc,0x7c,0xc3,0xb5,0x5b,0xcf,0xf3,0xbb,0x8f,0x3d,0x89,0x83,0x83,0x3,0x3a,0xce,0xe6,0x91,0xba,0x1e,0x25,0x67,0x1e,0xbb,0x20,0x78,0x72,0x54,0x8d,0xaf,0x45,0x45,0xad,0x34,0x92,0x41,0x4b,0xbf,0x7,0x58,0xec,0xec,0xd1,0x82,0x70,0xad,0x88,0x1d,0xb9,0xa,0xaf,0x3b,0xb1,0x83,0x77,0xbc,0xf9,0xb5,0xb8,0xfb,0xb5,0xb7,0xe2,0xc4,0x89,0x63,0x8,0x87,0x62,0xc5,0xb5,0xd6,0xad,0x51,0xe3,0x5a,0xb,0xa,0xf7,0xc0,0x85,0x18,0x71,0xf1,0xc2,0x59,0x2,0xa0,0xeb,0x35,0x82,0x44,0x89,0xb7,0x1d,0x5d,0x2b,0xa8,0xa5,0xa0,0x5f,0xd2,0xda,0x6b,0x48,0x1d,0xf2,0x38,0xd0,0x20,0xcb,0x38,0xc2,0xf9,0x80,0x71,0xa4,0xc8,0x2c,0x5a,0xdd,0xea,0x72,0xd4,0xae,0x45,0x80,0xd6,0x6b,0xc7,0x11,0xa1,0x64,0x84,0x10,0x30,0xe,0x3,0xad,0x30,0x77,0xb,0xb4,0x5a,0x8,0xf4,0x5d,0xe2,0xde,0x16,0x1e,0x3c,0x19,0xd6,0x7,0xd4,0x99,0x58,0x32,0xe2,0x25,0x22,0xcf,0xeb,0xf5,0xc0,0x30,0xca,0xa1,0xb6,0xc2,0xc7,0xc7,0x30,0xda,0x7b,0x82,0xbd,0xdc,0x9f,0xd7,0xf8,0xeb,0xa,0x2f,0x52,0x93,0xeb,0x93,0x7a,0x23,0xd7,0x43,0xde,0x72,0x24,0xe,0x8b,0x2e,0x30,0xdc,0xf2,0x9a,0xaf,0xa0,0x75,0xe2,0xed,0x11,0xe8,0xff,0x8f,0xbd,0x37,0x7b,0xb2,0xe5,0x3a,0xaf,0xfc,0xd6,0x9e,0x32,0xf3,0x9c,0xaa,0xba,0x17,0xf7,0x2,0x20,0x0,0x8a,0xa0,0x8,0x8e,0x10,0x69,0xce,0xe2,0x20,0x99,0x82,0xcc,0x16,0x43,0x41,0xb9,0x49,0x59,0x76,0x87,0xa3,0xa3,0x15,0x72,0x33,0xa2,0xdd,0x2f,0xed,0x7e,0x72,0xd8,0x7e,0xef,0x3f,0xc0,0xe1,0xb0,0xdf,0xdc,0x6e,0x87,0x1d,0xdd,0x76,0xb8,0x43,0xe,0xdb,0x6a,0x49,0xec,0x70,0xb3,0x25,0x9b,0x14,0x45,0xd3,0x14,0xc5,0x41,0x9c,0x40,0x12,0x0,0x31,0x90,0x20,0x0,0x62,0xb8,0x43,0x55,0x9d,0x93,0xc3,0x9e,0xfc,0xf0,0x7d,0x7b,0x67,0x9e,0xaa,0x53,0x20,0x25,0x5e,0xdd,0x36,0x11,0xdf,0x8f,0xf,0xbc,0xb7,0xea,0x9c,0x3c,0x99,0x3b,0x77,0xd6,0x65,0x2d,0xae,0xf5,0xad,0x52,0x0,0xa3,0x78,0xde,0xe4,0xd8,0x6f,0x49,0x78,0x34,0x96,0xda,0xa2,0xad,0x3,0x2c,0xed,0xc5,0xe0,0xc7,0xfd,0xf7,0x22,0x25,0x8a,0xec,0x5a,0x6a,0xee,0xa5,0xf8,0x74,0x44,0xd3,0xb4,0xfb,0x74,0x47,0x6c,0x7b,0x2a,0x69,0x31,0xce,0x41,0x2b,0xcd,0xee,0xbc,0x85,0xf8,0x9e,0x13,0x3d,0x1b,0xec,0xe,0x2c,0x91,0xe8,0x7d,0x42,0x72,0x71,0x27,0x46,0x3f,0xd5,0x99,0x7f,0x31,0x6,0x34,0xed,0xa,0xa7,0xc7,0xd7,0x30,0xf4,0x1b,0xb4,0xdd,0x8a,0xca,0x68,0x58,0x5c,0x2f,0x42,0x3e,0x4a,0xf9,0x4b,0x39,0x56,0x8,0xf3,0x9c,0xc1,0xea,0xfa,0x84,0x8c,0x0,0x14,0x4,0x41,0x10,0x4,0x41,0xb8,0x85,0x88,0x0,0x28,0x8,0x82,0x20,0xdc,0xfe,0x7f,0x7c,0xd8,0x61,0x96,0x53,0x64,0x71,0x8c,0x74,0x88,0x14,0x23,0xb2,0xe2,0x56,0x5e,0x9e,0xe9,0x56,0xc4,0x89,0x14,0x3,0x95,0xa,0xe4,0x8c,0x10,0x2,0xbb,0xf8,0x48,0x84,0xdb,0x69,0x15,0xde,0x21,0x43,0xb1,0xd8,0x50,0x4,0x27,0x0,0x24,0x70,0xb1,0x2b,0x70,0x1a,0xfb,0x59,0x67,0xe0,0xb9,0x7b,0x30,0x40,0xb7,0x3a,0x40,0xbf,0x39,0x81,0x6d,0x1a,0x2e,0x2b,0xa0,0xa2,0x8a,0x8c,0xcc,0xe2,0x98,0x81,0xd6,0xa,0xf,0xbd,0xef,0xad,0x70,0xee,0xfc,0x3f,0xa7,0x3e,0x4,0xfc,0xf9,0x37,0x1e,0x25,0xa1,0x91,0x9d,0x55,0x24,0x7c,0x2,0x4a,0x2b,0xa4,0x90,0xa0,0x97,0xe5,0x1b,0x5,0x8e,0x60,0x22,0xd3,0x2c,0xb4,0xc4,0x31,0x55,0x28,0x85,0xa1,0xdf,0x54,0xa1,0xe6,0xbe,0xab,0x87,0xf8,0xe8,0xaf,0xbe,0xf,0xf,0xbe,0xf1,0xe7,0xd1,0x36,0xbb,0xc7,0x49,0x29,0xe1,0xa5,0xeb,0xc7,0x78,0xf8,0x91,0x27,0x70,0xfd,0xc6,0xd,0xfc,0xd6,0x6f,0x7c,0xf8,0xdc,0xc7,0xc4,0x40,0xf3,0xfb,0xe8,0xcf,0xe4,0x70,0x9b,0xc6,0x1,0xa,0x40,0xd4,0xfa,0x82,0x78,0x32,0x50,0xe6,0xb4,0x95,0xb6,0x61,0x63,0x2c,0x2,0x50,0x85,0xc9,0x94,0x22,0xba,0xf5,0x21,0xc2,0x34,0x62,0xec,0x2f,0x88,0x11,0x27,0xba,0x5f,0xd3,0xd8,0xf3,0x8c,0x38,0xd4,0x58,0xb4,0x75,0xd,0xba,0xf5,0x1,0x89,0x60,0xb5,0xa1,0x76,0x7f,0xbc,0x3b,0x4,0x5f,0x5,0xda,0x94,0x68,0x9e,0xdc,0xd0,0x6f,0xf7,0xef,0x39,0xa3,0xeb,0x3c,0xc8,0x10,0xfc,0xec,0x20,0x4,0xb5,0xd7,0xc6,0x10,0x90,0xb4,0x42,0xe8,0xc7,0x1a,0x65,0xd,0xc1,0xa3,0x69,0x57,0x54,0x74,0xd2,0xb4,0x40,0xce,0x30,0x48,0x7b,0x76,0x59,0xc6,0xb6,0xef,0x11,0x53,0xc4,0x78,0xf3,0x1a,0xda,0xd5,0x1,0x94,0x8e,0xd0,0x39,0xec,0x75,0x0,0x2,0xe4,0x2,0x44,0xa6,0x59,0x83,0x7e,0x1a,0x29,0x7e,0x9c,0xe9,0xcf,0xab,0xf5,0x61,0x5d,0x8b,0x12,0x85,0xde,0x7f,0x2b,0x68,0x7e,0x1e,0x8a,0x43,0x31,0x5,0xa4,0xa4,0x71,0x7a,0x72,0x73,0x11,0x9f,0xde,0xbd,0xe7,0x89,0xdb,0x7e,0xa7,0x38,0x51,0x11,0xe,0xdf,0xcf,0x9c,0x12,0xa6,0xb1,0x87,0xb5,0x4d,0x6d,0xcd,0xe,0x7e,0xa2,0x79,0x9b,0x69,0x5f,0x5b,0xb5,0xc2,0xd8,0x6f,0x59,0x48,0xe,0xdc,0x2,0x4c,0xce,0xbe,0xa6,0xa1,0x98,0x7b,0x4c,0x11,0x2a,0x1b,0x98,0x4c,0xad,0xbe,0xda,0x18,0xe4,0x98,0xd9,0x4d,0x19,0x1,0x95,0x79,0x6,0x28,0x45,0xee,0x93,0x8a,0x34,0x3b,0x32,0x65,0x36,0xc1,0x1a,0xf9,0x61,0x29,0x8,0x82,0x20,0x8,0x82,0x70,0xab,0x7e,0x7,0x93,0x25,0x10,0x4,0x41,0x10,0x6e,0x37,0x65,0x66,0x5f,0x69,0x41,0x4d,0x29,0xc3,0x58,0x3,0xcd,0x8e,0xbe,0x2a,0xb6,0xb1,0x7b,0x2a,0x6,0xf,0xd7,0x52,0xeb,0x6e,0xca,0x89,0xa2,0x9c,0x2c,0x92,0x51,0x4,0x78,0x7f,0xe1,0x42,0x69,0xef,0xd5,0x4a,0xd7,0x59,0x6b,0x9a,0xa3,0x86,0xa5,0xed,0xd6,0x18,0x9a,0xab,0x47,0x31,0x4b,0x6a,0x20,0x56,0x5a,0x61,0xd8,0x9e,0xc2,0x35,0x2d,0xc5,0x12,0xad,0x46,0x2,0x45,0x18,0x63,0xf0,0xb0,0x4d,0x3,0x5,0x85,0xf7,0x3e,0xf8,0x5a,0xbc,0xe5,0xd,0xaf,0xdd,0x7b,0x8d,0xdf,0x7f,0xfa,0x39,0x3c,0xfd,0xfc,0x4d,0xf8,0x40,0x73,0xd2,0xca,0xbc,0xb6,0x12,0x33,0x86,0x4a,0x48,0x21,0xec,0x7d,0x2f,0x35,0xff,0x5a,0x4,0x76,0x46,0x95,0xb2,0xe,0x2a,0xf5,0xd0,0xf8,0x9b,0xbf,0xfa,0x1e,0xfc,0xda,0x43,0x1f,0xc4,0xaa,0x6b,0x77,0xde,0xe7,0xbd,0xc7,0x53,0x3f,0x7c,0x1e,0x9f,0xfd,0xe2,0x37,0xf1,0xed,0x27,0x9e,0x41,0x88,0x11,0xef,0x79,0xcb,0xfe,0xf3,0x2b,0xeb,0xa1,0xb8,0x75,0x99,0xae,0x8b,0xae,0xd7,0x99,0xf6,0x42,0xf3,0x15,0x15,0x93,0x70,0x3b,0x6e,0xd3,0x60,0xe8,0xb7,0x18,0xb6,0xa7,0x68,0xda,0x15,0xc6,0x71,0x40,0xce,0x19,0x9b,0xe3,0x1b,0x74,0x9d,0x4e,0xef,0x3f,0x4e,0x26,0xc1,0x30,0xa5,0x58,0xe7,0xfd,0x19,0x8e,0xcb,0x2a,0x0,0x63,0xbf,0x85,0x73,0x2d,0x52,0x9e,0xe3,0xda,0xe7,0x21,0x1,0x19,0xb9,0xcc,0x8d,0xcb,0x18,0xb6,0x1b,0x6c,0xfa,0x61,0x4f,0x58,0x16,0xb8,0xf3,0xca,0x65,0x34,0xdd,0xa,0xd3,0x40,0x4d,0xbb,0xae,0xe9,0xe0,0xa7,0x1,0xce,0xb5,0xe4,0x4,0x65,0x47,0x9a,0xb1,0x8e,0x4b,0x4d,0xa8,0x58,0x83,0x84,0x2b,0x5b,0xb,0x6a,0x2e,0x5d,0x3a,0x5f,0xae,0x91,0x52,0xc2,0xe9,0xa6,0xaf,0x22,0xa6,0x9e,0x6,0x0,0xa,0xdd,0xd1,0xe1,0x5,0xe2,0x25,0xb9,0xfe,0x62,0x9a,0x38,0x6,0x4c,0x71,0xdb,0x71,0xe8,0xa9,0x99,0x9a,0x63,0xb7,0xfd,0xe6,0x4,0xd6,0x39,0xbe,0x96,0xf3,0x6b,0x90,0x78,0x46,0x9f,0x52,0xa,0x13,0xbb,0x5a,0xa3,0xa,0x38,0xde,0xf4,0x88,0x29,0xc1,0x9a,0x5d,0x1,0xad,0xec,0x97,0xf2,0xf9,0x65,0xbe,0x9f,0xe6,0x3f,0x1b,0x63,0xab,0x40,0x58,0x5c,0x80,0x21,0x4c,0x17,0x8,0x90,0x34,0x3f,0x73,0x1a,0x7,0xde,0x9f,0xba,0xee,0xb,0x12,0x76,0xc9,0x5d,0x6a,0xad,0x5b,0xc4,0x8d,0x33,0x62,0xa,0xb0,0xba,0xa9,0xcf,0x5f,0x4a,0x89,0x9d,0x86,0x3c,0xdf,0x73,0x11,0x87,0xce,0x39,0xca,0xf,0x4b,0x41,0x10,0x4,0x41,0x10,0x84,0x5b,0x84,0x8,0x80,0x82,0x20,0x8,0xc2,0x6d,0xa7,0x44,0x52,0x73,0x19,0xb8,0x6,0x76,0xfd,0x28,0x8a,0x16,0x6a,0x4d,0xc2,0x45,0x29,0xe5,0xd0,0x86,0x22,0xbf,0x6,0x96,0xa3,0xbc,0x8e,0x84,0x93,0x9c,0x60,0x8d,0xa5,0xd9,0x78,0xfb,0x8a,0x22,0xe8,0xd0,0x5c,0x2c,0x92,0xa1,0xd8,0x29,0xe6,0x9a,0x16,0xe3,0xd0,0x43,0x1b,0x83,0x76,0x75,0x50,0x5,0x2c,0xa5,0x35,0x9,0x2e,0x5a,0x43,0x2b,0x4d,0x5,0x1b,0x89,0x5,0x47,0x16,0x26,0xad,0xa3,0x79,0x83,0xaf,0xba,0xbc,0xc6,0x6f,0x7c,0xf8,0x3,0x7b,0xe3,0xb5,0x21,0x44,0x7c,0xe6,0xb,0x5f,0xc7,0xe4,0x3,0xac,0xb5,0x0,0x42,0x9d,0x29,0x58,0xdc,0x76,0x3e,0x8d,0x5c,0x7c,0x70,0x1e,0x72,0xb4,0xcd,0xce,0x34,0x80,0x22,0xbb,0xce,0x35,0xf8,0x3b,0x7f,0xf3,0x43,0xf8,0xe5,0xf7,0xbd,0x73,0xe7,0x73,0x73,0xce,0xf8,0xc1,0x33,0xcf,0xe3,0xff,0xfc,0xec,0x57,0xf1,0xf8,0x33,0x2f,0x91,0xab,0x91,0x9d,0x91,0x17,0x45,0x79,0x83,0x2f,0xee,0x3f,0x2a,0x38,0x31,0xd6,0x61,0x1a,0xfb,0xea,0xba,0x2c,0xee,0xc0,0xb3,0xc4,0x48,0xd,0xb7,0xa9,0x88,0xb3,0xde,0x23,0x78,0xf,0x3f,0xe,0x68,0xba,0x35,0xa6,0x71,0xcb,0xad,0xbe,0x3,0x26,0xbb,0xdf,0xbd,0x66,0x5c,0x53,0x1d,0x6e,0xd6,0x65,0xc,0xdb,0x53,0x20,0xd3,0x3c,0x38,0xaf,0x14,0xcf,0x6,0x9c,0x6a,0xd4,0x7b,0xaf,0xfc,0x54,0x5d,0x69,0x8a,0x1a,0x75,0x23,0xb9,0x49,0x9f,0xf9,0xd1,0x8b,0xf0,0xde,0xa3,0x71,0xbb,0xae,0xc8,0x7b,0xee,0xba,0x4c,0x45,0x17,0xd6,0xc1,0x5a,0x8b,0x69,0xd8,0x92,0xfb,0x2e,0x8d,0x55,0x8,0x25,0xc7,0x1b,0xcd,0x31,0x9c,0xc6,0x11,0x43,0xbf,0x41,0x4a,0x11,0x7,0x47,0x97,0x1,0x64,0xb8,0xa6,0xc1,0x9d,0x57,0x2e,0x9d,0x3b,0x97,0x61,0x98,0x70,0xf3,0x64,0x83,0x7e,0x73,0x8a,0xd5,0xfa,0x10,0xd3,0xd0,0x93,0x78,0x1c,0xc3,0x85,0x65,0x2a,0x45,0xd8,0x9d,0xc6,0xa1,0x46,0xa8,0x1,0x5,0xd7,0x34,0x18,0x87,0x2d,0x9c,0x6b,0x10,0x62,0xac,0xb3,0x7,0xf7,0xcd,0x0,0x54,0x5a,0x55,0xe7,0x66,0x4a,0xb1,0xf6,0xe0,0x5c,0xbb,0x71,0xc,0xef,0xc3,0x39,0x1,0xf0,0xf2,0xd1,0x7a,0x8e,0xfc,0xf2,0x39,0xf8,0x69,0x82,0x4f,0x9,0x7e,0xec,0xa1,0x34,0xc5,0xcd,0x83,0x9f,0xa0,0xb9,0x95,0x57,0xd5,0x82,0x8e,0x73,0x57,0x40,0x2,0x7e,0x8a,0x40,0x8a,0x18,0x26,0x8a,0x29,0xa7,0x18,0x31,0x8d,0x3,0x2e,0x5d,0xb9,0xb,0xb1,0x94,0xfb,0xf0,0x1e,0x2d,0x25,0x25,0xc1,0x8f,0x24,0x36,0x3,0x50,0xc8,0x2c,0x32,0xa2,0xce,0x1f,0xcc,0x20,0xb7,0xac,0xd2,0xd,0x80,0x51,0x7e,0x60,0xa,0x82,0x20,0x8,0x82,0x20,0xdc,0x2,0x44,0x0,0x14,0x4,0x41,0x10,0x6e,0x3b,0x25,0x32,0x8,0x8e,0xd3,0x2a,0xfe,0xa5,0x1f,0x89,0xca,0x32,0x8a,0x23,0xac,0x14,0x6,0xd4,0xc6,0xd8,0x14,0x49,0x5c,0xf2,0x13,0x9c,0x52,0x3c,0x2b,0xf,0xd0,0xb6,0xb9,0x60,0x5e,0x18,0x1d,0x37,0x6,0xbf,0x88,0x62,0x92,0xf3,0xc8,0x5a,0x57,0x5b,0x4e,0xbb,0xf5,0x21,0x80,0x5c,0x63,0xc5,0x0,0x60,0xd9,0xfd,0xe5,0x9a,0xa6,0x8a,0x18,0xd4,0x28,0x9c,0x70,0xa9,0x6b,0xf0,0x89,0xbf,0xf5,0x11,0xdc,0xb1,0xc7,0xd,0x6,0x0,0xdf,0x7e,0xec,0x29,0x7c,0xfb,0xc9,0xe7,0x6a,0x59,0x48,0x29,0x38,0x88,0x31,0x54,0x11,0x30,0xa7,0xb8,0xbf,0x20,0x22,0x25,0xe4,0x14,0x6b,0x3c,0x5a,0x51,0x36,0x1a,0x5a,0x1b,0x7c,0xe4,0xfd,0xf,0xee,0x11,0xff,0x80,0x2f,0x7e,0xf5,0x61,0xfc,0xfe,0x9f,0x7c,0xd,0x21,0xce,0x62,0x9f,0xe1,0x82,0x90,0x9c,0x2e,0x9a,0xe5,0x97,0xe6,0xc6,0xdb,0x69,0xc4,0x34,0xd,0x34,0xa3,0x30,0x52,0x2b,0xf0,0x45,0x2,0xa0,0xd1,0x1a,0xc6,0x39,0xe4,0x89,0x84,0x33,0xdb,0x34,0x58,0xab,0x23,0x6c,0x4f,0x8f,0x31,0xe,0x1b,0xc4,0x10,0x78,0xae,0xa0,0x83,0xb1,0x87,0x7b,0xdd,0x7b,0x29,0x25,0x18,0x4b,0xb1,0xea,0xe2,0xc8,0x4b,0x39,0xc3,0xf1,0x39,0x53,0x14,0x95,0x5c,0x61,0xe6,0xa2,0x46,0x62,0x9e,0xd7,0x17,0x82,0x27,0xc1,0x8e,0x8f,0xf3,0xc3,0xe7,0x23,0x4e,0x4f,0xb7,0xb8,0x7a,0xe5,0xf2,0xce,0xcb,0xef,0x7d,0xd5,0xdd,0xb8,0xeb,0xca,0x65,0xdc,0x3c,0xed,0x69,0xe6,0xa0,0x75,0xb0,0xbc,0x8e,0xd3,0xd0,0x63,0x73,0x72,0x13,0xd6,0x5a,0x16,0xfd,0x68,0xdf,0xad,0xf,0x2f,0x21,0xe7,0x84,0xe0,0xa9,0x8d,0xf9,0xbe,0xab,0x87,0xb8,0x7a,0xe5,0xca,0xb9,0x53,0xb9,0x7e,0xe3,0x6,0x4e,0xb6,0x3d,0x94,0x52,0x38,0xbe,0xf1,0x12,0x5c,0xd3,0x92,0xdb,0x6d,0xd5,0x5e,0xf8,0xc,0x8c,0xfd,0x6,0xc6,0x50,0xd1,0x88,0xd6,0x86,0xc4,0x6c,0xde,0x93,0xde,0x4f,0x8,0x7e,0x42,0xdb,0xad,0x10,0xfc,0x84,0xfc,0x32,0xcf,0x52,0x4a,0xdc,0xd6,0xcb,0xc5,0x22,0x39,0x67,0xbc,0x78,0xed,0x3a,0x6e,0xdc,0xb8,0x81,0xd5,0xbd,0xf7,0xec,0xbc,0xf6,0xbe,0x7b,0xee,0x86,0xd6,0xa,0xd3,0x34,0xf1,0x4c,0xcb,0x79,0xbf,0x1,0x24,0xcc,0x8f,0x3,0xc5,0x7a,0x87,0x7e,0x82,0x2,0x28,0xfa,0xbc,0x77,0xff,0x50,0x5b,0xf5,0xfa,0xf0,0x12,0xb6,0x9b,0x13,0x8a,0xd3,0xf,0x7d,0x8d,0xda,0x1f,0xdf,0x78,0x9,0xeb,0xc3,0x4b,0x88,0x31,0xc1,0xa9,0x8e,0x9f,0x79,0xda,0x6f,0x31,0xf3,0xfe,0xca,0x3c,0xf3,0x10,0x1,0x86,0x5d,0x88,0x91,0x45,0xd3,0xc,0x20,0x5,0x29,0x1,0x11,0x4,0x41,0x10,0x4,0x41,0xb8,0x55,0x68,0x59,0x2,0x41,0x10,0x4,0xe1,0xb6,0xff,0xe3,0x63,0x2c,0x47,0x62,0x75,0xb5,0xe9,0xe5,0x94,0xaa,0x88,0x97,0x8b,0x68,0xc6,0x82,0x46,0x4a,0x54,0x3c,0xa1,0xb9,0xd,0x55,0x81,0xe6,0x3,0x96,0xe6,0xd6,0xc4,0x51,0xd0,0x7d,0x28,0x45,0x2e,0x29,0xc5,0xf3,0xe4,0x8a,0xa3,0x29,0xa5,0x44,0xc5,0x11,0xa0,0x8,0x66,0xd3,0xae,0x60,0x2c,0xc5,0x4d,0x69,0xf6,0x5a,0xaa,0x33,0xf8,0xb4,0xa6,0xc8,0x71,0xce,0x19,0xf,0xbc,0xfa,0x2e,0xfc,0x83,0xdf,0xfe,0x77,0x71,0xef,0xdd,0x57,0xf7,0x7e,0xde,0xcd,0x93,0x53,0x7c,0xf2,0xd3,0x5f,0x82,0xf,0x1,0xe3,0xd0,0x23,0x84,0xc0,0x65,0x15,0xe4,0xfc,0x33,0xd6,0xc1,0xba,0x86,0xce,0x9,0xfb,0xe3,0xa1,0x31,0x6,0x14,0xa1,0xb2,0x5c,0xd7,0xaa,0x31,0xf8,0xf0,0x87,0xde,0x77,0xce,0x71,0xf8,0xf8,0x53,0x3f,0xc4,0xef,0x7d,0xfa,0xab,0x8,0x91,0x22,0x9c,0x13,0xc7,0x70,0xa7,0xb1,0xe7,0xb8,0xb4,0xbd,0xe0,0x1e,0x38,0x74,0xeb,0x43,0x5a,0x3b,0x85,0xda,0xa8,0xc,0x90,0x3b,0xb0,0xcc,0xc8,0x3b,0x4b,0xe4,0x2,0x8f,0xc4,0xc2,0x51,0x98,0x26,0xba,0x4e,0x4f,0x33,0x1,0x4b,0x14,0xd4,0x18,0x83,0xe8,0xfd,0x5e,0x7,0xa0,0x56,0xa,0x46,0x5b,0x5e,0xf,0xcb,0x25,0x18,0x1b,0x4c,0x63,0x4f,0xf3,0xf0,0xa6,0x11,0x63,0xbf,0xad,0xee,0xc7,0x8b,0x62,0xb4,0x19,0x8a,0x9a,0x90,0x73,0x86,0xb1,0x16,0xc6,0x5a,0x8c,0x43,0x8f,0x27,0xbe,0xff,0xcc,0xb9,0xd7,0xaf,0x57,0x2d,0x7e,0xe9,0x1d,0x6f,0x80,0xd2,0xa6,0x8a,0xcc,0x31,0xf8,0x2a,0x5a,0x95,0x52,0x8a,0x52,0x9a,0x62,0xac,0xc3,0x38,0xf4,0xd4,0x66,0xdb,0x91,0x3b,0xf4,0x23,0xbf,0xf2,0x3e,0x34,0xcd,0xf9,0xb9,0x8d,0xdf,0x7e,0xe4,0x9,0x16,0x52,0xe7,0xb9,0x8a,0xd3,0x38,0x60,0xec,0x37,0x17,0xee,0xc9,0x9c,0xc9,0xf9,0x56,0xee,0xb7,0x56,0x9a,0x63,0xd1,0x65,0x7d,0xd9,0xe1,0xa8,0xe8,0x79,0xd8,0x27,0xa4,0x6a,0xa5,0x61,0x8c,0xc5,0xea,0xe0,0x8,0xd6,0x36,0x75,0xae,0xa2,0xf7,0x1,0xdf,0x7b,0xe2,0xfb,0xe7,0x5e,0x7f,0xe7,0x95,0xcb,0xf8,0xf9,0x7b,0xae,0x70,0xd9,0x89,0x1,0xa0,0xa0,0xad,0xc5,0x38,0xf6,0x34,0x17,0x31,0x45,0x8c,0xfd,0xa6,0x46,0x77,0x9b,0x6e,0xc5,0xfb,0x6f,0xcf,0xfa,0xd7,0x39,0x95,0x6,0x4d,0xd3,0x92,0xa3,0x54,0x1,0x50,0xa,0x7,0x47,0x77,0xc0,0x18,0x8b,0xfe,0xf4,0x18,0x8a,0xff,0xa3,0x79,0x5e,0x61,0x8a,0x11,0xae,0xed,0x0,0x7e,0xee,0x82,0x27,0x21,0x90,0x4,0xf2,0xe2,0x62,0x54,0x54,0x9e,0xa2,0xa4,0x5,0x44,0x10,0x4,0x41,0x10,0x4,0xe1,0x96,0xfd,0xe,0x26,0x4b,0x20,0x8,0x82,0x20,0xdc,0x6e,0x52,0x9c,0x5b,0x3f,0xb5,0x9a,0xdb,0x3f,0x33,0xb7,0x89,0x66,0xca,0x3,0x72,0x23,0x70,0xae,0x33,0xf0,0x62,0xc,0xb5,0x48,0xa3,0x88,0x82,0xc5,0x3d,0x86,0xb,0x4a,0x40,0x12,0x47,0x43,0x53,0xc,0x48,0x21,0x40,0x69,0xc5,0xe2,0x1e,0x45,0x11,0xa1,0xc0,0x22,0x52,0xda,0x11,0x36,0x68,0x6,0x1a,0x1d,0x33,0xa5,0x8,0x6b,0xc,0x7e,0xfd,0x97,0xde,0x8e,0xbf,0xff,0xb7,0x3f,0x8a,0x7b,0x2e,0x10,0xff,0xc6,0x69,0xc2,0x27,0xff,0xf8,0xb,0x78,0xf6,0xc5,0x6b,0xe4,0x6c,0xe4,0x46,0x59,0x9a,0x51,0x47,0xc7,0xf1,0xe3,0x40,0x62,0x19,0x8b,0x9c,0x67,0x29,0x51,0xd0,0xcc,0x8e,0x2e,0x80,0x5c,0x52,0xf,0xbe,0xee,0x3e,0x5c,0x3a,0xda,0x75,0x1c,0xa6,0x94,0xf0,0xb9,0x2f,0x7d,0xb,0x93,0x9f,0x10,0x63,0x44,0x8,0x1e,0xc6,0x58,0x12,0x36,0x15,0xcd,0xdf,0x4b,0x17,0x38,0x0,0x35,0xaf,0x49,0xbb,0x5a,0xc3,0xba,0x6,0xae,0xe9,0x6a,0x14,0x98,0x4,0xa7,0xb,0x6e,0x1e,0xb,0xb7,0x39,0x67,0x12,0x6c,0x14,0xd0,0x76,0xab,0x2a,0x90,0x2a,0xa5,0xc9,0xdd,0x97,0xf2,0xde,0x72,0x14,0x3a,0x44,0xe6,0x58,0xb5,0x85,0xd2,0xba,0xa,0xaf,0x9b,0x93,0x9b,0xe8,0xb7,0x27,0x18,0xb6,0x9b,0x5a,0x62,0x11,0xfc,0x74,0x81,0xb8,0x4b,0x8e,0x4d,0xeb,0x1c,0xb4,0xd6,0x88,0x31,0xc2,0x8f,0x23,0x52,0xc,0xf8,0xfc,0x17,0xbf,0x72,0xee,0xba,0x95,0x52,0x78,0xff,0xbb,0x7e,0x1,0x87,0x6e,0x16,0xd4,0xc2,0x34,0xb1,0xe8,0x38,0xb0,0x73,0x4d,0xc1,0x58,0x7,0x6d,0x2c,0x52,0x8c,0x68,0xda,0xae,0x8a,0xa2,0x6f,0x79,0xed,0xbd,0x78,0xe7,0xdb,0xde,0xb4,0xf7,0x9e,0xff,0xc5,0xc3,0x8f,0x23,0x67,0xc0,0x58,0xb,0xeb,0x5a,0x6a,0x79,0x56,0xa8,0xb3,0xec,0xce,0xed,0x7f,0x16,0x66,0xcb,0x1c,0xbe,0x12,0xd7,0xe,0x61,0xc2,0xd0,0xd3,0xec,0x49,0xcd,0x6b,0x9c,0x33,0xcd,0xda,0xdb,0xb7,0x4,0x99,0xaf,0xb,0x4a,0x91,0xeb,0x90,0x23,0xf3,0x31,0x78,0x7c,0xe5,0x1b,0x8f,0x9c,0x5b,0x3,0x63,0x34,0x3e,0xfc,0xc1,0xb7,0xcf,0x33,0x33,0x73,0x46,0xf0,0x13,0x9a,0x76,0x85,0xb6,0x5b,0x61,0x1a,0x7,0x58,0xd7,0xa0,0x6d,0x57,0xd0,0xc6,0xcc,0xa2,0x63,0xde,0xbf,0x7f,0x9a,0x76,0xc5,0xcf,0x9d,0xaa,0x6d,0xda,0x31,0x6,0xc,0xfd,0x29,0x35,0x2,0x77,0x2b,0x6a,0x5b,0xe6,0xb5,0x30,0x7c,0xbf,0xcb,0x3d,0x35,0xc6,0xf2,0xbe,0x49,0xd5,0x9,0xbc,0xb8,0x61,0x90,0x1a,0x60,0x41,0x10,0x4,0x41,0x10,0x84,0x5b,0x87,0x8,0x80,0x82,0x20,0x8,0xc2,0x6d,0x47,0xa9,0x5d,0x77,0x5b,0x5e,0xfc,0xc2,0x5f,0x9c,0x7a,0xf4,0x25,0xcd,0x11,0xc5,0x5c,0x5b,0x44,0x8b,0x8,0x48,0xe2,0x56,0xac,0x31,0xc6,0x8b,0x28,0x51,0x62,0x63,0x1d,0x6c,0xd3,0x40,0x2b,0xb3,0x53,0xfc,0x61,0x6d,0x83,0xa6,0x5b,0x51,0xf1,0x6,0x3b,0x13,0xa9,0xc,0x24,0xc0,0x35,0x2d,0xee,0xb8,0x7c,0x9,0xbf,0xfc,0x8e,0x37,0xe2,0x3f,0xfd,0xc4,0xc7,0xf0,0x1b,0x1f,0x7e,0x3f,0xd6,0xab,0x6e,0xef,0xe7,0xc4,0x94,0xf0,0xaf,0xff,0xe4,0x8b,0xf8,0x7f,0xbf,0xf6,0x8,0x89,0x7d,0x31,0xb2,0xa8,0x94,0xab,0xbb,0x8a,0x2f,0xaa,0xa,0x5e,0xfb,0x28,0x91,0xcc,0xc4,0x8d,0xba,0xc5,0xcd,0x77,0xff,0xab,0x5f,0x75,0xee,0x3d,0x19,0xc0,0x4b,0x37,0x4e,0x60,0x8c,0x43,0xd3,0x92,0x80,0xa7,0xb4,0xaa,0x8e,0x48,0xe3,0x9a,0xea,0x6c,0xdb,0xf7,0x39,0x65,0x2e,0xa1,0x75,0x8e,0xcb,0x40,0x2,0x6c,0xd3,0x54,0x7,0xe2,0x7e,0x72,0xbd,0x96,0xcc,0x2d,0xb6,0xc3,0x96,0x66,0xe5,0x59,0x9e,0xed,0x97,0xd9,0x1,0x98,0xd3,0x7e,0x17,0x97,0x62,0x87,0x9d,0xd6,0x1a,0xae,0xe9,0x48,0x8,0x32,0x16,0xed,0x6a,0x5d,0x45,0x21,0xc5,0xa2,0x9e,0x31,0x16,0x7b,0x1d,0x68,0x4a,0x23,0x65,0x72,0x8d,0x69,0x9e,0x5d,0xe7,0xda,0x16,0x4d,0xb7,0xc6,0x57,0x1e,0x7e,0x1c,0x3f,0xf8,0xe1,0xb3,0xe7,0xde,0x73,0xe9,0xe8,0x0,0xbf,0xf3,0x5b,0x1f,0xc6,0xe5,0xc3,0x3,0x12,0x9c,0x8c,0xe6,0xf7,0xad,0xe0,0x5c,0x43,0xeb,0x9d,0x12,0xa2,0xf7,0x68,0xda,0xae,0x8a,0x52,0xf7,0xdd,0x75,0x7,0x7e,0xfb,0xb7,0xfe,0x6,0xba,0xb6,0x39,0x77,0xcc,0x27,0x9e,0xfa,0x21,0x9e,0x7c,0xee,0x1a,0x80,0x8c,0x66,0x21,0xa2,0xa6,0x98,0xe0,0xc7,0xa1,0xce,0xb3,0xdc,0x39,0x77,0xde,0x5f,0x14,0xc3,0xa6,0xb8,0x7b,0x8c,0x81,0xef,0x9,0xc5,0xcc,0x6d,0xd3,0xd4,0x7b,0xa0,0x2f,0x58,0x83,0xf9,0x19,0x89,0x8,0x9e,0xa2,0xdb,0x61,0x22,0x77,0xe6,0x5f,0x7c,0xe7,0x9,0x3c,0xf7,0xa3,0x17,0xce,0xbd,0xfe,0xad,0x6f,0x7e,0x0,0xf,0xbd,0xfb,0x4d,0x88,0xc1,0x63,0x1c,0x7b,0x20,0x67,0x44,0x3f,0x21,0xa5,0x5c,0xdd,0xa5,0x81,0x5d,0x8c,0x4a,0x1b,0x72,0xeb,0xed,0x8b,0x71,0xb3,0xb0,0xae,0x16,0x9b,0xd1,0xda,0x6,0x46,0x1b,0x28,0xa5,0xd1,0x76,0x2b,0x0,0xa,0xde,0x4f,0x88,0xde,0x57,0x31,0xb2,0x8,0xaa,0x99,0x6a,0x7e,0x69,0xaf,0xb1,0x4b,0x97,0x9e,0x63,0x9e,0x3,0x98,0xf2,0x5e,0x87,0xac,0x20,0x8,0x82,0x20,0x8,0x82,0xf0,0x57,0x43,0x4,0x40,0x41,0x10,0x4,0xe1,0xb6,0x13,0x39,0x5e,0x9a,0xd8,0xf9,0x43,0xe5,0x0,0x14,0xcf,0x2d,0xf3,0xd7,0xf2,0xc2,0xd5,0x97,0x52,0x20,0x57,0x56,0x15,0x11,0xc8,0x41,0x48,0xcd,0xad,0x19,0xd6,0x5c,0xfc,0xcf,0x99,0x52,0xa,0x4d,0xd3,0xc0,0x68,0x8d,0x1c,0x3,0x9c,0x33,0x68,0xbb,0xe,0xce,0x5a,0x34,0xce,0xc2,0x68,0x85,0x1c,0x3c,0xd6,0x7,0x7,0x58,0xb7,0xe,0x97,0xf,0x3a,0xfc,0xc2,0x3,0x3f,0x87,0x5f,0xff,0xa5,0xb7,0xe3,0x13,0x1f,0xff,0x65,0xfc,0xe7,0x7f,0xef,0x37,0xf1,0x1f,0x7e,0xec,0xdf,0xc1,0x7d,0xf7,0xdc,0x75,0xe1,0x67,0xa4,0x94,0xf0,0xe9,0xcf,0x7d,0x9,0x7f,0xfc,0x85,0x6f,0x55,0x31,0x67,0xbe,0xd6,0x58,0x85,0xbc,0xe0,0x27,0x68,0x45,0xe,0x2d,0xc5,0xe5,0x27,0x7b,0x4e,0x98,0xa3,0xcd,0xb9,0xce,0x23,0x4c,0x29,0x9d,0x6b,0xfc,0x5,0xc8,0x3d,0xf9,0xaa,0xab,0x97,0x90,0xd9,0x59,0x18,0x3d,0xcd,0xcc,0x8b,0x81,0x5,0xac,0x94,0x2e,0x94,0xf1,0x94,0xb5,0xc8,0xc8,0xe4,0xfe,0xe3,0x79,0x87,0xd6,0xb5,0x18,0x36,0xa7,0x24,0xc6,0x5c,0x50,0x1e,0x42,0x71,0x66,0xbe,0x7f,0x71,0x8e,0x5e,0xe7,0x9c,0x11,0xca,0x7c,0x43,0x16,0x6,0xd3,0x5,0xb1,0x6c,0x9a,0xed,0xb8,0xf8,0x3b,0x72,0x75,0xdb,0x8d,0x43,0xf,0xe7,0x5a,0x8c,0xfd,0x16,0x21,0x4c,0x24,0x28,0xee,0x3b,0x6,0xcf,0xc,0x2c,0x62,0xa1,0x66,0x17,0xdd,0x34,0x6c,0x91,0x72,0xc6,0xa7,0xfe,0xf8,0xb3,0x8,0xf1,0x7c,0x8b,0xec,0x1b,0x5e,0xf7,0x1a,0x7c,0xe2,0xb7,0x7e,0x15,0xf7,0xdf,0x7d,0x19,0xd6,0x50,0xe3,0xef,0xb8,0xdd,0xd4,0x52,0x13,0x3f,0x8d,0x1c,0x51,0x5,0xba,0x6e,0x8d,0xf7,0xfc,0xc2,0xeb,0xf0,0xf,0x7e,0xe7,0x63,0xb8,0xfb,0xae,0x3b,0xcf,0x1d,0x6b,0x1c,0x27,0x7c,0xea,0x4f,0xbf,0x42,0x31,0xd8,0xb6,0x83,0xb1,0x16,0xae,0x69,0x59,0xa8,0xcd,0x88,0x61,0xda,0x2b,0x4e,0x97,0xfd,0x9d,0x52,0x82,0xd2,0x24,0x82,0xd1,0x7b,0xbb,0xea,0xa4,0x9b,0x86,0x1,0x29,0x86,0x85,0x13,0x4f,0xed,0x3d,0xe,0x14,0xcf,0x7b,0x64,0xd7,0x6a,0xc3,0xe7,0x3e,0x8e,0x23,0xfe,0xf0,0x53,0x9f,0xd9,0xeb,0x84,0xfc,0xf8,0xaf,0xff,0xa,0x3e,0xfe,0xab,0xef,0xc6,0xd1,0xba,0x5b,0xdc,0xa7,0xcc,0xa2,0xac,0xa1,0x92,0x1d,0x70,0x6b,0x6f,0xd8,0x5f,0x64,0x42,0x33,0x4,0x33,0x5c,0xdb,0xb1,0x6b,0x92,0xf6,0x8c,0x65,0xd1,0x79,0x1a,0x28,0xce,0x9d,0x62,0xe0,0x53,0xa7,0x79,0x9f,0xc6,0x92,0xc8,0x6e,0x5d,0x43,0xcd,0xd3,0xae,0xa9,0xcf,0x44,0xe6,0xfb,0x4a,0x73,0x3f,0x71,0x41,0xfb,0xb0,0x20,0x8,0x82,0x20,0x8,0x82,0xf0,0x57,0x41,0x4a,0x40,0x4,0x41,0x10,0x84,0xdb,0x8e,0x6b,0xba,0xda,0xf4,0x19,0x53,0x80,0xd6,0xaa,0x6a,0x61,0x4a,0x69,0x72,0xf5,0xe5,0x5c,0x63,0xb4,0x9a,0xa3,0xb4,0xc6,0xce,0xff,0x6c,0xe5,0x94,0xe0,0x83,0x87,0x6b,0x3b,0x84,0x10,0xf6,0xcf,0x9a,0xd3,0x1a,0x7f,0xfb,0x63,0xf,0x21,0xa5,0x3c,0x47,0x7c,0x1,0xa4,0x9c,0xa1,0x55,0x89,0xc7,0x92,0xd8,0x60,0x8d,0x81,0x75,0x16,0xd6,0x58,0x38,0x67,0xf7,0xb6,0xfb,0xee,0x63,0x1c,0x27,0x7c,0xf2,0x8f,0xfe,0x14,0x9f,0xfb,0xda,0xe3,0x34,0x83,0x6d,0x1a,0xab,0xe8,0x93,0xb9,0x49,0x35,0xb1,0x6b,0x31,0x72,0xb9,0x47,0x99,0x73,0xb7,0x3f,0xd7,0x49,0x42,0x61,0x8a,0x11,0x31,0x66,0x76,0x85,0x69,0xdc,0xb8,0x79,0x7c,0xee,0xa5,0x4a,0x1,0x1f,0x78,0xf7,0x83,0xf8,0xda,0xa3,0x3f,0x44,0x2a,0xef,0x9d,0x46,0x0,0xa,0x21,0x78,0xbc,0xea,0xea,0x25,0x3c,0xf4,0x81,0xb7,0xef,0x3d,0x6f,0x12,0x7a,0xa8,0x6d,0xf7,0xb0,0xd5,0x48,0x8d,0xc5,0x10,0x32,0x32,0x32,0xcf,0x3c,0x34,0x17,0xbc,0x8f,0xe6,0x30,0xe6,0x94,0x59,0x88,0x35,0xb5,0x70,0xa4,0x44,0x90,0xe9,0xba,0x73,0x15,0x68,0xf7,0x9d,0xb8,0x9f,0xa8,0x2c,0x82,0x8a,0x2f,0xa8,0x1c,0xc5,0x35,0x24,0xfc,0x6d,0x4e,0x6f,0xa0,0x69,0x57,0xdc,0x80,0x1b,0xa1,0x2f,0x70,0x4b,0x4e,0xe3,0x0,0xcb,0xb3,0xfa,0x62,0x8a,0x24,0x7e,0xc6,0x80,0xa1,0xdf,0xe2,0x33,0x5f,0xfc,0x3a,0xde,0xf9,0x8e,0xb7,0xe2,0x3,0xef,0x7d,0xe7,0xb9,0xf7,0xbd,0xee,0xfe,0xfb,0xf0,0x9f,0xfc,0x47,0xbf,0x89,0xaf,0x7f,0xfb,0x31,0xfc,0xf9,0xd7,0xbe,0x83,0xc7,0xbf,0xff,0xc,0xb6,0x7d,0x8f,0x29,0x66,0x1c,0x1e,0x1e,0xe0,0x8e,0xa3,0x35,0xde,0xf6,0xe6,0xd7,0xe1,0x17,0xdf,0xf1,0x20,0xde,0xf8,0xc0,0x6b,0xf8,0x3a,0xce,0xde,0xa6,0x8c,0xcf,0x7d,0xf1,0x6b,0x78,0xec,0x7,0xcf,0x73,0xac,0x3c,0xd7,0x3d,0x9b,0xd8,0x41,0x39,0xcf,0xb8,0xdc,0x25,0xa5,0x8,0xcd,0xd,0xbc,0xc3,0xf6,0x14,0x4a,0x6b,0x6c,0x4f,0x8f,0x29,0xa6,0x1e,0x23,0xbc,0x1f,0x71,0x78,0xe9,0x4a,0x8d,0xa3,0xd3,0x36,0x39,0xdf,0x2,0x9c,0x51,0x8a,0x71,0x5c,0xbd,0x37,0x63,0xbf,0xad,0x2e,0xd9,0xcf,0x7d,0xe9,0x1b,0xf8,0xd0,0x7,0xdf,0x83,0xb7,0xbe,0xe5,0x4d,0x3b,0xa7,0x61,0x8c,0xc6,0x47,0x1e,0xfa,0x0,0xde,0xf3,0xf6,0x7,0xf1,0xad,0xef,0x3e,0x8a,0x47,0x1f,0x7f,0x1a,0x3f,0x7a,0xf1,0x3a,0x86,0x61,0x44,0x88,0x1,0xae,0x5d,0x21,0x84,0x0,0xe7,0x1a,0x72,0xe7,0x5d,0x20,0xb0,0x6b,0x9e,0x1b,0xd9,0xb4,0x2d,0x86,0x6d,0x29,0x65,0x99,0x90,0x73,0xc6,0xb0,0xdd,0xe0,0xf0,0xf2,0x15,0x58,0xe7,0x38,0x4e,0x4f,0x27,0x5c,0xdc,0xa5,0x61,0x9a,0x66,0x51,0x9c,0x9b,0xbe,0x93,0x9f,0x16,0xb1,0x69,0x6e,0x1f,0x8e,0x5e,0x7e,0x60,0xa,0x82,0x20,0x8,0x82,0x20,0xdc,0x2,0x44,0x0,0x14,0x4,0x41,0x10,0x6e,0x3b,0x54,0x94,0xa0,0x78,0xce,0x1f,0x89,0x1c,0x31,0x86,0x3a,0x47,0xe,0x25,0xfa,0xcb,0xe,0x24,0x65,0x2d,0x94,0xd1,0xf0,0xe3,0x50,0x5b,0x49,0x63,0x8a,0xb0,0xc6,0xbd,0xac,0xcb,0xd,0xc0,0x85,0x4d,0xbd,0xb7,0x82,0x67,0x9f,0x7b,0x1e,0xbf,0xff,0x47,0x9f,0xc7,0xc3,0x4f,0x3c,0x7,0x3f,0x8d,0x3c,0x7f,0x2d,0xcc,0x22,0x46,0x6,0xa0,0x32,0xb4,0xb5,0xc8,0x29,0xd7,0xd9,0x67,0x31,0x92,0xdb,0xee,0x22,0xc8,0xd,0x99,0x6a,0x43,0xac,0x9f,0x46,0x3c,0xf6,0xd4,0x33,0x8,0x21,0xc2,0xda,0x5d,0x31,0xea,0x4d,0xf,0xdc,0x8f,0xdf,0xf9,0xd8,0xbf,0x8d,0x4f,0x7e,0xfa,0x8b,0xb8,0xd9,0x7,0xc4,0x18,0x71,0xd7,0xe5,0x3,0xbc,0xfb,0xc1,0x9f,0xc7,0x43,0x1f,0x7c,0x17,0x8e,0xe,0xd7,0x7b,0x3f,0xe3,0xde,0xab,0x87,0x68,0xc,0xf0,0x8b,0x6f,0x7e,0x1d,0x3e,0xf2,0xd0,0xfb,0xf0,0xbf,0xfe,0xe1,0xa7,0xf1,0xd5,0x87,0x1f,0x3,0x40,0xc2,0x9a,0x9f,0xc6,0xbd,0xef,0x4b,0xa9,0x88,0x36,0x74,0x1e,0x63,0xbf,0x41,0x8,0x13,0x47,0x9b,0x1d,0x82,0x1f,0xb9,0x74,0x45,0x2f,0x4a,0x1d,0xce,0x5e,0x9f,0xaa,0xe5,0x2c,0x31,0x52,0x8b,0xaf,0xd6,0x6,0xe3,0x34,0x62,0x75,0x70,0x84,0x7e,0x7b,0x52,0x9d,0x60,0xcb,0x59,0x88,0xfb,0x98,0xc6,0x81,0xdc,0x67,0xd3,0x50,0x9b,0x8d,0x73,0x4a,0x98,0x42,0xc2,0x3f,0xfe,0x67,0xff,0x3b,0xee,0xba,0x7a,0x15,0x6f,0x78,0xe0,0xfe,0x73,0xef,0xeb,0xba,0x16,0xef,0x7f,0xf7,0xdb,0xf0,0x8b,0xef,0x7a,0x2b,0x36,0x9b,0xd,0xa6,0x89,0xd6,0xae,0x69,0x1c,0xd6,0xab,0xe,0x8e,0x63,0xd1,0x17,0xf1,0xad,0xef,0x3e,0x8e,0x7f,0xf9,0x27,0x5f,0x3e,0xb3,0x36,0x14,0x59,0x8e,0xda,0x20,0xc5,0x9,0x31,0xbc,0xfc,0x79,0x3,0x40,0xbb,0x5a,0x63,0xec,0xb7,0x68,0x9a,0x16,0x9b,0x93,0x1,0xde,0x4f,0x58,0xad,0xf,0xe1,0xa7,0x91,0x8e,0x15,0x42,0x6d,0xc3,0xde,0x87,0xe6,0x75,0x6e,0xbb,0x35,0xfa,0xcd,0x9,0x32,0x47,0xb4,0xad,0x35,0x88,0x9,0xf8,0x27,0xff,0xf3,0xbf,0xc0,0x7f,0xf1,0xf,0xff,0x2e,0x7e,0xee,0xbe,0x7b,0xce,0xdc,0x3,0xe0,0xce,0xab,0x97,0xf1,0xd0,0x2f,0xfd,0x22,0x7e,0xe5,0x83,0xef,0x45,0x8,0x91,0x62,0xb9,0x2c,0x36,0xce,0x72,0xa3,0x82,0xdd,0x33,0xcb,0x31,0xf3,0x73,0x5c,0xf6,0x89,0x52,0x24,0x3a,0x6b,0x63,0xd1,0x6f,0x4e,0xb1,0x3a,0x3c,0x2,0x40,0x85,0x32,0xd6,0x96,0x98,0x2f,0xdd,0x53,0x6d,0xc,0xb2,0xa2,0x7d,0x4e,0xe2,0x22,0xed,0x7,0xb,0x87,0x69,0x24,0xb7,0x2c,0x45,0x84,0x25,0xa8,0x22,0x8,0x82,0x20,0x8,0x82,0x70,0xab,0x10,0x1,0x50,0x10,0x4,0x41,0xb8,0xed,0xe4,0x4c,0xe2,0x42,0x5e,0xc4,0x47,0x35,0x37,0xf4,0x2,0xa8,0x65,0x6,0x34,0x83,0xd,0x3c,0x13,0x6c,0x6e,0xb4,0x4d,0x29,0xc2,0x28,0x45,0xee,0xc1,0xac,0x2f,0x2c,0xba,0xf8,0xeb,0xa2,0x1f,0x46,0x7c,0xe9,0x2f,0xbe,0x85,0x3f,0xf8,0xbf,0xbe,0x88,0xd3,0x81,0x44,0xbd,0x94,0x22,0xac,0x36,0x50,0x8a,0x84,0x91,0x32,0xb7,0xad,0xc4,0x65,0x1,0x20,0x4c,0x23,0xbb,0xa6,0x2,0xb6,0x27,0x37,0x6b,0xc4,0x77,0x7,0x8e,0x4b,0xfa,0x69,0x84,0xb1,0x16,0x31,0x6,0x78,0x3f,0xe2,0xd1,0xa7,0x9e,0xc3,0xb3,0xcf,0xbf,0x88,0xfb,0x5f,0x7d,0xcf,0xb9,0xb7,0xbc,0xf3,0x6d,0x6f,0xc2,0x5b,0xde,0xf8,0x5a,0xdc,0x3c,0xde,0x40,0x1,0x38,0x3a,0x5c,0xa3,0xeb,0xda,0x97,0x15,0xb0,0x3e,0xf4,0xfe,0x77,0xe2,0x7d,0xef,0x7a,0x2b,0xe,0xd6,0x1d,0x32,0x80,0x30,0x6e,0x1,0x50,0xe1,0x48,0x98,0x46,0x72,0x65,0xee,0xbd,0x77,0x69,0x16,0xe6,0x40,0x5,0x2d,0x7e,0x9a,0x28,0xfe,0x1b,0xc9,0x89,0x69,0x1d,0xb8,0x9d,0xf9,0x22,0x1,0x8c,0xd6,0x2b,0x4,0x5f,0xdb,0x6f,0x83,0x9f,0x60,0x8c,0xc5,0xe6,0xe4,0x26,0x8a,0x6b,0x72,0x1a,0x7,0x18,0x6b,0xf7,0xa,0x80,0x25,0x22,0x1e,0x23,0xed,0x1,0x6d,0x2c,0xbc,0xdf,0x72,0xac,0x94,0x5c,0x85,0x27,0xdb,0x1e,0xff,0xf5,0x7f,0xff,0xcf,0xf1,0xf,0x3f,0xf1,0xb7,0xf0,0xe0,0x9b,0xdf,0xb0,0xf7,0x4c,0xb4,0x52,0x38,0x3a,0x3c,0xfc,0x4b,0xec,0xdd,0x8c,0x6f,0x7e,0xfb,0x51,0xfc,0x4f,0x7f,0xf0,0x59,0xf4,0xe3,0xc4,0xa5,0x28,0x54,0xc4,0x61,0x8c,0xad,0xf3,0x11,0x43,0xf0,0x80,0x6b,0xf7,0xba,0x3c,0x8b,0x5b,0xb0,0xec,0xf5,0x69,0x1c,0xe0,0xfd,0xc8,0xa2,0x68,0x69,0xb6,0xa6,0xf9,0x89,0xcb,0x59,0x90,0x67,0xef,0x67,0xe2,0xe2,0x17,0x7a,0x26,0x48,0x28,0xf5,0x2c,0x2c,0x6,0x3f,0x41,0x69,0x8d,0xe7,0x5e,0xbc,0x86,0xff,0xf6,0x9f,0xfd,0x1e,0xfe,0xfe,0x6f,0xff,0x26,0x5e,0xfb,0x9a,0xfb,0xf6,0xee,0x9,0xa5,0xd4,0x85,0x85,0x2d,0x2f,0xf7,0x10,0x53,0x83,0xb4,0x42,0xf4,0x9e,0x66,0x1f,0x1a,0x4b,0x45,0x3b,0xdc,0x32,0x6c,0xac,0x83,0x6b,0x5a,0x4c,0xe3,0x80,0xa6,0x5b,0xd5,0x36,0xee,0x14,0x13,0x47,0x97,0x69,0xbd,0x14,0x50,0xf7,0x4e,0x89,0x16,0x73,0x1e,0x58,0x7e,0x58,0xa,0x82,0x20,0x8,0x82,0x20,0xdc,0x22,0xe4,0xff,0x5a,0x15,0x4,0x41,0x10,0x6e,0xff,0x3f,0x3e,0x5a,0xb3,0xc7,0x8,0xec,0x58,0x2a,0x2e,0x2f,0x55,0x67,0xe0,0x69,0x76,0x1,0x96,0x79,0x78,0xf4,0xfa,0xcc,0xe5,0x21,0xac,0x11,0xf0,0xf7,0xa1,0x2e,0x98,0xa7,0x77,0xb,0xc9,0x39,0xe3,0xe4,0x64,0x83,0x2f,0x7c,0xf9,0x1b,0xf8,0x2f,0xff,0xf1,0xef,0xe2,0x7f,0xf9,0x97,0x7f,0x8a,0xed,0xe8,0x91,0x78,0xc6,0x5f,0x8c,0x1,0x21,0xf8,0x2a,0xbc,0xf8,0x69,0xc0,0x34,0xd,0x98,0xc6,0x81,0xbe,0x1f,0x3c,0x94,0xd6,0x18,0x79,0x36,0x1a,0x89,0x3c,0x71,0xcf,0x27,0x29,0x4,0xef,0xf9,0x3d,0x81,0x1d,0x54,0xe,0x7d,0xbf,0xc5,0xef,0xfd,0xe1,0xa7,0x30,0x8e,0xd3,0xde,0xf3,0xeb,0xda,0x16,0xf7,0xdc,0x7d,0x15,0xaf,0xba,0xfb,0x2a,0x56,0xab,0xe,0x4a,0x29,0xc4,0x18,0xf1,0xbd,0x27,0x9f,0xde,0xfb,0x7a,0xe7,0x2c,0xe,0xf,0x56,0xe4,0xc6,0xa3,0x9b,0x82,0xcd,0xe9,0x4d,0xf4,0xa7,0x27,0xb5,0x5,0x77,0x1f,0xb3,0x80,0xa4,0xaa,0xab,0xb1,0xcc,0xe1,0x2b,0xe5,0x2e,0x5a,0x1b,0x5a,0x87,0xb,0xf4,0xc7,0x52,0x90,0x52,0x4,0xac,0xe2,0x74,0x1c,0xb6,0xa7,0x70,0xae,0x41,0xf4,0x13,0xa0,0x74,0x75,0x6,0x5e,0x4,0xb9,0xd,0xc9,0x1,0x57,0xe6,0x11,0xc6,0x18,0x31,0xd,0x3d,0x15,0xaf,0xc4,0x80,0x1b,0x27,0x5b,0xfc,0x37,0xff,0xe3,0xff,0x86,0x3f,0xfd,0xc2,0x57,0xe0,0x7d,0xf8,0xa9,0xf6,0xc0,0x30,0x8c,0xf8,0xd4,0xa7,0x3f,0x8f,0xff,0xee,0x77,0x3f,0x85,0x9b,0xc7,0x27,0x48,0x31,0x60,0x1c,0xb6,0xc8,0xc8,0x88,0xc1,0xf3,0xbd,0x4e,0x34,0xd3,0x8f,0xb,0x65,0x32,0xf6,0xc7,0xbc,0x63,0x28,0x71,0xdf,0x89,0x8a,0x5a,0x32,0x95,0xc5,0x94,0x38,0x34,0x9,0x83,0x3d,0x8c,0x21,0x51,0x79,0x9f,0x70,0x57,0xe6,0x8,0xc6,0xe0,0x79,0x66,0xa2,0xaf,0xe2,0x5b,0x8,0x13,0xfc,0x44,0x6e,0xcc,0x1f,0x3c,0xf7,0x22,0xfe,0xab,0x7f,0xf2,0xbb,0xf8,0xfc,0x9f,0x7d,0x5,0xe3,0x34,0xdd,0xb2,0x67,0x42,0xf1,0xbd,0x9,0x61,0x42,0xf0,0x13,0xc6,0xa1,0xaf,0xb3,0x0,0x37,0x27,0x37,0x31,0x8d,0x7d,0x9d,0x6f,0x58,0x4,0xdb,0x32,0xe3,0x53,0xf3,0x33,0x92,0x79,0xbd,0x72,0x46,0x9d,0x47,0x58,0x74,0xbf,0x8b,0xe6,0x50,0xa,0x82,0x20,0x8,0x82,0x20,0x8,0x7f,0x79,0xc4,0x1,0x28,0x8,0x82,0x20,0xdc,0x76,0x66,0x47,0x93,0x86,0x2a,0xfa,0x48,0x9e,0x9b,0x7e,0x33,0xb,0x1,0x34,0x3,0x6d,0x1e,0xa3,0x96,0x62,0x84,0x71,0x86,0x5e,0x87,0x8c,0x94,0x48,0x48,0xf1,0x7e,0xe2,0x52,0x8d,0x5b,0xcb,0xe4,0x3d,0xfa,0x7e,0xc0,0x33,0xcf,0xbd,0x80,0xaf,0x7d,0xeb,0x51,0x7c,0xf9,0xe1,0xc7,0x71,0xbc,0x19,0xf8,0x7c,0x14,0xa6,0x38,0xce,0x85,0x25,0x39,0x2f,0x4,0x8d,0x8,0xa5,0x34,0xfc,0xd8,0xa3,0xe9,0x56,0x34,0xeb,0x2c,0x78,0xf8,0x71,0xa8,0x71,0x4e,0x6b,0x1b,0xe4,0x7d,0x2,0x60,0x2e,0x42,0x67,0x46,0x42,0x44,0xce,0x9,0xfd,0x29,0x39,0xdb,0x3e,0xff,0x95,0x87,0x71,0xd7,0x1d,0x9f,0xc4,0xbf,0xf7,0xf1,0x8f,0xe2,0x60,0xbd,0xbe,0xf0,0xbc,0x73,0xce,0x78,0xfe,0x85,0x97,0xf0,0xaf,0x3f,0xfb,0xe7,0xf8,0xc6,0xa3,0x3f,0xc0,0x7f,0xf6,0x1f,0xff,0x7,0xb8,0xe7,0x55,0xfb,0x4b,0x4c,0xc6,0x69,0xc2,0xe7,0xff,0xec,0x2b,0x78,0xec,0xa9,0x67,0xd1,0xb4,0x2b,0x6c,0x4f,0x6e,0x22,0xe,0xe1,0x42,0xf1,0x25,0xa7,0xc4,0xae,0x34,0x9a,0xf3,0x57,0xc4,0xcf,0xf2,0x35,0x6d,0x2d,0xb,0x7c,0xd4,0xfc,0x7a,0x41,0xd,0x8,0x0,0x12,0xb5,0xfc,0x34,0x72,0xf9,0x4b,0xe4,0xd8,0x30,0xdd,0x4f,0xcb,0x62,0xaa,0x31,0xb6,0xb6,0x42,0x2f,0x21,0xcd,0x97,0x23,0xe2,0x5a,0x63,0x1a,0xfb,0xda,0x44,0x3c,0xf6,0x1b,0xe4,0x9c,0x10,0xbc,0x87,0x6b,0x3a,0xc,0xd6,0xe1,0x9f,0xfe,0x1f,0x7f,0x84,0x6f,0x7e,0xe7,0x31,0x7c,0xe4,0xa1,0xf,0xe0,0xf5,0x3f,0xbf,0x7f,0xae,0xdf,0x45,0xf4,0x7d,0x8f,0xef,0x3c,0xfa,0x4,0x3e,0xf5,0xd9,0x2f,0xe1,0x89,0x67,0x5e,0x24,0x41,0x9a,0x1d,0x7a,0xd6,0x35,0x48,0x31,0x62,0x1a,0x7,0x6a,0xe4,0xcd,0x99,0xdc,0x88,0xd3,0x8,0xdd,0xad,0xf7,0xee,0xcb,0x12,0xd3,0x9d,0xb,0x54,0x12,0x3c,0xcf,0xc4,0x33,0xd6,0xa2,0xdf,0x9e,0xa2,0x5b,0x1d,0xc0,0x44,0x2a,0x6a,0x29,0x6e,0xd9,0xb3,0x22,0xa0,0xd1,0x1a,0xd1,0x93,0xe3,0x11,0x6a,0x76,0xd5,0xf6,0xdb,0x13,0xf8,0x71,0xc4,0xc1,0xa5,0x3b,0xb8,0xd4,0xa4,0xc5,0xf1,0xa6,0xc7,0x3f,0xfd,0x17,0x9f,0xc1,0xff,0xf3,0xe5,0x6f,0xe1,0x23,0x1f,0x7a,0x2f,0x5e,0xff,0xba,0xfb,0x71,0xe9,0xe8,0xf0,0x27,0x9e,0x75,0x79,0xfe,0x6,0x0,0xd3,0xb0,0xad,0xd7,0x5b,0xca,0x42,0xe8,0xef,0x24,0x5a,0x6a,0x6d,0x90,0x52,0x82,0x6b,0xc,0xb4,0x52,0xdc,0x1c,0xcc,0x25,0x37,0x2c,0x14,0x53,0xd9,0x48,0x84,0x31,0xe,0x4a,0x71,0xc1,0xf,0xb,0xfa,0xd2,0x2,0x2c,0x8,0x82,0x20,0x8,0x82,0x70,0xeb,0x10,0x1,0x50,0x10,0x4,0x41,0xb8,0xed,0x4,0x3f,0xb7,0xe0,0xce,0xb3,0xde,0x72,0x75,0x90,0xd5,0xbf,0x67,0x20,0x2b,0x7e,0xd,0xbf,0x37,0x6,0x5f,0x1d,0x66,0x25,0x72,0xd9,0xf,0x23,0xbe,0xfb,0xd8,0x93,0x38,0x38,0x58,0x21,0xa7,0x39,0x92,0x59,0x1a,0x86,0x8b,0x8c,0xb0,0x33,0x53,0x8e,0x5,0x47,0x72,0xc0,0x29,0x40,0x69,0x8c,0xd3,0x88,0x6d,0x3f,0xe2,0x74,0xd3,0xe3,0x85,0xeb,0x27,0x78,0xea,0xe9,0xe7,0xf0,0xcc,0xb,0xd7,0x91,0xa0,0xab,0xb3,0x4f,0x73,0xc9,0x45,0xf4,0x9e,0xe6,0x9e,0xf9,0x89,0x8f,0xad,0x91,0x52,0x84,0x73,0x2d,0xa6,0x69,0x40,0x4e,0x1e,0xc6,0x3a,0x2e,0xf3,0x88,0x48,0x29,0xc1,0xfb,0x89,0xa2,0xaf,0x13,0xb9,0xbe,0x9e,0x7c,0xea,0x7,0x38,0x3c,0x3a,0xac,0x51,0x60,0xad,0xd,0x26,0x1f,0x30,0x8c,0x13,0x52,0x8e,0xd0,0xd9,0x40,0x71,0xac,0x38,0x83,0x84,0x95,0x3f,0xf8,0xbf,0xff,0xc,0x8f,0x3f,0xf5,0x34,0x3e,0xfe,0x1b,0xbf,0x86,0x37,0x3c,0xf0,0x3a,0x74,0x5d,0xcb,0xcd,0xc3,0x9,0xc3,0x38,0xe2,0xd9,0x1f,0xbd,0x80,0xaf,0x7e,0xe3,0x11,0x7c,0xe1,0xeb,0x8f,0x61,0xb3,0xed,0x1,0x5,0xfc,0xf,0xff,0xfc,0xf7,0xf1,0x77,0xfe,0xfd,0x8f,0xe2,0xbe,0x7b,0xef,0x46,0xe3,0xa8,0x31,0x76,0x1c,0x27,0x3c,0xf2,0xbd,0x27,0xf1,0xa9,0xcf,0x7c,0x1,0xf,0x3f,0xfe,0x34,0xa2,0xf7,0x18,0xc7,0x1,0x4a,0x29,0x8c,0xc3,0x16,0x2f,0xbc,0x78,0xd,0xf,0x7f,0xe7,0x91,0xda,0x40,0x5b,0x44,0xcf,0x17,0xaf,0x5d,0x7,0x72,0x66,0x77,0x9a,0x5,0x32,0x15,0x79,0xf8,0x71,0x40,0xf0,0x1e,0x7e,0xa2,0x62,0x8e,0xd5,0xc1,0x11,0xfa,0xbe,0xc7,0xa3,0xdf,0x7b,0x2,0xab,0x6e,0x55,0xd7,0x5e,0x69,0x8d,0x27,0xbf,0xff,0xc,0xbb,0xff,0x48,0x34,0xb,0x7e,0xc4,0xd8,0x6f,0x0,0xa5,0x30,0x8d,0x3d,0xb9,0x17,0x83,0x47,0xce,0x2b,0x78,0x3f,0xe1,0xf1,0x27,0x9e,0xe2,0x7d,0xc1,0xb1,0x70,0x6d,0x70,0xba,0xd9,0x60,0x9a,0x26,0xe4,0xac,0x90,0xb8,0x4d,0x76,0xd8,0x9c,0x22,0x46,0x72,0xe2,0x41,0xd1,0x79,0xe5,0x94,0x30,0xe,0x5b,0xb4,0xdd,0x1a,0x7f,0xfe,0xcd,0xc7,0xf1,0x17,0x8f,0xfc,0x10,0xaf,0xbb,0xf7,0xa,0xde,0xfb,0x6f,0xbd,0x11,0x6f,0x7d,0xf0,0x8d,0xb8,0x7c,0xe9,0x10,0x6d,0xdb,0xc2,0xf0,0x3a,0x93,0x83,0x2f,0xa1,0xef,0x7,0xbc,0x74,0xe3,0x18,0xdf,0xfc,0xce,0xf7,0xf0,0xa5,0xaf,0x7f,0x17,0x2f,0xde,0xdc,0x70,0xd9,0xcc,0xec,0x56,0x35,0xc6,0xf0,0xf9,0x16,0xf7,0x63,0xc4,0xe4,0x27,0xfa,0xbb,0xd6,0x38,0x3d,0x3d,0xc1,0x77,0x1f,0x79,0x14,0xeb,0x83,0x3,0xce,0xbd,0xd3,0x7d,0x7e,0xf2,0xa9,0x1f,0xb0,0x18,0x46,0x85,0x2a,0x31,0x44,0x94,0x96,0x5c,0x3f,0x4d,0xe8,0x56,0x6b,0x24,0x2e,0x8b,0x19,0xfb,0x2d,0xae,0xdf,0x3c,0xc1,0x77,0x1f,0x7d,0x7c,0xd1,0x6,0x4c,0x9f,0xff,0xec,0xf3,0x2f,0x21,0x46,0x8f,0x94,0x23,0x14,0x17,0xbf,0x90,0xbb,0x94,0x1a,0x7d,0xa7,0xa1,0x87,0x6b,0x3b,0xf4,0x9b,0x13,0xac,0xe,0x8e,0x10,0x53,0xc0,0x77,0x9f,0x7c,0x16,0x8f,0x3d,0xfd,0xaf,0xd0,0x59,0x8d,0x37,0xbf,0xf6,0x6e,0xbc,0xf6,0x35,0xf7,0xe2,0xee,0xab,0x77,0x60,0xbd,0x5e,0x2d,0xe6,0x1e,0xd2,0xf3,0x43,0xcf,0x4e,0x86,0x2,0x39,0xf7,0x34,0x8b,0xa6,0x29,0x45,0x5c,0xbb,0x7e,0xb3,0x46,0x79,0xfd,0x34,0xb2,0xa8,0x4f,0x6b,0x3d,0x6c,0x37,0xb0,0xd6,0xd6,0x79,0x8c,0xc1,0x7b,0xb4,0xdd,0x8a,0x44,0xe5,0xa4,0x11,0xa2,0x7,0x32,0x89,0xc3,0xc6,0xd8,0xfa,0xec,0x94,0x58,0x74,0x69,0x3,0xcf,0x49,0x1c,0x80,0x82,0x20,0x8,0x82,0x20,0x8,0xb7,0x8a,0xbf,0xfe,0xcc,0x94,0x20,0x8,0x82,0x20,0x9c,0xe1,0xd2,0x5d,0xaf,0xc6,0x3b,0x3f,0xf8,0x6b,0x35,0x1e,0x19,0x43,0xa8,0x4d,0xbf,0xc5,0xee,0xa7,0x35,0xcd,0xf6,0x33,0x1c,0x47,0x35,0xce,0x91,0x8,0x58,0xbf,0x6f,0x6a,0x74,0x52,0x71,0x54,0xb4,0xb8,0x7,0xdb,0x8e,0x4,0x94,0xe2,0x1c,0xa3,0x56,0x5b,0xd,0xef,0xa9,0x75,0xd5,0x18,0x8b,0xa1,0xdf,0x0,0x0,0xc2,0x34,0x1,0xc8,0x50,0xda,0xa0,0x5b,0x1f,0x52,0x6b,0xa9,0x31,0x30,0xb6,0xe1,0x98,0xe2,0x58,0x67,0xca,0x1,0x80,0xd2,0xba,0xc6,0x63,0x8b,0x83,0xcd,0xb0,0xeb,0xd,0x2c,0x5c,0xcd,0x65,0x20,0x9a,0x44,0xa1,0x69,0xa4,0xf6,0x61,0x16,0xa3,0x4a,0x5c,0xb4,0x5b,0x1f,0x20,0xc5,0x88,0xd5,0xc1,0x25,0x74,0xeb,0x3,0x68,0xad,0x61,0x6d,0x53,0x63,0x93,0xc5,0x51,0x16,0xfc,0x88,0x7e,0x7b,0xa,0x5,0x55,0x45,0x44,0xad,0xd,0x5e,0xfb,0x73,0xf7,0xe1,0xde,0xbb,0xaf,0xa2,0xeb,0x56,0x18,0x7d,0xc4,0xb5,0x93,0x1,0x37,0x4e,0x4e,0x17,0xe2,0x9,0x45,0x6b,0xc7,0x61,0x8b,0xb6,0x6d,0x71,0xf7,0xa5,0xe,0x77,0x5c,0x3a,0x84,0x32,0x16,0x2f,0xdd,0x38,0xc5,0x33,0xcf,0xbf,0x44,0x2e,0xad,0x9c,0xa8,0x3d,0x36,0x78,0x72,0xf3,0xc5,0x48,0xf3,0x7,0x3,0x45,0x59,0x57,0x7,0x47,0x80,0x2,0x9a,0x76,0xc5,0x33,0xdc,0x22,0x34,0xcf,0xa,0x1c,0xc7,0x1e,0x63,0xbf,0xc1,0x38,0x6c,0xe1,0x9a,0xe,0x9b,0xe3,0x1b,0x68,0x57,0x2b,0xb4,0xab,0x3,0x58,0xdb,0xc0,0x3a,0x57,0xdf,0x47,0xf3,0x1,0x1b,0x4c,0x63,0x4f,0xf3,0xe0,0x34,0xb5,0xc1,0xc6,0x14,0xb1,0x39,0xbe,0x51,0x9b,0x80,0x3,0x8b,0x58,0xae,0xed,0x70,0x78,0xf9,0xa,0x72,0x4a,0x70,0x4d,0xb,0xeb,0x9a,0x1a,0xf9,0x2d,0xfb,0xa3,0x8,0xc6,0xd3,0x34,0xd6,0xf3,0x29,0x11,0xe3,0xa6,0xed,0x10,0x63,0xc0,0x1d,0x77,0xd2,0xdc,0x44,0x6b,0x1d,0x39,0xf6,0x52,0x82,0xf7,0x23,0x90,0x22,0xd6,0x4e,0xe1,0xd2,0xba,0xc1,0xe1,0xe1,0x1,0xba,0x6e,0x8d,0xcd,0x30,0x61,0xf4,0x1,0xdb,0x29,0x61,0x3b,0x7a,0x2e,0x2c,0xa1,0x7d,0x44,0x62,0x6e,0xa8,0x25,0x26,0xc1,0x53,0xb,0x35,0xcd,0xdd,0x63,0xd7,0x66,0xa6,0xe2,0x93,0xcd,0xc9,0x8d,0x3a,0x9f,0xf,0x19,0x30,0xce,0x21,0x7a,0x8f,0xc3,0xcb,0x57,0xa0,0x94,0x86,0xb1,0xe,0xc6,0x52,0xc1,0x8b,0xe7,0xd2,0x95,0xa1,0xdf,0x20,0xa7,0xb9,0xfd,0xfa,0xf0,0xd2,0x15,0x40,0x29,0x34,0x4d,0x47,0x7b,0x92,0xdd,0x86,0xc6,0x98,0x3a,0x17,0xb3,0xc4,0xc8,0x73,0xce,0xe8,0x37,0xa7,0x8,0x7e,0xe4,0x3d,0xe3,0x31,0xe,0x5b,0xdc,0x79,0xcf,0xcf,0x21,0xa7,0x84,0x83,0xa3,0xcb,0x48,0x39,0xb1,0xf3,0x94,0x84,0xbb,0xed,0xe9,0x31,0x17,0xb1,0x4,0x8c,0xfd,0x16,0xae,0x69,0xe1,0x9a,0x6,0x39,0x3,0xab,0x3,0x12,0xa6,0xad,0x73,0x14,0xd3,0x8e,0x89,0x67,0x52,0x46,0x6a,0x39,0x56,0x24,0xe4,0x3,0x19,0x63,0x4f,0xb1,0xf6,0x7e,0x7b,0x82,0x69,0x1c,0x30,0x6c,0x4e,0xe8,0x99,0x36,0x6,0x47,0x77,0xdc,0xc9,0xf7,0x8e,0xda,0x80,0x15,0xef,0xa,0x80,0x86,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x54,0x5d,0xc3,0xf2,0xd9,0xf4,0x2c,0x69,0xc4,0x48,0x71,0xf0,0xb1,0xdf,0x62,0x7b,0x7a,0x8c,0x27,0xbf,0xfd,0x65,0x6e,0x54,0x16,0x4,0x41,0x10,0x4,0x41,0x10,0x7e,0x5a,0xc4,0x1,0x28,0x8,0x82,0x20,0xdc,0x76,0xd4,0xc2,0x59,0x94,0x91,0x61,0xd8,0x55,0x97,0x91,0x61,0x8d,0x63,0x37,0x10,0x95,0x4,0x0,0xa,0x4a,0xab,0x2a,0x12,0x5a,0xe7,0xea,0x9c,0x35,0x9a,0x3b,0xc7,0xb3,0x0,0x8d,0xe5,0xf8,0x20,0x9,0x9,0x24,0x12,0xd1,0x3c,0x32,0xad,0x4d,0xa9,0x34,0x25,0xb1,0x88,0x45,0xa2,0x18,0x3,0x86,0xed,0x6,0xeb,0xc3,0x23,0x16,0xf,0x23,0x82,0xcf,0x48,0x91,0x9c,0x77,0xc5,0x21,0x38,0xe,0x34,0x8b,0x2d,0xa5,0x8c,0xbc,0x70,0x20,0x96,0xe8,0x2a,0x42,0x29,0x76,0x48,0xb5,0xe0,0x84,0xe6,0xbf,0x25,0xf4,0xdb,0xd3,0xda,0x72,0x9c,0x33,0xcd,0x75,0x2b,0xe,0x44,0x32,0x72,0x29,0xc4,0xe8,0x6b,0x43,0xb0,0x5a,0x6b,0x12,0xa7,0x0,0x72,0xf6,0x95,0xb8,0x34,0x3b,0xbc,0x0,0xba,0xde,0xc,0xe0,0xf9,0xeb,0xc7,0xb8,0x76,0xd2,0xa3,0x69,0x3b,0x12,0x95,0x78,0x1d,0x4b,0x81,0x6,0x80,0x3a,0x7,0xce,0x4f,0x23,0xfa,0xbe,0xc7,0x93,0xcf,0xbe,0x8,0x6b,0x1d,0xb,0x2f,0x8a,0xe2,0x9b,0x3e,0x20,0x6,0x8a,0xec,0x6e,0x4f,0x8e,0xd1,0x74,0x1d,0x86,0xe3,0x53,0xb4,0xab,0x3,0x9a,0x7,0xc8,0xd1,0xec,0xc8,0xf3,0xfa,0x72,0xce,0x50,0x31,0xcc,0x62,0xa1,0xa1,0xfb,0xd4,0x6f,0x4e,0x58,0x90,0x22,0x17,0x59,0xf0,0x23,0xb,0x48,0x13,0xac,0x6d,0x0,0x5,0xc,0xdb,0x53,0x16,0xe1,0x22,0x54,0x26,0x71,0x2d,0x7a,0x8a,0x46,0xa7,0x18,0xb0,0x39,0xee,0x11,0xc2,0x44,0xa2,0x63,0xce,0x38,0xbd,0x79,0x1d,0x87,0x97,0xae,0x90,0x68,0xc7,0x71,0x61,0x63,0x5d,0x6d,0x9f,0x2d,0xf7,0x22,0x6,0x8f,0x10,0x3c,0x26,0x9e,0x43,0x17,0x3c,0x45,0x6a,0xbb,0xd5,0x1,0x17,0x83,0x34,0x54,0x92,0xe1,0x27,0xfa,0x7f,0x3f,0x53,0xc2,0xf6,0xf4,0x4,0x27,0x31,0xe2,0x79,0xad,0x31,0xd,0xdf,0x47,0xd3,0xad,0xd0,0x34,0x2d,0x8c,0x6b,0x60,0xad,0x63,0x61,0x99,0x5a,0x6a,0x53,0xa,0xd0,0xda,0xd6,0x7b,0x11,0x63,0xa8,0xe7,0x43,0xd,0xb8,0x81,0xd6,0x75,0xa2,0x8,0xb3,0x6b,0x3b,0xfa,0x2c,0xa5,0xe0,0xfd,0x58,0xe3,0xc9,0x24,0x6a,0xab,0x1a,0x75,0x2d,0x31,0x59,0x72,0x17,0xd2,0x3e,0x89,0x31,0x60,0xb5,0x3e,0x44,0x8,0x1e,0xd6,0x36,0x1c,0xa9,0xd5,0xd4,0x9e,0x9d,0x81,0xc0,0x31,0x71,0xbd,0x10,0xb8,0xfb,0xed,0x29,0x52,0xa,0x55,0x94,0x53,0x5a,0x51,0x1,0x7,0xaf,0xc7,0x34,0xe,0xb0,0xae,0x21,0xb1,0x92,0x23,0xb6,0x5a,0xd3,0x3d,0xf5,0x7e,0x82,0xf7,0x23,0xef,0xdf,0x54,0x45,0xe3,0xfa,0x5c,0xf2,0x7e,0x8d,0x31,0x50,0x2b,0x71,0xce,0x73,0x7c,0x9d,0x9f,0xd3,0x71,0xd8,0xd2,0x3c,0xcc,0xc8,0xae,0x5a,0x4d,0x22,0x67,0x79,0xe6,0x94,0x36,0x24,0x1c,0x6b,0x5d,0x5,0xd5,0x39,0x66,0x4e,0xc7,0x2b,0x6e,0xd0,0x3a,0xf7,0x53,0x4a,0x40,0x4,0x41,0x10,0x4,0x41,0x10,0x6e,0x19,0x6,0xc0,0x3f,0x92,0x65,0x10,0x4,0x41,0x10,0x6e,0x27,0xed,0xfa,0x10,0xf7,0xbe,0xe6,0x81,0x2a,0x20,0xe4,0x4c,0x45,0x6,0xb3,0x30,0x90,0xeb,0xdc,0x3f,0xa5,0xe6,0x79,0x61,0x8a,0x5b,0x5f,0x8d,0x31,0x3c,0x1f,0x70,0x2e,0xe,0x59,0xa,0x7d,0xc5,0x19,0xa5,0x39,0x4a,0x48,0x9,0x5f,0x4d,0xe,0x2d,0x16,0x6e,0xfc,0x34,0x92,0x13,0x8d,0x63,0x9c,0xc6,0x3a,0xa4,0x1c,0x39,0xa,0xca,0x11,0x44,0x9e,0x23,0x37,0x7f,0x2e,0xc5,0x1a,0x63,0xa,0x24,0x5a,0x20,0x73,0x7c,0x31,0xd5,0xf3,0x6,0x17,0x33,0x94,0x8,0x67,0xce,0x89,0xca,0x1d,0x62,0x40,0x98,0x26,0xf8,0x71,0x60,0xb7,0x22,0xcd,0xb6,0x73,0xae,0xad,0xa5,0x8,0xa5,0xfc,0xc4,0x5a,0x3b,0x97,0x22,0xc4,0x8,0xcf,0xe2,0xcd,0x38,0xf4,0x18,0xfa,0x53,0xc4,0x18,0xd1,0x74,0x2b,0x72,0x7b,0xa5,0x4,0x63,0x5c,0xbd,0xe6,0x69,0x1c,0x80,0x4c,0xf3,0xd9,0x4a,0x6c,0x39,0x6,0x4f,0x11,0x62,0x16,0x56,0x8a,0x98,0x63,0x39,0xa2,0x6c,0x9d,0xab,0xae,0x3b,0x20,0x23,0x4c,0x23,0x8b,0x31,0x1e,0x9a,0x85,0x9c,0xc4,0xf7,0xa0,0x14,0x73,0x14,0xe1,0x6b,0x1a,0x7b,0xc4,0x14,0x11,0x26,0x2a,0xc0,0x48,0x21,0x70,0x40,0x15,0xd0,0x1c,0x3,0xb5,0xb6,0xa9,0x11,0xcf,0xe2,0xdc,0x23,0x17,0xa3,0x85,0x2,0xe0,0xfd,0x88,0x18,0x49,0x20,0xcb,0x89,0x22,0xd3,0x80,0x82,0x71,0xe,0x6d,0xbb,0xa2,0x7d,0xa0,0x55,0x15,0x84,0xa3,0x27,0xd7,0x20,0xcd,0x8f,0x23,0xa1,0x88,0x4,0x62,0x12,0x3a,0xb7,0xa7,0xc7,0x7c,0x9c,0x80,0xa6,0x5d,0xf1,0x75,0xa3,0x16,0x8a,0xc4,0x48,0x42,0x59,0x66,0xb5,0x36,0xb0,0x90,0x7,0x94,0x8,0x32,0xe8,0xf3,0x39,0x9e,0x1a,0xd8,0xd5,0x59,0xc4,0xad,0x10,0x26,0x12,0xa0,0xcb,0x2c,0x3f,0xbe,0xde,0xc8,0xa2,0x72,0xf4,0x53,0x75,0xcd,0x6d,0x37,0xc7,0x8,0x13,0x9,0xb7,0xd6,0xba,0xda,0xf2,0xcb,0xb2,0x57,0x8d,0x4e,0xd3,0x39,0xcd,0xfb,0x43,0x69,0x3,0xd7,0xb4,0xac,0x5b,0xcf,0xd1,0x58,0xc5,0xc3,0xfe,0xa8,0xfc,0x23,0x40,0x69,0xda,0xbf,0x0,0xf8,0x39,0x51,0xe8,0x4f,0x4f,0xd0,0x6f,0x4e,0x58,0x5c,0x8c,0x68,0xbb,0x15,0xca,0x49,0xe6,0x9c,0x58,0x0,0xe6,0x73,0xd,0xe4,0x14,0x2c,0xe5,0x3a,0x89,0x8b,0x75,0x8c,0x75,0x74,0xdf,0x72,0xae,0xd7,0x5d,0x44,0xec,0x22,0xa,0x66,0x8e,0xb5,0x47,0x2e,0xad,0x9,0x7e,0xc4,0x34,0xf4,0x18,0x87,0x2d,0x0,0x85,0xa6,0xed,0xa0,0x8d,0xe6,0xfb,0x5a,0xf6,0x41,0xaa,0x4d,0xd2,0xe0,0xc6,0x5f,0xa5,0xf8,0xd9,0xe,0xa1,0xc6,0xbf,0xa7,0x61,0x8b,0xe3,0x6b,0xcf,0x4b,0x11,0x88,0x20,0x8,0x82,0x20,0x8,0xc2,0x2d,0x42,0x1c,0x80,0x82,0x20,0x8,0xc2,0x6d,0x87,0xe2,0xa0,0xb3,0x20,0x41,0xe,0x33,0xcb,0x22,0x11,0x4b,0x1e,0x39,0x21,0x25,0x40,0x2d,0x67,0x8f,0xb1,0xc8,0x47,0x2e,0x2a,0xc3,0x26,0xba,0x44,0x45,0x22,0x4a,0x23,0x24,0x9a,0xad,0x67,0xc,0x9,0x4b,0xc5,0x31,0xa7,0x34,0xcd,0xf0,0x8b,0xde,0x57,0x1,0xc8,0x58,0x8b,0x10,0xc,0x26,0x8e,0xae,0x6,0x3f,0x61,0xdd,0x1e,0x21,0xf8,0x9,0x4e,0xb5,0x55,0xf4,0xa2,0x73,0x24,0xb7,0x5e,0x89,0x57,0x92,0x50,0x12,0x91,0x72,0x82,0x82,0x82,0x36,0xa6,0xce,0x5e,0xa3,0x76,0x5c,0x8a,0xa0,0x52,0x19,0x8,0x30,0xd,0xe4,0xfa,0xdb,0x6e,0x8e,0x49,0x5c,0x64,0x11,0x6e,0x6d,0x2f,0x21,0xe7,0x4,0x67,0x57,0xd5,0x59,0x96,0x72,0x4,0x12,0xaa,0xb0,0x64,0x8c,0xa5,0x76,0xe1,0x40,0xf3,0xf5,0x90,0x81,0x69,0xdc,0xc2,0x35,0xd,0x9a,0x76,0x85,0x10,0x2,0xc7,0x8e,0xd,0x2c,0x37,0xf1,0xe,0xdb,0xd3,0xea,0x48,0xf4,0x93,0x27,0x31,0x8b,0x65,0x24,0x12,0xfa,0x0,0xcb,0xf3,0xde,0x72,0x4a,0x1c,0x83,0xa6,0xd8,0x75,0xf0,0x53,0x8d,0x32,0x1b,0x76,0x63,0x56,0x71,0x96,0xc5,0x4d,0xa5,0x48,0xf8,0x4a,0x21,0xd6,0x16,0xda,0xcc,0x25,0x28,0x65,0x26,0xe2,0xfa,0xf0,0x88,0x7c,0x80,0x1c,0x93,0x76,0x4d,0x8b,0x14,0x43,0x15,0xe1,0x72,0x4a,0x98,0x86,0xed,0xc2,0xed,0x45,0xe,0xbf,0x10,0xc8,0xbd,0x68,0x2d,0xc5,0xae,0x43,0x24,0x41,0x51,0x1b,0x8b,0xc4,0x85,0x1f,0x89,0x67,0x3b,0x26,0x16,0xf8,0x42,0xa2,0x73,0x9e,0x86,0x9e,0xe2,0xa6,0x83,0xa5,0x36,0x69,0xbe,0x8e,0xe0,0x49,0x8,0x33,0xc6,0xa0,0xe9,0x56,0x48,0x63,0x29,0x39,0xa1,0xcf,0x9d,0xa6,0xa1,0xce,0xe4,0x2b,0x22,0x55,0x89,0x71,0x27,0x93,0x28,0x76,0x5c,0xe2,0xbc,0x89,0x5a,0x86,0x8d,0x73,0x54,0x50,0xc3,0xd7,0x52,0x1a,0x79,0x83,0xf7,0x88,0xfc,0x9a,0x69,0x1c,0x90,0x53,0xa6,0x58,0x2d,0x8b,0x85,0x14,0x29,0x6f,0x48,0x4c,0x65,0x71,0xb1,0x8,0x7c,0xe5,0x7b,0xdb,0xcd,0x9,0xb4,0x31,0x18,0xfb,0x2d,0x3b,0x18,0xc9,0x7d,0x48,0x7b,0xd7,0xd7,0x59,0x88,0x54,0xbe,0x52,0xca,0x53,0x26,0xf8,0x69,0x60,0xd7,0x6b,0xae,0x6e,0xbc,0xb6,0x5b,0xf3,0xbd,0x19,0xa1,0xd,0x89,0x8a,0xc5,0x15,0x4a,0xcf,0x18,0x3d,0x53,0x24,0xdc,0xf5,0xd0,0x5a,0xe3,0xca,0xdd,0xf7,0x61,0xec,0x37,0x88,0xde,0xcf,0xd7,0xa9,0x15,0xcf,0x3a,0xd4,0x5c,0xd6,0x41,0xfb,0x42,0x2b,0x5,0x9f,0x2,0x3b,0x32,0xc9,0x11,0x9b,0x1,0xa8,0x9c,0x31,0xe,0x5b,0x34,0x6d,0x7,0x3f,0x8d,0x68,0xda,0x8e,0xa3,0xc3,0x1a,0x5a,0xab,0xba,0xdf,0x73,0x4e,0xb5,0xcd,0x9b,0x9e,0xa3,0x81,0x1d,0x83,0x76,0x7f,0x49,0x8e,0x20,0x8,0x82,0x20,0x8,0x82,0xf0,0x57,0x42,0x4,0x40,0x41,0x10,0x4,0xe1,0xb6,0x13,0x63,0xac,0x91,0xdc,0x92,0xf2,0x2b,0x3,0xff,0x8b,0x10,0x93,0x73,0xe2,0x92,0x9,0x9a,0xad,0xa6,0x8c,0xa2,0x52,0x90,0x4c,0x4e,0x25,0xcf,0x71,0xc2,0xd2,0x3a,0xab,0x8d,0xaa,0x42,0xd,0xb5,0x8,0x93,0x48,0x64,0xac,0xad,0xe2,0x87,0xb1,0xe,0x43,0xbf,0x41,0x8a,0x11,0xe3,0xb0,0xad,0x31,0xd2,0xed,0xe9,0x31,0x56,0x7,0x87,0x18,0x7,0x4b,0xaf,0xe7,0xf8,0xa8,0x2e,0xb1,0x62,0x76,0xbd,0xc5,0x48,0x65,0xb,0x31,0x91,0x1b,0x50,0x45,0x6a,0xf7,0x55,0x91,0x1a,0x50,0x27,0x16,0x60,0x8a,0x20,0x36,0x8d,0x43,0x2d,0x2d,0xd1,0xc6,0xb0,0xdb,0xae,0x81,0xd1,0x6,0xae,0xed,0x48,0xc8,0xb4,0x8e,0x4,0xa0,0x4c,0xc2,0x64,0xca,0x9,0x4a,0x5,0x18,0xeb,0x38,0xde,0xea,0x39,0x3a,0x3c,0x2c,0xca,0x4d,0x72,0x15,0x15,0x57,0xeb,0x23,0x8a,0x51,0x6b,0x12,0xc4,0xbc,0x9f,0x90,0x41,0x25,0x1d,0x21,0x78,0x8e,0x71,0x66,0xa4,0xa8,0xab,0xfb,0xca,0x5a,0x7,0x63,0x2c,0xc6,0xa1,0xaf,0x22,0xa3,0xd2,0x6,0xfd,0xe9,0x4d,0xe4,0x94,0x31,0xe,0x1b,0x28,0x55,0x9c,0x7e,0xdc,0x6c,0xab,0x4b,0x64,0xb3,0xfc,0xdd,0x20,0x24,0x2a,0xbc,0x70,0xae,0xc5,0xb0,0xa5,0xd9,0x83,0xd6,0x35,0x5c,0xe6,0x31,0xa0,0x5b,0x1d,0xb0,0x60,0xa8,0x39,0x96,0x1b,0x69,0x96,0x22,0xb,0x48,0x25,0x42,0x9d,0xb8,0x35,0xb9,0x44,0x4b,0x9b,0xb6,0x63,0x47,0x19,0x15,0x62,0x50,0x91,0xc4,0x4,0xa5,0x5a,0xa8,0x1a,0xc1,0x2d,0xa5,0x13,0x3d,0x4a,0x99,0xcc,0xd0,0x9f,0xd6,0xa6,0x5c,0x72,0x3d,0x2,0xc6,0x3a,0x64,0xb0,0x63,0x2e,0x45,0xf4,0x9b,0x53,0x50,0x44,0x96,0xdc,0xa6,0x24,0x7e,0x52,0x64,0xb5,0xb4,0x34,0x1b,0x16,0x91,0x73,0xce,0xb4,0x2f,0xc6,0x9e,0xdb,0x7e,0x29,0x9e,0x6b,0x9b,0x66,0x21,0xfa,0xe5,0x7a,0x6f,0xfd,0x38,0xd4,0x68,0x70,0x28,0x85,0x2f,0x9e,0xdc,0x82,0x7,0x47,0x97,0xa9,0x24,0xc6,0x74,0xd5,0x89,0x49,0xf7,0xc7,0x20,0xe4,0x4,0x3f,0x8e,0xf5,0x9e,0xa4,0x3a,0x17,0x8f,0xae,0x93,0x8e,0x1f,0xea,0x1c,0xc5,0x9c,0x63,0x15,0xfa,0x8c,0x35,0xe4,0x1a,0x64,0xb7,0xe2,0xb0,0xdd,0xb0,0xd8,0x98,0x70,0x7a,0x72,0x3,0xb6,0x69,0x1,0x0,0xae,0x6d,0x31,0x8d,0x63,0x2d,0x28,0x49,0x99,0x23,0xb7,0xec,0x86,0x2d,0x25,0x26,0xa6,0x69,0xb0,0x3d,0xb9,0x49,0xed,0xd5,0x89,0xd6,0x89,0xc4,0xf6,0x8c,0x18,0xa6,0x9d,0xb2,0x1e,0x0,0xf0,0xb5,0x4,0xa7,0x44,0xd4,0x49,0x78,0x3d,0xbe,0xf1,0x22,0xae,0xdc,0x75,0x2f,0x9,0x88,0xf4,0x2,0xc4,0x14,0xd1,0x34,0x14,0x3f,0xcf,0x29,0x21,0xab,0x5c,0x5,0xfd,0x94,0x12,0xbb,0x1,0x29,0x72,0x9d,0x73,0x24,0x11,0x30,0x4e,0xf2,0x3,0x53,0x10,0x4,0x41,0x10,0x4,0x41,0x4,0x40,0x41,0x10,0x4,0xe1,0x67,0xf2,0x1f,0x1f,0xeb,0xea,0x2f,0xfb,0x5a,0x2b,0xa4,0x44,0xce,0xb5,0x98,0x68,0xce,0x5f,0xca,0x89,0x44,0x0,0x9e,0x75,0xa7,0x55,0x46,0xf4,0x1e,0xb6,0x69,0x90,0x62,0x22,0x37,0x12,0xcf,0xf,0x2c,0x42,0x4c,0x71,0xbb,0x69,0xb3,0x70,0x8,0xb2,0x40,0xe1,0x5c,0x83,0x18,0x2,0x22,0xa8,0x70,0xa4,0xb8,0xb9,0xbc,0x9f,0x6a,0xfb,0x2b,0x89,0x64,0x24,0xbc,0x68,0x57,0x62,0xaa,0x53,0x2d,0x1,0xc9,0x55,0x9c,0x20,0xb1,0xc9,0x8f,0x54,0xfe,0x41,0xc2,0x88,0x5f,0xb8,0x4,0x27,0x84,0x1a,0x89,0x9c,0x48,0xa4,0xea,0xb7,0x14,0x47,0xed,0x56,0x98,0x46,0x72,0xa9,0x69,0x63,0xe0,0x5c,0x53,0xe7,0xa3,0x65,0x2e,0x2d,0x51,0x4a,0x91,0x88,0x6,0x20,0x73,0xb3,0xaa,0xd6,0xb6,0xba,0xf0,0xfa,0xcd,0x9,0xb9,0xfc,0xfa,0x6d,0x15,0xf,0xa7,0xa1,0x7,0x5a,0xd4,0x62,0x88,0xe8,0x69,0xae,0x5b,0xc,0x1e,0xc3,0xe6,0x94,0xa2,0xa4,0x5a,0x63,0x65,0x1d,0x9a,0xa6,0x23,0x1,0x71,0x1a,0xaa,0x13,0x2d,0xf8,0x9,0x99,0x8b,0x45,0x8c,0xb5,0x55,0xf8,0x1c,0xfa,0xd,0x95,0x55,0x18,0xfa,0x9f,0xb,0x3a,0x46,0x68,0x9d,0x59,0xa8,0x23,0x51,0x2f,0xf6,0x1,0xe3,0xb0,0x25,0x81,0x12,0x40,0xbf,0x39,0x45,0xb7,0x3a,0xa0,0x59,0x74,0x2b,0xd4,0xa8,0xb0,0x1f,0x7,0xf6,0xb9,0x65,0x28,0x16,0x11,0x8b,0x90,0xa4,0x8d,0x45,0x1a,0x87,0x3a,0x6f,0x6f,0x73,0x7c,0x1d,0xab,0x83,0xa3,0xb9,0x88,0xc4,0x52,0x5c,0xba,0xcc,0x17,0x34,0xc6,0xd4,0x98,0x6e,0xc,0x1e,0xe0,0xe3,0xb7,0xdd,0x9a,0x4a,0x28,0x86,0x6d,0x9d,0x99,0x58,0x62,0xb7,0x0,0xc8,0xd1,0xc6,0xf7,0xc,0x79,0x6e,0xa0,0x4e,0x31,0x60,0x7b,0x7a,0x13,0xab,0x83,0xa3,0x2a,0xa,0x87,0xe0,0xb1,0x3a,0x38,0xa2,0xeb,0x62,0x71,0xb5,0x44,0x57,0x8b,0xdb,0xaf,0x1c,0xc3,0xf3,0x2c,0xc4,0xc4,0xd1,0xd8,0x12,0x31,0x7,0x48,0x34,0x6d,0x9a,0x8e,0x1c,0x95,0xd6,0x55,0x17,0xaa,0x31,0x80,0xce,0x34,0xfb,0x2f,0x78,0xcf,0xb1,0xde,0x48,0xe,0x3f,0x8e,0x49,0x4f,0x63,0x8f,0xa6,0x5d,0x55,0x1,0x2d,0xf3,0xde,0x2b,0xb1,0x75,0x6d,0x6c,0x8d,0x3e,0x87,0x69,0xac,0x5,0x34,0xe0,0x75,0x76,0xae,0x1,0x90,0xf9,0x79,0x42,0x6d,0x39,0x56,0x7c,0x8c,0x52,0xd4,0x61,0xac,0x45,0x7f,0x7c,0x4a,0xe,0x51,0xef,0xe9,0x19,0xab,0xf7,0xc6,0x40,0xa9,0x96,0x4d,0x8a,0xd4,0x6,0x1d,0x63,0x80,0xd1,0xf4,0x7c,0x95,0xa2,0x9c,0x94,0x62,0x75,0x43,0x46,0xef,0xab,0xf3,0x70,0xec,0x37,0xe8,0x56,0x7,0x50,0x2c,0xb2,0x52,0x6c,0x5e,0x1,0x5c,0xd8,0x13,0xb9,0xd4,0x84,0x1c,0xb5,0x79,0xd1,0x4,0x5c,0x3c,0xab,0x82,0x20,0x8,0x82,0x20,0x8,0xc2,0x2d,0xf9,0x1d,0x4c,0x96,0x40,0x10,0x4,0x41,0xb8,0xdd,0xe4,0x9c,0xaa,0x93,0xad,0x38,0x0,0x53,0x8a,0xa8,0xc3,0xe3,0x8a,0x58,0x51,0x22,0xbf,0x31,0xb2,0xf8,0x47,0xf3,0xe1,0x54,0x52,0x3c,0x8b,0xce,0xd6,0x17,0x27,0x16,0x2b,0x22,0xc7,0x4c,0x69,0xc6,0x1c,0x35,0xc6,0x96,0x19,0x82,0x34,0x6b,0x2e,0xcc,0xae,0x25,0x90,0x60,0x97,0x91,0xa1,0xc6,0x9e,0x85,0x3c,0xe0,0xf2,0x9d,0x77,0x23,0xb0,0x73,0xaf,0x88,0x85,0x54,0x3e,0xa1,0xd0,0x6f,0x4e,0xe1,0x1a,0x8a,0x89,0xe,0x27,0xd4,0x28,0x5c,0xc4,0xa0,0x52,0x4c,0x32,0x8d,0x7d,0x75,0x39,0x1,0x14,0x41,0x36,0x8a,0xe6,0xe1,0x75,0xab,0x3,0xb4,0xdd,0x8a,0xe2,0xcb,0x3c,0x47,0xad,0x14,0x8a,0x28,0x15,0xa1,0xb8,0x80,0xc1,0x35,0xed,0x4e,0x93,0xb0,0x75,0xd,0x86,0xed,0xa6,0xba,0xc7,0x4a,0xc3,0xed,0x38,0xf4,0x68,0xbb,0x55,0x8d,0x23,0x97,0x32,0x8c,0xcc,0xa5,0x19,0xc8,0xa8,0x33,0xec,0x28,0x22,0x4a,0xc2,0x9d,0x35,0x24,0xc2,0xc6,0xe0,0xeb,0x5c,0xc4,0xd2,0x50,0x9c,0x53,0xc2,0xc9,0x8d,0x6b,0x38,0xba,0x7c,0x95,0x8e,0xd5,0x6f,0xd0,0xae,0xd6,0xd0,0xd1,0x20,0x45,0x2a,0x97,0x8,0xc1,0xb3,0x20,0x47,0x11,0xd7,0x61,0xab,0x80,0x22,0xb4,0x5,0xf,0xa5,0xd6,0xd5,0xf9,0x57,0xe3,0xdc,0x5a,0xd7,0xf9,0x8e,0xa5,0xa8,0x83,0x4,0xc8,0x1,0x21,0x78,0xc,0x5b,0x6a,0x8f,0x6d,0x57,0x6b,0x84,0x10,0xb0,0x62,0xd7,0x25,0xcd,0xfe,0xcb,0x75,0xef,0xc4,0x90,0x6a,0x4c,0x19,0x0,0xcd,0x40,0x64,0x51,0x8e,0x1a,0x8f,0x57,0xb4,0x86,0xae,0x41,0xce,0x9,0xc3,0x76,0xc3,0xed,0xce,0x16,0x31,0x86,0x2a,0x50,0xd2,0xcc,0x48,0xc5,0x2d,0xb5,0x2d,0x36,0xc7,0x37,0xaa,0x0,0x45,0xeb,0x7d,0x5a,0xe3,0xa9,0xce,0x35,0x75,0xe6,0x63,0x98,0x46,0x8a,0x20,0x27,0x72,0x66,0x6a,0xad,0x30,0x8d,0x63,0x75,0x8b,0x52,0x5c,0x7b,0xac,0xd,0xca,0xde,0x4f,0x68,0xda,0x15,0x9a,0x6e,0x45,0xb3,0x11,0x59,0x48,0x4e,0x29,0x93,0x3,0xd0,0xf3,0xcc,0x46,0x6e,0x9a,0xce,0x29,0x61,0xd8,0x9e,0x56,0xd7,0xa0,0xce,0xbc,0xf,0x33,0xcd,0x9d,0xdc,0x89,0x64,0x67,0xda,0x7b,0xde,0x4f,0x50,0xda,0x60,0x38,0xb9,0x59,0xe7,0xff,0x4d,0x61,0x80,0xde,0x9c,0xe0,0xd2,0x95,0xbb,0xea,0xac,0xc4,0x9c,0x22,0x62,0x4e,0x50,0x41,0xcd,0x5,0x1f,0xb4,0xb0,0x50,0x8a,0x8a,0x5c,0xa8,0x54,0x86,0x66,0x14,0x52,0xdb,0xef,0x54,0xc5,0x61,0x5a,0xe7,0x8,0x1f,0x7,0x5e,0xcf,0xc8,0x7b,0x86,0x9a,0x87,0xe3,0x62,0x5f,0xcc,0xd,0xca,0x34,0x3f,0xd0,0x99,0xb6,0xce,0xf9,0x53,0x4a,0x41,0x19,0x43,0x73,0x39,0x13,0x95,0xe7,0x68,0xa5,0x11,0x39,0x96,0x2d,0xf1,0x5f,0x41,0x10,0x4,0x41,0x10,0x84,0x5b,0x8b,0x8,0x80,0x82,0x20,0x8,0xc2,0x6d,0x27,0x78,0xbf,0x30,0xf7,0xb0,0x30,0xc1,0x82,0x41,0x75,0x39,0x71,0x69,0x47,0x11,0x2e,0x52,0x24,0x81,0x50,0x73,0x19,0x3,0x58,0xe4,0x3,0xb,0x2a,0x31,0x45,0xa4,0xa4,0x48,0x60,0xd1,0xa6,0x36,0xd4,0xea,0x32,0xcb,0x4d,0x93,0xab,0xb0,0x8,0x60,0xfd,0xe9,0x31,0x9,0x38,0xec,0x84,0x9b,0xc6,0x1,0x4d,0xdb,0xc1,0x5a,0x87,0xed,0xc9,0x4d,0x76,0x27,0x92,0xa0,0xd5,0x6f,0x4e,0x60,0xac,0x85,0xb1,0xd,0xfc,0xd4,0x73,0x51,0x4,0x7d,0x7f,0x1c,0xe8,0xef,0xce,0xb5,0x14,0xf9,0x8d,0x1,0xd6,0x39,0xf8,0x71,0xa4,0x28,0x26,0xc7,0x7e,0x4b,0xd3,0x69,0xbb,0x5a,0xc3,0xfb,0x9,0x5a,0x69,0x64,0x6b,0xb8,0xd,0x19,0x1c,0x1,0xa6,0xa2,0x8c,0xd2,0xd6,0x6a,0xac,0x43,0xc,0x53,0x6d,0xb9,0x8d,0x81,0x66,0xbe,0xf5,0x9b,0x13,0x1c,0x5e,0xbe,0xa,0xd7,0xb4,0x24,0xdc,0x68,0xc3,0xb1,0xe7,0xb9,0x94,0x82,0x22,0xc3,0x1a,0xc3,0xf6,0x4,0xda,0x5a,0x4,0x4f,0x71,0x60,0xe7,0x5a,0x72,0x2d,0x22,0xd4,0x88,0x69,0x99,0xed,0x57,0x22,0xd7,0x9b,0xe3,0x1b,0x68,0xda,0xe,0x21,0x78,0xb8,0x94,0x90,0x55,0xc4,0xd8,0x6f,0xc8,0x9d,0x68,0x17,0x11,0x4e,0x16,0x6f,0x22,0x17,0x6a,0x24,0x6e,0xf2,0x4d,0xd6,0x92,0x13,0xaf,0x3f,0x45,0xa7,0xe,0xf9,0x7d,0x4d,0x9d,0xf,0x98,0x4d,0xe6,0xfb,0xa4,0x6b,0x5b,0xaf,0x73,0xd,0xbc,0xa1,0xf3,0x1c,0xb6,0x1b,0x0,0x80,0x5f,0x1f,0xc0,0xb5,0x1d,0x42,0x8,0x30,0x96,0xa2,0xc2,0xce,0xb5,0x34,0x67,0xae,0xcc,0x8d,0x2b,0x22,0xad,0x2,0x39,0x38,0x59,0xc,0x2b,0x73,0xee,0x9a,0x6e,0x85,0xd2,0x98,0x1b,0xb8,0xd,0x78,0xd8,0x6e,0x38,0x1a,0x9c,0x59,0x68,0x25,0xa7,0xe0,0xc0,0xc7,0x2c,0xd,0xca,0xdd,0xfa,0x0,0x9b,0x93,0x1b,0x68,0xd8,0xcd,0x46,0x42,0x98,0x66,0x57,0x2a,0x89,0xce,0x7e,0x1c,0xe0,0xda,0xae,0xce,0xe4,0x33,0xa0,0x59,0x85,0xda,0x98,0x2a,0x48,0x3b,0xd7,0x72,0x44,0x98,0x66,0xe1,0xc5,0x14,0x61,0xb5,0xe6,0x42,0x19,0x72,0x8a,0x6a,0x63,0xa1,0x53,0x42,0xe4,0xfd,0xb6,0x3a,0x38,0xaa,0x6e,0xbe,0xf2,0x3c,0x94,0x75,0x27,0x21,0x35,0x56,0x81,0x35,0x45,0xfa,0xbc,0x91,0xd7,0x8d,0xda,0x84,0xfd,0x5c,0x9c,0xc3,0x2e,0xc1,0xf2,0xcc,0x19,0x43,0x31,0x77,0x63,0x2c,0x9a,0xb6,0xc3,0x10,0x23,0x9a,0x6e,0x4d,0x65,0x20,0xbc,0x7e,0xc1,0x7b,0xac,0x30,0x37,0x4e,0x5b,0xeb,0xa8,0x34,0x86,0x67,0xe,0xa6,0x3c,0xb7,0x32,0x17,0xc7,0x2b,0x3f,0xcd,0x24,0x24,0x6e,0xb7,0x38,0x38,0xba,0x83,0x9e,0xab,0x6e,0x55,0xa3,0xd9,0x73,0x9,0x4c,0x99,0xe3,0x49,0xb3,0x18,0xc9,0x89,0x19,0xeb,0x7c,0xc3,0xf2,0x7f,0x4,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0xb7,0x6,0x11,0x0,0x5,0x41,0x10,0x84,0xdb,0x4e,0xf9,0x25,0x9f,0x84,0xab,0x5c,0xe7,0xfa,0x65,0x95,0x59,0xe4,0x33,0x48,0x91,0x84,0x1,0x70,0x5c,0x91,0x66,0xc9,0x29,0x68,0xc5,0x73,0xff,0x52,0xe0,0x39,0x68,0x40,0x44,0xa8,0xc2,0x59,0x8,0x1e,0xc1,0x4f,0xb3,0x5b,0x89,0x67,0xcd,0x15,0x87,0x53,0xc,0x1e,0x63,0x4f,0x2d,0xa5,0x34,0x67,0xd0,0x71,0xac,0x56,0xd7,0x19,0x6a,0x4d,0xdb,0xa1,0xed,0xd6,0xf0,0x89,0xe2,0xc6,0x39,0x67,0x4c,0x1b,0x2a,0xd6,0x70,0x2d,0xc5,0x21,0xfd,0x54,0x4,0x3a,0x9a,0x7b,0x36,0x8e,0x3d,0xfc,0xd8,0xa3,0xed,0xd6,0xb5,0x39,0xd8,0x18,0xb,0xbb,0x3a,0xe0,0x12,0x84,0x15,0x8b,0x66,0x34,0xf7,0xaf,0xb4,0xac,0x16,0x57,0x5c,0x11,0x66,0x8a,0x80,0xa3,0xd8,0xf9,0x8,0xa5,0xa0,0x8d,0x85,0xdf,0x9c,0xb0,0x80,0x62,0x60,0x8c,0xab,0x5,0x12,0xda,0x18,0x8e,0xbf,0xae,0xc8,0xd9,0x97,0x1b,0xf8,0x71,0xac,0x6d,0xb3,0xde,0x4f,0x58,0xb7,0x5d,0x8d,0x3e,0x9f,0xdc,0xbc,0x6,0xeb,0x1a,0x58,0xe7,0x50,0xe2,0xb4,0xc1,0x7b,0x78,0x4f,0x82,0x19,0x35,0xb8,0x2,0xe3,0xd0,0xc3,0x18,0x3a,0xbe,0x2,0x70,0x70,0xe9,0xa,0xb9,0xb7,0xb8,0x79,0x17,0xa0,0x38,0x69,0x2e,0xa5,0xf,0x50,0xd8,0x9e,0x1e,0x93,0x98,0x18,0x3,0x9a,0xa6,0xe5,0xa2,0x88,0x40,0x5,0x20,0x2c,0x30,0x96,0x36,0xe0,0x7a,0x3f,0xd9,0x9,0xe8,0xa7,0xe2,0xce,0xa4,0x38,0xe9,0xea,0xe0,0x88,0x4a,0x3d,0x5c,0x8b,0xd5,0x1,0x95,0xb3,0x14,0x7,0x5f,0x69,0x7c,0xe,0xc1,0x3,0x6,0x28,0x6d,0xc0,0xe3,0xb0,0xad,0xc5,0x2d,0x21,0x78,0xb4,0xdd,0xec,0x1c,0x8c,0x31,0xc2,0xf0,0x7c,0x3a,0x28,0x85,0x71,0xd8,0x92,0x98,0xc9,0x62,0x94,0x36,0x6,0xd6,0xb9,0xba,0x4e,0xd7,0x8f,0xaf,0x63,0x75,0x78,0x89,0x66,0x2c,0xf2,0xcc,0x45,0xeb,0x1c,0x2,0x5f,0x7b,0x69,0x9c,0x56,0x5a,0x63,0xe8,0x37,0x54,0x6a,0x32,0xe,0x55,0xb8,0xb5,0xec,0x3e,0xa4,0x59,0x82,0x9,0xc6,0x36,0xbc,0x97,0x52,0xbd,0xcf,0x4a,0x6b,0xe8,0x9c,0xeb,0xcc,0xc1,0x18,0x68,0xb6,0xe4,0xfa,0xf0,0x12,0x37,0xf4,0x16,0x11,0xdb,0xa0,0x74,0xe1,0x96,0xb8,0x78,0x6,0x90,0x73,0x80,0x85,0x43,0x8,0xa1,0xb6,0x40,0x2b,0x45,0xed,0xbb,0xc1,0x7b,0xc,0xfd,0x6,0xdd,0xfa,0x10,0xe0,0x99,0x90,0xf4,0xe7,0xb9,0x4,0x87,0x1c,0xaa,0xd4,0x2a,0xdc,0xb2,0x50,0xaa,0x0,0xde,0x23,0xe,0x9e,0xaf,0xa7,0xe9,0xd6,0x54,0x6c,0x53,0x8a,0x50,0x58,0x68,0xb6,0xae,0xa1,0xfb,0x11,0x13,0xbc,0x1f,0x11,0xc2,0x54,0x45,0xfb,0x6e,0x75,0x0,0xef,0x27,0xdc,0x71,0xe9,0xa,0xbb,0x7,0x5d,0x8d,0xea,0x97,0x39,0x81,0x29,0x25,0x28,0x0,0x29,0x65,0x28,0x8d,0x2a,0xfe,0xcf,0x73,0x0,0xa5,0x1,0x58,0x10,0x4,0x41,0x10,0x4,0xe1,0x56,0x21,0x2,0xa0,0x20,0x8,0x82,0x70,0xdb,0xd1,0x46,0x57,0x51,0xe,0x40,0x9d,0xab,0x46,0xe2,0x2,0xc7,0x7f,0x91,0xa1,0x4b,0x61,0x41,0x24,0x77,0x91,0x62,0x21,0xb0,0xcc,0x26,0x2b,0x2,0x99,0xd2,0x9a,0x66,0xbe,0xf9,0x9,0x89,0xb,0x2a,0x8a,0x5b,0xae,0xc4,0x10,0x29,0x62,0x4c,0x91,0xe3,0x22,0x24,0xf5,0x9b,0x53,0x68,0x7e,0xef,0xd0,0x6f,0x10,0x3,0xcd,0x2e,0x4b,0x29,0xa2,0xdf,0x9e,0xd4,0xb2,0x8b,0x52,0x5c,0x61,0x5d,0x83,0xed,0xe9,0x31,0xc7,0x3f,0x23,0xc7,0x3f,0x75,0x9d,0xe1,0x66,0xad,0xe3,0x79,0x68,0x89,0x9d,0x5f,0x4d,0x75,0x59,0x29,0xa5,0xa0,0x5d,0x43,0x5,0x1c,0x35,0x4a,0x99,0x60,0xb8,0x64,0xa1,0x8,0x31,0xa,0x8a,0xaf,0x97,0x64,0xb5,0xe8,0xfd,0xec,0xb8,0xe3,0xc6,0xd4,0x94,0x22,0x86,0xfe,0x14,0x6d,0xb7,0x86,0xe2,0x63,0xc7,0x14,0xa1,0x38,0xe2,0x59,0xda,0x5e,0x8f,0xaf,0xbf,0x88,0x9c,0x13,0xae,0x3d,0xff,0xc,0xe,0x2f,0x5f,0xc1,0x76,0x73,0x4c,0xf3,0x10,0x63,0x40,0xf0,0xb6,0xce,0x34,0x2c,0xe2,0xc,0x9,0xa3,0x24,0x40,0x1a,0x63,0x61,0x9d,0xc3,0xe9,0xcd,0xeb,0x68,0x57,0x6b,0xb8,0xb1,0xa7,0x6b,0xe0,0x59,0x7c,0x4a,0x93,0x30,0xa8,0xb4,0x41,0xe,0x1,0x19,0x19,0xab,0xf5,0x21,0x36,0xc7,0x37,0x60,0xba,0x15,0x32,0x0,0xd7,0x74,0xd5,0xe5,0x57,0x8a,0x3d,0xa8,0x75,0x96,0x9c,0x6d,0x29,0x25,0xe8,0x5a,0x1e,0x1,0x76,0x3a,0x6,0x72,0xc9,0x85,0x80,0x6e,0x7d,0x0,0xd7,0x34,0xf3,0xfb,0x73,0x42,0x66,0x17,0x5e,0x48,0x54,0x66,0x12,0x78,0xfe,0x62,0x4e,0x9,0xed,0xea,0x0,0xe3,0xf0,0x62,0x15,0xf1,0xb6,0xa7,0x1,0xd6,0xb5,0x70,0x4d,0xb7,0xb3,0xff,0x62,0xf0,0x14,0x63,0x2e,0x2e,0x38,0x76,0xa8,0x75,0xeb,0x43,0xf8,0x71,0xc4,0xcd,0xeb,0x2f,0xa0,0xe9,0xd6,0x8,0xd3,0x88,0xc9,0x18,0x0,0xab,0x9d,0x59,0x8f,0xc1,0x4f,0x24,0x7e,0xf1,0xdf,0x8d,0x73,0x34,0x87,0x11,0x14,0x3,0x6f,0x57,0x6b,0xb8,0xb6,0xe5,0x52,0x90,0x48,0x45,0x26,0x39,0xf3,0x7a,0xe9,0x2a,0x7c,0x99,0xb2,0x9f,0x39,0x3e,0x1e,0x82,0x47,0x98,0x46,0x8c,0xfd,0x96,0x1c,0x80,0x5c,0x92,0x32,0x8d,0x3,0xba,0xf5,0xc1,0x3c,0x83,0x92,0x9f,0x19,0x63,0x48,0xb0,0xac,0xf3,0xc,0xd9,0xf9,0x1a,0x63,0xa4,0x12,0x18,0x3f,0xd6,0xb9,0x8a,0xf4,0xbc,0x24,0x38,0x47,0x4e,0x42,0xd,0x9a,0xe1,0x97,0x22,0x89,0x8e,0xc1,0x53,0x4c,0x5c,0x69,0xd,0xd7,0xb4,0xe8,0xb7,0xa7,0x34,0xd7,0x90,0x1d,0x8a,0x50,0xa,0x4d,0xd3,0x41,0x1b,0x5d,0xe3,0xd3,0x39,0xd1,0xc,0x43,0x8a,0x9a,0x27,0xc,0xfd,0x96,0xe6,0x3d,0xfa,0x9,0xeb,0x83,0x23,0xba,0xbe,0x18,0x90,0x73,0x53,0x67,0x20,0x16,0x32,0x97,0xf4,0xd0,0x79,0x53,0x2b,0x78,0x71,0x9,0x96,0xfb,0x59,0xe7,0x3,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x3f,0x35,0x6,0xc0,0x3f,0x92,0x65,0x10,0x4,0x41,0x10,0x6e,0x27,0xcd,0xea,0x0,0xf7,0xbc,0xe6,0xf5,0x35,0xe5,0xb7,0x9c,0x43,0x56,0xdc,0x5c,0x65,0xc6,0x5a,0x11,0x4d,0x8a,0x68,0x34,0x47,0x20,0xd3,0x4e,0x47,0x40,0x4e,0x24,0x6,0x96,0xc6,0xd2,0x94,0x62,0x75,0x5a,0x19,0x43,0xb3,0xde,0x3c,0x97,0x72,0xc4,0x30,0xcd,0x25,0xd,0x29,0x61,0x9a,0x46,0x9a,0xeb,0xc7,0x42,0x9b,0x9f,0x26,0x84,0x69,0xe2,0x48,0x6b,0xac,0x82,0x44,0xc,0x13,0xcd,0x11,0xc,0x81,0xcd,0x89,0x19,0xe0,0xe2,0x8e,0x9c,0x32,0xc7,0x16,0x49,0x6c,0x69,0x5b,0x9a,0xcb,0x47,0x25,0xa,0xec,0x6,0xe4,0x42,0x8a,0x12,0xe9,0xa4,0x2e,0x4,0x3b,0xb,0x8d,0xa5,0x4c,0x82,0x67,0x16,0xd6,0xd6,0x57,0x16,0xfd,0x82,0xf7,0x18,0xc7,0x9e,0x85,0x47,0x83,0xf5,0xe1,0x25,0x76,0x4f,0x69,0x16,0x93,0x2,0x2d,0x61,0x46,0x8d,0xab,0x96,0xf6,0xe0,0xd3,0x9b,0xd7,0xa0,0xa0,0xe9,0xf3,0x12,0xb5,0xc7,0xc6,0x40,0x8d,0xb6,0xb4,0x56,0xe4,0x4,0xc,0x7e,0xc2,0xd8,0x53,0x14,0x74,0x73,0x72,0x3,0x77,0xdc,0x75,0xf,0x8b,0xab,0x9e,0x4b,0x43,0x34,0xb,0x84,0x74,0x7e,0xd3,0x38,0xd4,0xa2,0x13,0x6a,0xc9,0xf5,0x88,0x31,0xee,0x44,0x58,0xad,0x73,0x34,0x3b,0x8f,0x9d,0x91,0xe0,0x19,0x70,0x60,0x21,0x8b,0x44,0xae,0x7e,0x6e,0x3c,0x1e,0x6,0xac,0xf,0x8f,0xa0,0xcb,0xfd,0xb3,0x16,0xa8,0x11,0x52,0x72,0xde,0x51,0x71,0x72,0x9e,0xdb,0xa3,0x53,0xa2,0xf7,0x27,0x8a,0xda,0x2,0x19,0x4d,0xbb,0x82,0x31,0xb6,0xa,0x70,0x25,0xc2,0xaa,0xb5,0x99,0xb,0x64,0x38,0x1e,0x5c,0x4a,0x69,0x72,0x8a,0x68,0xbb,0xf5,0xdc,0xe4,0x3c,0xc,0x3c,0x3b,0x32,0xe2,0xf4,0xf8,0x3a,0xca,0xcc,0xc3,0x7e,0x73,0x52,0xf7,0x2d,0xc5,0x84,0x57,0x35,0x92,0x8c,0xcc,0x73,0x1f,0xad,0xad,0xf3,0x22,0xa9,0xa5,0x57,0x41,0x2b,0x72,0x1a,0xd6,0xf9,0x7d,0x8a,0xe2,0xda,0xb4,0xdf,0xe8,0x33,0x2c,0x97,0xbb,0x34,0x4d,0xc7,0x6d,0xd0,0x8a,0x8f,0x5b,0x4,0x73,0x50,0x43,0x2f,0xb,0xbf,0x85,0x30,0x51,0xe3,0x70,0xe2,0xf2,0x18,0xeb,0x1a,0x28,0xa5,0x59,0x74,0x76,0xa0,0xa5,0xa7,0x22,0xe,0xcd,0xa2,0x73,0x4e,0x34,0x4f,0xb1,0x1c,0x3f,0x6,0xcf,0xa2,0x69,0x83,0xa1,0xdf,0x50,0x64,0x1c,0xa8,0xb1,0xeb,0x69,0x24,0x87,0xa6,0x9f,0x46,0x6e,0xba,0xde,0x22,0x85,0xc0,0xd7,0xa2,0xe0,0x27,0x2a,0x4d,0x89,0xc1,0xa3,0xe9,0xd6,0x70,0x4d,0x57,0x9b,0xa7,0x15,0x4a,0x79,0xf,0xaa,0x93,0x94,0xce,0x63,0x4e,0xfc,0x96,0x56,0xe8,0x69,0x1a,0x71,0xf3,0xa5,0x1f,0x1,0xe2,0x2,0x14,0x4,0x41,0x10,0x4,0x41,0xb8,0x25,0x88,0x0,0x28,0x8,0x82,0x20,0xdc,0x76,0x9a,0xee,0x0,0xf7,0xde,0xff,0x7a,0x16,0x1,0x52,0x15,0x71,0xa0,0xe6,0x99,0x67,0x6c,0x88,0x43,0x19,0x90,0x57,0x5c,0x7c,0xc5,0x21,0x47,0x2,0x94,0x86,0xd2,0xb3,0x90,0x54,0xc4,0x29,0x12,0x9,0x8b,0x80,0x46,0x82,0x5e,0x11,0xd9,0x8a,0x6b,0xaf,0x3a,0xb,0xc9,0x4e,0x55,0x9d,0x7a,0xc5,0x6d,0x65,0x9b,0x6,0xd6,0x36,0x24,0x50,0x54,0xe1,0x85,0x4,0xb4,0x12,0x49,0xe6,0xfc,0x22,0xac,0x73,0x35,0x42,0x9a,0x52,0x82,0x73,0xd,0xc6,0xa1,0x47,0xb7,0x5a,0xc3,0x58,0x87,0xb6,0xce,0x40,0xa3,0x59,0x87,0x25,0xe,0x4c,0xa2,0x8c,0xaa,0xc2,0x87,0x52,0xa8,0xe2,0x18,0xcd,0x94,0x8b,0xf5,0x9a,0x12,0x97,0x27,0xa4,0x18,0x59,0x14,0x32,0x2c,0xf0,0x28,0x12,0x69,0x16,0x82,0x27,0xf8,0x38,0x45,0x4,0xf3,0xd3,0x48,0xf3,0xf3,0x9a,0x86,0x67,0x6,0x92,0x18,0xb7,0x3a,0xbc,0x34,0xb7,0xf1,0xe6,0x79,0xe,0x5b,0x29,0xd3,0xe8,0xd6,0x87,0x55,0x24,0xa3,0x88,0xa8,0xaa,0x6e,0xc6,0xe2,0x16,0x3,0x28,0x2e,0x5c,0x4a,0x32,0x0,0xa0,0x5b,0x91,0x73,0x4f,0x1b,0xb,0xc3,0x45,0x1b,0x14,0x2f,0x55,0x55,0xbc,0x2b,0x82,0x1e,0xb9,0xfe,0x22,0x8c,0x21,0x71,0xae,0x38,0xef,0xc8,0x41,0xd8,0x42,0x6b,0x8d,0x6e,0x75,0x0,0x0,0x55,0x2c,0x42,0x6,0x37,0xe0,0xfa,0xfa,0xb5,0xe2,0xf0,0x4,0xb,0x8a,0xd6,0x35,0xb0,0x4d,0x53,0x9d,0x99,0x0,0x38,0xf6,0x9a,0xab,0xf3,0x2e,0xa5,0x44,0x4d,0xc3,0x31,0xb0,0x8,0x66,0x91,0x72,0x69,0x90,0xa6,0xf8,0xf8,0x6a,0x7d,0x48,0xe,0x45,0x76,0xe9,0x35,0x4d,0x57,0xc5,0xe5,0xd2,0x80,0x6b,0x5d,0xcb,0x22,0xac,0xad,0xc2,0xad,0x6b,0x28,0x8e,0x5e,0x44,0x48,0x5b,0xbf,0x47,0xbb,0x20,0xc6,0x40,0x22,0x77,0x8c,0x1c,0x59,0x77,0xd5,0xd9,0xea,0x5c,0x5b,0x5d,0x89,0xc6,0x58,0x28,0x6d,0xa0,0xed,0x1c,0x39,0x56,0x4a,0xd7,0x22,0x1b,0x63,0x2c,0x95,0xd9,0x4,0x2a,0x92,0x29,0x73,0xe,0x8b,0x8,0xdd,0x76,0xab,0x1a,0x15,0x6f,0x9a,0x15,0xdf,0xe3,0x54,0xdb,0xb3,0x67,0x15,0x1e,0x3c,0xdf,0x90,0xa,0x66,0x90,0x1,0x6d,0xd,0x89,0xa6,0x39,0xc1,0x35,0x34,0xe3,0xb2,0x5b,0xad,0xab,0xf0,0x4e,0x65,0x3b,0xb3,0xc8,0x6d,0x1d,0xcd,0xa4,0x2c,0xcd,0xce,0x6d,0xb7,0x5a,0xec,0x53,0x5d,0xf7,0x2b,0x3f,0x4c,0xf4,0x3c,0xa4,0x5c,0xb6,0x42,0xbd,0x27,0x29,0x45,0x4c,0xc3,0x16,0xc7,0xd7,0x5e,0x40,0xce,0x52,0x6,0x22,0x8,0x82,0x20,0x8,0x82,0x70,0x2b,0x10,0x1,0x50,0x10,0x4,0x41,0xb8,0xed,0xb8,0x8e,0x1d,0x80,0x4a,0xcd,0xe2,0x1f,0xab,0x10,0x25,0xde,0x48,0x4e,0x31,0xd4,0x28,0x60,0x4e,0x89,0x5,0x24,0x5,0xcd,0x2e,0x32,0x0,0x73,0xd3,0x2e,0x66,0x27,0xa1,0x2e,0xf3,0xcd,0x32,0x17,0x45,0xb0,0x40,0x1,0x14,0xa1,0x90,0xa2,0x89,0x4a,0x69,0xa4,0x18,0xb0,0x5a,0x1f,0x56,0xc7,0x56,0xb7,0x3e,0x84,0x63,0xa1,0x82,0xc4,0xa1,0x88,0xa6,0x69,0xc9,0xbb,0xa4,0x55,0x3d,0x37,0xad,0x35,0xd6,0x87,0x97,0xb9,0xbc,0x83,0x62,0xab,0xda,0x58,0xb8,0xa6,0x45,0xd3,0x74,0x70,0x5c,0x28,0x52,0x9c,0x4e,0xd6,0x35,0x50,0x50,0x54,0x8,0xc2,0x4e,0xac,0xa5,0xab,0xb1,0x8,0x59,0x9a,0x5,0x9e,0xcc,0xe2,0x54,0x8a,0x91,0xe6,0x1e,0x1a,0xb,0xcd,0x9f,0x6f,0x8c,0x41,0xb7,0x3a,0x20,0xc1,0xac,0xed,0x48,0xdc,0xe9,0x56,0xd5,0xc5,0x56,0xae,0xb3,0x94,0xad,0x28,0xa5,0xd0,0xae,0xd6,0xb0,0xb6,0x81,0x6b,0x1a,0x3e,0x17,0x5a,0x33,0xeb,0x5c,0x6d,0x78,0xa5,0xb2,0x8,0xd,0x6d,0x34,0xda,0x6e,0x55,0x1d,0x7f,0xd6,0x36,0xec,0x66,0x6b,0xb9,0x95,0x97,0x67,0x34,0xf2,0xfd,0x29,0xad,0xc0,0xd1,0x4f,0xb0,0x4d,0xc3,0x33,0x1e,0xc9,0x71,0xa7,0x8c,0x86,0xd1,0x54,0x2e,0x62,0x8c,0x81,0x36,0x16,0x21,0x4c,0x28,0x2a,0x52,0x11,0x70,0x69,0x4e,0x9e,0x3,0x32,0x89,0x47,0xd6,0x36,0xd0,0xda,0x70,0x64,0x39,0xc2,0x35,0x6d,0x9d,0xc7,0xa8,0x8d,0xa9,0x2d,0xb1,0x45,0x2c,0x2d,0xb3,0x1e,0x73,0x2a,0xd1,0xd2,0x84,0x30,0x4d,0x5c,0x2,0x2,0x3e,0xa6,0xdd,0x71,0x9d,0xa1,0xcc,0x86,0x64,0x7,0x60,0x4e,0x91,0xe3,0xd0,0x74,0x4d,0xae,0x69,0x69,0xbf,0xba,0xa6,0x3a,0x2e,0x95,0x2,0x62,0x88,0xb3,0x88,0x9c,0x12,0x9a,0xb6,0xa5,0x92,0xc,0x47,0x2,0x6b,0x99,0xb5,0xe7,0x9a,0x96,0xd6,0xd8,0x3a,0x18,0xfe,0x5e,0x11,0x78,0x97,0x7b,0xdc,0x18,0x5b,0xf7,0x63,0x89,0xa7,0xaf,0xd6,0x87,0x74,0x1e,0x6d,0xcb,0x8d,0xd7,0x86,0x85,0x6d,0x72,0x9b,0x6a,0x76,0xba,0xd2,0x3a,0xd0,0x1a,0x96,0x16,0x6a,0x80,0x22,0xdc,0x21,0xfa,0xfa,0x67,0xdb,0xb4,0xb5,0x74,0xa3,0x14,0xa7,0x50,0xc,0x1f,0xf5,0x3e,0x94,0x73,0x4a,0x31,0xf0,0x9a,0x19,0xb8,0xa6,0x83,0xb5,0x16,0x4a,0xab,0xba,0x6f,0xc0,0xcf,0x46,0x71,0xe6,0x96,0x79,0x94,0xc6,0xba,0x1a,0x3f,0xbf,0x74,0xc7,0x9d,0xdc,0x56,0xdd,0x56,0xa1,0x7b,0x29,0x34,0x53,0xd,0x36,0x76,0xdc,0x9c,0x65,0x2e,0x60,0x4a,0x1,0xde,0x7b,0xdc,0x7c,0xe9,0x39,0x99,0x3,0x28,0x8,0x82,0x20,0x8,0x82,0x70,0x8b,0x10,0x1,0x50,0x10,0x4,0x41,0xb8,0xed,0xb8,0x76,0x8d,0x7b,0xef,0x7f,0x7d,0x75,0x1,0x55,0x1,0x80,0x24,0xbe,0x4a,0x71,0x9a,0xd5,0x88,0xb0,0x2,0x4c,0x99,0x41,0xc7,0xee,0x29,0xd6,0x4,0xb9,0x54,0x42,0xcf,0x8e,0xba,0x18,0xd9,0x2d,0x35,0x8b,0xe,0x65,0x8e,0xde,0xd2,0x49,0xd6,0xae,0x56,0x54,0x3a,0xb1,0xa6,0xb6,0x5a,0xc3,0x8e,0xa5,0x22,0x9c,0x39,0xc7,0x11,0x59,0x6b,0x61,0x5d,0xc3,0x73,0xed,0xc,0xb7,0x2,0x93,0xe0,0x71,0x70,0x74,0x19,0xd4,0x30,0x6c,0xd0,0xb4,0x2b,0x9e,0x49,0xc8,0x71,0x55,0x70,0x4,0x19,0x60,0xe7,0x9e,0x66,0x7,0xa3,0x65,0xb7,0xda,0xdc,0x82,0x5a,0xdc,0x8b,0xd4,0xe8,0x4b,0x11,0x67,0x63,0x2c,0x52,0x8e,0x75,0x4e,0x5c,0x59,0x8a,0xea,0x72,0x63,0x77,0x55,0x71,0x74,0x15,0x17,0x5f,0x11,0x96,0x82,0x1f,0xab,0x10,0x69,0xac,0x85,0x56,0x24,0x24,0x59,0xd7,0x90,0xd3,0xab,0x14,0x63,0x64,0x12,0x3,0x49,0x74,0xe4,0x52,0xc,0x4b,0xa2,0xa5,0x6b,0xbb,0x3a,0x2b,0x11,0x0,0x8c,0xb6,0xe4,0xae,0xe3,0xb9,0x73,0x21,0x78,0x28,0xad,0xaa,0xd0,0x43,0xeb,0xd4,0x2c,0xd6,0xa1,0xb8,0x5,0x15,0x72,0x9e,0x9b,0x8e,0x4b,0xe1,0x43,0x89,0x68,0x17,0x1,0xab,0x44,0x60,0x8b,0xb3,0x52,0x29,0xbd,0x10,0xea,0xaa,0xf6,0xbb,0x73,0xaf,0x8b,0x53,0xb3,0x36,0xfb,0xc6,0x80,0xb6,0x5b,0x93,0xf0,0xc7,0x22,0x67,0x11,0xaf,0xca,0x1c,0xc3,0x22,0x36,0x92,0x3b,0x54,0x55,0xf1,0xb4,0xb8,0x4,0x33,0x32,0xac,0xb5,0x70,0x6d,0x37,0x3b,0x33,0x91,0xb1,0x3a,0x38,0x24,0xe7,0x1a,0x9f,0x6b,0xdb,0xad,0x6a,0x5b,0x35,0x5d,0xb7,0xaa,0xa5,0x27,0x4d,0xb7,0x42,0x8c,0xe4,0x5c,0xd5,0x86,0x84,0xe9,0x12,0xb7,0x2d,0xf1,0x67,0x5a,0x1f,0x33,0xc7,0xdd,0x8d,0x41,0x8c,0x91,0x84,0x37,0x68,0xfa,0xfc,0xf2,0x3c,0x70,0x34,0x9e,0x4e,0x74,0x16,0x51,0x15,0x48,0x8c,0x35,0xfc,0x19,0x25,0xd6,0x4d,0x31,0xdc,0x96,0x4d,0xa1,0x8a,0x9b,0x83,0x2d,0x52,0x5e,0xb4,0x6e,0x73,0x21,0x4b,0x69,0x15,0x36,0xc6,0xf1,0xc,0xc8,0x86,0x22,0xf0,0xc8,0x30,0x86,0xee,0xad,0xb6,0x96,0x5d,0x7d,0x14,0xeb,0x2e,0xa5,0x3c,0xc5,0xad,0x99,0x53,0x42,0xd3,0xad,0x77,0x5a,0xa5,0xcb,0xf7,0x4a,0xb,0x77,0xbd,0x81,0x40,0x75,0x8d,0x96,0xe7,0xb1,0xb8,0x5d,0xc7,0x61,0x8b,0xe3,0x1b,0x37,0x90,0x93,0x97,0x1f,0x98,0x82,0x20,0x8,0x82,0x20,0x8,0xb7,0x0,0x11,0x0,0x5,0x41,0x10,0x84,0xdb,0x4e,0xb3,0x3e,0xc4,0x7d,0xf7,0xbf,0x61,0x16,0xae,0xb8,0xed,0xb7,0xb8,0x81,0xaa,0xfb,0x2f,0x67,0x12,0xa3,0x4a,0xcc,0x97,0x5,0xb5,0x2a,0xfe,0x14,0x21,0x88,0xdd,0x79,0x69,0x29,0xb4,0xe4,0x54,0xc5,0x36,0x2a,0x47,0xf0,0xb3,0xcb,0x28,0x46,0x2e,0xcb,0xb0,0xd5,0x5d,0x5,0x28,0x34,0xdd,0x9a,0xe3,0xbd,0x11,0xed,0xea,0x80,0x5c,0x56,0x0,0xd6,0x7,0x47,0xc8,0x19,0x68,0xda,0x96,0x1d,0x5e,0x7,0x75,0x6,0x9b,0x6b,0xa8,0x54,0xa3,0x6d,0x29,0x22,0x5b,0x22,0xcd,0xda,0x18,0x2a,0x54,0x60,0xf7,0x98,0xd2,0x6,0xd6,0x59,0x12,0xf5,0xac,0x65,0xe1,0x83,0x8b,0x21,0x14,0x17,0x33,0x9c,0x69,0x4,0x56,0xaa,0x88,0x5b,0xa5,0xf5,0x98,0x5a,0x74,0xdb,0x76,0x35,0x3b,0xa9,0x80,0xea,0x3c,0xd3,0xdc,0x1c,0x4c,0x82,0xd0,0xbc,0x66,0x5a,0x6b,0x18,0x47,0xcd,0xc1,0xe4,0x6c,0xa4,0x48,0x6c,0x99,0xa7,0x58,0x44,0x27,0xad,0x54,0x75,0xd9,0x39,0x47,0x42,0x56,0x89,0xd0,0x16,0x61,0xcf,0xba,0xb6,0xba,0xc8,0x32,0x8b,0x86,0xe4,0x1c,0x24,0x61,0xb1,0xe3,0x75,0x5b,0x8a,0xb1,0x86,0xa3,0xc0,0x39,0xc5,0xea,0x38,0x2b,0x8e,0x3d,0xad,0x15,0x52,0x4e,0xb3,0x18,0xc5,0xe,0xbd,0x72,0xc,0x6a,0x3d,0xb6,0x74,0xaf,0x94,0x66,0xd3,0x5e,0xe6,0x75,0x2a,0x2,0x98,0xae,0xc2,0x5a,0x99,0xf,0x69,0x17,0xc2,0x6d,0x11,0xac,0x42,0xc,0xb5,0x54,0xc4,0x1a,0x8b,0xc,0x12,0x27,0x63,0x8,0x73,0xc4,0x5c,0x1b,0x0,0xb9,0xa,0x83,0x45,0x50,0x73,0x4d,0xbb,0x23,0x5c,0x36,0xed,0xaa,0x3a,0xe1,0x8a,0xc0,0x68,0x5d,0x53,0x23,0xba,0xd,0x17,0xa0,0xcc,0x28,0x64,0x16,0xae,0xab,0xf5,0x8d,0x85,0x6b,0x63,0x1d,0xa2,0xf7,0xec,0xc2,0x23,0xb1,0xd3,0x5a,0xba,0xe6,0xb2,0x57,0x2c,0x3b,0x13,0x67,0xcb,0x1e,0x6a,0x81,0x48,0x79,0x66,0xca,0xb9,0x6a,0x6b,0xeb,0xb3,0x55,0xf6,0xb7,0xb1,0xae,0x8a,0xe4,0xe4,0xa0,0xcc,0x3b,0x45,0x3c,0x39,0x53,0xfc,0x96,0x84,0x49,0x50,0x1c,0x3f,0x27,0xa4,0x18,0xd8,0x1,0x4a,0xa2,0x37,0x30,0x47,0xb3,0xcb,0x3c,0xc7,0xa6,0xa3,0x98,0x73,0x11,0xd,0x15,0xaf,0x37,0x89,0xe4,0x76,0xc7,0x95,0x5a,0xdc,0xa1,0xf5,0xd9,0xe5,0xf5,0x28,0xe3,0x0,0x52,0x8c,0x48,0x39,0x62,0xea,0xb7,0x38,0xbe,0xfe,0x2,0x72,0xa,0xf2,0x3,0x53,0x10,0x4,0x41,0x10,0x4,0xe1,0x16,0x20,0x2d,0xc0,0x82,0x20,0x8,0xc2,0x6d,0xa7,0x3a,0xad,0xe6,0xca,0xdf,0x2a,0x10,0xe4,0xcc,0xa2,0x6,0x54,0x15,0x23,0x72,0x15,0x79,0x22,0x12,0xb,0x68,0x69,0x47,0x4c,0x41,0x15,0x71,0x68,0xe6,0xdf,0xc0,0xa2,0x6,0x39,0xb9,0x42,0x98,0xaa,0x23,0xaf,0x88,0x10,0x74,0x3c,0x6e,0xcd,0x65,0x17,0x5b,0x71,0x2c,0x35,0xed,0x8a,0xdc,0x68,0x4a,0xb1,0x4b,0xe,0xd5,0x8d,0x6,0xa0,0x36,0xbd,0x52,0xcc,0x76,0x82,0x73,0x1c,0x8d,0x65,0xd1,0x4f,0x29,0xc5,0x8e,0x34,0x20,0x46,0x5f,0x5,0xca,0xcc,0xc5,0xf,0x3a,0xa1,0x8a,0x5e,0x7c,0xa2,0x34,0x2b,0xf,0xb9,0x46,0x1e,0x73,0xa2,0xb5,0x50,0xec,0x56,0x2b,0xc2,0x4e,0x89,0xfe,0xb6,0xab,0xf5,0x4e,0x9c,0x93,0x4,0xaa,0x54,0x5d,0x77,0xe5,0xcf,0xae,0x69,0xe0,0xa7,0x11,0x3a,0x65,0x98,0xa6,0x85,0xf7,0x54,0x7e,0x2,0x6d,0x6a,0x24,0x97,0xe2,0xbf,0x1e,0x50,0x1a,0x46,0x1b,0x74,0xeb,0x83,0x3a,0x6f,0xd1,0xa6,0x58,0x63,0xa6,0x86,0x8b,0x2c,0x22,0xe6,0xfb,0x54,0xb,0x4d,0x74,0x11,0x96,0x52,0x2d,0xef,0x28,0x6b,0x5b,0x9c,0x8e,0x24,0x18,0x69,0x68,0xd6,0x9d,0x62,0xf0,0x0,0xf8,0x98,0x29,0x50,0x49,0x4a,0x15,0x43,0x4d,0x8d,0x61,0x2b,0x28,0x36,0x8d,0x65,0x12,0xa6,0x52,0xac,0x9,0x52,0xcd,0xfb,0x82,0xf6,0xf,0x47,0xbc,0x8d,0xa5,0x32,0xf,0x2e,0xff,0x28,0xb1,0x5a,0x63,0x6c,0x8d,0xef,0x52,0x2b,0xaf,0xa2,0x42,0x97,0x22,0x40,0x43,0xd1,0x5c,0x41,0x4d,0xf1,0xda,0x52,0x9c,0x81,0xc5,0x7c,0xc9,0xe2,0x4a,0x4d,0x21,0xa0,0x69,0x5b,0x28,0x45,0xf7,0x4d,0x19,0x12,0xc3,0xc8,0x5d,0xd9,0x22,0x86,0x9,0xae,0x69,0x91,0x12,0x9,0x95,0x5a,0xab,0x3a,0xe3,0xb2,0x14,0xcb,0x14,0x11,0x2d,0xc5,0x50,0xc5,0x3f,0xfa,0x5c,0xcb,0xeb,0x6d,0xea,0xcc,0xc7,0x39,0x22,0x4b,0xf3,0x12,0x6b,0x79,0x9,0x66,0x41,0xb4,0xc4,0xd8,0x49,0x38,0x8f,0x68,0xd7,0x7,0xd5,0xdd,0x57,0x9e,0x3b,0xa5,0x14,0xfc,0x38,0x50,0x4c,0x1e,0xb9,0xbe,0x1f,0xbc,0x96,0x89,0x4b,0x41,0xca,0x73,0xd7,0x74,0x6b,0xbe,0x97,0x24,0x6,0xba,0xf5,0x21,0xa2,0x9f,0x10,0x53,0x46,0xd3,0xad,0xb8,0x70,0x24,0xef,0x88,0x8e,0x8a,0x67,0x23,0x6a,0x63,0xa0,0xb5,0xad,0x51,0x7c,0xd4,0xb6,0xef,0x22,0x80,0x9e,0x99,0xd,0xa9,0x96,0x33,0x22,0x21,0xe2,0x9f,0x20,0x8,0x82,0x20,0x8,0xc2,0x2d,0x44,0x4,0x40,0x41,0x10,0x4,0xe1,0xb6,0x43,0x42,0x1f,0xaa,0x9b,0xab,0x94,0x7c,0x94,0x98,0x67,0x4e,0xb9,0x3a,0x93,0xca,0x9c,0x36,0x6a,0xbb,0x55,0xd0,0xa,0x35,0x36,0x39,0xb,0x29,0x2c,0xbc,0x71,0x3,0x2f,0x9,0x20,0x1,0x19,0x99,0xb,0x10,0x48,0xd8,0x2b,0x8d,0xa9,0x8a,0xa3,0x88,0x21,0xfa,0xfa,0x7a,0xc3,0xae,0xc1,0x22,0xf6,0x90,0xc8,0x98,0xd8,0x15,0xa6,0x61,0x94,0xe2,0x98,0x26,0x8b,0x7b,0xb5,0x90,0xc3,0xb2,0x3b,0xb0,0xab,0xed,0xab,0xc6,0x90,0xc3,0x8e,0xa2,0xa0,0x9a,0xc5,0x15,0x53,0xe7,0x18,0xe6,0x9c,0xc8,0x11,0xc7,0x91,0xd5,0x9c,0x32,0x32,0xc8,0x9d,0x45,0x62,0x5c,0x24,0x81,0x10,0xa0,0xf9,0x77,0xae,0x1,0x1c,0xb5,0x14,0x27,0x8e,0x8,0x1b,0xeb,0x90,0x62,0x69,0x4f,0x6,0xcd,0xe4,0xab,0x8e,0x38,0x3a,0x36,0x52,0x5e,0xcc,0xd6,0x9b,0xc5,0xb1,0xd2,0x70,0x5b,0x84,0xd4,0x65,0x21,0x49,0x71,0xbb,0x4d,0x63,0x5f,0x8b,0x21,0xc0,0x33,0x13,0x43,0x98,0xa8,0xd4,0xa2,0x34,0xf9,0x2,0xb5,0x88,0xa3,0xc6,0x48,0x8d,0xa9,0x5,0x17,0xda,0xba,0x79,0x4e,0x9d,0xd2,0x7c,0x4b,0x53,0x15,0xe8,0x8a,0x80,0x45,0x82,0x9f,0xad,0xe,0x3c,0x3,0x20,0xa6,0x58,0xe7,0xff,0xb1,0xa2,0x49,0x2e,0xbd,0xe0,0xe7,0x46,0x60,0x6e,0xed,0x2d,0x42,0x70,0x2a,0x2e,0xc8,0x14,0x90,0x39,0x92,0x1d,0x82,0xa7,0x48,0x34,0x69,0x4a,0xd0,0x66,0xfe,0xcc,0x32,0xf,0x12,0x35,0x56,0x9b,0x77,0x5c,0x98,0x5a,0x2b,0x16,0x33,0xcb,0xec,0xc5,0x34,0xaf,0x1f,0x32,0xac,0x69,0x6a,0xe3,0x6d,0xb9,0xf,0xf4,0xf9,0x91,0x44,0xc0,0x32,0x97,0x30,0x67,0x12,0x40,0xd9,0xa9,0x88,0x85,0x7b,0x13,0x0,0x17,0xc7,0xb4,0x55,0xf8,0x2c,0xe5,0x1a,0x39,0x3,0xc6,0x39,0x3e,0x76,0xde,0x69,0x8b,0xae,0xf3,0x4,0x8b,0x30,0xc9,0xb3,0xf8,0x22,0x48,0x14,0x2e,0x8e,0x41,0xa5,0xd,0xef,0x71,0x8a,0x94,0x27,0x16,0x92,0xcb,0x31,0xeb,0xf3,0xc8,0x7b,0xbd,0x1e,0x1f,0x8a,0xf7,0x71,0x9e,0x9b,0x82,0x59,0xd8,0xb5,0x4d,0x3,0x9d,0x12,0x72,0xca,0x35,0x26,0x5c,0x23,0xd2,0x3c,0x4f,0x91,0x84,0x6a,0x9a,0xe7,0x57,0x1a,0x90,0xeb,0x67,0xf1,0x33,0x50,0xa3,0xef,0x3c,0x6,0x80,0x54,0xdd,0x12,0x9,0x56,0x50,0xda,0x8a,0x8,0x28,0x8,0x82,0x20,0x8,0x82,0x70,0x8b,0x10,0x1,0x50,0x10,0x4,0x41,0xb8,0xed,0x54,0xd1,0xf,0x25,0x1a,0x58,0xe6,0xfa,0x91,0xa8,0x56,0x1c,0x58,0x24,0x32,0x29,0xa4,0x1a,0x97,0x55,0x75,0x6e,0x5c,0x8a,0x89,0x9d,0x5d,0x71,0x11,0x49,0xcd,0x35,0x82,0x5b,0xe3,0x86,0x6a,0x51,0x14,0xb2,0x2c,0xe,0x49,0xaa,0x16,0x87,0x94,0x66,0x5f,0x72,0x9a,0x2d,0x84,0x34,0xa5,0xd0,0x34,0xdd,0x2c,0xd2,0xb1,0xd3,0xa9,0x94,0x92,0x94,0x36,0xd9,0xe2,0xdc,0x23,0x41,0xc9,0x55,0x57,0x54,0x89,0x45,0xa6,0xe2,0xea,0xcb,0xc5,0xa5,0xc6,0x33,0xe8,0xca,0x5a,0xa8,0x12,0xd9,0xcd,0x2c,0xfc,0x24,0x18,0x4d,0x2,0xa4,0x61,0x87,0x1f,0xb9,0xdd,0x58,0x68,0x63,0x41,0x47,0x99,0x22,0x48,0x82,0x1d,0x86,0xa5,0x98,0x38,0x56,0xd7,0x5b,0x39,0x76,0x46,0xa2,0x86,0x58,0xeb,0x0,0x6b,0xd9,0xc1,0x97,0xe8,0xef,0x2c,0xe6,0x15,0x41,0x33,0xf8,0xa9,0xba,0x24,0xc1,0x6d,0xb8,0xae,0xe9,0x50,0x7,0xf0,0xf1,0xb5,0x95,0xef,0x29,0xa5,0xa1,0xcc,0x2c,0x74,0xcd,0xe2,0x93,0x6,0x52,0x62,0x31,0x47,0x57,0x97,0x5d,0xe6,0xf5,0x21,0x66,0x27,0x21,0x9,0xc0,0x24,0x22,0x16,0x81,0x75,0x79,0xcf,0xb2,0x52,0x74,0x67,0x8a,0x98,0x96,0x39,0x48,0x9d,0x16,0xaf,0xcb,0xe4,0x12,0x34,0x56,0x93,0xa8,0x59,0x1d,0x91,0xb9,0x46,0xca,0x8b,0xf0,0x5c,0xc4,0x2e,0xb5,0x70,0x28,0x16,0x97,0x1d,0xcd,0x21,0x2c,0xfb,0x51,0x73,0xf9,0x9,0x3b,0xf3,0xd8,0xed,0x56,0xdd,0x9e,0x45,0x64,0x2b,0x71,0xde,0x18,0xf8,0xfe,0xd2,0xf5,0x1a,0xfe,0x5e,0x75,0xe3,0x55,0xd7,0x62,0xf9,0x5c,0xf0,0x7c,0xc7,0x3c,0xcf,0x3c,0x64,0x91,0x91,0xd6,0x29,0x21,0xe7,0x22,0x18,0xce,0x65,0x1a,0x75,0x5d,0x72,0x86,0xca,0x19,0xc1,0x4f,0x7c,0xfd,0x3c,0x13,0x11,0xba,0xc6,0x7a,0x8d,0xb1,0xb3,0x70,0x1e,0x2,0x3b,0x8,0xd,0xcf,0xea,0x33,0x50,0xbc,0x5f,0x72,0x15,0x51,0x63,0x8d,0xd1,0x43,0x53,0x1c,0x18,0x69,0xf1,0xfc,0x66,0x12,0x53,0x15,0x3b,0x43,0x49,0xb0,0xe6,0xe8,0x3e,0x3d,0x3c,0x50,0x5a,0xa1,0xb1,0x1d,0x42,0x9c,0x45,0xbc,0xf2,0x2c,0x14,0xb7,0x6e,0x11,0xa6,0xe9,0xf9,0xa2,0xeb,0xab,0x73,0x1,0x45,0xfc,0x13,0x4,0x41,0x10,0x4,0x41,0xb8,0x65,0x88,0x0,0x28,0x8,0x82,0x20,0xdc,0x7e,0x4a,0x1,0x41,0x15,0xc6,0x48,0xe2,0xab,0xe,0xc0,0x3c,0x97,0x1c,0xa4,0x12,0x11,0xd4,0x6a,0x21,0x7e,0xa4,0x3a,0x37,0xaf,0x8,0x12,0x45,0xfc,0x53,0xb9,0x88,0x72,0xa,0x5a,0x97,0xff,0xd6,0x48,0x35,0x5a,0xc,0x16,0x79,0xe6,0x36,0xd8,0x22,0x48,0x66,0x50,0x61,0x47,0x2a,0xc7,0xf,0x9e,0xcb,0x38,0xf2,0xc2,0x59,0x18,0xd9,0x71,0x58,0xa2,0x9b,0x1a,0x46,0xf1,0xf1,0x6b,0xa1,0x7,0x5d,0x43,0x11,0x97,0x0,0x20,0x26,0xfa,0x73,0x8c,0x91,0x5d,0x53,0xb3,0x10,0x42,0xee,0xc4,0x54,0x85,0xa2,0xb2,0x6,0xf5,0x9a,0x16,0xc7,0x2b,0x2,0x24,0x16,0xa5,0x26,0x45,0x3c,0x43,0x6,0x95,0x3b,0x68,0xc5,0x2,0x14,0xbf,0x6,0xa8,0xf3,0xf4,0x94,0xd6,0xd0,0x50,0x80,0x22,0xf1,0x90,0xa,0x2a,0x72,0x2d,0x85,0x8,0xbe,0x34,0xc7,0xba,0x1d,0x51,0xad,0x8,0x9c,0x45,0x94,0xa3,0xe8,0x6c,0x62,0xb7,0x61,0xe2,0x52,0x8d,0xf9,0x16,0x2f,0xe3,0xa0,0x34,0x9b,0x11,0x28,0x33,0x12,0x77,0x8f,0x5b,0x5c,0x77,0x2c,0xf3,0x2e,0x84,0x38,0x6d,0x2d,0xcf,0xc6,0x33,0x80,0xca,0xf5,0xfe,0x97,0x38,0x69,0x6d,0x87,0x5e,0x14,0x63,0xd4,0x7b,0x98,0x32,0xb,0x99,0xa,0xa9,0x44,0x64,0x8b,0x53,0x90,0xe7,0x5,0x26,0x16,0x48,0xcb,0x67,0xd6,0x52,0x12,0x4b,0x73,0xd,0xc1,0x51,0xee,0xe5,0xf9,0xd3,0xb5,0x19,0x58,0x67,0xf8,0xda,0xe6,0xf3,0x45,0x89,0x6b,0x67,0xda,0x77,0xd6,0xba,0xea,0xb0,0x44,0x4d,0x7b,0xe7,0x62,0x68,0xe4,0xb5,0xc0,0x22,0x11,0x5b,0x8a,0x60,0x42,0x9d,0xe3,0x58,0xe6,0x3a,0x56,0xc1,0x2f,0xc7,0xb9,0x1,0xb8,0x44,0x92,0x6b,0x99,0x88,0xa9,0x25,0x3a,0x73,0xc4,0xb8,0xcc,0x98,0x8c,0x50,0xa,0x35,0xea,0x5e,0x9c,0x88,0xa5,0xfd,0xb9,0x94,0x84,0xcc,0xcf,0x88,0x66,0xe7,0x6d,0xaa,0x51,0xfa,0xac,0x72,0x2d,0xd7,0x81,0x4a,0xf5,0x7e,0x40,0x29,0xa8,0xc4,0xef,0xcb,0xf3,0x6c,0x4e,0xad,0xd,0x22,0x97,0x91,0x94,0xbd,0xa8,0x8a,0x88,0xbb,0xd8,0x2c,0x99,0xa3,0xfe,0x6a,0x51,0xa,0x4,0xa5,0x0,0x6d,0x44,0x4,0x14,0x4,0x41,0x10,0x4,0x41,0xb8,0x45,0x68,0x59,0x2,0x41,0x10,0x4,0xe1,0xb6,0xc3,0x5,0x6,0x55,0x29,0xe0,0x79,0x7f,0xd5,0x5,0x56,0xe2,0xa2,0x6a,0x76,0xe9,0x95,0x57,0x96,0xd9,0x7f,0xc5,0x61,0x56,0x9c,0x76,0x55,0x40,0x41,0xde,0x69,0xff,0x5,0xbb,0xab,0x34,0xb7,0x6,0x57,0x41,0x8c,0x67,0xf2,0x15,0xd7,0x15,0x58,0x44,0x89,0x3c,0xfb,0x2e,0x6,0x4f,0xe2,0x4a,0x11,0x61,0x38,0xf2,0x58,0xdc,0x51,0x25,0x56,0x5a,0x9a,0x67,0xcb,0xeb,0x8a,0x58,0x56,0xe6,0xbb,0x55,0x81,0x64,0xd1,0x46,0x9c,0x8a,0x23,0xaa,0x44,0x59,0x8b,0xeb,0x8b,0x1d,0x8e,0x65,0x24,0x1d,0xc5,0x55,0x49,0xa4,0x9b,0xa3,0x91,0x65,0xbd,0xe6,0xbf,0x55,0x81,0x25,0x2f,0x5d,0x6c,0x9,0x39,0xc7,0x1a,0xed,0x25,0x7d,0x6a,0x2e,0x5d,0xc9,0x89,0xe2,0xd1,0xd5,0x3d,0xc7,0x6e,0x3a,0xcd,0x25,0x16,0x65,0x2d,0xf2,0xe2,0x73,0x53,0x39,0xf,0x8e,0x49,0x97,0x99,0x72,0x45,0x50,0x2b,0x8e,0xbb,0x5c,0x85,0x5c,0x6a,0x74,0x2d,0xeb,0x84,0xc5,0xcc,0xb9,0x72,0x4e,0xc8,0x79,0xe1,0xf4,0x5b,0x88,0x81,0x65,0x3f,0xf0,0xd7,0x8b,0xc8,0x58,0xd6,0x31,0xf2,0x71,0x29,0x32,0xab,0xea,0x75,0xd7,0x16,0x64,0xa0,0x1e,0xa7,0x14,0x5f,0x94,0x7b,0x5e,0xdc,0x70,0xb4,0xc5,0xe6,0xd9,0x7c,0x75,0x6,0x65,0x9a,0x9b,0xa2,0x4b,0x8b,0xf1,0x72,0xd,0x4a,0x7a,0x97,0xca,0x4f,0xf4,0xa2,0xcd,0x79,0x76,0xc7,0xa9,0xba,0x57,0xd5,0x8e,0x83,0x54,0x2d,0x9a,0x9f,0xeb,0xac,0x4b,0x5e,0x87,0x12,0xed,0x2d,0xe7,0x5c,0x9d,0xa2,0xa,0x3b,0xa2,0x69,0x64,0x91,0xb6,0x3c,0xf,0x67,0xdd,0x80,0x3b,0xe7,0x2,0x70,0x81,0x8c,0xe6,0xc6,0x65,0x5b,0x5d,0x8d,0x69,0xe9,0x96,0xe5,0x75,0xaf,0x22,0x64,0x4e,0xfc,0x58,0xa6,0x7a,0xad,0x29,0xcd,0x80,0x5e,0x93,0xea,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x5f,0xab,0xee,0xd0,0x9c,0x77,0xdc,0xac,0x39,0x67,0xe8,0x2a,0x1e,0x2e,0xbf,0x3e,0x9f,0x5b,0x5e,0x88,0xf1,0x55,0x18,0xc5,0xfc,0x7f,0x4,0x94,0x48,0xf2,0xce,0x26,0x17,0x4,0x41,0x10,0x4,0x41,0x10,0x7e,0x2a,0x44,0x0,0x14,0x4,0x41,0x10,0x6e,0x3f,0x35,0xce,0xb8,0xfb,0xb,0x7e,0x11,0x39,0x4a,0x7c,0xb2,0x44,0x77,0x49,0x2c,0xc1,0xec,0x42,0x5b,0xc6,0x67,0x81,0x5d,0x71,0x61,0x39,0x63,0x8d,0x1a,0x1c,0x0,0x28,0x4,0x2e,0x9,0x29,0x62,0x57,0x29,0xca,0xa8,0xa7,0xc4,0xad,0xa8,0x39,0xe5,0x2a,0xdc,0x14,0x11,0xab,0xce,0x5c,0x43,0xde,0x11,0xaf,0x96,0x65,0x12,0xa9,0xb8,0xe0,0x16,0xc2,0x4c,0x11,0x32,0x4b,0x4c,0xb4,0x1c,0xaf,0xcc,0x6e,0x63,0x69,0x8b,0x67,0xa8,0x2d,0x96,0x87,0xc5,0x97,0x14,0x23,0xcf,0xc5,0x5b,0x8a,0x87,0x91,0xa2,0x9a,0xc5,0x36,0xb6,0x7c,0xf,0x50,0xa3,0xa8,0x85,0x32,0xef,0xaf,0x46,0x60,0x59,0x24,0xd2,0x9a,0xc4,0x20,0xb5,0x28,0x7e,0xc8,0x29,0x2e,0x9a,0x60,0xd5,0x4e,0x74,0xb6,0xb4,0x1a,0x97,0x28,0x6f,0xe4,0x79,0x84,0x73,0x64,0x1b,0xd5,0x91,0x89,0x1a,0xe7,0xd5,0x1c,0x57,0xce,0xf5,0xcb,0xe5,0xbe,0x45,0x8e,0xe,0x2f,0xe7,0x29,0x96,0xeb,0xa1,0xd7,0xcd,0xc2,0x60,0x5e,0xc4,0x88,0x97,0xe7,0xf,0x50,0xc9,0xa,0x15,0x6d,0xa8,0x2a,0x3a,0x2d,0x5d,0x6c,0xd5,0x25,0xc9,0x25,0x16,0xe0,0xcf,0xae,0xd1,0xd3,0x32,0x2f,0x72,0x21,0x3a,0x16,0xe7,0x22,0x1d,0x9f,0xe7,0x4c,0x96,0x86,0x5d,0x16,0x6,0x67,0x27,0xa4,0x9f,0x67,0x9,0x2e,0x5a,0x89,0xb1,0x98,0xfd,0x57,0xa,0x4b,0xb0,0x74,0xaa,0x2a,0x3d,0xcf,0xe0,0x83,0xaa,0xb1,0xed,0xaa,0x2e,0xa2,0xbc,0x16,0x3c,0xe3,0x31,0xd6,0x7b,0x52,0x9a,0x86,0x81,0x33,0xe2,0x24,0xb,0xcf,0x25,0xde,0x5d,0xd6,0xba,0xa,0xd1,0xe0,0x19,0x80,0x65,0x26,0x20,0x7f,0xee,0xec,0x22,0x65,0x7,0x66,0x79,0x34,0xab,0x66,0xcb,0xf7,0x1f,0xf3,0x63,0x3b,0x8b,0x78,0xf3,0x33,0xac,0x95,0xae,0xed,0xdd,0xe5,0xb9,0xa8,0xff,0x29,0xae,0xce,0x12,0x5,0xe7,0xb7,0xd2,0xbc,0xcf,0x33,0x3f,0x1e,0xf8,0x67,0x41,0x8e,0xe2,0xfe,0x13,0x4,0x41,0x10,0x4,0x41,0xb8,0x55,0x88,0x0,0x28,0x8,0x82,0x20,0xdc,0x76,0x8c,0x9d,0xc5,0x92,0x3a,0xb8,0xe,0x45,0x37,0xca,0xbb,0x85,0x1,0x2c,0x24,0x2d,0xcb,0x8,0x76,0xe6,0xbd,0x1,0xbb,0xa2,0x55,0x11,0x3a,0x62,0xa8,0xe2,0xcf,0xae,0xa2,0x81,0xfa,0xde,0x22,0xd0,0x95,0x88,0x66,0xc6,0xec,0xba,0xcb,0x5c,0x98,0x0,0x85,0x79,0xde,0xdc,0xa2,0x6d,0x35,0x63,0x57,0x80,0x5c,0x16,0x3b,0x14,0x91,0x2a,0x16,0x61,0x29,0x25,0x12,0x92,0x52,0xaa,0x2,0x48,0x9d,0x4b,0x8,0xd4,0xf9,0x70,0xb9,0x46,0xa3,0x73,0xfd,0x1a,0x0,0x64,0x8e,0x5d,0xd6,0xb9,0x73,0xa8,0x52,0xd9,0x62,0x1d,0x96,0x91,0x58,0x55,0x1d,0x85,0x50,0x6a,0x27,0x2e,0x5a,0x8e,0xbd,0x14,0x6,0xe7,0x75,0x53,0xb5,0xd1,0xb7,0x88,0x57,0xd4,0x6,0x8c,0x1d,0x27,0x9f,0x5a,0x88,0x4e,0x8a,0x85,0x43,0xf0,0x1a,0x14,0xf1,0x2c,0xc6,0x50,0x5,0x37,0xcd,0x2,0xdf,0x32,0xda,0xad,0xf9,0x35,0xf5,0xfe,0xb2,0x70,0x94,0xca,0x1a,0x61,0x6e,0xae,0xc5,0x8e,0xb3,0xef,0xcc,0xec,0x3b,0x45,0xf3,0xe9,0x32,0x3b,0xfa,0x48,0x88,0xa3,0xb5,0x29,0xc2,0x65,0x4a,0x71,0xd1,0x1a,0x8d,0x2a,0xa2,0x15,0xa7,0x9c,0xd2,0xe5,0xda,0xe7,0xd9,0x93,0x55,0x44,0xad,0xc2,0x69,0xac,0x5f,0xaf,0xe,0x43,0x2e,0xd4,0x28,0xeb,0x99,0xd2,0xdc,0xa6,0x8b,0x45,0x6c,0xba,0x8a,0xa9,0xe0,0xf2,0x11,0x2c,0xda,0x70,0x33,0xc7,0xaf,0xab,0xb8,0x99,0x58,0x4,0xd4,0x3b,0xb1,0xdc,0xb2,0xe6,0xa5,0x11,0xbb,0xc6,0xe8,0x53,0xae,0xf1,0x64,0xad,0x34,0xbb,0x12,0x4d,0xdd,0x7f,0x8a,0xf7,0x63,0x71,0x6f,0x2a,0x3e,0x87,0x52,0xba,0x41,0xfb,0x61,0xde,0x37,0x58,0x38,0x55,0xb9,0xa2,0xa6,0xee,0xe9,0x94,0x17,0xae,0xdd,0xfa,0x38,0xcd,0x6e,0xd4,0xbc,0x7c,0x9e,0x17,0x91,0xe7,0x94,0x13,0x52,0x4c,0x67,0xf6,0x1b,0x16,0xcf,0xe5,0x82,0x85,0xa8,0xa8,0xec,0x4a,0x7e,0x58,0xa,0x82,0x20,0x8,0x82,0x20,0xdc,0x22,0x44,0x0,0x14,0x4,0x41,0x10,0x6e,0x3b,0xd3,0x38,0xec,0x44,0x3c,0x8b,0xfb,0x6e,0x16,0xb4,0x66,0xf1,0x40,0xd5,0x59,0x77,0xb9,0xba,0xd4,0x96,0xdf,0xc3,0x22,0x6e,0xa,0x60,0x8e,0xe6,0xb2,0xcb,0x2e,0xc5,0x48,0x2,0xda,0x8e,0x68,0xa8,0xea,0x6b,0xc0,0xad,0xc2,0x45,0x8f,0x28,0x22,0x13,0x35,0xe,0xeb,0x1d,0x51,0xad,0xc4,0x51,0x53,0x8,0xd0,0x4b,0xa1,0x64,0x29,0x44,0x2,0x3b,0xf1,0xdf,0xf2,0x79,0x35,0xee,0x5a,0xdc,0x76,0xe5,0xfa,0xe9,0xd,0x14,0xc9,0xac,0xee,0xb5,0xb9,0xd9,0xb8,0x44,0x73,0xab,0x13,0x11,0xa8,0xe5,0x10,0x45,0x40,0x83,0x52,0xf5,0x7b,0x31,0x78,0x8e,0x6b,0xc6,0xea,0x88,0xd4,0xb,0x37,0x5b,0x15,0xa4,0xea,0xac,0x45,0x3a,0xa7,0xc8,0x73,0xee,0x48,0xf4,0x4b,0xbb,0x8e,0xad,0xb2,0x56,0x7c,0x87,0xd2,0xb2,0xd4,0x81,0xaf,0xa7,0xcc,0xcb,0x2b,0x73,0xfc,0x48,0x7,0x52,0x55,0xe0,0x2a,0xd1,0xd1,0x22,0xa4,0xa5,0x14,0xe1,0x5c,0x5b,0xc5,0x5b,0x7e,0x75,0x3d,0xa6,0x52,0xba,0xc6,0x68,0xe7,0xfb,0x96,0xab,0x73,0xaf,0xc4,0xbc,0x17,0xcd,0x2a,0x3b,0x6b,0x98,0x16,0x73,0xfd,0x4a,0xb3,0x6e,0x5e,0xcc,0x9,0x2c,0xef,0x2f,0xce,0xc3,0x22,0x16,0x17,0xf1,0xae,0x9e,0x57,0x89,0x5,0x2f,0x62,0xe8,0x45,0x16,0xd3,0xc6,0x20,0x85,0x40,0x33,0x23,0x59,0x98,0xa5,0x7b,0x10,0x78,0x76,0x24,0xdd,0x8f,0xda,0xd8,0xcb,0xf3,0xf8,0x32,0x72,0x15,0xfa,0xf8,0xee,0xee,0x26,0xbc,0x73,0xa6,0x26,0xe3,0x22,0x14,0xf3,0x1e,0xad,0x85,0x25,0x31,0xd0,0x5c,0xc3,0xf2,0x3d,0xbe,0x8f,0xd5,0x3d,0x58,0x1d,0x9c,0xbb,0x7b,0xb3,0xb8,0x19,0x15,0xe6,0x18,0x32,0xdd,0x5a,0x55,0x63,0xcc,0xd5,0xd,0x59,0x62,0xed,0x4a,0xef,0xac,0xfd,0x72,0x4d,0x0,0x2c,0xe6,0x1b,0xce,0xb3,0x39,0xe7,0x75,0x9e,0x45,0xce,0x59,0x37,0xe4,0x22,0x18,0x3e,0x8f,0xba,0xaf,0xd2,0xe2,0x79,0xc8,0x60,0x97,0xa6,0x97,0x1f,0x96,0x82,0x20,0x8,0x82,0x20,0x8,0xb7,0x88,0xf9,0xb7,0x2d,0x41,0x10,0x4,0x41,0xb8,0x8d,0x3c,0xf0,0xb6,0xf7,0xe1,0xce,0x7b,0x5e,0x53,0x63,0xa6,0xa9,0xba,0xe8,0xf4,0x4e,0x34,0xf7,0xec,0x3f,0x57,0x24,0x32,0x18,0x16,0x28,0x30,0x97,0x38,0x54,0xd7,0x55,0x9e,0x1b,0x80,0x17,0x33,0xcd,0x4a,0xfb,0x6c,0x9d,0xbb,0xc7,0x2e,0x33,0x8a,0x44,0xea,0x2a,0x1c,0x6a,0x76,0x62,0xd5,0xf7,0x95,0x4e,0x2,0xad,0xea,0xf9,0x51,0x6b,0x6b,0xaa,0x7a,0xcb,0xb2,0x40,0x42,0xd5,0x8,0x24,0x2b,0x19,0x24,0x63,0x61,0x27,0xe3,0xb,0x76,0x8f,0x95,0x66,0x56,0x2e,0x9a,0x28,0x2,0x56,0x11,0x51,0x34,0xb7,0xc,0x2f,0xaf,0x27,0x2f,0xe2,0xb5,0x73,0x81,0x6,0xaa,0xd3,0x8d,0x17,0xa9,0x46,0x3c,0xf5,0xc2,0xe9,0xa6,0x17,0x4e,0x46,0x55,0x44,0x9b,0x45,0xa3,0x6e,0x39,0xd7,0xe2,0x94,0xa3,0xcf,0x5b,0x46,0x9d,0x51,0x63,0xd5,0xa5,0x74,0xa2,0x58,0xc1,0x52,0x4a,0x3b,0x82,0xe,0xbd,0x96,0xc5,0xae,0xea,0x60,0x54,0x73,0x61,0xc9,0x62,0xee,0x60,0x9d,0xf3,0xa8,0xe7,0x58,0x2c,0x16,0x85,0x10,0xb9,0xb4,0x3,0x2f,0xca,0x3e,0xe8,0x58,0xb4,0xc6,0xa,0x24,0x82,0x19,0x63,0x77,0xe2,0xac,0xf4,0xdd,0xb9,0xfc,0xa3,0x8,0xb1,0x79,0x21,0x64,0xd1,0x5a,0x1a,0x94,0x36,0x62,0xc5,0x2d,0xb4,0x65,0xfe,0x5e,0x99,0xf9,0xb8,0xbc,0xc7,0xd5,0xdd,0xa7,0x4d,0x6d,0x2e,0xce,0x8b,0xd9,0x7d,0xa5,0x5d,0x99,0x8a,0x44,0xb0,0xf3,0xf5,0x72,0x9c,0xd2,0xd2,0xac,0xf9,0x18,0x24,0x8,0xf2,0x6b,0x16,0xe7,0x50,0x1d,0x71,0x8b,0x36,0x64,0xa5,0x96,0xfe,0xcf,0xc5,0x53,0x52,0x4,0xcf,0xfa,0xc,0xa9,0x9d,0x98,0xae,0x5a,0x88,0x79,0xb4,0xd6,0xf4,0x9e,0x32,0xf7,0x92,0xca,0x63,0xd2,0x7c,0x9f,0x6b,0x71,0xa,0x76,0x67,0xf6,0x65,0xcc,0xcf,0x1f,0x70,0xee,0x99,0x9b,0xa3,0xdc,0x79,0xa1,0x49,0xe6,0x7a,0xcf,0x96,0x5f,0xab,0xe7,0xc5,0x91,0xef,0x18,0x3c,0x86,0xed,0x6,0xcf,0x3c,0xf5,0x8,0xa6,0xed,0xb1,0xfc,0xa0,0x14,0x4,0x41,0x10,0x4,0x41,0xb8,0x45,0x88,0x0,0x28,0x8,0x82,0x20,0xfc,0x9b,0xf9,0x7,0x48,0x29,0xdc,0xf9,0xea,0x37,0xe0,0xd2,0xd5,0xbb,0x60,0x6d,0x53,0x8b,0x5,0x96,0x73,0xe7,0x58,0x26,0xe0,0xc6,0x5a,0x16,0xbe,0x8c,0xa5,0xb8,0x67,0x31,0x7e,0x69,0x43,0x33,0xd2,0x52,0x60,0x21,0x81,0xde,0x53,0x66,0xfc,0x29,0x65,0xce,0x35,0xcf,0x62,0x31,0xd7,0xae,0x8a,0x10,0x7c,0x9c,0x9c,0xe3,0xce,0x3f,0x91,0xb9,0x44,0x47,0xb9,0x2c,0xa2,0xb8,0xd2,0xb4,0x9e,0xe7,0xa8,0x81,0xdd,0x5c,0x31,0x78,0x18,0xdb,0xd0,0x7b,0x34,0x3b,0x1b,0x4b,0x74,0x93,0x85,0x36,0x12,0x96,0x2,0xb4,0xb6,0x3b,0x82,0x9d,0x62,0x21,0x8f,0x5a,0x84,0xd5,0x2c,0xfc,0x41,0xd5,0x18,0x26,0x40,0xee,0xbb,0x52,0x5c,0x51,0xe2,0xb7,0xda,0x58,0x8e,0x4f,0xc7,0xda,0x1a,0x5b,0xd6,0x4e,0x29,0x3,0x68,0x8d,0xcc,0xef,0xcb,0xe5,0x7c,0x6b,0x44,0xd6,0xf1,0x7a,0xce,0x71,0xd9,0x39,0xb0,0xaa,0xea,0xff,0x52,0x50,0x5c,0x20,0x52,0xa,0x5c,0xb4,0x36,0x73,0xa1,0xc5,0x42,0x4,0x2b,0x91,0x5c,0x94,0x68,0x6e,0x9e,0xc5,0x53,0x28,0x8d,0x14,0x7d,0x8d,0xe9,0xe6,0x8c,0x45,0xab,0x73,0x89,0xba,0x1a,0x5e,0x3f,0x5d,0xdf,0x53,0x5c,0x9f,0xaa,0x8a,0x8f,0xb,0xf1,0x55,0x6b,0xe4,0x18,0xc9,0xaf,0x46,0xd9,0x5e,0xbe,0x7b,0x99,0xcf,0x81,0xdc,0x74,0x4a,0xdb,0x33,0xb1,0x5c,0x16,0x5b,0xb5,0x39,0x73,0x4e,0xf9,0xcc,0x67,0x95,0xcf,0x46,0x6d,0xa7,0x2d,0xf7,0x7d,0xb7,0xc1,0x97,0x3e,0x97,0x4,0x34,0x3e,0xef,0x65,0x9c,0xbd,0xec,0x6b,0x54,0xc3,0x1c,0xad,0x23,0x8b,0x5f,0xe5,0x5a,0x17,0x46,0xd8,0xea,0xc2,0xab,0xff,0x5d,0x1b,0x9e,0x53,0x15,0xf9,0xca,0xbe,0xa9,0xaf,0xaa,0xc2,0x6a,0xae,0xf7,0xb1,0x38,0x48,0xd5,0xc2,0xc3,0x8,0xb5,0x14,0xe9,0xca,0x39,0xaa,0xea,0x2e,0xad,0xf7,0xa3,0x5e,0x3c,0xe6,0xd7,0xb3,0x58,0x58,0x9d,0xb9,0x8b,0x67,0x7a,0xb9,0x86,0xc5,0x7d,0x39,0x5f,0xdf,0x1c,0xed,0x47,0x15,0x9c,0x67,0x27,0xb0,0x1f,0x7,0xc,0xfd,0x16,0x27,0xd7,0x9e,0x87,0x1f,0x37,0xf2,0x43,0x52,0x10,0x4,0x41,0x10,0x4,0xe1,0x56,0xfe,0xfe,0x5,0x11,0x0,0x5,0x41,0x10,0x84,0x7f,0x83,0x68,0xe3,0xd0,0x5d,0xba,0x1b,0xae,0x69,0x51,0x62,0x84,0x39,0x5,0x40,0x19,0xc4,0x18,0x60,0xb4,0x42,0x86,0x86,0x56,0x19,0x29,0x3,0x39,0x6,0x68,0xd7,0xc1,0x18,0xd,0x3f,0x8d,0x70,0xae,0x41,0xca,0x80,0x35,0x1a,0xda,0x58,0xc,0x7d,0xf,0x20,0x21,0x86,0x80,0xa6,0x3b,0xa0,0x63,0x21,0x23,0xc6,0x44,0x2d,0xb5,0x28,0xed,0xb7,0x9,0xed,0xea,0x10,0x7e,0x3c,0x85,0x36,0xd,0x45,0x47,0x53,0x84,0x6b,0xd7,0x35,0x5e,0x9b,0x82,0x27,0xa1,0x28,0x27,0x68,0xa5,0xd0,0x74,0x6b,0x4c,0xc3,0x0,0x63,0xd,0xbb,0x9,0xd,0x62,0x18,0xc9,0xcd,0x95,0x32,0xda,0x6e,0x85,0x69,0x1c,0x91,0x52,0x80,0x6b,0x3a,0xa4,0xe0,0x61,0x9b,0xb6,0xce,0xdb,0x3,0x14,0x5c,0xd3,0xa0,0x3f,0xb9,0x8e,0xee,0xf0,0xa,0x32,0x8b,0x96,0xda,0x18,0xf8,0x69,0x24,0xa1,0x26,0x4c,0x24,0x78,0x56,0x81,0x2d,0x54,0xb7,0xa0,0x52,0x1a,0x31,0x78,0x58,0xd7,0xc0,0x8f,0xa7,0x80,0x6e,0x60,0x8c,0x85,0xb1,0x16,0xd3,0x38,0xc0,0x5a,0x5b,0x54,0x1a,0x40,0x93,0x1b,0xae,0x69,0x5a,0x6c,0x4f,0xae,0x41,0x9b,0x6,0xd6,0xb9,0xea,0xea,0x33,0xd6,0x21,0xc5,0x88,0xe0,0x27,0x34,0xdd,0xa,0x61,0x1a,0x11,0xa3,0x87,0xb1,0xe,0x50,0x1a,0x71,0xea,0x1,0x0,0xae,0x5d,0x43,0x1b,0x83,0x61,0x73,0x2,0x63,0x1b,0x9a,0xdd,0x97,0x22,0xac,0x75,0x0,0x14,0xc2,0xd4,0x3,0xda,0x42,0xab,0xc,0x40,0x23,0x4c,0x5b,0x28,0xbb,0x82,0xd1,0x24,0xc3,0x36,0x6d,0x87,0x69,0xd8,0xb2,0xb8,0xab,0x38,0x9a,0x9c,0xa1,0xad,0x43,0x8e,0x1,0x29,0x8c,0x68,0x56,0x87,0x8,0x9e,0x3e,0x3b,0x73,0xf4,0xb5,0x8,0x62,0x40,0x46,0xc,0x53,0xbd,0x2e,0xe3,0x3a,0x16,0xb7,0x32,0x94,0xb6,0x55,0x10,0xcd,0x4a,0x43,0x71,0x8b,0x6c,0x29,0x3,0x51,0x0,0x94,0xb1,0x35,0xc6,0x9d,0xa2,0x87,0xb6,0xe,0x80,0x86,0x73,0xe,0x21,0x44,0x3a,0x5f,0xa5,0x60,0x9d,0x43,0x8c,0x11,0xc6,0xb6,0x88,0x7e,0x60,0xc1,0x30,0x20,0x43,0xc1,0x18,0xb,0x3f,0x6e,0x61,0x5c,0x87,0x14,0x3,0x39,0x37,0xc3,0x4,0x6d,0x1c,0x52,0xe4,0x98,0xaa,0xd2,0xd0,0x5a,0xf1,0xac,0xbb,0x80,0x14,0x69,0x2f,0x95,0xd9,0x87,0xda,0x36,0x48,0x61,0xe2,0xfd,0x48,0xfb,0x1e,0x4a,0xf3,0x71,0x2c,0xb4,0xd6,0x8,0x7e,0x64,0xf7,0x67,0x20,0x31,0x50,0x53,0xbb,0xb3,0x2a,0x85,0x20,0x29,0x70,0x33,0xb6,0xa2,0xfb,0x9b,0x3c,0x68,0x9a,0xb,0x37,0x4f,0x9b,0x6,0x39,0x7a,0x12,0x75,0x73,0x42,0x4e,0x9e,0xae,0xa3,0x88,0xa8,0x99,0x8b,0x56,0xd4,0x3c,0x53,0x53,0xbb,0x15,0xcf,0x6f,0xa4,0xd6,0x68,0x72,0xfd,0x19,0x16,0x3a,0x63,0x15,0xd,0xf3,0x42,0x10,0x2f,0xd7,0xad,0xb4,0xe5,0x48,0xf2,0x4,0x6d,0x5b,0xba,0x77,0x29,0xf1,0xe7,0x83,0x3e,0x4f,0x69,0x0,0x69,0x9e,0x17,0x88,0x44,0xe7,0x84,0x59,0x48,0x2f,0xe7,0x13,0x86,0xd3,0x3d,0xee,0x5f,0x41,0x10,0x4,0x41,0x10,0x4,0xe1,0x56,0x20,0x2,0xa0,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0xbc,0x82,0x91,0x12,0x10,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x78,0x5,0x23,0x2,0xa0,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0xbc,0x82,0x11,0x1,0x50,0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x5e,0xc1,0x88,0x0,0x28,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0xaf,0x60,0x44,0x0,0x14,0x4,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x84,0x57,0x30,0x22,0x0,0xa,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0xc2,0x2b,0x18,0x11,0x0,0x5,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x4,0xe1,0x15,0x8c,0x8,0x80,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0xf0,0xa,0x46,0x4,0x40,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x78,0x5,0x23,0x2,0xa0,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0xbc,0x82,0x11,0x1,0x50,0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x5e,0xc1,0x88,0x0,0x28,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0xaf,0x60,0x44,0x0,0x14,0x4,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0x10,0x84,0x57,0x30,0x22,0x0,0xa,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0xc2,0x2b,0x18,0x2b,0x4b,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x3f,0x7b,0x68,0x63,0xb1,0x3a,0xba,0x82,0xcb,0x57,0x5f,0x85,0x9c,0x33,0x7f,0xcd,0xc0,0x58,0x8b,0x30,0x4d,0xc8,0x39,0xc1,0x58,0x87,0xe0,0x27,0x0,0xa,0x4a,0x1,0x50,0xa,0x4a,0x69,0xe4,0x14,0x61,0x6c,0x83,0x14,0x3,0x94,0xd6,0x48,0x31,0xc2,0x58,0xb,0xad,0xd,0xa6,0xb1,0x87,0x75,0xd,0x72,0x4a,0x74,0x5c,0xa5,0xa0,0xf8,0x33,0x63,0xc,0x70,0x4d,0x87,0x18,0x7c,0xfd,0x4c,0xa5,0xe9,0x78,0x4a,0x69,0x58,0xe7,0x10,0x43,0x80,0xb1,0xe,0xde,0x4f,0x70,0xae,0xe1,0xcf,0x47,0x7d,0xbd,0x6b,0x1a,0xf8,0x69,0x2,0x14,0x80,0xc,0x28,0x45,0x47,0x4f,0x31,0xf2,0xb1,0x12,0xb4,0xd1,0x74,0x8c,0x71,0xe4,0x73,0x6,0x94,0x9a,0xbd,0xb,0xc6,0x3a,0xe4,0x14,0x11,0x53,0xa4,0x2f,0x64,0x20,0xe7,0x4,0xeb,0x5a,0xc4,0xe0,0xf9,0xf3,0x12,0x0,0x85,0xa6,0x69,0xe1,0xa7,0x11,0xca,0x18,0xa4,0x18,0xe0,0x5c,0xb,0xef,0x47,0x20,0x3,0xe0,0xe3,0xa6,0x14,0xa1,0xea,0xda,0xd0,0x75,0x2b,0x3d,0x7f,0x1e,0x9d,0xa2,0x82,0xd6,0x1a,0x99,0xcf,0xb5,0x7c,0x86,0x52,0xa,0xae,0xe9,0x90,0x73,0x46,0xf0,0x23,0x1d,0x23,0x27,0x68,0x63,0xa1,0x0,0x4,0xef,0xa1,0x94,0x42,0xca,0x9,0x5a,0x69,0x40,0x61,0xbe,0x2f,0x39,0xc3,0x35,0x1d,0x42,0xa0,0xd7,0xcc,0x6b,0xd4,0xc2,0x8f,0x3,0xad,0x11,0x14,0x9d,0x9b,0x9e,0xcf,0xcd,0x3a,0x57,0xd7,0xab,0xde,0x8b,0x9c,0xf9,0x1e,0x34,0x7c,0xed,0x74,0x9e,0x19,0x79,0xfe,0xbe,0xd6,0x70,0xae,0xc5,0x34,0x8d,0xd0,0x7a,0xfe,0x3c,0x40,0xc1,0x3a,0x47,0xeb,0xa4,0x34,0x9d,0x6f,0x8a,0x8b,0x63,0x3a,0x24,0xfe,0x6c,0xad,0xd,0x62,0xf4,0xf5,0xf3,0xcb,0xbd,0xa5,0xf5,0x53,0x48,0x31,0x42,0x6b,0x3,0x6d,0x6d,0x3d,0xb7,0x72,0x8f,0x15,0x2d,0x38,0x9f,0x5b,0x80,0xd6,0x6,0x50,0xe5,0xfd,0xb4,0x6e,0xe5,0x9c,0x8c,0xb5,0x40,0xce,0x48,0x31,0xc1,0x3a,0x87,0x10,0x2,0xdd,0x68,0x86,0xd6,0xa1,0x81,0x2,0x10,0x43,0x40,0x46,0x86,0x31,0x16,0x21,0x78,0xba,0x4f,0x39,0xf3,0xf9,0xd2,0x9f,0xe9,0xb3,0x69,0x4d,0x9a,0xb6,0xc3,0x34,0xe,0x75,0x4d,0x95,0xd6,0x40,0xce,0x30,0xd6,0x21,0xc6,0x40,0xf7,0xc0,0x35,0xbc,0x87,0x5b,0xa4,0x14,0x77,0xee,0x91,0x73,0x2d,0x80,0x8c,0x10,0x3c,0x8c,0xb1,0x48,0x29,0xcd,0x7b,0x88,0xef,0x89,0x31,0x96,0xce,0x21,0x25,0x28,0xa5,0x61,0xac,0x41,0x8c,0x91,0xf6,0xb7,0x36,0xbc,0xaf,0xe7,0x75,0x36,0xd6,0x21,0xe7,0xc,0x3f,0xd,0x68,0xbb,0x35,0xa6,0x69,0x98,0xd7,0x8b,0xef,0x9d,0x2,0xbd,0x7e,0x1a,0x7,0xdc,0x7c,0xe1,0xe9,0xc5,0xfd,0x13,0x4,0x41,0xf8,0xf1,0x88,0x0,0x28,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x3f,0x63,0xbc,0xea,0xb5,0x6f,0xc6,0x3,0x6f,0x79,0x7,0xba,0xf5,0x21,0x89,0x9,0x40,0x15,0xd4,0xaa,0x5a,0x97,0xcf,0x7c,0x2d,0x9f,0xff,0x62,0x46,0x86,0x5a,0xbc,0x39,0x57,0x41,0x2e,0x57,0xf1,0xaf,0x92,0xab,0x16,0x81,0x59,0x88,0x59,0x7c,0x1f,0xb3,0x58,0x48,0x82,0xd3,0x99,0x6f,0xcf,0x27,0xb1,0x43,0x11,0x88,0xf2,0xf2,0x90,0xb,0x61,0x63,0x29,0x8c,0xfd,0x38,0xe6,0x63,0xcd,0xa2,0xd3,0xee,0x62,0xf0,0x6b,0xe8,0xc0,0xb3,0x88,0x79,0xe6,0xcc,0xca,0x9a,0xe4,0xfa,0x55,0x12,0x90,0xea,0x79,0x94,0x85,0x50,0x7b,0xae,0x2d,0x63,0x77,0xdd,0x76,0xd6,0x2a,0xd7,0xef,0x97,0xf3,0xc8,0x7c,0x8d,0xe5,0x9a,0x73,0x3d,0x7c,0xb9,0x86,0x72,0xde,0x24,0x68,0xf2,0xdd,0x99,0xcf,0x47,0x2d,0x97,0xbf,0x9c,0xf3,0xe2,0xfc,0x76,0xbe,0x7e,0xe6,0x7e,0xd4,0x7b,0x9c,0xcf,0xed,0x8f,0xbc,0x58,0xff,0xf9,0xad,0x45,0x35,0x3d,0x7f,0x2b,0x77,0xb7,0x5e,0xae,0xfb,0xa5,0x9e,0x3f,0x9f,0xf3,0xce,0x67,0xd4,0xc3,0x2d,0xce,0xef,0xfc,0x8d,0x38,0xb3,0x94,0x67,0xd6,0x73,0xf9,0xdf,0x7b,0xf7,0xf9,0xbc,0x9d,0x94,0x3a,0xbb,0x5f,0xce,0x6d,0xf1,0x9d,0xcf,0x29,0x7b,0x28,0xe7,0xb3,0xfb,0x3d,0x2f,0xf6,0xe6,0xd9,0xbf,0xef,0xdb,0xab,0xea,0x82,0xb,0xbb,0x60,0x5f,0xe7,0xc5,0x7a,0xed,0xec,0x5,0x54,0x61,0xb3,0xdf,0x9c,0xe0,0xd9,0xa7,0x1e,0xc3,0xb,0x3f,0xfc,0x1e,0x12,0x8b,0x96,0x82,0x20,0x8,0x2f,0x87,0xba,0xf8,0xa7,0x8e,0x20,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0xff,0x7f,0xe3,0xfe,0x37,0xbf,0xb,0x6f,0x78,0xeb,0xbb,0xd1,0x76,0x6b,0x68,0x63,0xaa,0x28,0x70,0x21,0x67,0xc5,0x8b,0x22,0xb0,0x2d,0x44,0xa7,0xaa,0x82,0xe4,0x7c,0x46,0x3a,0x29,0x6f,0x59,0x88,0x29,0x3f,0xe9,0x2f,0x13,0x67,0xc5,0xb2,0x97,0x79,0xc3,0x2c,0x76,0xec,0xa,0x61,0x55,0x58,0xc1,0x2c,0xea,0xed,0x8,0x45,0xcb,0xe3,0xfd,0x44,0xbf,0xd9,0x2c,0x84,0xc0,0x85,0x88,0x56,0x2f,0x1f,0xbb,0xe2,0xdf,0x3e,0x19,0x6f,0xfe,0xb,0xbd,0xfa,0xbc,0x48,0x74,0xc1,0x6f,0x5c,0x67,0x34,0x9f,0xfd,0x62,0x51,0xbe,0xf8,0xd,0x2f,0xbb,0xea,0x17,0x5d,0xfc,0x59,0xa1,0x72,0x8f,0x2e,0xbb,0xb8,0x5d,0x4a,0x2d,0xff,0xfb,0xbc,0xc8,0x3b,0x7f,0xfd,0xe5,0xd4,0xe6,0x9f,0x80,0xb3,0x1f,0x76,0x6e,0xaf,0xd6,0xd5,0x3d,0x7b,0xa,0xbb,0xe2,0x6e,0xde,0x23,0x58,0xee,0x6c,0x89,0xf9,0x5e,0xff,0x95,0x58,0x9e,0xdf,0xd9,0x7b,0xb5,0xdc,0xd7,0x17,0xfe,0xb6,0x3d,0xb,0xbd,0xfb,0x6e,0x55,0x3e,0xb7,0xeb,0xce,0x3e,0x65,0xe7,0x14,0xfc,0x1d,0xb1,0x34,0xc5,0x88,0xeb,0x2f,0x3c,0x87,0x27,0x1f,0xf9,0x6,0x6e,0xbe,0xf0,0xb4,0xfc,0x70,0x14,0x4,0xe1,0xe5,0x7f,0x24,0x41,0x4,0x40,0x41,0x10,0x4,0x41,0x10,0x4,0x41,0xf8,0x99,0xc0,0x75,0x87,0x78,0xcf,0xaf,0x7c,0x14,0x77,0xdc,0x75,0x2f,0x9c,0x6b,0xa0,0xb4,0x61,0x3d,0x2f,0x9d,0xf9,0x1f,0xf5,0x17,0xc9,0x3c,0xe5,0xdb,0xfb,0xc4,0xb9,0x7d,0x42,0x87,0x2,0x54,0x9e,0xd,0x62,0xd8,0x6f,0xca,0xda,0xfd,0xa5,0x22,0x5f,0xf0,0xaa,0x97,0xf9,0xcd,0x63,0xb6,0xc2,0xed,0x7e,0xfe,0x85,0xbf,0xad,0x9c,0xb7,0x37,0xee,0x88,0x77,0xfb,0xc4,0xc2,0x97,0x65,0x9f,0xe0,0xa6,0x7e,0xcc,0xf5,0xa8,0x1f,0x7f,0xbd,0x2f,0xf3,0x6b,0xd8,0x52,0x78,0x7c,0xb9,0xdb,0x52,0xdf,0x71,0xee,0xb5,0xf3,0xb5,0xef,0x3a,0xd1,0xd4,0xcb,0xae,0xd3,0x5f,0xeb,0xaf,0x81,0x2f,0xb3,0x54,0x79,0xe9,0xaa,0xab,0x42,0xf3,0x79,0x81,0xee,0xa7,0x16,0xed,0xfe,0x52,0xe7,0x7b,0x91,0x68,0xab,0xce,0x8b,0xe4,0xf5,0xeb,0x38,0xb3,0xdf,0x2e,0x94,0x5e,0x7f,0xe2,0xdd,0xb0,0x77,0xb1,0x76,0x5c,0xa6,0x67,0x44,0xd2,0x1d,0x11,0x31,0x63,0xea,0x7b,0xfc,0xe0,0xf1,0x6f,0xe3,0x7b,0xdf,0xf8,0x82,0xfc,0x90,0x14,0x4,0xe1,0x42,0x24,0x2,0x2c,0x8,0x82,0x20,0x8,0x82,0x20,0x8,0x3f,0x23,0x18,0xeb,0x60,0x5d,0x3,0x6b,0x1d,0x8c,0xb5,0x75,0x2e,0x5e,0x4a,0xa,0x48,0x71,0x21,0xe2,0xed,0x7a,0x89,0x16,0x1e,0x2e,0x2c,0xb2,0x99,0xf4,0x8a,0xc5,0x7c,0xb6,0x8c,0x7c,0x5e,0x69,0xe2,0x18,0xe2,0x45,0x72,0xa2,0x2,0x68,0x46,0xd9,0xee,0x57,0xf8,0x8f,0x6a,0xe1,0xd2,0xc2,0xfe,0xc8,0xec,0xd9,0xb7,0x2d,0xcf,0xad,0x1c,0xe2,0x9c,0xdc,0xa2,0x17,0x57,0xa6,0xe6,0x4b,0x5a,0x44,0x4a,0xcb,0x35,0x9d,0x3d,0xa5,0x97,0xb9,0xa,0xec,0x7f,0xf1,0xee,0xdf,0xe7,0x28,0x2b,0x7d,0x6f,0xc7,0xa9,0x76,0xee,0x7d,0x1c,0xb5,0xde,0x11,0xfb,0x96,0x8e,0xba,0x33,0xa2,0x9c,0x9a,0x5,0xcb,0x3a,0xf2,0x70,0x7f,0xfa,0x94,0xde,0x5b,0xc4,0xa1,0xf2,0xfa,0x7c,0xd1,0xb9,0xab,0xf3,0x7,0x51,0x7a,0x6f,0x2c,0x1c,0x67,0xae,0xf6,0xfc,0x1a,0xe4,0xb,0xaf,0xb3,0x9e,0xff,0x9e,0x53,0x58,0xc6,0x81,0x97,0x73,0x25,0xcb,0x7e,0x3d,0xb7,0xed,0xf8,0x5a,0xf6,0x19,0x5,0x79,0xcb,0xfd,0x18,0x5e,0x26,0x2a,0x8c,0xa5,0xe8,0xbd,0x4f,0xc8,0x5d,0x7c,0xe0,0xd9,0xf,0x56,0x38,0x77,0xc7,0xd5,0x5f,0x62,0x77,0xed,0x3d,0xcd,0x73,0xda,0x73,0x3e,0xe7,0x86,0xfd,0xff,0xd8,0x7b,0xb7,0xdf,0xcb,0xb6,0xec,0x3c,0xe8,0x9b,0x97,0xb5,0xf6,0xef,0x57,0xe7,0x9c,0xee,0xd3,0xa7,0x2f,0x6e,0xdf,0xfa,0x74,0xb7,0xfb,0xe2,0x6e,0xbb,0xdd,0xb6,0xe9,0xf8,0x46,0x12,0x62,0x90,0x23,0xe4,0xc8,0x8,0x11,0x4,0x42,0x11,0x3c,0xc0,0x13,0x20,0xf1,0x6f,0xf0,0xc8,0x63,0xc4,0x3,0x12,0xf,0x4,0x9,0x21,0x45,0x44,0x31,0xb2,0x1c,0x2,0x91,0xd,0xe,0xc4,0x8e,0x21,0x10,0xdb,0x89,0x1c,0xe3,0x76,0x1c,0x5f,0xbb,0xdb,0x7d,0x3d,0xa7,0xea,0xb7,0xf7,0x9a,0x73,0xe,0x1e,0xc6,0x65,0x8e,0xb9,0xf6,0xda,0x75,0xea,0x34,0xf6,0x29,0xb9,0x3c,0x87,0x54,0xaa,0xaa,0x7d,0x5d,0x97,0xbd,0xe6,0x5c,0xe3,0x9b,0xdf,0x25,0xb8,0x6b,0x91,0xf,0x4f,0x97,0xaf,0xdf,0xbd,0xf4,0x32,0x3e,0xf6,0x3d,0xff,0x12,0xde,0xf7,0xc1,0xef,0xc0,0x6f,0xfc,0xca,0x2f,0xe3,0x8f,0x7e,0xff,0xf3,0x73,0xb0,0x9c,0x35,0x6b,0xd6,0x55,0x4d,0x0,0x70,0xd6,0xac,0x59,0xb3,0x66,0xcd,0x9a,0x35,0x6b,0xd6,0xac,0x3f,0x25,0x65,0x61,0xa,0x21,0x20,0xc4,0x4,0xa2,0x86,0xba,0x6d,0xa8,0xb5,0x58,0x30,0xc5,0xf5,0x9b,0x30,0x60,0x36,0xc7,0x30,0xf,0x5d,0x81,0x58,0x6f,0xf5,0x18,0x3d,0xc5,0xbf,0xc,0xe1,0xc6,0xff,0x8f,0x70,0x98,0x80,0xd1,0xcf,0xee,0x9b,0x94,0xf4,0x8e,0x8f,0xed,0x77,0xfe,0x29,0x20,0xd0,0xe1,0x27,0xdd,0x96,0x0,0x87,0x9d,0xe4,0xd4,0x7f,0x93,0xbd,0xce,0x85,0x9b,0xe8,0xe7,0xd0,0x2d,0xed,0xf4,0xe,0x7b,0xbb,0x61,0x63,0x67,0xe7,0x9d,0xe,0x19,0x92,0x6f,0xc1,0xf8,0xbc,0x79,0xdc,0x1c,0xb4,0x34,0xf8,0x3b,0x3e,0x8d,0xdd,0x78,0xb4,0x71,0x6f,0x97,0x1,0xf9,0xe,0xd6,0x5b,0x11,0x38,0xf,0xfe,0x7f,0xed,0x21,0xa9,0x8f,0x5f,0x13,0x65,0x47,0x92,0xe0,0x5e,0x7c,0xdc,0xf,0xf,0xd1,0xf1,0x97,0x76,0xb,0x46,0x3a,0xbc,0xde,0xdf,0x4e,0xd0,0xc7,0xcb,0xef,0x7e,0xd,0x9f,0xfe,0xdc,0x5f,0xc0,0xef,0xfd,0xd6,0xb7,0xe0,0x37,0x7f,0xf5,0x97,0x40,0xad,0xce,0x41,0x73,0xd6,0xac,0x59,0x56,0x13,0x0,0x9c,0x35,0x6b,0xd6,0xac,0x59,0xb3,0x66,0xcd,0x9a,0x35,0xeb,0x4f,0x49,0x69,0x10,0x4,0x11,0xa1,0x6e,0x17,0x5c,0x2e,0xe7,0x21,0x5,0xf6,0x9b,0x4a,0x5,0x1d,0x40,0xa6,0xe,0x60,0x90,0xf3,0x1c,0xe3,0x67,0x68,0x84,0x8c,0x42,0xe8,0x1,0x13,0xb2,0x5d,0xca,0x8e,0xf2,0xc9,0xaa,0x3e,0x64,0x62,0xf0,0xdd,0xd3,0x14,0x5a,0xc2,0x10,0xdc,0xa1,0x89,0xb9,0xde,0xf7,0x6f,0x0,0x42,0xe4,0xfb,0xae,0x3c,0x3,0xc9,0x5,0x31,0x80,0x2c,0xd1,0xd7,0x3,0x8c,0x21,0x6,0x50,0x23,0xf8,0xd0,0x88,0xc1,0x5f,0x50,0xf7,0x3,0x7b,0x43,0x3c,0x1c,0x90,0xe0,0x34,0xb9,0x96,0xc6,0x20,0xb,0x4d,0xb4,0xdd,0x85,0x38,0xc8,0x46,0x4a,0xf2,0xac,0xf,0x8d,0xe0,0x94,0x58,0x84,0x0,0x6a,0x9c,0xa0,0xab,0xaf,0x6f,0xad,0xb9,0xd7,0x11,0x62,0x8a,0x68,0xad,0x31,0xef,0xd1,0x7,0xa7,0xb8,0xd,0x23,0xc7,0x10,0xf4,0x20,0x16,0x7f,0xe6,0xfe,0x58,0x45,0x17,0xd8,0x11,0x2c,0xd5,0xf8,0xda,0xe7,0xaf,0xcb,0x8c,0xaf,0x7d,0x0,0x61,0xe7,0x5,0x37,0x65,0xc8,0xcf,0xfa,0x5b,0xc,0xbb,0xa0,0x8f,0xb7,0xba,0x20,0x70,0xad,0x8e,0x3d,0xf8,0x6a,0xc2,0x31,0xa0,0xf7,0xb4,0xf7,0x29,0xf7,0xce,0x7e,0x9b,0xa,0xa,0xfb,0x50,0x14,0x77,0x6e,0xf7,0xc0,0xf8,0x1e,0xbc,0xdb,0xff,0x16,0x86,0xe0,0x93,0xb7,0x7d,0xc9,0x1e,0xbf,0x97,0x5a,0x43,0xab,0x5,0xef,0xff,0xd6,0xf,0xe1,0x72,0x7e,0xc0,0xbf,0xf8,0xf5,0x7f,0x34,0x7,0xcd,0x59,0xb3,0x66,0x59,0x4d,0x0,0x70,0xd6,0xac,0x59,0xb3,0x66,0xcd,0x9a,0x35,0x6b,0xd6,0xac,0x3f,0x25,0x15,0xd3,0x2,0xa2,0x86,0x56,0x2b,0xb6,0xcb,0x3,0xca,0xb6,0xa1,0x51,0x3,0xb5,0x26,0x60,0x57,0x38,0x4a,0x73,0x50,0xd4,0xc0,0xa3,0x77,0xd7,0xe0,0x81,0xa6,0xcc,0xa,0x60,0x17,0x63,0x42,0x6b,0x15,0x3e,0xa0,0x0,0x80,0x81,0x73,0xfa,0xd9,0x6,0x74,0x4,0x1,0xfe,0x94,0xa5,0x18,0xe3,0x0,0x3a,0xf1,0xe7,0xf5,0xe7,0x5b,0xa9,0x8,0x21,0xf2,0xfb,0x5,0xe8,0xe2,0x8f,0x1d,0x81,0x2d,0xdd,0x2f,0x53,0xbb,0x36,0xf5,0xf7,0x73,0xc2,0xd6,0x28,0xc0,0x98,0x3c,0xc0,0x20,0xd9,0x28,0x37,0x55,0x90,0xaf,0x9,0xc8,0x35,0x24,0xad,0xca,0xeb,0x20,0x0,0x9e,0x26,0xf3,0x2a,0xd0,0x42,0x8d,0x10,0x65,0x7f,0x42,0xc,0x68,0xb5,0x21,0xc4,0x60,0xc7,0x21,0x84,0x80,0xd6,0xaa,0x80,0x6e,0x11,0xb5,0x5c,0x10,0x62,0x1c,0xd2,0x7d,0x1,0x18,0x30,0x19,0x63,0x44,0x2d,0xa5,0x1f,0x8b,0x56,0x11,0x53,0x16,0x40,0x74,0xe3,0xef,0x68,0x2,0xc,0xa,0xc0,0x48,0xad,0x21,0xb5,0x8c,0xe6,0xce,0x13,0x51,0x93,0xe3,0xc1,0x7,0xc7,0x40,0x57,0xf9,0x4c,0x7e,0xac,0x83,0x9e,0x21,0x4,0xc4,0x98,0x50,0x8d,0x2d,0x4a,0x8,0x31,0x1,0xce,0x43,0x32,0xb8,0xd4,0xe1,0xe,0x46,0x92,0xcb,0xdb,0x78,0x8a,0x51,0xe1,0xfe,0x37,0x5,0x17,0x20,0x73,0xf5,0xfa,0xe,0x98,0xf6,0x73,0xe4,0xbf,0x63,0xa7,0x3b,0xdf,0x7b,0x1e,0xe,0x8f,0xf9,0x6f,0xf4,0xbf,0xd6,0xb7,0x62,0x46,0xbe,0x95,0x29,0xe5,0xb3,0xd4,0xb3,0xbe,0xf6,0x6d,0xfa,0x2e,0x1e,0xe9,0x9e,0x87,0xa7,0xaf,0x41,0x4d,0x6a,0xd,0xb5,0x16,0x94,0xb2,0xe1,0xa5,0x57,0xde,0x8d,0x69,0xf9,0x3f,0x6b,0xd6,0x2c,0x5f,0x13,0x0,0x9c,0x35,0x6b,0xd6,0xac,0x3f,0x13,0xd,0x63,0xc6,0xfb,0xbe,0xfd,0xa3,0x78,0xf7,0x6b,0xef,0x47,0xce,0xab,0xdd,0x10,0xa7,0x9c,0x51,0xb6,0xd,0xcb,0xba,0xa2,0xd6,0x2,0x80,0x1b,0x98,0x24,0x4d,0x8,0xb5,0x8a,0x10,0x13,0x62,0x8c,0x68,0xb5,0x5a,0x83,0xd5,0x6a,0x41,0x4c,0x69,0x60,0x4d,0xb4,0xd6,0x90,0x92,0x34,0x8b,0xd2,0x0,0x51,0xab,0x20,0x22,0xa4,0xbc,0xa0,0x96,0x2,0xa2,0x86,0x94,0x32,0x37,0x49,0xda,0x18,0x21,0xa0,0x96,0x6d,0xb8,0x89,0xe5,0xd7,0x6f,0x76,0x83,0x1b,0x53,0x6,0xb5,0x8a,0xd6,0xb8,0x19,0x1,0xf8,0x33,0xcb,0x76,0xb1,0xd7,0xb4,0x5a,0x70,0xb9,0x5c,0xd0,0xea,0x86,0x10,0x12,0x4a,0xb9,0x80,0x1a,0xf1,0x7e,0x11,0xd0,0xa8,0x4a,0x23,0x17,0xb0,0x2c,0xdc,0xfc,0xb4,0xca,0xd,0xe7,0xb2,0xae,0xb8,0x5c,0xce,0x88,0x1,0xa8,0xb5,0x22,0x49,0x83,0x5d,0x6b,0x43,0x8c,0x1,0x44,0x1,0x29,0x27,0xb4,0xb2,0x21,0xa6,0x5,0x79,0xc9,0x28,0x65,0x43,0x0,0xb0,0x6d,0x45,0xf6,0xbb,0x61,0x59,0x16,0xd4,0x5a,0x10,0x62,0x46,0x0,0x31,0x73,0x23,0x4,0xc4,0xc8,0xc7,0xa3,0x94,0xd,0xd4,0x1a,0xf2,0xb2,0x1a,0xe3,0xa3,0x96,0xd,0x31,0x66,0x94,0xed,0x8c,0x65,0x3d,0x81,0x49,0x21,0xcd,0x7c,0xbd,0xb6,0xf3,0x3,0x96,0xd3,0x3d,0x6a,0x2d,0xa8,0xdb,0x5,0xeb,0xe9,0x1e,0xb5,0x6e,0x48,0x79,0x91,0x63,0x42,0xc8,0x4b,0xe6,0xed,0x88,0x91,0x1b,0xaa,0xb6,0x21,0xa6,0x15,0xdb,0x76,0xc1,0xb2,0x2c,0xd6,0x44,0x12,0x15,0xc4,0x98,0xe5,0x1c,0x45,0x40,0x9b,0x60,0x69,0xbc,0x94,0x95,0x52,0x6b,0xe1,0xe3,0x1e,0x93,0x3d,0xc7,0xc7,0x81,0x8f,0x35,0x11,0xa1,0xb5,0xc2,0x4d,0x64,0xd9,0x90,0x97,0x95,0x9b,0xd9,0x5a,0x80,0x10,0xf9,0x1c,0x97,0xd,0x4d,0x1a,0xd4,0xba,0x5d,0x90,0x72,0xb6,0xdf,0x41,0x4c,0xdc,0x6c,0x42,0xf6,0x5f,0xc5,0x74,0x29,0x25,0x10,0x1,0xb5,0x36,0x24,0x65,0xb9,0xc8,0x6f,0x64,0xdb,0xce,0x48,0x31,0x21,0xe6,0x85,0xdf,0xeb,0x7e,0x2b,0x65,0xbb,0xd8,0x6f,0x8b,0xa8,0xa1,0x94,0x2a,0xfb,0x4d,0xf2,0x78,0x92,0xdf,0x6d,0xb5,0xe6,0x38,0x2f,0xb,0x42,0xcc,0xd8,0xce,0x8f,0xb9,0x19,0x4f,0x99,0x7f,0xe7,0xad,0xb9,0x6b,0x80,0xff,0x4d,0x8d,0x70,0x7e,0x78,0x13,0x97,0xc7,0x6f,0xa0,0x96,0xf3,0x1c,0x50,0x66,0x3d,0xd7,0xea,0x69,0xb5,0x64,0xd7,0xa3,0x67,0xfe,0x19,0x90,0x46,0x34,0xc0,0x20,0x10,0x80,0x2a,0x6,0x61,0x9f,0x5,0xc7,0x54,0x53,0x0,0xc6,0x31,0xbf,0x5a,0x13,0x60,0x29,0x46,0x6,0x6,0xa9,0x83,0x57,0x96,0x53,0x20,0xec,0x3a,0xfe,0x3c,0x58,0x88,0x47,0x10,0x70,0x2b,0xda,0xe7,0x31,0xc8,0xd6,0x4,0xa4,0x6c,0x3,0x33,0xae,0x81,0x9a,0x8e,0xf5,0x3c,0xbe,0x53,0x23,0xfb,0x7f,0x13,0x26,0x21,0x5f,0x8f,0xd,0x31,0x65,0x0,0x4d,0xc6,0xa3,0x86,0x90,0x32,0x83,0x9f,0xb5,0x22,0xa6,0x84,0x5a,0xb,0xa2,0x99,0xe7,0x29,0x28,0xc2,0x63,0x9e,0x67,0x72,0x5,0x4,0x50,0x0,0xa2,0xcc,0x5f,0x1,0xcc,0xbe,0x53,0x26,0x5e,0x90,0x63,0x19,0x52,0x2,0x55,0x6,0xfd,0x14,0x58,0xcc,0x31,0x3b,0xc6,0x1f,0x80,0xd6,0xcc,0x72,0x91,0x88,0x40,0xa8,0x48,0x39,0xf1,0x71,0x21,0x92,0xed,0x4e,0x9d,0x5d,0x48,0xc4,0xe0,0x5f,0x54,0xb0,0xb0,0x20,0xa5,0x6c,0xc,0x40,0x3e,0x64,0x81,0xc7,0xbc,0x94,0x50,0x36,0x99,0x23,0x5,0x40,0x85,0xb,0xd1,0x20,0x63,0x14,0x36,0x19,0xd6,0xab,0x3b,0x9f,0xd1,0x31,0x7,0x93,0x49,0xc4,0x6b,0x2d,0x76,0xde,0xf9,0xf7,0xd3,0x1c,0x70,0x1b,0x40,0x81,0x8c,0xc1,0xc9,0xaf,0xd,0x1d,0x8f,0x82,0x67,0xb0,0x29,0x8,0x25,0xbf,0x11,0xf,0x3a,0x37,0x39,0x66,0x44,0x2e,0x88,0x85,0x6e,0x82,0x6f,0xfc,0xbb,0xd,0xd7,0x6c,0x54,0x3a,0x6,0xec,0x74,0xdb,0x83,0xf8,0xe,0xee,0x99,0xaf,0x6,0x16,0x3b,0x0,0x3a,0xb8,0xed,0x3b,0x62,0xca,0x6,0x7,0x58,0x12,0xda,0xdb,0x80,0xf3,0x9e,0x15,0x60,0xfb,0x26,0x80,0xb8,0xb7,0x2,0x58,0x77,0xcf,0xf3,0x71,0xe9,0xbf,0xc5,0xb7,0x2b,0x21,0x9e,0x35,0x6b,0xd6,0x4,0x0,0x67,0xcd,0x9a,0x35,0x6b,0xd6,0x9f,0xe2,0xfa,0x96,0xf,0x7d,0x2,0x1f,0xfe,0xee,0xcf,0xe2,0xe5,0x57,0x5e,0x1d,0xbb,0x47,0xf8,0x74,0xb9,0xeb,0x1b,0xc9,0x2b,0xfb,0xf8,0x41,0x5a,0x75,0xfd,0xaa,0xe1,0xfe,0x56,0x57,0xef,0xbd,0xf9,0x7b,0x38,0xbe,0x91,0xbd,0x65,0x89,0xc4,0xef,0x4f,0x0,0x5a,0x4f,0x86,0x54,0xa6,0x0,0xbc,0xf1,0x39,0x83,0x3c,0xa,0x4e,0x1,0xcd,0x40,0xca,0x94,0x57,0x94,0xed,0xc2,0x60,0x65,0x88,0xa8,0x75,0x63,0x36,0x83,0xb2,0x2a,0x2,0xac,0x21,0x52,0x96,0x3,0x33,0x25,0xda,0x98,0x56,0x88,0x80,0xd6,0x8a,0x1,0x83,0x44,0xa,0x2c,0x2d,0xc6,0x40,0x20,0x62,0xb0,0x94,0x9a,0x32,0x26,0xfa,0xeb,0x82,0xb0,0x32,0xbc,0xc4,0xcc,0x4b,0xbc,0xba,0xf,0x50,0x30,0xb9,0x17,0xc0,0xc0,0xa1,0x82,0x60,0x5d,0x6,0x16,0xc5,0xb3,0xbc,0x33,0x66,0x18,0xac,0xb,0x6e,0x9b,0x93,0x34,0x6d,0x10,0x9f,0xf7,0x24,0xdf,0x21,0x5c,0x17,0xea,0xc2,0x21,0x6e,0x4a,0x45,0x9a,0x47,0xd5,0xbe,0xa3,0xff,0x1e,0xb4,0xc1,0x62,0xc3,0x7d,0x3,0x86,0x83,0x7f,0x4c,0xfd,0xc8,0x2,0xa8,0x36,0x34,0x22,0xc4,0x10,0x1c,0xa0,0xc0,0xfb,0x50,0x6b,0x35,0x0,0xd7,0x4b,0xa0,0x62,0x12,0x26,0x8c,0x80,0xc2,0xfd,0x18,0xf0,0xb1,0x8d,0x29,0xa3,0x69,0xc3,0xaa,0x0,0x84,0x42,0x20,0xa,0x6e,0x9a,0xec,0x2e,0xa0,0x19,0xd3,0x25,0xe,0x66,0xed,0x24,0x8d,0xa8,0x36,0xfc,0x57,0xec,0x25,0x61,0xc2,0xf4,0xd7,0xc2,0x3e,0xe7,0xf2,0xf0,0x4,0x5f,0xff,0xca,0x17,0xf1,0x85,0xdf,0xfb,0xe7,0x78,0xe3,0xcb,0x7f,0x30,0x1b,0xaa,0x59,0xcf,0xad,0x6a,0x29,0x37,0x50,0x8,0x1a,0x25,0xb0,0x16,0x1e,0x20,0x63,0xa6,0x80,0x5c,0x8d,0x1c,0xab,0xc,0x30,0x20,0x4b,0xaf,0x3d,0x65,0xe3,0x45,0xbb,0x7e,0xfc,0x75,0x58,0xfb,0xf4,0xe1,0x40,0x1d,0xbb,0x6,0x65,0xbc,0x50,0xa0,0x5f,0x1,0xc7,0xd6,0x1a,0x10,0xa3,0x8d,0x85,0x2a,0x94,0x54,0xf6,0x5c,0x6b,0x15,0x29,0xf6,0x71,0x5a,0x25,0xce,0xd4,0x1a,0x7f,0x77,0x4c,0xa8,0xd4,0xc,0xb4,0x52,0xef,0x43,0x5e,0x84,0x6a,0x26,0x25,0xd6,0xed,0xf3,0x12,0x4d,0x1b,0xab,0x88,0x43,0x2f,0xa2,0xb0,0xe1,0xec,0xf8,0x50,0x7f,0x7d,0x8c,0x89,0xd9,0x75,0x4d,0xc7,0x34,0x5e,0xfc,0xd2,0xc7,0xa3,0x1b,0xa3,0xc2,0x2e,0xb5,0x41,0x1,0x2c,0x5,0xa,0x41,0xc,0x16,0xa6,0x9c,0x65,0xcc,0x91,0xcf,0xa9,0x15,0x21,0x25,0x6,0x6,0x6b,0x45,0x88,0x3a,0x36,0x93,0x9b,0x23,0x79,0x9c,0x6d,0x32,0xd6,0xf1,0x76,0xc8,0xe2,0x89,0x5,0xb5,0xc8,0xb1,0x17,0xe0,0x52,0x65,0xd7,0x0,0x64,0x81,0xa8,0xd,0xa0,0x6c,0xab,0xfa,0xbb,0xd1,0x71,0xbb,0xd9,0x67,0xeb,0x18,0x4f,0xd4,0x58,0x62,0xac,0xe7,0x99,0xc6,0xfb,0x83,0xdb,0x12,0xda,0xf1,0x3e,0xa1,0xff,0x46,0x46,0x20,0xab,0x33,0x42,0xaf,0xdf,0x1a,0xb0,0xf3,0x97,0xa4,0x6b,0xe9,0xed,0x8,0x84,0x7,0x77,0x2b,0x73,0x2c,0xa9,0x3d,0x2,0xc7,0x46,0x70,0x7c,0xf7,0xfa,0x7e,0xf4,0x9f,0x9,0xcc,0xa3,0xb7,0xe5,0xb9,0xf8,0xb6,0x91,0x3f,0xbc,0xa5,0xa7,0xe3,0x4d,0x86,0x60,0x7,0x5d,0xe7,0x5c,0x35,0x6b,0xd6,0xac,0x9,0x0,0xce,0x9a,0x35,0x6b,0xd6,0x9f,0x91,0xfa,0xe8,0xf7,0xfe,0x30,0x3e,0xf6,0xbd,0x9f,0x63,0x66,0xc1,0x4d,0xf3,0xf3,0xa7,0x3d,0xd6,0xef,0xe4,0x8f,0x4c,0xcc,0x3b,0x2b,0x40,0x41,0x18,0x38,0x76,0x56,0xff,0xc,0x63,0x15,0x98,0xb7,0x12,0xae,0x9d,0xb4,0x7d,0x7c,0xe3,0xee,0xa6,0x56,0x19,0xe,0xf0,0xef,0x87,0xbf,0x8f,0xef,0xb7,0xed,0x31,0xa,0x7b,0xd1,0x18,0x7f,0xa,0x68,0x35,0xf3,0x5c,0x52,0xe0,0xca,0x64,0x67,0xe,0x14,0x1d,0x3d,0xa0,0x9a,0x61,0xa4,0x2a,0xc7,0x52,0x49,0x5c,0xb0,0x4,0x4a,0x98,0x54,0x4c,0x1b,0x1c,0xf5,0x67,0x32,0x0,0xcc,0x18,0x2c,0xbd,0xe9,0x8c,0x31,0xe,0xdf,0xad,0x2c,0x1e,0xee,0x87,0xe3,0x6e,0xe5,0xbe,0x1f,0x17,0x65,0xb0,0xd,0x82,0x32,0x65,0xeb,0x11,0x71,0x93,0x1a,0x22,0x42,0x4c,0xd6,0xf0,0x59,0xd3,0xa5,0x9f,0xa5,0x0,0x1a,0x5d,0x27,0x84,0x76,0x9,0xa0,0x80,0x8c,0xde,0xdf,0x4b,0xd9,0x3d,0xba,0xbd,0x72,0x1c,0xf7,0x20,0xda,0x61,0x82,0xa8,0x3,0x6f,0xc9,0x98,0x87,0xfa,0x7e,0x98,0xec,0x4f,0x65,0x75,0x57,0x0,0xb2,0x6d,0x9b,0xdf,0x86,0x86,0x10,0xb3,0x0,0x1,0x70,0x72,0x30,0xd8,0xf9,0x3,0xe2,0xe0,0x69,0x15,0x82,0x6f,0x2e,0xfb,0xef,0xa0,0xcb,0x1c,0x47,0x0,0x45,0xff,0xde,0xee,0x1e,0x61,0x59,0x4f,0xc8,0xcb,0x9,0xbf,0xd3,0x1a,0xde,0xfc,0xca,0x1f,0xce,0x1,0x66,0xd6,0x73,0x29,0x2f,0xc9,0x55,0xf0,0x5e,0xa2,0x7c,0x87,0x71,0x9b,0xaf,0x23,0x18,0x40,0x86,0xd0,0xc7,0x30,0x1e,0x93,0xe4,0xfa,0x46,0x40,0x3,0xd,0xe3,0x54,0x97,0xd7,0x6,0xbb,0x56,0xfd,0x82,0x43,0x4f,0x47,0xe5,0x5,0x7,0x46,0xbb,0x78,0xac,0xb1,0xeb,0x47,0xd9,0x86,0x6e,0x6c,0x1d,0xc6,0xb8,0x46,0xcc,0x4,0x74,0x0,0x4f,0xab,0xc5,0x0,0xa9,0x2a,0xac,0x6f,0x4d,0xba,0x55,0x96,0x59,0x8,0x30,0x96,0xee,0x0,0x54,0x51,0x97,0x19,0x93,0x24,0x12,0xf7,0x5,0x2b,0x81,0x97,0x64,0xcc,0x55,0xb6,0x9a,0x8e,0x9d,0x9a,0xd0,0xab,0xe3,0x64,0x4c,0x72,0x8c,0x10,0x41,0x2,0x9a,0x2,0xcc,0x10,0xef,0xc1,0xb0,0xc1,0xac,0xea,0x18,0x38,0xcb,0xe3,0xfb,0x3d,0x60,0x46,0xc4,0xac,0x62,0x1,0x4,0x3b,0x18,0xc7,0x2c,0xbd,0x98,0x33,0xb3,0xd7,0x65,0x5b,0x94,0x7d,0xad,0xbb,0xc6,0xec,0x64,0x3e,0x5f,0x39,0x2f,0x68,0xc2,0xd2,0xe,0x29,0xca,0xb1,0x58,0x8c,0xad,0xcc,0x8b,0x2c,0x1d,0x34,0x44,0x10,0xc0,0x35,0x44,0xf9,0xed,0xb8,0xc5,0xf,0x99,0x27,0x42,0xea,0x8b,0x57,0xf6,0x1b,0x1,0x81,0x4,0xac,0xb4,0x45,0x33,0x99,0x6f,0x74,0x5c,0x24,0xea,0x9,0xc7,0x57,0x46,0x7c,0x44,0xe3,0x5c,0xee,0x41,0x69,0xda,0xf9,0xe8,0x39,0x38,0xce,0xcb,0x81,0x3d,0xa0,0xb5,0x67,0xb2,0x11,0x5d,0x3,0x5c,0xbb,0x99,0xf1,0x1a,0x23,0x3f,0x80,0xc9,0xbe,0xf9,0xa,0xdf,0x4,0x30,0xf7,0x76,0x80,0xbf,0xb7,0x90,0x30,0xf,0xdf,0xe1,0xe6,0x49,0x8c,0xcc,0x5f,0x66,0x87,0xce,0x20,0x90,0x59,0xb3,0x66,0x4d,0x0,0x70,0xd6,0xac,0x59,0xb3,0x5e,0xe8,0xfa,0xe4,0xf,0xfe,0x45,0x7c,0xfc,0x7b,0x3f,0x27,0xec,0x2f,0x74,0x0,0xc6,0x9a,0x30,0x7,0xbe,0x18,0x47,0xc4,0x1b,0xbd,0x87,0xe1,0x1e,0x77,0xf4,0x71,0x77,0x3e,0x3c,0xde,0x3c,0x1d,0x7e,0xa5,0x7e,0x7,0x2c,0x12,0x1,0x61,0x71,0xe0,0x4a,0x73,0x51,0x89,0xcc,0x6a,0x53,0xb9,0x59,0x6b,0xd5,0xbd,0xae,0xdf,0x14,0xc7,0xb0,0x18,0x19,0x50,0x1,0x1c,0xf5,0x7c,0xa,0xfb,0xe6,0x2,0x79,0x20,0x39,0x92,0x4b,0xdb,0xd3,0xf7,0x7a,0x56,0x98,0xbf,0xd9,0x8e,0x71,0xe5,0xc6,0xd2,0x35,0x21,0x2c,0x2d,0xab,0x0,0x8,0x59,0xf6,0xc3,0xfb,0x50,0xf5,0xa6,0xaf,0x59,0x33,0xa4,0xf2,0x37,0x6d,0xc4,0xb8,0xb9,0xd6,0x66,0x26,0x76,0x40,0xcb,0xb6,0x6b,0xdc,0x56,0x6b,0x7c,0x0,0x34,0x69,0x20,0x5b,0x6b,0xee,0x7d,0x18,0x99,0x84,0x1e,0xe0,0x2,0x4b,0x83,0x61,0xe7,0x7,0xe6,0x1,0xa5,0xe7,0x52,0x19,0x3d,0xbd,0x51,0x15,0x66,0x8d,0x0,0xc,0xea,0xf3,0x15,0x7,0x1f,0xaf,0xe0,0xe4,0x67,0x64,0x4d,0x7d,0x73,0x92,0xb0,0xce,0xe2,0xb,0xc6,0xcc,0x19,0x98,0x23,0xd6,0xe0,0x85,0x41,0x36,0x16,0x42,0x40,0x4b,0x5e,0x36,0x16,0x44,0x2a,0x1c,0x84,0x5,0xd4,0x8f,0x5f,0x7,0xf0,0x46,0x89,0xd7,0x60,0xca,0xef,0xc0,0x5f,0x3d,0xb2,0x4d,0xce,0x99,0x81,0x0,0xfa,0x5b,0x8,0xc1,0x8c,0xf0,0xf5,0x33,0x19,0x4,0xa8,0x26,0xa1,0x6e,0xb5,0xe0,0xfe,0xa5,0x57,0xf0,0xf2,0xbb,0x5e,0xc5,0xe3,0xaf,0x7d,0x69,0x36,0x55,0xb3,0x9e,0x4b,0xa5,0xbc,0x74,0xa0,0x4,0x1d,0x2b,0x8,0x2e,0xb4,0x60,0xb8,0x5c,0xe3,0x78,0x3d,0xe8,0x98,0xc7,0x8b,0x18,0x40,0x55,0xc9,0xbb,0xc8,0xdf,0xa3,0x63,0xd8,0x76,0x50,0xa1,0x93,0xae,0x3,0x7a,0xa,0x71,0x55,0xcf,0xbd,0x3e,0x30,0x33,0x8,0xa8,0x8b,0x7,0x31,0x2,0xad,0x21,0xe6,0x6c,0x92,0x57,0xbe,0x1c,0x85,0xa9,0x26,0x40,0x53,0xad,0x5,0x11,0xa,0xc8,0x2b,0x8,0x16,0x8d,0xfd,0x65,0xcc,0x44,0x19,0x27,0x75,0x7b,0x21,0xfb,0x41,0x80,0xcd,0x75,0xc1,0xc0,0xa6,0x3e,0x27,0xf0,0xb5,0xec,0x81,0x23,0x9,0x2f,0x41,0xd8,0x1,0x49,0x1e,0xbc,0x8b,0x6e,0xc,0x96,0xb1,0x26,0x50,0x67,0x9,0xa2,0x3,0x81,0x31,0xad,0xe2,0xf9,0xc7,0xdb,0x50,0xcb,0x66,0xf6,0x19,0x2a,0xcf,0x8e,0x32,0x57,0xd8,0xdc,0x12,0x22,0x3f,0x26,0xd2,0x5d,0x65,0x65,0xe6,0xe5,0x24,0xf6,0x1b,0x6c,0x1b,0xb1,0x2c,0xab,0x58,0x6c,0x64,0x80,0x8,0x65,0x3b,0xdb,0xf8,0x59,0xb6,0xb,0x52,0x5e,0xd0,0x6a,0xe5,0xbf,0xc1,0xc0,0x62,0xab,0xd5,0x18,0x87,0x3d,0x34,0xa6,0x4b,0x7c,0xfd,0x62,0x92,0xb2,0x5,0x75,0x2e,0x49,0x31,0x89,0x25,0x88,0xcc,0x11,0xb6,0x80,0xc2,0xe3,0xa0,0x2,0xcb,0x3c,0x5f,0x74,0x60,0xf8,0x1a,0x1f,0xb,0x6,0xc4,0xee,0x13,0x6e,0xf7,0x52,0xdc,0x2e,0x7,0xc7,0x30,0x97,0xd,0x40,0xe1,0x53,0x98,0x6c,0x47,0x32,0x57,0xcf,0xee,0x7b,0xc7,0x39,0x70,0xe1,0x19,0xc0,0xc1,0xc3,0x45,0xd0,0xfd,0x4d,0x97,0x5e,0x5b,0x74,0x2d,0x97,0x8,0xe,0xd6,0x3c,0x78,0xcd,0xa0,0xa6,0x98,0x35,0x6b,0xd6,0xac,0x9,0x0,0xce,0x9a,0x35,0x6b,0xd6,0x8b,0x5b,0xdf,0xf3,0x43,0xff,0x1a,0x3e,0xfa,0xe9,0x1f,0x90,0x7b,0xbf,0x76,0x7d,0xf3,0xc9,0xe8,0x95,0xdd,0x47,0xe,0xb2,0x17,0x6d,0x86,0xc2,0xfe,0x2e,0x12,0x8e,0x41,0x27,0xec,0x2a,0x12,0x9f,0x9c,0xd0,0x8d,0xbc,0xc9,0x68,0x82,0xda,0x32,0xb6,0xdd,0x2a,0x35,0x39,0x92,0xa0,0xde,0xd8,0x37,0x98,0x85,0x54,0xeb,0xdb,0x65,0x4d,0x86,0x74,0xb8,0x4d,0x98,0x5e,0xcd,0x40,0x9a,0xda,0xb7,0x6b,0x67,0x8,0xef,0x6f,0x83,0x8d,0xa1,0xe7,0xf6,0x9f,0xc4,0xab,0x50,0x7b,0xc1,0x18,0x3b,0x8b,0xa1,0x37,0x34,0xfd,0xa6,0xbc,0xd5,0x6a,0x9e,0x79,0xe4,0x64,0xba,0x26,0x3d,0x35,0x69,0x18,0x99,0xcc,0x8e,0xa0,0xd,0x5f,0x19,0xf6,0x8d,0x77,0xab,0xe,0x60,0x68,0xf3,0x5e,0x5c,0xda,0xcd,0xbb,0x66,0x20,0x4,0x38,0xd6,0x48,0xf7,0x5e,0xd2,0xfd,0xf0,0x7,0x4d,0xe5,0xab,0x1,0x30,0x53,0x7a,0x72,0x7e,0x40,0x7a,0xd8,0x9b,0xf8,0x3e,0xaa,0xec,0x59,0xa8,0x35,0x6,0x18,0x6a,0xeb,0xdf,0x6,0xa0,0x8b,0x9b,0x61,0x6e,0xe4,0x3b,0x6b,0x28,0xa,0xe3,0x87,0x81,0xe5,0xd0,0xa5,0xca,0x80,0x3,0x65,0xdd,0x19,0x12,0xf,0xc0,0x7e,0x4e,0x94,0x49,0x54,0xba,0xa4,0xd8,0x31,0x2a,0x55,0xe6,0xe5,0x25,0x8e,0xfe,0x97,0xdb,0x1f,0xdb,0x3,0x8e,0xbe,0x91,0xf,0x8,0xa1,0xda,0xfe,0x72,0x43,0xde,0x3,0xf,0x18,0xc,0xa8,0x26,0x99,0x56,0xa9,0xb6,0x26,0x89,0xe6,0x65,0xc5,0xe9,0xee,0x1e,0xf7,0x2f,0xbd,0x6b,0xca,0xaa,0x66,0x3d,0xb7,0x22,0xc7,0x0,0xb6,0x20,0xb,0x7,0xc8,0x77,0xa9,0x7b,0x4f,0x77,0xf5,0x29,0xbb,0x8,0x18,0x3c,0xf2,0x7c,0x60,0x47,0xd0,0x64,0x5a,0x1,0x87,0xec,0x39,0x79,0x8c,0x6a,0x5,0x62,0x30,0x90,0xcd,0x3e,0xc7,0xc9,0x88,0x75,0xd4,0x8d,0xc2,0x6,0x54,0xf6,0x38,0x7b,0x80,0x5e,0x0,0x4,0x3,0xd9,0x6a,0x2b,0x8,0x60,0xaf,0x3b,0x88,0xb7,0x60,0x8,0xec,0xb,0x9b,0xf2,0x8a,0x80,0xc6,0xd6,0x1,0xe2,0x5,0xa8,0x8b,0x20,0xb6,0xdd,0x21,0x19,0xdb,0x50,0x17,0x64,0x20,0xb,0x2e,0x4,0xd8,0x31,0x50,0x40,0x4e,0x81,0x96,0x6e,0x3,0x80,0xc1,0xde,0x82,0xc7,0xff,0x2e,0x9d,0x6e,0xad,0x21,0x2f,0x8b,0xd8,0x42,0x50,0x97,0x33,0xcb,0x7e,0x26,0x61,0x84,0xb3,0x8f,0x6d,0xec,0xfb,0xdc,0xfc,0xb1,0x70,0x56,0xb,0xf0,0x40,0x69,0x5f,0x20,0xd2,0x5,0x87,0x5a,0xab,0x78,0xdb,0x12,0x96,0x74,0x42,0x4a,0xb,0x8a,0x4,0x85,0xe8,0x62,0x53,0x4c,0x59,0xd8,0xd2,0xc,0xfa,0x31,0x88,0x27,0x4c,0x68,0xfd,0xfe,0x5a,0xb1,0xac,0x27,0xfe,0x2c,0x4b,0x55,0x1e,0xfd,0x20,0x6d,0x1,0x4b,0xc7,0xfc,0x18,0x7,0x7f,0x3f,0x3f,0x96,0xf2,0xb9,0xa5,0xee,0xb,0x19,0x1c,0xa3,0xd3,0x2d,0xac,0x19,0xb0,0xe5,0x58,0xdd,0x7b,0xa0,0xce,0xe6,0x83,0x61,0x82,0x80,0xb,0x7f,0xa1,0x9b,0xc0,0x5e,0x70,0xa0,0x22,0xed,0xae,0x89,0xe3,0x99,0xff,0xb9,0x5e,0xa8,0xbb,0xb0,0x1d,0xb7,0x80,0x6,0x1a,0xe4,0xf5,0x57,0x60,0x9e,0xbf,0x39,0x1b,0x57,0x7,0xdd,0x6b,0xe8,0xf8,0xeb,0xb0,0xbb,0xd7,0x99,0x1,0x20,0xb3,0x66,0xcd,0x9a,0x0,0xe0,0xac,0x59,0xb3,0x66,0xbd,0xb8,0xf5,0x99,0x1f,0xfd,0xcb,0xf8,0xf0,0x27,0x3e,0xc3,0xc9,0x90,0x6a,0x6,0xee,0x8d,0xb4,0xf7,0x37,0x95,0xd8,0x3d,0x7e,0xeb,0xdf,0x47,0x37,0xa1,0x4f,0x53,0xd,0x1f,0xdf,0x11,0x8f,0xc0,0x9f,0xbf,0x29,0xf6,0xe0,0xd0,0x10,0x5,0xb8,0x7f,0xdd,0xf8,0x1e,0xda,0x35,0x5,0xa3,0x89,0x38,0xd,0xdf,0xa5,0xcd,0x70,0x97,0x13,0xfb,0x97,0x8d,0xec,0x47,0x72,0xfe,0x88,0x3e,0x11,0x31,0xec,0x7c,0xef,0x8e,0x3c,0xb7,0x82,0x93,0x33,0x7b,0x96,0x1c,0xd1,0x75,0x13,0x74,0xdd,0x1c,0x8d,0xaf,0x1b,0x65,0x4c,0x61,0xe7,0x1b,0x38,0xbc,0xf9,0xea,0x10,0x36,0x4b,0x86,0x54,0xf0,0x2b,0xb8,0x7d,0xc0,0x28,0x7b,0x73,0xd2,0xeb,0x10,0x8e,0xb6,0x2d,0x8e,0x12,0xee,0x81,0xdd,0xc9,0x80,0xb1,0x2,0x0,0x24,0x0,0x6b,0x4f,0xfc,0x1c,0x3e,0xa9,0x4b,0xc6,0x87,0xc6,0xe,0x0,0xce,0xce,0xc3,0xf,0x96,0x6a,0xd9,0xbf,0x97,0x9c,0xbf,0xa2,0x82,0x7b,0xc1,0x2,0x4d,0x7a,0xcf,0xd3,0x65,0xd6,0x6,0x16,0xec,0x18,0x26,0x61,0xc7,0x62,0xa4,0x41,0x3a,0xbc,0x39,0x50,0x31,0x3a,0x56,0x27,0x37,0xda,0x1c,0xdc,0x92,0x2c,0x44,0x66,0xd6,0xac,0x77,0xb2,0x7c,0x50,0x87,0x62,0x7,0xc,0xe4,0xf4,0x6b,0x55,0x41,0x31,0xbb,0x52,0x9d,0x27,0x27,0x1c,0xd8,0x34,0x48,0x39,0x1d,0xd8,0xa3,0xd7,0xf,0xb5,0x9e,0xc,0xab,0xc0,0x97,0xbe,0xa7,0x95,0x22,0xaf,0xa9,0x12,0xa4,0xd3,0x53,0x6d,0xfd,0x18,0xa7,0xb6,0x9,0x31,0x46,0x63,0x99,0x75,0x19,0x69,0x97,0xd,0xeb,0xb8,0xd0,0x5a,0xe3,0x40,0x24,0xf9,0xee,0xbc,0xac,0xec,0xb,0xa8,0xb,0x3,0xe,0xf4,0xe1,0xb0,0x11,0xe,0x22,0x32,0x79,0x6f,0x6b,0xcc,0x86,0x93,0xed,0x52,0x6,0x35,0x9c,0xb4,0x59,0xc7,0x77,0x5,0xf5,0xd4,0xeb,0xcf,0xc6,0x48,0x91,0x21,0xc7,0xd8,0xc3,0x2d,0x62,0xc,0xa8,0x85,0x17,0x10,0x94,0x9d,0xd8,0xa8,0x1a,0x5b,0x91,0x81,0xcb,0x62,0x20,0x60,0x7,0x9,0xa3,0x30,0xb7,0xf9,0x64,0xe5,0xc4,0x21,0x52,0x7d,0x9f,0x93,0xd9,0x3a,0xa4,0x94,0x81,0xa4,0xc1,0x57,0x1c,0x42,0xa5,0x27,0x36,0x3a,0x26,0xa7,0x32,0xff,0xfa,0x18,0x45,0xdd,0x33,0xd1,0x0,0x5c,0x60,0x59,0xef,0x50,0x36,0x4e,0x23,0xce,0x81,0x65,0xd5,0x41,0xce,0xa5,0x8d,0xa5,0x2,0x94,0xf6,0x85,0x98,0x38,0x8e,0x7b,0xe4,0x7e,0x43,0xe2,0xd9,0xaa,0x2c,0x46,0xde,0xc6,0x38,0x58,0x2a,0xa8,0x1a,0x7d,0xf,0xdc,0x79,0xb5,0xc0,0xd5,0x7c,0x39,0x48,0x89,0x71,0x73,0x7e,0x24,0x7a,0x4e,0x8c,0xbe,0x67,0x6,0xfc,0xc2,0xe,0xe8,0xdb,0x23,0x7a,0x80,0xb7,0xbd,0x80,0xbb,0x53,0xb8,0xda,0x31,0x7b,0xd,0xe1,0xd6,0x4e,0xd3,0xad,0xed,0x50,0x90,0x57,0xaf,0xbf,0x5a,0xe6,0xc0,0x39,0x6b,0xd6,0xac,0x9,0x0,0xce,0x9a,0x35,0x6b,0xd6,0x8b,0x56,0xaf,0x7f,0xf7,0xf,0xe2,0x3b,0x3e,0xfa,0xdd,0x78,0x78,0xf2,0xa6,0xa5,0x2d,0xd2,0x5e,0x13,0xe2,0x40,0xad,0x6b,0x49,0xce,0x68,0xec,0xbe,0x7,0x95,0xec,0x26,0xbc,0xed,0x41,0xaf,0xce,0x94,0xf3,0xb2,0xce,0x51,0xe2,0xe9,0xa4,0xbf,0x61,0x94,0x10,0xa9,0x87,0x12,0x9c,0xb4,0xcc,0x3,0x76,0x1d,0xd7,0xdb,0xcb,0x7c,0x46,0x90,0xc6,0x3,0x41,0x43,0xe3,0xeb,0xc0,0x9d,0x4e,0x50,0xa0,0xc1,0xc4,0x7d,0xaf,0xca,0x19,0x5c,0x11,0x77,0x6c,0x85,0x2e,0x97,0xa6,0xee,0x3b,0xb7,0x6f,0x4c,0x9d,0x3f,0x94,0x6d,0xa7,0xa4,0xec,0x6,0x77,0xe3,0x8f,0x41,0x5,0xd4,0xd9,0x14,0x9d,0x5d,0xb8,0x7,0x3f,0x47,0xd5,0xd0,0xe8,0x8d,0x14,0x6e,0x2,0xa5,0x83,0x77,0xdf,0xd8,0x56,0x3d,0xad,0x95,0x70,0xe0,0x22,0x5d,0xfd,0x16,0xcc,0x3c,0x7f,0xe7,0xb,0x35,0x2,0x9c,0xc1,0x7d,0x44,0x97,0x9d,0xed,0x1b,0xbc,0xe1,0xf8,0x5e,0xb1,0x1b,0xc2,0x70,0x8c,0xae,0x1,0xbb,0x7e,0x66,0x6e,0x81,0xab,0xdf,0x5c,0x23,0xd7,0xbf,0x93,0x5a,0x43,0xad,0x5,0x65,0xbb,0x60,0x3d,0xdd,0xcd,0x8e,0xb5,0xef,0x8f,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0xc1,0x66,0xd6,0x73,0xab,0xed,0xe1,0xb1,0x13,0xe6,0x52,0xf,0x40,0x72,0x9e,0xa6,0x96,0x66,0xeb,0xd2,0x77,0x19,0xb8,0x69,0x3d,0xd,0x96,0xc8,0x58,0x70,0xc1,0xd,0x44,0x3a,0xa6,0x35,0x61,0xde,0x41,0x59,0xbe,0x26,0xf7,0xe4,0xd9,0x23,0x26,0x66,0xfb,0xc6,0xc8,0xed,0x4,0xed,0x1,0x42,0x8c,0xe1,0x3f,0x9e,0x59,0x17,0xa0,0x52,0x58,0x7f,0xd1,0x8b,0x75,0x82,0xf3,0x11,0x34,0x40,0x8e,0x69,0x8b,0x43,0x90,0x10,0x4,0x78,0x52,0x9,0xac,0x32,0x98,0x31,0xf8,0xd3,0x89,0x17,0xa0,0x84,0xfb,0x18,0xe8,0xe9,0x3e,0x3f,0x68,0x7a,0xba,0x2e,0x10,0x85,0x68,0xfe,0xb1,0xc3,0x3c,0x41,0x30,0xa6,0x5d,0xad,0xc5,0x16,0x15,0xd4,0x2f,0x90,0x40,0x58,0xd6,0x95,0xad,0x22,0xdc,0x38,0x55,0x6b,0xc5,0xba,0xde,0x61,0xdb,0xce,0x66,0x71,0x91,0x97,0xc5,0xc2,0x45,0xc8,0x92,0x8d,0x99,0x6d,0x9d,0xf3,0xc2,0x80,0x5c,0xa,0x9c,0x4e,0x1f,0x13,0x5a,0x2b,0xec,0xd7,0x27,0xc0,0xe1,0x72,0xba,0xeb,0xa9,0xb9,0x8c,0xce,0x8a,0xf,0x2f,0x1f,0x73,0x3b,0x57,0x34,0x7a,0xc0,0x6,0xc0,0x42,0xb1,0x9a,0xce,0xd3,0xd4,0xe7,0x40,0xde,0x86,0x22,0xc7,0x38,0xba,0xc5,0x1a,0x97,0x2c,0x4d,0x32,0xb7,0xab,0x2c,0x9b,0x30,0x7a,0xd9,0xa2,0x83,0x96,0x7b,0xeb,0x7,0x3d,0xe6,0x26,0xe9,0x76,0xac,0xee,0xb7,0x9b,0x76,0xfb,0xc7,0x88,0xdc,0x3d,0x65,0xee,0x7c,0x8b,0xd7,0xf,0x6f,0xf5,0x49,0xc9,0x4e,0x9e,0x7f,0xb4,0xe0,0xea,0x8f,0x9,0x76,0x64,0x41,0xba,0x81,0xf0,0xed,0x72,0xdb,0xf6,0xeb,0xb2,0x47,0xb3,0xf8,0x4c,0x0,0x9e,0x35,0x6b,0xd6,0x4,0x0,0x67,0xcd,0x9a,0x35,0xeb,0x5,0xae,0xf,0x7c,0xdb,0xeb,0xd8,0x2e,0x67,0xd4,0x52,0xc4,0x10,0xbc,0xd,0x7e,0x72,0x3,0xeb,0xe9,0xca,0x62,0xbb,0x3,0x74,0x9c,0xfe,0xe8,0x64,0xa1,0x44,0x3,0xe7,0x2e,0x38,0x31,0xa7,0x97,0x35,0xe9,0xbd,0xab,0x32,0x2,0xd8,0xc7,0x28,0xd,0x52,0x94,0x0,0xef,0x25,0x14,0x81,0x5a,0x59,0xfe,0xa,0x98,0xd7,0x50,0xf0,0xe0,0x57,0x18,0x60,0xba,0x21,0x21,0xd0,0x8b,0x5b,0x4c,0xaa,0xa6,0xcd,0x8a,0x36,0x16,0x8e,0xd1,0x72,0x80,0x82,0xee,0x6c,0xa,0x3d,0x33,0xad,0x27,0xf3,0xd2,0x60,0x23,0x3f,0x12,0x14,0x83,0x3,0xc2,0xae,0x5f,0xb7,0xfb,0xde,0x81,0xe9,0xd0,0xe,0x0,0xac,0xf1,0x75,0xbd,0x71,0x73,0x0,0xa8,0x85,0xb1,0x90,0x33,0xc5,0xbf,0x75,0x93,0x1f,0x70,0x15,0xca,0x41,0xd7,0xcc,0xc4,0xc3,0x83,0x61,0xa8,0x1d,0x9e,0xa,0x10,0xfa,0xdf,0x41,0x7,0x0,0xa3,0xf4,0xe2,0xcd,0x1,0x72,0x7d,0xf7,0x39,0xdd,0x98,0x6,0x20,0x53,0x13,0x8f,0xf7,0xcd,0x8b,0xfd,0xea,0xc8,0x7b,0x3f,0x8e,0x80,0xe7,0x35,0xe8,0x77,0x1d,0xe6,0xf1,0x74,0xb0,0xf3,0x20,0xf4,0xc6,0x35,0xb0,0x24,0x40,0x49,0x2b,0x1b,0x6a,0x63,0x50,0x24,0x2d,0x27,0xb4,0xba,0xcd,0x41,0x67,0xd6,0x3b,0x5e,0x69,0x39,0xed,0x7e,0xc5,0x3e,0xa1,0x9d,0x24,0x69,0xb7,0x27,0xf0,0x2a,0x43,0x8d,0x31,0xb3,0xe8,0x42,0x3d,0x8a,0x5,0x6,0x31,0x80,0x27,0xb6,0x4,0x8e,0xd,0xa7,0x72,0xdd,0x5a,0xb,0x4b,0xf2,0x85,0x21,0xdc,0xcc,0x83,0xb5,0x2,0x88,0x9d,0x61,0xa8,0xe3,0x74,0x8c,0x20,0x9,0xa0,0xd0,0xef,0xb4,0xb9,0xa1,0xb0,0x9f,0x69,0xa1,0xd,0x51,0xc0,0xaa,0x5a,0x8a,0xf9,0xe2,0xb5,0x56,0x8d,0xa5,0x8,0x1,0xa,0xa3,0xf8,0xa,0xaa,0x7,0xaa,0x82,0x9b,0xa,0xbe,0xa5,0xbc,0xa0,0x94,0xd,0x29,0x75,0x86,0x61,0x14,0x90,0x2b,0xc4,0x4,0xaa,0x15,0x69,0x61,0xf,0x59,0xb5,0x45,0x50,0x8f,0x53,0x6a,0xd5,0xfc,0x0,0xfd,0x71,0x4,0xc1,0x3e,0xcf,0x18,0x7f,0x72,0x8c,0x92,0xf3,0x1,0x24,0x67,0x1,0x51,0x4b,0x11,0x90,0x70,0x5c,0xdc,0xb8,0x9c,0x9f,0xd8,0xe3,0xbc,0xcd,0x64,0xac,0x49,0x5d,0x78,0x23,0x2,0x96,0xf5,0xc4,0xa1,0x43,0x1b,0xb3,0xa1,0x53,0xca,0x20,0xf4,0x0,0x11,0x5,0xdd,0x38,0xa4,0x23,0x18,0xcb,0x91,0xe4,0x38,0x86,0xb0,0x8,0xfe,0x46,0x1d,0xd8,0x74,0xc0,0x6c,0x8c,0xd9,0x58,0xd9,0x31,0x24,0x4b,0x57,0xe7,0xf3,0xe,0x66,0x38,0x7a,0xef,0x43,0x3d,0x77,0xb5,0xf,0x95,0x7a,0xfc,0x52,0xec,0x9e,0xb4,0x3d,0x5d,0x5a,0x7f,0x1f,0xd7,0xb,0x76,0x7a,0x7c,0x9b,0xf,0x93,0xb9,0x31,0x2,0xe3,0x4f,0x12,0xc8,0xba,0x92,0xe6,0x86,0x83,0xb9,0xf8,0xc8,0x9b,0x8f,0x6,0xa0,0x6f,0x30,0xc6,0x54,0xb,0x14,0x5c,0x39,0x9e,0xd8,0xe7,0xc,0x90,0xe2,0xa0,0x5a,0x70,0x8f,0xd3,0x53,0xa0,0x49,0x3a,0x58,0xda,0xa3,0xa7,0xcc,0xce,0x2,0xfa,0x5e,0xd9,0xc0,0xcc,0x9a,0x35,0x6b,0x2,0x80,0xb3,0x66,0xcd,0x9a,0x35,0xeb,0x5,0xa9,0x21,0x35,0xd6,0x49,0x5e,0x83,0xb,0xbb,0xd0,0xd5,0xfe,0xe0,0x56,0xb0,0x1d,0x38,0x8,0x82,0x35,0x36,0x51,0x3,0x39,0xa4,0xd9,0x6a,0xe4,0x7c,0xa5,0x20,0xdc,0x92,0xa8,0x52,0xa1,0x66,0x9e,0x50,0x44,0xcd,0x1a,0x1c,0x5,0x21,0xd5,0x2b,0xaa,0x49,0xfa,0x64,0xa3,0x86,0x50,0xdb,0xb0,0x6a,0xce,0x52,0x95,0x2a,0x77,0xba,0x51,0x12,0x26,0x47,0xef,0x41,0x63,0xe,0x58,0xfa,0x6c,0x1c,0x9a,0x89,0x0,0x1a,0xbd,0x96,0xec,0x5e,0x98,0x6,0xb0,0x48,0x1b,0x92,0x26,0x60,0xe1,0x98,0x34,0xbb,0x7f,0xdf,0x8,0xf0,0xf9,0x3e,0x84,0x76,0x1e,0x89,0x21,0x6,0xd7,0x2b,0x34,0x77,0xb3,0x1e,0x1c,0x3b,0x71,0xc,0xb1,0xf0,0x8d,0x3b,0x27,0x8,0x7,0xfb,0x3c,0x4b,0xe5,0x85,0x34,0xdd,0x31,0x18,0xf2,0x48,0x43,0x5a,0xe0,0x98,0xae,0xa8,0xf2,0x5e,0xf3,0x71,0x1a,0xf6,0xa5,0x33,0x39,0x7,0xb9,0xef,0x10,0xf3,0x4c,0xc3,0x71,0x19,0x65,0xc1,0x3e,0x2d,0xd9,0x35,0x1f,0x47,0x2c,0xc8,0x41,0xd2,0x5,0xf9,0xd,0x5c,0x1f,0xc7,0xfe,0xd8,0x1e,0xd0,0xbb,0x7e,0x7f,0x37,0xed,0x77,0xc,0x14,0xec,0x58,0x24,0xe,0xd4,0xed,0x20,0x31,0x6e,0x48,0xb6,0xb1,0x6b,0x48,0xe9,0x98,0x9d,0xe2,0xfc,0x1f,0x83,0xf3,0x50,0x9b,0x35,0xeb,0x9d,0xac,0x98,0x92,0x5f,0xfa,0xe8,0x63,0x57,0xeb,0x7e,0xac,0x1,0xdd,0x9f,0xcf,0xbc,0xdd,0xe4,0x77,0xac,0xe0,0x5e,0x14,0xb0,0x4d,0x3,0x2e,0x38,0xc5,0xb6,0x9,0x90,0xe4,0xc6,0x75,0x30,0xe0,0xa4,0x60,0x5b,0xad,0xa5,0x87,0xf,0xe9,0xfc,0x22,0xe3,0x7c,0x4a,0xd9,0x5,0x6f,0xe4,0x3e,0xe6,0x87,0x1e,0xe,0xc4,0x7e,0x7e,0x55,0x0,0xbc,0xac,0x3,0x92,0x30,0xff,0x18,0x6c,0x4b,0x29,0xa3,0x4a,0x90,0x45,0x88,0x91,0xc3,0x28,0x5a,0x33,0x40,0x4e,0x3d,0x3a,0xd9,0x62,0x36,0x38,0xaf,0xd3,0x1e,0x28,0x11,0x24,0x88,0xa9,0x8f,0x31,0xec,0x21,0xcb,0xbe,0x9e,0xfd,0xfa,0x8e,0xa,0x78,0x46,0x1e,0x13,0xf5,0x38,0xf8,0x45,0x16,0x1d,0x6f,0x2c,0x61,0x37,0x4,0x24,0x74,0x66,0x1d,0x6f,0x6f,0x41,0x5a,0x96,0x2b,0x28,0x89,0x69,0x82,0x5d,0x76,0xb,0x17,0x64,0xc4,0x39,0x26,0x6a,0x2d,0x50,0xc,0x64,0x8c,0x29,0x21,0x86,0xc8,0xc0,0xab,0xce,0xbf,0xad,0x22,0x65,0xe,0x76,0x52,0x49,0x67,0x8c,0x89,0x2d,0x9,0x12,0x7,0x8e,0x94,0xb2,0xf5,0xf3,0x9a,0x12,0x6a,0xdd,0x58,0xb2,0x9c,0x32,0xea,0xb6,0x21,0xe6,0x5,0x21,0x34,0x37,0x1f,0x46,0x4b,0x58,0x56,0xf6,0x21,0x79,0xb0,0x8b,0x3a,0xc0,0x69,0xf3,0xb0,0x8d,0xc7,0xcd,0xe6,0x98,0x7e,0xbf,0xd0,0x9c,0x47,0xdf,0x35,0xc3,0xdb,0x40,0x2f,0x3f,0xfe,0xda,0xf9,0xc2,0x4d,0xff,0xbf,0xb7,0x7,0xfe,0xdd,0xb2,0xf,0xd9,0x49,0x73,0x7,0xda,0x3f,0xae,0x41,0xc0,0x21,0xa4,0x4,0x2e,0x5,0x6d,0x9f,0xb4,0x31,0x2,0x99,0x57,0xa2,0xb,0x5d,0xd0,0x73,0x4f,0x5,0x7,0xfe,0x1d,0xf1,0xf,0xfd,0xc7,0xec,0x79,0x89,0x47,0x7b,0x75,0x8,0xfe,0xd9,0xf7,0x47,0xf3,0x4b,0x9e,0x35,0x6b,0xd6,0xac,0x79,0xf7,0x3a,0x6b,0xd6,0xac,0x59,0x2f,0x60,0x91,0x25,0xe6,0xed,0x98,0x51,0xb6,0x9a,0xdd,0xc1,0xbe,0x10,0x3d,0xa0,0xa7,0x52,0x55,0x35,0xd,0x97,0x54,0x58,0x4d,0x4b,0x75,0x8d,0x95,0x2,0x5a,0xfa,0x5c,0x14,0xcf,0x24,0xfd,0x3e,0xda,0xdd,0x14,0x2b,0x23,0x43,0xe5,0x5d,0x51,0x7c,0x86,0xf4,0x65,0x2a,0x59,0xd2,0x4,0x49,0xf3,0x96,0x6b,0xa3,0x59,0x76,0x88,0x23,0xf8,0xc7,0xcd,0x59,0xdf,0x3f,0x63,0xcc,0x49,0x63,0x66,0xb2,0x66,0xd7,0xa8,0xe8,0x7b,0x9a,0xa6,0x48,0x4a,0xe2,0x45,0x8c,0x89,0xd9,0x30,0xc1,0x37,0x2d,0x64,0xcd,0x1a,0x88,0x1c,0x18,0xa9,0xa1,0x14,0x2c,0xa1,0x6b,0xda,0xc,0xf9,0x84,0x65,0xdf,0xa2,0x5b,0x40,0x85,0xf7,0x53,0x22,0x6b,0xec,0x46,0x5f,0xac,0xee,0x79,0x37,0x0,0x96,0x2,0x86,0x36,0xf1,0x71,0xd2,0xe3,0xdc,0x5a,0x75,0xdc,0xc3,0x70,0xd8,0xc8,0x90,0xf7,0x39,0x24,0x58,0x82,0xa6,0x82,0x59,0x9d,0xd,0x28,0x8d,0xa1,0x32,0x85,0xfc,0xfe,0xef,0x1a,0x39,0x38,0xaf,0x2f,0x88,0x4c,0x96,0x14,0x74,0xdb,0x5,0x76,0x74,0x86,0xe6,0xb5,0x44,0x57,0xd9,0x43,0xfe,0x79,0xfb,0x1d,0xdd,0x68,0x0,0xf7,0xfe,0x81,0xde,0xab,0x8a,0x2c,0x8,0x85,0xe,0x40,0xe0,0xe3,0x7f,0x93,0x4b,0x31,0xbe,0x42,0x27,0xf7,0xaf,0x23,0x60,0x3b,0x3f,0x9e,0x3,0xcd,0xac,0xe7,0x52,0xad,0x94,0x91,0x99,0x1b,0xb0,0xbb,0x76,0x3c,0x50,0xcd,0xe0,0x98,0xb1,0x6b,0x95,0xa9,0x27,0xe3,0xac,0x82,0x5d,0xc,0x90,0x55,0x3,0x8,0x15,0x5c,0x57,0x16,0x9e,0x2d,0xe6,0x88,0xa7,0x98,0xbf,0x9e,0x15,0x20,0xb2,0x5,0x1c,0x7f,0xcd,0xb4,0x86,0x94,0x96,0x2e,0x75,0x95,0x71,0x25,0x20,0x20,0x2f,0xab,0xc9,0x6d,0xa3,0x7c,0xbe,0x7e,0x2e,0x7b,0xe4,0x91,0x1,0x82,0xec,0x21,0x18,0xec,0xbb,0x53,0xce,0x32,0x5e,0xf7,0xf7,0xa5,0x94,0x46,0xaf,0x43,0x63,0xc5,0xf5,0xfd,0x40,0xe8,0xc9,0xc2,0xde,0x4f,0x70,0xc,0xe2,0xd8,0x6c,0x2c,0xd6,0xfd,0xd1,0x24,0x70,0x7d,0x8d,0x26,0xec,0xc6,0x94,0x38,0x95,0x39,0x46,0x93,0x56,0xeb,0x71,0x2,0x98,0xc1,0x17,0x2,0xef,0x2b,0x3,0x9b,0x7d,0x7e,0x49,0x29,0x33,0x3,0x52,0xde,0x17,0x25,0x81,0x3d,0xc6,0x68,0xe0,0x2d,0x9,0x38,0xa8,0x1,0x23,0xfa,0xfd,0xa,0xae,0x22,0x0,0x41,0x25,0xbd,0x2,0x82,0x86,0x10,0x5,0x28,0x44,0x7,0x64,0xdd,0x76,0x53,0xe3,0x73,0x98,0x52,0x16,0xe0,0x30,0x19,0x20,0x6c,0x1e,0x81,0xb5,0x2f,0x56,0xc5,0x18,0xdd,0xdc,0xe0,0xbc,0x5e,0xd5,0x77,0xd0,0xfd,0xf1,0x61,0x25,0x7e,0xec,0x1f,0xe6,0x8f,0x9d,0xff,0xab,0x8d,0xd7,0x4f,0x19,0xe3,0x9f,0x1d,0xf8,0x1b,0x6e,0x82,0x8e,0xe1,0x31,0xbd,0x37,0xb8,0x42,0xdb,0x82,0xbb,0x6f,0xa0,0x3,0x34,0x8f,0x8e,0xbe,0x9,0x38,0xc0,0xe,0x47,0x40,0x90,0xe,0xc1,0x3b,0xc2,0x3e,0xc6,0x6a,0x7c,0x3c,0x1c,0xbc,0xfe,0x68,0x4e,0x3a,0x3a,0x6,0x3,0x17,0x7e,0x32,0x0,0x67,0xcd,0x9a,0x35,0x1,0xc0,0x59,0xb3,0x66,0xcd,0x7a,0x31,0x6b,0xf0,0xdb,0x19,0xe4,0x9d,0x74,0xfd,0x58,0xe8,0xac,0x11,0x95,0xf4,0xea,0x5d,0x67,0x97,0xf5,0xb0,0x2c,0x2c,0x74,0x47,0x1b,0x93,0xc0,0x98,0xb4,0xaa,0x69,0x72,0x2e,0x99,0x69,0x7b,0x8c,0xc9,0x24,0x52,0x41,0xd8,0x24,0x7a,0xb3,0xca,0x8c,0x3b,0x60,0x97,0xc,0x61,0xcc,0x3e,0x2f,0xe5,0xf5,0xff,0xf7,0xb7,0xd4,0xc1,0x98,0x87,0xd4,0x93,0x7c,0x77,0x40,0x93,0x3f,0xc,0xfe,0xe6,0xdd,0xd8,0xc,0xd6,0x3c,0x77,0x3f,0x28,0xde,0xb6,0xe6,0xf0,0xc4,0x76,0x25,0x21,0x65,0x6,0x1e,0x19,0x2b,0xc0,0x1a,0x64,0xf9,0x32,0x65,0x44,0x76,0x50,0x2b,0x18,0x50,0x68,0xf,0x59,0xb3,0x23,0x12,0x3b,0xf1,0xa7,0xda,0xb7,0x8,0x44,0x76,0xb,0xdf,0xbf,0x3f,0x60,0x64,0x30,0xd0,0xfe,0x46,0x9f,0xd0,0x33,0x3d,0x8,0x83,0x78,0xdb,0x9a,0x77,0x18,0x0,0xd0,0x1,0xbb,0x6e,0x1e,0x1f,0xc2,0x8,0x20,0x1c,0x37,0x5a,0x23,0x13,0x22,0x98,0x6f,0xd7,0x1,0x58,0xd7,0xc8,0xb1,0xff,0x5a,0x67,0xf9,0x39,0x46,0x1f,0xfb,0x55,0x8d,0x4d,0x60,0x30,0x50,0x39,0xc,0x0,0x1c,0xed,0x28,0x98,0xf4,0xc7,0x98,0x76,0x38,0x24,0x62,0x1f,0x34,0x7e,0x6,0xd0,0xce,0xa6,0x6a,0xd6,0xf3,0x1a,0xe7,0x9d,0xa7,0xdb,0x7e,0x6c,0x63,0x86,0xd9,0xe8,0xaf,0x66,0x60,0x92,0x48,0x48,0xa3,0x4f,0xf8,0x55,0xe0,0x5c,0x17,0x71,0x74,0x81,0x46,0x40,0x25,0xb8,0x45,0x89,0x28,0x60,0x92,0x82,0x4a,0xdd,0x3f,0xaf,0x5f,0xc3,0xba,0x6d,0x1a,0xa0,0xa1,0xcc,0x34,0x4,0xe,0xf3,0xf0,0xe1,0x13,0xad,0x56,0x34,0x6a,0xcc,0x6c,0x5b,0x16,0xc4,0x9c,0x77,0x63,0x37,0x83,0x8a,0x29,0x67,0xe,0xc7,0x90,0xed,0x52,0x76,0xa0,0x8e,0x4d,0x31,0xe5,0x9e,0xd6,0xed,0x24,0x8f,0x96,0x76,0x2e,0xf3,0x99,0x2e,0x7a,0x44,0x5d,0xf4,0xba,0x2,0x9d,0x82,0x1,0x68,0x39,0x2f,0x76,0x3c,0xfc,0xbc,0x62,0x6c,0x41,0x4d,0x3,0x96,0xb9,0xac,0x96,0xcd,0x40,0x33,0x65,0x2c,0xea,0x2,0x44,0x67,0x35,0x7,0x3,0x12,0x19,0xfc,0xc,0x48,0x79,0x15,0x6f,0x41,0x6,0x11,0x53,0x5e,0xc4,0xcb,0x8f,0x3f,0x27,0x2f,0x6b,0xf,0x56,0x89,0xbc,0x5d,0x2a,0xeb,0x54,0x36,0x61,0xc,0xd1,0x80,0x3c,0x4e,0x49,0xe6,0xed,0xd3,0x63,0x96,0xf3,0x3a,0xcc,0x19,0x29,0x67,0xf3,0x7f,0x54,0x49,0xb3,0x82,0xa8,0x39,0x2f,0x32,0x47,0x6,0xb3,0xe9,0x68,0xe4,0x59,0xcf,0xc1,0xd2,0x8b,0x21,0xf3,0xb0,0x1e,0x27,0xa2,0x63,0xdf,0xbc,0x61,0x11,0xe7,0xff,0x97,0x24,0xf5,0x8,0x6,0xa3,0x1,0x9c,0xbc,0x82,0xdf,0xc,0x51,0x73,0xb,0x83,0x83,0x44,0xf7,0x6,0x9d,0xdf,0x7d,0x5d,0xb8,0x1,0xee,0x5d,0x6d,0x15,0x8d,0x0,0x1e,0xed,0x36,0xe3,0xe9,0x98,0x21,0x3d,0xd,0xce,0xbc,0xfd,0x4c,0xb8,0xbd,0x61,0x7a,0xbf,0x15,0x9e,0xb6,0xf1,0xb3,0x66,0xcd,0xfa,0x33,0x57,0x53,0x2,0x3c,0x6b,0xd6,0xac,0x59,0x2f,0x54,0xed,0x6e,0x66,0xc3,0x28,0x8d,0xed,0xde,0x6f,0x1c,0x96,0xa1,0xec,0x9,0x48,0xa3,0xa7,0xa0,0x56,0x50,0x99,0x4c,0x0,0x2,0xa2,0xbb,0x89,0x14,0x7,0x3a,0x69,0x3e,0x3a,0x63,0x83,0xc4,0x64,0x9d,0x6,0xef,0x3d,0x6d,0x3c,0xcd,0x18,0x5e,0x25,0x50,0xc2,0x5a,0xeb,0x12,0xd8,0xd8,0xc1,0x38,0x69,0x1e,0x5b,0x2d,0xe6,0x1f,0x68,0xde,0x7f,0x61,0x6c,0x76,0x47,0x8b,0xbb,0xce,0xc,0xbc,0xa,0xbd,0x8,0x5e,0xf6,0x13,0x8c,0x59,0xd8,0xd3,0x1a,0x61,0x80,0x17,0x61,0x4c,0xb0,0x64,0xd9,0x59,0x46,0x53,0x49,0x98,0x82,0x97,0x8d,0x80,0x18,0xba,0x29,0xbe,0xb0,0x11,0xb5,0xc1,0x6b,0xa0,0x51,0x51,0xeb,0xfe,0xdd,0x93,0x6c,0x7b,0x33,0xbc,0x7,0x1a,0xb5,0x99,0xb7,0xe6,0xd1,0x7b,0x19,0x52,0xf7,0xe0,0x32,0x3f,0xc5,0x10,0x0,0x31,0x80,0x6f,0x8d,0x6,0x13,0x7a,0xcf,0x3e,0x34,0xc9,0xb3,0x4f,0x1a,0xa6,0xce,0x4,0x3c,0x6a,0x8a,0xbd,0xc7,0xd8,0x21,0xe0,0xac,0xa1,0x2a,0xb2,0x3d,0xd1,0x83,0x2,0xf6,0xfd,0xfe,0x33,0xc2,0xd0,0x59,0x19,0x60,0x6a,0x7,0x69,0x94,0x5a,0xf9,0x86,0xf1,0x8a,0x21,0x78,0xd0,0x9b,0xdd,0x92,0x8e,0x8d,0xc7,0x78,0xef,0xe7,0xf4,0xc,0x9d,0xde,0x70,0x95,0x4d,0x63,0xf5,0x59,0xcf,0x69,0x94,0xbf,0xba,0x5e,0x3a,0x78,0x65,0x8c,0x35,0xf1,0x72,0xb5,0x85,0x8,0x1,0x7b,0x8c,0xbd,0x26,0xf2,0xd2,0x2c,0x49,0xb2,0xba,0x10,0xa0,0x4c,0x31,0xf5,0x1b,0xed,0x63,0x15,0xa1,0x39,0xe9,0x6f,0x97,0xa5,0x36,0x63,0x9b,0xd,0x4c,0xda,0x38,0x5e,0x83,0x65,0xbb,0x30,0x1b,0xe,0xdd,0x23,0x50,0x17,0x73,0x9a,0xa5,0x6c,0xcb,0xc2,0x4f,0xd4,0x10,0x93,0x80,0x10,0x92,0xd9,0x22,0x68,0xd8,0x87,0x5a,0x4a,0x34,0x1,0x33,0x79,0x9f,0x1a,0xa8,0x55,0x3,0xbd,0xcc,0x1b,0xaf,0x35,0x64,0x49,0x4,0xee,0x63,0xeb,0x68,0x5d,0x60,0xc9,0xc7,0xb1,0x3,0xa1,0xb5,0x6c,0xc6,0x20,0xb4,0x80,0x11,0x8c,0x29,0xe2,0x1a,0x82,0xa2,0x23,0x6,0x33,0xf5,0x82,0xa4,0x12,0x2f,0x48,0xc2,0xec,0x33,0x1f,0xc1,0x14,0x91,0xd2,0x62,0xc7,0x52,0xe7,0x45,0x4e,0x39,0xe6,0xf4,0xe0,0xbc,0xac,0x28,0xdb,0xc5,0xcd,0x13,0x2,0xea,0xa,0xf3,0x5e,0xd9,0x99,0xfa,0x5d,0xad,0xb6,0x3e,0x8e,0xa,0x40,0x99,0x23,0x27,0x22,0x6b,0x6a,0xb3,0x2,0x97,0x4,0x80,0xfc,0xe2,0x8e,0x80,0xa7,0x96,0x50,0xc,0x74,0xf0,0x8f,0x2,0x4a,0xd9,0x86,0x90,0x14,0x3,0x95,0x9b,0xa6,0xa7,0xf3,0x7c,0xda,0xa5,0xd4,0xe2,0xd9,0xe8,0xbc,0x5c,0x87,0x74,0x60,0x1b,0xaf,0xc3,0xf5,0x62,0xd,0xd,0x69,0x58,0x2,0x82,0x1e,0x19,0xe2,0xed,0xe5,0xbb,0xdd,0x1f,0xcf,0x5e,0x14,0xc2,0x78,0xef,0xa3,0xe3,0xfa,0xd3,0x18,0x85,0x6e,0x9d,0x6d,0x2f,0xc9,0xb5,0xb0,0xae,0x1b,0x73,0xc1,0x91,0x94,0x77,0x78,0x9e,0x9e,0xe5,0x8e,0x2d,0x3c,0xc3,0xac,0xf3,0x34,0xa7,0xc4,0x63,0xa1,0xf0,0xc,0x0,0x99,0x35,0x6b,0xd6,0xbe,0x26,0x3,0x70,0xd6,0xac,0x59,0xb3,0x5e,0xa4,0xc6,0xb0,0xed,0x56,0xc2,0xbd,0xec,0xd3,0xdd,0x17,0x92,0x80,0x7f,0x5d,0xd6,0xd4,0x6,0x58,0x43,0xa5,0x51,0xca,0xe8,0x53,0x40,0xd0,0x2,0x3d,0xb4,0x9,0x12,0x26,0x85,0x2,0x47,0xea,0xaf,0x43,0x20,0x97,0x10,0x48,0x6,0x76,0x59,0x2,0x2c,0xc1,0xa4,0x51,0x31,0xa5,0x1,0xac,0xd4,0x66,0x93,0x1,0xc4,0x30,0x0,0x66,0xd8,0x65,0x39,0xc,0x52,0x24,0xf5,0x6d,0xd3,0x24,0x49,0xc7,0xa2,0x50,0xc9,0x72,0xd4,0x46,0x4,0x9d,0xd5,0xa2,0x7e,0x85,0x57,0xf0,0x8e,0x34,0x21,0x96,0x48,0xa9,0xb2,0x67,0xf5,0xf3,0xe9,0xe9,0x1f,0x3,0xfb,0xc1,0xd8,0x32,0xd6,0x34,0x75,0x96,0xa0,0x35,0x41,0xa,0x26,0xc6,0x2e,0x85,0x6a,0x6d,0x4,0xaa,0xfa,0x73,0xfd,0x73,0x55,0x2a,0x8c,0x80,0xc1,0x83,0x4f,0xbd,0xb5,0x7c,0x27,0xa3,0x6c,0xd,0x7f,0xc0,0x54,0xe6,0x35,0x9a,0xbc,0x87,0x21,0x6d,0x13,0x3b,0x69,0x9f,0x7f,0xff,0x28,0x3,0xe,0x23,0x10,0xeb,0x58,0x86,0x43,0x33,0xb9,0xf7,0xd2,0xb,0x61,0x0,0xf4,0x3c,0x60,0xd8,0x25,0xc5,0x3b,0x90,0x17,0xc7,0xb2,0x33,0x1c,0x0,0x7f,0xf6,0x3e,0xda,0xcb,0xa7,0xc3,0x1,0xb0,0x39,0x9a,0xb2,0x8f,0xb2,0x69,0xe0,0x56,0x1c,0x63,0x0,0x10,0xf3,0x4c,0x2,0x9e,0xf5,0x7c,0xca,0x8f,0x1b,0xfe,0xe7,0xdb,0xdc,0xd8,0xa9,0xc,0xaf,0x2a,0x63,0x6,0xb3,0xc7,0x56,0x6,0xd2,0x84,0xc1,0x97,0xf3,0x6a,0x80,0x4d,0x4a,0xcc,0xb4,0xb,0xc2,0xe6,0x32,0xaf,0xd6,0x56,0x1,0x1,0xdf,0xfc,0x78,0x18,0x53,0xb4,0x71,0x5f,0x1,0x24,0x9d,0x4f,0xc2,0x30,0x6e,0xf3,0x62,0xcf,0xb2,0xae,0x92,0x98,0x9b,0xd1,0x84,0xd1,0x16,0x53,0xea,0xb,0x18,0xe0,0x60,0xd,0x1d,0x87,0x52,0x5e,0x78,0x8e,0x88,0x11,0x49,0x58,0x80,0x6a,0x14,0xa7,0x81,0x20,0x29,0x67,0xf9,0x8c,0xce,0xc6,0x8e,0x49,0x25,0xc2,0xcb,0x30,0xaf,0x31,0x38,0x25,0xe3,0xb1,0xcc,0x43,0x29,0x65,0x93,0x21,0x8f,0x81,0x47,0x12,0x66,0xa5,0x9f,0xad,0x32,0xe2,0x98,0x90,0x73,0x36,0xa0,0x2e,0xa5,0xdc,0x17,0xce,0x82,0xc8,0x7b,0x89,0x90,0x97,0x15,0x4,0xe2,0x60,0x13,0x39,0x5f,0x29,0x75,0x76,0x9e,0x32,0xe6,0x52,0xce,0xb6,0x3f,0x29,0x65,0xa4,0xbc,0x60,0x3b,0x9f,0x91,0x52,0xc6,0xb2,0x9e,0xba,0xc4,0x58,0x0,0x59,0x95,0x19,0x2f,0xeb,0xc9,0xce,0xa1,0x7a,0xe,0xaa,0x5d,0x84,0x32,0xee,0x99,0x51,0xd8,0xc7,0xb3,0x5a,0x8a,0x6c,0x47,0x16,0xe9,0x77,0x1a,0xd8,0x89,0x36,0x3e,0xa,0xc0,0x57,0x6b,0xe1,0x6d,0xd2,0xf0,0x11,0x65,0x1d,0xa6,0x4,0xc4,0x2e,0xad,0xf6,0x5e,0x89,0xea,0xcb,0x68,0xe9,0xca,0xc1,0x5b,0x6e,0xf8,0x63,0xdb,0xae,0xc6,0xd4,0x31,0x7f,0x43,0xe7,0xf1,0xbd,0xaf,0xeb,0x91,0x77,0xdf,0x1,0xbf,0xcd,0x25,0x1e,0xab,0x8a,0x57,0xc1,0x47,0xff,0x71,0xbb,0x8c,0x8e,0xfd,0xed,0xc5,0x61,0x2e,0xf0,0xd3,0x64,0xbb,0xb8,0x1,0xcf,0x11,0xf0,0xec,0x1c,0xbc,0x9b,0xd2,0x65,0xbf,0x55,0xe1,0x60,0xb,0x8e,0x5e,0x8b,0xbe,0x8,0x3b,0x6b,0xd6,0xac,0x59,0x52,0x93,0x1,0x38,0x6b,0xd6,0xac,0x59,0x2f,0x54,0x67,0x78,0x74,0x3f,0x49,0x63,0x30,0x43,0xec,0x4c,0x35,0x65,0xf1,0x79,0xe0,0xcf,0x83,0x69,0x29,0x65,0x33,0x8c,0x37,0x4f,0x24,0x91,0x10,0x35,0x49,0x4e,0x8c,0xd6,0x3c,0xf5,0x9b,0x75,0x65,0x2,0xe8,0x63,0xf6,0x7f,0xc0,0xfc,0xea,0x12,0xa2,0x25,0xe3,0xa9,0xac,0x8c,0xdf,0x12,0xd1,0xa4,0xf9,0xe0,0xa6,0xc5,0xa5,0x18,0x6a,0x28,0x89,0x2,0x9b,0x2e,0x1d,0x57,0xcd,0xcc,0x75,0x7f,0x2c,0x2c,0xc4,0x7b,0x5f,0xf9,0x54,0x61,0x27,0x1d,0xde,0xb3,0xd3,0xd4,0x83,0x8f,0x9b,0x1b,0x20,0xc4,0x66,0xc,0x44,0xd,0xce,0xb0,0xcf,0x23,0x62,0x83,0x6d,0x9f,0x42,0x5c,0xeb,0x0,0xc6,0xb6,0xca,0xd,0xb6,0x36,0xd5,0xfe,0x58,0x75,0x2f,0x3d,0x31,0x74,0xaf,0x5,0x4a,0x6b,0x60,0x70,0x14,0x76,0x8c,0x4c,0x52,0x2c,0xc7,0x83,0x3d,0xa1,0xe0,0xd8,0x94,0x9d,0x59,0xd2,0x25,0xc4,0x9e,0x31,0x44,0x6,0x14,0x72,0x3,0xbe,0x18,0x63,0x88,0xe4,0xd8,0x78,0x1f,0x2e,0xdf,0x14,0xea,0xef,0x4b,0x3d,0x19,0xa3,0xa4,0x8c,0x6a,0x8,0x87,0x36,0x83,0xc1,0xf9,0x1f,0x5a,0x8a,0x68,0xec,0xc0,0x9d,0xf7,0xd8,0x23,0xf7,0xbb,0xb4,0xe7,0x9c,0xf1,0xba,0xef,0x6d,0x8,0x64,0x4c,0x8a,0xa7,0xf9,0x4,0xda,0x36,0x5f,0x5,0x90,0xd0,0x2e,0xd1,0xd1,0x37,0x9a,0x61,0x8,0x49,0x18,0x9a,0xcd,0x3d,0xc,0x28,0xcd,0x64,0x2b,0xe7,0x39,0xde,0xcc,0x7a,0x2e,0xd5,0x4a,0x1d,0x7e,0x9b,0x7b,0xbf,0x4d,0xf5,0x89,0xeb,0xbe,0x7d,0x8d,0x99,0xcf,0x66,0xc7,0xd0,0x3d,0xf1,0x48,0x16,0x63,0x6a,0xab,0x68,0xb5,0x62,0x11,0xf0,0x2a,0xa6,0x28,0xec,0xbe,0xc5,0xec,0x20,0xf4,0x9a,0x48,0x59,0x40,0xa1,0x40,0x58,0xd6,0x13,0x7,0x55,0xc4,0x88,0x14,0x14,0x1c,0x5c,0x0,0x1,0xc0,0xfa,0x18,0xc5,0x9f,0xd5,0x24,0x19,0x3e,0x25,0x4e,0xed,0xcd,0xb,0xb3,0xd5,0xf2,0xb2,0x62,0xbb,0x9c,0x99,0x39,0xa7,0x21,0x17,0x31,0x18,0xd3,0x4f,0x96,0xa4,0x90,0x97,0xd5,0x25,0xa9,0xfb,0xa0,0x23,0x96,0xf8,0xea,0x78,0xa6,0x12,0x5e,0x65,0x36,0xd6,0xb2,0xd,0x6c,0x46,0x3f,0x1f,0xf1,0x3e,0x75,0x69,0xad,0xb2,0xbe,0x8d,0xb1,0x2e,0x21,0x19,0xb5,0x6c,0x20,0xb5,0x74,0x68,0xd,0xa4,0xc9,0xba,0x99,0xe7,0xc9,0xa6,0x49,0xc3,0x22,0x85,0x56,0xc0,0x4f,0x8f,0x73,0x4c,0x9,0x51,0x64,0xc0,0x29,0x2f,0x32,0x77,0x3a,0xf9,0x75,0x88,0xc8,0xcb,0xc2,0x20,0xa9,0x8e,0xe3,0xca,0x42,0xcf,0x72,0x4c,0x25,0x44,0x25,0x48,0x7a,0x73,0xd9,0xce,0xf6,0x9c,0x85,0xbb,0xa4,0xc4,0x69,0xc4,0x29,0x23,0x46,0xc2,0x76,0xb9,0x60,0x59,0x4f,0x36,0xf7,0xe6,0xbc,0xa0,0x56,0xe,0x1c,0xd1,0xe3,0xaf,0x89,0xc2,0xca,0xfa,0xb4,0x60,0x90,0x5a,0x5d,0x6a,0xb1,0x32,0xf3,0xd9,0xbb,0x57,0x7d,0x10,0x81,0x31,0xd5,0xd7,0x7,0x69,0xd9,0x1c,0xac,0x80,0x20,0xed,0xc7,0xd9,0x6b,0x40,0x6f,0xb8,0xa1,0x51,0xd6,0x20,0x1d,0xa5,0xd9,0x63,0x4c,0xd7,0xdd,0xcd,0x7b,0xb7,0x82,0x33,0xf6,0xb7,0x4b,0xc7,0x2e,0x7a,0x7f,0x5c,0xa5,0xca,0x8b,0x23,0x38,0x90,0xae,0x1f,0xa,0x1,0x57,0xf1,0x1f,0x44,0xb7,0x11,0x44,0xbf,0x10,0x10,0x9c,0xe7,0x31,0xfa,0xdc,0x3f,0x59,0x80,0xb3,0x66,0xcd,0xf2,0x35,0x97,0x5,0x66,0xcd,0x9a,0x35,0xeb,0x45,0xc2,0xff,0x2c,0x54,0xa3,0xdf,0x2c,0x3b,0x9b,0x73,0x1,0x9f,0xda,0xee,0xc6,0xbc,0x4b,0xa0,0x8,0x5d,0x6e,0xea,0x3d,0x9d,0xe0,0x58,0x84,0x2a,0xf7,0xa,0xe2,0x3b,0x14,0xf6,0x2b,0xf0,0xbb,0x90,0x88,0xe8,0x93,0x7b,0x1b,0xfb,0x48,0xc5,0xd0,0x65,0x55,0x1a,0xc0,0xa1,0x9,0x88,0xfa,0xd9,0x6c,0x8a,0x1e,0x2d,0xc9,0x55,0x43,0x26,0xbc,0xec,0x54,0xff,0xd6,0xd5,0xfb,0x2a,0xcd,0x8a,0xf,0xb0,0x8,0x12,0xec,0x11,0x54,0x6a,0x2a,0x37,0xe3,0x1a,0xde,0xe1,0x6f,0xd0,0x4d,0x6,0x27,0x80,0x1c,0xb3,0x59,0xae,0x3b,0x2,0x7f,0x3f,0x1e,0x9c,0x97,0xa2,0x82,0x7d,0xca,0x44,0x24,0x22,0x4b,0xa8,0x6d,0x3,0xb0,0xd6,0x3d,0x93,0x82,0x3,0x26,0x9,0xdd,0xf0,0x5d,0x81,0xbe,0xd6,0x78,0xbf,0x35,0x40,0xc5,0x1a,0x34,0xea,0x29,0xb9,0x9d,0x8d,0x41,0x23,0x83,0x47,0x36,0x92,0x1b,0xdf,0x2e,0xcd,0xd2,0xe3,0xc3,0xc7,0xfc,0x20,0x70,0x44,0xc1,0xd1,0xe0,0xa4,0xba,0xee,0x39,0x65,0xee,0xf4,0xa6,0x6f,0xe7,0xbb,0xe5,0xd8,0x90,0xbe,0x31,0xc,0xce,0xfc,0xfd,0x26,0x2b,0xc2,0x81,0x8f,0xfa,0xdb,0xb0,0xdf,0xab,0x7,0xa9,0xaf,0x58,0x80,0xd7,0x89,0x93,0xe1,0x86,0x3f,0x52,0x38,0x6a,0x32,0x69,0x9f,0x1e,0x3d,0xfa,0x1c,0xf6,0xa6,0x95,0xac,0xf9,0x9e,0x35,0xeb,0xb9,0xdc,0xbc,0x2b,0x78,0x87,0xd1,0x87,0x6f,0xcf,0x94,0xf6,0x40,0x94,0x82,0xfb,0x64,0xc1,0x43,0x12,0x80,0x14,0x83,0x31,0xb3,0x73,0x5e,0xec,0x77,0x1d,0x63,0xc6,0x92,0x57,0x97,0xaa,0x1b,0x4,0x50,0x8a,0xdd,0x6b,0xaf,0xf1,0xa7,0x29,0x58,0x66,0x1,0x42,0x80,0x0,0x71,0x64,0xb,0x15,0xf6,0x1a,0x2,0x4b,0x62,0x41,0xb6,0x1f,0x31,0x25,0x94,0xed,0x82,0xf5,0x74,0x27,0x63,0x68,0x71,0xe1,0x14,0xd1,0xc2,0x3d,0x82,0x3,0xc4,0x0,0x12,0xd6,0xe2,0x62,0xa0,0x9d,0x2e,0x12,0xf1,0x2,0x95,0x6,0x12,0x71,0xb0,0xc9,0xb2,0x9e,0x86,0x63,0x95,0x96,0x85,0xc1,0x2c,0xf1,0xfc,0xab,0x65,0xc3,0xb6,0x9d,0x6d,0x31,0x43,0x19,0x70,0xca,0x6a,0xd4,0xe3,0xab,0xde,0x7a,0x2a,0xb7,0x55,0x1b,0x8d,0x28,0xbe,0x7f,0x76,0x1e,0x5a,0x67,0xbd,0x33,0x93,0x8e,0x7d,0x5e,0x53,0xce,0x26,0xdf,0xb5,0x6d,0x91,0x30,0x8e,0xe0,0x16,0xb9,0xd4,0xd7,0x30,0xe5,0x8c,0xf5,0x74,0x67,0xc3,0xaf,0xee,0x7,0xbf,0x9e,0x81,0x4b,0x65,0x37,0xe6,0x65,0xb5,0x30,0x15,0x9d,0xa7,0xf3,0xb2,0x22,0xe5,0x64,0x56,0x15,0x31,0x74,0x7b,0x9,0x3,0xff,0xa8,0xa1,0xc9,0x22,0x96,0x2e,0xfa,0x41,0x82,0xa2,0x3a,0x50,0xdc,0x7a,0xc8,0xc8,0x60,0xdb,0xa0,0x13,0x70,0x1b,0x12,0xdc,0x75,0xd1,0x6f,0x5c,0x8c,0x9,0xce,0xce,0x43,0xf7,0x9f,0xae,0x81,0x2c,0xc0,0x5,0x71,0x4,0x9f,0x71,0xdf,0x27,0x5f,0xcf,0xee,0xf6,0x40,0xe2,0x5b,0x80,0x7b,0x3,0x70,0x8e,0xdb,0xc9,0xbb,0xcf,0xe,0x8,0xde,0x82,0xf,0x69,0xa4,0x15,0x5e,0xb1,0xfa,0x1c,0xdf,0xd0,0x76,0x60,0xc7,0x39,0x7c,0x2b,0xed,0xb1,0xdf,0xd9,0x2b,0xed,0xf1,0xa8,0xe8,0x98,0x35,0x6b,0xd6,0x2c,0xad,0xc9,0x0,0x9c,0x35,0x6b,0xd6,0xac,0x17,0xa8,0x98,0x3d,0x86,0xe1,0xc6,0xdb,0x98,0x56,0xda,0xc8,0x9,0x28,0x68,0xe9,0xba,0xd4,0xef,0x9d,0x79,0xa5,0xbf,0xd9,0x4d,0xb6,0x7a,0xff,0x99,0x44,0xa,0xa3,0xbc,0x92,0x76,0x32,0x4b,0x98,0x5c,0x2a,0x42,0x59,0x1,0x21,0x46,0x4,0x61,0x65,0x70,0x83,0x44,0x68,0x2,0x74,0xb1,0x9f,0x91,0xa6,0x11,0xfb,0xb0,0xc,0x6,0xbb,0xd4,0x17,0x29,0x20,0xd,0x81,0x11,0x2a,0xef,0x55,0xf9,0x6e,0x4f,0x96,0xd4,0x5e,0xc4,0xfb,0x50,0x35,0xe7,0x39,0x14,0x1c,0x30,0xd6,0x99,0x78,0xe6,0x1,0xc5,0x6d,0x5d,0xf7,0xf,0x52,0xe9,0x52,0x80,0xf9,0x67,0xd,0x86,0x3e,0x81,0xa5,0xbb,0x2a,0xb5,0x52,0xd6,0x5f,0x8,0x9,0xde,0xb3,0x47,0x4d,0xdd,0xf5,0x18,0x35,0x3,0xee,0x84,0x45,0x27,0x32,0x65,0x65,0xaf,0x18,0x78,0x19,0x12,0xcb,0xf0,0x6a,0x11,0xf9,0x2f,0x8c,0x4d,0xa7,0x7f,0xc3,0x1,0xb6,0xfe,0xf8,0x8c,0xde,0x82,0xcd,0xfc,0x1c,0xd,0xac,0x14,0x70,0x53,0x41,0xcf,0xce,0x96,0xc,0xc6,0xf6,0x80,0x79,0x3b,0xc5,0x51,0xe6,0x25,0xcd,0xb5,0x31,0x6,0x63,0xec,0x7e,0x8b,0xd2,0x18,0xf7,0x44,0xca,0x20,0xb9,0x2a,0x3e,0xd1,0xd3,0xb3,0x32,0xaf,0xd9,0x97,0xdd,0xdb,0xf0,0x3a,0xc1,0xb7,0x6f,0xf,0x7,0xd4,0x78,0xe6,0xa5,0x36,0xaa,0x37,0xd3,0xaf,0x95,0x21,0xd2,0x76,0x8c,0x93,0xe0,0xe4,0xc0,0x83,0xa1,0xfc,0xae,0xab,0x1a,0xbc,0x21,0xcb,0x1c,0x70,0x66,0x3d,0x97,0x22,0x12,0x20,0x4f,0x31,0xea,0xa6,0x36,0x2,0x9d,0x65,0xd7,0xaf,0x65,0xf6,0xfb,0xb,0x0,0x2a,0x35,0x24,0x88,0x77,0x5e,0x88,0xc2,0xfe,0x4b,0xcc,0xb8,0x56,0x7f,0x3d,0x61,0x75,0xf9,0xf1,0x3d,0x4b,0x40,0x45,0x2d,0x5b,0xbf,0x46,0x63,0x44,0xd2,0x71,0xab,0x15,0x63,0x70,0x87,0x18,0xb1,0x5d,0xce,0x6,0x2,0xe9,0x18,0xa7,0xdb,0xad,0xde,0x6e,0xba,0x8,0x14,0x44,0x8a,0xaa,0x8b,0x16,0x51,0x64,0xbf,0x66,0x53,0xa0,0xc0,0x95,0x80,0x84,0x2c,0x47,0xce,0xf2,0xbd,0x15,0x68,0x95,0xe5,0xc2,0x36,0xae,0xf1,0x3e,0x8f,0xdf,0x27,0x73,0x4a,0x92,0x14,0x75,0x34,0x37,0x56,0x31,0x18,0x89,0x16,0x4c,0x12,0x4d,0xbb,0x45,0x34,0x66,0xa8,0x27,0x20,0x46,0xf3,0x3c,0xf4,0x2c,0x4b,0x3e,0x7e,0x6b,0x97,0xba,0x12,0x21,0xa,0xe8,0x67,0xe3,0x94,0x1c,0x1b,0x5d,0x4,0x83,0xcc,0x81,0xbc,0x8b,0x15,0x31,0x32,0xeb,0x2f,0xe7,0x65,0xc7,0x96,0x23,0x63,0x22,0x2a,0x4b,0x32,0xa6,0xcc,0x7e,0x87,0x79,0x41,0xa8,0x95,0x41,0x5c,0xc1,0x5b,0x63,0x5e,0x3a,0x40,0x9a,0x99,0x8d,0xb8,0x2c,0x27,0xf1,0x7b,0x64,0x56,0x7d,0x13,0xaf,0x44,0xbf,0x80,0xa4,0x9,0xd0,0x65,0xbb,0x20,0xe7,0x95,0xff,0x6f,0xe3,0x65,0x97,0xf5,0xb6,0xda,0x80,0xd8,0xed,0x3c,0xbc,0x95,0x85,0xce,0x1,0xde,0xf3,0x6f,0xf0,0x83,0xd5,0xb4,0x7a,0xd3,0xe5,0x62,0x67,0xb8,0x17,0x46,0x46,0x9f,0x1b,0xbb,0x83,0x26,0xd9,0xbb,0xf3,0x33,0xc4,0x63,0xed,0x70,0xc4,0x63,0x17,0xdb,0xdb,0xac,0x40,0xf5,0xa6,0xbc,0x21,0xa3,0x70,0x8b,0x42,0xb7,0xe0,0xc2,0x3,0x66,0x5f,0xd8,0x1b,0xb,0x86,0x11,0x8,0xf4,0x36,0x13,0xc6,0x84,0x74,0xc7,0xe6,0x7a,0x3,0x8f,0x77,0x82,0xe,0xb6,0x17,0x7d,0x11,0x60,0xa6,0x0,0xcf,0x9a,0x35,0x6b,0x2,0x80,0xb3,0x66,0xcd,0x9a,0xf5,0x82,0xd6,0x95,0xdf,0xb,0xb5,0x21,0xdd,0xb7,0x4b,0xa6,0x60,0x40,0xa0,0xad,0x3e,0xeb,0xa,0x3f,0x1c,0x4b,0x4d,0xfc,0xf2,0x4c,0xda,0x69,0x92,0xd5,0x2e,0x1d,0xb,0xa,0x82,0x85,0xee,0x4d,0xe5,0xd9,0x61,0xea,0x5d,0xc4,0x40,0x10,0x7f,0x9e,0x4a,0x90,0xe0,0x58,0x1d,0x1d,0x40,0xa,0xd6,0x14,0x5,0xa8,0xf4,0xaa,0xd8,0x8d,0xaf,0x31,0xb,0x34,0x5,0x52,0x8c,0xdb,0x83,0x7a,0x19,0xf1,0x81,0x60,0x26,0x1e,0x4,0xe4,0xb2,0x60,0x8e,0xd6,0x7d,0x91,0x4c,0x7a,0x1b,0x7b,0xe2,0xb1,0x6c,0xbb,0x25,0x2f,0xaa,0x44,0x9a,0x78,0xdf,0xba,0x1c,0xaa,0xd9,0x31,0x83,0xf7,0x40,0xc,0xe8,0xef,0x71,0xab,0xf9,0x4d,0x80,0x41,0xf5,0x24,0x84,0xf7,0xbd,0x43,0x30,0x9,0x96,0x49,0xad,0x62,0x37,0xed,0x57,0xc6,0x1d,0x27,0x4c,0x92,0x79,0x5,0x86,0x90,0x8c,0x19,0xa9,0xfb,0x1,0x69,0xae,0x8d,0xc9,0x89,0xe,0xf2,0x5,0x61,0xfb,0x90,0x6f,0x70,0x15,0xfc,0xc,0xd1,0x9a,0xf4,0xb0,0xf3,0xe8,0xb,0x8e,0xbd,0xa1,0xfb,0xaa,0x92,0xe3,0x10,0x80,0xa6,0x49,0xa1,0xce,0x7,0x71,0x90,0xef,0xa,0x3b,0x21,0x20,0xb8,0xc3,0x1e,0x76,0xe1,0x1c,0xd1,0x25,0x11,0x2b,0x88,0x1a,0x1c,0xe0,0x97,0xac,0x41,0x35,0x26,0xd3,0x4e,0x12,0x76,0x2d,0x73,0x3a,0x6a,0xd6,0x5c,0x62,0xf4,0x4e,0x76,0x66,0x12,0xe4,0xa1,0x67,0x23,0x4b,0x67,0xe,0x43,0x63,0xa5,0x81,0x27,0x75,0xe,0x3a,0xb3,0xde,0x79,0x0,0xd0,0xd2,0x67,0xe1,0xae,0x75,0x66,0x2d,0xd7,0xb2,0xf5,0xd0,0x6,0x1,0x9c,0x48,0x7c,0xe6,0xb2,0x48,0x4e,0xf9,0x7a,0x6a,0x48,0x29,0xe,0x40,0x57,0xca,0xd9,0x42,0x9a,0x3a,0xb3,0x6d,0xb5,0x74,0x74,0x3,0x81,0x5a,0x7,0x8d,0x14,0x70,0x37,0x29,0x6d,0x8c,0x58,0x96,0x93,0x1,0x57,0x40,0x67,0x8,0x46,0x1,0x12,0x9b,0x8c,0xe7,0x79,0x59,0x7a,0xea,0xad,0x8c,0x75,0xa,0x20,0x29,0x8b,0xad,0xa1,0x8f,0x1d,0x6,0xaa,0xb9,0x45,0x97,0xa4,0x73,0x9,0x1c,0x33,0xd2,0xc6,0xcc,0xda,0x2d,0x2e,0xa8,0xb1,0x54,0x19,0x81,0xc1,0x3c,0x7e,0xb3,0x63,0x13,0x32,0x20,0xd6,0xbd,0xef,0x4e,0xb2,0xd,0xc9,0x12,0x7f,0xf9,0xf1,0x68,0x63,0x38,0x8f,0x19,0xe2,0x15,0x9b,0x22,0xca,0x56,0x91,0x97,0x5,0x20,0x5e,0x8c,0x53,0xdf,0xbd,0x98,0x33,0x52,0xcc,0x66,0x67,0x51,0x6b,0xb1,0xe0,0xf,0x95,0x34,0x2f,0xeb,0x9,0x84,0x93,0x85,0xa5,0x58,0x28,0x48,0x5a,0xb0,0x5d,0xce,0x66,0xdd,0xc1,0x6c,0x4e,0x6,0xfa,0xec,0xfd,0xf0,0xe3,0xee,0x8,0xba,0x35,0xa0,0x33,0xb6,0x9d,0xf7,0xae,0x6d,0x47,0x5e,0x50,0x4a,0x41,0x12,0xd9,0x76,0xa4,0xee,0x7b,0xa8,0x80,0xaa,0x7,0x24,0xbb,0xff,0x6c,0xf,0xfe,0xa8,0xb5,0x20,0xe5,0x8c,0xba,0x6d,0x1d,0xc4,0xd3,0x5,0x39,0xbf,0xd8,0x23,0x8a,0x0,0x3b,0x27,0x43,0x7a,0x46,0x1f,0x83,0xc3,0x30,0x1e,0xef,0xbc,0x5b,0x77,0x98,0x1a,0x9e,0x82,0x93,0xed,0xe7,0x81,0xdb,0x11,0x1a,0x7d,0xa4,0x3f,0xac,0x70,0x3,0xe0,0xb3,0x87,0xf,0x80,0x43,0x7d,0x7c,0x60,0xf1,0xd1,0x35,0x76,0xd8,0x57,0xe1,0xae,0xa7,0xad,0x3,0x35,0x30,0x9e,0xb2,0x3e,0xe5,0x26,0x54,0xfb,0xc,0xb3,0x2,0x98,0x20,0xe0,0xac,0x59,0xb3,0xb4,0x57,0x9c,0x87,0x60,0xd6,0xac,0x59,0xb3,0x5e,0x9c,0xf2,0xe9,0x7b,0xee,0xce,0x55,0xa4,0xbf,0xfd,0xb1,0x2e,0xbf,0xd2,0x55,0xf8,0x66,0x80,0xa0,0x4a,0x48,0xb5,0x69,0x62,0x20,0xd0,0xcb,0x4b,0xd9,0x97,0x29,0x86,0x80,0x5a,0x37,0xfe,0x4e,0x7,0xf8,0x91,0xf8,0x35,0xa9,0xbf,0x90,0x86,0x4c,0xe8,0xfb,0x75,0x1b,0x98,0x1d,0xc2,0x8d,0x2a,0x4b,0xaa,0xba,0x5c,0x4c,0x81,0xbf,0x10,0x7b,0x7a,0xa2,0x4a,0xc2,0x4c,0x6a,0x2a,0xd,0xa0,0x82,0x9e,0xca,0x1a,0xd1,0xa0,0x8c,0xa8,0x46,0xe5,0xca,0x60,0x4,0xba,0x81,0xbd,0x2,0xa5,0x6e,0x7b,0x9b,0xb,0xbc,0xb0,0x24,0xcd,0x5a,0x44,0x72,0x1b,0x87,0x40,0x15,0x3d,0xd6,0x26,0xaf,0xf1,0x3e,0x7d,0xe,0x24,0x22,0x4b,0xc7,0x85,0x49,0xbc,0x94,0x5d,0xa7,0x60,0xa3,0xb2,0x40,0x62,0xc,0xb6,0x5a,0xaf,0xaf,0xe9,0x72,0xab,0x2e,0x97,0x33,0x8f,0xa7,0x5a,0xcc,0x70,0xdf,0xbc,0x11,0x65,0x9f,0x82,0x0,0xa8,0x2c,0xdb,0x12,0x70,0x56,0x83,0x42,0xfc,0x7e,0x4,0xcf,0xba,0xc,0x57,0xfe,0x78,0xfe,0xdf,0xca,0xdc,0xb3,0x44,0x50,0x65,0x88,0x84,0x7e,0x3c,0x14,0xa8,0xeb,0x9f,0x87,0xa1,0x51,0x24,0xf5,0x4b,0x74,0x40,0xa3,0xca,0x9a,0xf5,0xfc,0xf4,0xd7,0xf5,0x4,0x61,0x6f,0x9c,0xef,0xbd,0x3,0x3b,0x18,0xb7,0x4b,0x10,0x26,0x3b,0x21,0x6e,0x5f,0xba,0xcc,0x39,0xec,0xfd,0xfd,0xa8,0xb3,0x49,0x88,0x70,0xed,0xff,0x77,0x65,0x22,0xdf,0x8c,0xd5,0x33,0x6b,0xd6,0x3b,0x5d,0x49,0x41,0x1f,0xc7,0x8a,0xf5,0x52,0x5d,0x5d,0xb0,0xd0,0x45,0x9,0x65,0xf0,0x36,0xaa,0x6,0x24,0x79,0x60,0x3f,0xc5,0xdc,0xaf,0x45,0x6a,0x8,0x31,0x21,0x86,0x64,0xe0,0x5c,0x80,0xfa,0x7c,0x46,0xa4,0xbc,0x1a,0x3,0x2e,0xb8,0x14,0xdb,0x24,0xf2,0xe1,0x56,0x2b,0x5a,0xab,0xa8,0x65,0x33,0x16,0xb0,0x8e,0xa7,0xd1,0x2d,0xa2,0x68,0xa8,0x86,0x2d,0xc0,0xc8,0xf8,0xad,0x8c,0xc3,0xb4,0x2c,0xc8,0xcb,0x9,0x1,0x1,0x79,0x5d,0x7b,0x0,0x89,0x84,0x7f,0x30,0x80,0xb8,0x22,0xc6,0x28,0xa1,0x18,0x49,0x58,0x88,0x12,0x0,0xd5,0xc8,0xe4,0xb6,0x66,0x49,0x60,0x40,0x62,0xb2,0x31,0xd5,0xec,0x13,0xd0,0xc7,0x63,0xb,0xb7,0xb2,0x71,0x3f,0x9a,0x1c,0x98,0xc7,0xa8,0x68,0xbe,0xb5,0x49,0x41,0xcd,0xda,0x90,0xc5,0xff,0x4f,0x3f,0x73,0xbd,0xbb,0xc7,0xb2,0x9c,0xcc,0x2f,0x4f,0x41,0x59,0xd,0x38,0xc9,0x79,0x65,0x50,0x4e,0x92,0x98,0x55,0x6,0x1d,0x42,0xc0,0x7a,0xba,0xe7,0xf3,0x20,0xe1,0x2c,0xfc,0x1a,0xde,0x77,0x66,0xe8,0x35,0x39,0x3f,0xc1,0x98,0x9c,0x29,0x26,0xd9,0xa6,0xec,0x82,0xa7,0x60,0xac,0xc3,0x3e,0xb7,0xf3,0x76,0x2c,0xeb,0x5d,0xf,0x53,0x31,0xbf,0xc4,0x6e,0x7d,0x10,0xf5,0xd8,0xe9,0xc0,0x18,0xae,0x83,0x51,0x2c,0x50,0xab,0x91,0x5,0x7a,0xe9,0x6f,0x4f,0xe7,0xfb,0x1e,0x12,0xe6,0xc6,0x51,0xf3,0x1b,0x1e,0xc1,0x3f,0x1b,0x8f,0xc5,0xf2,0xc1,0x18,0xe2,0x6e,0x4e,0x3d,0x6,0xf0,0x8e,0x49,0x72,0x9d,0xfd,0x4f,0x3b,0x1f,0xbe,0x3d,0xe4,0xe7,0x29,0x84,0xb4,0xfb,0x3b,0xf4,0x79,0x65,0x8f,0xb8,0x59,0x78,0xcc,0xc1,0x73,0xb4,0xbb,0x17,0x3b,0xca,0xf6,0xa0,0x67,0x88,0x8,0xde,0xc7,0xc,0xbf,0xa5,0xbe,0x99,0x6,0x1b,0x80,0x99,0x58,0x3f,0x6b,0xd6,0xac,0x9,0x0,0xce,0x9a,0x35,0x6b,0xd6,0x8b,0x3a,0xa8,0xa7,0x71,0x58,0xd7,0x6,0x46,0xfd,0xd8,0xbc,0x7f,0x1e,0x35,0xcf,0xf2,0x52,0xa6,0x58,0x63,0xd0,0x4b,0x99,0x58,0xce,0xfb,0xcf,0x58,0x5,0xad,0xcb,0x26,0xcd,0x13,0xca,0x6e,0xf4,0x83,0x35,0x44,0xcb,0x7a,0x12,0x8f,0xa5,0x68,0x6c,0xad,0x2e,0x3d,0xf2,0xc,0x41,0xfe,0x86,0x94,0x96,0x21,0xac,0x4,0xfb,0xf0,0x92,0x41,0xea,0x49,0xe,0x24,0xe2,0x6d,0x55,0x3f,0x3b,0xf5,0xfb,0x6b,0x8d,0x41,0xaa,0xda,0x6a,0x7,0xc3,0x34,0xd0,0x64,0x8,0xa9,0xa0,0xbe,0xfe,0xaf,0xc1,0x1a,0x20,0xe7,0x8d,0x28,0xcd,0x5b,0xf0,0x37,0xd4,0x86,0xa,0xf5,0xfd,0x33,0x66,0x9b,0x34,0x34,0x2,0x52,0x2a,0xc8,0xa9,0xcd,0x82,0xca,0x8f,0xbb,0xf7,0x54,0x71,0xcc,0x49,0x7f,0xf,0xaf,0xac,0xe,0xf5,0x3f,0xec,0x72,0x57,0x6a,0xc2,0x58,0x69,0xa,0x54,0x76,0x50,0x4d,0xd9,0x3d,0xda,0x2c,0x6b,0xa3,0xaf,0x1e,0x59,0xda,0x14,0x69,0xa3,0xa0,0xc0,0x1e,0xcb,0x2,0x43,0x7,0x14,0x6b,0xed,0x80,0x97,0xb0,0x11,0xb5,0x51,0xed,0x8d,0x3b,0x39,0x9,0x6f,0x14,0xa3,0xfd,0xe,0xf2,0xc2,0xf9,0x5c,0x29,0x88,0xe7,0x19,0x82,0xc6,0x3c,0x74,0x0,0x9b,0x9e,0xa3,0x2e,0xe9,0xed,0xf2,0x46,0x52,0xd0,0xd5,0x7c,0x29,0x69,0xdc,0x8e,0x80,0x1d,0xd0,0x8c,0xc1,0x2c,0xde,0xcb,0xc8,0x7,0x66,0xc9,0xde,0x4f,0x6a,0x90,0x25,0xfb,0x67,0x7a,0x47,0x16,0xe2,0x14,0x51,0xcc,0x7a,0x3e,0x55,0xb7,0x6d,0x40,0x6,0xf4,0x67,0xda,0x64,0x41,0xc3,0xfb,0x75,0x2a,0xeb,0x55,0x1,0xb6,0x5a,0x78,0x4c,0xce,0xe2,0x1d,0xa7,0x72,0xdf,0x65,0x39,0x31,0xb8,0x28,0xd7,0x78,0x93,0xc4,0xd7,0x94,0x35,0x91,0x36,0xca,0x67,0xf0,0xf5,0xa1,0x5e,0xa5,0x7e,0xf1,0x81,0xd3,0x71,0x17,0xf6,0xad,0xbb,0xbb,0x47,0x5e,0x56,0x5b,0x34,0x50,0x16,0x73,0x36,0xcf,0x3a,0xc,0xe3,0x70,0x90,0xb1,0x77,0x3d,0xdd,0x49,0x42,0x31,0x33,0xd2,0x4e,0xf7,0x8f,0x64,0x5e,0xc9,0x6,0xc4,0xa9,0xef,0x5d,0x13,0xfb,0x81,0x28,0xa0,0x1a,0x81,0x38,0x44,0x23,0x67,0x59,0x9b,0x8,0x28,0x6e,0x4c,0x4a,0xc2,0x38,0x24,0xa2,0x21,0xf4,0xc3,0xfc,0x6,0xdd,0xb8,0xa6,0x73,0x8e,0x6,0x6c,0x30,0x68,0xda,0x3,0x97,0xd6,0xf5,0x6e,0x38,0x76,0xc,0xfe,0x91,0x7d,0x7e,0xce,0xab,0x4,0x66,0x30,0x10,0xa8,0xcc,0xca,0x26,0x81,0x27,0x51,0xc0,0xba,0xf5,0xee,0x4e,0xbc,0xfe,0x16,0xdc,0xbf,0xf4,0x8a,0x79,0xeb,0x32,0xc0,0xc9,0x0,0x6c,0x5e,0x4f,0x38,0xc9,0xf1,0xd4,0x24,0xe0,0xd3,0xdd,0x3d,0x7b,0x26,0x6,0x60,0x59,0xf9,0xf3,0xd4,0x1f,0x50,0xe7,0x65,0x3e,0x77,0x77,0x96,0xe6,0xab,0xc0,0x64,0xce,0x1a,0xb8,0xd5,0x6c,0x5f,0x9b,0xcc,0xa3,0xea,0x27,0x48,0xa,0x2,0x6,0xf1,0xe,0x76,0x0,0x56,0xc7,0xc1,0x64,0xd1,0xaa,0xb5,0x21,0x7c,0x49,0xcf,0x8b,0xe1,0x5e,0x9a,0x2e,0xef,0x24,0xc1,0x3e,0xa5,0xd7,0xfb,0xc2,0x1e,0x7b,0xb9,0x1a,0x5f,0x7d,0xc0,0xc3,0xc6,0xb1,0x19,0x3,0xc0,0x47,0xc3,0xdf,0x23,0xf0,0xa7,0xfb,0x42,0x57,0x88,0x5c,0x70,0x61,0x61,0xc3,0x84,0x70,0x1d,0xc4,0x61,0x6f,0x3d,0x8a,0x14,0xde,0x6d,0xda,0xce,0x9f,0xf0,0xa,0xd8,0xbb,0x5,0xfc,0x1d,0xbd,0x9e,0x6e,0xe3,0x79,0x4e,0x67,0xd0,0xc1,0xd3,0x7d,0xba,0xfd,0xac,0x59,0xb3,0xfe,0xcc,0xd7,0xbc,0x7b,0x9d,0x35,0x6b,0xd6,0xac,0x17,0xa9,0x76,0x26,0xd0,0x7a,0x53,0x4f,0xc2,0x3e,0xd0,0x9b,0xe9,0x2e,0x11,0x42,0x7,0x42,0x42,0x44,0x74,0xbe,0x7f,0xfe,0x73,0x94,0xad,0xa5,0xac,0xa,0xf5,0x7d,0xeb,0x7e,0x3f,0x70,0xd2,0x9d,0x66,0xf2,0x26,0x6d,0x90,0x52,0xce,0x7c,0xf,0x1d,0xfb,0x5d,0x75,0x97,0x90,0x91,0x31,0x24,0x54,0x9a,0x55,0xc4,0x13,0x49,0x93,0x1d,0xd5,0x83,0xaf,0x4b,0x85,0x1c,0xdb,0xc,0x9d,0x95,0xc0,0x8d,0x8,0x19,0x4b,0xe,0xd0,0x6,0x26,0x75,0xd9,0xaa,0xf8,0x0,0xf6,0x64,0xbe,0x60,0xf7,0xf7,0x49,0x81,0x38,0x35,0x7e,0xf,0xa3,0x74,0x48,0xfd,0xab,0xd4,0xb3,0xb0,0x3,0x5b,0x9c,0x9a,0x18,0x5d,0xf3,0x18,0x55,0x76,0xa3,0xe9,0xb8,0x94,0xc4,0xd7,0xb0,0x3a,0xb6,0x99,0x0,0xad,0xe6,0x7f,0xd4,0xc,0x1c,0x34,0x66,0x9e,0x3,0xb3,0x92,0x48,0xf8,0x5a,0x6d,0x8e,0x35,0x13,0xc,0x78,0xec,0x69,0x92,0x2,0x44,0x6a,0xa2,0xb3,0xc8,0xb9,0xb2,0xa4,0x52,0x52,0x37,0x62,0xb2,0x70,0x12,0x95,0xf6,0xc1,0x79,0xf5,0xc1,0x5,0xb8,0x20,0x4,0x96,0x17,0x1a,0x88,0x49,0x68,0xb5,0x39,0x66,0x60,0xed,0xcc,0x1a,0x67,0x0,0x6f,0x9e,0x8e,0x29,0x9a,0x44,0x4c,0xa5,0xce,0x1a,0xd2,0xa2,0x40,0xaa,0x97,0x12,0xc7,0x18,0xd0,0x93,0x3e,0xf9,0xdf,0x8d,0xaa,0x49,0x0,0x3b,0x80,0xd8,0x9c,0x5c,0xb8,0x33,0x1d,0x3d,0x2b,0x70,0x9f,0x90,0xba,0x97,0x98,0xed,0x93,0x24,0x3b,0xb,0x46,0x2e,0xaa,0xb0,0x7,0x66,0x67,0xcd,0x7a,0xce,0x43,0xbd,0x63,0x28,0xe9,0xb5,0xae,0xc1,0x45,0xd1,0xa7,0xa5,0x8b,0x5c,0xb5,0x6e,0xd5,0x58,0xd7,0x21,0x0,0xb5,0xf6,0x54,0x5c,0x5,0xf7,0x62,0x48,0xe,0x4,0xec,0x8c,0x42,0xd,0x83,0x88,0x31,0xa2,0x5c,0x2e,0xf6,0x7c,0x8c,0x11,0x65,0xbb,0x8,0x8,0x97,0x70,0x79,0x78,0x2,0x28,0xb8,0x54,0x35,0x14,0xa9,0x8a,0xcf,0x20,0x7,0x5b,0x4,0x27,0x5,0xd5,0x6d,0x41,0x60,0xd9,0xb0,0xfa,0xfc,0xa5,0x9c,0x4d,0x6,0xab,0x73,0x4,0x4b,0x57,0xa3,0x5,0x88,0x90,0x3,0x21,0x75,0x8c,0xd1,0xd4,0x5d,0x65,0x12,0xb2,0x6c,0x77,0x19,0x12,0xd6,0x4b,0x65,0x8f,0xbb,0xa2,0x52,0x69,0x9d,0x4b,0x64,0x5c,0x6,0xb0,0x5b,0xa4,0xe2,0xe7,0x3d,0xa3,0xce,0xe4,0xb8,0x2,0x1a,0xea,0x58,0xa5,0xb,0x17,0x69,0x3d,0xf1,0xe7,0x35,0x49,0x41,0xf,0x11,0xf1,0xc4,0xf2,0x5e,0x66,0x2b,0xe6,0xee,0xa9,0x48,0x40,0xcc,0xc9,0xd8,0x73,0x31,0x25,0x4,0xf4,0xe7,0x95,0xc1,0xd8,0xd4,0xeb,0xf,0xc9,0x7c,0x6f,0x75,0x5b,0x79,0xbe,0xcb,0x3,0x80,0x1b,0x88,0xa0,0x53,0x47,0xa3,0x20,0xc1,0x26,0xdd,0xfb,0x90,0x3d,0x1c,0x13,0xca,0xe5,0xcc,0xe1,0x53,0x29,0x83,0xa2,0x8c,0x8d,0x9b,0xf3,0x6a,0x15,0x76,0x5f,0xbf,0x17,0x88,0x6,0xea,0x59,0x28,0x93,0xce,0xd,0x6e,0x21,0x70,0x40,0xbf,0x4,0x0,0xb3,0x70,0x2a,0x37,0xce,0x6,0xf1,0xf7,0x83,0x3d,0x86,0x2b,0xd9,0xef,0xc8,0xc7,0xe,0xc3,0x5c,0xe9,0xef,0x53,0xfa,0x8b,0x83,0x9b,0x57,0xe9,0x1a,0x40,0xb,0xde,0xfe,0xc1,0x7f,0x34,0xbd,0x75,0x2a,0x8,0xbd,0x8d,0x7b,0xb0,0xb7,0x7a,0xf,0x3d,0xeb,0x6d,0x9d,0x5c,0x8b,0x74,0xfd,0xd8,0xe8,0x5f,0xa8,0x8c,0xc7,0x36,0x7a,0x28,0xce,0x9a,0x35,0x6b,0xd6,0x4,0x0,0x67,0xcd,0x9a,0x35,0xeb,0xc5,0x6d,0xa,0xf7,0x2b,0xe5,0xe4,0x64,0xc0,0xc6,0x9a,0x43,0xb3,0xa4,0xc2,0xa8,0x8c,0x38,0x62,0x6,0x9,0x42,0x97,0x8f,0xa9,0x8f,0x52,0x0,0x3f,0x67,0x37,0xf8,0x31,0x59,0xda,0xab,0x49,0x64,0xe5,0xe6,0x3a,0x25,0x6d,0x12,0xb3,0x81,0x5f,0x29,0x66,0xd4,0x56,0xc,0x18,0x8a,0xc2,0xac,0x8b,0x31,0x71,0x23,0x16,0x2,0x96,0xf5,0x84,0x72,0x39,0x1b,0x1b,0xc3,0xe4,0x9a,0xda,0x78,0x39,0x40,0x33,0x99,0x87,0x55,0x36,0xc0,0x4e,0xef,0x8f,0x93,0x0,0x77,0x54,0xab,0xf8,0x50,0x11,0x62,0x6c,0xe6,0x7f,0xa8,0x7f,0xb7,0xd6,0x7d,0x7,0x15,0xa8,0xd4,0x66,0xb3,0x83,0x6a,0xcd,0x2,0x3a,0xa8,0x55,0x34,0xea,0xfb,0xaa,0x8c,0xb8,0xe6,0x40,0x2e,0xf3,0xec,0x8b,0x9d,0xf5,0x68,0xec,0x8,0x10,0xa8,0xb6,0xc1,0x9f,0xc9,0x0,0x28,0xc0,0x3c,0xaf,0x54,0xfe,0xdb,0xac,0xc9,0xb,0xe6,0xb3,0x55,0x5b,0x31,0xa6,0x8b,0x32,0x0,0x95,0xdd,0x67,0x80,0x9d,0x4f,0x79,0xa6,0x9e,0xa8,0xec,0xe5,0xd1,0x2c,0x9,0xd7,0x84,0x45,0x96,0x75,0x37,0xe7,0x95,0xa5,0x80,0x9b,0x7a,0x46,0x69,0xd3,0x16,0x4,0xe8,0x54,0x80,0x34,0x4,0x1a,0xd8,0x99,0x3d,0x31,0xd3,0x7b,0xe5,0xf1,0xef,0xae,0x96,0x62,0x4d,0x6a,0x73,0x20,0xa8,0x2,0xc7,0x4d,0xc3,0x67,0xdc,0x6f,0x39,0xc4,0x8,0xb4,0x7e,0xee,0x54,0x4e,0xa8,0x8c,0x54,0x4b,0x35,0xe,0xc1,0x7d,0x56,0x4,0xa8,0x87,0x0,0x1c,0xb1,0x46,0xba,0xdc,0x8c,0x46,0xf,0xf6,0xa1,0x61,0x1a,0xfd,0x1,0x9f,0x2d,0x2f,0x72,0xd6,0xac,0x3f,0xf9,0xd2,0xeb,0x98,0x5c,0xc2,0x28,0x83,0xfc,0xd5,0x7e,0xdf,0x31,0x44,0x54,0xaa,0x58,0x16,0x66,0xa2,0x65,0x1,0xe7,0x3b,0x23,0x50,0xd3,0x7e,0xa3,0x81,0x68,0x29,0x2d,0x1c,0x34,0x14,0x94,0xe1,0xda,0x3d,0xde,0x62,0x4c,0xc,0x48,0x2d,0x2b,0x7,0x85,0xa4,0xcc,0x81,0x11,0xe2,0x97,0x4a,0xad,0x62,0x59,0xd7,0x21,0xf5,0x5c,0xc7,0xd5,0xf5,0xee,0x91,0x4,0x83,0xf4,0x39,0x25,0x9a,0x7d,0x1,0x33,0xd7,0xe0,0x43,0x39,0x1c,0xfb,0xf0,0x72,0x3e,0xe3,0x74,0x77,0x27,0x60,0x54,0x7,0xe0,0xd7,0xbb,0x7b,0x1e,0x33,0x53,0x46,0x6d,0x55,0xbe,0xff,0x64,0x8c,0xea,0x4b,0xab,0xc8,0x62,0x2d,0x51,0xcb,0x86,0x2a,0x21,0x4e,0xb1,0xa5,0x21,0x50,0x28,0x80,0xc1,0x2b,0x22,0x96,0x14,0xab,0x7,0x9f,0x26,0xb1,0xeb,0xb8,0xea,0x17,0x11,0xe0,0x93,0x91,0x73,0xf7,0xd4,0x53,0xfb,0x82,0x5a,0xd8,0x9b,0x2f,0x81,0x41,0x4c,0x1d,0x87,0xd6,0xd3,0xbd,0xb0,0x25,0x49,0xe6,0xbc,0x3b,0x7b,0x2f,0xb3,0x29,0x31,0xb0,0x2a,0xd9,0x17,0x50,0xfc,0x6e,0x63,0x42,0x82,0x58,0x5a,0x2c,0xd1,0x6c,0x18,0x72,0x5e,0x6c,0x64,0xaa,0xad,0x22,0x10,0x4b,0x79,0xf3,0xca,0x80,0xe2,0x76,0xb9,0xd8,0xb9,0x4e,0x21,0x48,0x20,0x57,0xf7,0x55,0x4d,0x79,0x41,0x50,0x76,0x3c,0x5c,0xc8,0x92,0xf7,0x7b,0xd5,0x39,0xc8,0x12,0x84,0x65,0x7e,0xd3,0xe4,0x65,0x4,0x50,0xc0,0x75,0x28,0x18,0xdc,0xfc,0xe0,0x17,0x5f,0xdc,0x38,0xbb,0x97,0xfe,0xfa,0x71,0xbb,0x7,0x51,0x39,0xf0,0x4f,0xee,0x39,0x3a,0xf2,0x45,0xdd,0x8a,0xc2,0xb3,0xf2,0x2c,0x29,0x78,0x37,0xc0,0x7,0x37,0x7e,0xbb,0x10,0xaa,0xe1,0x45,0xb7,0x18,0x7a,0xf4,0x16,0x0,0xdd,0xd,0x90,0x8f,0x76,0x9b,0xf2,0xac,0x9f,0x71,0xcd,0x5f,0xec,0x20,0x5f,0xb8,0xd2,0x5,0x8f,0xaf,0x51,0x4b,0x15,0x22,0x9a,0x73,0xd5,0xac,0x59,0xb3,0x26,0x0,0x38,0x6b,0xd6,0xac,0x59,0x2f,0x6c,0x85,0xe,0x70,0x28,0xb8,0xa3,0x9e,0x6b,0x6c,0x9c,0x2e,0x3e,0x79,0xe6,0x61,0x26,0xa0,0x1a,0xf5,0xe0,0x5,0x35,0x60,0xf,0x8e,0x1,0xd0,0x84,0xfd,0x87,0xe8,0xc,0xb5,0x63,0x2,0x24,0x4d,0x32,0x68,0xe8,0x86,0x48,0x3e,0xd3,0xb2,0x48,0xf3,0x7,0x94,0xd2,0xac,0xb1,0x63,0x90,0xb1,0x5a,0xa3,0x14,0x63,0x44,0x6c,0xd,0xcb,0xb2,0xa2,0x94,0x8b,0xb0,0x1d,0x64,0x57,0xc4,0x18,0xbe,0xb6,0x8a,0x14,0x93,0x81,0x3e,0xb5,0x55,0x36,0xf,0xf,0x30,0xd0,0x48,0x3d,0xf1,0x52,0x4c,0x3,0x20,0x18,0xe4,0xce,0x9b,0x99,0x27,0x3d,0x39,0x93,0x13,0x8f,0x7b,0x22,0xae,0x36,0x28,0x81,0xc2,0xc0,0x88,0xf3,0xd2,0x5d,0x0,0xc6,0x3e,0xe9,0x0,0x5b,0x33,0x46,0x44,0x8,0x11,0xad,0x70,0x63,0x6b,0xac,0x40,0xea,0x52,0x3a,0xf3,0xc8,0xab,0x15,0x51,0x7d,0x11,0xed,0xb4,0x5,0xa4,0xc4,0xfb,0x6,0x49,0xe5,0xd5,0xc6,0x27,0xa6,0x8,0xaa,0xca,0xc8,0x20,0x63,0xec,0xd4,0x52,0xc,0x4c,0xcc,0x92,0xfc,0xa8,0x8d,0x5a,0xcf,0xc7,0x8,0xce,0x6b,0x2b,0x98,0x27,0xd7,0x1e,0xe4,0xec,0x4d,0x7f,0x44,0x6b,0xa1,0xe3,0x5f,0xad,0xf1,0x79,0x95,0xe3,0xaa,0xc4,0x8b,0x1,0xf0,0x8b,0x11,0x54,0xab,0x63,0xf6,0x71,0xc2,0xb0,0x5,0x75,0x74,0xd4,0xcd,0xfe,0xaf,0x4c,0x1d,0x95,0x1c,0x57,0xd,0x74,0x71,0x60,0xa8,0xbe,0x67,0x48,0x22,0x76,0xbe,0x8b,0xe4,0x80,0x4e,0x6b,0x24,0xd9,0x75,0xbe,0x33,0x4e,0x42,0x1c,0x19,0x7f,0x34,0x26,0xfa,0x6,0xf2,0xd,0xd3,0xe8,0x2e,0x3f,0x9e,0x9f,0x51,0x9e,0x66,0xe1,0x2b,0xb3,0x66,0x3d,0x8f,0x61,0x5e,0xc7,0x27,0x5,0x39,0xd4,0x67,0x8f,0xe0,0x24,0xf8,0x5c,0x9c,0xdc,0xab,0xc0,0x5a,0x45,0xce,0xd9,0x16,0x32,0x78,0x9c,0x4f,0x6,0xee,0xeb,0xbf,0x63,0xce,0x78,0xfd,0x83,0xef,0xc5,0x7b,0x5f,0x7d,0x85,0x81,0xa5,0x5a,0x5,0x14,0x2,0xbe,0xf0,0xa5,0xaf,0xe0,0x77,0xbf,0xf4,0xf5,0xce,0x6,0x96,0x5,0x91,0x80,0x68,0x81,0x1a,0x9e,0xf5,0x1d,0x63,0xb7,0x6,0xd0,0xc5,0x84,0xbc,0xac,0x3,0x58,0x54,0x2e,0x67,0xa4,0xbc,0xe0,0x94,0x2,0x3e,0xf5,0xf1,0xf,0x8b,0x8c,0x35,0x99,0x44,0xf5,0x72,0xb9,0xe0,0x9f,0xfc,0xd6,0x1f,0x30,0x40,0x27,0x8b,0x4b,0xb5,0x56,0xe4,0x75,0x45,0xdd,0x36,0xa4,0x94,0xf0,0xe1,0x6f,0x7b,0x1f,0x5e,0x79,0xe5,0x91,0xb1,0xb0,0xd5,0x1e,0xe0,0xb7,0x7f,0xef,0xb,0xf8,0xc2,0x57,0xbe,0x81,0x10,0x8b,0x59,0x25,0xd8,0xf1,0x68,0x15,0x31,0x67,0x94,0x6d,0x13,0x5f,0x42,0xc8,0x67,0x17,0x2c,0xcb,0xa,0x84,0x20,0xa9,0xb8,0x8b,0x24,0xc0,0xf3,0xa2,0x13,0x9f,0xd3,0x7d,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x88,0x7a,0xf,0xc6,0x94,0xf1,0xfa,0xb7,0xbc,0x8a,0x57,0x5f,0x79,0x24,0x63,0x9e,0x30,0xed,0x43,0xc0,0x17,0xbf,0xfa,0x26,0xfe,0xe0,0x8f,0xbe,0xc6,0x0,0x9d,0xd8,0x51,0x84,0x10,0x70,0xba,0x7b,0x84,0xd6,0x1a,0xde,0xf3,0xca,0x23,0x7c,0xe8,0x83,0xef,0xed,0xe3,0x8f,0x97,0x6e,0x23,0x20,0xb8,0x60,0x9,0x5d,0x54,0xe1,0xb1,0x58,0x82,0x34,0x88,0xf0,0x70,0xd9,0xf0,0xf0,0x70,0x46,0xa9,0x15,0x8f,0x1f,0x36,0xbc,0xf1,0xe4,0x8c,0x4b,0xe9,0xbe,0x8b,0xb5,0x35,0xb6,0xe2,0x10,0x60,0x58,0xcf,0x3,0xfb,0x34,0x32,0x78,0x5a,0x68,0x43,0xa0,0xd0,0xd9,0x93,0x0,0xb6,0xed,0x82,0xb4,0x2c,0xf6,0xbe,0x65,0x3d,0xa1,0x98,0xa7,0x23,0x5c,0xc8,0x95,0x32,0x0,0xc9,0x6c,0x29,0x94,0x81,0xa9,0xe7,0x6e,0x4,0x4,0xbb,0x84,0xfa,0x1a,0x63,0xbb,0x5e,0x60,0xa1,0x2b,0x70,0xe,0x16,0x28,0x45,0x81,0xe0,0x6d,0x4a,0x86,0xf,0xb3,0xf5,0x1a,0xba,0x6,0xf5,0xfc,0x57,0xd1,0x8,0xe,0x12,0xed,0x7c,0x1,0x9f,0x65,0x88,0x27,0xc,0xc0,0xdd,0x11,0x90,0xb7,0xf,0xf6,0xd,0x87,0xaf,0xb,0x57,0xef,0x57,0xff,0xc2,0xee,0x63,0x78,0xf4,0x1d,0xc7,0xaf,0x31,0xab,0x8d,0x30,0xa7,0xaa,0x59,0xb3,0x66,0x4d,0x0,0x70,0xd6,0xac,0x59,0xb3,0x5e,0xdc,0xf2,0x66,0xd4,0xce,0xf7,0xcd,0x16,0xc7,0xe5,0xff,0x51,0x40,0xc0,0x18,0x93,0xad,0x14,0xc3,0xa5,0xb3,0x76,0xb0,0x45,0x99,0x66,0x0,0x25,0xf1,0xe9,0xd3,0x55,0x65,0x95,0x9b,0xca,0x6b,0xb5,0xd1,0x50,0x66,0x98,0xb2,0xba,0xd4,0xb0,0x5c,0x41,0x2a,0x34,0x74,0x0,0x2b,0x65,0xa4,0x4c,0x3,0x28,0xd8,0x93,0x55,0x59,0x1e,0xba,0x4a,0xda,0xa1,0xb2,0x13,0x34,0x51,0xd2,0x8c,0xc5,0x45,0xf2,0xea,0x65,0xa7,0xca,0xe,0x8b,0xc2,0x10,0x34,0x6,0x9b,0x80,0x95,0x9a,0x1a,0xd9,0x3d,0x8e,0xc4,0x9c,0x3e,0xb2,0x54,0x75,0x48,0xe8,0x43,0x40,0x93,0x64,0xc8,0x2a,0xec,0x9,0x66,0xe1,0x39,0x3,0x74,0x49,0xb0,0x55,0x6,0x5f,0xca,0x8b,0x5,0x7a,0xf8,0x3b,0xf0,0x56,0x3b,0xb,0xb2,0xd5,0xc6,0xe0,0x5e,0x23,0x6e,0x66,0x84,0x49,0x61,0x12,0xa6,0xd8,0x4d,0xf3,0x43,0x64,0x10,0xd6,0x92,0x76,0x89,0xba,0x14,0x4e,0x9a,0x4b,0x9f,0xc4,0xa9,0x8d,0x19,0xb3,0x6d,0x8a,0xf3,0xe9,0xa,0x1d,0x80,0x53,0x86,0x24,0x75,0x46,0xa5,0x4f,0x2,0x56,0x76,0x4e,0x35,0xf6,0x5d,0xe2,0x6d,0x8,0xda,0x5c,0x34,0x97,0xba,0x1c,0x2d,0xc,0x65,0x1f,0x74,0xa2,0xc7,0xa4,0x39,0x18,0x8d,0xe5,0x62,0xc9,0xfc,0xd5,0x7d,0x93,0x18,0x42,0xb4,0x64,0x67,0x5,0xa2,0x15,0x84,0xd0,0xef,0xeb,0x0,0xa6,0x36,0x8a,0x23,0x10,0x8,0x35,0xa7,0x77,0xe0,0xa3,0x97,0x4,0x7b,0x10,0x74,0x24,0x88,0x4,0x74,0xf6,0x8,0x46,0x8f,0x27,0xf7,0xcf,0x80,0x80,0x7c,0xff,0x6e,0x6c,0x8f,0xbf,0x32,0xc7,0x9c,0x59,0xcf,0x1,0x0,0x8c,0x96,0xea,0xaa,0xd7,0x84,0xb2,0xb4,0x95,0x61,0x7,0xe7,0xa3,0xc9,0xcc,0x6d,0xfe,0xf1,0x96,0xb2,0x99,0x4f,0xab,0x6,0x1e,0x31,0xa0,0x15,0x84,0x85,0xcc,0xde,0x78,0x3f,0xf9,0xe3,0x3f,0x8c,0xef,0xfb,0xf4,0xc7,0xa1,0xe9,0xc2,0x7a,0x6d,0xfd,0xaf,0xff,0xfb,0x2f,0xe3,0x6f,0xfc,0xed,0x9f,0xe7,0x71,0x44,0xc6,0x39,0x95,0xa1,0x6,0x1d,0x43,0x88,0x7d,0xa,0x17,0xf1,0xa8,0xe3,0xf1,0x8e,0x3,0x48,0x16,0x4b,0x58,0xf,0xc8,0xcb,0x9d,0x80,0x71,0xbc,0x9d,0xdf,0xf6,0xfe,0xf7,0xe0,0x3f,0xfa,0xf7,0x7e,0x4a,0xac,0x20,0xc8,0x58,0xcc,0x8f,0x9f,0x3c,0xc1,0x7f,0xfe,0xd7,0xff,0x3b,0x7c,0xe3,0xf1,0x19,0xcb,0xe9,0x8e,0xb7,0x59,0x80,0x35,0xd,0xb6,0xf8,0xb7,0xff,0xca,0x5f,0xc2,0xeb,0xdf,0xf9,0xad,0x3b,0x40,0x85,0xf0,0x3f,0xfe,0xdd,0x5f,0xc0,0xdf,0xfe,0x7b,0xbf,0x8,0x66,0xbd,0x31,0x0,0x57,0xca,0x86,0xb2,0x6d,0xc,0xda,0xb9,0xc4,0xdb,0x26,0xc7,0x2c,0x26,0x1e,0x2f,0x35,0x68,0x43,0xe7,0x81,0x14,0x73,0xf,0x2c,0x4a,0x19,0x20,0xc2,0xbf,0xf9,0x97,0x7f,0xc,0x1f,0xfb,0xe8,0x87,0xaf,0xd0,0xa2,0x9f,0xf9,0x9f,0x7f,0x1,0x3f,0xf3,0xb,0xff,0xf,0x7f,0x5e,0xe,0x8,0x8d,0xbf,0x8b,0x25,0xce,0xb,0x3e,0xf9,0xe1,0x6f,0xc5,0xbf,0xfb,0x53,0x3f,0x7e,0xed,0xf,0x87,0x3,0xab,0x82,0xdd,0xd8,0xe6,0x7d,0xf3,0x78,0xdc,0xe6,0x39,0xee,0xcd,0x27,0x4f,0xf0,0xe5,0xaf,0x7c,0x3,0xff,0xe2,0xf7,0xbf,0x88,0x5f,0xff,0xfc,0xef,0xe0,0x37,0x7e,0xfb,0xf,0xf0,0x70,0xd9,0xba,0x97,0x9e,0xcc,0xbb,0xea,0xdf,0xdb,0x88,0x17,0xac,0x90,0xba,0x3a,0xa0,0xd5,0x82,0xbb,0x47,0x2f,0x1b,0x13,0xd2,0xd2,0x93,0x43,0x67,0x9d,0xe9,0x2,0x1b,0xa0,0xc7,0x2b,0xf4,0x60,0x28,0x37,0x50,0x2a,0xcb,0x70,0x60,0xb2,0xf7,0x54,0x25,0xf3,0xca,0x85,0x93,0xb3,0x76,0x80,0xee,0x88,0x32,0x47,0xce,0xbb,0xf,0x23,0xf8,0x77,0x84,0x74,0x19,0x8,0x88,0x6b,0xff,0x3c,0xc2,0xc1,0xb8,0x7e,0xf5,0xf3,0xb9,0xfe,0xb8,0xb7,0xba,0x36,0x1d,0x90,0xd7,0x41,0x3c,0xb8,0x34,0xf9,0x3d,0x5b,0xcf,0x2f,0x2f,0x85,0x3,0x20,0xef,0x9a,0x9,0xd8,0x8f,0x15,0xdd,0xfc,0xac,0x71,0x31,0x6b,0x82,0x80,0xb3,0x66,0xcd,0x9a,0x0,0xe0,0xac,0x59,0xb3,0x66,0xbd,0xa0,0x9d,0xe1,0xad,0x87,0xdc,0x4d,0x26,0x11,0x80,0xe6,0xfe,0xd,0x1,0x88,0x8a,0xdd,0xd0,0xfb,0xb0,0x8,0x4d,0x4b,0x54,0x3f,0x37,0x72,0xec,0x28,0xf5,0x74,0x8a,0x79,0x11,0xd9,0x56,0x46,0x90,0xc6,0xb0,0x83,0x3a,0x64,0xde,0x7e,0xd6,0xec,0x29,0x5b,0x8c,0x7a,0xc2,0x6e,0xa9,0x17,0x4b,0xe,0xae,0xa5,0xa0,0x6c,0x17,0x6,0xa,0x5,0x68,0x6a,0x55,0x64,0x6f,0x1,0x88,0x22,0x4f,0xab,0xd2,0x54,0xaa,0xec,0x2b,0x68,0x43,0x24,0xec,0x18,0x3,0xfe,0xa4,0x59,0x68,0xb5,0x74,0x70,0x4e,0xb6,0x3f,0xa5,0xd4,0x8d,0xe2,0x43,0x0,0x55,0x6,0x3e,0x63,0x88,0xe6,0x4d,0xe8,0xd9,0x73,0xcc,0xe2,0x2b,0x63,0x12,0x22,0xc9,0x71,0xa,0x9,0xb5,0x5d,0x3a,0x40,0x25,0x12,0x56,0x9f,0x40,0xab,0x77,0xe3,0x29,0x25,0x1,0xb5,0x98,0x3d,0xa3,0x52,0x68,0x4e,0x62,0xe,0x40,0xeb,0xec,0x35,0xbf,0xda,0x1f,0x2,0xb3,0x75,0xc8,0xe4,0xaf,0xfb,0xc6,0xa4,0xb3,0xea,0xe0,0x4d,0xf6,0x5d,0x18,0x89,0xfa,0x35,0x29,0x90,0xda,0x13,0x30,0x17,0x91,0xc3,0x11,0xa8,0xc2,0x7c,0xbf,0xb4,0xd1,0xec,0x19,0x32,0x34,0xec,0x93,0x97,0x21,0x6b,0xca,0x27,0x9,0xd0,0x68,0xa1,0x31,0x4e,0xe,0xa6,0x69,0xd2,0xad,0x56,0xa0,0x39,0x26,0x9,0xe0,0x18,0x9c,0xc1,0x98,0x93,0xc1,0x40,0x8c,0x2e,0x17,0x26,0x97,0xe,0xc9,0xf2,0xf6,0x66,0x4d,0xa1,0x32,0x80,0xae,0x80,0x41,0x74,0xc0,0x70,0xdf,0xc8,0x92,0x37,0x73,0xf,0xbb,0xbf,0x87,0xa6,0x90,0xf7,0xa3,0x9e,0xdf,0x98,0xe3,0xcd,0xac,0xe7,0x52,0x1e,0x48,0x19,0x12,0xb3,0x63,0x14,0xc0,0x3f,0xc9,0xb8,0xd1,0x41,0x8,0xb3,0x14,0x10,0x50,0x50,0x41,0x34,0x5d,0x1c,0x8,0x91,0xc7,0x42,0x10,0x21,0xa4,0x84,0x80,0x6b,0xf6,0x96,0x6,0x4c,0xf0,0x58,0x4b,0x43,0x60,0x8f,0x32,0x93,0x75,0xfb,0x9a,0xf8,0xb7,0xea,0xb5,0x9c,0x97,0x55,0xc6,0xa5,0x82,0xbc,0x2c,0x16,0x50,0xa4,0x32,0x5a,0xb,0xe6,0x40,0x67,0x2f,0xeb,0xbf,0x43,0x8,0x28,0xdb,0x86,0x52,0x8a,0x24,0xaa,0x67,0x4b,0x37,0xcd,0xf2,0x1e,0xec,0xd2,0xbd,0x3d,0x1c,0x53,0xb6,0xb,0xbf,0x7,0xcd,0xc0,0x2f,0x5d,0x20,0xab,0x75,0x43,0x5e,0x16,0x94,0xcb,0x5,0xad,0x56,0x9c,0xee,0x4f,0x92,0x60,0xcc,0x8b,0x4d,0xcb,0xb2,0xca,0x42,0x4b,0x1b,0xbc,0xec,0xca,0x76,0xc1,0x7a,0x77,0x8f,0x94,0xd7,0x61,0x7b,0xb5,0x92,0x4,0x7d,0x98,0x87,0xab,0x2c,0x92,0x65,0x49,0x70,0x66,0x16,0x38,0xe,0x80,0xac,0x7e,0xac,0xfd,0xdf,0xb7,0xfe,0xcd,0xe9,0xc7,0xfc,0xd8,0xe9,0xb4,0xe2,0xb5,0x57,0xdf,0x8d,0x8f,0x7d,0xe4,0x3b,0xf0,0x17,0x7f,0xe4,0xb3,0xf8,0xfa,0xd7,0xdf,0xc0,0x3f,0xfb,0xfc,0xef,0xe0,0xe7,0x7e,0xf1,0x1f,0xe3,0xb7,0xff,0xf0,0xcb,0x48,0x58,0x8c,0xd,0x7e,0x39,0x3f,0xb0,0xc5,0xc3,0xb2,0x48,0xa8,0xc,0x8f,0x99,0x79,0x59,0x71,0xb9,0x3c,0xf4,0xfd,0xc8,0x19,0xb5,0xb0,0xc4,0x5a,0xad,0x41,0x52,0xce,0x36,0x5f,0x71,0x70,0x53,0xeb,0xa9,0xd3,0xbb,0xb1,0x76,0xbc,0xe7,0x8,0x7d,0xce,0x54,0x36,0x21,0xd1,0x10,0x4a,0xe5,0xc7,0xd9,0x7e,0x48,0x83,0x3,0x9,0x47,0xe4,0x6e,0x48,0xbf,0xb6,0xd3,0xe0,0x10,0xaf,0x23,0xc0,0xef,0x99,0x2e,0xb2,0x67,0xba,0xbd,0x1a,0xd8,0x78,0x84,0x6b,0x4,0x91,0x6,0x70,0x73,0x4,0x7,0x7,0x80,0xf2,0x10,0xea,0xbb,0x75,0xfd,0xd3,0x8d,0x8d,0x3a,0x36,0x20,0x9c,0xe0,0xdf,0xac,0x59,0xb3,0x26,0x0,0x38,0x6b,0xd6,0xac,0x59,0x2f,0x2a,0xfe,0x17,0x46,0xf6,0x9a,0x49,0x25,0x83,0x7b,0x5e,0xc2,0x2a,0x8a,0xb0,0xe0,0x7c,0xf3,0x15,0xe,0x58,0x64,0xad,0x56,0xd4,0xc2,0xc0,0x59,0xca,0x89,0x25,0x56,0x2,0x22,0xa5,0x85,0xa5,0x41,0x79,0x61,0x63,0x72,0xa2,0x86,0xf5,0x74,0xcf,0x72,0xdc,0x94,0x51,0x7d,0xa,0x6c,0x29,0xe6,0x97,0xb4,0x5d,0x2e,0xc6,0xa0,0xe0,0x20,0xf,0x12,0xb6,0x5e,0x4f,0x25,0x5c,0xef,0xee,0x51,0xb6,0x4b,0xdf,0x17,0x69,0x30,0x48,0x80,0xa8,0x5a,0x7b,0x2,0xa4,0x82,0x61,0x4,0x95,0xe9,0x3a,0x99,0x28,0xc1,0x80,0x4b,0x4e,0xa5,0xac,0x22,0xf7,0xe2,0x46,0xa4,0x88,0x44,0xae,0x49,0x80,0x48,0xf,0x18,0x61,0xe9,0x6e,0x4e,0xca,0xd8,0x2b,0x1d,0xb4,0x14,0x6,0x1d,0xfb,0x62,0x15,0xf3,0xd4,0x53,0x3f,0x41,0xef,0x3d,0x97,0x84,0xc1,0x18,0x6d,0xfb,0xc5,0x3b,0x50,0x18,0x87,0xdc,0x60,0x15,0x66,0x48,0xca,0x77,0xa8,0x9c,0xb9,0xe9,0xf6,0x83,0xac,0x69,0x4f,0x39,0x19,0xbb,0x90,0xb7,0xb3,0x33,0x68,0x42,0xcc,0x68,0x95,0x81,0x5c,0x36,0xa6,0xef,0xa1,0x24,0xca,0xf2,0xf3,0x9e,0x87,0x14,0x83,0x33,0xd4,0x5f,0xcc,0xdb,0x4b,0x59,0x72,0xb5,0xf2,0x76,0x71,0xb3,0x27,0x2c,0x22,0x36,0x50,0x34,0xe0,0x58,0xc3,0x51,0x42,0xe8,0xe9,0xd0,0x64,0xe0,0xb1,0x78,0x4b,0x79,0x0,0x38,0xf1,0x31,0x4b,0x21,0x9a,0xa4,0xbc,0xd5,0x82,0x90,0x32,0x20,0xe7,0x9f,0x8f,0x73,0xf,0x28,0xe9,0x6c,0xa7,0xd1,0xf7,0x6f,0x6c,0x8a,0x46,0x59,0x36,0xd,0x29,0xd2,0x6d,0x44,0xf3,0x94,0x5d,0x13,0x4c,0xfb,0xd5,0xd9,0x95,0x62,0x4,0x4f,0x8e,0x39,0x42,0xae,0x99,0x24,0xc0,0x7c,0x16,0x67,0xcd,0x7a,0x1e,0xa5,0x72,0x54,0xd,0xfe,0x61,0xab,0x80,0x7e,0xed,0x37,0xb1,0x4d,0x0,0x80,0xda,0x8a,0x84,0x78,0x88,0xff,0xa6,0x78,0xba,0xf9,0x50,0x8b,0x45,0x24,0xb9,0x2a,0x6b,0x65,0x90,0x2f,0x1d,0xcf,0x31,0x3a,0xe6,0x12,0x21,0x2f,0x9,0xa5,0x5c,0xc,0x1c,0xa,0x31,0x21,0x34,0xea,0xbe,0x7e,0xe8,0xac,0x6d,0x95,0xd1,0x9a,0xfc,0x34,0x33,0x9b,0x2e,0x88,0x1f,0xa1,0x40,0x87,0x47,0x58,0x98,0x80,0x4e,0xb,0x42,0x60,0xb9,0x6f,0x93,0x45,0xa1,0x24,0xec,0xf2,0xf0,0x16,0x60,0xc9,0xb2,0xde,0x89,0x6f,0x62,0x90,0x60,0x8d,0xa5,0xcb,0x94,0x41,0xa8,0x26,0x1,0x8e,0xd8,0x2e,0x67,0x49,0x2a,0xe6,0x79,0xe7,0x72,0x79,0x60,0x20,0x70,0x3d,0x89,0xcf,0x1f,0xef,0x8b,0xc9,0x94,0x6f,0x1a,0xc3,0xc9,0x22,0x86,0x1c,0xc7,0xb0,0xf0,0x79,0x69,0xb5,0xa0,0x94,0x82,0x3f,0xe9,0x64,0xd6,0x14,0x23,0xde,0xf3,0xea,0xbb,0xf0,0x43,0x3f,0xf0,0x69,0x7c,0xf6,0x7b,0x3e,0x8e,0x5f,0xfb,0xf5,0xcf,0xe3,0x67,0x7f,0xee,0x97,0xf0,0x3b,0x5f,0xfc,0x2a,0x9a,0xd8,0x6e,0x70,0xc8,0x4a,0x43,0x5a,0x16,0xb3,0x6c,0x20,0x22,0x2c,0xb,0xb3,0xf9,0xcb,0x76,0x41,0x2d,0x3d,0x8c,0x2a,0xc6,0x68,0xc7,0x2a,0x7,0xa0,0x6c,0x9b,0x59,0x89,0x40,0xce,0x7b,0x5f,0x7c,0xe9,0x90,0x97,0x82,0xc0,0x9a,0x20,0x6d,0xf3,0x43,0x13,0x89,0xaa,0x5,0x6b,0xc5,0xee,0xf1,0x17,0x3a,0x80,0xdb,0x53,0x82,0xe9,0xa,0xe0,0x33,0x25,0x80,0x7,0xd5,0xe,0xb2,0x7f,0x6f,0x1e,0x6d,0x9f,0x17,0x62,0x1f,0x4b,0xb6,0xf8,0xe9,0xe7,0x99,0xeb,0x73,0x1d,0xae,0x1e,0x3f,0x94,0xe2,0xba,0x6d,0xa3,0xa3,0x60,0xf9,0x70,0xf0,0x5e,0xba,0x7e,0xfe,0x4a,0x37,0xfd,0xc,0xd6,0xb4,0x13,0xfc,0x9b,0x35,0x6b,0xd6,0xd5,0x3d,0xc4,0x3c,0x4,0xb3,0x66,0xcd,0x9a,0xf5,0xe2,0x54,0x67,0x34,0x61,0x30,0x55,0x7,0x91,0xc3,0x3e,0x68,0xf0,0x80,0xd3,0xa6,0x84,0x81,0xb8,0x36,0xf8,0xb4,0x85,0x10,0x25,0x91,0x31,0x89,0x5c,0xb5,0x61,0xdb,0x2e,0xbd,0x21,0x13,0x49,0x57,0x40,0x40,0xce,0x2b,0x56,0x31,0x61,0x57,0x40,0xca,0x7f,0xb7,0xbe,0x9e,0xc1,0xbd,0x3b,0x63,0x82,0xc5,0xc4,0x2c,0x89,0x9c,0x17,0x27,0xef,0xd,0x83,0xb4,0x8c,0x9b,0xc6,0x2a,0xdb,0x91,0xec,0xdf,0xca,0xe,0x31,0x23,0x71,0x3,0xb8,0x7a,0xd0,0x46,0x95,0x60,0x8e,0x2c,0x40,0x1c,0xa8,0x3,0x40,0x20,0x66,0x90,0xa4,0x98,0x8c,0xad,0xa6,0xb2,0x68,0xff,0x19,0xd6,0x70,0x37,0x6,0xb4,0x34,0x15,0xb3,0xd6,0x62,0x92,0x61,0xcf,0x80,0x30,0x26,0xb,0x76,0xbe,0x7b,0xd2,0x60,0xd7,0x52,0x4,0xf4,0x4c,0xec,0x3f,0x65,0xe0,0x93,0x48,0xb4,0x3c,0xa0,0xab,0xfe,0x5e,0x72,0xb7,0xaf,0xc0,0xa4,0xb2,0x2f,0xf3,0xb2,0x18,0x20,0x96,0x84,0xb1,0x97,0x97,0xc5,0xfa,0x80,0x98,0xe2,0xc0,0x44,0xc9,0xcb,0xd2,0x43,0x49,0x94,0x49,0x24,0xc0,0xaa,0x7,0xcd,0x54,0x72,0x5b,0x45,0x22,0xa8,0x9e,0x5a,0x41,0x58,0x1c,0x1a,0x22,0xa3,0xfb,0xa8,0xe7,0x2e,0xc6,0x64,0x2c,0x46,0x96,0x87,0x65,0xa8,0x48,0x51,0x7d,0x11,0x43,0x8,0x7c,0x5e,0x4,0x90,0xe8,0xc,0x53,0x1a,0xc0,0x3c,0x58,0xf3,0x37,0x76,0x38,0x7b,0xc9,0x30,0x69,0x8,0x8a,0xf3,0xfd,0xeb,0xbd,0x10,0x61,0x94,0x87,0x85,0x41,0x7a,0x66,0xa9,0xcb,0xa,0x2c,0xc2,0x25,0xa,0x5b,0xf2,0xe2,0xc8,0xbc,0x9,0xbb,0x94,0xca,0x59,0xb3,0xde,0xd9,0x81,0xde,0xa5,0x0,0xbb,0x3f,0xe6,0x5f,0xaa,0x8c,0x23,0x49,0xc6,0xcd,0xcb,0x62,0xb,0x6,0x39,0x65,0xa4,0x9c,0x99,0xe1,0xac,0xd7,0xba,0xc8,0x42,0xd5,0xa3,0x94,0x65,0xbc,0xc7,0xbf,0xef,0x26,0x72,0xd0,0x1e,0xfc,0x44,0x88,0x79,0x91,0x0,0x8e,0xcd,0x18,0xd9,0x9c,0x8c,0xce,0xe1,0x4e,0xa,0xe2,0x30,0x13,0x8f,0xc7,0xda,0x94,0x17,0xac,0xeb,0x9d,0xf8,0x1,0x36,0x99,0x7,0xd2,0x31,0x54,0x23,0xe0,0xd1,0xe9,0xee,0x5e,0x52,0x77,0x13,0x2f,0x48,0xc9,0x62,0x45,0x5e,0x4f,0x7,0xec,0xbf,0x7e,0xb0,0x18,0xdc,0xb,0xb6,0xdd,0x4d,0x16,0x3a,0x78,0xf1,0x26,0x21,0x4b,0x8,0x49,0x8c,0x91,0xf7,0xa3,0x16,0xe,0xc4,0x2,0xb0,0xae,0x77,0x3d,0x25,0x58,0x53,0x88,0xa9,0x19,0xc3,0x9c,0xdc,0x82,0xd9,0x1e,0x1c,0xb2,0xe3,0x24,0xe3,0x94,0x32,0xa3,0x57,0x49,0x2,0x7e,0xa7,0xea,0xb4,0x2e,0xf8,0x81,0xef,0xfd,0x4,0xfe,0xb3,0xff,0xf0,0xaf,0xe2,0xdf,0xf8,0xf1,0xcf,0x61,0x5d,0x16,0x1,0x66,0x17,0x4b,0x8d,0x57,0x20,0x4b,0xe7,0x63,0x9d,0x1b,0xcd,0xea,0x41,0xe6,0x21,0x5d,0x18,0x2,0xd8,0x7b,0x56,0x11,0x5b,0x4b,0x78,0x76,0xf7,0x1e,0x36,0x57,0xa4,0x24,0x3e,0x78,0xdd,0x71,0x15,0xce,0x67,0x57,0xe7,0x39,0xb,0x31,0xb3,0x9f,0x74,0x67,0xb6,0x3a,0xfa,0x79,0x5f,0xd4,0xf4,0x81,0x1f,0x34,0x2a,0x7c,0x3d,0xc8,0x16,0x82,0x72,0xf1,0xe,0x40,0xbc,0x3,0xd2,0xa1,0x1,0x71,0x3a,0x4f,0xda,0xbb,0xaf,0xc1,0xbf,0xdd,0x19,0x3f,0xbe,0x58,0x71,0x0,0xdc,0x1d,0x82,0x75,0x37,0x53,0x46,0x9e,0xe,0xf4,0xdd,0xcc,0xf9,0xf8,0x66,0xe9,0x8f,0xb3,0x66,0xcd,0x9a,0x0,0xe0,0xac,0x59,0xb3,0x66,0xcd,0xfa,0xd3,0xd1,0x17,0x12,0x5d,0x49,0x16,0x95,0x31,0x65,0xab,0xf2,0x3e,0xcd,0x10,0xe4,0x12,0x5d,0xe3,0x35,0x30,0x68,0xa9,0xb1,0xc9,0x0,0xbd,0x94,0x72,0xf,0xe4,0x50,0x83,0x79,0x61,0x42,0x84,0x98,0x90,0x96,0xc5,0x9a,0x9d,0x94,0x17,0xe4,0x65,0xc5,0xb2,0xb2,0xfc,0x2b,0xe7,0x55,0x9a,0xa9,0x66,0x9f,0xa5,0x26,0xda,0xd5,0x31,0x12,0x35,0xd5,0x52,0xd3,0xa,0x43,0x8,0x58,0xd7,0x3b,0x6b,0x70,0x63,0xe8,0x6,0xf1,0xa,0xb8,0xf9,0xd5,0x7a,0x4b,0x65,0xc,0x11,0x51,0x3c,0xf,0x35,0x3b,0xf,0xe,0x58,0x62,0xf9,0x52,0x75,0xf2,0xde,0xe,0x5c,0xaa,0x14,0xd5,0x82,0x30,0x20,0x1,0x21,0xb1,0xdf,0x85,0x33,0x53,0x24,0x89,0xe1,0x3d,0x37,0x9,0x6a,0x22,0x6f,0xb2,0x5b,0x1,0x90,0x94,0x9,0x2,0x49,0xe1,0x35,0xa3,0x6f,0x1,0xff,0x14,0xf8,0xcc,0xcb,0xe2,0xc0,0xda,0x26,0xac,0x1c,0x6e,0x8e,0x93,0x7c,0x9f,0xbe,0xb6,0xc9,0xf6,0x29,0x8,0xa8,0x32,0xd8,0x52,0x36,0x6,0x35,0x73,0xb6,0xfd,0x53,0x49,0xf5,0x76,0x39,0x5b,0xaa,0xa7,0x31,0x42,0xad,0x79,0xeb,0x92,0xbc,0x98,0xe2,0x20,0x4d,0x53,0x86,0xa6,0xca,0xa0,0x39,0x35,0x34,0xf,0xa9,0xc7,0xc,0x34,0x76,0x30,0x4d,0x1b,0x77,0xdd,0xf,0x4d,0xa2,0xee,0xe9,0x8e,0x2,0xae,0x4a,0xda,0xa6,0x26,0x40,0xeb,0xa6,0x28,0xd3,0x26,0x84,0x28,0xe7,0xc6,0x1b,0xe3,0x6b,0x43,0xd8,0xd3,0x29,0xc9,0x12,0x99,0x7b,0x80,0xb,0x35,0x27,0x83,0xe,0xd1,0x1a,0x51,0xbd,0x40,0x88,0x9a,0xf3,0xc1,0x24,0xf8,0x1c,0xed,0xbd,0x94,0xd,0xe,0x34,0x8d,0x69,0x99,0x3,0xce,0xac,0xe7,0x52,0x4d,0x3c,0x51,0x1,0x1e,0xdb,0xfa,0xb8,0x15,0x8d,0xd9,0x36,0x84,0x14,0xc9,0x58,0xd5,0x64,0x41,0x24,0xc6,0x84,0x90,0x62,0xf7,0xb3,0xcb,0x9,0x79,0x59,0x2c,0xa0,0x43,0xe7,0x83,0xc3,0xc6,0x41,0x93,0xd7,0x89,0x84,0x91,0xdc,0xd9,0x63,0xcc,0xfa,0x23,0x2c,0xa7,0x53,0x1f,0x87,0x15,0xa0,0x13,0xb,0x2,0x4e,0x4e,0x6f,0x28,0x97,0x33,0xb6,0xcb,0x99,0x43,0x2d,0xdc,0xfc,0x72,0x4,0x56,0xb0,0x54,0x38,0xda,0xf5,0xad,0x32,0xd4,0xcb,0xf9,0xc1,0xc6,0x7a,0x1b,0x73,0xf6,0xef,0x15,0x96,0xb6,0x4a,0x90,0xd5,0xf7,0xb0,0x9,0x6b,0x51,0x19,0x6c,0xca,0x88,0x67,0x69,0x34,0x27,0x1d,0xd7,0x5a,0x24,0xfc,0xa2,0x21,0xaf,0x1c,0xa,0x52,0x6b,0xb5,0xe3,0xa3,0xb,0x22,0x87,0xc7,0x49,0x42,0x4f,0xf4,0x33,0x35,0x80,0xeb,0x74,0xba,0xe7,0x45,0x9d,0x9b,0xc0,0x21,0x86,0xc5,0x90,0x2b,0xac,0x87,0xfa,0x9f,0xb7,0x5b,0x8f,0xee,0xef,0xf0,0x13,0x7f,0xf1,0x87,0xf0,0x9f,0xfe,0xb5,0x9f,0xc4,0xfb,0x5f,0x7b,0x55,0xe4,0xd8,0x27,0xb3,0x7a,0x48,0x69,0xb1,0xf1,0xd1,0x18,0x9d,0x16,0xe,0xd5,0xd9,0xd9,0x3a,0xa7,0xf1,0xe2,0x61,0x35,0xc6,0x7c,0x6b,0x5d,0x2a,0x1c,0x23,0xfb,0xc,0x37,0xc7,0xce,0x57,0x66,0x3e,0x8,0xbb,0x5,0x1f,0x1a,0x77,0x6e,0x90,0xf3,0x8e,0xa1,0x4b,0x26,0xb9,0xa5,0xeb,0x7b,0x1e,0x6f,0xdd,0x4a,0x4e,0x7e,0xac,0x8b,0x39,0xbb,0x88,0x91,0x1,0xd8,0xeb,0xf0,0xa0,0x3,0xfb,0x88,0x76,0x89,0xbb,0x78,0xa,0xea,0x16,0x6e,0x0,0x85,0x87,0xd8,0xf0,0xb8,0xc1,0xc0,0x31,0xd3,0xef,0xc0,0x2,0x71,0xb4,0xa5,0xd8,0x99,0x17,0xba,0x5,0x34,0xf,0xa2,0xce,0x9a,0x35,0x6b,0x96,0xaf,0x29,0x1,0x9e,0x35,0x6b,0xd6,0xac,0x17,0xa8,0x7c,0x2,0xa4,0xf,0x63,0x30,0xd6,0x93,0x98,0x9a,0xf3,0x8d,0x7a,0x37,0x7c,0xb7,0x1b,0x69,0xd,0xb4,0x90,0x9b,0x7d,0x95,0x6,0x45,0x65,0x3d,0xa0,0x4b,0x86,0x43,0x8c,0x9c,0x0,0x2c,0xc0,0x4a,0x16,0xe0,0x4e,0x1,0x1d,0xef,0x77,0x47,0xd4,0x4c,0x7e,0x9b,0x25,0xf1,0xd7,0xa7,0xc4,0xe6,0x65,0xc1,0x76,0x51,0x9,0x6d,0x30,0x6,0x5d,0x73,0x6c,0x44,0x95,0x92,0xa9,0x64,0x18,0x8,0xf6,0xb8,0x31,0xa,0x64,0x3f,0x5a,0x63,0xf,0xaa,0x2c,0xd,0x4d,0x97,0xe1,0x26,0x93,0x6f,0x1a,0x80,0x64,0x80,0xe2,0xf8,0x19,0x9a,0x68,0xcb,0x3e,0x83,0x6d,0x90,0xcc,0x45,0xf1,0xd,0x34,0x50,0x49,0x2,0x33,0xac,0xe1,0x15,0x89,0xaf,0x1e,0x3b,0x5,0xea,0xb8,0x9,0xd4,0xe6,0xa9,0x80,0x88,0xbd,0xb3,0xf2,0x7a,0xb2,0xd7,0xf,0xc7,0x58,0x40,0x47,0xe,0x20,0x29,0x1d,0x98,0x94,0xb8,0x8a,0xb4,0x2c,0x9c,0xa0,0x29,0xd3,0x39,0x89,0x4c,0x96,0x41,0xd6,0xd,0x51,0xf6,0x31,0x4b,0x93,0x5e,0xe5,0xf8,0xb3,0xcf,0x9f,0xa4,0x33,0x2b,0x28,0x16,0x23,0x92,0xf3,0xfb,0x53,0xe0,0xac,0x37,0x60,0x7c,0x1e,0x4a,0x2d,0x9c,0x42,0x9,0xf1,0xde,0x13,0x23,0xfe,0xe6,0x2,0x3b,0x14,0x4,0x54,0xf6,0x9e,0x85,0x90,0x4,0x4e,0xb0,0x44,0x88,0x92,0xc8,0x1b,0x2c,0x85,0xba,0x6f,0x7b,0x1c,0x80,0x4c,0x5,0x22,0x7c,0x2,0xb0,0xca,0x90,0xcd,0xf3,0x4c,0xe4,0xc9,0xde,0x47,0x50,0xe5,0x5c,0xc1,0x31,0x4b,0x6,0x92,0x90,0x3d,0x76,0x2d,0x21,0xf3,0x61,0x2b,0xfa,0x18,0x39,0xe9,0x1a,0x27,0x72,0x5e,0xe6,0x80,0x33,0xeb,0xf9,0x8c,0xf3,0x29,0xcb,0xd8,0x48,0x36,0xde,0x29,0x10,0xd0,0x5a,0x45,0x2b,0x65,0x60,0x6,0x87,0x10,0x39,0xd9,0x35,0x67,0xbb,0x9e,0x35,0xb5,0x95,0x17,0x14,0x18,0xcc,0x5b,0x84,0x49,0xa7,0xc,0xe1,0xa3,0xaa,0x62,0x53,0xc0,0xc,0xba,0xcd,0xc0,0xc6,0x5a,0x95,0x35,0xc8,0xe0,0xcc,0x7a,0xba,0x47,0xd9,0xce,0x36,0xa6,0x6,0x91,0xfc,0x2b,0x18,0x97,0x52,0xc6,0x7a,0x3a,0xb1,0x8c,0x94,0x1a,0x1a,0xfa,0x2,0xc6,0x11,0x20,0x96,0x72,0x46,0x2c,0x64,0xe3,0xe3,0xe5,0xfc,0x80,0xbc,0xae,0x48,0x31,0xf3,0xf4,0x16,0xe3,0x2d,0x34,0x4d,0x24,0xce,0x8d,0x99,0xd7,0xd4,0x3,0xa9,0xa8,0x15,0xb3,0x63,0x58,0xd7,0xbb,0x3e,0xf6,0x99,0x14,0x76,0xe5,0xf1,0x72,0xdb,0x6c,0xd1,0x25,0x19,0x2b,0x6e,0xb9,0xb9,0xbd,0x3a,0x77,0x99,0xfd,0x42,0xce,0x36,0xdf,0x3e,0x3c,0xbc,0x89,0xd3,0xe9,0x5e,0xe4,0xda,0xd7,0xf5,0x95,0xaf,0x7e,0x3,0x7f,0xeb,0x7f,0xfa,0xfb,0x43,0x8a,0x7b,0xab,0xc5,0xe6,0x6f,0x1e,0x9b,0x80,0x25,0x27,0xac,0x4b,0xc2,0xa3,0xfb,0x3b,0xbc,0xff,0xb5,0x57,0xf1,0xfe,0xd7,0xde,0x85,0xf7,0xbc,0xe7,0x5d,0x78,0xf9,0xa5,0x47,0x58,0xf2,0xed,0xf6,0x2e,0x84,0x80,0x8f,0x7f,0xf4,0x43,0xf8,0x8f,0xff,0xda,0x4f,0xe2,0xaf,0xff,0x37,0x3f,0x8d,0x3f,0xfa,0xda,0x9b,0x32,0xe6,0x25,0xc4,0xd4,0x50,0xb7,0x1e,0x4,0xd5,0x6a,0x1b,0x41,0x4e,0xea,0xc,0x74,0x9d,0x3b,0x75,0x91,0xa9,0x9f,0xa7,0xa5,0x2f,0x1c,0x86,0x30,0x2c,0x38,0xfa,0x39,0x9f,0x17,0x83,0x30,0x3e,0x1f,0xfa,0x7d,0x8b,0xfd,0xa0,0xc3,0x68,0xe1,0x70,0x9d,0xb0,0x3b,0xa6,0xe7,0x1e,0x59,0xb7,0x2,0x9e,0xf9,0x77,0xfd,0x7e,0xda,0x7,0x3d,0x39,0x80,0xee,0xfa,0x39,0x27,0x4b,0x1e,0x24,0xba,0xf4,0x74,0xb0,0xee,0x16,0x86,0x68,0x21,0x30,0xe1,0x9a,0xe5,0x77,0x23,0x7,0xe5,0xa,0x49,0xf4,0xa1,0x65,0x7,0x9f,0x61,0xa1,0x41,0xb3,0x66,0xcd,0x9a,0x35,0x1,0xc0,0x59,0xb3,0x66,0xcd,0x7a,0xb1,0x8a,0xdc,0x4d,0x7e,0x93,0x14,0xdf,0xbe,0x48,0x2c,0xc1,0x13,0xd2,0x4,0xa9,0x2c,0x4a,0x7d,0x80,0x96,0xf5,0xe4,0x64,0xaa,0xc9,0xfc,0xa5,0xba,0xf4,0x7,0x3d,0x58,0x23,0xf4,0x75,0x71,0x6d,0xa6,0x2c,0xa4,0x41,0xe4,0xbc,0xde,0x93,0x4d,0x7d,0xec,0x52,0xce,0x28,0xdb,0x85,0x3d,0x86,0x24,0xa9,0xd2,0x80,0x49,0x91,0x47,0xa9,0xef,0x9f,0xca,0x49,0xe1,0xe4,0x47,0x9e,0xa9,0xa7,0xdb,0x1,0x60,0x60,0x2e,0x6a,0x10,0x8,0x9b,0xc3,0x8b,0x6c,0x57,0x1a,0x92,0x98,0x12,0xda,0x65,0x13,0x19,0x17,0x19,0x8b,0x4d,0x3d,0x8a,0x7a,0xcf,0x11,0xc,0xe8,0xeb,0xde,0x5a,0xdc,0x78,0x6e,0xdb,0x5,0xa8,0xec,0x9b,0xc5,0x49,0xba,0x30,0xe0,0x4e,0xe5,0xc9,0x2a,0x9d,0x2e,0x1b,0x83,0x70,0x96,0xaa,0xac,0x20,0x63,0x80,0xb1,0x5e,0x72,0x5e,0xba,0x7,0x95,0x6c,0x97,0x9e,0x97,0x18,0x13,0x96,0xbc,0xe0,0x72,0x79,0xe0,0xd7,0x95,0x22,0xe7,0x4d,0x7d,0x9,0x2b,0x52,0x5e,0x3b,0x28,0x20,0xec,0xb,0x95,0xb8,0xa9,0x34,0xd7,0x98,0x93,0xc2,0xd4,0x48,0xc2,0x70,0xf1,0x49,0x93,0xca,0xbc,0x50,0x66,0x8a,0x32,0x38,0x92,0x48,0xe5,0x20,0x3e,0x8d,0x31,0x26,0x6,0xf1,0x88,0x50,0x4b,0x35,0xb0,0x4c,0x9b,0xdc,0xe6,0x42,0x4f,0x14,0x6c,0x8c,0x21,0x82,0x12,0x3,0xa5,0x2a,0x13,0x54,0xff,0xc7,0x24,0xde,0x87,0x6a,0xe,0xaf,0xfe,0x91,0x5d,0x3a,0xdd,0xc,0x60,0xa5,0x56,0xcd,0xcf,0xac,0x1,0x8,0x22,0xf9,0xb5,0x56,0x4e,0xbc,0x18,0xf5,0xb7,0x50,0x2d,0xd,0x55,0x59,0x42,0xd4,0xc1,0x2,0x47,0xa5,0xf1,0x46,0xee,0x8,0xb0,0x4,0x6c,0xdc,0xe4,0xf7,0xcc,0x9a,0xf5,0x1c,0xc7,0x79,0x6a,0xc0,0xc0,0x5c,0xa,0x83,0x8c,0x33,0xe7,0x64,0x7e,0x80,0x14,0x1b,0xb6,0xcb,0xc6,0x49,0xbf,0xa9,0x33,0xed,0x2c,0x8c,0x47,0xc2,0x76,0x6c,0x1c,0x47,0x40,0x5c,0x6e,0xb3,0x5b,0xbb,0x64,0x34,0xc8,0xc2,0xcd,0xc5,0x58,0xdd,0x21,0x45,0x1b,0xf,0xaa,0x80,0xf7,0xd5,0x92,0xcf,0xfb,0xf5,0xae,0xd7,0x37,0x7b,0xc1,0xb2,0x5f,0xe0,0xe5,0xe1,0x89,0x5c,0xcb,0xb7,0x91,0x92,0xed,0x72,0xc6,0xb2,0x32,0x68,0x98,0x64,0xa1,0x89,0xbc,0x81,0xdb,0x4d,0xc0,0x34,0xe1,0x72,0xd9,0xb0,0x9c,0xf8,0x7b,0x9a,0x31,0xa8,0x2b,0x50,0x83,0xf8,0x9c,0x5e,0x5c,0xb8,0x49,0xc3,0x7a,0x77,0xdf,0xd9,0x93,0xeb,0x6a,0xc4,0x34,0x1d,0xbb,0x5b,0x2d,0xe6,0x73,0x78,0xf8,0x9d,0xb2,0x10,0xa3,0xf3,0xec,0xe5,0xf2,0x0,0x6a,0x15,0xa7,0xbb,0x47,0x32,0x3f,0x1c,0x1f,0xe3,0xf3,0xe5,0x82,0x5f,0xf9,0xfc,0x1f,0x30,0x2b,0xbe,0x15,0xb4,0x22,0x1e,0xb9,0xb2,0xf8,0xd3,0x17,0xef,0xb2,0x5,0x2f,0x81,0x80,0x6d,0x3b,0xe3,0xd1,0xdd,0x9,0xdf,0xf9,0x2d,0xaf,0xe1,0xfb,0x3e,0xf9,0x61,0xfc,0xc0,0x67,0x3e,0x89,0x77,0xbd,0xf2,0xf2,0xcd,0xc3,0xf2,0xc1,0xf,0xbc,0xf,0xff,0xc9,0xbf,0xff,0x53,0xf8,0x2f,0xff,0xc6,0x4f,0xe3,0xf7,0xbf,0xf4,0x55,0x9e,0xdf,0x62,0x6,0x16,0x4e,0x70,0xe,0x21,0x99,0xe4,0x57,0xe7,0x15,0xb,0x7c,0xaa,0xa5,0x5b,0x3b,0xe8,0x3d,0x42,0xf3,0x8b,0x36,0xc1,0x31,0xf6,0x70,0xcd,0x42,0x53,0x90,0xcf,0xc7,0xd3,0x86,0x0,0x34,0xba,0xa,0xf9,0x0,0x1d,0x63,0x61,0x47,0x41,0xc1,0xb4,0xcb,0xc6,0xa5,0x1d,0x95,0x2e,0x18,0x4b,0xcf,0x31,0x8,0xc3,0xce,0x73,0xef,0xc8,0x77,0xcf,0x33,0xf6,0x8e,0x42,0x35,0x8e,0xb0,0xf2,0x80,0xa7,0x3,0x82,0xc3,0x7b,0xc3,0xed,0x9d,0x7c,0xe6,0x3b,0xbf,0xe0,0x12,0x96,0xdd,0x33,0xed,0x19,0x59,0x89,0xb3,0x66,0xcd,0x9a,0x0,0xe0,0xac,0x59,0xb3,0x66,0xcd,0xfa,0x53,0xd8,0x18,0x36,0x5d,0x89,0x97,0x9b,0xc9,0x46,0xe,0xe4,0x41,0x97,0xb0,0x12,0xb3,0xf7,0xaa,0x30,0xb,0x92,0x32,0x22,0x48,0x1a,0x40,0x61,0x77,0x50,0x23,0xf1,0x7f,0xb,0x8e,0xed,0xe5,0x3d,0x7f,0x60,0xc0,0x98,0x4a,0xcf,0xfe,0xe5,0xcf,0x7e,0xc,0xdf,0xf5,0xe1,0xef,0x30,0x40,0xe9,0xe1,0x7c,0xc1,0xcf,0xfc,0x6f,0xff,0x37,0x1e,0x3f,0x39,0x9b,0x9f,0x5c,0x95,0x40,0x90,0xcb,0xe5,0xc1,0xd8,0x55,0x69,0x59,0xb0,0x9d,0xb9,0xc1,0x6b,0xb5,0xa2,0x5,0xf1,0x88,0xab,0x5,0x24,0xdb,0xea,0xe5,0xa0,0x83,0x35,0x9c,0xc8,0x4f,0x6b,0x95,0xa0,0x11,0x93,0xa8,0x15,0xa4,0x65,0x31,0x9,0x70,0x71,0x2c,0x18,0x7e,0x2c,0x59,0x7a,0x71,0x37,0x2e,0xef,0xd2,0xa6,0x94,0x33,0x62,0xec,0x86,0xf9,0xa5,0x6c,0xec,0x79,0x28,0x2b,0xea,0x16,0x36,0xa2,0x87,0x5b,0x12,0x70,0x1,0xf6,0xd5,0x5a,0xef,0xee,0x45,0xde,0x5b,0x51,0xa9,0x99,0xef,0x56,0x8c,0x9,0x14,0x3c,0x3,0x72,0xb5,0xc6,0x4e,0xa5,0x65,0xab,0x18,0xd7,0x6f,0x62,0x42,0x1f,0x63,0x2,0xc4,0x22,0x4b,0xd9,0x81,0x31,0xc9,0x71,0x40,0x90,0xf0,0xa,0x72,0x8c,0x1b,0x96,0x5c,0xb3,0xe9,0x3f,0xbf,0x46,0x7d,0x1c,0xd5,0xd4,0x9d,0x5a,0xed,0xac,0x3a,0xf9,0x9b,0xc1,0x4a,0x61,0xda,0xc4,0x24,0xc7,0x8c,0x59,0x32,0xea,0x15,0x8,0xf5,0x74,0x12,0xb0,0x4c,0x81,0x37,0x65,0x84,0xc0,0xc9,0xab,0x15,0x8c,0x83,0x48,0x6,0x55,0xb6,0x58,0x5b,0x7,0x6,0xcc,0x3,0xb0,0x31,0xc8,0xa8,0x2c,0x23,0x12,0x79,0x99,0xea,0x99,0x7c,0xca,0xe8,0xc0,0xfa,0x6b,0x5d,0x6,0xac,0xff,0x6f,0x1d,0x2d,0x19,0x1a,0x4f,0x65,0xa4,0xda,0xff,0x9d,0xe1,0x7b,0x17,0x8a,0xd1,0x41,0xf7,0xd7,0x1f,0x69,0xad,0x21,0xe6,0x3b,0xd4,0xcb,0x9b,0x73,0xd0,0x99,0xf5,0x1c,0xc6,0xf9,0xe6,0x0,0x6c,0x98,0x3c,0x9e,0xd4,0x8b,0x34,0x74,0x5f,0xb5,0xb2,0x71,0xca,0xad,0x8e,0x9f,0x1a,0x8a,0xa1,0x63,0xb7,0x86,0x5f,0x34,0xf1,0x8,0x24,0x38,0xef,0xd6,0x63,0x68,0xb,0x40,0xf,0xd3,0xd0,0x45,0xf,0x38,0x3f,0xd6,0x18,0x22,0xb6,0xb6,0x21,0xc6,0x84,0xd3,0xdd,0x23,0xf9,0xee,0x88,0xf5,0xee,0xde,0xc0,0xb3,0x2c,0xe9,0xba,0x39,0x2f,0x28,0xdb,0x5,0x79,0x59,0xcc,0x6b,0xf4,0xe8,0x3b,0x5b,0xab,0x38,0xdd,0xdd,0x33,0xd0,0x44,0x24,0x1,0x20,0x55,0xac,0x24,0xd2,0xed,0x83,0x15,0x2,0x2f,0x60,0xc8,0x62,0x1,0x7f,0x7,0x1f,0x43,0xd,0xf6,0xa8,0x75,0x93,0x50,0x8a,0x66,0x9,0xed,0x39,0x2f,0x78,0x78,0xf2,0xa6,0xd9,0x3c,0xc4,0x94,0x8d,0xcd,0xbd,0x2c,0x27,0x63,0x5e,0xde,0xf4,0x1e,0xd4,0xc5,0x2f,0x44,0x4b,0x14,0xb6,0x5,0x87,0xa7,0xb0,0xb1,0x6c,0x2c,0x8e,0x1,0x54,0xc8,0xd8,0xe6,0x97,0xf3,0x13,0x9b,0xd8,0x63,0x62,0x9f,0x45,0xb5,0x7a,0x40,0xe0,0x39,0xe4,0xe1,0xb2,0xe1,0x37,0x7e,0xe7,0x8b,0xf8,0x8d,0xdf,0xfd,0x12,0xfe,0xce,0xff,0xf1,0x2b,0xf8,0x91,0xef,0xfb,0x38,0x7e,0xfc,0x47,0x3f,0x8b,0x57,0x5e,0x7e,0xe9,0xf0,0xbb,0xbe,0xe5,0xfd,0xef,0xc5,0x7f,0xf0,0x6f,0xfd,0x4,0xfe,0x8b,0xff,0xfa,0x6f,0xe1,0xe1,0xe1,0x81,0x17,0xe9,0xc4,0x96,0x63,0xbb,0x3c,0xf0,0x5c,0x5d,0xb,0x22,0x65,0xb4,0x56,0x50,0x4b,0xb1,0x5,0x9e,0x5a,0x36,0x99,0x6b,0x82,0x1b,0x9b,0xf9,0x3e,0x81,0xbd,0x15,0x7b,0x10,0x53,0x70,0xb,0x4b,0x96,0x3e,0x1f,0xa3,0x63,0x3,0xf6,0xf9,0x14,0xfb,0x10,0xe,0xf5,0x8,0x54,0xa9,0x6f,0x70,0x6c,0x3f,0xcb,0x4,0x9,0x63,0xf8,0xc7,0x8d,0xd4,0x8f,0xe,0x16,0xd3,0x35,0x48,0x77,0xf4,0xef,0x67,0x1,0xfa,0x9e,0x86,0xc9,0x19,0xa8,0xe7,0x1,0xba,0xa7,0x6d,0xe0,0xe,0x25,0xc,0xe1,0x20,0x85,0x1e,0x38,0xd6,0xb,0xef,0xf7,0xb4,0x2f,0x76,0x5d,0x7,0x93,0xcc,0x9a,0x35,0x6b,0x2,0x80,0xb3,0x66,0xcd,0x9a,0x35,0xeb,0x85,0x28,0xd,0xb0,0xf0,0x37,0x85,0xc1,0xc2,0x11,0xd4,0x29,0x3b,0x48,0x68,0x5f,0xeb,0x80,0x91,0x7a,0xe6,0x69,0x72,0xa4,0x30,0xd2,0x48,0x58,0x1b,0x44,0x40,0x82,0xa4,0x19,0x86,0x64,0x37,0xec,0xca,0x4a,0x48,0x22,0x6d,0x7d,0xe9,0xfe,0x84,0x7f,0xfd,0xc7,0x7f,0x14,0xaf,0xbd,0xe7,0xdd,0xf6,0xfd,0xad,0x35,0xfc,0xde,0x17,0xbe,0x8a,0x7f,0xf0,0x2b,0xff,0xaf,0x1,0x30,0xe9,0xc4,0xac,0xb2,0x65,0x61,0xc3,0x75,0x14,0xe1,0x5a,0x5,0x38,0x19,0x2c,0xa7,0xd2,0xb6,0x16,0xc5,0x1b,0x6f,0x35,0xcf,0xc1,0x5a,0x6b,0xf,0xb0,0x10,0x7f,0xbd,0x10,0x23,0x50,0x21,0xb2,0x67,0x6,0x9,0x95,0xe9,0xc2,0xc0,0xe0,0x22,0x2c,0xc6,0x7e,0x53,0xad,0x40,0x9f,0x9a,0xbb,0xfb,0xd4,0xd9,0x45,0x3c,0x9f,0xa8,0x36,0x6b,0xc2,0x94,0x55,0xc8,0xf7,0xea,0xc4,0x8d,0x75,0xa9,0x88,0xb1,0x1b,0x9a,0x73,0xd2,0x65,0xb1,0x46,0x47,0xef,0xdc,0x2d,0xd,0x52,0x99,0x6e,0x5b,0x1b,0x98,0x88,0x66,0x76,0x2e,0xcd,0x95,0x35,0x9b,0x2,0x4,0xd6,0x5a,0x51,0xca,0x5,0x8b,0x36,0xb0,0x20,0x4,0x44,0xc4,0xd8,0x9b,0x71,0x24,0xf5,0x4f,0x4c,0x96,0x6a,0x6c,0xac,0x8d,0x56,0x99,0xe1,0x21,0xbf,0x93,0xd6,0x2a,0xb3,0x18,0x5d,0xa2,0x30,0x33,0xf4,0x9a,0x4b,0xda,0x8c,0x38,0xdd,0x3f,0x62,0x26,0x63,0x4a,0xd6,0x98,0xc2,0xf9,0x0,0xb6,0x5a,0x4d,0x8a,0xad,0x5e,0x5c,0x6a,0xfa,0x1e,0x85,0xa5,0xd2,0xf5,0xb8,0x40,0x16,0xf9,0x62,0x14,0xbf,0xc8,0x72,0x39,0xb,0xe0,0x7c,0x31,0xa6,0xa4,0xca,0xca,0x58,0xee,0xb,0xb4,0xda,0xe4,0x58,0xf7,0xf4,0x4c,0x6b,0x28,0x95,0x45,0x2a,0x26,0xfe,0x64,0x41,0x20,0x9e,0x21,0xda,0xe,0x1b,0x74,0x65,0xff,0x59,0x20,0x82,0x35,0xed,0xd8,0x35,0x62,0xae,0xd7,0x52,0xa6,0xe4,0xf6,0x30,0x7,0x9c,0x59,0xcf,0x67,0x9c,0x4f,0x19,0xd0,0xa0,0xf,0xa9,0x5a,0x8b,0x2d,0xd0,0xa8,0x5c,0x3d,0x2,0xbc,0xa0,0xd2,0xaa,0x78,0x70,0x46,0x61,0xee,0x6e,0x58,0xef,0xee,0xc5,0xa,0x80,0x50,0xcb,0x5,0xeb,0xe9,0xce,0x3c,0x37,0x99,0xf1,0x95,0x6e,0x7c,0x77,0x67,0xaf,0x11,0x38,0xd8,0xe3,0xee,0xfe,0x25,0x63,0x6e,0x47,0x61,0x54,0xaf,0xe9,0x1e,0xe5,0x72,0x31,0xe6,0xb6,0xb2,0xe5,0x58,0xa,0x2c,0x9f,0x25,0xa9,0xde,0x16,0xbc,0x21,0x8c,0xea,0x23,0x40,0x23,0xa5,0x8c,0xfa,0xf0,0x84,0x3,0x9d,0x4,0xb8,0x83,0xc8,0x63,0x43,0xb8,0x1d,0xa0,0x40,0xc2,0x24,0x3e,0xdd,0x3d,0xc2,0x9b,0x6f,0x7c,0xad,0x83,0x21,0x84,0x1e,0xe6,0x24,0xa1,0x25,0xa,0x28,0x22,0x30,0xdb,0x70,0x5d,0xef,0x6c,0x81,0x47,0xfd,0x49,0x75,0xec,0x37,0x3b,0xd9,0x1b,0x0,0xa0,0xb2,0xa2,0x8b,0xb,0xc5,0xa,0x51,0xac,0x23,0x62,0x7c,0x2a,0x6e,0x14,0x63,0x42,0xd9,0xce,0x8,0xb2,0x1d,0x3a,0x67,0x5c,0x64,0x9b,0xca,0xb6,0xd9,0x62,0x97,0x1e,0x83,0xb2,0xb1,0x1c,0x3b,0x65,0x1e,0x97,0xbf,0xf1,0xe6,0x63,0xfc,0x2f,0xbf,0xf8,0xab,0xf8,0x3f,0x7f,0xed,0x37,0xf1,0xef,0xfc,0xe4,0x5f,0xc0,0xa7,0x3e,0xfe,0xfa,0x21,0xb7,0xf2,0xc3,0x1f,0xfa,0x36,0xfc,0xd5,0x9f,0xf8,0x61,0xfc,0xb7,0x3f,0xfd,0x73,0x48,0x69,0xc1,0xe5,0xfc,0xc0,0xcc,0xf8,0xbc,0xf2,0xe2,0x9b,0x8c,0xab,0x65,0x63,0x1b,0x8f,0xed,0xfc,0x0,0xc4,0x88,0x80,0x68,0x4c,0x69,0x5d,0x30,0xe4,0x44,0xe5,0x86,0x9c,0x33,0xcf,0xd1,0x66,0x81,0x51,0xe5,0xf7,0xda,0x0,0x61,0x2d,0xd6,0xb6,0x1b,0x9f,0x35,0xf8,0x49,0x41,0xb0,0x10,0x64,0x4d,0x8b,0xc,0x10,0xf4,0x92,0xdc,0x2e,0xf9,0xa5,0xeb,0xe4,0xdf,0x80,0x21,0xc5,0x97,0xf6,0x41,0x1c,0x1e,0x44,0x7b,0x16,0x5c,0xec,0x56,0xc0,0x6,0x85,0x63,0x30,0x6f,0xbf,0x86,0x74,0x85,0x8,0xde,0x62,0xab,0x86,0xab,0xdf,0x50,0xf0,0x93,0x8f,0xfb,0x3e,0xb5,0x1,0x81,0x7b,0x64,0x8,0xab,0x82,0xf3,0xc5,0x9d,0xe0,0xdf,0xac,0x59,0xb3,0xfc,0x3c,0x3e,0xf,0xc1,0xac,0x59,0xb3,0x66,0xbd,0x38,0xe5,0x43,0xb,0x14,0x8,0xf1,0x8b,0xe2,0xea,0xa9,0x63,0xa1,0xd,0x22,0xe3,0x31,0x46,0x98,0x0,0x45,0xfa,0x67,0x10,0x40,0x86,0x68,0x69,0x8b,0xec,0xab,0x97,0x85,0x51,0x21,0xc,0x89,0x98,0xf0,0xb9,0x4f,0x7f,0x64,0x0,0xff,0x18,0x6c,0x8a,0xf8,0x57,0x7e,0xf8,0xfb,0xb0,0x2c,0x6b,0xf7,0x98,0xd2,0x66,0x54,0x80,0x3e,0x65,0x83,0x2c,0xcb,0x6a,0x4c,0xb,0x5,0x24,0x93,0xa5,0xfe,0x66,0x87,0xdd,0x84,0xc1,0x4b,0x28,0xa,0x9b,0xad,0xa7,0xd5,0xf6,0xed,0xe6,0xa6,0x28,0x3b,0xaf,0xa1,0x68,0x6c,0x15,0x4e,0xc8,0x5c,0xa5,0x69,0x6e,0xd0,0xf0,0x11,0xf5,0x7a,0xe2,0x6d,0xe5,0x86,0x38,0xba,0x84,0x5e,0xf5,0x32,0xe4,0x6d,0xc,0x2e,0xc5,0xb6,0x19,0xe8,0xa9,0xbe,0x7d,0x1a,0x32,0x91,0xa4,0x69,0xb7,0x24,0x5d,0x4d,0x40,0x34,0xc6,0x4e,0xb0,0x34,0xdb,0x28,0x1e,0x80,0xda,0xb4,0xeb,0xbf,0x35,0x3d,0x32,0x8a,0xcc,0x3a,0x44,0xf6,0xd0,0x33,0xcf,0x40,0x95,0x16,0x4b,0x22,0x30,0x33,0x18,0x93,0x25,0x3a,0x6,0xc0,0x92,0x95,0xf5,0x37,0x90,0x52,0x42,0x92,0x40,0xb,0x35,0xf5,0xd7,0x94,0x5f,0x10,0xa1,0x6c,0x9b,0x79,0x3c,0xc5,0x98,0x2c,0xc8,0x45,0x7d,0x99,0x14,0x1c,0x4d,0x29,0x23,0xa,0x3,0x50,0xcf,0x8d,0x35,0xd4,0x2,0x7c,0x46,0xd9,0xd7,0x9c,0xb3,0x31,0x1e,0x21,0x1,0x30,0x9a,0x18,0xcc,0x0,0x2a,0x37,0x8c,0x4d,0x82,0x5c,0xba,0x2f,0x54,0x30,0x6,0xa7,0x82,0x15,0xba,0x5d,0x9d,0x65,0x42,0x2,0x5e,0x86,0x2b,0xf6,0x9f,0x2,0x8a,0xa3,0xf1,0xbb,0xb7,0x73,0x77,0x81,0x21,0xda,0x73,0x79,0x49,0x95,0x37,0x5b,0xf,0x53,0x1c,0x3c,0xeb,0xf9,0xd4,0xde,0x3f,0x4e,0x6d,0x7,0x34,0x34,0xa9,0x16,0xf6,0xe9,0x6c,0xd4,0xf8,0xb5,0xf2,0x7b,0xe5,0xa0,0x7,0x1e,0x4f,0x2f,0xf,0x8f,0xd,0x28,0xd0,0x71,0x99,0xa8,0x5b,0x21,0xdc,0x2,0xd,0x38,0xf4,0x21,0x9a,0xd,0x84,0x82,0x77,0x1d,0xb0,0x80,0x25,0x1,0xaf,0xa7,0x3b,0xe4,0x65,0xc1,0xfd,0xa3,0x57,0x24,0x50,0x81,0x3f,0xb9,0xb3,0xc0,0x17,0x93,0x8f,0x72,0x38,0xc6,0xd,0x58,0xc4,0x25,0xcd,0x2e,0xcb,0xca,0xe0,0x58,0x14,0xb,0xa,0xd,0xf7,0xb8,0x81,0x71,0x44,0x49,0xaa,0xd,0x1a,0x72,0xe1,0xac,0x6,0x94,0xa5,0xc,0xfb,0x3f,0x59,0xca,0x3d,0x33,0x3,0x85,0xb9,0xb8,0x9e,0xb0,0x29,0x30,0x26,0xe9,0xef,0x37,0x71,0x21,0xa9,0x2c,0x8b,0x2b,0x7c,0x6c,0x63,0xf,0x37,0xa2,0x9e,0xee,0x7e,0x63,0x12,0xc7,0x76,0x79,0x40,0xad,0xd5,0x12,0x97,0x59,0xa6,0xcd,0xfb,0x2e,0x94,0x3a,0x9c,0xee,0x1e,0x59,0x3a,0xbc,0xee,0x93,0x5a,0x2c,0xf8,0xfb,0x81,0xaf,0xbd,0x79,0xc6,0x7f,0xf5,0xdf,0xff,0x2c,0x7e,0xe1,0x17,0xff,0xb1,0xb,0x4,0x1b,0xeb,0x47,0x3f,0xf7,0x7d,0xf8,0xcc,0xc7,0x5f,0xe7,0xed,0x3d,0xdd,0xf1,0x71,0xa,0x7d,0x3f,0xaa,0xb0,0xe1,0xcb,0x76,0x39,0x64,0x3d,0x6e,0x97,0x7,0x9b,0xdb,0x0,0x8,0xa0,0x1a,0xbb,0xf7,0xab,0x0,0x6e,0xd1,0x79,0xcc,0x6,0x1,0xfe,0x54,0xc2,0xee,0x53,0x80,0x2d,0xa1,0xde,0x9d,0x7b,0xff,0x7b,0xdc,0x7,0x73,0x4,0x87,0xb1,0x59,0xc8,0x88,0x30,0xe0,0xc8,0xdf,0x0,0xf9,0xb5,0xd1,0x5b,0xbf,0x99,0x70,0x88,0xc5,0xbd,0xbd,0x17,0x1e,0x45,0x11,0xf,0xfa,0x62,0xff,0x42,0x3a,0x40,0xb,0x3d,0xb8,0xef,0x23,0x80,0xf7,0x22,0x67,0x87,0xd,0xee,0x8e,0x51,0xf,0x41,0x99,0xde,0x7f,0xb3,0x66,0xcd,0x9a,0x0,0xe0,0xac,0x59,0xb3,0x66,0xbd,0xb8,0x8d,0xa1,0x81,0x76,0xc1,0x56,0x80,0x7d,0x30,0x8,0x49,0xea,0xaf,0x36,0x7,0x44,0xc,0x96,0xb0,0x9,0x7c,0xb1,0x77,0x66,0x49,0xed,0x55,0xf,0xbc,0x98,0x24,0x25,0x52,0x58,0x59,0x29,0x33,0x70,0xc8,0xe0,0xe,0xdf,0xbc,0x2f,0x4b,0xc6,0x8f,0x7e,0xee,0x33,0x87,0xdb,0xf5,0xc1,0xf,0xbc,0x86,0x4f,0x7d,0xf8,0x83,0x22,0x91,0xcd,0x66,0x24,0x9e,0x4,0x94,0xb2,0x30,0x8d,0x9d,0x24,0xb4,0x51,0x43,0xd9,0x36,0xf6,0xc,0x74,0xe9,0x82,0xea,0x45,0xa7,0xc1,0x14,0xea,0xad,0x7,0x6a,0x58,0x4f,0x77,0xd6,0x38,0x68,0x18,0x87,0x7a,0x31,0x69,0xda,0x6d,0x16,0xe9,0x5a,0x4c,0x22,0x1f,0x23,0x66,0x15,0xb6,0x46,0xce,0xc8,0x5c,0xd3,0x5e,0xb3,0x1d,0x3,0x95,0x3a,0xc7,0x98,0xb0,0x5d,0xce,0x5d,0x1a,0x16,0x13,0xb2,0x18,0xc6,0xef,0xc1,0x2f,0xd,0x5a,0x31,0x16,0x8e,0x0,0x55,0x6,0xe4,0xa5,0x1e,0xc4,0x12,0x53,0x36,0x66,0x43,0x4a,0xd9,0x64,0x63,0x79,0x59,0x6d,0xbf,0x95,0xcd,0xa8,0x4c,0x11,0x95,0x6c,0x9b,0x41,0x3d,0x7a,0xf0,0x8b,0x86,0x88,0xe8,0xf3,0xea,0xb,0x69,0x69,0xa1,0x29,0x5b,0x62,0xb3,0xfd,0x11,0x6,0x91,0x26,0xfc,0xea,0xf9,0x60,0xe0,0xa0,0x88,0xf4,0xb,0x96,0xf8,0xb,0x4,0x93,0x2b,0x47,0x61,0xee,0xa9,0xef,0x95,0x82,0xb6,0x24,0x80,0xa8,0x36,0xc2,0xdb,0x76,0xe1,0x40,0x91,0x22,0xde,0x64,0xe2,0x99,0xc8,0xbf,0x2b,0xd8,0xfe,0x6a,0x73,0x9f,0x52,0xe6,0x86,0x5f,0xfd,0x28,0x85,0x81,0xaa,0xf2,0x3c,0xfd,0x6d,0x24,0x39,0x57,0x1e,0xcc,0xb0,0x46,0x52,0xb6,0x43,0x1,0x58,0x12,0xbf,0x33,0x3,0xf4,0x40,0xc3,0x75,0xa3,0xd,0xa4,0x35,0x93,0xbb,0xbe,0x2b,0x4c,0x0,0x70,0xd6,0x73,0x2a,0xf,0x90,0x0,0x5d,0xb2,0xab,0xac,0x3d,0xbe,0x5e,0xba,0x7,0xdd,0x72,0xba,0x13,0xe6,0x5f,0xc1,0xe5,0x7c,0x1e,0x16,0x23,0x3c,0xeb,0x5a,0x3d,0x53,0x63,0x7c,0x5a,0xba,0x6d,0xb2,0xc5,0x23,0x65,0xf6,0x19,0xc8,0xef,0xfc,0x44,0x59,0xfa,0x5b,0x5d,0x58,0xc8,0xe2,0x16,0x9d,0x38,0xf8,0x49,0xbd,0x68,0x1,0x30,0xf0,0xf6,0x14,0xcf,0x4d,0xbe,0xd6,0xa3,0xd9,0x48,0x28,0x58,0x54,0xc5,0xeb,0xf0,0xe6,0xe5,0x28,0x2c,0xb0,0xed,0x72,0x66,0xb0,0x2c,0x44,0xd4,0x52,0x6d,0x7c,0x26,0x39,0x2e,0x3c,0x9e,0xac,0x1c,0x9e,0xe2,0xfc,0x11,0x1,0xa0,0x88,0x9d,0x83,0x26,0xdd,0x2e,0xa7,0x93,0x31,0xcc,0x6f,0xd5,0x76,0x7e,0x2,0xf5,0x2d,0x54,0x16,0x62,0x75,0x16,0x11,0x7e,0x41,0x6b,0x4,0x3b,0x65,0x9f,0x64,0xf1,0xc5,0xb6,0x4f,0x3c,0x5b,0x95,0x69,0xcd,0xb2,0xe0,0x7,0xbc,0xf9,0xf5,0xaf,0x9a,0xa4,0xf6,0xfc,0xf0,0xc4,0x16,0x56,0xf8,0x3d,0x8d,0x59,0xf4,0x48,0xf8,0x1f,0xfe,0xde,0x3f,0xc4,0x2f,0xfd,0xa3,0x7f,0x7a,0xc8,0x94,0x5c,0x96,0x8c,0xbf,0xf2,0xaf,0xfe,0x30,0xd6,0x25,0x77,0x69,0x6f,0x88,0x2,0xe4,0x6e,0xc3,0x2,0x1a,0x2f,0xf0,0x88,0x9d,0x85,0x8c,0x8f,0x7c,0x6e,0x78,0xb1,0x2c,0x2f,0x8b,0x85,0x42,0x69,0x8a,0xae,0x2d,0x70,0x91,0xcb,0xd9,0xd5,0x39,0x4f,0x17,0x93,0x9c,0x5c,0x38,0x88,0x4d,0x84,0x97,0xfb,0xf2,0xb1,0x89,0xee,0xf7,0x4f,0x9d,0xc9,0xe9,0x5e,0x33,0x4,0xb7,0x5f,0x5,0xf5,0xde,0xf0,0xda,0xdb,0xfd,0x5e,0x6e,0xa3,0xbb,0xf4,0xc,0x0,0x1e,0xdd,0xf8,0x72,0xf,0xe4,0xdd,0xfa,0xec,0x9e,0x46,0xac,0xd3,0xcf,0xfe,0x99,0xa3,0xad,0x91,0x75,0xad,0xae,0x36,0x76,0x4f,0xce,0x79,0x6a,0xd6,0xac,0x59,0x57,0xf3,0xe9,0x3c,0x4,0xb3,0x66,0xcd,0x9a,0xf5,0xe2,0x35,0x87,0xc3,0xff,0xa8,0x1b,0x60,0xf3,0x1d,0x77,0xe8,0x7e,0x4f,0xd4,0xe5,0x8f,0x41,0xc0,0x2a,0x4e,0xa3,0xe5,0x46,0x4d,0x65,0x45,0x51,0x1a,0x1,0xf5,0x4f,0xd2,0x15,0x6a,0xf6,0x70,0xca,0xc8,0x79,0xc1,0x27,0x5e,0xff,0x20,0xbe,0xf5,0x3,0xef,0xbb,0xd1,0x34,0x46,0xfc,0xd8,0xf,0x7e,0xa,0xff,0xf4,0x9f,0xff,0x21,0xaa,0x48,0x4e,0x8d,0xb1,0x96,0xc4,0x67,0xce,0x85,0x56,0xd4,0x5a,0xb1,0xac,0x2b,0xb6,0xcb,0xd9,0x18,0x65,0xfa,0x9a,0x1e,0xa2,0x11,0x11,0xd7,0xd5,0x3c,0xe8,0xa8,0x36,0x10,0x2,0x8a,0x24,0x60,0x2a,0x9b,0x31,0xc4,0xc4,0x3e,0x7a,0x79,0x11,0xc9,0x6b,0x35,0x10,0x29,0x84,0xc8,0xb2,0xa4,0xa0,0x8c,0xb2,0xe8,0x52,0x86,0x21,0x46,0xeb,0x55,0x7c,0xa1,0xb2,0x3b,0x6e,0x2,0x60,0xa,0x20,0xc7,0x7d,0x43,0x13,0xc0,0x35,0x21,0xae,0xa7,0x9e,0x22,0x5c,0xd8,0x2c,0xbe,0x8,0x70,0xa6,0x69,0x90,0xda,0xd8,0xf5,0xc6,0xa6,0x75,0x86,0x4,0x7a,0xa8,0x8a,0x7a,0x2b,0x41,0xe4,0x76,0xa,0x8a,0x2d,0xcb,0x2a,0x3e,0x4d,0x8b,0xa5,0xe5,0x2a,0xb,0x44,0xd9,0x99,0xad,0x55,0x44,0xd,0xc5,0xd0,0xed,0x56,0xa0,0xb5,0x55,0xdb,0x76,0xf5,0x1,0xd3,0x65,0x41,0x65,0x6e,0x64,0xd,0x3a,0x11,0xb6,0x5f,0x92,0x34,0x61,0x35,0xa8,0xd7,0xf7,0x46,0x93,0x0,0x13,0x96,0xd3,0x9d,0x35,0x91,0xa5,0x14,0x61,0x2a,0x76,0xd6,0x25,0x6f,0x3b,0x1f,0x1f,0x9c,0x1f,0x10,0x42,0x4f,0x3d,0xae,0x85,0x65,0x80,0x81,0x68,0x8,0x78,0xd1,0xa6,0x57,0xd9,0x90,0x2c,0xf3,0xee,0xbf,0x75,0x6,0x81,0x9b,0x93,0x10,0x8a,0x28,0x4a,0xce,0x57,0xf3,0x9,0xc2,0xd6,0x78,0xc6,0xab,0x6,0x92,0x1c,0xbb,0x45,0xe5,0x65,0xca,0x28,0x69,0xe4,0xa4,0x67,0xea,0x3b,0x38,0x6b,0xd6,0x73,0x19,0xe4,0x7b,0xc2,0x2a,0xf5,0x4e,0x1f,0xd4,0x2a,0xca,0x56,0xed,0xf7,0x59,0x5b,0x5,0x90,0x11,0xe5,0xfa,0xd,0xc2,0xc,0xae,0xb5,0x8a,0x6f,0x5e,0xf,0x97,0xe0,0x34,0xe0,0x86,0x28,0x8c,0xee,0x5b,0x88,0x5a,0x48,0x9,0xeb,0xe9,0x84,0x87,0x27,0x8f,0x91,0x52,0x66,0x89,0xaa,0x2,0x33,0xce,0xd3,0xd,0x80,0x2d,0xc6,0x28,0x60,0xa9,0xd2,0xdd,0xb0,0x2c,0x48,0x32,0x1e,0xe9,0x75,0x6d,0x36,0xe,0x37,0xbe,0xb7,0x88,0xe7,0x5d,0x4f,0x92,0x55,0xdf,0xd7,0x3a,0x78,0xcc,0x1d,0xe1,0x39,0xa5,0x5c,0x0,0x2,0x2e,0xf,0x4f,0xc4,0x5f,0x94,0x1,0x50,0x4d,0x43,0x57,0xf0,0xaf,0x94,0xb,0x72,0x5e,0xed,0x3b,0xf8,0xf3,0x37,0x5b,0x54,0x60,0x59,0xf0,0x9,0xe5,0x72,0x91,0x5,0x32,0xdc,0x3e,0x4e,0xe2,0xcb,0x8,0x22,0x59,0x5c,0x62,0x0,0xaf,0x50,0xf,0xc3,0x3a,0xdc,0xde,0xc6,0x63,0xdd,0x56,0x8a,0x1,0xa7,0x65,0x3b,0xdb,0x5c,0x51,0xb6,0xcd,0x18,0x8c,0xeb,0xe9,0x1e,0xdb,0xe5,0x1,0x8f,0xdf,0xfc,0x6,0x87,0x36,0x89,0xec,0xb6,0x46,0xde,0xe6,0x4b,0xad,0x1c,0xc8,0x5,0x9e,0x3b,0xff,0xe6,0xdf,0xfd,0x7,0xf8,0xc0,0x7b,0xdf,0x85,0x8f,0xbc,0xfe,0x1d,0x57,0xdf,0xfb,0x9d,0xdf,0xfe,0x41,0x7c,0xff,0x27,0x5f,0xc7,0x2f,0xfd,0xea,0x6f,0x8a,0x37,0xb0,0x3b,0x9f,0xce,0x23,0x56,0x95,0x5,0x6a,0x11,0x41,0xa1,0x32,0x30,0xea,0xc0,0x4d,0x1d,0xaf,0x95,0xcd,0xad,0xb,0x36,0xfd,0xd6,0x84,0x3d,0x6b,0x3d,0x38,0x65,0xa9,0xba,0x6d,0x1c,0x67,0xbd,0x7f,0x9d,0x4a,0x62,0xf5,0xfc,0x73,0x6c,0x30,0x6,0xc6,0xdf,0x21,0x72,0x47,0x6f,0x1,0xee,0x5d,0x1,0x82,0x47,0xc6,0x7b,0xe1,0x2d,0xfe,0x7f,0xfd,0x95,0xde,0x4f,0xb6,0x93,0xc6,0xe9,0x2d,0x37,0xc1,0xe7,0x82,0xe8,0x3,0x64,0xec,0xd1,0x6b,0x55,0x31,0xdd,0xb2,0x3,0xd4,0x70,0x96,0xa9,0x0,0x9e,0x35,0x6b,0x96,0xef,0xc9,0xe6,0x21,0x98,0x35,0x6b,0xd6,0xac,0x17,0x68,0x50,0x17,0x56,0x1c,0x4,0x34,0x31,0xd0,0x47,0x1a,0x3a,0x3,0x52,0x0,0x5b,0x6d,0xaf,0xb5,0x1a,0x33,0xb0,0x5c,0xce,0x26,0xff,0xf5,0xc,0xac,0xa1,0x9,0x70,0xcc,0xc2,0x94,0x7b,0xb3,0xf8,0xe7,0x3f,0xf7,0x69,0xe4,0x7c,0x9b,0x11,0xf1,0xd1,0xf,0x7d,0x2b,0xbe,0xed,0x7d,0xaf,0x1a,0x73,0x22,0xa5,0xd4,0xc1,0xac,0xd3,0x9d,0x31,0xbc,0x6,0xa9,0xe8,0xb2,0x8a,0x71,0xbc,0x32,0xff,0x92,0x49,0xb3,0x94,0x3d,0xa8,0xe1,0xd,0xcb,0x7a,0x77,0xd5,0xac,0xa8,0x2c,0x6e,0x3d,0xdd,0x77,0x20,0xa,0x3d,0xb4,0x44,0x93,0x32,0x73,0x5e,0xac,0x79,0x58,0xd6,0x13,0x52,0x5a,0x90,0x62,0x16,0x26,0xdc,0x22,0x9,0xbd,0xd1,0x85,0x64,0x34,0x63,0xb0,0x69,0x83,0xc3,0x40,0xd4,0x62,0xe7,0xa0,0xd5,0xea,0x9e,0xb,0x16,0xe4,0xa1,0x80,0x96,0x9a,0xcd,0x6b,0x3a,0xb1,0x4a,0x6f,0x53,0xe6,0xe6,0x98,0x8f,0x6f,0x1e,0x1a,0x2a,0x66,0xc6,0xf5,0x26,0x2b,0x2f,0x27,0x84,0x18,0xb1,0xac,0x27,0x63,0x3b,0x6a,0x88,0x8,0x9f,0xc7,0x66,0x32,0x2b,0x96,0x64,0x25,0x3,0x2b,0x63,0x4c,0x58,0x96,0xd5,0xd8,0x9c,0x44,0x8d,0x9b,0xf2,0x46,0xf2,0x38,0x33,0x13,0x63,0x8a,0xc2,0x98,0xe4,0x70,0x10,0x65,0x5c,0xda,0xfe,0xb4,0x86,0xb2,0x9d,0xaf,0x64,0x5b,0x39,0x2f,0x38,0x9d,0xee,0x8c,0x49,0xaa,0xcc,0x22,0x7d,0x9d,0x36,0x8c,0x45,0x41,0x3f,0x1,0x2e,0x3b,0xbb,0xa6,0x33,0x6c,0x34,0x29,0x94,0x8f,0xe3,0x22,0xc7,0xad,0xfb,0x43,0x75,0x39,0x31,0x8c,0xc5,0xaa,0xa6,0xf1,0x5d,0xb2,0x46,0x66,0xdc,0xf,0xa8,0x7,0x66,0x7,0x25,0xf7,0xcc,0x18,0x92,0xf7,0xdb,0xf9,0xb2,0x4e,0x8c,0xc1,0xc0,0xa7,0xf9,0x78,0xcd,0x9a,0xf5,0x27,0x59,0x41,0xc6,0x11,0xad,0xd6,0xa8,0xa7,0x5c,0x3b,0xb,0x4,0x95,0xeb,0x2b,0x0,0x10,0x85,0x19,0x98,0x73,0x16,0x7f,0xd7,0xd6,0xbd,0x32,0x3,0x7b,0x76,0x9a,0x75,0xc1,0x4e,0x66,0xdc,0x1,0xaa,0x66,0x60,0x54,0x2d,0x5,0xb5,0x16,0x94,0xed,0x2c,0xb,0x1c,0xc1,0x16,0x6d,0x74,0xe1,0x48,0xfd,0xf7,0x74,0x7c,0xce,0x12,0xa2,0xc4,0x1,0x22,0x19,0x59,0xc6,0xae,0xa8,0xb,0x32,0x74,0x43,0x97,0x49,0xcd,0x30,0x91,0xb2,0x5d,0xd0,0x6a,0xeb,0x6c,0xb7,0x5a,0xcc,0xc6,0xe0,0x8,0xfd,0x9,0x88,0x78,0xfc,0xc6,0xd7,0x10,0xc5,0x12,0xa1,0xd5,0x82,0x87,0xc7,0x6f,0x98,0x6f,0x62,0xce,0xb,0xd2,0xb2,0x20,0x20,0x60,0xdb,0xce,0x6e,0x41,0x28,0x20,0x65,0xb6,0xae,0x20,0xe2,0x71,0xb1,0xaa,0x1d,0x82,0x0,0xa1,0xb7,0xc3,0x52,0x78,0xe,0xa8,0xb5,0xe0,0x22,0x20,0x29,0xd,0x6c,0xc4,0x5b,0x27,0x17,0x12,0x5c,0xc2,0x52,0xde,0x37,0xbe,0xf6,0x65,0xb4,0x5a,0x71,0x39,0x3f,0x58,0x30,0xd5,0x76,0x39,0x4b,0xe8,0x14,0x3,0x75,0x97,0xf3,0x13,0xe,0x5,0xd9,0x2e,0x78,0xf2,0xe6,0x37,0x70,0x7e,0x78,0x2,0xa2,0x86,0x52,0x2e,0xb8,0x9c,0x9f,0x80,0x88,0xb0,0x5d,0xce,0x78,0xf3,0xf1,0x63,0xfc,0xcd,0x9f,0xfd,0x5,0x9c,0x2f,0xdb,0xd5,0xd7,0xa6,0x94,0xf0,0xe7,0xff,0xdc,0x67,0x10,0x25,0xe4,0xab,0x9,0x78,0xb8,0xac,0x77,0xd8,0x2e,0x17,0x6,0xb4,0x9c,0xd4,0xd8,0x8e,0xad,0x82,0x82,0xca,0x98,0x54,0xb9,0x76,0x76,0xcc,0x7c,0x8f,0xfb,0xb9,0xf0,0x26,0x5,0x8e,0xfb,0x67,0x76,0xb6,0x20,0x3c,0x13,0xdb,0x8,0x75,0x6e,0x2c,0x36,0x4f,0xe3,0x1d,0x58,0x47,0x47,0x48,0xd8,0xf5,0xff,0x87,0x84,0xe0,0xfd,0x67,0x1c,0x82,0x7d,0x74,0x0,0xd3,0x39,0x80,0xef,0x90,0xdd,0xd7,0xdd,0xf9,0xfc,0x53,0xfb,0x57,0xfa,0x4f,0xf,0x7b,0x70,0x6f,0xc0,0x98,0x77,0x2c,0xc0,0xbd,0xaa,0x38,0xdc,0x58,0x28,0x98,0x24,0xc0,0x59,0xb3,0x66,0x4d,0x0,0x70,0xd6,0xac,0x59,0xb3,0x5e,0xcc,0x22,0xa7,0x1b,0xf1,0x37,0xea,0xa3,0xa,0x26,0x58,0xa0,0x1e,0x83,0x4a,0x8b,0xb1,0x2f,0xa2,0xb0,0x42,0x2c,0x89,0x57,0x3d,0x88,0xa4,0x39,0x53,0xef,0xa2,0x10,0x18,0x70,0x53,0x1f,0x9f,0xd7,0x5e,0x3e,0xe1,0x60,0xe3,0x39,0xdc,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x13,0xdf,0xf5,0xfa,0x53,0xb7,0x6d,0x5d,0x17,0xfc,0xd8,0xf7,0x7f,0x5c,0xe4,0xc4,0xab,0x81,0x61,0x1a,0x22,0xc1,0x1e,0x49,0xd1,0xa4,0x47,0xa,0xa,0xe9,0xdf,0xca,0xda,0x48,0x39,0x9b,0x4,0xac,0x49,0xe0,0x7,0x87,0x84,0x2c,0x58,0x4f,0x77,0xec,0xb9,0x24,0xe0,0xd1,0x7a,0x77,0x27,0x52,0x2b,0x52,0xfb,0x43,0x93,0xf7,0xa6,0x94,0xd,0x78,0xac,0xb2,0xd,0xfa,0x3e,0x92,0x54,0x4b,0x9f,0x52,0x6b,0x72,0x63,0x90,0x49,0x6d,0x35,0xb9,0x92,0xf7,0x61,0x31,0x3,0xfe,0x94,0x59,0x32,0xc,0x1,0xc2,0x54,0x9e,0xcb,0xdf,0x79,0x62,0x90,0x71,0x59,0x7a,0x53,0xee,0x3c,0xf9,0xf4,0x78,0x93,0x7c,0x5f,0x14,0x76,0x9b,0xb2,0x63,0x94,0x71,0xc7,0xde,0x89,0xcb,0xd0,0x2c,0xb0,0x1c,0x2f,0x1a,0xc0,0xa6,0x72,0x5a,0x5,0xb2,0xba,0xf7,0x23,0x1f,0xeb,0xb4,0xac,0x6,0x70,0x46,0x39,0xee,0x49,0xc,0xdc,0xab,0x98,0xd5,0x2b,0x20,0xd0,0x6a,0x33,0xd3,0x79,0x48,0x33,0x98,0x4,0x30,0x50,0x4f,0x42,0x5,0x84,0xd5,0xff,0xaa,0x8a,0xa7,0xa0,0x4a,0xa1,0x9,0x6c,0xfc,0xcf,0xde,0x8b,0x7c,0x3c,0xd6,0xd3,0x9d,0xfc,0xf6,0xb2,0x0,0x90,0x6d,0x68,0xe,0xb5,0xb8,0xc9,0x4f,0x20,0xaa,0x62,0xca,0x3f,0x7a,0x3,0x9a,0xa4,0x4c,0x8e,0xbb,0x1e,0x2b,0x95,0xfe,0x1a,0xd3,0x4f,0x9e,0x53,0x53,0x79,0x96,0x3d,0x8e,0x61,0x1f,0xbd,0x69,0x72,0x66,0xff,0xa,0x7f,0x8b,0xce,0xaa,0xdd,0x0,0x48,0x66,0xcd,0x7a,0x47,0xc6,0x7a,0xea,0x60,0x40,0x4c,0xfd,0xda,0x55,0x3f,0x56,0x9b,0x11,0x48,0x7c,0xed,0x0,0x17,0xa2,0x54,0x90,0xf3,0xea,0x16,0x50,0x64,0x31,0xc8,0xc2,0x25,0x16,0x63,0x73,0x5d,0x83,0x5a,0xc5,0xc6,0x9c,0x2c,0xa0,0x19,0x4b,0x68,0x79,0x2c,0x3f,0xdd,0x3d,0x12,0x86,0x6e,0x70,0xb,0x5,0x6e,0x6c,0x13,0x49,0x7f,0xd9,0x3a,0x8,0xd6,0xed,0x19,0x22,0xe2,0x21,0xa3,0x4e,0x6d,0x15,0x9a,0x4,0x22,0x15,0x94,0x72,0x61,0xaf,0xb9,0x9c,0x65,0xc1,0xa5,0xdc,0x9c,0x15,0x5b,0x2b,0xc,0x64,0x9d,0xcf,0xd8,0x2e,0x67,0x9c,0x9f,0x3c,0xb6,0xd0,0x11,0x1e,0xff,0xb,0xb6,0xf3,0xb9,0x87,0x17,0xc5,0xd8,0x43,0x36,0x9c,0xf,0x6a,0x90,0xb0,0x2b,0x4d,0xa1,0xbf,0x5c,0xce,0xb8,0x89,0xae,0x38,0x3f,0xdd,0xf5,0x74,0xc2,0xe3,0x37,0xbe,0x2e,0x12,0xec,0x7,0x19,0x73,0xea,0x4d,0x4,0x30,0x8,0x3b,0xb1,0x89,0x7,0xe1,0xc3,0xe3,0x37,0xb1,0x5d,0xce,0x78,0xf2,0xe6,0x37,0xf0,0xf0,0xf8,0xd,0x50,0x6b,0x78,0xf2,0xf8,0xd,0x7c,0xe3,0xab,0x7f,0x84,0xed,0x72,0xc6,0x76,0x7e,0xc0,0xf9,0xe1,0xb1,0x1,0xb2,0x44,0xd,0xdf,0xf8,0xea,0x97,0x71,0x39,0xb3,0x97,0xe0,0x93,0x37,0xbe,0x8e,0x5a,0x39,0xc5,0xf7,0x37,0x7f,0xf7,0x8b,0xf8,0x95,0x5f,0xfb,0xf5,0xc3,0x6f,0xfe,0xf0,0x87,0xbe,0x1d,0xdf,0xf9,0x81,0xd7,0xe0,0xbd,0x5d,0x81,0x31,0x15,0xda,0x18,0xd9,0xd4,0x6c,0xa1,0xa5,0xdb,0x3d,0x84,0x81,0x9d,0x6a,0xe9,0xef,0xea,0x3,0x48,0x18,0x2c,0x48,0xf4,0xf8,0x18,0xf0,0xe7,0xc1,0xb9,0x1d,0xb0,0x6a,0x21,0x66,0x3,0xcb,0x4f,0x41,0x43,0x43,0xa7,0x47,0x24,0xec,0x8,0x51,0x73,0xc7,0xf8,0x1a,0x82,0xf3,0x7f,0xf6,0xe0,0xde,0x15,0x6c,0x8,0x27,0xd8,0x1d,0x9,0x7b,0x34,0xbe,0xdb,0xcb,0x73,0x7,0x32,0xe2,0x1,0x21,0x91,0xdc,0xae,0x19,0xd1,0x91,0xae,0x90,0xc0,0x63,0x92,0xe2,0x9e,0xe9,0xa8,0xd7,0x37,0x4d,0xa,0xe0,0xac,0x59,0xb3,0x26,0x0,0x38,0x6b,0xd6,0xac,0x59,0x2f,0x6a,0x57,0x68,0x86,0xd0,0x70,0xc,0xb7,0x6e,0x4,0xf,0x63,0xdf,0x29,0xcb,0xaa,0x8a,0xac,0xca,0x3c,0xeb,0x94,0x49,0x21,0xa0,0x15,0xd0,0x65,0xab,0xb5,0x16,0x9,0xdd,0x60,0x90,0x4c,0x1b,0xce,0xbf,0xf4,0xc3,0x9f,0xc5,0xdd,0x69,0x7d,0xcb,0xcd,0xfb,0xf4,0x27,0x5e,0xc7,0xcb,0x77,0x1c,0xd4,0x51,0xab,0xb2,0xc,0x4f,0xc6,0xd2,0xea,0xe6,0xf2,0x9a,0x5e,0xd9,0x6,0xd0,0x8a,0xfd,0x85,0x58,0x7a,0x9b,0x72,0x46,0xce,0x99,0x53,0x29,0x45,0x36,0xac,0x5e,0x42,0x5d,0x2a,0x2c,0xec,0x38,0x1,0x1c,0xd5,0x7b,0x30,0x2f,0x92,0xf0,0xdb,0x98,0xf5,0x76,0x77,0xff,0x92,0xdd,0x49,0x37,0xaa,0xcc,0x6,0x51,0x80,0x2b,0x2f,0x92,0xfe,0xcb,0xe0,0xa1,0xfa,0xd5,0xe9,0x67,0x32,0xb0,0x27,0x7e,0x78,0xd4,0xbd,0xad,0x52,0x5a,0x18,0x90,0x93,0x63,0x6d,0xc0,0x9e,0xee,0x53,0x23,0xe4,0xf5,0x84,0x94,0x93,0xb0,0x43,0x60,0x8c,0xbf,0x65,0x3d,0x61,0x11,0x79,0x33,0x88,0xe4,0xff,0x77,0xb6,0x1d,0x8b,0x78,0xe4,0x99,0x84,0x58,0xd8,0x9a,0x10,0xa9,0x6f,0x4a,0x19,0xa7,0xbb,0x47,0x6,0xbe,0x31,0x28,0x1a,0x8c,0x55,0x47,0xad,0x61,0x39,0x9d,0xe4,0x27,0x23,0xa9,0xcb,0xb,0x27,0x1c,0x47,0x3,0x4f,0xef,0xc5,0x8b,0x11,0xcc,0xa0,0x5c,0x57,0xde,0xcf,0x10,0xc,0x68,0xc,0x21,0x20,0x2d,0xb,0x92,0x48,0xc3,0xb3,0xf8,0x43,0xe9,0x71,0x57,0x70,0x21,0x2f,0x8b,0xa5,0xe,0xab,0x2c,0x89,0xdc,0xef,0xd1,0x42,0x8,0x44,0xd6,0x17,0x24,0x1d,0x34,0xa5,0xe4,0xa4,0xc3,0xca,0xb2,0x74,0x1e,0x54,0x2,0x1e,0x58,0x78,0x41,0xe8,0xc9,0x8f,0x49,0x58,0x87,0x9e,0x85,0xd2,0xe5,0x64,0xbd,0xf3,0xf2,0xb2,0x5f,0x63,0xfc,0xa9,0x7f,0x95,0x49,0x1b,0x3b,0xc0,0xae,0xcc,0xc3,0x94,0x4f,0x73,0xbc,0x99,0xf5,0xdc,0xc6,0x79,0x72,0x72,0x46,0xd,0xe9,0xb1,0xdf,0x7a,0x80,0xb1,0x7d,0xf5,0x5a,0xd0,0x5,0x4,0x22,0x12,0x30,0x68,0xb3,0xf1,0x5d,0xd3,0x6c,0xf3,0xba,0x32,0x93,0xb8,0x14,0xb4,0x76,0xc,0x1a,0xa4,0xbc,0xa,0x40,0x18,0xd9,0x96,0x21,0x67,0x61,0xcf,0x31,0xc0,0xd8,0x5a,0x31,0xf0,0x8f,0x53,0xe9,0x65,0xce,0xc9,0x99,0x17,0x3e,0x84,0x7d,0xbd,0x48,0xc2,0xae,0x97,0xde,0xeb,0xe2,0xd4,0x11,0xd8,0xa9,0x7e,0x86,0x9a,0x8,0xf,0x0,0xe7,0x87,0xc7,0xc,0x6e,0x3d,0x25,0x59,0xd7,0x2,0x9d,0x62,0x30,0x7f,0xbd,0x52,0x36,0x54,0xf7,0x87,0x24,0x2c,0x85,0x8f,0xd5,0x82,0xb2,0x6d,0x58,0x4f,0xf7,0xb8,0x9c,0xcf,0x16,0x2c,0x94,0x5c,0xe8,0x10,0x8f,0x43,0x49,0x0,0xb0,0x76,0x73,0x2a,0x4e,0x99,0x93,0xcb,0x9f,0xbc,0xf9,0x86,0xf9,0xe9,0x6d,0x97,0x7,0x49,0xd7,0x6d,0x37,0xe0,0x3f,0x1e,0x93,0x2f,0xe7,0xb3,0x90,0xde,0x9a,0x30,0xf4,0x19,0x80,0xdc,0x2e,0x67,0x6c,0xdb,0x19,0x79,0x59,0xb1,0x9c,0xee,0x50,0x2e,0x97,0xe1,0xcd,0xad,0x56,0x94,0xed,0xc2,0xf3,0x47,0xad,0xc,0xc,0x56,0x66,0x7,0x96,0xb2,0xe1,0xfc,0xe4,0x31,0xfe,0xce,0xcf,0xff,0x12,0x2e,0xdb,0x35,0xb,0x70,0x5d,0x17,0x7c,0xea,0xbb,0xbe,0x5d,0x52,0xed,0x75,0x31,0x68,0x13,0xb9,0x38,0x6c,0xee,0xd2,0x71,0x58,0xbd,0xfe,0x74,0x61,0x4c,0x6d,0x30,0x9a,0x93,0x3c,0x9b,0xbc,0xdb,0x7,0x77,0x9,0x53,0xcf,0x7b,0x47,0x9a,0x5d,0x89,0x3,0xc0,0x3c,0x48,0xa7,0x9f,0x65,0x29,0xc1,0x84,0x63,0x30,0xcc,0x1e,0x10,0xe0,0x8b,0xae,0xe9,0x71,0xb4,0xf3,0xe8,0x3b,0x62,0xef,0xd1,0x95,0x99,0xca,0x48,0xb8,0x3b,0x8e,0xf3,0xd8,0x1,0x84,0xd4,0x83,0xe3,0xdd,0xc9,0x1d,0x11,0xc3,0x3d,0x11,0x31,0x1c,0xfc,0x20,0xf6,0x29,0xf4,0x76,0xed,0xd3,0x81,0xcf,0xe1,0x75,0xa0,0xd5,0xc,0xac,0x9a,0x35,0x6b,0xd6,0x4,0x0,0x67,0xcd,0x9a,0x35,0xeb,0x45,0x1d,0xd4,0x85,0xed,0x16,0xc4,0x27,0xcf,0x27,0x43,0x5a,0x42,0x2d,0x35,0x94,0x52,0xcc,0xa7,0x4d,0x19,0x23,0xea,0xc1,0xa7,0x20,0x95,0x82,0x43,0x49,0x53,0x79,0x25,0x74,0x41,0xd9,0x5b,0xa,0x80,0xbd,0x7c,0xbf,0xe2,0xb3,0xdf,0xf3,0xb1,0x67,0xda,0xbe,0x97,0x5f,0x7a,0x84,0x1f,0xfb,0xec,0xc7,0x2d,0x30,0x23,0xa6,0x8c,0xb4,0x48,0x4a,0x2f,0xc2,0xc0,0x80,0x63,0xe0,0x68,0x35,0x66,0xa2,0xb2,0x1,0xbb,0x7f,0x60,0x30,0xf,0xc3,0x26,0x26,0xeb,0x79,0x39,0x19,0xf3,0x4b,0x99,0x77,0x96,0x8,0x2b,0xc0,0x9a,0x9a,0x96,0x6b,0x63,0xa8,0x2c,0xc0,0xbc,0xac,0xec,0x59,0x25,0x7a,0x1d,0x5,0x42,0xb5,0xe1,0xc9,0x2b,0x3,0x97,0xca,0x9e,0xe3,0x14,0xcb,0x8c,0x18,0x5,0x28,0x25,0x98,0x21,0xbe,0x26,0x3e,0xe,0x9,0xb8,0x81,0x99,0x79,0xc,0xa4,0x56,0x91,0xc5,0xf6,0xa4,0xe5,0x94,0x99,0x1,0xa7,0x72,0x60,0x4d,0x51,0xd4,0x26,0x5d,0xbd,0x0,0x55,0xae,0xac,0xa0,0x5f,0xc,0x51,0xa4,0x69,0x1b,0xbf,0xd7,0x3c,0xef,0xc8,0x31,0x27,0x45,0x9e,0x9c,0x32,0xf2,0xba,0x9a,0x5f,0x54,0x2d,0x9b,0x35,0x67,0x9a,0xfc,0x18,0x53,0x96,0x64,0xe0,0xcc,0x7e,0x54,0xa4,0x69,0x98,0xc,0x2e,0xb2,0x14,0x97,0x4c,0xda,0x1c,0x63,0x12,0xc9,0xb2,0x80,0xa1,0xc2,0x4c,0x8c,0x31,0x76,0xf,0x30,0x22,0x9,0x72,0xa1,0xce,0x14,0x54,0xdf,0x41,0x79,0xde,0x58,0xa0,0x2,0xbc,0x72,0x22,0x74,0x32,0xb9,0xa0,0x4a,0xe8,0xb4,0xe1,0x54,0x39,0x99,0x79,0x45,0xed,0xfe,0xd4,0x52,0x5c,0xe0,0xa3,0x51,0xfb,0x2c,0x24,0x47,0xa5,0x76,0x70,0xef,0xef,0xec,0x92,0xd0,0xc1,0xd1,0x3,0x44,0x82,0x93,0xa1,0xb7,0x39,0xe0,0xcc,0x7a,0x6e,0x65,0x7e,0x96,0x6a,0xed,0xa0,0xb6,0xf,0x2,0xb0,0x2b,0xe0,0xc3,0x60,0x13,0xbf,0x47,0x41,0xae,0xf5,0x74,0xef,0x80,0x35,0x6,0x71,0x48,0xfe,0x94,0xb2,0x21,0xc4,0x9e,0xb6,0xbd,0xaf,0x46,0x3d,0x1d,0x77,0x39,0xdd,0x71,0x18,0x88,0x78,0x6f,0xf6,0xc4,0x72,0x9,0xba,0x58,0x16,0x1b,0x6b,0x7d,0x8,0x8f,0x6e,0xa7,0xb2,0x9f,0x83,0x1,0x44,0xed,0x6,0x58,0x11,0x50,0xeb,0xe6,0x7c,0x42,0x8b,0x81,0x1e,0xca,0x36,0xbe,0xe5,0xc9,0x19,0x42,0x34,0x6,0x33,0x64,0x5c,0x0,0x11,0xb6,0xf3,0x59,0xc0,0x2a,0x9e,0x4f,0xd2,0xb2,0xb2,0xc7,0xea,0xba,0x9a,0x2f,0xad,0x5a,0x51,0xb4,0xd6,0xcc,0x57,0x35,0x48,0xf0,0x13,0xc4,0xb2,0xe0,0x16,0xb8,0xe2,0x7d,0x73,0x43,0xe4,0xb9,0x8b,0x65,0xd2,0x71,0x18,0xfb,0xae,0xa1,0x2b,0x5e,0x64,0xb8,0x7b,0xf4,0x12,0x7b,0x1,0x9e,0x1f,0xf8,0xdc,0x80,0xa5,0xcf,0x4f,0x1e,0xbf,0xc1,0x6c,0xc0,0xc7,0x6f,0xe0,0x8d,0xaf,0x7f,0x5,0xad,0x55,0xbc,0xf9,0xf5,0xaf,0xe2,0xf1,0x37,0xbe,0x86,0x87,0x27,0x8f,0x51,0xcb,0x86,0x52,0x36,0x1,0xa,0x2f,0xb2,0x1f,0x49,0x12,0x7c,0x19,0x98,0xfb,0xad,0xdf,0xfb,0x22,0xfe,0xf0,0xb,0x5f,0x3a,0xfc,0xfe,0x4f,0x7d,0xe2,0x23,0xb6,0x38,0x47,0x8d,0x3d,0xf7,0x6a,0x2d,0xc,0xf2,0x6a,0x7a,0xb1,0x63,0x3,0x6a,0x70,0x55,0x13,0x16,0x68,0x1f,0x6f,0xbb,0x4f,0xaa,0x82,0x81,0x9a,0x44,0x6d,0xfb,0xaa,0xcf,0xd7,0xea,0xa4,0xbb,0x64,0x0,0xe1,0xe0,0x1b,0x18,0xd0,0x99,0xda,0x57,0xc8,0xdf,0x80,0xb0,0xe1,0x98,0x95,0x79,0x15,0x3,0x3c,0x0,0x7b,0x7c,0xfd,0x8c,0xe0,0xdd,0xf8,0xc9,0xa1,0xbf,0x9b,0x76,0x3e,0x7c,0xb7,0xc0,0xc8,0xb0,0xfb,0x1c,0x9f,0xd8,0xb1,0xc3,0x25,0xc3,0x15,0xc8,0xb7,0xff,0x7c,0x2f,0x7d,0xde,0xef,0xa7,0x5f,0xd4,0xa2,0x83,0xdd,0x9e,0xc,0xc0,0x59,0xb3,0x66,0x4d,0x0,0x70,0xd6,0xac,0x59,0xb3,0x5e,0xc8,0x52,0x46,0x18,0xec,0x1e,0x92,0xfa,0x4d,0x7b,0xe8,0xec,0xae,0x9c,0xd9,0x7b,0xc9,0x3,0x1a,0xa,0xae,0x84,0x0,0x63,0xca,0x29,0x5b,0x44,0x65,0x96,0x76,0xb3,0x2a,0x21,0x11,0x0,0xf0,0xd9,0x4f,0x7e,0x18,0xef,0x7a,0xf9,0xa5,0xab,0x6d,0x29,0xf5,0xb8,0x21,0xfb,0xbe,0x4f,0xbe,0x8e,0x1c,0x61,0x49,0x93,0x39,0x2d,0x68,0xb5,0x98,0xfc,0x58,0xc1,0x3b,0x6d,0x10,0x7c,0x72,0xeb,0xe9,0xfe,0x25,0x49,0xc7,0x4d,0xc6,0x8,0x59,0xef,0xee,0x91,0xf3,0x6a,0x52,0x5f,0x4d,0x86,0xd,0x2e,0xe9,0x36,0x2f,0x27,0x9c,0xee,0xee,0xd,0xfc,0xea,0xb2,0x66,0x58,0x83,0xa4,0x2c,0xc3,0xd3,0xfd,0x23,0x1,0xc0,0x92,0xbb,0x43,0xf,0xc6,0x8,0x33,0x89,0x6f,0x8,0x28,0x5b,0x97,0x48,0xdd,0x3d,0x7a,0x89,0x4d,0xcf,0x5b,0x33,0xa0,0x4c,0x13,0x83,0x53,0xca,0x8,0x29,0xd9,0x76,0x2a,0x20,0x95,0xf2,0x62,0x8d,0x64,0x8,0x1,0xc1,0x35,0x86,0x6,0xf0,0xc5,0x68,0xc,0x3a,0x6d,0x42,0x6b,0xe1,0x6,0x6d,0x39,0x9d,0x4c,0xd2,0xbc,0xae,0x77,0x96,0xe0,0xac,0x49,0x8d,0x79,0x5d,0xc5,0xef,0x2f,0xba,0x6,0x83,0x3d,0x11,0xd3,0xc2,0xfe,0x4e,0xcc,0x66,0x3c,0xc9,0xb1,0xcf,0x83,0x74,0x3c,0x4,0x74,0x0,0x58,0x9a,0x2f,0xf3,0x19,0x84,0x3,0x9,0x44,0x82,0x1d,0x42,0xe4,0x90,0x81,0x52,0x86,0x94,0x65,0x95,0x4,0x86,0xe8,0x12,0x21,0x5b,0x97,0xec,0x7a,0x20,0x4f,0xbd,0xc0,0x94,0xa1,0xa9,0xc7,0x71,0x59,0x7b,0x22,0x70,0x14,0xaf,0x42,0x6a,0xcd,0x0,0x6,0x38,0x89,0xb3,0xfe,0x7e,0x47,0x16,0x4,0x2c,0x38,0x84,0x9c,0x31,0xba,0x1a,0xda,0x5b,0xb3,0x39,0xec,0x7f,0x3c,0x6c,0x26,0xa9,0xb6,0x9b,0xc,0x9e,0x59,0xb3,0xde,0x1,0xf4,0xcf,0x31,0x0,0x5b,0xf7,0x61,0x3,0x33,0xdc,0x74,0xac,0x50,0x59,0x7f,0x7,0xb2,0x83,0x3,0xa8,0x92,0xbc,0xb6,0x2f,0xa6,0xb4,0x56,0x65,0xec,0xd,0xc6,0x2a,0x3c,0x2,0xb6,0xc,0x40,0x6c,0x8d,0x17,0x92,0x94,0xf5,0x65,0xfe,0x78,0x51,0x16,0x10,0x44,0x36,0xab,0x12,0xff,0xcc,0xec,0xe8,0xbc,0xc8,0x2,0x0,0x2,0x62,0x12,0x4f,0x38,0x61,0xa4,0x1f,0x3,0x79,0x84,0x98,0x24,0x31,0x3e,0x76,0x8f,0xd3,0x18,0x13,0xce,0xf,0x8f,0x9f,0x9a,0x74,0x4a,0x92,0x28,0xbb,0xac,0x27,0xf3,0xaf,0x7d,0x78,0xf2,0x98,0x83,0x38,0xca,0x86,0x52,0x37,0xd4,0x52,0x70,0x7e,0x78,0x8c,0x18,0x13,0x1e,0x1e,0xbf,0x81,0xb2,0x5d,0xfa,0x82,0x80,0x80,0x95,0x97,0x87,0x2e,0x1b,0x86,0xfa,0x98,0x3e,0x25,0x8,0x48,0xe7,0x13,0x10,0x21,0x86,0x2e,0xa7,0xde,0xce,0xf,0x32,0xaf,0x6e,0x37,0x1,0xcb,0x28,0x4c,0x37,0x66,0x58,0x2e,0x78,0x78,0xf2,0xa6,0xc9,0xb3,0x95,0xad,0xde,0x4a,0xc1,0xfd,0xa3,0x97,0x71,0x39,0x3f,0xe0,0xfe,0xe5,0x77,0xe1,0x74,0xff,0x92,0x1,0x96,0xe7,0x27,0x8f,0x6d,0x1b,0x52,0x5e,0xd8,0x23,0xb0,0x16,0x5c,0x9e,0x3c,0x66,0x49,0x78,0x29,0xf8,0xf5,0xdf,0xf8,0xfc,0xe1,0xf7,0xbf,0xff,0xbd,0xef,0x41,0x82,0xce,0xbb,0x63,0x38,0x98,0xf7,0x6f,0xf4,0x5e,0xb6,0x75,0xdb,0x6c,0x91,0x46,0xe7,0xaf,0x68,0x96,0x22,0x3c,0x87,0x92,0x78,0x38,0x12,0x94,0xcd,0x17,0xba,0x8c,0x18,0x70,0xe3,0x69,0xe8,0xb,0x33,0x2,0xc,0x87,0xe0,0xbd,0xfd,0xba,0x50,0xf8,0x1a,0x73,0xdb,0x4b,0x76,0xf,0xe0,0x3f,0x93,0xe7,0x3a,0xb6,0x1e,0x75,0xeb,0x94,0xbe,0x68,0x84,0xa7,0x4,0x83,0xec,0x40,0xb5,0x70,0x0,0x4,0xe,0x6f,0x39,0x2,0xf4,0x46,0x80,0xce,0x82,0x4d,0x6e,0xd1,0x3,0xed,0x73,0x9e,0x46,0x7d,0xbc,0x3e,0x12,0x8d,0xea,0x1c,0x2f,0x67,0xcd,0x9a,0x35,0xd4,0x4c,0x1,0x9e,0x35,0x6b,0xd6,0xac,0x17,0xaa,0xba,0x44,0x91,0x1a,0xcb,0x24,0xcd,0x4f,0x87,0x80,0x56,0x1b,0x42,0x60,0x26,0x44,0xac,0x10,0xb6,0x5c,0xb6,0x14,0x59,0x95,0x95,0xa6,0x9c,0xcd,0x9b,0xcf,0xfb,0x38,0x29,0x4b,0xaf,0xd5,0x82,0xd3,0xfd,0xcb,0x88,0x1,0xf8,0x91,0x1f,0xfc,0xb4,0x19,0x87,0xfb,0x7b,0xe3,0xbf,0xff,0xf,0x7f,0x15,0x3f,0xf2,0x83,0x9f,0xc2,0xba,0x8c,0x53,0xcd,0x7b,0x5f,0x7b,0x15,0xdf,0xff,0x89,0xf,0xe1,0x17,0x7f,0xf5,0xf3,0x2,0xc6,0x10,0xb2,0xb0,0x2f,0xd8,0x70,0xfc,0x3c,0xfa,0xb9,0x51,0x34,0x6,0xc6,0x76,0x79,0xb0,0x6d,0x82,0xa4,0xc9,0xb6,0x5a,0xb1,0xde,0xdd,0x31,0x6b,0x21,0x70,0x53,0xe9,0xc1,0x32,0x5,0x2a,0x89,0xb8,0x69,0xca,0xeb,0x89,0x99,0x6f,0x81,0x9b,0x52,0x94,0x8d,0x1d,0x81,0xd4,0xbc,0x5c,0xbd,0x8,0x63,0x44,0xa,0x8b,0xd8,0xc4,0x31,0x80,0xd6,0xc4,0xd3,0x8e,0x83,0x4b,0xee,0xd,0x4c,0x6c,0xc4,0xc6,0xf8,0xa7,0xd3,0xbd,0x49,0x54,0x4b,0xd9,0xfa,0x31,0x93,0xb4,0xe4,0xba,0x6d,0xf2,0xef,0xc5,0xe4,0x5c,0xfa,0x6f,0x6d,0x68,0x15,0xc4,0x2,0x9,0x50,0x26,0x3e,0x82,0xc8,0x64,0x6c,0x3e,0x6d,0xea,0x43,0x88,0x58,0xef,0xee,0x51,0x4b,0x91,0xed,0x67,0x76,0x4b,0xca,0xb,0x32,0x16,0x34,0x6a,0x38,0xdd,0x3d,0xb2,0x6d,0xa1,0xed,0x62,0x20,0x1f,0x8c,0x6c,0xc3,0xc,0x9c,0x9c,0x33,0xb6,0xcb,0x85,0x1b,0x2f,0xf3,0x55,0x5c,0xd,0x20,0x5,0xc0,0xd2,0x33,0x69,0xf4,0xf2,0xc2,0x52,0x39,0x65,0x5f,0x32,0x13,0xa8,0xd8,0x73,0x16,0xb0,0x21,0x9e,0x80,0xb5,0x56,0x2c,0xa9,0xcb,0xb0,0xa9,0x55,0x2c,0xeb,0x9d,0x98,0xcd,0xe7,0xde,0xb4,0x88,0x2f,0x25,0xb3,0x8c,0x16,0x6c,0xe7,0x7,0x3,0xa3,0x73,0x5e,0x51,0xea,0x66,0x81,0x21,0x9c,0xae,0xd9,0xb8,0xa9,0x13,0xb9,0x72,0x8c,0x49,0x7e,0xcf,0xc1,0xc0,0x6d,0xec,0xe4,0x67,0xd,0xcd,0xa1,0xe4,0x34,0xb0,0x2a,0xc,0x38,0xd7,0xa6,0xd4,0xc7,0x2e,0x4a,0x13,0x1a,0x62,0xb8,0x91,0xfd,0x38,0x6b,0xd6,0x3b,0x30,0xca,0xcb,0x35,0x47,0xb8,0x66,0x55,0xa1,0x36,0x1b,0x23,0xc3,0xce,0x57,0x34,0xca,0x75,0x5d,0xb,0xfb,0x69,0xc6,0x94,0x1,0x6a,0xa8,0x85,0x8c,0x91,0xcd,0xe0,0x47,0x0,0x6e,0x30,0xd4,0x72,0xc,0x78,0xf7,0xa3,0x13,0xd6,0x50,0x40,0xb4,0x2,0xad,0xe2,0xfc,0xc0,0xd7,0xe2,0xba,0x2c,0xcc,0xdf,0x8a,0x1,0x29,0x45,0x84,0xc4,0xac,0x6a,0xa2,0xa,0xb2,0xb1,0x13,0xa8,0x2,0x26,0xc5,0xb4,0xe0,0xe1,0xc9,0x63,0xdc,0x3f,0x7a,0x19,0x44,0x84,0xfb,0xbb,0xd3,0x31,0x98,0x27,0x73,0xce,0x76,0xb9,0x18,0x70,0xa4,0x89,0xea,0x31,0x26,0xf1,0xd5,0xbb,0x81,0x95,0xca,0x31,0x3a,0x3f,0x3c,0xe6,0xc0,0xa4,0xd3,0x9,0x21,0x0,0x5f,0xfe,0xc2,0xef,0xe3,0xd5,0xf7,0x7d,0x8b,0x1d,0x93,0x75,0xbd,0x43,0xa3,0x86,0x45,0x82,0x95,0xba,0x57,0xaa,0xc8,0x55,0x8d,0xa1,0x1c,0x6,0x90,0xeb,0x56,0xc5,0x18,0x51,0x2e,0x17,0xf6,0x2d,0x14,0x10,0xa6,0x6c,0x1b,0x96,0x75,0x95,0x85,0xa3,0x63,0xd0,0xb2,0xb5,0x6a,0xe3,0x2a,0x0,0x19,0xbb,0x19,0xac,0x5,0x11,0xaa,0x84,0x41,0xe5,0x7b,0x1e,0x23,0x55,0x56,0x5d,0x25,0x71,0xbd,0xd6,0x8a,0x97,0x5e,0x79,0x15,0x65,0xbb,0x60,0xbd,0xbb,0x17,0x7b,0xc,0x20,0x2f,0x27,0xb3,0x36,0x20,0x22,0x7c,0xfe,0xb7,0x7f,0xff,0xf0,0xfb,0x5f,0x7e,0xe9,0x11,0x5e,0x7d,0xe5,0x11,0xfe,0xf0,0x8f,0xbe,0x26,0x8b,0x59,0xd1,0x82,0x62,0x94,0x15,0xd9,0xd0,0x17,0x83,0x74,0x3e,0xea,0x3,0x64,0x7,0xa3,0x15,0x54,0x8e,0x21,0xa2,0xc1,0x8d,0xc3,0x36,0x78,0x86,0x1,0xd4,0xee,0x18,0x57,0x13,0xe6,0xa5,0x30,0xe4,0x8d,0xa9,0x1d,0x45,0x12,0x8d,0xbe,0x88,0x14,0xc8,0x0,0x3d,0x1d,0xdf,0xbb,0xa8,0xd7,0x1,0xe5,0x3e,0xd7,0xe3,0x0,0x50,0x1f,0x80,0xbc,0xb0,0xdb,0x3c,0x72,0x32,0x61,0x9b,0x2a,0xc2,0x31,0xd0,0xe7,0x91,0xc4,0x70,0xe3,0x39,0xec,0x1f,0xb,0xcf,0x4,0xea,0xd9,0xb6,0x3e,0x15,0x4,0xdc,0xed,0x6e,0x98,0x5c,0x9f,0x59,0xb3,0x66,0x4d,0x0,0x70,0xd6,0xac,0x59,0xb3,0x5e,0xdc,0xc6,0x50,0x1a,0xa3,0x0,0xa0,0x81,0x8c,0xad,0xc5,0x60,0x5a,0x97,0x5b,0x12,0x11,0x1a,0x69,0x2a,0x2b,0x37,0x14,0xea,0x8f,0x16,0x10,0x2c,0xf0,0x81,0x93,0x66,0x57,0xe8,0x7a,0x79,0x72,0xfe,0x7b,0xb5,0x6c,0xf8,0xc4,0x47,0xbe,0xd,0xdf,0xfe,0xc1,0xf7,0x5f,0x6d,0xc7,0x57,0xbf,0xfe,0xd,0xfc,0xfc,0xff,0xf5,0xcf,0xf0,0xc1,0xf,0xbc,0x86,0x4f,0x7c,0xe4,0xdb,0x77,0x8d,0x51,0xc0,0x9f,0xfb,0xcc,0x47,0xf1,0xcb,0xff,0xe4,0xf3,0x68,0x31,0x99,0x17,0x55,0xd9,0xb6,0x21,0x31,0x96,0x43,0x1f,0xb2,0x3c,0x2f,0x8d,0xa9,0x48,0xdb,0x4e,0x77,0x8f,0x70,0x39,0x3f,0x1,0x0,0xe,0x8e,0x10,0x20,0x27,0xa,0x33,0x30,0xb4,0xe8,0x0,0xa0,0x88,0x9c,0x57,0xf1,0x89,0xe2,0xc4,0xdb,0x16,0x22,0xb2,0x78,0x16,0x26,0x61,0xaa,0xe5,0x55,0x5e,0x23,0x1e,0x77,0x6c,0x5c,0x4e,0x9c,0x66,0xd8,0x18,0xf4,0x59,0x17,0xf6,0xe5,0x53,0x3f,0x27,0x65,0xf8,0xa1,0x1,0x41,0xa4,0x5e,0xa1,0x5,0xc4,0xa8,0x81,0x25,0xb,0x6a,0xb9,0x74,0x26,0xc3,0x12,0x6c,0xa5,0xbf,0x96,0x62,0x5e,0x56,0x49,0x64,0x74,0xea,0x5,0x8,0x40,0x82,0x4e,0x9a,0x49,0x8a,0x8d,0xc5,0x13,0x82,0x0,0xae,0xd9,0xfe,0x9f,0xc5,0xe3,0xaa,0x9,0xe3,0xc2,0x82,0x53,0xa8,0xd,0xcd,0x0,0xcb,0x70,0x99,0x95,0x13,0x1,0x4b,0x95,0xd4,0x64,0xcc,0x65,0x3d,0xa1,0x94,0xb,0x7,0x9e,0x8,0x5b,0x47,0xbf,0x3b,0xe5,0x5,0x6b,0xb8,0x93,0x26,0xb5,0x71,0x12,0x65,0x88,0x16,0xc8,0x12,0x43,0x4,0x12,0xfb,0x7c,0x15,0x49,0xb9,0x54,0xcf,0x26,0xf5,0x72,0xe4,0x66,0x92,0xc1,0x66,0xa8,0x84,0x38,0x25,0x4b,0x4,0x26,0x4e,0xf7,0x10,0x6,0x21,0x3,0xa9,0xcb,0x7a,0x42,0xad,0xd5,0xd8,0x7b,0x5d,0xa5,0x1b,0xba,0xfc,0x3b,0x76,0xc9,0x58,0x8,0x9,0xca,0xd0,0x31,0x89,0xb1,0xc8,0x86,0x59,0x1a,0xdd,0xc6,0x44,0xeb,0xd0,0x41,0x41,0x4b,0x10,0x6,0xec,0x5a,0x20,0x1a,0xdc,0xd5,0xed,0x1a,0x42,0x48,0x0,0xcd,0x20,0x90,0x59,0xef,0x7c,0x99,0x17,0x9a,0xa9,0xfe,0x78,0xfc,0x33,0xab,0x81,0xa6,0xc9,0xdf,0x9a,0xde,0xdd,0x65,0xfc,0xcc,0xa8,0xd5,0x45,0x15,0x5,0x8,0x78,0x1,0x83,0x7d,0x52,0x2b,0x5f,0x7b,0xed,0xf8,0xb7,0xfd,0xfd,0xdf,0xfb,0x71,0x7c,0xcf,0x27,0x3f,0x62,0x60,0x8c,0x85,0x33,0xc8,0xe6,0xc4,0x10,0xd0,0x6,0x29,0x68,0xdf,0xc6,0xf1,0xff,0x7a,0xad,0xf6,0xeb,0x2a,0x80,0x81,0xc3,0xa3,0xfd,0x4d,0x92,0x58,0x6e,0x73,0x98,0x30,0xad,0x63,0x8c,0xd8,0xce,0xf,0x37,0x81,0x10,0x4d,0xb4,0x5f,0x4f,0x77,0xec,0xc5,0x17,0xfe,0x3f,0xf6,0xde,0xb3,0xd9,0xae,0xeb,0x3c,0x13,0x7c,0xd6,0x5a,0x3b,0x9c,0x73,0x6e,0x40,0x26,0x32,0x11,0x8,0x6,0x30,0x83,0x41,0xc,0xa2,0x44,0x89,0x94,0x6d,0x5,0x7,0xb5,0xdb,0xee,0x50,0x5d,0xed,0xea,0x71,0x7b,0xc2,0xd7,0xa9,0xae,0xe9,0xaf,0xfd,0x7,0xa6,0x6b,0x66,0xba,0xa6,0xda,0x33,0x5d,0x1d,0xdc,0xe,0x63,0xcb,0x1a,0x4b,0x2d,0x39,0x28,0x51,0x89,0xa4,0x28,0x31,0x83,0x60,0x0,0x41,0x80,0x0,0x88,0x9c,0x2e,0x80,0x1b,0xce,0xd9,0x69,0x85,0xf9,0xf0,0xbe,0x6b,0xed,0x7d,0x12,0x48,0xc9,0x12,0xe9,0x81,0xf7,0xcb,0x62,0xe1,0xde,0x73,0xcf,0xd9,0xf9,0xac,0xbd,0xdf,0x67,0x3d,0x41,0x60,0xb0,0xb2,0x84,0x55,0x6b,0x37,0xa0,0x2c,0x32,0xc4,0x31,0xfb,0x1e,0x5a,0x66,0x36,0x27,0xb4,0x7e,0xab,0x9,0xa4,0xd4,0xba,0xa,0xa1,0x50,0x71,0x97,0x6d,0x9,0x78,0xfc,0xf7,0x4c,0xeb,0x89,0xf7,0x62,0xd0,0x4,0x4a,0x9e,0xf5,0x61,0x8d,0xd,0xa9,0xee,0x11,0x33,0xf2,0xa6,0x2,0x37,0x42,0x22,0x4a,0x62,0xe4,0x3,0xcb,0x1,0x22,0x1d,0xa,0xfe,0xe0,0x14,0xe2,0x10,0xae,0x12,0x45,0x21,0xa8,0x44,0x40,0xa0,0xdb,0x9b,0xa5,0x49,0x31,0x6,0x4c,0x7b,0x73,0xf3,0x4,0xd0,0x9,0xa0,0xd3,0x9d,0x85,0xd6,0x4,0x3e,0x12,0x98,0x68,0x70,0xe1,0xf2,0x12,0xb4,0xd6,0x61,0xf2,0xc5,0x97,0x52,0xa,0x6b,0xe7,0x3a,0x38,0x7d,0xee,0x22,0xb1,0x2d,0x9d,0x18,0x4a,0x43,0xf,0x72,0x5e,0x20,0x1c,0x37,0xc3,0x89,0xcc,0x42,0x88,0x70,0x9d,0xd5,0xe7,0xbf,0xb6,0xea,0x8,0xd7,0x2a,0x1c,0xe1,0x67,0xc2,0x33,0xff,0x44,0xc0,0xc2,0xbc,0x14,0x5c,0x48,0x15,0xfc,0x15,0xfd,0x75,0xe6,0x1a,0x8c,0xee,0x21,0x3f,0xc1,0x30,0x61,0x33,0xc,0xda,0x41,0xb8,0xa1,0xf9,0x9b,0x0,0xe6,0x8d,0x12,0xec,0x46,0x25,0xb9,0x6e,0x34,0xf9,0xb7,0x71,0x17,0x6d,0x26,0x1b,0xbb,0x49,0x48,0xdf,0x68,0x8a,0x7,0xa6,0x0,0x7c,0x62,0x2,0x80,0x27,0xae,0x9,0xea,0x85,0xf5,0xbf,0xff,0x93,0xe0,0xfb,0x2d,0xa5,0xad,0xb6,0xda,0x6a,0x1,0xc0,0xb6,0xda,0x6a,0xab,0xad,0xb6,0xae,0x87,0xf2,0xbe,0x75,0x7e,0xf6,0x1b,0x2c,0xf9,0xd,0x7e,0x46,0xf0,0xc9,0xbf,0xc4,0xec,0x12,0x32,0xe,0x9,0x7d,0xce,0x9b,0x70,0xb,0x17,0x3c,0xe8,0x88,0x51,0x55,0xb3,0xd3,0x4,0x37,0x35,0xe,0xe,0x71,0x92,0xe0,0xb1,0x7,0xee,0x40,0x14,0x8d,0xa7,0x45,0xbe,0x7d,0xf4,0xc,0xb2,0xd2,0xe0,0xf9,0x3,0xef,0xe2,0xa6,0x1b,0x37,0x8f,0x35,0x75,0x5b,0x36,0x6d,0xc0,0x8e,0x8d,0xab,0xf1,0xce,0xc9,0x8b,0x30,0x5a,0xd7,0x5e,0x55,0xc,0xd2,0x48,0x4e,0x9f,0x15,0x92,0x0,0x22,0x2,0xef,0x54,0xf0,0xbb,0xd3,0xba,0x62,0x19,0x1a,0x3d,0xe2,0xaa,0x28,0x86,0x8b,0x5c,0xd8,0x3f,0xf,0x24,0xfa,0x66,0x41,0x4a,0x89,0xca,0x5a,0xc4,0x51,0xc,0xc0,0x21,0xe9,0x74,0x60,0x35,0x79,0x32,0x45,0x2c,0xa1,0xa5,0x6,0x9a,0xbd,0xa8,0xc0,0xc6,0xf5,0x71,0xca,0xfe,0x47,0x11,0xcb,0xdd,0x34,0x99,0xab,0x73,0x30,0x86,0xd1,0x9a,0x1b,0x66,0x55,0xfb,0xd3,0xb1,0x5c,0xca,0xfb,0x48,0x29,0xa5,0x82,0x99,0xbb,0x90,0x12,0xb0,0x6,0xd6,0xba,0x10,0x72,0xe2,0x3d,0xd,0xe3,0xb4,0x13,0xe4,0x66,0x9e,0xe1,0xa8,0x54,0x12,0x7c,0x18,0xad,0x25,0xa3,0x7a,0xa,0xe8,0xe8,0xd5,0xa0,0x19,0x3,0x92,0xc4,0xd8,0x94,0xd,0x46,0x9e,0x82,0xd1,0x24,0xe3,0x8a,0xd9,0x8b,0x4f,0x0,0xb0,0x96,0x18,0x33,0x49,0xda,0x81,0xe6,0x46,0xd2,0x59,0x62,0x17,0x1a,0x5d,0x41,0xc9,0x8,0xd6,0x99,0xda,0xaf,0x50,0x13,0x30,0x8,0x21,0x50,0xf1,0xfe,0x4b,0x96,0xfc,0x45,0xdc,0x90,0xfa,0x4,0x47,0xeb,0x1c,0x8c,0xae,0x10,0x27,0x1d,0x40,0x20,0x78,0xc,0x52,0x93,0x48,0xd2,0xb9,0x90,0x4c,0xdd,0x68,0x9e,0xbc,0xac,0x4f,0x72,0x22,0x67,0x1d,0x86,0xd2,0x61,0x69,0x5e,0xcd,0xe4,0xf4,0xc0,0x9f,0x31,0x9a,0x40,0xe,0x15,0x1,0x46,0xc3,0x58,0x1d,0xe4,0xbc,0x3e,0xe8,0x44,0x48,0x92,0x11,0x5b,0x2f,0xf,0x66,0xc9,0x9e,0x6f,0x32,0xad,0x7,0xf9,0xe0,0x18,0x84,0xd5,0x41,0x8a,0xac,0x4,0x35,0xca,0x3e,0x29,0xb8,0xd9,0x5a,0x35,0x83,0x45,0xda,0x6a,0xeb,0x43,0x2f,0x87,0xfa,0xfb,0xc0,0xd7,0xa3,0xb1,0x6,0xc2,0xd9,0x30,0x29,0x41,0x40,0x8d,0x65,0xbb,0x80,0x28,0x48,0xf3,0x89,0xfd,0x17,0xb1,0x8f,0xa5,0x83,0x54,0xae,0x4e,0x14,0x17,0x8,0x40,0xe0,0x54,0x6,0xa0,0x52,0x88,0xa6,0x24,0x4,0xff,0xc2,0x76,0xd7,0x1,0xce,0x68,0x54,0x65,0x1,0xef,0x69,0x5b,0xd9,0x2,0x4a,0x8,0x94,0x79,0x81,0x28,0x49,0x42,0xe8,0xc9,0x78,0xd1,0xd8,0xe2,0xef,0x81,0x55,0x59,0x40,0xa9,0x8,0xd9,0x60,0x19,0x69,0x77,0x6,0xce,0x39,0x2,0xc2,0xe2,0x3a,0x55,0x9d,0x64,0xae,0xe4,0x3b,0x18,0xc5,0x31,0x9c,0x8d,0xd8,0x67,0x95,0x12,0x88,0x7d,0xc0,0x14,0x31,0x3,0x27,0x87,0x5f,0x79,0x96,0x26,0x49,0xa1,0x2d,0xca,0x22,0xf,0x0,0x59,0x92,0x76,0x1a,0xe0,0xe7,0xf8,0xc9,0xf5,0x13,0x20,0x7e,0xf2,0xc7,0x4b,0x8f,0x29,0x84,0x4a,0xf0,0xf9,0x4a,0x2,0xb8,0xe6,0x3d,0x6c,0x1d,0x1c,0xca,0x3c,0x43,0xd2,0xe9,0xc2,0x6a,0x13,0x18,0x8c,0x3e,0x6d,0x5d,0x57,0x15,0x54,0x1c,0x43,0x2a,0x8b,0xac,0x34,0xc4,0x26,0x1c,0x3d,0x5a,0x52,0x62,0xae,0x97,0x22,0x67,0xb9,0x70,0x9c,0xa6,0xc1,0x76,0x3,0xce,0x41,0xeb,0x32,0x58,0x61,0xf8,0x9f,0xfd,0x49,0xa,0xac,0x3b,0x56,0x1d,0x10,0xe3,0xd0,0xc2,0xb1,0x8f,0xa2,0x97,0x55,0x4b,0x19,0x85,0x4,0xe6,0x26,0x30,0x2c,0x84,0xa0,0xeb,0x98,0x25,0xc3,0x43,0x60,0x98,0x4f,0xbd,0x6e,0xe8,0x78,0x9b,0xf7,0x12,0x92,0xa,0x37,0xa5,0xb4,0x62,0x98,0x7c,0x87,0x3a,0x20,0x7,0xa3,0xb8,0xdd,0x68,0xfa,0xc6,0x18,0x6a,0x8,0x8c,0xb1,0xfb,0x30,0x9,0xfc,0x9b,0x4,0x4,0xe2,0x3,0xfe,0xfe,0xf3,0x84,0xec,0x1a,0x61,0x3a,0xad,0xff,0x5f,0x5b,0x6d,0xb5,0xd5,0x2,0x80,0x6d,0xb5,0xd5,0x56,0x5b,0xd7,0x73,0x5f,0x58,0xb3,0x42,0x68,0xf6,0xde,0x5,0xc0,0xf,0xc,0x6a,0x51,0xa8,0x83,0x9,0xc,0x2b,0xa5,0xa8,0xc1,0xf0,0x4c,0x0,0xef,0x87,0xe7,0x53,0x69,0x3d,0xb,0xd0,0xcb,0x5d,0xc1,0x60,0xc9,0xfa,0x55,0x33,0xb8,0xe5,0xa6,0x1b,0xc7,0xb6,0xa1,0xac,0x2a,0x3c,0x7f,0xe0,0x30,0x9c,0xb5,0x78,0xe7,0xc4,0x39,0x5c,0x58,0xb8,0x82,0xcd,0x37,0xac,0x1b,0x6,0x2a,0xa5,0xc4,0x27,0xee,0xdf,0x8b,0x77,0xde,0x3b,0xcf,0xb2,0xa0,0x7a,0xa6,0xdf,0x7b,0xc0,0x25,0x69,0x7,0x65,0x91,0x5,0xbf,0x21,0xcf,0xf0,0x33,0xc6,0x21,0xe6,0x44,0x62,0xef,0xa7,0xe7,0x65,0xc9,0x51,0x9c,0x40,0x30,0x23,0x62,0x34,0xcc,0x84,0x98,0x2f,0xdc,0x7c,0x58,0x83,0x28,0x8e,0x49,0xea,0x6c,0xd,0x94,0x8a,0x3,0x63,0xcc,0xe8,0xa,0x31,0x83,0x78,0x10,0x8,0x29,0xbe,0x16,0x2,0x11,0x33,0xf5,0x24,0x1f,0x2b,0xef,0xcd,0xe7,0x1a,0xc9,0xc3,0x86,0xe5,0x5b,0x2a,0x8a,0x10,0x75,0xba,0x28,0x8b,0x3c,0xac,0x47,0x4a,0x62,0xbe,0xb9,0xaa,0xa,0xe7,0x47,0xca,0x28,0x30,0x24,0xb4,0xa9,0x90,0x76,0xa9,0x79,0xa3,0xc6,0x88,0x65,0xdb,0xb1,0x84,0xf2,0xe9,0x8b,0x51,0x14,0x0,0xb1,0xa6,0xf,0x93,0x4f,0x4d,0x1c,0xa,0xd3,0x50,0x11,0xca,0x32,0x87,0x14,0x82,0x1b,0x5f,0xc5,0xfe,0x84,0x49,0xf0,0x1f,0xa4,0x65,0x2a,0x96,0x60,0x93,0x2f,0xa4,0xb0,0xde,0x77,0xd0,0xa2,0xd3,0x9b,0x85,0x31,0x2c,0x11,0x57,0x75,0x43,0x1a,0xc5,0x49,0x90,0x43,0x53,0x53,0x2c,0xa1,0x4,0x25,0x1,0x7b,0x96,0x9,0x49,0xc,0x49,0xba,0x15,0xc7,0xd4,0xf0,0x1a,0x49,0x80,0x6f,0xcc,0x7e,0x52,0xc6,0x68,0x38,0x27,0x3,0x40,0x1d,0xab,0x34,0x34,0x85,0x24,0x6d,0x96,0xc1,0x47,0x8c,0x52,0xad,0x23,0xf6,0xfb,0xab,0xaf,0x65,0x9f,0x12,0xec,0x99,0x22,0x96,0x1,0xba,0xa6,0x8f,0x99,0x1b,0x69,0x84,0xc8,0xc7,0x10,0x21,0x24,0x86,0xce,0xb7,0x8,0xb2,0x60,0xc3,0xac,0x1f,0x6a,0x68,0x6d,0x83,0x71,0xe2,0x1b,0xfc,0x96,0xfd,0xd7,0xd6,0x47,0x34,0xce,0x3b,0x3,0x4,0xa0,0x85,0xc0,0x8f,0x88,0xc7,0x2c,0x1,0xc1,0xc9,0xb6,0x80,0x8a,0x88,0x65,0x5b,0xa7,0xf2,0x4a,0xf6,0x29,0x35,0x88,0x54,0xcd,0x26,0x23,0x16,0xae,0x45,0x14,0x2,0x9f,0x1c,0xc4,0xdf,0xb1,0x3b,0x9b,0xf4,0x20,0x96,0xae,0x2,0x98,0x66,0xd9,0x67,0x56,0xa,0x75,0xd,0x4f,0x4e,0xf2,0xd2,0x73,0xe,0x3c,0x89,0x42,0xdf,0xf3,0xb4,0x3b,0x43,0xac,0x34,0xfe,0xce,0xd3,0x64,0x47,0x15,0x42,0x4c,0x3c,0x18,0x18,0xc7,0x9,0xaa,0xb2,0xc,0xc7,0x8d,0xd8,0x97,0x80,0x8c,0xf8,0x3e,0x69,0xcd,0x34,0xc,0x86,0xd8,0x83,0xae,0xf6,0xb5,0xb5,0xce,0x32,0xd3,0x5d,0x2,0xd3,0xbc,0xd9,0xf8,0x9e,0xed,0x83,0x56,0xb2,0xfe,0x32,0xb1,0xaa,0x2b,0x62,0x22,0x26,0xbd,0x19,0xa,0x5d,0xb1,0x8e,0xe5,0xd5,0x36,0x9c,0x63,0x6b,0x2c,0xba,0x33,0x73,0x34,0x39,0x26,0xea,0x90,0xd,0xef,0x97,0xab,0xf8,0xde,0xed,0x4,0x81,0x7f,0x76,0x8a,0x4f,0x6f,0x92,0xd0,0xb1,0x0,0x80,0x7c,0x50,0x61,0x66,0x76,0x15,0x1d,0x3,0x29,0x21,0x4,0xd9,0x37,0x4,0x75,0x80,0x73,0x30,0xc6,0xd5,0xb2,0x5c,0xe,0x5a,0x12,0x42,0xd0,0x4,0x8b,0xa0,0x49,0x48,0xeb,0x4c,0x60,0x12,0x6,0xd6,0xb6,0x7,0xdb,0xf8,0xd9,0x85,0x2c,0x4a,0x9a,0xc,0xbf,0x7a,0xcc,0xf5,0x20,0x9f,0x13,0x35,0x33,0xdb,0x89,0xfa,0xfa,0xf,0xec,0xf0,0xa6,0x3c,0x77,0x48,0x61,0x2b,0x86,0x11,0xe5,0xa1,0xd1,0x7c,0x48,0xeb,0xfb,0x1,0x80,0x39,0xf7,0x1,0x7e,0xfe,0xdb,0x3,0x7b,0x43,0x84,0xc6,0x11,0x6,0x6d,0xf3,0xb5,0xf1,0xf9,0xa8,0x16,0xf4,0x6b,0xab,0xad,0xb6,0x5a,0x0,0xb0,0xad,0xb6,0xda,0x6a,0xeb,0xef,0x45,0x35,0xe5,0x30,0x9e,0x5d,0x16,0x64,0x5d,0x2c,0xb7,0x5,0x27,0x3,0x7b,0x19,0x98,0xf7,0x7a,0xa3,0x66,0x27,0xae,0x53,0x76,0x65,0x9d,0x4e,0xeb,0x1f,0x36,0x89,0x61,0x48,0xaf,0x3f,0x72,0xcf,0xcd,0xe8,0xa4,0xe3,0xec,0x87,0x13,0xa7,0x2e,0x60,0x61,0xb9,0x60,0xc6,0x5b,0x7,0x2f,0x1c,0x78,0x17,0xbf,0xfe,0xe4,0xba,0x31,0xc2,0xd4,0x4d,0xbb,0xb6,0xe3,0x86,0xd5,0x5d,0x9c,0xbe,0xb8,0x48,0x12,0x4c,0xe7,0x1a,0x3e,0x51,0x22,0x6c,0xb3,0xf,0x82,0x20,0x3f,0x25,0x53,0x7,0x68,0xa8,0x8,0x91,0x12,0x21,0x80,0x84,0x80,0xce,0x14,0xc6,0x1a,0x94,0xc6,0x41,0x1b,0x7,0x48,0x9,0x5d,0x55,0x88,0xe2,0x14,0x49,0x1c,0x61,0xdb,0xfa,0x39,0xdc,0xbe,0x67,0x3b,0x66,0xba,0x29,0x96,0xfa,0x5,0xe,0x1e,0x39,0x8e,0x63,0x67,0x2f,0x43,0x6b,0xf2,0xa1,0x23,0x96,0x5a,0x2d,0x2f,0xf2,0x29,0xc7,0x71,0x1c,0xb3,0xaf,0x1c,0xb3,0xd9,0x20,0x51,0x14,0x15,0x8c,0xd5,0x0,0x87,0x61,0x48,0x1,0x6c,0x5c,0x33,0x8b,0xbb,0x6e,0xde,0x8e,0xb5,0x6b,0x56,0xa3,0x28,0x4b,0x9c,0x3a,0xbb,0x80,0x37,0xde,0x3d,0x85,0x7e,0x56,0x30,0x60,0x87,0x86,0x6c,0xe,0xc1,0x6b,0x31,0x49,0xbb,0xb0,0xd6,0x20,0x8d,0x22,0xda,0x5e,0x1f,0x82,0x2,0x87,0xd5,0xf3,0x73,0xd8,0x7c,0xc3,0x5a,0x6c,0x5e,0x3b,0x8b,0x75,0x6b,0xd7,0xa0,0x93,0x12,0x2b,0xb0,0xa8,0x34,0x16,0x2e,0x2f,0xe1,0xec,0xa5,0x2b,0x38,0x79,0x6e,0x1,0xda,0xc5,0xa8,0xaa,0x22,0xf8,0x62,0xd1,0x72,0x6b,0x30,0xd,0x89,0x4f,0x5b,0xa4,0x10,0x90,0x99,0x4e,0xc,0x29,0xbb,0x24,0x17,0x74,0x16,0x40,0xa,0xe7,0x80,0xac,0x22,0x86,0xa2,0xe6,0x6,0xd0,0xb3,0xe,0xfd,0xf5,0xd5,0xf4,0x21,0x14,0x1c,0xd4,0xa1,0x94,0xc2,0x4c,0x87,0x8e,0x13,0xf9,0x48,0x1a,0x2c,0xf,0xf2,0x46,0xc2,0xa8,0x9,0xcc,0xbc,0x58,0xa6,0xdc,0xb4,0xd5,0xe9,0xce,0xbe,0x7,0xb3,0xda,0x60,0xa6,0x93,0xa0,0x93,0x26,0xa8,0xca,0xa,0x2,0xe4,0x8f,0xa8,0xb5,0xc1,0xd5,0xe5,0x15,0x68,0xdb,0x48,0x2d,0x45,0x13,0xfc,0x14,0xc1,0xcf,0xd0,0xb3,0x56,0x1d,0xfd,0x10,0xcc,0xec,0xa5,0x10,0x70,0xcc,0x98,0xf4,0x2c,0x3f,0x1f,0x4e,0xe2,0x1b,0x53,0x81,0xda,0xdb,0xaf,0x29,0x39,0x9b,0xd4,0x5a,0x5,0xa6,0x4b,0x5b,0x6d,0x7d,0xe8,0x0,0x20,0x42,0xa8,0x82,0x4f,0xa9,0xf5,0xcc,0x67,0x13,0xbe,0xaf,0x6e,0x48,0x2a,0xe9,0x98,0x59,0xed,0xbd,0x5d,0xe9,0x5f,0x2,0xce,0x7c,0xd8,0x44,0xd3,0x32,0xe2,0xef,0x12,0xc3,0x95,0x12,0x84,0x4d,0xd8,0xf,0x2f,0xe0,0x97,0x91,0x84,0xab,0x6c,0xb0,0x6b,0x98,0xf6,0x59,0xa5,0x22,0xc4,0x49,0x2,0x6b,0x34,0x3a,0xbd,0x19,0x64,0x83,0x15,0x44,0xce,0xc1,0x82,0x92,0xdb,0x8d,0x33,0x10,0x0,0x22,0x4e,0x81,0xf,0x9e,0x7a,0x71,0x82,0x32,0xcf,0xa1,0xe2,0x38,0x8c,0xa3,0x71,0x9c,0x86,0x34,0xe2,0x88,0x6d,0x12,0xa6,0x9d,0x24,0x1f,0x94,0x94,0xf,0x56,0x98,0xd9,0x6,0xbe,0xbf,0x5a,0x8,0x19,0x4d,0x5,0x7d,0x22,0x96,0x3b,0x47,0x71,0x82,0x7c,0xb0,0x82,0x24,0xed,0xf2,0xfd,0x57,0x85,0x65,0x5a,0x67,0x11,0x4b,0x9,0xeb,0x88,0xe1,0xae,0xab,0x12,0x9d,0xde,0x2c,0xac,0xd1,0xc8,0x6,0x2b,0xe8,0x74,0x67,0x42,0x38,0x94,0x9f,0xdc,0x4a,0xd3,0x1e,0xdd,0x43,0x79,0x22,0x67,0xda,0x39,0xae,0x38,0x70,0xc4,0x27,0x4a,0x67,0x83,0x15,0x7a,0x46,0x10,0x51,0xf0,0xf4,0x93,0x82,0x80,0x55,0xf0,0x58,0x29,0x55,0x4,0x5d,0x15,0x34,0xb6,0x4b,0x11,0x40,0x49,0x0,0xb0,0xce,0xc,0x8d,0x97,0x3e,0x89,0xdd,0xb3,0x58,0x83,0xff,0xae,0xaa,0x13,0xa9,0xfd,0x40,0xec,0xc7,0x75,0x8,0x9e,0xe4,0x72,0xfe,0xf,0x35,0x90,0x37,0x9c,0xcc,0x3b,0x1a,0xd6,0xd1,0x58,0x90,0x1b,0x61,0xea,0xb9,0xe6,0xeb,0xa3,0xe9,0xba,0x93,0xe2,0x7c,0xa7,0x44,0xfc,0xfe,0x42,0x20,0xef,0x26,0xf0,0x89,0x89,0xde,0x98,0xcd,0xb0,0xae,0x1a,0xd7,0x6c,0x6c,0xbf,0xc3,0xd4,0x74,0xec,0xb6,0xda,0x6a,0xab,0x5,0x0,0xdb,0x6a,0xab,0xad,0xb6,0xda,0xba,0x2e,0x1a,0xc3,0x86,0x47,0x99,0x7,0x48,0x80,0x46,0x20,0x83,0xc,0x8f,0xe0,0x14,0xaa,0x40,0x80,0x13,0xc9,0x2a,0x99,0x39,0x2,0xc7,0x92,0x31,0x6a,0x40,0x88,0x2d,0x97,0x30,0xab,0x8e,0x9e,0x34,0x67,0xbb,0x29,0xee,0xb9,0xfd,0xe6,0xb1,0xf5,0x5b,0x6b,0xf1,0xc2,0x1b,0x47,0xc9,0xb8,0x5c,0x29,0x14,0x45,0x86,0xd7,0xe,0x9f,0xc2,0x63,0xf7,0xdd,0x8a,0x75,0x6b,0x57,0xd,0xbd,0x37,0x89,0x23,0x3c,0xf1,0xe8,0x3e,0xfc,0xc1,0x5f,0x3c,0x5,0x6b,0x4d,0x48,0x54,0xd4,0xf9,0x0,0x9d,0xee,0xc,0x33,0xba,0x34,0xa7,0xdc,0x9a,0x46,0xa2,0x20,0xdf,0xc0,0x92,0x4,0x77,0xee,0xde,0x8c,0xdf,0xf9,0xad,0xcf,0x8d,0x3c,0x8a,0x3b,0x7c,0xe9,0x2f,0x7f,0x80,0xfd,0xef,0x9c,0xc,0xac,0xb2,0x2d,0xeb,0xe6,0xf0,0xc5,0x5f,0x7a,0x18,0xbb,0x6e,0xdc,0x3a,0x24,0x59,0x7e,0xf2,0xb1,0xfb,0x70,0xe1,0xd2,0x65,0x7c,0xf3,0xfb,0xcf,0xe3,0xf5,0xa3,0x67,0x1,0x11,0x43,0x5a,0x62,0x88,0x38,0x21,0x30,0xd3,0x4d,0xf0,0xaf,0x7e,0xef,0x1f,0xa2,0xd7,0xed,0xd4,0xf,0xfd,0xce,0xe2,0xc0,0xc1,0xc3,0xf8,0xd2,0xb7,0x5e,0xc,0x5e,0x5c,0x91,0x12,0xf8,0xe2,0x93,0xf,0xe2,0xbe,0xbb,0x6e,0x41,0xb7,0xd3,0x19,0x3a,0x1f,0xcb,0x2b,0x7d,0xbc,0xf4,0xda,0xdb,0xf8,0xc6,0x33,0xfb,0xa1,0x1d,0x50,0x16,0x39,0xa2,0x24,0x45,0x55,0x16,0x88,0x93,0x94,0x59,0x7c,0x36,0x0,0xb4,0x69,0xda,0x85,0xd6,0x25,0x6e,0xde,0xbe,0x9,0x8f,0x3d,0x78,0x7,0x76,0xdd,0xb8,0x19,0xab,0xe6,0x66,0xa7,0x1a,0xce,0x5b,0x6b,0x31,0xc8,0xa,0x1c,0x3f,0x71,0x1a,0xcf,0xbd,0x72,0x10,0x87,0x4f,0x5d,0x44,0xa5,0xd,0xb3,0xe,0x6d,0x60,0xf2,0x49,0xa7,0x2,0x63,0x3,0x0,0xfe,0xc7,0x7f,0xfa,0x39,0x6c,0x5c,0xbf,0xb6,0x21,0x77,0x22,0x83,0xf9,0xdf,0xff,0xc3,0xff,0x86,0x93,0x17,0x97,0x90,0x76,0xba,0xd0,0x55,0x19,0x40,0xe2,0x20,0x5,0x66,0x46,0x5f,0x14,0x25,0xb0,0x56,0x43,0x46,0x11,0x76,0x6d,0x5e,0x8b,0xff,0xfe,0x9f,0x7e,0xa1,0x4e,0x4e,0x76,0xe,0xdf,0x7f,0xee,0x15,0x7c,0xfb,0x27,0x6f,0x22,0x8a,0x13,0x54,0x55,0x1,0x18,0x4a,0x18,0xd5,0xba,0x62,0x23,0x7e,0x19,0x18,0x37,0x42,0x8,0x48,0xa1,0xd0,0xe9,0x48,0xfc,0xeb,0xff,0xe9,0x9f,0x60,0xd5,0xfc,0x5c,0xdd,0x6,0x39,0x60,0x90,0xe5,0xf8,0xb7,0xff,0xe1,0xcf,0x70,0xee,0xd2,0x15,0x92,0xb1,0x71,0xc8,0x81,0x65,0xd9,0xb6,0xf7,0x59,0x84,0xb3,0x70,0x8e,0x18,0x9d,0xd6,0x9a,0x90,0x46,0xec,0x8f,0x53,0xe8,0x96,0xac,0x63,0xe6,0xa9,0x61,0x50,0x93,0x18,0x8b,0xde,0x7c,0x3e,0x0,0x27,0xd,0xf3,0x77,0xd1,0x20,0x89,0x90,0x31,0xbd,0xc,0x1e,0x55,0x6d,0xb5,0xf5,0xa1,0x2,0x62,0x9e,0xf1,0x4a,0x88,0x58,0x90,0xa4,0x3b,0x70,0xb2,0x38,0x88,0x65,0x6d,0x98,0x1,0xeb,0xd9,0x64,0x3e,0xac,0xc1,0x39,0xc7,0x56,0x6,0xae,0x6,0xf7,0x19,0xec,0x91,0xd6,0x40,0x70,0x82,0xef,0xdf,0xa1,0x1d,0x86,0x13,0x22,0x30,0xea,0x3c,0x3b,0xda,0x54,0x15,0x5,0x6b,0x4,0x26,0xdc,0xa4,0xcf,0xd2,0x7e,0xeb,0xaa,0x22,0x9f,0x57,0xa3,0xd1,0x9b,0x99,0x47,0x55,0xe6,0xc,0x3a,0x29,0xb6,0x58,0x30,0x50,0x2e,0xe,0x56,0xe,0x60,0x30,0xd5,0xfb,0xee,0x1,0xe,0x2a,0x4a,0xea,0xb0,0x26,0xcf,0x8,0x9c,0x1a,0xb2,0x20,0x98,0xa1,0x4c,0x40,0xa2,0x35,0x59,0x18,0x8b,0xbc,0xbf,0xeb,0x34,0xc0,0xd2,0x33,0x9f,0xcb,0x22,0xb,0x3e,0x82,0x83,0x95,0x25,0xcc,0xaf,0x5e,0xc7,0xcc,0x77,0x4a,0x57,0xa7,0x40,0xa5,0x8,0x51,0x14,0xd,0x25,0x97,0x27,0x29,0x79,0xbd,0xc6,0x71,0x12,0xbc,0x7e,0x85,0x24,0xb6,0xb5,0xdf,0x86,0x55,0xab,0x57,0x4f,0xbc,0xa7,0x58,0x6b,0xb1,0xb8,0xb8,0xc4,0xd6,0x1c,0x65,0x48,0xf6,0x75,0xce,0xc2,0xd9,0x24,0x78,0xf,0x36,0x43,0x9e,0x4c,0x55,0x42,0x34,0x82,0xbb,0x28,0xe5,0x58,0xf,0xfb,0xa,0x33,0x80,0xe6,0x9f,0x21,0x42,0xea,0x3a,0x6a,0xa4,0xcb,0x36,0xd2,0xe2,0x9d,0xb3,0x70,0x62,0x94,0xb9,0xcd,0xd7,0xf9,0x50,0x36,0x93,0x98,0xe0,0xd9,0xe7,0x26,0x23,0x6a,0x93,0x7e,0x71,0xd3,0x24,0xbb,0xf8,0x19,0x5f,0x9f,0x8a,0x7,0x7,0xac,0x51,0x8c,0x10,0x14,0xa7,0x5d,0x7,0xa3,0x9b,0x38,0x4,0xf4,0x8d,0x4,0x8c,0xc,0x3,0x84,0xf5,0x3e,0x9,0xd9,0x86,0x80,0xb4,0xd5,0x56,0x5b,0x2d,0x0,0xd8,0x56,0x5b,0x6d,0xb5,0x75,0xfd,0x2,0x80,0xa8,0x9f,0x14,0x85,0x50,0x80,0xb5,0x81,0x2d,0xe5,0x13,0xf5,0x7c,0xa,0xab,0x52,0x8a,0xbd,0x8e,0x22,0x9a,0xfb,0x66,0x43,0x75,0xa0,0x96,0x1,0xeb,0xb2,0x84,0x8a,0x63,0x7a,0xe2,0xe4,0xf4,0x43,0xa5,0x14,0xee,0xda,0xb3,0xd,0x6b,0xd7,0xcc,0x8f,0xad,0xff,0xca,0xe2,0xa,0xe,0x9d,0xb8,0xc0,0x4c,0x14,0x62,0x9a,0xe4,0x45,0x85,0x3,0x87,0xde,0xc3,0xa7,0x1f,0xb9,0x7b,0xec,0xfd,0xb7,0xdd,0xb4,0x1d,0x6b,0x57,0xcf,0xe2,0xca,0xf2,0xa0,0x96,0xb4,0x5a,0x4b,0x89,0x8d,0x42,0x20,0x8a,0xa8,0xf9,0xf2,0x7e,0x86,0xfe,0x49,0x98,0x3c,0xfb,0x80,0x48,0x0,0xdd,0x4e,0x3a,0xb6,0xdc,0x98,0x41,0x2f,0x40,0x60,0xef,0xee,0xad,0xf8,0x67,0x5f,0x7c,0x2,0xab,0xe6,0x66,0xc7,0xde,0xa7,0x94,0xc2,0xe6,0x8d,0x1b,0xf0,0x3b,0xbf,0xfd,0x79,0xbc,0x72,0xe0,0x2d,0x7c,0xed,0xfb,0x2f,0xe3,0xea,0x52,0x41,0xc7,0x87,0xa5,0xb6,0x9d,0x34,0x19,0x5b,0x47,0xb7,0xdb,0xe3,0x26,0x5c,0x60,0xa6,0x9b,0xe2,0x5f,0x7c,0xf1,0x71,0xec,0xde,0xb1,0x75,0x62,0xa3,0x3e,0x3f,0x37,0x8b,0x27,0x1e,0x7b,0x0,0xb7,0xec,0xde,0x8e,0x3f,0xfb,0xab,0xa7,0x71,0xf4,0x54,0x46,0x49,0xbc,0xb2,0xe2,0x63,0x2d,0xd9,0x2f,0x90,0xfc,0x99,0x6e,0x58,0x33,0x83,0x2f,0x7e,0xe6,0x49,0xec,0xd9,0x7d,0x23,0xe2,0xe8,0xfd,0xbd,0xb6,0xa4,0x94,0x98,0x9d,0xe9,0xe2,0xce,0xbd,0x7b,0xb0,0xf7,0x96,0x5d,0x38,0x7d,0xf6,0x22,0xbe,0xf1,0xc3,0x97,0xf0,0xce,0xc9,0x8b,0xdc,0x2c,0xd9,0x21,0xf,0x46,0xf,0xc,0xee,0x7f,0xf3,0x30,0xbe,0xf8,0xd9,0xc7,0xc7,0x96,0xf7,0xe4,0x63,0xf,0xe0,0x8f,0xff,0xf2,0xe9,0xc0,0x44,0x21,0xaf,0x26,0x19,0x80,0x58,0xb0,0x1f,0x97,0x90,0x2,0x71,0xdc,0x85,0xb3,0x6,0x8f,0xde,0x7f,0x3b,0x66,0x67,0x7a,0x43,0xcb,0x79,0xe0,0x9e,0xbd,0xf8,0xe1,0xcb,0xef,0xa0,0xa8,0x2a,0x66,0xad,0xc4,0x81,0x9d,0x54,0x1b,0xbd,0x4b,0xf2,0x65,0x64,0xb9,0xda,0xc7,0xef,0xbf,0x3,0x1b,0x37,0xac,0x1b,0x63,0x3b,0x1c,0x3a,0x72,0xc,0xb,0x8b,0x7d,0x78,0x56,0x9,0x79,0x62,0x69,0xf6,0xc8,0x2,0x8c,0xa9,0x42,0xf3,0xe9,0x81,0x6f,0x6b,0xc,0x54,0x1c,0xc3,0x6a,0x1d,0x18,0x30,0x1e,0xd8,0xb,0x92,0x5f,0x6e,0xb3,0xac,0x21,0x56,0x8b,0x13,0x9e,0x2d,0xc5,0xcd,0x2a,0x37,0xf7,0x3e,0x69,0x38,0x0,0xeb,0x40,0xf0,0x8a,0x6c,0xab,0xad,0xf,0x7d,0x9c,0xb7,0x36,0x0,0xd4,0xa3,0xaf,0xdb,0x6,0xf3,0xcf,0x8f,0xe7,0x4,0xe2,0xbb,0x9a,0x45,0xc6,0xbe,0xb0,0x21,0x11,0x9d,0xfd,0x48,0x95,0xf,0x2b,0xba,0x6,0xfb,0xef,0xd4,0x99,0xb,0x38,0x7e,0xfa,0x2,0x1,0x84,0xce,0x12,0x88,0xcf,0x93,0x26,0x64,0xf,0x11,0x87,0xf4,0x58,0xe9,0x3d,0x69,0x7d,0x6a,0xb1,0x73,0x6c,0x3d,0xc1,0xdb,0xd6,0x48,0xd3,0xb5,0xd6,0xa2,0x93,0xc6,0xd8,0x77,0xc7,0xcd,0x63,0xa9,0xf2,0x0,0xd8,0xfb,0x8e,0xfd,0xf4,0xca,0x3c,0xc8,0x40,0x69,0x32,0x61,0x7a,0x6a,0x31,0x98,0x71,0x17,0xc5,0x31,0x8a,0x6c,0x0,0x5d,0x96,0xbc,0xed,0xe,0x69,0x77,0x6,0xde,0x83,0xd4,0xa7,0x26,0x2b,0x66,0xd,0xd3,0x3d,0x20,0xa6,0x63,0xaa,0x35,0x8c,0x20,0x70,0xcd,0xfb,0xa1,0xa,0x21,0x20,0x54,0x34,0x3d,0x9,0x98,0xb7,0x17,0xa0,0x4,0x62,0x1f,0x76,0x44,0xd6,0x14,0x6e,0x3a,0x70,0xe8,0x13,0xe8,0x15,0xfb,0xe,0x6a,0xd,0x67,0x2d,0x66,0xe7,0x56,0x87,0xc4,0x67,0x15,0xc5,0x88,0x12,0xe,0x45,0xe1,0x40,0xa4,0x28,0x22,0xb0,0xcf,0x7f,0xd6,0xfb,0xb3,0x92,0x57,0x6b,0xc,0x21,0x15,0x9c,0xac,0x3d,0x22,0xd7,0xcc,0xa6,0x48,0x58,0xe6,0x3c,0xa,0x0,0xf6,0xb,0x4d,0xa0,0x21,0x4,0xb3,0x43,0x23,0x78,0xeb,0xf,0x6b,0x2d,0x4f,0xfe,0x18,0x18,0xed,0x2,0x28,0x67,0xf9,0x9a,0xc,0xac,0x3e,0x1e,0xab,0xc9,0xef,0x4f,0x13,0x3,0xdb,0x7b,0xfb,0xf1,0x7d,0xdc,0x83,0x98,0xce,0xd5,0x93,0x2c,0xc4,0x90,0xac,0x3d,0x1,0x5d,0x23,0x94,0xc3,0xb9,0x1a,0xd,0x73,0xae,0x89,0x88,0x89,0x9,0x70,0x9a,0x18,0x4f,0xe1,0x1d,0x4b,0xd0,0xc5,0x35,0xc1,0xbd,0xb1,0x4c,0x91,0xf,0x8,0xf4,0x8d,0x3,0x72,0xf5,0x12,0x9a,0x2f,0x4f,0x7a,0x47,0xd8,0xcc,0x91,0xdd,0xa0,0x65,0x37,0x3,0x46,0x86,0x41,0xc8,0x21,0xa0,0xd4,0x35,0xcf,0xa7,0xf9,0x29,0xf6,0xbb,0xad,0xb6,0xda,0x6a,0x1,0xc0,0xb6,0xda,0x6a,0xab,0xad,0xb6,0xfe,0x7f,0x55,0x46,0xeb,0xa1,0x7,0x42,0xc1,0x21,0x20,0xce,0x91,0xf7,0x91,0x7,0x5f,0x48,0x16,0x6c,0x1,0xd8,0x21,0x1f,0x3d,0xa,0xad,0x88,0x0,0x7e,0x4d,0x70,0xb8,0x83,0x90,0xb2,0x4e,0x90,0x15,0xa,0x8f,0x3e,0x70,0xc7,0xc4,0xf5,0xbf,0x76,0xf0,0x38,0x2a,0x4d,0xeb,0x69,0x3e,0xc8,0x3e,0xff,0xfa,0x51,0x7c,0xec,0xde,0x5b,0x31,0xd3,0x1d,0x6,0xd2,0x66,0x67,0x7a,0x78,0xec,0xbe,0xbd,0xf8,0xda,0xf7,0x5e,0x8,0x5e,0x6e,0x46,0x13,0x53,0x83,0xbc,0x97,0x8,0x8c,0x93,0x11,0x49,0x9f,0xaa,0xaa,0x44,0x14,0xc5,0x90,0xce,0x6,0x1f,0xbf,0x69,0xf,0xe1,0x4a,0x2a,0xec,0xdc,0xba,0x1,0xff,0xfc,0x1f,0x3c,0x89,0x39,0x96,0x9,0x4f,0x2b,0xa5,0x24,0x1e,0xdc,0x77,0x27,0x7a,0xdd,0x2e,0xfe,0xef,0x3f,0xff,0x36,0x27,0x21,0x1b,0x0,0x71,0x48,0x85,0x5,0x46,0x1e,0xdc,0x85,0x40,0x12,0xc7,0xf8,0x9d,0x5f,0xff,0xe4,0x44,0xf0,0x6f,0xb4,0xb6,0x6d,0xd9,0x88,0x7f,0xf9,0x8f,0x7e,0x5,0xff,0xe7,0x1f,0x7e,0x1d,0x17,0x17,0xfb,0xb4,0x5f,0x4a,0xc1,0x59,0x6a,0x3e,0xd3,0x34,0xc5,0x3,0x7b,0x77,0xe0,0xd7,0x7f,0xf9,0x31,0xcc,0xf4,0x3a,0x3f,0xd3,0xf9,0x57,0x4a,0xe1,0xc6,0x6d,0x9b,0xf0,0xbb,0xff,0xe8,0xb3,0x78,0xf9,0xc0,0xdb,0xf8,0xda,0xd3,0x7,0x90,0x67,0x59,0x48,0x5,0xf6,0x64,0x9,0x29,0x15,0x5e,0x78,0xfd,0x5d,0x3c,0xf1,0xf1,0xfb,0x31,0x3f,0x2,0x8c,0xde,0x7a,0xd3,0x76,0xcc,0xf6,0x3a,0xe8,0xe7,0x55,0xb8,0x1e,0x8c,0xd1,0x24,0xf9,0x85,0x80,0x8c,0x8,0x28,0x8e,0x38,0x11,0x79,0xd5,0x6c,0xf,0x77,0xdc,0xb2,0x7b,0x6c,0x5b,0x36,0xac,0x5b,0x8d,0xbb,0xf6,0x6c,0xc5,0xab,0xef,0x9c,0xa,0x92,0x44,0xdb,0x30,0xe1,0x17,0x52,0x41,0x31,0xe8,0x4c,0x4c,0x9b,0x18,0x1f,0xdb,0xb7,0x77,0xac,0x71,0x32,0xc6,0xe0,0xe9,0x9f,0xbc,0xc6,0xc1,0x2c,0x12,0x9a,0x59,0x4b,0x56,0x32,0xb0,0x6d,0xbc,0xb7,0x94,0xa1,0xb0,0xf,0xa5,0x60,0x2a,0x66,0x16,0x72,0xd7,0x26,0x85,0xa,0x60,0x68,0x93,0xe5,0x27,0x25,0x85,0x86,0xd0,0xeb,0xdc,0xb8,0x86,0x86,0x5e,0x4,0xb9,0x36,0x5,0x88,0x98,0xe1,0xa6,0xaa,0xad,0xb6,0x3e,0xaa,0xa,0xe9,0xa9,0x1e,0x6a,0x41,0x60,0xfb,0x79,0xf9,0xbb,0xb5,0x26,0x0,0x59,0x75,0xb8,0x90,0x85,0xb5,0x2,0x4a,0xc8,0xe0,0xcf,0x49,0xdf,0x63,0x7,0x11,0x89,0x1a,0x57,0x10,0x98,0x1a,0xaa,0x71,0xf2,0xec,0x45,0x7c,0xf5,0xbb,0x2f,0xa2,0x2c,0x73,0x64,0x2b,0x4b,0x1,0x6c,0x37,0x86,0xee,0x3d,0x3e,0xa0,0x22,0xf1,0xc1,0x43,0x1c,0x5a,0x61,0x8d,0x46,0x9c,0xd2,0x84,0x81,0xb,0x0,0x21,0xf9,0x85,0x2a,0x66,0xb0,0x6d,0x5d,0x3f,0x8f,0x7b,0x6f,0xbf,0x9,0x80,0x1a,0x1b,0xcf,0x9b,0x80,0xa7,0xc,0x29,0xc6,0x4,0x8,0x7a,0x6b,0x83,0xc9,0x78,0x9a,0xa2,0x9,0x17,0x41,0xbe,0xab,0x10,0x2,0x71,0xda,0x81,0x61,0xd6,0x79,0xcc,0x20,0x54,0xda,0xe9,0x36,0x92,0x6c,0xd,0xba,0x69,0x97,0xfc,0x53,0xa5,0xc,0xa1,0x46,0xe0,0xbf,0x79,0x2f,0xd7,0x60,0x35,0x30,0xf1,0x1e,0x64,0x43,0xc0,0x15,0x1d,0x7b,0xba,0x7f,0x49,0x29,0x91,0x24,0x1d,0x98,0xaa,0x98,0x8a,0x20,0xd1,0x58,0xe3,0x90,0x67,0x7d,0xb2,0x4d,0x48,0x52,0xf2,0x31,0x64,0xf0,0xcd,0x5b,0x63,0x84,0x40,0x17,0x66,0xf7,0x47,0x90,0xb0,0x96,0xfc,0xc,0x75,0x55,0x92,0x64,0x39,0xed,0xc0,0x18,0x83,0x48,0xaa,0x30,0x9,0x62,0xad,0xc5,0xee,0x6d,0x37,0x4c,0x54,0x0,0xe7,0x79,0x81,0xf7,0x4e,0x9d,0xd,0x4c,0x41,0xa3,0x2b,0x54,0x45,0xe,0xcb,0xd6,0x1c,0x9d,0x6e,0x14,0x96,0xdd,0x9c,0x50,0xa1,0x6b,0x2f,0x62,0x5f,0xd7,0xaa,0xe,0xef,0xe2,0x7,0x1,0xba,0x87,0x28,0xb6,0x1e,0x31,0x23,0xc7,0xce,0x5,0x8f,0x3f,0x8f,0xda,0xf9,0xa0,0x91,0x51,0x0,0x6d,0x54,0xe2,0x3a,0xc,0xa5,0x8d,0xc0,0x74,0x93,0x24,0xbf,0x3f,0xdd,0xd7,0xec,0x83,0x1,0xf2,0x8d,0xf7,0x8a,0xd1,0xd0,0xa8,0x86,0x84,0xd7,0x33,0x75,0x87,0xf6,0xc2,0xd,0x83,0x7c,0xc0,0x78,0x9a,0xb1,0xc3,0xa8,0xc9,0x9f,0xfb,0xc0,0x5b,0x47,0x7e,0x93,0x2d,0xf8,0xd7,0x56,0x5b,0x6d,0xd5,0xd5,0xf2,0x82,0xdb,0x6a,0xab,0xad,0xb6,0xae,0xa7,0xbe,0x30,0xa4,0xe2,0x39,0xa0,0x91,0x86,0x6a,0x8d,0xad,0xbd,0xd3,0x9c,0x83,0xae,0x8a,0xf0,0x0,0x6f,0xad,0xe1,0x14,0x54,0x45,0xcd,0x5,0x7,0x56,0xf8,0xc6,0xcd,0x3f,0x84,0x7b,0x53,0xf0,0x9b,0xb6,0xdd,0x80,0xcd,0x1b,0xd7,0x8f,0xad,0x3b,0xcb,0xb,0xec,0x3f,0xf4,0x1e,0x9b,0x82,0x6b,0xe,0xca,0x20,0x7f,0xc1,0xa5,0x41,0x81,0x23,0xc7,0xcf,0x4e,0xdc,0xe6,0xfb,0xee,0xbc,0x5,0x69,0x24,0x59,0x2,0x44,0x8d,0x61,0x55,0xe4,0x28,0x8b,0x1c,0x92,0xa5,0x59,0x4d,0x80,0x8b,0x7e,0x17,0x2c,0xc3,0x8a,0xa6,0x36,0x5f,0x33,0xbe,0x19,0x43,0x4f,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x33,0x3d,0xfc,0xd6,0xaf,0x3c,0xf2,0xbe,0xe0,0x5f,0xb3,0xce,0x5f,0xba,0x8c,0x38,0xe9,0x50,0x63,0xda,0xf0,0x8b,0x1b,0x5f,0x3e,0xf9,0x2c,0x7e,0xfe,0xe3,0x77,0x60,0xcf,0xae,0x6d,0x1f,0x78,0xf9,0xfd,0x41,0x86,0xab,0x2b,0x19,0xb3,0xf2,0x48,0x7e,0x4d,0xc,0x4c,0x87,0xcf,0x7f,0x72,0x1f,0x7e,0xfb,0x57,0x3f,0xfd,0x33,0x83,0x7f,0xcd,0x8a,0xe3,0x8,0xf,0xdd,0x77,0x7,0xfe,0xc5,0xaf,0x3d,0x8a,0x55,0xf3,0xf3,0xdc,0xf8,0x72,0x5a,0x32,0x33,0x62,0xfa,0x85,0xc6,0x81,0xb7,0xde,0x1d,0xfb,0xec,0x4c,0xaf,0x8b,0x4f,0xdc,0x7f,0x5b,0x83,0xed,0x42,0xa0,0x98,0x97,0x61,0x7b,0xc6,0xa2,0xf,0x97,0xb9,0x6f,0xef,0x4e,0xcc,0xce,0x74,0x27,0x5e,0x8b,0xf,0xed,0xbb,0x2d,0xc8,0x82,0xad,0xa5,0xe3,0x18,0x45,0x31,0x33,0x57,0x7c,0x4a,0x24,0x35,0x90,0x7b,0xb6,0x6d,0xc0,0x96,0x4d,0x1b,0xc6,0x1,0x87,0xd3,0xe7,0xf0,0xc6,0xbb,0xa7,0xc2,0x75,0xe8,0x83,0x57,0x7c,0xaa,0xa9,0x67,0x13,0x5,0xb3,0x79,0x63,0x3,0xb8,0x6a,0x59,0xaa,0xe6,0x7d,0xa5,0x1c,0x6a,0x50,0xdc,0xb7,0x51,0x43,0x8d,0x52,0xa3,0x69,0x14,0xdc,0xf0,0x7b,0x49,0x60,0xf3,0x3a,0x10,0x0,0x7,0x92,0xb4,0xd5,0xd6,0x47,0x83,0x0,0x36,0x43,0x12,0xc8,0xb6,0x81,0xbc,0x5d,0x2d,0x7f,0xbf,0xfd,0x77,0xd5,0xa7,0x74,0x7b,0xc0,0xcf,0x7b,0x7b,0x7a,0xc0,0xce,0x39,0x47,0x2c,0x6f,0x10,0x13,0xd6,0x1a,0x4d,0xc,0xd8,0xa9,0xc0,0x56,0x93,0x25,0x4b,0xc0,0x4e,0x55,0x16,0x21,0x70,0xc7,0x8f,0x6d,0x46,0x53,0x72,0x6d,0x9c,0xa4,0xc8,0xfa,0xcb,0x0,0x40,0x40,0x92,0x31,0x80,0x90,0x1c,0x64,0x61,0x20,0x4,0xa0,0xcb,0x22,0x2c,0x6f,0x22,0xfb,0x30,0xc8,0x9c,0x69,0x6c,0x4f,0xbb,0x33,0x88,0x62,0x62,0x14,0x53,0xc2,0xb8,0x9e,0xa,0xc4,0x81,0xbd,0x12,0xbd,0x74,0x17,0xf0,0xe3,0xe,0x42,0x8,0x56,0xc4,0x4c,0xbf,0x28,0x4a,0x78,0x8c,0x49,0x98,0x49,0xa7,0x78,0x5c,0x70,0xc1,0x63,0x91,0x2,0x49,0x6a,0x99,0xab,0x97,0x5c,0x8f,0x96,0xb5,0x2e,0x24,0xda,0x43,0x88,0x90,0x8,0x9f,0x76,0xd8,0x87,0x6f,0x5a,0x6a,0x71,0xe3,0xbe,0xeb,0x43,0x40,0x2,0xb3,0xce,0x39,0x94,0x65,0x1e,0xa4,0xc7,0xfe,0xfe,0x4d,0x80,0x9c,0xe4,0x4,0x67,0x9,0x5d,0xd1,0xc4,0x59,0x9c,0x76,0x82,0xf7,0xa3,0x7,0x8e,0x28,0x15,0x58,0xe1,0xa6,0x5d,0x37,0x4e,0x5c,0xfd,0xc5,0x4b,0xb,0x18,0x14,0x4,0x8e,0xd2,0x4,0x5c,0x84,0x95,0xa5,0xab,0x9c,0xc0,0xc,0x14,0xf9,0x80,0x15,0x5,0x74,0x9d,0x99,0x8a,0xbd,0x62,0x19,0xd8,0xd,0x76,0x16,0xcc,0xd0,0xe,0xe1,0x49,0x9e,0x81,0xcd,0x1,0x20,0x5e,0x66,0x1d,0x3c,0x87,0x45,0xf3,0x3a,0x46,0x78,0xad,0x66,0xce,0x8d,0x52,0xe7,0x26,0x49,0x5e,0x9b,0x3f,0x4f,0x7a,0x4d,0x4c,0xc3,0x5c,0xa7,0x2,0x7b,0xd3,0xde,0xdf,0x70,0x57,0x19,0xa,0x13,0x6e,0xae,0xdd,0x83,0xe9,0x35,0x7b,0x5c,0x34,0xd2,0x8c,0x1b,0x89,0xc5,0x7e,0x79,0xe1,0x3b,0xed,0x1a,0x2b,0x71,0x53,0x20,0xc9,0xf7,0x7,0xf5,0x5a,0xd8,0xaf,0xad,0xb6,0xda,0x6a,0x1,0xc0,0xb6,0xda,0x6a,0xab,0xad,0xeb,0xbc,0x9a,0x49,0xa5,0x3e,0x19,0xd7,0xb3,0x98,0x9c,0xa3,0x44,0x43,0xcf,0xde,0x12,0x61,0x6,0x9e,0xc2,0x10,0x8c,0xd6,0x21,0x1c,0x81,0x1a,0xa5,0x5a,0x86,0x43,0x8c,0x2d,0x92,0x16,0x3d,0xf6,0xc0,0xed,0x88,0xa3,0x71,0xe0,0xed,0xd8,0xc9,0x73,0xb8,0xbc,0x92,0xf3,0xc,0xb7,0x8,0x8d,0x87,0x67,0xf4,0x3d,0xbb,0xff,0x30,0x4a,0x6e,0x16,0x9a,0xb5,0x76,0xcd,0x3c,0xee,0xbb,0xed,0x46,0x96,0x9b,0xea,0x20,0x33,0xf2,0xfe,0x7a,0x41,0x2,0x8c,0x3a,0x9,0x90,0x4c,0xc7,0x15,0x87,0x92,0x8c,0x97,0x8a,0x12,0x7c,0xe1,0x13,0x77,0x63,0xeb,0xe6,0x1b,0x86,0xc0,0xb7,0xb,0x97,0x2e,0x63,0xe1,0xf2,0x55,0x68,0x3d,0xe,0xde,0x5c,0xb8,0xb8,0x80,0x6f,0x3c,0xfd,0xa,0x1c,0x8,0x20,0xf5,0xcc,0x8d,0x49,0xdd,0x81,0x10,0x2,0x77,0xed,0xd9,0x8a,0x47,0xee,0xbf,0x2b,0xbc,0x56,0x69,0x8d,0x85,0xcb,0x57,0x71,0x71,0xe1,0x2a,0xf2,0xa2,0x1c,0xfb,0x4c,0x55,0x55,0xf8,0xea,0xb7,0x9e,0x83,0x85,0x8,0x66,0xfc,0x11,0xb3,0x2a,0x7e,0xe9,0x91,0xbb,0xf1,0xf8,0xc3,0xf7,0xc,0xf9,0x13,0x36,0xab,0x2c,0x2b,0x9c,0xbb,0xb0,0x80,0xfd,0x6f,0x1e,0xc1,0xd3,0x3f,0x79,0x15,0xcf,0xbe,0x70,0x0,0xaf,0x1f,0x3c,0x82,0xf3,0x17,0x17,0xa0,0xb5,0x99,0xa,0x6,0xdf,0xba,0x67,0x27,0xfe,0xf1,0xaf,0x3c,0x88,0x34,0x89,0xe9,0x1c,0x72,0x23,0xe6,0x93,0x82,0x9f,0x7f,0xfd,0xdd,0x89,0xe7,0xe4,0xbe,0x3b,0x6f,0xc1,0x4c,0x2f,0xd,0x9e,0x62,0x71,0x92,0x12,0xb,0x6,0x80,0x54,0x24,0x27,0x53,0x51,0xc,0x25,0x81,0xfb,0xef,0xba,0x79,0xea,0xf5,0x78,0xe3,0xd6,0x4d,0xd8,0xb6,0x71,0x3d,0xa2,0x38,0x41,0x9c,0xa4,0xe1,0x5f,0xcb,0xe0,0xa1,0x4f,0x12,0x96,0x42,0xe1,0x53,0xf,0xdf,0x8d,0x48,0x8d,0x33,0x7f,0x7e,0xfc,0xf2,0x1b,0x75,0x17,0x5,0x4,0x56,0x62,0x48,0x93,0x4,0x1,0x1c,0x9e,0xa9,0xd8,0x10,0xc2,0xf3,0x35,0x6e,0xa9,0xa1,0x66,0x69,0xb0,0x67,0x2c,0x51,0x53,0x6f,0x42,0xa2,0x70,0x70,0x94,0xa,0x52,0x61,0x34,0xd8,0x9f,0xe3,0x9,0xc2,0x52,0xaa,0x76,0xc0,0x69,0xeb,0x23,0x1a,0xe8,0xed,0x48,0x9b,0x2f,0x2,0x6b,0x2f,0xc8,0x4c,0x19,0x58,0x69,0x86,0x80,0x38,0xe7,0xa0,0x58,0xfe,0xeb,0xc,0xcb,0xda,0x3d,0x90,0xa3,0x2b,0x4f,0x55,0xba,0x66,0x70,0x80,0x97,0xe0,0x3b,0x6b,0x89,0xe5,0xc7,0xc,0xa5,0xaa,0x2c,0x90,0xf5,0x57,0xa0,0x75,0x85,0x22,0x1f,0xa0,0x2a,0xb,0x18,0xa3,0x29,0x5,0x9d,0xbf,0xaf,0xc4,0x40,0xf4,0x21,0x18,0x2a,0xa4,0xf2,0x4a,0x15,0xb1,0x1f,0xa8,0x9d,0xc,0xc6,0x30,0x33,0xac,0xcc,0x32,0x58,0x4b,0xa1,0x25,0x46,0x57,0xc4,0x80,0x8b,0x62,0x2,0xbf,0xec,0x64,0xb8,0xa3,0xdb,0xeb,0x31,0x6b,0x4f,0x5,0xf6,0x31,0x81,0x53,0x92,0x6d,0x1e,0x54,0x8,0xb1,0xb0,0x96,0x0,0x4b,0x15,0x45,0xc8,0xb3,0x3e,0x4b,0x8c,0x3b,0x70,0x96,0x99,0x92,0xd,0xd4,0xc7,0x33,0xdf,0x22,0xe9,0xa6,0x8c,0xd9,0x65,0x3d,0x6e,0xf8,0xfb,0x58,0x23,0xc9,0x7d,0x1a,0x3c,0xd3,0xf4,0xf2,0x8b,0xe3,0x34,0xf8,0x5,0xaa,0x28,0x9,0xe3,0x5c,0x14,0xc5,0x3c,0x29,0x43,0xa9,0xbf,0x34,0xf1,0xa1,0x11,0x7b,0xd6,0x25,0xdf,0xe3,0x35,0xa7,0xcd,0xfb,0x60,0x2d,0x1f,0xfc,0xb5,0x65,0xdd,0x3c,0x36,0xdf,0xb0,0x6e,0xe2,0xfa,0x8f,0x9f,0x38,0x1d,0xac,0x14,0x0,0x20,0xcf,0xfa,0x80,0x73,0xc8,0x7,0x2b,0xf4,0xb3,0x7,0x8a,0xd9,0xb2,0xc3,0xab,0x9,0x22,0xde,0xbe,0xe0,0xff,0xe7,0x19,0x7c,0x1e,0xdc,0x63,0xa6,0xb5,0xa7,0x99,0xa,0x81,0x90,0xaa,0x4c,0x40,0x21,0x78,0x12,0xb0,0xe,0x6,0x19,0x66,0x8,0xba,0xfa,0x5a,0x1f,0x3,0xc6,0x3e,0xf0,0x17,0x67,0xec,0x59,0xc9,0x5f,0x5e,0x4d,0x40,0xaf,0x9,0xec,0x4d,0x82,0xde,0xf8,0x6b,0x32,0xf4,0xac,0x55,0x27,0x91,0x34,0xbd,0x97,0xdd,0x90,0x54,0xb7,0xf6,0x91,0x75,0x53,0xb6,0x4d,0x4c,0x7,0x2a,0x7f,0x8a,0x7d,0x76,0x8d,0xcf,0xb8,0xd6,0xa7,0xb6,0xad,0xb6,0xda,0x1a,0xa9,0x56,0x2,0xdc,0x56,0x5b,0x6d,0xb5,0x75,0x1d,0x95,0x60,0xd3,0x6c,0xa9,0x14,0x7b,0xd,0x71,0xb0,0x86,0xa6,0xe0,0x4,0xef,0x11,0x14,0x9a,0x21,0x6e,0x44,0x9a,0xc0,0x9a,0xb3,0x64,0x10,0xdf,0x64,0xde,0x51,0x60,0x48,0x8c,0xf5,0xab,0xe7,0x70,0xeb,0xee,0x1d,0x63,0xeb,0xd5,0xc6,0xe0,0x47,0xaf,0x1c,0x6a,0xc8,0x78,0xe8,0x31,0xd4,0xfb,0xf0,0xe9,0xaa,0xc2,0xb9,0x85,0x45,0xbc,0x77,0xfa,0x22,0x6e,0xde,0xb9,0x65,0xe8,0xb3,0x52,0x4a,0x7c,0xe2,0xe1,0x7d,0xf8,0xc9,0x1b,0xc7,0x42,0xd3,0x12,0x45,0x31,0x74,0x59,0x20,0x4e,0x3a,0x35,0x3,0xb1,0x91,0x4a,0x8,0x58,0xe,0x97,0xc8,0x27,0x1e,0x87,0x4d,0xeb,0xe7,0xf1,0xe0,0xbd,0xb7,0x3,0x0,0x16,0x97,0x96,0xf1,0x83,0x1f,0x1f,0xc0,0xab,0x6f,0x1f,0xc7,0xa0,0xb2,0xb0,0xba,0xc2,0x8e,0x4d,0x6b,0xf1,0xc4,0xc3,0x77,0x61,0xef,0x2d,0xbb,0x58,0x82,0x6a,0xf0,0xad,0xa7,0x5f,0x46,0x5e,0x59,0x48,0xc5,0xcc,0x18,0xeb,0xd0,0xe9,0xcd,0x4e,0x64,0x6a,0x44,0x51,0x84,0x5f,0x7d,0xe2,0x21,0x44,0x91,0x42,0x51,0x56,0x78,0x69,0xff,0x9b,0xf8,0xc1,0xf3,0x6f,0x60,0x61,0xa9,0xf,0x27,0x22,0xac,0xe9,0x45,0xf8,0xc4,0x3,0x77,0xe0,0xa1,0xfb,0xef,0xc,0x1,0x22,0x7,0xe,0xbe,0x8b,0x77,0x4e,0x9c,0xb,0x72,0x37,0xdf,0xe4,0xdc,0xb4,0x75,0x1d,0x3e,0xf3,0xd8,0xfd,0x63,0xe0,0x97,0x7,0xfe,0x5e,0x7b,0xf3,0x30,0x9e,0x79,0xf9,0x2d,0x9c,0xba,0x70,0x15,0x32,0x8a,0x99,0x6d,0x43,0x72,0xaa,0x24,0x8e,0xb0,0x79,0xed,0x3c,0x3e,0xf5,0xf0,0x9d,0xb8,0x7b,0xef,0x1e,0xc4,0x13,0x24,0xd1,0xb7,0xed,0xd9,0x81,0x27,0x1e,0xdc,0x8b,0xa7,0x5e,0x78,0xbb,0x96,0xb8,0x31,0x83,0xee,0xdc,0x95,0x3e,0xe,0x1f,0x3d,0x89,0x3b,0x6e,0x1d,0x96,0xf0,0xae,0x59,0x35,0x8b,0xbd,0x3b,0x37,0x63,0xff,0x91,0x33,0x30,0xdc,0x44,0x2,0x80,0x52,0x24,0xe1,0x8e,0xe3,0x18,0x52,0x45,0xd8,0xbd,0x69,0x35,0x36,0x6e,0x58,0x3b,0xf5,0x7a,0x4c,0x93,0x18,0xf7,0xed,0xbd,0x11,0xa7,0x2f,0x5d,0x85,0x70,0xe,0xce,0x91,0xc4,0x3b,0x8e,0x89,0x59,0xe8,0x25,0xeb,0x1b,0xd6,0xcc,0xe2,0xa6,0x9d,0xdb,0xc7,0x3e,0x7f,0x65,0x71,0x11,0x2f,0xbe,0x7e,0x18,0x2a,0x8a,0x50,0x64,0xc4,0x3c,0xf1,0x69,0xa5,0xba,0x2c,0x9,0xd0,0x88,0x22,0xe8,0x3c,0x83,0x15,0x2c,0x2b,0x6b,0x80,0x74,0xd6,0x54,0xd4,0xd8,0xb3,0x21,0x3d,0x79,0xd,0xba,0x86,0xfc,0x8c,0x93,0x29,0xd9,0x23,0xd0,0xc1,0xc2,0x7a,0x73,0xfa,0x20,0xb3,0x14,0x63,0x52,0x39,0x7,0x7,0xc8,0x8,0xb0,0x2d,0xb,0xb0,0xad,0x8f,0x0,0xff,0xe3,0xa6,0xde,0xb3,0xc4,0x3c,0x23,0x79,0x98,0xed,0x45,0xd7,0x3b,0x1,0x6c,0x8a,0x27,0x77,0x24,0xfb,0xc8,0x29,0x62,0xd2,0x1a,0xd,0x21,0xa2,0xc0,0xd4,0xf3,0x9e,0x9f,0xc6,0x4e,0x67,0xd4,0x39,0x6,0x7e,0xac,0x33,0x28,0xb2,0xc,0x5a,0x57,0x30,0x55,0x45,0xc,0x31,0x21,0x98,0x75,0x9b,0xf0,0x58,0x5e,0x84,0x14,0xf7,0x3c,0x1b,0xa0,0xd3,0xe9,0x51,0x22,0xac,0xa4,0x0,0x1d,0xa9,0x14,0xb2,0xc1,0xa,0x7a,0xb3,0xf3,0x24,0x13,0x9d,0x30,0x19,0xe1,0xc7,0x49,0x5d,0x95,0xc4,0x4e,0xd7,0x1a,0xc6,0x54,0x50,0x2a,0x86,0x73,0xb4,0x7f,0x51,0x12,0x21,0xcf,0x27,0x4b,0x6a,0x7b,0xdd,0x94,0xbd,0xf4,0x2a,0x74,0x7a,0x33,0x18,0x2c,0x2f,0x6,0x10,0xcd,0x23,0x39,0x21,0x9d,0xd7,0x2,0xba,0x2c,0x11,0xa7,0x29,0x85,0x31,0x99,0x8a,0x19,0x8b,0x34,0x19,0x10,0x45,0x31,0x8c,0xae,0x98,0x81,0x4c,0x41,0x59,0x9d,0x9,0x1e,0xb4,0x0,0xd0,0xcf,0x35,0xdf,0x7b,0x35,0xcb,0xb3,0x1d,0x0,0x89,0x3c,0xeb,0xa3,0x27,0xe7,0x31,0x9d,0x8d,0x66,0xd9,0x53,0x8f,0x98,0x72,0x42,0xc8,0xc0,0x1a,0xf4,0xa1,0x46,0x5a,0x57,0xe8,0x75,0xba,0xd0,0x15,0x8d,0xa1,0x2a,0x8e,0x19,0x94,0x23,0x59,0xb4,0x8,0x69,0xcf,0x24,0xc3,0x5,0x7b,0x2f,0xfa,0x80,0x8d,0x87,0xef,0xd9,0x83,0x24,0x19,0xbf,0x57,0x18,0x63,0xf0,0xc2,0x81,0x43,0x1,0x2c,0xa4,0x74,0x7b,0x9,0x91,0x44,0xc1,0x13,0xb0,0xaa,0x4a,0x44,0xa0,0xc9,0x44,0xaf,0x28,0x90,0xc,0x38,0xd7,0x60,0x99,0x8,0x63,0x27,0x82,0x9d,0x46,0xcd,0xea,0xab,0x7d,0xf2,0x64,0x8d,0x5f,0xf,0x1,0x7e,0xcd,0xb1,0x57,0xd0,0x73,0x4b,0x8,0x14,0xf9,0xe0,0x20,0xd8,0x24,0x89,0x6d,0xed,0x37,0x28,0x26,0x3,0x67,0x8e,0xd6,0x12,0x2,0x47,0x9a,0xfe,0x84,0x4d,0xc0,0x6f,0xf8,0xa,0x1d,0x7,0xe7,0x26,0x84,0x8b,0x34,0x3d,0xfc,0xc4,0x50,0xc0,0xc9,0xb4,0x7f,0x7f,0xe6,0x11,0xa2,0xc1,0xbc,0x14,0xed,0x80,0xd9,0x56,0x5b,0x6d,0xd,0xf7,0x5d,0xed,0x21,0x68,0xab,0xad,0xb6,0xda,0xba,0xae,0x20,0xc0,0xc0,0xd0,0xd0,0x55,0x5,0x6b,0x6d,0x1d,0xbc,0xc0,0x8c,0xba,0x66,0x32,0x21,0x40,0xc1,0x9,0xc4,0x7a,0x20,0x50,0xc7,0x3f,0x29,0x93,0xf4,0x49,0x84,0xf7,0x9,0x29,0xf1,0xe8,0xbe,0x5b,0xd1,0xed,0x8e,0x37,0x3c,0x17,0x17,0x16,0x71,0xf2,0xd2,0x4a,0x0,0x11,0x55,0x1c,0xc3,0x5a,0x87,0x8a,0x1b,0x40,0x0,0x30,0xda,0xe0,0xd9,0x97,0xde,0x84,0x31,0xe3,0x33,0xd2,0x5b,0xb7,0x6c,0xc2,0xed,0xbb,0xb7,0xc2,0x68,0xcd,0xd2,0x2e,0x6a,0x32,0xb5,0xae,0xc8,0x47,0x48,0x8,0xa4,0x1d,0xa,0x99,0x88,0x93,0x94,0x25,0x5b,0x86,0xcd,0xbf,0xc7,0xeb,0xa1,0x7b,0x6e,0x45,0xa4,0x24,0xce,0x9e,0x5f,0xc0,0xff,0xf5,0xff,0xfc,0xd,0xbe,0xf7,0xe2,0x9b,0x58,0xb8,0xba,0x8,0x5d,0x95,0x28,0x8a,0x1c,0x87,0x8e,0x9f,0xc6,0xef,0xff,0xe9,0x37,0xf0,0xc7,0x5f,0xf9,0x36,0x96,0x96,0xfb,0x38,0x7c,0xec,0x14,0x9e,0x7f,0xfd,0x70,0x58,0x17,0x40,0x32,0xa9,0xaa,0xcc,0x83,0x37,0x5c,0xb3,0x76,0xdd,0xb8,0x19,0xeb,0xd6,0xcc,0x23,0x2f,0xa,0x7c,0xf9,0xaf,0xbe,0x8f,0xaf,0x7c,0xef,0x55,0x5c,0x5a,0x2e,0x60,0x41,0x12,0xe5,0x85,0x95,0x2,0x5f,0xfd,0xde,0x4b,0xf8,0x3f,0xfe,0xe3,0x97,0xf0,0xde,0xc9,0x33,0xb8,0xba,0xb8,0x84,0xbf,0xfc,0xde,0xb,0x50,0x51,0x14,0x1a,0xe5,0x28,0x4e,0x10,0x47,0x12,0xbf,0xf6,0xc4,0x43,0x48,0xd3,0x64,0x6c,0x1d,0x4b,0x2b,0x7d,0xfc,0xc9,0x7f,0xfb,0x2e,0xbe,0xfc,0xd4,0x4b,0x38,0x71,0xfe,0x2a,0xa7,0xdd,0xea,0x20,0x77,0x8d,0xa2,0x8,0x16,0x2,0x67,0x2e,0xaf,0xe0,0xf,0xbf,0xf6,0x34,0xfe,0xf0,0x2f,0xbe,0x8d,0xc5,0xe5,0x95,0x89,0xcd,0xf3,0x27,0x1f,0xbe,0x7,0x9b,0xd7,0xcd,0x5,0x3f,0x48,0xc9,0x9,0xa2,0xce,0x5a,0x3c,0xfb,0xd2,0x5b,0x30,0x23,0x8c,0x1f,0x29,0x25,0x1e,0xbe,0xf7,0x66,0x58,0x5d,0x85,0xeb,0xc7,0xcb,0xd2,0x92,0xb4,0x83,0xb2,0x28,0x60,0xad,0xc5,0xc7,0xef,0xdf,0x5b,0x27,0xff,0x4e,0xa9,0x7b,0xf6,0xee,0xc6,0x5c,0x8f,0x12,0x85,0xbd,0x97,0xa0,0x97,0x8b,0x45,0x31,0xa5,0x72,0x3e,0x76,0xdf,0x5e,0x74,0x26,0x1c,0x83,0x57,0x5f,0x3f,0x84,0x7e,0x5e,0xa2,0xaa,0x4a,0xc4,0x49,0x4a,0xe0,0x86,0x73,0xd0,0xba,0x24,0x2f,0xaf,0x38,0x41,0x59,0xe6,0x1,0x0,0xa1,0x24,0x60,0xc7,0xb2,0x5f,0x53,0xa7,0x9e,0xf2,0x7f,0x2,0xb5,0xef,0x9f,0xf,0x2d,0xa8,0x49,0x3a,0xb4,0xc,0x34,0xd9,0x1b,0xcd,0x66,0xaa,0xf1,0x3e,0xa6,0x4e,0xb5,0xc3,0x4d,0x5b,0x1f,0xcd,0x28,0x2f,0xa3,0x21,0x50,0x41,0xa9,0x61,0xa9,0xa5,0x35,0x26,0x24,0x6c,0x7b,0xf9,0x7b,0xb0,0x58,0xe0,0xeb,0xde,0x83,0x49,0x1e,0xc4,0x31,0x46,0x7,0x16,0x9e,0x14,0xd7,0x68,0xf,0x84,0xe0,0x20,0xd,0x4a,0x74,0x35,0x5a,0x7,0x6f,0x3d,0xbf,0x3d,0x46,0x6b,0x54,0x65,0x8e,0x22,0x1f,0xf0,0x3d,0xc8,0x50,0xca,0x3c,0x33,0xef,0x9c,0x25,0x6,0x59,0x55,0x16,0x48,0xbb,0x3d,0x66,0x2,0xea,0x21,0xe0,0x62,0x7c,0xb5,0x14,0x4a,0x65,0x9d,0x85,0x14,0x2a,0xb0,0x7d,0x2d,0x4b,0x7c,0xfb,0xd9,0x64,0x0,0x70,0xf5,0xfc,0x6c,0x90,0x9,0x5b,0x6b,0x90,0x76,0x7b,0x21,0x90,0xc8,0xfb,0xe7,0x49,0x6,0xf3,0xd2,0xee,0xc,0x92,0x6e,0x37,0x30,0xdc,0xbc,0x24,0x58,0x8,0x19,0x12,0x88,0xe3,0xa4,0x83,0x28,0x8e,0x21,0x95,0xc2,0x4c,0x1a,0x61,0xa6,0x37,0x6e,0x7f,0x60,0xac,0xc5,0xc5,0x85,0x5,0x62,0x63,0x2,0xb0,0xc,0xa8,0x6a,0x3f,0x8e,0x29,0x19,0xd2,0x70,0x27,0x20,0x80,0x34,0xde,0x32,0x4b,0x3b,0xe9,0x74,0x50,0x95,0x5,0xf2,0x41,0x1f,0x71,0xda,0xe1,0x70,0xac,0x98,0xd2,0xe4,0x99,0x95,0xa8,0x54,0x1c,0xc6,0x47,0x1f,0x90,0xa5,0x98,0xa5,0x9f,0xa4,0x5d,0x96,0xa7,0x12,0xcb,0x73,0xdd,0x5c,0x17,0xf7,0xdc,0x71,0xcb,0xc4,0x55,0x5f,0x5a,0xb8,0x82,0x13,0x67,0x17,0x2,0x4b,0x5c,0x30,0x4b,0x12,0x70,0xe8,0x2f,0x2f,0x22,0xcf,0xfa,0xa8,0xa,0xba,0xa7,0x9b,0x86,0xa7,0xb0,0xf,0x1b,0x9,0x72,0x5e,0x29,0xc2,0x7d,0x44,0x48,0x11,0x26,0x1d,0x3,0xe8,0x25,0xbc,0xd7,0xaa,0xf,0xf5,0x32,0x53,0x98,0x6a,0x2e,0x28,0x18,0xc0,0xb0,0x1c,0x3e,0x20,0x44,0x36,0xe4,0xc9,0xe7,0x5c,0x83,0x74,0x37,0xa,0xbe,0x61,0x48,0x4e,0xdf,0x5c,0xba,0x67,0x79,0x6,0xd0,0xd2,0xb3,0xfb,0x86,0xe4,0xc8,0xe2,0x1a,0x6b,0x7f,0x7f,0x80,0xee,0x67,0x9c,0x1,0xf8,0xc0,0x6f,0xb5,0xb6,0x15,0x2,0xb7,0xd5,0x56,0x5b,0x2d,0x0,0xd8,0x56,0x5b,0x6d,0xb5,0x75,0xfd,0xe,0xea,0xdc,0x8,0xa,0x8,0x48,0x25,0x83,0x1f,0xf,0x85,0x80,0x68,0x6e,0x16,0xa2,0xf0,0xf0,0x59,0x7b,0xfc,0xd5,0xf,0x89,0x11,0xbf,0xe6,0x67,0xeb,0x49,0xee,0x28,0xd1,0x89,0x15,0xf6,0xdd,0xb1,0x67,0xe2,0xb3,0xe8,0xab,0x6f,0x1d,0xb,0xa6,0xea,0x5e,0xd6,0x15,0x45,0x11,0xd2,0x4e,0x8f,0xc2,0x23,0x38,0x80,0xe2,0xf0,0xc9,0x8b,0x38,0x73,0xfe,0xe2,0xd8,0x32,0x22,0xa5,0xf0,0xc4,0xa3,0xf7,0x91,0xe7,0x9c,0x73,0x90,0x9c,0x5a,0x2b,0x78,0x1b,0xd,0x37,0x8c,0x71,0xd2,0x9,0xc,0xc,0x34,0x24,0x55,0xa3,0x35,0x33,0xd3,0xc3,0xf2,0xca,0x0,0x7f,0xfc,0xb5,0xef,0xe1,0xfc,0xd5,0x3e,0x19,0xaf,0xa7,0x5d,0xf6,0x8c,0xa3,0x65,0xaa,0x38,0xc1,0x4b,0x6f,0x1d,0xc7,0xbf,0xff,0xaf,0x5f,0xc5,0x9f,0xfe,0xd5,0xf,0xd9,0x30,0x9f,0x7c,0xf9,0x0,0x62,0x4d,0x5a,0x37,0x39,0xad,0xb1,0x93,0x26,0xb0,0xce,0xe1,0xaf,0x9e,0xfa,0x31,0x5e,0x79,0xfb,0x4,0xfb,0x5d,0xe9,0xe0,0xb,0x57,0x95,0x4,0x90,0x9d,0xbd,0x92,0xe1,0xdf,0xfd,0xd7,0xaf,0xe3,0xf,0xbe,0xfc,0x4d,0x5c,0xbc,0xb2,0x14,0x40,0x30,0xdf,0x68,0x3f,0x78,0xc7,0x2e,0x6c,0xdb,0xb2,0x71,0x6c,0xf9,0x59,0x5e,0xe0,0x4f,0xbe,0xfa,0x3d,0x1c,0x38,0x72,0x8a,0xa5,0x64,0xf5,0xc1,0x56,0x2a,0x66,0xdf,0xad,0x12,0x65,0x96,0x21,0x1b,0xac,0xc0,0x5a,0x83,0x37,0x8e,0x9e,0xc3,0x7f,0xfe,0xf3,0x6f,0x63,0x71,0x69,0x79,0x6c,0x79,0xdd,0x4e,0x8a,0xc7,0x1f,0xbc,0x1d,0x10,0xe0,0x4,0x47,0x1b,0xfc,0xa3,0x8e,0x9e,0xbd,0x8c,0x33,0x67,0x2f,0x8c,0x7d,0x66,0xfb,0x96,0x8d,0xd8,0xb3,0x6d,0x3,0x92,0x4e,0x37,0x0,0x89,0x51,0x9c,0xa0,0x2c,0x72,0xa4,0xdd,0x1e,0x6e,0x58,0xd5,0xc3,0xae,0x1b,0x37,0xbf,0xef,0x35,0x39,0x3b,0xd3,0xc5,0xbd,0xb7,0xde,0x88,0x24,0xed,0x90,0xff,0x9f,0x8a,0x98,0x5,0x49,0x1e,0x83,0xab,0x66,0x67,0xb0,0x6f,0x82,0x8c,0x78,0x90,0xe5,0xf8,0xd1,0xcb,0x6f,0x87,0x10,0xe,0x7f,0x4e,0xaa,0xaa,0xc,0x40,0x5e,0x2d,0xa9,0x53,0xd,0x10,0x1,0x30,0xba,0xc,0x1e,0x83,0x5e,0x76,0x16,0xd2,0x7f,0x59,0x36,0xec,0xc2,0xb9,0x75,0xdc,0x20,0xb3,0x74,0x58,0x88,0x21,0x23,0xf7,0xc0,0xa0,0x68,0xb0,0x36,0x5d,0x0,0x10,0xdb,0x6a,0xeb,0x23,0xa8,0x86,0x9,0xd9,0x50,0x10,0x83,0x20,0xaf,0x56,0xe1,0x7d,0x3a,0x99,0x21,0x4b,0xcc,0x2f,0x15,0xa4,0x98,0x7e,0x8c,0x6,0x6a,0x66,0x35,0x79,0xdc,0xc9,0x30,0x3e,0x4e,0x93,0xe,0x7a,0xe0,0x90,0x52,0xe2,0xb,0x28,0xa5,0x82,0x24,0x57,0x57,0x25,0xca,0x3c,0x83,0x31,0x1a,0x45,0x9e,0xa1,0x2a,0xe9,0xf5,0x22,0xeb,0xa3,0x2c,0xb,0x38,0x67,0xb1,0x74,0x75,0x1,0x65,0x51,0x20,0xcf,0xfa,0x28,0x8b,0xc,0xba,0x2c,0x91,0xf,0x56,0x82,0x34,0x78,0xb2,0xfa,0xd1,0x71,0xb8,0x85,0xa,0xe0,0x1c,0x81,0x9c,0x1a,0xce,0x58,0x68,0x5d,0xe1,0xcc,0xf9,0x4b,0x13,0xb7,0x77,0xdd,0xea,0x39,0x44,0x4a,0xb2,0xfd,0x0,0x5,0x62,0x18,0x5d,0x21,0xed,0xce,0xd0,0x44,0x2,0x7,0xa1,0x78,0x30,0xd4,0x83,0x9f,0x49,0xa7,0xcb,0x49,0xe3,0x75,0x52,0xb1,0x8a,0xa2,0x60,0x25,0x60,0xad,0xc5,0xf6,0x1b,0x56,0x21,0x89,0xc7,0xc5,0x54,0x45,0x51,0xe2,0xf2,0x52,0xc6,0xb2,0x62,0x1b,0xbc,0xf0,0xea,0x80,0x16,0x8b,0xaa,0x98,0xcc,0x5e,0x97,0x51,0xc,0xa3,0xcb,0x21,0xff,0x5b,0x2f,0x4b,0x36,0xba,0x22,0xb,0x8f,0x24,0x41,0xb7,0x47,0xc0,0xa6,0xf2,0x9e,0xbd,0x7e,0x4c,0xf4,0xc7,0x8b,0x53,0xd0,0x8b,0x7c,0x10,0x6c,0x3c,0x54,0x14,0xe1,0x37,0x9e,0x7c,0x68,0xa2,0xcf,0xac,0x73,0xe,0x3f,0x7c,0xee,0x25,0xe4,0x65,0x15,0xf6,0x59,0x40,0xb0,0x57,0x2d,0x1,0x97,0x82,0x1,0x3d,0xff,0x6c,0xe0,0xb7,0x8f,0x2c,0x3b,0x6a,0x5f,0xca,0x70,0x7f,0xe1,0x89,0x3c,0x3f,0x21,0xe3,0x53,0xa0,0xfd,0x36,0xba,0x89,0x12,0xd5,0x49,0x17,0xc0,0xf8,0xe5,0x1f,0x98,0x78,0x9c,0xc6,0x3e,0x3a,0x6f,0x33,0x26,0x98,0x15,0xe3,0xe0,0x5b,0x53,0x22,0x5f,0x2f,0x58,0x8c,0x1d,0x97,0x6b,0x2,0x70,0x23,0xcf,0x4f,0x1e,0xac,0xfc,0x85,0xd6,0xb5,0xee,0x3d,0xa3,0xe9,0xe0,0x6d,0x0,0x48,0x5b,0x6d,0xb5,0xd5,0x2,0x80,0x6d,0xb5,0xd5,0x56,0x5b,0xd7,0x71,0x5f,0xc8,0x4c,0x2e,0x2f,0xe5,0xf5,0xfe,0x3c,0xde,0xd7,0xcf,0x39,0x87,0x92,0x1b,0xf,0xad,0x2b,0x96,0x9,0x45,0xb5,0x99,0xba,0xae,0x82,0x7,0x9a,0x37,0x90,0x27,0xaf,0xbd,0x8,0xf7,0xdc,0xb2,0x1d,0xab,0x57,0xcd,0x8d,0xad,0x73,0xa5,0x3f,0xc0,0x81,0x23,0x67,0x20,0x20,0x42,0x23,0xe9,0x1b,0x4b,0x2,0xeb,0x8,0x98,0x29,0xb2,0x1,0xaa,0x4a,0xe3,0x85,0xfd,0xef,0xc0,0x4e,0x78,0x28,0xdd,0xb9,0x7d,0x33,0xb6,0xdf,0x30,0x4f,0xe6,0xf5,0xcc,0x3e,0xf4,0x52,0x26,0x67,0xa9,0xa1,0x69,0x86,0x97,0xf8,0xa6,0x6c,0x5a,0x3d,0xfb,0xe2,0x1b,0x38,0x73,0x71,0x11,0xce,0xba,0xb0,0xdf,0x46,0x6b,0x38,0x36,0x4d,0x2f,0xd8,0xe3,0xe9,0xd4,0xa5,0x45,0x2c,0x5c,0x5d,0x86,0x75,0x2e,0xc8,0xa5,0x9c,0x73,0x24,0x53,0xe5,0xa6,0x65,0x52,0xbd,0x77,0xea,0x1c,0x5e,0x7e,0xfb,0x14,0x8c,0xf,0x97,0xf0,0x81,0x11,0xbe,0xa1,0x76,0x16,0x65,0x91,0xa3,0x9f,0x65,0x38,0x72,0xf2,0x62,0xf0,0x8d,0x4b,0xd3,0x2e,0x94,0x8a,0x91,0x24,0x9,0x1e,0xba,0xf7,0xb6,0x89,0xcf,0xf2,0xdf,0xff,0xf1,0x7e,0xbc,0x7b,0x66,0x21,0x0,0x54,0x60,0xf6,0x48,0x59,0x16,0x28,0xf2,0x1,0x1,0xa5,0x0,0x84,0x24,0x50,0x4e,0x33,0x0,0x79,0xfc,0xcc,0x45,0x7c,0xf3,0x87,0x2f,0x8d,0x31,0xfa,0x0,0x60,0xef,0xcd,0x3b,0x30,0x93,0xc6,0x81,0xf1,0xe9,0xd9,0x7c,0xc6,0x3a,0xbc,0x78,0xe0,0xf0,0xd8,0x7e,0x2a,0xa5,0xf0,0xf0,0xbd,0xb7,0xf8,0x96,0x29,0x34,0x12,0x1e,0xc4,0x7b,0xe8,0xee,0x9b,0x27,0xb2,0xf6,0xc6,0x7b,0x15,0x81,0x7b,0xf7,0xee,0x40,0xc2,0xac,0x19,0xf,0xda,0x45,0x71,0x8c,0xb2,0xc8,0x70,0xcf,0x2d,0xdb,0x30,0x3f,0x21,0xa8,0xe5,0xed,0xc3,0xc7,0x70,0xee,0xf2,0x62,0xe8,0xdc,0xf2,0x6c,0x5,0x51,0x94,0xb0,0x7f,0xa5,0xa,0x3e,0x64,0x81,0xa9,0xca,0x3e,0x57,0xa1,0xc9,0x64,0x56,0x92,0x83,0x83,0xc,0x81,0x37,0x96,0x1b,0x43,0x3e,0x5f,0xdc,0xc,0xca,0x86,0xd1,0xbf,0xf,0xd,0x19,0xeb,0x9f,0x46,0x1a,0x3d,0x67,0xaa,0x76,0xc0,0x69,0xeb,0xa3,0x19,0xe7,0x1b,0x7e,0x96,0x35,0x8b,0x8a,0x58,0x7e,0x2a,0x8e,0x3,0x40,0xe8,0xaf,0x6b,0x30,0x18,0x43,0x72,0x78,0xcb,0x8c,0x70,0xfa,0x3e,0x44,0x8a,0x12,0x63,0x1,0xf2,0xd7,0x14,0xfc,0xef,0xd4,0xc6,0x81,0xe5,0x9e,0x5a,0x97,0x0,0x44,0xd,0x9c,0x49,0x89,0x22,0xeb,0xc3,0x5a,0x8b,0x95,0xa5,0x2b,0xc8,0x56,0x96,0x0,0x0,0x55,0x55,0x22,0xcf,0xfa,0xb0,0x46,0xa3,0xbf,0xbc,0x8,0xa3,0x35,0xf2,0xc1,0xa,0xca,0x22,0x87,0xb5,0x16,0x65,0x91,0x71,0xe0,0x44,0x4e,0xec,0xe8,0x89,0xf6,0x68,0x16,0xb6,0x2a,0xa0,0xab,0x8a,0x27,0x51,0x68,0xc,0xef,0x2f,0x2f,0x6,0x30,0xf0,0xf0,0xb1,0x93,0xa8,0x26,0x78,0xbb,0xae,0x5a,0x35,0x87,0x5d,0x5b,0xd6,0xd3,0x3d,0x20,0x1f,0x90,0xfc,0x97,0xfd,0x66,0xd3,0xb4,0x7,0x7,0xa,0xf4,0x51,0x51,0xcc,0x1,0x1a,0x55,0xb8,0xef,0x50,0x8,0x92,0x40,0x9c,0xd0,0x38,0x47,0xf2,0x66,0x17,0x92,0x6c,0xef,0xbc,0x75,0xe7,0x44,0x89,0xe5,0xd5,0xc5,0x65,0x2c,0xf6,0xf3,0xc0,0x76,0x16,0x42,0x20,0xe9,0x74,0x83,0x27,0x2e,0xb1,0x9f,0xd3,0x29,0xf7,0x70,0xc3,0xe1,0x56,0x4,0x4c,0x56,0x45,0x81,0xaa,0x2c,0x90,0x74,0xba,0x48,0xd2,0xe,0x9c,0x43,0x60,0x5d,0x26,0x49,0x87,0x52,0x97,0xa3,0x8,0xce,0x11,0xa3,0x3a,0xed,0xcd,0x6,0xd0,0xd7,0xfb,0xcc,0x7a,0x5f,0xdd,0xc7,0xee,0xbd,0x19,0x7b,0x6f,0xde,0x39,0x71,0xbd,0x97,0x16,0x2e,0xe3,0xe9,0x97,0xf,0x86,0x60,0x25,0xcf,0xe4,0x2f,0xcb,0x1c,0x83,0xe5,0x25,0x94,0x45,0xc6,0xdb,0xee,0x2,0xb0,0xd7,0xf4,0x41,0x75,0xd6,0x85,0x7b,0xad,0xf4,0xfe,0x7f,0x81,0x7d,0x57,0xa7,0x3e,0x7,0x6f,0x4a,0x3b,0xe,0xb6,0x85,0xfb,0x5d,0x73,0xc8,0xf5,0x13,0x2e,0xd,0x2c,0xb0,0x9e,0x93,0x11,0x75,0xfa,0xc6,0xe8,0xe7,0x46,0x96,0x31,0xcc,0x2,0x9c,0x2,0x34,0x4e,0x1,0xcc,0x86,0xfc,0x7,0xdf,0x17,0x9b,0xff,0x5,0x0,0x6e,0xd7,0x5a,0xa6,0x1b,0x9,0xec,0x11,0xb5,0xde,0xb9,0xc9,0xc6,0x6c,0xab,0xad,0xb6,0xda,0x6a,0x1,0xc0,0xb6,0xda,0x6a,0xab,0xad,0xeb,0xb0,0x7c,0x3a,0xa0,0x6b,0x80,0x2f,0x75,0xa,0xab,0xd,0xcd,0x0,0x1,0x5c,0x9,0x46,0xd3,0xf1,0xa4,0x62,0x60,0x85,0x9b,0xf,0x62,0x84,0x10,0x80,0xf8,0xf1,0x7,0xee,0x9a,0x8,0xb8,0x9d,0xbd,0x78,0x5,0xab,0x67,0x12,0x6c,0x5b,0x37,0x8b,0x1d,0x9b,0xd6,0x60,0xc7,0xa6,0xb5,0xd8,0xbe,0x7e,0xe,0xbb,0xb6,0x6c,0xc0,0x8e,0x8d,0x6b,0xb0,0xe3,0x86,0x79,0x6c,0xdf,0x30,0x87,0x9b,0xb6,0xdd,0x80,0x9d,0x9b,0x56,0xe3,0xd2,0x95,0x45,0xac,0xac,0xf4,0xc7,0x96,0xd3,0xe9,0xa4,0xf8,0xd4,0x23,0xf7,0x91,0x21,0xbc,0xd1,0x94,0xe,0x59,0x95,0xdc,0x8c,0x52,0x63,0x11,0xc5,0x29,0xa4,0x8a,0x88,0x11,0xd1,0x60,0x32,0x8e,0x56,0x7f,0x90,0xe1,0xc5,0x37,0x8f,0x87,0x4e,0x81,0x58,0x7d,0x8e,0xd3,0xb,0xa9,0x79,0x94,0x2a,0x42,0x59,0x64,0xa8,0xca,0x2,0x45,0x36,0xa8,0x81,0x45,0x66,0xc9,0xe4,0xd9,0x4a,0x60,0xc9,0x4c,0x7a,0xc8,0x7f,0xfa,0xf9,0xd7,0x51,0x94,0x45,0x60,0x8,0x6a,0x66,0xf5,0x79,0xdf,0x43,0x7f,0x58,0xa5,0x8a,0x2,0x83,0xd1,0xcb,0xc8,0x1c,0x1c,0xd6,0xcf,0x75,0xb0,0x71,0xc3,0xb8,0x11,0xfb,0xe5,0xab,0xcb,0x78,0xe6,0xe5,0xb7,0xa9,0x11,0xd,0xcc,0x1c,0x11,0xa4,0x7e,0x51,0x9c,0x40,0x7,0x56,0xa0,0x80,0x62,0x3f,0x2f,0x8,0x81,0x38,0xed,0xe0,0x95,0x43,0xa7,0x70,0xea,0xcc,0x38,0xa3,0xaf,0xdb,0x49,0x71,0xdb,0xce,0x8d,0xb5,0xdc,0x2a,0xc8,0xfe,0x34,0x5e,0x3d,0x74,0x2,0xb,0x97,0xaf,0x8e,0x7d,0xe6,0x96,0xdd,0xdb,0xb1,0x7e,0xd5,0x6c,0x60,0x62,0xfa,0x6,0xa3,0x9b,0x44,0xb8,0xf3,0xd6,0x9d,0x13,0xc0,0xe0,0xc,0xc7,0x4e,0x9e,0x1b,0x7b,0x7d,0xf3,0xd,0x6b,0xb1,0x7d,0xc3,0x7c,0xf8,0x3d,0x4e,0x3a,0xdc,0xc0,0x26,0x78,0x68,0xdf,0xde,0xb1,0xf7,0x6b,0x63,0xf0,0xa3,0x97,0xde,0x1c,0xa,0x23,0x50,0x11,0xb1,0x59,0x74,0x55,0x86,0x24,0x63,0xa9,0xd8,0xa3,0x4a,0x88,0x70,0xbc,0xfc,0x35,0x6a,0x8d,0x9,0x5e,0x56,0xde,0xff,0xcc,0x39,0xb,0x25,0x55,0x30,0xf1,0x77,0x9c,0x44,0x49,0x92,0x73,0x40,0x71,0xe3,0x5d,0xa7,0x69,0x8f,0xf6,0x8b,0x82,0x1b,0x4a,0x39,0x31,0x1d,0xba,0xad,0xb6,0x3e,0x1c,0x4,0xd0,0xd,0x25,0xbe,0x7b,0x90,0x9,0x10,0xd,0x50,0xdc,0x73,0x5b,0xeb,0xb4,0x77,0xff,0x19,0x9f,0x88,0x2b,0xf8,0x3d,0xb2,0x39,0x96,0x7a,0x5f,0xbc,0xa9,0x93,0x2b,0x2e,0xb0,0xcc,0x55,0x14,0x63,0x65,0xe9,0xa,0xf2,0xc1,0xa,0x16,0xce,0x9f,0x1,0x20,0x28,0x25,0x96,0xed,0x1b,0xaa,0x22,0x47,0x99,0xf,0xe0,0x2c,0x4d,0x86,0x38,0x9e,0x64,0xb1,0x9c,0xfe,0x9b,0xad,0x2c,0x21,0x1f,0xf4,0x51,0xe6,0x59,0x98,0x98,0x9a,0xec,0xcd,0x26,0x90,0x65,0x3,0x9a,0xb4,0xb2,0x6,0x70,0x16,0xc6,0x6a,0xc4,0x49,0x12,0xc0,0xfc,0x53,0x17,0x17,0xb1,0xbc,0x32,0x18,0xfb,0x6c,0xa4,0x14,0x9e,0x7c,0xf4,0x5e,0x74,0xe2,0x28,0x80,0x7c,0x7e,0x2,0xc5,0xa1,0x11,0x2a,0xe5,0x83,0x8d,0x98,0x9d,0xec,0x1,0x30,0x2,0xed,0x74,0x98,0x34,0x1,0x88,0x65,0xb9,0x69,0xcd,0x1c,0x6e,0x9f,0x2,0xa6,0x1d,0x39,0x7e,0x3a,0x48,0x62,0xa3,0x28,0x86,0xb5,0x96,0xf6,0x93,0x41,0x4f,0x3b,0xe4,0xd5,0x38,0x5a,0xc3,0x63,0x58,0xd2,0xe9,0xa2,0x37,0xb7,0x6a,0x68,0x72,0x8f,0xbc,0x8,0x35,0xa4,0x92,0xb0,0xcc,0x6a,0x8f,0x92,0x34,0x24,0x2f,0xb,0x51,0xb3,0xa3,0xbd,0xf7,0xdf,0x9d,0xbb,0x36,0xe2,0xf3,0x4f,0x3c,0xc,0xa5,0xc6,0xd7,0xab,0xb5,0xc6,0xdf,0x3c,0xf5,0x2c,0x6,0x59,0xc1,0xd7,0x3,0x4d,0xd4,0x18,0xad,0xd1,0xe9,0xce,0xa0,0x3b,0x33,0x7,0x21,0x24,0xb1,0x3b,0xd9,0x96,0xc3,0x68,0x1d,0x26,0xcc,0xfc,0xb5,0xe6,0x3,0xbb,0x2c,0x7b,0xaa,0x86,0x9,0x17,0xe,0x54,0xa2,0x94,0x69,0x1b,0xbc,0x8,0x47,0x87,0x50,0x62,0x14,0x8a,0x31,0x56,0x9e,0x68,0x24,0x3,0x8f,0xb1,0x1,0x1b,0xe3,0x75,0x13,0xd7,0x6b,0xda,0x39,0x88,0x21,0xf8,0x70,0xd2,0xcf,0xf8,0x40,0xe0,0xde,0xcf,0xcf,0xa3,0xef,0xa7,0xac,0x49,0xdf,0x9,0x6,0xfe,0xdc,0x28,0xf0,0xd8,0x38,0x46,0xb5,0x67,0x72,0x5b,0x6d,0xb5,0xd5,0x56,0xe3,0xbe,0xd8,0x1e,0x82,0xb6,0xda,0x6a,0xab,0xad,0xeb,0xa7,0x3c,0xc8,0x11,0x7c,0x73,0x4,0x19,0x7b,0x7b,0x79,0x50,0x55,0x15,0x9c,0xde,0x4a,0xf,0xd4,0x4,0xf6,0x81,0x40,0x24,0xf6,0x0,0xa4,0x50,0xc,0xd,0x99,0xca,0x90,0xf6,0xba,0x7b,0xcb,0x5a,0x6c,0xd9,0xb4,0x61,0xe2,0x3a,0xf7,0xec,0xd8,0x8c,0x3d,0x3b,0xb6,0x34,0xdb,0xcd,0x20,0x11,0x1a,0x35,0xc7,0xae,0x3d,0x75,0x26,0x3f,0x6c,0xdf,0x7b,0xe7,0xad,0xf8,0xeb,0xef,0xbf,0x88,0x8b,0x65,0x41,0xcd,0x5,0x83,0x92,0xce,0x5a,0x68,0x6b,0x10,0xc5,0x31,0x87,0x40,0x68,0x48,0x29,0x20,0xa3,0xc9,0x29,0xc0,0x27,0x4e,0x9f,0xc3,0xd5,0x95,0x7e,0x68,0x32,0x9c,0xb5,0x30,0xce,0x4,0x76,0x97,0x94,0x64,0x8e,0x6e,0x8c,0x46,0x14,0x25,0x50,0xb1,0x64,0x89,0x34,0x1d,0xaf,0x38,0xa1,0xb4,0x5a,0x6d,0xcc,0xc4,0x6d,0x5d,0xe9,0xf,0x70,0xe4,0xe4,0x5,0x32,0x5d,0x57,0x11,0xca,0xa2,0xc,0x4c,0x4a,0x6a,0x72,0xcb,0x90,0x8e,0xe9,0x1b,0x6d,0x62,0x0,0xa,0x94,0x45,0x86,0x38,0xe9,0x60,0xeb,0xd,0xab,0x27,0x7a,0xff,0xbd,0xf1,0xf6,0x51,0x68,0x27,0x10,0xa7,0x29,0x79,0x5e,0xd9,0xda,0x14,0x5e,0x45,0xc4,0x9a,0x93,0x8a,0xa4,0x70,0xe4,0xc7,0x47,0x8d,0x75,0xd4,0x89,0x91,0xf5,0x57,0x10,0x45,0x11,0x5e,0xd8,0x7f,0x10,0x3b,0xb6,0x6d,0x1a,0xb9,0x36,0x4,0x76,0x6f,0xdf,0x84,0xe7,0xdf,0x38,0x86,0x38,0x21,0x26,0x9d,0xf7,0xc9,0xcb,0x4a,0x8d,0x3,0x6f,0x1f,0xc3,0x13,0x1f,0x5f,0x33,0xc,0xca,0xa6,0x9,0x1e,0xbc,0x63,0x17,0xbe,0xf1,0xa3,0x3,0x2c,0x23,0xa7,0x73,0xb0,0x77,0xc7,0x6,0xac,0x9a,0x1b,0x67,0xed,0x1d,0x3c,0x72,0x12,0x47,0x4e,0x9e,0xc7,0x8e,0xad,0x1b,0x21,0x1b,0xcc,0x3,0x25,0x25,0x1e,0xba,0xe7,0x66,0x1c,0x39,0xfd,0xe3,0x90,0xf8,0x29,0xa4,0xc4,0xcd,0xdb,0xd6,0x63,0xe3,0xfa,0x35,0xe3,0xe7,0xef,0xe4,0x19,0x1c,0x3e,0x79,0x21,0x98,0xed,0x57,0x25,0xf9,0x7b,0x25,0x69,0x17,0x55,0x99,0x33,0xb0,0x4d,0xc7,0xc2,0x7b,0x9b,0x39,0x38,0x36,0xdb,0xaf,0x1b,0x43,0xb8,0x9a,0xad,0xe2,0x1b,0x7b,0xef,0x69,0xe8,0x25,0xbf,0xd,0xb5,0xef,0x10,0x78,0xeb,0x3c,0x57,0xb0,0xd1,0xf3,0x5,0x26,0x88,0xb3,0x10,0x42,0xc1,0xb9,0x36,0x4,0xa4,0xad,0x8f,0xa6,0xec,0x48,0xe8,0x2,0xfd,0xee,0x78,0x9c,0x90,0x80,0xab,0xd3,0xd8,0x11,0x6c,0x20,0x4c,0xb0,0x64,0xa8,0xca,0x2,0x51,0x9c,0x30,0xab,0xcc,0x2,0x90,0xc,0x86,0x6b,0x92,0xba,0x4e,0x99,0xfc,0xf0,0xa1,0x4e,0xde,0x53,0x4e,0x4a,0x2,0xd6,0xe6,0x56,0xaf,0x23,0x36,0x5f,0x49,0xf2,0x5f,0xf,0xb2,0x59,0x66,0xb4,0xe9,0xaa,0x24,0xa9,0xad,0x67,0xe6,0x86,0x54,0x60,0x3,0xe9,0x28,0x94,0xca,0x59,0x33,0x15,0xf0,0x4,0x33,0xf8,0x9c,0x43,0x8,0xb8,0x72,0xe,0x14,0x40,0x22,0x48,0xf2,0xfc,0xc6,0x5b,0x87,0xf1,0xc9,0x47,0xef,0x1f,0xfb,0xf8,0xad,0x37,0xef,0xc4,0xe3,0x1f,0xbb,0x13,0xdf,0xf9,0xf1,0x1,0x14,0xd9,0x80,0x26,0x33,0x18,0x70,0xf4,0x9e,0xb2,0x82,0x83,0x3e,0x1c,0x78,0x72,0x8c,0x27,0x5f,0xa4,0x8a,0x20,0x63,0x66,0x2d,0x73,0xd2,0x6d,0xac,0x4,0xbe,0xf0,0xa9,0xfb,0xd0,0x9b,0xe0,0x87,0xab,0xb5,0xc1,0x2b,0x6f,0xbe,0xb,0x21,0x4,0xb2,0xfe,0x4a,0x90,0xe7,0xfa,0x14,0x60,0xcf,0xe,0xf7,0xf7,0xb7,0x69,0xf7,0xf1,0xaa,0x2c,0x88,0x9,0xc8,0xa0,0xa7,0x3,0xa0,0x14,0x1,0x94,0xd6,0x39,0xc4,0x9e,0x79,0xa9,0x14,0xb1,0xe9,0x0,0x5e,0x7e,0x3d,0xb9,0x11,0xc5,0x9,0x9c,0x35,0x78,0xe4,0xce,0x5d,0xf8,0xc2,0x67,0x1e,0x99,0xca,0xd8,0x7e,0xeb,0xed,0x23,0x78,0xee,0xb5,0x23,0xf0,0xc1,0x1c,0xd6,0xd6,0x81,0x22,0x64,0x67,0x61,0x60,0xd9,0x37,0xb8,0x2a,0xb,0x4a,0x46,0x6e,0xf8,0xe1,0x9,0x6,0x84,0x21,0x6b,0x32,0x9e,0xb5,0xba,0xf6,0xe1,0x6b,0xc8,0x86,0x9d,0x9f,0x7c,0x19,0xb3,0xd2,0xf3,0xf1,0x1e,0xd,0x40,0x4f,0xa0,0x91,0x24,0x2c,0x86,0xb0,0xb0,0xf0,0x2c,0x11,0x70,0x3e,0x31,0x14,0xb2,0x31,0x9c,0x20,0x3c,0x1e,0x32,0x32,0xb4,0xde,0x9f,0x9a,0xb5,0xf7,0xb7,0x64,0xd5,0x8d,0xee,0xfc,0xfb,0xfc,0x1e,0x24,0xfe,0xae,0xe,0x26,0x9,0xd2,0xff,0xc6,0x16,0x35,0x7f,0x6f,0xee,0x5f,0x5b,0x6d,0xb5,0xd5,0x56,0xb3,0x5a,0x6,0x60,0x5b,0x6d,0xb5,0xd5,0xd6,0xf5,0x54,0xfc,0x20,0xeb,0xa5,0x39,0x9e,0x69,0x40,0xd,0x84,0xb,0xa6,0xe7,0x42,0x8,0x68,0x5d,0x21,0x8a,0x12,0x8,0x6,0xd9,0xe8,0x73,0x24,0x7d,0x4a,0x3b,0x5d,0x36,0x59,0x27,0x16,0xc2,0xc7,0xef,0xbf,0x1d,0x51,0x34,0x39,0xec,0x41,0x4a,0x2,0xb6,0xa4,0x94,0x50,0xfc,0xb3,0x52,0x72,0xe8,0x75,0xff,0xbf,0x52,0x2a,0x48,0x8b,0x27,0xd5,0x4c,0xaf,0x8b,0xc7,0x3f,0x76,0x57,0x78,0x70,0x95,0x52,0xa1,0x2c,0x72,0x68,0x5d,0x41,0x80,0xe4,0x59,0x8e,0x9b,0x13,0xd3,0xf0,0xdc,0x1b,0xad,0xd3,0xe7,0x2e,0x53,0xca,0x23,0x3,0x7e,0xe,0x2e,0x34,0xbf,0xba,0x2a,0x83,0x31,0x3e,0xf9,0xe1,0x99,0xc0,0xa2,0x90,0x8a,0x42,0x24,0x8c,0xd6,0xc8,0xb3,0x41,0x0,0x53,0x47,0xeb,0xca,0xe2,0x32,0xfa,0x79,0x19,0x3c,0x9d,0xbc,0x49,0x7c,0x55,0x16,0x30,0x15,0x49,0xbc,0x3c,0x0,0x65,0xb4,0xe,0x32,0x68,0x6a,0xaa,0x12,0x54,0x55,0x81,0x9d,0xdb,0xc6,0xbd,0xff,0xac,0xb5,0x38,0x74,0xec,0x54,0x90,0x89,0x79,0xf9,0x93,0x97,0xb5,0x4a,0xef,0xed,0xc5,0xac,0xc0,0xb2,0xc8,0xa1,0xa2,0x98,0xd8,0x19,0x45,0xe,0xa9,0x88,0xb5,0xf1,0xc6,0xa1,0x63,0x28,0xca,0xf1,0x6,0x73,0xd3,0xd,0xeb,0xc8,0x4b,0xca,0x98,0xc0,0x46,0x11,0x20,0x46,0xcb,0xf3,0x7,0x8e,0x20,0xcb,0xc6,0x7d,0xa9,0xee,0xd9,0xbb,0x13,0x49,0x24,0x59,0x3e,0x4d,0xc7,0xed,0xc1,0xbb,0x6f,0x1e,0x23,0x25,0x94,0x65,0x85,0x17,0xdf,0x3c,0x8a,0x37,0x8f,0x9e,0xc1,0xc5,0x85,0x2b,0x63,0xcb,0xb9,0x69,0xc7,0x16,0xcc,0xf5,0xd2,0xb0,0x3f,0xd6,0x18,0x3c,0x7c,0xef,0x2d,0x88,0xa2,0x68,0xec,0x18,0x3c,0xfb,0xc2,0x1,0x18,0x6b,0x1b,0xe6,0xf1,0xd4,0x8c,0xfb,0xa6,0xb9,0x2c,0x72,0x54,0x65,0xe,0x5d,0x96,0xc8,0x6,0x7d,0x62,0x6a,0x72,0xd3,0xeb,0x1b,0x25,0xcf,0x82,0x52,0x51,0x14,0xc2,0x43,0x8,0x50,0x26,0x1f,0x2f,0x8,0x10,0x7b,0x90,0xcf,0x61,0xed,0x47,0xc5,0x92,0xb5,0xd0,0x40,0x79,0x38,0x70,0xb4,0x49,0x6c,0x19,0x80,0x6d,0x7d,0x44,0xd5,0xb0,0x5a,0x18,0x2,0x43,0x58,0x12,0xe9,0xe5,0x97,0x9e,0x1d,0xa8,0xab,0x32,0x8c,0xa5,0x5e,0xe2,0x1b,0xc5,0x94,0x68,0x5b,0x95,0x5,0xfb,0xe2,0xd1,0x78,0xea,0xbf,0xe3,0xd3,0x18,0x80,0xae,0xe1,0xfb,0x56,0x16,0x59,0x18,0x1f,0xb5,0x2e,0x3,0xb,0x31,0x49,0x52,0x58,0xa3,0xc9,0xe3,0xaf,0x2a,0xd1,0x5f,0xba,0xc2,0xdb,0x51,0xc0,0x18,0x8d,0xe5,0xab,0xb,0x18,0x70,0xa8,0x44,0x91,0xd,0x1a,0xcc,0xb2,0x72,0x22,0xb3,0x56,0x48,0xc1,0x36,0x15,0x16,0x45,0x3e,0x40,0x99,0xf,0x60,0x39,0xcd,0x5b,0xb0,0xef,0x9d,0x10,0x2,0xcf,0xbc,0x7c,0x10,0x79,0x3e,0x3e,0x86,0x49,0x21,0xf0,0xab,0x9f,0x79,0x14,0x9f,0x7d,0x94,0x58,0xec,0x5a,0x13,0x18,0xd9,0x9b,0x9d,0xf,0xc0,0x93,0x94,0x51,0x60,0x6c,0xab,0x38,0xe,0xdf,0x6f,0xf,0xb4,0xe8,0xaa,0x42,0x59,0xe6,0x48,0x22,0x81,0x7f,0xf0,0xc4,0xfd,0xb8,0x6d,0xcf,0x8e,0x89,0xc7,0xe7,0xf8,0xc9,0x33,0x38,0x7a,0x8a,0x58,0xd0,0x4a,0x29,0x28,0xa9,0x42,0xe8,0x51,0x1c,0x27,0x94,0x66,0x6e,0xa7,0x7b,0x88,0x52,0xea,0xbc,0xe3,0xd0,0x2b,0x17,0x6c,0x3a,0xe2,0x24,0xd,0x3e,0x7a,0x1e,0xa0,0x94,0x8a,0x26,0xee,0xe2,0x38,0x21,0xf6,0x32,0x8f,0x7b,0x52,0x45,0x90,0x4a,0x61,0xb6,0x9b,0xe0,0x9f,0x7c,0xf6,0x11,0xfc,0xe6,0xe7,0x3f,0x89,0xee,0x94,0xb4,0xe2,0xf3,0x17,0x2e,0xe1,0x8f,0xbe,0xf2,0x6d,0x94,0x65,0x41,0xec,0x6a,0x7f,0x7e,0x8d,0x86,0x2e,0x4b,0xe8,0xaa,0x40,0x9c,0xa4,0x30,0xc6,0xa0,0x2a,0xb2,0xda,0xe,0xa2,0x99,0x32,0x1b,0x40,0x47,0x9e,0x70,0x81,0xe3,0xfd,0xe0,0x31,0xdd,0xd8,0xda,0x6e,0xa1,0xe1,0x15,0xe8,0x13,0xac,0xfd,0x68,0x2a,0x50,0xb3,0x5a,0x47,0x73,0x39,0x6a,0x39,0xb0,0x1b,0x1a,0x81,0x43,0xa8,0x88,0x98,0x30,0x36,0xbb,0x49,0x9,0xbc,0xa3,0x8f,0x4c,0x1f,0x12,0xab,0x6f,0x54,0xa6,0x8b,0x46,0xa0,0x54,0xf3,0xef,0x13,0x42,0xa8,0x42,0x90,0x49,0x13,0xc,0x1c,0xc1,0x23,0xdd,0x94,0x7d,0x73,0xad,0x7,0x60,0x5b,0x6d,0xb5,0xd5,0x2,0x80,0x6d,0xb5,0xd5,0x56,0x5b,0x7f,0x5f,0x7a,0x44,0x96,0xe3,0x18,0x1b,0x0,0x10,0xd7,0xf0,0x8b,0x22,0xef,0x26,0x92,0x82,0x39,0xcb,0x39,0xa9,0xec,0xd5,0x53,0x9b,0x78,0x6b,0xac,0x99,0xeb,0xe2,0xb6,0x9b,0x77,0x7d,0x68,0xdb,0x7d,0xff,0xdd,0xb7,0x62,0x7e,0xa6,0x4b,0xdb,0xc5,0xdb,0x1b,0xc7,0x4,0x9a,0x41,0x20,0xb0,0xee,0x84,0x90,0x43,0x4d,0x70,0xb3,0x2e,0x5d,0x59,0x6a,0xc8,0x77,0x89,0x9d,0x10,0x27,0x29,0xf9,0x18,0xb1,0x7f,0x54,0x9e,0xf5,0xc9,0x20,0x9d,0xda,0xc7,0x60,0x62,0xaf,0xd,0x35,0x7a,0x4a,0x29,0x14,0x59,0x1f,0x93,0x66,0xfb,0x57,0x56,0x6,0xcc,0xc2,0x23,0x56,0x8d,0x31,0x1a,0xf9,0xa0,0xcf,0x5e,0x83,0x19,0x2a,0x96,0x2e,0xe7,0x59,0x1f,0xc6,0x54,0x28,0xf3,0xac,0x6,0x1f,0xb9,0xb1,0x9a,0x9f,0x9d,0x90,0x1e,0x69,0x2c,0x2e,0x2c,0x2c,0x92,0x27,0x56,0x55,0x6,0x9,0xf,0xc9,0xbe,0x22,0x6,0x42,0xfd,0x6b,0xd4,0x3c,0x99,0x8a,0x4c,0xf6,0xad,0x31,0x28,0xb2,0x1,0xac,0x35,0xe8,0x17,0x7a,0x22,0x98,0xd7,0x49,0x63,0xe8,0x92,0x3c,0xa5,0x74,0x55,0x90,0x5f,0x21,0xa7,0xa,0x5f,0x5e,0xc9,0x71,0xe8,0xdd,0xf7,0xc6,0x3e,0xb3,0x6a,0x7e,0x16,0x77,0xdf,0xb4,0x89,0x98,0x87,0x51,0x84,0x6d,0xeb,0xe7,0xb0,0x75,0x2,0x1b,0xf4,0xc4,0xe9,0xf3,0x38,0x79,0xe1,0x2a,0xf9,0x3c,0x1e,0x38,0x3c,0xf6,0xf7,0x5e,0x37,0xc5,0xa3,0xf7,0xec,0x41,0x55,0xe4,0xd0,0x55,0x89,0xd,0x73,0x9,0xf6,0xec,0xdc,0x3a,0xe,0xae,0x5e,0x5d,0xc2,0x6b,0x87,0x4f,0x32,0xc0,0x6b,0x30,0xe8,0x2f,0x53,0x13,0x1c,0xc5,0xc1,0x4,0xdf,0xe8,0x8a,0x1,0x4c,0x3,0xc0,0x21,0xcf,0xfa,0xc8,0x6,0x2b,0xc1,0xf7,0x2a,0xb0,0xa3,0x42,0x98,0x8d,0x8,0xd,0x92,0xf7,0x68,0x24,0xa6,0x6a,0xcd,0x8a,0x6a,0x36,0xfb,0x63,0x4d,0x1a,0xc4,0xd8,0xdf,0xa5,0x4a,0xda,0x41,0xa6,0xad,0x8f,0xa4,0xc6,0x98,0x72,0x21,0xdc,0x83,0x98,0xae,0x5e,0x6,0x6c,0xc2,0xf7,0x5b,0x70,0x82,0x6d,0x4a,0xc,0x58,0x15,0xa1,0xaa,0xca,0x21,0x4f,0xce,0x10,0xfc,0xc0,0x63,0xac,0xbb,0x86,0x74,0xd0,0x3,0x51,0x3e,0x71,0xde,0x5b,0xa,0xf8,0x50,0x8,0xb2,0x90,0x88,0x39,0x29,0x58,0x22,0xed,0xf4,0x60,0x8d,0xa1,0x4,0x59,0xe,0xa2,0x52,0x51,0xc4,0x13,0x1b,0x2a,0x7c,0xd7,0xac,0xd1,0x13,0xb9,0x55,0xe4,0x7b,0x57,0xd5,0xf7,0x2d,0x43,0xdf,0xfb,0x41,0x7f,0x9,0x45,0x9e,0x41,0x6b,0x4a,0xbd,0x3f,0x75,0x7e,0x1,0xaf,0xbd,0x75,0x64,0xe2,0x36,0x47,0x51,0x84,0x2f,0xfc,0xd2,0x27,0xf0,0xdf,0xfd,0xe6,0x93,0x58,0xbb,0x6a,0x9e,0xf6,0x93,0x59,0x6d,0x92,0x13,0x69,0xa3,0xa8,0x96,0xfc,0x5a,0x4e,0xb9,0x25,0x50,0xcc,0x42,0x29,0x85,0x5d,0x5b,0x37,0xe2,0xf7,0xfe,0xe1,0xa7,0xf1,0xc0,0x3d,0x7b,0x27,0x4a,0x78,0xab,0x4a,0xe3,0xa9,0x67,0x5f,0x41,0x59,0x56,0x7c,0x5c,0xc8,0x3,0xd1,0x7,0x96,0xe4,0xd9,0x80,0x83,0x44,0x30,0xf5,0xf8,0x3a,0x47,0x56,0x11,0x9e,0xa9,0x4c,0x7e,0x85,0x86,0x8f,0x59,0x8c,0x84,0x93,0x80,0x69,0x62,0x44,0x6,0x80,0x34,0xcf,0xfa,0xb0,0xcc,0xa8,0x5c,0x33,0x93,0xe0,0xb3,0x8f,0xde,0x8d,0x7f,0xf5,0xbb,0xbf,0x81,0x8f,0xdd,0x77,0xc7,0x54,0xb9,0xf1,0xe2,0xd2,0x32,0xfe,0xf0,0xcb,0x7f,0x8d,0xcb,0xcb,0x19,0xcb,0x9e,0x25,0xac,0x75,0xc1,0x62,0xc2,0xdf,0x7f,0xab,0xb2,0x40,0xda,0xe9,0x22,0xe9,0xf4,0x68,0x62,0x8d,0xcf,0x7b,0x7d,0xfe,0xeb,0xeb,0x47,0x2a,0xc9,0xcf,0x1d,0x1a,0x5e,0xce,0x2c,0x99,0x89,0x2f,0x84,0x64,0xe0,0x32,0x62,0x5f,0x42,0x13,0xc6,0x56,0xcf,0x62,0x1c,0x2,0xe4,0x4,0x1a,0xc8,0x9e,0x7,0xcb,0xc4,0x38,0xa8,0x36,0xd,0xe8,0xfa,0x85,0xb0,0xdf,0xa6,0x3,0x86,0x6e,0xd4,0x8f,0xcf,0x6f,0xe3,0x90,0x3c,0xb7,0xfe,0x3f,0xb0,0xcf,0x59,0x76,0x3f,0x9,0xdc,0x6c,0x2,0xa1,0x62,0x4,0xd8,0x13,0xf0,0xa0,0xe8,0xf8,0xd6,0x85,0x18,0x94,0x16,0x0,0x6c,0xab,0xad,0xb6,0x46,0xef,0x87,0xed,0x21,0x68,0xab,0xad,0xb6,0xda,0xba,0x7e,0x2a,0x34,0x60,0xd6,0x86,0x9f,0x45,0x30,0x85,0x26,0xd0,0x3,0xdc,0x74,0x39,0x6e,0x16,0xc1,0x5e,0x47,0xfe,0xd1,0x31,0x8a,0xe3,0x60,0xf0,0xed,0xe0,0xf0,0xc9,0x7,0x6e,0x47,0xaf,0xdb,0xf9,0xd0,0xf6,0x61,0xdd,0xda,0xd5,0xb8,0xff,0xce,0x3d,0x78,0xfa,0xe5,0x83,0x70,0x25,0x31,0x57,0x8a,0x3c,0x23,0x26,0x17,0x27,0x12,0xfb,0x26,0x75,0x1a,0x93,0xb0,0xd2,0x55,0x48,0xc4,0xb4,0x8e,0x12,0xa,0x7,0x2b,0x4b,0xc,0x22,0x91,0xef,0x9d,0x31,0x55,0x30,0x3c,0x8f,0xe3,0x4,0x5a,0x97,0xec,0x1,0xc7,0x26,0xf8,0xce,0xa1,0x37,0xdb,0x9b,0xf8,0x0,0x5d,0x96,0x25,0xb2,0xfe,0x32,0x35,0xd4,0x5a,0x87,0x46,0xcc,0xa7,0x59,0xfa,0x86,0xdb,0x37,0xc1,0x2a,0x8a,0x2,0x98,0x68,0x6d,0x8e,0x38,0xe9,0x20,0x4d,0xc7,0x19,0x19,0xc6,0x1a,0x64,0x79,0x1e,0xc0,0x4b,0x11,0x93,0x5f,0x55,0x9c,0x90,0x1c,0xd8,0x59,0x47,0xdb,0x19,0xc5,0xc8,0x7,0x2b,0xe4,0x7,0xc8,0x2c,0xc8,0xb2,0xc8,0x49,0xf2,0x5,0x87,0xac,0x28,0x87,0xd3,0x83,0xfd,0x4d,0x5f,0x49,0x12,0xb9,0x71,0xf3,0xa9,0xab,0xa,0x45,0x36,0x40,0x6f,0x76,0x1e,0xd6,0x5a,0x3c,0xf3,0xd2,0x41,0xdc,0x7e,0xeb,0x6e,0x24,0x71,0xdc,0xc4,0x16,0xf0,0xc8,0xfd,0x77,0xe0,0xa5,0x83,0x4,0xca,0x3d,0xba,0xef,0x96,0x31,0x1f,0x29,0x6b,0x2d,0x5e,0x7e,0xf3,0x28,0x9b,0x8e,0x4b,0x1c,0x38,0x7c,0x1a,0x9f,0x7e,0x38,0xc3,0xec,0xcc,0x30,0xc8,0x79,0xd7,0xad,0x3b,0xf1,0xd4,0x8f,0xf,0x60,0x90,0x1b,0x3c,0xb2,0xef,0xd6,0x89,0x9,0x9a,0x2f,0xbf,0xfe,0xe,0x6,0x59,0x41,0xec,0xbc,0x88,0x40,0xc,0x38,0x4,0xe0,0x62,0x65,0xe9,0x6a,0x38,0x47,0x14,0x1e,0x50,0x40,0x45,0x11,0xe2,0x38,0x45,0x59,0xe4,0x88,0xd3,0xe,0x4c,0x55,0x11,0xb8,0x1,0x1,0x38,0x4b,0x9e,0x7d,0xcc,0x86,0x1d,0x6,0x8e,0x45,0x30,0x49,0x17,0x23,0xd2,0xaa,0xa1,0x6,0x7d,0x8,0xc,0xa4,0xfd,0x35,0x3a,0x6f,0x7,0x9c,0xb6,0x3e,0x92,0x92,0x2a,0x1e,0x2,0x40,0xa4,0x54,0x30,0xce,0x51,0xc0,0x91,0xb6,0xe1,0x1a,0xf7,0x8c,0x6f,0xf,0xe4,0x68,0x5d,0x21,0x4d,0xbb,0x81,0x1,0x67,0xad,0x85,0x64,0xa9,0xa7,0x7,0xf2,0x44,0x9c,0xd2,0xf8,0x37,0x35,0x23,0xc1,0x5,0x36,0x6e,0x55,0x16,0x70,0xc,0x94,0x9,0xa9,0xa0,0x84,0x80,0xa9,0xaa,0x60,0x87,0x10,0x27,0x49,0x0,0xae,0x9c,0xb3,0x50,0x69,0x27,0x84,0x6b,0x18,0xad,0x59,0xa2,0x6a,0x83,0x3c,0x16,0x9c,0x42,0x3c,0x86,0xe3,0x30,0x80,0x87,0x6,0x93,0x3b,0x1f,0xac,0x90,0x54,0xb6,0xc8,0xc8,0x13,0xcf,0xc4,0x50,0x36,0xc2,0xd7,0xbf,0xfb,0x2,0x6e,0xda,0xb1,0x15,0xeb,0xd7,0x8d,0x5b,0xb,0x48,0x29,0xf1,0xc8,0xc7,0xf6,0xe1,0xb6,0x9b,0x77,0xe1,0x47,0x2f,0xbc,0x82,0x1f,0xbd,0xfc,0x36,0x16,0x96,0x32,0x44,0x71,0x4c,0x13,0x2e,0x52,0x5,0x0,0xcb,0x83,0xa3,0xab,0xe6,0xe7,0xb0,0x7d,0xfd,0x1c,0x1e,0xb9,0x6f,0x2f,0x6e,0xd9,0x7d,0x23,0x92,0x24,0x9e,0x7a,0x5e,0x5e,0x7c,0xed,0x20,0xde,0x38,0x72,0x82,0xec,0x36,0xca,0x22,0x1c,0x2b,0xef,0xab,0x67,0x42,0x4a,0xb9,0xc6,0x34,0xc6,0x19,0x9d,0x37,0xba,0x6f,0x94,0x3a,0xb,0x41,0x5c,0xba,0x2a,0x81,0x88,0xce,0xa1,0x3f,0x9e,0x49,0x14,0x23,0x8e,0x22,0x44,0x52,0x60,0xf7,0x96,0xed,0xd8,0xb5,0x6d,0x23,0xf6,0xec,0xd8,0x82,0x1d,0xdb,0x37,0xa1,0x93,0xa6,0xd7,0xbc,0x86,0x96,0x57,0xfa,0xf8,0xa3,0x2f,0xff,0xd,0xe,0x1e,0x23,0xef,0x46,0xef,0xcd,0xe8,0xbd,0xb,0x1d,0xb3,0xd7,0xbd,0x6f,0x63,0x91,0x67,0x98,0x99,0x5f,0x5d,0x4b,0x51,0xe1,0x3,0x96,0x58,0x8e,0x2d,0x6a,0x6f,0x49,0x62,0xe4,0x11,0x5b,0xdd,0x68,0xba,0x1e,0x84,0x14,0x4,0x5c,0x3b,0xc,0x1,0x7f,0x5e,0xb2,0x2c,0x79,0xe2,0x71,0xc,0x3c,0xc3,0xa8,0x4c,0xf7,0xfd,0xc2,0x38,0x7e,0xe,0x29,0xbc,0xd,0xa9,0x6d,0x78,0x86,0x6a,0xbc,0x1e,0x7e,0x84,0x6b,0x6a,0x92,0xc7,0xe4,0xc9,0x61,0x6b,0xc5,0xb0,0x4,0x7a,0x68,0x4b,0x1d,0xbd,0x4b,0x4c,0x80,0x15,0xc3,0x9e,0x4,0xff,0x59,0x37,0xe,0x45,0x4e,0x58,0x6e,0x7d,0xe8,0x44,0x78,0x36,0x69,0xab,0xad,0xb6,0xda,0x6a,0x1,0xc0,0xb6,0xda,0x6a,0xab,0xad,0xeb,0xb0,0x54,0x14,0xd7,0xac,0x27,0x96,0xf3,0xaa,0x48,0xc1,0x68,0x83,0x28,0x89,0x9,0x58,0x12,0x3c,0xdb,0xce,0x33,0xcf,0xde,0x93,0x48,0x4a,0x5,0x63,0xc,0xa4,0xb2,0x1,0xe4,0x98,0x99,0xe9,0x61,0xdf,0x5d,0xb7,0x7e,0xa8,0xfb,0x20,0x84,0xc0,0x27,0x3e,0x76,0x2f,0x7e,0xf8,0xc2,0x1b,0xb4,0x7d,0xcc,0x4c,0x34,0x5a,0xa3,0xaa,0x4a,0xa0,0x2,0x3a,0xdd,0x1e,0x3a,0xdd,0x99,0x6b,0xfa,0xdb,0x78,0x10,0xcd,0x59,0x1b,0x8c,0xd1,0xf3,0xfe,0x72,0x30,0xa8,0x2f,0xb2,0x3e,0x66,0x57,0xad,0xa5,0x66,0x96,0x41,0xa6,0xe0,0xa7,0x17,0xc7,0xc8,0xb3,0x3e,0x66,0x52,0x35,0x91,0x45,0x20,0x24,0x31,0x30,0xfc,0xf1,0x4,0x7b,0xcc,0x15,0xb9,0xe5,0x66,0x89,0xd2,0x26,0x8d,0x4e,0x90,0x76,0x7b,0x28,0xb,0x1d,0x42,0x34,0x9c,0x35,0x1c,0x3e,0x32,0xe,0xd0,0x49,0x21,0x21,0x9d,0x9,0x5e,0x82,0x43,0xa0,0x2e,0x37,0x49,0x2a,0xed,0xa0,0x2c,0x9,0x7c,0xaa,0x2a,0xf,0x5a,0x9a,0x90,0xe2,0x5c,0x16,0x1a,0xdd,0x6e,0x2f,0x84,0xbf,0xc,0x3,0xa3,0x1a,0x83,0xc1,0xa,0x11,0x10,0xac,0x65,0x93,0x7b,0x85,0x8a,0x59,0x2e,0xef,0x9d,0xbb,0x8c,0x13,0xa7,0xce,0x63,0xcf,0xae,0x6d,0x43,0x9f,0xdb,0xb4,0x61,0x1d,0x6e,0xde,0xb6,0x1e,0x27,0xcf,0x5d,0xc4,0x2d,0xbb,0xb7,0x8f,0x2d,0xf7,0xf2,0xd5,0x25,0xbc,0x7d,0xe2,0x52,0x0,0xcd,0x2e,0x5f,0x5d,0xc4,0x9b,0x87,0x8e,0xe1,0xa1,0xfb,0x6e,0x1f,0x7a,0xdf,0xfa,0xb5,0xab,0x70,0xe7,0xee,0xcd,0x78,0xf3,0xe8,0x59,0xdc,0x79,0xeb,0x38,0xab,0xb4,0x3f,0x18,0xe0,0xb9,0xfd,0x87,0x98,0x59,0x62,0x50,0x95,0x5,0x84,0x24,0xcf,0x31,0xf,0xfc,0x4a,0x29,0x91,0xf5,0x57,0xa8,0x39,0x65,0xcf,0x33,0x54,0xd4,0x68,0xc7,0x69,0x87,0xa5,0xd6,0xe4,0x55,0x28,0x39,0x2d,0x58,0x29,0x5,0xc3,0xd7,0x91,0x54,0x32,0xf8,0x2,0x52,0x53,0xea,0xfd,0x32,0x45,0xed,0xa3,0x34,0x2,0xf8,0xd5,0x60,0xa0,0x6f,0x8,0xe5,0xcf,0xa7,0xd1,0x6c,0xab,0xad,0x9f,0x5,0x9f,0x60,0x6,0x9e,0x43,0xed,0xfd,0xe5,0xaf,0x51,0x29,0x23,0x4a,0x92,0x95,0xb5,0xdf,0x25,0x31,0xe7,0x4,0xcb,0x5f,0xab,0xda,0x2b,0xd6,0x92,0x7f,0x26,0xb4,0x66,0xdb,0x8,0x41,0x49,0xc0,0x52,0x5e,0xe3,0xd2,0x76,0x8d,0x30,0x11,0x1b,0x0,0xa2,0xac,0xbf,0x4,0x5d,0x96,0x98,0x5d,0xb5,0x26,0xf8,0xce,0xa6,0xdd,0x99,0x30,0x7e,0x45,0x49,0xa,0x38,0xa0,0x37,0x33,0x13,0x82,0x90,0xe0,0x0,0x15,0xc7,0xec,0xd1,0x6a,0x21,0x46,0x75,0x9f,0x61,0x8d,0x4,0xb4,0xe8,0xaa,0x9,0x52,0x91,0x9c,0x54,0xb0,0x9f,0xab,0x73,0x16,0x65,0x9e,0x61,0xe1,0xaa,0xc0,0x57,0xbe,0xf9,0x2c,0x7e,0xe7,0xb7,0x7e,0x79,0x2a,0x8,0xb6,0x66,0xcd,0x6a,0xfc,0xea,0xaf,0x3c,0x81,0x27,0x1f,0x7f,0x14,0x17,0x2e,0x5e,0xc6,0x99,0xf3,0x97,0xb0,0xb8,0xd4,0xc7,0xca,0x20,0x43,0x1c,0x27,0xe8,0xa4,0x9,0xe6,0x67,0x7b,0xb8,0x61,0xfd,0x1a,0xac,0x5f,0xbb,0xa,0xf3,0x46,0xc1,0x47,0xf5,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0x73,0x33,0xef,0xeb,0xa5,0x76,0xec,0xbd,0xd3,0xf8,0xfa,0x77,0x9f,0x87,0xd6,0x86,0x2d,0x35,0x4,0xaa,0x32,0xa7,0xa0,0xa5,0x46,0x62,0x39,0xdd,0x97,0xf5,0x54,0x10,0x6b,0xdd,0xda,0xd5,0xf8,0xd7,0xff,0xf2,0xd7,0x3,0xd6,0x44,0xf7,0x18,0x11,0x2,0x5b,0x4,0x4,0x4,0x5b,0x55,0xa4,0x69,0xa,0x29,0x80,0x34,0x4d,0x90,0x26,0xc9,0x35,0x82,0x45,0x86,0xeb,0xe2,0xa5,0x5,0xfc,0xc9,0x5f,0x7c,0x13,0xaf,0x1d,0x3a,0x4e,0x80,0x64,0xd3,0x17,0x95,0x81,0x3f,0x6f,0xb7,0x41,0x60,0x28,0x25,0x27,0x17,0xd9,0x0,0x9d,0xee,0x4c,0x90,0xdd,0x1a,0x4d,0x7e,0x91,0x7e,0x9f,0x3c,0x4b,0x5b,0x8,0x11,0xac,0x26,0xbc,0xa7,0xe0,0x28,0x98,0x46,0x63,0xaf,0xf,0x62,0x92,0xd7,0xc,0xab,0x68,0x2,0x5f,0xef,0xef,0xd9,0x67,0x31,0xc6,0x12,0x6c,0x2,0x78,0x35,0xea,0x38,0x99,0x21,0xe8,0x5f,0x6f,0x4c,0x6,0x8d,0xfe,0xdd,0x35,0x46,0x7f,0xe1,0x3d,0x6,0x31,0x9a,0x3e,0xec,0x86,0x18,0x7b,0xc0,0xa8,0xa,0x78,0x9c,0xf1,0x37,0x7e,0xdd,0x37,0x37,0xdb,0x5d,0x13,0xaf,0x1c,0xfd,0xbe,0x8c,0xde,0xc3,0xda,0x6a,0xab,0xad,0xb6,0x5a,0x0,0xb0,0xad,0xb6,0xda,0x6a,0xeb,0xba,0xec,0xc,0x5d,0xf0,0x6,0xf2,0x29,0xa8,0x46,0x6b,0x96,0x9f,0x72,0xa8,0x6,0x24,0x1c,0xc,0x87,0x69,0x18,0x32,0x15,0x67,0x16,0x47,0x90,0x8c,0x30,0x30,0xf8,0xc0,0xed,0x3b,0xb1,0x66,0xd5,0xfc,0x4,0xa0,0x26,0xc7,0x37,0x7f,0xf0,0xc2,0x50,0x83,0xe9,0x99,0xa,0x46,0x57,0xb4,0x3c,0x15,0x51,0x18,0x6,0x5b,0xab,0x5b,0x2f,0x15,0x63,0xe9,0xa5,0x8c,0x12,0xcc,0xcd,0xce,0xe0,0xb3,0x4f,0x3c,0x82,0x78,0xc4,0x7,0x6e,0xf3,0xc6,0xf5,0xb8,0x7d,0xd7,0x66,0xbc,0xfe,0xee,0xa9,0x0,0x72,0x45,0x71,0x34,0x4,0x54,0xda,0x7c,0x30,0xb5,0x89,0xa,0xfb,0x2,0xcf,0x44,0xa0,0xe6,0x37,0xe9,0x74,0xb1,0x78,0xf9,0x12,0xbc,0x31,0x78,0x7f,0x79,0x11,0xbd,0xd9,0x79,0x14,0xf9,0x0,0xc6,0x68,0x74,0x7b,0xb3,0xc4,0x6c,0xb1,0x16,0x69,0xa7,0x7,0x63,0xec,0x64,0x15,0x91,0x73,0xd4,0x28,0x73,0xa3,0x43,0x6,0xf6,0xe4,0xf3,0x67,0x74,0x85,0x24,0xed,0x6,0x36,0xa0,0x97,0xdd,0xd9,0x6,0x88,0xa4,0x94,0xc3,0xf2,0x84,0x24,0xe4,0x28,0x52,0x98,0xed,0xa5,0xb8,0xb8,0x38,0x60,0x89,0x94,0xe5,0xe0,0x8b,0x82,0x40,0xc9,0x1,0x7d,0xc6,0xb3,0x40,0x74,0x55,0xa2,0x2a,0x32,0x18,0x6e,0xd4,0x8c,0xa3,0x75,0xcf,0x74,0x92,0x89,0x9e,0x4f,0x55,0xa9,0x51,0x16,0x64,0xfe,0x5f,0x55,0x25,0xb3,0x6,0x69,0x39,0x71,0x9c,0xa2,0x92,0x12,0x3f,0x7a,0xf9,0x2d,0xdc,0xb4,0x73,0xeb,0x50,0xc3,0xab,0x94,0xc4,0x23,0xf7,0xed,0xc5,0xa6,0x13,0xf3,0x98,0xe9,0x75,0xc7,0x9a,0x94,0x57,0x5e,0x3f,0x82,0x41,0x96,0x71,0xf3,0x27,0x11,0xc5,0x9,0x5e,0x7e,0xf3,0x28,0xee,0xbb,0xeb,0x16,0xc4,0x23,0x2c,0xbf,0x7,0xee,0xbe,0x5,0x9d,0x34,0xc6,0xaa,0xf9,0xb9,0xb1,0xed,0x7b,0xeb,0x9d,0xe3,0x24,0xdf,0x66,0x2f,0x3e,0xc5,0xac,0x19,0x21,0x65,0x90,0x6e,0x7b,0xe6,0x89,0x8a,0x63,0x2c,0x5f,0xb9,0x44,0xd7,0xba,0x3,0x12,0xd5,0x85,0x33,0x6,0xa5,0xcd,0x83,0x7,0x26,0x9d,0x23,0xc9,0xc9,0xc1,0x8e,0xc3,0x5f,0x74,0xf0,0x4b,0x13,0x74,0xb1,0x8c,0x79,0x5a,0xb9,0x89,0xcc,0x13,0xa0,0x96,0xab,0x51,0x38,0x80,0xd5,0x65,0x3b,0xe6,0xb4,0xf5,0x51,0xc,0xf4,0xf5,0xbf,0x42,0xc2,0x31,0xb3,0xcc,0x4f,0xe6,0x8,0xa5,0xa0,0xd9,0x2f,0x93,0x2,0xa1,0x10,0xc6,0x5e,0x6b,0xd,0xa2,0x28,0x86,0x66,0xa6,0x5e,0x8,0x8d,0x70,0x16,0xc6,0x30,0xa3,0xd0,0xa9,0xa9,0x80,0x97,0x60,0x50,0x9d,0xc2,0x3d,0x14,0x1c,0xc0,0x60,0x91,0x43,0x67,0x66,0xe,0x55,0x59,0x60,0x76,0xd5,0x5a,0x4e,0xbf,0xad,0x27,0x2f,0x7c,0xc8,0x14,0xdd,0x5b,0x0,0x29,0x54,0x90,0x82,0x6,0x20,0x5e,0x4d,0x5e,0x2f,0x85,0x99,0x38,0x44,0x51,0x84,0x22,0xaf,0x38,0x4,0x4a,0x5,0x16,0x74,0x92,0x76,0xa0,0xab,0xa,0x69,0xa7,0xb,0xe7,0x1c,0x5e,0x7b,0xe7,0x4,0xbe,0xf4,0xb5,0xef,0xe2,0xb7,0x7f,0xed,0x89,0x6b,0xb2,0xd7,0xbb,0x9d,0xe,0x76,0x6c,0xdf,0x82,0x1d,0xdb,0xb7,0xfc,0xad,0xce,0xc6,0xc9,0xd3,0x67,0xf1,0x5f,0xbe,0xfc,0x2d,0x2c,0x2e,0xaf,0xd0,0x3d,0x80,0xe5,0xb1,0x0,0x1,0x78,0x4a,0x2a,0x14,0x65,0x49,0x13,0x47,0x4e,0xc1,0x48,0x39,0xd1,0x5b,0x16,0x0,0xe2,0x28,0xc2,0xe6,0x8d,0x1b,0x7e,0x21,0x57,0x8d,0xb5,0x16,0x6f,0xbf,0x73,0x14,0x5f,0xfa,0xfa,0x53,0x38,0x79,0xe1,0xa,0x84,0x24,0xef,0x58,0x4a,0x51,0x2f,0x83,0x8f,0xad,0x75,0x16,0x15,0x4f,0x32,0x69,0x5d,0xa1,0xbf,0x7c,0x15,0x4a,0x45,0x98,0x5d,0xb5,0x36,0x5c,0x67,0x3e,0x7d,0xdd,0x7,0x9c,0x40,0x88,0xc0,0xf6,0xb,0x20,0x6d,0x83,0xa5,0x2f,0x1a,0x3e,0xac,0x7e,0xc,0x15,0xd,0xe9,0x2b,0x4d,0xaa,0x5c,0x43,0xca,0x3b,0x1,0x44,0x9b,0x5c,0x62,0xd8,0x27,0x6f,0xcc,0x2f,0xaf,0x31,0xbe,0x37,0xc0,0x3e,0xcf,0xd4,0x1b,0xa2,0xd3,0x31,0x88,0xe7,0x9a,0x69,0xc2,0x8d,0xbf,0x37,0x41,0xbf,0xb1,0x4c,0xe1,0x66,0x48,0xc7,0x44,0x86,0x9e,0xfb,0x5,0x8c,0x9,0xc3,0xc1,0x21,0x1,0x99,0x6c,0xab,0xad,0xb6,0xda,0x6a,0x1,0xc0,0xb6,0xda,0x6a,0xab,0xad,0xeb,0xb7,0x2d,0x6c,0x86,0x19,0x10,0xd0,0x21,0xeb,0xd4,0x44,0xd4,0x33,0xe0,0xb5,0x97,0x12,0x2,0x30,0x12,0x27,0x9,0x7b,0x34,0x29,0x8,0x1,0x3c,0x7c,0xdf,0x1d,0x43,0x69,0xae,0xbe,0xe,0x1e,0x3e,0x8e,0x67,0xf7,0x1f,0x1e,0x5a,0xb3,0xb3,0xbc,0x5e,0x4e,0xac,0xb5,0xcc,0xd8,0xab,0xca,0x22,0x3c,0xc,0xe7,0x59,0x1f,0x11,0xfb,0x18,0xc5,0x49,0xa,0xa5,0x22,0xdc,0x7e,0xcb,0x2e,0xdc,0xb4,0x73,0xdb,0x18,0x10,0xf6,0xe9,0x47,0xf7,0xe1,0xe0,0x89,0xb,0xe4,0x9d,0x34,0x58,0x9,0x4d,0x44,0xda,0xe9,0x11,0x13,0xa1,0x37,0x33,0xb5,0x89,0x22,0x3f,0xbf,0x8a,0xa5,0x9a,0xc4,0x1a,0xc9,0xb3,0x3e,0x54,0x14,0x43,0x2a,0x89,0xaa,0xc8,0x51,0x96,0x39,0xba,0xbd,0x59,0xc,0x56,0x16,0x21,0x84,0x44,0x92,0x76,0xea,0x63,0x61,0xd,0x8a,0x62,0x80,0x5e,0x32,0x13,0xbc,0x89,0x46,0x1b,0x29,0x9f,0x80,0x48,0xfb,0xed,0x2,0xcb,0xc1,0x18,0x83,0x92,0x13,0x36,0xb,0xe,0x12,0x51,0x2a,0x42,0xd2,0xe9,0x85,0x30,0x14,0x8,0x81,0xb3,0xe7,0x2f,0x4d,0x0,0x2e,0x25,0x76,0xdf,0xb8,0x5,0x47,0xcf,0x2c,0xb0,0xf1,0xbd,0x9,0xcd,0x64,0x55,0x96,0xa8,0xca,0x1c,0x49,0xa7,0x7,0x5d,0x95,0xe4,0x87,0xa7,0xc8,0x47,0x2b,0x49,0x3a,0x30,0x46,0x23,0x49,0x3b,0x90,0x52,0xe1,0x86,0xb5,0xf3,0x13,0xa5,0x6a,0x97,0xaf,0x2e,0x6,0xb6,0x8c,0x4f,0xc6,0xa5,0xf3,0x23,0x61,0xa4,0x6,0x4a,0x87,0xfd,0x87,0xde,0xc3,0xe7,0x16,0xae,0xe2,0x86,0x91,0x74,0xde,0x9b,0x76,0x6e,0xc1,0xd6,0x4d,0xeb,0xc7,0x96,0x39,0x18,0x64,0x78,0xf5,0xd0,0x9,0x2,0x16,0xd8,0xfc,0x5f,0xeb,0xa,0x47,0xcf,0x2e,0xe0,0xbd,0x53,0x67,0xb0,0x67,0xd7,0x8d,0x43,0xef,0xbf,0x71,0xeb,0x46,0x6c,0x58,0xb7,0x66,0xac,0xd1,0xd7,0x5a,0xe3,0x99,0x17,0x5e,0x27,0x89,0x60,0x9c,0x20,0x1f,0xf4,0x1b,0xfb,0x4f,0x6c,0x26,0x1f,0x8e,0x22,0x85,0xa4,0x4,0x60,0x70,0x6a,0x73,0x9c,0xa2,0xcc,0x33,0x24,0xab,0xbb,0x14,0xee,0x92,0x24,0x30,0xba,0x66,0xb5,0xf8,0xa0,0x0,0xcf,0xd4,0xa4,0xbf,0xd5,0x5e,0x97,0x9e,0xa5,0xe2,0x1b,0xb7,0x89,0xe0,0x9f,0x6b,0x7a,0x2a,0x39,0x38,0x53,0xb5,0x3,0x4e,0x5b,0x7f,0x37,0x8a,0xc3,0x37,0x7c,0xfa,0xbb,0xe3,0xa4,0x73,0xf,0xfa,0xd5,0xc9,0xb3,0x24,0xa3,0xf7,0xe3,0x9c,0xb5,0x16,0x9a,0x1,0x71,0xe7,0x24,0x94,0x8a,0x20,0xa3,0x28,0x24,0x98,0x4f,0x4,0x91,0x18,0x6c,0x74,0xd6,0xc1,0x6a,0x4d,0x1,0x23,0x2c,0x97,0x75,0xd6,0x20,0x4e,0x3a,0x6c,0x7d,0x40,0x29,0xb4,0x8,0xdf,0xa7,0x3a,0xfc,0x29,0x8a,0x12,0xf6,0x1e,0xac,0x99,0x59,0x5e,0xe,0x3c,0x5,0xd3,0xe1,0xef,0x2b,0x81,0xf8,0x88,0xc8,0x6e,0x41,0x46,0x11,0x84,0x52,0xc8,0x7,0x7d,0x74,0x66,0x66,0xc9,0x22,0xa1,0x22,0x6,0xda,0x8b,0x6f,0x1d,0x43,0x56,0x7c,0x1b,0xbf,0xfd,0x85,0x4f,0x62,0xdd,0xda,0xd5,0xbf,0x38,0x40,0xed,0xf0,0x31,0xfc,0xa7,0x3f,0xff,0x26,0xfa,0x79,0x49,0xc,0x7a,0x66,0x57,0x1a,0x5d,0x41,0x97,0x5,0xa4,0x52,0xc8,0xfa,0xcb,0x88,0x62,0xa,0x40,0xd2,0x55,0x49,0x9,0xc9,0x1f,0x32,0x33,0xeb,0xea,0xe2,0x12,0xbe,0xf3,0x83,0x9f,0xe0,0x3b,0x3f,0x3e,0x0,0xc3,0x63,0xb4,0x7,0x69,0x7d,0x78,0x8c,0xbf,0x77,0x92,0xf4,0xd7,0xc2,0x81,0x58,0xf1,0x69,0xa7,0x57,0x3f,0x57,0xf0,0xa4,0x17,0xdd,0x7b,0x48,0x2e,0x6c,0x35,0xa7,0x4b,0xab,0x28,0xbc,0x27,0xf8,0x3b,0x72,0x4a,0xbb,0xf,0x6a,0x71,0x74,0xe0,0x80,0x11,0x69,0xaa,0xbf,0x76,0x9b,0x60,0x56,0x18,0x83,0x87,0x8e,0xd5,0x78,0x18,0x53,0x4d,0xec,0x13,0x35,0x50,0x87,0x66,0xd2,0xb0,0x18,0x82,0xc8,0xc4,0x84,0x10,0x8e,0x51,0xb6,0x5e,0xd3,0x12,0x62,0x52,0x98,0x88,0x7,0xc,0x85,0x73,0x53,0x3,0x38,0xc2,0xd6,0xfe,0x42,0x4f,0xb5,0x9b,0xf6,0x95,0xa9,0x53,0x94,0xdb,0x6a,0xab,0xad,0xb6,0x9a,0xbd,0x46,0x7b,0x8,0xda,0x6a,0xab,0xad,0xb6,0xae,0x23,0x0,0xd0,0x3,0x1a,0xf0,0xe0,0x91,0x19,0x96,0x87,0x71,0x70,0x84,0x62,0xc6,0x5d,0x0,0xd0,0x4,0x82,0x29,0x3b,0x4,0x81,0x2a,0x37,0x6d,0xdd,0x80,0x1b,0xb7,0x6e,0x1a,0x5b,0x47,0x55,0x69,0x3c,0xfd,0xd2,0x5b,0xd4,0x28,0x70,0x12,0x6f,0x91,0xd,0x50,0x55,0x5,0x34,0x87,0x33,0xe8,0x92,0x2,0x30,0xbc,0xf9,0xb9,0xf7,0x43,0xaa,0x7d,0x7e,0xe8,0xe1,0xba,0x2a,0xb,0x3c,0xf3,0xc2,0xeb,0x13,0x1f,0x52,0x6f,0xbb,0x65,0xf,0x6e,0xda,0xba,0x1,0x52,0x2a,0x62,0xe3,0x69,0x1d,0x40,0xc6,0x38,0x49,0x59,0xc6,0x66,0xa6,0xf4,0xc3,0x92,0xa4,0x49,0x42,0xd4,0x9e,0x86,0x4a,0x41,0x97,0x5,0x74,0x45,0xd,0x4e,0xa7,0xd3,0x83,0xb3,0x16,0x45,0x96,0x31,0xc0,0x56,0xa0,0xc8,0x9,0x54,0x4a,0xd3,0x2e,0x94,0x8a,0x11,0xc5,0xc9,0xc4,0x34,0x4c,0xc1,0xc,0xe,0xd1,0x60,0x2f,0x58,0x6e,0x78,0xa3,0x28,0x86,0x10,0x82,0x8e,0x49,0x99,0xa3,0xcc,0x73,0x4a,0xda,0x64,0xf0,0xca,0x5a,0xb,0x25,0x23,0x9c,0x3c,0x73,0x1,0x76,0x2,0xb8,0x78,0xc7,0x2d,0x3b,0xf8,0x78,0x1,0x49,0x92,0x86,0x66,0x42,0x4a,0x89,0xee,0xcc,0x3c,0x35,0xcb,0xcc,0xfe,0x2b,0xf3,0xc,0x2a,0x8a,0x11,0xc5,0x31,0x92,0xe,0x5,0xa7,0x94,0x65,0x81,0xbb,0x6f,0xdb,0x39,0x96,0xae,0xb,0x0,0x27,0x4e,0x9d,0x25,0x50,0x94,0xbd,0xff,0x28,0x91,0xd2,0x71,0x28,0x48,0x89,0xa2,0xc8,0x61,0x8c,0xc1,0x8b,0xaf,0x1d,0x1c,0xfb,0x6c,0x9a,0x24,0x58,0x35,0x3f,0x3b,0xf6,0xfa,0xa1,0x23,0xc7,0x71,0xf6,0xc2,0x42,0xf0,0xe3,0x33,0xd,0xe9,0xf5,0xb3,0x2f,0xbe,0x31,0xb6,0x8f,0x69,0x9a,0x62,0xf5,0xaa,0x71,0xf6,0xdf,0xd1,0xe3,0x27,0x71,0xec,0xcc,0x45,0x18,0xa3,0x89,0x95,0xc2,0x92,0x5f,0x1,0x3a,0x37,0x3e,0x6c,0x45,0xeb,0xa,0x55,0x55,0x86,0x9f,0x95,0x54,0x30,0xa6,0x82,0x83,0x43,0x99,0x67,0xe1,0xd8,0x90,0xd9,0xbe,0xb,0xdf,0x7,0x9f,0x8e,0xea,0xbf,0xb,0x96,0x9b,0x3f,0xf,0xde,0x36,0x9b,0xc2,0x26,0xf8,0x57,0x5f,0x9b,0x62,0x88,0x64,0xd1,0x36,0x56,0x6d,0x7d,0x94,0xe5,0x27,0x21,0xea,0xa4,0x4f,0xc7,0x41,0x20,0x66,0x8,0xac,0xa1,0x7f,0x87,0x20,0xe,0x6,0xcf,0x7d,0x12,0xab,0x8,0x60,0xa0,0x75,0x1c,0xfe,0x21,0xd0,0x8,0x51,0x1a,0x1f,0x5b,0x3d,0x58,0x6e,0x58,0x6a,0x3c,0x58,0x59,0xa,0x81,0x42,0x34,0xc1,0x52,0x40,0xa9,0x18,0x80,0xe0,0x60,0xd,0x15,0x24,0xf9,0x2a,0x8a,0x59,0x86,0x2c,0x38,0xc5,0x57,0x84,0xfb,0x94,0x90,0x6a,0x22,0x2e,0xe6,0x9c,0x9f,0xdc,0x22,0x0,0x4d,0x57,0x15,0xa2,0x38,0x41,0x7f,0x79,0x11,0xba,0x2c,0x3,0xe8,0x49,0x21,0x4f,0x9a,0xd9,0xc2,0x15,0x5e,0x3b,0x74,0x14,0xff,0xfb,0x7f,0xfa,0x7f,0xb1,0xff,0x8d,0x43,0x28,0xcb,0x9f,0x2f,0x60,0x7f,0x75,0x71,0x9,0x5f,0xf9,0xeb,0xef,0xe2,0xdf,0xfd,0xc1,0x57,0xb1,0x92,0xd1,0x58,0xc,0x0,0x65,0x99,0x87,0xfb,0x9d,0x60,0x2f,0x40,0x21,0x24,0x8a,0x6c,0x85,0x24,0xc1,0x9c,0x38,0x6f,0xad,0xf9,0xc5,0x3f,0xf,0x38,0x87,0x85,0x85,0x2b,0xf8,0xda,0x37,0xbe,0x87,0x7f,0xf3,0x6f,0xff,0x23,0xbe,0xf5,0xdc,0x7e,0xa,0x4d,0xa9,0x2a,0xc0,0x81,0xbc,0x75,0x15,0x85,0xc6,0x68,0xbe,0x3f,0x79,0xcf,0x38,0xe7,0x1c,0xaa,0x22,0x27,0x69,0xaf,0x8a,0x10,0x27,0x9,0x92,0xa4,0x83,0x48,0x91,0xb4,0xd7,0x5a,0x4d,0xc9,0xc9,0x1e,0xa8,0xb3,0x3e,0x41,0xdd,0x31,0xc8,0x46,0x56,0xb,0x76,0x24,0xad,0xba,0x4e,0x98,0xae,0xaf,0xdd,0x71,0xb9,0x6a,0xf3,0x77,0x87,0xe6,0xc0,0xdb,0xf4,0xe3,0xf3,0x21,0x19,0x2,0x23,0x44,0x37,0x31,0xa4,0xe4,0x1d,0xa,0xdd,0x70,0x6e,0x38,0xc5,0xb8,0x71,0x61,0x4f,0x64,0x7e,0xf,0x49,0x79,0x27,0x1c,0xdf,0x9f,0xdf,0x5d,0xc0,0xbd,0xcf,0x6b,0x4d,0xf,0xc4,0xa6,0x54,0x5e,0x34,0x8c,0x2,0xeb,0xd7,0x3,0xf0,0xd8,0xde,0xa7,0xda,0x6a,0xab,0xad,0x91,0x6a,0x19,0x80,0x6d,0xb5,0xd5,0x56,0x5b,0xd7,0x53,0x89,0x61,0x90,0xca,0x3f,0x5,0x7a,0xf,0x19,0x15,0x25,0x1,0x8,0xd1,0x15,0x19,0xc1,0x3,0xd4,0xec,0x49,0x21,0xfd,0xbc,0x3b,0xe2,0x24,0xc5,0xa7,0x1f,0xdd,0x37,0xd1,0x47,0xee,0xd8,0x89,0xd3,0x38,0x7e,0xfa,0x2,0xb3,0xdf,0x2c,0x2a,0x5d,0x35,0x24,0xb7,0xd4,0x4c,0x56,0x65,0x4e,0x4d,0x4f,0x9e,0x5,0xc6,0x48,0x91,0xd,0x20,0x84,0x40,0xd2,0xe9,0xa2,0xcc,0x33,0x58,0x6b,0xd0,0xed,0xcd,0xe2,0xd5,0x83,0x47,0xf1,0x99,0x33,0xe7,0xb0,0x6d,0xeb,0xe6,0xa1,0xf5,0x24,0x49,0x8c,0x4f,0x3c,0x78,0x27,0xde,0x39,0x7e,0x6,0xba,0xb2,0x70,0x8e,0x0,0x26,0x29,0x5,0xa4,0x8c,0xd8,0xb7,0x4f,0x4c,0x69,0x7c,0x8,0x68,0x73,0xa0,0x94,0x5c,0xa3,0x2b,0x2,0xbd,0xf2,0xc,0x4a,0x29,0xe4,0xba,0x42,0x9e,0xd,0x0,0x38,0x74,0x67,0xe6,0x60,0xb4,0x46,0xda,0x9d,0x41,0xda,0xe9,0x86,0x4,0x5e,0xc9,0xb2,0xd3,0x49,0x40,0x8f,0x6f,0x92,0x74,0x59,0x40,0xc5,0x31,0x1,0x50,0xd6,0x6,0x8f,0xaa,0x62,0xd0,0x87,0xb1,0x6,0x55,0x91,0x23,0x4e,0xbb,0xc4,0x3c,0x94,0x92,0x64,0xd7,0xd6,0xa0,0xaa,0x4a,0xbc,0x73,0xe2,0x1c,0x96,0x96,0x97,0xb1,0x7a,0x44,0x62,0xbd,0x7b,0xd7,0xe,0xec,0xda,0xba,0x11,0xa7,0x2f,0x2d,0xb1,0xe4,0x99,0xce,0x8b,0x35,0xc4,0x2a,0xc9,0x7,0x2b,0x1,0xb8,0xf5,0x8c,0xcd,0x22,0xcf,0xd1,0xe9,0xf6,0x20,0x95,0xc2,0xdc,0x4c,0xf,0xf7,0xdf,0x73,0xc7,0xd8,0x36,0x97,0x65,0x85,0x37,0xde,0x39,0x8e,0x4e,0x77,0x6,0xd9,0x60,0x5,0x49,0xda,0x41,0x91,0x67,0x70,0xae,0xc,0x69,0x8e,0x71,0x9c,0xa0,0x2c,0x72,0x3c,0xf7,0xea,0x21,0x3c,0xfe,0xf0,0x3d,0x98,0x9d,0x99,0xb9,0xe6,0xe5,0x56,0x69,0x83,0x67,0x5e,0x38,0x50,0x83,0x6f,0x71,0x42,0xbe,0x51,0x92,0x12,0xa6,0xdf,0x38,0x7a,0x16,0x17,0x17,0x2e,0x63,0xe3,0x86,0x75,0xef,0xb,0x66,0x3c,0xfd,0xdc,0x8b,0x18,0xf4,0x57,0xc8,0xe0,0x9e,0xc1,0x8d,0x32,0xcf,0x21,0x24,0x25,0x20,0x67,0x5,0x85,0xa3,0x90,0x34,0xcd,0xa1,0xc8,0x48,0x2,0x4e,0x52,0xc4,0x8,0x51,0x44,0x40,0xaf,0x61,0x89,0x63,0x55,0x50,0x38,0x88,0x68,0x7a,0xfe,0x89,0x9a,0x75,0xe4,0x8f,0x6b,0xfd,0x5d,0x71,0x8d,0x66,0x55,0xc,0x49,0xe1,0x43,0xe3,0x25,0xea,0xa6,0xcf,0xfb,0xa8,0xb5,0xd5,0xd6,0x87,0x5d,0xc3,0x6c,0x29,0x9f,0xae,0xea,0x20,0x5,0x27,0xa7,0x33,0x0,0x28,0x5,0x81,0xe0,0xc4,0xfe,0xa6,0x9,0xa0,0x66,0x1a,0x2b,0x7c,0x70,0x88,0x31,0x21,0xb0,0xc8,0x9,0x1b,0x52,0x60,0x27,0xae,0xdb,0x72,0x88,0x92,0xae,0xc2,0xe4,0x41,0x9c,0x24,0x30,0x5a,0xa0,0x2a,0x72,0x62,0x3b,0xa7,0x5d,0x18,0xab,0x11,0x47,0x9d,0x30,0xf9,0xe2,0x93,0x6c,0x5,0x40,0x16,0x4,0x65,0x89,0xb4,0xd3,0x25,0x8f,0x4e,0x9e,0x7c,0x22,0x0,0x6a,0xf2,0x7a,0x43,0x80,0xf,0x7b,0x77,0x16,0x59,0x86,0x6e,0x77,0x6,0xd6,0xd2,0x44,0x80,0x28,0x29,0x30,0xc9,0x83,0xf9,0x7e,0xdc,0xbe,0x70,0x65,0x9,0xff,0xfe,0x8f,0xbf,0x8e,0x5d,0x5b,0xd6,0xe1,0xd7,0x3e,0xf3,0x71,0xec,0xda,0xb9,0x1d,0x33,0xbd,0xde,0xcf,0x78,0xdc,0x81,0x8b,0xb,0x97,0xf1,0xe2,0xab,0x6f,0xe2,0x7,0x3f,0x79,0xd,0x57,0x57,0x32,0x40,0x0,0xba,0x18,0xd0,0x78,0xc8,0x13,0x17,0x52,0x12,0xf3,0xad,0xc8,0x6,0xc1,0xcf,0x95,0xac,0x38,0x14,0xe2,0x24,0x21,0x0,0xf6,0x17,0x4,0xcc,0x68,0xad,0xb1,0xd2,0x1f,0xe0,0xdd,0x63,0x27,0xb1,0xff,0xcd,0xc3,0x78,0xed,0xd0,0x71,0x2c,0xf7,0x7,0x34,0xbe,0x79,0x30,0x98,0x81,0x21,0xc9,0xc9,0xf4,0x1e,0xf4,0xca,0x79,0x7b,0x4b,0x1e,0x6b,0x5,0xdf,0xb3,0x8c,0xd1,0x48,0xe3,0x2e,0x4d,0xa8,0xf0,0x33,0x81,0xb3,0x16,0x4e,0xd6,0x93,0x79,0x42,0x48,0xbe,0xee,0xea,0xb1,0x72,0x68,0x8c,0xf4,0x20,0x21,0x8f,0x9f,0x92,0x3d,0x8a,0x87,0xa0,0x2d,0xf,0x1e,0x4a,0x39,0xcc,0xfc,0x13,0x3e,0xcc,0x49,0x84,0x6b,0x59,0x34,0x80,0x3a,0x37,0x2,0xda,0x89,0xc6,0xf9,0x42,0x3,0x3e,0xac,0xdf,0x57,0xfb,0x4,0xd6,0x87,0x63,0x9c,0xe5,0x37,0x19,0x9a,0x7b,0xbf,0x10,0x92,0x49,0x20,0x9e,0xf8,0x0,0x7f,0xe7,0x2d,0x71,0xbc,0xbf,0x23,0x4e,0x83,0x93,0x17,0xc7,0xbf,0x88,0xc6,0x56,0xba,0x1a,0xfd,0x6b,0xa1,0xbf,0xb6,0xda,0x6a,0xab,0x5,0x0,0xdb,0x6a,0xab,0xad,0xb6,0xfe,0x1e,0x20,0x80,0x42,0x8,0x58,0x3f,0xdb,0xcd,0xd2,0x5c,0x48,0xc9,0x49,0x89,0x34,0x9b,0xef,0x8c,0xa1,0x14,0x48,0xfe,0xd7,0x71,0x73,0x90,0xc4,0x1d,0x4a,0x3e,0xec,0x25,0xb8,0x75,0xcf,0xce,0x9,0x40,0x8d,0xc3,0xb3,0x2f,0xbe,0xce,0x9e,0x74,0x49,0x68,0x42,0x8d,0xae,0x40,0x6c,0x12,0x6a,0x28,0xca,0x22,0x67,0x19,0x6e,0x89,0xb2,0x2c,0x18,0x5c,0x31,0xe8,0xf4,0x66,0x43,0xca,0x60,0x84,0x84,0xe4,0x67,0x52,0xe2,0x85,0xd7,0xde,0x1e,0x3,0x0,0x1,0xe0,0xce,0xdb,0xf6,0x60,0xcd,0xec,0xf,0x71,0x51,0x57,0x30,0xda,0x6,0xe9,0x6a,0x55,0x64,0x0,0x3a,0x98,0xaa,0xad,0x61,0xb9,0x9b,0x7f,0x22,0x56,0x2a,0x86,0x54,0xc4,0x42,0x59,0x59,0xbc,0x82,0x28,0x4e,0x98,0xf5,0x52,0x7,0x6e,0x94,0xc5,0x0,0x52,0x91,0xc,0xce,0x1a,0x8d,0x28,0xea,0xb0,0x99,0xfb,0xf4,0xe5,0x53,0xa8,0x44,0xc4,0xac,0x19,0x11,0xc0,0x4e,0x19,0x45,0xc8,0x97,0xfb,0x88,0x92,0x14,0xce,0x52,0x40,0x47,0x59,0xe4,0x0,0x44,0x0,0xed,0x6,0x79,0x89,0x77,0x8e,0x1c,0xc3,0xc7,0xee,0xbf,0x67,0x68,0xd1,0x69,0x92,0xe0,0x37,0x3f,0xf7,0x38,0x7e,0xff,0x4f,0xbf,0x11,0x24,0xbe,0x2,0x40,0xa9,0x73,0x54,0x65,0x8e,0xee,0xec,0x3c,0x2a,0xe,0x2b,0x81,0x73,0x48,0x3a,0x1d,0x96,0x15,0x53,0xd3,0xf4,0xb9,0x4f,0x3e,0x30,0x51,0xf2,0xb6,0x70,0x65,0x11,0x27,0xce,0x2f,0x42,0x48,0x49,0xdb,0xc0,0x60,0x97,0xf7,0x7f,0x22,0xe9,0x77,0x84,0x22,0x1f,0xe0,0xf2,0x55,0x81,0xd7,0xf,0x1e,0xc5,0x23,0xf,0xdc,0x75,0xcd,0xab,0xed,0xec,0xb9,0xf3,0x78,0xfb,0xe8,0x29,0x58,0x8,0x24,0x69,0x87,0xae,0x3,0x21,0x0,0xf6,0x1f,0xcb,0xb2,0xa,0xaf,0xbe,0x7e,0x8,0x9f,0x7d,0xe2,0xd1,0x6b,0x2e,0xe7,0xe2,0xc2,0x65,0xbc,0xf8,0xc6,0xbb,0x0,0x5f,0x3f,0x41,0x2a,0x98,0x24,0x81,0x59,0x63,0x8c,0xe,0x4c,0xc5,0xb2,0xc8,0x51,0x55,0x25,0x7a,0xec,0x39,0x16,0x45,0x31,0x54,0x1c,0x93,0xdf,0x23,0x87,0x1f,0x78,0xd0,0x55,0x30,0x28,0xed,0x97,0xe1,0x82,0xd4,0xad,0xf6,0xe9,0x72,0xec,0x97,0xe9,0x65,0x93,0x42,0x0,0x3e,0x27,0xa7,0xc9,0x34,0x69,0x26,0x69,0xa3,0x21,0x9b,0x6b,0xab,0xad,0xf,0x75,0x94,0x6f,0xca,0x27,0x3,0x93,0x95,0xb0,0x0,0xc9,0x72,0x79,0x81,0x3a,0x7c,0x21,0x8a,0xa2,0x0,0xa,0x7a,0x3e,0x93,0x2e,0x29,0x4d,0xdc,0x3a,0x4a,0x72,0xa5,0x40,0x7,0xba,0x47,0x40,0x8,0x9c,0xbb,0x70,0x9,0xc7,0xde,0x3b,0xc9,0xdf,0x11,0x1,0xcf,0x16,0x3c,0x73,0xfe,0x12,0xb3,0xf0,0x4a,0x1a,0x7,0x8d,0x46,0x99,0x67,0xe8,0x2f,0x5d,0xc5,0xec,0xaa,0x35,0xc1,0xf2,0x61,0x66,0x7e,0xd,0xb1,0x2,0x11,0xd5,0x2c,0x2f,0xe,0x9e,0xf2,0x61,0x46,0x7e,0xbc,0x90,0x52,0x41,0x0,0xc8,0xf2,0x2,0x27,0x4e,0x9d,0xd,0xb6,0x13,0x1e,0x58,0xca,0xb2,0xc,0x83,0xc1,0x80,0x96,0xc7,0x6c,0x6d,0xf,0xd2,0x94,0x45,0x8e,0x4e,0x77,0x96,0x19,0x80,0x39,0x7a,0xb3,0xf3,0x28,0xf3,0x8c,0xc0,0x2b,0x96,0x3b,0x5b,0x6b,0xf1,0xce,0x7b,0xe7,0xf0,0xbf,0xfe,0x87,0x2f,0x61,0xfd,0x7c,0x7,0xf7,0xdf,0x7d,0x2b,0xee,0xb8,0xf5,0x66,0x6c,0xdb,0xb6,0x5,0x33,0xbd,0x2e,0xb3,0x14,0x47,0xee,0x9d,0xce,0xa1,0xaa,0x34,0xb2,0x3c,0xc7,0xe5,0xab,0x4b,0x38,0x72,0xf4,0x4,0xde,0x3c,0xfc,0x1e,0xe,0xbf,0x77,0x96,0xfd,0xfc,0xf8,0x98,0xb1,0xaf,0xa1,0x1f,0x4b,0x1,0x7,0x5d,0x15,0x1c,0xbc,0xa2,0x98,0x19,0x9d,0x31,0xc0,0xb6,0x2,0x21,0xe7,0x20,0xa5,0xc4,0x95,0xc5,0x25,0x1c,0x3f,0x71,0x2a,0x78,0x93,0xe,0x3,0xbb,0x22,0x30,0x31,0xe1,0x6c,0x23,0x4,0x82,0x2,0x39,0x2c,0x33,0x2f,0xb5,0x36,0x28,0xab,0xa,0xfd,0xfe,0x0,0x2b,0xfd,0xc,0xc7,0x4f,0x9e,0xc3,0x99,0x8b,0x97,0x71,0xfa,0xfc,0x25,0x64,0x5,0xdd,0x9f,0x2,0xb,0x8f,0x1,0x34,0x7f,0xbf,0xa6,0xcb,0x86,0xef,0x1,0x92,0x6c,0x31,0xa4,0x94,0x28,0xf9,0x73,0xba,0x2a,0x31,0x58,0x59,0xe,0xf7,0x44,0x38,0x20,0x4e,0x3a,0x3c,0x9e,0x4a,0x8,0xa9,0x82,0x7d,0x82,0x54,0x22,0xb0,0xdb,0x83,0xff,0x30,0xfc,0x30,0xd9,0x90,0xf1,0x86,0x70,0xd,0xb6,0x5f,0x8,0x32,0x75,0xba,0x2e,0x44,0x23,0x65,0x7d,0xf8,0xa9,0xa6,0x91,0xb2,0x31,0x21,0xc0,0x63,0xc8,0xa7,0x6f,0x4a,0x48,0x88,0x1b,0x2,0xf7,0x86,0xc1,0xbf,0x9f,0xe,0xc4,0x9b,0x12,0x30,0x32,0xf4,0x9e,0xf,0x2,0xfa,0xa1,0x1,0xf6,0xa1,0x1,0xfe,0x35,0x90,0x4b,0x51,0x83,0x79,0x1,0x14,0x6c,0x9a,0xa,0x86,0x63,0x72,0x8d,0x47,0xa1,0x96,0x1,0xd8,0x56,0x5b,0x6d,0xb5,0x0,0x60,0x5b,0x6d,0xb5,0xd5,0xd6,0xf5,0x5b,0x52,0xd6,0x32,0x45,0x29,0xa3,0xe0,0x13,0x57,0x6b,0x61,0x4,0x49,0x50,0x55,0x1d,0xdc,0xa1,0x39,0x64,0x83,0xf3,0x76,0x1,0xe7,0xf0,0xa9,0x87,0xef,0x9a,0x68,0x9e,0x7e,0xe1,0xd2,0x2,0xe,0x1c,0x3e,0x9,0xc5,0x32,0x57,0x63,0xc,0xe0,0x48,0x52,0x96,0xa4,0x9d,0x90,0xa2,0xeb,0x1b,0x19,0x6a,0x92,0x28,0xc1,0x35,0x4e,0x52,0x92,0x14,0x45,0x11,0xe2,0xb4,0xcb,0xd2,0x4b,0xd,0x6b,0x14,0x9e,0x7b,0xf5,0x1d,0x3c,0xf1,0xd8,0x3,0x58,0x3d,0x12,0xc,0x31,0x3b,0x3b,0x83,0x4f,0x3d,0x7c,0x2f,0xbe,0xfc,0xcd,0x67,0xc9,0xa3,0x30,0x4d,0x29,0x11,0x56,0x51,0x70,0x89,0x9d,0xf2,0x6c,0x2b,0xa4,0xaa,0x1b,0x28,0x8,0x96,0x3,0xcb,0x0,0xa,0x16,0x59,0x1f,0x45,0x9e,0x61,0x6e,0xd5,0x5a,0x68,0x5d,0x21,0xee,0xa5,0x88,0xa2,0x24,0x30,0x21,0xc9,0xc7,0x2a,0x21,0x90,0x73,0xca,0xe3,0x7b,0x14,0x27,0xe4,0xc5,0x67,0x98,0x11,0xc3,0x8d,0x73,0x3e,0xe8,0xa3,0x2a,0xa,0xcc,0xcc,0xaf,0x26,0xd6,0x23,0x33,0x42,0x92,0x4e,0x97,0x18,0x33,0x1c,0xb8,0x21,0xa5,0xc4,0x77,0x9e,0x79,0x9,0xf7,0xde,0x7d,0x3b,0x92,0x78,0xd8,0xaf,0xef,0xb6,0x9b,0x77,0xe2,0xd7,0x3e,0xf5,0x0,0xfe,0xfa,0x99,0xfd,0x10,0x52,0x22,0x1f,0xac,0x30,0xa0,0xa5,0x90,0xad,0x2c,0x5,0x60,0xd1,0x37,0xec,0x42,0xc4,0x0,0x2c,0x1e,0xbe,0x6b,0xf,0x1e,0x7f,0xe4,0xbe,0x31,0x7f,0x3d,0xe7,0x1c,0x7e,0xf4,0xe2,0x6b,0x30,0x96,0x8c,0xd9,0xa3,0x28,0x41,0x55,0xe6,0x90,0x42,0x42,0xeb,0x92,0x98,0x8c,0x2a,0xc2,0xf2,0xe2,0x2,0xe6,0x56,0xad,0x83,0x31,0x1a,0xdf,0x7d,0xf6,0x25,0xdc,0x7f,0xcf,0x5e,0x24,0x71,0x34,0xb5,0xb1,0x78,0xfa,0xb9,0x97,0x90,0x17,0x5,0xb1,0xe9,0xb8,0xb1,0x8b,0x3d,0xa0,0xcc,0x21,0x1,0xcf,0xbe,0xfc,0x16,0x3e,0xf1,0xf0,0xbe,0xb1,0xf0,0x90,0x66,0xfd,0xf8,0x85,0x57,0xb1,0xb4,0xbc,0xdc,0x8,0xb,0xa0,0x80,0x0,0x1,0x90,0x74,0x9b,0x59,0x2a,0x1e,0xd0,0xd0,0xec,0x53,0xe5,0xc3,0x50,0x62,0x96,0x4a,0xb,0x96,0x98,0x47,0x51,0xcc,0x3d,0x92,0x85,0x31,0x76,0x8,0x38,0x11,0xec,0x51,0xe9,0xc1,0x42,0x6b,0xd,0xfb,0x56,0xda,0xb0,0x1f,0x68,0xf4,0x65,0xce,0x37,0xa7,0x81,0xfd,0xe7,0xea,0xc6,0xb6,0x1d,0x72,0xda,0xfa,0x8,0xca,0x79,0xb6,0x6a,0x30,0xf9,0xf7,0x12,0x60,0x96,0x3,0x3b,0x4a,0x59,0x6d,0x6,0x2b,0x78,0x70,0x26,0x78,0x9e,0x29,0x15,0xd8,0x72,0x96,0xbf,0x2b,0x94,0xe2,0x4a,0x0,0xd0,0x1f,0x7d,0xe5,0xdb,0x61,0x2,0x24,0x58,0x48,0x70,0x28,0x8f,0x94,0xa,0x42,0x29,0x94,0x2b,0x79,0x0,0xd9,0xba,0xb3,0x4,0xc6,0x77,0x7a,0xb3,0x35,0xb,0x8e,0x53,0xba,0xa3,0x38,0x85,0x65,0xe6,0xa0,0x52,0x11,0xac,0x73,0xb0,0xae,0x82,0x33,0xb5,0x5f,0xa7,0x35,0x1a,0x27,0xcf,0x1b,0xfc,0x9b,0xff,0xed,0x3f,0x87,0x60,0x89,0x20,0xc7,0x87,0xb,0x21,0x56,0x2a,0x8a,0x38,0x45,0x9d,0xc2,0x7e,0x8,0x58,0xeb,0xa3,0x37,0x4b,0x4c,0xea,0xaa,0xc8,0xc9,0x8b,0x94,0x99,0xc0,0x10,0x2,0x96,0x27,0x38,0xca,0x22,0xc7,0xb1,0x53,0x57,0x71,0xfc,0xf4,0x79,0x7c,0xe9,0xeb,0x4f,0x61,0xa6,0xd7,0xc3,0xfa,0x35,0xf3,0x58,0xbf,0x76,0xd,0xe6,0xe6,0x66,0xd0,0xed,0xf6,0x20,0xa3,0x4,0xfd,0x7e,0x1f,0xda,0x58,0x2c,0xae,0xc,0x70,0x79,0x69,0x80,0xb2,0xac,0xc2,0x98,0xa1,0xf9,0x7e,0x26,0x1c,0x5,0x5b,0xf9,0xe3,0x59,0x55,0x25,0xb1,0x90,0x1b,0xe3,0x83,0x67,0xc0,0x1b,0xa3,0x19,0x30,0x45,0x60,0x8a,0xff,0xe4,0xb5,0x43,0x78,0xe5,0xd0,0x9,0x28,0x15,0x43,0x8,0xd0,0xc4,0x1c,0x98,0x8d,0x2f,0x25,0xb2,0xc1,0xa,0x8c,0xd1,0xc8,0x56,0x96,0x61,0x79,0xac,0x57,0x4a,0x1,0xe,0x48,0x7b,0x3d,0x44,0x51,0x8c,0x28,0x4e,0x1b,0xa0,0x57,0x3d,0x19,0xe5,0x13,0xe1,0x1,0xc1,0xe7,0x8b,0x0,0x3b,0x6b,0xc,0x6f,0xbf,0x82,0x73,0x26,0x78,0xab,0x6a,0x96,0xfa,0x1a,0xa3,0x51,0xe4,0x64,0xdd,0x51,0x55,0x25,0xbd,0x47,0x46,0x88,0xe3,0x34,0x8c,0xcb,0x94,0xc4,0xae,0x86,0x80,0xe8,0x70,0x3d,0x42,0x4,0xe6,0x60,0xb0,0x5a,0xb0,0x6e,0x48,0xb6,0x2b,0x1a,0x1,0x28,0xce,0x99,0x1a,0x4,0xe3,0x49,0xb4,0x20,0xd5,0xd,0x63,0xf6,0xb8,0x17,0xab,0x68,0x4,0x77,0x60,0x4,0xfb,0xaa,0x65,0xc3,0xef,0xcf,0xd2,0x73,0xef,0xff,0x45,0xb,0xfe,0x9a,0x53,0x90,0x78,0xc,0x49,0x71,0xa7,0xae,0x77,0xc8,0x3b,0xa2,0x6,0xf1,0x84,0x7,0xb9,0x31,0xc2,0xfc,0x43,0x3,0xe8,0xc4,0xb8,0x94,0x57,0x8c,0x24,0x8f,0xb8,0xd1,0x7d,0x72,0xed,0xe4,0x54,0x5b,0x6d,0xb5,0xd5,0x2,0x80,0x6d,0xb5,0xd5,0x56,0x5b,0x7f,0x3f,0x4a,0xc0,0x81,0x65,0x39,0xd6,0x30,0xc8,0x27,0xa9,0x51,0x51,0x11,0x3,0x83,0xc,0xfe,0x41,0xc0,0x9,0x70,0x30,0x6,0x35,0x52,0xba,0x2c,0xb1,0x6a,0x6e,0x16,0xf,0xdc,0x73,0xc7,0x44,0x10,0xe9,0x27,0x2f,0xbf,0xe,0x6d,0x1c,0x37,0x5f,0x12,0xd6,0x58,0x58,0x67,0x10,0x45,0x9,0xcb,0x49,0xa9,0xd9,0x2c,0xb2,0x1,0x1c,0xcb,0x34,0x25,0x27,0xd,0xe6,0x59,0x1f,0x69,0xa7,0x17,0x24,0x9b,0x65,0x91,0xa1,0x37,0x33,0x47,0xde,0x73,0xf9,0x0,0x3f,0x7e,0xf1,0x0,0x3e,0xf7,0xe4,0xc7,0xc7,0xf6,0xe8,0xa1,0xfb,0xef,0xc2,0xd7,0x9e,0x7a,0xe,0x25,0x88,0xb5,0x22,0x15,0x81,0x60,0x33,0x73,0xab,0xe1,0xac,0x9e,0xfc,0xdc,0xce,0xac,0x3b,0x6b,0x2d,0x83,0x8c,0x6,0x65,0x91,0x5,0x70,0xd2,0x39,0x47,0x89,0xbf,0xc6,0x70,0x53,0x45,0xb2,0x32,0x29,0x25,0x1,0x4f,0xdc,0x90,0x4d,0x7b,0x8e,0x16,0xd,0x80,0x28,0x48,0x8a,0x18,0xbc,0xf2,0xa9,0xba,0xd9,0xca,0x32,0x3a,0xbd,0x59,0xf2,0xab,0x8a,0x8,0x2c,0x4c,0xd2,0x6e,0x30,0xcc,0xb7,0xc6,0xe0,0xd4,0xc5,0x25,0xec,0x3f,0x70,0x10,0x1f,0xbb,0xff,0xee,0x11,0x20,0x57,0xe2,0xc9,0x4f,0x3c,0x88,0x34,0x91,0xf8,0xc6,0x33,0xaf,0xa1,0x94,0xa,0x45,0x3e,0x0,0x1c,0x1,0x8f,0x86,0x3d,0xb4,0x7c,0xe0,0x45,0x12,0x49,0xfc,0xf2,0x63,0xfb,0xf0,0xc4,0xc7,0x1f,0x40,0x9a,0x26,0x63,0xdb,0x7b,0xea,0xcc,0x39,0x3c,0xf3,0xf2,0xc1,0x9a,0x11,0xc3,0xfe,0x90,0x1,0x8,0x63,0xa3,0x7a,0xdf,0x5c,0x43,0x8,0x9c,0xbe,0xb4,0x88,0x23,0xef,0x1e,0xc7,0xed,0xb7,0xed,0x99,0x78,0x8c,0x17,0x2e,0x5f,0xc5,0xf,0x9f,0xdf,0x8f,0xb2,0xd0,0x48,0x92,0x94,0xf6,0xaf,0xd3,0x43,0x59,0x92,0x69,0xbc,0xd6,0x15,0x9c,0x73,0x38,0x7f,0xe9,0xa,0xe,0x1e,0x3a,0x82,0x7,0xf6,0x4d,0x66,0x13,0x2e,0x2d,0x2f,0xe3,0xe9,0x1f,0xbf,0x1c,0x42,0x3e,0x0,0x40,0x79,0xd0,0xc2,0x68,0x38,0x20,0x0,0xb7,0x9e,0xb1,0xe9,0x83,0x64,0x3c,0x30,0x98,0x76,0x7a,0x48,0xd2,0x4e,0x68,0xfa,0xa5,0x54,0x21,0x95,0x32,0xb0,0x6b,0xbc,0x14,0xd2,0xa1,0xe,0xc5,0x19,0x95,0x7a,0x35,0xa4,0x95,0xae,0xe1,0xde,0x3e,0x2a,0xf,0x73,0xd3,0xd2,0x2a,0xdb,0x6a,0xeb,0xc3,0x81,0x0,0xeb,0x70,0x3,0xaf,0x8e,0x94,0x12,0x56,0x6b,0x78,0xa6,0x9e,0x35,0x6,0x10,0x1e,0xd4,0xf6,0xf7,0x4,0x17,0x40,0xee,0x10,0xb8,0x21,0x5,0x7f,0x1f,0x1c,0xf2,0x1,0x85,0x55,0x8,0x6,0xef,0xb4,0xae,0x68,0x7c,0xe4,0xb1,0xa6,0x60,0x99,0xbf,0xd6,0x5,0x4c,0x55,0x51,0xda,0x70,0x3e,0x20,0x8f,0x4e,0x6,0xfa,0xaa,0xaa,0xc4,0x4c,0x67,0x15,0xb4,0x2e,0x91,0x24,0x1d,0xa8,0x28,0x66,0xa9,0xb1,0x83,0x50,0xcc,0x3a,0x13,0x4,0x10,0x3a,0x6,0x8c,0x0,0x62,0xa2,0x7b,0x4f,0xd9,0x28,0x49,0x51,0x95,0x5,0xba,0xbd,0x59,0xe4,0x83,0x3e,0x54,0x44,0x69,0xc1,0xa5,0x1d,0x20,0x1f,0xf4,0xc9,0x1f,0x35,0xed,0x62,0xe9,0xca,0x25,0xa8,0x28,0xe2,0xa4,0xf4,0x9c,0x58,0xc8,0x46,0xc3,0x95,0x80,0x14,0x2,0x85,0xcd,0x82,0x17,0x68,0x91,0xf,0xc2,0xd1,0x2b,0xf2,0x1,0xa4,0x54,0xb8,0x72,0xe5,0x32,0x56,0xfa,0x7d,0x9c,0xb9,0x78,0x5,0x69,0x77,0x6,0x71,0x9c,0x84,0xf1,0xdf,0x87,0xaa,0x34,0x3d,0x5e,0x29,0xbf,0xa9,0x66,0x4c,0x7b,0xf6,0xbc,0xb3,0x86,0xd3,0xe9,0x35,0x83,0x6e,0x15,0xb2,0xfe,0x32,0xe0,0x80,0xb2,0xe4,0x63,0xc5,0xf7,0x9,0x6b,0x2d,0x3a,0xbd,0xe,0x4d,0x60,0x19,0x13,0xb0,0x21,0x3f,0xde,0x78,0x3b,0x6,0xf0,0x39,0x52,0x4a,0xc1,0xe8,0xa,0x65,0x3e,0x40,0x77,0x66,0x8e,0x59,0xd1,0x39,0xa2,0xd9,0x24,0x2c,0x4f,0xb2,0x4f,0x6d,0x91,0xf5,0xf9,0xfe,0xc1,0xe3,0x5f,0x55,0xd1,0xa4,0x8f,0x53,0x50,0x8d,0x64,0x68,0xc3,0x4c,0x75,0x9f,0x5a,0x5f,0x16,0x59,0x98,0xc4,0xf2,0x13,0x24,0x34,0xe1,0xd6,0x85,0xd5,0x1a,0xb2,0xa3,0x28,0x1c,0x86,0x81,0x29,0x63,0x34,0xe2,0x24,0xe5,0x9,0x43,0xd4,0x1e,0x74,0x2,0x10,0x90,0x3c,0x99,0x88,0xa1,0x0,0x8d,0xa6,0x5f,0x65,0x48,0xd3,0x85,0x8,0x60,0xd6,0x28,0x7f,0xe,0x23,0x50,0x5a,0x13,0xf4,0x9b,0x14,0xce,0xd1,0x4c,0xe8,0x75,0x3f,0x6d,0xf4,0xed,0x34,0x26,0x9f,0x98,0xb2,0x65,0xe1,0x25,0x31,0x1,0xfc,0xf3,0x4c,0x3e,0xd7,0x44,0x31,0xeb,0xcf,0x87,0xb7,0x32,0x50,0x3f,0xc4,0x68,0x74,0x4d,0xaa,0xe2,0xb5,0x51,0x4a,0x31,0x61,0x73,0xc6,0xfe,0xde,0xde,0xa7,0xda,0x6a,0xab,0xad,0xf1,0x6a,0x43,0x40,0xda,0x6a,0xab,0xad,0xb6,0xae,0xa3,0xf2,0xbe,0x4c,0xc4,0xbc,0xb0,0x21,0xfb,0xae,0xc9,0xd0,0xf2,0x41,0x21,0x2e,0x30,0x46,0x6c,0x0,0x56,0xa4,0x52,0xd8,0xb7,0x77,0x27,0xd6,0xae,0x59,0x35,0xb6,0xec,0x7e,0x7f,0x80,0x97,0xdf,0x78,0x17,0x65,0x3e,0x8,0xf,0x95,0xd6,0x1a,0xf6,0x14,0xb4,0xc1,0xdf,0x4e,0x97,0x5,0xcb,0x61,0xc9,0x14,0xbc,0xc8,0x33,0xa,0x6,0xa9,0x2a,0xc,0x56,0x96,0xa0,0x35,0xfd,0x6b,0xb5,0x46,0x55,0x96,0xd4,0x2c,0x58,0x8b,0xbf,0x79,0xea,0x87,0x58,0x5e,0x5e,0x19,0x5b,0xef,0xda,0x35,0xab,0xf1,0xe8,0xdd,0x7b,0x42,0xb3,0x53,0x64,0x3,0x68,0x5d,0x31,0x20,0x66,0xa6,0x3e,0x1d,0x53,0x50,0x88,0x8,0x4d,0x7,0x25,0x5e,0x96,0x10,0x52,0x91,0x4c,0xc9,0x59,0x18,0x5d,0x42,0xc5,0x9,0x54,0x4c,0xde,0x88,0x94,0x86,0x4c,0xac,0x32,0x92,0x99,0xd9,0x31,0x20,0xd4,0x97,0x6e,0x80,0x52,0x7e,0xf9,0x65,0x91,0xd7,0x8d,0xac,0x35,0xc8,0xfa,0xcb,0x90,0x52,0xa2,0xd3,0x9b,0x65,0xe0,0xae,0x96,0x9d,0x42,0x8,0x54,0x55,0x85,0x2f,0x7f,0xe3,0x19,0x5c,0x5a,0xb8,0x32,0xb6,0x7c,0xa5,0x24,0x1e,0x7f,0xf4,0x41,0xfc,0xcf,0xbf,0xfb,0x45,0xfc,0xfa,0xa7,0x1f,0xc4,0xee,0x6d,0x9b,0x90,0xc4,0x11,0x9c,0x29,0x21,0x9c,0x43,0xb7,0x93,0xe2,0xc6,0x4d,0xeb,0xf1,0x85,0x4f,0xee,0xc3,0xff,0xf2,0x3f,0xfc,0x36,0x3e,0xff,0xe4,0xc7,0xd1,0xe9,0xa4,0x63,0xcb,0xc9,0xf2,0x2,0x5f,0xfd,0xe6,0xd3,0x28,0x35,0x79,0x22,0xfa,0xf0,0x0,0x29,0x25,0xd2,0x6e,0x2f,0x84,0xbe,0x34,0x9b,0xe4,0xaa,0xc8,0x90,0xd,0x56,0xf0,0xc3,0xe7,0x5f,0xb,0xa1,0x1e,0xa3,0x75,0xe0,0xcd,0xb7,0x91,0x95,0x6,0x65,0x9e,0x21,0xcf,0x7,0x64,0x6c,0xcf,0xa0,0x62,0x91,0xf,0x2,0x13,0xa5,0x2a,0xb,0x7c,0xf7,0x99,0x17,0xc2,0xf1,0x1a,0xad,0xfd,0xaf,0xbd,0x8e,0x77,0x4f,0x9c,0x46,0xb6,0xb2,0x1c,0x3c,0x14,0x7d,0x73,0xdc,0x64,0xad,0xe4,0x83,0x15,0x62,0xd4,0x58,0x8b,0xfe,0xf2,0x55,0x38,0x67,0x91,0x24,0x1d,0xf4,0x66,0xe6,0x9,0xc8,0x64,0xbf,0xaa,0x0,0xe0,0x79,0xc6,0x13,0x1c,0x4b,0x22,0x1b,0x4c,0x92,0xd0,0x94,0x5a,0x8f,0x18,0xf,0xf7,0x5c,0xcc,0xca,0x90,0x9c,0x1e,0xdc,0x94,0x41,0xd2,0xa9,0x93,0xc0,0x4f,0xdb,0x64,0xb6,0xd5,0xd6,0xcf,0xad,0x44,0x0,0xb0,0x9b,0x80,0xb6,0xe0,0x54,0x72,0xf0,0xf8,0xee,0xc1,0x1e,0x9f,0x4,0xef,0x19,0x79,0x4d,0x8f,0x54,0x9f,0xe6,0xb,0x38,0x62,0x90,0xc1,0x5,0xcf,0x54,0xc5,0xe9,0xf0,0x36,0x4c,0x16,0x8,0x94,0x7e,0xa2,0x87,0xfd,0x55,0xcb,0x22,0xb,0xcc,0x41,0xa3,0x4b,0x4e,0x28,0xd7,0x21,0xd,0x97,0x26,0x14,0x1a,0xf7,0x28,0x66,0x4c,0xeb,0xaa,0x8,0xf6,0xb,0x1e,0x8c,0xa,0xc1,0xb,0xc6,0x42,0x49,0xc5,0x8c,0x72,0xcb,0x81,0x56,0x14,0xfc,0xe1,0xb7,0x3f,0xeb,0x2f,0xb3,0x5d,0x83,0x9,0xd6,0xb,0x86,0x59,0x6c,0x4,0x48,0xd2,0xfd,0xc7,0x87,0x2f,0x79,0xc6,0xb6,0x7,0x47,0xf3,0xc1,0xa,0x8d,0x55,0x19,0x3,0x98,0xfc,0x39,0xa,0x17,0xd2,0x21,0x49,0x5e,0x57,0x15,0xac,0xd1,0x81,0x15,0x67,0x8d,0x9,0x13,0xf,0x46,0x6b,0x62,0xb5,0x5b,0x1b,0xde,0x53,0x16,0x3,0x96,0xd3,0x2a,0x6,0xd6,0x68,0x4c,0xd3,0x55,0x19,0x3c,0xf0,0x7c,0x80,0x96,0xb3,0x36,0x8c,0x4d,0x9a,0xa5,0xd3,0x21,0x38,0xab,0xa2,0xe0,0xa3,0xa2,0xc8,0x98,0x69,0x6e,0x90,0xd,0x56,0x50,0x16,0x19,0xa2,0x38,0xe,0x63,0x2b,0x31,0x36,0x5d,0x63,0x82,0x8b,0x7c,0x19,0xbd,0x2d,0x85,0x33,0xc4,0x6,0xd4,0x9a,0x82,0x3f,0xfc,0xf2,0x3d,0xf0,0xa7,0x75,0x45,0x63,0xad,0xa8,0xc7,0xb9,0xe0,0xdd,0xcb,0x81,0x61,0x92,0x99,0x7e,0x82,0xc1,0x45,0xa5,0xa2,0xc6,0x35,0xc7,0xd,0xa5,0xac,0xd9,0xd5,0x7e,0xe2,0x31,0x24,0xb0,0x8f,0xfa,0xf3,0x35,0xee,0xcb,0xde,0xba,0xc2,0x8f,0xbb,0xc1,0xd2,0xe,0xf5,0x58,0xdc,0x40,0x1,0xc7,0x5e,0x1f,0x5,0x6,0xdd,0x34,0xd4,0xcc,0x5d,0x23,0x50,0x43,0x4c,0x6,0xd9,0x87,0xc3,0x35,0x30,0x9c,0xbd,0x31,0xaa,0xbb,0x6d,0xb2,0xf4,0x46,0x25,0xb9,0x4d,0x3f,0x43,0x37,0x92,0xc,0x3c,0x34,0xb9,0x34,0xd,0xee,0x1f,0xd9,0xa3,0x91,0xc,0x93,0x9,0xf1,0x1f,0xb5,0x3d,0xa0,0x6c,0xef,0x53,0x6d,0xb5,0xd5,0xd6,0x70,0xb5,0xc,0xc0,0xb6,0xda,0x6a,0xab,0xad,0xeb,0xaa,0x2f,0x14,0x43,0x4f,0x92,0x3e,0xc1,0xd6,0x9b,0x71,0x3b,0x6b,0xe8,0x81,0xdb,0x70,0x70,0x2,0x27,0xe4,0xea,0xaa,0xa4,0x19,0x7d,0x6b,0xf0,0xd8,0x43,0xf7,0x4e,0x4,0xbd,0xf6,0xbf,0xf1,0x36,0x2e,0x2d,0xf6,0xd9,0x40,0x9e,0x0,0x30,0xc3,0xc9,0x8f,0xce,0x18,0x54,0x55,0xc5,0x4a,0x1e,0x6a,0xaa,0x82,0xf4,0x49,0x53,0x3,0xa5,0xa2,0x38,0x0,0x33,0x3e,0xb8,0xae,0x64,0xf6,0x88,0x90,0x2,0x45,0x9e,0x60,0xff,0xeb,0x6f,0xe1,0x13,0x8f,0x7e,0x6c,0x64,0x97,0x4,0x3e,0xfd,0xf8,0xa3,0xf8,0xce,0x73,0xfb,0xa1,0xb5,0x86,0x63,0x40,0xd3,0x37,0x7a,0x93,0xca,0x3a,0x4b,0x20,0x14,0xcb,0xe1,0xaa,0x92,0x2,0x21,0x94,0x8e,0x50,0x15,0x39,0x81,0x5c,0x65,0x81,0x84,0x65,0xc9,0x71,0x9c,0x90,0x6c,0x18,0xe,0x69,0xb7,0x47,0xfb,0xcf,0xeb,0x98,0xe8,0x27,0xc4,0xc,0x4,0xeb,0x2c,0x4c,0xa5,0x21,0x55,0x84,0x22,0xa7,0x4,0xca,0xc1,0xca,0x52,0x0,0x3,0x57,0xad,0xdd,0x40,0x9e,0x55,0x5,0x79,0x52,0x25,0x69,0x37,0xc8,0xe0,0x1c,0x33,0x49,0xae,0x2c,0xb,0xfc,0xc9,0x57,0xbe,0x85,0xdf,0xfb,0x67,0xbf,0x31,0x51,0x26,0xbb,0x71,0xc3,0x7a,0x7c,0xee,0xc9,0xf5,0x78,0xf2,0x93,0xf,0x62,0x30,0xc8,0xc9,0x7f,0xa,0x40,0x27,0x4d,0xd1,0xed,0x76,0x10,0xc7,0xd3,0x6f,0xe5,0x5a,0x1b,0xfc,0xcd,0x77,0x9f,0xc3,0x5b,0x47,0xcf,0x86,0x64,0x4f,0x2f,0xb,0x97,0x52,0x5,0x46,0xf,0xdc,0xa,0xa4,0x90,0x88,0x3a,0x3d,0xc,0x56,0x96,0x10,0x27,0x29,0xa2,0x38,0xc1,0x2b,0x6f,0x1e,0xc1,0xb9,0xf3,0x97,0xb0,0x75,0xcb,0xc6,0xa1,0xe5,0xe6,0x79,0x8e,0xef,0x3c,0xfd,0x2,0xb2,0xfe,0x72,0x60,0x12,0x39,0x6b,0xa1,0x22,0x5,0xe1,0x24,0x83,0xa9,0x12,0x83,0x15,0x62,0x15,0xbe,0x71,0xe4,0x24,0x4e,0x9e,0x3e,0x8b,0x5d,0x3b,0xb6,0xf,0x2d,0xa7,0x28,0xa,0x7c,0xef,0x99,0x17,0x83,0x41,0xbd,0x33,0x8e,0xd3,0x9e,0x2d,0x6f,0x23,0x79,0x53,0x35,0x19,0x8f,0xfe,0x7a,0xf6,0x86,0xff,0x10,0x4,0xf6,0xfa,0x6b,0xcc,0x83,0x77,0xc4,0x20,0x24,0x19,0xb2,0x52,0x51,0x60,0xbd,0x34,0x41,0x61,0x0,0x41,0xaa,0x48,0x81,0x2b,0xaa,0x4e,0xe7,0xf4,0x1e,0x59,0xa2,0xf1,0x73,0xb8,0x0,0x2c,0x84,0x50,0x70,0xd0,0xed,0x98,0xd3,0xd6,0x47,0x52,0x5e,0xea,0x28,0xd0,0xf0,0x4c,0x73,0x2e,0x48,0xdf,0x7d,0xca,0xae,0xb3,0x60,0x7f,0xbf,0x68,0x24,0xb8,0xc6,0x85,0xa4,0x56,0x3f,0x9e,0x49,0xa9,0x20,0x9c,0x63,0xd6,0x99,0xe,0xc9,0xb0,0x52,0x89,0xc6,0x77,0x89,0x18,0xe4,0x4,0x82,0x11,0x0,0xe9,0xd9,0x65,0x51,0x1c,0xf,0xa5,0x75,0xfb,0x30,0x7,0x1f,0xf6,0x10,0xe4,0xa1,0xce,0x42,0x4a,0xf2,0x5a,0x35,0xc,0x8e,0x44,0x31,0xa5,0x6,0xb,0xb6,0x25,0x90,0xc1,0x1f,0x4e,0x4,0xff,0x42,0xef,0xfd,0x97,0x67,0x7d,0x6,0xc0,0x28,0xb5,0xbc,0xd3,0x9b,0x85,0x73,0x80,0xa9,0x2a,0xa4,0xdd,0x5e,0x48,0x34,0x96,0xfc,0x3d,0x97,0xec,0xd7,0x27,0x82,0xc7,0xa8,0x44,0x59,0x16,0x9c,0x94,0x4e,0x89,0xed,0x51,0x9c,0xc2,0x39,0x83,0xa8,0x2c,0x90,0x76,0x7b,0x43,0x0,0x93,0x4f,0x2d,0xa6,0xdb,0x9,0x4d,0x76,0x95,0x45,0x4e,0x93,0x4c,0x9c,0xf4,0xeb,0xc7,0x26,0xcd,0xe0,0x9e,0x67,0x9,0xc2,0xa1,0x66,0x2a,0x77,0x67,0x18,0x38,0xac,0xd0,0x9d,0x99,0xa3,0x63,0x16,0xc5,0xec,0x87,0x27,0x90,0xf,0x56,0x90,0x76,0x67,0xe0,0x18,0x24,0x95,0x6c,0x65,0x51,0x55,0x5,0xe2,0xa4,0x43,0xf7,0x2c,0xb6,0xda,0x0,0xa7,0x9b,0x47,0x71,0xcc,0xe3,0xa3,0xc,0xc,0x3f,0x29,0x64,0x38,0x56,0x2a,0x8a,0x51,0x55,0x45,0xf0,0xe8,0x13,0x52,0x4,0x20,0xd4,0x3,0x81,0x96,0x3d,0xff,0xaa,0xa2,0x8,0xe0,0xaf,0x67,0xfa,0xf5,0x66,0xe6,0xc3,0xf5,0xa1,0xa2,0x98,0x0,0x3d,0x66,0x9b,0xca,0x28,0xa,0x13,0x4a,0x7e,0x5c,0xf5,0xe7,0xcd,0x35,0x2,0x3c,0x1c,0xb3,0x14,0xad,0xf,0xf0,0x18,0x91,0xf4,0x8e,0x81,0xdb,0x18,0x61,0x5,0x4e,0xf4,0xf5,0xa3,0xbf,0x3a,0xe7,0xa6,0xd0,0xdf,0x86,0x96,0x80,0xe1,0x74,0x99,0x49,0xd2,0x5d,0x4f,0xc5,0xc4,0x30,0x28,0xe8,0x1a,0x60,0xa1,0x98,0xc,0xdc,0x35,0xe1,0x39,0xe7,0xae,0x31,0x35,0xe4,0x26,0xbf,0xd4,0xf4,0x30,0x9c,0xc4,0x7e,0x9c,0xf4,0x71,0xef,0xf1,0x3c,0xbe,0x2f,0xc3,0xb8,0xe5,0xb4,0x34,0xef,0xb6,0xda,0x6a,0xeb,0xef,0x6f,0xb5,0xc,0xc0,0xb6,0xda,0x6a,0xab,0xad,0xeb,0x9,0xff,0x63,0xd0,0x2f,0xc8,0x6f,0xb8,0x39,0xf4,0xfe,0x74,0x7e,0x46,0xde,0x83,0x1e,0x15,0x7,0x74,0x44,0xfc,0x60,0xbf,0x67,0xfb,0x46,0xec,0xd8,0xbe,0x6d,0x6c,0xb9,0x55,0xa5,0xf1,0xa3,0x97,0xde,0x8,0xd,0x6,0xb1,0x3c,0xaa,0xd0,0xa0,0x78,0x29,0x2d,0x35,0x14,0x1a,0x42,0x0,0x65,0x99,0x13,0x43,0xa1,0xaa,0x98,0x61,0x61,0x50,0xe4,0x19,0xaa,0xaa,0xc4,0xca,0xd2,0x15,0xc,0x96,0x17,0xd9,0x20,0x9d,0x7c,0x3,0xfb,0xcb,0x8b,0xf8,0xab,0x6f,0x3f,0x8d,0x2c,0xcf,0xc7,0xd6,0xbf,0x6d,0xcb,0x26,0xec,0xdb,0xbb,0x3b,0x34,0x93,0x94,0xec,0x4b,0xcc,0x89,0x89,0xc0,0x17,0x37,0x3f,0xc1,0xbb,0x8a,0x99,0x64,0x45,0x36,0xe0,0xe6,0x95,0xa4,0x6d,0x52,0x45,0x2c,0x25,0x65,0xa9,0x1b,0x4,0x8a,0x7c,0x40,0x7e,0x53,0xdc,0x98,0x4e,0x7b,0x98,0xd7,0xcc,0x6,0xf1,0x8c,0x19,0xc9,0xc,0x9b,0xb4,0xd3,0x85,0xd1,0x15,0x66,0xe7,0xd7,0x50,0x9a,0xa2,0xb5,0x64,0x2c,0xcf,0xd,0x90,0x10,0x82,0x3c,0xee,0x48,0x4f,0x86,0xaa,0xcc,0xb1,0xff,0xed,0xa3,0xf8,0x2f,0x7f,0xf6,0x75,0x5c,0x5d,0x5c,0x9a,0x7a,0x6e,0x93,0x38,0xc6,0xea,0x55,0x73,0xd8,0xb8,0x61,0x1d,0x6e,0xd8,0xb0,0xe,0xf3,0xf3,0xb3,0xef,0xb,0xfe,0xfd,0xf5,0x77,0x9e,0xc1,0xb7,0x9e,0x7e,0x29,0xb0,0x6e,0xc8,0x5f,0x4a,0x71,0x22,0x71,0x4,0xa9,0x24,0x85,0x6c,0xb0,0x5f,0x55,0x55,0x96,0x9c,0x32,0x4c,0xc7,0xb9,0x2c,0x4b,0x3c,0xfb,0xc2,0xab,0x63,0xcd,0xd7,0x91,0xa3,0xef,0xe1,0xbd,0x33,0x17,0x2,0xc8,0x9b,0xf5,0x97,0xa1,0x75,0x85,0xfe,0xd2,0x62,0x30,0xe3,0xcf,0x33,0x4a,0x9e,0x2c,0xf3,0x1c,0xba,0x2a,0xf1,0xed,0xa7,0x7e,0x30,0xb6,0x9c,0xa3,0xc7,0xdf,0xc3,0x5b,0xef,0x9e,0x64,0x16,0xc,0x25,0x45,0x53,0xc8,0x47,0x11,0x40,0x5a,0xef,0x43,0xd6,0x5f,0x5e,0x44,0x55,0x15,0x58,0xbe,0xba,0x10,0x98,0x3f,0x33,0x73,0xab,0xc3,0x75,0xa7,0x58,0xa2,0xe6,0xfd,0x7,0x29,0xfc,0xc5,0x7b,0x9e,0xb9,0xa1,0xef,0x3,0xd8,0xc8,0x9e,0xde,0x6f,0x3,0x98,0xe2,0x18,0xfc,0xf3,0xfe,0x7e,0x9e,0xd4,0xe1,0x46,0xa5,0x66,0x0,0x9c,0x6b,0xc1,0xbf,0xb6,0xfe,0xce,0xc0,0x81,0xd,0x50,0xb0,0x66,0x7,0x6,0xc0,0x25,0x0,0x71,0x3a,0x30,0xbe,0xfd,0x77,0xdc,0x35,0x2,0x17,0x3c,0xeb,0xab,0xaa,0xca,0xc0,0xe4,0x22,0xcf,0xcd,0x92,0xee,0x23,0x9a,0x24,0xa5,0xde,0x3a,0x80,0x7c,0xe7,0x14,0xb2,0xfe,0xa,0xcb,0x49,0xc9,0x6f,0x2e,0x8a,0x6a,0x4f,0x53,0xa9,0xea,0xb0,0x25,0x2f,0xcb,0xf7,0xe9,0xdd,0x60,0xd6,0x19,0x5,0x5b,0xd0,0xf2,0x8b,0x22,0x63,0xeb,0x6,0xfa,0x2e,0x1a,0x43,0x80,0x9a,0x1f,0xbb,0x29,0xa0,0x89,0x42,0x9c,0xb2,0x41,0x1f,0x52,0x51,0xea,0x7c,0x1d,0xb6,0x44,0x7e,0xa6,0x4a,0x45,0xcc,0x90,0xab,0x78,0xbb,0x44,0x48,0x24,0xa6,0xd0,0x8b,0x2c,0x30,0xfe,0xca,0x22,0x43,0x7f,0xf9,0x2a,0xf9,0xb7,0x56,0x5,0xf9,0xef,0x35,0x58,0x80,0x7e,0x4c,0x31,0xa6,0xa,0xaf,0x29,0x15,0xf1,0x58,0x95,0x5,0x80,0xcf,0x33,0xfe,0x74,0x59,0xd2,0xff,0xba,0xa2,0xc9,0xb2,0xaa,0xc,0xb6,0x19,0xba,0x2a,0x21,0x55,0x14,0x2c,0x18,0xaa,0xaa,0x84,0xd6,0x25,0xaa,0x8a,0xd8,0xe9,0x65,0x91,0xf3,0xfa,0x2b,0xc,0x56,0x16,0xd9,0xb7,0x54,0x22,0x5b,0x59,0xa2,0xf3,0xda,0x0,0x7b,0xbd,0x54,0xd7,0x5b,0x27,0xc0,0x39,0x38,0xe,0xfd,0x10,0x52,0xd2,0x36,0xf0,0x7d,0x4a,0xf0,0xba,0xad,0xb1,0xec,0xf5,0x97,0x21,0x1b,0x2c,0xa3,0xaa,0x88,0x45,0x58,0x64,0x59,0x58,0xb7,0x8a,0x68,0xf2,0xa5,0xdb,0x9b,0x45,0x94,0xa4,0xe8,0xf4,0x66,0x82,0x95,0x42,0xc4,0xe3,0xac,0x8c,0x22,0x56,0x1b,0xd4,0x0,0x96,0x97,0x39,0x8b,0x26,0xab,0xcf,0x4f,0x10,0x35,0x43,0x3a,0xae,0x81,0x88,0x4d,0x4a,0xe0,0x1d,0x65,0x6e,0x8f,0x8b,0x5e,0x87,0x39,0x70,0xe3,0xe0,0x1e,0xbf,0x16,0xfc,0x1,0x27,0xb0,0xfb,0x9a,0x20,0x5f,0x53,0xd1,0x2b,0x26,0x63,0x7e,0x6e,0xc,0x54,0x1c,0xce,0xed,0x75,0x13,0xf0,0x48,0x37,0x79,0x8f,0x87,0x9f,0xdf,0xae,0x8d,0x17,0x4e,0xf9,0x9b,0x98,0x8,0x44,0xd2,0x64,0xa9,0x6a,0x87,0xc7,0xb6,0xda,0x6a,0xab,0x5,0x0,0xdb,0x6a,0xab,0xad,0xb6,0xae,0xeb,0x56,0xd0,0x5a,0x7e,0xd6,0x75,0x61,0xe6,0x3d,0x3c,0x5c,0xb2,0x4,0x98,0x66,0xfc,0x2b,0x7e,0x64,0xe4,0x86,0x4f,0x6b,0x7c,0xe6,0xff,0x6b,0xef,0xdb,0x7e,0x65,0xc9,0xee,0xb3,0xbe,0xb5,0x56,0x5d,0xba,0x7b,0xef,0x7d,0xe6,0x8c,0x4d,0x1c,0xe2,0x5c,0x94,0x10,0x87,0x10,0x83,0x22,0x20,0x89,0x20,0x91,0x42,0x90,0x40,0x80,0xf8,0xab,0x78,0xe6,0xf,0x40,0xbc,0xe6,0x9,0xf1,0xc2,0xb,0xe2,0x12,0x21,0x94,0xb,0x81,0x24,0x8e,0x9d,0x4,0x32,0x51,0x70,0x6c,0x63,0xc7,0x8e,0x6f,0x33,0xe3,0x99,0x39,0x7b,0xef,0xbe,0x55,0xd5,0x5a,0x8b,0x87,0xdf,0x65,0xad,0x55,0xdd,0x7b,0x66,0x4,0x92,0x87,0xd9,0xfc,0xbe,0xc8,0x99,0x73,0xf6,0xe9,0xdd,0x5d,0x5d,0x5d,0xbd,0xaa,0x7e,0x5f,0x7d,0x97,0x5f,0xfe,0x85,0xab,0xa4,0xd2,0xd7,0xbe,0xfe,0x17,0xf8,0xca,0x5f,0xbc,0xc5,0xa4,0xd0,0x49,0x87,0x12,0xb5,0x6b,0x26,0xca,0xd8,0x9b,0xa6,0x13,0x8e,0x87,0x7,0x9c,0x8e,0x7b,0x1d,0xc2,0xa6,0xf3,0x91,0x32,0xa5,0x38,0xe3,0x66,0x3a,0x9f,0x34,0x97,0x69,0x9a,0x2a,0x6b,0xf0,0x7c,0xc6,0x17,0xbf,0xfa,0x75,0xfc,0xd9,0x97,0xbe,0x72,0x79,0xb2,0xf2,0x1e,0xff,0xe8,0xef,0xff,0x5d,0xa4,0x48,0x64,0xe2,0xf1,0xf0,0x80,0xe3,0xfe,0x1e,0x31,0xce,0xd7,0x89,0xd0,0x4a,0x2d,0x26,0x76,0x2b,0x69,0x3c,0xa6,0x61,0x72,0x8f,0x85,0x89,0xc9,0xb8,0x2c,0x1c,0x44,0x3f,0xf3,0xf0,0x4a,0x36,0x33,0x51,0x72,0x3c,0x75,0x11,0xae,0x99,0x46,0xbc,0x8f,0x65,0xb0,0x9b,0x58,0x55,0x77,0x78,0xbc,0xa7,0xb6,0x63,0x6e,0x4b,0x96,0x70,0x77,0xcf,0x43,0x1e,0xd9,0xc9,0x16,0xcd,0xe5,0xfb,0xc2,0x1b,0x5f,0xc6,0xbf,0xf8,0xd5,0x7f,0x83,0xff,0xf5,0xb5,0x6f,0xfc,0x5f,0xe7,0xf6,0x7c,0xf7,0xcd,0xb7,0xf0,0xab,0xff,0xfa,0xdf,0xe2,0xdf,0xff,0xd6,0x1f,0x70,0x9e,0x17,0xd,0xf7,0xb,0xdb,0xd1,0xa6,0xd3,0x91,0x49,0xdb,0x9e,0xd4,0x88,0xac,0x74,0x9b,0xce,0x47,0x6c,0xb6,0x37,0xa4,0x5a,0x9c,0x27,0xc0,0x1,0xbf,0xf5,0xb9,0x3f,0xc6,0xab,0xfb,0x62,0xcd,0x8e,0x31,0xe1,0x37,0xfe,0xdb,0x17,0xc8,0x1a,0xcc,0x2a,0xc6,0x69,0x3a,0xe1,0x7c,0xd8,0x97,0x86,0xde,0x33,0x91,0x7e,0x44,0x3e,0x53,0x1b,0xf4,0xef,0xfe,0xe1,0x9f,0xe2,0x9d,0x77,0x8a,0xd5,0x39,0xa5,0x84,0xdf,0xfc,0xed,0xdf,0x47,0x66,0x82,0xf6,0x74,0xdc,0xe3,0xf0,0xf8,0xa,0xa7,0xc3,0x23,0x5b,0x9,0xcf,0x98,0xa7,0x33,0xce,0xc7,0x83,0x66,0x76,0xc5,0x79,0xc1,0xcd,0x8b,0x97,0xc8,0xc8,0x18,0x36,0x5b,0xb5,0x2c,0xf7,0xe3,0xa8,0xd6,0xf7,0xa6,0x3c,0x80,0x49,0x10,0x29,0x40,0xa0,0xd6,0x4a,0xd6,0x4e,0xac,0xb2,0xa9,0xb8,0x6b,0xb2,0x1a,0x42,0xd7,0x43,0xa7,0xd3,0xb9,0xb1,0x6e,0x92,0x34,0x18,0xbe,0xef,0x6b,0xbc,0x5a,0xd7,0xa1,0x6a,0x29,0x6d,0xd9,0xe5,0xa8,0x87,0xe0,0x3b,0x2e,0x91,0x2d,0xed,0xe9,0x44,0x6,0x86,0xa6,0xc4,0x41,0xc8,0x41,0xf9,0x5f,0x64,0x52,0xb0,0x14,0x88,0x94,0x9b,0x16,0xce,0x53,0x9,0x85,0x64,0xf5,0xe5,0x2c,0x8d,0xb2,0x9,0xe3,0xf6,0x46,0xd7,0x57,0x51,0x7d,0xe7,0x9c,0xe1,0x59,0x69,0x16,0xba,0xe,0x71,0xa6,0xc,0x57,0x6a,0xa7,0x5d,0x54,0x59,0x9b,0xd2,0xa2,0xdf,0xd3,0x20,0x37,0x47,0xe0,0x30,0x4f,0x93,0x96,0x9d,0x84,0xae,0xc7,0x74,0x3a,0x22,0x74,0x3,0xb7,0xec,0x52,0xde,0xa7,0x64,0xed,0xc9,0xfb,0x4b,0x71,0xc1,0x34,0x9d,0x54,0xf1,0xe7,0xbc,0xe7,0xb5,0x9c,0xf3,0x5e,0x41,0x2a,0xf5,0xdb,0x17,0xaf,0xc3,0x7b,0x2a,0xcd,0x90,0x88,0x1,0x59,0x6f,0xe,0xf,0xaf,0xf0,0x78,0xff,0xe,0x4e,0xac,0x64,0x9f,0x4e,0x47,0x9c,0x8f,0xdc,0x46,0xbe,0x2c,0xc5,0x7e,0xcb,0x36,0x5e,0xc9,0xb1,0x9d,0xe7,0x9,0xa7,0xe3,0x1e,0x39,0x27,0x9c,0x8e,0x7b,0x2c,0xd3,0x19,0xa7,0x3,0xe5,0xf2,0x85,0x8e,0xb2,0x59,0xa5,0xb0,0x48,0x94,0x88,0xa2,0x12,0xcc,0x39,0x63,0xe1,0x1b,0x65,0x54,0x6e,0x42,0xdb,0x7e,0x66,0xb5,0x23,0x65,0x3d,0x26,0xec,0x1f,0x68,0x8d,0x3c,0x3c,0xde,0xeb,0xda,0x78,0xe6,0x16,0xe6,0xf3,0xe9,0x88,0x65,0x59,0x70,0x3a,0x3c,0xf0,0x8d,0x1c,0x52,0xf,0x2e,0x33,0xdd,0xd8,0x99,0xe7,0x33,0xce,0xa7,0x3d,0xe6,0xe9,0x84,0xd3,0xf1,0x91,0xd5,0x7a,0x94,0xd5,0xd2,0x3d,0xd1,0x3a,0x0,0x0,0x20,0x0,0x49,0x44,0x41,0x54,0xbb,0x7f,0x78,0xf,0xd3,0x44,0x11,0x16,0x0,0xf8,0xbc,0xe5,0xf9,0xa6,0x88,0xa3,0xbf,0x7b,0x5f,0x4a,0x3d,0x38,0x37,0x57,0xca,0xbe,0x44,0x71,0x4a,0xe7,0xde,0xd8,0x9e,0x23,0x57,0x19,0xaa,0xc0,0xfb,0x37,0xf6,0x3e,0x9,0xb7,0xa2,0xc7,0x72,0xbe,0xb0,0xd7,0x6a,0x1d,0xb6,0xfe,0x7b,0xcd,0xce,0xb9,0x15,0x4f,0x98,0xcb,0x7f,0xf2,0x15,0x82,0x6d,0xe5,0x10,0xbe,0xa0,0x1c,0x2b,0xcb,0xef,0x9a,0x9a,0x74,0x68,0x37,0xa9,0xfd,0x79,0xad,0xf6,0x6b,0x15,0x8f,0x6b,0x82,0xaf,0x24,0x1a,0xe6,0x27,0x29,0xc4,0xcb,0x57,0x45,0x75,0x9e,0x35,0x5,0xa0,0xc1,0x60,0x68,0x61,0x16,0x60,0x83,0xc1,0x60,0x78,0x46,0x50,0x2b,0x58,0xd5,0x2a,0x27,0x64,0x48,0xe4,0xc1,0x82,0x3c,0x63,0x59,0x9,0x11,0xa,0x86,0xf,0xf8,0xd4,0x27,0x5e,0xe0,0x67,0x7e,0xfa,0x33,0x57,0x9f,0xf3,0xd7,0xff,0xeb,0xe7,0x31,0x9d,0x4f,0x3c,0x0,0x44,0x2c,0x6c,0xf7,0x15,0x1b,0x11,0x11,0x4c,0x11,0xf3,0xf9,0xac,0x8a,0x83,0xe9,0x74,0xc4,0xfe,0xe1,0x15,0x36,0xbb,0x1b,0x48,0xa0,0x7a,0x60,0xc5,0x5d,0xd7,0x53,0x69,0x84,0x83,0xa3,0xf2,0x8d,0xd0,0x69,0xf8,0xf9,0x7f,0xf8,0x4f,0xbf,0x81,0xcf,0xfe,0xcc,0x4f,0xa3,0xef,0xda,0x53,0xd4,0x5f,0xfd,0xa9,0x9f,0xc4,0x4f,0xff,0xf8,0xa7,0xf1,0xc7,0x5f,0xfc,0x2a,0xe6,0x89,0x9a,0x8b,0xf3,0x13,0x17,0xb7,0x89,0x55,0x10,0x1a,0x6a,0x2e,0x36,0x18,0x7,0x2e,0xea,0x18,0x90,0xe2,0x82,0xfe,0xe6,0x4e,0x2d,0x54,0x81,0x43,0xdc,0x53,0x8a,0xfc,0xdc,0x69,0x75,0x29,0x7e,0xf9,0x1a,0x64,0x45,0x8e,0x25,0x57,0xea,0xb8,0x67,0x22,0xed,0xc4,0xc5,0x20,0x50,0x4b,0xeb,0xf6,0xf6,0x8e,0xc9,0x4f,0x22,0xdd,0xd2,0xb2,0x34,0xaa,0x40,0x0,0xf8,0xf2,0xd7,0xbf,0x8d,0x7f,0xfe,0x2f,0xff,0x15,0xfe,0xf1,0xdf,0xfb,0x79,0xfc,0xca,0x2f,0xfe,0x1c,0x5e,0x7f,0xf9,0xe2,0xc9,0xc,0xc2,0x6b,0x78,0xe7,0xdd,0x57,0xf8,0xfc,0x1f,0xbd,0x81,0x5f,0xfb,0x2f,0x7f,0x80,0x87,0xe3,0xa4,0x19,0x8d,0x25,0xf8,0x3f,0x22,0xe5,0xac,0x76,0x58,0x52,0xa6,0x9c,0xe1,0x7d,0x40,0xd7,0xd,0x88,0x6e,0x51,0x2b,0xf3,0xf6,0xf6,0x5,0xe,0xf,0xf7,0x40,0x6,0xbe,0xf0,0x47,0x6f,0xe0,0x1f,0xfc,0xca,0x2f,0x2,0x0,0xde,0x7c,0xeb,0x2d,0xfc,0xf1,0x17,0xbf,0xa,0xe7,0x1c,0xba,0x6e,0xc0,0x71,0x21,0x1b,0xb0,0xf3,0x1e,0xe7,0xf3,0x11,0xdd,0x30,0x2,0xc8,0x48,0x73,0xd4,0xfc,0x3e,0xb2,0x6b,0x8f,0xf8,0xbd,0xcf,0xff,0x1,0xfe,0xe9,0x3f,0xfe,0x87,0x0,0x80,0xef,0xbc,0xf9,0x16,0x3e,0xf7,0xc6,0x97,0xf5,0x98,0xa5,0x32,0x9a,0xe,0xa7,0xe3,0x1e,0xd3,0x99,0x7,0x78,0xef,0xd5,0xee,0x4d,0xb6,0x37,0xe0,0x74,0x78,0x44,0x3f,0x6e,0x10,0xe7,0x99,0xda,0x90,0x73,0x86,0xd7,0x8c,0x33,0xa8,0x35,0x4e,0x8a,0x70,0x1c,0x13,0x26,0xf5,0xa1,0xd2,0xa8,0x51,0x2a,0x9b,0x61,0x13,0xc4,0xee,0x5c,0x13,0x2c,0x2f,0x93,0x60,0xb1,0xa4,0xd9,0x60,0x65,0xf8,0x68,0x20,0xc4,0x51,0xae,0xd6,0x26,0x5a,0xe3,0xf8,0x78,0xe6,0xb5,0xd4,0x79,0xdf,0x58,0xd8,0x9d,0x73,0x65,0xdd,0x91,0x75,0x8b,0xd7,0x1f,0x7,0x7,0xdf,0x5,0x3e,0x5f,0x4,0x5d,0xbf,0x3c,0x2b,0x6c,0x73,0x9a,0x99,0x3c,0x74,0x85,0x58,0xe3,0xe6,0xdb,0xc3,0x72,0x8f,0x79,0x3a,0xa3,0x1f,0x46,0x8c,0x9b,0x2d,0xb5,0xe1,0x56,0xe4,0xa0,0x77,0xbe,0xd8,0x4a,0x17,0x52,0xfb,0x86,0x7e,0xd0,0xec,0xb9,0xd6,0x8e,0xef,0xa8,0xe9,0x9d,0xc9,0x24,0x22,0x36,0x45,0xbd,0xee,0x90,0x63,0xd2,0xc2,0x29,0x6a,0xc7,0xed,0x4a,0x9e,0x6d,0x4a,0x8,0x9b,0x51,0xbf,0xd7,0x39,0x27,0x20,0x52,0x73,0xb0,0x92,0x90,0x29,0xc2,0xc1,0x69,0xf3,0xf0,0xe9,0x74,0x20,0xc5,0xf6,0x6b,0x9f,0x50,0x5,0x1f,0x15,0x9d,0x90,0xc2,0x7d,0x9a,0xb2,0xe6,0xd9,0x2e,0xcb,0xa4,0x16,0x67,0xef,0x49,0x49,0x18,0xe7,0x89,0x1f,0x77,0x6,0x90,0x31,0x9f,0x4f,0x38,0x88,0xcd,0xf8,0x7c,0x44,0xd7,0x8f,0xe8,0x87,0x8d,0x46,0x30,0xb8,0x61,0xd4,0xe2,0x8e,0xf9,0x7c,0x22,0xfb,0x32,0x93,0x55,0x42,0x60,0xca,0x4d,0x2b,0x52,0x24,0x4e,0xbc,0x2f,0xbc,0xb6,0xce,0xd3,0x8d,0xb5,0x13,0x76,0x77,0xaf,0x21,0xb1,0x9d,0x77,0xe6,0xfc,0xd9,0x69,0x39,0x40,0x14,0xce,0xf3,0x74,0x26,0x2,0x89,0xf7,0xbb,0xec,0x67,0xb1,0x0,0x4f,0xb,0xad,0xb3,0xd3,0xf9,0x80,0x61,0xb3,0x55,0xab,0xb4,0xf,0x1d,0x15,0x2d,0x6d,0x36,0xda,0x96,0xee,0x9c,0x43,0xe0,0xfc,0xdc,0xb5,0xcd,0x77,0x7d,0x33,0x65,0xdd,0xe0,0x2b,0xf6,0x5f,0x25,0xaa,0xc5,0xc0,0x9a,0xf2,0xaa,0x4c,0x23,0x5f,0xb6,0xe1,0xae,0x49,0xad,0x35,0x61,0xe8,0xae,0x9d,0xa2,0x25,0x0,0x8f,0xb7,0x4d,0x94,0xfc,0x95,0xcd,0xd6,0xb9,0x96,0xe0,0x5b,0x3b,0x7f,0xaf,0x29,0xf1,0xda,0xaa,0x8f,0xea,0xa6,0x51,0x6e,0x5f,0xf7,0xd2,0xd4,0xcc,0x25,0x54,0xd5,0xb3,0x5e,0x57,0xf0,0xa1,0xf9,0x4e,0xb,0xa9,0x97,0xdf,0xf7,0xd,0x67,0x5c,0xcd,0x23,0xac,0x6f,0xc,0x18,0xc,0x6,0x83,0x11,0x80,0x6,0x83,0xc1,0xf0,0x8c,0x7,0xc3,0xea,0xa,0x57,0x94,0x70,0x32,0x48,0x9,0x11,0x4,0xc7,0xc4,0x14,0xff,0xbd,0x1f,0x47,0xfc,0xf0,0xa7,0x5e,0xc7,0xb7,0xbe,0xfd,0x1d,0x7c,0xfb,0x3b,0xed,0x9d,0xe4,0x87,0xc7,0x3d,0x3e,0xff,0xc6,0x97,0xb5,0x18,0xc3,0x79,0x87,0xc0,0x83,0x22,0x35,0xdc,0xf6,0xa4,0xa8,0xe3,0x60,0x77,0x19,0x4e,0x32,0x80,0x9b,0x17,0x2f,0x1,0x50,0x4b,0x6b,0xe4,0x4c,0x28,0x9,0x9f,0x1f,0x36,0x5b,0x1d,0x22,0xc4,0x2,0xea,0x43,0xc0,0xef,0xfd,0xf7,0x2f,0xe2,0x73,0xbf,0xff,0x87,0xf8,0xe4,0x27,0x5e,0x3,0x65,0x42,0x95,0x21,0xf5,0xc7,0x7f,0xf4,0xd3,0xf8,0x1f,0x5f,0xfc,0x2a,0x42,0xd7,0xe1,0xf0,0x78,0x8f,0x37,0xdf,0x7a,0x1b,0x7f,0xfa,0xc5,0x3f,0x63,0x22,0x31,0xe8,0xd5,0xef,0x3b,0xef,0xdd,0x53,0xfe,0x91,0xf,0x34,0x40,0x85,0x80,0xe5,0x38,0x69,0x9e,0x1c,0xd9,0xb9,0x88,0xa4,0x74,0xce,0xa1,0xeb,0x47,0x55,0x7,0xe8,0x36,0xa6,0x88,0x69,0x9a,0xf1,0xe5,0xaf,0x7c,0xd,0x9b,0xcd,0xc8,0xfc,0x10,0xed,0x97,0x6f,0x7c,0xf3,0xdb,0xcd,0x5,0x76,0x56,0x85,0x99,0xc7,0xe1,0xf1,0x3d,0xe,0xbf,0x3f,0x61,0xdc,0xde,0x60,0x3a,0x1f,0x70,0xf7,0xf2,0x2f,0x51,0xd8,0x3e,0x87,0xc1,0x93,0xa,0x26,0x17,0x85,0xe,0x8a,0x95,0xea,0x74,0x8e,0xf8,0x77,0xbf,0xf9,0x79,0xfc,0xc7,0xdf,0xfc,0x1c,0x7e,0xfe,0x6f,0xfc,0x14,0x7e,0xee,0x67,0xff,0x1a,0x7e,0xec,0x47,0x7e,0x8,0x37,0x37,0x3b,0xf4,0x6c,0xcd,0x22,0xb2,0x34,0x61,0x9e,0x67,0x1c,0x8e,0x27,0x7c,0xf3,0xdb,0xdf,0xc5,0x1f,0xbd,0xf1,0x67,0x78,0xe3,0xcb,0xdf,0xc0,0xdb,0xef,0xbc,0xa2,0x26,0x62,0xe,0x77,0xf7,0x21,0x68,0x88,0x3c,0x45,0x1b,0x12,0xa1,0x45,0x39,0x55,0x33,0x5b,0x98,0x17,0x2c,0xb,0xdb,0x7f,0x53,0xc2,0xed,0x6b,0x9f,0xc0,0x32,0x4d,0xd8,0xdd,0x52,0xc1,0xc6,0x7f,0xfe,0xed,0xdf,0xc7,0x2f,0xfe,0xc2,0xdf,0xc4,0x76,0xbb,0xc5,0xef,0x7e,0xe1,0x4f,0x70,0x9a,0x4b,0x91,0xcc,0xb0,0xd9,0xe2,0xb8,0x27,0xc5,0x49,0xd7,0xf,0x98,0x4e,0x7,0x56,0x1d,0x38,0x1e,0x3c,0xd9,0x2a,0x8e,0x8c,0x5f,0xfb,0xf5,0xdf,0xc1,0x2f,0xff,0xd2,0xdf,0xc1,0xed,0xed,0x2d,0x7e,0xe7,0x73,0x7f,0x88,0xd3,0x99,0x6,0xfd,0x85,0x49,0xc8,0x9c,0x12,0x96,0xb8,0x50,0xde,0x15,0x2b,0x24,0x9d,0x23,0xbb,0x32,0x1c,0x59,0xbb,0xfb,0x61,0xa4,0xec,0xab,0x61,0xc4,0x30,0x6e,0xd8,0xa2,0x48,0xf9,0x63,0x52,0x28,0x43,0x47,0x81,0x53,0xc5,0x88,0xaf,0x2c,0x69,0x4d,0x20,0xbd,0x73,0x50,0x33,0x84,0xa8,0x46,0x5d,0xd5,0x4c,0xa9,0x3,0x63,0x15,0x32,0xcf,0x44,0x3,0x91,0x24,0x66,0x3,0x36,0x7c,0xff,0x91,0xb9,0x8,0xa3,0x65,0x27,0x1c,0xb0,0xce,0x2,0xac,0xf2,0xd9,0xa,0x91,0x96,0x90,0x23,0x13,0x67,0x42,0xce,0xc4,0xc8,0x99,0xa7,0x75,0x9b,0x2d,0x65,0xfb,0x49,0x46,0x20,0x1c,0xdd,0xac,0xd1,0xfc,0xd3,0x18,0xd1,0xf5,0x3d,0x2b,0x76,0x67,0xc,0xe3,0x16,0x5d,0xdf,0x63,0xe0,0xb5,0x7e,0xb3,0xbb,0xa5,0xb2,0x88,0x8a,0xc0,0xeb,0x38,0x3f,0xb0,0x26,0xa1,0x64,0x5d,0x95,0x9b,0x4b,0x72,0x1e,0xa3,0x6,0x62,0x6e,0x2d,0x67,0x7b,0xb0,0x10,0x9d,0xa1,0xeb,0xaa,0xb5,0x7b,0xd0,0x6,0xdb,0x10,0xe9,0xe7,0xc3,0xb8,0xc1,0xbc,0x50,0x5b,0xb8,0xb4,0x91,0xc3,0x41,0xb3,0xfa,0xa4,0x4c,0x44,0x89,0x3e,0xe7,0x31,0x9d,0xe,0x18,0xc6,0x2d,0x1e,0xef,0xdf,0xc3,0xed,0x6b,0xaf,0xd3,0xda,0xc8,0x56,0xe4,0x10,0x3a,0x8e,0x22,0x70,0x45,0x59,0x8c,0x85,0x72,0x63,0x73,0xc6,0xf9,0xf4,0xa8,0x31,0x17,0xf2,0xb9,0x2c,0x71,0x6,0x72,0x42,0xa,0x51,0x6f,0x3a,0x29,0x79,0x96,0x22,0x32,0xa0,0xdb,0x11,0xe3,0x42,0xe7,0xc8,0xd3,0x91,0x8,0x4a,0x6e,0x1d,0x16,0x45,0xa5,0x14,0x8d,0x8,0xa9,0xb7,0x7f,0x78,0xf,0xa1,0xeb,0xf1,0xf8,0xde,0xf7,0x68,0x98,0x1b,0x46,0x78,0xe7,0x71,0x8e,0x7,0x2c,0x53,0x39,0xbf,0x64,0x8e,0xf7,0x98,0x59,0x4d,0x2d,0x6b,0x23,0xed,0x4f,0x5a,0xf3,0x73,0xca,0xe8,0x87,0x81,0x8b,0xbb,0x22,0x86,0x91,0x72,0x68,0x37,0xbb,0x1b,0xce,0x75,0xa5,0xc2,0x8f,0xc0,0x5,0x31,0xa9,0xb2,0x8c,0xb7,0xca,0xbe,0x84,0x9c,0x79,0xbd,0x65,0x5,0xa7,0x14,0xc7,0x64,0x96,0xc1,0xd1,0xf1,0x53,0x72,0x5c,0xb5,0x65,0x37,0xaf,0xf2,0xf5,0xd6,0xa4,0x56,0x5d,0xae,0x71,0x95,0xf0,0xab,0xb2,0xf7,0xae,0xb1,0x79,0xd7,0x8,0xb9,0xe6,0x25,0xb3,0x36,0x17,0xe7,0xab,0xb4,0x5c,0xcd,0xab,0x65,0xe4,0x8a,0x54,0x6b,0x89,0xc2,0xeb,0x2f,0x78,0xdd,0xf2,0x7c,0xad,0xf7,0xf8,0xda,0x9b,0x72,0x6d,0xb0,0x60,0xf3,0xe7,0xd5,0x9b,0x29,0x75,0xd2,0x74,0x13,0x2c,0xc3,0x5a,0x80,0xd,0x6,0xc3,0xf5,0x35,0xd0,0x76,0x83,0xc1,0x60,0x30,0x3c,0xf,0xfc,0xec,0x2f,0xfd,0x13,0xbc,0xf6,0xc9,0x1f,0x20,0xb2,0x89,0xc9,0x93,0x94,0x69,0xa0,0x0,0xe7,0xd0,0xa1,0xca,0x86,0x91,0xe1,0x4c,0x6d,0xc2,0x6a,0x91,0x74,0x1a,0x1a,0x2f,0x67,0xa,0xc7,0xc5,0x1f,0x21,0x74,0x4c,0x20,0xce,0xf0,0xbe,0x43,0x5c,0x26,0x9c,0xe,0x7b,0x38,0xef,0xf1,0xf8,0xea,0x1d,0xcd,0x69,0x2,0x80,0x79,0x9a,0xd0,0x8f,0x23,0xfa,0x7e,0x44,0x3f,0x8c,0x8,0x1c,0x1a,0xee,0x1c,0xa9,0x3c,0xe0,0x80,0x9e,0x7,0xb8,0xed,0xcd,0x2d,0x5f,0xbb,0xe6,0xd2,0x22,0x98,0x22,0x7c,0xd7,0xa1,0xeb,0x6,0xec,0x1f,0xde,0xe3,0xe7,0x3c,0xa1,0xef,0x47,0x9c,0x8e,0x54,0x48,0xb2,0xbd,0xb9,0x45,0x3f,0x8c,0xe8,0xc7,0xd,0x36,0xdb,0x1b,0x25,0x14,0x3,0xab,0x32,0x1c,0x28,0x98,0x7d,0x3a,0x9f,0x70,0xda,0x3f,0x20,0xe5,0x8c,0xfd,0xfd,0xbb,0x6a,0x9,0xbe,0x7d,0xed,0x75,0xc,0x9b,0x2d,0x82,0xa7,0x52,0x14,0x22,0x9f,0xce,0x3c,0x0,0x77,0x9c,0x53,0x55,0x2c,0xcf,0x39,0x45,0x6a,0x3c,0x96,0xc1,0x18,0x64,0x89,0x9b,0x4e,0x47,0xb5,0xb1,0x8a,0xda,0x62,0xdc,0xee,0x70,0x7b,0xf7,0x12,0x8e,0x73,0xb1,0xc6,0xed,0xe,0xcb,0x32,0xa3,0xef,0x47,0x52,0xd6,0xc4,0x5,0x21,0xf4,0x40,0xce,0xf0,0xc1,0xeb,0x90,0x27,0xf9,0x5a,0x5d,0x3f,0x10,0xe9,0x9a,0x16,0xbc,0xd8,0x76,0x78,0xf9,0xe2,0x6,0x9b,0x91,0xf2,0xaf,0xa6,0x25,0xe2,0x7b,0xaf,0x8e,0x78,0x3c,0xcf,0x88,0x29,0xa3,0xef,0xc7,0xa2,0x32,0x71,0x9e,0x5a,0x29,0x59,0x5,0x29,0x9f,0xaf,0x64,0x41,0x1,0x44,0xcc,0xcd,0xf3,0x19,0xcb,0x74,0x66,0xc5,0x22,0xb5,0x0,0x3b,0xe7,0x30,0x6e,0x76,0x18,0xd9,0xa,0x3c,0x8c,0x5b,0x6c,0xc6,0x1,0x9f,0xfd,0xcc,0x8f,0xa1,0xef,0x3c,0xbe,0xf4,0xe7,0xdf,0xc1,0xc3,0xe1,0x4c,0x59,0x89,0x13,0xe5,0x65,0xcd,0xd3,0x9,0xf3,0xf9,0x4c,0xca,0x91,0x61,0x40,0xd7,0x51,0x46,0x5f,0x37,0x8c,0xaa,0x12,0x82,0x73,0x8,0xa1,0xc3,0xdf,0xfa,0xec,0x67,0x70,0xb3,0xdb,0xe1,0x4f,0xbf,0xf2,0xd,0xec,0xcf,0xb3,0xb6,0x6f,0x9e,0xe,0x7b,0xde,0x7f,0xf7,0x54,0x8,0xc0,0x64,0x6c,0xe0,0x61,0x56,0x8,0xc1,0xcd,0x96,0xf2,0xa8,0x36,0xbb,0x5b,0x1e,0x7e,0x7,0x25,0xa,0x7c,0x65,0x67,0x84,0x2a,0xa4,0xa,0x69,0xa1,0xdf,0x81,0xca,0x2,0xec,0x2e,0x14,0x16,0xc5,0xaf,0xa5,0x43,0x22,0x1f,0x53,0x32,0x8c,0xbf,0xf5,0xed,0xaf,0xe3,0x7b,0xdf,0xfe,0x6,0x72,0x9a,0x6d,0xd1,0x31,0x7c,0xff,0x2f,0xde,0x9d,0xc7,0x4f,0xfc,0xf5,0x5f,0xc0,0x5f,0xfe,0xd1,0xbf,0xa2,0x16,0x7e,0xca,0x23,0x95,0x66,0x76,0x52,0x78,0x6b,0x46,0x1b,0x17,0x6f,0x38,0x38,0x2d,0x82,0x50,0x32,0x8b,0x49,0x9e,0xc8,0x96,0x5c,0x21,0x7a,0x84,0xd4,0x91,0xc7,0x11,0x31,0x38,0xb3,0x35,0x18,0x6a,0x3f,0x7d,0xbc,0x7f,0x17,0xf3,0xf9,0x84,0xfd,0xc3,0x7b,0xd8,0xde,0xdc,0xe1,0xe6,0xee,0x25,0x36,0xbb,0x5b,0x56,0x94,0x5,0x22,0xe9,0x25,0x8b,0x55,0x2d,0xb8,0xc5,0xd6,0x2b,0x37,0x81,0xb4,0xa8,0x4a,0xb,0x4c,0x28,0xa3,0x55,0xd6,0x31,0xb1,0xda,0x2e,0xcb,0x8c,0xfd,0xc3,0x7b,0x38,0x3e,0x52,0xd4,0xc4,0x3c,0x9d,0xf1,0x83,0x3f,0xf2,0x13,0x18,0xc6,0xd,0xc6,0xcd,0x8e,0xd7,0x9f,0xbe,0xe4,0xfd,0x39,0x47,0x8d,0xc6,0x5d,0xcf,0x6a,0x38,0xaf,0x19,0xb6,0x62,0xf9,0xdd,0x3f,0xbe,0x42,0xd7,0xf5,0x94,0x2f,0xda,0xf5,0xf0,0x3e,0xa8,0x55,0x77,0x73,0x73,0xcb,0xbf,0xdf,0x71,0x99,0x54,0xcf,0x8a,0x67,0x52,0x42,0x8a,0x82,0x7a,0x9e,0x4e,0xfc,0xbb,0xb4,0x8e,0xf,0x9b,0x2d,0x96,0x69,0x62,0x15,0x1d,0xed,0xef,0xcd,0xee,0x46,0x4b,0x3f,0x24,0x1a,0x2,0x20,0xf5,0x73,0x21,0xcb,0xb2,0x96,0x71,0x2c,0xf3,0x84,0x87,0x57,0xef,0xa8,0xd5,0xf8,0x74,0xdc,0x23,0xa7,0x84,0x9b,0xbb,0x97,0x90,0xd6,0x66,0x51,0x2a,0xfb,0x50,0xf6,0x17,0x45,0x52,0xcc,0x9c,0xbf,0x98,0xb4,0x48,0x4,0xb9,0x22,0x1d,0x39,0x3b,0x90,0x88,0xbe,0xac,0xa5,0x4a,0x54,0x56,0xb5,0x41,0x8,0x3d,0xba,0x81,0x54,0x9a,0x21,0x74,0xdc,0xb0,0xde,0x96,0x56,0x88,0x4d,0x5c,0x3e,0xd3,0x72,0xbd,0x50,0x6e,0xb0,0xd4,0x84,0x61,0xbb,0xbe,0xba,0x4a,0x49,0x57,0x51,0x69,0x6b,0x82,0x4b,0xc8,0xed,0x75,0x1b,0x70,0xcd,0xe0,0xad,0x8,0x31,0xba,0xb9,0xe6,0x3e,0x90,0xcc,0xbb,0x36,0x4,0xbb,0xab,0x84,0x9d,0x5b,0xfd,0x86,0xbb,0xf2,0x2c,0xd7,0xc8,0xbc,0xa7,0xd8,0x4a,0xb4,0xef,0xe5,0x42,0xbd,0xb7,0xde,0xe0,0xea,0xfd,0xbb,0x55,0x2b,0xf1,0x15,0xa4,0x9c,0xf4,0xf8,0x7e,0xe7,0xcd,0x6f,0xe1,0x3b,0x5f,0xfb,0x9f,0xb6,0x68,0x1a,0xc,0x6,0x85,0x29,0x0,0xd,0x6,0x83,0xe1,0xb9,0xd,0x87,0x70,0xc8,0x48,0xa4,0x4e,0x60,0x25,0x56,0x1d,0x12,0x4f,0xcd,0x90,0x59,0xb3,0xd0,0x9c,0x10,0x24,0x72,0x19,0xcb,0x43,0x88,0x28,0xf6,0xbc,0xef,0x74,0x28,0x13,0x9b,0xae,0xd7,0x42,0x85,0x85,0xb3,0xe0,0x80,0xf3,0x71,0x8f,0x7e,0xd8,0xe0,0x74,0x78,0xe4,0x76,0xd9,0x5e,0xc3,0xc3,0x7d,0x8,0xdc,0x38,0x2c,0x57,0xad,0x44,0xdc,0x2d,0xcb,0xc,0x7,0x60,0xdc,0xdd,0xe0,0x7c,0x3a,0x71,0x13,0x24,0x37,0x4b,0x76,0x1e,0x61,0x18,0x39,0x78,0x7d,0xc2,0x66,0x7b,0x43,0x36,0x64,0x17,0x70,0x3c,0x3c,0x10,0xb1,0x93,0x16,0xa,0x4c,0x67,0x32,0x2e,0xa7,0x84,0x7e,0xd8,0x20,0xa7,0x88,0x39,0x46,0x20,0x27,0xc0,0x95,0xb8,0x5b,0x69,0xe7,0xed,0xfa,0x1,0x87,0xf3,0x3d,0x6e,0x5e,0xbc,0x24,0xdb,0x99,0xc,0x24,0x21,0x60,0x89,0x73,0xa5,0x12,0x21,0xeb,0x57,0x4e,0xd4,0x9c,0x5b,0x93,0x72,0x5d,0x3f,0x20,0xc7,0xa5,0x1a,0x52,0xa3,0xda,0x9a,0xcf,0xc7,0xbd,0x92,0x84,0x33,0xb7,0x4a,0x52,0x5b,0xe4,0x4,0x1f,0xb8,0x89,0x72,0x71,0x3c,0xf8,0x2d,0x3c,0x98,0x97,0xc6,0xbe,0x9c,0x63,0xd3,0x5c,0x79,0x3c,0x9d,0xf1,0xb8,0xdf,0xe3,0xcf,0xbf,0xf5,0x26,0xa6,0xd3,0x51,0xf7,0xe7,0xcd,0xdd,0xeb,0x0,0xb2,0x92,0x96,0xae,0x22,0xbb,0x52,0xa5,0x5e,0x59,0x96,0xb9,0xca,0x49,0xca,0xc8,0x99,0xda,0x80,0xa7,0x13,0xd9,0x6a,0x53,0x4a,0x38,0x1d,0x1e,0x91,0x62,0x44,0xcf,0xaa,0xba,0x9c,0x92,0xda,0x79,0xcf,0xf3,0x8c,0x2f,0xbc,0xf1,0x25,0x74,0x95,0x6a,0xa8,0xeb,0x7a,0x55,0xf1,0x78,0x4f,0x2d,0xa0,0xe9,0x7c,0xc4,0xd6,0xbd,0xc0,0x32,0x9d,0xd1,0xf5,0x23,0xa6,0xd3,0x51,0xad,0x84,0xa1,0xa7,0x62,0x80,0x3f,0xf9,0xca,0x5f,0xe8,0x31,0xb9,0xd9,0xdd,0x6a,0x19,0x8c,0xd8,0xeb,0x44,0x55,0xd4,0xf,0x1b,0xb8,0x4c,0x8d,0xa0,0x69,0x21,0x12,0x60,0xdc,0xec,0xd4,0x2e,0x9e,0x98,0x88,0xcd,0x29,0xc1,0xf5,0x5e,0x5b,0x2e,0x65,0x72,0x72,0xde,0x73,0x1e,0x66,0xd6,0xec,0x45,0x51,0x36,0xa9,0xf5,0x6c,0x95,0xa1,0x96,0xc4,0x2a,0x26,0x64,0xe1,0x7a,0xee,0xac,0xc,0x62,0x46,0xfe,0x19,0x3e,0x42,0x6,0x90,0xbf,0x57,0x55,0x76,0x18,0x2b,0x0,0x43,0xe8,0xd8,0x7a,0x5b,0xd1,0x18,0x4c,0xec,0x80,0xd5,0x76,0xde,0xf9,0xf2,0x1c,0xae,0x90,0x37,0xc4,0x53,0xd1,0xf3,0x68,0xf3,0x6b,0x3f,0x60,0x99,0xce,0x58,0xa2,0x64,0xea,0x39,0x6d,0x60,0x97,0xef,0x7f,0xca,0x9,0xc3,0xb8,0x65,0x5,0x3a,0x2b,0x72,0xe3,0x80,0x4e,0xc8,0x49,0xbe,0xb1,0x21,0x91,0xc,0xf2,0x7d,0x2b,0x37,0x7b,0xa0,0x4,0x98,0xd8,0x9b,0x69,0x4d,0x2f,0xd6,0x65,0xae,0xe9,0x21,0x9b,0x6e,0x8c,0xe8,0x86,0x1,0x23,0x17,0x9a,0xc4,0x65,0x86,0xe3,0xe6,0xde,0x14,0x23,0xd0,0xf,0x54,0x4e,0xb5,0xcc,0xdc,0x52,0xdc,0x21,0xe5,0xc4,0x8d,0xc9,0xa4,0xd2,0x73,0xde,0xa3,0x1f,0x36,0x88,0x71,0xc1,0xdd,0xcb,0x4f,0xe2,0xb4,0x7f,0xc0,0xed,0xcb,0x4f,0x92,0x1a,0x39,0x50,0x43,0xba,0xf7,0x1e,0xe9,0x81,0xd6,0xe4,0xae,0xa7,0x1b,0xd,0x13,0x9f,0xdb,0x96,0x33,0xb5,0xe0,0x52,0x3b,0x31,0xd9,0x86,0xa7,0xf3,0x9,0xc3,0xb8,0x1,0x58,0x55,0x1d,0xba,0xae,0x21,0xfc,0x64,0xd,0xa2,0x73,0x54,0x62,0x8b,0xb6,0xd3,0x32,0x29,0xca,0x57,0x9c,0x39,0x83,0x76,0xd2,0x82,0x8e,0xc4,0x5,0x27,0xde,0x7b,0x84,0x7e,0x40,0x8c,0xa5,0x80,0xcb,0xb1,0x45,0xdb,0x79,0x8f,0xe9,0x78,0xc0,0x34,0x9d,0x94,0x5c,0x95,0x7d,0x7d,0x3a,0xee,0x31,0x6e,0x76,0x98,0xa6,0xa3,0x2a,0x1f,0xb7,0x37,0x77,0x7a,0x73,0x46,0xca,0x5c,0x68,0x9f,0x8c,0x5a,0x88,0xb5,0xcc,0x13,0xc6,0x71,0x4b,0x8d,0xca,0xde,0xe9,0xeb,0xb4,0xf9,0x74,0x8e,0x5b,0x9d,0xd9,0xe6,0x9b,0x8b,0x2a,0x3e,0xaf,0x88,0x3a,0x22,0xa2,0x6b,0xae,0xaf,0x26,0xb5,0xb0,0x22,0xf5,0xda,0xeb,0x16,0xe7,0x5a,0x82,0xf,0x20,0xa1,0x76,0x6d,0xc1,0x2d,0x62,0x38,0x77,0x95,0x73,0x5b,0xaf,0xe7,0xd7,0xa,0x39,0xf2,0x13,0xe5,0x22,0x4e,0x1b,0x87,0xd7,0xc4,0xe5,0x53,0xcc,0xde,0xd3,0xb4,0x62,0x2b,0x1b,0x7c,0xea,0xe7,0xf5,0xcf,0x72,0xfb,0xe7,0xf,0x92,0xee,0x48,0xe8,0xa0,0x49,0x7c,0xc,0x6,0x83,0x11,0x80,0x6,0x83,0xc1,0xf0,0xec,0xe7,0xc2,0x42,0x50,0xe4,0xa8,0xad,0xbf,0x29,0x45,0x1a,0xfa,0x98,0x4,0xf3,0x3e,0xa8,0x4d,0xd3,0xfb,0xac,0x39,0x4d,0xc8,0x19,0x51,0x6,0x13,0x38,0x64,0x26,0xd6,0x1c,0x1c,0x16,0xce,0x1e,0x4a,0x29,0x61,0x9a,0x27,0x52,0xf3,0x71,0xc6,0x1b,0x40,0x19,0x83,0xc7,0xfd,0xbd,0xb6,0xcc,0x9e,0xe,0x7b,0x74,0xdd,0x80,0x61,0xb3,0xad,0x86,0x54,0xa0,0xeb,0x47,0xcd,0xa9,0x1a,0x78,0x0,0x23,0x45,0xd7,0xd,0xe6,0xf3,0x89,0xc8,0xad,0x8e,0x6,0x36,0x7a,0x4f,0xa4,0xc,0x9,0x5d,0x87,0x10,0x3b,0xf4,0x79,0x40,0xe8,0x3a,0xbc,0xfa,0xde,0x9b,0x64,0x47,0x4e,0x3d,0xbc,0xf3,0x3a,0xb4,0x88,0xda,0x42,0xec,0x6a,0x29,0x2d,0xaa,0x76,0x20,0xc5,0x5d,0xc0,0xe3,0xfd,0x3d,0xbc,0xf7,0xaa,0x7c,0xbb,0xed,0x7,0x52,0x9f,0x48,0x4e,0x11,0xf,0xab,0x64,0xb9,0x22,0x9b,0x73,0x8a,0xb,0xdb,0x69,0x67,0x38,0x94,0xcc,0xa5,0xf9,0x7c,0x42,0xe2,0xdf,0x15,0x52,0xac,0x1b,0x46,0x2a,0xf8,0x60,0xfb,0x94,0x34,0x60,0x76,0xa1,0x47,0x2,0x94,0x48,0x8c,0x32,0x54,0x3b,0x4a,0xfa,0xd1,0x1c,0x3b,0xbe,0x72,0x3f,0x9f,0x8f,0xb4,0xef,0x97,0x99,0x86,0x78,0xe7,0xb8,0x15,0x93,0xc8,0xa7,0xe9,0x7c,0x24,0xe5,0x46,0x5c,0x10,0x5c,0x8f,0x85,0x15,0x3a,0xcb,0x3c,0x91,0xc2,0x4,0x50,0xc2,0x36,0xb1,0x32,0x2e,0xb1,0x5d,0x4e,0x8,0xae,0x79,0x9e,0xf4,0xb9,0x13,0x93,0xa,0xa2,0x4e,0xec,0x40,0xea,0xcc,0x7e,0x18,0xb,0x31,0x1c,0x17,0x64,0x4,0xce,0xd1,0xa2,0xed,0x88,0x91,0x4a,0x60,0xbc,0xf,0x78,0xbc,0x7f,0x17,0x9b,0xdd,0x2d,0xa6,0xf3,0x7b,0x70,0x3e,0xb0,0x8d,0x78,0x81,0x4f,0x41,0xdb,0x47,0x3,0xf,0x9b,0xcb,0x3c,0xa1,0x1f,0x46,0xb2,0xfb,0x75,0x3d,0xbc,0x9f,0x30,0x4f,0x13,0x9c,0xf7,0x38,0x1d,0x1e,0xb1,0xbd,0x7d,0x1,0x7,0x22,0x4a,0xfb,0x10,0xb4,0xa0,0xc5,0xfb,0xa0,0xa,0x1a,0x22,0x62,0xa3,0x36,0x89,0x96,0x19,0x28,0x2b,0x59,0x9,0x90,0x62,0x15,0x95,0xfd,0x57,0xad,0x87,0xae,0xb4,0xa6,0x7a,0x21,0xd,0x51,0xab,0xa6,0xf8,0x8b,0xc5,0x5f,0x2e,0x29,0x16,0x91,0xe3,0xd2,0x60,0xf8,0xfe,0xa3,0xce,0x5a,0xcb,0x55,0xf9,0x1,0xf4,0xa6,0x41,0x71,0x4f,0x26,0x2d,0xfa,0xd0,0x88,0x3,0x26,0xe5,0x95,0xac,0x11,0x32,0xd1,0x7b,0xe4,0xb8,0x54,0x41,0x68,0xe5,0x3b,0x2e,0xdf,0x81,0x14,0xa3,0xae,0x9,0xf3,0x74,0xc6,0xf6,0xe6,0x8e,0x6e,0x52,0xec,0xef,0xa9,0xc,0x2,0xae,0x58,0x7f,0x59,0xcd,0xec,0x83,0x53,0xd5,0x9c,0x92,0x37,0x7c,0x83,0x3,0x4a,0xfa,0x25,0xdd,0xde,0xfa,0x6,0x15,0xc5,0x43,0x38,0xe5,0x50,0xc8,0xa2,0xea,0x70,0x3a,0x3c,0x22,0x74,0x3d,0xb6,0x37,0x77,0x18,0xc6,0x2d,0x91,0x68,0x5d,0x6a,0x33,0x5f,0xe1,0xe0,0xbd,0xe3,0xb5,0xb8,0xe7,0xac,0x40,0xba,0x49,0x40,0xdb,0x7f,0xe2,0x3c,0xd8,0x88,0x61,0xb3,0xa3,0xd7,0xeb,0x7b,0xca,0x1b,0xe5,0xf5,0x40,0xec,0xc9,0x87,0xc7,0x7b,0x6e,0x78,0x27,0xeb,0x2c,0xe0,0x30,0xf0,0xda,0x12,0xba,0x1e,0x71,0x59,0xb0,0xd9,0xdd,0xd2,0x9a,0xd6,0xf,0x1c,0x95,0xd1,0x23,0x3,0x18,0xc6,0x4d,0x45,0x7c,0xfa,0x92,0xc7,0xc8,0x31,0x15,0x5a,0xd4,0xc0,0xfb,0x62,0x18,0x37,0x74,0xf3,0x24,0x25,0xba,0x79,0xc4,0x9f,0xc3,0x3c,0x4d,0xc8,0x39,0xf1,0x7a,0x39,0x10,0xa9,0xc9,0x19,0x87,0xd3,0xf9,0x84,0x10,0x3a,0x5e,0xab,0xbd,0xaa,0xfc,0xba,0xbe,0xc7,0xcd,0x8b,0x97,0x48,0x31,0xaa,0x2d,0x9b,0x4a,0x52,0x66,0xcd,0x4f,0x94,0x73,0xf2,0x30,0x6e,0xb8,0x21,0xbe,0xd7,0xf5,0x91,0xd6,0xc5,0x40,0x37,0xfa,0x78,0xe1,0xd4,0x1b,0x85,0x6c,0x65,0x5e,0xeb,0xeb,0x72,0x95,0xa7,0x5a,0x47,0x2e,0x94,0x78,0x6,0x56,0x6b,0xd7,0xa,0xed,0x15,0x1f,0xe6,0xd8,0xc2,0x5b,0xd6,0xeb,0x8a,0x24,0x6c,0xaa,0x34,0xda,0xe6,0x5d,0x57,0x51,0x79,0x6b,0xa5,0x5e,0x51,0x6,0x56,0xad,0x1c,0x17,0xca,0xbd,0xfc,0xd4,0x37,0x6e,0xf5,0xfe,0x56,0x4c,0xdd,0x5a,0xa1,0xd8,0xa8,0xfa,0xf2,0x25,0xb9,0xe7,0x3e,0x4,0x7f,0x78,0x2d,0xee,0xef,0xe9,0x15,0xa1,0xbc,0xb7,0xea,0x67,0x66,0x1,0x36,0x18,0xc,0x6b,0x4,0x0,0xff,0xcc,0x76,0x83,0xc1,0x60,0x30,0x3c,0xf,0xfc,0xe0,0x8f,0x7d,0x6,0x23,0xf,0x32,0xe9,0x4a,0xfe,0x53,0x7d,0x31,0x2a,0x76,0xc9,0x7a,0x58,0x4,0x5f,0xd8,0x43,0x6c,0x94,0x7c,0xf1,0x4e,0x77,0xf8,0x3,0xb7,0xfe,0xce,0xc5,0xbe,0x94,0x33,0x96,0xf9,0x8c,0xe9,0x7c,0xd4,0x3c,0xb9,0xd3,0x61,0x8f,0xc,0x22,0x79,0x86,0xcd,0x56,0x15,0x62,0x62,0xd3,0x94,0xff,0xe,0xe3,0x86,0x7,0xb0,0x1e,0x39,0x65,0x26,0xcb,0x68,0x68,0xa2,0x6b,0x5f,0xa7,0x2d,0x83,0x62,0xdd,0x8c,0x71,0x56,0x75,0x62,0x8c,0xb,0xe,0x8f,0xaf,0xb8,0x5,0xf1,0x40,0xdb,0x14,0x3c,0x5,0x95,0xfb,0xa2,0x8,0x8b,0xb,0x91,0x7e,0xcb,0x4c,0x99,0x78,0x87,0xc7,0x7b,0x1c,0xf7,0xf,0x6a,0xf1,0xba,0xb9,0x7b,0xd,0xb,0x13,0x9a,0xc1,0x7,0x7a,0x2c,0x2b,0x13,0x53,0xa4,0x1,0x2a,0xb1,0x42,0x2,0xac,0x30,0x71,0xde,0xc3,0x85,0x40,0x4,0xdc,0x38,0x62,0x99,0xa8,0xb5,0x56,0x5a,0x70,0xc5,0x7e,0x13,0x38,0xb3,0xf,0x70,0xe8,0xfb,0x1,0x5d,0xdf,0x15,0xd2,0xa8,0x52,0xa0,0x39,0x55,0x54,0x92,0x22,0x47,0x1a,0x9a,0x3d,0x7,0xb0,0x53,0xa3,0x6e,0xc6,0x71,0x7f,0x8f,0xe9,0x5c,0x2,0xf0,0x7d,0xe8,0xd8,0x7a,0xc6,0x41,0xf8,0x1a,0xb4,0xe,0x2d,0x27,0x89,0x71,0xd1,0x8c,0x2c,0xef,0x43,0x9,0x80,0x3f,0x9f,0x30,0x4f,0x67,0x4c,0xa7,0x23,0xe5,0x43,0xe5,0x8c,0x8e,0x9,0x4b,0x19,0xd0,0x83,0x7c,0x6e,0xde,0x69,0xa0,0xbf,0x34,0x84,0xa6,0x44,0x79,0x51,0xe7,0xd3,0x41,0x7,0x5a,0xca,0xc1,0x22,0x72,0xb1,0x1f,0x36,0xd4,0xee,0x7b,0x78,0xc4,0xb8,0xdd,0xd1,0x67,0xcf,0xc7,0x90,0xc,0x7f,0x62,0x51,0x14,0xcb,0x6e,0x8c,0xa4,0xe8,0x4c,0x91,0x5b,0x89,0x39,0xec,0xff,0xf1,0xfe,0x1d,0x1e,0xfc,0x33,0xb6,0x37,0x77,0x94,0xc9,0xe5,0x3c,0x7c,0xd7,0xe9,0xb1,0x91,0x79,0xdf,0xd1,0xf1,0xc5,0xf9,0x57,0x7d,0xaf,0x84,0x61,0xd6,0xac,0x29,0x57,0x82,0xd1,0x5d,0x69,0x54,0x75,0x95,0xd7,0x5d,0x54,0x8b,0xb9,0x1a,0x60,0xf5,0x78,0xe2,0xe3,0xee,0x78,0xd8,0x3,0x56,0x4,0x62,0xf8,0x8,0xe0,0x0,0xbc,0xfc,0x81,0x4f,0xe3,0xee,0xb5,0xd7,0xe1,0x7c,0xe0,0x5e,0xa7,0xac,0xc7,0xb8,0x16,0x6b,0x54,0xdc,0x46,0x4d,0xe,0xd4,0xe5,0xc,0xf4,0xe0,0x44,0x76,0x52,0x80,0xd5,0x5e,0xa1,0x22,0x34,0x72,0xb1,0xd0,0xeb,0x77,0x35,0x21,0xf4,0x7d,0x65,0xb9,0xa7,0x35,0x61,0x1c,0x89,0xac,0xa,0x5d,0x7,0xcf,0x2d,0xf0,0x91,0x6f,0x84,0x8,0xb9,0x57,0xb3,0x1a,0xa4,0x46,0x2c,0x4,0x90,0xdc,0x80,0x10,0x9b,0xb1,0xc4,0x53,0xf8,0xba,0xb4,0x84,0xcb,0x4d,0x64,0x9b,0x44,0xa9,0xdd,0xf,0x3,0xb0,0x2a,0x95,0x42,0xb5,0xdd,0x85,0x80,0xca,0xac,0xae,0x9e,0xb9,0x0,0xcb,0xeb,0xf7,0xdc,0xf3,0xb9,0xb0,0xeb,0x7,0x8c,0xdb,0x1b,0x20,0x43,0x33,0x47,0x37,0xbb,0x1b,0x4c,0x27,0x5a,0x6b,0xbb,0xbe,0x27,0x6b,0x33,0xa4,0x5,0x3e,0x68,0x1e,0x69,0x3f,0xc,0x70,0x21,0xa0,0xef,0xa9,0xa0,0x68,0x18,0x46,0x2a,0xbf,0xda,0x6c,0x75,0xed,0x23,0x22,0xd6,0xb5,0x5,0xd,0xd5,0xb9,0x25,0x2e,0xa4,0x38,0x97,0xf3,0x66,0x8a,0x4b,0xd9,0x46,0xb6,0x46,0x3b,0x50,0xfc,0x81,0x66,0x9f,0xe6,0xc4,0xa,0x7a,0xfa,0x48,0x43,0xe8,0xb1,0xd9,0xee,0x90,0x63,0xc4,0xb2,0x2c,0x7c,0xfe,0x19,0x95,0x60,0xdc,0x6c,0x77,0xda,0x6,0xdd,0xf5,0x3d,0xfa,0x71,0x43,0x6b,0xbe,0xa8,0xbc,0x43,0xa0,0x72,0x25,0x6e,0x97,0xe,0xa1,0xd7,0x8c,0xd4,0xf2,0xb9,0x83,0xdd,0x0,0x79,0xc5,0x7d,0xe5,0xb,0x8e,0xab,0x26,0xeb,0x5c,0x45,0x24,0xd6,0x3c,0x97,0x8,0x50,0xd7,0x2c,0x59,0xa9,0x75,0xaa,0xd5,0x7d,0x97,0x26,0xde,0x62,0xfb,0xbd,0xc6,0xb0,0xb9,0xf6,0x95,0xb4,0x2c,0x2a,0xbf,0xf,0x29,0xe7,0x2a,0x35,0x62,0x45,0xec,0xb9,0xfa,0x39,0x71,0x69,0xdb,0x75,0xcd,0x9,0xfe,0x3a,0x99,0xf7,0x7f,0x46,0xfb,0x3f,0xa1,0x6e,0x5c,0xd1,0xb0,0x52,0xf8,0x15,0x49,0xd9,0xff,0xf8,0xde,0xdb,0xb6,0x68,0x1a,0xc,0x6,0x85,0x29,0x0,0xd,0x6,0x83,0xe1,0x39,0xd,0x86,0xab,0xc6,0x37,0xb1,0x4e,0x79,0x9,0x58,0xe7,0x56,0x47,0x54,0x39,0x69,0x34,0x50,0x5,0x56,0x6,0x4a,0xeb,0x1c,0xab,0xfe,0x98,0x18,0xcb,0xdc,0x66,0x2b,0xcf,0x29,0x59,0x78,0x91,0x9b,0x6f,0x73,0xce,0x54,0x4,0xc2,0x19,0x4d,0xde,0x7b,0x6c,0x76,0xb7,0xac,0xf8,0xea,0xd1,0x8f,0xd4,0x7c,0xd8,0xf7,0x64,0x29,0x15,0x62,0xaa,0x1f,0x36,0x90,0x8a,0x5,0x7a,0xad,0x32,0x64,0xd4,0xa4,0x98,0x64,0x47,0x49,0xfb,0xa4,0x6c,0xfb,0x66,0x7b,0x8b,0x65,0xa1,0xc6,0xc5,0xf3,0xe9,0x80,0x61,0xc3,0x8a,0xc2,0x2a,0x4,0xdd,0x7,0x6a,0xa7,0x4d,0x69,0xd1,0xfc,0xb7,0x7e,0xd8,0x50,0x16,0xdf,0xb8,0xc1,0xfe,0xe1,0x15,0x76,0xb7,0xaf,0x11,0x99,0xc9,0x5,0x21,0x60,0x35,0x9c,0x77,0xa5,0xbd,0x30,0xc7,0xa8,0x84,0xa8,0x28,0xd9,0xba,0xae,0x47,0x9c,0x67,0xce,0x4e,0xa,0x44,0xfa,0x85,0xe,0xe7,0x18,0x55,0x75,0x19,0x97,0x19,0xfd,0x30,0x20,0x23,0xe3,0x7c,0x3a,0x61,0xb3,0xbb,0x61,0x45,0xe2,0xc2,0x44,0x16,0xef,0xe7,0xd0,0xb1,0x9d,0xb8,0x64,0x24,0xaa,0xa2,0xb0,0x1f,0x90,0x41,0x76,0xad,0xfd,0x3c,0xa3,0xeb,0x8b,0x6d,0x77,0x77,0xf7,0x1a,0xa6,0xd3,0x9,0xfd,0xc8,0xdb,0xc3,0x8a,0x1d,0x55,0x9c,0x30,0x1,0x19,0x40,0xad,0x94,0xd2,0x62,0x39,0x4f,0x67,0x6d,0x3d,0xce,0x39,0xe1,0x74,0xd8,0xc3,0x87,0x80,0x71,0xb3,0x83,0x73,0x9e,0x3f,0x2b,0x20,0xa6,0x88,0x78,0x66,0x5,0x4d,0x45,0xc4,0x4a,0x5b,0x67,0x8,0x1d,0x52,0x28,0x6d,0xc3,0xd3,0x89,0xda,0x87,0x4f,0x87,0x3d,0xb6,0xb7,0x2f,0x34,0x9f,0x6c,0xdc,0x8c,0x4a,0x32,0xa6,0x94,0xe0,0xf9,0x38,0xb,0x21,0x20,0xf4,0x3d,0xe2,0xfe,0x81,0x6d,0xbe,0x5b,0x1c,0xf7,0x8f,0x88,0xf3,0xc,0x17,0xe8,0x73,0xed,0x87,0xd,0xd,0xb8,0x6c,0xab,0xa6,0x52,0x10,0x57,0xd9,0x94,0x8b,0x52,0x44,0x32,0xaf,0xbc,0xf,0xda,0x3c,0x8a,0x6a,0x2c,0x14,0x12,0x30,0x23,0xc3,0x65,0xd7,0xb6,0x52,0x66,0x0,0x48,0x3a,0x20,0xa,0x67,0x98,0xaf,0x49,0x33,0x92,0x15,0x80,0x18,0x3e,0x1a,0x68,0x19,0xc1,0xda,0xe6,0x57,0x91,0xe1,0xae,0x2a,0xbe,0x69,0x8e,0xe0,0xc,0xcd,0x7a,0xcb,0x29,0x6b,0x1e,0x20,0x29,0x7,0x5d,0x69,0x76,0x77,0xa8,0xbe,0x1f,0x50,0x92,0xcf,0x39,0x22,0xd8,0x68,0xad,0x4c,0x8,0x5d,0x8f,0x91,0x73,0x39,0x65,0xbd,0x51,0x2,0x4f,0xe3,0x8,0xd8,0xde,0xb,0x22,0xdb,0xbc,0xb,0x25,0xab,0x95,0xd7,0x95,0x24,0xd9,0x7f,0xa1,0xd3,0xf5,0x15,0x4b,0x51,0xd,0xca,0xd,0x28,0xe7,0x2,0xdd,0x48,0x61,0x32,0x8f,0x1a,0x76,0x89,0x16,0xe9,0xba,0xae,0xb4,0xc3,0xaf,0xf2,0xe8,0x28,0x33,0x2f,0x34,0xc5,0x28,0x60,0xd5,0x35,0x91,0x62,0x5b,0x9c,0xe,0x8f,0xaa,0x58,0x8f,0x91,0x5a,0x82,0x43,0xe8,0x91,0xfc,0x82,0x65,0x59,0xb0,0xbb,0x7b,0xa1,0x36,0x63,0xb2,0xf6,0x6,0xf8,0x81,0x72,0x0,0xe9,0x39,0x7a,0x5d,0xd7,0x87,0x71,0xc3,0xd6,0xdf,0x9e,0x94,0x7b,0x10,0xd5,0x9b,0xf4,0xba,0x3a,0x56,0xe1,0xf5,0x4a,0x80,0x7a,0xbf,0xca,0x7e,0xe5,0x1b,0x77,0xc3,0xb8,0xc5,0x3c,0x4f,0x98,0xf3,0x9,0x1d,0x17,0x89,0x0,0xe,0x3e,0x94,0xb2,0xd,0xdf,0x75,0x25,0xba,0x22,0x2e,0xe8,0xfa,0x11,0x71,0x99,0xb0,0xbd,0x25,0xab,0x2f,0x11,0xc5,0x4c,0x7c,0x39,0x20,0x74,0x3,0x80,0x5,0xa1,0xe7,0x56,0x7a,0x21,0x27,0x5d,0x21,0xdb,0xe0,0xa0,0xe7,0x52,0x39,0x2f,0x2,0x6c,0xb3,0x76,0xa5,0x10,0xa5,0xde,0xcf,0x19,0xa4,0x98,0x84,0x14,0x2a,0xc9,0x9a,0x5b,0xd5,0x6d,0xac,0x69,0xb9,0x9a,0x94,0x76,0xf9,0x92,0xd6,0x2b,0x11,0x78,0xf9,0xe2,0x9b,0x50,0x67,0xfd,0x35,0xff,0x5a,0xb7,0xba,0x5f,0x30,0x7c,0x6b,0x25,0x60,0x29,0x7e,0x6a,0x1f,0x56,0xfd,0xee,0x85,0xd7,0x18,0x97,0xcf,0xdd,0x6c,0xc8,0xca,0xda,0x9b,0x3f,0x1c,0x99,0xf7,0x41,0xff,0x76,0x9d,0xf8,0x6b,0x55,0x8c,0x9a,0xf6,0xb1,0x2a,0x6d,0x31,0x18,0xc,0x6,0x23,0x0,0xd,0x6,0x83,0xe1,0x99,0x81,0xac,0x4f,0x62,0xfb,0xc8,0x72,0xed,0xac,0x96,0x28,0xc9,0x86,0xd3,0x3b,0xf8,0x7c,0x61,0x9b,0x35,0x7f,0x29,0x94,0x6c,0x35,0xb1,0x64,0x49,0x90,0xbc,0x3,0x11,0x85,0x31,0x2,0x29,0x21,0xc6,0x88,0xf9,0x7c,0xe2,0xfc,0xba,0xa8,0x36,0xd7,0x9c,0x12,0x10,0x2,0xfa,0x7e,0x68,0x2c,0x63,0x8e,0x7,0xf,0x6a,0x5d,0x25,0x72,0x2d,0x32,0xf9,0x48,0x73,0x9,0xf,0x67,0xf4,0x46,0x0,0x1f,0x88,0x74,0x93,0xed,0x77,0xa4,0xcc,0x10,0x2b,0x8f,0xf,0x1,0xf,0xef,0x7d,0x8f,0x2c,0x6d,0x9c,0x2d,0x75,0xdc,0x3f,0xa2,0xeb,0x6,0x9c,0x8e,0x7b,0xb5,0x22,0x3b,0x56,0x51,0x1c,0x1e,0x5e,0x71,0x91,0x43,0x79,0x4e,0xe7,0x7c,0x53,0xf4,0x21,0x3,0xac,0xfc,0x5b,0x76,0x64,0x99,0x95,0x61,0x42,0x8a,0x53,0x72,0x22,0xd5,0x4b,0xf2,0xbc,0x6d,0x19,0x1a,0x60,0x1f,0x97,0x85,0xb,0x2b,0x98,0x4,0xcc,0x41,0x15,0x64,0x85,0xc8,0x24,0x45,0x45,0xca,0x49,0xad,0x75,0x19,0x99,0x55,0x83,0x1,0x29,0x96,0xa6,0xca,0xd0,0xf5,0x3c,0x8c,0x92,0xe2,0x6f,0xbb,0xbb,0xc5,0xf9,0x4c,0xf6,0xb0,0x25,0x4,0x3c,0xbe,0x7a,0x7,0xb7,0x2f,0xea,0xd6,0x4a,0x22,0xca,0xb2,0x3,0x5b,0x87,0xb3,0x2a,0x67,0x22,0xb7,0x54,0xa,0x99,0x9b,0x98,0x88,0x4c,0x39,0x51,0x70,0xff,0xb8,0xad,0x14,0x8a,0x4c,0x1e,0x83,0x3e,0xf7,0x58,0xb5,0x72,0xd2,0x71,0x91,0xe0,0x83,0xd7,0x7c,0xbd,0x6e,0x18,0x70,0x3a,0x3e,0x62,0x73,0x73,0x87,0xe9,0x74,0xc0,0x3c,0x9f,0xf1,0x72,0x43,0x61,0xf2,0x42,0x20,0x74,0xfd,0xc8,0xf9,0x7b,0x11,0xd9,0x39,0xb5,0x1a,0x93,0x5a,0x6f,0xc0,0x90,0x28,0x33,0x31,0x2e,0x33,0xd9,0x9f,0x9d,0x23,0x5b,0x5a,0x8,0x18,0xc6,0x2d,0xb5,0x65,0x6,0xcf,0xd9,0x94,0xbe,0x34,0x87,0x32,0xb1,0x4d,0x59,0x59,0x5c,0x38,0x90,0x53,0xd1,0x88,0x30,0x59,0xa0,0x76,0x5e,0x64,0x2d,0xc6,0x91,0xe3,0xa9,0xa8,0x92,0x8a,0xaa,0x49,0x89,0xd4,0xec,0x6a,0x69,0xa,0x5b,0xd8,0x3,0x65,0x4c,0x1a,0xc,0x1f,0x5,0xaa,0x7c,0x35,0x59,0xa3,0xcb,0xb1,0x5c,0x51,0x7e,0xce,0x55,0x2e,0xc5,0xac,0xc7,0xbe,0xd8,0x21,0x8b,0xc2,0xf,0x6a,0xb9,0x94,0x78,0x7,0xe7,0x5d,0xc9,0x75,0xf3,0x4e,0xc9,0x3c,0xc0,0x61,0x18,0xc7,0xea,0xef,0x80,0x1b,0x37,0xfa,0x7a,0x5d,0xd7,0x6b,0x56,0x9c,0xe7,0x73,0x80,0x92,0x5f,0x1a,0x35,0x80,0x12,0x35,0xd0,0xd,0xc8,0x9c,0xbd,0x9a,0xaa,0x92,0xaa,0x9c,0x12,0xff,0x6e,0xd0,0xef,0x62,0x3f,0x50,0x73,0x6f,0x3f,0x6c,0x34,0x7f,0x55,0xa,0x86,0xa8,0xfc,0x88,0xc8,0x30,0xcf,0xd6,0xdd,0x79,0x9e,0x48,0x79,0x5c,0x95,0x82,0x10,0xb1,0xe6,0xe9,0x3c,0x3,0xb2,0xd0,0x3a,0x80,0x6c,0xc0,0x4c,0x4c,0x7a,0x1f,0xb0,0xbd,0x79,0xc1,0xc4,0xd8,0x56,0xcb,0xa4,0x9c,0x73,0x58,0x16,0x8a,0x87,0xe8,0xf8,0x9c,0xd0,0xf,0x23,0x6f,0x4b,0x44,0xbf,0xdb,0xe8,0xf9,0x82,0xd6,0x4b,0xc7,0xed,0xbf,0xac,0xa6,0xcb,0xd0,0x1c,0x3f,0xc7,0x37,0x88,0x64,0x7b,0x52,0x4e,0x8,0x92,0x49,0x8b,0x92,0xd9,0x3b,0x8c,0x1b,0xe4,0x7d,0x82,0x77,0x5b,0x3d,0x2f,0xc8,0x5a,0x27,0x6b,0xb6,0x64,0xe,0xa6,0x98,0x10,0x36,0x5b,0x2c,0xf3,0x44,0x8d,0xcc,0xf3,0x8c,0xae,0x1b,0x88,0xe8,0xac,0xc8,0xe1,0x14,0x17,0xc,0x9b,0x8d,0xc6,0x42,0x50,0x59,0x8b,0x10,0xa2,0xae,0x8a,0x7c,0x88,0x44,0x8,0xb2,0x32,0xbc,0x14,0xd3,0x66,0x6d,0x82,0x77,0xb9,0x34,0x3d,0x4b,0x41,0x48,0x6,0xe0,0xaa,0x22,0xa6,0x72,0xcc,0x61,0x65,0x52,0x15,0x92,0xb0,0xe4,0xb7,0xae,0xed,0xbb,0x64,0xff,0xbd,0x56,0xae,0xe1,0x2e,0xad,0xbe,0xf9,0x82,0x2a,0x6f,0xff,0x2e,0xfb,0xd6,0xbd,0x4f,0xae,0xde,0xfa,0x39,0xb2,0x6b,0x89,0xb9,0xb,0x25,0x9f,0xbb,0x24,0xef,0xd6,0xdc,0xe3,0x15,0xe2,0xf2,0x29,0x32,0xcf,0x3d,0x41,0x8,0x3a,0xb8,0xf7,0xfd,0x7b,0xbd,0x34,0x18,0xc,0x6,0x83,0x11,0x80,0x6,0x83,0xc1,0xf0,0xff,0x1,0x64,0x50,0xaa,0x2f,0x92,0x33,0xd0,0xe4,0xc0,0x8,0xc1,0x25,0xa0,0x6,0xc8,0xa8,0x21,0xed,0x0,0xb0,0xcc,0x93,0x92,0x6c,0xe5,0x12,0xbd,0x28,0x2,0xeb,0x56,0xba,0xf3,0xe9,0x8,0x1f,0xbc,0x2a,0xbd,0x9c,0xa7,0xc1,0x67,0x9e,0x27,0x6c,0x6f,0x6e,0x49,0xbd,0x96,0xb3,0xe,0x48,0xa1,0x1f,0x10,0xc0,0xad,0x93,0xa0,0x1c,0x21,0xef,0xb9,0xe9,0x75,0x99,0x74,0x58,0x91,0xd6,0x4a,0xd9,0x5e,0x79,0x6f,0x3e,0x4,0x56,0x79,0x50,0x29,0xc4,0xf9,0x74,0x50,0xd5,0xc8,0xf9,0x74,0xc0,0xb8,0xdd,0x51,0xeb,0x2c,0x13,0x7f,0xd2,0x1e,0x3b,0x8c,0x5b,0x1c,0xf6,0xf7,0xd8,0x6c,0x6f,0x70,0xff,0xee,0xdb,0x88,0xac,0xf6,0x8b,0xd1,0x21,0xce,0x13,0x16,0xce,0x95,0x13,0x25,0x60,0xd7,0xf5,0x70,0x39,0xac,0x14,0x2f,0xa5,0xa9,0x91,0x27,0x9c,0x86,0x3c,0x22,0xe5,0x6,0xef,0x23,0x1e,0x9e,0xb6,0x37,0x23,0xa9,0x2f,0x38,0xdf,0x29,0xf1,0xfb,0xa6,0xa0,0xf7,0x99,0x89,0xbd,0xa0,0x4a,0x47,0x69,0x49,0x9e,0xce,0x47,0x84,0xae,0xc7,0x3c,0x9d,0x21,0xb6,0x35,0x6a,0x7a,0xc,0x48,0x71,0x21,0xc2,0x8f,0x89,0x2a,0x29,0xef,0x18,0x37,0x5b,0xa,0x92,0xef,0xa8,0xc0,0x25,0xce,0x73,0x9,0x9a,0x5f,0xc8,0x46,0x96,0xe2,0x82,0xf3,0xf1,0xa0,0xf9,0x5b,0xa7,0xe3,0x1e,0xfd,0x30,0x22,0xb3,0x8d,0x8c,0x9a,0x77,0x3b,0x25,0x30,0xbb,0x8a,0xc,0x16,0x22,0x92,0x6c,0xda,0x6c,0x1,0x13,0xcb,0x35,0x5b,0xf7,0xa6,0xd3,0x1,0x0,0x70,0x73,0xf7,0x12,0xe7,0xe3,0x11,0xfd,0x98,0x31,0x8c,0x23,0x22,0x7f,0x6,0xce,0xb3,0xb2,0x2e,0x25,0x22,0x79,0xa5,0x54,0xa4,0x97,0xc1,0x7e,0x40,0x3f,0x8c,0xd4,0x82,0xb9,0xcc,0x98,0xe7,0x89,0xc8,0xbf,0x65,0xc6,0xcd,0x8b,0xd7,0x55,0x85,0xe4,0x9c,0x67,0x8b,0x74,0xd0,0x12,0x18,0x31,0x81,0x51,0xe1,0x41,0x69,0xfe,0x95,0x2,0x1,0x5f,0xe5,0x6d,0xc9,0xf0,0xda,0xe,0x67,0xae,0xb2,0x29,0xf2,0x77,0x48,0x14,0x80,0x6b,0xb2,0xcf,0xc8,0x3f,0xc3,0x47,0xc7,0xfe,0x35,0xa5,0x3e,0xd,0xcb,0xc0,0xdf,0x43,0xcd,0x78,0xe5,0x1b,0x19,0x42,0x12,0xa,0x51,0x4e,0x6b,0x6e,0x42,0x4a,0x42,0xa,0x86,0xa2,0x76,0x96,0x63,0x3b,0x97,0x28,0x86,0x94,0x12,0x92,0x17,0xfb,0xbf,0xe4,0xf4,0x79,0x78,0x97,0xe1,0xba,0x1e,0x89,0xd7,0x67,0x39,0x87,0x38,0xfd,0x2e,0x79,0x56,0x9d,0x83,0x4b,0x2b,0x5c,0x53,0x14,0xe1,0x40,0x37,0x27,0x44,0xf9,0x2d,0x36,0x66,0xf9,0x9e,0xca,0xb9,0x41,0x94,0x8a,0xa5,0x28,0x29,0x21,0xf0,0x7a,0x18,0x58,0xc1,0x2e,0xa,0x6f,0x21,0x43,0x24,0xff,0x54,0xd6,0xe8,0xa8,0x39,0xb6,0x51,0xed,0xb4,0x42,0x62,0x7a,0x1f,0xd0,0x7b,0x8f,0x65,0xa2,0xc,0xbf,0x24,0xeb,0x7a,0xee,0x31,0x4d,0x27,0xb2,0xe3,0xb2,0x42,0x7d,0xb3,0xbb,0xd1,0xb2,0x10,0x1f,0x3a,0xbd,0x91,0x10,0xba,0xe,0x91,0xc9,0x41,0x5a,0xdf,0x88,0x34,0x1b,0x37,0x3b,0x2d,0x66,0xa1,0xec,0xd9,0x23,0xe5,0xa0,0x3a,0x8f,0x9c,0x29,0x3f,0x37,0x74,0x52,0xb2,0x15,0xe1,0x3d,0x9d,0x2f,0xfb,0x3e,0xeb,0xf9,0xb8,0x1f,0x36,0x88,0xcb,0xac,0xf9,0xb2,0x75,0xae,0x9e,0xf7,0x1,0x99,0x3f,0x9b,0xae,0xa7,0x9b,0x5e,0x1d,0xaf,0x5b,0xbb,0xbb,0xd7,0xe8,0x5c,0xc3,0xe7,0xa5,0x92,0xfd,0x5b,0xd6,0x48,0x3a,0x5f,0xf1,0x1a,0xc9,0xe4,0x9f,0xa8,0xfc,0x8a,0x7b,0x80,0x8f,0x1f,0xef,0x9b,0x52,0xb0,0x9c,0x59,0x81,0xc7,0xe7,0xeb,0x72,0x4c,0xf2,0x95,0x43,0x2e,0x24,0x9b,0x96,0x70,0xa8,0x3a,0xaf,0x31,0x84,0xaf,0xb8,0xb2,0xf,0x53,0xa8,0x51,0xce,0xc3,0x17,0x16,0xde,0x6b,0x9c,0xe1,0xfa,0xcf,0xf9,0x43,0x7e,0xd7,0xf4,0x4f,0xee,0x43,0x3c,0xda,0xbd,0xef,0x73,0xd7,0x76,0xdd,0xfa,0xda,0xca,0x35,0xe4,0xe7,0x25,0x15,0xba,0x56,0xfb,0xad,0x33,0xff,0x72,0x65,0x65,0xd6,0x7c,0x50,0x76,0x4a,0x18,0xc,0x6,0x83,0x11,0x80,0x6,0x83,0xc1,0xf0,0x4c,0xd1,0xb6,0xea,0x15,0xe5,0x1e,0xb7,0x4c,0xd0,0x10,0x28,0xa,0x29,0x1f,0x90,0x72,0x64,0x45,0x80,0x53,0x42,0x4e,0x95,0xa,0x28,0xa1,0xdd,0x32,0xc,0xf5,0xfd,0x88,0xf3,0xe9,0xa0,0x17,0xef,0xd3,0xf9,0xa8,0x2d,0x8c,0x12,0x50,0xee,0xbd,0xc7,0x66,0x7b,0x53,0x5a,0x1,0x79,0x68,0x70,0x20,0x3b,0xa9,0x8b,0x4b,0xf3,0x73,0x40,0x1a,0x20,0x4b,0x53,0xab,0xe7,0x92,0x89,0x85,0xdb,0xe,0x5d,0x5d,0xce,0x0,0xca,0x3e,0xda,0xde,0xdc,0x69,0xdb,0xe4,0x61,0x7f,0x8f,0xb8,0xcc,0xd8,0xee,0xee,0xc8,0x16,0x7b,0xfb,0x1a,0x82,0x10,0x56,0x3c,0xf0,0xe4,0x4c,0xd,0xc0,0x33,0x67,0xdf,0x11,0x91,0x16,0x31,0xc,0x1b,0x52,0xd9,0xa5,0x88,0x8e,0x83,0xd9,0x3d,0x2b,0x1d,0x45,0x75,0x27,0x76,0xac,0x9a,0xa4,0x3,0x80,0xc0,0x16,0x39,0x52,0x72,0x2c,0x98,0x4e,0x27,0xcd,0xd9,0x93,0xfc,0xa4,0x9c,0x33,0x96,0xe9,0x8c,0x61,0x18,0x75,0xf0,0xc,0x5d,0x87,0x79,0x9a,0xf8,0xf3,0x21,0x22,0x4b,0xd4,0x7a,0x32,0xd8,0x16,0xa5,0xa,0xd0,0x75,0x44,0x8e,0x39,0xe,0x68,0x1f,0x36,0x3b,0x2c,0xf3,0x2b,0xcc,0xd3,0x89,0x6,0x73,0x26,0xe5,0xa8,0x25,0xd9,0x2b,0x11,0x3a,0x9d,0xa8,0x54,0x25,0x2e,0x94,0xdb,0x18,0x97,0x99,0xb2,0x10,0x53,0xc2,0x3c,0x9f,0x31,0x8c,0x5b,0x8c,0xdb,0x1d,0x17,0x70,0x10,0x89,0xe7,0xa5,0x58,0x83,0x7,0x3a,0x6a,0x3c,0xee,0x55,0xc1,0xa8,0xd,0xbc,0x92,0x3f,0xc8,0x4d,0x9f,0xde,0x79,0xc,0x1b,0xb2,0xaa,0x1d,0xf7,0xf,0x54,0xdc,0x31,0xc,0xa0,0x2e,0x80,0xc0,0x85,0x2f,0x33,0x2,0x7a,0xcd,0x99,0x92,0xc1,0x52,0x54,0x80,0x7d,0x3f,0x60,0xf2,0x94,0xdf,0xd5,0x8f,0x64,0xd3,0xe,0xa1,0xa3,0x6,0xce,0xaa,0xd5,0xb2,0xe3,0x3f,0x8b,0x3d,0x4d,0xc8,0xc,0x9d,0xbb,0x44,0x9d,0xc2,0xea,0xc0,0x32,0x97,0x12,0xb9,0xd7,0x6,0xf2,0xe7,0x66,0x4,0x55,0x85,0xb,0xd6,0x4e,0xaf,0xb6,0x95,0xb2,0x56,0x56,0x19,0xc,0xdf,0xe7,0x95,0xfe,0x89,0x70,0xff,0xac,0xa5,0x1e,0xa4,0x68,0xce,0xba,0xb6,0xca,0xb9,0x40,0x88,0x32,0x2d,0x9e,0x80,0x74,0x88,0x24,0x25,0x7b,0x72,0xca,0x28,0x37,0x8f,0x12,0x32,0x2a,0x22,0xc8,0x57,0xcf,0xeb,0x49,0x35,0x2e,0x85,0x49,0x92,0xbb,0x9,0x40,0x6f,0x24,0x48,0x6e,0xa8,0xde,0x50,0xca,0x99,0xa2,0x15,0x34,0xef,0xf,0xfa,0x9d,0xcc,0x40,0xb3,0xdd,0xd2,0xa4,0x4e,0xef,0xa7,0x43,0xce,0xbc,0x7e,0x86,0xe,0x8,0xe,0xcb,0x7c,0x2e,0x64,0x8,0x9f,0xf3,0x3a,0x8e,0x2e,0x98,0xe7,0x89,0x9,0x3e,0x34,0xa4,0x7e,0x89,0x9a,0xa0,0x96,0x61,0x51,0x65,0x4b,0x74,0x82,0xaf,0xed,0xb0,0xbc,0xd3,0x46,0xbf,0xd3,0xec,0xd9,0x9e,0xd5,0x75,0xe3,0x96,0xa2,0x1c,0xa4,0x2c,0x44,0x62,0x29,0xe8,0xfd,0x3b,0x8d,0xda,0xa0,0xd7,0x9c,0x79,0xbb,0x3,0x13,0x7c,0x1,0x8e,0x15,0x8e,0x40,0x66,0x3b,0x31,0x9d,0x6b,0xe0,0xa2,0x92,0xa0,0x9e,0xd5,0xe9,0xa9,0xca,0x7c,0x85,0x44,0x4f,0xa4,0x48,0xb4,0x11,0x37,0xa0,0x3b,0xef,0xb5,0xe8,0x8b,0x6e,0xc2,0x85,0xa6,0x9,0x1e,0x7d,0x56,0x35,0xb9,0xb4,0x40,0x83,0x89,0x55,0xe7,0x68,0xfd,0x74,0x89,0xb,0x8e,0x0,0xde,0xbe,0x58,0x72,0x82,0x19,0xe5,0xdf,0x5d,0xa3,0xe8,0xf3,0x4c,0xc2,0x82,0xcf,0x5,0x7a,0x78,0xaa,0x85,0x5c,0x8e,0x34,0x57,0x35,0xdb,0xd6,0xa5,0x15,0x6e,0x75,0xc,0xe7,0xb6,0xba,0xb7,0xb6,0xe5,0x5e,0x48,0xe4,0x72,0x95,0xd3,0x87,0x55,0x3,0x6e,0x65,0xcf,0xbd,0x8,0x25,0x6c,0x7f,0xf8,0xb4,0xf5,0xf6,0x7a,0x6b,0x47,0x4b,0xd6,0xb9,0x86,0x94,0xbb,0xcc,0x2a,0x5c,0x47,0x49,0xb4,0x3a,0xc8,0x6b,0x2f,0x51,0x6e,0x69,0x7d,0x40,0x31,0x49,0xc6,0x13,0x85,0x21,0xce,0xe4,0x80,0x6,0x83,0xe1,0x2,0xde,0x76,0x81,0xc1,0x60,0x30,0x3c,0x27,0x2,0x30,0x95,0x3b,0xbf,0x7c,0xd1,0x1b,0x97,0xc8,0x2d,0xb5,0xe5,0x4e,0x71,0x46,0x46,0x4c,0x8b,0xde,0x29,0x16,0x5b,0x90,0xe6,0xf3,0x2d,0x4b,0x19,0xca,0xaa,0x41,0x73,0x3a,0x9f,0xe0,0x3,0x91,0x37,0xcb,0x4c,0xb9,0x46,0xf3,0x74,0x26,0xf2,0x2a,0x27,0x6e,0xf1,0xed,0xa8,0xb4,0x82,0x9,0x19,0x9,0x97,0x77,0x6c,0x15,0x95,0x16,0x62,0x21,0xd4,0x68,0xb0,0x5a,0x54,0x39,0xe2,0x39,0x9b,0x2a,0xb3,0x55,0x4d,0xc9,0x43,0x56,0xa4,0xc9,0xd0,0xb1,0xcc,0x33,0xbc,0xa3,0xb6,0xe1,0x61,0xd8,0x60,0x99,0x67,0xb5,0xde,0x2e,0x4c,0x42,0x11,0xa1,0x19,0xa8,0x39,0x57,0x32,0xf7,0x7c,0xe0,0x90,0xfa,0xc0,0xe5,0x1a,0xa5,0xe9,0xb8,0x58,0xce,0xbc,0x5a,0xd8,0xc4,0x5e,0x2c,0xd6,0xa8,0x5c,0xdd,0x55,0x8f,0xcb,0xa2,0x76,0x2c,0x20,0x13,0x1,0x36,0x9d,0x10,0xe7,0x59,0x87,0x62,0xc9,0x79,0x8a,0xcb,0x42,0x6a,0xba,0xc4,0xfb,0xc9,0x79,0xb6,0x4f,0x2f,0x98,0xa6,0x93,0x5a,0xa4,0xbb,0xae,0x27,0x7b,0x1a,0x40,0x16,0x6b,0x2e,0xd7,0x10,0xa5,0x5d,0xd7,0xf5,0xd8,0xee,0x6e,0xd1,0xf,0xa3,0xda,0x6b,0xe1,0x1c,0x8e,0xfb,0x7b,0xec,0x1f,0x5e,0xe1,0xf8,0x78,0x4f,0x65,0x1a,0xfb,0x7,0xc4,0x65,0x26,0x3b,0xee,0x74,0xc2,0x74,0x3e,0x62,0x3a,0x9f,0x28,0xa7,0x91,0x33,0x7,0x97,0x79,0xd2,0x36,0xdf,0x14,0x89,0x0,0x8,0xa1,0xa3,0x42,0x14,0x2e,0xd3,0xa0,0x12,0x92,0x59,0x73,0x22,0x45,0xc5,0x48,0xfb,0x2e,0x21,0xe5,0x8c,0x71,0xbb,0x63,0x9b,0x1b,0xd,0xbd,0x21,0x4,0x2c,0x13,0x15,0x97,0x84,0xd0,0xf1,0xbe,0xcc,0xe5,0xb0,0x64,0x4b,0xb4,0x1c,0xaf,0xb5,0x2d,0x3d,0x74,0x1d,0x37,0x8b,0x92,0x95,0xb0,0xe3,0x52,0x18,0x79,0xbc,0x90,0xc4,0xd2,0x70,0x48,0xaa,0x45,0xa7,0xf9,0x84,0xe0,0xa6,0x4f,0x51,0xf5,0x94,0x5c,0xcc,0x3a,0xeb,0x2f,0xeb,0xf0,0x5d,0x5a,0x54,0x5b,0x5b,0x5b,0x11,0x99,0xb4,0x3,0xa7,0x7c,0xfe,0xd9,0xa,0x40,0xc,0x1f,0x11,0xd4,0x66,0xb9,0x22,0x1,0x55,0xed,0x5d,0x1d,0xf3,0xa4,0x9c,0x2e,0xc5,0x20,0x14,0x55,0x90,0x5b,0x61,0x50,0xce,0xcd,0xf3,0xd1,0x63,0xda,0xe3,0x3d,0xd5,0xca,0x58,0xbe,0xe9,0xa1,0x56,0xd7,0x8e,0x48,0xfd,0x7e,0x18,0x11,0x44,0x49,0x8d,0xac,0x37,0x5f,0xf4,0x65,0x58,0x39,0x58,0x93,0x8f,0x80,0x43,0xe4,0xc7,0x39,0x56,0x84,0x8b,0x12,0xb9,0x2e,0xfc,0x48,0x31,0x96,0x16,0x59,0x56,0xa0,0xf5,0xc3,0x88,0x61,0xdc,0x56,0x16,0x57,0xba,0xd9,0xb1,0x70,0x26,0x9f,0x96,0x5f,0xc9,0xd,0x30,0xfe,0x3d,0x51,0x7f,0xcb,0xba,0x4d,0xb9,0xab,0xa5,0xf1,0xd7,0x73,0x4b,0xb9,0xe4,0xe1,0x49,0x56,0x6b,0xd7,0xf7,0x7c,0x3,0xa7,0xd7,0xb5,0xaa,0xeb,0x7a,0x2a,0xe5,0xf0,0x1e,0x3e,0xd0,0xdf,0xbb,0xbe,0x47,0xf0,0xa1,0x6c,0x3,0x88,0x68,0xa3,0xd6,0x77,0x26,0xd2,0xe4,0xe6,0x14,0xdf,0x7c,0xf3,0x41,0x72,0xd,0xcb,0xf9,0x57,0xf6,0x99,0x3,0x78,0xbf,0x52,0x93,0x71,0x21,0x11,0xbd,0x12,0xab,0xb2,0xce,0xd2,0xda,0x4d,0xc5,0x20,0x5e,0x72,0xff,0x50,0xdc,0x1,0x81,0xff,0x9b,0x55,0x31,0xe9,0xca,0x39,0x90,0x49,0x4a,0xb2,0xf3,0x12,0x11,0x29,0x6b,0xaa,0x1c,0xb,0xb2,0x3e,0xae,0x8f,0x3d,0x59,0xc3,0x91,0xa1,0xe7,0xfe,0xa2,0xe9,0xcb,0x4d,0x7b,0x6f,0xbd,0xb6,0x3a,0xbd,0x91,0xa2,0x81,0xab,0x97,0xe4,0x5f,0x4d,0x68,0x55,0x4f,0x59,0x8,0x2f,0x77,0xe5,0x67,0x58,0x11,0x8b,0x68,0x9,0xc2,0x8a,0x80,0xbc,0xcc,0xd2,0xbb,0x7c,0x8e,0xfa,0x71,0xeb,0xd2,0x8d,0xb6,0xe7,0xa3,0xbd,0xce,0xca,0xd5,0x9f,0x71,0x85,0xfe,0xab,0xdf,0x42,0xfd,0xfa,0xf9,0x22,0x7f,0x10,0x57,0x48,0xc4,0x27,0xc8,0x3f,0xdd,0x38,0x53,0x0,0x1a,0xc,0x6,0x23,0x0,0xd,0x6,0x83,0xe1,0x99,0x13,0x80,0x9c,0xd,0xe3,0xbc,0x5e,0x94,0xeb,0xd,0x77,0x57,0x5f,0x1b,0x16,0xe3,0x9,0xb4,0x3c,0x21,0xb2,0x6d,0xb,0x4c,0xca,0x2c,0xaa,0xbe,0x90,0xc1,0x8d,0x54,0x84,0x89,0x49,0xb6,0x19,0xe7,0xe3,0x81,0x9a,0x56,0x63,0x54,0xa2,0xb,0xa0,0xe6,0xc4,0xbe,0x1f,0xd0,0x75,0x3,0x2b,0x24,0x6a,0xeb,0xa5,0xd7,0xcc,0x40,0xb1,0x77,0x95,0x72,0xd,0x19,0xf0,0xa2,0xe6,0x19,0x8a,0x3a,0x2c,0xc6,0x59,0xb7,0xc7,0x87,0xe,0x9b,0xdd,0xd,0xba,0x61,0xc4,0xcd,0x8b,0xd7,0x54,0x4d,0x76,0x3e,0xee,0x71,0x3a,0xee,0x89,0x1c,0x64,0x4b,0x73,0xae,0x2c,0x71,0xf2,0xbf,0xb8,0x2c,0x38,0x3c,0xdc,0x13,0x1,0x9,0x6e,0xa3,0x94,0xf6,0x5b,0x6d,0x3e,0x6e,0x6d,0x9f,0x62,0x51,0x2b,0xb9,0x5b,0xa9,0x69,0xf0,0xa5,0xd6,0x46,0x1a,0x1e,0x37,0x37,0x77,0x44,0x10,0xb2,0xbd,0x57,0x8,0x29,0x19,0xf4,0x28,0xf7,0xb0,0x1e,0xd2,0x89,0x28,0x8c,0xcb,0x82,0x65,0x99,0x79,0x40,0x4d,0x9a,0xa1,0x8,0x6d,0x73,0xf6,0xe8,0x86,0x1,0x21,0x74,0xd8,0xec,0x6e,0x49,0x49,0x97,0x12,0x96,0x79,0xc2,0xfe,0xfe,0x15,0xa6,0xd3,0x11,0xf,0xef,0x7d,0xf,0xf7,0xef,0x7e,0x4f,0x49,0xd0,0xe3,0xe1,0x11,0xf3,0x44,0xed,0xc4,0xa7,0xc3,0x23,0xe,0xfb,0x7b,0x1a,0x6c,0x7d,0x40,0x37,0x70,0x53,0xe5,0xb8,0xe5,0x16,0x4d,0xb2,0x84,0x53,0x53,0x30,0xd,0x87,0x52,0xa4,0x52,0xef,0xbf,0x10,0x7a,0xb2,0x87,0xb1,0x22,0x25,0x2e,0x54,0xe8,0xe2,0x1c,0x30,0x6c,0xb6,0xf0,0xdc,0x7a,0x49,0xa,0x40,0x5f,0xd4,0x94,0x9a,0x23,0x55,0x8a,0x54,0x12,0x2b,0x52,0x28,0xf,0xd2,0xb1,0x45,0x2f,0x61,0xd8,0x6c,0x11,0x63,0x44,0x3f,0x8c,0xd8,0x6c,0x6f,0xb8,0x75,0x34,0xe8,0xbe,0x76,0xbc,0x6d,0xce,0x79,0x25,0xf3,0x24,0xbb,0x51,0x42,0xf2,0x93,0x7e,0x46,0xbe,0x1a,0x46,0xcb,0x31,0xaf,0xd9,0x69,0x8e,0x33,0xae,0x5c,0x35,0x7c,0xa2,0xb5,0xce,0x6b,0xb3,0xa5,0x5b,0x15,0x1d,0x18,0xc,0x1f,0xcd,0x6a,0xdf,0x12,0x8,0x15,0xf9,0x21,0x4a,0x62,0x21,0xe1,0xd4,0x1e,0x5f,0x13,0x77,0x92,0x83,0xb9,0x22,0x1d,0x72,0x2e,0x59,0x81,0x59,0x48,0x1d,0x25,0x9,0x93,0xae,0x47,0xb2,0x9e,0xe7,0x94,0x9b,0x73,0x88,0xe4,0xc0,0xca,0xcd,0x1b,0xfb,0x94,0xe2,0x45,0x0,0x0,0x19,0x99,0x49,0x44,0x41,0x54,0x21,0x1c,0xb5,0xe4,0xc1,0x95,0x73,0x90,0xab,0x6c,0xa0,0x89,0xf3,0x4b,0xe5,0x3b,0x27,0xff,0x2e,0xf9,0xb4,0xb5,0x25,0x58,0x94,0x7d,0x4a,0x6,0xfa,0xda,0xd2,0xea,0x11,0xfa,0x81,0xd7,0x2c,0x3a,0x77,0x81,0x9,0x7f,0xf9,0xce,0x8a,0x42,0x52,0x54,0xe0,0x42,0x14,0x66,0x2e,0x48,0xc9,0x52,0x24,0xc4,0xaa,0xc4,0x9c,0x93,0x92,0x9e,0x72,0xae,0x68,0xd7,0xfd,0xa0,0xaa,0x64,0x27,0xe7,0xb4,0x7a,0xd8,0xe2,0x9b,0x5a,0xb2,0x2e,0x69,0x4b,0x33,0xa8,0xe9,0x5d,0x22,0xb,0x68,0xff,0x41,0x95,0xdf,0x72,0xee,0x85,0x10,0x93,0xfc,0x3a,0x4a,0xf8,0x1,0x8,0x21,0x5c,0x21,0xe3,0x62,0xb1,0xd8,0x56,0x4a,0x46,0xde,0x98,0xe6,0xbc,0x55,0x3e,0x9b,0xa4,0x9f,0xbd,0xb4,0xa0,0xeb,0x75,0x81,0xae,0x75,0x25,0x1b,0x55,0xaf,0xb,0xaa,0x3,0x2f,0xe9,0x39,0x52,0x1e,0x5b,0xab,0xef,0x1c,0x2e,0x5a,0x6b,0x38,0x4f,0xb7,0x21,0xb2,0xea,0x8b,0x95,0xbc,0x2e,0xd2,0xc8,0x4f,0xf2,0x7a,0x2d,0x39,0x96,0xaf,0x13,0x66,0x2b,0xd2,0x70,0xad,0xf8,0xcb,0xef,0xf3,0x7f,0xf5,0x63,0x9c,0x3e,0xb6,0xbd,0xf6,0xfa,0xb0,0x54,0xdb,0xd3,0x44,0x63,0xbe,0xfe,0x13,0x77,0x85,0x35,0xcc,0x57,0x48,0xc0,0xd5,0x2f,0x1a,0xf5,0x67,0x30,0x18,0xae,0xc1,0x2c,0xc0,0x6,0x83,0xc1,0xf0,0xc,0x49,0xc0,0xcc,0xf6,0x2a,0xb9,0x68,0x16,0x55,0x20,0xd,0x3c,0x9,0xf0,0xa2,0x0,0x28,0x4,0x1c,0x52,0x42,0xca,0x11,0x8e,0x89,0x2f,0xe7,0x3b,0xb5,0x81,0x66,0x57,0x48,0x94,0x25,0x2d,0x6a,0x1b,0xde,0x6c,0x6f,0x70,0x3a,0x3e,0xc2,0x7,0xaf,0xd6,0xab,0xdd,0xcd,0xb,0x55,0x52,0x84,0xae,0x55,0x29,0x50,0x80,0xfa,0x84,0x2e,0x74,0x6c,0x3b,0x9e,0xb5,0x40,0x43,0x14,0x10,0x1a,0x4e,0xcf,0x83,0xa4,0x34,0x45,0x4a,0x3,0xb0,0x58,0x63,0x29,0xef,0xa8,0xc7,0xee,0xf6,0x85,0xaa,0x21,0x44,0x25,0xb2,0x2c,0x13,0xfa,0x61,0xc4,0x7c,0x3e,0xa1,0x1f,0x46,0x55,0x6d,0x6c,0xb6,0x37,0xc8,0x39,0xe3,0x8e,0xdb,0x75,0x87,0x71,0x43,0xf6,0xdb,0x79,0xe2,0x61,0x2e,0x20,0xc5,0xca,0xa6,0x54,0xf,0x49,0x42,0x5e,0x49,0x96,0x1c,0x84,0xd0,0xc,0x38,0x9f,0x1e,0x34,0x9c,0x7d,0xdc,0xec,0xb0,0x4c,0x53,0x95,0xd7,0x17,0x91,0x42,0x42,0xd7,0x89,0x5,0xed,0xac,0x59,0x52,0xa4,0x44,0x8b,0x55,0x3,0x70,0xd4,0x36,0xc8,0x54,0xb5,0xe,0xf3,0x74,0xc5,0x3,0x38,0x37,0x6f,0x6e,0x76,0x8,0x81,0x54,0x21,0xcb,0x3c,0x3,0xdb,0x1d,0xa6,0xf3,0x9,0xe3,0x76,0x87,0xd3,0x61,0x8f,0xf3,0xf1,0x40,0x59,0x7a,0x5c,0xc2,0x22,0xed,0xc8,0x3,0xef,0xe7,0x65,0x59,0x30,0x6c,0xb6,0x6a,0xd9,0xd3,0x86,0xdf,0x79,0xe6,0x66,0x5d,0x26,0xd7,0x78,0x92,0x90,0x6c,0xc2,0x92,0x3b,0xb8,0x54,0x9f,0xab,0xe7,0x7d,0x3c,0xe0,0xe6,0xae,0xd8,0x85,0xe5,0x73,0xe9,0xfa,0x41,0xf7,0x9f,0x90,0xce,0x6a,0xeb,0x76,0x2b,0x5,0x4a,0xd7,0x63,0xdc,0x6c,0x11,0xe6,0xe,0x2f,0x3f,0xf9,0xa9,0xca,0x5a,0x38,0x14,0x92,0xd5,0x95,0xe3,0x80,0x94,0x7e,0x5d,0xa3,0x56,0x4d,0x31,0x69,0xd6,0x99,0x14,0x18,0xa4,0x9c,0xb8,0xe0,0xb7,0x62,0xc4,0x99,0xec,0x93,0x3c,0xb2,0x4a,0x24,0x78,0x31,0x49,0xd5,0xad,0x94,0x29,0x65,0x55,0x23,0x19,0xc,0x1f,0xc5,0x1a,0x4f,0x2a,0xb1,0x7c,0xf5,0xdf,0x68,0x5d,0x72,0xd,0xf1,0xa6,0xb9,0x7e,0xd2,0x7c,0xb,0xa7,0xe4,0x5c,0xf9,0xbd,0xcc,0x56,0x5f,0x65,0x5c,0xf4,0x66,0x88,0xb6,0x65,0x6b,0x1,0x84,0x57,0x26,0x42,0x96,0x28,0xfa,0xae,0x42,0x15,0x7c,0x65,0x5b,0x8a,0x5,0x59,0x88,0x20,0x21,0xe1,0x72,0xd5,0x48,0xf,0xe7,0xab,0x73,0x58,0x59,0x13,0xca,0x77,0xdb,0xa9,0xb2,0x3a,0xa5,0xc4,0x16,0x63,0xda,0x17,0x39,0x67,0xcd,0xf7,0x43,0xca,0xda,0x52,0x5b,0x97,0x57,0xd1,0x79,0x26,0x20,0x54,0xd,0xc9,0x92,0x2f,0x28,0x65,0x1c,0xce,0x39,0x2a,0x28,0xaa,0x14,0xf1,0x75,0xab,0x6b,0x21,0x53,0xe9,0x3d,0x6b,0xeb,0xbc,0xc4,0x65,0x70,0xc4,0x45,0xf6,0x59,0x2d,0xb9,0xa4,0xb2,0xa7,0xe2,0xa3,0xcc,0xa,0x69,0xf9,0x9d,0x28,0x37,0xba,0x72,0x54,0x5,0xa7,0x66,0xf0,0xf1,0x4e,0x73,0x80,0xae,0x75,0xb5,0xd2,0x59,0x9a,0x5b,0xea,0xc8,0xe,0xc9,0x19,0x5c,0xb8,0x78,0x8b,0x83,0x5a,0x11,0x78,0x9f,0xe5,0x18,0xab,0xcf,0xce,0xb1,0x92,0xd9,0x35,0xd6,0x6b,0xb9,0xf1,0x23,0x59,0xbc,0x5a,0xce,0x95,0xab,0xec,0x54,0x39,0x5f,0xca,0x3a,0xb8,0x6a,0xdd,0x2d,0x2d,0xbb,0x25,0x8a,0x24,0xa3,0xd8,0x8e,0xe9,0x86,0x62,0x7e,0xc2,0xba,0x9a,0x71,0xe1,0xa0,0xbd,0xd6,0x1,0xf2,0x3e,0xc4,0x5a,0x5b,0x94,0x91,0x1b,0xd2,0xaf,0x7d,0x9a,0xb5,0x6d,0x37,0x5f,0x3c,0xee,0x29,0x9a,0x4e,0x6e,0x42,0x15,0xe2,0xf2,0x7d,0x1f,0xfc,0x4,0x29,0x99,0xcb,0x77,0x2,0xab,0x66,0x65,0x25,0x41,0xcb,0x76,0x95,0xfd,0x21,0xe5,0x24,0xab,0x6,0xe2,0xea,0x55,0x9e,0xd8,0x4d,0x6,0x83,0xc1,0x8,0x40,0x83,0xc1,0x60,0x30,0x3c,0xb3,0xf1,0x50,0x7,0x7,0x24,0xa8,0xba,0x0,0x6c,0x71,0x15,0x52,0xa,0x72,0xd7,0x1f,0xe0,0xcc,0x1e,0x69,0x87,0xe4,0xc2,0x7,0xce,0x9c,0x13,0xa2,0x26,0xa7,0xc8,0xcf,0xc5,0x76,0x5e,0x4,0x4c,0xe7,0x13,0x42,0x37,0xe8,0x60,0xa0,0x3,0x0,0xb7,0xea,0x8a,0xda,0x24,0xf4,0xbd,0xe,0x6e,0x92,0xff,0x24,0x4a,0x2b,0x9,0x77,0x2f,0x2a,0x92,0xa4,0xf6,0x24,0x6a,0x8e,0x1d,0x54,0xfd,0x51,0x2b,0x7,0x9d,0x77,0x18,0x86,0xd,0x4e,0x31,0x62,0x18,0x37,0x4d,0x3b,0xa3,0xd3,0x42,0x8b,0xc0,0x79,0x7f,0x1d,0x97,0x59,0x50,0x8e,0xe1,0x82,0x33,0x9c,0x1b,0x1,0xe7,0x58,0xb1,0x56,0x82,0xe4,0x7b,0x56,0xc5,0x49,0x59,0x87,0xd8,0x4b,0xc1,0x4d,0x8b,0x92,0xa9,0x27,0xfb,0x78,0x59,0x26,0x8c,0x9b,0xad,0x36,0x53,0x2,0x67,0xdc,0xbe,0xfc,0x4,0xce,0xc7,0x3d,0xa9,0x20,0x7b,0xda,0x3f,0xd4,0x6a,0x99,0x2b,0xfb,0x6b,0x56,0xa5,0xc6,0x12,0x17,0x55,0x90,0xc8,0x90,0x27,0xa,0x46,0x51,0xbd,0x65,0x54,0x4d,0xc2,0x39,0xc3,0xb3,0x5a,0xae,0x1f,0x46,0x8c,0x9b,0x1d,0xab,0x2f,0x88,0x18,0xdb,0xa0,0xd8,0xb0,0x3c,0xf,0x8b,0x92,0xf3,0x27,0xaa,0x3a,0x64,0xa0,0x1f,0x6,0x25,0x80,0x25,0x5b,0x6b,0x18,0x37,0x17,0xc3,0xb1,0x7e,0x3e,0xce,0xc3,0xf9,0x32,0xc0,0x48,0x46,0x97,0x58,0xe6,0xa8,0x4,0xe5,0x84,0x71,0xb3,0xa3,0x36,0xd0,0x7e,0x20,0xb,0x2f,0x37,0x4d,0x7a,0x5f,0xb2,0xbf,0x74,0x90,0xcd,0xd0,0xc,0x43,0x19,0xa6,0xc7,0xed,0xd,0x52,0xba,0xc7,0xcd,0xdd,0x4b,0x4c,0xe7,0x23,0x7d,0x3e,0x1d,0x67,0xd,0xfa,0x4e,0xb7,0x49,0x4a,0x4,0x8a,0x52,0xd3,0x69,0x93,0x65,0x93,0x71,0x96,0xd7,0x3,0x17,0x1a,0x35,0x49,0xae,0x6c,0x66,0x97,0x39,0x50,0xd5,0x18,0xa5,0xc4,0x85,0x6b,0xed,0x69,0x6,0xc3,0xf7,0x19,0xf,0xaf,0xde,0x29,0xea,0xb6,0xc6,0xf6,0x8b,0x8b,0xe8,0x86,0xfa,0xef,0x75,0x1b,0xab,0xac,0xf,0x29,0xe5,0x92,0xff,0x57,0xa9,0xb4,0xea,0xe7,0x90,0x1b,0x0,0x8d,0xe4,0x90,0x89,0xb2,0x3a,0x73,0x50,0xc8,0x3f,0x7,0xce,0x8e,0xad,0x88,0x7a,0x25,0xda,0xf5,0x7b,0x17,0x95,0x0,0x71,0x9c,0xe3,0xe9,0xaa,0xf7,0x21,0x99,0x81,0x62,0x8d,0x2d,0xaa,0xbf,0xdc,0xa8,0x2,0x1,0xe8,0x8d,0x10,0x21,0x2a,0xf5,0x66,0x92,0x73,0xc8,0x5c,0x78,0x54,0x3f,0x5f,0x8,0x1d,0x96,0x65,0x5a,0xb5,0xa7,0x56,0xd9,0xb7,0xc1,0x6b,0x3c,0x46,0x4d,0xaa,0xd2,0xeb,0x27,0xbd,0xc9,0x95,0xa5,0x25,0x5e,0xf7,0x33,0x4a,0x26,0xa0,0x2b,0x2d,0xba,0x50,0xc5,0x60,0x50,0xa5,0x23,0x29,0x9,0x81,0x94,0xaa,0xc2,0x22,0x39,0xf7,0xf1,0x36,0x36,0xc5,0x53,0xbc,0x16,0x79,0x2e,0x62,0xa9,0xb,0xbd,0xbc,0x27,0xe5,0xa3,0x14,0x4b,0x49,0xc9,0x89,0xa8,0xf9,0x96,0xc8,0x2d,0xee,0x72,0x23,0x2b,0x65,0x38,0x5f,0x65,0xf7,0xa1,0x7c,0x2e,0x41,0xae,0x11,0xc4,0x92,0xeb,0xb2,0xbe,0xb7,0x42,0x4e,0x39,0x7d,0x9d,0xb6,0xd8,0xe2,0x72,0xcd,0x75,0xb5,0xd2,0xf,0xd5,0x73,0x5c,0xcd,0xe5,0x43,0x69,0x16,0xd6,0x3f,0xaf,0xf2,0xf0,0xf2,0x7,0x15,0x72,0x5c,0x6a,0xf4,0x1c,0x2e,0xed,0xb3,0x45,0xa0,0x58,0xde,0x67,0xcb,0xda,0x61,0xed,0xef,0xbd,0x24,0xf2,0xdc,0x7,0x13,0x7e,0x97,0xff,0x7e,0x85,0xd4,0xd3,0x6d,0x4a,0xab,0x9f,0xb9,0x2b,0x8f,0xbf,0xde,0x88,0x8c,0x6b,0xb4,0xa5,0x9d,0xa3,0xc,0x6,0x83,0x11,0x80,0x6,0x83,0xc1,0xf0,0x7c,0x51,0xdb,0x7a,0xca,0x85,0x77,0x6a,0xd4,0x56,0x60,0xbb,0xa4,0x83,0x47,0x2d,0x6d,0x92,0x50,0xf2,0x7a,0xd8,0xf0,0x8e,0xac,0xa9,0x3e,0x74,0x15,0x1,0x25,0x83,0x1e,0x65,0xbf,0x2d,0xd3,0xa4,0x84,0x88,0xe7,0x1c,0xa4,0xcd,0xf6,0x46,0xb,0x38,0x34,0xb3,0x2d,0x65,0xc0,0x17,0xc5,0x81,0x10,0x89,0x34,0xf8,0x24,0x26,0x86,0x50,0x6,0x42,0x19,0x56,0x39,0x33,0x90,0x48,0xc9,0x45,0x6d,0xaf,0xf2,0xb8,0xed,0xee,0x16,0xe7,0xd3,0x1,0x31,0x46,0x8c,0x5d,0xaf,0x59,0x48,0xe0,0xdc,0x28,0x1f,0x3a,0x1e,0xe,0x69,0xe0,0x1a,0xb7,0x5b,0xf8,0xe0,0x59,0xa5,0xd7,0xb1,0x92,0x86,0xf6,0x55,0x17,0x7a,0x6e,0xbf,0x2d,0x2d,0x87,0x72,0x51,0x9e,0x16,0x54,0xf6,0xb9,0x32,0xd0,0x49,0x66,0xa2,0x77,0x1e,0x61,0xdc,0x70,0x86,0x15,0xa9,0xf9,0xfa,0x61,0xe4,0xa1,0xcf,0x57,0xa,0x9b,0x80,0xd4,0xb4,0x28,0x66,0x7d,0x4f,0xaa,0x5a,0x70,0xd4,0xb8,0x8c,0xaa,0x91,0x91,0x2c,0x60,0x3c,0x8c,0xe7,0x84,0x7e,0xdc,0xc2,0x87,0x19,0xbe,0xa3,0xd7,0xca,0x33,0x11,0x91,0xde,0x7b,0xcc,0x81,0xac,0x66,0xcb,0x3c,0x61,0x7b,0x73,0x87,0xe3,0xfe,0x1,0xe3,0x66,0xc7,0xaf,0xc5,0xa5,0x21,0xa1,0x53,0x82,0xb3,0xeb,0x7,0xb2,0x93,0x31,0x49,0x2a,0xa,0x4b,0x55,0xff,0x71,0xe,0x22,0x29,0x42,0x7d,0xa5,0xc2,0x89,0x6c,0x6f,0x6,0xba,0xae,0xa3,0x90,0xfc,0x7e,0x24,0xd2,0x96,0x87,0x43,0x52,0x70,0x72,0x91,0x47,0xa0,0xf6,0xe0,0x25,0x2e,0xe8,0xfb,0x91,0xf7,0x3,0x34,0xef,0x4b,0x14,0xa7,0x3e,0x4,0x8c,0x9b,0x1d,0xe6,0xe9,0x4c,0x61,0xfb,0x9c,0x5,0x46,0x56,0xc1,0xc,0x38,0x56,0xff,0x0,0x55,0x2e,0x58,0x95,0xcf,0x54,0xb5,0x98,0xa2,0x22,0x1d,0x94,0xdc,0xab,0x7,0xcd,0x6b,0x93,0x1a,0xf,0xb8,0xb9,0xb2,0x80,0xd7,0x43,0x7c,0x4e,0xd1,0xd4,0x15,0x86,0x8f,0x14,0xfb,0x57,0xef,0x60,0x9e,0x27,0xf4,0xe3,0xe6,0x62,0xd0,0x57,0xc5,0x5e,0xd5,0x82,0x5d,0x2b,0x1,0xeb,0xf3,0x84,0xac,0xf5,0x35,0x99,0x56,0xff,0xae,0x9c,0x3b,0x44,0xdd,0xe7,0xb9,0x11,0x58,0x88,0xb2,0xf2,0xdc,0xa9,0x22,0xd2,0x73,0x53,0xe8,0xd1,0x2a,0x6,0x57,0xe7,0xaa,0x95,0x6d,0x53,0x15,0x87,0xf5,0x79,0x8c,0x89,0xae,0x94,0xbd,0x7e,0x1b,0x4b,0x6e,0x28,0x91,0x8f,0xcb,0x3c,0xb7,0x44,0x49,0xd5,0x2,0xae,0x96,0x7d,0xb9,0xc9,0xc5,0x6b,0xa8,0xf3,0x81,0x1e,0xcd,0x99,0x7a,0x75,0x43,0x78,0x4a,0xb,0x9f,0x62,0x5c,0x51,0xcf,0xcb,0x6b,0xd6,0xf1,0xc,0x8d,0xc2,0x92,0xcf,0x3b,0x7c,0x1e,0x8b,0x52,0x7c,0x22,0x96,0x62,0xbe,0x79,0xa3,0x16,0x6b,0x8e,0xc7,0x70,0x4e,0xf6,0x8f,0xa8,0x8,0xa3,0xee,0xd3,0x9a,0xe4,0x71,0xde,0x21,0x47,0x20,0xc6,0x99,0xcf,0x8d,0x45,0xe1,0x99,0x12,0xc7,0x66,0x50,0x43,0x7,0x3c,0xbf,0x7,0x79,0x1e,0xef,0x3b,0xce,0x20,0x2c,0xfb,0x9d,0x9a,0xe0,0xe5,0xf9,0x9d,0xbe,0x57,0xb1,0xf2,0x92,0xf5,0xb9,0x34,0x31,0x97,0x62,0x31,0xdf,0xac,0xa9,0xa8,0xb2,0x5d,0xaf,0x5a,0x73,0xf3,0xda,0x42,0xeb,0xae,0x84,0xe0,0xad,0x54,0x7b,0xa2,0x34,0xc5,0xb5,0x78,0xbb,0xcb,0x26,0xdc,0xf7,0x2b,0xf6,0x6d,0x9e,0x23,0x3f,0x41,0xce,0xb9,0xf7,0xe1,0x12,0xaf,0xfd,0x39,0x7f,0xc0,0xef,0xe7,0x6b,0x44,0x9c,0x7b,0x9a,0xd4,0x6b,0xfe,0xed,0xda,0x13,0x65,0xd5,0x26,0xb6,0x4d,0x27,0xae,0x79,0x1e,0xf7,0x64,0x41,0x90,0xc1,0x60,0x30,0x18,0x1,0x68,0x30,0x18,0xc,0xcf,0xe,0x17,0x99,0x65,0xb9,0xbe,0x63,0xec,0x9a,0x3b,0xf1,0xa2,0x40,0xa0,0xac,0xa7,0x62,0x63,0xa9,0xed,0x5b,0x91,0xf3,0x7f,0x68,0x20,0xe1,0x4b,0xd1,0x4,0xd,0xb,0x77,0x0,0xdc,0x30,0x2,0x53,0x46,0xd7,0xdf,0x22,0x2e,0x13,0x11,0x50,0xd3,0x19,0xfd,0x30,0x36,0x25,0xc,0xce,0xd3,0xc0,0x94,0x41,0xce,0x9f,0x92,0x71,0x4,0xcd,0xd4,0x3,0xca,0xb0,0x21,0x43,0x9a,0x77,0x1e,0x39,0x46,0xbd,0xdb,0xbe,0xcc,0x33,0x42,0x47,0xa7,0x2f,0xc9,0xab,0xa3,0xfc,0x39,0xcf,0xa4,0x63,0xd2,0x86,0x58,0xb1,0xa6,0x16,0x8b,0x2f,0x91,0x5e,0x5d,0x97,0xd1,0x75,0x83,0x5a,0x8f,0x8b,0xfa,0x2e,0xa1,0x1f,0xfa,0x62,0x51,0x42,0x6e,0x1a,0x8b,0x4b,0x38,0xbe,0x64,0x53,0x51,0x6e,0x9c,0x34,0xec,0xe6,0x94,0xd0,0xf,0x9b,0x62,0x2f,0x66,0xb2,0x2f,0x70,0x9b,0x23,0xbd,0x2f,0x6e,0xdb,0x5c,0x16,0xb8,0x50,0x88,0x4d,0xcd,0xe4,0x72,0x9e,0xed,0xbe,0x34,0xc4,0x4a,0x9e,0x61,0xc9,0x68,0x2c,0x9f,0xa9,0xaa,0x11,0x39,0xc7,0x6f,0x59,0x66,0xb6,0x10,0x7,0xcc,0xf3,0x84,0xed,0x70,0x87,0x18,0x17,0x6c,0xb6,0x37,0x48,0x91,0x72,0xfa,0x32,0x32,0xd0,0x15,0xf5,0x5f,0x8,0x1d,0x62,0x8a,0x8,0xfd,0xa0,0x83,0x7e,0x4d,0x16,0x64,0x40,0x73,0xf9,0x68,0xb8,0x15,0x35,0x26,0xe5,0x1a,0x76,0xdd,0x40,0x4d,0x95,0xcb,0xa2,0xb6,0xeb,0xc8,0xaf,0x35,0x4f,0x27,0x52,0x1,0xf6,0x3,0xed,0x3f,0x69,0xb7,0xe4,0x61,0x5b,0x1a,0x29,0x6b,0x4b,0x15,0x91,0xbf,0x4c,0x4a,0x8a,0x6a,0xc6,0x7b,0x2d,0x40,0x1,0x5c,0xb1,0xfa,0x1,0x8d,0xa2,0x15,0x0,0x7c,0xa5,0x12,0x29,0x6d,0x93,0x97,0x56,0xaf,0xe6,0xbf,0xa2,0x62,0x42,0x4d,0xa0,0x5f,0x69,0x6c,0xb4,0xc1,0xca,0xf0,0xff,0x8,0xe2,0x7c,0xc2,0xe1,0xf1,0x1e,0xbb,0xdb,0x17,0x15,0x3d,0x50,0x29,0x81,0x56,0x24,0x1a,0xa9,0x83,0x51,0x15,0x80,0xb4,0xc7,0x72,0x5b,0x96,0x53,0x2c,0xee,0xf5,0xcd,0x16,0x21,0xfb,0xc5,0x22,0x2a,0x76,0xd6,0xa8,0xb6,0x52,0x77,0xb9,0xd,0x8e,0x8,0x73,0xc9,0xb1,0x43,0x5e,0x11,0x7d,0x55,0xe6,0x6a,0x7d,0xd3,0x5,0x58,0xe5,0xb1,0xf2,0xf7,0xaf,0xb4,0x1c,0x17,0x12,0x50,0x1f,0xef,0x43,0x45,0x4c,0x81,0x33,0xfc,0xaa,0x8c,0x5b,0x26,0xc5,0x68,0x9d,0x28,0x48,0x39,0xc3,0xe7,0x8a,0xdc,0x3,0xa,0xf9,0x57,0xf1,0x37,0xae,0xca,0xd5,0xab,0xdb,0xc7,0x65,0xfd,0xd0,0xed,0x51,0xcb,0x6c,0x2,0xbd,0x75,0xb7,0x22,0xc,0x8b,0x1d,0x3b,0xb2,0x32,0x2f,0x56,0x59,0xaf,0xa5,0xa8,0x8,0xbc,0xae,0x71,0x61,0x52,0x64,0xa2,0x8b,0x15,0x80,0x72,0x5e,0xa0,0x1b,0x64,0x1e,0x70,0x59,0x6f,0xca,0x38,0x2e,0x95,0xa0,0x42,0x2d,0x20,0xe7,0xa5,0xdc,0x10,0x11,0xc5,0xa6,0x36,0x24,0x57,0xe5,0x1b,0x57,0xd6,0x39,0x21,0xe,0x1b,0x65,0xa9,0x8a,0xfd,0x1d,0x3b,0x51,0xaf,0x37,0xd2,0x5e,0x6b,0xc6,0x2d,0xa,0xd4,0x9a,0xc8,0x6b,0x89,0x40,0x7d,0xee,0x2b,0x79,0x7e,0xcd,0xcf,0x24,0x93,0xb7,0x3a,0x87,0xac,0x5b,0x75,0xf3,0x35,0x36,0xd0,0x5d,0xe1,0xe1,0x6a,0xfe,0x2d,0x7f,0x8,0x42,0xf0,0xfd,0x8,0xbf,0x27,0xd9,0xc6,0x15,0xe1,0xb7,0x56,0xd5,0x5e,0xdd,0xa8,0xf5,0x4b,0xe7,0xa6,0x5b,0x78,0xbd,0x7f,0x70,0x41,0xf0,0x1b,0xc,0x6,0x83,0x11,0x80,0x6,0x83,0xc1,0xf0,0x2c,0xd1,0xc,0x2c,0x4d,0x52,0x74,0x45,0xf4,0x55,0x77,0x94,0x93,0x64,0xfc,0xf1,0x5,0xb9,0x5c,0x3c,0xab,0xe5,0xca,0x3b,0x6e,0x48,0x84,0x12,0x53,0xe0,0x60,0x74,0xf6,0xf9,0x2,0xae,0x28,0xc7,0x86,0x71,0xab,0xc4,0x5c,0xb1,0x13,0x7b,0xb2,0xf0,0xd4,0xc1,0xf3,0xe,0x4a,0x3a,0x8a,0x32,0x44,0xa,0x44,0xc8,0xc6,0x25,0x9c,0x65,0x51,0xa6,0x88,0x12,0xa5,0xd8,0x9e,0x68,0x8b,0x85,0x30,0xc,0x5d,0x57,0x2,0xcf,0xab,0x41,0x23,0xb2,0xbd,0x96,0x6,0x25,0xaf,0xa4,0xe7,0x7a,0xc0,0xcc,0x20,0x7b,0x70,0x51,0x49,0x5c,0x6,0xab,0x97,0x1,0xa8,0x1a,0xd4,0x52,0x46,0xf6,0x65,0xb8,0xcd,0x6c,0xc9,0xa2,0x36,0x5f,0x7,0x8f,0x4e,0xad,0x73,0x32,0xe4,0x4a,0x23,0x31,0xb5,0x5c,0x6,0x6d,0xc8,0xf5,0xc1,0xab,0x6a,0x51,0x94,0x93,0x40,0x42,0x8c,0x35,0x9,0x29,0x6d,0xcf,0x8e,0x6d,0xbc,0x23,0xb5,0x11,0xe7,0xc4,0x7f,0x9e,0x10,0x3c,0x11,0x9a,0x5d,0x3f,0x60,0x3a,0x9f,0xd1,0xf5,0x44,0xe0,0x85,0xae,0x87,0x3,0x30,0x4d,0x67,0x26,0xd2,0x2,0x96,0x65,0x66,0x9b,0x72,0x6d,0xfb,0x2d,0xd9,0x4f,0xae,0xb2,0x6,0xd6,0x81,0xf0,0x8e,0x1b,0x83,0x75,0x9f,0xb0,0x9d,0x77,0xd8,0xee,0x90,0x24,0x73,0x90,0x5b,0x29,0xe3,0x3c,0xa1,0xdb,0xdd,0x54,0xea,0x4a,0x16,0xe9,0x89,0xe5,0x56,0x9a,0x4a,0x9b,0xbc,0xc8,0x8e,0x6d,0xdd,0xb3,0xb6,0x4b,0xa,0x91,0x4c,0xa4,0x4,0x94,0xa0,0x55,0xb5,0x4c,0xa5,0x5a,0xac,0xb,0x5b,0x94,0x58,0x4e,0xb5,0xa2,0xaf,0x28,0x47,0x34,0xd8,0x1e,0x55,0xd6,0x59,0xce,0x57,0x87,0xcf,0x7a,0xc0,0x32,0x18,0x3e,0x4a,0x7c,0xe7,0xeb,0x5f,0xc1,0x66,0x7b,0x83,0x71,0xbb,0x2b,0x56,0x59,0x57,0x15,0x16,0xd5,0xec,0x95,0xb6,0x41,0x15,0xb2,0x46,0x34,0x43,0x6a,0x89,0x6f,0xf2,0xee,0x5a,0x32,0x8e,0xca,0x7a,0x1c,0x62,0x95,0x9b,0x9,0x26,0xf7,0x8a,0x62,0xda,0x37,0xaa,0xd9,0xf6,0x35,0xa1,0xeb,0xbe,0x73,0xc5,0x8a,0x2c,0xeb,0xb0,0xac,0x2d,0x45,0xbd,0x88,0xa2,0xd8,0x5b,0xb7,0x1d,0xe7,0x52,0xc8,0x14,0xe5,0xbb,0x9d,0x13,0x5c,0xf2,0x4a,0xe8,0xa7,0x18,0x11,0xeb,0x22,0x8a,0xea,0xbb,0x4d,0xe7,0xb5,0xa5,0xb1,0x45,0xcf,0xcb,0x5c,0x1a,0x93,0xf9,0x6,0x45,0x6d,0x59,0x76,0x52,0xc8,0x51,0x13,0x63,0x98,0x1b,0xc5,0x74,0x4a,0x11,0xa2,0xd,0x96,0x9c,0xc2,0x35,0xe9,0xd9,0x9e,0xa7,0xf9,0x66,0x4a,0xa5,0x3a,0xd7,0x76,0x5e,0x7d,0x6d,0x57,0x65,0x27,0x16,0xc2,0xc7,0x79,0x8f,0x79,0xa2,0xb5,0x71,0x9e,0x67,0x52,0x17,0x82,0xde,0x97,0xb,0x45,0xcd,0x5f,0x48,0x52,0x5e,0x23,0xe3,0x75,0x82,0x2a,0x57,0x59,0x7d,0x65,0xfd,0xab,0xb6,0x35,0x57,0xa4,0xd3,0x9a,0xc,0x6c,0x3e,0xe0,0x2a,0xb,0x30,0x5f,0xe1,0xd7,0x2e,0x7e,0xef,0x92,0x5f,0xcb,0x1f,0x48,0xa2,0x5d,0xfb,0xf9,0x9a,0x3c,0xab,0x8e,0xe9,0xb,0x96,0xee,0x7d,0x1e,0x77,0xa1,0x62,0x74,0x4d,0x4e,0xdf,0xfa,0x2d,0x7e,0x28,0x42,0x70,0xf5,0xa6,0xe4,0xdb,0xb7,0x56,0x32,0xae,0xff,0x7c,0xf1,0x4e,0xd5,0xfd,0x9b,0x1b,0x72,0xd4,0xc1,0x35,0x2f,0x47,0x25,0x6d,0x67,0x1c,0xf6,0xf7,0x78,0xf5,0xbd,0xef,0xd8,0x42,0x69,0x30,0x18,0x8c,0x0,0x34,0x18,0xc,0x86,0xe7,0xa,0x69,0xb5,0x6d,0x2f,0xa,0x5d,0x95,0xe9,0x96,0xa,0xc1,0xc1,0x6a,0xac,0xdc,0x44,0xf0,0x25,0x48,0x2b,0xad,0x66,0xf1,0xb9,0x62,0xf9,0x71,0x95,0x42,0x42,0x2e,0xe6,0x3,0x93,0x55,0x32,0xbc,0x78,0x51,0x84,0x78,0x87,0xae,0x1b,0x10,0x97,0x42,0xe0,0x25,0x26,0xb4,0x1c,0xd6,0x25,0xe,0x25,0x57,0xaf,0xeb,0x3b,0x20,0x93,0xea,0x0,0xd5,0x80,0x26,0xb6,0x28,0x7,0x47,0x65,0x25,0x1c,0xec,0x2e,0xd6,0x50,0xe7,0x1c,0x1c,0x5b,0xa0,0x34,0xe7,0x89,0x73,0xe3,0x8a,0x5a,0x23,0x6b,0xa1,0x44,0xe2,0xc1,0x55,0xb6,0xdd,0x73,0xa0,0x3c,0x72,0xe6,0x60,0xf6,0x2a,0xcb,0x89,0x87,0x9e,0x36,0x30,0xbf,0x28,0x66,0x24,0x43,0x49,0x8a,0x4a,0x86,0xcd,0xf6,0xea,0xd0,0x2a,0xa,0x13,0xb2,0xf5,0x2e,0x85,0xf8,0x72,0x1e,0xce,0x65,0x7d,0x3f,0x54,0x5e,0x91,0xcb,0x36,0xf0,0x60,0x92,0x56,0xfb,0x5e,0xde,0x8f,0xf,0x81,0x6,0xbb,0xea,0x7d,0x74,0x61,0xc4,0x32,0xcf,0x18,0xc6,0x91,0x9a,0x7b,0xbb,0x9e,0xec,0xbc,0x39,0x61,0x60,0xdb,0x60,0x66,0xa2,0x92,0x8e,0x8b,0x50,0x9e,0x37,0x25,0x7a,0x77,0xac,0x6,0x94,0xcf,0x48,0x42,0xf7,0x33,0xd5,0x65,0x2,0x81,0xed,0xdd,0x39,0xa1,0x6e,0x19,0x75,0xde,0xc3,0x65,0x2a,0x86,0x71,0xce,0xa1,0x1b,0x46,0x2d,0x46,0xa1,0xf7,0x1b,0x88,0x1b,0x10,0xa5,0x27,0x5b,0x7c,0x6b,0xe2,0x42,0x3e,0xef,0xae,0xa3,0xcf,0x4a,0x6c,0x7c,0x39,0x65,0xb8,0x50,0x72,0x2d,0x5d,0x4d,0x5a,0xf2,0xc0,0x5c,0x72,0xa3,0x72,0x51,0x4d,0xca,0x20,0x7f,0x31,0x70,0x41,0xd5,0x28,0x59,0x49,0xbf,0x36,0xc8,0x3e,0x37,0x55,0x8c,0x80,0xca,0x56,0xd,0x86,0x8f,0x10,0xaf,0xde,0xfe,0x26,0xbe,0x34,0x9f,0xf1,0xa9,0x1f,0xfe,0x71,0x6c,0xb6,0xb7,0xd0,0x62,0x88,0x6b,0xf9,0x7f,0x62,0x87,0xad,0x6e,0x62,0xd4,0x2a,0xa4,0x5a,0x2d,0xb8,0x5e,0xbb,0x5c,0xd5,0xcc,0xda,0x7e,0xd7,0xb0,0x6a,0x93,0x45,0xd3,0x38,0xac,0x79,0x66,0x15,0x13,0x54,0x48,0x42,0x57,0x29,0xb,0xcb,0xd,0x15,0x57,0x15,0x81,0x38,0xbd,0x51,0xd4,0x2a,0xc7,0x84,0x40,0x91,0x76,0x5d,0x55,0x8c,0x79,0xdf,0x10,0x51,0xb9,0x2e,0x9c,0x40,0x61,0x51,0xea,0x16,0xde,0xf6,0x7d,0xba,0xea,0xf5,0x6a,0x45,0x5b,0xcb,0xe0,0x94,0xf2,0x92,0xa4,0xaa,0x65,0xb9,0x61,0xe0,0xeb,0x16,0xe0,0x3a,0x2e,0x62,0xd5,0x60,0x2b,0x65,0x57,0xf5,0x5a,0xa4,0x79,0xb3,0x40,0xa3,0xa0,0x93,0xbf,0x97,0xc,0xd5,0x52,0xc6,0xd1,0x90,0x45,0x35,0xf9,0x2b,0xe5,0x47,0x2b,0xdb,0xb2,0xda,0xba,0x73,0xd6,0xec,0xdf,0x75,0x69,0xcb,0x53,0x3c,0x5b,0x4d,0x3a,0xd5,0x39,0x92,0x7a,0x8e,0x16,0xc5,0xfe,0x5a,0x81,0x57,0x35,0x3b,0xe3,0x92,0xcb,0x2c,0x2f,0x74,0x25,0xb2,0xa4,0xa8,0xb4,0x5d,0x15,0x51,0xc2,0xd9,0xc1,0xeb,0xf3,0xb1,0x5b,0xdf,0xd8,0xa9,0xda,0x8e,0x51,0x1f,0x2,0xed,0xb1,0x57,0x13,0x80,0xe5,0x5c,0x90,0xf4,0xba,0xe5,0xa2,0xf0,0xc9,0xb9,0xa7,0x3f,0xdf,0xfa,0xcd,0xb9,0x55,0x69,0x47,0xf5,0xdc,0x17,0x4,0x71,0xfd,0xfe,0x9a,0xcf,0xb5,0xbc,0xff,0xba,0x10,0xa4,0x6d,0xd6,0x2e,0x56,0x7b,0x0,0x58,0xe6,0x9,0x87,0xc7,0x7b,0xbc,0xfb,0xe6,0x37,0xb1,0x4c,0x47,0x5b,0x28,0xd,0x6,0x83,0x11,0x80,0x6,0x83,0xc1,0xf0,0x5c,0x51,0x94,0x52,0xb9,0x5c,0x34,0xe7,0x92,0xc1,0xb4,0x6e,0x86,0x5c,0x67,0xc6,0x88,0x92,0xa2,0x64,0xbc,0x95,0xcc,0x3a,0x5f,0x5,0x8e,0xab,0x42,0x84,0x2f,0x5e,0xc9,0x8a,0xba,0x68,0xc8,0x3a,0x71,0x24,0xd4,0x7a,0xe8,0xc4,0x56,0xec,0xbc,0x86,0xbd,0xd7,0x84,0x8f,0x34,0x13,0x6b,0x96,0x51,0x4c,0xac,0x4c,0x2c,0xd6,0x29,0x57,0xbd,0x16,0xa9,0xe2,0x0,0xa4,0x8a,0x10,0x14,0x82,0xa8,0xba,0xe0,0xf,0x43,0xc7,0xca,0x35,0x26,0x94,0x34,0xe3,0xaa,0x5c,0x58,0x7,0x6e,0xa9,0x95,0x7f,0x17,0x2,0x4b,0x6c,0x65,0x3a,0x6c,0xa8,0x95,0xc8,0xa9,0xed,0xaa,0xa8,0x64,0x64,0x0,0xf1,0xed,0xdc,0x24,0xd6,0x61,0xce,0x8e,0x52,0x22,0xca,0x57,0x4a,0xca,0x9c,0x74,0xdf,0x34,0x19,0x59,0x95,0x52,0x24,0xc6,0x48,0xa,0xc6,0x4c,0xf9,0x8b,0x62,0xc5,0x2d,0x81,0xf7,0x59,0x1b,0x31,0xf5,0xf5,0xd8,0xa,0xdd,0xf5,0x3d,0x42,0xe8,0xe1,0xb9,0xb5,0x57,0xf6,0x7f,0x8,0x25,0x73,0x50,0x54,0x94,0xb2,0xaf,0x65,0x20,0xd4,0xf2,0x91,0x5c,0x91,0xc8,0x39,0xc3,0x85,0x40,0xc4,0x1d,0x67,0x2c,0x8a,0xf5,0x4f,0x6,0x1a,0x39,0x46,0x42,0xe8,0x90,0x10,0x35,0x37,0x32,0xb3,0x1a,0x45,0xb,0x5a,0x94,0x70,0xab,0x54,0x26,0x4d,0x59,0x81,0x53,0xb5,0x63,0xe0,0xc,0x4a,0x79,0x7f,0xb5,0xca,0x48,0x7f,0xbf,0xda,0xce,0x9a,0x34,0xd5,0x61,0x99,0xd5,0x1b,0x45,0x90,0xd4,0x4a,0x34,0xc4,0x62,0x5e,0x37,0x3b,0x16,0x4b,0x15,0xaa,0x61,0x13,0xba,0x5d,0x6,0xc3,0x47,0x8d,0xc3,0xab,0xb7,0xf1,0xb5,0x57,0x6f,0x23,0xf4,0x23,0xb6,0xb7,0x2f,0xcb,0x9a,0xc9,0x84,0x82,0xaa,0x8d,0x2a,0x75,0x5d,0xa8,0x8a,0x28,0xe4,0xbb,0x2e,0xf9,0x71,0xf5,0x9f,0x85,0xfc,0xaa,0x95,0x69,0x75,0xe9,0x84,0x92,0xf5,0x29,0x52,0xe3,0x6d,0xa3,0x1e,0x23,0x75,0xb4,0xe7,0x98,0x83,0xc4,0x37,0x85,0x24,0xb7,0xae,0xb6,0xd3,0xca,0xb9,0x43,0xc9,0x9c,0x15,0x81,0x29,0xcd,0xb4,0xaa,0xb2,0xae,0x8,0x3f,0xca,0x5,0x4d,0xcd,0x7b,0xcc,0x29,0xc1,0x5,0x5f,0xbe,0xb6,0xee,0x7a,0x43,0x6c,0x4b,0xa2,0x14,0xc2,0xb2,0x14,0x99,0xac,0xad,0x94,0xf5,0x79,0x32,0xeb,0x4d,0x2d,0x51,0xff,0xc9,0x39,0xb6,0x3d,0x9f,0xd4,0x37,0x8a,0x22,0xdf,0x44,0x49,0x4a,0xba,0x8a,0x7d,0xba,0xce,0x9b,0x95,0xf5,0x4b,0xc8,0x52,0xd9,0x67,0xf2,0xef,0x4e,0x4a,0x53,0xb4,0xe8,0x44,0xce,0x39,0xd5,0x7e,0xf3,0xb4,0x7e,0xd6,0xf9,0x85,0xce,0xa1,0xac,0xd9,0xcd,0x67,0xed,0x1a,0xa2,0x57,0x8e,0x9,0x6a,0x7b,0x8f,0x7a,0x5e,0x17,0x55,0x7a,0x5d,0x6,0x23,0xa4,0xa7,0x94,0x86,0x89,0x8a,0x52,0xd6,0x48,0x39,0x97,0x36,0xc5,0x52,0xae,0x2d,0x24,0x73,0xfa,0x3b,0x59,0xcf,0xf,0x72,0x2e,0x90,0xeb,0xe,0x57,0x9d,0x93,0xe5,0xfc,0xea,0x2a,0xfb,0x77,0xd3,0x26,0xcd,0x7f,0x2f,0xdb,0x5d,0xda,0xa6,0x25,0xe2,0x42,0xe3,0x48,0x80,0x96,0xfc,0xac,0x6e,0xaa,0xc9,0xf3,0xa5,0x18,0xe1,0xbb,0xae,0xb2,0xd5,0x53,0x7e,0x64,0xc9,0x19,0x96,0x6b,0xa4,0xd0,0xd8,0xe2,0x51,0x5d,0xf7,0x28,0x89,0x58,0xe5,0xfa,0x6,0xbe,0xf9,0x56,0xef,0x93,0x9c,0x12,0xbd,0x56,0x4a,0xd,0x51,0xee,0x82,0x47,0x5a,0x62,0xf9,0x9e,0x54,0x24,0x61,0x4a,0x91,0xe3,0x4d,0x80,0xb4,0xcc,0x58,0xa6,0x13,0x59,0xdd,0xcd,0xfe,0x6b,0x30,0x18,0x8c,0x0,0x34,0x18,0xc,0x86,0xe7,0xd,0x19,0x84,0xc0,0xd4,0x5e,0xaa,0x89,0x12,0x19,0x3a,0xbc,0x57,0x25,0x88,0xc,0x2e,0x35,0x9,0xa2,0x83,0x8d,0xb4,0x3e,0xca,0xdd,0xf4,0x54,0x86,0x96,0x9a,0x10,0x12,0x75,0x55,0xd0,0x21,0x83,0xf3,0x1,0xab,0x76,0xc8,0x94,0x22,0x32,0x2b,0xba,0x52,0xe4,0xa6,0x49,0xb6,0xba,0x8a,0x2d,0x59,0x1a,0x6,0x33,0x92,0xde,0x35,0x57,0x5b,0x54,0x35,0xc,0x96,0xa1,0x30,0xe9,0xef,0x29,0xe9,0xc7,0xc3,0x55,0xe6,0x7c,0xba,0xea,0xcd,0x37,0x56,0x32,0xb9,0x48,0x4f,0x29,0x55,0xd,0x96,0x68,0x6,0x40,0xca,0x65,0x5a,0x64,0x9a,0xd2,0x3b,0xf0,0x65,0x0,0xca,0xaa,0xd8,0x68,0x8,0x55,0x29,0x44,0xe1,0xb,0x75,0x19,0x96,0x5d,0x4d,0x80,0xd5,0x4d,0x8e,0xd5,0x6b,0xb7,0x2a,0x87,0x4a,0x1,0x98,0xeb,0xe1,0xcd,0x91,0x1d,0x1b,0xa5,0x49,0xb2,0xeb,0x82,0x12,0x85,0x42,0x8a,0x3a,0x17,0x95,0x40,0xc,0x21,0x20,0x84,0xd,0x52,0x5a,0x90,0x52,0x69,0xd,0x75,0xa2,0x9a,0x59,0x11,0x6f,0xce,0x55,0x44,0x6e,0x8e,0x3a,0xc4,0x48,0x8e,0x95,0xd3,0x3c,0x2b,0x19,0x30,0x2b,0x3b,0x73,0x8a,0x3a,0x7c,0xd2,0xe0,0x49,0xaa,0x44,0x97,0x13,0x62,0x8c,0xd5,0x40,0xd6,0xda,0x8d,0x9d,0xe4,0x1a,0x8a,0xe5,0x98,0x7,0x7e,0xc7,0xc4,0x9c,0x7,0xab,0x5f,0xd6,0x85,0x1e,0x72,0xec,0x20,0x57,0xc3,0x77,0x82,0xf3,0xae,0x21,0xf3,0xb0,0x12,0x6d,0x14,0x55,0x4b,0xab,0xb2,0xd1,0xc6,0xcb,0x75,0xb3,0xe5,0xaa,0xfd,0xf1,0x83,0xac,0x6c,0x6,0xc3,0xf7,0x13,0x71,0x3e,0xe3,0xf1,0xdd,0xef,0xda,0x8e,0x30,0x18,0xc,0x6,0x83,0xc1,0xf0,0x24,0xbc,0xed,0x2,0x83,0xc1,0x60,0x78,0x3e,0xb8,0x54,0xb9,0x95,0x3f,0xab,0x85,0x24,0xb7,0x8d,0xa9,0x42,0x4e,0x79,0x5f,0xc8,0x27,0xe4,0xd6,0x8a,0xd5,0x6,0xb6,0x17,0xeb,0xaf,0x3c,0xaf,0x94,0xf7,0x42,0x15,0xf,0xac,0xda,0xa8,0xb2,0x9d,0x8a,0x9d,0x36,0x73,0x29,0x86,0x53,0x2,0xae,0xe,0x80,0xa7,0x16,0x58,0xdf,0xda,0x77,0xb4,0xa9,0x92,0xc8,0x1f,0xb5,0xe8,0x8a,0xba,0x84,0x95,0x10,0xd4,0x36,0x9c,0xda,0xe6,0xd7,0x5c,0x48,0xcd,0x22,0x34,0x2b,0xaa,0x41,0xb1,0xcc,0x6a,0x3e,0x14,0xdb,0xd4,0x62,0x9c,0x55,0x5,0xe7,0x0,0x55,0xbe,0x68,0x8,0xbd,0xf7,0x17,0x96,0x39,0x55,0xc9,0xa1,0xbc,0x8e,0xa8,0x34,0x8a,0x8d,0x28,0x37,0x2d,0x8a,0x65,0x1b,0x4b,0x8b,0xa6,0xb6,0x6c,0xb2,0x2,0x23,0x83,0xda,0x6f,0xdd,0xca,0xb2,0x55,0xab,0x2b,0x48,0x4d,0xb2,0x60,0x9e,0x27,0xcd,0xec,0x93,0xf7,0x45,0x76,0xe7,0xc8,0x2d,0x9e,0x25,0xa7,0x4b,0x95,0xa1,0x90,0xf,0x30,0xeb,0xbe,0x2c,0x8d,0x98,0x5e,0x95,0x9,0xb9,0xda,0x2e,0xda,0x2f,0xd5,0xe7,0xe3,0xea,0x5c,0x2d,0x57,0x32,0x4,0x1d,0xb4,0x9c,0x45,0x32,0x94,0xe4,0xf3,0x13,0xcb,0x9e,0x28,0x27,0x12,0xbf,0x5f,0x55,0xb1,0xf2,0x36,0xc8,0xe7,0xc7,0x1b,0xd4,0x90,0x7d,0x4e,0x95,0x47,0xb5,0xad,0x2f,0x5f,0x16,0x79,0x64,0xe8,0x31,0x8d,0xba,0x35,0xf2,0xaa,0xeb,0x2d,0x37,0xdf,0x15,0x69,0xad,0x6c,0xd5,0x89,0xa6,0x0,0x34,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x7c,0x7c,0x60,0x4,0xa0,0xc1,0x60,0x30,0x3c,0x23,0xb4,0xad,0x85,0x42,0xc4,0x14,0x65,0x5a,0x5d,0x80,0x91,0xb9,0xb0,0xa2,0x10,0x3e,0xeb,0x9c,0x1b,0xfa,0x7f,0x62,0xeb,0x71,0xce,0x37,0xe1,0xf1,0x91,0x2d,0xa5,0x5a,0x20,0xe2,0x4b,0xee,0x92,0x58,0x4b,0x8b,0x25,0x29,0xab,0x22,0x8c,0x5e,0x5b,0x88,0xc6,0xd4,0x6c,0xa7,0x10,0x2b,0x42,0xb6,0xe5,0xbc,0xce,0xdb,0x43,0x53,0xfa,0x50,0x93,0x72,0xa2,0x1e,0x2b,0x99,0x3a,0x40,0x9d,0x71,0x45,0xe4,0x95,0xaf,0xac,0x44,0x6c,0x27,0xe3,0xbc,0x3b,0xcd,0x1e,0x62,0x65,0x1f,0x32,0x67,0xd3,0x41,0x6c,0x5a,0xe,0x39,0xc7,0x92,0x33,0xc7,0xfb,0xac,0xe,0x5b,0x2f,0x64,0x69,0x6a,0x88,0xc7,0x3a,0x50,0x5d,0x7e,0x9e,0x2a,0x6b,0x92,0x58,0xb7,0xe5,0x39,0x9c,0x5a,0x96,0x38,0x3b,0x71,0x59,0x38,0x6c,0xbf,0xfa,0xbc,0x62,0x2c,0x6a,0x4a,0x56,0xe7,0x1,0x6d,0xc8,0x7a,0xae,0xe4,0x6e,0x75,0x8b,0xa3,0xd8,0x85,0xe0,0x1c,0xe2,0x32,0x13,0x41,0xc7,0x56,0x33,0xf9,0x3d,0x55,0x6e,0x2a,0xa1,0x5a,0x5a,0x2a,0xeb,0xcf,0x80,0xb6,0x35,0x6a,0x8e,0x51,0xc9,0x52,0x5c,0x1d,0x83,0x62,0xc1,0xad,0xb2,0x96,0x48,0xa9,0xd9,0x86,0xeb,0x53,0x29,0x88,0x2b,0xca,0xcf,0x5c,0x3e,0x77,0x39,0x28,0xdc,0x8a,0xd4,0xd6,0xe3,0x2c,0x97,0x83,0xd7,0x35,0x35,0x8f,0xa8,0xf2,0xb1,0xe8,0x2f,0xe5,0xb9,0x73,0xdb,0xc2,0x98,0x9b,0x2f,0x40,0xb1,0x6a,0x57,0xe5,0x39,0xce,0xf2,0xff,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x1f,0x33,0x18,0x1,0x68,0x30,0x18,0xc,0xcf,0x8,0xaa,0x70,0x6a,0x32,0x8d,0x24,0xcf,0xc,0xab,0x12,0x9,0xdf,0x64,0xe8,0x88,0x2,0x4e,0x49,0xac,0x18,0x95,0x64,0x2b,0xcd,0xb8,0x6c,0x98,0x14,0x82,0xae,0x52,0xd9,0x35,0xdb,0x90,0xc5,0xd6,0x9b,0x34,0x84,0x29,0xe7,0x42,0x58,0xa9,0x92,0x4a,0x14,0x76,0xbe,0x10,0x6a,0x62,0x4d,0xa6,0xe7,0x42,0x95,0x71,0x44,0xbf,0x23,0xcd,0xb3,0x6b,0x4b,0xaf,0xfc,0x57,0x14,0x73,0xa2,0x42,0xac,0x49,0x4f,0x20,0x5f,0x6c,0x73,0x21,0xea,0x82,0x92,0x5d,0x69,0x59,0x1a,0x6b,0xac,0xab,0x1a,0x19,0x55,0xe5,0xc8,0x36,0x62,0xd9,0x87,0xde,0x51,0x96,0x1e,0x29,0x1b,0x8b,0x3d,0xba,0xce,0xe4,0xaa,0x6d,0xc9,0xae,0xb6,0xd3,0xa6,0xd2,0xf2,0xeb,0x9c,0xd3,0x7d,0x7f,0x11,0x60,0xce,0x24,0x6e,0x96,0x7c,0x29,0xce,0xee,0x4b,0x6c,0x55,0xce,0x29,0xb5,0x79,0x52,0x42,0x50,0x82,0x48,0xcc,0x14,0x63,0xf3,0x33,0x25,0x6e,0xe1,0x9a,0x6,0xe8,0x42,0xd2,0x49,0x68,0x5e,0xd6,0x86,0xdd,0x3a,0x1c,0xdd,0x87,0xae,0xb4,0x77,0x6a,0x79,0x46,0x56,0xbb,0x79,0x9d,0xa3,0x54,0xc8,0xc0,0x2a,0x30,0x3e,0x4,0xd,0xa2,0x6f,0x5a,0x11,0x53,0x56,0xbb,0xb4,0xe6,0x77,0xd5,0x56,0x6b,0x57,0x8e,0x97,0x24,0xa4,0x5e,0xf9,0x88,0x51,0x48,0xee,0xa4,0xef,0xd,0x75,0x30,0xff,0xba,0xe5,0x11,0x6d,0xee,0x58,0xad,0x24,0xbc,0xf0,0xc,0x3,0xc5,0x1a,0x6e,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x7c,0x4c,0x60,0x4,0xa0,0xc1,0x60,0x30,0x3c,0x27,0x54,0xe4,0x5a,0x43,0xca,0xad,0x9,0x14,0x7a,0x84,0x12,0x2f,0xeb,0x90,0x73,0xfa,0x25,0xd7,0xa8,0xb5,0xb4,0xed,0x95,0x64,0x69,0xfc,0x90,0x4a,0x71,0x98,0x8a,0xad,0x78,0xdd,0xbe,0x27,0xa1,0xd9,0x75,0x28,0xba,0x28,0xe5,0xe8,0x77,0x8b,0xd,0x38,0xc5,0x48,0x1,0xd6,0xfa,0x1e,0x72,0xb1,0xd0,0x3a,0xc7,0xdb,0xd1,0x86,0xc4,0x3,0x55,0x5b,0x9f,0xab,0xad,0x9e,0x25,0x64,0x1d,0x55,0x93,0x5e,0x13,0x34,0x9f,0xdb,0xd6,0xc7,0xda,0x42,0x5c,0xd4,0x8c,0x45,0x6d,0xa6,0x6d,0x99,0xae,0x4,0x8b,0x2b,0xb1,0xc9,0xd6,0x5b,0xe2,0x4a,0x1d,0x5b,0x89,0x97,0x96,0x40,0x5c,0x85,0x8c,0x67,0x29,0x3c,0xf1,0x95,0xed,0xd9,0xad,0xda,0x35,0xab,0x7f,0x17,0x5,0x9f,0x14,0x88,0xc8,0x63,0x24,0xcc,0x9d,0xac,0xbe,0x9c,0xf,0xd8,0x75,0xd4,0x4,0x29,0x64,0xa2,0x13,0xb2,0x35,0x69,0x3e,0x64,0xd6,0xd2,0x98,0xf2,0xf1,0x6b,0xd9,0x4b,0x45,0xa,0x2b,0x31,0x9b,0x39,0x4,0x9f,0x73,0x16,0x95,0x40,0x45,0x4d,0xe2,0x7a,0x6d,0xcb,0x90,0x43,0xc4,0x87,0x50,0x37,0x68,0x70,0x3e,0xe1,0x52,0xb6,0xa3,0x6a,0xf3,0x44,0x39,0x42,0x9b,0xb0,0x79,0x6a,0xe8,0xc4,0xca,0x4e,0xdd,0xb6,0x60,0x6a,0x6b,0xf5,0xd5,0x7c,0xbe,0xdc,0x7c,0x57,0x84,0x1c,0xd7,0xe3,0x54,0x9e,0xb3,0xe9,0x1a,0xad,0x7e,0xb7,0x6e,0x8d,0x34,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0x3e,0x46,0x68,0x7b,0xed,0xd,0x6,0x83,0xc1,0xf0,0xb1,0xc6,0xdd,0x27,0x7f,0x8,0x3f,0xf9,0xd9,0xbf,0x8d,0x61,0xdc,0x30,0x29,0x95,0xae,0x10,0x21,0xa5,0xf1,0x2f,0x2b,0xeb,0xf3,0xd4,0xe9,0x80,0x4b,0x40,0xea,0x92,0xb,0x2f,0x65,0x16,0xa5,0xa5,0x17,0x95,0x65,0x94,0x9e,0xdb,0xab,0xa,0xc,0x28,0x24,0x96,0xfe,0x99,0x1b,0x16,0x55,0x11,0xc7,0xe5,0x22,0x75,0x1b,0x71,0x52,0xf5,0x60,0x5,0x26,0xb5,0xda,0x3c,0xbe,0xdc,0x94,0x83,0xa8,0x25,0x36,0x97,0xf7,0xd5,0x28,0xba,0xe0,0x9a,0xc6,0x5d,0x6d,0xda,0xab,0x5e,0xc3,0x31,0x59,0x55,0x2b,0x26,0xfd,0xaa,0x29,0xb0,0x10,0x8e,0xa5,0x5d,0x22,0xf3,0xe3,0x52,0x95,0xa5,0x58,0x9e,0xba,0x6d,0x35,0x94,0x66,0x46,0xf9,0x5d,0x70,0x63,0xb2,0x90,0x84,0xaa,0x3e,0xf4,0x1e,0x59,0x9b,0x18,0x53,0xc9,0xf1,0x63,0x82,0x52,0x5e,0x3f,0x74,0x1d,0xe2,0x42,0xe4,0x68,0xd7,0x75,0x4d,0x8e,0xa0,0x36,0x5b,0x2a,0x11,0xea,0x4b,0x5e,0x21,0x67,0x2,0x7a,0x1f,0x8a,0x9a,0xaf,0x52,0x90,0xca,0x5b,0x90,0xe2,0x12,0x29,0x88,0x11,0xa2,0x2c,0xd7,0xfb,0xad,0xfa,0x37,0x94,0x8a,0xe,0x55,0xf2,0xe5,0xca,0xbe,0x5b,0xb7,0xf0,0xea,0xf1,0x52,0xfd,0x4e,0xd9,0x6b,0x55,0x91,0x47,0xbe,0x7e,0x15,0x23,0x4d,0x94,0x59,0x8a,0x61,0xaa,0x67,0x2a,0x36,0xf5,0x2a,0x3b,0xb0,0x22,0x3d,0x5d,0xfd,0xd,0x58,0x35,0x86,0xe6,0x8a,0x14,0x8e,0x71,0xc1,0x32,0xcf,0xb8,0x7f,0xe7,0x2d,0x7c,0xf7,0x1b,0x5f,0xd2,0x7c,0x42,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xe1,0xe3,0x0,0x23,0x0,0xd,0x6,0x83,0xe1,0x99,0xe1,0xf6,0xf5,0x1f,0xc4,0x27,0x3e,0xf5,0x69,0x8c,0xdb,0x9d,0x96,0x6a,0x14,0xa2,0xa4,0x5d,0xf8,0x6b,0x82,0x46,0x49,0x9f,0xfa,0x51,0x5a,0xec,0x51,0x65,0xef,0xa5,0xd2,0x7e,0xb,0xa0,0xb2,0x70,0x12,0xa,0xe1,0xe3,0xaa,0xac,0xbf,0xfa,0x75,0x52,0xcd,0x3e,0xaa,0x1d,0x54,0x95,0x5c,0x6d,0xe4,0x1f,0xfd,0x28,0xb7,0x2a,0xbc,0x42,0xd8,0x94,0x6d,0x75,0x4d,0x93,0x2d,0x11,0x5d,0x35,0x41,0xa6,0xcf,0x8d,0x42,0x10,0xa,0x89,0x27,0x44,0xa6,0x92,0x6a,0x68,0xd5,0x8d,0x1f,0x74,0xfa,0xac,0xf7,0xdd,0x3a,0x1f,0xae,0x26,0x28,0xf5,0xbd,0xe8,0xfb,0xcf,0x8d,0x5a,0xf1,0xda,0x7b,0x96,0xd,0x97,0xc7,0x25,0xce,0x2a,0x54,0x72,0xd4,0xe1,0xa2,0x54,0xe4,0x5a,0x43,0x6d,0xb1,0x84,0x3b,0x25,0xfc,0xf2,0xca,0xf6,0xea,0x2b,0x15,0x65,0xf9,0x10,0xb2,0x66,0x2,0xb6,0x97,0xc,0xae,0xfa,0xbd,0x50,0x95,0x62,0x8,0xb1,0xfa,0xf4,0xb6,0xc8,0x3,0x88,0x4c,0xce,0x2d,0xb9,0x7a,0x71,0x0,0xe4,0xda,0x3,0xdd,0xb4,0x36,0xaf,0xd5,0x9b,0x7a,0x9c,0x49,0xbe,0x63,0x45,0xf8,0xd5,0x4d,0xbf,0xa5,0x1,0xb8,0x25,0xfa,0x1a,0xb2,0xb1,0xfe,0x86,0xa4,0x84,0xd3,0x71,0x8f,0xc3,0xe3,0x3d,0xee,0xdf,0xfe,0x96,0x2d,0x32,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x86,0x8f,0x1d,0x8c,0x0,0x34,0x18,0xc,0x86,0x67,0xa,0xef,0x3b,0xc,0xbb,0x3b,0x22,0x67,0x50,0x14,0x50,0x7a,0x2,0x60,0xd5,0x95,0x3,0x59,0x44,0x29,0x2b,0xaf,0x6a,0x37,0xad,0xac,0xaa,0x62,0x2f,0xad,0xad,0xa8,0x0,0x94,0x3c,0x13,0xe5,0x5b,0x9c,0x67,0x55,0xcf,0x35,0x44,0x8d,0xab,0x75,0x56,0xa0,0xc,0x3b,0x1f,0x5a,0x12,0xce,0x17,0x52,0x47,0x29,0xbe,0xc2,0x22,0x69,0xee,0xa0,0x28,0xd6,0xa4,0xfd,0x35,0x2d,0xb,0x7c,0xd7,0x57,0xd6,0x5c,0x34,0xcf,0xe7,0xe0,0xd4,0x86,0x2b,0x99,0x83,0xb9,0x29,0xb1,0x8,0xd5,0xdf,0x73,0x45,0x80,0x81,0xb7,0x2f,0xe8,0x36,0xfb,0x40,0xea,0x43,0x69,0xaf,0x15,0x5,0xa5,0x58,0x72,0xb5,0x54,0xa4,0xca,0x36,0x4c,0x31,0x2a,0x21,0xaa,0x45,0x18,0xde,0xc3,0xc1,0x6b,0x76,0x1f,0x3c,0x67,0x1a,0xa6,0xa8,0xcf,0x5f,0x97,0x6d,0xc8,0x67,0xa7,0x2a,0x3d,0x21,0x6c,0xbd,0x6b,0xd4,0x7c,0x25,0x6b,0x30,0xf1,0xf6,0x86,0xc6,0x9e,0x4b,0x5b,0x9b,0x5b,0x5,0xa1,0xbc,0xc7,0x8a,0x48,0x54,0x22,0x38,0x67,0x3d,0x4e,0xa4,0x90,0x44,0x2e,0x1e,0xb4,0x58,0x45,0x4a,0x35,0xb8,0x14,0xa6,0xde,0x17,0x45,0xd9,0x87,0xea,0x38,0x28,0x87,0x82,0xbb,0x66,0xa9,0xe5,0x4c,0x43,0x69,0x60,0x56,0xf5,0xa2,0x2f,0x24,0xa7,0xe6,0x27,0xae,0x32,0x2c,0xe9,0x75,0xab,0xd7,0x72,0xb4,0x5d,0xfa,0x19,0x6b,0x41,0x4c,0xa5,0xce,0x94,0x6d,0x11,0x42,0x34,0x15,0x82,0xba,0x28,0xf,0x33,0x96,0xe9,0x68,0x8b,0x8a,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xe1,0x63,0xb,0x23,0x0,0xd,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x86,0x67,0xc,0x2b,0x1,0x31,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0x9e,0x31,0x8c,0x0,0x34,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0x9e,0x31,0x8c,0x0,0x34,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0x9e,0x31,0x8c,0x0,0x34,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0x9e,0x31,0x8c,0x0,0x34,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0x9e,0x31,0x8c,0x0,0x34,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0x9e,0x31,0x8c,0x0,0x34,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0x9e,0x31,0x8c,0x0,0x34,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0x9e,0x31,0x8c,0x0,0x34,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0x9e,0x31,0x8c,0x0,0x34,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0x9e,0x31,0x8c,0x0,0x34,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0x9e,0x31,0x8c,0x0,0x34,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0x9e,0x31,0x8c,0x0,0x34,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0xc,0x6,0x83,0xc1,0x60,0x30,0x18,0x9e,0x31,0xfe,0x37,0xec,0xf3,0x5f,0x77,0xda,0xa1,0xab,0xd4,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82 +}; + + static const unsigned char option_arrow_png[]={ 0x89,0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x8,0x6,0x0,0x0,0x0,0x1f,0xf3,0xff,0x61,0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xde,0x9,0x14,0xd,0x1c,0x2e,0x4,0xf2,0xb6,0x87,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x43,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x0,0x43,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x47,0x49,0x4d,0x50,0x57,0x81,0xe,0x17,0x0,0x0,0x0,0x61,0x49,0x44,0x41,0x54,0x38,0x8d,0x63,0xbc,0x7b,0xf7,0x2e,0x3,0x25,0x80,0x89,0x22,0xdd,0xb4,0x36,0x40,0x82,0x81,0x81,0xe1,0x3f,0x94,0x26,0xd9,0x0,0x16,0x6,0x6,0x86,0xe7,0x50,0xf6,0x73,0x28,0x9f,0x24,0x3,0x7e,0x13,0xe0,0x13,0x34,0x80,0x68,0x80,0xcb,0x69,0xbc,0x94,0x1a,0xf0,0x19,0x8b,0x18,0x23,0x36,0x85,0x34,0x8b,0x46,0x49,0x2,0x7c,0x82,0x6,0xf0,0x30,0x30,0x30,0x70,0x40,0xd9,0x1c,0x50,0x3e,0x56,0x80,0x2b,0xc,0xee,0x40,0x69,0x46,0x34,0x3e,0xd1,0x2e,0x20,0x1a,0xc,0xbc,0x1,0x0,0x1e,0x2d,0xa,0xcc,0x68,0x85,0xc9,0x5b,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82 }; @@ -310,7 +315,7 @@ static const unsigned char popup_unchecked_png[]={ static const unsigned char popup_window_png[]={ -0x89,0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x46,0x8,0x6,0x0,0x0,0x0,0xba,0xf5,0x6,0x7a,0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xdf,0xa,0x14,0x17,0x39,0x1b,0x27,0xff,0x2d,0x90,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x43,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x0,0x43,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x47,0x49,0x4d,0x50,0x57,0x81,0xe,0x17,0x0,0x0,0x3,0x82,0x49,0x44,0x41,0x54,0x68,0xde,0xed,0x5a,0xdd,0x6a,0x13,0x41,0x14,0xfe,0xce,0xcc,0x64,0xb7,0x55,0x63,0x8b,0xb6,0x96,0xa,0x52,0x11,0x4,0xbd,0x10,0xd1,0x52,0xf0,0x42,0x1f,0x40,0xbc,0xf0,0xda,0xbb,0x8a,0x2f,0xe1,0x23,0x88,0xef,0xe0,0x73,0xf8,0x14,0xe2,0xa5,0xb7,0x2d,0xc5,0x6a,0xa4,0x96,0xc6,0x5a,0xd2,0x6c,0x33,0x73,0xbc,0xd8,0xd9,0x36,0xa6,0x9b,0xdd,0xd9,0x74,0x67,0xba,0xd1,0x1e,0x58,0x8,0x21,0x99,0xf3,0xed,0x77,0xce,0x77,0x7e,0x36,0x1,0x2e,0xec,0xc2,0x9a,0x6d,0x54,0xf6,0x81,0xef,0x5f,0xbb,0xcf,0x1,0x7c,0x0,0xb0,0xec,0x9,0xc3,0x37,0x0,0x6f,0x0,0x7c,0x3c,0x2b,0xd0,0x5f,0x5a,0x27,0x6d,0xc3,0xda,0xb,0x4a,0x41,0x12,0x52,0x46,0xfb,0x47,0x83,0xde,0xd5,0xa2,0xcf,0x29,0x87,0xb3,0xda,0x3,0x3d,0xf0,0x16,0x52,0x83,0x1,0xa4,0x8c,0xda,0xcc,0x8c,0xb3,0x2,0xd,0x62,0xc6,0xd4,0x0,0xb4,0xec,0x6e,0xeb,0xb0,0x5a,0x18,0xd,0x2,0xd4,0x98,0xe9,0x0,0x6a,0xa6,0x85,0x51,0x33,0x35,0x8c,0xd6,0x21,0xa6,0xb2,0xbb,0xfd,0xaf,0x18,0xad,0x45,0x4c,0xc6,0x3f,0xce,0x9a,0xea,0xe8,0x14,0x84,0x9e,0x42,0x85,0xfe,0xe1,0xe3,0x7b,0x0,0x80,0xcf,0x9f,0xbe,0xe4,0xcf,0x4,0x5,0x0,0xe5,0xca,0xad,0x3b,0x71,0xca,0x28,0x7b,0xbd,0x86,0xed,0xd1,0xea,0x7d,0xb0,0x31,0xa7,0xae,0x22,0x46,0xe9,0x68,0x90,0xc8,0x50,0x8c,0x96,0x15,0x7f,0x55,0x90,0x12,0x97,0xa2,0x56,0xbc,0x18,0xaa,0x3c,0xfd,0xad,0x9,0x77,0xa0,0x4,0x40,0x30,0x9b,0x56,0x28,0x46,0x97,0x6e,0x2c,0xdf,0xec,0xfc,0xf8,0xd6,0x5,0x70,0xb8,0xf6,0xe4,0x81,0x6,0x0,0x22,0x82,0x10,0x2,0x33,0x33,0xb3,0x63,0x81,0xb6,0x0,0x5c,0x11,0x42,0xde,0x6,0x80,0x10,0x81,0x57,0x4a,0x2d,0x3,0x38,0xb2,0x97,0xce,0x8,0xd2,0xda,0xa0,0xd7,0xeb,0x15,0xe7,0x68,0xa6,0xfa,0xeb,0xd7,0x16,0xbc,0x3,0x95,0x42,0xe6,0x8a,0x9b,0xd2,0xba,0x93,0xb,0x94,0xec,0x17,0x62,0x22,0x5a,0x5c,0x7f,0xbd,0xbe,0x99,0x24,0xc9,0x8a,0x31,0x9e,0x56,0x11,0x21,0x11,0x45,0xd1,0xa6,0x10,0xf2,0x2e,0x80,0x5d,0x0,0xfb,0x96,0x55,0x4e,0x59,0x4d,0xc1,0x8a,0xc6,0x6c,0x99,0x44,0x62,0x38,0x8a,0xc3,0x8c,0x12,0xa8,0x39,0x40,0x6d,0x14,0x29,0x77,0xe1,0x24,0x9a,0x6,0x46,0x9,0x44,0xd4,0x9c,0xe5,0x6e,0x14,0x24,0xa5,0x2a,0x2,0x91,0x80,0x94,0xb2,0x2,0x50,0xe,0x9c,0x7,0x42,0xa4,0x20,0x85,0x44,0xab,0x15,0x39,0x0,0x65,0x6,0x98,0xfd,0xe1,0xb4,0xe7,0x8f,0x5a,0x1c,0xc7,0x0,0x4,0x94,0x54,0x88,0xe3,0xd9,0x62,0xa0,0x26,0x3b,0xc7,0x23,0xa5,0x6c,0x7d,0x8c,0x36,0xe9,0xb5,0xd5,0x67,0x13,0x3c,0x80,0x38,0x41,0xeb,0x87,0x51,0x87,0x54,0x53,0xe5,0xe7,0x64,0x7c,0xfa,0x4b,0xd2,0xbc,0x59,0x62,0xd4,0x9f,0x38,0x6f,0x1d,0xb9,0x9e,0xed,0x1c,0x7a,0xe,0x1c,0x7a,0xae,0x14,0x7a,0x9d,0x86,0xc0,0xbb,0x98,0xc0,0x76,0x5e,0x1a,0xcf,0x75,0x9,0xa3,0xda,0xe6,0x8f,0x47,0x31,0x81,0xad,0xf,0x7d,0x36,0x31,0x9d,0x88,0x9e,0x3,0x8b,0xbe,0xa2,0x98,0xd8,0x6,0xc7,0xa7,0x9c,0x5c,0x48,0x28,0x67,0xd4,0xd8,0xc8,0xfb,0x52,0x13,0xe3,0x74,0xb5,0xcf,0x29,0x59,0xa2,0x44,0x4b,0x36,0x3d,0xd9,0x2b,0x9f,0xb9,0x5a,0xaa,0x5e,0x9e,0xd8,0x3f,0xa3,0x39,0x44,0x54,0x62,0xd4,0xb7,0x90,0x8e,0x33,0xd4,0xe1,0x78,0x7,0x46,0x4d,0xb1,0x3c,0xeb,0x79,0xe4,0x50,0x5a,0xe,0x54,0xf9,0x11,0x69,0x9d,0xf3,0xd7,0x98,0x18,0x26,0x2f,0xf4,0x55,0x19,0xe5,0x0,0x1d,0x9f,0x1d,0xde,0x55,0x4e,0x5a,0xf2,0xd8,0xeb,0x79,0xcc,0x8,0xc9,0xfc,0x6f,0x32,0x6a,0x8e,0xc7,0x6,0x9f,0xbd,0x3e,0xb7,0xea,0x57,0x9d,0x9e,0xc0,0x1,0x7a,0x7d,0xee,0x4c,0x52,0x75,0x70,0x1e,0xb3,0x7c,0xf9,0x5e,0xee,0x26,0x1b,0x9c,0x7d,0xa6,0x28,0xb9,0xf9,0x53,0x4e,0x37,0xec,0x71,0x67,0xe2,0x31,0xbd,0x64,0x82,0x9d,0x29,0x40,0xe8,0x1d,0x48,0x10,0xe7,0x17,0xf3,0x6a,0x3e,0x94,0x7b,0x78,0x3c,0x85,0x9e,0xdc,0x56,0x68,0x51,0x50,0xd8,0x78,0x6b,0x7b,0xa3,0xd3,0x8a,0x62,0x6f,0xf,0x71,0x1,0xc0,0x18,0x8d,0x56,0x14,0xaf,0x6c,0x6d,0x6f,0x74,0x32,0xbf,0x6b,0xab,0x4f,0x79,0x82,0xd0,0x37,0xc3,0x44,0x3,0x12,0xd4,0xc9,0x97,0x28,0xd9,0x64,0x42,0x3,0x1d,0xeb,0xb3,0x8,0xa8,0x6,0xd0,0xa7,0xf2,0xbf,0x46,0xd5,0x50,0xf3,0x9,0x0,0xfa,0x27,0x4d,0xdb,0x1d,0xa8,0x6,0x90,0x0,0x38,0x90,0x52,0xee,0x29,0xe5,0xef,0xc1,0xb4,0x52,0xa,0x52,0xc9,0x3d,0x0,0x7,0xd6,0xa7,0xae,0x52,0x9e,0xc,0x80,0x43,0x0,0xdd,0x9d,0x9f,0x9d,0x77,0xb,0xb,0x4b,0x6f,0xf5,0x40,0xcf,0xd7,0xdd,0x9d,0x8,0x4,0x29,0xe5,0xee,0xce,0x4e,0xe7,0x3d,0x80,0xae,0xf5,0x69,0xda,0xed,0x39,0xe7,0x4e,0x2b,0x1,0xc4,0x0,0x2e,0x3,0x98,0x7,0x30,0x67,0x5f,0xc7,0x18,0xf7,0xcb,0xc5,0x64,0xb3,0x5d,0xdf,0x32,0xd9,0x5,0x90,0xb1,0xda,0xcf,0x63,0xb5,0x88,0xd1,0xc4,0xbe,0x1e,0x0,0xf8,0xd,0x20,0xb2,0x37,0x50,0x57,0x49,0x33,0x43,0x29,0x76,0x68,0x1,0x26,0xf9,0x9b,0x5e,0x31,0x33,0xd9,0x2f,0x78,0xd9,0x25,0x6b,0x62,0x73,0x94,0x55,0x6d,0xc1,0x99,0x73,0xa8,0x34,0xe1,0xa6,0xc1,0x63,0x7b,0xf9,0xe2,0x15,0xf6,0xba,0xbb,0x8d,0xef,0x4c,0x8d,0xb1,0x3f,0x4,0x3,0x19,0xf6,0x18,0xa6,0x30,0xaf,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82 +0x89,0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x46,0x8,0x6,0x0,0x0,0x0,0xba,0xf5,0x6,0x7a,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xe0,0x3,0x3,0xc,0x31,0x2b,0xec,0x7e,0x63,0x8a,0x0,0x0,0x0,0x19,0x74,0x45,0x58,0x74,0x43,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x0,0x43,0x72,0x65,0x61,0x74,0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x47,0x49,0x4d,0x50,0x57,0x81,0xe,0x17,0x0,0x0,0x2,0xdc,0x49,0x44,0x41,0x54,0x68,0xde,0xed,0x9a,0xdd,0x6a,0x13,0x41,0x14,0xc7,0x7f,0xf3,0x91,0x8d,0x95,0xd2,0xa2,0x6,0x5b,0x89,0xad,0xe2,0x85,0xbe,0x40,0x41,0xd0,0x7b,0xdf,0x42,0xa9,0xaf,0xa6,0x4f,0xd5,0x5e,0x48,0x3f,0xb4,0x58,0x48,0x91,0x96,0x62,0xdb,0x4d,0x66,0x8e,0x17,0x99,0xd8,0x2a,0x36,0x3b,0xdb,0xec,0x6c,0x36,0xb2,0x7,0x6,0xb2,0xb0,0x3b,0xf3,0x9f,0xff,0xf9,0x9c,0x39,0x81,0x56,0x5a,0x69,0xb6,0xa8,0xa2,0x17,0xbe,0x7f,0x3b,0xfd,0x4,0xbc,0x4f,0x8c,0xe3,0xf3,0x7a,0x7f,0xf5,0xc3,0xac,0x40,0xc5,0xb9,0x1c,0x2f,0x2e,0x9,0x42,0xad,0xc,0xc6,0x64,0xac,0xf7,0x57,0xa7,0x62,0xb1,0x31,0x93,0x8d,0xdc,0x28,0x19,0x95,0x9e,0x11,0xc6,0x64,0xc5,0x1b,0x5a,0x14,0x1b,0x8d,0x62,0x54,0x44,0x5a,0xa0,0x2d,0xd0,0x16,0x68,0x15,0x40,0xbd,0xf7,0x2d,0xa3,0xd5,0x32,0x3a,0x7f,0x9c,0x91,0x8c,0x2e,0x80,0xea,0x4d,0xd3,0x55,0x6f,0x80,0xec,0xd9,0xc6,0x8b,0x95,0x31,0xa3,0xcd,0xb6,0x51,0x33,0x1c,0xe5,0x4b,0x4d,0x67,0x74,0x19,0xe8,0x67,0x9d,0xee,0x56,0x53,0xc2,0x93,0x9e,0xa6,0x7a,0x11,0x7f,0x7f,0xc2,0x68,0xca,0x1,0xb0,0xf6,0xf8,0xc9,0x3b,0xe0,0x39,0xb0,0x54,0x86,0xd1,0x15,0x60,0x53,0x6b,0xf3,0x6,0xa0,0xe,0xc5,0x5b,0x6b,0x5f,0x3,0xe7,0xc0,0x19,0x70,0x51,0xc6,0x46,0xd5,0x84,0xf1,0x47,0xf,0x7b,0xc9,0x81,0x1a,0x6d,0x0,0x3a,0x65,0x6c,0xd4,0x84,0xf,0x1e,0x28,0xa5,0x9e,0x6e,0x7f,0xdc,0x26,0xcf,0x73,0xbc,0x4f,0x74,0x14,0xd1,0x86,0x2c,0xcb,0xd0,0xda,0xbc,0x5,0x76,0x81,0x2f,0xc0,0x29,0xe0,0x1a,0x59,0xe1,0x2b,0xa5,0x74,0xc0,0x63,0x9a,0x7e,0x14,0x31,0x1,0x8f,0x6e,0x34,0xd0,0xc0,0xa8,0x59,0x4,0x46,0xd5,0x34,0x3c,0x36,0x7a,0x9a,0x39,0x27,0xa7,0x62,0xa0,0x22,0x20,0x92,0xe,0x67,0x98,0x7f,0x26,0xa0,0x7e,0x32,0x4f,0x42,0x4a,0x25,0xac,0xe1,0x67,0x66,0x94,0x3f,0xd0,0xa6,0x61,0xb4,0xa,0xd5,0x4f,0x72,0x71,0x42,0xe5,0x47,0x55,0x67,0x7a,0xde,0x7e,0x24,0x95,0x39,0x53,0x50,0x8f,0x34,0x5a,0xf5,0x6e,0xac,0xf2,0xe4,0xce,0x84,0xfc,0x95,0xd9,0x4b,0x33,0xea,0x82,0xfd,0x24,0x74,0x26,0x26,0x35,0xa9,0xab,0xe2,0x5c,0x9f,0xce,0x99,0x62,0x4d,0x4a,0x47,0xec,0x37,0xb9,0x3b,0xc5,0x90,0x50,0xcc,0xa8,0xf,0x9a,0x4f,0xe5,0x4d,0x42,0x71,0xb4,0x2f,0x62,0xd4,0x31,0x31,0x4f,0x49,0xca,0x67,0x84,0x2f,0xc5,0xd8,0xa8,0xa4,0x67,0x94,0xa,0x2,0xbe,0xd4,0xc0,0x68,0xc,0x7,0x11,0x8c,0xfa,0x72,0xee,0x79,0x27,0xf1,0xb3,0x3,0xf5,0x21,0xce,0xa5,0x4b,0x4c,0x82,0xaf,0xc2,0xeb,0xa5,0x86,0x8c,0x1f,0x33,0xb3,0x8d,0xf2,0xa5,0x84,0xb9,0x5e,0x22,0x4b,0xc8,0xff,0x85,0x51,0xff,0xbb,0x6c,0x48,0x99,0xeb,0x63,0xa2,0x7e,0x61,0xf5,0x84,0xd4,0x90,0xeb,0x8b,0x6b,0x92,0x88,0xc2,0x39,0xf2,0xf0,0x35,0xd7,0xc3,0x5d,0x2d,0x65,0xbe,0x8a,0x7b,0xcd,0x46,0x6d,0x38,0xe1,0x99,0x49,0x22,0x73,0x89,0x8e,0x9a,0x2a,0xb5,0xea,0x91,0x8a,0x80,0x26,0x97,0x8a,0x6c,0x54,0x48,0x57,0x3d,0x49,0xa4,0x8d,0xea,0x5b,0x82,0x92,0x3,0xfc,0xe1,0xd1,0xde,0x7e,0x27,0xeb,0x26,0xbb,0xc4,0x5,0xf0,0xde,0xd1,0xc9,0xba,0x1c,0x1e,0xed,0xed,0x87,0x60,0xea,0xfe,0x15,0xac,0x16,0xe6,0xaf,0x1a,0x45,0x40,0xeb,0xec,0xdb,0xf8,0xbb,0x0,0xf5,0xc0,0x90,0x7a,0x2f,0x1b,0x25,0xac,0xe9,0xcb,0x0,0x75,0xc0,0x15,0x70,0xae,0x62,0x23,0xf2,0x4c,0x31,0x5f,0xc1,0xb8,0x75,0x73,0x75,0x5b,0x32,0xbd,0xd,0xe8,0x25,0xe3,0x7e,0xcf,0xc0,0x18,0x83,0xb5,0x36,0x19,0x48,0x6b,0x2d,0xc6,0x1a,0x80,0x41,0x58,0xf3,0xb2,0x4c,0x78,0xca,0xc3,0x87,0x7,0x83,0x93,0xe3,0x9d,0x5e,0x6f,0xed,0x95,0x1b,0xb9,0xca,0xb3,0x93,0x42,0x61,0x8c,0x61,0x30,0x38,0xde,0x1,0xe,0xc2,0x9a,0x79,0x99,0x4c,0xbb,0x4,0xf4,0x80,0xd,0xe0,0x25,0xb0,0x19,0x9e,0x97,0x29,0xb8,0x6b,0x2f,0xe1,0x38,0x12,0xd4,0x3d,0x8,0x20,0x77,0x81,0xc3,0xf0,0x7c,0x51,0x86,0xd1,0x1f,0xe1,0xf7,0x4f,0xe0,0x2b,0xe3,0xb6,0x63,0x97,0x29,0xdd,0xb5,0x92,0x32,0xc,0x36,0x79,0x16,0xc0,0x9d,0x84,0x35,0x4b,0x31,0xa,0xa1,0x71,0x7b,0x63,0xdc,0xe3,0xba,0x17,0x54,0x55,0x38,0x72,0xc1,0x26,0xf3,0x1b,0xc3,0xd1,0x4a,0x2b,0xd7,0xf2,0xb,0x3d,0xd,0xa0,0xd0,0x7a,0xcf,0xaf,0x5e,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82 }; diff --git a/scene/resources/environment.h b/scene/resources/environment.h index 4620bf567a..a72cc6a47f 100644 --- a/scene/resources/environment.h +++ b/scene/resources/environment.h @@ -51,7 +51,7 @@ public: enum BGParam { BG_PARAM_CANVAS_MAX_LAYER=VS::ENV_BG_PARAM_CANVAS_MAX_LAYER, - BG_PARAM_COLOR=VS::ENV_BG_PARAM_COLOR, + BG_PARAM_COLOR=VS::ENV_BG_PARAM_COLOR, BG_PARAM_TEXTURE=VS::ENV_BG_PARAM_TEXTURE, BG_PARAM_CUBEMAP=VS::ENV_BG_PARAM_CUBEMAP, BG_PARAM_ENERGY=VS::ENV_BG_PARAM_ENERGY, diff --git a/scene/resources/font.cpp b/scene/resources/font.cpp index 0aae6fd978..ef5b7a3eb0 100644 --- a/scene/resources/font.cpp +++ b/scene/resources/font.cpp @@ -272,24 +272,24 @@ Error Font::create_from_fnt(const String& p_string) { void Font::set_height(float p_height) { - + height=p_height; } float Font::get_height() const{ - + return height; } void Font::set_ascent(float p_ascent){ - + ascent=p_ascent; } float Font::get_ascent() const { - + return ascent; } float Font::get_descent() const { - + return height-ascent; } @@ -349,7 +349,7 @@ void Font::add_char(CharType p_char, int p_texture_idx, const Rect2& p_rect, con c.v_align=p_align.y; c.advance=p_advance; c.h_align=p_align.x; - + char_map[p_char]=c; } @@ -411,7 +411,7 @@ bool Font::is_distance_field_hint() const{ void Font::clear() { - + height=1; ascent=0; char_map.clear(); @@ -423,14 +423,14 @@ void Font::clear() { Size2 Font::get_string_size(const String& p_string) const { float w=0; - + int l = p_string.length(); if (l==0) return Size2(0,height); const CharType *sptr = &p_string[0]; for (int i=0;i<l;i++) { - + w+=get_char_size(sptr[i],sptr[i+1]).width; } @@ -461,9 +461,9 @@ void Font::draw_halign(RID p_canvas_item, const Point2& p_pos, HAlign p_align,fl } void Font::draw(RID p_canvas_item, const Point2& p_pos, const String& p_text, const Color& p_modulate,int p_clip_w) const { - + Vector2 ofs; - + for (int i=0;i<p_text.length();i++) { int width = get_char_size(p_text[i]).width; @@ -476,15 +476,15 @@ void Font::draw(RID p_canvas_item, const Point2& p_pos, const String& p_text, co } float Font::draw_char(RID p_canvas_item, const Point2& p_pos, const CharType& p_char,const CharType& p_next,const Color& p_modulate) const { - + const Character * c = char_map.getptr(p_char); - + if (!c) { if (fallback.is_valid()) return fallback->draw_char(p_canvas_item,p_pos,p_char,p_next,p_modulate); return 0; } - + Point2 cpos=p_pos; cpos.x+=c->h_align; cpos.y-=ascent; @@ -492,7 +492,7 @@ float Font::draw_char(RID p_canvas_item, const Point2& p_pos, const CharType& p_ ERR_FAIL_COND_V( c->texture_idx<-1 || c->texture_idx>=textures.size(),0); if (c->texture_idx!=-1) VisualServer::get_singleton()->canvas_item_add_texture_rect_region( p_canvas_item, Rect2( cpos, c->rect.size ), textures[c->texture_idx]->get_rid(),c->rect, p_modulate ); - + return get_char_size(p_char,p_next).width; } @@ -561,16 +561,16 @@ void Font::_bind_methods() { } Font::Font() { - + clear(); - + } Font::~Font() { - + clear(); } diff --git a/scene/resources/font.h b/scene/resources/font.h index 61f0352992..03b1ec5191 100644 --- a/scene/resources/font.h +++ b/scene/resources/font.h @@ -36,21 +36,21 @@ @author Juan Linietsky <reduzio@gmail.com> */ class Font : public Resource { - + OBJ_TYPE( Font, Resource ); RES_BASE_EXTENSION("fnt"); - + Vector< Ref<Texture> > textures; public: struct Character { - + int texture_idx; Rect2 rect; float v_align; float h_align; float advance; - + Character() { texture_idx=0; v_align=0; } }; @@ -69,10 +69,10 @@ public: private: - + HashMap< CharType, Character > char_map; Map<KerningPairKey,int> kerning_map; - + float height; float ascent; bool distance_field_hint; @@ -86,20 +86,20 @@ private: Ref<Font> fallback; protected: - + static void _bind_methods(); public: Error create_from_fnt(const String& p_file); - + void set_height(float p_height); float get_height() const; - + void set_ascent(float p_ascent); - float get_ascent() const; + float get_ascent() const; float get_descent() const; - + void add_texture(const Ref<Texture>& p_texture); void add_char(CharType p_char, int p_texture_idx, const Rect2& p_rect, const Size2& p_align, float p_advance=-1); @@ -116,7 +116,7 @@ public: inline Size2 get_char_size(CharType p_char,CharType p_next=0) const; Size2 get_string_size(const String& p_string) const; - + void set_fallback(const Ref<Font> &p_fallback); Ref<Font> get_fallback() const; @@ -125,11 +125,11 @@ public: void set_distance_field_hint(bool p_distance_field); bool is_distance_field_hint() const; - + void draw(RID p_canvas_item, const Point2& p_pos, const String& p_text,const Color& p_modulate=Color(1,1,1),int p_clip_w=-1) const; void draw_halign(RID p_canvas_item, const Point2& p_pos, HAlign p_align,float p_width,const String& p_text,const Color& p_modulate=Color(1,1,1)) const; float draw_char(RID p_canvas_item, const Point2& p_pos, const CharType& p_char,const CharType& p_next=0,const Color& p_modulate=Color(1,1,1)) const; - + Font(); ~Font(); }; diff --git a/scene/resources/material.h b/scene/resources/material.h index 96b33ce129..dbd05c466f 100644 --- a/scene/resources/material.h +++ b/scene/resources/material.h @@ -41,7 +41,7 @@ class Material : public Resource { - OBJ_TYPE(Material,Resource); + OBJ_TYPE(Material,Resource); RES_BASE_EXTENSION("mtl"); OBJ_SAVE_TYPE( Material ); diff --git a/scene/resources/mesh.cpp b/scene/resources/mesh.cpp index 9537fa269f..09c0a21f53 100644 --- a/scene/resources/mesh.cpp +++ b/scene/resources/mesh.cpp @@ -126,7 +126,7 @@ bool Mesh::_set(const StringName& p_name, const Variant& p_value) { add_custom_surface(p_value); return true; - } + } //create Dictionary d=p_value; @@ -223,7 +223,7 @@ void Mesh::_get_property_list( List<PropertyInfo> *p_list) const { } for (int i=0;i<surfaces.size();i++) { - + p_list->push_back( PropertyInfo( Variant::DICTIONARY,"surfaces/"+itos(i), PROPERTY_HINT_NONE,"",PROPERTY_USAGE_NOEDITOR ) ); p_list->push_back( PropertyInfo( Variant::STRING,"surface_"+itos(i+1)+"/name", PROPERTY_HINT_NONE,"",PROPERTY_USAGE_EDITOR ) ); p_list->push_back( PropertyInfo( Variant::OBJECT,"surface_"+itos(i+1)+"/material", PROPERTY_HINT_RESOURCE_TYPE,"Material",PROPERTY_USAGE_EDITOR ) ); @@ -238,9 +238,9 @@ void Mesh::_recompute_aabb() { // regenerate AABB aabb=AABB(); - + for (int i=0;i<surfaces.size();i++) { - + if (i==0) aabb=surfaces[i].aabb; else @@ -383,7 +383,7 @@ void Mesh::surface_remove(int p_idx) { ERR_FAIL_INDEX(p_idx, surfaces.size() ); VisualServer::get_singleton()->mesh_remove_surface(mesh,p_idx); surfaces.remove(p_idx); - + triangle_mesh=Ref<TriangleMesh>(); _recompute_aabb(); _change_notify(); @@ -472,14 +472,14 @@ void Mesh::add_surface_from_mesh_data(const Geometry::MeshData& p_mesh_data) { VisualServer::get_singleton()->mesh_add_surface_from_mesh_data( mesh, p_mesh_data ); AABB aabb; for (int i=0;i<p_mesh_data.vertices.size();i++) { - + if (i==0) aabb.pos=p_mesh_data.vertices[i]; else aabb.expand_to(p_mesh_data.vertices[i]); } - + Surface s; s.aabb=aabb; if (surfaces.size()==0) @@ -524,60 +524,60 @@ DVector<Face3> Mesh::get_faces() const { return DVector<Face3>(); /* for (int i=0;i<surfaces.size();i++) { - + if (VisualServer::get_singleton()->mesh_surface_get_primitive_type( mesh, i ) != VisualServer::PRIMITIVE_TRIANGLES ) continue; - + DVector<int> indices; DVector<Vector3> vertices; - + vertices=VisualServer::get_singleton()->mesh_surface_get_array(mesh, i,VisualServer::ARRAY_VERTEX); - + int len=VisualServer::get_singleton()->mesh_surface_get_array_index_len(mesh, i); bool has_indices; - + if (len>0) { - + indices=VisualServer::get_singleton()->mesh_surface_get_array(mesh, i,VisualServer::ARRAY_INDEX); has_indices=true; - + } else { - + len=vertices.size(); has_indices=false; } - + if (len<=0) continue; - + DVector<int>::Read indicesr = indices.read(); const int *indicesptr = indicesr.ptr(); - + DVector<Vector3>::Read verticesr = vertices.read(); const Vector3 *verticesptr = verticesr.ptr(); - + int old_faces=faces.size(); int new_faces=old_faces+(len/3); - + faces.resize(new_faces); - + DVector<Face3>::Write facesw = faces.write(); Face3 *facesptr=facesw.ptr(); - - + + for (int i=0;i<len/3;i++) { - + Face3 face; - + for (int j=0;j<3;j++) { - + int idx=i*3+j; face.vertex[j] = has_indices ? verticesptr[ indicesptr[ idx ] ] : verticesptr[idx]; } - + facesptr[i+old_faces]=face; } - + } */ @@ -993,17 +993,17 @@ void Mesh::_bind_methods() { BIND_CONSTANT( NO_INDEX_ARRAY ); BIND_CONSTANT( ARRAY_WEIGHTS_SIZE ); - + BIND_CONSTANT( ARRAY_VERTEX ); BIND_CONSTANT( ARRAY_NORMAL ); BIND_CONSTANT( ARRAY_TANGENT ); BIND_CONSTANT( ARRAY_COLOR ); - BIND_CONSTANT( ARRAY_TEX_UV ); + BIND_CONSTANT( ARRAY_TEX_UV ); BIND_CONSTANT( ARRAY_TEX_UV2 ); BIND_CONSTANT( ARRAY_BONES ); BIND_CONSTANT( ARRAY_WEIGHTS ); BIND_CONSTANT( ARRAY_INDEX ); - + BIND_CONSTANT( ARRAY_FORMAT_VERTEX ); BIND_CONSTANT( ARRAY_FORMAT_NORMAL ); BIND_CONSTANT( ARRAY_FORMAT_TANGENT ); @@ -1013,7 +1013,7 @@ void Mesh::_bind_methods() { BIND_CONSTANT( ARRAY_FORMAT_BONES ); BIND_CONSTANT( ARRAY_FORMAT_WEIGHTS ); BIND_CONSTANT( ARRAY_FORMAT_INDEX ); - + BIND_CONSTANT( PRIMITIVE_POINTS ); BIND_CONSTANT( PRIMITIVE_LINES ); BIND_CONSTANT( PRIMITIVE_LINE_STRIP ); diff --git a/scene/resources/mesh.h b/scene/resources/mesh.h index e0d9bdf7a8..dc1d97a49e 100644 --- a/scene/resources/mesh.h +++ b/scene/resources/mesh.h @@ -43,9 +43,9 @@ class Mesh : public Resource { RES_BASE_EXTENSION("msh"); public: - + enum { - + NO_INDEX_ARRAY=VisualServer::NO_INDEX_ARRAY, ARRAY_WEIGHTS_SIZE=VisualServer::ARRAY_WEIGHTS_SIZE }; @@ -63,8 +63,8 @@ public: ARRAY_INDEX=VisualServer::ARRAY_INDEX, ARRAY_MAX=VisualServer::ARRAY_MAX - }; - + }; + enum ArrayFormat { /* ARRAY FORMAT FLAGS */ ARRAY_FORMAT_VERTEX=1<<ARRAY_VERTEX, // mandatory @@ -77,8 +77,8 @@ public: ARRAY_FORMAT_WEIGHTS=1<<ARRAY_WEIGHTS, ARRAY_FORMAT_INDEX=1<<ARRAY_INDEX, - }; - + }; + enum PrimitiveType { PRIMITIVE_POINTS=VisualServer::PRIMITIVE_POINTS, PRIMITIVE_LINES=VisualServer::PRIMITIVE_LINES, @@ -87,7 +87,7 @@ public: PRIMITIVE_TRIANGLES=VisualServer::PRIMITIVE_TRIANGLES, PRIMITIVE_TRIANGLE_STRIP=VisualServer::PRIMITIVE_TRIANGLE_STRIP, PRIMITIVE_TRIANGLE_FAN=VisualServer::PRIMITIVE_TRIANGLE_FAN, - }; + }; enum MorphTargetMode { @@ -95,7 +95,7 @@ public: MORPH_MODE_RELATIVE=VS::MORPH_MODE_RELATIVE, }; -private: +private: struct Surface { String name; AABB aabb; @@ -111,16 +111,16 @@ private: mutable Ref<TriangleMesh> triangle_mesh; - + void _recompute_aabb(); protected: - + bool _set(const StringName& p_name, const Variant& p_value); bool _get(const StringName& p_name,Variant &r_ret) const; void _get_property_list( List<PropertyInfo> *p_list) const; - + static void _bind_methods(); - + public: void add_surface(PrimitiveType p_primitive,const Array& p_arrays,const Array& p_blend_shapes=Array(),bool p_alphasort=false); @@ -174,7 +174,7 @@ public: DVector<Face3> get_faces() const; Ref<TriangleMesh> generate_triangle_mesh() const; Mesh(); - + ~Mesh(); }; diff --git a/scene/resources/mesh_library.cpp b/scene/resources/mesh_library.cpp index 8643e96303..76bb1c585f 100644 --- a/scene/resources/mesh_library.cpp +++ b/scene/resources/mesh_library.cpp @@ -103,7 +103,7 @@ void MeshLibrary::create_item(int p_item) { void MeshLibrary::set_item_name(int p_item,const String& p_name) { ERR_FAIL_COND(!item_map.has(p_item)); - item_map[p_item].name=p_name; + item_map[p_item].name=p_name; emit_changed(); _change_notify(); diff --git a/scene/resources/mesh_library.h b/scene/resources/mesh_library.h index 9a468d5555..bf0107d7a9 100644 --- a/scene/resources/mesh_library.h +++ b/scene/resources/mesh_library.h @@ -56,7 +56,7 @@ protected: void _get_property_list( List<PropertyInfo> *p_list) const; static void _bind_methods(); -public: +public: void create_item(int p_item); diff --git a/scene/resources/packed_scene.cpp b/scene/resources/packed_scene.cpp index a9010e79a2..ef04c68e8e 100644 --- a/scene/resources/packed_scene.cpp +++ b/scene/resources/packed_scene.cpp @@ -646,7 +646,7 @@ https://github.com/godotengine/godot/issues/3127 } // Save the right type. If this node was created by an instance - // then flag that the node should not be created but reused + // then flag that the node should not be created but reused if (pack_state_stack.empty()) { //this node is not part of an instancing process, so save the type nd.type=_nm_get_string(p_node->get_type(),name_map); @@ -963,7 +963,7 @@ Ref<SceneState> SceneState::_get_base_scene_state() const { int SceneState::find_node_by_path(const NodePath& p_node) const { - if (!node_path_cache.has(p_node)) { + if (!node_path_cache.has(p_node)) { if (_get_base_scene_state().is_valid()) { int idx = _get_base_scene_state()->find_node_by_path(p_node); if (idx>=0) { @@ -1275,7 +1275,7 @@ Dictionary SceneState::get_bundled_scene() const { rnode_paths.resize(node_paths.size()); for(int i=0;i<node_paths.size();i++) { rnode_paths[i]=node_paths[i]; - } + } d["node_paths"]=rnode_paths; Array reditable_instances; diff --git a/scene/resources/packed_scene.h b/scene/resources/packed_scene.h index 6a26cc472c..6bde508d72 100644 --- a/scene/resources/packed_scene.h +++ b/scene/resources/packed_scene.h @@ -66,7 +66,7 @@ class SceneState : public Reference { }; Vector<Property> properties; - Vector<int> groups; + Vector<int> groups; }; diff --git a/scene/resources/polygon_path_finder.cpp b/scene/resources/polygon_path_finder.cpp index e8cdec66df..1a7dc56e40 100644 --- a/scene/resources/polygon_path_finder.cpp +++ b/scene/resources/polygon_path_finder.cpp @@ -545,7 +545,7 @@ Vector2 PolygonPathFinder::get_closest_point(const Vector2& p_point) const { closest_point=closest; } } - + ERR_FAIL_COND_V(closest_dist==1e20,Vector2()); return closest_point; diff --git a/scene/resources/polygon_path_finder.h b/scene/resources/polygon_path_finder.h index 2cbe3e949d..b23dbd0bac 100644 --- a/scene/resources/polygon_path_finder.h +++ b/scene/resources/polygon_path_finder.h @@ -61,7 +61,7 @@ public: bool is_point_inside(const Vector2& p_point) const; Vector2 get_closest_point(const Vector2& p_point) const; - Vector<Vector2> get_intersections(const Vector2& p_from, const Vector2& p_to) const; + Vector<Vector2> get_intersections(const Vector2& p_from, const Vector2& p_to) const; Rect2 get_bounds() const; diff --git a/scene/resources/room.cpp b/scene/resources/room.cpp index 0f9eb85244..4024e2f45c 100644 --- a/scene/resources/room.cpp +++ b/scene/resources/room.cpp @@ -48,7 +48,7 @@ BSP_Tree RoomBounds::get_bounds() const { } void RoomBounds::set_geometry_hint(const DVector<Face3>& p_geometry_hint) { - + geometry_hint=p_geometry_hint; } diff --git a/scene/resources/room.h b/scene/resources/room.h index c5aaea311e..a9f159cd46 100644 --- a/scene/resources/room.h +++ b/scene/resources/room.h @@ -38,8 +38,8 @@ class RoomBounds : public Resource { OBJ_TYPE( RoomBounds, Resource ); RES_BASE_EXTENSION("room"); - - RID area; + + RID area; DVector<Face3> geometry_hint; void _regenerate_bsp(); @@ -54,10 +54,10 @@ public: void set_bounds( const BSP_Tree& p_bounds ); BSP_Tree get_bounds() const; - + void set_geometry_hint(const DVector<Face3>& geometry_hint); const DVector<Face3>& get_geometry_hint() const; - + RoomBounds(); ~RoomBounds(); diff --git a/scene/resources/scene_format_text.cpp b/scene/resources/scene_format_text.cpp index 6bd5f520d2..f9f7f7807d 100644 --- a/scene/resources/scene_format_text.cpp +++ b/scene/resources/scene_format_text.cpp @@ -1144,7 +1144,7 @@ Error ResourceFormatSaverTextInstance::save(const String &p_path,const RES& p_re if (packed_scene->get_state()->is_node_instance_placeholder(i)) continue; - Ref<PackedScene> instance=packed_scene->get_state()->get_node_instance(i); + Ref<PackedScene> instance=packed_scene->get_state()->get_node_instance(i); if (instance.is_valid() && !external_resources.has(instance)) { int index = external_resources.size(); external_resources[instance]=index; diff --git a/scene/resources/shader_graph.cpp b/scene/resources/shader_graph.cpp index eabc84c41e..40ae26ba5d 100644 --- a/scene/resources/shader_graph.cpp +++ b/scene/resources/shader_graph.cpp @@ -1351,13 +1351,21 @@ ShaderGraph::ShaderGraph(Mode p_mode) : Shader(p_mode) { //shader = VisualServer::get_singleton()->shader_create(); _pending_update_shader=false; - Node out; - out.id=0; - out.pos=Vector2(250,20); - out.type=NODE_OUTPUT; + + Node input; + input.id=1; + input.pos=Vector2(50,40); + input.type=NODE_INPUT; + + Node output; + output.id=0; + output.pos=Vector2(350,40); + output.type=NODE_OUTPUT; + for(int i=0;i<3;i++) { - shader[i].node_map.insert(0,out); + shader[i].node_map.insert(0,output); + shader[i].node_map.insert(1,input); } } diff --git a/scene/resources/style_box.cpp b/scene/resources/style_box.cpp index 71a775ee24..75e38f9701 100644 --- a/scene/resources/style_box.cpp +++ b/scene/resources/style_box.cpp @@ -37,7 +37,7 @@ void StyleBox::set_default_margin(Margin p_margin, float p_value) { margin[p_margin]=p_value; emit_changed(); - + } float StyleBox::get_default_margin(Margin p_margin) const{ @@ -59,7 +59,7 @@ Size2 StyleBox::get_minimum_size() const { Point2 StyleBox::get_offset() const { - + return Point2( get_margin( MARGIN_LEFT), get_margin( MARGIN_TOP) ); } @@ -94,33 +94,33 @@ void StyleBox::_bind_methods() { } StyleBox::StyleBox() { - + for (int i=0;i<4;i++) { - + margin[i]=-1; } } void StyleBoxTexture::set_texture(RES p_texture) { - + texture=p_texture; emit_changed(); } RES StyleBoxTexture::get_texture() const { - + return texture; } void StyleBoxTexture::set_margin_size(Margin p_margin,float p_size) { - + margin[p_margin]=p_size; emit_changed(); } float StyleBoxTexture::get_margin_size(Margin p_margin) const { - + return margin[p_margin]; } @@ -142,14 +142,14 @@ void StyleBoxTexture::draw(RID p_canvas_item,const Rect2& p_rect) const { } void StyleBoxTexture::set_draw_center(bool p_draw) { - + draw_center=p_draw; emit_changed(); } bool StyleBoxTexture::get_draw_center() const { - + return draw_center; } @@ -204,18 +204,18 @@ void StyleBoxTexture::_bind_methods() { } StyleBoxTexture::StyleBoxTexture() { - - + + for (int i=0;i<4;i++) { margin[i]=0; expand_margin[i]=0; } draw_center=true; - + } StyleBoxTexture::~StyleBoxTexture() { - - + + } //////////////// diff --git a/scene/resources/style_box.h b/scene/resources/style_box.h index d0466ed5f1..02d79bc2ac 100644 --- a/scene/resources/style_box.h +++ b/scene/resources/style_box.h @@ -36,60 +36,60 @@ @author Juan Linietsky <reduzio@gmail.com> */ class StyleBox : public Resource { - + OBJ_TYPE( StyleBox, Resource ); RES_BASE_EXTENSION("sbx"); OBJ_SAVE_TYPE( StyleBox ); float margin[4]; - -protected: - + +protected: + virtual float get_style_margin(Margin p_margin) const=0; static void _bind_methods(); public: - + virtual bool test_mask(const Point2& p_point, const Rect2& p_rect) const; - + void set_default_margin(Margin p_margin, float p_value); float get_default_margin(Margin p_margin) const; float get_margin(Margin p_margin) const; virtual Size2 get_center_size() const; - + virtual void draw(RID p_canvas_item,const Rect2& p_rect) const=0; - + Size2 get_minimum_size() const; Point2 get_offset() const; - + StyleBox(); }; class StyleBoxEmpty : public StyleBox { - + OBJ_TYPE( StyleBoxEmpty, StyleBox ); virtual float get_style_margin(Margin p_margin) const { return 0; } -public: - +public: + virtual void draw(RID p_canvas_item,const Rect2& p_rect) const {} StyleBoxEmpty() {} - + }; class StyleBoxTexture : public StyleBox { - + OBJ_TYPE( StyleBoxTexture, StyleBox ); - + float expand_margin[4]; float margin[4]; Ref<Texture> texture; bool draw_center; - -protected: - + +protected: + virtual float get_style_margin(Margin p_margin) const; static void _bind_methods(); - + public: void set_expand_margin_size(Margin p_expand_margin,float p_size); @@ -105,12 +105,12 @@ public: bool get_draw_center() const; virtual Size2 get_center_size() const; - + virtual void draw(RID p_canvas_item,const Rect2& p_rect) const; - - StyleBoxTexture(); + + StyleBoxTexture(); ~StyleBoxTexture(); - + }; class StyleBoxFlat : public StyleBox { diff --git a/scene/resources/surface_tool.cpp b/scene/resources/surface_tool.cpp index bf5070fd7d..e3a02420c7 100644 --- a/scene/resources/surface_tool.cpp +++ b/scene/resources/surface_tool.cpp @@ -324,7 +324,7 @@ Ref<Mesh> SurfaceTool::commit(const Ref<Mesh>& p_existing) { w=DVector<Color>::Write(); a[i]=array; - } break; + } break; case Mesh::ARRAY_FORMAT_BONES: case Mesh::ARRAY_FORMAT_WEIGHTS: { diff --git a/scene/resources/texture.cpp b/scene/resources/texture.cpp index 28754480f1..1893bfe524 100644 --- a/scene/resources/texture.cpp +++ b/scene/resources/texture.cpp @@ -163,7 +163,7 @@ bool ImageTexture::_get(const StringName& p_name,Variant &r_ret) const { r_ret= lossy_storage_quality; else return false; - + return true; } @@ -171,8 +171,8 @@ bool ImageTexture::_get(const StringName& p_name,Variant &r_ret) const { void ImageTexture::_get_property_list( List<PropertyInfo> *p_list) const { - - + + PropertyHint img_hint=PROPERTY_HINT_NONE; if (storage==STORAGE_COMPRESS_LOSSY) { img_hint=PROPERTY_HINT_IMAGE_COMPRESS_LOSSY; @@ -207,16 +207,16 @@ void ImageTexture::_reload_hook(const RID& p_hook) { } void ImageTexture::create(int p_width, int p_height,Image::Format p_format,uint32_t p_flags) { - + flags=p_flags; VisualServer::get_singleton()->texture_allocate(texture,p_width, p_height, p_format, p_flags); format=p_format; w=p_width; h=p_height; - + } void ImageTexture::create_from_image(const Image& p_image, uint32_t p_flags) { - + flags=p_flags; w=p_image.get_width(); h=p_image.get_height(); @@ -228,7 +228,7 @@ void ImageTexture::create_from_image(const Image& p_image, uint32_t p_flags) { } void ImageTexture::set_flags(uint32_t p_flags) { - + /* uint32_t cube = flags & FLAG_CUBEMAP; @@ -238,11 +238,11 @@ void ImageTexture::set_flags(uint32_t p_flags) { flags=p_flags|cube; */ flags=p_flags; VisualServer::get_singleton()->texture_set_flags(texture,p_flags); - + } uint32_t ImageTexture::get_flags() const { - + return ImageTexture::flags; } @@ -252,7 +252,7 @@ Image::Format ImageTexture::get_format() const { } void ImageTexture::load(const String& p_path) { - + Image img; img.load(p_path); create_from_image(img); @@ -260,7 +260,7 @@ void ImageTexture::load(const String& p_path) { } void ImageTexture::set_data(const Image& p_image) { - + VisualServer::get_singleton()->texture_set_data(texture,p_image); VisualServer::get_singleton()->texture_set_reload_hook(texture,0,StringName()); //hook is erased if data is changed _change_notify(); @@ -282,23 +282,23 @@ void ImageTexture::_resource_path_changed() { } Image ImageTexture::get_data() const { - + return VisualServer::get_singleton()->texture_get_data(texture); } int ImageTexture::get_width() const { - - return w; + + return w; } int ImageTexture::get_height() const { - + return h; } RID ImageTexture::get_rid() const { - + return texture; } @@ -458,13 +458,13 @@ ImageTexture::ImageTexture() { texture = VisualServer::get_singleton()->texture_create(); storage = STORAGE_RAW; lossy_storage_quality=0.7; - + } ImageTexture::~ImageTexture() { - + VisualServer::get_singleton()->free( texture ); } diff --git a/scene/resources/texture.h b/scene/resources/texture.h index 2627b9480a..103b425cd8 100644 --- a/scene/resources/texture.h +++ b/scene/resources/texture.h @@ -84,7 +84,7 @@ VARIANT_ENUM_CAST( Texture::Flags ); class ImageTexture : public Texture { - + OBJ_TYPE( ImageTexture, Texture ); RES_BASE_EXTENSION("tex"); public: @@ -97,12 +97,12 @@ private: RID texture; Image::Format format; uint32_t flags; - int w,h; + int w,h; Storage storage; Size2 size_override; float lossy_storage_quality; -protected: +protected: virtual bool can_reload_from_file(); virtual void reload_from_file(); @@ -117,24 +117,24 @@ protected: void _set_data(Dictionary p_data); public: - + void create(int p_width, int p_height,Image::Format p_format,uint32_t p_flags=FLAGS_DEFAULT); void create_from_image(const Image& p_image, uint32_t p_flags=FLAGS_DEFAULT); - + void set_flags(uint32_t p_flags); uint32_t get_flags() const; Image::Format get_format() const; void load(const String& p_path); void set_data(const Image& p_image); Image get_data() const; - + int get_width() const; int get_height() const; - + virtual RID get_rid() const; - + bool has_alpha() const; virtual void draw(RID p_canvas_item, const Point2& p_pos, const Color& p_modulate=Color(1,1,1), bool p_transpose=false) const; virtual void draw_rect(RID p_canvas_item,const Rect2& p_rect, bool p_tile=false,const Color& p_modulate=Color(1,1,1), bool p_transpose=false) const; diff --git a/scene/resources/theme.cpp b/scene/resources/theme.cpp index 685b2e07e1..74e59b09c3 100644 --- a/scene/resources/theme.cpp +++ b/scene/resources/theme.cpp @@ -104,67 +104,67 @@ bool Theme::_get(const StringName& p_name,Variant &r_ret) const { } void Theme::_get_property_list( List<PropertyInfo> *p_list) const { - + List<PropertyInfo> list; const StringName *key=NULL; - + while((key=icon_map.next(key))) { - + const StringName *key2=NULL; - + while((key2=icon_map[*key].next(key2))) { list.push_back( PropertyInfo( Variant::OBJECT, String()+*key+"/icons/"+*key2, PROPERTY_HINT_RESOURCE_TYPE, "Texture" ) ); } } - + key=NULL; - + while((key=style_map.next(key))) { - + const StringName *key2=NULL; - + while((key2=style_map[*key].next(key2))) { - + list.push_back( PropertyInfo( Variant::OBJECT, String()+*key+"/styles/"+*key2, PROPERTY_HINT_RESOURCE_TYPE, "StyleBox" ) ); } } - + key=NULL; - + while((key=font_map.next(key))) { - + const StringName *key2=NULL; - + while((key2=font_map[*key].next(key2))) { - + list.push_back( PropertyInfo( Variant::OBJECT, String()+*key+"/fonts/"+*key2, PROPERTY_HINT_RESOURCE_TYPE, "Font" ) ); } } - + key=NULL; - + while((key=color_map.next(key))) { - + const StringName *key2=NULL; - + while((key2=color_map[*key].next(key2))) { - + list.push_back( PropertyInfo( Variant::COLOR, String()+*key+"/colors/"+*key2 ) ); } } - + key=NULL; - + while((key=constant_map.next(key))) { - + const StringName *key2=NULL; - + while((key2=constant_map[*key].next(key2))) { - + list.push_back( PropertyInfo( Variant::INT, String()+*key+"/constants/"+*key2 ) ); } } @@ -173,12 +173,12 @@ void Theme::_get_property_list( List<PropertyInfo> *p_list) const { for(List<PropertyInfo>::Element *E=list.front();E;E=E->next()) { p_list->push_back(E->get()); } - + } Ref<Theme> Theme::get_default() { - - return default_theme; + + return default_theme; } @@ -193,7 +193,7 @@ Ref<Font> Theme::get_default_theme_font() const { } void Theme::set_default(const Ref<Theme>& p_default) { - + default_theme=p_default; } @@ -221,7 +221,7 @@ void Theme::set_icon(const StringName& p_name,const StringName& p_type,const Ref bool new_value=!icon_map.has(p_type) || !icon_map[p_type].has(p_name); - icon_map[p_type][p_name]=p_icon; + icon_map[p_type][p_name]=p_icon; if (new_value) { _change_notify(); @@ -229,7 +229,7 @@ void Theme::set_icon(const StringName& p_name,const StringName& p_type,const Ref } } Ref<Texture> Theme::get_icon(const StringName& p_name,const StringName& p_type) const { - + if (icon_map.has(p_type) && icon_map[p_type].has(p_name) && icon_map[p_type][p_name].is_valid()) { return icon_map[p_type][p_name]; @@ -239,7 +239,7 @@ Ref<Texture> Theme::get_icon(const StringName& p_name,const StringName& p_type) } bool Theme::has_icon(const StringName& p_name,const StringName& p_type) const { - + return (icon_map.has(p_type) && icon_map[p_type].has(p_name)); } @@ -266,13 +266,13 @@ void Theme::get_icon_list(StringName p_type, List<StringName> *p_list) const { p_list->push_back(*key); } - + } void Theme::set_shader(const StringName &p_name,const StringName &p_type,const Ref<Shader>& p_shader) { bool new_value=!shader_map.has(p_type) || !shader_map[p_type].has(p_name); - shader_map[p_type][p_name]=p_shader; + shader_map[p_type][p_name]=p_shader; if (new_value) { _change_notify(); @@ -311,7 +311,7 @@ void Theme::get_shader_list(const StringName &p_type, List<StringName> *p_list) p_list->push_back(*key); } - + } @@ -331,7 +331,7 @@ void Theme::set_stylebox(const StringName& p_name,const StringName& p_type,const Ref<StyleBox> Theme::get_stylebox(const StringName& p_name,const StringName& p_type) const { - + if (style_map.has(p_type) && style_map[p_type].has(p_name) && style_map[p_type][p_name].is_valid()) { return style_map[p_type][p_name]; @@ -341,7 +341,7 @@ Ref<StyleBox> Theme::get_stylebox(const StringName& p_name,const StringName& p_t } bool Theme::has_stylebox(const StringName& p_name,const StringName& p_type) const { - + return (style_map.has(p_type) && style_map[p_type].has(p_name) ); } @@ -384,18 +384,18 @@ void Theme::set_font(const StringName& p_name,const StringName& p_type,const Ref } } Ref<Font> Theme::get_font(const StringName& p_name,const StringName& p_type) const { - + if (font_map.has(p_type) && font_map[p_type].has(p_name) && font_map[p_type][p_name].is_valid()) - return font_map[p_type][p_name]; + return font_map[p_type][p_name]; else if (default_theme_font.is_valid()) return default_theme_font; else return default_font; - + } bool Theme::has_font(const StringName& p_name,const StringName& p_type) const { - + return (font_map.has(p_type) && font_map[p_type].has(p_name)); } @@ -425,7 +425,7 @@ void Theme::get_font_list(StringName p_type, List<StringName> *p_list) const { } void Theme::set_color(const StringName& p_name,const StringName& p_type,const Color& p_color) { - + bool new_value=!color_map.has(p_type) || !color_map[p_type].has(p_name); color_map[p_type][p_name]=p_color; @@ -440,16 +440,16 @@ void Theme::set_color(const StringName& p_name,const StringName& p_type,const Co Color Theme::get_color(const StringName& p_name,const StringName& p_type) const { - + if (color_map.has(p_type) && color_map[p_type].has(p_name)) - return color_map[p_type][p_name]; + return color_map[p_type][p_name]; else return Color(); - + } bool Theme::has_color(const StringName& p_name,const StringName& p_type) const { - + return (color_map.has(p_type) && color_map[p_type].has(p_name)); } @@ -479,7 +479,7 @@ void Theme::get_color_list(StringName p_type, List<StringName> *p_list) const { } void Theme::set_constant(const StringName& p_name,const StringName& p_type,int p_constant) { - + bool new_value=!constant_map.has(p_type) || !constant_map[p_type].has(p_name); constant_map[p_type][p_name]=p_constant; @@ -490,17 +490,17 @@ void Theme::set_constant(const StringName& p_name,const StringName& p_type,int p } int Theme::get_constant(const StringName& p_name,const StringName& p_type) const { - + if (constant_map.has(p_type) && constant_map[p_type].has(p_name)) - return constant_map[p_type][p_name]; + return constant_map[p_type][p_name]; else { return 0; } - + } bool Theme::has_constant(const StringName& p_name,const StringName& p_type) const { - + return (constant_map.has(p_type) && constant_map[p_type].has(p_name)); } @@ -635,8 +635,8 @@ void Theme::_bind_methods() { } Theme::Theme() { - - + + } diff --git a/scene/resources/theme.h b/scene/resources/theme.h index 180f55381d..36630087f6 100644 --- a/scene/resources/theme.h +++ b/scene/resources/theme.h @@ -40,12 +40,12 @@ @author Juan Linietsky <reduzio@gmail.com> */ class Theme : public Resource { - + OBJ_TYPE( Theme, Resource ); RES_BASE_EXTENSION("thm"); - + static Ref<Theme> default_theme; - + HashMap<StringName,HashMap<StringName,Ref<Texture>,StringNameHasher >, StringNameHasher > icon_map; HashMap<StringName,HashMap<StringName,Ref<StyleBox>,StringNameHasher >,StringNameHasher > style_map; HashMap<StringName,HashMap<StringName,Ref<Font>,StringNameHasher >,StringNameHasher > font_map; @@ -56,7 +56,7 @@ protected: bool _set(const StringName& p_name, const Variant& p_value); bool _get(const StringName& p_name,Variant &r_ret) const; void _get_property_list( List<PropertyInfo> *p_list) const; - + static Ref<Texture> default_icon; static Ref<StyleBox> default_style; static Ref<Font> default_font; @@ -72,10 +72,10 @@ protected: static void _bind_methods(); public: - + static Ref<Theme> get_default(); static void set_default(const Ref<Theme>& p_default); - + static void set_default_icon( const Ref<Texture>& p_icon ); static void set_default_style( const Ref<StyleBox>& p_default_style); static void set_default_font( const Ref<Font>& p_default_font ); diff --git a/scene/resources/tile_set.cpp b/scene/resources/tile_set.cpp index 6f71287750..bf01929191 100644 --- a/scene/resources/tile_set.cpp +++ b/scene/resources/tile_set.cpp @@ -344,13 +344,13 @@ Array TileSet::_tile_get_shapes(int p_id) const{ } Array TileSet::_get_tiles_ids() const{ - + Array arr; for (Map<int, Data>::Element *E = tile_map.front(); E; E = E->next()) { - arr.push_back(E->key()); + arr.push_back(E->key()); } - + return arr; } diff --git a/scene/resources/volume.cpp b/scene/resources/volume.cpp index 8eb96cb4ad..8e056158cb 100644 --- a/scene/resources/volume.cpp +++ b/scene/resources/volume.cpp @@ -33,10 +33,10 @@ void Volume::_set(const String& p_name, const Variant& p_value) { if (p_name.begins_with("shapes/")) { - + int idx=p_name.get_slice("/",1).to_int()-1; ERR_FAIL_COND( idx != get_shape_count() ); - + Dictionary shape = p_value; ERR_FAIL_COND( !shape.has("type") || !shape.has("data")); String type = shape["type"]; @@ -44,7 +44,7 @@ void Volume::_set(const String& p_name, const Variant& p_value) { Transform transform; if (shape.has("transform")) transform=shape["transform"]; - + if (type=="plane") add_shape(SHAPE_PLANE,data,transform); else if (type=="sphere") @@ -59,7 +59,7 @@ void Volume::_set(const String& p_name, const Variant& p_value) { add_shape(SHAPE_CONVEX_POLYGON,data,transform); else if (type=="concave_polygon") add_shape(SHAPE_CONCAVE_POLYGON,data,transform); - else { + else { ERR_FAIL(); } } @@ -68,14 +68,14 @@ void Volume::_set(const String& p_name, const Variant& p_value) { Variant Volume::_get(const String& p_name) const { if (p_name.begins_with("shapes/")) { - + int idx=p_name.get_slice("/",1).to_int()-1; ERR_FAIL_INDEX_V( idx, get_shape_count(), Variant() ); - + Dictionary shape; - + switch( get_shape_type(idx) ) { - + case SHAPE_PLANE: shape["type"]="plane"; break; case SHAPE_SPHERE: shape["type"]="sphere"; break; case SHAPE_BOX: shape["type"]="box"; break; @@ -83,15 +83,15 @@ Variant Volume::_get(const String& p_name) const { case SHAPE_CAPSULE: shape["type"]="capsule"; break; case SHAPE_CONVEX_POLYGON: shape["type"]="convex_polygon"; break; case SHAPE_CONCAVE_POLYGON: shape["type"]="concave_polygon"; break; - + } - + shape["transform"]=get_shape_transform(idx); shape["data"]=get_shape(idx); return shape; } - + return Variant(); } @@ -99,8 +99,8 @@ void Volume::_get_property_list( List<PropertyInfo> *p_list) const { int count=get_shape_count(); for(int i=0;i<count;i++) { - - p_list->push_back( PropertyInfo( Variant::DICTIONARY, "shapes/"+itos(i+1)) ); + + p_list->push_back( PropertyInfo( Variant::DICTIONARY, "shapes/"+itos(i+1)) ); } } @@ -118,7 +118,7 @@ void Volume::add_shape(ShapeType p_shape_type, const Variant& p_data, const Tran void Volume::add_plane_shape(const Plane& p_plane,const Transform& p_transform) { add_shape(SHAPE_PLANE, p_plane, p_transform ); -} +} void Volume::add_sphere_shape(float p_radius,const Transform& p_transform) { @@ -140,7 +140,7 @@ void Volume::add_cylinder_shape(float p_radius, float p_height,const Transform& void Volume::add_capsule_shape(float p_radius, float p_height,const Transform& p_transform) { Dictionary d; - d["radius"]=p_radius; + d["radius"]=p_radius; d["height"]=p_height; add_shape(SHAPE_CAPSULE,d,p_transform); @@ -179,7 +179,7 @@ void Volume::_bind_methods() { ObjectTypeDB::bind_method(_MD("get_shape_type","shape_idx"),&Volume::get_shape_type); ObjectTypeDB::bind_method(_MD("get_shape_transform","shape_idx"),&Volume::get_shape_transform); ObjectTypeDB::bind_method(_MD("get_shape","shape_idx"),&Volume::get_shape); - + BIND_CONSTANT( SHAPE_PLANE ); BIND_CONSTANT( SHAPE_SPHERE ); BIND_CONSTANT( SHAPE_BOX ); @@ -198,7 +198,7 @@ RID Volume::get_rid() { Volume::Volume() { volume= PhysicsServer::get_singleton()->volume_create(); - + } diff --git a/scene/resources/volume.h b/scene/resources/volume.h index be3cbddbbd..f03e48f1d9 100644 --- a/scene/resources/volume.h +++ b/scene/resources/volume.h @@ -38,16 +38,16 @@ */ class Volume : public Resource { - OBJ_TYPE( Volume, Resource ); + OBJ_TYPE( Volume, Resource ); RID volume; - + protected: - + bool _set(const StringName& p_name, const Variant& p_value); bool _get(const StringName& p_name,Variant &r_ret) const; void _get_property_list( List<PropertyInfo> *p_list) const; - - static void _bind_methods(); + + static void _bind_methods(); public: enum ShapeType { @@ -59,22 +59,22 @@ public: SHAPE_CONVEX_POLYGON = PhysicsServer::SHAPE_CONVEX_POLYGON, ///< array of planes:"planes" SHAPE_CONCAVE_POLYGON = PhysicsServer::SHAPE_CONCAVE_POLYGON, ///< vector3 array:"triangles" }; - + void add_shape(ShapeType p_shape_type, const Variant& p_data, const Transform& p_transform=Transform ()); - + void add_plane_shape(const Plane& p_plane,const Transform& p_transform); void add_sphere_shape(float p_radius,const Transform& p_transform); void add_box_shape(const Vector3& p_half_extents,const Transform& p_transform); void add_cylinder_shape(float p_radius, float p_height,const Transform& p_transform); void add_capsule_shape(float p_radius, float p_height,const Transform& p_transform); - + int get_shape_count() const; ShapeType get_shape_type(int p_shape) const; Transform get_shape_transform(int p_shape) const; Variant get_shape(int p_shape) const; virtual RID get_rid(); - + Volume(); ~Volume(); |